From 91ac575eab4826d646613e98e9bdabf78ddbc778 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Tue, 13 Feb 2024 08:47:15 -0700 Subject: [PATCH] chore(translations): updating pot -> po -> json files (babel 2.9.1) (#26773) --- superset/commands/chart/delete.py | 3 +- superset/commands/dashboard/delete.py | 3 +- superset/commands/database/delete.py | 3 +- superset/commands/database/validate_sql.py | 10 +- superset/commands/report/alert.py | 8 +- .../translations/de/LC_MESSAGES/messages.json | 10142 +++-- .../translations/de/LC_MESSAGES/messages.po | 33222 ++++++++-------- .../translations/en/LC_MESSAGES/messages.json | 7786 ++-- .../translations/en/LC_MESSAGES/messages.po | 22882 ++++++----- .../translations/es/LC_MESSAGES/messages.json | 6066 ++- .../translations/es/LC_MESSAGES/messages.po | 30539 +++++++------- .../translations/fr/LC_MESSAGES/messages.json | 7210 ++-- .../translations/fr/LC_MESSAGES/messages.po | 32187 ++++++++------- .../translations/it/LC_MESSAGES/messages.json | 6270 ++- .../translations/it/LC_MESSAGES/messages.po | 27830 ++++++------- .../translations/ja/LC_MESSAGES/messages.json | 6299 ++- .../translations/ja/LC_MESSAGES/messages.po | 28673 ++++++------- .../translations/ko/LC_MESSAGES/messages.json | 6363 ++- .../translations/ko/LC_MESSAGES/messages.po | 27202 ++++++------- superset/translations/messages.pot | 22872 ++++++----- .../translations/nl/LC_MESSAGES/messages.json | 7706 ++-- .../translations/nl/LC_MESSAGES/messages.po | 28948 +++++++------- .../translations/pt/LC_MESSAGES/messages.json | 6196 ++- .../translations/pt/LC_MESSAGES/messages.po | 28736 ++++++------- .../pt_BR/LC_MESSAGES/messages.json | 9781 +++-- .../pt_BR/LC_MESSAGES/messages.po | 33114 ++++++++------- .../translations/ru/LC_MESSAGES/messages.json | 9328 +++-- .../translations/ru/LC_MESSAGES/messages.po | 32316 +++++++-------- .../translations/sk/LC_MESSAGES/messages.json | 7714 ++-- .../translations/sk/LC_MESSAGES/messages.po | 23418 ++++++----- .../translations/sl/LC_MESSAGES/messages.json | 10412 +++-- .../translations/sl/LC_MESSAGES/messages.po | 32495 ++++++++------- .../translations/uk/LC_MESSAGES/messages.json | 10072 +++-- .../translations/uk/LC_MESSAGES/messages.po | 24756 ++++++++---- .../translations/zh/LC_MESSAGES/messages.json | 7451 ++-- .../translations/zh/LC_MESSAGES/messages.po | 31489 +++++++-------- superset/views/api.py | 4 +- superset/viz.py | 3 +- 38 files changed, 292743 insertions(+), 286766 deletions(-) diff --git a/superset/commands/chart/delete.py b/superset/commands/chart/delete.py index abd343125b4ec..8a729c4b16b89 100644 --- a/superset/commands/chart/delete.py +++ b/superset/commands/chart/delete.py @@ -60,7 +60,8 @@ def validate(self) -> None: if reports := ReportScheduleDAO.find_by_chart_ids(self._model_ids): report_names = [report.name for report in reports] raise ChartDeleteFailedReportsExistError( - _(f"There are associated alerts or reports: {','.join(report_names)}") + _("There are associated alerts or reports: %(report_names)s") + % {"report_names": ",".join(report_names)} ) # Check ownership for model in self._models: diff --git a/superset/commands/dashboard/delete.py b/superset/commands/dashboard/delete.py index 13ffcb443c675..fae4a0f120e8b 100644 --- a/superset/commands/dashboard/delete.py +++ b/superset/commands/dashboard/delete.py @@ -60,7 +60,8 @@ def validate(self) -> None: if reports := ReportScheduleDAO.find_by_dashboard_ids(self._model_ids): report_names = [report.name for report in reports] raise DashboardDeleteFailedReportsExistError( - _(f"There are associated alerts or reports: {','.join(report_names)}") + _("There are associated alerts or reports: %(report_names)s") + % {"report_names": ",".join(report_names)} ) # Check ownership for model in self._models: diff --git a/superset/commands/database/delete.py b/superset/commands/database/delete.py index 2db408c76e661..334f6a18a41ab 100644 --- a/superset/commands/database/delete.py +++ b/superset/commands/database/delete.py @@ -59,7 +59,8 @@ def validate(self) -> None: if reports := ReportScheduleDAO.find_by_database_id(self._model_id): report_names = [report.name for report in reports] raise DatabaseDeleteFailedReportsExistError( - _(f"There are associated alerts or reports: {','.join(report_names)}") + _("There are associated alerts or reports: %(report_names)s") + % {"report_names": ",".join(report_names)} ) # Check if there are datasets for this database if self._model.tables: diff --git a/superset/commands/database/validate_sql.py b/superset/commands/database/validate_sql.py index 9a00526bfaff3..96d3c350dda8a 100644 --- a/superset/commands/database/validate_sql.py +++ b/superset/commands/database/validate_sql.py @@ -97,7 +97,8 @@ def validate(self) -> None: if not validators_by_engine or spec.engine not in validators_by_engine: raise NoValidatorConfigFoundError( SupersetError( - message=__(f"no SQL validator is configured for {spec.engine}"), + message=__("no SQL validator is configured for %(engine)s") + % {"engine": spec.engine}, error_type=SupersetErrorType.GENERIC_DB_ENGINE_ERROR, level=ErrorLevel.ERROR, ), @@ -108,9 +109,10 @@ def validate(self) -> None: raise NoValidatorFoundError( SupersetError( message=__( - f"No validator named {validator_name} found " - f"(configured for the {spec.engine} engine)" - ), + "No validator named %(validator_name)s found " + "(configured for the %(engine)s engine)" + ) + % {"validator_name": validator_name, "engine": spec.engine}, error_type=SupersetErrorType.GENERIC_DB_ENGINE_ERROR, level=ErrorLevel.ERROR, ), diff --git a/superset/commands/report/alert.py b/superset/commands/report/alert.py index fc1be14e02049..35584e459595e 100644 --- a/superset/commands/report/alert.py +++ b/superset/commands/report/alert.py @@ -96,17 +96,19 @@ def _validate_result(rows: np.recarray[Any, Any]) -> None: if len(rows) > 1: raise AlertQueryMultipleRowsError( message=_( - f"Alert query returned more than one row. {len(rows)} rows returned" + "Alert query returned more than one row. %(num_rows)s rows returned" ) + % {"num_rows": len(rows)} ) # check if query returned more than one column if len(rows[0]) > 2: raise AlertQueryMultipleColumnsError( # len is subtracted by 1 to discard pandas index column _( - f"Alert query returned more than one column. " - f"{(len(rows[0]) - 1)} columns returned" + "Alert query returned more than one column. " + "%(num_columns)s columns returned" ) + % {"num_columns": len(rows[0]) - 1} ) def _validate_operator(self, rows: np.recarray[Any, Any]) -> None: diff --git a/superset/translations/de/LC_MESSAGES/messages.json b/superset/translations/de/LC_MESSAGES/messages.json index 44d5d3009c3cd..32953dd009210 100644 --- a/superset/translations/de/LC_MESSAGES/messages.json +++ b/superset/translations/de/LC_MESSAGES/messages.json @@ -8,6520 +8,6222 @@ "plural_forms": "nplurals=2; plural=(n != 1)", "lang": "de" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\nDieser Filter wurde vom Kontext des Dashboards geerbt.\n Er wird beim Speichern des Diagramms nicht gespeichert.\n " + "The datasource is too large to query.": [ + "Die Datenquelle ist zu groß, um sie abzufragen." ], - "\n Error: %(text)s\n ": [ - "\nFehler: %(text)s\n " + "The database is under an unusual load.": [ + "Die Datenbank ist ungewöhnlich belastet." ], - " (excluded)": [" (ausgeschlossen)"], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - " Setzen Sie die Deckkraft auf 0, wenn Sie die im GeoJSON angegebene Farbe nicht überschreiben möchten." + "The database returned an unexpected error.": [ + "Die Datenbank hat einen unerwarteten Fehler zurückgegeben." ], - " a dashboard OR ": [" ein Dashboard ODER "], - " a new one": [" eine neue"], - " expression which needs to adhere to the ": [" die dem "], - " source code of Superset's sandboxed parser": [ - " Quellcode des Sandbox-Parsers von Superset" + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "In der SQL-Abfrage liegt ein Syntaxfehler vor. Vielleicht gab es einen Rechtschreibfehler oder einen Tippfehler." ], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - " Standard genügen muss, um sicherzustellen, dass die lexikographische Reihenfolge\n mit der chronologischen Reihenfolge übereinstimmt. Wenn das\n Zeitstempelformat nicht dem ISO 8601-Standard entspricht,\n müssen Sie einen Ausdruck und einen Typ definieren um\n die Zeichenfolge in ein Datum oder einen Zeitstempel umzuwandeln.\n Hinweis: Derzeit werden Zeitzonen nicht unterstützt. Wenn Zeit im\n Epochenformat gespeichert ist, Geben Sie “epoch_s\" oder \"epoch_ms\" ein. \n Wenn kein Muster angegeben ist, greifen wir auf die Verwendung der\n \n über den zusätzlichen Parameter angebbaren,\n optionalen Standardwerte zurück." + "The column was deleted or renamed in the database.": [ + "Die Spalte wurde in der Datenbank gelöscht oder umbenannt." ], - " to add calculated columns": [", um berechnete Spalten hinzuzufügen"], - " to add metrics": [", um Metriken hinzuzufügen"], - " to edit or add columns and metrics.": [ - ", um Spalten und Metriken zu bearbeiten oder hinzuzufügen." + "The table was deleted or renamed in the database.": [ + "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt." ], - " to mark a column as a time column": [ - " um eine Spalte als Zeitspalte zu markieren" + "One or more parameters specified in the query are missing.": [ + "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." ], - " to open SQL Lab. From there you can save the query as a dataset.": [ - " , um SQL Lab zu öffnen. Von dort aus können Sie die Abfrage als Datensatz speichern." + "The hostname provided can't be resolved.": [ + "Der angegebene Hostname kann nicht aufgelöst werden." ], - " to visualize your data.": [" , um Ihre Daten zu visualisieren."], - "!= (Is not equal)": ["!= (Ist nicht gleich)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s kann aus Sicherheitsgründen nicht als Datenquelle verwendet werden." + "The port is closed.": ["Der Port ist geschlossen."], + "The host might be down, and can't be reached on the provided port.": [ + "Der Host ist möglicherweise außer Betrieb und kann über den angegebenen Port nicht erreicht werden." ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [ - "%(message)s\nDies kann ausgelöst werden durch: \n%(issues)s" + "Superset encountered an error while running a command.": [ + "Superset hat beim Ausführen eines Befehls einen Fehler festgestellt." ], - "%(name)s.csv": ["%(name)s.csv"], - "%(object)s does not exist in this database.": [ - "%(object)s existiert nicht in der Datenbank." + "Superset encountered an unexpected error.": [ + "Superset hat einen unerwarteten Fehler festgestellt." ], - "%(other)s charts will appear here": [ - "%(other)s Diagramme werden hier angezeigt" + "The username provided when connecting to a database is not valid.": [ + "Der Benutzer*innenname, der beim Herstellen einer Datenbankverbindung angegeben wurde, ist ungültig." ], - "%(other)s dashboards will appear here": [ - "%(other)s Dashboards werden hier angezeigt" + "The password provided when connecting to a database is not valid.": [ + "Das Kennwort, das beim Herstellen einer Datenbankverbindung angegeben wurde, ist ungültig." ], - "%(other)s recents will appear here": [ - "Aktuelle %(other)s werden hier angezeigt" + "Either the username or the password is wrong.": [ + "Entweder der Benutzer*innenname oder das Kennwort ist falsch." ], - "%(other)s saved queries will appear here": [ - "%(other)s gespeicherte Abfragen werden hier angezeigt" + "Either the database is spelled incorrectly or does not exist.": [ + "Entweder ist die Datenbank falsch geschrieben oder existiert nicht." ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": ["%(rows)d Zeilen zurückgegeben"], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ - "%(subtitle)s\nDies kann ausgelöst werden durch:\n %(issue)s" + "The schema was deleted or renamed in the database.": [ + "Das Schema wurde in der Datenbank gelöscht oder umbenannt." ], - "%(suggestion)s instead of \"%(undefinedParameter)s?\"": [ - "%(suggestion)s statt \"%(undefinedParameter)s“?", - "%(firstSuggestions)s oder %(lastSuggestion)s statt „%(undefinedParameter)s“?" + "User doesn't have the proper permissions.": [ + "Benutzer*in verfügt nicht über die richtigen Berechtigungen." ], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s wurde die Rolle %(role)s gewährt, die den Zugriff auf %(datasource)s erlaubt" + "One or more parameters needed to configure a database are missing.": [ + "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." ], - "%(user)s's profile": ["Profil von %(user)s"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s konnte Ihre Abfrage nicht überprüfen.\nBitte überprüfen Sie Ihre Anfrage.\nAusnahme: %(ex)s" + "The submitted payload has the incorrect format.": [ + "Die übermittelte Nutzlast hat das falsche Format." ], - "%s Error": ["%s Fehler"], - "%s PASSWORD": ["%s PASSWORT"], - "%s SSH TUNNEL PASSWORD": ["%s SSH-TUNNEL-KENNWORT"], - "%s SSH TUNNEL PRIVATE KEY": ["%s PRIVATER SCHLÜSSEL FÜR DEN SSH-TUNNEL"], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [ - "%s PASSWORT FÜR DEN PRIVATEN SCHLÜSSEL DES SSH-TUNNELS" + "The submitted payload has the incorrect schema.": [ + "Die übermittelte Nutzlast hat das falsche Schema." ], - "%s Selected": ["%s ausgewählt"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s ausgewählt (%s physisch, %s virtuell)" + "Results backend needed for asynchronous queries is not configured.": [ + "Das Ergebnis-Backend, das für asynchrone Abfragen benötigt wird, ist nicht konfiguriert." ], - "%s Selected (Physical)": ["%s ausgewählt (physisch)"], - "%s Selected (Virtual)": ["%s ausgewählt (virtuell)"], - "%s aggregates(s)": ["%s Aggregate"], - "%s column(s)": ["%s Spalte(n)"], - "%s operator(s)": ["%s Operator(en)"], - "%s option": ["%s Option", "%s Optionen"], - "%s option(s)": ["%s Option(en)"], - "%s row": ["%s Zeile", "%s Zeilen"], - "%s saved metric(s)": ["%s gespeicherte Metrik(en)"], - "%s updated": ["%s aktualisiert"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s von %s"], - "(Removed)": ["(Entfernt)"], - "(deleted or invalid type)": ["(gelöschter oder ungültiger Typ)"], - "(no description, click to see stack trace)": [ - "(keine Beschreibung, klicken Sie hier, um Fehlermeldung zu sehen)" + "Database does not allow data manipulation.": [ + "Die Datenbank lässt keine Datenbearbeitung zu." ], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "(Optionaler) Standardwert für den Filter, wenn Sie die Option ‚multiple‘ verwenden, können Sie eine durch Semikolons getrennte Liste von Optionen verwenden." + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTAS (create table as select) kann nur mit einer Abfrage ausgeführt werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat. Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "), and they become available in your SQL (example:": [ - "), und sie werden in Ihrem SQL verfügbar (Beispiel:" + "CVAS (create view as select) query has more than one statement.": [ + "CVAS-Abfrage (Create View as Select) hat mehr als eine Anweisung." ], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "*%(name)s*\n\n%(description)s\n\n<%(url)s|In Superset erkunden>\n%(table)s\n" + "CVAS (create view as select) query is not a SELECT statement.": [ + "CVAS-Abfrage (Create View as Select) ist keine SELECT-Anweisung." ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ - "*%(name)s*\n\n%(description)s\n\nFehler: %(text)s\n" + "Query is too complex and takes too long to run.": [ + "Die Abfrage ist zu komplex und dauert zu lange." ], - "+ %s more": ["+ %s weitere"], - ",": [","], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "-- Hinweis: Wenn Sie Ihre Anfrage nicht speichern, bleiben diese Registerkarten NICHT bestehen, wenn Sie Ihre Cookies löschen oder den Browser wechseln.\n\n" + "The database is currently running too many queries.": [ + "Die Datenbank führt derzeit zu viele Abfragen aus." ], - ".": ["."], - "0 Selected": ["0 ausgewählt"], - "1 calendar day frequency": ["1 Kalendertag Frequenz"], - "1 day": ["1 Tag"], - "1 day ago": ["Vor 1 Tag"], - "1 hour": ["1 Stunde"], - "1 hourly frequency": ["stündliche Frequenz"], - "1 minute": ["1 Minute"], - "1 minutely frequency": ["minütlich"], - "1 month end frequency": ["1 Monat Ende Frequenz"], - "1 month start frequency": ["1 Monat Start Frequenz"], - "1 week": ["1 Woche"], - "1 week ago": ["vor 1 Woche"], - "1 week starting Monday (freq=W-MON)": [ - "1 Woche beginnend am Montag (freq=W-MON)" + "The object does not exist in the given database.": [ + "Das Objekt existiert nicht in der angegebenen Datenbank." ], - "1 week starting Sunday (freq=W-SUN)": [ - "1 Woche beginnend am Sonntag (freq=W-SUN)" + "The query has a syntax error.": [ + "Die Abfrage weist einen Syntaxfehler auf." ], - "1 year": ["1 Jahr"], - "1 year ago": ["vor 1 Jahr"], - "1 year end frequency": ["1 Jahres-Frequenz (Jahresende)"], - "1 year start frequency": ["1 Jahres-Frequenz (Jahresanfang)"], - "10 minute": ["10 Minuten"], - "104 weeks": ["104 Wochen"], - "104 weeks ago": ["vor 104 Wochen"], - "15 minute": ["15 Minuten"], - "156 weeks": ["156 Wochen"], - "156 weeks ago": ["vor 156 Wochen"], - "1AS": ["jährlich zu Jahresbeginn (1AS)"], - "1D": ["täglich (1D)"], - "1H": ["stündlich (1H)"], - "1M": ["monatlich (1M)"], - "1T": ["minütlich (1T)"], - "2 years": ["2 Jahre"], - "2 years ago": ["vor 2 Jahren"], - "2/98 percentiles": ["2/98 Perzentile"], - "28 days": ["28 Tage"], - "28 days ago": ["vor 28 Tagen"], - "2D": ["2D"], - "3 letter code of the country": ["3-Buchstaben-Code des Landes"], - "3 years": ["3 Jahre"], - "3 years ago": ["vor 3 Jahren"], - "30 days": ["30 Tage"], - "30 days ago": ["Vor 30 Tagen"], - "30 minute": ["30 Minuten"], - "30 minutes": ["30 Minuten"], - "30 second": ["30 Sekunden"], - "30 seconds": ["30 Sekunden"], - "3D": ["3-täglich (3D)"], - "4 weeks (freq=4W-MON)": ["4 Wochen (freq=4W-MON)"], - "5 minute": ["5 Minuten"], - "5 minutes": ["5 Minuten"], - "5 second": ["5 Sekunden"], - "5 seconds": ["5 Sekunden"], - "52 weeks": ["52 Wochen"], - "52 weeks ago": ["vor 52 Wochen"], - "52 weeks starting Monday (freq=52W-MON)": [ - "52 Wochen, beginnend am Montag (freq=52W-MON)" + "The results backend no longer has the data from the query.": [ + "Das Ergebnis-Backend verfügt nicht mehr über die Daten aus der Abfrage." ], - "6 hour": ["6 Stunden"], - "60 days": ["60 Tage"], - "7 calendar day frequency": ["7 Kalendertage Frequenz"], - "7 days": ["7 Tage"], - "7D": ["wöchentlich (7D)"], - "9/91 percentiles": ["9/91 Perzentile"], - "90 days": ["90 Tage"], - ":": [":"], - "< (Smaller than)": ["< (Kleiner als)"], - "<= (Smaller or equal)": ["<= (Kleiner oder gleich)"], - "": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "== (Is equal)": ["== (Ist gleich)"], - "> (Larger than)": ["> (Größer als)"], - ">= (Larger or equal)": [">= (Größer oder gleich)"], - "A Big Number": ["Eine Große Zahl"], - "A comma separated list of columns that should be parsed as dates": [ - "Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben interpretiert werden sollen" + "The query associated with the results was deleted.": [ + "Die den Ergebnissen zugeordnete Abfrage wurde gelöscht." ], - "A comma separated list of columns that should be parsed as dates.": [ - "Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben interpretiert werden sollen." + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Die im Backend gespeicherten Ergebnisse wurden in einem anderen Format gespeichert und können nicht mehr deserialisiert werden." ], - "A comma-separated list of schemas that files are allowed to upload to.": [ - "Eine durch Kommas getrennte Liste von Schemata, in die Dateien hochgeladen werden dürfen." + "The port number is invalid.": ["Die Port-Nummer ist ungültig."], + "Failed to start remote query on a worker.": [ + "Remoteabfrage für einen Worker konnte nicht gestartet werden." ], - "A database with the same name already exists.": [ - "Eine Datenbank mit dem gleichen Namen existiert bereits." + "The database was deleted.": ["Die Datenbank wurde gelöscht."], + "Custom SQL fields cannot contain sub-queries.": [ + "Benutzerdefinierte SQL-Felder dürfen keine Unterabfragen enthalten." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "Invalid certificate": ["Ungültiges Zertifikat"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Unsicherer Rückgabetyp für %(func)s: %(value_type)s" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "Eine vollständige URL, die auf den Speicherort des erstellten Plugins verweist (könnte beispielsweise auf einem CDN gehostet werden)" + "Unsupported return value for method %(name)s": [ + "Nicht unterstützter Rückgabewert für %(name)s" ], - "A handlebars template that is applied to the data": [ - "Ein Handelbars-Template, das auf die Daten angewendet wird" + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Unsicherer Vorlagenwert für Schlüssel %(key)s: %(value_type)s" ], - "A human-friendly name": ["Ein sprechender Name"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "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." + "Unsupported template value for key %(key)s": [ + "Nicht unterstützter Vorlagenwert für Schlüssel %(key)s" ], - "A list of tags that have been applied to this chart.": [ - "Eine Liste der Tags, die auf dieses Diagramm angewendet wurden." + "Only SELECT statements are allowed against this database.": [ + "Nur 'SELECT'-Anweisungen sind für diese Datenbank zulässig." ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Eine Liste der Benutzer*innen, die das Diagramm ändern können. Durchsuchbar nach Name oder Benutzer*innenname." + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Die Abfrage wurde nach %(sqllab_timeout)s Sekunden abgebrochen. Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark belastet." ], - "A map of the world, that can indicate values in different countries.": [ - "Eine Weltkarte, die Werte in verschiedenen Ländern anzeigen kann." + "Results backend is not configured.": [ + "Das Ergebnis-Backend ist nicht konfiguriert." ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "Eine Karte, die Kreise mit einem variablen Radius bei Breiten-/Längengrad-Koordinaten darstellt" + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTAS (create table as select) kann nur mit einer Abfrage ausgeführt werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat. Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "A metric to use for color": [ - "Eine Metrik, die für die Farbe verwendet werden soll" + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "CVAS (create view as select) kann nur mit einer Abfrage mit einer einzigen SELECT-Anweisung ausgeführt werden. Bitte stellen Sie sicher, dass Ihre Anfrage nur eine SELECT-Anweisung hat. Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "Ein Polarkoordinatendiagramm, in dem der Kreis in Sektoren mit gleichem Winkel unterteilt ist und der Wert, der durch einen Sektor dargestellt wird, durch seine Fläche und nicht durch seinen Radius oder Sweep-Winkel veranschaulicht wird." + "Running statement %(statement_num)s out of %(statement_count)s": [ + "Führe Anweisung %(statement_num)s von %(statement_count)s aus" ], - "A readable URL for your dashboard": [ - "Eine sprechende URL für Ihr Dashboard" + "Statement %(statement_num)s out of %(statement_count)s": [ + "Anweisung %(statement_num)s von %(statement_count)s" ], - "A reference to the [Time] configuration, taking granularity into account": [ - "Ein Verweis auf die [Time]-Konfiguration unter Berücksichtigung der Granularität" + "Viz is missing a datasource": ["Visualisierung fehlt eine Datenquelle"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Das angewendete rollierende Fenster hat keine Daten zurückgegeben. Bitte stellen Sie sicher, dass die Quellabfrage die im rollierenden Fenster definierten Mindestzeiträume erfüllt." ], - "A report named \"%(name)s\" already exists": [ - "Ein Bericht mit dem Namen \"%(name)s\" ist bereits vorhanden" + "From date cannot be larger than to date": [ + "‚Von Datum' kann nicht größer als ‚Bis-Datum' sein" ], - "A reusable dataset will be saved with your chart.": [ - "Ein wiederverwendbarer Datensatz wird mit Ihrem Diagramm gespeichert." + "Cached value not found": ["Zwischengespeicherter Wert nicht gefunden"], + "Columns missing in datasource: %(invalid_columns)s": [ + "Fehlende Spalten in Datenquelle: %(invalid_columns)s" ], - "A screenshot of the dashboard will be sent to your email at": [ - "Ein Screenshot des Dashboards wird an Ihre E-Mail-Adresse gesendet" + "Time Table View": ["Zeittabellenansicht"], + "Pick at least one metric": ["Wählen Sie mindestens eine Metrik aus"], + "When using 'Group By' you are limited to use a single metric": [ + "Wenn Sie \"Gruppieren nach\" verwenden, sind Sie auf die Verwendung einer einzelnen Metrik beschränkt" ], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Ein Satz von Parametern, die in der Abfrage mithilfe der Jinja-Vorlagensyntax verfügbar werden" + "Calendar Heatmap": ["Kalender Heatmap"], + "Bubble Chart": ["Blasen-Diagramm"], + "Please use 3 different metric labels": [ + "Bitte verwenden Sie 3 verschiedene metrische Beschriftungen" ], - "A time column must be specified when using a Time Comparison.": [ - "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." + "Pick a metric for x, y and size": [ + "Wählen Sie eine Metrik für x, y und Größe" ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "Ein Zeitreihendiagramm, das visualisiert, wie sich eine verwandte Metrik aus mehreren Gruppen im Laufe der Zeit ändert. Jede Gruppe wird mit einer anderen Farbe visualisiert." + "Bullet Chart": ["Bullet-Diagramm"], + "Pick a metric to display": ["Wählen Sie eine Anzeige-Metrik"], + "Time Series - Line Chart": ["Zeitreihen - Liniendiagramm"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Bei Verwendung eines Zeitvergleichs muss ein geschlossener Zeitbereich (sowohl Anfang als auch Ende) angegeben werden." ], - "A timeout occurred while executing the query.": [ - "Beim Ausführen der Abfrage ist ein Timeout aufgetreten." + "Time Series - Bar Chart": ["Zeitreihen - Balkendiagramm"], + "Time Series - Period Pivot": ["Zeitreihen - Perioden-Pivot"], + "Time Series - Percent Change": ["Zeitreihen - Prozentuale Veränderung"], + "Time Series - Stacked": ["Zeitreihen - Gestapelt"], + "Histogram": ["Histogramm"], + "Must have at least one numeric column specified": [ + "Mindestens eine numerische Spalte erforderlich" ], - "A timeout occurred while generating a csv.": [ - "Beim Generieren einer CSV-Datei ist ein Timeout aufgetreten." + "Distribution - Bar Chart": ["Verteilung - Balkendiagramm"], + "Can't have overlap between Series and Breakdowns": [ + "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig" ], - "A timeout occurred while generating a dataframe.": [ - "Beim Generieren eines Datenextrakts ist ein Timeout aufgetreten." + "Pick at least one field for [Series]": [ + "Wählen Sie mindestens ein Feld für [Serie] aus." ], - "A timeout occurred while taking a screenshot.": [ - "Beim Erstellen eines Screenshots ist ein Timeout aufgetreten." + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Wählen Sie genau 2 Spalten als [Quelle / Ziel]" ], - "A valid color scheme is required": [ - "Ein gültiges Farbschema ist erforderlich" + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Es gibt eine Schleife in Ihrem Sankey, bitte geben Sie einen Baum an. Hier ist ein fehlerhafter Link: {}" ], - "APPLY": ["ANWENDEN"], - "APR": ["APR"], - "AQE": ["AQE"], - "AUG": ["AUG"], - "AXIS TITLE MARGIN": ["ABSTAND DES ACHSENTITELS"], - "AXIS TITLE POSITION": ["Y-ACHSE TITEL POSITION"], - "About": ["Über"], - "Access": ["Zugang"], - "Access requests": ["Zugriffsanforderungen"], - "Access to user activity data is restricted": [ - "Der Zugriff auf Benutzeraktivitätsdaten ist eingeschränkt" + "Directed Force Layout": ["Kraftbasierte Anordnung"], + "Country Map": ["Länderkarte"], + "World Map": ["Weltkarte"], + "Parallel Coordinates": ["Parallele Koordinaten"], + "Heatmap": ["Heatmap"], + "Horizon Charts": ["Horizontdiagramme"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "[Longitude] und [Latitude] müssen eingestellt sein" ], - "Access token": ["Zugangs-Token"], - "Access was requested": ["Zugang wurde beantragt"], - "Action": ["Aktion"], - "Action Log": ["Aktionsprotokoll"], - "Actions": ["Aktion"], - "Active": ["Aktiv"], - "Actual Values": ["Istwerte"], - "Actual time range": ["Tatsächlicher Zeitbereich"], - "Actual value": ["Istwert"], - "Actual values": ["Aktuelle Werte"], - "Adaptive formatting": ["Adaptative Formatierung"], - "Add": ["Hinzufügen"], - "Add Alert": ["Alarm hinzufügen"], - "Add CSS Template": ["CSS Vorlagen hinzufügen"], - "Add CSS template": ["CSS Vorlagen"], - "Add Chart": ["Diagramm hinzufügen"], - "Add Column": ["Spalte einfügen"], - "Add Dashboard": ["Dashboard hinzufügen"], - "Add Database": ["Datenbank hinzufügen"], - "Add Log": ["Protokoll hinzufügen"], - "Add Metric": ["Metrik hinzufügen"], - "Add Report": ["Report hinzufügen"], - "Add Saved Query": ["Gespeicherte Abfrage hinzufügen"], - "Add a Plugin": ["Plugin hinzufügen"], - "Add a dataset": ["Datensatz hinzufügen"], - "Add a new tab": ["Neu Registerkarte hinzufügen"], - "Add a new tab to create SQL Query": [ - "Neue Registerkarte zum Erstellen einer SQL-Abfrage hinzufügen" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Muss eine Spalte [Gruppieren nach] haben, um 'count' als [Label] zu verwenden" ], - "Add additional custom parameters": ["Zusätzliche Parameter hinzufügen"], - "Add an annotation layer": ["Anmerkungsebene hinzufügen"], - "Add an item": ["Element hinzufügen"], - "Add and edit filters": ["Hinzufügen und Bearbeiten von Filtern"], - "Add annotation": ["Anmerkungen hinzufügen"], - "Add annotation layer": ["Anmerkungsebene hinzufügen"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [ - "Fügen Sie berechnete Spalten im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" + "Choice of [Label] must be present in [Group By]": [ + "Die Auswahl von [Label] muss in [Group By] vorhanden sein." ], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" + "Choice of [Point Radius] must be present in [Group By]": [ + "Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein." ], - "Add cross-filter": ["Kreuzfilter hinzufügen"], - "Add custom scoping": [""], - "Add delivery method": ["Übermittlungsmethode hinzufügen"], - "Add extra connection information.": [ - "Zusätzliche Verbindungsinformationen hinzufügen" + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "Die Spalten [Longitude] und [Latitude] müssen in [Group By] vorhanden sein." ], - "Add filter": ["Filter hinzufügen"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "Fügen Sie Filterklauseln hinzu, um die Anfrage der Filter-Quelle zu steuern.\n allerdings nur im Zusammenhang mit der Autovervollständigung, d.h. diese Bedingungen\n wirken Sie sich nicht darauf aus, wie der Filter auf das Dashboard angewendet wird. Das ist nützlich,\n wenn Sie die Antwortzeit der Abfrage verbessern möchten, indem Sie nur eine Teilmenge\n der zugrunde liegenden Daten scannen oder die verfügbaren Werte einschränken, die im Filter angezeigt werden." + "Deck.gl - Multiple Layers": ["Deck.gl - Mehrere Ebenen"], + "Bad spatial key": ["Fehlerhafter räumlicher Schlüssel"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Ungültiger räumlicher NULL-Eintrag gefunden, bitte erwägen Sie, diese herauszufiltern" ], - "Add filters and dividers": ["Filter und Trennlinien hinzufügen"], - "Add item": ["Element hinzufügen"], - "Add metric": ["Metrik hinzufügen"], - "Add metrics to dataset in \"Edit datasource\" modal": [ - "Fügen Sie Metriken im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" + "Deck.gl - Scatter plot": ["Deck.gl - Streudiagramm"], + "Deck.gl - Screen Grid": ["Deck.gl - Bildschirmraster"], + "Deck.gl - 3D Grid": ["Deck.gl - 3D-Raster"], + "Deck.gl - Paths": ["Deck.gl - Pfade"], + "Deck.gl - Polygon": ["Deck.gl - Polygon"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], + "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], + "Deck.gl - Arc": ["Deck.gl - Bogen"], + "Event flow": ["Ereignisablauf"], + "Time Series - Paired t-test": ["Zeitreihen - t-Differenzentest"], + "Time Series - Nightingale Rose Chart": [ + "Zeitreihe - Nightingale Rose Chart" ], - "Add new color formatter": ["Neuen Farbformatierer hinzufügen"], - "Add new formatter": ["Neuen Formatierer hinzufügen"], - "Add notification method": ["Benachrichtigungsmethode hinzufügen"], - "Add required control values to preview chart": [ - "Erforderliche Steuerelementwerte zur Diagramm-Vorschau hinzufügen" + "Partition Diagram": ["Partitionsdiagramm"], + "Please choose at least one groupby": [ + "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium" ], - "Add required control values to save chart": [ - "Fügen Sie erforderlicher Steuerelementwerte hinzu, um das Diagramms zu speichern" + "Invalid advanced data type: %(advanced_data_type)s": [ + "Ungültiger erweiterter Datentyp: %(advanced_data_type)s" ], - "Add sheet": ["Tabelle hinzufügen"], - "Add the name of the chart": ["Name des Diagramms hinzufügen"], - "Add the name of the dashboard": ["Name des Dashboards hinzufügen"], - "Add to dashboard": ["Zu Dashboard hinzufügen"], - "Add/Edit Filters": ["Filter hinzufügen/bearbeiten"], - "Added": ["Hinzugefügt"], - "Added to 1 dashboard": [ - "Zu Dashboard hinzugefügt", - "Zu %s Dashboards hinzugefügt" + "Deleted %(num)d annotation layer": [ + "%(num)d Anmerkungebene gelöscht", + "%(num)d Anmerkungsebenen gelöscht" ], - "Additional Parameters": ["Zusätzliche Parameter"], - "Additional fields may be required": [ - "Eventuell sind weitere Felder erforderlich" + "All Text": ["Gesamter Texte"], + "Deleted %(num)d annotation": [ + "%(num)d Anmerkung gelöscht", + "%(num)d Anmerkungen gelöscht" ], - "Additional information": ["Zusätzliche Information"], - "Additional metadata": ["Zusätzliche Metadaten"], - "Additional padding for legend.": ["Zusätzliche Einrückung für Legende."], - "Additional parameters": ["Zusätzliche Parameter"], - "Additional settings.": ["Zusätzliche Einstellungen"], - "Additional text to add before or after the value, e.g. unit": [ - "Zusätzlicher Text, der vor oder nach dem Wert hinzugefügt werden kann, z. B. Einheit" + "Deleted %(num)d chart": [ + "%(num)d Diagramm gelöscht", + "%(num)d Diagramme gelöscht" ], - "Additive": ["Additiv"], - "Adjust how this database will interact with SQL Lab.": [ - "Anpassen, wie diese Datenbank mit SQL Lab interagiert." + "Is certified": ["Zertifiziert"], + "Has created by": ["Hat „Erstellt von“"], + "Created by me": ["Von mir erstellt"], + "Owned Created or Favored": ["Im Besitz, Erstellt oder Favorisiert"], + "Total (%(aggfunc)s)": ["Insgesamt (%(aggfunc)s)"], + "Subtotal": ["Zwischensumme"], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "\"confidence_interval\" muss zwischen 0 und 1 liegen (exklusiv)" ], - "Adjust performance settings of this database.": [ - "Leistungseinstellungen dieser Datenbank anpassen." + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "Das untere Perzentil muss größer als 0 und kleiner als 100 sein. Muss niedriger als das obere Perzentil sein." ], - "Advanced": ["Erweitert"], - "Advanced Analytics": ["Erweiterte Analysen"], - "Advanced Data type": ["Erweiterter Datentyp"], - "Advanced analytics": ["Erweiterte Analysen"], - "Advanced analytics Query A": ["Advanced Analytics Abfrage A"], - "Advanced analytics Query B": ["Advanced Analytics Abfrage B"], - "Advanced data type": ["Erweiterter Datentyp"], - "Advanced-Analytics": ["Erweiterte Analysen"], - "Aesthetic": ["Ästhetisch"], - "After": ["Nach"], - "Aggregate": ["Aggregieren"], - "Aggregate Mean": ["Aggregater Mittelwert"], - "Aggregate Sum": ["Aggregierte Summe"], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "Aggregatfunktion, die auf die Liste der Punkte in jedem Cluster angewendet wird, um die Clusterbezeichnung zu erstellen." + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Das obere Perzentil muss größer als 0 und kleiner als 100 sein. Muss größer als das untere Perzentil sein." ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "Aggregatfunktion, die beim Pivotieren und Berechnen der Summe der Zeilen und Spalten angewendet werden soll" + "`width` must be greater or equal to 0": [ + "\"Breite\" muss größer oder gleich 0 sein" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "Aggregiert Daten innerhalb der Grenzen von Rasterzellen und ordnet die aggregierten Werte einer dynamischen Farbskala zu" + "`row_limit` must be greater than or equal to 0": [ + "\"row_limit\" muss größer oder gleich 0 sein" ], - "Aggregation function": ["Aggregationsfunktion"], - "Alert": ["Alarm"], - "Alert Triggered, In Grace Period": ["Alarm ausgelöst, in Kulanzzeit"], - "Alert condition": ["Alarmierungsbedingung"], - "Alert condition schedule": ["Alarmierung-Zeitplan"], - "Alert ended grace period.": ["Alarm beendet Karenzzeit."], - "Alert failed": ["Alarm fehlgeschlagen"], - "Alert fired during grace period.": [ - "Alarm während Karenzzeit ausgelöst." - ], - "Alert found an error while executing a query.": [ - "Alarm ist beim Ausführen einer Abfrage auf einen Fehler gestoßen." + "`row_offset` must be greater than or equal to 0": [ + "\"row_offset\" muss größer oder gleich 0 sein" ], - "Alert name": ["Name des Alarms"], - "Alert on grace period": ["Alarm in Karenzzeit"], - "Alert query returned a non-number value.": [ - "Die Alarm-Abfrage hat einen nicht-numerischen Wert zurückgegeben." + "orderby column must be populated": [ + "ORDER BY-Spalte muss angegeben werden" ], - "Alert query returned more than one column.": [ - "Die Alarm-Abfrage hat mehr als eine Spalte zurückgegeben." + "Chart has no query context saved. Please save the chart again.": [ + "Für das Diagramm ist kein Abfragekontext gespeichert. Bitte speichern Sie das Diagramm erneut." ], - "Alert query returned more than one column. %s columns returned": [ - "Die Alarmabfrage hat mehr als eine Spalte zurückgegeben. %s Spalten zurückgegegeben" + "Request is incorrect: %(error)s": ["Anfrage ist falsch: %(error)s"], + "Request is not JSON": ["Anfrage ist nicht JSON"], + "Empty query result": ["Leeres Abfrageergebnis"], + "Owners are invalid": ["Besitzende sind ungültig"], + "Some roles do not exist": ["Einige Rollen sind nicht vorhanden"], + "Datasource type is invalid": ["Datenquellen-Typ ist ungültig"], + "Datasource does not exist": ["Datenquelle ist nicht vorhanden"], + "Query does not exist": ["Abfrage ist nicht vorhanden"], + "Annotation layer parameters are invalid.": [ + "Anmerkungs-Layer-Parameter sind ungültig." ], - "Alert query returned more than one row.": [ - "Die Alarm-Abfrage hat mehr als eine Zeile zurückgegeben." + "Annotation layer could not be created.": [ + "Anmerkungsebene konnte nicht erstellt werden." ], - "Alert query returned more than one row. %s rows returned": [ - "Die Alarmabfrage hat mehr als eine Zeile zurückgegeben. %s zurückgegebene Zeilen" + "Annotation layer could not be updated.": [ + "Anmerkungsebene konnte nicht aktualisiert werden." ], - "Alert running": ["Alarm wird ausgeführt"], - "Alert triggered, notification sent": [ - "Alarm ausgelöst, Benachrichtigung gesendet" + "Annotation layer not found.": ["Anmerkungsebene nicht gefunden."], + "Annotation layer has associated annotations.": [ + "Der Anmerkungs-Layer ist Anmerkungen zugeordnet." ], - "Alert validator config error.": [ - "Konfigurationsfehler des Alarm-Validators." + "Name must be unique": ["Name muss eindeutig sein"], + "End date must be after start date": [ + "‚Von Datum' kann nicht größer als ‚Bis Datum' sein" ], - "Alerts": ["Alarme"], - "Alerts & Reports": ["Alarme und Reporte"], - "Alerts & reports": ["Alarme und Reports"], - "Align +/-": ["Ausrichten +/-"], - "All": ["Alle"], - "All Entities": ["Alle Entitäten"], - "All Text": ["Gesamter Texte"], - "All charts": ["Alle Diagramme"], - "All charts/global scoping": [""], - "All filters": ["Alle Filter"], - "All filters (%(filterCount)d)": ["Alle Filter (%(filterCount)d)"], - "All panels": ["Alle Bereiche"], - "All panels with this column will be affected by this filter": [ - "Alle Bereiche mit dieser Spalte sind von diesem Filter betroffen" + "Short description must be unique for this layer": [ + "Kurzbeschreibung muss für diese Ebene eindeutig sein" ], - "Allow CREATE TABLE AS": ["CREATE TABLE AS zulassen"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Option CREATE TABLE AS in SQL Lab zulassen" + "Annotation not found.": ["Anmerkung nicht gefunden."], + "Annotation parameters are invalid.": [ + "Anmerkungs-Parameter sind ungültig." ], - "Allow CREATE VIEW AS": ["CREATE VIEW AS zulassen"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Option CREATE VIEW AS in SQL Lab zulassen" + "Annotation could not be created.": [ + "Anmerkung konnte nicht erstellt werden." ], - "Allow Csv Upload": ["CSV-Upload zulassen"], - "Allow DML": ["DML zulassen"], - "Allow columns to be rearranged": ["Neuanordnung von Spalten zulassen"], - "Allow creation of new tables based on queries": [ - "Erstellen neuer Tabellen basierend auf Abfragen zulassen" + "Annotation could not be updated.": [ + "Anmerkung konnte nicht aktualisiert werden." ], - "Allow creation of new views based on queries": [ - "Erstellen neuer Ansichten basierend auf Abfragen zulassen" + "Annotations could not be deleted.": [ + "Anmerkungen konnten nicht gelöscht werden." ], - "Allow data manipulation language": [ - "DML (Datenmanipulationssprache) zulassen" + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Die Zeitzeichenfolge ist mehrdeutig. Bitte geben Sie [%(human_readable)s ago] oder [%(human_readable)s later] an." ], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "Endbenutzer*innen erlauben, Spaltenüberschriften per Drag & Drop neu anzuordnen. Beachten Sie, dass ihre Änderungen beim nächsten Öffnen des Diagramms nicht beibehalten werden." + "Cannot parse time string [%(human_readable)s]": [ + "Zeitzeichenfolge [%(human_readable)s] kann nicht analysiert werden" ], - "Allow file uploads to database": [ - "Datei-Uploads in die Datenbank zulassen" + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Zeitinterval ist unklar. Bitte geben Sie [%(human_readable)s ago] oder [%(human_readable)s later] an." ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Manipulation der Datenbank mit Nicht-SELECT-Anweisungen wie UPDATE, DELETE, CREATE usw. ermöglichen." + "Database does not exist": ["Datenbank existiert nicht"], + "Dashboards do not exist": ["Dashboards existieren nicht"], + "Datasource type is required when datasource_id is given": [ + "Datenquellentyp ist erforderlich, wenn datasource_id angegeben wird" ], - "Allow multiple selections": ["Mehrfachauswahl möglich"], - "Allow node selections": ["Knotenauswahl zulassen"], - "Allow sending multiple polygons as a filter event": [ - "Senden mehrerer Polygone als Filterereignis zulassen" + "Chart parameters are invalid.": ["Diagrammparameter sind ungültig."], + "Chart could not be created.": ["Diagramm konnte nicht erstellt werden."], + "Chart could not be updated.": [ + "Diagramm konnte nicht aktualisiert werden." ], - "Allow this database to be explored": [ - "Abfragen dieser Datenbank in SQL Lab zulassen" + "Charts could not be deleted.": [ + "Diagramme konnten nicht gelöscht werden." ], - "Allow this database to be queried in SQL Lab": [ - "Abfragen dieser Datenbank in SQL Lab zulassen" + "There are associated alerts or reports": [ + "Es gibt zugehörige Alarme oder Reports" ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Benutzer*innen das Ausführen von Nicht-SELECT-Anweisungen (UPDATE, DELETE, CREATE, ...) in SQL Lab erlauben" + "You don't have access to this chart.": [ + "Sie haben keinen Zugriff auf dieses Diagramm." ], - "Allowed Domains (comma separated)": [ - "Zulässige Domänen (durch Kommas getrennt)" + "Changing this chart is forbidden": [ + "Das Ändern dieses Diagramms ist verboten" ], - "Alphabetical": ["Alphabetisch"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "Diese Visualisierung, die auch als Box-Whisker-Plot bezeichnet wird, vergleicht die Verteilungen einer Metrik über mehrere Gruppen hinweg. Der Kasten in der Mitte stellt den Mittelwert, den Median und die inneren 2 Quartile dar. Die sogenannten „Whisker“ um jede Box visualisieren die Min-, Max-, Range- und äußeren 2 Quartile." + "Import chart failed for an unknown reason": [ + "Fehler beim Importieren des Diagramms aus unbekanntem Grund" ], - "Altered": ["Geändert"], - "An Error Occurred": ["Ein Fehler ist aufgetreten"], - "An alert named \"%(name)s\" already exists": [ - "Es existiert bereits ein Alarm mit dem Namen \"%(name)s\"" + "Error: %(error)s": ["Fehler: %(error)s"], + "CSS template not found.": ["CSS-Vorlage nicht gefunden."], + "Must be unique": ["Muss eindeutig sein"], + "Dashboard parameters are invalid.": [ + "Dashboard-Parameter sind ungültig." ], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "Bei Verwendung eines Zeitvergleichs muss ein geschlossener Zeitbereich (sowohl Anfang als auch Ende) angegeben werden." + "Dashboard could not be updated.": [ + "Das Dashboard konnte nicht aktualisiert werden." ], - "An engine must be specified when passing individual parameters to a database.": [ - "Beim Übergeben einzelner Parameter an eine Datenbank muss ein Modul angegeben werden." + "Dashboard could not be deleted.": [ + "Dashboard konnte nicht gelöscht werden." ], - "An error has occurred": ["Ein Fehler ist aufgetreten"], - "An error occurred": ["Ein Fehler ist aufgetreten"], - "An error occurred saving dataset": [ - "Beim Speichern des Datensatz ist ein Fehler aufgetreten" + "Changing this Dashboard is forbidden": [ + "Das Ändern dieses Dashboards ist verboten" ], - "An error occurred while accessing the value.": [ - "Beim Zugriff auf den Wert ist ein Fehler aufgetreten." + "Import dashboard failed for an unknown reason": [ + "Import-Dashboard aus unbekanntem Grund fehlgeschlagen" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Beim Reduzieren des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "You don't have access to this dashboard.": [ + "Sie haben keinen Zugriff auf dieses Dashboard." ], - "An error occurred while creating %ss: %s": [ - "Beim Erstellen von %s ist ein Fehler aufgetreten: %s" + "You don't have access to this embedded dashboard config.": [ + "Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration." ], - "An error occurred while creating the data source": [ - "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten" + "No data in file": ["Keine Daten in Datei"], + "Database parameters are invalid.": ["Datenbankparameter sind ungültig."], + "A database with the same name already exists.": [ + "Eine Datenbank mit dem gleichen Namen existiert bereits." ], - "An error occurred while creating the value.": [ - "Beim Erstellen des Werts ist ein Fehler aufgetreten." + "Field is required": ["Dieses Feld ist erforderlich"], + "Field cannot be decoded by JSON. %(json_error)s": [ + "Das Feld kann nicht durch JSON decodiert werden. %(json_error)s" ], - "An error occurred while deleting the value.": [ - "Beim Löschen des Werts ist ein Fehler aufgetreten." + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. Der Schlüssel %{key}s ist ungültig." ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Beim Erweitern des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Database not found.": ["Datenbank nicht gefunden."], + "Database could not be created.": [ + "Datenbank konnte nicht erstellt werden." ], - "An error occurred while fetching %s info: %s": [ - "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" + "Database could not be updated.": [ + "Datenbank konnte nicht aktualisiert werden." ], - "An error occurred while fetching %ss: %s": [ - "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" + "Connection failed, please check your connection settings": [ + "Verbindung fehlgeschlagen, bitte überprüfen Sie Ihre Verbindungseinstellungen" ], - "An error occurred while fetching available CSS templates": [ - "Beim Abrufen verfügbarer CSS-Vorlagen ist ein Fehler aufgetreten" + "Cannot delete a database that has datasets attached": [ + "Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden" ], - "An error occurred while fetching chart created by values: %s": [ - "Beim Abrufen des Diagramms, das durch die folgenden Werte erstellt wurde, ist ein Fehler aufgetreten: %s" + "Database could not be deleted.": [ + "Datenbank konnte nicht gelöscht werden." ], - "An error occurred while fetching chart owners values: %s": [ - "Beim Abrufen von Diagrammbesitzer*innenwerten ist ein Fehler aufgetreten: %s" + "Stopped an unsafe database connection": [ + "Eine unsichere Datenbankverbindung wurde beendet" ], - "An error occurred while fetching created by values: %s": [ - "Beim Abrufen von Werten ist ein Fehler aufgetreten: %s" + "Could not load database driver": [ + "Datenbanktreiber konnte nicht geladen werden" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Beim Abrufen des Dashboards, das mit folgenden Werte erstellt wurde, ist ein Fehler aufgetreten: %s" + "Unexpected error occurred, please check your logs for details": [ + "Unerwarteter Fehler aufgetreten, bitte überprüfen Sie Ihre Protokolle auf Details" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Beim Abrufen von Dashboardbesitzer*innen-Werten ist ein Fehler aufgetreten: %s" + "no SQL validator is configured": ["kein SQL-Validator ist konfiguriert"], + "No validator found (configured for the engine)": [ + "Kein Validator gefunden (für das Modul konfiguriert)" ], - "An error occurred while fetching dashboards": [ - "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" + "Was unable to check your query": [ + "Ihre Abfrage konnte nicht überprüft werden" ], - "An error occurred while fetching dashboards: %s": [ - "Beim Abrufen von Dashboards ist ein Fehler aufgetreten: %s" + "An unexpected error occurred": [ + "Ein unerwarteter Fehler ist aufgetreten" ], - "An error occurred while fetching database related data: %s": [ - "Beim Abrufen datenbankbezogener Daten ist ein Fehler aufgetreten: %s" + "Import database failed for an unknown reason": [ + "Fehler beim Importieren der Datenbank aus unbekanntem Grund" ], - "An error occurred while fetching database values: %s": [ - "Beim Abrufen von Datenbankwerten ist ein Fehler aufgetreten: %s" + "Could not load database driver: {}": [ + "Datenbanktreiber konnte nicht geladen werden: {}" ], - "An error occurred while fetching dataset datasource values: %s": [ - "Beim Abrufen von Datassatz-Datenquellenwerten ist ein Fehler aufgetreten: %s" + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "Die Engine-Spezifikation \"%(engine)s\" unterstützt keine Konfiguration über Parameter." ], - "An error occurred while fetching dataset owner values: %s": [ - "Beim Abrufen von Angaben zum/zur Datensatz-Besitzer*in ist ein Fehler aufgetreten: %s" + "Database is offline.": ["Datenbank ist offline."], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s konnte Ihre Abfrage nicht überprüfen.\nBitte überprüfen Sie Ihre Anfrage.\nAusnahme: %(ex)s" ], - "An error occurred while fetching dataset related data": [ - "Fehler beim Abrufen von Daten des Datensatzes" + "SSH Tunnel could not be deleted.": [ + "SSH-Tunnel konnte nicht gelöscht werden." ], - "An error occurred while fetching dataset related data: %s": [ - "Beim Abrufen von Datensatzdaten ist ein Fehler aufgetreten: %s" + "SSH Tunnel not found.": ["SSH-Tunnel nicht gefunden."], + "SSH Tunnel parameters are invalid.": [ + "SSH-Tunnelparameter sind ungültig." ], - "An error occurred while fetching datasets: %s": [ - "Beim Abrufen von Datensätzen ist ein Fehler aufgetreten: %s" + "SSH Tunnel could not be updated.": [ + "SSH-Tunnel konnte nicht aktualisiert werden." ], - "An error occurred while fetching function names.": [ - "Fehler bei Abruf von Funktionsnamen." + "Creating SSH Tunnel failed for an unknown reason": [ + "Das Erstellen eines SSH-Tunnels ist aus unbekanntem Grund fehlgeschlagen" ], - "An error occurred while fetching owners values: %s": [ - "Beim Abrufen der Werte der Besitzer*innen ist ein Fehler aufgetreten: %s" + "SSH Tunneling is not enabled": ["SSH-Tunneling ist nicht aktiviert"], + "Must provide credentials for the SSH Tunnel": [ + "Anmeldeinformationen für den SSH-Tunnel sind verpflichtend" ], - "An error occurred while fetching schema values: %s": [ - "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" + "Cannot have multiple credentials for the SSH Tunnel": [ + "Anmeldeinformationen für den SSH-Tunnel müssen eindeutig sein" ], - "An error occurred while fetching tab state": [ - "Beim Abrufen des Registerkartenstatus ist ein Fehler aufgetreten" + "The database was not found.": ["Datenbank nicht gefunden."], + "Dataset %(name)s already exists": [ + "Datensatz %(name)s bereits vorhanden" ], - "An error occurred while fetching table metadata": [ - "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten" + "Database not allowed to change": [ + "Datenbank darf nicht geändert werden" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "One or more columns do not exist": [ + "Eine oder mehrere Spalten sind nicht vorhanden" ], - "An error occurred while fetching tag created by values: %s": [ - "Beim Abrufen des von den folgenden Werten erstellten Tags ist ein Fehler aufgetreten: %s" + "One or more columns are duplicated": [ + "Eine oder mehrere Spalten werden dupliziert" ], - "An error occurred while fetching user values: %s": [ - "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" + "One or more columns already exist": [ + "Eine oder mehrere Spalten sind bereits vorhanden" ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "Beim Ausblenden der linken Leiste ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "One or more metrics do not exist": [ + "Eine oder mehrere Metriken sind nicht vorhanden" ], - "An error occurred while importing %s: %s": [ - "Beim Importieren von %s ist ein Fehler aufgetreten: %s" + "One or more metrics are duplicated": [ + "Eine oder mehrere Metriken werden dupliziert" ], - "An error occurred while loading the SQL": [ - "Beim Laden des SQL ist ein Fehler aufgetreten" + "One or more metrics already exist": [ + "Eine oder mehrere Metriken sind bereits vorhanden" ], - "An error occurred while opening Explore": [ - "Beim Öffnen von Explore ist ein Fehler aufgetreten" + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Tabelle [%(table_name)s] konnte nicht gefunden werden, überprüfen Sie bitte Ihre Datenbankverbindung, Ihr Schema und Ihren Tabellennamen" ], - "An error occurred while parsing the key.": [ - "Beim Parsen des Schlüssels ist ein Fehler aufgetreten." + "Dataset does not exist": ["Datensatz existiert nicht"], + "Dataset parameters are invalid.": ["Datensatz-Parameter sind ungültig."], + "Dataset could not be created.": [ + "Datensatz konnte nicht erstellt werden." ], - "An error occurred while pruning logs ": [ - "Beim Kürzen von Protokollen ist ein Fehler aufgetreten " + "Dataset could not be updated.": [ + "Datensatz konnte nicht aktualisiert werden." ], - "An error occurred while removing query. Please contact your administrator.": [ - "Beim Entfernen der Abfrage ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Samples for dataset could not be retrieved.": [ + "Beispiele für Datensatz konnten nicht abgerufen werden." ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Beim Entfernen der Registerkarte ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Changing this dataset is forbidden": [ + "Das Ändern dieses Datensatz ist verboten" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Beim Entfernen des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Import dataset failed for an unknown reason": [ + "Fehler beim Importieren des Datasatzes aus unbekanntem Grund" ], - "An error occurred while rendering the visualization: %s": [ - "Bei der Darstellung dieser Visualisierung ist ein Fehler aufgetreten: %s" + "You don't have access to this dataset.": [ + "Sie haben keinen Zugriff auf dieses Dataset." ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Beim Festlegen der aktiven Registerkarte ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Dataset could not be duplicated.": [ + "Der Datensatz konnte nicht dupliziert werden." ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Beim Festlegen der Registerkarte Autorun ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Data URI is not allowed.": ["Daten-URI ist nicht zulässig."], + "Dataset column not found.": ["Datensatz-Spalte nicht gefunden."], + "Dataset column delete failed.": [ + "Fehler beim Löschen der Datensatzspalte." ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Beim Festlegen der Registerkartendatenbank-ID ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Changing this dataset is forbidden.": [ + "Das Ändern dieses Datensatzes ist verboten." ], - "An error occurred while setting the tab name. Please contact your administrator.": [ - "Beim Festlegen des Registerkartennamens ist ein Fehler aufgetreten. Bitte wenden Sie sich an Ihren Administrator." + "Dataset metric not found.": ["Datensatz-Metrik nicht gefunden."], + "Dataset metric delete failed.": [ + "Fehler beim Löschen der Datensatzmetrik." ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Beim Festlegen des Registerkartenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Form data not found in cache, reverting to chart metadata.": [ + "Formulardaten nicht im Cache gefunden, es wird auf Diagramm-Metadaten zurückgesetzt." ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "Beim Festlegen der Vorlagen-Parameter ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." + "Form data not found in cache, reverting to dataset metadata.": [ + "Formulardaten nicht im Cache gefunden. Es wird auf Datensatz-Metadaten zurückgesetzt." ], - "An error occurred while starring this chart": [ - "Beim Favorisieren des Diagramms ist ein Fehler aufgetreten." + "[Missing Dataset]": ["[Fehlender Datensatz]"], + "Saved queries could not be deleted.": [ + "Gespeicherte Abfragen konnten nicht gelöscht werden." ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "Beim Speichern der letzten Abfrage-ID im Backend ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." + "Saved query not found.": ["Gespeicherte Abfrage nicht gefunden."], + "Import saved query failed for an unknown reason.": [ + "Der Import der gespeicherten Abfrage ist aus einem unbekannten Grund fehlgeschlagen." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "Beim Speichern der Abfrage im Backend ist ein Fehler aufgetreten. Um zu vermeiden, dass Ihre Änderungen verloren gehen, speichern Sie Ihre Abfrage bitte über die Schaltfläche \"Abfrage speichern\"." + "Saved query parameters are invalid.": [ + "Gespeicherte Abfrageparameter sind ungültig." ], - "An error occurred while updating the value.": [ - "Beim Aktualisieren des Werts ist ein Fehler aufgetreten." + "Invalid tab ids: %s(tab_ids)": ["Ungültige Tab-IDs: %s(tab_ids)"], + "Dashboard does not exist": ["Dashboard existiert nicht"], + "Chart does not exist": ["Diagramm existiert nicht"], + "Database is required for alerts": [ + "Für Alarme ist eine Datenbank erforderlich" ], - "An error occurred while upserting the value.": [ - "Beim Erhöhen des Werts ist ein Fehler aufgetreten." + "Type is required": ["Typ ist erforderlich"], + "Choose a chart or dashboard not both": [ + "Diagramm oder Dashboard auswählen, nicht beides" ], - "An unexpected error occurred": [ - "Ein unerwarteter Fehler ist aufgetreten" + "Must choose either a chart or a dashboard": [ + "Sie müssen entweder ein Diagramm oder ein Dashboard auswählen" ], - "An unknown error occurred. Please contact your Superset administrator": [ - "Ein unbekannter Fehler ist aufgetreten. Wenden Sie sich an Ihre*n Superset-Administrator*in" + "Please save your chart first, then try creating a new email report.": [ + "Bitte speichern Sie zuerst Ihr Diagramm und versuchen Sie dann, einen neuen E-Mail-Report zu erstellen." ], - "Anchor to": ["Verankern mit"], - "Angle at which to end progress axis": [ - "Winkel, an dem die Fortschrittsachse enden soll" + "Please save your dashboard first, then try creating a new email report.": [ + "Bitte speichern Sie zuerst Ihr Dashboard und versuchen Sie dann, einen neuen E-Mail-Report zu erstellen." ], - "Angle at which to start progress axis": [ - "Winkel, an dem die Fortschrittsachse gestartet werden soll" + "Report Schedule parameters are invalid.": [ + "Report-Ausführungsplanparameter sind ungültig." ], - "Animation": ["Animation"], - "Annotation": ["Anmerkung"], - "Annotation Layer %s": ["Anmerkungs-Layer %s"], - "Annotation Layers": ["Anmerkungsebenen"], - "Annotation Slice Configuration": ["Konfiguration Anmerkungs-Slice"], - "Annotation could not be created.": [ - "Anmerkung konnte nicht erstellt werden." + "Report Schedule could not be created.": [ + "Report-Ausführungsplan konnte nicht erstellt werden." ], - "Annotation could not be updated.": [ - "Anmerkung konnte nicht aktualisiert werden." + "Report Schedule could not be updated.": [ + "Report-Ausführungsplan konnte nicht aktualisiert werden." ], - "Annotation delete failed.": ["Fehler beim Löschen von Anmerkungen."], - "Annotation layer": ["Anmerkungsebene"], - "Annotation layer could not be created.": [ - "Anmerkungsebene konnte nicht erstellt werden." + "Report Schedule not found.": ["Report-Ausführungsplan nicht gefunden."], + "Report Schedule delete failed.": [ + "Fehler beim Löschen des Report-Ausführungsplans." ], - "Annotation layer could not be deleted.": [ - "Anmerkungsebene konnte nicht gelöscht werden." + "Report Schedule log prune failed.": [ + "Fehler beim Beschneiden des Report-Ausführungsplan-Logs." ], - "Annotation layer could not be updated.": [ - "Anmerkungsebene konnte nicht aktualisiert werden." + "Report Schedule execution failed when generating a screenshot.": [ + "Report-Ausführungsplan Die Ausführung des Zeitplans ist beim Generieren eines Screenshots fehlgeschlagen." ], - "Annotation layer delete failed.": [ - "Fehler beim Löschen der Anmerkungsebene." + "Report Schedule execution failed when generating a csv.": [ + "Report-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei." ], - "Annotation layer description columns": [ - "Beschreibungsspalten für Anmerkungsebenen" + "Report Schedule execution failed when generating a dataframe.": [ + "Report-Ausführungsplan Fehler beim Generieren der Daten für geplanten Report." ], - "Annotation layer has associated annotations.": [ - "Der Anmerkungs-Layer ist Anmerkungen zugeordnet." + "Report Schedule execution got an unexpected error.": [ + "Unerwarteter Fehler bei der Ausführung des geplanten Reports." ], - "Annotation layer interval end": ["Ende des Anmerkungsebenen-Intervalls"], - "Annotation layer name": ["Name der Anmerkungebene"], - "Annotation layer not found.": ["Anmerkungsebene nicht gefunden."], - "Annotation layer opacity": ["Deckkraft der Amerkungsebene"], - "Annotation layer parameters are invalid.": [ - "Anmerkungs-Layer-Parameter sind ungültig." + "Report Schedule is still working, refusing to re-compute.": [ + "Geplanter Bericht wird noch erstellt. Derzeit keine Neuerstellung möglich." ], - "Annotation layer stroke": ["Strichstärke Anmerkungebene"], - "Annotation layer time column": ["Zeitspalte der Anmerkungsebene"], - "Annotation layer title column": ["Titelspalte der Anmerkungsebene"], - "Annotation layer type": ["Anmerkungsebenen-Typ"], - "Annotation layer value": ["Wert der Anmerkungsebene"], - "Annotation layers": ["Anmerkungsebenen"], - "Annotation layers are still loading.": [ - "Anmerkungsebenen werden noch geladen." + "Report Schedule reached a working timeout.": [ + "Erstellung des geplanter Reports hat zulässige Zeit überschritten." ], - "Annotation name": ["Name der Anmerkung"], - "Annotation not found.": ["Anmerkung nicht gefunden."], - "Annotation parameters are invalid.": [ - "Anmerkungs-Parameter sind ungültig." + "A report named \"%(name)s\" already exists": [ + "Ein Bericht mit dem Namen \"%(name)s\" ist bereits vorhanden" ], - "Annotation source": ["Quelle Anmerkungen"], - "Annotation source type": ["Typ der Anmerkungsquelle"], - "Annotation template created": ["Anmerkungsvorlage erstellt"], - "Annotation template updated": ["Anmerkungsvorlage aktualisiert"], - "Annotations and Layers": ["Anmerkungen und Ebenen"], - "Annotations and layers": ["Anmerkungen und Ebenen"], - "Annotations could not be deleted.": [ - "Anmerkungen konnten nicht gelöscht werden." + "An alert named \"%(name)s\" already exists": [ + "Es existiert bereits ein Alarm mit dem Namen \"%(name)s\"" ], - "Any": ["Beliebig"], - "Any additional detail to show in the certification tooltip.": [ - "Alle zusätzlichen Details, die im Zertifizierungs-Tooltip angezeigt werden sollen." + "Resource already has an attached report.": [ + "Resource verfügt bereits über einen angefügten Bericht." ], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Jede hier ausgewählte Farbpalette überschreibt die Farben, die auf die einzelnen Diagramme dieses Dashboards angewendet werden" + "Alert query returned more than one row.": [ + "Die Alarm-Abfrage hat mehr als eine Zeile zurückgegeben." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können hinzugefügt werden. " + "Alert validator config error.": [ + "Konfigurationsfehler des Alarm-Validators." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können hinzugefügt werden. Informationen zum Verbinden eines Datenbanktreibers " + "Alert query returned more than one column.": [ + "Die Alarm-Abfrage hat mehr als eine Spalte zurückgegeben." ], - "Append": ["Anhängen"], - "Applied cross-filters (%d)": ["Kreuzfilter (%d) angewendet"], - "Applied filters (%d)": ["Angewendete Filter (%d)"], - "Applied filters: %s": ["Angewendete Filter: %s"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "Das angewendete rollierende Fenster hat keine Daten zurückgegeben. Bitte stellen Sie sicher, dass die Quellabfrage die im rollierenden Fenster definierten Mindestzeiträume erfüllt." + "Alert query returned a non-number value.": [ + "Die Alarm-Abfrage hat einen nicht-numerischen Wert zurückgegeben." ], - "Apply": ["Übernehmen"], - "Apply conditional color formatting to metrics": [ - "Bedingten Farbformatierung auf Metriken anwenden" + "Alert found an error while executing a query.": [ + "Alarm ist beim Ausführen einer Abfrage auf einen Fehler gestoßen." ], - "Apply conditional color formatting to numeric columns": [ - "Bedingte Farbformatierung auf numerische Spalten anwenden" + "A timeout occurred while executing the query.": [ + "Beim Ausführen der Abfrage ist ein Timeout aufgetreten." ], - "Apply filters": ["Filter anwenden"], - "Apply metrics on": ["Metriken anwenden auf"], - "Apply to all panels": ["Auf alle Bereiche anwenden"], - "Apply to specific panels": ["Anwenden auf bestimmte Bereiche"], - "April": ["April"], - "Arc": ["Bogen"], - "Are you sure you intend to overwrite the following values?": [ - "Sind Sie sicher, dass Sie die folgenden Werte überschreiben möchten?" + "A timeout occurred while taking a screenshot.": [ + "Beim Erstellen eines Screenshots ist ein Timeout aufgetreten." ], - "Are you sure you want to cancel?": ["Möchten Sie wirklich abbrechen?"], - "Are you sure you want to delete": ["Wollen Sie wirklich löschen"], - "Are you sure you want to delete %s?": [ - "Sind Sie sicher, dass Sie %s löschen möchten?" + "A timeout occurred while generating a csv.": [ + "Beim Generieren einer CSV-Datei ist ein Timeout aufgetreten." ], - "Are you sure you want to delete the selected %s?": [ - "Möchten Sie die/das ausgewählte %s wirklich löschen?" + "A timeout occurred while generating a dataframe.": [ + "Beim Generieren eines Datenextrakts ist ein Timeout aufgetreten." ], - "Are you sure you want to delete the selected annotations?": [ - "Möchten Sie die ausgewählten Anmerkungen wirklich löschen?" + "Alert fired during grace period.": [ + "Alarm während Karenzzeit ausgelöst." ], - "Are you sure you want to delete the selected charts?": [ - "Möchten Sie die ausgewählten Diagramme wirklich löschen?" + "Alert ended grace period.": ["Alarm beendet Karenzzeit."], + "Alert on grace period": ["Alarm in Karenzzeit"], + "Report Schedule state not found": [ + "Geplanter Report Status nicht gefunden" ], - "Are you sure you want to delete the selected dashboards?": [ - "Möchten Sie die ausgewählten Dashboards wirklich löschen?" - ], - "Are you sure you want to delete the selected datasets?": [ - "Möchten Sie die ausgewählten Datensätze wirklich löschen?" + "Report schedule system error": ["Systemfehler beim Berichts-Zeitplan"], + "Report schedule client error": ["Clientfehler beim Berichts-Zeitplan"], + "Report schedule unexpected error": [ + "Geplanter Report Unerwarteter Fehler" ], - "Are you sure you want to delete the selected layers?": [ - "Möchten Sie die ausgewählten Ebenen wirklich löschen?" + "Changing this report is forbidden": [ + "Das Ändern dieses Reports ist verboten" ], - "Are you sure you want to delete the selected queries?": [ - "Möchten Sie die ausgewählten Abfragen wirklich löschen?" + "An error occurred while pruning logs ": [ + "Beim Kürzen von Protokollen ist ein Fehler aufgetreten " ], - "Are you sure you want to delete the selected tags?": [ - "Möchten Sie die ausgewählten Tags wirklich löschen?" + "The database could not be found": ["Datenbank nicht gefunden."], + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Die Abfrage-Schätzung wurde nach %(sqllab_timeout)s Sekunden abgebrochen. Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark belastet." ], - "Are you sure you want to delete the selected templates?": [ - "Möchten Sie die ausgewählten Vorlagen wirklich löschen?" + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "Die Datenbank, auf die in dieser Abfrage verwiesen wird, wurde nicht gefunden. Wenden Sie sich an eine*n Administrator*in, um weitere Unterstützung zu erhalten, oder versuchen Sie es erneut." ], - "Are you sure you want to overwrite this dataset?": [ - "Möchten Sie diesen Datensatz wirklich überschreiben?" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "Die mit diesen Ergebnissen verknüpfte Abfrage konnte nicht gefunden werden. Sie müssen die ursprüngliche Abfrage erneut ausführen." ], - "Are you sure you want to proceed?": ["Möchten Sie wirklich fortfahren?"], - "Are you sure you want to save and apply changes?": [ - "Möchten Sie die Änderungen wirklich speichern und anwenden?" + "Cannot access the query": ["Zugriff auf die Abfrage nicht möglich"], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Daten konnten nicht deserialisiert werden. Möglicherweise möchten Sie die Abfrage erneut ausführen." ], - "Area Chart": ["Flächendiagramm"], - "Area Chart (legacy)": ["Flächendiagramm (Legacy)"], - "Area chart": ["Flächendiagramm"], - "Area chart opacity": ["Deckkraft des Flächendiagramms"], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "Flächendiagramme ähneln Liniendiagrammen, da sie Variablen mit der gleichen Skala darstellen, aber Flächendiagramme stapeln die Metriken übereinander." + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Daten konnten nicht aus dem Ergebnis-Backend deserialisiert werden. Das Speicherformat hat sich möglicherweise geändert, wodurch die alten Daten ungültig wurden. Sie müssen die ursprüngliche Abfrage erneut ausführen." ], - "Arrow": ["Pfeil"], - "Assign a set of parameters as": ["Eines Satz von Parametern zuweisen"], - "Associated Charts": ["Zugehörige Diagramme"], - "Async Execution": ["Asynchrone Ausführung"], - "Asynchronous query execution": ["Asynchrone Abfrageausführung"], - "August": ["August"], - "Auto": ["Auto"], - "Auto Zoom": ["Auto-Zoom"], - "Autocomplete": ["Autovervollständigung"], - "Autocomplete filters": ["Auto-Vervollständigen-Filter"], - "Autocomplete query predicate": [ - "Abfrageprädikat für die automatische Vervollständigung" + "Tag parameters are invalid.": ["Tag-Parameter sind ungültig."], + "Tag could not be created.": ["Tag konnte nicht erstellt werden."], + "Tag could not be deleted.": ["Tag konnte nicht gelöscht werden."], + "Tagged Object could not be deleted.": [ + "Getaggtes Object konnte nicht gelöscht werden." ], - "Automatic Color": ["Automatische Farbe"], - "Available sorting modes:": ["Verfügbare Sortiermodi:"], - "Average": ["Durchschnitt"], - "Average value": ["Durchschnittswert"], - "Axis": ["Achse"], - "Axis Bounds": ["Achsenbegrenzungen"], - "Axis Format": ["Achsenformat"], - "Axis Title": ["Titel der Achse"], - "Axis ascending": ["Achse aufsteigend"], - "Axis descending": ["Achse absteigend"], - "BOOLEAN": ["WAHRHEITSWERT"], - "Back": ["Zurück"], - "Back to all": ["Zurück zu allen"], - "Backend": ["Backend"], - "Backward values": ["Rückwärtsinterpolation"], - "Bad formula.": ["Fehlerhafte Formel."], - "Bad spatial key": ["Fehlerhafter räumlicher Schlüssel"], - "Bar": ["Balken"], - "Bar Chart": ["Balkendiagramm"], - "Bar Chart (legacy)": ["Balkendiagramm (Legacy)"], - "Bar Charts are used to show metrics as a series of bars.": [ - "Balkendiagramme werden verwendet, um Metriken als eine Reihe von Balken anzuzeigen." + "An error occurred while creating the value.": [ + "Beim Erstellen des Werts ist ein Fehler aufgetreten." ], - "Bar Values": ["Balkenwerte"], - "Bar orientation": ["Balken-Ausrichtung"], - "Base layer map style": ["Hintergrundkarten-Stil"], - "Based on a metric": ["Auf Metrik basierend"], - "Based on granularity, number of time periods to compare against": [ - "Basierend auf der Granularität, Anzahl der Zeiträume, mit denen verglichen werden soll" + "An error occurred while accessing the value.": [ + "Beim Zugriff auf den Wert ist ein Fehler aufgetreten." ], - "Based on what should series be ordered on the chart and legend": [ - "Basierend darauf, wonach Zeitreihen im Diagramm und in der Legende angeordnet werden sollten" + "An error occurred while deleting the value.": [ + "Beim Löschen des Werts ist ein Fehler aufgetreten." ], - "Basic": ["Basic"], - "Basic information": ["Basisangaben"], - "Batch editing %d filters:": ["Stapelbearbeitung %d Filter:"], - "Battery level over time": ["Akkustand im Laufe der Zeit"], - "Be careful.": ["Seien Sie vorsichtig."], - "Before": ["Vor"], - "Big Number": ["Große Zahl"], - "Big Number Font Size": ["Große Zahl Schriftgröße"], - "Big Number with Trendline": ["Große Zahl mit Trendlinie"], - "Bottom": ["Unten"], - "Bottom Margin": ["Unterer Abstand"], - "Bottom left": ["Unten links"], - "Bottom margin, in pixels, allowing for more room for axis labels": [ - "Unterer Rand in Pixeln, ermöglicht mehr Platz für Achsenbeschriftungen" + "An error occurred while updating the value.": [ + "Beim Aktualisieren des Werts ist ein Fehler aufgetreten." ], - "Bottom right": ["Unten rechts"], - "Bottom to Top": ["Von Unten nach Oben"], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den Umfang der Daten nicht einschränken." + "You don't have permission to modify the value.": [ + "Sie sind nicht berechtigt, den Wert zu ändern." ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Grenzen für die Achse. Wenn sie leer gelassen werden, werden die Grenzen dynamisch basierend auf den Min/Max-Werten der Daten definiert. Beachten Sie, dass diese Funktion nur den Achsenbereich erweitert. Der Umfang der Daten wird dadurch nicht eingeschränkt." + "Resource was not found.": ["Ressource wurde nicht gefunden."], + "Invalid result type: %(result_type)s": [ + "Ungültiger Ergebnistyp: %(result_type)s" ], - "Box Plot": ["Boxplot"], - "Breakdowns": ["Aufschlüsselungen"], - "Bubble Chart": ["Blasen-Diagramm"], - "Bubble Color": ["Blasenfarbe"], - "Bubble Size": ["Blasengröße"], - "Bubble size": ["Blasengröße"], - "Bucket break points": ["Klassen-Schwellwerte"], - "Build": ["Build"], - "Bulk select": ["Massenauswahl"], - "Bullet Chart": ["Bullet-Diagramm"], - "Business": ["Geschäftlich"], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "Standardmäßig lädt jeder Filter beim ersten Laden der Seite höchstens 1000 Auswahlmöglichkeiten. Aktivieren Sie dieses Kontrollkästchen, wenn Sie über mehr als 1000 Filterwerte verfügen und die dynamische Suche aktivieren möchten, die Filterwerte während der Benutzereingabe lädt (was die Datenbank belasten kann)." + "Columns missing in dataset: %(invalid_columns)s": [ + "Im Datensatz fehlende Spalten: %(invalid_columns)s" ], - "By key: use column names as sorting key": [ - "Nach Schlüssel: Spaltennamen als Sortierschlüssel verwenden" + "A time column must be specified when using a Time Comparison.": [ + "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." ], - "By key: use row names as sorting key": [ - "Nach Schlüssel: Zeilennamen als Sortierschlüssel verwenden" + "The chart does not exist": ["Das Diagramm ist nicht vorhanden"], + "The chart datasource does not exist": [ + "Die Diagrammdatenquelle ist nicht vorhanden" ], - "By value: use metric values as sorting key": [ - "Nach Wert: Metrikwerte als Sortierschlüssel verwenden" + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Doppelte Spalten-/Metrikbeschriftungen: %(labels)s. Bitte stellen Sie sicher, dass alle Spalten und Metriken eine eindeutige Beschriftung haben." ], - "CANCEL": ["ABBRECHEN"], - "CREATE DATASET": ["DATASET ERSTELLEN"], - "CREATE TABLE AS": ["CREATE TABLE AS"], - "CREATE VIEW AS": ["CREATE VIEW AS"], - "CREATE VIEW statement": ["CREATE VIEW-Anweisung"], - "CRON Schedule": ["CRON Zeitplan"], - "CRON expression": ["CRON-Ausdruck"], - "CSS": ["CSS"], - "CSS Styles": ["CSS Stile"], - "CSS Templates": ["CSS Vorlagen"], - "CSS applied to the chart": ["Auf das Diagramm angewendetes CSS"], - "CSS template": ["CSS Vorlagen"], - "CSS template could not be deleted.": [ - "CSS-Vorlage konnte nicht gelöscht werden." + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Folgende Einträge in 'series_columns' fehlen in ‚columns‘: %(columns)s. " ], - "CSS template name": ["CSS Vorlagename"], - "CSS template not found.": ["CSS-Vorlage nicht gefunden."], - "CSS templates": ["CSS Vorlagen"], - "CSV Upload": ["CSV-Hochladen"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "CSV-Datei \"%(csv_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank \"%(db_name)s\" hochgeladen" + "`operation` property of post processing object undefined": [ + "'operation'-Eigenschaft des Nachbearbeitungsobjekts undefiniert" ], - "CSV to Database configuration": ["CSV-zu-Datenbank-Konfiguration"], - "CSV upload": ["CSV-Upload"], - "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTAS (create table as select) kann nur mit einer Abfrage ausgeführt werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat. Versuchen Sie dann erneut, die Abfrage auszuführen." + "Unsupported post processing operation: %(operation)s": [ + "Nicht unterstützter Nachbearbeitungsvorgang: %(operation)s" ], - "CTAS Schema": ["CTAS-Schema"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "CVAS (create view as select) kann nur mit einer Abfrage mit einer einzigen SELECT-Anweisung ausgeführt werden. Bitte stellen Sie sicher, dass Ihre Anfrage nur eine SELECT-Anweisung hat. Versuchen Sie dann erneut, die Abfrage auszuführen." + "[asc]": ["[asc]"], + "[desc]": ["[Beschreibung]"], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Fehler im Jinja-Ausdruck im Fetch Values-Prädikat: %(msg)s" ], - "CVAS (create view as select) query has more than one statement.": [ - "CVAS-Abfrage (Create View as Select) hat mehr als eine Anweisung." + "Virtual dataset query must be read-only": [ + "Virtuelle Datensatzabfrage muss schreibgeschützt sein" ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "CVAS-Abfrage (Create View as Select) ist keine SELECT-Anweisung." + "Error while rendering virtual dataset query: %(msg)s": [ + "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s" ], - "Cache Timeout": ["Cache Timeout"], - "Cache Timeout (seconds)": ["Cache-Timeout (Sekunden)"], - "Cache timeout": ["Cache-Timeout"], - "Cached": ["Gecached"], - "Cached %s": ["%s zwischengespeichert"], - "Cached value not found": ["Zwischengespeicherter Wert nicht gefunden"], - "Calculate contribution per series or row": [ - "Beitrag pro Serie oder Zeile berechnen" + "Virtual dataset query cannot be empty": [ + "Virtuelle Datensatzabfrage darf nicht leer sein" ], - "Calculated column [%s] requires an expression": [ - "Berechnete Spalte [%s] erfordert einen Ausdruck" + "Virtual dataset query cannot consist of multiple statements": [ + "Virtuelle Datensatzabfrage kann nicht aus mehreren Anweisungen bestehen" ], - "Calculated columns": ["Berechnete Spalten"], - "Calculation type": ["Berechnungstyp"], - "Calendar Heatmap": ["Kalender Heatmap"], - "Can not move top level tab into nested tabs": [ - "Registerkarte der obersten Ebene kann nicht in verschachtelte Registerkarten verschoben werden" + "Error in jinja expression in RLS filters: %(msg)s": [ + "Fehler im Jinja-Ausdruck in RLS-Filtern: %(msg)s" ], - "Can select multiple values": ["Mehrere Werte können ausgewählt werden"], - "Can't have overlap between Series and Breakdowns": [ - "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig" + "Metric '%(metric)s' does not exist": [ + "Metrik '%(metric)s' existiert nicht" ], - "Cancel": ["Abbrechen"], - "Cancel query on window unload event": [ - "Abfrage abbrechen bei ‚Window unload‘-Ereignis" + "Db engine did not return all queried columns": [ + "Db-Modul hat nicht alle abgefragten Spalten zurückgegeben" ], - "Cannot access the query": ["Zugriff auf die Abfrage nicht möglich"], - "Cannot delete a database that has datasets attached": [ - "Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden" + "Only `SELECT` statements are allowed": [ + "Nur 'SELECT'-Anweisungen sind zulässig" ], - "Cannot have multiple credentials for the SSH Tunnel": [ - "Anmeldeinformationen für den SSH-Tunnel müssen eindeutig sein" + "Only single queries supported": [ + "Nur einzelne Abfragen werden unterstützt" ], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Dashboard kann nicht importiert werden: %(db_error)s.\nStellen Sie sicher, dass Sie die Datenbank erstellen, bevor Sie das Dashboard importieren." + "Columns": ["Spalten"], + "Show Column": ["Spalte anzeigen"], + "Add Column": ["Spalte einfügen"], + "Edit Column": ["Spalte bearbeiten"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Unabhängig davon, ob diese Spalte als [Zeitgranularität]-Option verfügbar gemacht werden soll, muss die Spalte DATETIME oder DATETIME-ähnlich sein" ], - "Cannot load filter": ["Filter konnte nicht geladen werden"], - "Cannot parse time string [%(human_readable)s]": [ - "Zeitzeichenfolge [%(human_readable)s] kann nicht analysiert werden" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Ob diese Spalte im Abschnitt \"Filter\" der Erkunden-Ansicht verfügbar gemacht wird." ], - "Categorical": ["Kategorisch"], - "Categorical Color": ["Kategorien-Farbe"], - "Categories to group by on the x-axis.": [ - "Kategorien, nach denen auf der x-Achse gruppiert werden soll." + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Der Datentyp, der von der Datenbank abgeleitet wurde. In einigen Fällen kann es erforderlich sein, einen Typ für ausdrucksdefinierte Spalten manuell einzugeben. In den meisten Fällen sollten Benutzer*innen dies nicht ändern müssen." ], - "Category": ["Kategorie"], - "Category Name": ["Kategoriename"], - "Category and Percentage": ["Kategorie und Prozentsatz"], - "Category and Value": ["Kategorie und Wert"], - "Category name": ["Kategoriename"], - "Category of target nodes": ["Kategorie der Zielknoten"], - "Category, Value and Percentage": ["Kategorie, Wert und Prozentsatz"], - "Cell Padding": ["Zellen Abstand"], - "Cell Radius": ["Zellenradius"], - "Cell Size": ["Zellengröße"], - "Cell bars": ["Zellenbalken"], - "Cell content": ["Zellinhalt"], - "Cell limit": ["Zellgrenze"], - "Center": ["Zentriert"], - "Centroid (Longitude and Latitude): ": [ - "Schwerpunkt (Längen- und Breitengrad): " + "Column": ["Spalte"], + "Verbose Name": ["Ausführlicher Name"], + "Description": ["Beschreibung"], + "Groupable": ["Gruppierbar"], + "Filterable": ["Filterbar"], + "Table": ["Tabelle"], + "Expression": ["Ausdruck"], + "Is temporal": ["Ist zeitlich"], + "Datetime Format": ["Zeit/Datum-Format"], + "Type": ["Typ"], + "Invalid date/timestamp format": ["Ungültiges Datums-/Zeitstempelformat"], + "Metrics": ["Metriken"], + "Show Metric": ["Metrik anzeigen"], + "Add Metric": ["Metrik hinzufügen"], + "Edit Metric": ["Metrik bearbeiten"], + "Metric": ["Metrik"], + "SQL Expression": ["SQL-Ausdruck"], + "D3 Format": ["D3-Format"], + "Extra": ["Extra"], + "Warning Message": ["Warnmeldung"], + "Tables": ["Tabellen"], + "Show Table": ["Tabelle anzeigen"], + "Import a table definition": ["Tabellendefinition importieren"], + "Edit Table": ["Tabelle bearbeiten"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Die Liste der Diagramme, die dieser Tabelle zugeordnet sind. Durch Ändern dieser Datenquelle können Sie das Verhalten der zugeordneten Diagramme ändern. Beachten Sie auch, dass Diagramme auf eine Datenquelle verweisen müssen, sodass dieses Formular beim Speichern fehlschlägt, wenn Diagramme aus einer Datenquelle entfernt werden. Wenn Sie die Datenquelle für ein Diagramm ändern möchten, überschreiben Sie das Diagramm aus der \"Explore-Ansicht\"." ], - "Certification": ["Zertifizierung"], - "Certification details": ["Details zur Zertifizierung"], - "Certified": ["Zertifiziert"], - "Certified By": ["Zertifiziert durch"], - "Certified by": ["Zertifiziert durch"], - "Certified by %s": ["Zertifiziert von %s"], - "Change order of columns.": ["Reihenfolge der Spalten ändern."], - "Change order of rows.": ["Reihenfolge der Zeilen ändern."], - "Changed By": ["Bearbeitet von"], - "Changed on": ["Bearbeitet am"], - "Changes saved.": ["Änderungen gespeichert."], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Durch das Ändern des Datensatzes kann das Diagramm beeinträchtigt werden, wenn das Diagramm auf Spalten oder Metadaten basiert, die im Zieldatensatz nicht vorhanden sind" + "Timezone offset (in hours) for this datasource": [ + "Zeitzonen-Offset (in Stunden) für diese Datenquelle" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "Das Ändern dieser Einstellungen wirkt sich auf alle Diagramme aus, die diesen Datensatz verwenden, einschließlich Diagramme, die anderen Personen gehören." + "Name of the table that exists in the source database": [ + "Name der Tabelle in der Quell-Datenbank" ], - "Changing this Dashboard is forbidden": [ - "Das Ändern dieses Dashboards ist verboten" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Schema, wie es nur in einigen Datenbanken wie Postgres, Redshift und DB2 verwendet wird" ], - "Changing this chart is forbidden": [ - "Das Ändern dieses Diagramms ist verboten" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Diese Felder fungieren als Superset-Ansicht, was bedeutet, dass Superset eine Abfrage für diese Zeichenfolge als Unterabfrage ausführt." ], - "Changing this control takes effect instantly": [ - "Das Ändern dieses Steuerelements wird sofort wirksam" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Prädikat, das beim Abrufen eines eindeutigen Werts angewendet wird, um die Filtersteuerelementkomponente aufzufüllen. Unterstützt jinja-Vorlagensyntax. Gilt nur, wenn \"Filterauswahl aktivieren\" aktiviert ist." ], - "Changing this dataset is forbidden": [ - "Das Ändern dieses Datensatz ist verboten" + "Redirects to this endpoint when clicking on the table from the table list": [ + "Leitet zu diesem Endpunkt um, wenn Sie in der Tabellenliste auf die Tabelle klicken" ], - "Changing this dataset is forbidden.": [ - "Das Ändern dieses Datensatzes ist verboten." + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Ob das Dropdown-Menü des Filters im Filterabschnitt der Ansicht \"Erkunden\" mit einer Liste unterschiedlicher Werte aufgefüllt werden soll, die im laufenden Betrieb aus dem Back-End abgerufen werden sollen" ], - "Changing this datasource is forbidden": [ - "Das Ändern dieser Datenquelle ist verboten" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Ob die Tabelle durch den 'Visualize'-Fluss in SQL Lab generiert wurde" ], - "Changing this report is forbidden": [ - "Das Ändern dieses Reports ist verboten" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Ein Satz von Parametern, die in der Abfrage mithilfe der Jinja-Vorlagensyntax verfügbar werden" ], - "Character to interpret as decimal point": [ - "Zeichen, das als Dezimaltrenner zu interpretieren ist." + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Dauer (in Sekunden) des Caching-Timeouts für diese Tabelle. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig das Datenbanktimeout verwendet wird, wenn es nicht definiert ist." ], - "Character to interpret as decimal point.": [ - "Zeichen, das als Dezimalstelle zu interpretieren ist." + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "" ], - "Chart": ["Diagramm"], - "Chart %(id)s not found": ["Diagramm %(id)s nicht gefunden"], - "Chart Cache Timeout": ["Diagramm Cache-Timeout"], - "Chart Data: %s": ["Diagrammdaten: %s"], - "Chart ID": ["Diagramm-ID"], - "Chart Options": ["Diagramm-Optionen"], - "Chart Orientation": ["Diagrammausrichtung"], - "Chart Owner: %s": [ - "Diagrammbesitzer*in: %s", - "Diagrammbesitzer*innen: %s" + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "" ], - "Chart Source": ["Diagrammquelle"], - "Chart Title": ["Diagrammtitel"], - "Chart [%s] has been overwritten": ["Diagramm [%s] wurde überschrieben"], - "Chart [%s] has been saved": ["Diagramm [%s] wurde gespeichert"], - "Chart [%s] was added to dashboard [%s]": [ - "Diagramm [%s] wurde dem Dashboard hinzugefügt [%s]" + "Associated Charts": ["Zugehörige Diagramme"], + "Changed By": ["Bearbeitet von"], + "Database": ["Datenbank"], + "Last Changed": ["Zuletzt geändert"], + "Enable Filter Select": ["Filterauswahl aktivieren"], + "Schema": ["Schema"], + "Default Endpoint": ["Standard-Endpunkt"], + "Offset": ["Offset"], + "Cache Timeout": ["Cache Timeout"], + "Table Name": ["Tabellenname"], + "Fetch Values Predicate": ["Werte-Prädikate abrufen"], + "Owners": ["Besitzende"], + "Main Datetime Column": ["Haupt-Datums/Zeit-Spalte"], + "SQL Lab View": ["SQL Lab Anzeige"], + "Template parameters": ["Vorlagen-Parameter"], + "Modified": ["Geändert"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Die Tabelle wurde erstellt. Im Rahmen dieses zweiphasigen Konfigurationsprozesses sollten Sie nun auf die Schaltfläche Bearbeiten neben der neuen Tabelle klicken, um sie zu konfigurieren." ], - "Chart [{}] has been overwritten": ["Diagramm [{}] wurde überschrieben"], - "Chart [{}] has been saved": ["Diagramm [{}] wurde gespeichert"], - "Chart [{}] was added to dashboard [{}]": [ - "Diagramm [{}] wurde dem Dashboard hinzugefügt [{}]" + "Deleted %(num)d css template": [ + "Gelöschte %(num)d CSS-Vorlage", + "Gelöschte %(num)d CSS-Vorlagen" ], - "Chart cache timeout": ["Diagramm-Cache Timeout"], - "Chart changes": ["Diagrammänderungen"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "Diagrammkomponente, mit der Sie Ihrem Dashboard eine benutzerdefinierte Filter-Oberfläche hinzufügen können. Ist sie dem Dashboard zugefügt, können Benutzer*innen in einem Filterfeld bestimmte Werte oder Bereiche angeben, nach denen Diagramme gefiltert werden sollen. Die Diagramme, auf die jedes Filterfeld angewendet wird, können auch in der Dashboardansicht optimiert werden.\n\nBeachten Sie, dass dieses Plugin durch die neue Filterfunktion ersetzt wird, die sich in der Dashboard-Ansicht selbst befindet. Sie ist einfacher zu bedienen und hat mehr Funktionen!" + "Dataset schema is invalid, caused by: %(error)s": [ + "Das Datensatz-Schema ist ungültig, verursacht durch: %(error)s" ], - "Chart could not be created.": ["Diagramm konnte nicht erstellt werden."], - "Chart could not be deleted.": ["Diagramm konnte nicht gelöscht werden."], - "Chart could not be updated.": [ - "Diagramm konnte nicht aktualisiert werden." + "Deleted %(num)d dashboard": [ + "%(num)d Dashboard gelöscht", + "%(num)d Dashboards gelöscht" ], - "Chart does not exist": ["Diagramm existiert nicht"], - "Chart has no query context saved. Please save the chart again.": [ - "Für das Diagramm ist kein Abfragekontext gespeichert. Bitte speichern Sie das Diagramm erneut." + "Title or Slug": ["Titel oder Kopfzeile"], + "Role": ["Rolle"], + "Invalid state.": ["Ungültiger Zustand."], + "Table name undefined": ["Tabellenname nicht definiert"], + "Upload Enabled": ["Hochladen aktiviert"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" ], - "Chart height": ["Diagrammhöhe"], - "Chart imported": ["Diagramm importiert"], - "Chart last modified": ["Diagramm zuletzt geändert"], - "Chart last modified by": ["Diagramm zuletzt geändert von"], - "Chart name": ["Diagrammname"], - "Chart options": ["Diagramm-Optionen"], - "Chart owners": ["Diagrammbesitzende"], - "Chart parameters are invalid.": ["Diagrammparameter sind ungültig."], - "Chart properties updated": ["Diagrammeigenschaften aktualisiert"], - "Chart title": ["Diagrammtitel"], - "Chart type": ["Diagrammtyp"], - "Chart type requires a dataset": [ - "Diagrammtyp erfordert einen Datensatz" + "Field cannot be decoded by JSON. %(msg)s": [ + "Das Feld kann nicht durch JSON decodiert werden. %(msg)s" ], - "Chart width": ["Diagrammbreite"], - "Charts": ["Diagramme"], - "Charts could not be deleted.": [ - "Diagramme konnten nicht gelöscht werden." + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. Der Schlüssel %(key)s ist ungültig." ], - "Check configuration": ["Konfiguration prüfen"], - "Check for sorting ascending": [ - "Überprüfen Sie die Sortierung aufsteigend" + "An engine must be specified when passing individual parameters to a database.": [ + "Beim Übergeben einzelner Parameter an eine Datenbank muss ein Modul angegeben werden." ], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "Aktivieren, falls das Rose-Diagramm für die Proportionierung den Segmentbereich anstelle des Segmentradius verwenden soll." + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Die Engine-Spezifikation \"%(engine_spec)s\" unterstützt keine Konfiguration über einzelne Parameter." ], - "Check out this chart in dashboard:": [ - "Sehen Sie sich dieses Diagramm im Dashboard an:" + "Deleted %(num)d dataset": [ + "Gelöschter %(num)d Datensatz", + "Gelöschte %(num)d Datensätze" ], - "Check out this chart: ": ["Sehen Sie sich dieses Diagramm an: "], - "Check out this dashboard: ": ["Schauen Sie sich dieses Dashboard an: "], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Anhaken, damit Filter bei Änderung sofort angewendet werden, anstatt die Schaltfläche [Übernehmen] anzuzeigen" + "Null or Empty": ["Null oder Leer"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler bei oder in der Nähe von \"%(syntax_error)s\". Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "Check to force date partitions to have the same height": [ - "Aktivieren, um zu erzwingen, dass Datumspartitionen die gleiche Höhe haben" + "Second": ["Sekunde"], + "5 second": ["5 Sekunden"], + "30 second": ["30 Sekunden"], + "Minute": ["Minute"], + "5 minute": ["5 Minuten"], + "10 minute": ["10 Minuten"], + "15 minute": ["15 Minuten"], + "30 minute": ["30 Minuten"], + "Hour": ["Stunde"], + "6 hour": ["6 Stunden"], + "Day": ["Tag"], + "Week": ["Woche"], + "Month": ["Monat"], + "Quarter": ["Quartal"], + "Year": ["Jahr"], + "Week starting Sunday": ["Woche beginnt am Sonntag"], + "Week starting Monday": ["Woche beginnt am Montag"], + "Week ending Saturday": ["Woche endet am Samstag"], + "Username": ["Benutzer*innenname"], + "Password": ["Password"], + "Hostname or IP address": ["Hostname oder IP-Adresse"], + "Database port": ["Datenbankport"], + "Database name": ["Datenbank"], + "Additional parameters": ["Zusätzliche Parameter"], + "Use an encrypted connection to the database": [ + "Verschlüsselten Verbindung zur Datenbank verwenden" ], - "Check to include time column dropdown": [ - "Anhaken, um Dropdown-Menü für die Zeitspalte einzubinden" + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Verbindung kann nicht hergestellt werden. Stellen Sie sicher, dass die folgenden Rollen für das Dienstkonto festgelegt sind: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" und die folgenden Berechtigungen festgelegt sind \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" ], - "Check to include time grain dropdown": [ - "Anhaken, um Zeiteinheiten Dropdown-Menü einzubinden" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Die Tabelle \"%(table)s\" existiert nicht. Zum Ausführen dieser Abfrage muss eine gültige Tabelle verwendet werden." ], - "Child label position": ["Untergeordnete Beschriftungsposition"], - "Choice of [Label] must be present in [Group By]": [ - "Die Auswahl von [Label] muss in [Group By] vorhanden sein." + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Wir können die Spalte \"%(column)s\" in Zeile %(location)s nicht auflösen." ], - "Choice of [Point Radius] must be present in [Group By]": [ - "Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein." + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Das Schema \"%(schema)s\" existiert nicht. Zum Ausführen dieser Abfrage muss ein gültiges Schema verwendet werden." ], - "Choose File": ["Datei wählen"], - "Choose a chart or dashboard not both": [ - "Diagramm oder Dashboard auswählen, nicht beides" + "Either the username \"%(username)s\" or the password is incorrect.": [ + "Entweder der Benutzer*innenname \"%(username)s\" oder das Passwort ist falsch." ], - "Choose a database...": ["Wählen Sie eine Datenbank..."], - "Choose a dataset": ["Datensatz auswählen"], - "Choose a metric for right axis": [ - "Wählen Sie eine Metrik für die rechte Achse" + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "Der Host \"%(hostname)s\" ist möglicherweise heruntergefahren und kann nicht erreicht werden." ], - "Choose a number format": ["Wählen Sie ein Zahlenformat"], - "Choose a source": ["Wählen Sie eine Quelle"], - "Choose a source and a target": ["Wählen Sie eine Quelle und ein Ziel"], - "Choose a target": ["Wählen Sie ein Ziel"], - "Choose chart type": ["Diagrammtyp auswählen"], - "Choose one of the available databases from the panel on the left.": [ - "Wählen Sie einen der verfügbaren Datensätze aus dem Bereich auf der linken Seite." + "Unable to connect to database \"%(database)s\".": [ + "Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt werden." ], - "Choose the annotation layer type": [ - "Auswählen des Anmerkungsebenen-Typs" + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler in der Nähe von \"%(server_error)s\". Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "Choose the format for legend values": [ - "Format für Legendenwerte auswählen" + "We can't seem to resolve the column \"%(column_name)s\"": [ + "Wir können die Spalte „%(column_name)s“ nicht auflösen." ], - "Choose the position of the legend": [ - "Wählen Sie die Position der Legende" + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Entweder der Benutzer*innenname \"%(username)s\", das Kennwort oder der Datenbankname \"%(database)s\" ist falsch." ], - "Choose the source of your annotations": [ - "Wählen Sie die Quelle Ihrer Anmerkungen aus" + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "Der Hostname \"%(hostname)s\" kann nicht aufgelöst werden." ], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "Wählen Sie aus, ob ein Land anhand der Metrik eingefärbt oder eine Farbe basierend auf einer kategorialen Farbpalette zugewiesen werden soll." + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." ], - "Chord Diagram": ["Sehnendiagramm"], - "Chosen non-numeric column": ["Ausgewählte nicht numerische Spalte"], - "Circle": ["Kreis"], - "Circle -> Arrow": ["Kreis -> Pfeil"], - "Circle -> Circle": ["Kreis -> Kreis"], - "Circle radar shape": ["Kreisradarform"], - "Circular": ["Kreisförmig"], - "Classic chart that visualizes how metrics change over time.": [ - "Klassisches Diagramm, das visualisiert, wie sich Metriken im Laufe der Zeit ändern." + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Der Host \"%(hostname)s\" ist möglicherweise außer Betrieb und kann über Port %(port)s nicht erreicht werden." ], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "Klassische Zeilen-für-Spalten-Tabellenansicht eines Datensatzes. Verwenden Sie Tabellen, um eine Ansicht der zugrunde liegenden Daten oder aggregierter Metriken anzuzeigen." + "Unknown MySQL server host \"%(hostname)s\".": [ + "Unbekannter MySQL-Server-Host \"%(hostname)s\"." ], - "Clause": ["Ausdruck"], - "Clear": ["Zurücksetzen"], - "Clear all": ["Alles löschen"], - "Clear all data": ["Alle Daten leeren"], - "Clear form": ["Formular zurücksetzen"], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "Klicken Sie auf die Schaltfläche \"+Filter hinzufügen/bearbeiten\", um neue Dashboard-Filter zu erstellen" + "The username \"%(username)s\" does not exist.": [ + "Der Benutzer*innenname \"%(username)s\" existiert nicht." ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ - "Klicken Sie auf die Schaltfläche \"Diagramm erstellen\" in der Systemsteuerung auf der linken Seite, um eine Vorschau einer Visualisierung anzuzeigen oder" + "The user/password combination is not valid (Incorrect password for user).": [ + "" ], - "Click the lock to make changes.": [ - "Klicken Sie auf das Schloss, um Änderungen vorzunehmen." + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" ], - "Click the lock to prevent further changes.": [ - "Klicken Sie auf die Sperre, um weitere Änderungen zu verhindern." + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [ + "Das für den Benutzer*innennamen \"%(username)s\" angegebene Kennwort ist falsch." ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "Klicken Sie auf diesen Link, um zu einem alternativen Formular zu wechseln, mit dem Sie die SQLAlchemy-URL für diese Datenbank manuell eingeben können." + "Please re-enter the password.": [ + "Bitte geben Sie das Passwort erneut ein." ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "Klicken Sie auf diesen Link, um zu einem alternativen Formular zu wechseln, das nur die zum Verbinden dieser Datenbank erforderlichen Felder verfügbar macht." + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Wir können die Spalte \"%(column_name)s\" in Zeile %(location)s nicht auflösen." ], - "Click to cancel sorting": ["Klicken, um die Sortierung abzubrechen"], - "Click to edit": ["Klicken um zu bearbeiten"], - "Click to edit %s.": ["Klicken Sie hier, um %s zu bearbeiten."], - "Click to edit chart.": [ - "Klicken Sie hier, um das Diagramm zu bearbeiten." + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Die Tabelle \"%(table_name)s\" existiert nicht. Zum Ausführen dieser Abfrage muss eine gültige Tabelle verwendet werden." ], - "Click to edit label": ["Klicke um zu Bezeichnung zu bearbeiten"], - "Click to favorite/unfavorite": [ - "Klicken Sie hier, um als Favorit aus-/abzuwählen" + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Das Schema \"%(schema_name)s\" existiert nicht. Zum Ausführen dieser Abfrage muss ein gültiges Schema verwendet werden." ], - "Click to force-refresh": [ - "Klicken Sie hier, um die Aktualisierung zu erzwingen" + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "Es konnte keine Verbindung zum Katalog mit dem Namen \"%(catalog_name)s\" hergestellt werden." ], - "Click to see difference": ["Klicken zum Anzeigen der Unterschiede"], - "Click to sort ascending": [ - "Klicken Sie hier, um aufsteigend zu sortieren" + "Unknown Presto Error": ["Unbekannter Presto-Fehler"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Wir konnten keine Verbindung zu Ihrer Datenbank mit dem Namen \"%(database)s\" herstellen. Überprüfen Sie Ihren Datenbanknamen und versuchen Sie es erneut." ], - "Click to sort descending": [ - "Klicken Sie hier, um absteigend zu sortieren" + "%(object)s does not exist in this database.": [ + "%(object)s existiert nicht in der Datenbank." ], - "Close": ["Schließen"], - "Close all other tabs": ["Schließen Sie alle anderen Registerkarten"], - "Close tab": ["Registerkarte schließen"], - "Cluster label aggregator": ["Cluster-Beschriftung-Aggregator"], - "Clustering Radius": ["Clustering-Radius"], - "Code": ["Code"], - "Collapse all": ["Alle einklappen"], - "Collapse data panel": ["Datenbereich ausblenden"], - "Collapse row": ["Zeile zusammenklappen"], - "Collapse tab content": ["Inhalt der Registerkarte ausblenden"], - "Collapse table preview": ["Tabellenvorschau komprimieren"], - "Color": ["Farbe"], - "Color +/-": ["Farbe +/-"], - "Color Metric": ["Farbmetrik"], - "Color Scheme": ["Farbschema"], - "Color Steps": ["Farbschritte"], - "Color bounds": ["Farbgrenzen"], - "Color by": ["Einfärben nach"], - "Color metric": ["Metrik auswählen"], - "Color of the target location": ["Farbe des Zielortes"], - "Color scheme": ["Farbschema"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ - "Die Farbe wird basierend auf dem normalisierten Wert (0% to 100%) einer bestimmten Zelle im Vergleich zu den anderen Zellen im ausgewählten Bereich schattiert: " + "Samples for datasource could not be retrieved.": [ + "Beispiele für die Datenquelle konnten nicht abgerufen werden." ], - "Colors": ["Farben"], - "Column": ["Spalte"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "Die Spalte \"%(column)s\" ist nicht numerisch oder existiert nicht in den Abfrageergebnissen." + "Changing this datasource is forbidden": [ + "Das Ändern dieser Datenquelle ist verboten" ], - "Column Configuration": ["Spaltenkonfiguration"], - "Column Formatting": ["Spaltenformatierung"], - "Column Label(s)": ["Spaltenbezeichnung(en)"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "Spalte mit ISO 3166-2-Codes der Region/Provinz/Kreis in Ihrer Tabelle." + "Home": ["Startseite"], + "Database Connections": ["Datenbankverbindungen"], + "Data": ["Daten"], + "Dashboards": ["Dashboards"], + "Charts": ["Diagramme"], + "Datasets": ["Datensätze"], + "Plugins": ["Plugins"], + "Manage": ["Verwalten"], + "CSS Templates": ["CSS Vorlagen"], + "SQL Lab": ["SQL Lab"], + "SQL": ["SQL"], + "Saved Queries": ["Gespeicherte Abfragen"], + "Query History": ["Abfrageverlauf"], + "Tags": ["Schlagwörter"], + "Action Log": ["Aktionsprotokoll"], + "Security": ["Sicherheit"], + "Alerts & Reports": ["Alarme und Reporte"], + "Annotation Layers": ["Anmerkungsebenen"], + "Row Level Security": ["Sicherheit auf Zeilenebene"], + "An error occurred while parsing the key.": [ + "Beim Parsen des Schlüssels ist ein Fehler aufgetreten." ], - "Column containing latitude data": ["Spalte mit Breitengraddaten"], - "Column containing longitude data": ["Spalte mit Längengraddaten"], - "Column header tooltip": ["Tooltip zur Spaltenüberschrift"], - "Column is required": ["Spalte ist erforderlich"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Spaltenbezeichnung für Indexspalte(n). Wenn None angegeben ist und Dataframe Index den Wert True hat, werden Indexnamen verwendet." + "An error occurred while upserting the value.": [ + "Beim Erhöhen des Werts ist ein Fehler aufgetreten." ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ - "Spaltenbeschriftung für Indexspalten. Wenn „None“ angegeben und „Dataframe Index“ aktiviert ist, werden Indexnamen verwendet." + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": ["Ungültiger Permalink-Schlüssel"], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Datetime-Spalte wird nicht als Teil-Tabellenkonfiguration bereitgestellt, ist aber für diesen Diagrammtyp erforderlich" ], - "Column name": ["Spaltenname"], - "Column name [%s] is duplicated": ["Spaltenname [%s] wird dupliziert"], - "Column referenced by aggregate is undefined: %(column)s": [ - "Spalte, auf die in Aggregat referenziert wird, ist nicht definiert: %(column)s" + "Empty query?": ["Leere Abfrage?"], + "Unknown column used in orderby: %(col)s": [ + "Unbekannte Spalte in ORDER BY verwendet: %(col)s" ], - "Column select": ["Spaltenauswahl"], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ - "Spalte, die als Zeilenbeschriftungen des Dataframe verwendet werden soll. Leer lassen, wenn keine Indexspalte existiert." + "Time column \"%(col)s\" does not exist in dataset": [ + "Zeitspalte \"%(col)s\" ist im Datensatz nicht vorhanden" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Spalte, die als Zeilenbeschriftungen des Datenrahmens verwendet werden soll. Leer lassen, wenn keine Indexspalte vorhanden." + "error_message": ["Fehlermeldung"], + "Filter value list cannot be empty": [ + "Filterwertliste darf nicht leer sein" ], - "Columnar File": ["Tabellen-Datei"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Spaltendatei \"%(columnar_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank \"%(db_name)s\" hochgeladen" + "Must specify a value for filters with comparison operators": [ + "Muss einen Wert für Filter mit Vergleichsoperatoren angeben" ], - "Columnar to Database configuration": [ - "Spalten-zu-Datenbank-Konfiguration" + "Invalid filter operation type: %(op)s": [ + "Ungültiger Filtervorgangstyp: %(op)s" ], - "Columns": ["Spalten"], - "Columns To Be Parsed as Dates": [ - "Spalten, die als Datumsangaben interpretiert werden sollen" + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Fehler im Jinja-Ausdruck in WHERE-Klausel: %(msg)s" ], - "Columns To Read": ["Zu lesende Spalten"], - "Columns missing in dataset: %(invalid_columns)s": [ - "Im Datensatz fehlende Spalten: %(invalid_columns)s" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Fehler im Jinja-Ausdruck in HAVING-Klausel: %(msg)s" ], - "Columns missing in datasource: %(invalid_columns)s": [ - "Fehlende Spalten in Datenquelle: %(invalid_columns)s" + "Database does not support subqueries": [ + "Datenbank unterstützt keine Unterabfragen" ], - "Columns subtotal position": ["Zwischensummenposition der Spalten"], - "Columns to calculate distribution across.": [ - "Spalten, über die Verteilung berechnet werden soll." + "Deleted %(num)d saved query": [ + "%(num)d gespeicherte Abfrage gelöscht", + "%(num)d gespeicherte Abfragen gelöscht" ], - "Columns to display": ["Anzuzeigende Spalten"], - "Columns to group by": ["Spalten, nach denen gruppiert wird"], - "Columns to group by on the columns": [ - "Spalten, nach denen in den Spalten gruppiert werden soll" + "Deleted %(num)d report schedule": [ + "%(num)d Report-Ausführungspläne gelöscht", + "%(num)d Report-Ausführungspläne gelöscht" ], - "Columns to group by on the rows": [ - "Spalten, nach denen in den Zeilen gruppiert werden soll" + "Value must be greater than 0": ["Der Wert muss größer als 0 sein"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [ + "\nFehler: %(text)s\n " ], - "Columns to show": ["Anzuzeigende Spalten"], - "Combine metrics": ["Metriken kombinieren"], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "Kommagetrennte Farbwerte für die Intervalle, z.B. 1,2,4. Ganzzahlen bezeichnen Farben aus dem gewählten Farbschema und sind 1-indiziert. Die Anzahl muss mit der der Intervallgrenzen übereinstimmen." + "EMAIL_REPORTS_CTA": ["EMAIL_REPORTS_CTA"], + "%(name)s.csv": ["%(name)s.csv"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "*%(name)s*\n\n%(description)s\n\n<%(url)s|In Superset erkunden>\n%(table)s\n" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "Durch Kommas getrennte Intervallgrenzen, z.B. 2,4,5 für die Intervalle 0-2, 2-4 und 4-5. Die letzte Zahl sollte mit dem für MAX angegebenen Wert übereinstimmen." + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ + "*%(name)s*\n\n%(description)s\n\nFehler: %(text)s\n" ], - "Comparator option": ["Komparator-Option"], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "Vergleichen Sie schnell mehrere Zeitreihendiagramme (als Sparklines) und verwandte Metriken." + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s kann aus Sicherheitsgründen nicht als Datenquelle verwendet werden." ], - "Compare the same summarized metric across multiple groups.": [ - "Vergleichen Sie dieselbe zusammengefasste Metrik über mehrere Gruppen hinweg." + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [ + "Sie sind nicht berechtigt, %(resource)s zu ändern" ], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ - "Vergleicht, wie sich eine Metrik im Laufe der Zeit zwischen verschiedenen Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung im Laufe der Zeit werden als Balkenlängen und -farben visualisiert." + "Failed to execute %(query)s": ["Fehler beim Ausführen %(query)s"], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Überprüfen Sie Ihre Vorlagenparameter auf Syntaxfehler und stellen Sie sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "Vergleicht Metriken aus verschiedenen Kategorien mithilfe von Balken. Balkenlängen werden verwendet, um die Größe jedes Werts anzugeben, und Farbe wird verwendet, um Gruppen zu unterscheiden." + "The parameter %(parameters)s in your query is undefined.": [ + "Der Parameter %(parameters)s in ihrer Abfrage ist nicht definiert.", + "Die folgenden Parameter in Ihrer Abfrage sind nicht definiert: %(parameters)s." ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "Vergleicht die Zeitspanne, die verschiedene Aktivitäten in einer freigegebenen Zeitachsenansicht benötigen." + "The query contains one or more malformed template parameters.": [ + "Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." ], - "Comparison": ["Vergleich"], - "Comparison Period Lag": ["Verzögerung des Vergleichszeitraums"], - "Comparison suffix": ["Vergleichssuffix"], - "Compose multiple layers together to form complex visuals.": [ - "Stellen Sie mehrere Ebenen zusammen, um komplexe visuelle Elemente zu bilden." + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Bitte überprüfen Sie Ihre Anfrage und vergewissern Sie sich, dass alle Vorlagenparameter von doppelten Klammern umgeben sind, z. B. \"{{ ds }}\". Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "Compute the contribution to the total": [ - "Berechnen des Beitrags zur Gesamtsumme" - ], - "Condition": ["Bedingung"], - "Conditional formatting": ["Bedingte Formatierung"], - "Confidence interval": ["Konfidenzintervall"], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "Das Konfidenzintervall muss zwischen 0 und 1 liegen (exklusiv)" + "Tag name is invalid (cannot contain ':')": [ + "Tag-Name ist ungültig (darf nicht ‚:‘ enthalten)" ], - "Configuration": ["Konfiguration"], - "Configure Advanced Time Range ": [ - "Erweiterten Zeitbereich konfigurieren " + "Scheduled task executor not found": [ + "Geplanter Task-Executor nicht gefunden" ], - "Configure Time Range: Last...": ["Zeitraum konfigurieren: Letzte..."], - "Configure Time Range: Previous...": [ - "Zeitraum konfigurieren: Vorhergehende…" + "Record Count": ["Anzahl Datensätze"], + "No records found": ["Keine Datensätze gefunden"], + "Filter List": ["Filterliste"], + "Search": ["Suche"], + "Refresh": ["Aktualisieren"], + "Import dashboards": ["Dashboards importieren"], + "Import Dashboard(s)": ["Dashboards importieren"], + "File": ["Datei"], + "Choose File": ["Datei wählen"], + "Upload": ["Hochladen"], + "Use the edit button to change this field": [ + "Verwenden Sie die Schaltfläche Bearbeiten, um dieses Feld zu ändern" ], - "Configure custom time range": [ - "Benutzerdefinierten Zeitraum konfigurieren" + "Test Connection": ["Verbindungstest"], + "Unsupported clause type: %(clause)s": [ + "Nicht unterstützter Ausdruck-Typ: %(clause)s" ], - "Configure filter scopes": ["Filterbereiche konfigurieren"], - "Configure the basics of your Annotation Layer.": [ - "Konfigurieren Sie die Grundeinstellungen der Anmerkungsebene." + "Invalid metric object: %(metric)s": [ + "Ungültiges Metrik-Objekt: %(metric)s" ], - "Configure this dashboard to embed it into an external web application.": [ - "Konfigurieren Sie dieses Dashboard, um es in eine externe Webanwendung einzubetten." + "Unable to find such a holiday: [%(holiday)s]": [ + "Kann einen solchen Feiertag nicht finden: [%(holiday)s]" ], - "Configure your how you overlay is displayed here.": [ - "Konfigurieren Sie hier, wie Ihr Overlay angezeigt wird." + "DB column %(col_name)s has unknown type: %(value_type)s": [ + "DB-Spalte %(col_name)s hat unbekannten Typ: %(value_type)s" ], - "Confirm overwrite": ["Überschreiben bestätigen"], - "Confirm save": ["Speichern bestätigen"], - "Connect": ["Verbinden"], - "Connect Google Sheet": ["Google Sheet verbinden"], - "Connect Google Sheets as tables to this database": [ - "Google Tabellen als Tabellen mit dieser Datenbank verbinden" + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "Perzentile müssen eine Liste oder ein Tupel mit zwei numerischen Werten sein, von denen der erste niedriger als der zweite Wert ist" ], - "Connect a database": ["Eine Datenbank verbinden"], - "Connect database": ["Datenbank verbinden"], - "Connect this database using the dynamic form instead": [ - "Verbinden Sie diese Datenbank stattdessen mithilfe des dynamischen Formulars" + "`compare_columns` must have the same length as `source_columns`.": [ + "„compare_columns“ muss die gleiche Länge wie „source_columns“ haben." ], - "Connect this database with a SQLAlchemy URI string instead": [ - "Verbinden Sie diese Datenbank stattdessen mit einer SQLAlchemy-URI-Zeichenfolge" + "`compare_type` must be `difference`, `percentage` or `ratio`": [ + "\"compare_type\" muss \"Differenz\", \"Prozentsatz\" oder \"Verhältnis\" sein" ], - "Connection": ["Verbindung"], - "Connection failed, please check your connection settings": [ - "Verbindung fehlgeschlagen, bitte überprüfen Sie Ihre Verbindungseinstellungen" + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Die Spalte \"%(column)s\" ist nicht numerisch oder existiert nicht in den Abfrageergebnissen." ], - "Connection looks good!": ["Verbindung möglich!"], - "Continue": ["Weiter"], - "Continuous": ["Kontinuierlich"], - "Contribution": ["Beitrag"], - "Contribution Mode": ["Beitragsmodus"], - "Control": ["Steuerung"], - "Control labeled ": ["Feld "], - "Controls labeled ": ["Steuerelemente beschriftet "], - "Coordinates": ["Koordinaten"], - "Copied to clipboard!": ["In Zwischenablage kopiert!"], - "Copy": ["Kopieren"], - "Copy SELECT statement to the clipboard": [ - "SELECT-Anweisung in die Zwischenablage kopieren" + "`rename_columns` must have the same length as `columns`.": [ + "\"rename_columns\" muss die gleiche Länge wie „columns“ haben." ], - "Copy and Paste JSON credentials": [ - "Kopieren und Einfügen von JSON-Anmeldeinformationen" + "Invalid cumulative operator: %(operator)s": [ + "Ungültiger kumulativer Operator: %(operator)s" ], - "Copy and paste the entire service account .json file here": [ - "Kopieren Sie die gesamte JSON-Datei des Dienstkontos, und fügen Sie sie hier ein" + "Invalid geohash string": ["Ungültige Geohash-Zeichenfolge"], + "Invalid longitude/latitude": ["Ungültiger Längen-/Breitengrad"], + "Invalid geodetic string": ["Ungültige geodätische Zeichenfolge"], + "Pivot operation requires at least one index": [ + "Pivot-Operation erfordert mindestens einen Index" ], - "Copy link": ["Link kopieren"], - "Copy message": ["Meldung kopieren"], - "Copy of %s": ["Kopie von %s"], - "Copy partition query to clipboard": [ - "Partitionsabfrage in Zwischenablage kopieren" + "Pivot operation must include at least one aggregate": [ + "Pivot-Operation muss mindestens ein Aggregat enthalten" ], - "Copy permalink to clipboard": ["Permalink in Zwischenablage kopieren"], - "Copy query URL": ["Abfrage-URL kopieren"], - "Copy query link to your clipboard": [ - "Abfragelink in die Zwischenablage kopieren" + "`prophet` package not installed": ["Paket 'prophet' nicht installiert"], + "Time grain missing": ["Zeiteinteilung fehlt"], + "Unsupported time grain: %(time_grain)s": [ + "Nicht unterstützte Zeiteinteilung: %(time_grain)s" ], - "Copy the account name of that database you are trying to connect to.": [ - "Kopieren Sie den Kontonamen der Datenbank, mit der Sie eine Verbindung herstellen möchten." + "Periods must be a whole number": [ + "Perioden müssen eine ganze Zahl sein" ], - "Copy the name of the HTTP Path of your cluster.": [ - "Kopieren Sie den Namen des HTTP-Pfads Ihres Clusters." + "Confidence interval must be between 0 and 1 (exclusive)": [ + "Das Konfidenzintervall muss zwischen 0 und 1 liegen (exklusiv)" ], - "Copy the name of the database you are trying to connect to.": [ - "Kopieren Sie den Namen der Datenbank, mit der Sie eine Verbindung herstellen möchten." + "DataFrame must include temporal column": [ + "DataFrame muss temporale Spalte enthalten" ], - "Copy to Clipboard": ["In Zwischenablage kopieren"], - "Copy to clipboard": ["In die Zwischenablage kopieren"], - "Correlation": ["Korrelation"], - "Cost estimate": ["Kostenschätzung"], - "Could not determine datasource type": [ - "Datenquellentyp konnte nicht ermittelt werden" + "DataFrame include at least one series": [ + "DataFrame mit mindestens eine Zeitreihe enhalten" ], - "Could not fetch all saved charts": [ - "Nicht alle gespeicherten Diagramme konnten abgerufen werden" + "Label already exists": ["Label existiert bereits"], + "Resample operation requires DatetimeIndex": [ + "Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich." ], - "Could not find viz object": [ - "Visualisierungsobjekt konnte nicht gefunden werden" + "Resample method should in ": [ + "Pandas Methode zur Stichprobenwiederholung (resample)" ], - "Could not load database driver": [ - "Datenbanktreiber konnte nicht geladen werden" + "Undefined window for rolling operation": [ + "Undefiniertes Fenster für rollierende Operation" ], - "Could not load database driver: %(driver_name)s": [ - "Datenbanktreiber konnte nicht geladen werden: %(driver_name)s" + "Window must be > 0": ["Fenster muss > 0 sein"], + "Invalid rolling_type: %(type)s": ["Ungültiger rolling_type: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Ungültige Optionen für %(rolling_type)s: %(options)s" ], - "Could not load database driver: {}": [ - "Datenbanktreiber konnte nicht geladen werden: {}" + "Referenced columns not available in DataFrame.": [ + "Referenzierte Spalten sind in DataFrame nicht verfügbar." ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count": ["Anzahl"], - "Count Unique Values": ["Eindeutige Werte zählen"], - "Count as Fraction of Columns": ["Als Anteil der Spalten zählen"], - "Count as Fraction of Rows": ["Als Anteil der Zeilen zählen"], - "Count as Fraction of Total": ["Als Anteil der Gesamtsumme zählen"], - "Country": ["Land"], - "Country Color Scheme": ["Länderfarbschema"], - "Country Column": ["Länderspalte"], - "Country Field Type": ["Feldtyp \"Land\""], - "Country Map": ["Länderkarte"], - "Create": ["Erstellen"], - "Create Chart": ["Diagramm erstellen"], - "Create a dataset": ["Datensatz erstellen"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "Erstellen Sie einen Datensatz, um mit der Visualisierung Ihrer Daten als Diagramm zu beginnen, oder wechseln Sie zu\n SQL Lab, um Ihre Daten abzufragen." + "Column referenced by aggregate is undefined: %(column)s": [ + "Spalte, auf die in Aggregat referenziert wird, ist nicht definiert: %(column)s" ], - "Create a new chart": ["Neues Diagramm erstellen"], - "Create chart": ["Diagramm erstellen"], - "Create chart with dataset": ["Diagramm mit Datensatz erstellen"], - "Create dataset": ["Datensatz erstellen"], - "Create dataset and create chart": [ - "Datensatz erstellen und Diagramm erstellen" + "Operator undefined for aggregator: %(name)s": [ + "Operator undefiniert für Aggregator: %(name)s" ], - "Create new chart": ["Neues Diagramm erstellen"], - "Create new filter set": ["Erstelle neue Filtergruppe"], - "Create or select schema...": ["Schema erstellen oder auswählen…"], - "Created": ["Erstellt"], - "Created On": ["Erstellt am"], - "Created by": ["Erstellt von"], - "Created by me": ["Von mir erstellt"], - "Created content": ["Erstellter Inhalt"], - "Created on": ["Erstellt am"], - "Creating SSH Tunnel failed for an unknown reason": [ - "Das Erstellen eines SSH-Tunnels ist aus unbekanntem Grund fehlgeschlagen" + "Invalid numpy function: %(operator)s": [ + "Ungültige Numpy-Funktion: %(operator)s" ], - "Creating a data source and creating a new tab": [ - "Erstelle eine Datenquelle und eine neue Registerkarte" + "json isn't valid": ["JSON ist ungültig"], + "Export to YAML": ["Exportieren als YAML"], + "Export to YAML?": ["Als YAML exportieren?"], + "Delete": ["Löschen"], + "Delete all Really?": ["Wirklich alle löschen?"], + "Is favorite": ["Favoriten"], + "Is tagged": ["Ist markiert"], + "The data source seems to have been deleted": [ + "Die Datenquelle scheint gelöscht worden zu sein" ], - "Creator": ["Ersteller*in"], - "Crimson": ["Purpur"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "Der Kreuzfilter wird auf alle Diagramme angewendet, die diesenn Datensatz verwenden." + "The user seems to have been deleted": [ + "Der/die Benutzer*in scheint gelöscht worden zu sein" ], - "Cross-filtering is not enabled for this dashboard.": [ - "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." + "You don't have the rights to download as csv": [ + "Sie haben nicht die Rechte, als CSV herunterzuladen" ], - "Cross-filters": ["Kreuzfilter"], - "Cumulative": ["Kumuliert"], - "Currently rendered: %s": ["Derzeit dargestellt: %s"], - "Custom": ["Angepasst"], - "Custom Plugin": ["Benutzerdefiniertes Plugin"], - "Custom Plugins": ["Benutzerdefinierte Plugins"], - "Custom SQL": ["Benutzerdefinierte SQL"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "Benutzerdefinierte SQL-Ad-hoc-Metriken sind für diesen Datasatz nicht aktiviert" + "Error: permalink state not found": [ + "Fehler: Permalink-Status nicht gefunden" ], - "Custom SQL fields cannot contain sub-queries.": [ - "Benutzerdefinierte SQL-Felder dürfen keine Unterabfragen enthalten." + "Error: %(msg)s": ["Fehler: %(msg)s"], + "You don't have the rights to alter this chart": [ + "Sie sind nicht berechtigt, dieses Diagramm zu ändern" ], - "Custom time filter plugin": ["Benutzerdefiniertes Zeitfilter-Plugin"], - "Customize": ["Anpassen"], - "Customize Metrics": ["Anpassen von Metriken"], - "Customize columns": ["Spalten anpassen"], - "Cyclic dependency detected": ["Zyklische Abhängigkeit erkannt"], - "D3 Format": ["D3-Format"], - "D3 format": ["D3 Format"], - "D3 format syntax: https://github.com/d3/d3-format": [ - "D3-Formatsyntax: https://github.com/d3/d3-format" + "You don't have the rights to create a chart": [ + "Sie haben nicht die Rechte zum Erstellen eines Diagramms" ], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ - "D3-Zahlenformat für Zahlen zwischen -1,0 und 1,0. Nützlich, wenn Sie verschiedene Anzahlen signifikanter Ziffern für kleine und große Zahlen haben möchten" + "Explore - %(table)s": ["Erkunden - %(table)s"], + "Explore": ["Erkunden"], + "Chart [{}] has been saved": ["Diagramm [{}] wurde gespeichert"], + "Chart [{}] has been overwritten": ["Diagramm [{}] wurde überschrieben"], + "You don't have the rights to alter this dashboard": [ + "Sie sind nicht berechtigt, dieses Dashboard zu ändern" ], - "D3 time format for datetime columns": [ - "D3-Zeitformat für datetime-Spalten" + "Chart [{}] was added to dashboard [{}]": [ + "Diagramm [{}] wurde dem Dashboard hinzugefügt [{}]" ], - "D3 time format syntax: https://github.com/d3/d3-time-format": [ - "D3-Zeitformatsyntax: https://github.com/d3/d3-time-format" + "You don't have the rights to create a dashboard": [ + "Sie haben nicht die Rechte zum Erstellen eines Dashboards" ], - "DATETIME": ["DATUM/UHRZEIT"], - "DB column %(col_name)s has unknown type: %(value_type)s": [ - "DB-Spalte %(col_name)s hat unbekannten Typ: %(value_type)s" + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt" ], - "DEC": ["DEZ"], - "DELETE": ["LÖSCHEN"], - "DML": ["DML"], - "Daily seasonality": ["Tägliche Saisonalität"], - "Dark": ["Dunkel"], - "Dark Cyan": ["Dunkeltürkis"], - "Dark mode": ["Dunkelmodus"], - "Dashboard": ["Dashboard"], - "Dashboard [%s] just got created and chart [%s] was added to it": [ - "Dashboard [%s] wurde gerade erstellt und Diagramm [%s] hinzugefügt" - ], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt" + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Fehlerhafte Anforderung. slice_id oder table_name und db_name Argumente werden erwartet" ], - "Dashboard could not be created.": [ - "Dashboard konnte nicht erstellt werden." + "Chart %(id)s not found": ["Diagramm %(id)s nicht gefunden"], + "Table %(table)s wasn't found in the database %(db)s": [ + "Tabelle %(table)s wurde in der Datenbank nicht gefunden %(db)s" ], - "Dashboard could not be deleted.": [ - "Dashboard konnte nicht gelöscht werden." + "permalink state not found": ["Permalink-Status nicht gefunden"], + "Show CSS Template": ["CSS Vorlagen anzeigen"], + "Add CSS Template": ["CSS Vorlagen hinzufügen"], + "Edit CSS Template": ["CSS Vorlagen bearbeiten"], + "Template Name": ["Vorlagenname"], + "A human-friendly name": ["Ein sprechender Name"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Wird intern verwendet, um das Plugin zu identifizieren. Sollte auf den Paketnamen aus der paket.json des Plugins gesetzt werden" ], - "Dashboard could not be updated.": [ - "Das Dashboard konnte nicht aktualisiert werden." + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Eine vollständige URL, die auf den Speicherort des erstellten Plugins verweist (könnte beispielsweise auf einem CDN gehostet werden)" ], - "Dashboard does not exist": ["Dashboard existiert nicht"], - "Dashboard imported": ["Dashboard importiert"], - "Dashboard parameters are invalid.": [ - "Dashboard-Parameter sind ungültig." + "Custom Plugins": ["Benutzerdefinierte Plugins"], + "Custom Plugin": ["Benutzerdefiniertes Plugin"], + "Add a Plugin": ["Plugin hinzufügen"], + "Edit Plugin": ["Plugin bearbeiten"], + "The dataset associated with this chart no longer exists": [ + "Der diesem Diagramm zugeordnete Datensatz ist nicht mehr vorhanden" ], - "Dashboard properties": ["Dashboardeigenschaften bearbeiten"], - "Dashboard properties updated": ["Dashboard-Eigenschaften aktualisiert"], - "Dashboard scheme": ["Dashboard Schema"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "Dashboard-Zeitbereichsfilter gelten für zeitliche Spalten, die im\n Filterabschnitt jedes Diagramms festgelegt wurden. Fügen Sie Zeitspalten zu\n Diagrammfiltern hinzu, damit sich dieser Dashboardfilter auf diese Diagramme auswirkt." + "Could not determine datasource type": [ + "Datenquellentyp konnte nicht ermittelt werden" ], - "Dashboard title": ["Dashboard Titel"], - "Dashboard usage": ["Dashboard-Nutzung"], - "Dashboards": ["Dashboards"], - "Dashboards added to": ["Dashboards hinzugefügt zu"], - "Dashboards could not be deleted.": [ - "Dashboards konnten nicht gelöscht werden." + "Could not find viz object": [ + "Visualisierungsobjekt konnte nicht gefunden werden" ], - "Dashboards do not exist": ["Dashboards existieren nicht"], - "Dashed": ["Gestrichelt"], - "Data": ["Daten"], - "Data Table": ["Datentabelle"], - "Data URI is not allowed.": ["Daten-URI ist nicht zulässig."], - "Data Zoom": ["Datenzoom"], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "Daten konnten nicht aus dem Ergebnis-Backend deserialisiert werden. Das Speicherformat hat sich möglicherweise geändert, wodurch die alten Daten ungültig wurden. Sie müssen die ursprüngliche Abfrage erneut ausführen." + "Show Chart": ["Diagramm anzeigen"], + "Add Chart": ["Diagramm hinzufügen"], + "Edit Chart": ["Diagramm bearbeiten"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Diese Parameter werden dynamisch generiert, wenn Sie in der Explore-Ansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Dieses JSON-Objekt wird hier als Referenz und für Hauptbenutzer*in verfügbar gemacht, die möglicherweise bestimmte Parameter ändern möchten." ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Daten konnten nicht deserialisiert werden. Möglicherweise möchten Sie die Abfrage erneut ausführen." + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Beachten Sie, dass standardmäßig das Datenquellen-/Tabellentimeout verwendet wird, wenn es nicht definiert ist." ], - "Data has no time steps": ["Daten haben keine Zeitschritte"], - "Data preview": ["Datenvorschau"], - "Data refreshed": ["Daten aktualisiert"], - "Data type": ["Datentyp"], - "DataFrame include at least one series": [ - "DataFrame mit mindestens eine Zeitreihe enhalten" + "Creator": ["Ersteller*in"], + "Datasource": ["Datenquelle"], + "Last Modified": ["Zuletzt geändert"], + "Parameters": ["Parameter"], + "Chart": ["Diagramm"], + "Name": ["Name"], + "Visualization Type": ["Visualisierungstyp"], + "Show Dashboard": ["Dashboard anzeigen"], + "Add Dashboard": ["Dashboard hinzufügen"], + "Edit Dashboard": ["Dashboard bearbeiten"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Dieses json-Objekt beschreibt die Positionierung der Widgets im Dashboard. Es wird dynamisch generiert, wenn die Größe und Positionen der Widgets per Drag & Drop in der Dashboard-Ansicht angepasst werden" ], - "DataFrame must include temporal column": [ - "DataFrame muss temporale Spalte enthalten" + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Das CSS für einzelne Dashboards kann hier oder in der Dashboard-Ansicht geändert werden, wo Änderungen sofort sichtbar sind" ], - "Database": ["Datenbank"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für spaltenförmige Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-Administrator*in." + "To get a readable URL for your dashboard": [ + "So erhalten Sie eine sprechende URL für Ihr Dashboard" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für CSV-Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-Administrator*in." + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Dieses JSON-Objekt wird dynamisch generiert, wenn Sie in der Dashboardansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Es wird hier als Referenz und für Power-User verfügbar gemacht, die möglicherweise bestimmte Parameter ändern möchten." ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für Excel-Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-Administrator*in." + "Owners is a list of users who can alter the dashboard.": [ + "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern können." ], - "Database Connections": ["Datenbankverbindungen"], - "Database Creation Error": ["Fehler bei der Datenbankerstellung"], - "Database URL": ["Datenbank URL"], - "Database connected": ["Datenbank verbunden"], - "Database could not be created.": [ - "Datenbank konnte nicht erstellt werden." + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die generellen Berechtigungen angewendet." ], - "Database could not be deleted.": [ - "Datenbank konnte nicht gelöscht werden." + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Bestimmt, ob dieses Dashboard in der Liste aller Dashboards sichtbar ist" ], - "Database could not be updated.": [ - "Datenbank konnte nicht aktualisiert werden." + "Dashboard": ["Dashboard"], + "Title": ["Titel"], + "Slug": ["Kopfzeile"], + "Roles": ["Rollen"], + "Published": ["Veröffentlicht"], + "Position JSON": ["Anordnungs-JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["JSON-Metadaten"], + "Export": ["Export"], + "Export dashboards?": ["Dashboards exportieren?"], + "CSV Upload": ["CSV-Hochladen"], + "Select a file to be uploaded to the database": [ + "Wählen Sie eine Datei aus, die in die Datenbank hochgeladen werden soll" ], - "Database does not allow data manipulation.": [ - "Die Datenbank lässt keine Datenbearbeitung zu." + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Nur die folgenden Dateierweiterungen sind zulässig: %(allowed_extensions)s" ], - "Database does not exist": ["Datenbank existiert nicht"], - "Database does not support subqueries": [ - "Datenbank unterstützt keine Unterabfragen" + "Name of table to be created with CSV file": [ + "Name der Tabelle, die aus CSV-Daten erstellt werden soll" ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "Datenbanktreiber für den Import ist möglicherweise nicht installiert. Installationsanweisungen finden Sie auf der Superset-Dokumentationsseite: " + "Table name cannot contain a schema": [ + "Der Tabellenname darf kein Schema enthalten" ], - "Database error": ["Datenbankfehler"], - "Database is offline.": ["Datenbank ist offline."], - "Database is required for alerts": [ - "Für Alarme ist eine Datenbank erforderlich" + "Select a database to upload the file to": [ + "Wählen Sie eine Datenbank aus, in die die Datei hochgeladen werden soll" ], - "Database name": ["Datenbank"], - "Database not allowed to change": [ - "Datenbank darf nicht geändert werden" + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" ], - "Database not found.": ["Datenbank nicht gefunden."], - "Database not found: %(id)s": ["Datenbank nicht gefunden: %(id)s"], - "Database parameters are invalid.": ["Datenbankparameter sind ungültig."], - "Database passwords": ["Datenbank-Kennwörter"], - "Database port": ["Datenbankport"], - "Database settings updated": ["Datenbankeinstellungen aktualisiert"], - "Databases": ["Datenbanken"], - "Dataframe Index": ["Dataframe-Index"], - "Dataset": ["Datensatz"], - "Dataset %(name)s already exists": [ - "Datensatz %(name)s bereits vorhanden" + "Select a schema if the database supports this": [ + "Wählen Sie ein Schema aus, wenn die Datenbank dies unterstützt" ], - "Dataset Name": ["Datensatzbezeichnung"], - "Dataset column delete failed.": [ - "Fehler beim Löschen der Datensatzspalte." + "Delimiter": ["Trennzeichen"], + "Enter a delimiter for this data": [ + "Geben Sie ein Trennzeichen für diese Daten ein" ], - "Dataset column not found.": ["Datensatz-Spalte nicht gefunden."], - "Dataset could not be created.": [ - "Datensatz konnte nicht erstellt werden." + ",": [","], + ".": ["."], + "Other": ["Andere"], + "If Table Already Exists": ["Wenn Tabelle bereits vorhanden ist"], + "What should happen if the table already exists": [ + "Was soll passieren, wenn die Tabelle bereits vorhanden ist?" ], - "Dataset could not be deleted.": [ - "Datensatz konnte nicht gelöscht werden." + "Fail": ["Fehlschlagen"], + "Replace": ["Ersetzen"], + "Append": ["Anhängen"], + "Skip Initial Space": ["Führende Leerzeichen überspringen"], + "Skip spaces after delimiter": [ + "Leerzeichen nach Trennzeichen überspringen." ], - "Dataset could not be duplicated.": [ - "Der Datensatz konnte nicht dupliziert werden." + "Skip Blank Lines": ["Leerzeilen überspringen"], + "Skip blank lines rather than interpreting them as Not A Number values": [ + "Überspringen Sie Leerzeilen, anstatt sie als Nicht-Zahl-Werte zu interpretieren" ], - "Dataset could not be updated.": [ - "Datensatz konnte nicht aktualisiert werden." + "Columns To Be Parsed as Dates": [ + "Spalten, die als Datumsangaben interpretiert werden sollen" ], - "Dataset does not exist": ["Datensatz existiert nicht"], - "Dataset imported": ["Datensatz importiert"], - "Dataset is required": ["Datensatz ist erforderlich"], - "Dataset metric delete failed.": [ - "Fehler beim Löschen der Datensatzmetrik." + "A comma separated list of columns that should be parsed as dates": [ + "Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben interpretiert werden sollen" ], - "Dataset metric not found.": ["Datensatz-Metrik nicht gefunden."], - "Dataset name": ["Datensatzname"], - "Dataset parameters are invalid.": ["Datensatz-Parameter sind ungültig."], - "Dataset schema is invalid, caused by: %(error)s": [ - "Das Datensatz-Schema ist ungültig, verursacht durch: %(error)s" + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["Dezimalzeichen"], + "Character to interpret as decimal point": [ + "Zeichen, das als Dezimaltrenner zu interpretieren ist." ], - "Dataset(s) could not be bulk deleted.": [ - "Datensätze konnten nicht massengelöscht werden." + "Null Values": ["NULL Werte"], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Json-Liste der Werte, die als null behandelt werden sollen. Beispiele: [\"\"] für leere Zeichenketten, [\"Keine\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Hive-Datenbank unterstützt nur einen einzigen Wert" ], - "Datasets": ["Datensätze"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "Datensätze können aus Datenbanktabellen oder SQL-Abfragen erstellt werden. Wählen Sie links eine Datenbanktabelle aus oder " + "Index Column": ["Index Spalte"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Spalte, die als Zeilenbeschriftungen des Dataframe verwendet werden soll. Leer lassen, wenn keine Indexspalte existiert." ], - "Datasets do not contain a temporal column": [ - "Datensätze enthalten keine temporale Spalte" + "Dataframe Index": ["Dataframe-Index"], + "Write dataframe index as a column": [ + "Dataframe-Index als Spalte schreiben" ], - "Datasource": ["Datenquelle"], - "Datasource & Chart Type": ["Datenquelle & Diagrammtyp"], - "Datasource does not exist": ["Datenquelle ist nicht vorhanden"], - "Datasource type is invalid": ["Datenquellen-Typ ist ungültig"], - "Datasource type is required when datasource_id is given": [ - "Datenquellentyp ist erforderlich, wenn datasource_id angegeben wird" + "Column Label(s)": ["Spaltenbezeichnung(en)"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Spaltenbeschriftung für Indexspalten. Wenn „None“ angegeben und „Dataframe Index“ aktiviert ist, werden Indexnamen verwendet." ], - "Date Time Format": ["Datum-Zeit-Format"], - "Date filter": ["Datumsfilter"], - "Date format": ["Datumsformat"], - "Date format string": ["Datumsformat-Zeichenfolge"], - "Date/Time": ["Datum/Zeit"], - "Datetime Format": ["Zeit/Datum-Format"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "Datetime-Spalte wird nicht als Teil-Tabellenkonfiguration bereitgestellt, ist aber für diesen Diagrammtyp erforderlich" + "Columns To Read": ["Zu lesende Spalten"], + "Json list of the column names that should be read": [ + "Json-Liste der Spaltennamen, die gelesen werden sollen" ], - "Datetime format": ["Datum Zeit Format"], - "Day": ["Tag"], - "Day (freq=D)": ["Tag (freq=D)"], - "Days %s": ["Tage %s"], - "Db engine did not return all queried columns": [ - "Db-Modul hat nicht alle abgefragten Spalten zurückgegeben" + "Overwrite Duplicate Columns": ["Doppelte Spalten überschreiben"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Wenn doppelte Spalten nicht überschrieben werden, werden sie als \"X.1, X.2 ... X.x\" dargestellt" ], - "Deactivate": ["Deaktivieren"], - "December": ["Dezember"], - "Decides which column to sort the base axis by.": [ - "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." - ], - "Decimal Character": ["Dezimalzeichen"], - "Deck.gl - 3D Grid": ["Deck.gl - 3D-Raster"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], - "Deck.gl - Arc": ["Deck.gl - Bogen"], - "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], - "Deck.gl - Multiple Layers": ["Deck.gl - Mehrere Ebenen"], - "Deck.gl - Paths": ["Deck.gl - Pfade"], - "Deck.gl - Polygon": ["Deck.gl - Polygon"], - "Deck.gl - Scatter plot": ["Deck.gl - Streudiagramm"], - "Deck.gl - Screen Grid": ["Deck.gl - Bildschirmraster"], - "Default": ["Standard"], - "Default Endpoint": ["Standard-Endpunkt"], - "Default URL": ["Datenbank URL"], - "Default URL to redirect to when accessing from the dataset list page": [ - "Standard-URL, auf die beim Zugriff von der Datensatz-Listenseite aus zugegriffen werden soll" + "Header Row": ["Kopfzeile"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden ist." ], - "Default Value": ["Standardwert"], - "Default datetime": ["Standard-Datum/Zeit"], - "Default latitude": ["Standard Breitengrad"], - "Default longitude": ["Standard-Längengrad"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "Standardmäßig minimale Spaltenbreite in Pixel, tatsächliche Breite kann immer noch größer sein, wenn andere Spalten nicht viel Platz benötigen" + "Rows to Read": ["Zu lesende Zeilen"], + "Number of rows of file to read": [ + "Anzahl der aus Datei zu lesenden Zeilen." ], - "Default value is required": ["Standardwert ist erforderlich"], - "Default value must be set when \"Filter has default value\" is checked": [ - "Standardwert muss festgelegt werden, wenn \"Filter hat Standardwert\" aktiviert ist" + "Skip Rows": ["Zeilen überspringen"], + "Number of rows to skip at start of file": [ + "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." ], - "Default value must be set when \"Filter value is required\" is checked": [ - "Der Standardwert muss festgelegt werden, wenn „Filterwert ist erforderlich\" aktiviert ist" + "Name of table to be created from excel data.": [ + "Name der Tabelle, die aus Excel-Daten erstellt werden soll." ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ - "Standardwert wird automatisch festgelegt, wenn „Erstes Element als Standard“ aktiviert ist" + "Excel File": ["Excel-Datei"], + "Select a Excel file to be uploaded to a database.": [ + "Wählen Sie eine Excel-Datei aus, die in eine Datenbank hochgeladen werden soll." ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "Definieren Sie eine Funktion, die die Eingabe empfängt und den Inhalt für einen Tooltip ausgibt" + "Sheet Name": ["Blattname"], + "Strings used for sheet names (default is the first sheet).": [ + "Zeichenfolgen, die für Blattnamen verwendet werden (Standard ist das erste Blatt)." ], - "Define a function that returns a URL to navigate to when user clicks": [ - "Definieren Sie eine Funktion, die eine URL zurückgibt, zu der navigiert wird, wenn der/die Benutzer*in klickt" + "Specify a schema (if database flavor supports this).": [ + "Geben Sie ein Schema an (wenn die Datenbankvariante dies unterstützt)." ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "Definieren Sie eine JavaScript-Funktion, die das in der Visualisierung verwendete Daten-Array empfängt und eine geänderte Version dieses Arrays zurückgibt. Dies kann verwendet werden, um Eigenschaften der Daten zu ändern, zu filtern oder das Array anzureichern." + "Table Exists": ["Tabelle existiert"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Wenn eine Tabelle vorhanden ist, soll folgendes passieren: Fehlschlagen (Nichts tun), Ersetzen (Tabelle löschen und neu erstellen) oder Anhängen (Daten einfügen)." ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Definiert eine Funktion ‚Rollierendes Fenster‘, die angewendet werden soll. Arbeitet zusammen mit dem Textfeld [Punkte]" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden ist." ], - "Defines how each series is broken down": [ - "Definiert, wie jede Reihe aufgeschlüsselt wird" + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Spalte, die als Zeilenbeschriftungen des Datenrahmens verwendet werden soll. Leer lassen, wenn keine Indexspalte vorhanden." ], - "Defines the grid size in pixels": ["Gibt die Rastergröße in Pixel an"], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Definiert die Gruppierung von Entitäten. Jede Serie wird als bestimmte Farbe im Diagramm angezeigt und verfügt über einen Legenden-Umschalter" + "Number of rows to skip at start of file.": [ + "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Definiert die Größe der Funktion ‚Rollierendes Fenster‘ relativ zur ausgewählten Zeitgranularität" + "Number of rows of file to read.": [ + "Anzahl der aus Datei zu lesenden Zeilen." ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "Definiert, ob der Schritt am Anfang, in der Mitte oder am Ende zwischen zwei Datenpunkten erscheinen soll" + "Parse Dates": ["Datumsangaben auswerten"], + "A comma separated list of columns that should be parsed as dates.": [ + "Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben interpretiert werden sollen." ], - "Delete": ["Löschen"], - "Delete %s?": ["%s löschen?"], - "Delete Annotation?": ["Anmerkung löschen?"], - "Delete Database?": ["Datenbank löschen?"], - "Delete Dataset?": ["Datensatz löschen?"], - "Delete Layer?": ["Ebene löschen?"], - "Delete Query?": ["Abfrage löschen?"], - "Delete Report?": ["Report löschen?"], - "Delete Template?": ["Vorlage löschen?"], - "Delete all Really?": ["Wirklich alle löschen?"], - "Delete annotation": ["Anmerkung löschen"], - "Delete dashboard tab?": ["Dashboard-Reiter löschen?"], - "Delete database": ["Datenbank löschen"], - "Delete email report": ["E-Mail-Report löschen"], - "Delete query": ["Abfrage löschen"], - "Delete template": ["Vorlage löschen"], - "Delete this container and save to remove this message.": [ - "Löschen Sie diesen Container und speichern Sie, um diese Nachricht zu entfernen." + "Character to interpret as decimal point.": [ + "Zeichen, das als Dezimalstelle zu interpretieren ist." ], - "Deleted %(num)d annotation": [ - "%(num)d Anmerkung gelöscht", - "%(num)d Anmerkungen gelöscht" + "Write dataframe index as a column.": [ + "Schreiben Sie den Dataframe-Index als Spalte." ], - "Deleted %(num)d annotation layer": [ - "%(num)d Anmerkungebene gelöscht", - "%(num)d Anmerkungsebenen gelöscht" + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Spaltenbezeichnung für Indexspalte(n). Wenn None angegeben ist und Dataframe Index den Wert True hat, werden Indexnamen verwendet." ], - "Deleted %(num)d chart": [ - "%(num)d Diagramm gelöscht", - "%(num)d Diagramme gelöscht" + "Null values": ["NULL Werte"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Json-Liste der Werte, die als NULL behandelt werden sollen. Beispiele: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Die Hive-Datenbank unterstützt nur einen einzelnen Wert. Verwenden Sie [\"\"] für die leere Zeichenfolge." ], - "Deleted %(num)d css template": [ - "Gelöschte %(num)d CSS-Vorlage", - "Gelöschte %(num)d CSS-Vorlagen" + "Name of table to be created from columnar data.": [ + "Name der Tabelle, die aus tabellarischen Daten erstellt werden soll." ], - "Deleted %(num)d dashboard": [ - "%(num)d Dashboard gelöscht", - "%(num)d Dashboards gelöscht" + "Columnar File": ["Tabellen-Datei"], + "Select a Columnar file to be uploaded to a database.": [ + "Wählen Sie eine tabellarische Datei aus, die in eine Datenbank hochgeladen werden soll." ], - "Deleted %(num)d dataset": [ - "Gelöschter %(num)d Datensatz", - "Gelöschte %(num)d Datensätze" + "Use Columns": ["Spalten verwenden"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "JSON-Liste der Spaltennamen, die gelesen werden sollen. Wenn nicht ‚Keine‘, werden nur diese Spalten aus der Datei gelesen." ], - "Deleted %(num)d report schedule": [ - "%(num)d Report-Ausführungspläne gelöscht", - "%(num)d Report-Ausführungspläne gelöscht" + "Databases": ["Datenbanken"], + "Show Database": ["Datenbank anzeigen"], + "Add Database": ["Datenbank hinzufügen"], + "Edit Database": ["Datenbank bearbeiten"], + "Expose this DB in SQL Lab": [ + "Diese Datenbank in SQL Lab verfügbar machen" ], - "Deleted %(num)d saved query": [ - "%(num)d gespeicherte Abfrage gelöscht", - "%(num)d gespeicherte Abfragen gelöscht" + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Betreiben Sie die Datenbank im asynchronen Modus, was bedeutet, dass die Abfragen auf Remote-Workern und nicht auf dem Webserver selbst ausgeführt werden. Dies setzt voraus, dass Sie sowohl über ein Celery-Worker-Setup als auch über ein Ergebnis-Backend verfügen. Weitere Informationen finden Sie in den Installationsdokumenten." ], - "Deleted: %s": ["Gelöscht: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "Wenn Sie eine Registerkarte löschen, werden alle darin enthaltenen Inhalte entfernt. Sie können diese Aktion immer noch rückgängig machen, indem Sie die" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Option CREATE TABLE AS in SQL Lab zulassen" ], - "Delimited long & lat single column": [ - "Länge und Breite in einer Spalte mit Trennzeichen" + "Allow CREATE VIEW AS option in SQL Lab": [ + "Option CREATE VIEW AS in SQL Lab zulassen" ], - "Delimiter": ["Trennzeichen"], - "Delivery method": ["Übermittlungsmethode"], - "Demographics": ["Demographische Daten"], - "Density": ["Dichte"], - "Dependent on": ["Abhängig von"], - "Deprecated": ["Veraltet"], - "Description": ["Beschreibung"], - "Description (this can be seen in the list)": [ - "Beschreibung (diese ist in der Liste zu sehen)" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Benutzer*innen das Ausführen von Nicht-SELECT-Anweisungen (UPDATE, DELETE, CREATE, ...) in SQL Lab erlauben" ], - "Description Columns": ["Beschreibungsspalten"], - "Description text that shows up below your Big Number": [ - "Beschreibungstext, der unter Ihrer Großen Zahl angezeigt wird" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Wenn Sie die Option CREATE TABLE AS in SQL Lab zulassen, erzwingt diese Option, dass die Tabelle in diesem Schema erstellt wird" ], - "Deselect all": ["Alle abwählen"], - "Details of the certification": ["Details zur Zertifizierung"], - "Determines how whiskers and outliers are calculated.": [ - "Bestimmt, wie „Whisker“ und Ausreißer berechnet werden." + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Für Presto werden alle Abfragen in SQL Lab als aktuell angemeldete Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen muss.
Für Hive und falls hive.server2.enable.doAs aktiviert sind, werden die Abfragen als Dienstkonto ausgeführt, die Identität der aktuell angemeldeten Benutzer*in erfolgt jedoch über die hive.server2.proxy.user-Eigenschaft." ], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Bestimmt, ob dieses Dashboard in der Liste aller Dashboards sichtbar ist" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig das globale Timeout verwendet wird, wenn es nicht definiert ist." ], - "Diamond": ["Diamant"], - "Did you mean:": ["Meintest du:"], - "Difference": ["Differenz"], - "Dim Gray": ["Dunkelgrau"], - "Dimension": ["Dimension"], - "Dimension to use on x-axis.": ["Dimension der x-Achse."], - "Dimension to use on y-axis.": ["Dimension der y-Achse."], - "Dimensions": ["Dimensionen"], - "Directed Force Layout": ["Kraftbasierte Anordnung"], - "Directional": ["Direktional"], - "Disable SQL Lab data preview queries": [ - "Deaktivieren von SQL Lab-Datenvorschau-Abfragen" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Falls ausgewählt, legen Sie bitte die Schemata fest, die für den CSV-Upload in Extra zulässig sind." ], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "Datenvorschau beim Abrufen von Tabellenmetadaten in SQL Lab deaktivieren. Nützlich, um Probleme mit der Browserleistung bei der Verwendung von Datenbanken mit sehr breiten Tabellen zu vermeiden." + "Expose in SQL Lab": ["Verfügbarmachen in SQL Lab"], + "Allow CREATE TABLE AS": ["CREATE TABLE AS zulassen"], + "Allow CREATE VIEW AS": ["CREATE VIEW AS zulassen"], + "Allow DML": ["DML zulassen"], + "CTAS Schema": ["CTAS-Schema"], + "SQLAlchemy URI": ["SQLAlchemy-URI"], + "Chart Cache Timeout": ["Diagramm Cache-Timeout"], + "Secure Extra": ["Sicherheit Extra"], + "Root certificate": ["Root-Zertifikat"], + "Async Execution": ["Asynchrone Ausführung"], + "Impersonate the logged on user": [ + "Identität von angemeldeter Benutzer*in annehmen" ], - "Disable embedding?": ["Einbettung deaktivieren?"], - "Disabled": ["Deaktiviert"], - "Discard": ["Verwerfen"], - "Discrete": ["Diskret"], - "Display Name": ["Anzeigename"], - "Display column level total": ["Summe auf Spaltenebene anzeigen"], - "Display configuration": ["Anzeige-Konfiguration"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ - "Zeigen Sie Metriken innerhalb jeder Spalte nebeneinander an, im Gegensatz zur Darstellung einer Spalte je Metrik." + "Allow Csv Upload": ["CSV-Upload zulassen"], + "Backend": ["Backend"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Zusätzliches Feld kann nicht durch JSON decodiert werden. %(msg)s" ], - "Display row level total": ["Summe auf Zeilenebene anzeigen"], - "Display settings": ["Darstellungs-Einstellungen"], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ - "Zeigt Verbindungen zwischen Elementen in einer Graphstruktur an. Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, dass sie kraftgesteuert sind oder zirkulieren. Wenn Ihre Daten über eine Geodatenkomponente verfügen, versuchen Sie es mit dem deck.gl Arc-Diagramm." + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

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

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

" ], - "Distribute across": ["Verteilen über"], - "Distribution": ["Verteilung"], - "Distribution - Bar Chart": ["Verteilung - Balkendiagramm"], - "Divider": ["Trenner"], - "Do you want a donut or a pie?": ["Donut oder Torten-Diagramm?"], - "Documentation": ["Dokumentation"], - "Domain": ["Wertebereich"], - "Donut": ["Donut"], - "Dotted": ["Gepunktet"], - "Download": ["Herunterladen"], - "Download as image": ["Herunterladen als Bild"], - "Download to CSV": ["Als CSV herunterladen"], - "Draft": ["Entwurf"], - "Drag and drop components and charts to the dashboard": [ - "Ziehen Sie Komponenten und Diagramme per Drag & Drop auf das Dashboard" + "CSV to Database configuration": ["CSV-zu-Datenbank-Konfiguration"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für CSV-Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-Administrator*in." ], - "Drag and drop components to this tab": [ - "Ziehen Sie Komponenten per Drag & Drop auf diese Registerkarte" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "CSV-Datei \"%(filename)s\" kann nicht in tabelle \"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: %(error_msg)s" ], - "Draw a marker on data points. Only applicable for line types.": [ - "Zeichnen Sie eine Markierung auf Datenpunkten. Gilt nur für Linientypen." + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "CSV-Datei \"%(csv_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank \"%(db_name)s\" hochgeladen" ], - "Draw area under curves. Only applicable for line types.": [ - "Zeichnen Sie den Bereich unter Kurven. Gilt nur für Linientypen." - ], - "Draw line from Pie to label when labels outside?": [ - "Linie von Torte zur Beschriftung ziehen, wenn Beschriftungen außerhalb?" - ], - "Draw split lines for minor axis ticks": [ - "Zeichnen von Trennlinien für kleinere Achsenteilstriche" - ], - "Draw split lines for minor y-axis ticks": [ - "Geteilten Linien für kleinere Ticks der y-Achse zeichnen" - ], - "Drill by": ["Ins-Detail-Zoomen"], - "Drill by is not available for this data point": [ - "Heinzoomem ist für diesen Datenpunkt nicht verfügbar" + "Excel to Database configuration": ["Excel-zu-Datenbank-Konfiguration"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für Excel-Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-Administrator*in." ], - "Drill by is not yet supported for this chart type": [ - "Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp noch nicht unterstützt." + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Excel-Datei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: %(error_msg)s" ], - "Drill by: %s": ["Hineinzogen nach %s"], - "Drill to detail": ["Ins-Detail-Zoomen"], - "Drill to detail by": ["Zu Detail zoomen anhand"], - "Drill to detail by value is not yet supported for this chart type.": [ - "Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp noch nicht unterstützt." + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Excel-Datei \"%(excel_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank \"%(db_name)s\" hochgeladen" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "Das Zu-Detail-Zoomen (Drilldown) ist deaktiviert, da dieses Diagramm Daten nicht nach Dimensionswert gruppiert." + "Columnar to Database configuration": [ + "Spalten-zu-Datenbank-Konfiguration" ], - "Drill to detail: %s": ["Zu Detail zoomen: %s"], - "Drop a column here or click": [ - "Legen Sie hier eine Spalte ab oder klicken Sie", - "Legen Sie hier Spalten ab oder klicken Sie" + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Unterschiedliche Dateierweiterungen sind für spaltenförmige Uploads nicht zulässig. Bitte stellen Sie sicher, dass alle Dateien die gleiche Erweiterung haben." ], - "Drop a column/metric here or click": [ - "Legen Sie hier eine Spalte/Metrik ab oder klicken Sie", - "Legen Sie hier eine Spalten/Metriken ab oder klicken Sie" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für spaltenförmige Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-Administrator*in." ], - "Drop a temporal column here or click": [ - "Legen Sie hier eine Spalte ab oder klicken Sie" + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Die Spaltendatei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: %(error_msg)s" ], - "Drop columns/metrics here or click": [ - "Spalten/Metriken hierhin ziehen und ablegen oder klicken" + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Spaltendatei \"%(columnar_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank \"%(db_name)s\" hochgeladen" ], - "Dual Line Chart": ["Doppelliniendiagramm"], - "Duplicate": ["Duplizieren"], + "Request missing data field.": ["Datenfeld fehlt in Abfrage."], "Duplicate column name(s): %(columns)s": [ "Doppelte Spaltenname(n): %(columns)s" ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "Doppelte Spalten-/Metrikbeschriftungen: %(labels)s. Bitte stellen Sie sicher, dass alle Spalten und Metriken eine eindeutige Beschriftung haben." + "Logs": ["Protokolle"], + "Show Log": ["Protokoll anzeigen"], + "Add Log": ["Protokoll hinzufügen"], + "Edit Log": ["Protokoll bearbeiten"], + "User": ["Nutzer*in"], + "Action": ["Aktion"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Untitled Query": ["Unbenannte Abfrage"], + "Time Range": ["Zeitraum"], + "Time Column": ["Zeitspalte"], + "Time Grain": ["Zeitgranularität"], + "Time Granularity": ["Zeitgranularität"], + "Time": ["Zeit"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Ein Verweis auf die [Time]-Konfiguration unter Berücksichtigung der Granularität" ], - "Duplicate dataset": ["Datensatz duplizieren"], - "Duplicate tab": ["Registerkarte duplizieren"], - "Duration": ["Dauer"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ - "Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft, und -1 umgeht den Cache. Beachten Sie, dass standardmäßig das globale Timeout verwendet wird, wenn kein Wert definiert wurde." + "Aggregate": ["Aggregieren"], + "Raw records": ["Rohdatensätze"], + "Category name": ["Kategoriename"], + "Total value": ["Gesamtwert"], + "Minimum value": ["Minimalwert"], + "Maximum value": ["Maximalwert"], + "Average value": ["Durchschnittswert"], + "Certified by %s": ["Zertifiziert von %s"], + "description": ["Beschreibung"], + "bolt": ["Riegel"], + "Changing this control takes effect instantly": [ + "Das Ändern dieses Steuerelements wird sofort wirksam" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig das globale Timeout verwendet wird, wenn es nicht definiert ist." + "Show info tooltip": ["Info-Tooltip anzeigen"], + "SQL expression": ["SQL-Ausdruck"], + "Column name": ["Spaltenname"], + "Label": ["Label"], + "Metric name": ["Name der Metrik"], + "unknown type icon": ["Symbol für unbekannten Typ"], + "function type icon": ["Symbol für Funktionstyp"], + "string type icon": ["Symbol für Zeichenfolgentyp"], + "numeric type icon": ["Symbol für numerischen Typ"], + "boolean type icon": ["Symbol für booleschen Typ"], + "temporal type icon": ["Symbol für Zeittyp"], + "Advanced analytics": ["Erweiterte Analysen"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Dieser Abschnitt enthält Optionen, die eine erweiterte analytische Nachbearbeitung von Abfrageergebnissen ermöglichen" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Beachten Sie, dass standardmäßig das Datenquellen-/Tabellentimeout verwendet wird, wenn es nicht definiert ist." + "Rolling window": ["Rollierendes Fenster"], + "Rolling function": ["Rollierende Funktion"], + "None": ["Keine"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Definiert eine Funktion ‚Rollierendes Fenster‘, die angewendet werden soll. Arbeitet zusammen mit dem Textfeld [Punkte]" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ - "Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Setzen Sie diesen auf -1 um das Coaching zu umgehen. Beachten Sie, dass standardmäßig das Timeout des Datensatzes verwendet wird, wenn kein Wert definiert wurde." + "Periods": ["Zeiträume"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Definiert die Größe der Funktion ‚Rollierendes Fenster‘ relativ zur ausgewählten Zeitgranularität" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "Dauer (in Sekunden) des Caching-Timeouts für diese Tabelle. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig das Datenbanktimeout verwendet wird, wenn es nicht definiert ist." + "Min periods": ["Mindestzeiträume"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Die Mindestanzahl von rollierender Perioden, die erforderlich sind, um einen Wert anzuzeigen. Wenn Sie beispielsweise eine kumulative Summe an 7 Tagen durchführen, möchten Sie möglicherweise, dass Ihr \"Mindestzeitraum\" 7 beträgt, so dass alle angezeigten Datenpunkte die Summe von 7 Perioden sind. Dies wird den \"Hochlauf\" verbergen, der in den ersten 7 Perioden stattfindet" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Dauer (in Sekunden) des Cache-Timeouts für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig der globale Timeout verwendet wird, wenn keiner definiert ist." + "Time comparison": ["Zeitvergleich"], + "Time shift": ["Zeitverschiebung"], + "1 day ago": ["Vor 1 Tag"], + "1 week ago": ["vor 1 Woche"], + "28 days ago": ["vor 28 Tagen"], + "30 days ago": ["Vor 30 Tagen"], + "52 weeks ago": ["vor 52 Wochen"], + "1 year ago": ["vor 1 Jahr"], + "104 weeks ago": ["vor 104 Wochen"], + "2 years ago": ["vor 2 Jahren"], + "156 weeks ago": ["vor 156 Wochen"], + "3 years ago": ["vor 3 Jahren"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum. Erwartet relative Zeitintervalle in natürlicher Sprache (Beispiel: 24 Stunden, 7 Tage, 52 Wochen, 365 Tage). Freitext wird unterstützt." ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "Dauer (in Sekunden) der Caching-Zeitdauer für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig der globale Timeout verwendet wird, wenn keiner definiert ist. " + "Calculation type": ["Berechnungstyp"], + "Actual values": ["Aktuelle Werte"], + "Difference": ["Differenz"], + "Percentage change": ["Prozentuale Veränderung"], + "Ratio": ["Verhältnis"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "So zeigen Sie Zeitverschiebungen an: als einzelne Linien; als absolute Differenz zwischen der Hauptzeitreihe und jeder Zeitverschiebung; als prozentuale Veränderung; oder wenn sich das Verhältnis zwischen Reihe und Zeit verschiebt." ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "Dauer in ms (1,40008 => 1ms 400μs 80ns)" + "Resample": ["Resample"], + "Rule": ["Regel"], + "1 minutely frequency": ["minütlich"], + "1 hourly frequency": ["stündliche Frequenz"], + "1 calendar day frequency": ["1 Kalendertag Frequenz"], + "7 calendar day frequency": ["7 Kalendertage Frequenz"], + "1 month start frequency": ["1 Monat Start Frequenz"], + "1 month end frequency": ["1 Monat Ende Frequenz"], + "1 year start frequency": ["1 Jahres-Frequenz (Jahresanfang)"], + "1 year end frequency": ["1 Jahres-Frequenz (Jahresende)"], + "Pandas resample rule": ["Pandas Resample-Regel"], + "Fill method": ["Füll-Methode"], + "Null imputation": ["Fehlwert-Imputation"], + "Zero imputation": ["Fehlende-Werte-Ersetzung"], + "Linear interpolation": ["Lineare Interpolation"], + "Forward values": ["Vorwärtsinterpolation"], + "Backward values": ["Rückwärtsinterpolation"], + "Median values": ["Medianwerte"], + "Mean values": ["Mittelwerte"], + "Sum values": ["Summenwerte"], + "Pandas resample method": ["Pandas Resample-Methode"], + "Annotations and Layers": ["Anmerkungen und Ebenen"], + "Left": ["Links"], + "Top": ["Oben"], + "Chart Title": ["Diagrammtitel"], + "X Axis": ["X-Achse"], + "X Axis Title": ["Titel der X-Achse"], + "X AXIS TITLE BOTTOM MARGIN": ["X-ACHSE TITEL UNTERER RAND"], + "Y Axis": ["Y-Achse"], + "Y Axis Title": ["Titel der Y-Achse"], + "Y Axis Title Margin": [""], + "Query": ["Abfrage"], + "Predictive Analytics": ["Prädiktive Analysen"], + "Enable forecast": ["Prognose aktivieren"], + "Enable forecasting": ["Aktivieren von Prognosen"], + "Forecast periods": ["Prognosezeiträume"], + "How many periods into the future do we want to predict": [ + "Wie viele Perioden in der Zukunft sollen prognostiziert werden" ], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ - "Dauer in ms (100,40008 => 100ms 400μs 80ns)" + "Confidence interval": ["Konfidenzintervall"], + "Width of the confidence interval. Should be between 0 and 1": [ + "Breite des Konfidenzintervalls. Sollte zwischen 0 und 1 liegen" ], - "Duration in ms (66000 => 1m 6s)": ["Dauer in ms (66000 => 1m 6s)"], - "Duration: %s": ["Laufzeit: %s"], - "Dynamic Aggregation Function": ["Dynamische Aggregationsfunktion"], - "Dynamically search all filter values": [ - "Alle Filterwerte dynamisch durchsuchen" + "Yearly seasonality": ["Jährliche Saisonalität"], + "default": ["Standard"], + "Yes": ["Ja"], + "No": ["Nein"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Sollte jährliche Saisonalität angewendet werden. Ein ganzzahliger Wert gibt die Fourier-Reihenfolge der Saisonalität an." ], - "ECharts": ["ECharts"], - "EMAIL_REPORTS_CTA": ["EMAIL_REPORTS_CTA"], - "END (EXCLUSIVE)": ["ENDE (EXKLUSIV)"], - "ERROR": ["FEHLER"], - "ERROR: %s": ["FEHLER: %s"], - "Edge length": ["Kantenlänge"], - "Edge length between nodes": ["Kantenlänge zwischen Knoten"], - "Edge symbols": ["Kantensymbole"], - "Edge width": ["Kantenbreite"], - "Edit": ["Bearbeiten"], - "Edit Alert": ["Alarm bearbeiten"], - "Edit CSS": ["CSS bearbeiten"], - "Edit CSS Template": ["CSS Vorlagen bearbeiten"], - "Edit CSS template properties": ["CSS Vorlagen"], - "Edit Chart": ["Diagramm bearbeiten"], - "Edit Chart Properties": ["Diagrammeigenschaften bearbeiten"], - "Edit Column": ["Spalte bearbeiten"], - "Edit Dashboard": ["Dashboard bearbeiten"], - "Edit Database": ["Datenbank bearbeiten"], - "Edit Dataset ": ["Datensatz bearbeiten "], - "Edit Log": ["Protokoll bearbeiten"], - "Edit Metric": ["Metrik bearbeiten"], - "Edit Plugin": ["Plugin bearbeiten"], - "Edit Report": ["Report bearbeiten"], - "Edit Saved Query": ["Gespeicherte Abfrage bearbeiten"], - "Edit Table": ["Tabelle bearbeiten"], - "Edit annotation": ["Anmerkung bearbeiten"], - "Edit annotation layer": ["Anmerkungsebene bearbeiten"], - "Edit annotation layer properties": [ - "Eigenschaften der Anmerkungsebene bearbeiten" + "Weekly seasonality": ["Wöchentliche Saisonalität"], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Sollte wöchentliche Saisonalität angewendet werden. Ein ganzzahliger Wert gibt die Fourier-Reihenfolge der Saisonalität an." ], - "Edit chart": ["Diagramm bearbeiten"], - "Edit chart properties": ["Diagrammeigenschaften bearbeiten"], - "Edit dashboard": ["Dashboard bearbeiten"], - "Edit database": ["Datenbank bearbeiten"], - "Edit dataset": ["Datensatz bearbeiten"], - "Edit email report": ["E-Mail-Report bearbeiten"], - "Edit formatter": ["Formatierer bearbeiten"], - "Edit properties": ["Eigenschaften bearbeiten"], - "Edit query": ["Abfrage bearbeiten"], - "Edit template": ["Vorlage bearbeiten"], - "Edit template parameters": ["Vorlagenparameter bearbeiten"], - "Edit the dashboard": ["Dashboard bearbeiten"], - "Edit time range": ["Zeitraum bearbeiten"], - "Edited": ["Bearbeitet"], - "Editing 1 filter:": ["Bearbeiten von einem Filter:"], - "Editing filter set:": ["Filterguppe bearbeiten:"], - "Either the database is spelled incorrectly or does not exist.": [ - "Entweder ist die Datenbank falsch geschrieben oder existiert nicht." + "Daily seasonality": ["Tägliche Saisonalität"], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Sollte tägliche Saisonalität angewendet werden. Ein ganzzahliger Wert gibt die Fourier-Reihenfolge der Saisonalität an." ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "Entweder der Benutzer*innenname \"%(username)s\" oder das Passwort ist falsch." + "Time related form attributes": ["Zeitbezogene Formularattribute"], + "Datasource & Chart Type": ["Datenquelle & Diagrammtyp"], + "Chart ID": ["Diagramm-ID"], + "The id of the active chart": ["Die ID des aktiven Diagramms"], + "Cache Timeout (seconds)": ["Cache-Timeout (Sekunden)"], + "The number of seconds before expiring the cache": [ + "Die Anzahl der Sekunden vor Ablauf des Caches" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "Entweder der Benutzer*innenname \"%(username)s\", das Kennwort oder der Datenbankname \"%(database)s\" ist falsch." - ], - "Either the username or the password is wrong.": [ - "Entweder der Benutzer*innenname oder das Kennwort ist falsch." + "URL Parameters": ["URL-Parameter"], + "Extra url parameters for use in Jinja templated queries": [ + "Zusätzliche URL-Parameter für die Verwendung in Jinja-Vorlagenabfragen" ], - "Elevation": ["Höhendaten"], - "Email reports active": ["E-Mail-Reporte aktiv"], - "Embed": ["Einbetten"], - "Embed code": ["Code einbetten"], - "Embed dashboard": ["Dashboard einbetten"], - "Embedding deactivated.": ["Einbetten deaktiviert."], - "Emit Filter Events": ["Filterereignisse ausgeben"], - "Emphasis": ["Hervorhebung"], - "Employment and education": ["Beschäftigung und Bildung"], - "Empty circle": ["Leerer Kreis"], - "Empty collection": ["Leere Sammlung"], - "Empty column": ["Leere Spalte"], - "Empty query result": ["Leeres Abfrageergebnis"], - "Empty query?": ["Leere Abfrage?"], - "Empty row": ["Leere Zeile"], - "Enable 'Allow file uploads to database' in any database's settings": [ - "Aktivieren Sie \"Datei-Uploads in Datenbank zulassen\" in den Einstellungen einer beliebigen Datenbank" + "Extra Parameters": ["Zusätzliche Parameter"], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Zusätzliche Parameter, die Plugins für die Verwendung in Jinja-Template-Abfragen festlegen können" ], - "Enable Filter Select": ["Filterauswahl aktivieren"], - "Enable cross-filtering": ["Kreuzfilterung aktivieren"], - "Enable data zooming controls": [ - "Aktivieren von Steuerelementen für das Zoomen von Daten" + "Color Scheme": ["Farbschema"], + "Contribution Mode": ["Beitragsmodus"], + "Row": ["Zeile"], + "Series": ["Zeitreihen"], + "Calculate contribution per series or row": [ + "Beitrag pro Serie oder Zeile berechnen" ], - "Enable embedding": ["Einbettung aktivieren"], - "Enable forecast": ["Prognose aktivieren"], - "Enable forecasting": ["Aktivieren von Prognosen"], - "Enable graph roaming": ["Graph-Roaming aktivieren"], - "Enable node dragging": ["Aktivieren des Ziehens von Knoten"], - "Enable query cost estimation": ["Abfragekostenschätzung aktivieren"], - "Enable server side pagination of results (experimental feature)": [ - "Aktivieren der serverseitigen Paginierung der Ergebnisse (experimentelle Funktion)" + "Y-Axis Sort By": ["Y-Achse Sortieren nach"], + "X-Axis Sort By": ["X-Achse Sortieren nach"], + "Decides which column to sort the base axis by.": [ + "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." ], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "Ungültiger räumlicher NULL-Eintrag gefunden, bitte erwägen Sie, diese herauszufiltern" + "Y-Axis Sort Ascending": ["Y-Achse aufsteigend sortieren"], + "X-Axis Sort Ascending": ["X-Achse aufsteigend sortieren"], + "Whether to sort ascending or descending on the base Axis.": [ + "Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll." ], - "End": ["Ende"], - "End (Longitude, Latitude): ": ["Ende (Längengrad, Breitengrad): "], - "End Longitude & Latitude": ["Ende Längen- und Breitengrad"], - "End Time": ["Bis Zeit"], - "End angle": ["Endwinkel"], - "End date": ["Enddatum"], - "End date excluded from time range": [ - "Enddatum aus dem Zeitraum ausgeschlossen" + "Treat values as categorical.": [""], + "Dimensions": ["Dimensionen"], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "" ], - "End date must be after start date": [ - "‚Von Datum' kann nicht größer als ‚Bis Datum' sein" + "Dimension": ["Dimension"], + "Entity": ["Element"], + "This defines the element to be plotted on the chart": [ + "Definiert das Element, das im Diagramm dargestellt werden soll" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "Die Engine-Spezifikation \"%(engine)s\" unterstützt keine Konfiguration über Parameter." + "Filters": ["Filter"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Engine Parameters": ["Engine-Parameter"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ - "Die Engine-Spezifikation \"%(engine_spec)s\" unterstützt keine Konfiguration über einzelne Parameter." + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Enter CA_BUNDLE": ["Geben Sie CA_BUNDLE ein"], - "Enter Primary Credentials": ["Primäre Anmeldeinformationen eingeben"], - "Enter a delimiter for this data": [ - "Geben Sie ein Trennzeichen für diese Daten ein" + "Right Axis Metric": ["Metrik der rechten Achse"], + "Sort by": ["Sortieren nach"], + "Bubble Size": ["Blasengröße"], + "Metric used to calculate bubble size": [ + "Metrik zur Berechnung der Blasengröße" ], - "Enter a name for this sheet": [ - "Geben Sie einen neuen Titel für die Registerkarte ein" + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "" ], - "Enter a new title for the tab": [ - "Geben Sie einen neuen Titel für die Registerkarte ein" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "Enter duration in seconds": ["Dauer in Sekunden eingeben"], - "Enter fullscreen": ["Vollbild öffnen"], - "Enter the required %(dbModelName)s credentials": [ - "Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein." + "Color Metric": ["Farbmetrik"], + "A metric to use for color": [ + "Eine Metrik, die für die Farbe verwendet werden soll" ], - "Entity": ["Element"], - "Entity ID": ["Entitäts-ID"], - "Equal Date Sizes": ["Gleiche Datumsgrößen"], - "Equal to (=)": ["Ist gleich (==)"], - "Error": ["Fehler"], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Fehler im Jinja-Ausdruck in HAVING-Klausel: %(msg)s" + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Die Zeitspalte für die Visualisierung. Beachten Sie, dass Sie beliebige Ausdrücke definieren können, die eine DATETIME-Spalte in der Tabelle zurückgeben. Beachten Sie auch, dass der folgende Filter auf diese Spalte oder diesen Ausdruck angewendet wird" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Fehler im Jinja-Ausdruck in RLS-Filtern: %(msg)s" + "Drop a temporal column here or click": [ + "Legen Sie hier eine Spalte ab oder klicken Sie" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Fehler im Jinja-Ausdruck in WHERE-Klausel: %(msg)s" + "Y-axis": ["Y-Achse"], + "Dimension to use on y-axis.": ["Dimension der y-Achse."], + "X-axis": ["X-Achse"], + "Dimension to use on x-axis.": ["Dimension der x-Achse."], + "The type of visualization to display": [ + "Der anzuzeigende Visualisierungstyp" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Fehler im Jinja-Ausdruck im Fetch Values-Prädikat: %(msg)s" + "Fixed Color": ["Fixierte Farbe"], + "Use this to define a static color for all circles": [ + "Verwenden Sie diese Option, um eine statische Farbe für alle Kreise zu definieren" ], - "Error loading chart datasources. Filters may not work correctly.": [ - "Fehler beim Laden von Diagrammdatenquellen. Filter funktionieren möglicherweise nicht ordnungsgemäß." + "Linear Color Scheme": ["Farbverlaufschema"], + "all": ["alle"], + "5 seconds": ["5 Sekunden"], + "30 seconds": ["30 Sekunden"], + "1 minute": ["1 Minute"], + "5 minutes": ["5 Minuten"], + "30 minutes": ["30 Minuten"], + "1 hour": ["1 Stunde"], + "1 day": ["1 Tag"], + "7 days": ["7 Tage"], + "week": ["Woche"], + "week starting Sunday": ["Woche, am Sonntag beginnend"], + "week ending Saturday": ["Woche, am Samstag endend"], + "month": ["Monat"], + "quarter": ["Quartal"], + "year": ["Jahr"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie einfache natürliche Sprache wie in \"10 Sekunden\", \"1 Tag\" oder \"56 Wochen\" eingeben und verwenden können" ], - "Error message": ["Fehlermeldung"], - "Error while fetching charts": ["Fehler beim Abrufen von Diagrammen"], - "Error while fetching data: %s": ["Fehler beim Abrufen von Daten: %s"], - "Error while rendering virtual dataset query: %(msg)s": [ - "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s" + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ + "" ], - "Error: %(error)s": ["Fehler: %(error)s"], - "Error: %(msg)s": ["Fehler: %(msg)s"], - "Error: permalink state not found": [ - "Fehler: Permalink-Status nicht gefunden" + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "" ], - "Estimate cost": ["Kosten schätzen"], - "Estimate selected query cost": [ - "Schätze Kosten für ausgewählte Abfragen" + "Row limit": ["Zeilenlimit"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Estimate the cost before running a query": [ - "Schätzen der Kosten vor dem Ausführen einer Abfrage" + "Sort Descending": ["Absteigend sortieren"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "" ], - "Event": ["Ereignis"], - "Event Flow": ["Ereignisablauf"], - "Event Names": ["Ereignisnamen"], - "Event definition": ["Ereignisdefinition"], - "Event flow": ["Ereignisablauf"], - "Event time column": ["Spalte \"Ereigniszeit\""], - "Every": ["Jeden"], - "Evolution": ["Entwicklung"], - "Exact": ["Genau"], - "Example": ["Beispiel"], - "Examples": ["Beispiele"], - "Excel File": ["Excel-Datei"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Excel-Datei \"%(excel_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank \"%(db_name)s\" hochgeladen" + "Series limit": ["Zeitreihenbegrenzung"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Begrenzt die Anzahl der Zeitreihen, die angezeigt werden. Eine Unterabfrage (oder eine zusätzliche Phase, falls Unterabfragen nicht unterstützt werden) wird angewendet, um die Anzahl der Zeitreihen zu begrenzen, die abgerufen und angezeigt werden. Diese Funktion ist nützlich, wenn Sie nach Dimension(en) mit hoher Kardinalität gruppieren, erhöht jedoch die Abfragekomplexität und -kosten." ], - "Excel to Database configuration": ["Excel-zu-Datenbank-Konfiguration"], - "Exclude selected values": ["Auswahlwerte ausschließen"], - "Executed SQL": ["Ausgeführtes SQL"], - "Executed query": ["Ausgeführte Abfrage"], - "Execution ID": ["Ausführungs-ID"], - "Execution log": ["Aktionsprotokoll"], - "Existing dataset": ["Vorhandener Datensatz"], - "Exit fullscreen": ["Vollbildanzeige beenden"], - "Expand": ["Erweitern"], - "Expand all": ["Alle aufklappen"], - "Expand data panel": ["Datenbereich erweitern"], - "Expand row": ["Zeile erweitern"], - "Expand table preview": ["Tabellenvorschau erweitern"], - "Expand tool bar": ["Werkzeugleiste erweitern"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "Erwartet eine Formel mit abhängigem Zeitparameter 'x'\n in Millisekunden seit Startzeit der UNIX-Zeit (epoch). mathjs wird verwendet, um die Formeln auszuwerten.\n Beispiel: '2x+5'" + "Y Axis Format": ["Y-Achsenformat"], + "Time format": ["Zeitformat"], + "The color scheme for rendering chart": [ + "Das zur Diagrammanzeige verwendete Farbschema" ], - "Experimental": ["Experimentell"], - "Explore": ["Erkunden"], - "Explore - %(table)s": ["Erkunden - %(table)s"], - "Explore the result set in the data exploration view": [ - "Untersuchen der Ergebnismenge in der Datenexplorations-Ansicht" + "Truncate Metric": ["Metrik abschneiden"], + "Whether to truncate metrics": [ + "Ob Metriken abgeschnitten werden sollen" ], - "Export": ["Export"], - "Export dashboards?": ["Dashboards exportieren?"], - "Export query": ["Abfrage exportieren"], - "Export to .CSV": ["Export nach .CSV"], - "Export to .JSON": ["Exportieren nach . JSON"], - "Export to Excel": ["Exportieren nach Excel"], - "Export to YAML": ["Exportieren als YAML"], - "Export to YAML?": ["Als YAML exportieren?"], - "Export to full .CSV": ["Export in vollständiges . .CSV"], - "Export to original .CSV": ["Export in das ursprüngliche .CSV"], - "Export to pivoted .CSV": ["Export in das pivotierte .CSV"], - "Expose database in SQL Lab": ["Datenbank in SQL Lab verfügbar machen"], - "Expose in SQL Lab": ["Verfügbarmachen in SQL Lab"], - "Expose this DB in SQL Lab": [ - "Diese Datenbank in SQL Lab verfügbar machen" + "Show empty columns": ["Leere Spalten anzeigen"], + "D3 format syntax: https://github.com/d3/d3-format": [ + "D3-Formatsyntax: https://github.com/d3/d3-format" ], - "Expression": ["Ausdruck"], - "Extra": ["Extra"], - "Extra Controls": ["Zusätzliche Bedienelemente"], - "Extra Parameters": ["Zusätzliche Parameter"], - "Extra data for JS": ["Zusätzliche Daten für JS"], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "Zusätzliche Daten zum Angeben von Tabellenmetadaten. Unterstützt derzeit Metadaten des Formats: '{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" } `." + "Only applies when \"Label Type\" is set to show values.": [ + "Gilt nur, wenn \"Beschriftungstyp\" so eingestellt ist, dass Werte angezeigt werden." ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Zusätzliches Feld kann nicht durch JSON decodiert werden. %(msg)s" + "Only applies when \"Label Type\" is not set to a percentage.": [ + "Gilt nur, wenn \"Beschriftungstyp\" nicht auf einen Prozentsatz festgelegt ist." ], - "Extra parameters for use in jinja templated queries": [ - "Zusätzliche Parameter für die Verwendung in Jinja-Vorlagenabfragen" + "Adaptive formatting": ["Adaptative Formatierung"], + "Original value": ["Ursprünglicher Wert"], + "Duration in ms (66000 => 1m 6s)": ["Dauer in ms (66000 => 1m 6s)"], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "Dauer in ms (1,40008 => 1ms 400μs 80ns)" ], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ - "Zusätzliche Parameter, die Plugins für die Verwendung in Jinja-Template-Abfragen festlegen können" + "D3 time format syntax: https://github.com/d3/d3-time-format": [ + "D3-Zeitformatsyntax: https://github.com/d3/d3-time-format" ], - "Extra url parameters for use in Jinja templated queries": [ - "Zusätzliche URL-Parameter für die Verwendung in Jinja-Vorlagenabfragen" + "Oops! An error occurred!": ["Hoppla! Ein Fehler ist aufgetreten!"], + "Stack Trace:": ["Stacktrace"], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Für diese Abfrage wurden keine Ergebnisse zurückgegeben. Wenn Sie erwartet haben, dass Ergebnisse zurückgegeben werden, stellen Sie sicher, dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." ], - "Extruded": ["extrudiert"], - "FEB": ["FEB"], - "FRI": ["FR"], - "Factor": ["Faktor"], - "Factor to multiply the metric by": [ - "Faktor, mit dem die Metrik multipliziert wird" + "No Results": ["Keine Ergebnisse"], + "ERROR": ["FEHLER"], + "Found invalid orderby options": ["Ungültige Order-By-Optionen gefunden"], + "is expected to be an integer": ["wird als Ganzzahl erwartet"], + "is expected to be a number": ["wird als Zahl erwartet"], + "Value cannot exceed %s": [""], + "cannot be empty": ["darf nicht leer sein"], + "Domain": ["Wertebereich"], + "hour": ["Stunde"], + "day": ["Tag"], + "The time unit used for the grouping of blocks": [ + "Die Zeiteinheit, die für die Gruppierung von Blöcken verwendet wird" ], - "Fail": ["Fehlschlagen"], - "Failed": ["Fehlgeschlagen"], - "Failed at retrieving results": ["Fehler beim Abrufen der Ergebnisse"], - "Failed at stopping query. %s": ["Fehler beim Beenden der Abfrage. %s"], - "Failed to create report": ["Bericht konnte nicht erstellt werden"], - "Failed to execute %(query)s": ["Fehler beim Ausführen %(query)s"], - "Failed to load chart data": [ - "Diagrammdaten konnten nicht geladen werden" + "Subdomain": ["Subdomain"], + "min": ["Minimum"], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Die Zeiteinheit für jeden Block. Sollte eine kleinere Einheit als domain_granularity sein. Sollte größer oder gleich Zeitgranularität sein" ], - "Failed to load chart data.": [ - "Diagrammdaten konnten nicht geladen werden." + "Chart Options": ["Diagramm-Optionen"], + "Cell Size": ["Zellengröße"], + "The size of the square cell, in pixels": [ + "Die Größe der quadratischen Zelle in Pixel" ], - "Failed to retrieve advanced type": [ - "Fehler beim Abrufen des erweiterten Typs" + "Cell Padding": ["Zellen Abstand"], + "The distance between cells, in pixels": [ + "Der Abstand zwischen Zellen in Pixel" ], - "Failed to start remote query on a worker.": [ - "Remoteabfrage für einen Worker konnte nicht gestartet werden." + "Cell Radius": ["Zellenradius"], + "The pixel radius": ["Der Pixelradius"], + "Color Steps": ["Farbschritte"], + "The number color \"steps\"": ["Die Anzahl Farbabstufungen"], + "Time Format": ["Zeitformat"], + "Legend": ["Legende"], + "Whether to display the legend (toggles)": [ + "Ob die Legende angezeigt werden soll (Wechselschalter)" ], - "Failed to update report": ["Fehler beim Aktualisieren des Berichts"], - "Failed to verify select options: %s": [ - "Auswahloptionen konnten nicht überprüft werden: %s" + "Show Values": ["Werte anzeigen"], + "Whether to display the numerical values within the cells": [ + "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen" ], - "Favorite": ["Favoriten"], - "Favorites": ["Favoriten"], - "February": ["Februar"], - "Fetch Values Predicate": ["Werte-Prädikate abrufen"], - "Fetch data preview": ["Datenvorschau abrufen"], - "Fetched %s": ["%s abgerufen"], - "Fetching": ["Wird abgerufen"], - "Field cannot be decoded by JSON. %(json_error)s": [ - "Das Feld kann nicht durch JSON decodiert werden. %(json_error)s" + "Show Metric Names": ["Metriknamen anzeigen"], + "Whether to display the metric name as a title": [ + "Ob der Metrikname als Titel angezeigt werden soll" ], - "Field cannot be decoded by JSON. %(msg)s": [ - "Das Feld kann nicht durch JSON decodiert werden. %(msg)s" + "Number Format": ["Zahlenformat"], + "Correlation": ["Korrelation"], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Visualisiert, wie sich eine Metrik im Laufe der Zeit mithilfe einer Farbskala und einer Kalenderansicht verändert hat. Grauwerte werden verwendet, um fehlende Werte anzuzeigen, und das lineare Farbschema wird verwendet, um den Betrag jedes Tageswerts zu kodieren." ], - "Field is required": ["Dieses Feld ist erforderlich"], - "File": ["Datei"], - "Fill Color": ["Füllfarbe"], - "Fill all required fields to enable \"Default Value\"": [ - "Füllen Sie alle erforderlichen Felder aus, um \"Standardwert\" zu aktivieren" + "Business": ["Geschäftlich"], + "Comparison": ["Vergleich"], + "Intensity": ["Intensität"], + "Pattern": ["Muster"], + "Report": ["Melden"], + "Trend": ["Trend"], + "less than {min} {name}": ["weniger als {min} {name}"], + "between {down} and {up} {name}": ["zwischen {down} und {up} {name}"], + "more than {max} {name}": ["mehr als {max} {name}"], + "Sort by metric": ["Nach Metrik sortieren"], + "Whether to sort results by the selected metric in descending order.": [ + "Ob die Ergebnisse nach der ausgewählten Metrik in absteigender Reihenfolge sortiert werden sollen." ], - "Fill method": ["Füll-Methode"], - "Filled": ["Gefüllt"], - "Filter": ["Filter"], - "Filter Configuration": ["Filterkonfiguration"], - "Filter List": ["Filterliste"], - "Filter Settings": ["Filtereinstellungen"], - "Filter Type": ["Filtertyp"], - "Filter charts": ["Diagramme filtern"], - "Filter configuration": ["Filterkonfiguration"], - "Filter configuration for the filter box": [ - "Filterkonfiguration für die Filterkomponente" + "Number format": ["Nummern Format"], + "Choose a number format": ["Wählen Sie ein Zahlenformat"], + "Source": ["Quelle"], + "Choose a source": ["Wählen Sie eine Quelle"], + "Target": ["Ziel"], + "Choose a target": ["Wählen Sie ein Ziel"], + "Flow": ["Fluss"], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Zeigt den Fluss oder die Verknüpfung zwischen Kategorien anhand der Dicke der Sehnen. Der Wert und die entsprechende Dicke können für jede Seite unterschiedlich sein." ], - "Filter has default value": ["Filter hat den Standardwert"], - "Filter menu": ["Filter-Menü"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Filtern Sie Metadaten, die im Dashboard geändert wurden. Wird nicht angewendet." + "Relationships between community channels": [ + "Beziehungen zwischen Community-Kanälen" ], - "Filter name": ["Tabellenname"], - "Filter only displays values relevant to selections made in other filters.": [ - "Filter zeigt nur Werte an, die für die Auswahl in anderen Filtern relevant sind." + "Chord Diagram": ["Sehnendiagramm"], + "Aesthetic": ["Ästhetisch"], + "Circular": ["Kreisförmig"], + "Legacy": ["Veraltet"], + "Proportional": ["Proportional"], + "Relational": ["Relational"], + "Country": ["Land"], + "Which country to plot the map for?": [ + "Für welches Land soll die Karte geplottet werden?" ], - "Filter results": ["Ergebnisse filtern"], - "Filter set already exists": ["Filtergruppe bereits vorhanden"], - "Filter set with this name already exists": [ - "Filtergruppe mit diesem Namen existiert bereits" + "ISO 3166-2 Codes": ["ISO-3166-2-Codes"], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Spalte mit ISO 3166-2-Codes der Region/Provinz/Kreis in Ihrer Tabelle." ], - "Filter sets (%(filterSetCount)d)": [ - "Filtergruppen (%(filterSetCount)d)" + "Metric to display bottom title": [ + "Metrik zur Anzeige des unteren Titels" ], - "Filter type": ["Filter Typ"], - "Filter value (case sensitive)": [ - "Filterwert (Groß-/Kleinschreibung beachten)" + "Map": ["Karte"], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Visualisiert, wie eine einzelne Metrik in den Hauptunterteilungen eines Landes (Bundesstaaten, Provinzen usw.) auf einer Choroplethenkarte variiert. Der Wert jeder Unterteilung wird erhöht, wenn Sie den Mauszeiger über die entsprechende geografische Grenze bewegen." ], - "Filter value is required": ["Filterwert ist erforderlich"], - "Filter value list cannot be empty": [ - "Filterwertliste darf nicht leer sein" + "2D": ["2D"], + "Geo": ["Räumlich"], + "Range": ["Bereich"], + "Stacked": ["Gestapelt"], + "Sorry, there appears to be no data": [ + "Leider scheint es keine Daten zu geben" ], - "Filter your charts": ["Filtern Sie Ihre Diagramme"], - "Filterable": ["Filterbar"], - "Filters": ["Filter"], - "Filters (%d)": ["Filter (%d)"], - "Filters by columns": ["Nach Spalten filtern"], - "Filters by metrics": ["Nach Metriken filtern"], - "Filters configuration": ["Filterkonfiguration"], - "Filters out of scope (%d)": [ - "Filter außerhalb des Gültigkeitsbereichs (%d)" + "Event definition": ["Ereignisdefinition"], + "Event Names": ["Ereignisnamen"], + "Columns to display": ["Anzuzeigende Spalten"], + "Order by entity id": ["Nach Entitäts-ID sortieren"], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Wichtig! Wählen Sie diese Option, wenn die Tabelle nicht bereits nach Entitäts-ID sortiert ist, da sonst nicht garantiert ist, dass alle Ereignisse für jede Entität zurückgegeben werden." ], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ - "Filter mit demselben Gruppenschlüssel werden innerhalb der Gruppe ODER-verknüpft, während verschiedene Filtergruppen zusammen UND-verknüpft werden. Undefinierte Gruppenschlüssel werden als eindeutige Gruppen behandelt, d.h. nicht gruppiert. Wenn eine Tabelle beispielsweise drei Filter hat, von denen zwei für die Abteilungen Finanzen und Marketing (Gruppenschlüssel = 'Abteilung') sind und einer sich auf die Region Europa bezieht (Gruppenschlüssel = 'Region'), würde die Filterklausel den Filter anwenden (Abteilung = 'Finanzen' ODER Abteilung = 'Marketing') UND (Region = 'Europa')." + "Minimum leaf node event count": [ + "Minimale Anzahl der Blattknotenereignisse" ], - "Finish": ["Fertigstellen"], - "First": ["Erste"], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "Trendlinie auf den angegebenen vollen Zeitbereich fixieren, falls gefilterte Ergebnisse nicht das Start- oder Enddatum enthalten" + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Blattknoten, die weniger als diese Anzahl von Ereignissen darstellen, werden zunächst in der Visualisierung ausgeblendet." ], - "Fix to selected Time Range": ["Auf ausgewählten Zeitraum fixieren"], - "Fixed": ["Fixiert"], - "Fixed Color": ["Fixierte Farbe"], - "Fixed color": ["Fixierte Farbe"], - "Fixed point radius": ["Fester Punktradius"], - "Flow": ["Fluss"], - "Font size": ["Schriftgröße"], - "Font size for axis labels, detail value and other text elements": [ - "Schriftgröße für Achsenbeschriftungen, Detailwerte und andere Textelemente" + "Additional metadata": ["Zusätzliche Metadaten"], + "Metadata": ["Metadaten"], + "Select any columns for metadata inspection": [ + "Auswählen beliebiger Spalten für die Metadatenüberprüfung" ], - "Font size for the biggest value in the list": [ - "Schriftgröße für den größten Wert in der Liste" + "Entity ID": ["Entitäts-ID"], + "e.g., a \"user id\" column": ["z. B. eine Spalte „user id“"], + "Max Events": ["Maximale Anzahl von Ereignissen"], + "The maximum number of events to return, equivalent to the number of rows": [ + "Die maximale Anzahl der zurückzugebenden Ereignisse, entspricht der Anzahl Zeilen" ], - "Font size for the smallest value in the list": [ - "Schriftgröße für den kleinsten Wert in der Liste" + "Compares the lengths of time different activities take in a shared timeline view.": [ + "Vergleicht die Zeitspanne, die verschiedene Aktivitäten in einer freigegebenen Zeitachsenansicht benötigen." ], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "Für Presto und Postgres wird ein Buttons angezeigt, um Kosten vor dem Ausführen einer Abfrage zu schätzen." + "Event Flow": ["Ereignisablauf"], + "Progressive": ["Progressiv"], + "Axis ascending": ["Achse aufsteigend"], + "Axis descending": ["Achse absteigend"], + "Metric ascending": ["Metrik aufsteigend"], + "Metric descending": ["Metrik absteigend"], + "Heatmap Options": ["Heatmap-Optionen"], + "XScale Interval": ["X-Skalen-Intervall"], + "Number of steps to take between ticks when displaying the X scale": [ + "Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der X-Skala ausgeführt werden müssen" ], - "For further instructions, consult the": [ - "Weitere Anweisungen finden Sie in der" + "YScale Interval": ["Y-Skalen-Intervall"], + "Number of steps to take between ticks when displaying the Y scale": [ + "Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der Y-Skala ausgeführt werden müssen" ], - "For more information about objects are in context in the scope of this function, refer to the": [ - "Weitere Informationen zu Objekten im Kontext dieser Funktion finden Sie im Abschnitt" + "Rendering": ["Darstellen"], + "pixelated (Sharp)": ["Gepixelt (scharf)"], + "auto (Smooth)": ["automatisch (geglättet)"], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "CSS-Attribut zum Rendern von Bildern des Canvas-Objekts, das definiert, wie der Browser das Bild hochskaliert" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ - "Bei regulären Filtern sind dies die Rollen, auf die dieser Filter angewendet wird. Bei Basisfiltern sind dies die Rollen, auf die der Filter NICHT angewendet wird, z. B. Admin, wenn Admin alle Daten sehen soll." + "Normalize Across": ["Normalisieren über"], + "heatmap": ["Heatmap"], + "x": ["X"], + "y": ["Y"], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Die Farbe wird basierend auf dem normalisierten Wert (0% to 100%) einer bestimmten Zelle im Vergleich zu den anderen Zellen im ausgewählten Bereich schattiert: " ], - "Force": ["Kraft"], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "Erzwingen Sie, dass alle Tabellen und Ansichten in diesem Schema erstellt werden, wenn Sie in SQL Lab auf CTAS oder CVAS klicken." + "x: values are normalized within each column": [ + "X: Werte werden innerhalb jeder Spalte normalisiert" ], - "Force date format": ["Datumsformat erzwingen"], - "Force refresh": ["Aktualisierung erzwingen"], - "Force refresh schema list": ["Aktualisierung der Schemaliste erzwingen"], - "Force refresh table list": ["Aktualisierung erzwingen"], - "Forecast periods": ["Prognosezeiträume"], - "Foreign key": ["Fremdschlüssel"], - "Forest Green": ["Waldgrün"], - "Form data not found in cache, reverting to chart metadata.": [ - "Formulardaten nicht im Cache gefunden, es wird auf Diagramm-Metadaten zurückgesetzt." + "y: values are normalized within each row": [ + "y: Werte werden innerhalb jeder Zeile normalisiert" ], - "Form data not found in cache, reverting to dataset metadata.": [ - "Formulardaten nicht im Cache gefunden. Es wird auf Datensatz-Metadaten zurückgesetzt." + "heatmap: values are normalized across the entire heatmap": [ + "Heatmap: Werte werden über die gesamte Heatmap normalisiert" ], - "Formattable": ["Formattabelle"], - "Formatted CSV attached in email": [ - "Formatierte CSV-Datei in E-Mail angehängt" + "Left Margin": ["Linker Abstand"], + "auto": ["automatisch"], + "Left margin, in pixels, allowing for more room for axis labels": [ + "Linker Rand in Pixeln, um mehr Platz für Achsenbeschriftungen zu schaffen" ], - "Formatted date": ["Formatiertes Datum"], - "Formatted value": ["Formatierter Wert"], - "Formatting": ["Formatierung"], - "Formula": ["Formel"], - "Forward values": ["Vorwärtsinterpolation"], - "Found invalid orderby options": ["Ungültige Order-By-Optionen gefunden"], - "Fraction digits": ["Nachkommastellen"], - "Frequency": ["Häufigkeit"], - "Friction": ["Reibung"], - "Friction between nodes": ["Reibung zwischen Knoten"], - "Friday": ["Freitag"], - "From date cannot be larger than to date": [ - "‚Von Datum' kann nicht größer als ‚Bis-Datum' sein" + "Bottom Margin": ["Unterer Abstand"], + "Bottom margin, in pixels, allowing for more room for axis labels": [ + "Unterer Rand in Pixeln, ermöglicht mehr Platz für Achsenbeschriftungen" ], - "Full name": ["Vollständiger Name"], - "Funnel Chart": ["Trichterdiagramm"], - "Further customize how to display each column": [ - "Weitere Anpassungen der Anzeige der Spaltenanzeige" + "Value bounds": ["Wertgrenzen"], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Harte Wertgrenzen für die Farbcodierung. Ist nur relevant und wird angewendet, wenn die Normalisierung auf die gesamte Heatmap angewendet wird." ], - "Further customize how to display each metric": [ - "Passen Sie weiter an, wie die einzelnen Metriken angezeigt werden sollen" + "Sort X Axis": ["X-Achse sortieren"], + "Sort Y Axis": ["Y-Achse sortieren"], + "Show percentage": ["Prozentsatz anzeigen"], + "Whether to include the percentage in the tooltip": [ + "Ob der Prozentsatz in Tooltip aufgenommen werden soll" ], - "GROUP BY": ["Gruppieren nach"], - "Gauge Chart": ["Tachometerdiagramm"], - "General": ["Allgemein"], - "Generating link, please wait..": ["Link wird generiert, bitte warten."], - "Generic Chart": ["Generisches Diagramm"], - "Geo": ["Räumlich"], - "GeoJson Column": ["GeoJson-Spalte"], - "GeoJson Settings": ["GeoJson-Einstellungen"], - "Geohash": ["Geo Hashing"], - "Get the last date by the date unit.": [ - "Das letzte Datum anhand der Datumseinheit anfordern." + "Normalized": ["Normalisiert"], + "Whether to apply a normal distribution based on rank on the color scale": [ + "Ob eine Normalverteilung basierend auf dem Rang auf der Farbskala angewendet werden soll" ], - "Get the specify date for the holiday": [ - "Abrufen des angegebenen Datums für den Feiertag" + "Value Format": ["Wertformat"], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Visualisieren Sie eine verwandte Metrik über Gruppenpaare hinweg. Heatmaps zeichnen sich dadurch aus, dass sie die Korrelation oder Stärke zwischen zwei Gruppen darstellen. Farbe wird verwendet, um die Stärke der Verbindung zwischen jedem Gruppenpaar zu betonen." ], - "Go to the edit mode to configure the dashboard and add charts": [ - "Gehen Sie in den Bearbeitungsmodus, um das Dashboard zu konfigurieren und Diagramme hinzuzufügen" + "Sizes of vehicles": ["Fahrzeuggrößen"], + "Employment and education": ["Beschäftigung und Bildung"], + "Density": ["Dichte"], + "Predictive": ["Prädikativ"], + "Single Metric": ["Einzelne Metrik"], + "to": ["bis"], + "count": ["Anzahl"], + "cumulative": ["kumulativ"], + "percentile (exclusive)": ["Perzentil (exklusiv)"], + "Select the numeric columns to draw the histogram": [ + "Auswählen der numerischen Spalten zum Zeichnen des Histogramms" ], - "Gold": ["Gold"], - "Google Sheet Name and URL": ["Google Tabellen-Name und URL"], - "Grace period": ["Kulanzzeit"], - "Graph Chart": ["Graphen-Diagramm"], - "Graph layout": ["Graph-Layout"], - "Gravity": ["Anziehungskraft"], - "Greater or equal (>=)": ["Größer oder gleich (>=)"], - "Greater than (>)": ["Größer als (>)"], - "Grid": ["Raster"], - "Grid Size": ["Rastergröße"], - "Group By": ["Gruppieren nach"], - "Group By filter plugin": ["Gruppieren nach Filter-Plugin"], - "Group By, Metrics or Percentage Metrics must have a value": [ - "Group By, Metriken oder Prozentmetriken müssen einen Wert haben" + "No of Bins": ["Anzahl der Bis"], + "Select the number of bins for the histogram": [ + "Wählen Sie die Anzahl der Klassen für das Histogramm aus" ], - "Group by": ["Gruppieren nach"], - "Groupable": ["Gruppierbar"], - "Handlebars": ["Handlebars"], - "Handlebars Template": ["Handlebars-Vorlage"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ - "Harte Wertgrenzen für die Farbcodierung. Ist nur relevant und wird angewendet, wenn die Normalisierung auf die gesamte Heatmap angewendet wird." + "X Axis Label": ["X Achsenbeschriftung"], + "Y Axis Label": ["Y Achsenbeschriftung"], + "Whether to normalize the histogram": [ + "Ob das Histogramm normalisiert werden soll" ], - "Has created by": ["Hat „Erstellt von“"], - "Header": ["Header"], - "Header Row": ["Kopfzeile"], - "Heatmap": ["Heatmap"], - "Heatmap Options": ["Heatmap-Optionen"], - "Height": ["Höhe"], - "Height of the sparkline": ["Höhe der Sparkline"], - "Hide Line": ["Linie ausblenden"], - "Hide chart description": ["Diagrammbeschreibung ausblenden"], - "Hide layer": ["Ebene verstecken"], - "Hide password.": ["Passwort ausblenden."], - "Hide tool bar": ["Werkzeugleiste ausblenden"], - "Hides the Line for the time series": [ - "Blendet die Linie für die Zeitreihe aus" + "Cumulative": ["Kumuliert"], + "Whether to make the histogram cumulative": [ + "Ob das Histogramm kumulativ dargestellt werden soll" ], - "Hierarchy": ["Hierarchie"], - "Histogram": ["Histogramm"], - "Home": ["Startseite"], - "Horizon Chart": ["Horizont-Diagramm"], - "Horizon Charts": ["Horizontdiagramme"], - "Horizontal": ["Horizontal"], - "Horizontal (Top)": ["Horizontal (oben)"], - "Horizontal alignment": ["Horizontale Ausrichtung"], - "Host": ["Host"], - "Hostname or IP address": ["Hostname oder IP-Adresse"], - "Hour": ["Stunde"], - "Hours %s": ["Stunden %s"], - "Hours offset": ["Stunden-Versatz"], - "How do you want to enter service account credentials?": [ - "Wie möchten Sie die Anmeldeinformationen für das Dienstkonto eingeben?" + "Distribution": ["Verteilung"], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Gruppieren Sie Ihre Datenpunkte in Klassen, um zu sehen, wo die dichtesten Informationsbereiche liegen" ], - "How many buckets should the data be grouped in.": [ - "Anzahl Buckets, in die Daten gruppiert werden sollen." + "Population age data": ["Daten zum Bevölkerungsalter"], + "Contribution": ["Beitrag"], + "Compute the contribution to the total": [ + "Berechnen des Beitrags zur Gesamtsumme" ], - "How many periods into the future do we want to predict": [ - "Wie viele Perioden in der Zukunft sollen prognostiziert werden" + "Series Height": ["Zeitreihenhöhe"], + "Pixel height of each series": ["Pixelhöhe jeder Serie"], + "Value Domain": ["Wertebereich"], + "series": ["Zeitreihen"], + "overall": ["insgesamt"], + "change": ["ändern"], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "Serie: Behandeln Sie jede Serie unabhängig voneinander; insgesamt: Alle Zeitreihen verwenden den gleichen Maßstab; Änderung: Änderungen im Vergleich zum ersten Datenpunkt in jeder Datenreihe anzeigen" ], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "So zeigen Sie Zeitverschiebungen an: als einzelne Linien; als absolute Differenz zwischen der Hauptzeitreihe und jeder Zeitverschiebung; als prozentuale Veränderung; oder wenn sich das Verhältnis zwischen Reihe und Zeit verschiebt." + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Vergleicht, wie sich eine Metrik im Laufe der Zeit zwischen verschiedenen Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung im Laufe der Zeit werden als Balkenlängen und -farben visualisiert." ], - "Huge": ["Riesig"], - "ISO 3166-2 Codes": ["ISO-3166-2-Codes"], - "ISO 8601": ["ISO 8601"], - "Id": ["ID"], - "Id of root node of the tree.": ["ID des Stammknotens der Struktur."], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Für Presto oder Trino werden alle Abfragen in SQL Lab mit aktuell angemeldeter Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen muss. Für Hive und falls hive.server2.enable.doAs aktiviert sind, werden die Abfragen über das Service-Konto ausgeführt, die Identität der aktuell angemeldeten Benutzer*in jedoch über die hive.server2.proxy.user-Eigenschaft berücksichtigt." + "Horizon Chart": ["Horizont-Diagramm"], + "Dark Cyan": ["Dunkeltürkis"], + "Purple": ["Lila"], + "Gold": ["Gold"], + "Dim Gray": ["Dunkelgrau"], + "Crimson": ["Purpur"], + "Forest Green": ["Waldgrün"], + "Longitude": ["Längengrad"], + "Column containing longitude data": ["Spalte mit Längengraddaten"], + "Latitude": ["Breitengrad"], + "Column containing latitude data": ["Spalte mit Breitengraddaten"], + "Clustering Radius": ["Clustering-Radius"], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "Der Radius (in Pixel), den der Algorithmus zum Definieren eines Clusters verwendet. Wählen Sie 0, um das Clustering zu deaktivieren, aber beachten Sie, dass eine große Anzahl von Punkten (>1000) zu Verzögerungen führt." ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Für Presto werden alle Abfragen in SQL Lab als aktuell angemeldete Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen muss.
Für Hive und falls hive.server2.enable.doAs aktiviert sind, werden die Abfragen als Dienstkonto ausgeführt, die Identität der aktuell angemeldeten Benutzer*in erfolgt jedoch über die hive.server2.proxy.user-Eigenschaft." + "Points": ["Punkte"], + "Point Radius": ["Punktradius"], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Der Radius einzelner Punkte (die sich nicht in einem Cluster befinden). Entweder eine numerische Spalte oder \"Auto\", die den Punkt basierend auf dem größten Cluster skaliert" ], - "If Table Already Exists": ["Wenn Tabelle bereits vorhanden ist"], - "If a metric is specified, sorting will be done based on the metric value": [ - "Wenn eine Metrik angegeben wird, erfolgt die Sortierung basierend auf dem Metrikwert" + "Auto": ["Auto"], + "Point Radius Unit": ["Punktradius-Einheit"], + "Pixels": ["Pixel"], + "Miles": ["Meilen"], + "Kilometers": ["Kilometer"], + "The unit of measure for the specified point radius": [ + "Die Maßeinheit für den angegebenen Punktradius" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "Wenn doppelte Spalten nicht überschrieben werden, werden sie als \"X.1, X.2 ... X.x\" dargestellt" + "Labelling": ["Beschriftung"], + "label": ["Beschriftung"], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "'count' ist COUNT(*), wenn ein ‚GROUP BY’ verwendet wird. Numerische Spalten werden mit der Aggregatfunktion aggregiert. Nicht numerische Spalten werden verwendet, um Punkte zu beschriften. Falls leer, wird die Anzahl der Punkte in jedem Cluster zurückgegeben." ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Falls ausgewählt, legen Sie bitte die Schemata fest, die für den CSV-Upload in Extra zulässig sind." + "Cluster label aggregator": ["Cluster-Beschriftung-Aggregator"], + "sum": ["sum"], + "mean": ["Mittelwert"], + "max": ["Maximum"], + "std": ["Std"], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "Aggregatfunktion, die auf die Liste der Punkte in jedem Cluster angewendet wird, um die Clusterbezeichnung zu erstellen." ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "Wenn eine Tabelle vorhanden ist, soll folgendes passieren: Fehlschlagen (Nichts tun), Ersetzen (Tabelle löschen und neu erstellen) oder Anhängen (Daten einfügen)." + "Visual Tweaks": ["Visuelle Optimierungen"], + "Live render": ["Live-Darstellung"], + "Points and clusters will update as the viewport is being changed": [ + "Punkte und Cluster werden aktualisiert, wenn das Ansichtsfenster geändert wird" ], - "Ignore cache when generating screenshot": [ - "Cache beim Generieren eines Screenshots ignorieren" + "Map Style": ["Karten Stil"], + "Streets": ["Straßen"], + "Dark": ["Dunkel"], + "Light": ["Hell"], + "Satellite Streets": ["Satellit Straßen"], + "Satellite": ["Satellit"], + "Outdoors": ["Outdoor-Aktivitäten"], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Deckkraft"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [ + "Deckkraft aller Cluster, Punkte und Beschriftungen. Zwischen 0 und 1." ], - "Ignore null locations": ["Angesetzte (Null) Örtlichkeiten ignorieren"], - "Ignore time": ["Zeit ignorieren"], - "Image (PNG) embedded in email": ["Bild (PNG) in E-Mail eingebettet"], - "Image download failed, please refresh and try again.": [ - "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." + "RGB Color": ["RGB-Farbe"], + "The color for points and clusters in RGB": [ + "Die Farbe für Punkte und Cluster in RGB" ], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "Identität von angemeldeter Benutzer*in annehmen (Presto, Trino, Drill & Hive)" + "Viewport": ["Ansichtsfenster"], + "Default longitude": ["Standard-Längengrad"], + "Longitude of default viewport": [ + "Längengrad des Standardansichtfensters" ], - "Impersonate the logged on user": [ - "Identität von angemeldeter Benutzer*in annehmen" + "Default latitude": ["Standard Breitengrad"], + "Latitude of default viewport": [ + "Breitengrad des Standardansichtsfensters" ], - "Import": ["Importieren"], - "Import %s": ["Importiere %s"], - "Import Dashboard(s)": ["Dashboards importieren"], - "Import Dashboards": ["Dashboards importieren"], - "Import a table definition": ["Tabellendefinition importieren"], - "Import chart failed for an unknown reason": [ - "Fehler beim Importieren des Diagramms aus unbekanntem Grund" + "Zoom": ["Zoom"], + "Zoom level of the map": ["Zoomstufe der Karte"], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Ein oder mehrere Steuerelemente, nach denen gruppiert werden soll. Bei der Gruppierung müssen Breiten- und Längengradspalten vorhanden sein." ], - "Import charts": ["Diagramm importieren"], - "Import dashboard failed for an unknown reason": [ - "Import-Dashboard aus unbekanntem Grund fehlgeschlagen" + "Light mode": ["Heller Modus"], + "Dark mode": ["Dunkelmodus"], + "MapBox": ["MapBox"], + "Scatter": ["Streudiagramm"], + "Transformable": ["Transportierbar"], + "Significance Level": ["Signifikanzniveau"], + "Threshold alpha level for determining significance": [ + "Schwellenwert für Alpha-Level zur Bestimmung der Signifikanz" ], - "Import dashboards": ["Dashboards importieren"], - "Import database failed for an unknown reason": [ - "Fehler beim Importieren der Datenbank aus unbekanntem Grund" + "p-value precision": ["p-Wert-Präzision"], + "Number of decimal places with which to display p-values": [ + "Anzahl der Dezimalstellen, mit denen p-Werte angezeigt werden sollen" ], - "Import database from file": ["Datenbank aus Datei importieren"], - "Import dataset failed for an unknown reason": [ - "Fehler beim Importieren des Datasatzes aus unbekanntem Grund" + "Lift percent precision": ["Prozentuale Präzision erhöhen"], + "Number of decimal places with which to display lift values": [ + "Anzahl der Dezimalstellen, mit denen Hubwerte angezeigt werden sollen" ], - "Import datasets": ["Datensätze importieren"], - "Import queries": ["Abfragen importieren"], - "Import saved query failed for an unknown reason.": [ - "Der Import der gespeicherten Abfrage ist aus einem unbekannten Grund fehlgeschlagen." + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Tabelle, die gepaarte t-Tests visualisiert, die verwendet werden, um statistische Unterschiede zwischen Gruppen zu verstehen." ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ - "Wichtig! Wählen Sie diese Option, wenn die Tabelle nicht bereits nach Entitäts-ID sortiert ist, da sonst nicht garantiert ist, dass alle Ereignisse für jede Entität zurückgegeben werden." + "Paired t-test Table": ["Gepaarte t-Test-Tabelle"], + "Statistical": ["Statistisch"], + "Tabular": ["Tabellarisch"], + "Options": ["Optionen"], + "Data Table": ["Datentabelle"], + "Whether to display the interactive data table": [ + "Ob die interaktive Datentabelle angezeigt werden soll" ], - "In": ["in"], "Include Series": ["Zeitreihen einschließen"], - "Include a description that will be sent with your report": [ - "Fügen Sie eine Beschreibung hinzu, die mit Ihrem Bericht gesendet wird" - ], "Include series name as an axis": [ "Zeitreihennamen als Achse einschließen" ], - "Include time": ["Zeit einschließen"], - "Index": ["Index"], - "Index Column": ["Index Spalte"], - "Info": ["Info"], - "Inner Radius": ["Innenradius"], - "Inner radius of donut hole": ["Innerer Radius des Donutlochs"], - "Input field supports custom rotation. e.g. 30 for 30°": [ - "Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°" + "Ranking": ["Rangliste"], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Stellt die einzelnen Metriken für jede Zeile in den Daten vertikal dar und verknüpft sie als Linie miteinander. Dieses Diagramm ist nützlich, um mehrere Metriken in allen Stichproben oder Zeilen in den Daten zu vergleichen." ], - "Instant filtering": ["Sofortige Filterung"], - "Intensity": ["Intensität"], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ - "" + "Coordinates": ["Koordinaten"], + "Directional": ["Direktional"], + "Time Series Options": ["Zeitreihen-Optionen"], + "Not Time Series": ["Keine Zeitreihen"], + "Ignore time": ["Zeit ignorieren"], + "Time Series": ["Zeitreihen"], + "Standard time series": ["Standard-Zeitreihen"], + "Aggregate Mean": ["Aggregater Mittelwert"], + "Mean of values over specified period": [ + "Mittelwert der Werte über einen bestimmten Zeitraum" ], - "Interpret Datetime Format Automatically": [ - "Automatisches Interpretieren des Datumzeit-Formats" + "Aggregate Sum": ["Aggregierte Summe"], + "Sum of values over specified period": [ + "Summe der Werte über einen bestimmten Zeitraum" ], - "Interpret the datetime format automatically": [ - "Automatisches Interpretieren des Datumzeit-Formats" + "Metric change in value from `since` to `until`": [ + "Metrische Wertänderung von 'seit' zu 'bis'" ], - "Interval": ["Intervall"], - "Interval End column": ["Spalte \"Intervallende\""], - "Interval bounds": ["Intervallgrenzen"], - "Interval colors": ["Intervallfarben"], - "Interval start column": ["Spalte \"Intervallstart\""], - "Intervals": ["Intervalle"], - "Invalid JSON": ["Ungültiges JSON"], - "Invalid advanced data type: %(advanced_data_type)s": [ - "Ungültiger erweiterter Datentyp: %(advanced_data_type)s" + "Percent Change": ["Prozentuale Veränderung"], + "Metric percent change in value from `since` to `until`": [ + "Metrische prozentuale Wertänderung von \"seit\" zu \"bis\"" ], - "Invalid certificate": ["Ungültiges Zertifikat"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge lautet normalerweise:\n\"DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME\"" + "Factor": ["Faktor"], + "Metric factor change from `since` to `until`": [ + "Änderung des metrischen Faktors von \"seit\" zu \"bis\"" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ - "Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" + "Advanced Analytics": ["Erweiterte Analysen"], + "Use the Advanced Analytics options below": [ + "Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

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

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

" + "Settings for time series": ["Einstellungen für Zeitreihen"], + "Date Time Format": ["Datum-Zeit-Format"], + "Partition Limit": ["Partitionslimit"], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "Die maximale Anzahl von Unterteilungen jeder Gruppe; Niedrigere Werte werden zuerst ausgeblendet" ], - "Invalid cron expression": ["Ungültiger Cron-Ausdruck"], - "Invalid cumulative operator: %(operator)s": [ - "Ungültiger kumulativer Operator: %(operator)s" + "Partition Threshold": ["Partitionsschwellenwert"], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "Partitionen, deren Höhen- zu Elternhöhenverhältnissen unter diesem Wert liegen, werden ausgeblendet." ], - "Invalid date/timestamp format": ["Ungültiges Datums-/Zeitstempelformat"], - "Invalid filter configuration, please select a column": [ - "Ungültige Filterkonfiguration, bitte Spalte auswählen" + "Log Scale": ["Logarithmische Skala"], + "Use a log scale": ["Verwenden einer Logarithmischen Skala"], + "Equal Date Sizes": ["Gleiche Datumsgrößen"], + "Check to force date partitions to have the same height": [ + "Aktivieren, um zu erzwingen, dass Datumspartitionen die gleiche Höhe haben" ], - "Invalid filter operation type: %(op)s": [ - "Ungültiger Filtervorgangstyp: %(op)s" + "Rich Tooltip": ["Umfangreicher Tooltip"], + "The rich tooltip shows a list of all series for that point in time": [ + "Der umfangreiche Tooltip zeigt eine Liste aller Zeitreihen für diesen Zeitpunkt" ], - "Invalid geodetic string": ["Ungültige geodätische Zeichenfolge"], - "Invalid geohash string": ["Ungültige Geohash-Zeichenfolge"], - "Invalid input": ["Ungültige Eingabe"], - "Invalid lat/long configuration.": [ - "Ungültige Längen-/Breitengrad-Konfiguration." + "Rolling Window": ["Rollierendes Fenster"], + "Rolling Function": ["Rollierende Funktion"], + "cumsum": ["cumsum"], + "Min Periods": ["Mindestzeiträume"], + "Time Comparison": ["Zeitvergleich"], + "Time Shift": ["Zeitverschiebung"], + "1 week": ["1 Woche"], + "28 days": ["28 Tage"], + "30 days": ["30 Tage"], + "52 weeks": ["52 Wochen"], + "1 year": ["1 Jahr"], + "104 weeks": ["104 Wochen"], + "2 years": ["2 Jahre"], + "156 weeks": ["156 Wochen"], + "3 years": ["3 Jahre"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum. Erwartet relative Zeitintervalle in natürlicher, englischer Sprache (Beispiel: „24 hours“, „7 days“, „52 weeks“, „365 days“). Freitext wird unterstützt." ], - "Invalid longitude/latitude": ["Ungültiger Längen-/Breitengrad"], - "Invalid metric object: %(metric)s": [ - "Ungültiges Metrik-Objekt: %(metric)s" + "Actual Values": ["Istwerte"], + "1T": ["minütlich (1T)"], + "1H": ["stündlich (1H)"], + "1D": ["täglich (1D)"], + "7D": ["wöchentlich (7D)"], + "1M": ["monatlich (1M)"], + "1AS": ["jährlich zu Jahresbeginn (1AS)"], + "Method": ["Methode"], + "asfreq": ["asfreq"], + "bfill": ["Bfill"], + "ffill": ["ffill"], + "median": ["Median"], + "Part of a Whole": ["Teil eines Ganzen"], + "Compare the same summarized metric across multiple groups.": [ + "Vergleichen Sie dieselbe zusammengefasste Metrik über mehrere Gruppen hinweg." ], - "Invalid numpy function: %(operator)s": [ - "Ungültige Numpy-Funktion: %(operator)s" + "Partition Chart": ["Partitionsdiagramm"], + "Categorical": ["Kategorisch"], + "Use Area Proportions": ["Verwenden von Flächenproportionen"], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "Aktivieren, falls das Rose-Diagramm für die Proportionierung den Segmentbereich anstelle des Segmentradius verwenden soll." ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Ungültige Optionen für %(rolling_type)s: %(options)s" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Ein Polarkoordinatendiagramm, in dem der Kreis in Sektoren mit gleichem Winkel unterteilt ist und der Wert, der durch einen Sektor dargestellt wird, durch seine Fläche und nicht durch seinen Radius oder Sweep-Winkel veranschaulicht wird." ], - "Invalid permalink key": ["Ungültiger Permalink-Schlüssel"], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [ - "Ungültiger Ergebnistyp: %(result_type)s" + "Nightingale Rose Chart": ["Nightingale Rose Diagramm"], + "Advanced-Analytics": ["Erweiterte Analysen"], + "Multi-Layers": ["Mehr-Ebenen"], + "Source / Target": ["Quelle / Ziel"], + "Choose a source and a target": ["Wählen Sie eine Quelle und ein Ziel"], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Das Einschränken von Zeilen kann zu unvollständigen Daten und irreführenden Diagrammen führen. Erwägen Sie stattdessen, Quell-/Zielnamen zu filtern oder zu gruppieren." ], - "Invalid rolling_type: %(type)s": ["Ungültiger rolling_type: %(type)s"], - "Invalid spatial point encountered: %s": [ - "Ungültiger räumlicher Punkt: %s" + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Visualisiert den Fluss der Werte verschiedener Gruppen durch verschiedene Phasen eines Systems. Neue Stufen in der Pipeline werden als Knoten oder Layer visualisiert. Die Dicke der Balken oder Kanten stellt die Metrik dar, die visualisiert wird." ], - "Invalid state.": ["Ungültiger Zustand."], - "Invalid tab ids: %s(tab_ids)": ["Ungültige Tab-IDs: %s(tab_ids)"], - "Inverse selection": ["Auswahl umkehren"], - "Invert current page": ["Aktuelle Seite umkehren"], - "Is certified": ["Zertifiziert"], - "Is dimension": ["Ist Dimension"], - "Is false": ["Ist falsch"], - "Is favorite": ["Favoriten"], - "Is filterable": ["Ist filterbar"], - "Is not null": ["Ist nicht null"], - "Is null": ["Ist null"], - "Is tagged": ["Ist markiert"], - "Is temporal": ["Ist zeitlich"], - "Is true": ["Ist wahr"], - "Issue 1000 - The dataset is too large to query.": [ - "Problem 1000 - Die Datenquelle ist zu groß, um sie abzufragen." + "Demographics": ["Demographische Daten"], + "Survey Responses": ["Umfrage-Antworten"], + "Sankey Diagram": ["Sankey-Diagramm"], + "Percentages": ["Prozentwerte"], + "Sankey Diagram with Loops": ["Sankey-Diagramm mit Schleifen"], + "Country Field Type": ["Feldtyp \"Land\""], + "Full name": ["Vollständiger Name"], + "code International Olympic Committee (cioc)": [ + "Code Internationales Olympisches Komitee (CIOC)" ], - "Issue 1001 - The database is under an unusual load.": [ - "Problem 1001 - Die Datenbank ist ungewöhnlich belastet." + "code ISO 3166-1 alpha-2 (cca2)": ["Code ISO 3166-1 alpha-2 (cca2)"], + "code ISO 3166-1 alpha-3 (cca3)": ["Code ISO 3166-1 alpha-3 (cca3)"], + "The country code standard that Superset should expect to find in the [country] column": [ + "Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" ], - "It’s not recommended to truncate axis in Bar chart.": [ - "Es wird nicht empfohlen, die Achse im Balkendiagramm abzuschneiden." + "Show Bubbles": ["Blasen anzeigen"], + "Whether to display bubbles on top of countries": [ + "Ob Blasen über Ländern angezeigt werden sollen" ], - "JAN": ["JAN"], - "JSON": ["JSON"], - "JSON Metadata": ["JSON-Metadaten"], - "JSON metadata": ["JSON Metadaten"], - "JSON metadata is invalid!": ["JSON-Metadaten sind ungültig!"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "JSON-Zeichenfolge mit zusätzlicher Verbindungskonfiguration. Diese wird verwendet, um Verbindungsinformationen für Systeme wie Hive, Presto und BigQuery bereitzustellen, die nicht der syntax username:password entsprechen, welche normalerweise von SQLAlchemy verwendet wird." + "Max Bubble Size": ["Maximale Blasengröße"], + "Color by": ["Einfärben nach"], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Wählen Sie aus, ob ein Land anhand der Metrik eingefärbt oder eine Farbe basierend auf einer kategorialen Farbpalette zugewiesen werden soll." ], - "JUL": ["JUL"], - "JUN": ["JUN"], - "January": ["Januar"], - "JavaScript data interceptor": ["JavaScript-Daten-Interceptor"], - "JavaScript onClick href": ["JavaScript onClick href"], - "JavaScript tooltip generator": ["JavaScript-Tooltip-Generator"], - "Jinja templating": ["Jinja Vorlagen"], - "Json list of the column names that should be read": [ - "Json-Liste der Spaltennamen, die gelesen werden sollen" + "Country Column": ["Länderspalte"], + "3 letter code of the country": ["3-Buchstaben-Code des Landes"], + "Metric that defines the size of the bubble": [ + "Metrik, die die Größe der Blase definiert" ], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "JSON-Liste der Spaltennamen, die gelesen werden sollen. Wenn nicht ‚Keine‘, werden nur diese Spalten aus der Datei gelesen." + "Bubble Color": ["Blasenfarbe"], + "Country Color Scheme": ["Länderfarbschema"], + "A map of the world, that can indicate values in different countries.": [ + "Eine Weltkarte, die Werte in verschiedenen Ländern anzeigen kann." ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ - "Json-Liste der Werte, die als null behandelt werden sollen. Beispiele: [\"\"] für leere Zeichenketten, [\"Keine\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Hive-Datenbank unterstützt nur einen einzigen Wert" + "Multi-Dimensions": ["Multi-Dimensionen"], + "Multi-Variables": ["Multi-Variablen"], + "Popular": ["Beliebt"], + "deck.gl charts": ["Deck.gl - Diagramme"], + "Pick a set of deck.gl charts to layer on top of one another": [ + "Wählen Sie eine Reihe von deck.gl Diagrammen aus, die übereinander gelegt werden sollen" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "Json-Liste der Werte, die als NULL behandelt werden sollen. Beispiele: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Die Hive-Datenbank unterstützt nur einen einzelnen Wert. Verwenden Sie [\"\"] für die leere Zeichenfolge." + "Select charts": ["Diagramme auswählen"], + "Error while fetching charts": ["Fehler beim Abrufen von Diagrammen"], + "Compose multiple layers together to form complex visuals.": [ + "Stellen Sie mehrere Ebenen zusammen, um komplexe visuelle Elemente zu bilden." ], - "July": ["Juli"], - "June": ["Juni"], - "KPI": ["KPI"], - "Keep control settings?": ["Steuerelement-Einstellungen beibehalten?"], - "Keep editing": ["Weiter bearbeiten"], - "Key": ["Schlüssel"], - "Keys for table": ["Schlüssel für Tabelle"], - "Kilometers": ["Kilometer"], - "LIMIT": ["GRENZE"], - "Label": ["Label"], - "Label Line": ["Beschriftungslinie"], - "Label Type": ["Beschriftungstyp"], - "Label already exists": ["Label existiert bereits"], - "Label for your query": ["Bezeichnung für Ihre Anfrage"], - "Label position": ["Beschriftungsposition"], - "Label threshold": ["Beschriftungsschwellenwert"], - "Labelling": ["Beschriftung"], - "Labels": ["Beschriftungen"], - "Labels for the marker lines": ["Beschriftungen für die Markerlinien"], - "Labels for the markers": ["Beschriftungen für die Marker"], - "Labels for the ranges": ["Beschriftungen für Bereiche"], - "Large": ["Groß"], - "Last": ["Letzte"], - "Last Changed": ["Zuletzt geändert"], - "Last Modified": ["Zuletzt geändert"], - "Last Updated %s": ["Letzte Aktualisierung %s"], - "Last Updated %s by %s": ["Zuletzt aktualisiert %s von %s"], - "Last available value seen on %s": ["Letzter verfügbarer Wert auf %s"], - "Last modified": ["Zuletzt geändert"], - "Last modified by %s": ["Zuletzt geändert durch %s"], - "Last run": ["Letzte Ausführung"], - "Latitude": ["Breitengrad"], - "Latitude of default viewport": [ - "Breitengrad des Standardansichtsfensters" + "deck.gl Multiple Layers": ["Deck.gl - Mehrere Ebenen"], + "deckGL": ["deckGL"], + "Start (Longitude, Latitude): ": ["Start (Längengrad, Breitengrad): "], + "End (Longitude, Latitude): ": ["Ende (Längengrad, Breitengrad): "], + "Start Longitude & Latitude": ["Start Längengrad & Breitengrad"], + "Point to your spatial columns": [ + "Zeigen Sie auf Ihre räumlichen Spalten" ], - "Layer configuration": ["Ebenen-Konfiguration"], - "Layout": ["Layout"], - "Layout elements": ["Layout-Elemente"], - "Layout type of graph": ["Layouttyp des Diagramms"], - "Layout type of tree": ["Layouttyp des Baums"], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "Blattknoten, die weniger als diese Anzahl von Ereignissen darstellen, werden zunächst in der Visualisierung ausgeblendet." + "End Longitude & Latitude": ["Ende Längen- und Breitengrad"], + "Arc": ["Bogen"], + "Target Color": ["Zielfarbe"], + "Color of the target location": ["Farbe des Zielortes"], + "Categorical Color": ["Kategorien-Farbe"], + "Pick a dimension from which categorical colors are defined": [ + "Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden" ], - "Least recently modified": ["Zuletzt geändert"], - "Left": ["Links"], - "Left Axis Format": ["Format der linken Achse"], - "Left Axis chart(s)": ["Diagramm(e) der linken Achse"], - "Left Margin": ["Linker Abstand"], - "Left margin, in pixels, allowing for more room for axis labels": [ - "Linker Rand in Pixeln, um mehr Platz für Achsenbeschriftungen zu schaffen" + "Stroke Width": ["Strichstärke"], + "Advanced": ["Erweitert"], + "Plot the distance (like flight paths) between origin and destination.": [ + "Entfernung (wie Flugrouten) zwischen Abflug- und Zielort zeichen" ], - "Left to Right": ["Links nach rechts"], - "Left value": ["Linker Wert"], - "Legacy": ["Veraltet"], - "Legend": ["Legende"], - "Legend Format": ["Legendenformat"], - "Legend Orientation": ["Legenden-Ausrichtung"], - "Legend Position": ["Position der Legende"], - "Legend type": ["Legendentyp"], - "Less or equal (<=)": ["Kleiner oder gleich (<=)"], - "Less than (<)": ["Weniger als (<)"], - "Lift percent precision": ["Prozentuale Präzision erhöhen"], - "Light": ["Hell"], - "Light mode": ["Heller Modus"], - "Like": ["Wie (Like)"], - "Like (case insensitive)": [ - "Like (Groß-/Kleinschreibung wird nicht beachtet)" + "deck.gl Arc": ["Deck.gl - Bogen"], + "3D": ["3-täglich (3D)"], + "Web": ["Web"], + "Centroid (Longitude and Latitude): ": [ + "Schwerpunkt (Längen- und Breitengrad): " ], - "Limit reached": ["Limit erreicht"], - "Limit selector values": ["Auswahlwerte einschränken"], - "Limit type": ["Typ einschränken"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "Das Einschränken von Zeilen kann zu unvollständigen Daten und irreführenden Diagrammen führen. Erwägen Sie stattdessen, Quell-/Zielnamen zu filtern oder zu gruppieren." + "The function to use when aggregating points into groups": [ + "Die beim Aggregieren von Punkten in Gruppen zu verwendende Funktion" ], - "Limits the number of cells that get retrieved.": [ - "Begrenzt die Anzahl der Zeilen, die angezeigt werden." + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "Limits the number of rows that get displayed.": [ - "Begrenzt die Anzahl der Zeilen, die angezeigt werden." + "Weight": ["Gewicht"], + "Metric used as a weight for the grid's coloring": [ + "Metrik, die als Gewicht für die Färbung des Rasters verwendet wird" ], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "Begrenzt die Anzahl der Zeitreihen, die angezeigt werden. Eine Unterabfrage (oder eine zusätzliche Phase, falls Unterabfragen nicht unterstützt werden) wird angewendet, um die Anzahl der Zeitreihen zu begrenzen, die abgerufen und angezeigt werden. Diese Funktion ist nützlich, wenn Sie nach Dimension(en) mit hoher Kardinalität gruppieren, erhöht jedoch die Abfragekomplexität und -kosten." + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" ], - "Line": ["Linie"], - "Line Chart": ["Liniendiagramm"], - "Line Chart (legacy)": ["Liniendiagramm (Legacy)"], - "Line Style": ["Linien Stil"], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Liniendiagramm wird verwendet, um Messungen zu visualisieren, die über eine bestimmte Kategorie durchgeführt wurden. Liniendiagramm ist eine Art Diagramm, das Informationen als eine Reihe von Datenpunkten anzeigt, die durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender Diagrammtyp, der in vielen Bereichen üblich ist." + "Spatial": ["Raumbezug"], + "Experimental": ["Experimentell"], + "GeoJson Settings": ["GeoJson-Einstellungen"], + "Point Radius Scale": ["Punktradius Maßstab"], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "Der GeoJsonLayer nimmt GeoJSON-formatierte Daten auf und stellt sie als interaktive Polygone, Linien und Punkte (Kreise, Symbole und/oder Texte) dar." ], - "Line interpolation as defined by d3.js": [ - "Linieninterpolation gemäß d3.js" + "deck.gl Geojson": ["Deck.gl - GeoJSON"], + "Longitude and Latitude": ["Längen- und Breitengrad"], + "Height": ["Höhe"], + "Metric used to control height": ["Metrik zur Steuerung der Höhe"], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Visualisieren Sie Geodaten wie 3D-Gebäude, Landschaften oder Objekte in der Rasteransicht." ], - "Line width": ["Linienbreite"], - "Linear Color Scheme": ["Farbverlaufschema"], - "Linear color scheme": ["Farbverlaufschema"], - "Linear interpolation": ["Lineare Interpolation"], - "Lines column": ["Linien-Spalte"], - "Lines encoding": ["Zeilenkodierung"], - "Link Copied!": ["Link kopiert!"], - "List Saved Query": ["Gespeicherte Abfragen auflisten"], - "List Unique Values": ["Eindeutige Werte auflisten"], - "List of extra columns made available in JavaScript functions": [ - "Liste der zusätzlichen Spalten, die in JavaScript-Funktionen zur Verfügung gestellt werden" + "deck.gl Grid": ["Deck.gl - Raster"], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "List of n+1 values for bucketing metric into n buckets.": [ - "Liste der n+1-Werte für das Bucketing der Metrik in n Buckets." + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": ["Dynamische Aggregationsfunktion"], + "variance": ["Varianz"], + "deviation": ["Abweichung"], + "p1": ["P1"], + "p5": ["P5"], + "p95": ["P95"], + "p99": ["P99"], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Überlagert ein sechseckiges Raster auf einer Karte und aggregiert Daten innerhalb der Grenzen jeder Zelle." ], - "List of values to mark with lines": [ - "Liste der Werte, die mit Linien markiert werden sollen" + "deck.gl 3D Hexagon": ["Deck.gl - 3D Hexagon"], + "Polyline": ["Polylinie"], + "Visualizes connected points, which form a path, on a map.": [ + "Visualisiert verbundene Punkte, die einen Pfad bilden, auf einer Karte." ], - "List of values to mark with triangles": [ - "Liste der Werte, die mit Dreiecken markiert werden sollen" + "deck.gl Path": ["Deck.gl - Pfade"], + "name": ["Name"], + "Polygon Column": ["Polygon-Spalte"], + "Polygon Encoding": ["Polygon-Kodierung"], + "Elevation": ["Höhendaten"], + "Polygon Settings": ["Polygon-Einstellungen"], + "Opacity, expects values between 0 and 100": [ + "Deckkraft, erwartet Werte zwischen 0 und 100" ], - "List updated": ["Liste aktualisiert"], - "Live CSS editor": ["Live CSS Editor"], - "Live render": ["Live-Darstellung"], - "Load a CSS template": ["CSS Vorlage laden"], - "Loaded data cached": ["Geladene Daten zwischengespeichert"], - "Loaded from cache": ["Aus Zwischenspeicher geladen"], - "Loading": ["Lädt"], - "Loading...": ["Lade..."], - "Locate the chart": ["Suchen des Diagramms"], - "Log Scale": ["Logarithmische Skala"], - "Log retention": ["Protokollaufbewahrung"], - "Logarithmic axis": ["Logarithmische Achse"], - "Logarithmic scale on primary y-axis": [ - "Logarithmische Skala auf primärer y-Achse" + "Number of buckets to group data": [ + "Anzahl der Buckets zum Gruppieren von Daten" ], - "Logarithmic scale on secondary y-axis": [ - "Logarithmische Skala auf sekundärer y-Achse" + "How many buckets should the data be grouped in.": [ + "Anzahl Buckets, in die Daten gruppiert werden sollen." ], - "Logarithmic y-axis": ["Logarithmische y-Achse"], - "Login": ["Anmelden"], - "Login with": ["Anmelden mit"], - "Logout": ["Abmelden"], - "Logs": ["Protokolle"], - "Long dashed": ["Lange gestrichelt"], - "Longitude": ["Längengrad"], - "Longitude & Latitude": ["Längen- und Breitengrad"], - "Longitude & Latitude columns": ["Längen- und Breitengradspalten"], - "Longitude and Latitude": ["Längen- und Breitengrad"], - "Longitude of default viewport": [ - "Längengrad des Standardansichtfensters" + "Bucket break points": ["Klassen-Schwellwerte"], + "List of n+1 values for bucketing metric into n buckets.": [ + "Liste der n+1-Werte für das Bucketing der Metrik in n Buckets." ], - "MAR": ["MÄR"], - "MAY": ["MAI"], - "MON": ["MO"], - "Main Datetime Column": ["Haupt-Datums/Zeit-Spalte"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ - "Stellen Sie sicher, dass die Steuerelemente ordnungsgemäß konfiguriert sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." + "Emit Filter Events": ["Filterereignisse ausgeben"], + "Whether to apply filter when items are clicked": [ + "Ob Filter angewendet werden soll, wenn auf Elemente geklickt wird" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Fehlerhafte Anforderung. slice_id oder table_name und db_name Argumente werden erwartet" + "Multiple filtering": ["Mehrfachfilterung"], + "Allow sending multiple polygons as a filter event": [ + "Senden mehrerer Polygone als Filterereignis zulassen" ], - "Manage": ["Verwalten"], - "Manage email report": ["E-Mail-Bericht verwalten"], - "Manage your databases": ["Verwalten Sie Ihre Datenbanken"], - "Mandatory": ["Notwendig"], - "Manually set min/max values for the y-axis.": [ - "Min/Max-Werte für die y-Achse manuell festlegen." + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Visualisiert geografische Gebiete aus Ihren Daten als Polygone auf einer von Mapbox gerenderten Karte. Polygone können mithilfe einer Metrik eingefärbt werden." ], - "Map": ["Karte"], - "Map Style": ["Karten Stil"], - "MapBox": ["MapBox"], - "Mapbox": ["Mapbox"], - "March": ["März"], - "Margin": ["Rand"], - "Mark a column as temporal in \"Edit datasource\" modal": [ - "Markieren einer Spalte als temporär im Modal \"Datenquelle bearbeiten\"" + "deck.gl Polygon": ["Deck.gl - Polygon"], + "Category": ["Kategorie"], + "Point Size": ["Punktgröße"], + "Point Unit": ["Punkteinheit"], + "Square meters": ["Quadratmeter"], + "Square kilometers": ["Quadratkilometern"], + "Square miles": ["Quadratmeilen"], + "Radius in meters": ["Radius in Metern"], + "Radius in kilometers": ["Radius in Kilometern"], + "Radius in miles": ["Radius in Meilen"], + "Minimum Radius": ["Minimaler Radius"], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Mindestradius des Kreises in Pixel. Wenn sich die Zoomstufe ändert, wird sichergestellt, dass der Kreis diesen Mindestradius einhält." ], - "Marker": ["Marker"], - "Marker Size": ["Markergröße"], - "Marker labels": ["Markierungsbeschriftungen"], - "Marker line labels": ["Markierungslinienbeschriftungen"], - "Marker lines": ["Markierungslinien"], - "Marker size": ["Markergröße"], - "Markers": ["Marker"], - "Markup type": ["Markup-Typ"], - "Max": ["Max"], - "Max Bubble Size": ["Maximale Blasengröße"], - "Max Events": ["Maximale Anzahl von Ereignissen"], - "Maximum": ["Maximum"], - "Maximum Font Size": ["Maximale Schriftgrösse"], "Maximum Radius": ["Maximaler Radius"], "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "Maximale Radiusgröße des Kreises in Pixel. Wenn sich die Zoomstufe ändert, wird sichergestellt, dass der Kreis diesen maximalen Radius einhält." ], - "Maximum value": ["Maximalwert"], - "Maximum value on the gauge axis": [ - "Maximalwert auf der Messgerät-Skala" + "Point Color": ["Punktfarbe"], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Eine Karte, die Kreise mit einem variablen Radius bei Breiten-/Längengrad-Koordinaten darstellt" ], - "May": ["Mai"], - "Mean of values over specified period": [ - "Mittelwert der Werte über einen bestimmten Zeitraum" + "deck.gl Scatterplot": ["deck.gl Streudiagramm"], + "Grid": ["Raster"], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Aggregiert Daten innerhalb der Grenzen von Rasterzellen und ordnet die aggregierten Werte einer dynamischen Farbskala zu" ], - "Mean values": ["Mittelwerte"], - "Median": ["Median"], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ - "Mittlere Kantenbreite, die dickste Kante ist 4-mal dicker als die dünnste." + "deck.gl Screen Grid": ["Deck.gl - Bildschirmraster"], + "For more information about objects are in context in the scope of this function, refer to the": [ + "Weitere Informationen zu Objekten im Kontext dieser Funktion finden Sie im Abschnitt" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ - "Mittlere Knotengröße, der größte Knoten ist 4-mal größer als der kleinste" + " source code of Superset's sandboxed parser": [ + " Quellcode des Sandbox-Parsers von Superset" ], - "Median values": ["Medianwerte"], - "Medium": ["Mittel"], - "Menu actions trigger": ["Auslöser von Menüaktionen"], - "Message content": ["Nachrichteninhalt"], - "Metadata": ["Metadaten"], - "Metadata Parameters": ["Metadaten Parameter"], - "Metadata has been synced": ["Metadaten wurden synchronisiert"], - "Method": ["Methode"], - "Metric": ["Metrik"], - "Metric '%(metric)s' does not exist": [ - "Metrik '%(metric)s' existiert nicht" + "This functionality is disabled in your environment for security reasons.": [ + "Diese Funktion ist in Ihrer Umgebung aus Sicherheitsgründen deaktiviert." ], - "Metric ascending": ["Metrik aufsteigend"], - "Metric assigned to the [X] axis": [ - "Metrik, die der [X]-Achse zugewiesen ist" + "Ignore null locations": ["Angesetzte (Null) Örtlichkeiten ignorieren"], + "Whether to ignore locations that are null": [ + "Ob Örtlichkeiten ignoriert werden sollen, die null sind" ], - "Metric assigned to the [Y] axis": [ - "Metrik, die der [Y]-Achse zugewiesen ist" + "Auto Zoom": ["Auto-Zoom"], + "When checked, the map will zoom to your data after each query": [ + "Wenn diese Option aktiviert ist, zoomt die Karte nach jeder Abfrage auf Ihre Daten" ], - "Metric change in value from `since` to `until`": [ - "Metrische Wertänderung von 'seit' zu 'bis'" + "Select a dimension": ["Wählen Sie eine Dimension"], + "Extra data for JS": ["Zusätzliche Daten für JS"], + "List of extra columns made available in JavaScript functions": [ + "Liste der zusätzlichen Spalten, die in JavaScript-Funktionen zur Verfügung gestellt werden" ], - "Metric descending": ["Metrik absteigend"], - "Metric factor change from `since` to `until`": [ - "Änderung des metrischen Faktors von \"seit\" zu \"bis\"" + "JavaScript data interceptor": ["JavaScript-Daten-Interceptor"], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Definieren Sie eine JavaScript-Funktion, die das in der Visualisierung verwendete Daten-Array empfängt und eine geänderte Version dieses Arrays zurückgibt. Dies kann verwendet werden, um Eigenschaften der Daten zu ändern, zu filtern oder das Array anzureichern." ], - "Metric for node values": ["Metrik für Knotenwerte"], - "Metric name": ["Name der Metrik"], - "Metric name [%s] is duplicated": ["Metrikname [%s] wird dupliziert"], - "Metric percent change in value from `since` to `until`": [ - "Metrische prozentuale Wertänderung von \"seit\" zu \"bis\"" + "JavaScript tooltip generator": ["JavaScript-Tooltip-Generator"], + "Define a function that receives the input and outputs the content for a tooltip": [ + "Definieren Sie eine Funktion, die die Eingabe empfängt und den Inhalt für einen Tooltip ausgibt" ], - "Metric that defines the size of the bubble": [ - "Metrik, die die Größe der Blase definiert" + "JavaScript onClick href": ["JavaScript onClick href"], + "Define a function that returns a URL to navigate to when user clicks": [ + "Definieren Sie eine Funktion, die eine URL zurückgibt, zu der navigiert wird, wenn der/die Benutzer*in klickt" ], - "Metric to display bottom title": [ - "Metrik zur Anzeige des unteren Titels" + "Legend Format": ["Legendenformat"], + "Choose the format for legend values": [ + "Format für Legendenwerte auswählen" ], - "Metric to sort the results by": [ - "Metrik zum Sortieren der Ergebnisse nach" + "Legend Position": ["Position der Legende"], + "Choose the position of the legend": [ + "Wählen Sie die Position der Legende" ], - "Metric used as a weight for the grid's coloring": [ - "Metrik, die als Gewicht für die Färbung des Rasters verwendet wird" + "Top left": ["Oben links"], + "Top right": ["Oben rechts"], + "Bottom left": ["Unten links"], + "Bottom right": ["Unten rechts"], + "Lines column": ["Linien-Spalte"], + "The database columns that contains lines information": [ + "Die Datenbankspalten, die Zeileninformationen enthalten" ], - "Metric used to calculate bubble size": [ - "Metrik zur Berechnung der Blasengröße" + "Line width": ["Linienbreite"], + "The width of the lines": ["Die Breite der Linien"], + "Fill Color": ["Füllfarbe"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + " Setzen Sie die Deckkraft auf 0, wenn Sie die im GeoJSON angegebene Farbe nicht überschreiben möchten." ], - "Metric used to control height": ["Metrik zur Steuerung der Höhe"], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Metrik, die verwendet wird, um zu definieren, wie die obersten Zeitreihen sortiert werden, wenn ein Zeitreihen- oder ein Zellen-Limit vorhanden ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls zutreffend)." + "Stroke Color": ["Strichfarbe"], + "Filled": ["Gefüllt"], + "Whether to fill the objects": ["Ob die Objekte gefüllt werden sollen"], + "Stroked": ["Gestrichelt"], + "Whether to display the stroke": [ + "Ob der Strich dargestellt werden soll" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Metrik, die verwendet wird, um zu definieren, wie die obersten Reihen sortiert werden, wenn eine Reihen- oder Zeilenbegrenzung vorhanden ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls zutreffend)." + "Extruded": ["extrudiert"], + "Whether to make the grid 3D": [ + "Ob das Raster in 3D umgewandelt werden soll" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Metrik, die verwendet wird, um das Limit zu ordnen, wenn ein Zeitreihenlimit vorhanden ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls geeignet)." + "Grid Size": ["Rastergröße"], + "Defines the grid size in pixels": ["Gibt die Rastergröße in Pixel an"], + "Parameters related to the view and perspective on the map": [ + "Parameter in Bezug auf die Ansicht und Perspektive auf der Karte" ], - "Metrics": ["Metriken"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ - "Metriken, für die ein Prozentsatz der Gesamtsumme angezeigt werden soll. Berechnet nur aus Daten innerhalb des Zeilenlimits." + "Longitude & Latitude": ["Längen- und Breitengrad"], + "Fixed point radius": ["Fester Punktradius"], + "Multiplier": ["Multiplikator"], + "Factor to multiply the metric by": [ + "Faktor, mit dem die Metrik multipliziert wird" ], - "Middle": ["Mitte"], - "Midnight": ["Mitternacht"], - "Miles": ["Meilen"], - "Min": ["Min"], - "Min Periods": ["Mindestzeiträume"], - "Min Width": ["Min. Breite"], - "Min periods": ["Mindestzeiträume"], - "Min/max (no outliers)": ["Min/Max (keine Ausreißer)"], - "Mine": ["Meine"], - "Minimum": ["Minimum"], - "Minimum Font Size": ["Minimale Schriftgröße"], - "Minimum Radius": ["Minimaler Radius"], - "Minimum leaf node event count": [ - "Minimale Anzahl der Blattknotenereignisse" + "Lines encoding": ["Zeilenkodierung"], + "The encoding format of the lines": ["Das Kodierungsformat der Zeilen"], + "geohash (square)": ["Geohash (quadratisch)"], + "Reverse Lat & Long": ["Länge/Breite vertauschen "], + "GeoJson Column": ["GeoJson-Spalte"], + "Select the geojson column": ["Wählen Sie die GeoJSON-Spalte aus"], + "Right Axis Format": ["Format der rechten Achse"], + "Show Markers": ["Markierungen anzeigen"], + "Show data points as circle markers on the lines": [ + "Datenpunkte als Kreismarkierungen auf den Linien darstellen" ], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ - "Mindestradius des Kreises in Pixel. Wenn sich die Zoomstufe ändert, wird sichergestellt, dass der Kreis diesen Mindestradius einhält." + "Y bounds": ["Y-Grenzen"], + "Whether to display the min and max values of the Y-axis": [ + "Ob die Min- und Max-Werte der Y-Achse angezeigt werden sollen" ], - "Minimum threshold in percentage points for showing labels.": [ - "Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen." + "Y 2 bounds": ["Y 2 Grenzen"], + "Line Style": ["Linien Stil"], + "linear": ["linear"], + "basis": ["basis"], + "cardinal": ["Kardinal"], + "monotone": ["monoton"], + "step-before": ["step-before"], + "step-after": ["step-after"], + "Line interpolation as defined by d3.js": [ + "Linieninterpolation gemäß d3.js" ], - "Minimum value": ["Minimalwert"], - "Minimum value for label to be displayed on graph.": [ - "Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll." + "Show Range Filter": ["Bereichsfilter anzeigen"], + "Whether to display the time range interactive selector": [ + "Ob die interaktive Zeitbereichs-Auswahl angezeigt werden soll" ], - "Minimum value on the gauge axis": [ - "Minimalwert auf der Messgerät-Skala" + "Extra Controls": ["Zusätzliche Bedienelemente"], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Ob zusätzliche Steuerelemente angezeigt werden sollen oder nicht. Zu den zusätzlichen Steuerelementen gehören Elemente wie das gestapelt oder nebeneinander Erstellen von Multi-Bar-Diagrammen." ], - "Minor Split Line": ["Kleine geteilte Linie"], - "Minute": ["Minute"], - "Minutes %s": ["Minuten %s"], - "Missing URL parameters": ["Fehlende URL-Parameter"], - "Missing dataset": ["Fehlender Datensatz"], - "Mixed Chart": ["Gemischtes Diagramm"], - "Mixed Time-Series": ["Gemischte Zeitreihen"], - "Modified": ["Geändert"], - "Modified %s": ["Geändert %s"], - "Modified by": ["Geändert durch"], - "Modified columns: %s": ["Geänderte Spalten: %s"], - "Monday": ["Montag"], - "Month": ["Monat"], - "Months %s": ["Monate %s"], - "More": ["Mehr"], - "More filters": ["Weitere Filter"], - "Move only": ["Nur verschieben"], - "Moves the given set of dates by a specified interval.": [ - "Verschiebt den angegebenen Satz von Datumsangaben um ein angegebenes Intervall." + "X Tick Layout": ["X Tick Layout"], + "flat": ["flach"], + "staggered": ["gestaffelt"], + "The way the ticks are laid out on the X-axis": [ + "Die Art und Weise, wie die Ticks auf der X-Achse angeordnet sind" ], - "Multi-Dimensions": ["Multi-Dimensionen"], - "Multi-Layers": ["Mehr-Ebenen"], - "Multi-Levels": ["Mehrstufige"], - "Multi-Variables": ["Multi-Variablen"], - "Multiple": ["Mehrfach"], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "Unterschiedliche Dateierweiterungen sind für spaltenförmige Uploads nicht zulässig. Bitte stellen Sie sicher, dass alle Dateien die gleiche Erweiterung haben." + "X Axis Format": ["X-Achsen-Format"], + "Y Log Scale": ["Y-Log-Skala"], + "Use a log scale for the Y-axis": [ + "Logarithmische Skala für die Y-Achse verwenden" ], - "Multiple filtering": ["Mehrfachfilterung"], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "Mehrere Formate akzeptiert, recherchieren Sie in der geopy.points Python-Bibliothek nach weiteren Details" + "Y Axis Bounds": ["Grenzen der Y-Achse"], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den Umfang der Daten nicht einschränken." ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "Mehrfachauswahl zulässig, andernfalls ist der Filter auf einen einzelnen Wert beschränkt" + "Y Axis 2 Bounds": ["Grenzen der Y-Achse 2"], + "X bounds": ["X-Grenzen"], + "Whether to display the min and max values of the X-axis": [ + "Ob die Min- und Max-Werte der X-Achse angezeigt werden sollen" ], - "Multiplier": ["Multiplikator"], - "Must be unique": ["Muss eindeutig sein"], - "Must choose either a chart or a dashboard": [ - "Sie müssen entweder ein Diagramm oder ein Dashboard auswählen" + "Bar Values": ["Balkenwerte"], + "Show the value on top of the bar": [ + "Anzeigen des Werts oben auf der Leiste" ], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Muss eine Spalte [Gruppieren nach] haben, um 'count' als [Label] zu verwenden" + "Stacked Bars": ["Gestapelte Balken"], + "Reduce X ticks": ["Reduzieren Sie X Ticks"], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Reduziert die Anzahl der darzustellenden X-Achsen-Ticks. Wenn WAHR, läuft die x-Achse nicht über und Beschriftungen fehlen möglicherweise. Wenn FALSCH, wird eine Mindestbreite auf Spalten angewendet und die Breite kann in einen horizontalen Bildlauf überlaufen." ], - "Must have at least one numeric column specified": [ - "Mindestens eine numerische Spalte erforderlich" + "You cannot use 45° tick layout along with the time range filter": [ + "Sie können das 45°-Strich-Layout nicht zusammen mit dem Zeitbereichsfilter verwenden" ], - "Must provide credentials for the SSH Tunnel": [ - "Anmeldeinformationen für den SSH-Tunnel sind verpflichtend" + "Stacked Style": ["Gestapelter Stil"], + "stack": ["Stack"], + "stream": ["Stream"], + "expand": ["aufklappen"], + "Evolution": ["Entwicklung"], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Ein Zeitreihendiagramm, das visualisiert, wie sich eine verwandte Metrik aus mehreren Gruppen im Laufe der Zeit ändert. Jede Gruppe wird mit einer anderen Farbe visualisiert." ], - "Must specify a value for filters with comparison operators": [ - "Muss einen Wert für Filter mit Vergleichsoperatoren angeben" + "Stretched style": ["Gestreckter Stil"], + "Stacked style": ["Gestapelter Stil"], + "Video game consoles": ["Videospielkonsolen"], + "Vehicle Types": ["Fahrzeugtypen"], + "Area Chart (legacy)": ["Flächendiagramm (Legacy)"], + "Continuous": ["Kontinuierlich"], + "Line": ["Linie"], + "nvd3": ["nvd3"], + "Deprecated": ["Veraltet"], + "Series Limit Sort By": ["Zeitreihenlimit Sortieren nach"], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Metrik, die verwendet wird, um das Limit zu ordnen, wenn ein Zeitreihenlimit vorhanden ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls geeignet)." ], - "My beautiful colors": ["Meine schönen Farben"], - "My column": ["Meine Spalte"], - "My metric": ["Meine Metrik"], - "N/A": ["k.A."], - "NOT GROUPED BY": ["NICHT GRUPPIERT NACH"], - "NOV": ["NOV"], - "NOW": ["JETZT"], - "NUMERIC": ["NUMERISCH"], - "Name": ["Name"], - "Name is required": ["Name ist erforderlich"], - "Name must be unique": ["Name muss eindeutig sein"], - "Name of table to be created from columnar data.": [ - "Name der Tabelle, die aus tabellarischen Daten erstellt werden soll." - ], - "Name of table to be created from excel data.": [ - "Name der Tabelle, die aus Excel-Daten erstellt werden soll." + "Series Limit Sort Descending": ["Zeitreihenlimit absteigend sortieren"], + "Whether to sort descending or ascending if a series limit is present": [ + "Ob absteigend oder aufsteigend sortiert werden soll, wenn ein Reihengrenzwert vorhanden ist" ], - "Name of table to be created with CSV file": [ - "Name der Tabelle, die aus CSV-Daten erstellt werden soll" + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Visualisieren Sie mithilfe von Balken, wie sich eine Metrik im Laufe der Zeit ändert. Fügen Sie eine Gruppe nach Spalte hinzu, um Metriken auf Gruppenebene und deren Änderung im Laufe der Zeit zu visualisieren." ], - "Name of the column containing the id of the parent node": [ - "Name der Spalte, die die ID des übergeordneten Knotens enthält" + "Time-series Bar Chart (legacy)": ["Zeitreihen-Balkendiagramm (Legacy)"], + "Bar": ["Balken"], + "Vertical": ["Vertikal"], + "Box Plot": ["Boxplot"], + "X Log Scale": ["X-Log-Skala"], + "Use a log scale for the X-axis": [ + "Logarithmische Skala für die X-Achse verwenden" ], - "Name of the id column": ["Name der ID-Spalte"], - "Name of the source nodes": ["Name der Quellknoten"], - "Name of the table that exists in the source database": [ - "Name der Tabelle in der Quell-Datenbank" + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Visualisiert eine Metrik über drei Datendimensionen in einem einzelnen Diagramm (X-Achse, Y-Achse und Blasengröße). Blasen aus derselben Gruppe können mit Blasenfarbe präsentiert werden." ], - "Name of the target nodes": ["Name der Zielknoten"], - "Name your database": ["Benennen der Datenbank"], - "Need help? Learn how to connect your database": [ - "Benötigen Sie Hilfe? Erfahren Sie, wie Sie Ihre Datenbank verbinden" + "Ranges": ["Bereiche"], + "Ranges to highlight with shading": [ + "Bereiche, die mit Schattierung hervorgehoben werden sollen" ], - "Need help? Learn more about": [ - "Benötigen Sie Hilfe? Erfahren Sie mehr über" + "Range labels": ["Bereichsbeschriftungen"], + "Labels for the ranges": ["Beschriftungen für Bereiche"], + "Markers": ["Marker"], + "List of values to mark with triangles": [ + "Liste der Werte, die mit Dreiecken markiert werden sollen" ], - "Network error": ["Netzwerkfehler"], - "Network error.": ["Netzwerk-Fehler."], - "New chart": ["Neues Diagramm"], - "New columns added: %s": ["Neue Spalten hinzugefügt: %s"], - "New dataset": ["Neuer Datensatz"], - "New dataset name": ["Name des neuen Datensatzes"], - "New filter set": ["Neue Filtergruppe"], - "New header": ["Neue Überschrift"], - "New tab": ["Neuer Tab"], - "New tab (Ctrl + q)": ["Neue Registerkarte (Strg + q)"], - "New tab (Ctrl + t)": ["Neue Registerkarte (Strg + t)"], - "Next": ["Weiter"], - "Nightingale Rose Chart": ["Nightingale Rose Diagramm"], - "No": ["Nein"], - "No %s yet": ["Noch keine %s"], - "No Access!": ["Keine Zugriff!"], - "No Data": ["Keine Daten"], - "No Results": ["Keine Ergebnisse"], - "No annotation layers": ["Keine Anmerkungs-Layer"], - "No annotation layers yet": ["Noch keine Anmerkungsebenen"], - "No annotation yet": ["Noch keinen Anmerkungen"], - "No applied filters": ["Keine angewendete Filter"], - "No available filters.": ["Keine Filter verfügbar."], - "No charts": ["Keine Diagramme"], - "No charts yet": ["Noch keine Diagramme"], - "No columns": ["Keine Spalten"], - "No columns found": ["Keine Spalten gefunden"], - "No compatible columns found": ["Keine kompatiblen Quellen gefunden"], - "No compatible datasets found": ["Keine kompatiblen Datensätze gefunden"], - "No compatible schema found": ["Kein kompatibles Schema gefunden"], - "No dashboards": ["Keine Dashboards"], - "No dashboards yet": ["Noch keine Dashboards"], - "No data": ["Keine Daten"], - "No data after filtering or data is NULL for the latest time record": [ - "Keine Daten nach dem Filtern oder Daten sind NULL für den letzten Zeitdatensatz" + "Marker labels": ["Markierungsbeschriftungen"], + "Labels for the markers": ["Beschriftungen für die Marker"], + "Marker lines": ["Markierungslinien"], + "List of values to mark with lines": [ + "Liste der Werte, die mit Linien markiert werden sollen" ], - "No data in file": ["Keine Daten in Datei"], - "No database tables found": ["Keine Datenbanktabellen gefunden"], - "No databases match your search": [ - "Keine Datenbanken stimmen mit Ihrer Suche überein" + "Marker line labels": ["Markierungslinienbeschriftungen"], + "Labels for the marker lines": ["Beschriftungen für die Markerlinien"], + "KPI": ["KPI"], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Zeigt den Fortschritt einer einzelnen Metrik gegenüber einem bestimmten Ziel. Je höher die Füllung, desto näher ist die Metrik am Ziel." ], - "No description available.": ["Keine Beschreibung verfügbar."], - "No favorite charts yet, go click on stars!": [ - "Noch keine Lieblingsdashboards, klicken Sie auf die Sterne!" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Visualisiert viele verschiedene Zeitreihenobjekte in einem einzigen Diagramm. Dieses Diagramm ist überholt, und wir empfehlen, stattdessen das Zeitreihendiagramm zu verwenden." ], - "No favorite dashboards yet, go click on stars!": [ - "Noch keine Lieblingsdashboards, klicken Sie auf die Sterne!" + "Time-series Percent Change": ["Zeitreihen - Prozentuale Veränderung"], + "Sort Bars": ["Balken sortieren"], + "Sort bars by x labels.": ["Sortieren Sie Balken nach x-Beschriftungen."], + "Breakdowns": ["Aufschlüsselungen"], + "Defines how each series is broken down": [ + "Definiert, wie jede Reihe aufgeschlüsselt wird" ], - "No filter": ["Kein Filter"], - "No filter is selected.": ["Kein Filter ausgewählt."], - "No filters": ["Keine Filter"], - "No filters are currently added to this dashboard.": [ - "Bisher wurden diesem Dashboard noch keine Filter hinzugefügt." + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Vergleicht Metriken aus verschiedenen Kategorien mithilfe von Balken. Balkenlängen werden verwendet, um die Größe jedes Werts anzugeben, und Farbe wird verwendet, um Gruppen zu unterscheiden." ], - "No form settings were maintained": [ - "Es wurden keine Formulareinstellungen beibehalten" + "Bar Chart (legacy)": ["Balkendiagramm (Legacy)"], + "Additive": ["Additiv"], + "Discrete": ["Diskret"], + "Propagate": ["Propagieren"], + "Send range filter events to other charts": [ + "Bereichsfilter-Ereignisse an andere Diagramme senden" ], - "No global filters are currently added": [ - "Derzeit sind keine globalen Filter gesetzt" + "Classic chart that visualizes how metrics change over time.": [ + "Klassisches Diagramm, das visualisiert, wie sich Metriken im Laufe der Zeit ändern." ], - "No matching records found": ["Keine passenden Einträge gefunden"], - "No of Bins": ["Anzahl der Bis"], - "No recents yet": ["Noch keine aktuellen"], - "No records found": ["Keine Datensätze gefunden"], - "No results": ["Keine Ergebnisse"], - "No results found": ["Keine Ergebnisse gefunden"], - "No results match your filter criteria": [ - "Keine Ergebnisse entsprechen Ihren Filterkriterien" + "Battery level over time": ["Akkustand im Laufe der Zeit"], + "Line Chart (legacy)": ["Liniendiagramm (Legacy)"], + "Label Type": ["Beschriftungstyp"], + "Category Name": ["Kategoriename"], + "Value": ["Wert"], + "Percentage": ["Prozentsatz"], + "Category and Value": ["Kategorie und Wert"], + "Category and Percentage": ["Kategorie und Prozentsatz"], + "Category, Value and Percentage": ["Kategorie, Wert und Prozentsatz"], + "What should be shown on the label?": [ + "Was sollte als Beschriftung angezeigt werden?" ], - "No results were returned for this query": [ - "Für diese Abfrage wurden keine Ergebnisse zurückgegeben" + "Donut": ["Donut"], + "Do you want a donut or a pie?": ["Donut oder Torten-Diagramm?"], + "Show Labels": ["Beschriftung anzeigen"], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Ob die Beschriftungen angezeigt werden sollen. Beachten Sie, dass die Beschriftung nur angezeigt wird, wenn der Schwellenwert von 5 % erreicht ist." ], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ - "Für diese Abfrage wurden keine Ergebnisse zurückgegeben. Wenn Sie erwartet haben, dass Ergebnisse zurückgegeben werden, stellen Sie sicher, dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." + "Put labels outside": ["Beschriftung außerhalb darstellen"], + "Put the labels outside the pie?": [ + "Beschriftungen außerhalb des Kuchens anordnen?" ], - "No rows were returned for this dataset": [ - "Für diesen Datensatz wurden keine Zeilen zurückgegeben" + "Frequency": ["Häufigkeit"], + "Year (freq=AS)": ["Jahr (freq=AS)"], + "52 weeks starting Monday (freq=52W-MON)": [ + "52 Wochen, beginnend am Montag (freq=52W-MON)" ], - "No samples were returned for this dataset": [ - "Für diesen Dataensatz wurden keine Beispiele zurückgegeben" + "1 week starting Sunday (freq=W-SUN)": [ + "1 Woche beginnend am Sonntag (freq=W-SUN)" ], - "No saved expressions found": ["Keine gespeicherten Ausdrücke gefunden"], - "No saved metrics found": ["Keine gespeicherten Metriken gefunden"], - "No saved queries yet": ["Noch keine gespeicherten Abfragen"], - "No stored results found, you need to re-run your query": [ - "Keine gespeicherten Ergebnisse gefunden. Sie müssen Ihre Abfrage erneut ausführen" + "1 week starting Monday (freq=W-MON)": [ + "1 Woche beginnend am Montag (freq=W-MON)" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Eine solche Spalte wurde nicht gefunden. Um nach einer Metrik zu filtern, versuchen Sie es mit der Registerkarte Benutzerdefinierte SQL." + "Day (freq=D)": ["Tag (freq=D)"], + "4 weeks (freq=4W-MON)": ["4 Wochen (freq=4W-MON)"], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Die Periodizität, über die die Zeit pilotiert werden soll. Benutzer können\n ein“ Pandas\" Offset-Alias angeben.\n Klicken Sie auf die Infoblase, um weitere Informationen zu akzeptierten \"freq\"-Ausdrücken zu erhalten." ], - "No table columns": ["Keine Tabellenspalten"], - "No temporal columns found": ["Keine Zeitspalten gefunden"], - "No time columns": ["Nicht-Zeitspalten"], - "No validator found (configured for the engine)": [ - "Kein Validator gefunden (für das Modul konfiguriert)" + "Time-series Period Pivot": ["Zeitreihen - Perioden-Pivot"], + "Formula": ["Formel"], + "Event": ["Ereignis"], + "Interval": ["Intervall"], + "Stack": ["Gestapelt"], + "Stream": ["Stream"], + "Expand": ["Erweitern"], + "Show legend": ["Legende anzeigen"], + "Whether to display a legend for the chart": [ + "Ob eine Legende für das Diagramm angezeigt werden soll" ], - "No validator named {} found (configured for the {} engine)": [ - "Kein Validator mit dem Namen {} gefunden (konfiguriert für das {}-Modul)" + "Margin": ["Rand"], + "Additional padding for legend.": ["Zusätzliche Einrückung für Legende."], + "Scroll": ["Scrollen"], + "Plain": ["Unformatiert"], + "Legend type": ["Legendentyp"], + "Orientation": ["Ausrichtung"], + "Bottom": ["Unten"], + "Right": ["Rechts"], + "Legend Orientation": ["Legenden-Ausrichtung"], + "Show Value": ["Wert anzeigen"], + "Show series values on the chart": ["Reihenwerten im Diagramm anzeigen"], + "Stack series on top of each other": ["Reihen übereinander stapeln"], + "Only Total": ["Nur Gesamtwert"], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "Zeigen Sie nur den Gesamtwert im gestapelten Diagramm und nicht in der ausgewählten Kategorie an" ], - "Node label position": ["Position der Knotenbeschriftung"], - "Node select mode": ["Knotenauswahlmodus"], - "Node size": ["Knotengröße"], - "None": ["Keine"], - "None -> Arrow": ["Keine -> Pfeil"], - "None -> None": ["Keine -> Keine"], - "Normal": ["Normal"], - "Normalize Across": ["Normalisieren über"], - "Normalized": ["Normalisiert"], - "Not Time Series": ["Keine Zeitreihen"], - "Not added to any dashboard": ["Zu keinem Dashboard hinzugefügt"], - "Not available": ["Nicht verfügbar"], - "Not equal to (≠)": ["Ist nicht gleich (≠)"], - "Not in": ["Nicht in"], - "Not null": ["Nicht NULL"], - "Not triggered": ["Nicht ausgelöst"], - "Not up to date": ["Nicht aktuell"], - "Nothing triggered": ["Nichts ausgelöst"], - "Notification method": ["Benachrichtigungsmethode"], - "November": ["November"], - "Now": ["Jetzt"], - "Null Values": ["NULL Werte"], - "Null imputation": ["Fehlwert-Imputation"], - "Null or Empty": ["Null oder Leer"], - "Null values": ["NULL Werte"], - "Number Format": ["Zahlenformat"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ - "Zahlengrenzen, die für die Farbkodierung von Rot nach Blau verwendet werden.\n Kehren Sie die Zahlen für Blau in Rot um. Um reines Rot oder Blau zu erhalten,\n können Sie entweder nur min oder max eingeben." + "Percentage threshold": ["Prozentualer Schwellenwert"], + "Minimum threshold in percentage points for showing labels.": [ + "Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen." ], - "Number format": ["Nummern Format"], - "Number format string": ["Zahlenformat-Zeichenfolge"], - "Number of buckets to group data": [ - "Anzahl der Buckets zum Gruppieren von Daten" + "Rich tooltip": ["Umfangreicher Tooltip"], + "Shows a list of all series available at that point in time": [ + "Zeigt eine Liste aller zu diesem Zeitpunkt verfügbaren Zeitreihen an." ], - "Number of decimal digits to round numbers to": [ - "Anzahl der Dezimalstellen, auf die gerundet wird" + "Tooltip time format": ["Tooltip-Zeitformat"], + "Tooltip sort by metric": ["Tooltip nach Metrik sortieren"], + "Whether to sort tooltip by the selected metric in descending order.": [ + "Ob der Tooltip nach der ausgewählten Metrik in absteigender Reihenfolge sortiert werden soll." ], - "Number of decimal places with which to display lift values": [ - "Anzahl der Dezimalstellen, mit denen Hubwerte angezeigt werden sollen" + "Tooltip": ["Tooltip"], + "Sort Series By": ["Zeitreihen sortieren nach"], + "Based on what should series be ordered on the chart and legend": [ + "Basierend darauf, wonach Zeitreihen im Diagramm und in der Legende angeordnet werden sollten" ], - "Number of decimal places with which to display p-values": [ - "Anzahl der Dezimalstellen, mit denen p-Werte angezeigt werden sollen" + "Sort Series Ascending": ["Zeitreihen aufsteigend sortieren"], + "Sort series in ascending order": [ + "Sortieren von Zeitreihen in aufsteigender Reihenfolge" ], - "Number of periods to compare against": [ - "Anzahl der zu vergleichenden Perioden" + "Rotate x axis label": ["X-Achsenbeschriftung drehen"], + "Input field supports custom rotation. e.g. 30 for 30°": [ + "Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°" ], - "Number of periods to ratio against": [ - "Anzahl ins Verhältnis zu setzender Perioden" - ], - "Number of rows of file to read": [ - "Anzahl der aus Datei zu lesenden Zeilen." + "Series Order": ["Zeitreihen-Reihenfolge"], + "Make the x-axis categorical": [""], + "Last available value seen on %s": ["Letzter verfügbarer Wert auf %s"], + "Not up to date": ["Nicht aktuell"], + "No data": ["Keine Daten"], + "No data after filtering or data is NULL for the latest time record": [ + "Keine Daten nach dem Filtern oder Daten sind NULL für den letzten Zeitdatensatz" ], - "Number of rows of file to read.": [ - "Anzahl der aus Datei zu lesenden Zeilen." + "Try applying different filters or ensuring your datasource has data": [ + "Versuchen Sie, andere Filter anzuwenden oder sicherzustellen, dass Ihre Datenquelle Daten enthält" ], - "Number of rows to skip at start of file": [ - "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." + "Big Number Font Size": ["Große Zahl Schriftgröße"], + "Tiny": ["Sehr klein"], + "Small": ["Klein"], + "Normal": ["Normal"], + "Large": ["Groß"], + "Huge": ["Riesig"], + "Subheader Font Size": ["Schriftgröße Untertitel"], + "Display settings": ["Darstellungs-Einstellungen"], + "Subheader": ["Untertitel"], + "Description text that shows up below your Big Number": [ + "Beschreibungstext, der unter Ihrer Großen Zahl angezeigt wird" ], - "Number of rows to skip at start of file.": [ - "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." + "Date format": ["Datumsformat"], + "Force date format": ["Datumsformat erzwingen"], + "Use date formatting even when metric value is not a timestamp": [ + "Verwenden Sie die Datumsformatierung, auch wenn der Metrikwert kein Zeitstempel ist" ], - "Number of split segments on the axis": [ - "Anzahl der geteilten Segmente auf der Achse" + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Zeigt eine einzelne Metrik im Vordergrund. ‚Große Zahl‘ wird am besten verwendet, um die Aufmerksamkeit auf einen KPI oder die eine Information zu lenken, auf die sich Ihr Publikum konzentrieren soll." ], - "Number of steps to take between ticks when displaying the X scale": [ - "Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der X-Skala ausgeführt werden müssen" + "A Big Number": ["Eine Große Zahl"], + "With a subheader": ["Mit einem Untertitel"], + "Big Number": ["Große Zahl"], + "Comparison Period Lag": ["Verzögerung des Vergleichszeitraums"], + "Based on granularity, number of time periods to compare against": [ + "Basierend auf der Granularität, Anzahl der Zeiträume, mit denen verglichen werden soll" ], - "Number of steps to take between ticks when displaying the Y scale": [ - "Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der Y-Skala ausgeführt werden müssen" + "Comparison suffix": ["Vergleichssuffix"], + "Suffix to apply after the percentage display": [ + "Suffix, das hinter der Prozentanzeige angezeigt werden soll" ], - "Numerical range": ["Numerischer Bereich"], - "OCT": ["OKT"], - "OK": ["OK"], - "OVERWRITE": ["ÜBERSCHREIBEN"], - "October": ["Oktober"], - "Offline": ["Offline"], - "Offset": ["Offset"], - "On Grace": ["Kulanz"], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "Eine oder mehrere Spalten, nach denen gruppiert werden soll. Gruppierungen mit hoher Kardinalität sollten ein Zeitreihenlimit enthalten, um die Anzahl der abgerufenen und dargestellten Zeitreihen zu begrenzen." + "Show Timestamp": ["Zeitstempel anzeigen"], + "Whether to display the timestamp": [ + "Ob der Zeitstempel angezeigt werden soll" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ - "Eine oder mehrere Spalten, nach denen gruppiert werden soll. Gruppierungen mit hoher Kardinalität sollten eine Sortierung nach Metrik und Zeitreihenbegrenzung enthalten, um die Anzahl der abgerufenen und dargestellten Reihen zu begrenzen." + "Show Trend Line": ["Trendlinie anzeigen"], + "Whether to display the trend line": [ + "Ob die Trendlinie angezeigt werden soll" ], - "One or many columns to pivot as columns": [ - "Eine oder mehrere Spalten, die als Spalten pivotiert werden sollen" + "Start y-axis at 0": ["y-Achse bei 0 beginnen"], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Beginnen Sie die y-Achse bei Null. Deaktivieren Sie das Kontrollkästchen, um die y-Achse beim Minimalwert in den Daten beginnen zu lassen." ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ - "Ein oder mehrere Steuerelemente, nach denen gruppiert werden soll. Bei der Gruppierung müssen Breiten- und Längengradspalten vorhanden sein." + "Fix to selected Time Range": ["Auf ausgewählten Zeitraum fixieren"], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Trendlinie auf den angegebenen vollen Zeitbereich fixieren, falls gefilterte Ergebnisse nicht das Start- oder Enddatum enthalten" ], - "One or many controls to pivot as columns": [ - "Ein oder mehrere Steuerelemente, um zu Spalten zu pivotieren" + "TEMPORAL X-AXIS": ["ZEITLICHE X-ACHSE"], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Zeigt eine einzelne Zahl zusammen mit einem einfachen Liniendiagramm, um die Aufmerksamkeit auf eine wichtige Metrik zusammen mit ihrer Veränderung im Laufe der Zeit oder einer anderen Dimension zu lenken." ], - "One or many metrics to display": [ - "Eine oder mehrere anzuzeigende Metriken" + "Big Number with Trendline": ["Große Zahl mit Trendlinie"], + "Whisker/outlier options": ["Whisker/Ausreißer-Optionen"], + "Determines how whiskers and outliers are calculated.": [ + "Bestimmt, wie „Whisker“ und Ausreißer berechnet werden." ], - "One or more columns already exist": [ - "Eine oder mehrere Spalten sind bereits vorhanden" + "Tukey": ["Turkey"], + "Min/max (no outliers)": ["Min/Max (keine Ausreißer)"], + "2/98 percentiles": ["2/98 Perzentile"], + "9/91 percentiles": ["9/91 Perzentile"], + "Categories to group by on the x-axis.": [ + "Kategorien, nach denen auf der x-Achse gruppiert werden soll." ], - "One or more columns are duplicated": [ - "Eine oder mehrere Spalten werden dupliziert" + "Distribute across": ["Verteilen über"], + "Columns to calculate distribution across.": [ + "Spalten, über die Verteilung berechnet werden soll." ], - "One or more columns do not exist": [ - "Eine oder mehrere Spalten sind nicht vorhanden" + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Diese Visualisierung, die auch als Box-Whisker-Plot bezeichnet wird, vergleicht die Verteilungen einer Metrik über mehrere Gruppen hinweg. Der Kasten in der Mitte stellt den Mittelwert, den Median und die inneren 2 Quartile dar. Die sogenannten „Whisker“ um jede Box visualisieren die Min-, Max-, Range- und äußeren 2 Quartile." ], - "One or more metrics already exist": [ - "Eine oder mehrere Metriken sind bereits vorhanden" + "ECharts": ["ECharts"], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ + "" ], - "One or more metrics are duplicated": [ - "Eine oder mehrere Metriken werden dupliziert" + "X AXIS TITLE MARGIN": [""], + "Y AXIS TITLE MARGIN": ["Y-ACHSE TITEL RAND"], + "Logarithmic y-axis": ["Logarithmische y-Achse"], + "Truncate Y Axis": ["Y-Achse abschneiden"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Schneiden Sie die Y-Achse ab. Kann überschrieben werden, indem eine min- oder max-Bindung angegeben wird." ], - "One or more metrics do not exist": [ - "Eine oder mehrere Metriken sind nicht vorhanden" + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "" ], - "One or more parameters needed to configure a database are missing.": [ - "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Labels": ["Beschriftungen"], + "Whether to display the labels.": [ + "Ob die Beschriftungen angezeigt werden sollen." ], - "One or more parameters specified in the query are malformatted.": [ - "Ein oder mehrere in der Abfrage angegebene Parameter haben das falsche Format." + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Zeigt, wie sich eine Metrik im Laufe des Trichters ändert. Dieses klassische Diagramm ist nützlich, um den Abfall zwischen Phasen in einer Pipeline oder einem Lebenszyklus zu visualisieren." ], - "One or more parameters specified in the query are missing.": [ - "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." + "Funnel Chart": ["Trichterdiagramm"], + "Sequential": ["Fortlaufend"], + "Columns to group by": ["Spalten, nach denen gruppiert wird"], + "General": ["Allgemein"], + "Min": ["Min"], + "Minimum value on the gauge axis": [ + "Minimalwert auf der Messgerät-Skala" ], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ - "Ein oder mehrere Pflichtfelder fehlen in der Anfrage. Versuchen Sie es erneut, und wenn das Problem weiterhin besteht, wenden Sie sich an Ihre/n Administrator*in." + "Max": ["Max"], + "Maximum value on the gauge axis": [ + "Maximalwert auf der Messgerät-Skala" ], - "One ore more annotation layers failed loading.": [ - "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden." + "Start angle": ["Startwinkel"], + "Angle at which to start progress axis": [ + "Winkel, an dem die Fortschrittsachse gestartet werden soll" ], - "Only SELECT statements are allowed against this database.": [ - "Nur 'SELECT'-Anweisungen sind für diese Datenbank zulässig." + "End angle": ["Endwinkel"], + "Angle at which to end progress axis": [ + "Winkel, an dem die Fortschrittsachse enden soll" ], - "Only Total": ["Nur Gesamtwert"], - "Only `SELECT` statements are allowed": [ - "Nur 'SELECT'-Anweisungen sind zulässig" + "Font size": ["Schriftgröße"], + "Font size for axis labels, detail value and other text elements": [ + "Schriftgröße für Achsenbeschriftungen, Detailwerte und andere Textelemente" ], - "Only applies when \"Label Type\" is not set to a percentage.": [ - "Gilt nur, wenn \"Beschriftungstyp\" nicht auf einen Prozentsatz festgelegt ist." + "Value format": ["Wertformat"], + "Additional text to add before or after the value, e.g. unit": [ + "Zusätzlicher Text, der vor oder nach dem Wert hinzugefügt werden kann, z. B. Einheit" ], - "Only applies when \"Label Type\" is set to show values.": [ - "Gilt nur, wenn \"Beschriftungstyp\" so eingestellt ist, dass Werte angezeigt werden." + "Show pointer": ["Zeiger anzeigen"], + "Whether to show the pointer": ["Ob der Zeiger angezeigt werden soll"], + "Animation": ["Animation"], + "Whether to animate the progress and the value or just display them": [ + "Ob der Fortschritt und der Wert animiert oder nur angezeigt werden sollen" ], - "Only selected panels will be affected by this filter": [ - "Nur ausgewählte Bereiche sind von diesem Filter betroffen" + "Axis": ["Achse"], + "Show axis line ticks": ["Anzeigen von Achsenlinien-Ticks"], + "Whether to show minor ticks on the axis": [ + "Ob kleinere Ticks auf der Achse angezeigt werden sollen" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "Zeigen Sie nur den Gesamtwert im gestapelten Diagramm und nicht in der ausgewählten Kategorie an" + "Show split lines": ["Geteilte Linien anzeigen"], + "Whether to show the split lines on the axis": [ + "Ob die geteilten Linien auf der Achse angezeigt werden sollen" ], - "Only single queries supported": [ - "Nur einzelne Abfragen werden unterstützt" + "Split number": ["Zahl aufteilen"], + "Number of split segments on the axis": [ + "Anzahl der geteilten Segmente auf der Achse" ], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Nur die folgenden Dateierweiterungen sind zulässig: %(allowed_extensions)s" + "Progress": ["Fortschritt"], + "Show progress": ["Fortschritt anzeigen"], + "Whether to show the progress of gauge chart": [ + "Ob der Fortschritt der Messgerätediagramms angezeigt werden soll" ], - "Oops! An error occurred!": ["Hoppla! Ein Fehler ist aufgetreten!"], - "Opacity": ["Deckkraft"], - "Opacity of Area Chart. Also applies to confidence band.": [ - "Deckkraft des Flächendiagramms. Gilt auch für das Vertrauensband." + "Overlap": ["Überlappen"], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "Ob sich der Fortschrittsbalken überschneidet, wenn mehrere Datengruppen vorhanden sind" ], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [ - "Deckkraft aller Cluster, Punkte und Beschriftungen. Zwischen 0 und 1." + "Round cap": ["Runde Kappe"], + "Style the ends of the progress bar with a round cap": [ + "Enden des Fortschrittsbalkens mit einer runden Kappe versehen" ], - "Opacity of area chart.": ["Deckkraft des Flächendiagramms."], - "Opacity, expects values between 0 and 100": [ - "Deckkraft, erwartet Werte zwischen 0 und 100" + "Intervals": ["Intervalle"], + "Interval bounds": ["Intervallgrenzen"], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Durch Kommas getrennte Intervallgrenzen, z.B. 2,4,5 für die Intervalle 0-2, 2-4 und 4-5. Die letzte Zahl sollte mit dem für MAX angegebenen Wert übereinstimmen." ], - "Open Datasource tab": ["Datenquellen-Reiter öffnen"], - "Open in SQL Lab": ["In SQL Lab öffnen"], - "Open query in SQL Lab": ["Bearbeiten in SQL Editor"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "Betreiben Sie die Datenbank im asynchronen Modus, was bedeutet, dass die Abfragen auf Remote-Workern und nicht auf dem Webserver selbst ausgeführt werden. Dies setzt voraus, dass Sie sowohl über ein Celery-Worker-Setup als auch über ein Ergebnis-Backend verfügen. Weitere Informationen finden Sie in den Installationsdokumenten." + "Interval colors": ["Intervallfarben"], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Kommagetrennte Farbwerte für die Intervalle, z.B. 1,2,4. Ganzzahlen bezeichnen Farben aus dem gewählten Farbschema und sind 1-indiziert. Die Anzahl muss mit der der Intervallgrenzen übereinstimmen." ], - "Operator": ["Operator"], - "Operator undefined for aggregator: %(name)s": [ - "Operator undefiniert für Aggregator: %(name)s" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Verwendet ein Tachometer, um den Fortschritt einer Metrik in Richtung eines Ziels anzuzeigen. Die Position des Zifferblatts stellt den Fortschritt und der Endwert im Tachometer den Zielwert dar." ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Optionale CA_BUNDLE Inhalte, um HTTPS-Anforderungen zu überprüfen. Nur für bestimmte Datenbank-Engines verfügbar." + "Gauge Chart": ["Tachometerdiagramm"], + "Name of the source nodes": ["Name der Quellknoten"], + "Name of the target nodes": ["Name der Zielknoten"], + "Source category": ["Quellkategorie"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Die Kategorie der Quellknoten, die zum Zuweisen von Farben verwendet werden. Wenn ein Knoten mehr als einer Kategorie zugeordnet ist, wird nur die erste verwendet." ], - "Optional d3 date format string": [ - "Optionale d3-Datumsformat-Zeichenfolge" + "Target category": ["Zielkategorie"], + "Category of target nodes": ["Kategorie der Zielknoten"], + "Chart options": ["Diagramm-Optionen"], + "Layout": ["Layout"], + "Graph layout": ["Graph-Layout"], + "Force": ["Kraft"], + "Layout type of graph": ["Layouttyp des Diagramms"], + "Edge symbols": ["Kantensymbole"], + "Symbol of two ends of edge line": [ + "Symbol für zwei Enden der Kantenlinie" ], - "Optional d3 number format string": [ - "Optionale d3-Zahlenformat-Zeichenfolge" + "None -> None": ["Keine -> Keine"], + "None -> Arrow": ["Keine -> Pfeil"], + "Circle -> Arrow": ["Kreis -> Pfeil"], + "Circle -> Circle": ["Kreis -> Kreis"], + "Enable node dragging": ["Aktivieren des Ziehens von Knoten"], + "Whether to enable node dragging in force layout mode.": [ + "Ob das Ziehen von Knoten im Kräfte-basierten Layoutmodus aktiviert werden soll." ], - "Optional name of the data column.": ["Optionaler Name der Datenspalte."], - "Optional warning about use of this metric": [ - "Optionale Warnung zur Verwendung dieser Metrik" + "Enable graph roaming": ["Graph-Roaming aktivieren"], + "Disabled": ["Deaktiviert"], + "Scale only": ["Nur Skalieren"], + "Move only": ["Nur verschieben"], + "Scale and Move": ["Skalieren und Verschieben"], + "Whether to enable changing graph position and scaling.": [ + "Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll." ], - "Options": ["Optionen"], - "Or choose from a list of other databases we support:": [ - "Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" - ], - "Order by entity id": ["Nach Entitäts-ID sortieren"], - "Order results by selected columns": [ - "Ergebnisse nach ausgewählten Spalten sortieren" + "Node select mode": ["Knotenauswahlmodus"], + "Single": ["Einzeln"], + "Multiple": ["Mehrfach"], + "Allow node selections": ["Knotenauswahl zulassen"], + "Label threshold": ["Beschriftungsschwellenwert"], + "Minimum value for label to be displayed on graph.": [ + "Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll." ], - "Ordering": ["Sortierung"], - "Orientation": ["Ausrichtung"], - "Orientation of bar chart": ["Ausrichtung des Balkendiagramms"], - "Orientation of filter bar": ["Ausrichtung des Filterbalkens"], - "Orientation of tree": ["Ausrichtung des Baumes"], - "Original": ["Original"], - "Original table column order": [ - "Ursprüngliche Tabellenspaltenreihenfolge" + "Node size": ["Knotengröße"], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "Mittlere Knotengröße, der größte Knoten ist 4-mal größer als der kleinste" ], - "Original value": ["Ursprünglicher Wert"], - "Orthogonal": ["Orthogonal"], - "Other": ["Andere"], - "Outdoors": ["Outdoor-Aktivitäten"], - "Outer Radius": ["Aussenradius"], - "Outer edge of Pie chart": ["Äußerer Rand des Kreisdiagramms"], - "Overlap": ["Überlappen"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum. Erwartet relative Zeitintervalle in natürlicher Sprache (Beispiel: 24 Stunden, 7 Tage, 52 Wochen, 365 Tage). Freitext wird unterstützt." + "Edge width": ["Kantenbreite"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Mittlere Kantenbreite, die dickste Kante ist 4-mal dicker als die dünnste." ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum. Erwartet relative Zeitintervalle in natürlicher, englischer Sprache (Beispiel: „24 hours“, „7 days“, „52 weeks“, „365 days“). Freitext wird unterstützt." + "Edge length": ["Kantenlänge"], + "Edge length between nodes": ["Kantenlänge zwischen Knoten"], + "Gravity": ["Anziehungskraft"], + "Strength to pull the graph toward center": [ + "Stärke, mit der Graph in Richtung Mitte gezogen wird" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ - "Überlagert ein sechseckiges Raster auf einer Karte und aggregiert Daten innerhalb der Grenzen jeder Zelle." + "Repulsion": ["Abstoßung"], + "Repulsion strength between nodes": ["Abstoßungsstärke zwischen Knoten"], + "Friction": ["Reibung"], + "Friction between nodes": ["Reibung zwischen Knoten"], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Zeigt Verbindungen zwischen Elementen in einer Graphstruktur an. Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, dass sie kraftgesteuert sind oder zirkulieren. Wenn Ihre Daten über eine Geodatenkomponente verfügen, versuchen Sie es mit dem deck.gl Arc-Diagramm." ], - "Override time grain": ["Zeitgranularität überschreiben"], - "Override time range": ["Zeitbereich überschreiben"], - "Overwrite": ["Überschreiben Scheibe %s"], - "Overwrite & Explore": ["Überschreiben & Erkunden"], - "Overwrite Dashboard [%s]": ["Dashboard überschreiben [%s]"], - "Overwrite Duplicate Columns": ["Doppelte Spalten überschreiben"], - "Overwrite existing": ["Bestehende überschreiben"], - "Overwrite text in the editor with a query on this table": [ - "Überschreiben von Text im Editor mit einer Abfrage für diese Tabelle" + "Graph Chart": ["Graphen-Diagramm"], + "Structural": ["Strukturell"], + "Whether to sort descending or ascending": [ + "Ob absteigend oder aufsteigend sortiert werden soll" ], - "Owned Created or Favored": ["Im Besitz, Erstellt oder Favorisiert"], - "Owner": ["Besitzer*in"], - "Owners": ["Besitzende"], - "Owners are invalid": ["Besitzende sind ungültig"], - "Owners is a list of users who can alter the dashboard.": [ - "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern können." + "Series type": ["Zeitreihentyp"], + "Smooth Line": ["Glatte Linie"], + "Step - start": ["Schritt - Start"], + "Step - middle": ["Schritt - Mitte"], + "Step - end": ["Schritt - Ende"], + "Series chart type (line, bar etc)": [ + "Zeitreihendiagrammtyp (Linie, Balken usw.)" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern können. Durchsuchbar nach Name oder Benutzer*innenname." + "Stack series": ["Stack-Serie"], + "Area chart": ["Flächendiagramm"], + "Draw area under curves. Only applicable for line types.": [ + "Zeichnen Sie den Bereich unter Kurven. Gilt nur für Linientypen." ], - "Page length": ["Seitenlänge"], - "Paired t-test Table": ["Gepaarte t-Test-Tabelle"], - "Pandas resample method": ["Pandas Resample-Methode"], - "Pandas resample rule": ["Pandas Resample-Regel"], - "Parallel Coordinates": ["Parallele Koordinaten"], - "Parameter error": ["Parameter-Fehler"], - "Parameters": ["Parameter"], - "Parameters ": ["Parameter"], - "Parameters related to the view and perspective on the map": [ - "Parameter in Bezug auf die Ansicht und Perspektive auf der Karte" + "Opacity of area chart.": ["Deckkraft des Flächendiagramms."], + "Marker": ["Marker"], + "Draw a marker on data points. Only applicable for line types.": [ + "Zeichnen Sie eine Markierung auf Datenpunkten. Gilt nur für Linientypen." ], - "Parent": ["Übergeordnet"], - "Parse Dates": ["Datumsangaben auswerten"], - "Part of a Whole": ["Teil eines Ganzen"], - "Partition Chart": ["Partitionsdiagramm"], - "Partition Diagram": ["Partitionsdiagramm"], - "Partition Limit": ["Partitionslimit"], - "Partition Threshold": ["Partitionsschwellenwert"], - "Partitions whose height to parent height proportions are below this value are pruned": [ - "Partitionen, deren Höhen- zu Elternhöhenverhältnissen unter diesem Wert liegen, werden ausgeblendet." + "Marker size": ["Markergröße"], + "Size of marker. Also applies to forecast observations.": [ + "Größe des Markers. Gilt auch für Prognosebeobachtungen." ], - "Password": ["Password"], - "Paste Private Key here": ["Privaten Schlüssel hier einfügen"], - "Paste content of service credentials JSON file here": [ - "Fügen Sie den Inhalt der JSON-Datei für Dienstanmeldeinformationen hier ein" + "Primary": ["Primär"], + "Secondary": ["Sekundär"], + "Primary or secondary y-axis": ["Primäre oder sekundäre y-Achse"], + "Shared query fields": ["Freigegebene Abfragefelder"], + "Query A": ["Abfrage A"], + "Advanced analytics Query A": ["Advanced Analytics Abfrage A"], + "Query B": ["Abfrage B"], + "Advanced analytics Query B": ["Advanced Analytics Abfrage B"], + "Data Zoom": ["Datenzoom"], + "Enable data zooming controls": [ + "Aktivieren von Steuerelementen für das Zoomen von Daten" ], - "Paste the shareable Google Sheet URL here": [ - "Fügen Sie die gemeinsam nutzbare Google Tabellen-URL hier ein" + "Minor Split Line": ["Kleine geteilte Linie"], + "Draw split lines for minor y-axis ticks": [ + "Geteilten Linien für kleinere Ticks der y-Achse zeichnen" ], - "Pattern": ["Muster"], - "Percent Change": ["Prozentuale Veränderung"], - "Percentage": ["Prozentsatz"], - "Percentage change": ["Prozentuale Veränderung"], - "Percentage metrics": ["Prozentuale Metriken"], - "Percentage threshold": ["Prozentualer Schwellenwert"], - "Percentages": ["Prozentwerte"], - "Performance": ["Leistung"], - "Period average": ["Periodendurchschnitt"], - "Periods": ["Zeiträume"], - "Periods must be a whole number": [ - "Perioden müssen eine ganze Zahl sein" + "Primary y-axis format": ["Primäres y-Achsenformat"], + "Logarithmic scale on primary y-axis": [ + "Logarithmische Skala auf primärer y-Achse" ], - "Person or group that has certified this chart.": [ - "Person oder Gruppe, die dieses Diagramm zertifiziert hat." + "Secondary y-axis format": ["Sekundäres y-Achsenformat"], + "Secondary y-axis title": ["Titel der sekundären y-Achse"], + "Logarithmic scale on secondary y-axis": [ + "Logarithmische Skala auf sekundärer y-Achse" ], - "Person or group that has certified this dashboard.": [ - "Person oder Gruppe, die dieses Dashboard zertifiziert hat." + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. Beachten Sie, dass beide Reihen mit einem anderen Diagrammtyp visualisiert werden können (z. B. eine mit Balken und die andere mit einer Linie)." ], - "Person or group that has certified this metric": [ - "Person oder Gruppe, die diese Metrik zertifiziert hat" + "Mixed Chart": ["Gemischtes Diagramm"], + "Put the labels outside of the pie?": [ + "Sollen die Beschriftungen außerhalb der Torte dargestellt werden?" ], - "Physical": ["Physisch"], - "Physical (table or view)": ["Physisch (Tabelle oder Ansicht)"], - "Physical dataset": ["Physischer Datensatz"], - "Pick a dimension from which categorical colors are defined": [ - "Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden" + "Label Line": ["Beschriftungslinie"], + "Draw line from Pie to label when labels outside?": [ + "Linie von Torte zur Beschriftung ziehen, wenn Beschriftungen außerhalb?" ], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Wählen Sie eine Granularität im Abschnitt Zeit aus oder deaktivieren Sie \"Zeit einschließen\"." + "Show Total": ["Gesamtsumme anzeigen"], + "Whether to display the aggregate count": [ + "Ob die Gesamtanzahl angezeigt werden soll" ], - "Pick a metric for x, y and size": [ - "Wählen Sie eine Metrik für x, y und Größe" + "Pie shape": ["Kreisform"], + "Outer Radius": ["Aussenradius"], + "Outer edge of Pie chart": ["Äußerer Rand des Kreisdiagramms"], + "Inner Radius": ["Innenradius"], + "Inner radius of donut hole": ["Innerer Radius des Donutlochs"], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Der Klassiker. Großartig, um zu zeigen, wie viel von einem Unternehmen jeder Investor bekommt, welche Demografie Ihrem Blog folgt oder welcher Teil des Budgets in den militärisch-industriellen Komplex fließt.\n\nKreisdiagramme können schwierig zu interpretieren sein. Wenn die Klarheit des relativen Anteils wichtig ist, sollten Sie stattdessen die Verwendung eines Balkens oder eines anderen Diagrammtyps in Betracht ziehen." ], - "Pick a metric to display": ["Wählen Sie eine Anzeige-Metrik"], - "Pick a metric!": ["Wählen Sie eine Metrik!"], - "Pick a name to help you identify this database.": [ - "Wählen Sie einen Namen aus, der Ihnen hilft, diese Datenbank zu identifizieren." + "Pie Chart": ["Kreisdiagramm"], + "Total: %s": ["Gesamt: %s"], + "The maximum value of metrics. It is an optional configuration": [ + "Der Maximalwert von Metriken. Optionale Konfiguration" ], - "Pick a nickname for how the database will display in Superset.": [ - "Wählen Sie einen Kurznamen mit dem die Datenbank in Superset angezeigt werden soll." + "Label position": ["Beschriftungsposition"], + "Radar": ["Radar"], + "Customize Metrics": ["Anpassen von Metriken"], + "Further customize how to display each metric": [ + "Passen Sie weiter an, wie die einzelnen Metriken angezeigt werden sollen" ], - "Pick a set of deck.gl charts to layer on top of one another": [ - "Wählen Sie eine Reihe von deck.gl Diagrammen aus, die übereinander gelegt werden sollen" + "Circle radar shape": ["Kreisradarform"], + "Radar render type, whether to display 'circle' shape.": [ + "Radar-Darstellungsart, ob die Kreisform angezeigt werden soll." ], - "Pick a time granularity for your time series": [ - "Wählen Sie eine Zeitgranularität für Ihre Zeitreihe" + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Visualisieren Sie einen parallelen Satz von Metriken über mehrere Gruppen hinweg. Jede Gruppe wird mit einer eigenen Punktlinie visualisiert und jede Metrik wird als Kante im Diagramm dargestellt." ], - "Pick a title for you annotation.": [ - "Wählen Sie einen Titel für Ihre Anmerkung aus." + "Radar Chart": ["Radar-Diagramm"], + "Primary Metric": ["Primäre Metrik"], + "The primary metric is used to define the arc segment sizes": [ + "Die primäre Metrik wird verwendet, um die Bogensegmentgrößen zu definieren" ], - "Pick at least one field for [Series]": [ - "Wählen Sie mindestens ein Feld für [Serie] aus." + "Secondary Metric": ["Sekundäre Metrik"], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "[optional] Diese sekundäre Metrik wird verwendet, um die Farbe als Verhältnis zur primären Metrik zu definieren. Wenn keine angegeben, werden diskrete Farben verwendet, die auf den Beschriftungen basieren" ], - "Pick at least one metric": ["Wählen Sie mindestens eine Metrik aus"], - "Pick exactly 2 columns as [Source / Target]": [ - "Wählen Sie genau 2 Spalten als [Quelle / Ziel]" + "When only a primary metric is provided, a categorical color scale is used.": [ + "Wenn nur eine primäre Metrik bereitgestellt wird, wird eine kategoriale Farbpalette verwendet." ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "Wählen Sie eine oder mehrere Spalten aus, die in der Anmerkung angezeigt werden sollen. Wenn Sie keine Spalte auswählen, werden alle angezeigt." + "When a secondary metric is provided, a linear color scale is used.": [ + "Wenn eine sekundäre Metrik bereitgestellt wird, wird eine lineare Farbskala verwendet." ], - "Pick your favorite markup language": [ - "Wählen Sie Ihre bevorzugte Markup-Sprache" + "Hierarchy": ["Hierarchie"], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Legt die Hierarchieebenen des Diagramms fest. Jede Ebene ist\n dargestellt durch einen Ring mit dem innersten Kreis als Spitze der Hierarchie." ], - "Pie Chart": ["Kreisdiagramm"], - "Pie shape": ["Kreisform"], - "Pin": ["Pin"], - "Pivot Table": ["Pivot-Tabelle"], - "Pivot operation must include at least one aggregate": [ - "Pivot-Operation muss mindestens ein Aggregat enthalten" + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Verwendet Kreise, um den Datenfluss durch verschiedene Phasen eines Systems zu visualisieren. Bewegen Sie den Mauszeiger über einzelne Pfade in der Visualisierung, um die Phasen zu verstehen, die ein Wert durchlaufen hat. Nützlich für die Visualisierung von Trichtern und Pipelines in mehreren Gruppen." ], - "Pivot operation requires at least one index": [ - "Pivot-Operation erfordert mindestens einen Index" + "Sunburst Chart": ["Sunburst Diagramm"], + "Multi-Levels": ["Mehrstufige"], + "When using other than adaptive formatting, labels may overlap": [ + "Bei Verwendung einer anderen als der adaptiven Formatierung können sich Beschriftungen überschneiden" ], - "Pivoted": ["Pilotiert"], - "Pixel height of each series": ["Pixelhöhe jeder Serie"], - "Pixels": ["Pixel"], - "Plain": ["Unformatiert"], - "Please DO NOT overwrite the \"filter_scopes\" key.": [ - "Bitte überschreiben Sie den \"filter_scopes“-Schlüssel NICHT." + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Schweizer Taschenmesser zur Visualisierung von Daten. Wählen Sie zwischen Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser Visualisierungstyp hat auch viele Anpassungsoptionen." ], - "Please apply filter changes": ["Bitte wenden Sie Filteränderungen an"], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "Bitte überprüfen Sie Ihre Anfrage und vergewissern Sie sich, dass alle Vorlagenparameter von doppelten Klammern umgeben sind, z. B. \"{{ ds }}\". Versuchen Sie dann erneut, die Abfrage auszuführen." + "Generic Chart": ["Generisches Diagramm"], + "zoom area": ["Zoombereich"], + "restore zoom": ["Zoom wiederherstellen"], + "Series Style": ["Zeitreihenstil"], + "Area chart opacity": ["Deckkraft des Flächendiagramms"], + "Opacity of Area Chart. Also applies to confidence band.": [ + "Deckkraft des Flächendiagramms. Gilt auch für das Vertrauensband." ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler bei oder in der Nähe von \"%(syntax_error)s\". Versuchen Sie dann erneut, die Abfrage auszuführen." + "Marker Size": ["Markergröße"], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Flächendiagramme ähneln Liniendiagrammen, da sie Variablen mit der gleichen Skala darstellen, aber Flächendiagramme stapeln die Metriken übereinander." ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler in der Nähe von \"%(server_error)s\". Versuchen Sie dann erneut, die Abfrage auszuführen." + "Area Chart": ["Flächendiagramm"], + "Axis Title": ["Titel der Achse"], + "AXIS TITLE MARGIN": ["ABSTAND DES ACHSENTITELS"], + "AXIS TITLE POSITION": ["Y-ACHSE TITEL POSITION"], + "Axis Format": ["Achsenformat"], + "Logarithmic axis": ["Logarithmische Achse"], + "Draw split lines for minor axis ticks": [ + "Zeichnen von Trennlinien für kleinere Achsenteilstriche" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ - "Überprüfen Sie Ihre Vorlagenparameter auf Syntaxfehler und stellen Sie sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen." + "Truncate Axis": ["Achse abschneiden"], + "It’s not recommended to truncate axis in Bar chart.": [ + "Es wird nicht empfohlen, die Achse im Balkendiagramm abzuschneiden." ], - "Please choose at least one groupby": [ - "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium" + "Axis Bounds": ["Achsenbegrenzungen"], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Grenzen für die Achse. Wenn sie leer gelassen werden, werden die Grenzen dynamisch basierend auf den Min/Max-Werten der Daten definiert. Beachten Sie, dass diese Funktion nur den Achsenbereich erweitert. Der Umfang der Daten wird dadurch nicht eingeschränkt." ], - "Please choose different metrics on left and right axis": [ - "Bitte wählen Sie verschiedene Metriken für die linke und rechte Achse" + "Chart Orientation": ["Diagrammausrichtung"], + "Bar orientation": ["Balken-Ausrichtung"], + "Horizontal": ["Horizontal"], + "Orientation of bar chart": ["Ausrichtung des Balkendiagramms"], + "Bar Charts are used to show metrics as a series of bars.": [ + "Balkendiagramme werden verwendet, um Metriken als eine Reihe von Balken anzuzeigen." ], - "Please confirm": ["Bitte bestätigen"], - "Please confirm the overwrite values.": [ - "Bitte bestätigen Sie die überschreibenden Werte." + "Bar Chart": ["Balkendiagramm"], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Liniendiagramm wird verwendet, um Messungen zu visualisieren, die über eine bestimmte Kategorie durchgeführt wurden. Liniendiagramm ist eine Art Diagramm, das Informationen als eine Reihe von Datenpunkten anzeigt, die durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender Diagrammtyp, der in vielen Bereichen üblich ist." ], - "Please enter a SQLAlchemy URI to test": [ - "Bitten geben Sie eine SQL Alchemy URI zum Testen ein" + "Line Chart": ["Liniendiagramm"], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Das Punktdiagramm hat die horizontale Achse in linearen Einheiten, und die Punkte sind in der richtigen Reihenfolge verbunden. Es zeigt eine statistische Beziehung zwischen zwei Variablen." ], - "Please filter set name": ["Bitte Name für Filtergruppe eingeben"], - "Please re-enter the password.": [ - "Bitte geben Sie das Passwort erneut ein." + "Scatter Plot": ["Streudiagramm"], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "„Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne Winkel und harte Kanten wirkt „Glatte Linie“ manchmal passender und professioneller." ], - "Please re-export your file and try importing again": [ - "Bitte exportieren Sie Ihre Datei erneut und versuchen Sie nochmals, sie zu importieren." + "Step type": ["Schritttyp"], + "Start": ["Start"], + "Middle": ["Mitte"], + "End": ["Ende"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Definiert, ob der Schritt am Anfang, in der Mitte oder am Ende zwischen zwei Datenpunkten erscheinen soll" ], - "Please reach out to the Chart Owner for assistance.": [ - "Bitte wenden Sie sich an den/die Diagramm-Besitzer*in, um Unterstützung zu erhalten.", - "Bitte wenden Sie sich an die Diagramm-Besitzer*innen, um Unterstützung zu erhalten." + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen Abständen auftreten." ], - "Please save the query to enable sharing": [ - "Bitte speichern Sie die Abfrage, um die Freigabe zu aktivieren" + "Stepped Line": ["Stufendiagramm"], + "Id": ["ID"], + "Name of the id column": ["Name der ID-Spalte"], + "Parent": ["Übergeordnet"], + "Name of the column containing the id of the parent node": [ + "Name der Spalte, die die ID des übergeordneten Knotens enthält" ], - "Please save your chart first, then try creating a new email report.": [ - "Bitte speichern Sie zuerst Ihr Diagramm und versuchen Sie dann, einen neuen E-Mail-Report zu erstellen." + "Optional name of the data column.": ["Optionaler Name der Datenspalte."], + "Root node id": ["Wurzelknoten-ID"], + "Id of root node of the tree.": ["ID des Stammknotens der Struktur."], + "Metric for node values": ["Metrik für Knotenwerte"], + "Tree layout": ["Baum-Layout"], + "Orthogonal": ["Orthogonal"], + "Radial": ["Radial"], + "Layout type of tree": ["Layouttyp des Baums"], + "Tree orientation": ["Baumausrichtung"], + "Left to Right": ["Links nach rechts"], + "Right to Left": ["Rechts nach links"], + "Top to Bottom": ["Oben nach unten"], + "Bottom to Top": ["Von Unten nach Oben"], + "Orientation of tree": ["Ausrichtung des Baumes"], + "Node label position": ["Position der Knotenbeschriftung"], + "left": ["Links"], + "top": ["Oben"], + "right": ["Rechts"], + "bottom": ["Unten"], + "Position of intermediate node label on tree": [ + "Beschriftungs-Position der Zwischenknoten im Baum" ], - "Please save your dashboard first, then try creating a new email report.": [ - "Bitte speichern Sie zuerst Ihr Dashboard und versuchen Sie dann, einen neuen E-Mail-Report zu erstellen." + "Child label position": ["Untergeordnete Beschriftungsposition"], + "Position of child node label on tree": [ + "Position der Beschriftung des untergeordneten Knotens in der Struktur" ], - "Please select both a Dataset and a Chart type to proceed": [ - "Wählen Sie sowohl einen Datensatz- als auch einen Diagrammtyp aus, um fortzufahren" + "Emphasis": ["Hervorhebung"], + "ancestor": ["Vorfahr"], + "descendant": ["Nachkomme"], + "Which relatives to highlight on hover": [ + "Welche Verwandten beim Überfahren mit der Maus hervorgehoben werden sollen" ], - "Please use 3 different metric labels": [ - "Bitte verwenden Sie 3 verschiedene metrische Beschriftungen" + "Symbol": ["Symbol"], + "Empty circle": ["Leerer Kreis"], + "Circle": ["Kreis"], + "Rectangle": ["Rechteck"], + "Triangle": ["Dreieck"], + "Diamond": ["Diamant"], + "Pin": ["Pin"], + "Arrow": ["Pfeil"], + "Symbol size": ["Symbolgröße"], + "Size of edge symbols": ["Größe der Kantensymbole"], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Visualisieren Sie mehrere Hierarchieebenen mit einer vertrauten baumartigen Struktur." ], - "Plot the distance (like flight paths) between origin and destination.": [ - "Entfernung (wie Flugrouten) zwischen Abflug- und Zielort zeichen" + "Tree Chart": ["Baumdiagramm"], + "Show Upper Labels": ["Obere Beschriftungen anzeigen"], + "Show labels when the node has children.": [ + "Zeigen Sie Beschriftungen an, wenn der Knoten untergeordnete Elemente hat." ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ - "Stellt die einzelnen Metriken für jede Zeile in den Daten vertikal dar und verknüpft sie als Linie miteinander. Dieses Diagramm ist nützlich, um mehrere Metriken in allen Stichproben oder Zeilen in den Daten zu vergleichen." + "Key": ["Schlüssel"], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Zeigen Sie hierarchische Beziehungen von Daten, wobei der Wert durch Fläche dargestellt wird, der Anteil und Beitrag zum Ganzen zeigt." ], - "Plugins": ["Plugins"], - "Point Color": ["Punktfarbe"], - "Point Radius": ["Punktradius"], - "Point Radius Scale": ["Punktradius Maßstab"], - "Point Radius Unit": ["Punktradius-Einheit"], - "Point Size": ["Punktgröße"], - "Point Unit": ["Punkteinheit"], - "Point to your spatial columns": [ - "Zeigen Sie auf Ihre räumlichen Spalten" + "Treemap": ["Treemap"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "" ], - "Points": ["Punkte"], - "Points and clusters will update as the viewport is being changed": [ - "Punkte und Cluster werden aktualisiert, wenn das Ansichtsfenster geändert wird" + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "" ], - "Polygon Column": ["Polygon-Spalte"], - "Polygon Encoding": ["Polygon-Kodierung"], - "Polygon Settings": ["Polygon-Einstellungen"], - "Polyline": ["Polylinie"], - "Pop Tab Link": ["Tab-Link"], - "Popular": ["Beliebt"], - "Populate \"Default value\" to enable this control": [ - "Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren" + "page_size.all": ["page_size.all"], + "Loading...": ["Lade..."], + "Write a handlebars template to render the data": [ + "Handlebars-Template zur Darstellung der Daten verfassen" ], - "Population age data": ["Daten zum Bevölkerungsalter"], - "Port": ["Port"], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." + "Handlebars": ["Handlebars"], + "must have a value": ["Muss einen Wert haben"], + "Handlebars Template": ["Handlebars-Vorlage"], + "A handlebars template that is applied to the data": [ + "Ein Handelbars-Template, das auf die Daten angewendet wird" ], - "Port out of range 0-65535": [""], - "Position JSON": ["Anordnungs-JSON"], - "Position of child node label on tree": [ - "Position der Beschriftung des untergeordneten Knotens in der Struktur" + "Include time": ["Zeit einschließen"], + "Whether to include the time granularity as defined in the time section": [ + "Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden soll" ], - "Position of column level subtotal": [ - "Position der Zwischensumme auf Spaltenebene" + "Percentage metrics": ["Prozentuale Metriken"], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "" ], - "Position of intermediate node label on tree": [ - "Beschriftungs-Position der Zwischenknoten im Baum" + "Show totals": ["Gesamtwerte anzeigen"], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Zeigen Sie die Gesamtaggregationen ausgewählter Metriken an. Beachten Sie, dass das Zeilenlimit nicht für das Ergebnis gilt." ], - "Position of row level subtotal": [ - "Position der Zwischensumme auf Zeilenebene" + "Ordering": ["Sortierung"], + "Order results by selected columns": [ + "Ergebnisse nach ausgewählten Spalten sortieren" ], - "Powered by Apache Superset": ["Powered Apache Superset"], - "Pre-filter": ["Vorfilter"], - "Pre-filter available values": ["Verfügbare Werte vorfiltern"], - "Pre-filter is required": ["Vorfilterung erforderlich"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Prädikat, das beim Abrufen eines eindeutigen Werts angewendet wird, um die Filtersteuerelementkomponente aufzufüllen. Unterstützt jinja-Vorlagensyntax. Gilt nur, wenn \"Filterauswahl aktivieren\" aktiviert ist." + "Sort descending": ["Absteigend sortieren"], + "Server pagination": ["Server-Paginierung"], + "Enable server side pagination of results (experimental feature)": [ + "Aktivieren der serverseitigen Paginierung der Ergebnisse (experimentelle Funktion)" ], - "Predictive": ["Prädikativ"], - "Predictive Analytics": ["Prädiktive Analysen"], - "Preview": ["Vorschau"], - "Preview: `%s`": ["Vorschau: `%s"], - "Previous": ["Zurück"], - "Previous Line": ["Vorherige Zeile"], - "Primary": ["Primär"], - "Primary Metric": ["Primäre Metrik"], - "Primary key": ["Primärschlüssel"], - "Primary or secondary y-axis": ["Primäre oder sekundäre y-Achse"], - "Primary y-axis format": ["Primäres y-Achsenformat"], - "Private Key": ["Privater Schlüssel"], - "Private Key & Password": ["Privater Schlüssel & Passwort"], - "Private Key Password": ["Passwort des privaten Schlüssels"], - "Proceed": ["Fortfahren"], - "Profile": ["Profil"], - "Profile picture provided by Gravatar": ["Profilbild von Gravatar"], - "Progress": ["Fortschritt"], - "Progressive": ["Progressiv"], - "Propagate": ["Propagieren"], - "Proportional": ["Proportional"], - "Public and privately shared sheets": [ - "Öffentliche und privat freigegebene Blätter" + "Server Page Length": ["Server-Seitenlänge"], + "Rows per page, 0 means no pagination": [ + "Zeilen pro Seite, 0 bedeutet keine Paginierung" ], - "Publicly shared sheets only": ["Nur öffentlich freigegebene Blätter"], - "Published": ["Veröffentlicht"], - "Purple": ["Lila"], - "Put labels outside": ["Beschriftung außerhalb darstellen"], - "Put the labels outside of the pie?": [ - "Sollen die Beschriftungen außerhalb der Torte dargestellt werden?" + "Query mode": ["Abfragemodus"], + "Group By, Metrics or Percentage Metrics must have a value": [ + "Group By, Metriken oder Prozentmetriken müssen einen Wert haben" ], - "Put the labels outside the pie?": [ - "Beschriftungen außerhalb des Kuchens anordnen?" + "You need to configure HTML sanitization to use CSS": [ + "Sie müssen die HTML-Bereinigung (sanitization) aktivieren, um CSS verwenden zu können" ], - "Put your code here": ["Geben Sie Ihren Code hier ein"], - "Python datetime string pattern": ["Python Datetime-Zeichenfolge"], - "QUERY DATA IN SQL LAB": ["DATEN IN SQL LAB ABFRAGEN "], - "Quarter": ["Quartal"], - "Quarters %s": ["Quartale %s"], - "Queries": ["Abfragen"], - "Query": ["Abfrage"], - "Query %s: %s": ["Abfrage %s: %s"], - "Query A": ["Abfrage A"], - "Query B": ["Abfrage B"], - "Query History": ["Abfrageverlauf"], - "Query does not exist": ["Abfrage ist nicht vorhanden"], - "Query history": ["Abfragenverlauf"], - "Query imported": ["Abfrage importiert"], - "Query in a new tab": ["Abfrage auf einer neuen Registerkarte"], - "Query is too complex and takes too long to run.": [ - "Die Abfrage ist zu komplex und dauert zu lange." + "CSS Styles": ["CSS Stile"], + "CSS applied to the chart": ["Auf das Diagramm angewendetes CSS"], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [ + "Spalten, nach denen in den Spalten gruppiert werden soll" ], - "Query mode": ["Abfragemodus"], - "Query name": ["Abfragename"], - "Query preview": ["Abfragen-Voransicht"], - "Query was stopped": ["Abfrage wurde angehalten"], - "Query was stopped.": ["Die Abfrage wurde gestoppt."], - "RANGE TYPE": ["BEREICHSTYP"], - "RGB Color": ["RGB-Farbe"], - "Radar": ["Radar"], - "Radar Chart": ["Radar-Diagramm"], - "Radar render type, whether to display 'circle' shape.": [ - "Radar-Darstellungsart, ob die Kreisform angezeigt werden soll." + "Rows": ["Zeilen"], + "Columns to group by on the rows": [ + "Spalten, nach denen in den Zeilen gruppiert werden soll" ], - "Radial": ["Radial"], - "Radius in kilometers": ["Radius in Kilometern"], - "Radius in meters": ["Radius in Metern"], - "Radius in miles": ["Radius in Meilen"], - "Ran %s": ["Ausgeführt %s"], - "Range": ["Bereich"], - "Range filter": ["Bereichsfilter"], - "Range filter plugin using AntD": ["Bereichsfilter-Plugin mit AntD"], - "Range labels": ["Bereichsbeschriftungen"], - "Ranges": ["Bereiche"], - "Ranges to highlight with shading": [ - "Bereiche, die mit Schattierung hervorgehoben werden sollen" + "Apply metrics on": ["Metriken anwenden auf"], + "Use metrics as a top level group for columns or for rows": [ + "Verwenden von Metriken als Gruppe der obersten Ebene für Spalten oder Zeilen" ], - "Ranking": ["Rangliste"], - "Ratio": ["Verhältnis"], - "Raw records": ["Rohdatensätze"], - "Ready to review filters in this dashboard?": [ - "Bereit, die Filter In diesem Dashboard zu prüfen?" + "Cell limit": ["Zellgrenze"], + "Limits the number of cells that get retrieved.": [ + "Begrenzt die Anzahl der Zeilen, die angezeigt werden." ], - "Rebuild": ["Wiederaufbau"], - "Recent activity": ["Kürzliche Aktivitäten"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden hier angezeigt" + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Metrik, die verwendet wird, um zu definieren, wie die obersten Zeitreihen sortiert werden, wenn ein Zeitreihen- oder ein Zellen-Limit vorhanden ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls zutreffend)." ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Kürzlich bearbeitete Diagramme, Dashboards und gespeicherte Abfragen werden hier angezeigt" + "Aggregation function": ["Aggregationsfunktion"], + "Count": ["Anzahl"], + "Count Unique Values": ["Eindeutige Werte zählen"], + "List Unique Values": ["Eindeutige Werte auflisten"], + "Sum": ["Summe"], + "Average": ["Durchschnitt"], + "Median": ["Median"], + "Sample Variance": ["Stichprobenvarianz"], + "Sample Standard Deviation": ["Standardabweichung von Stichprobe"], + "Minimum": ["Minimum"], + "Maximum": ["Maximum"], + "First": ["Erste"], + "Last": ["Letzte"], + "Sum as Fraction of Total": ["Summe als Anteil am Gesamtbetrag"], + "Sum as Fraction of Rows": ["Summe als Anteil der Zeilen"], + "Sum as Fraction of Columns": ["Summe als Anteil der Spalten"], + "Count as Fraction of Total": ["Als Anteil der Gesamtsumme zählen"], + "Count as Fraction of Rows": ["Als Anteil der Zeilen zählen"], + "Count as Fraction of Columns": ["Als Anteil der Spalten zählen"], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "Aggregatfunktion, die beim Pivotieren und Berechnen der Summe der Zeilen und Spalten angewendet werden soll" ], - "Recently modified": ["Kürzlich geändert"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Kürzlich angezeigte Diagramme, Dashboards und gespeicherte Abfragen werden hier angezeigt" + "Show rows total": ["Zeilensumme anzeigen"], + "Display row level total": ["Summe auf Zeilenebene anzeigen"], + "Show columns total": ["Spaltensumme anzeigen"], + "Display column level total": ["Summe auf Spaltenebene anzeigen"], + "Transpose pivot": ["Pivot transponieren"], + "Swap rows and columns": ["Zeilen und Spalten vertauschen"], + "Combine metrics": ["Metriken kombinieren"], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Zeigen Sie Metriken innerhalb jeder Spalte nebeneinander an, im Gegensatz zur Darstellung einer Spalte je Metrik." ], - "Recents": ["Kürzlich"], - "Recipients are separated by \",\" or \";\"": [ - "Empfänger werden durch \",\" oder \";\" getrennt." + "D3 time format for datetime columns": [ + "D3-Zeitformat für datetime-Spalten" ], - "Recommended tags": ["Empfohlene Tags"], - "Record Count": ["Anzahl Datensätze"], - "Rectangle": ["Rechteck"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Leitet zu diesem Endpunkt um, wenn Sie in der Tabellenliste auf die Tabelle klicken" + "Sort rows by": ["Zeilen sortieren nach"], + "key a-z": ["Schlüssel a-z"], + "key z-a": ["Schlüssel z-a"], + "value ascending": ["Wert aufsteigend"], + "value descending": ["Wert absteigend"], + "Change order of rows.": ["Reihenfolge der Zeilen ändern."], + "Available sorting modes:": ["Verfügbare Sortiermodi:"], + "By key: use row names as sorting key": [ + "Nach Schlüssel: Zeilennamen als Sortierschlüssel verwenden" ], - "Redo the action": ["Aktion wiederholen"], - "Reduce X ticks": ["Reduzieren Sie X Ticks"], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ - "Reduziert die Anzahl der darzustellenden X-Achsen-Ticks. Wenn WAHR, läuft die x-Achse nicht über und Beschriftungen fehlen möglicherweise. Wenn FALSCH, wird eine Mindestbreite auf Spalten angewendet und die Breite kann in einen horizontalen Bildlauf überlaufen." + "By value: use metric values as sorting key": [ + "Nach Wert: Metrikwerte als Sortierschlüssel verwenden" ], - "Refer to the": ["Weitere Informationen finden Sie im"], - "Referenced columns not available in DataFrame.": [ - "Referenzierte Spalten sind in DataFrame nicht verfügbar." + "Sort columns by": ["Spalten sortieren nach"], + "Change order of columns.": ["Reihenfolge der Spalten ändern."], + "By key: use column names as sorting key": [ + "Nach Schlüssel: Spaltennamen als Sortierschlüssel verwenden" ], - "Refetch results": ["Ergebnisse erneut anfordern"], - "Refresh": ["Aktualisieren"], - "Refresh dashboard": ["Dashboard aktualisieren"], - "Refresh frequency": ["Aktualisierungsfrequenz"], - "Refresh interval": ["Aktualisierungsinterval"], - "Refresh interval saved": ["Aktualisierungsintervall gespeichert"], - "Refresh table list": ["Tabellenliste aktualisieren"], - "Refresh tables": ["Aktualisieren von Tabellen"], - "Refresh the default values": ["Aktualisieren der Standardwerte"], - "Refreshing charts": ["Aktualisieren von Diagrammen"], - "Refreshing columns": ["Aktualisieren von Spalten"], - "Regex": ["Regex"], - "Relational": ["Relational"], - "Relationships between community channels": [ - "Beziehungen zwischen Community-Kanälen" + "Rows subtotal position": ["Zeilen Zwischensummenposition"], + "Position of row level subtotal": [ + "Position der Zwischensumme auf Zeilenebene" ], - "Relative Date/Time": ["Relatives Datum/Uhrzeit"], - "Relative period": ["Relativer Zeitraum"], - "Relative quantity": ["Relative Menge"], - "Reload": ["Neu laden"], - "Remind me in 24 hours": ["In 24 Stunden erinnern"], - "Remove": ["Entfernen"], - "Remove cross-filter": ["Kreuzfilter entfernen"], - "Remove invalid filters": ["Ungültige Filter entfernen"], - "Remove item": ["Element entfernen"], - "Remove query from log": ["Abfrage aus Protokoll entfernen"], - "Remove table preview": ["Tabellenvorschau entfernen"], - "Removed columns: %s": ["Entfernte Spalten: %s"], - "Rename tab": ["Registerkarte umbenennen"], - "Rendering": ["Darstellen"], - "Replace": ["Ersetzen"], - "Report": ["Melden"], - "Report Name": ["Berichtname"], - "Report Schedule could not be created.": [ - "Report-Ausführungsplan konnte nicht erstellt werden." + "Columns subtotal position": ["Zwischensummenposition der Spalten"], + "Position of column level subtotal": [ + "Position der Zwischensumme auf Spaltenebene" ], - "Report Schedule could not be deleted.": [ - "Report-Ausführungsplan konnte nicht gelöscht werden." + "Conditional formatting": ["Bedingte Formatierung"], + "Apply conditional color formatting to metrics": [ + "Bedingten Farbformatierung auf Metriken anwenden" ], - "Report Schedule could not be updated.": [ - "Report-Ausführungsplan konnte nicht aktualisiert werden." + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere Statistiken entlang zweier Achsen gruppiert werden. Beispiele: Verkaufszahlen nach Region und Monat, Aufgaben nach Status und Beauftragtem, aktive Nutzer nach Alter und Standort. Nicht die visuell beeindruckendste Visualisierung, aber sehr informativ und vielseitig." ], - "Report Schedule delete failed.": [ - "Fehler beim Löschen des Report-Ausführungsplans." + "Pivot Table": ["Pivot-Tabelle"], + "Total (%(aggregatorName)s)": ["Insgesamt (%(aggregatorName)s)"], + "Unknown input format": ["Unbekanntes Eingabeformat"], + "search.num_records": [""], + "page_size.show": ["page_size.show"], + "page_size.entries": ["page_size.entries"], + "No matching records found": ["Keine passenden Einträge gefunden"], + "Shift + Click to sort by multiple columns": [ + "UMSCHALT+Klicken um nach mehreren Spalten zu sortieren" ], - "Report Schedule execution failed when generating a csv.": [ - "Report-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei." + "Totals": ["Summen"], + "Timestamp format": ["Zeitstempelformat"], + "Page length": ["Seitenlänge"], + "Search box": ["Suchfeld"], + "Whether to include a client-side search box": [ + "Ob ein clientseitiges Suchfeld eingeschlossen werden soll" ], - "Report Schedule execution failed when generating a dataframe.": [ - "Report-Ausführungsplan Fehler beim Generieren der Daten für geplanten Report." + "Cell bars": ["Zellenbalken"], + "Whether to display a bar chart background in table columns": [ + "Ob ein Balkendiagrammhintergrund in Tabellenspalten angezeigt werden soll" ], - "Report Schedule execution failed when generating a screenshot.": [ - "Report-Ausführungsplan Die Ausführung des Zeitplans ist beim Generieren eines Screenshots fehlgeschlagen." + "Align +/-": ["Ausrichten +/-"], + "Whether to align background charts with both positive and negative values at 0": [ + "Ob Hintergrunddiagramme sowohl mit positiven als auch mit negativen Werten bei 0 ausgerichtet werden sollen" ], - "Report Schedule execution got an unexpected error.": [ - "Unerwarteter Fehler bei der Ausführung des geplanten Reports." + "Color +/-": ["Farbe +/-"], + "Allow columns to be rearranged": ["Neuanordnung von Spalten zulassen"], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Endbenutzer*innen erlauben, Spaltenüberschriften per Drag & Drop neu anzuordnen. Beachten Sie, dass ihre Änderungen beim nächsten Öffnen des Diagramms nicht beibehalten werden." ], - "Report Schedule is still working, refusing to re-compute.": [ - "Geplanter Bericht wird noch erstellt. Derzeit keine Neuerstellung möglich." + "Customize columns": ["Spalten anpassen"], + "Further customize how to display each column": [ + "Weitere Anpassungen der Anzeige der Spaltenanzeige" ], - "Report Schedule log prune failed.": [ - "Fehler beim Beschneiden des Report-Ausführungsplan-Logs." + "Apply conditional color formatting to numeric columns": [ + "Bedingte Farbformatierung auf numerische Spalten anwenden" ], - "Report Schedule not found.": ["Report-Ausführungsplan nicht gefunden."], - "Report Schedule parameters are invalid.": [ - "Report-Ausführungsplanparameter sind ungültig." + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Klassische Zeilen-für-Spalten-Tabellenansicht eines Datensatzes. Verwenden Sie Tabellen, um eine Ansicht der zugrunde liegenden Daten oder aggregierter Metriken anzuzeigen." ], - "Report Schedule reached a working timeout.": [ - "Erstellung des geplanter Reports hat zulässige Zeit überschritten." + "Show": ["Anzeigen"], + "entries": ["Einträge"], + "Word Cloud": ["Wortwolke"], + "Minimum Font Size": ["Minimale Schriftgröße"], + "Font size for the smallest value in the list": [ + "Schriftgröße für den kleinsten Wert in der Liste" ], - "Report Schedule state not found": [ - "Geplanter Report Status nicht gefunden" + "Maximum Font Size": ["Maximale Schriftgrösse"], + "Font size for the biggest value in the list": [ + "Schriftgröße für den größten Wert in der Liste" ], - "Report a bug": ["Fehler melden"], - "Report failed": ["Report fehlgeschlagen"], - "Report name": ["Name des Reports"], - "Report schedule": ["Report-Zeitplan"], - "Report schedule client error": ["Clientfehler beim Berichts-Zeitplan"], - "Report schedule system error": ["Systemfehler beim Berichts-Zeitplan"], - "Report schedule unexpected error": [ - "Geplanter Report Unerwarteter Fehler" + "Word Rotation": ["Wort-Rotation"], + "random": ["zufällig"], + "square": ["Quadrat"], + "Rotation to apply to words in the cloud": [ + "Rotation, die auf Wörter in der Cloud angewendet werden soll" ], - "Report sending": ["Report wird versendet"], - "Report sent": ["Report gesendet"], - "Report updated": ["Bericht aktualisiert"], - "Reports": ["Reports"], - "Repulsion": ["Abstoßung"], - "Repulsion strength between nodes": ["Abstoßungsstärke zwischen Knoten"], - "Request Permissions": ["Berechtigung anfordern"], - "Request is incorrect: %(error)s": ["Anfrage ist falsch: %(error)s"], - "Request is not JSON": ["Anfrage ist nicht JSON"], - "Request missing data field.": ["Datenfeld fehlt in Abfrage."], - "Request timed out": ["Zeitüberschreitung der Anforderung"], - "Required": ["Erforderlich"], - "Required control values have been removed": [ - "Erforderliche Steuerwerte wurden entfernt" + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Visualisiert die Wörter in einer Spalte, die am häufigsten vorkommen. Größere Schrift entspricht einer höheren Frequenz." ], - "Resample": ["Resample"], - "Resample method should in ": [ - "Pandas Methode zur Stichprobenwiederholung (resample)" + "N/A": ["k.A."], + "offline": ["Offline"], + "failed": ["fehlgeschlagen"], + "pending": ["ausstehend"], + "fetching": ["Wird abgerufen"], + "running": ["laufend"], + "stopped": ["gestoppt"], + "success": ["Erfolg"], + "The query couldn't be loaded": [ + "Die Abfrage konnte nicht geladen werden" ], - "Resample operation requires DatetimeIndex": [ - "Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich." + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Ihre Abfrage wurde geplant. Um Details zu Ihrer Abfrage anzuzeigen, navigieren Sie zu Gespeicherte Abfragen" ], - "Reset": ["Zurücksetzen"], - "Reset state": ["Status zurücksetzen"], - "Resource already has an attached report.": [ - "Resource verfügt bereits über einen angefügten Bericht." + "Your query could not be scheduled": [ + "Ihre Abfrage konnte nicht eingeplant werden" ], - "Resource was not found.": ["Ressource wurde nicht gefunden."], - "Restore Filter": ["Filter wiederherstellen"], - "Results": ["Ergebnisse"], - "Results %s": ["Ergebnisse %s"], - "Results backend is not configured.": [ - "Das Ergebnis-Backend ist nicht konfiguriert." + "Failed at retrieving results": ["Fehler beim Abrufen der Ergebnisse"], + "Unknown error": ["Unbekannter Fehler"], + "Query was stopped.": ["Die Abfrage wurde gestoppt."], + "Failed at stopping query. %s": ["Fehler beim Beenden der Abfrage. %s"], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Der Tabellenschemastatus kann nicht zum Backend übertragen werden. Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." ], - "Results backend needed for asynchronous queries is not configured.": [ - "Das Ergebnis-Backend, das für asynchrone Abfragen benötigt wird, ist nicht konfiguriert." + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Der Abfragestatus kann nicht zum Backend übertragen werden. Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." ], - "Return to specific datetime.": [ - "Kehren Sie zu bestimmtem Zeitpunkt zurück." + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Der Status des Abfrage-Editors kann nicht zum Backend übertragen werden. Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." ], - "Reverse Lat & Long": ["Länge/Breite vertauschen "], - "Reverse lat/long ": ["Länge/Breite vertauschen "], - "Rich Tooltip": ["Umfangreicher Tooltip"], - "Rich tooltip": ["Umfangreicher Tooltip"], - "Right": ["Rechts"], - "Right Axis Format": ["Format der rechten Achse"], - "Right Axis Metric": ["Metrik der rechten Achse"], - "Right axis metric": ["Metrik der rechten Achse"], - "Right to Left": ["Rechts nach links"], - "Right value": ["Rechter Wert"], - "Right-click on a dimension value to drill to detail by that value.": [ - "Klicken Sie mit der rechten Maustaste auf einen Bemaßungswert, um einen Drilldown um diesen Wert durchzuführen." + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Dem Backend kann keine neue Registerkarte hinzugefügt werden. Wenden Sie sich an Ihre*n Administrator*in." ], - "Role": ["Rolle"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "Rolle %(r)s wurde erweitert, um den Zugriff auf die Datenquelle %(ds)s zu gewähren" + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "-- Hinweis: Wenn Sie Ihre Anfrage nicht speichern, bleiben diese Registerkarten NICHT bestehen, wenn Sie Ihre Cookies löschen oder den Browser wechseln.\n\n" ], - "Roles": ["Rollen"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ - "Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die generellen Berechtigungen angewendet." + "Copy of %s": ["Kopie von %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Beim Festlegen der aktiven Registerkarte ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ - "Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die generellen Berechtigungen angewendet." + "An error occurred while fetching tab state": [ + "Beim Abrufen des Registerkartenstatus ist ein Fehler aufgetreten" ], - "Roles to grant": ["Zu vergebende Rollen"], - "Rolling Function": ["Rollierende Funktion"], - "Rolling Window": ["Rollierendes Fenster"], - "Rolling function": ["Rollierende Funktion"], - "Rolling window": ["Rollierendes Fenster"], - "Root certificate": ["Root-Zertifikat"], - "Root node id": ["Wurzelknoten-ID"], - "Rotate axis label": ["Achsenbeschriftung drehen"], - "Rotate x axis label": ["X-Achsenbeschriftung drehen"], - "Rotation to apply to words in the cloud": [ - "Rotation, die auf Wörter in der Cloud angewendet werden soll" + "An error occurred while removing tab. Please contact your administrator.": [ + "Beim Entfernen der Registerkarte ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "Round cap": ["Runde Kappe"], - "Row": ["Zeile"], - "Row Level Security": ["Sicherheit auf Zeilenebene"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ - "Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden ist." + "An error occurred while removing query. Please contact your administrator.": [ + "Beim Entfernen der Abfrage ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden ist." + "Your query could not be saved": [ + "Ihre Abfrage konnte nicht gespeichert werden" ], - "Row limit": ["Zeilenlimit"], - "Rows": ["Zeilen"], - "Rows per page, 0 means no pagination": [ - "Zeilen pro Seite, 0 bedeutet keine Paginierung" + "Your query was not properly saved": [ + "Ihre Abfrage wurde nicht ordnungsgemäß gespeichert" ], - "Rows subtotal position": ["Zeilen Zwischensummenposition"], - "Rows to Read": ["Zu lesende Zeilen"], - "Rule": ["Regel"], - "Rule added": [""], - "Run": ["Ausführen"], - "Run a query to display query history": [ - "Abfrage zum Anzeigen des Abfrageverlaufs ausführen" + "Your query was saved": ["Ihre Abfrage wurde gespeichert"], + "Your query was updated": ["Ihre Abfrage wurde angehalten"], + "Your query could not be updated": [ + "Ihre Abfrage konnte nicht aktualisiert werden." ], - "Run a query to display results": [ - "Abfrage zum Anzeigen der Ergebnisse ausführen" + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Beim Speichern der Abfrage im Backend ist ein Fehler aufgetreten. Um zu vermeiden, dass Ihre Änderungen verloren gehen, speichern Sie Ihre Abfrage bitte über die Schaltfläche \"Abfrage speichern\"." ], - "Run in SQL Lab": ["Ausführen in SQL Lab"], - "Run query": ["Abfrage ausführen"], - "Run query (Ctrl + Return)": ["Abfrage ausführen (Strg + Return)"], - "Run query in a new tab": [ - "Abfrage auf einer neuen Registerkarte ausführen" + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "Run selection": ["Auswahl ausführen"], - "Running": ["Läuft"], - "Running statement %(statement_num)s out of %(statement_count)s": [ - "Führe Anweisung %(statement_num)s von %(statement_count)s aus" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Beim Erweitern des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "SAT": ["SA"], - "SEP": ["SEP"], - "SHA": ["SHA"], - "SQL": ["SQL"], - "SQL Copied!": ["SQL kopiert!"], - "SQL Expression": ["SQL-Ausdruck"], - "SQL Lab": ["SQL Lab"], - "SQL Lab View": ["SQL Lab Anzeige"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ - "SQL Lab verwendet den lokalen Speicher Ihres Browsers, um Abfragen und Ergebnisse zu speichern.\nDerzeit verwenden Sie %(currentUsage)s KB von %(maxStorage)d KB Speicherplatz.\nUm zu verhindern, dass SQL Lab abstürzt, löschen Sie einige Abfrageregisterkarten.\nSie können erneut auf diese Abfragen zugreifen, indem Sie die Funktion Speichern verwenden, bevor Sie die Registerkarte löschen.\nBeachten Sie, dass Sie andere SQL Lab-Fenster schließen müssen, bevor Sie dies tun." + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Beim Reduzieren des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "SQL Query": ["SQL Abfrage"], - "SQL expression": ["SQL-Ausdruck"], - "SQL query": ["SQL Abfrage"], - "SQLAlchemy URI": ["SQLAlchemy-URI"], - "SSH Host": ["SSH-Host"], - "SSH Password": ["SSH-Passwort"], - "SSH Port": ["SSH Port"], - "SSH Tunnel": ["SSH-Tunnel"], - "SSH Tunnel configuration parameters": [ - "Konfigurationsparameter für den SSH-Tunnel" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Beim Entfernen des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie sich an Ihre*n Administrator*in." ], - "SSH Tunnel could not be deleted.": [ - "SSH-Tunnel konnte nicht gelöscht werden." + "Shared query": ["Geteilte Abfrage"], + "The datasource couldn't be loaded": [ + "Datenquelle konnte nicht geladen werden" ], - "SSH Tunnel could not be updated.": [ - "SSH-Tunnel konnte nicht aktualisiert werden." + "An error occurred while creating the data source": [ + "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten" ], - "SSH Tunnel not found.": ["SSH-Tunnel nicht gefunden."], - "SSH Tunnel parameters are invalid.": [ - "SSH-Tunnelparameter sind ungültig." + "An error occurred while fetching function names.": [ + "Fehler bei Abruf von Funktionsnamen." ], - "SSH Tunneling is not enabled": ["SSH-Tunneling ist nicht aktiviert"], - "SSL Mode \"require\" will be used.": [ - "SSL-Modus „require“ wird verwendet." + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "SQL Lab verwendet den lokalen Speicher Ihres Browsers, um Abfragen und Ergebnisse zu speichern.\nDerzeit verwenden Sie %(currentUsage)s KB von %(maxStorage)d KB Speicherplatz.\nUm zu verhindern, dass SQL Lab abstürzt, löschen Sie einige Abfrageregisterkarten.\nSie können erneut auf diese Abfragen zugreifen, indem Sie die Funktion Speichern verwenden, bevor Sie die Registerkarte löschen.\nBeachten Sie, dass Sie andere SQL Lab-Fenster schließen müssen, bevor Sie dies tun." ], - "START (INCLUSIVE)": ["START (INKLUSIVE)"], - "STEP %(stepCurr)s OF %(stepLast)s": [ - "SCHRITT %(stepCurr)s VON %(stepLast)s" + "Primary key": ["Primärschlüssel"], + "Foreign key": ["Fremdschlüssel"], + "Index": ["Index"], + "Estimate selected query cost": [ + "Schätze Kosten für ausgewählte Abfragen" ], - "STRING": ["TEXT"], - "SUN": ["SO"], - "Sample Standard Deviation": ["Standardabweichung von Stichprobe"], - "Sample Variance": ["Stichprobenvarianz"], - "Samples": ["Beispiele"], - "Samples for dataset could not be retrieved.": [ - "Beispiele für Datensatz konnten nicht abgerufen werden." + "Estimate cost": ["Kosten schätzen"], + "Cost estimate": ["Kostenschätzung"], + "Creating a data source and creating a new tab": [ + "Erstelle eine Datenquelle und eine neue Registerkarte" ], - "Samples for datasource could not be retrieved.": [ - "Beispiele für die Datenquelle konnten nicht abgerufen werden." + "An error occurred": ["Ein Fehler ist aufgetreten"], + "Explore the result set in the data exploration view": [ + "Untersuchen der Ergebnismenge in der Datenexplorations-Ansicht" ], - "Sankey": ["Sankey"], - "Sankey Diagram": ["Sankey-Diagramm"], - "Sankey Diagram with Loops": ["Sankey-Diagramm mit Schleifen"], - "Satellite": ["Satellit"], - "Satellite Streets": ["Satellit Straßen"], - "Saturday": ["Samstag"], - "Save": ["Speichern"], - "Save & Explore": ["Speichern & Erkunden"], - "Save & go to dashboard": ["Speichern & zum Dashboard gehen"], - "Save & go to new dashboard": [ - "Speichern & zum neuen Dashboard wechseln" + "explore": ["Erkunden"], + "Create Chart": ["Diagramm erstellen"], + "Source SQL": ["Quell-SQL"], + "Executed SQL": ["Ausgeführtes SQL"], + "Run query": ["Abfrage ausführen"], + "Stop query": ["Abfrage anhalten"], + "New tab": ["Neuer Tab"], + "Previous Line": ["Vorherige Zeile"], + "Keyboard shortcuts": [""], + "Run a query to display query history": [ + "Abfrage zum Anzeigen des Abfrageverlaufs ausführen" ], - "Save (Overwrite)": ["Speichern (Überschreiben)"], - "Save as": ["Speichern als"], - "Save as Dataset": ["Als Datensatz speichern"], - "Save as dataset": ["Als Datensatz speichern"], - "Save as new": ["Speichern unter…"], - "Save as new chart": ["Als neues Dashboard speichern"], - "Save as...": ["Speichern unter..."], - "Save as:": ["Speichern unter:"], - "Save changes": ["Änderungen speichern"], - "Save chart": ["Diagramm speichern"], - "Save dashboard": ["Dashboard speichern"], - "Save dataset": ["Datensatz speichern"], - "Save for this session": ["Für diese Sitzung speichern"], - "Save or Overwrite Dataset": [ - "Speichern oder Überschreiben des Datensatzes" + "LIMIT": ["GRENZE"], + "State": ["Zustand"], + "Started": ["Gestartet"], + "Duration": ["Dauer"], + "Results": ["Ergebnisse"], + "Actions": ["Aktion"], + "Success": ["Erfolg"], + "Failed": ["Fehlgeschlagen"], + "Running": ["Läuft"], + "Fetching": ["Wird abgerufen"], + "Offline": ["Offline"], + "Scheduled": ["Geplant"], + "Unknown Status": ["Status unbekannt"], + "Edit": ["Bearbeiten"], + "View": ["Ansicht"], + "Data preview": ["Datenvorschau"], + "Overwrite text in the editor with a query on this table": [ + "Überschreiben von Text im Editor mit einer Abfrage für diese Tabelle" ], - "Save query": ["Speichere Abfrage"], - "Save the query to enable this feature": [ - "Speichern Sie die Abfrage, um diese Funktion zu aktivieren" + "Run query in a new tab": [ + "Abfrage auf einer neuen Registerkarte ausführen" + ], + "Remove query from log": ["Abfrage aus Protokoll entfernen"], + "Unable to create chart without a query id.": [ + "Diagramm kann ohne Abfrage-ID nicht erstellt werden." ], + "Save & Explore": ["Speichern & Erkunden"], + "Overwrite & Explore": ["Überschreiben & Erkunden"], "Save this query as a virtual dataset to continue exploring": [ "Speichern Sie diese Abfrage als virtuellen Datensatz, um mit der Erkundung fortzufahren." ], - "Save to new dashboard": ["Im neuem Dashboard speichern"], - "Saved": ["Speichern als"], - "Saved Queries": ["Gespeicherte Abfragen"], - "Saved expressions": ["Gespeicherte Ausdrücke"], - "Saved metric": ["Gespeicherte Abfragen"], - "Saved queries": ["Gespeicherte Abfragen"], - "Saved queries could not be deleted.": [ - "Gespeicherte Abfragen konnten nicht gelöscht werden." + "Download to CSV": ["Als CSV herunterladen"], + "Copy to Clipboard": ["In Zwischenablage kopieren"], + "Filter results": ["Ergebnisse filtern"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "Die Anzahl der angezeigten Ergebnisse ist durch die Konfiguration DISPLAY_MAX_ROW auf %(rows)d begrenzt. Bitte fügen Sie zusätzliche Limits/Filter hinzu oder laden Sie sie als CSDV-Datei herunter, um weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." ], - "Saved query not found.": ["Gespeicherte Abfrage nicht gefunden."], - "Saved query parameters are invalid.": [ - "Gespeicherte Abfrageparameter sind ungültig." + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Die Anzahl der angezeigten Ergebnisse ist auf %(rows)d begrenzt. Bitte fügen Sie zusätzliche Limits/Filter hinzu, laden Sie sie als CSV-Datei herunter oder wenden Sie sich an eine*n Administrator*in, um weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." ], - "Scale and Move": ["Skalieren und Verschieben"], - "Scale only": ["Nur Skalieren"], - "Scatter": ["Streudiagramm"], - "Scatter Plot": ["Streudiagramm"], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Das Punktdiagramm hat die horizontale Achse in linearen Einheiten, und die Punkte sind in der richtigen Reihenfolge verbunden. Es zeigt eine statistische Beziehung zwischen zwei Variablen." + "The number of rows displayed is limited to %(rows)d by the query": [ + "Die Anzahl der angezeigten Zeilen ist durch die Abfrage auf %(rows)d beschränkt" ], - "Schedule": ["Zeitplan"], - "Schedule a new email report": ["Planen eines neuen E-Mail-Berichts"], - "Schedule email report": ["Planen von E-Mail-Reports"], - "Schedule query": ["Abfrage einplanen"], - "Schedule settings": ["Zeitplan-Einstellungen"], - "Schedule the query periodically": [ - "Abfrage in regelmäßigen Abständen einplanen" - ], - "Scheduled": ["Geplant"], - "Scheduled at (UTC)": ["Geplant um (UTC)"], - "Scheduled task executor not found": [ - "Geplanter Task-Executor nicht gefunden" - ], - "Schema": ["Schema"], - "Schema cache timeout": ["Zeitüberschreitung Schema-Zwischenspeicher"], - "Schema undefined": ["Schema nicht definiert"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Schema, wie es nur in einigen Datenbanken wie Postgres, Redshift und DB2 verwendet wird" + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "Die Anzahl der angezeigten Zeilen ist durch Dropdownliste \"Limit\" auf %(rows)d beschränkt." ], - "Schemas allowed for File upload": [ - "Zulässige Schemata für den Datei-Upload" + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Die Anzahl der angezeigten Zeilen ist durch Dropdownliste-Abfrage und -Limit auf %(rows)d beschränkt." ], - "Scope": ["Geltungsbereich"], - "Scoping": ["Auswahlverfahren"], - "Scroll": ["Scrollen"], - "Scroll down to the bottom to enable overwriting changes. ": [ - "Scrollen Sie nach unten, um das Überschreiben von Änderungen zu aktivieren. " + "%(rows)d rows returned": ["%(rows)d Zeilen zurückgegeben"], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "Die Anzahl der angezeigten Zeilen ist durch das Dropdown-Menü auf %(rows)d beschränkt." ], - "Search": ["Suche"], - "Search / Filter": ["Suchen / Filtern"], - "Search Metrics & Columns": ["Metriken & Spalten durchsuchen"], - "Search all charts": ["Alle Diagramm durchsuchen"], - "Search all filter options": ["Alle Filteroptionen durchsuchen"], - "Search box": ["Suchfeld"], - "Search by query text": ["Suche nach Abfragetext"], - "Search columns": ["Suchspalten"], - "Search in filters": ["Suche in Filtern"], - "Search tables": ["Tabellen durchsuchen"], - "Search...": ["Suche..."], - "Second": ["Sekunde"], - "Secondary": ["Sekundär"], - "Secondary Metric": ["Sekundäre Metrik"], - "Secondary y-axis format": ["Sekundäres y-Achsenformat"], - "Secondary y-axis title": ["Titel der sekundären y-Achse"], - "Seconds %s": ["Sekunden %s"], - "Secure Extra": ["Sicherheit Extra"], - "Secure extra": ["Sicherheit extra"], - "Security": ["Sicherheit"], - "Security & Access": ["Sicherheit & Zugriff"], - "See all %(tableName)s": ["Alle %(tableName)s ansehen"], - "See less": ["Weniger anzeigen"], - "See more": ["Mehr anzeigen"], + "Track job": ["Auftrag verfolgen"], "See query details": ["Abfragedetails anzeigen"], - "See table schema": ["Siehe Tabellenschema"], - "Select": ["Auswählen"], - "Select ...": ["Auswählen …"], - "Select Delivery Method": ["Übermittlungsmethode hinzufügen"], - "Select Viz Type": ["Visualisierungstyp wählen"], - "Select a Columnar file to be uploaded to a database.": [ - "Wählen Sie eine tabellarische Datei aus, die in eine Datenbank hochgeladen werden soll." - ], - "Select a Excel file to be uploaded to a database.": [ - "Wählen Sie eine Excel-Datei aus, die in eine Datenbank hochgeladen werden soll." + "Query was stopped": ["Abfrage wurde angehalten"], + "Database error": ["Datenbankfehler"], + "was created": ["wurde erstellt"], + "Query in a new tab": ["Abfrage auf einer neuen Registerkarte"], + "The query returned no data": [ + "Die Abfrage hat keine Daten zurückgegeben" ], - "Select a column": ["Spalte wählen"], - "Select a dashboard": ["Dashboard auswählen"], - "Select a database table and create dataset": [ - "Auswählen einer Datenbanktabelle und Erstellen eines Datensatzes" + "Fetch data preview": ["Datenvorschau abrufen"], + "Refetch results": ["Ergebnisse erneut anfordern"], + "Stop": ["Stopp"], + "Run selection": ["Auswahl ausführen"], + "Run": ["Ausführen"], + "Stop running (Ctrl + x)": ["Ausführung abbrechen (Strg + x)"], + "Stop running (Ctrl + e)": ["Beenden der Ausführung (Strg + e)"], + "Run query (Ctrl + Return)": ["Abfrage ausführen (Strg + Return)"], + "Save": ["Speichern"], + "Untitled Dataset": ["Unbenannter Datensatz"], + "An error occurred saving dataset": [ + "Beim Speichern des Datensatz ist ein Fehler aufgetreten" ], - "Select a database table.": ["Wählen Sie eine Datenbanktabelle aus."], - "Select a database to connect": [ - "Wählen Sie eine Datenbank aus, mit der eine Verbindung hergestellt werden soll" + "Save or Overwrite Dataset": [ + "Speichern oder Überschreiben des Datensatzes" ], - "Select a database to upload the file to": [ - "Wählen Sie eine Datenbank aus, in die die Datei hochgeladen werden soll" + "Back": ["Zurück"], + "Save as new": ["Speichern unter…"], + "Overwrite existing": ["Bestehende überschreiben"], + "Select or type dataset name": ["Datensatzname auswählen oder eingeben"], + "Existing dataset": ["Vorhandener Datensatz"], + "Are you sure you want to overwrite this dataset?": [ + "Möchten Sie diesen Datensatz wirklich überschreiben?" ], - "Select a database to write a query": [ - "Auswählen einer Datenbank zum Schreiben einer Abfrage" + "Undefined": ["Undefiniert"], + "Save dataset": ["Datensatz speichern"], + "Save as": ["Speichern als"], + "Save query": ["Speichere Abfrage"], + "Cancel": ["Abbrechen"], + "Update": ["Aktualisieren"], + "Label for your query": ["Bezeichnung für Ihre Anfrage"], + "Write a description for your query": ["Beschreibung Ihrer Anfrage"], + "Submit": ["Senden"], + "Schedule query": ["Abfrage einplanen"], + "Schedule": ["Zeitplan"], + "There was an error with your request": [ + "Bei Ihrer Anfrage ist ein Fehler aufgetreten" ], - "Select a dimension": ["Wählen Sie eine Dimension"], - "Select a file to be uploaded to the database": [ - "Wählen Sie eine Datei aus, die in die Datenbank hochgeladen werden soll" + "Please save the query to enable sharing": [ + "Bitte speichern Sie die Abfrage, um die Freigabe zu aktivieren" ], - "Select a schema if the database supports this": [ - "Wählen Sie ein Schema aus, wenn die Datenbank dies unterstützt" + "Copy query link to your clipboard": [ + "Abfragelink in die Zwischenablage kopieren" ], - "Select a visualization type": ["Visualisierungstyp wählen"], - "Select aggregate options": ["Aggregierungsoptionen auswählen"], - "Select all data": ["Alle Daten auswählen"], - "Select all items": ["Alle Elemente auswählen"], - "Select any columns for metadata inspection": [ - "Auswählen beliebiger Spalten für die Metadatenüberprüfung" + "Save the query to enable this feature": [ + "Speichern Sie die Abfrage, um diese Funktion zu aktivieren" ], - "Select charts": ["Diagramme auswählen"], - "Select color scheme": ["Farbschema auswählen"], - "Select column": ["Spalte auswählen"], - "Select current page": ["Aktuelle Seite auswählen"], - "Select database & schema": ["Datenbank & Schema auswählen"], - "Select database or type to search databases": [ - "Datenbank auswählen oder tippen zum Suchen von Datenbanken" + "Copy link": ["Link kopieren"], + "No stored results found, you need to re-run your query": [ + "Keine gespeicherten Ergebnisse gefunden. Sie müssen Ihre Abfrage erneut ausführen" ], - "Select database table": ["Datenbanktabelle auswählen"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "Für ausgewählte Datenbanken müssen zusätzliche Felder auf der Registerkarte Erweitert ausgefüllt werden, um die Datenbank erfolgreich zu verbinden. Erfahren Sie, welche Anforderungen Ihre Datenbanken haben " + "Run a query to display results": [ + "Abfrage zum Anzeigen der Ergebnisse ausführen" ], - "Select dataset source": ["Datensatz-Quelle auswählen"], - "Select file": ["Datei auswählen"], - "Select filter": ["Filter auswählen"], - "Select filter plugin using AntD": ["Filter-Plugin mit AntD auswählen"], - "Select first filter value by default": [ - "Standardmäßig erste Ersten Filterwert auswählen" + "Preview: `%s`": ["Vorschau: `%s"], + "Query history": ["Abfragenverlauf"], + "Schedule the query periodically": [ + "Abfrage in regelmäßigen Abständen einplanen" ], - "Select operator": ["Operator auswählen"], - "Select or type a value": ["Wert eingeben oder auswählen"], - "Select or type dataset name": ["Datensatzname auswählen oder eingeben"], - "Select owners": ["Besitzende auswählen"], - "Select saved metrics": ["Gespeicherte Metriken auswählen"], - "Select schema or type to search schemas": [ - "Schema auswählen oder tippen, um Schemas zu suchen" + "You must run the query successfully first": [ + "Sie müssen die Abfrage zuerst erfolgreich ausführen" ], - "Select scheme": ["Schema auswählen"], - "Select start and end date": ["Start- und Enddatum auswählen"], - "Select subject": ["Betreff auswählen"], - "Select table or type to search tables": [ - "Tabelle auswählen oder tippen, um Tabellen zu suchen" + "Autocomplete": ["Autovervollständigung"], + "CREATE TABLE AS": ["CREATE TABLE AS"], + "CREATE VIEW AS": ["CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "Schätzen der Kosten vor dem Ausführen einer Abfrage" ], - "Select the Annotation Layer you would like to use.": [ - "Wählen Sie den Anmerkungs-Layer aus, den Sie verwenden möchten." + "Specify name to CREATE VIEW AS schema in: public": [ + "Geben Sie den Namen für CREATE VIEW AS in Schema public an:" ], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Specify name to CREATE TABLE AS schema in: public": [ + "Geben Sie den Namen für das CREATE TABLE AS in Schema public an:" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Select a database to write a query": [ + "Auswählen einer Datenbank zum Schreiben einer Abfrage" ], - "Select the geojson column": ["Wählen Sie die GeoJSON-Spalte aus"], - "Select the number of bins for the histogram": [ - "Wählen Sie die Anzahl der Klassen für das Histogramm aus" + "Choose one of the available databases from the panel on the left.": [ + "Wählen Sie einen der verfügbaren Datensätze aus dem Bereich auf der linken Seite." ], - "Select the numeric columns to draw the histogram": [ - "Auswählen der numerischen Spalten zum Zeichnen des Histogramms" + "Create": ["Erstellen"], + "Collapse table preview": ["Tabellenvorschau komprimieren"], + "Expand table preview": ["Tabellenvorschau erweitern"], + "Reset state": ["Status zurücksetzen"], + "Enter a new title for the tab": [ + "Geben Sie einen neuen Titel für die Registerkarte ein" ], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ - "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." + "Close tab": ["Registerkarte schließen"], + "Rename tab": ["Registerkarte umbenennen"], + "Expand tool bar": ["Werkzeugleiste erweitern"], + "Hide tool bar": ["Werkzeugleiste ausblenden"], + "Close all other tabs": ["Schließen Sie alle anderen Registerkarten"], + "Duplicate tab": ["Registerkarte duplizieren"], + "Add a new tab": ["Neu Registerkarte hinzufügen"], + "New tab (Ctrl + q)": ["Neue Registerkarte (Strg + q)"], + "New tab (Ctrl + t)": ["Neue Registerkarte (Strg + t)"], + "Add a new tab to create SQL Query": [ + "Neue Registerkarte zum Erstellen einer SQL-Abfrage hinzufügen" ], - "Send as CSV": ["Als CSV senden"], - "Send as PNG": ["Als PNG senden"], - "Send as text": ["Als Text senden"], - "Send range filter events to other charts": [ - "Bereichsfilter-Ereignisse an andere Diagramme senden" + "An error occurred while fetching table metadata": [ + "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten" ], - "September": ["September"], - "Sequential": ["Fortlaufend"], - "Series": ["Zeitreihen"], - "Series Height": ["Zeitreihenhöhe"], - "Series Limit Sort By": ["Zeitreihenlimit Sortieren nach"], - "Series Limit Sort Descending": ["Zeitreihenlimit absteigend sortieren"], - "Series Order": ["Zeitreihen-Reihenfolge"], - "Series Style": ["Zeitreihenstil"], - "Series chart type (line, bar etc)": [ - "Zeitreihendiagrammtyp (Linie, Balken usw.)" + "Copy partition query to clipboard": [ + "Partitionsabfrage in Zwischenablage kopieren" ], - "Series limit": ["Zeitreihenbegrenzung"], - "Series type": ["Zeitreihentyp"], - "Server Page Length": ["Server-Seitenlänge"], - "Server pagination": ["Server-Paginierung"], - "Service Account": ["Dienstkonto"], - "Set auto-refresh interval": ["Auto-Aktualisieren-Interval setzen"], - "Set filter mapping": ["Festlegen der Filterzuordnung"], - "Set up an email report": ["E-Mail-Report einrichten"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "Legt die Hierarchieebenen des Diagramms fest. Jede Ebene ist\n dargestellt durch einen Ring mit dem innersten Kreis als Spitze der Hierarchie." + "latest partition:": ["neueste Partition:"], + "Keys for table": ["Schlüssel für Tabelle"], + "View keys & indexes (%s)": ["Schlüssel und Indizes anzeigen (%s)"], + "Original table column order": [ + "Ursprüngliche Tabellenspaltenreihenfolge" ], - "Settings": ["Einstellungen"], - "Settings for time series": ["Einstellungen für Zeitreihen"], - "Share": ["Teilen"], - "Share chart by email": ["Diagramm per Email teilen"], - "Share permalink by email": ["Permalink per E-Mail teilen"], - "Shared query": ["Geteilte Abfrage"], - "Shared query fields": ["Freigegebene Abfragefelder"], - "Sheet Name": ["Blattname"], - "Shift + Click to sort by multiple columns": [ - "UMSCHALT+Klicken um nach mehreren Spalten zu sortieren" + "Sort columns alphabetically": ["Spalten alphabetisch sortieren"], + "Copy SELECT statement to the clipboard": [ + "SELECT-Anweisung in die Zwischenablage kopieren" ], - "Short description must be unique for this layer": [ - "Kurzbeschreibung muss für diese Ebene eindeutig sein" - ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Sollte tägliche Saisonalität angewendet werden. Ein ganzzahliger Wert gibt die Fourier-Reihenfolge der Saisonalität an." - ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Sollte wöchentliche Saisonalität angewendet werden. Ein ganzzahliger Wert gibt die Fourier-Reihenfolge der Saisonalität an." - ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Sollte jährliche Saisonalität angewendet werden. Ein ganzzahliger Wert gibt die Fourier-Reihenfolge der Saisonalität an." - ], - "Show": ["Anzeigen"], - "Show Bubbles": ["Blasen anzeigen"], "Show CREATE VIEW statement": ["CREATE VIEW-Anweisung anzeigen"], - "Show CSS Template": ["CSS Vorlagen anzeigen"], - "Show Chart": ["Diagramm anzeigen"], - "Show Column": ["Spalte anzeigen"], - "Show Dashboard": ["Dashboard anzeigen"], - "Show Database": ["Datenbank anzeigen"], - "Show Labels": ["Beschriftung anzeigen"], - "Show Less...": ["Weniger anzeigen..."], - "Show Log": ["Protokoll anzeigen"], - "Show Markers": ["Markierungen anzeigen"], - "Show Metric": ["Metrik anzeigen"], - "Show Metric Names": ["Metriknamen anzeigen"], - "Show Range Filter": ["Bereichsfilter anzeigen"], - "Show Saved Query": ["Gespeicherte Abfrage anzeigen"], - "Show Table": ["Tabelle anzeigen"], - "Show Timestamp": ["Zeitstempel anzeigen"], - "Show Total": ["Gesamtsumme anzeigen"], - "Show Trend Line": ["Trendlinie anzeigen"], - "Show Upper Labels": ["Obere Beschriftungen anzeigen"], - "Show Value": ["Wert anzeigen"], - "Show Values": ["Werte anzeigen"], - "Show Y-axis": ["Y-Achse anzeigen"], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "Y-Achse auf der Sparkline anzeigen. Zeigt die manuell eingestellten Min/Max-Werte an, falls festgelegt, andernfalls Min/Max-Werte der Daten." - ], - "Show all columns": ["Alle Spalten anzeigen"], - "Show all...": ["Zeige alle …"], - "Show axis line ticks": ["Anzeigen von Achsenlinien-Ticks"], - "Show cell bars": ["Zellenbalken anzeigen"], - "Show chart description": ["Diagrammbeschreibung anzeigen"], - "Show columns total": ["Spaltensumme anzeigen"], - "Show data points as circle markers on the lines": [ - "Datenpunkte als Kreismarkierungen auf den Linien darstellen" - ], - "Show empty columns": ["Leere Spalten anzeigen"], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ - "Zeigen Sie hierarchische Beziehungen von Daten, wobei der Wert durch Fläche dargestellt wird, der Anteil und Beitrag zum Ganzen zeigt." - ], - "Show info tooltip": ["Info-Tooltip anzeigen"], - "Show label": ["Beschriftung anzeigen"], - "Show labels when the node has children.": [ - "Zeigen Sie Beschriftungen an, wenn der Knoten untergeordnete Elemente hat." - ], - "Show legend": ["Legende anzeigen"], - "Show less columns": ["Weniger Spalten anzeigen"], - "Show less...": ["Weniger..."], - "Show only my charts": ["Nur meine Diagramme anzeigen"], - "Show password.": ["Passwort anzeigen."], - "Show percentage": ["Prozentsatz anzeigen"], - "Show pointer": ["Zeiger anzeigen"], - "Show progress": ["Fortschritt anzeigen"], - "Show rows total": ["Zeilensumme anzeigen"], - "Show series values on the chart": ["Reihenwerten im Diagramm anzeigen"], - "Show split lines": ["Geteilte Linien anzeigen"], - "Show the value on top of the bar": [ - "Anzeigen des Werts oben auf der Leiste" - ], - "Show time column": ["Zeitspalte anzeigen"], - "Show time grain dropdown": ["Dropdown-Liste Zeiteinheiten anzeigen"], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "Zeigen Sie die Gesamtaggregationen ausgewählter Metriken an. Beachten Sie, dass das Zeilenlimit nicht für das Ergebnis gilt." - ], - "Show totals": ["Gesamtwerte anzeigen"], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "Zeigt eine einzelne Metrik im Vordergrund. ‚Große Zahl‘ wird am besten verwendet, um die Aufmerksamkeit auf einen KPI oder die eine Information zu lenken, auf die sich Ihr Publikum konzentrieren soll." - ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "Zeigt eine einzelne Zahl zusammen mit einem einfachen Liniendiagramm, um die Aufmerksamkeit auf eine wichtige Metrik zusammen mit ihrer Veränderung im Laufe der Zeit oder einer anderen Dimension zu lenken." + "CREATE VIEW statement": ["CREATE VIEW-Anweisung"], + "Remove table preview": ["Tabellenvorschau entfernen"], + "Assign a set of parameters as": ["Eines Satz von Parametern zuweisen"], + "below (example:": ["unten (Beispiel:"], + "), and they become available in your SQL (example:": [ + "), und sie werden in Ihrem SQL verfügbar (Beispiel:" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "Zeigt, wie sich eine Metrik im Laufe des Trichters ändert. Dieses klassische Diagramm ist nützlich, um den Abfall zwischen Phasen in einer Pipeline oder einem Lebenszyklus zu visualisieren." + "by using": ["durch die Verwendung von"], + "Jinja templating": ["Jinja Vorlagen"], + "syntax.": ["Syntax."], + "Edit template parameters": ["Vorlagenparameter bearbeiten"], + "Parameters ": ["Parameter"], + "Invalid JSON": ["Ungültiges JSON"], + "Untitled query": ["Unbenannte Abfrage"], + "%s%s": ["%s%s"], + "Control": ["Steuerung"], + "Before": ["Vor"], + "After": ["Nach"], + "Click to see difference": ["Klicken zum Anzeigen der Unterschiede"], + "Altered": ["Geändert"], + "Chart changes": ["Diagrammänderungen"], + "Loaded data cached": ["Geladene Daten zwischengespeichert"], + "Loaded from cache": ["Aus Zwischenspeicher geladen"], + "Click to force-refresh": [ + "Klicken Sie hier, um die Aktualisierung zu erzwingen" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "Zeigt den Fluss oder die Verknüpfung zwischen Kategorien anhand der Dicke der Sehnen. Der Wert und die entsprechende Dicke können für jede Seite unterschiedlich sein." + "Cached": ["Gecached"], + "Add required control values to preview chart": [ + "Erforderliche Steuerelementwerte zur Diagramm-Vorschau hinzufügen" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "Zeigt den Fortschritt einer einzelnen Metrik gegenüber einem bestimmten Ziel. Je höher die Füllung, desto näher ist die Metrik am Ziel." + "Your chart is ready to go!": ["Ihr Chart ist startklar!"], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Klicken Sie auf die Schaltfläche \"Diagramm erstellen\" in der Systemsteuerung auf der linken Seite, um eine Vorschau einer Visualisierung anzuzeigen oder" ], - "Showing %s of %s": ["Sie sehen %s von %s"], - "Shows a list of all series available at that point in time": [ - "Zeigt eine Liste aller zu diesem Zeitpunkt verfügbaren Zeitreihen an." + "click here": ["klicken Sie hier"], + "No results were returned for this query": [ + "Für diese Abfrage wurden keine Ergebnisse zurückgegeben" ], - "Shows or hides markers for the time series": [ - "Ein- oder Ausblenden von Markern für die Zeitreihe" + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Stellen Sie sicher, dass die Steuerelemente ordnungsgemäß konfiguriert sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." ], - "Significance Level": ["Signifikanzniveau"], - "Simple": ["Einfach"], - "Simple ad-hoc metrics are not enabled for this dataset": [ - "Einfache Ad-hoc-Metriken sind für diesen Datensatz nicht aktiviert" + "An error occurred while loading the SQL": [ + "Beim Laden des SQL ist ein Fehler aufgetreten" ], - "Single": ["Einzeln"], - "Single Metric": ["Einzelne Metrik"], - "Single Value": ["Einzelner Wert"], - "Single value": ["Einzelner Wert"], - "Single value type": ["Einzelwerttyp"], - "Size of edge symbols": ["Größe der Kantensymbole"], - "Size of marker. Also applies to forecast observations.": [ - "Größe des Markers. Gilt auch für Prognosebeobachtungen." + "Sorry, an error occurred": ["Leider ist ein Fehler aufgetreten"], + "Updating chart was stopped": [ + "Aktualisierung des Diagramms wurde abgebrochen" ], - "Sizes of vehicles": ["Fahrzeuggrößen"], - "Skip Blank Lines": ["Leerzeilen überspringen"], - "Skip Initial Space": ["Führende Leerzeichen überspringen"], - "Skip Rows": ["Zeilen überspringen"], - "Skip blank lines rather than interpreting them as Not A Number values": [ - "Überspringen Sie Leerzeilen, anstatt sie als Nicht-Zahl-Werte zu interpretieren" + "An error occurred while rendering the visualization: %s": [ + "Bei der Darstellung dieser Visualisierung ist ein Fehler aufgetreten: %s" ], - "Skip spaces after delimiter": [ - "Leerzeichen nach Trennzeichen überspringen." + "Network error.": ["Netzwerk-Fehler."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Der Kreuzfilter wird auf alle Diagramme angewendet, die diesenn Datensatz verwenden." ], - "Slug": ["Kopfzeile"], - "Small": ["Klein"], - "Small number format": ["Kleines Zahlenformat"], - "Smooth Line": ["Glatte Linie"], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "„Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne Winkel und harte Kanten wirkt „Glatte Linie“ manchmal passender und professioneller." + "You can also just click on the chart to apply cross-filter.": [ + "Sie können auch einfach auf das Diagramm klicken, um den Kreuzfilter anzuwenden." ], - "Solid": ["Durchgezogen"], - "Some roles do not exist": ["Einige Rollen sind nicht vorhanden"], - "Something went wrong.": ["Etwas ist schief gelaufen."], - "Sorry there was an error fetching database information: %s": [ - "Beim Abrufen von Datenbankinformationen ist leider ein Fehler aufgetreten: %s" + "Cross-filtering is not enabled for this dashboard.": [ + "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." ], - "Sorry there was an error fetching saved charts: ": [ - "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten: " + "This visualization type does not support cross-filtering.": [ + "Dieser Visualisierungstyp unterstützt keine Kreuzfilterung." ], - "Sorry, An error occurred": ["Leider ist ein Fehler aufgetreten"], - "Sorry, an error occurred": ["Leider ist ein Fehler aufgetreten"], - "Sorry, an unknown error occurred": [ - "Leider ist ein unbekannter Fehler aufgetreten" + "You can't apply cross-filter on this data point.": [ + "Sie können keinen Kreuzfilter auf diesen Datenpunkt anwenden." ], - "Sorry, an unknown error occurred.": [ - "Leider ist ein unbekannter Fehler aufgetreten." + "Remove cross-filter": ["Kreuzfilter entfernen"], + "Add cross-filter": ["Kreuzfilter hinzufügen"], + "Drill by is not yet supported for this chart type": [ + "Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp noch nicht unterstützt." ], - "Sorry, something went wrong. Embedding could not be deactivated.": [ - "Entschuldigung, etwas ist schief gelaufen. Die Einbettung konnte nicht deaktiviert werden." + "Drill by is not available for this data point": [ + "Heinzoomem ist für diesen Datenpunkt nicht verfügbar" ], - "Sorry, something went wrong. Try again later.": [ - "Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut." + "Drill by": ["Ins-Detail-Zoomen"], + "Search columns": ["Suchspalten"], + "No columns found": ["Keine Spalten gefunden"], + "Edit chart": ["Diagramm bearbeiten"], + "Close": ["Schließen"], + "Failed to load chart data.": [ + "Diagrammdaten konnten nicht geladen werden." ], - "Sorry, there appears to be no data": [ - "Leider scheint es keine Daten zu geben" + "Drill by: %s": ["Hineinzogen nach %s"], + "Results %s": ["Ergebnisse %s"], + "Drill to detail by": ["Zu Detail zoomen anhand"], + "Drill to detail": ["Ins-Detail-Zoomen"], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Das Zu-Detail-Zoomen (Drilldown) ist deaktiviert, da dieses Diagramm Daten nicht nach Dimensionswert gruppiert." ], - "Sorry, there was an error saving this %s: %s": [ - "Leider ist beim Speichern dieses %s ein Fehler aufgetreten: %s" + "Drill to detail by value is not yet supported for this chart type.": [ + "Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp noch nicht unterstützt." ], - "Sorry, there was an error saving this dashboard: %s": [ - "Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s" + "Right-click on a dimension value to drill to detail by that value.": [ + "Klicken Sie mit der rechten Maustaste auf einen Bemaßungswert, um einen Drilldown um diesen Wert durchzuführen." ], - "Sorry, your browser does not support copying.": [ - "Entschuldigung. Ihr Browser unterstützt leider kein Kopieren." + "Drill to detail: %s": ["Zu Detail zoomen: %s"], + "Formatting": ["Formatierung"], + "Formatted value": ["Formatierter Wert"], + "No rows were returned for this dataset": [ + "Für diesen Datensatz wurden keine Zeilen zurückgegeben" ], + "Reload": ["Neu laden"], + "Copy": ["Kopieren"], + "Copy to clipboard": ["In die Zwischenablage kopieren"], + "Copied to clipboard!": ["In Zwischenablage kopiert!"], "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ "Ihr Browser unterstützt leider kein Kopieren. Verwenden Sie Strg / Cmd + C!" ], - "Sort": ["Sortieren"], - "Sort Bars": ["Balken sortieren"], - "Sort Descending": ["Absteigend sortieren"], - "Sort Metric": ["Sortiermetrik"], - "Sort Series Ascending": ["Zeitreihen aufsteigend sortieren"], - "Sort Series By": ["Zeitreihen sortieren nach"], - "Sort X Axis": ["X-Achse sortieren"], - "Sort Y Axis": ["Y-Achse sortieren"], - "Sort ascending": ["Aufsteigend sortieren"], - "Sort bars by x labels.": ["Sortieren Sie Balken nach x-Beschriftungen."], - "Sort by": ["Sortieren nach"], - "Sort by %s": ["Sortieren nach %s"], - "Sort by metric": ["Nach Metrik sortieren"], - "Sort columns alphabetically": ["Spalten alphabetisch sortieren"], - "Sort columns by": ["Spalten sortieren nach"], - "Sort descending": ["Absteigend sortieren"], - "Sort filter values": ["Filterwerte sortieren"], - "Sort metric": ["Metrik anzeigen"], - "Sort rows by": ["Zeilen sortieren nach"], - "Sort series in ascending order": [ - "Sortieren von Zeitreihen in aufsteigender Reihenfolge" - ], - "Sort type": ["Art der Sortierung"], - "Source": ["Quelle"], - "Source / Target": ["Quelle / Ziel"], - "Source SQL": ["Quell-SQL"], - "Source category": ["Quellkategorie"], - "Sparkline": ["Sparkline"], - "Spatial": ["Raumbezug"], - "Specific Date/Time": ["Spezifisches Datum/Uhrzeit"], - "Specify a schema (if database flavor supports this).": [ - "Geben Sie ein Schema an (wenn die Datenbankvariante dies unterstützt)." - ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Geben Sie doppelte Spalten als \"X.0, X.1\" an." + "every": ["jeden"], + "every month": ["jeden Monat"], + "every day of the month": ["jeden Tag des Monats"], + "day of the month": ["Tag des Monats"], + "every day of the week": ["jeden Tag der Woche"], + "day of the week": ["Wochentag"], + "every hour": ["stündlich"], + "every minute": ["jede Minute"], + "minute": ["Minute"], + "reboot": ["Neu starten"], + "Every": ["Jeden"], + "in": ["in"], + "on": ["an"], + "and": ["und"], + "at": ["bei"], + ":": [":"], + "minute(s)": ["Minute(n)"], + "Invalid cron expression": ["Ungültiger Cron-Ausdruck"], + "Clear": ["Zurücksetzen"], + "Sunday": ["Sonntag"], + "Monday": ["Montag"], + "Tuesday": ["Dienstag"], + "Wednesday": ["Mittwoch"], + "Thursday": ["Donnerstag"], + "Friday": ["Freitag"], + "Saturday": ["Samstag"], + "January": ["Januar"], + "February": ["Februar"], + "March": ["März"], + "April": ["April"], + "May": ["Mai"], + "June": ["Juni"], + "July": ["Juli"], + "August": ["August"], + "September": ["September"], + "October": ["Oktober"], + "November": ["November"], + "December": ["Dezember"], + "SUN": ["SO"], + "MON": ["MO"], + "TUE": ["DI"], + "WED": ["MI"], + "THU": ["DO"], + "FRI": ["FR"], + "SAT": ["SA"], + "JAN": ["JAN"], + "FEB": ["FEB"], + "MAR": ["MÄR"], + "APR": ["APR"], + "MAY": ["MAI"], + "JUN": ["JUN"], + "JUL": ["JUL"], + "AUG": ["AUG"], + "SEP": ["SEP"], + "OCT": ["OKT"], + "NOV": ["NOV"], + "DEC": ["DEZ"], + "There was an error loading the schemas": [ + "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" ], - "Specify name to CREATE TABLE AS schema in: public": [ - "Geben Sie den Namen für das CREATE TABLE AS in Schema public an:" + "Select database or type to search databases": [ + "Datenbank auswählen oder tippen zum Suchen von Datenbanken" ], - "Specify name to CREATE VIEW AS schema in: public": [ - "Geben Sie den Namen für CREATE VIEW AS in Schema public an:" + "Force refresh schema list": ["Aktualisierung der Schemaliste erzwingen"], + "Select schema or type to search schemas": [ + "Schema auswählen oder tippen, um Schemas zu suchen" ], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "Geben Sie die Datenbankversion an. Dies sollte mit Presto verwendet werden, um eine Abfragekostenschätzung zu ermöglichen." + "No compatible schema found": ["Kein kompatibles Schema gefunden"], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Warnung! Wenn Sie den Datensatz ändern, kann das Diagramm beeinträchtigt werden, wenn die Metadaten nicht vorhanden sind." ], - "Split number": ["Zahl aufteilen"], - "Square kilometers": ["Quadratkilometern"], - "Square meters": ["Quadratmeter"], - "Square miles": ["Quadratmeilen"], - "Stack": ["Gestapelt"], - "Stack Trace:": ["Stacktrace"], - "Stack series": ["Stack-Serie"], - "Stack series on top of each other": ["Reihen übereinander stapeln"], - "Stacked": ["Gestapelt"], - "Stacked Bars": ["Gestapelte Balken"], - "Stacked Style": ["Gestapelter Stil"], - "Stacked style": ["Gestapelter Stil"], - "Standard time series": ["Standard-Zeitreihen"], - "Start": ["Start"], - "Start (Longitude, Latitude): ": ["Start (Längengrad, Breitengrad): "], - "Start Longitude & Latitude": ["Start Längengrad & Breitengrad"], - "Start Review": ["Starte Prüfung"], - "Start angle": ["Startwinkel"], - "Start at (UTC)": ["Starten um (UT)"], - "Start date": ["Startdatum"], - "Start date included in time range": [ - "Startdatum im Zeitbereich enthalten" + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Durch das Ändern des Datensatzes kann das Diagramm beeinträchtigt werden, wenn das Diagramm auf Spalten oder Metadaten basiert, die im Zieldatensatz nicht vorhanden sind" ], - "Start y-axis at 0": ["y-Achse bei 0 beginnen"], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "Beginnen Sie die y-Achse bei Null. Deaktivieren Sie das Kontrollkästchen, um die y-Achse beim Minimalwert in den Daten beginnen zu lassen." + "dataset": ["Datensatz"], + "Successfully changed dataset!": ["Datensatz erfolgreich geändert!"], + "Connection": ["Verbindung"], + "Swap dataset": ["Datensatz austauschen"], + "Proceed": ["Fortfahren"], + "Warning!": ["Warnung!"], + "Search / Filter": ["Suchen / Filtern"], + "Add item": ["Element hinzufügen"], + "STRING": ["TEXT"], + "NUMERIC": ["NUMERISCH"], + "DATETIME": ["DATUM/UHRZEIT"], + "BOOLEAN": ["WAHRHEITSWERT"], + "Physical (table or view)": ["Physisch (Tabelle oder Ansicht)"], + "Virtual (SQL)": ["Virtuell (SQL)"], + "Data type": ["Datentyp"], + "Advanced data type": ["Erweiterter Datentyp"], + "Advanced Data type": ["Erweiterter Datentyp"], + "Datetime format": ["Datum Zeit Format"], + "The pattern of timestamp format. For strings use ": [ + "Das Muster des Zeitstempelformats. Für Zeichenfolgen verwenden Sie eine " ], - "Started": ["Gestartet"], - "State": ["Zustand"], - "Statement %(statement_num)s out of %(statement_count)s": [ - "Anweisung %(statement_num)s von %(statement_count)s" + "Python datetime string pattern": ["Python Datetime-Zeichenfolge"], + " expression which needs to adhere to the ": [" die dem "], + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + " Standard genügen muss, um sicherzustellen, dass die lexikographische Reihenfolge\n mit der chronologischen Reihenfolge übereinstimmt. Wenn das\n Zeitstempelformat nicht dem ISO 8601-Standard entspricht,\n müssen Sie einen Ausdruck und einen Typ definieren um\n die Zeichenfolge in ein Datum oder einen Zeitstempel umzuwandeln.\n Hinweis: Derzeit werden Zeitzonen nicht unterstützt. Wenn Zeit im\n Epochenformat gespeichert ist, Geben Sie “epoch_s\" oder \"epoch_ms\" ein. \n Wenn kein Muster angegeben ist, greifen wir auf die Verwendung der\n \n über den zusätzlichen Parameter angebbaren,\n optionalen Standardwerte zurück." ], - "Statistical": ["Statistisch"], - "Status": ["Status"], - "Step - end": ["Schritt - Ende"], - "Step - middle": ["Schritt - Mitte"], - "Step - start": ["Schritt - Start"], - "Step type": ["Schritttyp"], - "Stepped Line": ["Stufendiagramm"], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen Abständen auftreten." + "Certified By": ["Zertifiziert durch"], + "Person or group that has certified this metric": [ + "Person oder Gruppe, die diese Metrik zertifiziert hat" ], - "Stop": ["Stopp"], - "Stop query": ["Abfrage anhalten"], - "Stop running (Ctrl + e)": ["Beenden der Ausführung (Strg + e)"], - "Stop running (Ctrl + x)": ["Ausführung abbrechen (Strg + x)"], - "Stopped an unsafe database connection": [ - "Eine unsichere Datenbankverbindung wurde beendet" + "Certified by": ["Zertifiziert durch"], + "Certification details": ["Details zur Zertifizierung"], + "Details of the certification": ["Details zur Zertifizierung"], + "Is dimension": ["Ist Dimension"], + "Default datetime": ["Standard-Datum/Zeit"], + "Is filterable": ["Ist filterbar"], + "": [""], + "Select owners": ["Besitzende auswählen"], + "Modified columns: %s": ["Geänderte Spalten: %s"], + "Removed columns: %s": ["Entfernte Spalten: %s"], + "New columns added: %s": ["Neue Spalten hinzugefügt: %s"], + "Metadata has been synced": ["Metadaten wurden synchronisiert"], + "An error has occurred": ["Ein Fehler ist aufgetreten"], + "Column name [%s] is duplicated": ["Spaltenname [%s] wird dupliziert"], + "Metric name [%s] is duplicated": ["Metrikname [%s] wird dupliziert"], + "Calculated column [%s] requires an expression": [ + "Berechnete Spalte [%s] erfordert einen Ausdruck" ], - "Stream": ["Stream"], - "Streets": ["Straßen"], - "Strength to pull the graph toward center": [ - "Stärke, mit der Graph in Richtung Mitte gezogen wird" + "Invalid currency code in saved metrics": [""], + "Basic": ["Basic"], + "Default URL": ["Datenbank URL"], + "Default URL to redirect to when accessing from the dataset list page": [ + "Standard-URL, auf die beim Zugriff von der Datensatz-Listenseite aus zugegriffen werden soll" ], - "Stretched style": ["Gestreckter Stil"], - "Strings used for sheet names (default is the first sheet).": [ - "Zeichenfolgen, die für Blattnamen verwendet werden (Standard ist das erste Blatt)." + "Autocomplete filters": ["Auto-Vervollständigen-Filter"], + "Whether to populate autocomplete filters options": [ + "Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen" ], - "Stroke Color": ["Strichfarbe"], - "Stroke Width": ["Strichstärke"], - "Stroked": ["Gestrichelt"], - "Structural": ["Strukturell"], - "Style": ["Stil"], - "Style the ends of the progress bar with a round cap": [ - "Enden des Fortschrittsbalkens mit einer runden Kappe versehen" + "Autocomplete query predicate": [ + "Abfrageprädikat für die automatische Vervollständigung" ], - "Subdomain": ["Subdomain"], - "Subheader": ["Untertitel"], - "Subheader Font Size": ["Schriftgröße Untertitel"], - "Submit": ["Senden"], - "Subtotal": ["Zwischensumme"], - "Success": ["Erfolg"], - "Successfully changed dataset!": ["Datensatz erfolgreich geändert!"], - "Suffix to apply after the percentage display": [ - "Suffix, das hinter der Prozentanzeige angezeigt werden soll" + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Bei Verwendung von \"AutoVervollständigen-Filtern\" kann dies verwendet werden, um die Leistung der Abfrage zum Abrufen der Werte zu verbessern. Verwenden Sie diese Option, um ein Prädikat (WHERE-Klausel) auf die Abfrage anzuwenden, die die verschiedenen Werte aus der Tabelle auswählt. In der Regel besteht die Absicht darin, den Scan einzuschränken, indem ein relativer Zeitfilter auf ein partitioniertes oder indiziertes zeitbezogenes Feld angewendet wird." ], - "Sum": ["Summe"], - "Sum as Fraction of Columns": ["Summe als Anteil der Spalten"], - "Sum as Fraction of Rows": ["Summe als Anteil der Zeilen"], - "Sum as Fraction of Total": ["Summe als Anteil am Gesamtbetrag"], - "Sum of values over specified period": [ - "Summe der Werte über einen bestimmten Zeitraum" + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Zusätzliche Daten zum Angeben von Tabellenmetadaten. Unterstützt derzeit Metadaten des Formats: '{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" } `." ], - "Sum values": ["Summenwerte"], - "Sunburst": ["Sunburst"], - "Sunburst Chart": ["Sunburst Diagramm"], - "Sunburst Chart v2": ["Sunburst Diagramm v2"], - "Sunday": ["Sonntag"], - "Superset Chart": ["Superset Diagramm"], - "Superset Embedded SDK documentation.": [ - "Superset Embedded SDK-Dokumentation." + "Cache timeout": ["Cache-Timeout"], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "Die Zeitdauer in Sekunden, bevor der Cache ungültig wird. Setzen Sie diese auf -1 um den Cache zu umgehen." ], - "Superset chart": ["Superset Diagramm"], - "Superset dashboard": ["Superset Dashboard"], - "Superset encountered an error while running a command.": [ - "Superset hat beim Ausführen eines Befehls einen Fehler festgestellt." + "Hours offset": ["Stunden-Versatz"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Die Anzahl der Stunden, negativ oder positiv, um die Zeitspalte zu verschieben. Dies kann verwendet werden, um die UTC-Zeit auf die Ortszeit zu verschieben." ], - "Superset encountered an unexpected error.": [ - "Superset hat einen unerwarteten Fehler festgestellt." + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ + "" ], - "Supported databases": ["Unterstützte Datenbanken"], - "Survey Responses": ["Umfrage-Antworten"], - "Swap dataset": ["Datensatz austauschen"], - "Swap rows and columns": ["Zeilen und Spalten vertauschen"], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Schweizer Taschenmesser zur Visualisierung von Daten. Wählen Sie zwischen Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser Visualisierungstyp hat auch viele Anpassungsoptionen." + "": [""], + "": [""], + "Click the lock to make changes.": [ + "Klicken Sie auf das Schloss, um Änderungen vorzunehmen." ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Schweizer Taschenmesser zur Visualisierung von Zeitreihendaten. Wählen Sie zwischen Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser Visualisierungstyp verfügt auch über viele Anpassungsoptionen." + "Click the lock to prevent further changes.": [ + "Klicken Sie auf die Sperre, um weitere Änderungen zu verhindern." ], - "Symbol": ["Symbol"], - "Symbol of two ends of edge line": [ - "Symbol für zwei Enden der Kantenlinie" + "virtual": ["virtuell"], + "Dataset name": ["Datensatzname"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Beim Angeben von SQL fungiert die Datenquelle als Ansicht. Superset verwendet diese Anweisung als Unterabfrage beim Gruppieren und Filtern der generierten übergeordneten Abfragen." ], - "Symbol size": ["Symbolgröße"], - "Sync columns from source": ["Spalten aus der Quelle synchronisieren"], - "Syntax": ["Syntax"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Physical": ["Physisch"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Der Zeiger auf eine physische Tabelle (oder Ansicht). Beachten Sie, dass das Diagramm dieser logischen Superset-Tabelle zugeordnet ist welche auf die hier angegebene physische Tabelle verweist." + ], + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "TABLES": ["TABELLEN"], - "TEMPORAL X-AXIS": ["ZEITLICHE X-ACHSE"], - "TEMPORAL_RANGE": ["TEMPORAL_RANGE"], - "THU": ["DO"], - "TUE": ["DI"], - "Tab name": ["Tabellenname"], - "Tab title": ["Registerkartentitel"], - "Table": ["Tabelle"], - "Table %(table)s wasn't found in the database %(db)s": [ - "Tabelle %(table)s wurde in der Datenbank nicht gefunden %(db)s" + "D3 format": ["D3 Format"], + "Metric currency": [""], + "Warning": ["Warnung"], + "Optional warning about use of this metric": [ + "Optionale Warnung zur Verwendung dieser Metrik" ], - "Table Exists": ["Tabelle existiert"], - "Table Name": ["Tabellenname"], - "Table View": ["Tabellenansicht"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "Tabelle [%(table_name)s] konnte nicht gefunden werden, überprüfen Sie bitte Ihre Datenbankverbindung, Ihr Schema und Ihren Tabellennamen" + "": [""], + "Be careful.": ["Seien Sie vorsichtig."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Das Ändern dieser Einstellungen wirkt sich auf alle Diagramme aus, die diesen Datensatz verwenden, einschließlich Diagramme, die anderen Personen gehören." ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "Tabelle [%{table}s] konnte nicht gefunden werden, bitte überprüfen Sie Ihre Datenbankverbindung, Schema und Tabellenname, Fehler: {}" + "Sync columns from source": ["Spalten aus der Quelle synchronisieren"], + "Calculated columns": ["Berechnete Spalten"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ + "" ], - "Table cache timeout": ["Tabellen-Cache Timeout"], - "Table columns": ["Tabellenspalten"], - "Table loading": ["Tabelle lädt…"], - "Table name cannot contain a schema": [ - "Der Tabellenname darf kein Schema enthalten" + "": [""], + "Settings": ["Einstellungen"], + "The dataset has been saved": ["Der Datensatz wurde gespeichert"], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Die hier verfügbar gemachte Datensatzkonfiguration\n wirkt sich auf alle Diagramme aus, die diesen Datensatz verwenden.\n Achten Sie darauf, dass das hier vorgenommene Einstellungs-\n änderungen sich in unerwünschter Weise\n auf andere Diagramme auswirken können." ], - "Table name undefined": ["Tabellenname nicht definiert"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "Tabelle, die gepaarte t-Tests visualisiert, die verwendet werden, um statistische Unterschiede zwischen Gruppen zu verstehen." + "Are you sure you want to save and apply changes?": [ + "Möchten Sie die Änderungen wirklich speichern und anwenden?" ], - "Tables": ["Tabellen"], - "Tabs": ["Reiter"], - "Tabular": ["Tabellarisch"], - "Tag could not be created.": ["Tag konnte nicht erstellt werden."], - "Tag could not be deleted.": ["Tag konnte nicht gelöscht werden."], - "Tag name is invalid (cannot contain ':')": [ - "Tag-Name ist ungültig (darf nicht ‚:‘ enthalten)" + "Confirm save": ["Speichern bestätigen"], + "OK": ["OK"], + "Edit Dataset ": ["Datensatz bearbeiten "], + "Use legacy datasource editor": [ + "Verwenden des Legacy-Datenquellen-Editors" ], - "Tag parameters are invalid.": ["Tag-Parameter sind ungültig."], - "Tagged Object could not be deleted.": [ - "Getaggtes Object konnte nicht gelöscht werden." + "This dataset is managed externally, and can't be edited in Superset": [ + "Dieser Datensatz wird extern verwaltet und kann nicht in Superset bearbeitet werden." ], - "Tags": ["Schlagwörter"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "Gruppieren Sie Ihre Datenpunkte in Klassen, um zu sehen, wo die dichtesten Informationsbereiche liegen" + "DELETE": ["LÖSCHEN"], + "delete": ["Löschen"], + "Type \"%s\" to confirm": ["Geben Sie zur Bestätigung \"%s\" ein"], + "More": ["Mehr"], + "Click to edit": ["Klicken um zu bearbeiten"], + "You don't have the rights to alter this title.": [ + "Sie haben nicht das Recht, diesen Titel zu ändern." ], - "Target": ["Ziel"], - "Target Color": ["Zielfarbe"], - "Target category": ["Zielkategorie"], - "Target value": ["Zielwert"], - "Template Name": ["Vorlagenname"], - "Template parameters": ["Vorlagen-Parameter"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Vorlagen-Link. Es ist möglich, {{ metric }} oder andere Werte aus den Steuerelementen einzuschließen." + "No databases match your search": [ + "Keine Datenbanken stimmen mit Ihrer Suche überein" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "Beenden Sie die Ausführung von Abfragen, wenn das Browserfenster geschlossen oder zu einer anderen Seite navigiert wird. Verfügbar für Presto-, Hive-, MySQL-, Postgres- und Snowflake-Datenbanken." + "There are no databases available": [ + "Es sind keine Datenbanken verfügbar" ], - "Test Connection": ["Verbindungstest"], - "Test connection": ["Verbindungstest"], - "Text": ["Text"], - "Text align": ["Textausrichtung"], - "Text embedded in email": ["In E-Mail eingebetteter Text"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "Die API-Antwort von %s stimmt nicht mit der IDatabaseTable-Schnittstelle überein." + "Manage your databases": ["Verwalten Sie Ihre Datenbanken"], + "here": ["hier"], + "Unexpected error": ["Unerwarteter Fehler"], + "This may be triggered by:": ["Dies kann ausgelöst werden durch:"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [ + "%(message)s\nDies kann ausgelöst werden durch: \n%(issues)s" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "Das CSS für einzelne Dashboards kann hier oder in der Dashboard-Ansicht geändert werden, wo Änderungen sofort sichtbar sind" + "%s Error": ["%s Fehler"], + "Missing dataset": ["Fehlender Datensatz"], + "See more": ["Mehr anzeigen"], + "See less": ["Weniger anzeigen"], + "Copy message": ["Meldung kopieren"], + "Did you mean:": ["Meintest du:"], + "Parameter error": ["Parameter-Fehler"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ + "%(subtitle)s\nDies kann ausgelöst werden durch:\n %(issue)s" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTAS (create table as select) kann nur mit einer Abfrage ausgeführt werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat. Versuchen Sie dann erneut, die Abfrage auszuführen." + "Timeout error": ["Zeitüberschreitung"], + "Click to favorite/unfavorite": [ + "Klicken Sie hier, um als Favorit aus-/abzuwählen" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "Der GeoJsonLayer nimmt GeoJSON-formatierte Daten auf und stellt sie als interaktive Polygone, Linien und Punkte (Kreise, Symbole und/oder Texte) dar." + "Cell content": ["Zellinhalt"], + "Hide password.": ["Passwort ausblenden."], + "Show password.": ["Passwort anzeigen."], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Datenbanktreiber für den Import ist möglicherweise nicht installiert. Installationsanweisungen finden Sie auf der Superset-Dokumentationsseite: " ], - "The URL is missing the dataset_id or slice_id parameters.": [ - "In der URL fehlen die Parameter dataset_id oder slice_id." + "OVERWRITE": ["ÜBERSCHREIBEN"], + "Database passwords": ["Datenbank-Kennwörter"], + "%s PASSWORD": ["%s PASSWORT"], + "%s SSH TUNNEL PASSWORD": ["%s SSH-TUNNEL-KENNWORT"], + "%s SSH TUNNEL PRIVATE KEY": ["%s PRIVATER SCHLÜSSEL FÜR DEN SSH-TUNNEL"], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [ + "%s PASSWORT FÜR DEN PRIVATEN SCHLÜSSEL DES SSH-TUNNELS" ], - "The X-axis is not on the filters list": [ - "Die X-Achse befindet sich nicht in der Filterliste" + "Overwrite": ["Überschreiben Scheibe %s"], + "Import": ["Importieren"], + "Import %s": ["Importiere %s"], + "Select file": ["Datei auswählen"], + "Last Updated %s": ["Letzte Aktualisierung %s"], + "Sort": ["Sortieren"], + "+ %s more": ["+ %s weitere"], + "%s Selected": ["%s ausgewählt"], + "Deselect all": ["Alle abwählen"], + "No results match your filter criteria": [ + "Keine Ergebnisse entsprechen Ihren Filterkriterien" ], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "Die X-Achse befindet sich nicht in der Filterliste, weshalb sie nicht als\n Zeitbereichsfilter in Dashboards verwendet werden kaann. Möchten Sie es zur Filterliste hinzufügen?" + "Try different criteria to display results.": [ + "Probieren Sie verschiedene Kriterien aus, um Ergebnisse anzuzeigen." ], - "The access requests seem to have been deleted": [ - "Die Zugriffsanfragen scheinen gelöscht worden zu sein" + "clear all filters": ["Alle Filter löschen"], + "No Data": ["Keine Daten"], + "%s-%s of %s": ["%s-%s von %s"], + "Start date": ["Startdatum"], + "End date": ["Enddatum"], + "Type a value": ["Geben Sie einen Wert ein"], + "Filter": ["Filter"], + "Select or type a value": ["Wert eingeben oder auswählen"], + "Last modified": ["Zuletzt geändert"], + "Modified by": ["Geändert durch"], + "Created by": ["Erstellt von"], + "Created on": ["Erstellt am"], + "Menu actions trigger": ["Auslöser von Menüaktionen"], + "Select ...": ["Auswählen …"], + "Filter menu": ["Filter-Menü"], + "Reset": ["Zurücksetzen"], + "No filters": ["Keine Filter"], + "Select all items": ["Alle Elemente auswählen"], + "Search in filters": ["Suche in Filtern"], + "Select current page": ["Aktuelle Seite auswählen"], + "Invert current page": ["Aktuelle Seite umkehren"], + "Clear all data": ["Alle Daten leeren"], + "Select all data": ["Alle Daten auswählen"], + "Expand row": ["Zeile erweitern"], + "Collapse row": ["Zeile zusammenklappen"], + "Click to sort descending": [ + "Klicken Sie hier, um absteigend zu sortieren" ], - "The annotation has been saved": [ - "Die Anmerkung wurde erfolgreich gespeichert" + "Click to sort ascending": [ + "Klicken Sie hier, um aufsteigend zu sortieren" ], - "The annotation has been updated": ["Anmerkung wurde aktualisiert"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "Die Kategorie der Quellknoten, die zum Zuweisen von Farben verwendet werden. Wenn ein Knoten mehr als einer Kategorie zugeordnet ist, wird nur die erste verwendet." + "Click to cancel sorting": ["Klicken, um die Sortierung abzubrechen"], + "List updated": ["Liste aktualisiert"], + "There was an error loading the tables": [ + "Beim Laden der Tabellen ist ein Fehler aufgetreten" ], - "The chart datasource does not exist": [ - "Die Diagrammdatenquelle ist nicht vorhanden" + "See table schema": ["Siehe Tabellenschema"], + "Select table or type to search tables": [ + "Tabelle auswählen oder tippen, um Tabellen zu suchen" ], - "The chart does not exist": ["Das Diagramm ist nicht vorhanden"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "Der Klassiker. Großartig, um zu zeigen, wie viel von einem Unternehmen jeder Investor bekommt, welche Demografie Ihrem Blog folgt oder welcher Teil des Budgets in den militärisch-industriellen Komplex fließt.\n\nKreisdiagramme können schwierig zu interpretieren sein. Wenn die Klarheit des relativen Anteils wichtig ist, sollten Sie stattdessen die Verwendung eines Balkens oder eines anderen Diagrammtyps in Betracht ziehen." + "Force refresh table list": ["Aktualisierung erzwingen"], + "Timezone selector": ["Zeitzonen-Auswahl"], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Für diese Komponente ist nicht genügend Platz vorhanden. Versuchen Sie, die Breite zu verringern oder die Zielbreite zu erhöhen." ], - "The color for points and clusters in RGB": [ - "Die Farbe für Punkte und Cluster in RGB" + "Can not move top level tab into nested tabs": [ + "Registerkarte der obersten Ebene kann nicht in verschachtelte Registerkarten verschoben werden" ], - "The color scheme for rendering chart": [ - "Das zur Diagrammanzeige verwendete Farbschema" + "This chart has been moved to a different filter scope.": [ + "Dieses Diagramm wurde in einen anderen Filterbereich verschoben." ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "Das Farbschema wird vom zugehörigen Dashboard bestimmt.\n Bearbeiten Sie das Farbschema in den Dashboard-Eigenschaften." + "There was an issue fetching the favorite status of this dashboard.": [ + "Beim Abrufen des Favoritenstatus dieses Dashboards ist ein Problem aufgetreten." ], - "The column header label": ["Die Spaltenüberschrift"], - "The column was deleted or renamed in the database.": [ - "Die Spalte wurde in der Datenbank gelöscht oder umbenannt." + "There was an issue favoriting this dashboard.": [ + "Es gab ein Problem dabei, dieses Dashboard zu den Favoriten hinzuzufügen." ], - "The country code standard that Superset should expect to find in the [country] column": [ - "Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" + "This dashboard is now published": [ + "Dieses Dashboard ist jetzt veröffentlicht" ], - "The dashboard has been saved": [ - "Dashboard wurde erfolgreich gespeichert" + "This dashboard is now hidden": ["Dieses Dashboard ist nun verborgen"], + "You do not have permissions to edit this dashboard.": [ + "Sie haben keine Berechtigungen zum Bearbeiten dieses Dashboards." ], - "The data source seems to have been deleted": [ - "Die Datenquelle scheint gelöscht worden zu sein" + "[ untitled dashboard ]": ["[ unbenanntes Dashboard ]"], + "This dashboard was saved successfully.": [ + "Dieses Dashboard wurde erfolgreich gespeichert." ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "Der Datentyp, der von der Datenbank abgeleitet wurde. In einigen Fällen kann es erforderlich sein, einen Typ für ausdrucksdefinierte Spalten manuell einzugeben. In den meisten Fällen sollten Benutzer*innen dies nicht ändern müssen." + "Sorry, an unknown error occurred": [ + "Leider ist ein unbekannter Fehler aufgetreten" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "Die Datenbank %s ist mit %s Diagrammen verknüpft, die auf %s Dashboards angezeigt werden und Nutzende haben %s SQL Lab Reiter geöffnet, die auf diese Datenbank zugreifen. Sind Sie sicher, dass Sie fortfahren möchten? Durch das Löschen der Datenbank werden diese Objekte ungültig." + "Sorry, there was an error saving this dashboard: %s": [ + "Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s" ], - "The database columns that contains lines information": [ - "Die Datenbankspalten, die Zeileninformationen enthalten" + "You do not have permission to edit this dashboard": [ + "Sie haben keine Zugriff auf diese Datenquelle" ], - "The database could not be found": ["Datenbank nicht gefunden."], - "The database is currently running too many queries.": [ - "Die Datenbank führt derzeit zu viele Abfragen aus." + "Please confirm the overwrite values.": [ + "Bitte bestätigen Sie die überschreibenden Werte." ], - "The database is under an unusual load.": [ - "Die Datenbank ist ungewöhnlich belastet." + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Sie haben alle %(historyLength)s Undo-Slots verwendet und können nachfolgende Aktionen nicht vollständig rückgängig machen. Sie können Ihren aktuellen Status speichern, um den Verlauf zurückzusetzen." ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "Die Datenbank, auf die in dieser Abfrage verwiesen wird, wurde nicht gefunden. Wenden Sie sich an eine*n Administrator*in, um weitere Unterstützung zu erhalten, oder versuchen Sie es erneut." + "Could not fetch all saved charts": [ + "Nicht alle gespeicherten Diagramme konnten abgerufen werden" ], - "The database returned an unexpected error.": [ - "Die Datenbank hat einen unerwarteten Fehler zurückgegeben." + "Sorry there was an error fetching saved charts: ": [ + "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten: " ], - "The database was deleted.": ["Die Datenbank wurde gelöscht."], - "The database was not found.": ["Datenbank nicht gefunden."], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "Der %s Datensatz ist mit %s Diagrammen verknüpft, die auf %s Dashboards angezeigt werden. Sind Sie sicher, dass Sie fortfahren möchten? Durch das Löschen des Datensatzes werden diese Objekte ungültig." + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Jede hier ausgewählte Farbpalette überschreibt die Farben, die auf die einzelnen Diagramme dieses Dashboards angewendet werden" ], - "The dataset associated with this chart no longer exists": [ - "Der diesem Diagramm zugeordnete Datensatz ist nicht mehr vorhanden" + "You have unsaved changes.": ["Ungesicherte Änderungen vorhanden."], + "Drag and drop components and charts to the dashboard": [ + "Ziehen Sie Komponenten und Diagramme per Drag & Drop auf das Dashboard" ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "Die hier verfügbar gemachte Datensatzkonfiguration\n wirkt sich auf alle Diagramme aus, die diesen Datensatz verwenden.\n Achten Sie darauf, dass das hier vorgenommene Einstellungs-\n änderungen sich in unerwünschter Weise\n auf andere Diagramme auswirken können." - ], - "The dataset has been saved": ["Der Datensatz wurde gespeichert"], - "The dataset linked to this chart may have been deleted.": [ - "Der mit diesem Diagramm verknüpfte Datensatz wurde möglicherweise gelöscht." - ], - "The datasource couldn't be loaded": [ - "Datenquelle konnte nicht geladen werden" - ], - "The datasource is too large to query.": [ - "Die Datenquelle ist zu groß, um sie abzufragen." - ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "Die Beschreibung kann als Widget-Titel in der Dashboard-Ansicht angezeigt werden. Unterstützt Markdown." - ], - "The distance between cells, in pixels": [ - "Der Abstand zwischen Zellen in Pixel" + "You can create a new chart or use existing ones from the panel on the right": [ + "Sie können ein neues Diagramm erstellen oder vorhandene Diagramme aus dem Bereich auf der rechten Seite verwenden." ], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ - "Die Zeitdauer in Sekunden, bevor der Cache ungültig wird. Setzen Sie diese auf -1 um den Cache zu umgehen." + "Create a new chart": ["Neues Diagramm erstellen"], + "Drag and drop components to this tab": [ + "Ziehen Sie Komponenten per Drag & Drop auf diese Registerkarte" ], - "The encoding format of the lines": ["Das Kodierungsformat der Zeilen"], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "Das engine_params Objekt wird in den sqlalchemy.create_engine Aufrufs entpackt." + "There are no components added to this tab": [ + "Dieser Registerkarte wurden keine Komponenten hinzugefügt." ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "Folgende Einträge in 'series_columns' fehlen in ‚columns‘: %(columns)s. " + "You can add the components in the edit mode.": [ + "Sie können die Komponenten im Bearbeitungsmodus hinzufügen." ], - "The function to use when aggregating points into groups": [ - "Die beim Aggregieren von Punkten in Gruppen zu verwendende Funktion" + "Edit the dashboard": ["Dashboard bearbeiten"], + "There is no chart definition associated with this component, could it have been deleted?": [ + "Es gibt keine Diagrammdefinition, die dieser Komponente zugeordnet ist. Könnte sie gelöscht worden sein?" ], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "Der Host \"%(hostname)s\" ist möglicherweise heruntergefahren und kann nicht erreicht werden." + "Delete this container and save to remove this message.": [ + "Löschen Sie diesen Container und speichern Sie, um diese Nachricht zu entfernen." ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "Der Host \"%(hostname)s\" ist möglicherweise außer Betrieb und kann über Port %(port)s nicht erreicht werden." + "Refresh interval saved": ["Aktualisierungsintervall gespeichert"], + "Refresh interval": ["Aktualisierungsinterval"], + "Refresh frequency": ["Aktualisierungsfrequenz"], + "Are you sure you want to proceed?": ["Möchten Sie wirklich fortfahren?"], + "Save for this session": ["Für diese Sitzung speichern"], + "You must pick a name for the new dashboard": [ + "Sie müssen einen Namen für das neue Dashboard auswählen" ], - "The host might be down, and can't be reached on the provided port.": [ - "Der Host ist möglicherweise außer Betrieb und kann über den angegebenen Port nicht erreicht werden." + "Save dashboard": ["Dashboard speichern"], + "Overwrite Dashboard [%s]": ["Dashboard überschreiben [%s]"], + "Save as:": ["Speichern unter:"], + "[dashboard name]": ["[Dashboard-Name]"], + "also copy (duplicate) charts": ["auch (doppelte) Diagramme kopieren"], + "viz type": ["Visualisierungstyp"], + "recent": ["Kürzlich"], + "Create new chart": ["Neues Diagramm erstellen"], + "Filter your charts": ["Filtern Sie Ihre Diagramme"], + "Filter charts": ["Diagramme filtern"], + "Sort by %s": ["Sortieren nach %s"], + "Show only my charts": ["Nur meine Diagramme anzeigen"], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Sie können auswählen, ob alle Diagramme angezeigt werden sollen, auf die Sie Zugriff haben, oder nur die Diagramme, die Sie besitzen.\n Ihre Filterauswahl wird gespeichert und bleibt aktiv, bis Sie sie ändern." ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "Der Hostname \"%(hostname)s\" kann nicht aufgelöst werden." + "Added": ["Hinzugefügt"], + "Viz type": ["Visualisierungstyp"], + "Dataset": ["Datensatz"], + "Superset chart": ["Superset Diagramm"], + "Check out this chart in dashboard:": [ + "Sehen Sie sich dieses Diagramm im Dashboard an:" ], - "The hostname provided can't be resolved.": [ - "Der angegebene Hostname kann nicht aufgelöst werden." + "Layout elements": ["Layout-Elemente"], + "Load a CSS template": ["CSS Vorlage laden"], + "Live CSS editor": ["Live CSS Editor"], + "Collapse tab content": ["Inhalt der Registerkarte ausblenden"], + "There are no charts added to this dashboard": [ + "Diesem Dashboard wurden keine Diagramme hinzugefügt." ], - "The id of the active chart": ["Die ID des aktiven Diagramms"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "Die Liste der Diagramme, die dieser Tabelle zugeordnet sind. Durch Ändern dieser Datenquelle können Sie das Verhalten der zugeordneten Diagramme ändern. Beachten Sie auch, dass Diagramme auf eine Datenquelle verweisen müssen, sodass dieses Formular beim Speichern fehlschlägt, wenn Diagramme aus einer Datenquelle entfernt werden. Wenn Sie die Datenquelle für ein Diagramm ändern möchten, überschreiben Sie das Diagramm aus der \"Explore-Ansicht\"." + "Go to the edit mode to configure the dashboard and add charts": [ + "Gehen Sie in den Bearbeitungsmodus, um das Dashboard zu konfigurieren und Diagramme hinzuzufügen" ], - "The maximum number of events to return, equivalent to the number of rows": [ - "Die maximale Anzahl der zurückzugebenden Ereignisse, entspricht der Anzahl Zeilen" + "Changes saved.": ["Änderungen gespeichert."], + "Disable embedding?": ["Einbettung deaktivieren?"], + "This will remove your current embed configuration.": [ + "Dadurch wird Ihre aktuelle Embedded-Konfiguration entfernt." ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "Die maximale Anzahl von Unterteilungen jeder Gruppe; Niedrigere Werte werden zuerst ausgeblendet" + "Embedding deactivated.": ["Einbetten deaktiviert."], + "Sorry, something went wrong. Embedding could not be deactivated.": [ + "Entschuldigung, etwas ist schief gelaufen. Die Einbettung konnte nicht deaktiviert werden." ], - "The maximum value of metrics. It is an optional configuration": [ - "Der Maximalwert von Metriken. Optionale Konfiguration" + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Dieses Dashboard ist bereit zum Einbetten. Übergeben Sie in Ihrer Anwendung die folgende ID an das SDK:" ], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. Der Schlüssel %(key)s ist ungültig." + "Configure this dashboard to embed it into an external web application.": [ + "Konfigurieren Sie dieses Dashboard, um es in eine externe Webanwendung einzubetten." ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. Der Schlüssel %{key}s ist ungültig." + "For further instructions, consult the": [ + "Weitere Anweisungen finden Sie in der" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "Das metadata_params Objekt wird in den sqlalchemy.MetaData-Aufruf entpackt." + "Superset Embedded SDK documentation.": [ + "Superset Embedded SDK-Dokumentation." ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "Die Mindestanzahl von rollierender Perioden, die erforderlich sind, um einen Wert anzuzeigen. Wenn Sie beispielsweise eine kumulative Summe an 7 Tagen durchführen, möchten Sie möglicherweise, dass Ihr \"Mindestzeitraum\" 7 beträgt, so dass alle angezeigten Datenpunkte die Summe von 7 Perioden sind. Dies wird den \"Hochlauf\" verbergen, der in den ersten 7 Perioden stattfindet" + "Allowed Domains (comma separated)": [ + "Zulässige Domänen (durch Kommas getrennt)" ], - "The number color \"steps\"": ["Die Anzahl Farbabstufungen"], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "Die Anzahl der Stunden, negativ oder positiv, um die Zeitspalte zu verschieben. Dies kann verwendet werden, um die UTC-Zeit auf die Ortszeit zu verschieben." + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "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." ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "Die Anzahl der angezeigten Ergebnisse ist durch die Konfiguration DISPLAY_MAX_ROW auf %(rows)d begrenzt. Bitte fügen Sie zusätzliche Limits/Filter hinzu oder laden Sie sie als CSDV-Datei herunter, um weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." + "Deactivate": ["Deaktivieren"], + "Save changes": ["Änderungen speichern"], + "Enable embedding": ["Einbettung aktivieren"], + "Embed": ["Einbetten"], + "Applied cross-filters (%d)": ["Kreuzfilter (%d) angewendet"], + "Applied filters (%d)": ["Angewendete Filter (%d)"], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Dieses Dashboard aktualisiert sich automatisch. Die nächste automatische Aktualisierung erfolgt in %s." ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "Die Anzahl der angezeigten Ergebnisse ist auf %(rows)d begrenzt. Bitte fügen Sie zusätzliche Limits/Filter hinzu, laden Sie sie als CSV-Datei herunter oder wenden Sie sich an eine*n Administrator*in, um weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." + "Your dashboard is too large. Please reduce its size before saving it.": [ + "Ihr Dashboard ist zu groß. Bitte reduzieren Sie die Größe, bevor Sie es speichern." ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "Die Anzahl der angezeigten Zeilen ist durch das Dropdown-Menü auf %(rows)d beschränkt." + "Add the name of the dashboard": ["Name des Dashboards hinzufügen"], + "Dashboard title": ["Dashboard Titel"], + "Undo the action": ["Aktion rückgängig machen"], + "Redo the action": ["Aktion wiederholen"], + "Discard": ["Verwerfen"], + "Edit dashboard": ["Dashboard bearbeiten"], + "An error occurred while fetching available CSS templates": [ + "Beim Abrufen verfügbarer CSS-Vorlagen ist ein Fehler aufgetreten" ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "Die Anzahl der angezeigten Zeilen ist durch Dropdownliste \"Limit\" auf %(rows)d beschränkt." + "Refreshing charts": ["Aktualisieren von Diagrammen"], + "Superset dashboard": ["Superset Dashboard"], + "Check out this dashboard: ": ["Schauen Sie sich dieses Dashboard an: "], + "Refresh dashboard": ["Dashboard aktualisieren"], + "Exit fullscreen": ["Vollbildanzeige beenden"], + "Enter fullscreen": ["Vollbild öffnen"], + "Edit properties": ["Eigenschaften bearbeiten"], + "Edit CSS": ["CSS bearbeiten"], + "Download": ["Herunterladen"], + "Share": ["Teilen"], + "Copy permalink to clipboard": ["Permalink in Zwischenablage kopieren"], + "Share permalink by email": ["Permalink per E-Mail teilen"], + "Embed dashboard": ["Dashboard einbetten"], + "Manage email report": ["E-Mail-Bericht verwalten"], + "Set filter mapping": ["Festlegen der Filterzuordnung"], + "Set auto-refresh interval": ["Auto-Aktualisieren-Interval setzen"], + "Confirm overwrite": ["Überschreiben bestätigen"], + "Scroll down to the bottom to enable overwriting changes. ": [ + "Scrollen Sie nach unten, um das Überschreiben von Änderungen zu aktivieren. " ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "Die Anzahl der angezeigten Zeilen ist durch die Abfrage auf %(rows)d beschränkt" + "Yes, overwrite changes": ["Ja, Änderungen überschreiben"], + "Are you sure you intend to overwrite the following values?": [ + "Sind Sie sicher, dass Sie die folgenden Werte überschreiben möchten?" ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "Die Anzahl der angezeigten Zeilen ist durch Dropdownliste-Abfrage und -Limit auf %(rows)d beschränkt." + "Last Updated %s by %s": ["Zuletzt aktualisiert %s von %s"], + "Apply": ["Übernehmen"], + "Error": ["Fehler"], + "A valid color scheme is required": [ + "Ein gültiges Farbschema ist erforderlich" ], - "The number of seconds before expiring the cache": [ - "Die Anzahl der Sekunden vor Ablauf des Caches" + "JSON metadata is invalid!": ["JSON-Metadaten sind ungültig!"], + "Dashboard properties updated": ["Dashboard-Eigenschaften aktualisiert"], + "The dashboard has been saved": [ + "Dashboard wurde erfolgreich gespeichert" ], - "The object does not exist in the given database.": [ - "Das Objekt existiert nicht in der angegebenen Datenbank." + "Access": ["Zugang"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern können. Durchsuchbar nach Name oder Benutzer*innenname." ], - "The parameter %(parameters)s in your query is undefined.": [ - "Der Parameter %(parameters)s in ihrer Abfrage ist nicht definiert.", - "Die folgenden Parameter in Ihrer Abfrage sind nicht definiert: %(parameters)s." + "Colors": ["Farben"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die generellen Berechtigungen angewendet." ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "Das für den Benutzer*innennamen \"%(username)s\" angegebene Kennwort ist falsch." + "Dashboard properties": ["Dashboardeigenschaften bearbeiten"], + "This dashboard is managed externally, and can't be edited in Superset": [ + "Dieses Dashboard wird extern verwaltet und kann nicht in Superset bearbeitet werden." ], - "The password provided when connecting to a database is not valid.": [ - "Das Kennwort, das beim Herstellen einer Datenbankverbindung angegeben wurde, ist ungültig." + "Basic information": ["Basisangaben"], + "URL slug": ["URL Titelform"], + "A readable URL for your dashboard": [ + "Eine sprechende URL für Ihr Dashboard" ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." + "Certification": ["Zertifizierung"], + "Person or group that has certified this dashboard.": [ + "Person oder Gruppe, die dieses Dashboard zertifiziert hat." ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um sie zusammen mit den Dashboards zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." + "Any additional detail to show in the certification tooltip.": [ + "Alle zusätzlichen Details, die im Zertifizierungs-Tooltip angezeigt werden sollen." ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." + "A list of tags that have been applied to this chart.": [ + "Eine Liste der Tags, die auf dieses Diagramm angewendet wurden." ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um sie zusammen mit den gespeicherten Abfragen zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." + "JSON metadata": ["JSON Metadaten"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [ + "Bitte überschreiben Sie den \"filter_scopes“-Schlüssel NICHT." ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zu importieren. Bitte beachten Sie, dass die Abschnitte „Sicherheit Extra“ und „Zertifikat“ der Datenbankkonfiguration nicht in „Dateien erkunden“ vorhanden sind und nach dem Import manuell hinzugefügt werden sollten, falls sie benötigt werden." + "Use \"%(menuName)s\" menu instead.": [ + "Verwenden Sie stattdessen das Menü \"%(menuName)s\"." ], - "The pattern of timestamp format. For strings use ": [ - "Das Muster des Zeitstempelformats. Für Zeichenfolgen verwenden Sie eine " + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der Dashboards angezeigt. Klicken Sie hier, um dieses Dashboard zu veröffentlichen." ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "Die Periodizität, über die die Zeit pilotiert werden soll. Benutzer können\n ein“ Pandas\" Offset-Alias angeben.\n Klicken Sie auf die Infoblase, um weitere Informationen zu akzeptierten \"freq\"-Ausdrücken zu erhalten." + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der Dashboards angezeigt. Wählen Sie es als Favorit aus, um es dort zu sehen, oder greifen Sie direkt über die URL darauf zu." ], - "The pixel radius": ["Der Pixelradius"], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "Der Zeiger auf eine physische Tabelle (oder Ansicht). Beachten Sie, dass das Diagramm dieser logischen Superset-Tabelle zugeordnet ist welche auf die hier angegebene physische Tabelle verweist." + "This dashboard is published. Click to make it a draft.": [ + "Dieses Dashboard ist veröffentlicht. Klicken Sie hier, um es in den Entwurfstatus zu setzen." ], - "The port is closed.": ["Der Port ist geschlossen."], - "The port number is invalid.": ["Die Port-Nummer ist ungültig."], - "The primary metric is used to define the arc segment sizes": [ - "Die primäre Metrik wird verwendet, um die Bogensegmentgrößen zu definieren" + "Draft": ["Entwurf"], + "Annotation layers are still loading.": [ + "Anmerkungsebenen werden noch geladen." ], - "The provided `rows` argument is not a valid integer.": [ - "Das angegebene Argument 'rows' ist keine gültige ganze Zahl." + "One ore more annotation layers failed loading.": [ + "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden." ], - "The query associated with the results was deleted.": [ - "Die den Ergebnissen zugeordnete Abfrage wurde gelöscht." + "Data refreshed": ["Daten aktualisiert"], + "Cached %s": ["%s zwischengespeichert"], + "Fetched %s": ["%s abgerufen"], + "Query %s: %s": ["Abfrage %s: %s"], + "Force refresh": ["Aktualisierung erzwingen"], + "Hide chart description": ["Diagrammbeschreibung ausblenden"], + "Show chart description": ["Diagrammbeschreibung anzeigen"], + "View query": ["Abfrage anzeigen"], + "View as table": ["Als Tabelle anzeigen"], + "Chart Data: %s": ["Diagrammdaten: %s"], + "Share chart by email": ["Diagramm per Email teilen"], + "Check out this chart: ": ["Sehen Sie sich dieses Diagramm an: "], + "Export to .CSV": ["Export nach .CSV"], + "Export to Excel": ["Exportieren nach Excel"], + "Export to full .CSV": ["Export in vollständiges . .CSV"], + "Download as image": ["Herunterladen als Bild"], + "Something went wrong.": ["Etwas ist schief gelaufen."], + "Search...": ["Suche..."], + "No filter is selected.": ["Kein Filter ausgewählt."], + "Editing 1 filter:": ["Bearbeiten von einem Filter:"], + "Batch editing %d filters:": ["Stapelbearbeitung %d Filter:"], + "Configure filter scopes": ["Filterbereiche konfigurieren"], + "There are no filters in this dashboard.": [ + "In diesem Dashboard gibt es keine Filter." ], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "Die mit diesen Ergebnissen verknüpfte Abfrage konnte nicht gefunden werden. Sie müssen die ursprüngliche Abfrage erneut ausführen." + "Expand all": ["Alle aufklappen"], + "Collapse all": ["Alle einklappen"], + "An error occurred while opening Explore": [ + "Beim Öffnen von Explore ist ein Fehler aufgetreten" ], - "The query contains one or more malformed template parameters.": [ - "Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." + "Empty column": ["Leere Spalte"], + "This markdown component has an error.": [ + "Diese Markdown-Komponente weist einen Fehler auf." ], - "The query couldn't be loaded": [ - "Die Abfrage konnte nicht geladen werden" + "This markdown component has an error. Please revert your recent changes.": [ + "Diese Markdown-Komponente weist einen Fehler auf. Bitte machen Sie Ihre letzten Änderungen rückgängig." ], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Die Abfrage-Schätzung wurde nach %(sqllab_timeout)s Sekunden abgebrochen. Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark belastet." + "Empty row": ["Leere Zeile"], + "You can": ["Sie können"], + "create a new chart": ["Neues Diagramm erstellen"], + "or use existing ones from the panel on the right": [ + "oder verwenden Sie vorhandene aus dem Bereich auf der rechten Seite" ], - "The query has a syntax error.": [ - "Die Abfrage weist einen Syntaxfehler auf." + "You can add the components in the": [ + "Hinzufügen können Sie die Komponenten in der" ], - "The query returned no data": [ - "Die Abfrage hat keine Daten zurückgegeben" + "edit mode": ["Bearbeitungsmodus"], + "Delete dashboard tab?": ["Dashboard-Reiter löschen?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Wenn Sie eine Registerkarte löschen, werden alle darin enthaltenen Inhalte entfernt. Sie können diese Aktion immer noch rückgängig machen, indem Sie die" ], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Die Abfrage wurde nach %(sqllab_timeout)s Sekunden abgebrochen. Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark belastet." + "undo": ["Rückgängig"], + "button (cmd + z) until you save your changes.": [ + "Schaltfläche (cmd + z), bis Sie Ihre Änderungen speichern." ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "Der Radius (in Pixel), den der Algorithmus zum Definieren eines Clusters verwendet. Wählen Sie 0, um das Clustering zu deaktivieren, aber beachten Sie, dass eine große Anzahl von Punkten (>1000) zu Verzögerungen führt." + "CANCEL": ["ABBRECHEN"], + "Divider": ["Trenner"], + "Header": ["Header"], + "Text": ["Text"], + "Tabs": ["Reiter"], + "background": ["Hintergrund"], + "Preview": ["Vorschau"], + "Sorry, something went wrong. Try again later.": [ + "Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut." ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "Der Radius einzelner Punkte (die sich nicht in einem Cluster befinden). Entweder eine numerische Spalte oder \"Auto\", die den Punkt basierend auf dem größten Cluster skaliert" + "Unknown value": ["Unbekannter Wert"], + "Add/Edit Filters": ["Filter hinzufügen/bearbeiten"], + "No filters are currently added to this dashboard.": [ + "Bisher wurden diesem Dashboard noch keine Filter hinzugefügt." ], - "The report has been created": ["Der Report wurde erstellt"], - "The results backend no longer has the data from the query.": [ - "Das Ergebnis-Backend verfügt nicht mehr über die Daten aus der Abfrage." + "No global filters are currently added": [ + "Derzeit sind keine globalen Filter gesetzt" ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Die im Backend gespeicherten Ergebnisse wurden in einem anderen Format gespeichert und können nicht mehr deserialisiert werden." + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Klicken Sie auf die Schaltfläche \"+Filter hinzufügen/bearbeiten\", um neue Dashboard-Filter zu erstellen" ], - "The rich tooltip shows a list of all series for that point in time": [ - "Der umfangreiche Tooltip zeigt eine Liste aller Zeitreihen für diesen Zeitpunkt" + "Apply filters": ["Filter anwenden"], + "Clear all": ["Alles löschen"], + "Locate the chart": ["Suchen des Diagramms"], + "Cross-filters": ["Kreuzfilter"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "Das Schema \"%(schema)s\" existiert nicht. Zum Ausführen dieser Abfrage muss ein gültiges Schema verwendet werden." + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "Das Schema \"%(schema_name)s\" existiert nicht. Zum Ausführen dieser Abfrage muss ein gültiges Schema verwendet werden." + "All charts": ["Alle Diagramme"], + "Enable cross-filtering": ["Kreuzfilterung aktivieren"], + "Orientation of filter bar": ["Ausrichtung des Filterbalkens"], + "Vertical (Left)": ["Vertikal (links)"], + "Horizontal (Top)": ["Horizontal (oben)"], + "More filters": ["Weitere Filter"], + "No applied filters": ["Keine angewendete Filter"], + "Applied filters: %s": ["Angewendete Filter: %s"], + "Cannot load filter": ["Filter konnte nicht geladen werden"], + "Filters out of scope (%d)": [ + "Filter außerhalb des Gültigkeitsbereichs (%d)" ], - "The schema was deleted or renamed in the database.": [ - "Das Schema wurde in der Datenbank gelöscht oder umbenannt." + "Dependent on": ["Abhängig von"], + "Filter only displays values relevant to selections made in other filters.": [ + "Filter zeigt nur Werte an, die für die Auswahl in anderen Filtern relevant sind." ], - "The size of the square cell, in pixels": [ - "Die Größe der quadratischen Zelle in Pixel" + "Scope": ["Geltungsbereich"], + "Filter type": ["Filter Typ"], + "Title is required": ["Titel ist erforderlich"], + "(Removed)": ["(Entfernt)"], + "Undo?": ["Rückgängig machen?"], + "Add filters and dividers": ["Filter und Trennlinien hinzufügen"], + "[untitled]": ["[Unbenannt]"], + "Cyclic dependency detected": ["Zyklische Abhängigkeit erkannt"], + "Add and edit filters": ["Hinzufügen und Bearbeiten von Filtern"], + "Column select": ["Spaltenauswahl"], + "Select a column": ["Spalte wählen"], + "No compatible columns found": ["Keine kompatiblen Quellen gefunden"], + "No compatible datasets found": ["Keine kompatiblen Datensätze gefunden"], + "Value is required": ["Wert ist erforderlich"], + "(deleted or invalid type)": ["(gelöschter oder ungültiger Typ)"], + "Limit type": ["Typ einschränken"], + "No available filters.": ["Keine Filter verfügbar."], + "Add filter": ["Filter hinzufügen"], + "Values are dependent on other filters": [ + "Werte sind abhängig von anderen Filtern" ], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ - "Die eingegebene URL gilt nicht als sicher, verwenden Sie nur URLs mit derselben Domain wie Superset." + "Values selected in other filters will affect the filter options to only show relevant values": [ + "In anderen Filtern ausgewählte Werte wirken sich auf die Filteroptionen aus, sodass nur relevante Werte angezeigt werden" ], - "The submitted payload has the incorrect format.": [ - "Die übermittelte Nutzlast hat das falsche Format." + "Values dependent on": ["Werte abhängig von"], + "Scoping": ["Auswahlverfahren"], + "Filter Configuration": ["Filterkonfiguration"], + "Filter Settings": ["Filtereinstellungen"], + "Select filter": ["Filter auswählen"], + "Range filter": ["Bereichsfilter"], + "Numerical range": ["Numerischer Bereich"], + "Time filter": ["Zeitfilter"], + "Time range": ["Zeitbereich"], + "Time column": ["Zeitspalten"], + "Time grain": ["Zeitgranularität"], + "Group By": ["Gruppieren nach"], + "Group by": ["Gruppieren nach"], + "Pre-filter is required": ["Vorfilterung erforderlich"], + "Time column to apply dependent temporal filter to": [ + "Zeitspalte, auf die ein abhängiger zeitlicher Filter angewendet werden soll" ], - "The submitted payload has the incorrect schema.": [ - "Die übermittelte Nutzlast hat das falsche Schema." + "Time column to apply time range to": [ + "Zeitspalte, auf die der Zeitbereich angewendet werden soll" ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "Die Tabelle \"%(table)s\" existiert nicht. Zum Ausführen dieser Abfrage muss eine gültige Tabelle verwendet werden." + "Filter name": ["Tabellenname"], + "Name is required": ["Name ist erforderlich"], + "Filter Type": ["Filtertyp"], + "Datasets do not contain a temporal column": [ + "Datensätze enthalten keine temporale Spalte" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "Die Tabelle \"%(table_name)s\" existiert nicht. Zum Ausführen dieser Abfrage muss eine gültige Tabelle verwendet werden." + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "Dashboard-Zeitbereichsfilter gelten für zeitliche Spalten, die im\n Filterabschnitt jedes Diagramms festgelegt wurden. Fügen Sie Zeitspalten zu\n Diagrammfiltern hinzu, damit sich dieser Dashboardfilter auf diese Diagramme auswirkt." ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "Die Tabelle wurde erstellt. Im Rahmen dieses zweiphasigen Konfigurationsprozesses sollten Sie nun auf die Schaltfläche Bearbeiten neben der neuen Tabelle klicken, um sie zu konfigurieren." + "Dataset is required": ["Datensatz ist erforderlich"], + "Pre-filter available values": ["Verfügbare Werte vorfiltern"], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Fügen Sie Filterklauseln hinzu, um die Anfrage der Filter-Quelle zu steuern.\n allerdings nur im Zusammenhang mit der Autovervollständigung, d.h. diese Bedingungen\n wirken Sie sich nicht darauf aus, wie der Filter auf das Dashboard angewendet wird. Das ist nützlich,\n wenn Sie die Antwortzeit der Abfrage verbessern möchten, indem Sie nur eine Teilmenge\n der zugrunde liegenden Daten scannen oder die verfügbaren Werte einschränken, die im Filter angezeigt werden." ], - "The table was deleted or renamed in the database.": [ - "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt." + "Pre-filter": ["Vorfilter"], + "No filter": ["Kein Filter"], + "Sort filter values": ["Filterwerte sortieren"], + "Sort type": ["Art der Sortierung"], + "Sort ascending": ["Aufsteigend sortieren"], + "Sort Metric": ["Sortiermetrik"], + "If a metric is specified, sorting will be done based on the metric value": [ + "Wenn eine Metrik angegeben wird, erfolgt die Sortierung basierend auf dem Metrikwert" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "Die Zeitspalte für die Visualisierung. Beachten Sie, dass Sie beliebige Ausdrücke definieren können, die eine DATETIME-Spalte in der Tabelle zurückgeben. Beachten Sie auch, dass der folgende Filter auf diese Spalte oder diesen Ausdruck angewendet wird" + "Sort metric": ["Metrik anzeigen"], + "Single Value": ["Einzelner Wert"], + "Single value type": ["Einzelwerttyp"], + "Exact": ["Genau"], + "Filter has default value": ["Filter hat den Standardwert"], + "Default Value": ["Standardwert"], + "Default value is required": ["Standardwert ist erforderlich"], + "Refresh the default values": ["Aktualisieren der Standardwerte"], + "Fill all required fields to enable \"Default Value\"": [ + "Füllen Sie alle erforderlichen Felder aus, um \"Standardwert\" zu aktivieren" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie einfache natürliche Sprache wie in \"10 Sekunden\", \"1 Tag\" oder \"56 Wochen\" eingeben und verwenden können" + "You have removed this filter.": ["Sie haben diesen Filter entfernt."], + "Restore Filter": ["Filter wiederherstellen"], + "Column is required": ["Spalte ist erforderlich"], + "Populate \"Default value\" to enable this control": [ + "Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ - "Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie einfache natürliche, englische Sprache wie in \"10 seconds“, \"1 Day“ oder \"56 weeks“ eingeben und verwenden können" + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Standardwert wird automatisch festgelegt, wenn „Erstes Element als Standard“ aktiviert ist" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "Die Zeitgranularität für die Visualisierung. Dadurch wird eine Datumstransformation angewendet, um ihre Zeitspalte zu ändern, und es wird eine neue Zeitgranularität definiert. Die Optionen hier werden pro Datenbankmodul im Superset-Quellcode definiert." + "Default value must be set when \"Filter value is required\" is checked": [ + "Der Standardwert muss festgelegt werden, wenn „Filterwert ist erforderlich\" aktiviert ist" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "Der Zeitraum für die Visualisierung. Alle relativen Zeiten, z.B. \"Letzter Monat\", \"Letzte 7 Tage\", \"jetzt\" usw., werden auf dem Server anhand der Ortszeit des Servers (ohne Zeitzone) ausgewertet. Alle QuickInfos und Platzhalterzeiten werden in UTC (ohne Zeitzone) ausgedrückt. Die Zeitstempel werden dann von der Datenbank anhand der lokalen Zeitzone des Moduls ausgewertet. Beachten Sie, dass man die Zeitzone explizit nach dem ISO 8601-Format festlegen kann, wenn entweder die Start- und/oder Endzeit angegeben wird." + "Default value must be set when \"Filter has default value\" is checked": [ + "Standardwert muss festgelegt werden, wenn \"Filter hat Standardwert\" aktiviert ist" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "Die Zeiteinheit für jeden Block. Sollte eine kleinere Einheit als domain_granularity sein. Sollte größer oder gleich Zeitgranularität sein" + "Apply to all panels": ["Auf alle Bereiche anwenden"], + "Apply to specific panels": ["Anwenden auf bestimmte Bereiche"], + "Only selected panels will be affected by this filter": [ + "Nur ausgewählte Bereiche sind von diesem Filter betroffen" ], - "The time unit used for the grouping of blocks": [ - "Die Zeiteinheit, die für die Gruppierung von Blöcken verwendet wird" + "All panels with this column will be affected by this filter": [ + "Alle Bereiche mit dieser Spalte sind von diesem Filter betroffen" ], - "The type of visualization to display": [ - "Der anzuzeigende Visualisierungstyp" + "All panels": ["Alle Bereiche"], + "This chart might be incompatible with the filter (datasets don't match)": [ + "Dieses Diagramm ist möglicherweise nicht mit dem Filter kompatibel (Datensätze stimmen nicht überein)" ], - "The unit of measure for the specified point radius": [ - "Die Maßeinheit für den angegebenen Punktradius" + "Keep editing": ["Weiter bearbeiten"], + "Yes, cancel": ["Ja, abbrechen"], + "There are unsaved changes.": ["Ungesicherte Änderungen vorhanden."], + "Are you sure you want to cancel?": ["Möchten Sie wirklich abbrechen?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "Fehler beim Laden von Diagrammdatenquellen. Filter funktionieren möglicherweise nicht ordnungsgemäß." ], - "The user seems to have been deleted": [ - "Der/die Benutzer*in scheint gelöscht worden zu sein" + "Transparent": ["Transparent"], + "White": ["Weiß"], + "All filters": ["Alle Filter"], + "Click to edit %s.": ["Klicken Sie hier, um %s zu bearbeiten."], + "Click to edit chart.": [ + "Klicken Sie hier, um das Diagramm zu bearbeiten." ], - "The user/password combination is not valid (Incorrect password for user).": [ - "" + "Use %s to open in a new tab.": [ + "Verwenden Sie %s, um eine neue Registerkarte zu öffnen." ], - "The username \"%(username)s\" does not exist.": [ - "Der Benutzer*innenname \"%(username)s\" existiert nicht." + "Medium": ["Mittel"], + "New header": ["Neue Überschrift"], + "Tab title": ["Registerkartentitel"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "In dieser Sitzung ist eine Unterbrechung aufgetreten, und einige Steuerelemente funktionieren möglicherweise nicht wie beabsichtigt. Wenn Sie der/die Entwickler*in dieser App sind, überprüfen Sie bitte, ob das Gast-Token korrekt generiert wird." ], - "The username provided when connecting to a database is not valid.": [ - "Der Benutzer*innenname, der beim Herstellen einer Datenbankverbindung angegeben wurde, ist ungültig." + "Equal to (=)": ["Ist gleich (==)"], + "Not equal to (≠)": ["Ist nicht gleich (≠)"], + "Less than (<)": ["Weniger als (<)"], + "Less or equal (<=)": ["Kleiner oder gleich (<=)"], + "Greater than (>)": ["Größer als (>)"], + "Greater or equal (>=)": ["Größer oder gleich (>=)"], + "In": ["in"], + "Not in": ["Nicht in"], + "Like": ["Wie (Like)"], + "Like (case insensitive)": [ + "Like (Groß-/Kleinschreibung wird nicht beachtet)" ], - "The way the ticks are laid out on the X-axis": [ - "Die Art und Weise, wie die Ticks auf der X-Achse angeordnet sind" + "Is not null": ["Ist nicht null"], + "Is null": ["Ist null"], + "use latest_partition template": ["latest_partition Vorlage verwenden"], + "Is true": ["Ist wahr"], + "Is false": ["Ist falsch"], + "TEMPORAL_RANGE": ["TEMPORAL_RANGE"], + "Time granularity": ["Zeitgranularität"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ + "Dauer in ms (100,40008 => 100ms 400μs 80ns)" ], - "The width of the lines": ["Die Breite der Linien"], - "There are associated alerts or reports": [ - "Es gibt zugehörige Alarme oder Reports" + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Eine oder mehrere Spalten, nach denen gruppiert werden soll. Gruppierungen mit hoher Kardinalität sollten ein Zeitreihenlimit enthalten, um die Anzahl der abgerufenen und dargestellten Zeitreihen zu begrenzen." ], - "There are associated alerts or reports: %s,": [ - "Es gibt zugehörige Alarme oder Reports: %s," + "One or many metrics to display": [ + "Eine oder mehrere anzuzeigende Metriken" ], - "There are no charts added to this dashboard": [ - "Diesem Dashboard wurden keine Diagramme hinzugefügt." + "Fixed color": ["Fixierte Farbe"], + "Right axis metric": ["Metrik der rechten Achse"], + "Choose a metric for right axis": [ + "Wählen Sie eine Metrik für die rechte Achse" ], - "There are no components added to this tab": [ - "Dieser Registerkarte wurden keine Komponenten hinzugefügt." + "Linear color scheme": ["Farbverlaufschema"], + "Color metric": ["Metrik auswählen"], + "One or many controls to pivot as columns": [ + "Ein oder mehrere Steuerelemente, um zu Spalten zu pivotieren" ], - "There are no databases available": [ - "Es sind keine Datenbanken verfügbar" + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie einfache natürliche, englische Sprache wie in \"10 seconds“, \"1 Day“ oder \"56 weeks“ eingeben und verwenden können" ], - "There are no filters in this dashboard.": [ - "In diesem Dashboard gibt es keine Filter." + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Die Zeitgranularität für die Visualisierung. Dadurch wird eine Datumstransformation angewendet, um ihre Zeitspalte zu ändern, und es wird eine neue Zeitgranularität definiert. Die Optionen hier werden pro Datenbankmodul im Superset-Quellcode definiert." ], - "There are unsaved changes.": ["Ungesicherte Änderungen vorhanden."], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "In der SQL-Abfrage liegt ein Syntaxfehler vor. Vielleicht gab es einen Rechtschreibfehler oder einen Tippfehler." + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Der Zeitraum für die Visualisierung. Alle relativen Zeiten, z.B. \"Letzter Monat\", \"Letzte 7 Tage\", \"jetzt\" usw., werden auf dem Server anhand der Ortszeit des Servers (ohne Zeitzone) ausgewertet. Alle QuickInfos und Platzhalterzeiten werden in UTC (ohne Zeitzone) ausgedrückt. Die Zeitstempel werden dann von der Datenbank anhand der lokalen Zeitzone des Moduls ausgewertet. Beachten Sie, dass man die Zeitzone explizit nach dem ISO 8601-Format festlegen kann, wenn entweder die Start- und/oder Endzeit angegeben wird." ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "Es gibt keine Diagrammdefinition, die dieser Komponente zugeordnet ist. Könnte sie gelöscht worden sein?" + "Limits the number of rows that get displayed.": [ + "Begrenzt die Anzahl der Zeilen, die angezeigt werden." ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Für diese Komponente ist nicht genügend Platz vorhanden. Versuchen Sie, die Breite zu verringern oder die Zielbreite zu erhöhen." + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Metrik, die verwendet wird, um zu definieren, wie die obersten Reihen sortiert werden, wenn eine Reihen- oder Zeilenbegrenzung vorhanden ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls zutreffend)." ], - "There was an error fetching dataset": [ - "Fehler beim Abrufen des Datensatzes" + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Definiert die Gruppierung von Entitäten. Jede Serie wird als bestimmte Farbe im Diagramm angezeigt und verfügt über einen Legenden-Umschalter" ], - "There was an error fetching dataset's related objects": [ - "Fehler beim Abrufen der zugehörigen Objekte des Datensatzes" + "Metric assigned to the [X] axis": [ + "Metrik, die der [X]-Achse zugewiesen ist" ], - "There was an error fetching tables": [ - "Fehler beim Abrufen von Tabellen" + "Metric assigned to the [Y] axis": [ + "Metrik, die der [Y]-Achse zugewiesen ist" ], - "There was an error fetching the favorite status: %s": [ - "Beim Abrufen des Favoritenstatus ist ein Problem aufgetreten: %s" + "Bubble size": ["Blasengröße"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Wenn 'Berechnungstyp' auf \"Prozentuale Änderung\" gesetzt ist, wird das Y-Achsenformat '.1%' erzwungen" ], - "There was an error fetching your recent activity:": [ - "Beim Abrufen der letzten Aktivität ist ein Fehler aufgetreten:" + "Color scheme": ["Farbschema"], + "An error occurred while starring this chart": [ + "Beim Favorisieren des Diagramms ist ein Fehler aufgetreten." ], - "There was an error loading the dataset metadata": [ - "Fehler beim Laden der Datensatz-Metadaten" + "Chart [%s] has been saved": ["Diagramm [%s] wurde gespeichert"], + "Chart [%s] has been overwritten": ["Diagramm [%s] wurde überschrieben"], + "Dashboard [%s] just got created and chart [%s] was added to it": [ + "Dashboard [%s] wurde gerade erstellt und Diagramm [%s] hinzugefügt" ], - "There was an error loading the schemas": [ - "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" + "Chart [%s] was added to dashboard [%s]": [ + "Diagramm [%s] wurde dem Dashboard hinzugefügt [%s]" ], - "There was an error loading the tables": [ - "Beim Laden der Tabellen ist ein Fehler aufgetreten" + "GROUP BY": ["Gruppieren nach"], + "Use this section if you want a query that aggregates": [ + "Verwenden Sie diesen Abschnitt, wenn Sie eine Abfrage benötigen, die aggregiert" ], - "There was an error saving the favorite status: %s": [ - "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s" + "NOT GROUPED BY": ["NICHT GRUPPIERT NACH"], + "Use this section if you want to query atomic rows": [ + "Verwenden Sie diesen Abschnitt, wenn Sie atomare Zeilen abfragen möchten" ], - "There was an error with your request": [ - "Bei Ihrer Anfrage ist ein Fehler aufgetreten" + "The X-axis is not on the filters list": [ + "Die X-Achse befindet sich nicht in der Filterliste" ], - "There was an issue deleting %s: %s": [ - "Beim Löschen von %s ist ein Problem aufgetreten: %s" + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "Die X-Achse befindet sich nicht in der Filterliste, weshalb sie nicht als\n Zeitbereichsfilter in Dashboards verwendet werden kaann. Möchten Sie es zur Filterliste hinzufügen?" ], - "There was an issue deleting the selected %s: %s": [ - "Beim Löschen der ausgewählten %s ist ein Problem aufgetreten: %s" + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Sie können den letzten Zeitfilter nicht löschen, da er für Zeitbereichsfilter in Dashboards verwendet wird." ], - "There was an issue deleting the selected annotations: %s": [ - "Beim Löschen der ausgewählten Anmerkungen ist ein Problem aufgetreten: %s" + "This section contains validation errors": [ + "Dieser Abschnitt enthält Validierungsfehler" ], - "There was an issue deleting the selected charts: %s": [ - "Beim Löschen der ausgewählten Diagramme ist ein Problem aufgetreten: %s" + "Keep control settings?": ["Steuerelement-Einstellungen beibehalten?"], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Sie haben Datensätze geändert. Alle Steuerelemente mit Daten (Spalten, Metriken), die diesem neuen Dataset entsprechen, wurden beibehalten." ], - "There was an issue deleting the selected dashboards: ": [ - "Beim Löschen der ausgewählten Dashboards ist ein Problem aufgetreten: " + "Continue": ["Weiter"], + "Clear form": ["Formular zurücksetzen"], + "No form settings were maintained": [ + "Es wurden keine Formulareinstellungen beibehalten" ], - "There was an issue deleting the selected datasets: %s": [ - "Beim Löschen der ausgewählten Datensätze ist ein Problem aufgetreten: %s" + "We were unable to carry over any controls when switching to this new dataset.": [ + "Wir konnten beim Wechsel zu diesem neuen Datensatz keine Steuerungselemente übernehmen." ], - "There was an issue deleting the selected layers: %s": [ - "Beim Löschen der ausgewählten Ebenen ist ein Problem aufgetreten: %s" + "Customize": ["Anpassen"], + "Generating link, please wait..": ["Link wird generiert, bitte warten."], + "Chart height": ["Diagrammhöhe"], + "Chart width": ["Diagrammbreite"], + "Save (Overwrite)": ["Speichern (Überschreiben)"], + "Save as...": ["Speichern unter..."], + "Chart name": ["Diagrammname"], + "Dataset Name": ["Datensatzbezeichnung"], + "A reusable dataset will be saved with your chart.": [ + "Ein wiederverwendbarer Datensatz wird mit Ihrem Diagramm gespeichert." ], - "There was an issue deleting the selected queries: %s": [ - "Beim Löschen der ausgewählten Abfragen ist ein Problem aufgetreten: %s" + "Add to dashboard": ["Zu Dashboard hinzufügen"], + "Select a dashboard": ["Dashboard auswählen"], + "Select": ["Auswählen"], + " a dashboard OR ": [" ein Dashboard ODER "], + "create": ["Erstellen"], + " a new one": [" eine neue"], + "Save & go to dashboard": ["Speichern & zum Dashboard gehen"], + "Save chart": ["Diagramm speichern"], + "Formatted date": ["Formatiertes Datum"], + "Column Formatting": ["Spaltenformatierung"], + "Collapse data panel": ["Datenbereich ausblenden"], + "Expand data panel": ["Datenbereich erweitern"], + "Samples": ["Beispiele"], + "No samples were returned for this dataset": [ + "Für diesen Dataensatz wurden keine Beispiele zurückgegeben" ], - "There was an issue deleting the selected templates: %s": [ - "Beim Löschen der ausgewählten Vorlagen ist ein Problem aufgetreten: %s" + "No results": ["Keine Ergebnisse"], + "Search Metrics & Columns": ["Metriken & Spalten durchsuchen"], + "Create a dataset": ["Datensatz erstellen"], + " to edit or add columns and metrics.": [ + ", um Spalten und Metriken zu bearbeiten oder hinzuzufügen." ], - "There was an issue deleting: %s": [ - "Beim Löschen ist ein Problem aufgetreten: %s" + "Showing %s of %s": ["Sie sehen %s von %s"], + "Show less...": ["Weniger..."], + "Show all...": ["Zeige alle …"], + "Show Less...": ["Weniger anzeigen..."], + "Unable to retrieve dashboard colors": [ + "Dashboardfarben können nicht abgerufen werden" ], - "There was an issue duplicating the dataset.": [ - "Beim Duplizieren des Datensatzes ist ein Problem aufgetreten." + "Not added to any dashboard": ["Zu keinem Dashboard hinzugefügt"], + "You can preview the list of dashboards in the chart settings dropdown.": [ + "Sie können eine Vorschauliste der Dashboards in der Dropdownliste für die Diagrammeinstellungen anzeigen." ], - "There was an issue duplicating the selected datasets: %s": [ - "Beim Duplizieren der ausgewählten Datensätze ist ein Problem aufgetreten: %s" + "Not available": ["Nicht verfügbar"], + "Add the name of the chart": ["Name des Diagramms hinzufügen"], + "Chart title": ["Diagrammtitel"], + "Add required control values to save chart": [ + "Fügen Sie erforderlicher Steuerelementwerte hinzu, um das Diagramms zu speichern" ], - "There was an issue favoriting this dashboard.": [ - "Es gab ein Problem dabei, dieses Dashboard zu den Favoriten hinzuzufügen." + "Chart type requires a dataset": [ + "Diagrammtyp erfordert einen Datensatz" ], - "There was an issue fetching reports attached to this dashboard.": [ - "Es gab ein Problem beim Abrufen von Reports, die an dieses Dashboard angehängt waren." + "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Dieser Diagrammtyp wird nicht unterstützt, wenn eine nicht gespeicherte Abfrage als Diagrammquelle verwendet wird. " ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Beim Abrufen des Favoritenstatus dieses Dashboards ist ein Problem aufgetreten." + " to visualize your data.": [" , um Ihre Daten zu visualisieren."], + "Required control values have been removed": [ + "Erforderliche Steuerwerte wurden entfernt" ], - "There was an issue fetching your chart: %s": [ - "Beim Abrufen Ihres Diagramms ist ein Problem aufgetreten: %s" + "Your chart is not up to date": ["Ihr Diagramm ist nicht aktuell"], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Sie haben die Werte in der Systemsteuerung aktualisiert, aber das Diagramm wurde nicht automatisch aktualisiert. Führen Sie die Abfrage aus, indem Sie auf die Schaltfläche \"Diagramm aktualisieren\" klicken oder" ], - "There was an issue fetching your dashboards: %s": [ - "Beim Abrufen Ihrer Dashboards ist ein Problem aufgetreten: %s" + "Controls labeled ": ["Steuerelemente beschriftet "], + "Control labeled ": ["Feld "], + "Chart Source": ["Diagrammquelle"], + "Open Datasource tab": ["Datenquellen-Reiter öffnen"], + "Original": ["Original"], + "Pivoted": ["Pilotiert"], + "You do not have permission to edit this chart": [ + "Sie sind nicht berechtigt, dieses Diagramm zu bearbeiten" ], - "There was an issue fetching your recent activity: %s": [ - "Beim Abrufen Ihrer letzten Aktivität ist ein Problem aufgetreten: %s" + "Chart properties updated": ["Diagrammeigenschaften aktualisiert"], + "Edit Chart Properties": ["Diagrammeigenschaften bearbeiten"], + "This chart is managed externally, and can't be edited in Superset": [ + "Dieses Diagramm wird extern verwaltet und kann nicht in Superset bearbeitet werden." ], - "There was an issue fetching your saved queries: %s": [ - "Beim Abrufen Ihrer gespeicherten Abfragen ist ein Problem aufgetreten: %s" + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Die Beschreibung kann als Widget-Titel in der Dashboard-Ansicht angezeigt werden. Unterstützt Markdown." ], - "There was an issue previewing the selected query %s": [ - "Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetreten" + "Person or group that has certified this chart.": [ + "Person oder Gruppe, die dieses Diagramm zertifiziert hat." ], - "There was an issue previewing the selected query. %s": [ - "Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s" + "Configuration": ["Konfiguration"], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Setzen Sie diesen auf -1 um das Coaching zu umgehen. Beachten Sie, dass standardmäßig das Timeout des Datensatzes verwendet wird, wenn kein Wert definiert wurde." ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "Es gibt eine Schleife in Ihrem Sankey, bitte geben Sie einen Baum an. Hier ist ein fehlerhafter Link: {}" + "A list of users who can alter the chart. Searchable by name or username.": [ + "Eine Liste der Benutzer*innen, die das Diagramm ändern können. Durchsuchbar nach Name oder Benutzer*innenname." ], - "These are the tables this filter will be applied to.": [ - "Dies sind die Tabellen, auf die dieser Filter angewendet wird." + "Limit reached": ["Limit erreicht"], + "Create chart": ["Diagramm erstellen"], + "Update chart": ["Diagramm aktualisieren"], + "Invalid lat/long configuration.": [ + "Ungültige Längen-/Breitengrad-Konfiguration." ], - "These filters apply to the values available in the dropdowns": [ - "Diese Filter gelten für die in den Dropdowns verfügbaren Werte" - ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Diese Parameter werden dynamisch generiert, wenn Sie in der Explore-Ansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Dieses JSON-Objekt wird hier als Referenz und für Hauptbenutzer*in verfügbar gemacht, die möglicherweise bestimmte Parameter ändern möchten." - ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Dieses JSON-Objekt wird dynamisch generiert, wenn Sie in der Dashboardansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Es wird hier als Referenz und für Power-User verfügbar gemacht, die möglicherweise bestimmte Parameter ändern möchten." - ], - "This action will permanently delete %s.": [ - "Mit dieser Aktion wird %s dauerhaft gelöscht." - ], - "This action will permanently delete the layer.": [ - "Durch diese Aktion wird die Ebene dauerhaft gelöscht." + "Reverse lat/long ": ["Länge/Breite vertauschen "], + "Longitude & Latitude columns": ["Längen- und Breitengradspalten"], + "Delimited long & lat single column": [ + "Länge und Breite in einer Spalte mit Trennzeichen" ], - "This action will permanently delete the saved query.": [ - "Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht." + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Mehrere Formate akzeptiert, recherchieren Sie in der geopy.points Python-Bibliothek nach weiteren Details" ], - "This action will permanently delete the template.": [ - "Durch diese Aktion wird die Vorlage dauerhaft gelöscht." + "Geohash": ["Geo Hashing"], + "textarea": ["Textfeld"], + "in modal": [" "], + "Sorry, An error occurred": ["Leider ist ein Fehler aufgetreten"], + "Save as Dataset": ["Als Datensatz speichern"], + "Open in SQL Lab": ["In SQL Lab öffnen"], + "Failed to verify select options: %s": [ + "Auswahloptionen konnten nicht überprüft werden: %s" ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "Dies kann entweder eine IP-Adresse (z.B. 127.0.0.1) oder ein Domainname (z.B. mydatabase.com) sein." + "No annotation layers": ["Keine Anmerkungs-Layer"], + "Add an annotation layer": ["Anmerkungsebene hinzufügen"], + "Annotation layer": ["Anmerkungsebene"], + "Select the Annotation Layer you would like to use.": [ + "Wählen Sie den Anmerkungs-Layer aus, den Sie verwenden möchten." ], - "This chart has been moved to a different filter scope.": [ - "Dieses Diagramm wurde in einen anderen Filterbereich verschoben." + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "Verwenden Sie ein anderes vorhandenes Diagramm als Quelle für Anmerkungen und Überlagerungen.\n Ihr Diagramm muss einer der folgenden Visualisierungstypen sein: [%s]" ], - "This chart is managed externally, and can't be edited in Superset": [ - "Dieses Diagramm wird extern verwaltet und kann nicht in Superset bearbeitet werden." + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Erwartet eine Formel mit abhängigem Zeitparameter 'x'\n in Millisekunden seit Startzeit der UNIX-Zeit (epoch). mathjs wird verwendet, um die Formeln auszuwerten.\n Beispiel: '2x+5'" ], - "This chart might be incompatible with the filter (datasets don't match)": [ - "Dieses Diagramm ist möglicherweise nicht mit dem Filter kompatibel (Datensätze stimmen nicht überein)" + "Annotation layer value": ["Wert der Anmerkungsebene"], + "Bad formula.": ["Fehlerhafte Formel."], + "Annotation Slice Configuration": ["Konfiguration Anmerkungs-Slice"], + "This section allows you to configure how to use the slice\n to generate annotations.": [ + "In diesem Abschnitt können Sie konfigurieren, wie die Zeitscheibe verwendet wird.\n , um Anmerkungen zu generieren." ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "Dieser Diagrammtyp wird nicht unterstützt, wenn eine nicht gespeicherte Abfrage als Diagrammquelle verwendet wird. " + "Annotation layer time column": ["Zeitspalte der Anmerkungsebene"], + "Interval start column": ["Spalte \"Intervallstart\""], + "Event time column": ["Spalte \"Ereigniszeit\""], + "This column must contain date/time information.": [ + "Diese Spalte muss Datums-/Uhrzeitinformationen enthalten." ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ - "Dieses Farbschema wird durch benutzerdefinierte Beschriftungsfarben überschrieben.\n Überprüfen Sie die JSON-Metadaten in den erweiterten Einstellungen" + "Annotation layer interval end": ["Ende des Anmerkungsebenen-Intervalls"], + "Interval End column": ["Spalte \"Intervallende\""], + "Annotation layer title column": ["Titelspalte der Anmerkungsebene"], + "Title Column": ["Titelspalte"], + "Pick a title for you annotation.": [ + "Wählen Sie einen Titel für Ihre Anmerkung aus." ], - "This column might be incompatible with current dataset": [ - "Diese Spalte ist möglicherweise nicht mit dem aktuellen Datensatz kompatibel." + "Annotation layer description columns": [ + "Beschreibungsspalten für Anmerkungsebenen" ], - "This column must contain date/time information.": [ - "Diese Spalte muss Datums-/Uhrzeitinformationen enthalten." + "Description Columns": ["Beschreibungsspalten"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Wählen Sie eine oder mehrere Spalten aus, die in der Anmerkung angezeigt werden sollen. Wenn Sie keine Spalte auswählen, werden alle angezeigt." ], + "Override time range": ["Zeitbereich überschreiben"], "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "Dies steuert, ob das Feld \"time_range\" aus der aktuellen\n Ansicht an das Diagramm mit den Anmerkungsdaten übergeben werden soll." ], + "Override time grain": ["Zeitgranularität überschreiben"], "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "Dies steuert, ob das Zeitgranularitäten-Feld aus der aktuellen\n Ansicht an das Diagramm mit den Anmerkungsdaten übergeben werden soll." ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "Dieses Dashboard aktualisiert sich automatisch. Die nächste automatische Aktualisierung erfolgt in %s." - ], - "This dashboard is managed externally, and can't be edited in Superset": [ - "Dieses Dashboard wird extern verwaltet und kann nicht in Superset bearbeitet werden." + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Zeitdelta in natürlicher Sprache\n (Beispiel: 24 Stunden, 7 Tage, 56 Wochen, 365 Tage)" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der Dashboards angezeigt. Wählen Sie es als Favorit aus, um es dort zu sehen, oder greifen Sie direkt über die URL darauf zu." + "Display configuration": ["Anzeige-Konfiguration"], + "Configure your how you overlay is displayed here.": [ + "Konfigurieren Sie hier, wie Ihr Overlay angezeigt wird." ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der Dashboards angezeigt. Klicken Sie hier, um dieses Dashboard zu veröffentlichen." + "Annotation layer stroke": ["Strichstärke Anmerkungebene"], + "Style": ["Stil"], + "Solid": ["Durchgezogen"], + "Dashed": ["Gestrichelt"], + "Long dashed": ["Lange gestrichelt"], + "Dotted": ["Gepunktet"], + "Annotation layer opacity": ["Deckkraft der Amerkungsebene"], + "Color": ["Farbe"], + "Automatic Color": ["Automatische Farbe"], + "Shows or hides markers for the time series": [ + "Ein- oder Ausblenden von Markern für die Zeitreihe" ], - "This dashboard is now hidden": ["Dieses Dashboard ist nun verborgen"], - "This dashboard is now published": [ - "Dieses Dashboard ist jetzt veröffentlicht" + "Hide Line": ["Linie ausblenden"], + "Hides the Line for the time series": [ + "Blendet die Linie für die Zeitreihe aus" ], - "This dashboard is published. Click to make it a draft.": [ - "Dieses Dashboard ist veröffentlicht. Klicken Sie hier, um es in den Entwurfstatus zu setzen." + "Layer configuration": ["Ebenen-Konfiguration"], + "Configure the basics of your Annotation Layer.": [ + "Konfigurieren Sie die Grundeinstellungen der Anmerkungsebene." ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ - "Dieses Dashboard ist bereit zum Einbetten. Übergeben Sie in Ihrer Anwendung die folgende ID an das SDK:" + "Mandatory": ["Notwendig"], + "Hide layer": ["Ebene verstecken"], + "Show label": ["Beschriftung anzeigen"], + "Whether to always show the annotation label": [ + "Ob die Anmerkungs-Beschriftung immer angezeigt werden soll" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "Dieses Dashboard wurde kürzlich geändert. Bitte laden Sie das Dashboard neu, um die neueste Version zu erhalten." + "Annotation layer type": ["Anmerkungsebenen-Typ"], + "Choose the annotation layer type": [ + "Auswählen des Anmerkungsebenen-Typs" ], - "This dashboard was saved successfully.": [ - "Dieses Dashboard wurde erfolgreich gespeichert." + "Annotation source type": ["Typ der Anmerkungsquelle"], + "Choose the source of your annotations": [ + "Wählen Sie die Quelle Ihrer Anmerkungen aus" ], - "This database is managed externally, and can't be edited in Superset": [ - "Diese Datenbank wird extern verwaltet und kann nicht in Superset bearbeitet werden." + "Annotation source": ["Quelle Anmerkungen"], + "Remove": ["Entfernen"], + "Time series": ["Zeitreihen"], + "Edit annotation layer": ["Anmerkungsebene bearbeiten"], + "Add annotation layer": ["Anmerkungsebene hinzufügen"], + "Empty collection": ["Leere Sammlung"], + "Add an item": ["Element hinzufügen"], + "Remove item": ["Element entfernen"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Dieses Farbschema wird durch benutzerdefinierte Beschriftungsfarben überschrieben.\n Überprüfen Sie die JSON-Metadaten in den erweiterten Einstellungen" ], - "This database table does not contain any data. Please select a different table.": [ - "Diese Datenbanktabelle enthält keine Daten. Bitte wählen Sie eine andere Tabelle aus." + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Das Farbschema wird vom zugehörigen Dashboard bestimmt.\n Bearbeiten Sie das Farbschema in den Dashboard-Eigenschaften." ], - "This dataset is managed externally, and can't be edited in Superset": [ - "Dieser Datensatz wird extern verwaltet und kann nicht in Superset bearbeitet werden." + "dashboard": ["Dashboard"], + "Dashboard scheme": ["Dashboard Schema"], + "Select color scheme": ["Farbschema auswählen"], + "Select scheme": ["Schema auswählen"], + "Show less columns": ["Weniger Spalten anzeigen"], + "Show all columns": ["Alle Spalten anzeigen"], + "Fraction digits": ["Nachkommastellen"], + "Number of decimal digits to round numbers to": [ + "Anzahl der Dezimalstellen, auf die gerundet wird" ], - "This dataset is not used to power any charts.": [ - "Dieser Datesatz wird nicht von Diagrammen genutzt." + "Min Width": ["Min. Breite"], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Standardmäßig minimale Spaltenbreite in Pixel, tatsächliche Breite kann immer noch größer sein, wenn andere Spalten nicht viel Platz benötigen" ], - "This defines the element to be plotted on the chart": [ - "Definiert das Element, das im Diagramm dargestellt werden soll" + "Text align": ["Textausrichtung"], + "Horizontal alignment": ["Horizontale Ausrichtung"], + "Show cell bars": ["Zellenbalken anzeigen"], + "Whether to align positive and negative values in cell bar chart at 0": [ + "Ob positive und negative Werte im Zellbalkendiagramm bei 0 ausgerichtet werden sollen" ], - "This defines the level of the hierarchy": [ - "Dies definiert die Ebene der Hierarchie" + "Whether to colorize numeric values by if they are positive or negative": [ + "Ob numerische Werte eingefärbt werden sollen, wenn sie positiv oder negativ sind" ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Diese Felder fungieren als Superset-Ansicht, was bedeutet, dass Superset eine Abfrage für diese Zeichenfolge als Unterabfrage ausführt." + "Truncate Cells": ["Zellen abschneiden"], + "Truncate long cells to the \"min width\" set above": [ + "Lange Zellen auf die oben festgelegte \"Mindestbreite\" abschneiden" ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Dieser Filter ist nicht im Dashboard vorhanden. Er wird nicht angewendet." + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ + "" ], - "This filter might be incompatible with current dataset": [ - "Dieser Filter ist möglicherweise nicht mit dem aktuellen Datensatz kompatibel." + "Small number format": ["Kleines Zahlenformat"], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "D3-Zahlenformat für Zahlen zwischen -1,0 und 1,0. Nützlich, wenn Sie verschiedene Anzahlen signifikanter Ziffern für kleine und große Zahlen haben möchten" ], - "This filter set is identical to: \"%s\"": [ - "Diese Filtergruppe ist identisch mit: \"%s\"" + "Edit formatter": ["Formatierer bearbeiten"], + "Add new formatter": ["Neuen Formatierer hinzufügen"], + "Add new color formatter": ["Neuen Farbformatierer hinzufügen"], + "alert": ["Alarm"], + "error dark": [""], + "This value should be smaller than the right target value": [ + "Dieser Wert sollte kleiner als der rechte Zielwert sein" ], - "This functionality is disabled in your environment for security reasons.": [ - "Diese Funktion ist in Ihrer Umgebung aus Sicherheitsgründen deaktiviert." + "This value should be greater than the left target value": [ + "Dieser Wert sollte größer als der linke Zielwert sein" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "Dies ist die Bedingung, die der WHERE-Klausel hinzugefügt wird. Um beispielsweise nur Zeilen für eine*n bestimmte*n Klient*n zurückzugeben, können Sie einen regulären Filter mit der Klausel \"client_id = 9\" definieren. Um keine Zeilen anzuzeigen, es sei denn, ein*e Benutzer*in gehört einer RLS-Filterrolle an, kann ein Basisfilter mit der Klausel '1 = 0' (immer falsch) erstellt werden." + "Required": ["Erforderlich"], + "Operator": ["Operator"], + "Left value": ["Linker Wert"], + "Right value": ["Rechter Wert"], + "Target value": ["Zielwert"], + "Select column": ["Spalte auswählen"], + "Lower threshold must be lower than upper threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Dieses json-Objekt beschreibt die Positionierung der Widgets im Dashboard. Es wird dynamisch generiert, wenn die Größe und Positionen der Widgets per Drag & Drop in der Dashboard-Ansicht angepasst werden" + "The lower limit of the threshold range of the Isoband": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Datensatz bearbeiten"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Sie müssen ein Datensatzbesitzer*in sein, um bearbeiten zu können. Bitte wenden Sie sich an eine/n Datensatzbesitzer*in, um Änderungs- oder Bearbeitungszugriff zu erhalten." ], - "This markdown component has an error.": [ - "Diese Markdown-Komponente weist einen Fehler auf." + "View in SQL Lab": ["In SQL Lab anzeigen"], + "Query preview": ["Abfragen-Voransicht"], + "Save as dataset": ["Als Datensatz speichern"], + "Missing URL parameters": ["Fehlende URL-Parameter"], + "The URL is missing the dataset_id or slice_id parameters.": [ + "In der URL fehlen die Parameter dataset_id oder slice_id." ], - "This markdown component has an error. Please revert your recent changes.": [ - "Diese Markdown-Komponente weist einen Fehler auf. Bitte machen Sie Ihre letzten Änderungen rückgängig." + "The dataset linked to this chart may have been deleted.": [ + "Der mit diesem Diagramm verknüpfte Datensatz wurde möglicherweise gelöscht." ], - "This may be triggered by:": ["Dies kann ausgelöst werden durch:"], - "This metric might be incompatible with current dataset": [ - "Diese Metrik ist möglicherweise nicht mit dem aktuellen Datensatz kompatibel." + "RANGE TYPE": ["BEREICHSTYP"], + "Actual time range": ["Tatsächlicher Zeitbereich"], + "APPLY": ["ANWENDEN"], + "Edit time range": ["Zeitraum bearbeiten"], + "Configure Advanced Time Range ": [ + "Erweiterten Zeitbereich konfigurieren " ], - "This section allows you to configure how to use the slice\n to generate annotations.": [ - "In diesem Abschnitt können Sie konfigurieren, wie die Zeitscheibe verwendet wird.\n , um Anmerkungen zu generieren." + "START (INCLUSIVE)": ["START (INKLUSIVE)"], + "Start date included in time range": [ + "Startdatum im Zeitbereich enthalten" ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Dieser Abschnitt enthält Optionen, die eine erweiterte analytische Nachbearbeitung von Abfrageergebnissen ermöglichen" + "END (EXCLUSIVE)": ["ENDE (EXKLUSIV)"], + "End date excluded from time range": [ + "Enddatum aus dem Zeitraum ausgeschlossen" ], - "This section contains validation errors": [ - "Dieser Abschnitt enthält Validierungsfehler" + "Configure Time Range: Previous...": [ + "Zeitraum konfigurieren: Vorhergehende…" ], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ - "In dieser Sitzung ist eine Unterbrechung aufgetreten, und einige Steuerelemente funktionieren möglicherweise nicht wie beabsichtigt. Wenn Sie der/die Entwickler*in dieser App sind, überprüfen Sie bitte, ob das Gast-Token korrekt generiert wird." + "Configure Time Range: Last...": ["Zeitraum konfigurieren: Letzte..."], + "Configure custom time range": [ + "Benutzerdefinierten Zeitraum konfigurieren" ], - "This table already has a dataset": [ - "Diese Tabelle hat bereits einen Datensatz" + "Relative quantity": ["Relative Menge"], + "Relative period": ["Relativer Zeitraum"], + "Anchor to": ["Verankern mit"], + "NOW": ["JETZT"], + "Date/Time": ["Datum/Zeit"], + "Return to specific datetime.": [ + "Kehren Sie zu bestimmtem Zeitpunkt zurück." ], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ - "Dieser Tabelle ist bereits ein Datensatz zugeordnet. Sie können einer Tabelle nur einen Datasatz zuordnen.\n" - ], - "This value should be greater than the left target value": [ - "Dieser Wert sollte größer als der linke Zielwert sein" - ], - "This value should be smaller than the right target value": [ - "Dieser Wert sollte kleiner als der rechte Zielwert sein" + "Syntax": ["Syntax"], + "Example": ["Beispiel"], + "Moves the given set of dates by a specified interval.": [ + "Verschiebt den angegebenen Satz von Datumsangaben um ein angegebenes Intervall." ], - "This visualization type does not support cross-filtering.": [ - "Dieser Visualisierungstyp unterstützt keine Kreuzfilterung." + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Kürzt das angegebene Datum auf die von der Datumseinheit angegebene Genauigkeit." ], - "This visualization type is not supported.": [ - "Dieser Visualisierungstyp wird nicht unterstützt." + "Get the last date by the date unit.": [ + "Das letzte Datum anhand der Datumseinheit anfordern." ], - "This was triggered by:": ["Ausgelöst durch:", "Ausgelöst durch:"], - "This will remove your current embed configuration.": [ - "Dadurch wird Ihre aktuelle Embedded-Konfiguration entfernt." + "Get the specify date for the holiday": [ + "Abrufen des angegebenen Datums für den Feiertag" ], - "Threshold alpha level for determining significance": [ - "Schwellenwert für Alpha-Level zur Bestimmung der Signifikanz" + "Previous": ["Zurück"], + "Custom": ["Angepasst"], + "last day": ["Gestern"], + "last week": ["letzte Woche"], + "last month": ["letzter Monat"], + "last quarter": ["letztes Quartal"], + "last year": ["letztes Jahr"], + "previous calendar week": ["vorherige Kalenderwoche"], + "previous calendar month": ["vorheriger Kalendermonat"], + "previous calendar year": ["vorheriges Kalenderjahr"], + "Seconds %s": ["Sekunden %s"], + "Minutes %s": ["Minuten %s"], + "Hours %s": ["Stunden %s"], + "Days %s": ["Tage %s"], + "Weeks %s": ["Wochen %s"], + "Months %s": ["Monate %s"], + "Quarters %s": ["Quartale %s"], + "Years %s": ["Jahre %s"], + "Specific Date/Time": ["Spezifisches Datum/Uhrzeit"], + "Relative Date/Time": ["Relatives Datum/Uhrzeit"], + "Now": ["Jetzt"], + "Midnight": ["Mitternacht"], + "Saved expressions": ["Gespeicherte Ausdrücke"], + "Saved": ["Speichern als"], + "%s column(s)": ["%s Spalte(n)"], + "No temporal columns found": ["Keine Zeitspalten gefunden"], + "No saved expressions found": ["Keine gespeicherten Ausdrücke gefunden"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" ], - "Threshold value should be double precision number": [ - "Der Schwellwert sollte eine Zahl mit doppelter Genauigkeit sein." + "Add calculated columns to dataset in \"Edit datasource\" modal": [ + "Fügen Sie berechnete Spalten im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" ], - "Thumbnails": ["Vorschaubilder"], - "Thursday": ["Donnerstag"], - "Time": ["Zeit"], - "Time Column": ["Zeitspalte"], - "Time Comparison": ["Zeitvergleich"], - "Time Format": ["Zeitformat"], - "Time Grain": ["Zeitgranularität"], - "Time Granularity": ["Zeitgranularität"], - "Time Lag": ["Verzögerung"], - "Time Range": ["Zeitraum"], - "Time Ratio": ["Zeitverhältnis"], - "Time Series": ["Zeitreihen"], - "Time Series - Bar Chart": ["Zeitreihen - Balkendiagramm"], - "Time Series - Line Chart": ["Zeitreihen - Liniendiagramm"], - "Time Series - Nightingale Rose Chart": [ - "Zeitreihe - Nightingale Rose Chart" + " to mark a column as a time column": [ + " um eine Spalte als Zeitspalte zu markieren" ], - "Time Series - Paired t-test": ["Zeitreihen - t-Differenzentest"], - "Time Series - Percent Change": ["Zeitreihen - Prozentuale Veränderung"], - "Time Series - Period Pivot": ["Zeitreihen - Perioden-Pivot"], - "Time Series - Stacked": ["Zeitreihen - Gestapelt"], - "Time Series Options": ["Zeitreihen-Optionen"], - "Time Shift": ["Zeitverschiebung"], - "Time Table View": ["Zeittabellenansicht"], - "Time column": ["Zeitspalten"], - "Time column \"%(col)s\" does not exist in dataset": [ - "Zeitspalte \"%(col)s\" ist im Datensatz nicht vorhanden" + " to add calculated columns": [", um berechnete Spalten hinzuzufügen"], + "Simple": ["Einfach"], + "Mark a column as temporal in \"Edit datasource\" modal": [ + "Markieren einer Spalte als temporär im Modal \"Datenquelle bearbeiten\"" ], - "Time column filter plugin": ["Zeitspalten-Filter-Plugin"], - "Time column to apply dependent temporal filter to": [ - "Zeitspalte, auf die ein abhängiger zeitlicher Filter angewendet werden soll" + "Custom SQL": ["Benutzerdefinierte SQL"], + "My column": ["Meine Spalte"], + "This filter might be incompatible with current dataset": [ + "Dieser Filter ist möglicherweise nicht mit dem aktuellen Datensatz kompatibel." ], - "Time column to apply time range to": [ - "Zeitspalte, auf die der Zeitbereich angewendet werden soll" + "This column might be incompatible with current dataset": [ + "Diese Spalte ist möglicherweise nicht mit dem aktuellen Datensatz kompatibel." ], - "Time comparison": ["Zeitvergleich"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ - "Zeitdelta in natürlicher Sprache\n (Beispiel: 24 Stunden, 7 Tage, 56 Wochen, 365 Tage)" + "Click to edit label": ["Klicke um zu Bezeichnung zu bearbeiten"], + "Drop columns/metrics here or click": [ + "Spalten/Metriken hierhin ziehen und ablegen oder klicken" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Zeitinterval ist unklar. Bitte geben Sie [%(human_readable)s ago] oder [%(human_readable)s later] an." + "This metric might be incompatible with current dataset": [ + "Diese Metrik ist möglicherweise nicht mit dem aktuellen Datensatz kompatibel." ], - "Time filter": ["Zeitfilter"], - "Time format": ["Zeitformat"], - "Time grain": ["Zeitgranularität"], - "Time grain filter plugin": ["Zeitgranularität-Plugin"], - "Time grain missing": ["Zeiteinteilung fehlt"], - "Time granularity": ["Zeitgranularität"], - "Time in seconds": ["Zeit in Sekunden"], - "Time lag": ["Verzögerung"], - "Time range": ["Zeitbereich"], - "Time ratio": ["Zeitverhältnis"], - "Time related form attributes": ["Zeitbezogene Formularattribute"], - "Time series": ["Zeitreihen"], - "Time series columns": ["Zeitreihenspalte"], - "Time shift": ["Zeitverschiebung"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Die Zeitzeichenfolge ist mehrdeutig. Bitte geben Sie [%(human_readable)s ago] oder [%(human_readable)s later] an." + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "\nDieser Filter wurde vom Kontext des Dashboards geerbt.\n Er wird beim Speichern des Diagramms nicht gespeichert.\n " ], - "Time-series Area Chart": ["Zeitreihen-Flächendiagramm"], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "Zeitreihen-Flächendiagramme ähneln Liniendiagrammen insofern, als sie Variablen mit der gleichen Skala darstellen, aber Flächendiagramme stapeln die Metriken übereinander. Ein Flächendiagramm in Superset kann streamen, stapeln oder erweitern." + "%s option(s)": ["%s Option(en)"], + "Select subject": ["Betreff auswählen"], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Eine solche Spalte wurde nicht gefunden. Um nach einer Metrik zu filtern, versuchen Sie es mit der Registerkarte Benutzerdefinierte SQL." ], - "Time-series Bar Chart": ["Zeitreihen - Balkendiagramm"], - "Time-series Bar Chart (legacy)": ["Zeitreihen-Balkendiagramm (Legacy)"], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Zeitreihen-Balkendiagramme werden verwendet, um die Änderungen in einer Metrik im Laufe der Zeit als eine Reihe von Balken anzuzeigen." + "To filter on a metric, use Custom SQL tab.": [ + "Um nach einer Metrik zu filtern, verwenden Sie die Registerkarte Benutzerdefinierte SQL." ], - "Time-series Chart": ["Zeitreihendiagramm"], - "Time-series Line Chart": ["Zeitreihen - Liniendiagramm"], - "Time-series Percent Change": ["Zeitreihen - Prozentuale Veränderung"], - "Time-series Period Pivot": ["Zeitreihen - Perioden-Pivot"], - "Time-series Scatter Plot": ["Zeitreihen-Streudiagramm"], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Das Zeitreihen-Streudiagramm stellt die Zeit auf der horizontalen Achse in linearen Einheiten dar, und die Punkte sind in der richtigen Reihenfolge verbunden. Es zeigt eine statistische Beziehung zwischen zwei Variablen." + "%s operator(s)": ["%s Operator(en)"], + "Select operator": ["Operator auswählen"], + "Comparator option": ["Komparator-Option"], + "Type a value here": ["Geben Sie hier einen Wert ein"], + "Filter value (case sensitive)": [ + "Filterwert (Groß-/Kleinschreibung beachten)" ], - "Time-series Smooth Line": ["Zeitreihe Glatte Linie"], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "„Zeitreihen-Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne Winkel und harte Kanten wirkt dieser Diagrammtyp manchmal passender und professioneller." + "Failed to retrieve advanced type": [ + "Fehler beim Abrufen des erweiterten Typs" ], - "Time-series Stepped Line": ["Zeitreihen-Stufenlinie"], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen Abständen auftreten." + "choose WHERE or HAVING...": ["Wählen Sie WHERE oder HAVING…"], + "Filters by columns": ["Nach Spalten filtern"], + "Filters by metrics": ["Nach Metriken filtern"], + "metric": ["Metrik"], + "Fixed": ["Fixiert"], + "Based on a metric": ["Auf Metrik basierend"], + "My metric": ["Meine Metrik"], + "Add metric": ["Metrik hinzufügen"], + "Select aggregate options": ["Aggregierungsoptionen auswählen"], + "%s aggregates(s)": ["%s Aggregate"], + "Select saved metrics": ["Gespeicherte Metriken auswählen"], + "%s saved metric(s)": ["%s gespeicherte Metrik(en)"], + "Saved metric": ["Gespeicherte Abfragen"], + "No saved metrics found": ["Keine gespeicherten Metriken gefunden"], + "Add metrics to dataset in \"Edit datasource\" modal": [ + "Fügen Sie Metriken im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" ], - "Time-series Table": ["Zeitreihentabelle"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Das Zeitreihen-Liniendiagramm wird verwendet, um wiederholte Messungen in regelmäßigen Zeitintervallen zu visualisieren. Liniendiagramm ist ein Diagrammtyp, der Informationen als eine Reihe von Datenpunkten anzeigt, die durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender Diagrammtyp, der in vielen Bereichen üblich ist." + " to add metrics": [", um Metriken hinzuzufügen"], + "Simple ad-hoc metrics are not enabled for this dataset": [ + "Einfache Ad-hoc-Metriken sind für diesen Datensatz nicht aktiviert" ], - "Timeout error": ["Zeitüberschreitung"], - "Timestamp format": ["Zeitstempelformat"], - "Timezone": ["Zeitzone"], - "Timezone offset (in hours) for this datasource": [ - "Zeitzonen-Offset (in Stunden) für diese Datenquelle" + "column": ["Spalte"], + "aggregate": ["Aggregat"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "Benutzerdefinierte SQL-Ad-hoc-Metriken sind für diesen Datasatz nicht aktiviert" ], - "Timezone selector": ["Zeitzonen-Auswahl"], - "Tiny": ["Sehr klein"], - "Title": ["Titel"], - "Title Column": ["Titelspalte"], - "Title is required": ["Titel ist erforderlich"], - "Title or Slug": ["Titel oder Kopfzeile"], - "To filter on a metric, use Custom SQL tab.": [ - "Um nach einer Metrik zu filtern, verwenden Sie die Registerkarte Benutzerdefinierte SQL." + "Error while fetching data: %s": ["Fehler beim Abrufen von Daten: %s"], + "Time series columns": ["Zeitreihenspalte"], + "Actual value": ["Istwert"], + "Sparkline": ["Sparkline"], + "Period average": ["Periodendurchschnitt"], + "The column header label": ["Die Spaltenüberschrift"], + "Column header tooltip": ["Tooltip zur Spaltenüberschrift"], + "Type of comparison, value difference or percentage": [ + "Art des Vergleichs, Wertdifferenz oder Prozentsatz" ], - "To get a readable URL for your dashboard": [ - "So erhalten Sie eine sprechende URL für Ihr Dashboard" + "Width": ["Breite"], + "Width of the sparkline": ["Breite der Sparkline"], + "Height of the sparkline": ["Höhe der Sparkline"], + "Time lag": ["Verzögerung"], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Tools": ["Werkzeuge"], - "Tooltip": ["Tooltip"], - "Tooltip sort by metric": ["Tooltip nach Metrik sortieren"], - "Tooltip time format": ["Tooltip-Zeitformat"], - "Top": ["Oben"], - "Top left": ["Oben links"], - "Top right": ["Oben rechts"], - "Top to Bottom": ["Oben nach unten"], - "Total (%(aggfunc)s)": ["Insgesamt (%(aggfunc)s)"], - "Total (%(aggregatorName)s)": ["Insgesamt (%(aggregatorName)s)"], - "Total value": ["Gesamtwert"], - "Total: %s": ["Gesamt: %s"], - "Totals": ["Summen"], - "Track job": ["Auftrag verfolgen"], - "Transformable": ["Transportierbar"], - "Transparent": ["Transparent"], - "Transpose pivot": ["Pivot transponieren"], - "Tree Chart": ["Baumdiagramm"], - "Tree layout": ["Baum-Layout"], - "Tree orientation": ["Baumausrichtung"], - "Treemap": ["Treemap"], - "Trend": ["Trend"], - "Triangle": ["Dreieck"], - "Trigger Alert If...": ["Alarm auslösen falls..."], - "Truncate Axis": ["Achse abschneiden"], - "Truncate Cells": ["Zellen abschneiden"], - "Truncate Metric": ["Metrik abschneiden"], - "Truncate Y Axis": ["Y-Achse abschneiden"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "Schneiden Sie die Y-Achse ab. Kann überschrieben werden, indem eine min- oder max-Bindung angegeben wird." + "Time Lag": ["Verzögerung"], + "Time ratio": ["Zeitverhältnis"], + "Number of periods to ratio against": [ + "Anzahl ins Verhältnis zu setzender Perioden" ], - "Truncate long cells to the \"min width\" set above": [ - "Lange Zellen auf die oben festgelegte \"Mindestbreite\" abschneiden" + "Time Ratio": ["Zeitverhältnis"], + "Show Y-axis": ["Y-Achse anzeigen"], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Y-Achse auf der Sparkline anzeigen. Zeigt die manuell eingestellten Min/Max-Werte an, falls festgelegt, andernfalls Min/Max-Werte der Daten." ], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Kürzt das angegebene Datum auf die von der Datumseinheit angegebene Genauigkeit." + "Y-axis bounds": ["Grenzen der Y-Achse"], + "Manually set min/max values for the y-axis.": [ + "Min/Max-Werte für die y-Achse manuell festlegen." ], - "Try applying different filters or ensuring your datasource has data": [ - "Versuchen Sie, andere Filter anzuwenden oder sicherzustellen, dass Ihre Datenquelle Daten enthält" + "Color bounds": ["Farbgrenzen"], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Zahlengrenzen, die für die Farbkodierung von Rot nach Blau verwendet werden.\n Kehren Sie die Zahlen für Blau in Rot um. Um reines Rot oder Blau zu erhalten,\n können Sie entweder nur min oder max eingeben." ], - "Try different criteria to display results.": [ - "Probieren Sie verschiedene Kriterien aus, um Ergebnisse anzuzeigen." + "Optional d3 number format string": [ + "Optionale d3-Zahlenformat-Zeichenfolge" ], - "Try selecting a different schema": [ - "Versuchen Sie, ein anderes Schema auszuwählen" + "Number format string": ["Zahlenformat-Zeichenfolge"], + "Optional d3 date format string": [ + "Optionale d3-Datumsformat-Zeichenfolge" ], - "Tuesday": ["Dienstag"], - "Tukey": ["Turkey"], - "Type": ["Typ"], - "Type \"%s\" to confirm": ["Geben Sie zur Bestätigung \"%s\" ein"], - "Type a value": ["Geben Sie einen Wert ein"], - "Type a value here": ["Geben Sie hier einen Wert ein"], - "Type is required": ["Typ ist erforderlich"], - "Type of Google Sheets allowed": ["Art der zulässigen Google Tabellen"], - "Type of comparison, value difference or percentage": [ - "Art des Vergleichs, Wertdifferenz oder Prozentsatz" + "Date format string": ["Datumsformat-Zeichenfolge"], + "Column Configuration": ["Spaltenkonfiguration"], + "Select Viz Type": ["Visualisierungstyp wählen"], + "Currently rendered: %s": ["Derzeit dargestellt: %s"], + "Recommended tags": ["Empfohlene Tags"], + "Search all charts": ["Alle Diagramm durchsuchen"], + "No description available.": ["Keine Beschreibung verfügbar."], + "Examples": ["Beispiele"], + "This visualization type is not supported.": [ + "Dieser Visualisierungstyp wird nicht unterstützt." ], - "Type or Select [%s]": ["Geben Sie ein oder wählen Sie [%s] aus."], - "UI Configuration": ["UI Konfiguration"], - "URL": ["URL"], - "URL Parameters": ["URL-Parameter"], + "View all charts": ["Alle Diagramme anzeigen"], + "Select a visualization type": ["Visualisierungstyp wählen"], + "No results found": ["Keine Ergebnisse gefunden"], + "Superset Chart": ["Superset Diagramm"], + "New chart": ["Neues Diagramm"], + "Edit chart properties": ["Diagrammeigenschaften bearbeiten"], + "Dashboards added to": ["Dashboards hinzugefügt zu"], + "Export to original .CSV": ["Export in das ursprüngliche .CSV"], + "Export to pivoted .CSV": ["Export in das pivotierte .CSV"], + "Export to .JSON": ["Exportieren nach . JSON"], + "Embed code": ["Code einbetten"], + "Run in SQL Lab": ["Ausführen in SQL Lab"], + "Code": ["Code"], + "Markup type": ["Markup-Typ"], + "Pick your favorite markup language": [ + "Wählen Sie Ihre bevorzugte Markup-Sprache" + ], + "Put your code here": ["Geben Sie Ihren Code hier ein"], "URL parameters": ["URL-Parameter"], - "URL slug": ["URL Titelform"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "Dem Backend kann keine neue Registerkarte hinzugefügt werden. Wenden Sie sich an Ihre*n Administrator*in." + "Extra parameters for use in jinja templated queries": [ + "Zusätzliche Parameter für die Verwendung in Jinja-Vorlagenabfragen" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "Es konnte keine Verbindung zum Katalog mit dem Namen \"%(catalog_name)s\" hergestellt werden." + "Annotations and layers": ["Anmerkungen und Ebenen"], + "Annotation layers": ["Anmerkungsebenen"], + "My beautiful colors": ["Meine schönen Farben"], + "< (Smaller than)": ["< (Kleiner als)"], + "> (Larger than)": ["> (Größer als)"], + "<= (Smaller or equal)": ["<= (Kleiner oder gleich)"], + ">= (Larger or equal)": [">= (Größer oder gleich)"], + "== (Is equal)": ["== (Ist gleich)"], + "!= (Is not equal)": ["!= (Ist nicht gleich)"], + "Not null": ["Nicht NULL"], + "60 days": ["60 Tage"], + "90 days": ["90 Tage"], + "Add notification method": ["Benachrichtigungsmethode hinzufügen"], + "Add delivery method": ["Übermittlungsmethode hinzufügen"], + "Add": ["Hinzufügen"], + "Edit Report": ["Report bearbeiten"], + "Edit Alert": ["Alarm bearbeiten"], + "Add Report": ["Report hinzufügen"], + "Add Alert": ["Alarm hinzufügen"], + "Report name": ["Name des Reports"], + "Alert name": ["Name des Alarms"], + "Active": ["Aktiv"], + "Alert condition": ["Alarmierungsbedingung"], + "SQL Query": ["SQL Abfrage"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Alarm auslösen falls..."], + "Condition": ["Bedingung"], + "Report schedule": ["Report-Zeitplan"], + "Alert condition schedule": ["Alarmierung-Zeitplan"], + "Timezone": ["Zeitzone"], + "Schedule settings": ["Zeitplan-Einstellungen"], + "Log retention": ["Protokollaufbewahrung"], + "Working timeout": ["Zeitüberschreitung"], + "Time in seconds": ["Zeit in Sekunden"], + "seconds": ["Sekunden"], + "Grace period": ["Kulanzzeit"], + "Message content": ["Nachrichteninhalt"], + "Send as PNG": ["Als PNG senden"], + "Send as CSV": ["Als CSV senden"], + "Send as text": ["Als Text senden"], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Benachrichtigungsmethode"], + "report": ["Report"], + "%s updated": ["%s aktualisiert"], + "CRON Schedule": ["CRON Zeitplan"], + "CRON expression": ["CRON-Ausdruck"], + "Report sent": ["Report gesendet"], + "Alert triggered, notification sent": [ + "Alarm ausgelöst, Benachrichtigung gesendet" ], - "Unable to connect to database \"%(database)s\".": [ - "Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt werden." + "Report sending": ["Report wird versendet"], + "Alert running": ["Alarm wird ausgeführt"], + "Report failed": ["Report fehlgeschlagen"], + "Alert failed": ["Alarm fehlgeschlagen"], + "Nothing triggered": ["Nichts ausgelöst"], + "Alert Triggered, In Grace Period": ["Alarm ausgelöst, in Kulanzzeit"], + "Delivery method": ["Übermittlungsmethode"], + "Select Delivery Method": ["Übermittlungsmethode hinzufügen"], + "Recipients are separated by \",\" or \";\"": [ + "Empfänger werden durch \",\" oder \";\" getrennt." ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "Verbindung kann nicht hergestellt werden. Stellen Sie sicher, dass die folgenden Rollen für das Dienstkonto festgelegt sind: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" und die folgenden Berechtigungen festgelegt sind \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" + "Queries": ["Abfragen"], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["Anmerkungsebene"], + "Annotation template updated": ["Anmerkungsvorlage aktualisiert"], + "Annotation template created": ["Anmerkungsvorlage erstellt"], + "Edit annotation layer properties": [ + "Eigenschaften der Anmerkungsebene bearbeiten" ], - "Unable to create chart without a query id.": [ - "Diagramm kann ohne Abfrage-ID nicht erstellt werden." + "Annotation layer name": ["Name der Anmerkungebene"], + "Description (this can be seen in the list)": [ + "Beschreibung (diese ist in der Liste zu sehen)" ], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [ - "Kann einen solchen Feiertag nicht finden: [%(holiday)s]" + "annotation": ["Anmerkungen"], + "The annotation has been updated": ["Anmerkung wurde aktualisiert"], + "The annotation has been saved": [ + "Die Anmerkung wurde erfolgreich gespeichert" ], - "Unable to load columns for the selected table. Please select a different table.": [ - "Spalten für die ausgewählte Tabelle können nicht geladen werden. Bitte wählen Sie eine andere Tabelle aus." + "Edit annotation": ["Anmerkung bearbeiten"], + "Add annotation": ["Anmerkungen hinzufügen"], + "date": ["Datum"], + "Additional information": ["Zusätzliche Information"], + "Please confirm": ["Bitte bestätigen"], + "Are you sure you want to delete": ["Wollen Sie wirklich löschen"], + "Modified %s": ["Geändert %s"], + "css_template": ["css_template"], + "Edit CSS template properties": ["CSS Vorlagen"], + "Add CSS template": ["CSS Vorlagen"], + "css": ["CSS"], + "published": ["veröffentlicht"], + "draft": ["Entwurf"], + "Adjust how this database will interact with SQL Lab.": [ + "Anpassen, wie diese Datenbank mit SQL Lab interagiert." ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Der Status des Abfrage-Editors kann nicht zum Backend übertragen werden. Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." + "Expose database in SQL Lab": ["Datenbank in SQL Lab verfügbar machen"], + "Allow this database to be queried in SQL Lab": [ + "Abfragen dieser Datenbank in SQL Lab zulassen" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Der Abfragestatus kann nicht zum Backend übertragen werden. Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." + "Allow creation of new tables based on queries": [ + "Erstellen neuer Tabellen basierend auf Abfragen zulassen" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Der Tabellenschemastatus kann nicht zum Backend übertragen werden. Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses Problem weiterhin besteht." + "Allow creation of new views based on queries": [ + "Erstellen neuer Ansichten basierend auf Abfragen zulassen" ], - "Unable to retrieve dashboard colors": [ - "Dashboardfarben können nicht abgerufen werden" + "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], + "Create or select schema...": ["Schema erstellen oder auswählen…"], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Erzwingen Sie, dass alle Tabellen und Ansichten in diesem Schema erstellt werden, wenn Sie in SQL Lab auf CTAS oder CVAS klicken." ], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "CSV-Datei \"%(filename)s\" kann nicht in tabelle \"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: %(error_msg)s" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Manipulation der Datenbank mit Nicht-SELECT-Anweisungen wie UPDATE, DELETE, CREATE usw. ermöglichen." ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Die Spaltendatei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: %(error_msg)s" + "Enable query cost estimation": ["Abfragekostenschätzung aktivieren"], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Für Presto und Postgres wird ein Buttons angezeigt, um Kosten vor dem Ausführen einer Abfrage zu schätzen." ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Excel-Datei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: %(error_msg)s" + "Allow this database to be explored": [ + "Abfragen dieser Datenbank in SQL Lab zulassen" ], - "Undefined": ["Undefiniert"], - "Undefined window for rolling operation": [ - "Undefiniertes Fenster für rollierende Operation" + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Wenn diese Option aktiviert ist, können Benutzer*innen SQL Lab-Ergebnisse in Explore visualisieren." ], - "Undo the action": ["Aktion rückgängig machen"], - "Undo?": ["Rückgängig machen?"], - "Unexpected error": ["Unerwarteter Fehler"], - "Unexpected error occurred, please check your logs for details": [ - "Unerwarteter Fehler aufgetreten, bitte überprüfen Sie Ihre Protokolle auf Details" + "Disable SQL Lab data preview queries": [ + "Deaktivieren von SQL Lab-Datenvorschau-Abfragen" ], - "Unexpected error: ": ["Unerwarteter Fehler:"], - "Unexpected time range: %s": ["Unerwarteter Zeitraum: %s"], - "Unknown": ["Unbekannt"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Unbekannter MySQL-Server-Host \"%(hostname)s\"." + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Datenvorschau beim Abrufen von Tabellenmetadaten in SQL Lab deaktivieren. Nützlich, um Probleme mit der Browserleistung bei der Verwendung von Datenbanken mit sehr breiten Tabellen zu vermeiden." ], - "Unknown Presto Error": ["Unbekannter Presto-Fehler"], - "Unknown Status": ["Status unbekannt"], - "Unknown column used in orderby: %(col)s": [ - "Unbekannte Spalte in ORDER BY verwendet: %(col)s" + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ + "" ], - "Unknown error": ["Unbekannter Fehler"], - "Unknown input format": ["Unbekanntes Eingabeformat"], - "Unknown value": ["Unbekannter Wert"], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Unsicherer Rückgabetyp für %(func)s: %(value_type)s" + "Performance": ["Leistung"], + "Adjust performance settings of this database.": [ + "Leistungseinstellungen dieser Datenbank anpassen." ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Unsicherer Vorlagenwert für Schlüssel %(key)s: %(value_type)s" + "Chart cache timeout": ["Diagramm-Cache Timeout"], + "Enter duration in seconds": ["Dauer in Sekunden eingeben"], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft, und -1 umgeht den Cache. Beachten Sie, dass standardmäßig das globale Timeout verwendet wird, wenn kein Wert definiert wurde." ], - "Unsupported clause type: %(clause)s": [ - "Nicht unterstützter Ausdruck-Typ: %(clause)s" + "Schema cache timeout": ["Zeitüberschreitung Schema-Zwischenspeicher"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Dauer (in Sekunden) des Cache-Timeouts für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig der globale Timeout verwendet wird, wenn keiner definiert ist." ], - "Unsupported post processing operation: %(operation)s": [ - "Nicht unterstützter Nachbearbeitungsvorgang: %(operation)s" + "Table cache timeout": ["Tabellen-Cache Timeout"], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Dauer (in Sekunden) der Caching-Zeitdauer für Diagramme dieser Datenbank. Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass standardmäßig der globale Timeout verwendet wird, wenn keiner definiert ist. " ], - "Unsupported return value for method %(name)s": [ - "Nicht unterstützter Rückgabewert für %(name)s" + "Asynchronous query execution": ["Asynchrone Abfrageausführung"], + "Cancel query on window unload event": [ + "Abfrage abbrechen bei ‚Window unload‘-Ereignis" ], - "Unsupported template value for key %(key)s": [ - "Nicht unterstützter Vorlagenwert für Schlüssel %(key)s" + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Beenden Sie die Ausführung von Abfragen, wenn das Browserfenster geschlossen oder zu einer anderen Seite navigiert wird. Verfügbar für Presto-, Hive-, MySQL-, Postgres- und Snowflake-Datenbanken." ], - "Unsupported time grain: %(time_grain)s": [ - "Nicht unterstützte Zeiteinteilung: %(time_grain)s" + "Add extra connection information.": [ + "Zusätzliche Verbindungsinformationen hinzufügen" ], - "Untitled Dataset": ["Unbenannter Datensatz"], - "Untitled Query": ["Unbenannte Abfrage"], - "Untitled query": ["Unbenannte Abfrage"], - "Update": ["Aktualisieren"], - "Update chart": ["Diagramm aktualisieren"], - "Updating chart was stopped": [ - "Aktualisierung des Diagramms wurde abgebrochen" + "Secure extra": ["Sicherheit extra"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "JSON-Zeichenfolge mit zusätzlicher Verbindungskonfiguration. Diese wird verwendet, um Verbindungsinformationen für Systeme wie Hive, Presto und BigQuery bereitzustellen, die nicht der syntax username:password entsprechen, welche normalerweise von SQLAlchemy verwendet wird." ], - "Upload": ["Hochladen"], - "Upload CSV": ["CSV hochladen"], - "Upload CSV to database": ["CSV in Datenbank hochladen"], - "Upload Credentials": ["Anmeldeinformationen hochladen"], - "Upload Enabled": ["Hochladen aktiviert"], - "Upload Excel file": ["Excel hochladen"], - "Upload Excel file to database": ["Excel-Datei in Datenbank hochladen"], - "Upload JSON file": ["JSON Datei hochladen"], - "Upload columnar file": ["Spaltendatei hochladen"], - "Upload columnar file to database": [ - "Spaltendatei in Datenbank hochladen" - ], - "Upload file to database": ["Datei in Datenbank hochladen"], - "Usage": ["Verwendung"], - "Use \"%(menuName)s\" menu instead.": [ - "Verwenden Sie stattdessen das Menü \"%(menuName)s\"." + "Enter CA_BUNDLE": ["Geben Sie CA_BUNDLE ein"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Optionale CA_BUNDLE Inhalte, um HTTPS-Anforderungen zu überprüfen. Nur für bestimmte Datenbank-Engines verfügbar." ], - "Use %s to open in a new tab.": [ - "Verwenden Sie %s, um eine neue Registerkarte zu öffnen." + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Identität von angemeldeter Benutzer*in annehmen (Presto, Trino, Drill & Hive)" ], - "Use Area Proportions": ["Verwenden von Flächenproportionen"], - "Use Columns": ["Spalten verwenden"], - "Use a log scale": ["Verwenden einer Logarithmischen Skala"], - "Use a log scale for the X-axis": [ - "Logarithmische Skala für die X-Achse verwenden" + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Für Presto oder Trino werden alle Abfragen in SQL Lab mit aktuell angemeldeter Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen muss. Für Hive und falls hive.server2.enable.doAs aktiviert sind, werden die Abfragen über das Service-Konto ausgeführt, die Identität der aktuell angemeldeten Benutzer*in jedoch über die hive.server2.proxy.user-Eigenschaft berücksichtigt." ], - "Use a log scale for the Y-axis": [ - "Logarithmische Skala für die Y-Achse verwenden" + "Allow file uploads to database": [ + "Datei-Uploads in die Datenbank zulassen" ], - "Use an encrypted connection to the database": [ - "Verschlüsselten Verbindung zur Datenbank verwenden" + "Schemas allowed for File upload": [ + "Zulässige Schemata für den Datei-Upload" ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "Verwenden Sie ein anderes vorhandenes Diagramm als Quelle für Anmerkungen und Überlagerungen.\n Ihr Diagramm muss einer der folgenden Visualisierungstypen sein: [%s]" + "A comma-separated list of schemas that files are allowed to upload to.": [ + "Eine durch Kommas getrennte Liste von Schemata, in die Dateien hochgeladen werden dürfen." ], - "Use date formatting even when metric value is not a timestamp": [ - "Verwenden Sie die Datumsformatierung, auch wenn der Metrikwert kein Zeitstempel ist" + "Additional settings.": ["Zusätzliche Einstellungen"], + "Metadata Parameters": ["Metadaten Parameter"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Das metadata_params Objekt wird in den sqlalchemy.MetaData-Aufruf entpackt." ], - "Use legacy datasource editor": [ - "Verwenden des Legacy-Datenquellen-Editors" + "Engine Parameters": ["Engine-Parameter"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Das engine_params Objekt wird in den sqlalchemy.create_engine Aufrufs entpackt." ], - "Use metrics as a top level group for columns or for rows": [ - "Verwenden von Metriken als Gruppe der obersten Ebene für Spalten oder Zeilen" + "Version": ["Version"], + "Version number": ["Versionsnummer"], + "STEP %(stepCurr)s OF %(stepLast)s": [ + "SCHRITT %(stepCurr)s VON %(stepLast)s" ], - "Use only a single value.": ["Verwenden Sie nur einen einzigen Wert."], - "Use the Advanced Analytics options below": [ - "Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen" + "Enter Primary Credentials": ["Primäre Anmeldeinformationen eingeben"], + "Need help? Learn how to connect your database": [ + "Benötigen Sie Hilfe? Erfahren Sie, wie Sie Ihre Datenbank verbinden" ], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "Verwenden Sie die JSON-Datei, die Sie beim Erstellen Ihres Dienstkontos automatisch heruntergeladen haben." + "Database connected": ["Datenbank verbunden"], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Erstellen Sie einen Datensatz, um mit der Visualisierung Ihrer Daten als Diagramm zu beginnen, oder wechseln Sie zu\n SQL Lab, um Ihre Daten abzufragen." ], - "Use the edit button to change this field": [ - "Verwenden Sie die Schaltfläche Bearbeiten, um dieses Feld zu ändern" + "Enter the required %(dbModelName)s credentials": [ + "Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein." ], - "Use this section if you want a query that aggregates": [ - "Verwenden Sie diesen Abschnitt, wenn Sie eine Abfrage benötigen, die aggregiert" + "Need help? Learn more about": [ + "Benötigen Sie Hilfe? Erfahren Sie mehr über" ], - "Use this section if you want to query atomic rows": [ - "Verwenden Sie diesen Abschnitt, wenn Sie atomare Zeilen abfragen möchten" + "connecting to %(dbModelName)s.": ["verbinde mit %(dbModelName)s."], + "Select a database to connect": [ + "Wählen Sie eine Datenbank aus, mit der eine Verbindung hergestellt werden soll" ], - "Use this to define a static color for all circles": [ - "Verwenden Sie diese Option, um eine statische Farbe für alle Kreise zu definieren" + "SSH Host": ["SSH-Host"], + "e.g. 127.0.0.1": ["z.B. 127.0.0.1"], + "SSH Port": ["SSH Port"], + "e.g. Analytics": ["z.B. Analytik"], + "Login with": ["Anmelden mit"], + "Private Key & Password": ["Privater Schlüssel & Passwort"], + "SSH Password": ["SSH-Passwort"], + "e.g. ********": ["z.B. ********"], + "Private Key": ["Privater Schlüssel"], + "Paste Private Key here": ["Privaten Schlüssel hier einfügen"], + "Private Key Password": ["Passwort des privaten Schlüssels"], + "SSH Tunnel": ["SSH-Tunnel"], + "SSH Tunnel configuration parameters": [ + "Konfigurationsparameter für den SSH-Tunnel" ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "Wird intern verwendet, um das Plugin zu identifizieren. Sollte auf den Paketnamen aus der paket.json des Plugins gesetzt werden" + "Display Name": ["Anzeigename"], + "Name your database": ["Benennen der Datenbank"], + "Pick a name to help you identify this database.": [ + "Wählen Sie einen Namen aus, der Ihnen hilft, diese Datenbank zu identifizieren." ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere Statistiken entlang zweier Achsen gruppiert werden. Beispiele: Verkaufszahlen nach Region und Monat, Aufgaben nach Status und Beauftragtem, aktive Nutzer nach Alter und Standort. Nicht die visuell beeindruckendste Visualisierung, aber sehr informativ und vielseitig." + "dialect+driver://username:password@host:port/database": [ + "dialect+driver://username:password@host:port/database" ], - "User": ["Nutzer*in"], - "User Roles": ["Nutzer*innen-Rollen"], - "User doesn't have the proper permissions.": [ - "Benutzer*in verfügt nicht über die richtigen Berechtigungen." + "Refer to the": ["Weitere Informationen finden Sie im"], + "for more information on how to structure your URI.": [ + "für weitere Informationen zum Strukturieren des URI." ], - "User must select a value before applying the filter": [ - "Benutzer*in muss einen Wert für diesen Filter auswählen" + "Test connection": ["Verbindungstest"], + "database": ["Datenbank"], + "Please enter a SQLAlchemy URI to test": [ + "Bitten geben Sie eine SQL Alchemy URI zum Testen ein" ], - "User must select a value for this filter": [ - "Benutzer*in muss einen Wert für diesen Filter auswählen" + "e.g. world_population": ["z.B. world_population"], + "Database settings updated": ["Datenbankeinstellungen aktualisiert"], + "Sorry there was an error fetching database information: %s": [ + "Beim Abrufen von Datenbankinformationen ist leider ein Fehler aufgetreten: %s" ], - "User query": ["Benutzer*innen-Abfrage"], - "Username": ["Benutzer*innenname"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "Or choose from a list of other databases we support:": [ + "Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "Verwendet ein Tachometer, um den Fortschritt einer Metrik in Richtung eines Ziels anzuzeigen. Die Position des Zifferblatts stellt den Fortschritt und der Endwert im Tachometer den Zielwert dar." + "Supported databases": ["Unterstützte Datenbanken"], + "Choose a database...": ["Wählen Sie eine Datenbank..."], + "Want to add a new database?": [ + "Möchten Sie eine neue Datenbank hinzufügen?" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "Verwendet Kreise, um den Datenfluss durch verschiedene Phasen eines Systems zu visualisieren. Bewegen Sie den Mauszeiger über einzelne Pfade in der Visualisierung, um die Phasen zu verstehen, die ein Wert durchlaufen hat. Nützlich für die Visualisierung von Trichtern und Pipelines in mehreren Gruppen." + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können hinzugefügt werden. " ], - "Value": ["Wert"], - "Value Domain": ["Wertebereich"], - "Value Format": ["Wertformat"], - "Value bounds": ["Wertgrenzen"], - "Value format": ["Wertformat"], - "Value is required": ["Wert ist erforderlich"], - "Value must be greater than 0": ["Der Wert muss größer als 0 sein"], - "Values are dependent on other filters": [ - "Werte sind abhängig von anderen Filtern" + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können hinzugefügt werden. Informationen zum Verbinden eines Datenbanktreibers " ], - "Values dependent on": ["Werte abhängig von"], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "In anderen Filtern ausgewählte Werte wirken sich auf die Filteroptionen aus, sodass nur relevante Werte angezeigt werden" + "Connect": ["Verbinden"], + "Finish": ["Fertigstellen"], + "This database is managed externally, and can't be edited in Superset": [ + "Diese Datenbank wird extern verwaltet und kann nicht in Superset bearbeitet werden." ], - "Vehicle Types": ["Fahrzeugtypen"], - "Verbose Name": ["Ausführlicher Name"], - "Version": ["Version"], - "Version number": ["Versionsnummer"], - "Vertical": ["Vertikal"], - "Vertical (Left)": ["Vertikal (links)"], - "Video game consoles": ["Videospielkonsolen"], - "View": ["Ansicht"], - "View All »": ["Alle ansehen »"], - "View Dataset": ["Datensatz anzeigen"], - "View all charts": ["Alle Diagramme anzeigen"], - "View as table": ["Als Tabelle anzeigen"], - "View in SQL Lab": ["In SQL Lab anzeigen"], - "View keys & indexes (%s)": ["Schlüssel und Indizes anzeigen (%s)"], - "View query": ["Abfrage anzeigen"], - "Viewed": ["Angesehen"], - "Viewed %s": ["%s angesehen"], - "Viewport": ["Ansichtsfenster"], - "Virtual": ["Virtuell"], - "Virtual (SQL)": ["Virtuell (SQL)"], - "Virtual dataset": ["Virtueller Datensatz"], - "Virtual dataset query cannot be empty": [ - "Virtuelle Datensatzabfrage darf nicht leer sein" + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zu importieren. Bitte beachten Sie, dass die Abschnitte „Sicherheit Extra“ und „Zertifikat“ der Datenbankkonfiguration nicht in „Dateien erkunden“ vorhanden sind und nach dem Import manuell hinzugefügt werden sollten, falls sie benötigt werden." ], - "Virtual dataset query cannot consist of multiple statements": [ - "Virtuelle Datensatzabfrage kann nicht aus mehreren Anweisungen bestehen" + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Sie importieren eine oder mehrere Datenbanken, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" ], - "Virtual dataset query must be read-only": [ - "Virtuelle Datensatzabfrage muss schreibgeschützt sein" + "Database Creation Error": ["Fehler bei der Datenbankerstellung"], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Wir können keine Verbindung zu Ihrer Datenbank herstellen. Klicken Sie auf \"Weitere anzeigen\", um von der Datenbank bereitgestellte Informationen zu erhalten, die bei der Behebung des Problems helfen können." ], - "Visual Tweaks": ["Visuelle Optimierungen"], - "Visualization Type": ["Visualisierungstyp"], - "Visualization type": ["Visualisierungstyp"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "Visualisieren Sie einen parallelen Satz von Metriken über mehrere Gruppen hinweg. Jede Gruppe wird mit einer eigenen Punktlinie visualisiert und jede Metrik wird als Kante im Diagramm dargestellt." + "CREATE DATASET": ["DATASET ERSTELLEN"], + "QUERY DATA IN SQL LAB": ["DATEN IN SQL LAB ABFRAGEN "], + "Connect a database": ["Eine Datenbank verbinden"], + "Edit database": ["Datenbank bearbeiten"], + "Connect this database using the dynamic form instead": [ + "Verbinden Sie diese Datenbank stattdessen mithilfe des dynamischen Formulars" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ - "Visualisieren Sie eine verwandte Metrik über Gruppenpaare hinweg. Heatmaps zeichnen sich dadurch aus, dass sie die Korrelation oder Stärke zwischen zwei Gruppen darstellen. Farbe wird verwendet, um die Stärke der Verbindung zwischen jedem Gruppenpaar zu betonen." + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Klicken Sie auf diesen Link, um zu einem alternativen Formular zu wechseln, das nur die zum Verbinden dieser Datenbank erforderlichen Felder verfügbar macht." ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "Visualisieren Sie Geodaten wie 3D-Gebäude, Landschaften oder Objekte in der Rasteransicht." + "Additional fields may be required": [ + "Eventuell sind weitere Felder erforderlich" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "Visualisieren Sie mithilfe von Balken, wie sich eine Metrik im Laufe der Zeit ändert. Fügen Sie eine Gruppe nach Spalte hinzu, um Metriken auf Gruppenebene und deren Änderung im Laufe der Zeit zu visualisieren." + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Für ausgewählte Datenbanken müssen zusätzliche Felder auf der Registerkarte Erweitert ausgefüllt werden, um die Datenbank erfolgreich zu verbinden. Erfahren Sie, welche Anforderungen Ihre Datenbanken haben " ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "Visualisieren Sie mehrere Hierarchieebenen mit einer vertrauten baumartigen Struktur." + "Import database from file": ["Datenbank aus Datei importieren"], + "Connect this database with a SQLAlchemy URI string instead": [ + "Verbinden Sie diese Datenbank stattdessen mit einer SQLAlchemy-URI-Zeichenfolge" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ - "Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. Beachten Sie, dass beide Reihen mit einem anderen Diagrammtyp visualisiert werden können (z. B. eine mit Balken und die andere mit einer Linie)." + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Klicken Sie auf diesen Link, um zu einem alternativen Formular zu wechseln, mit dem Sie die SQLAlchemy-URL für diese Datenbank manuell eingeben können." ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ - "Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. Beachten Sie, dass jede Zeitreihe unterschiedlich visualisiert werden kann (z. B. eine mit Balken und die andere mit einer Linie)." + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Dies kann entweder eine IP-Adresse (z.B. 127.0.0.1) oder ein Domainname (z.B. mydatabase.com) sein." ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ - "Visualisiert eine Metrik über drei Datendimensionen in einem einzelnen Diagramm (X-Achse, Y-Achse und Blasengröße). Blasen aus derselben Gruppe können mit Blasenfarbe präsentiert werden." + "Host": ["Host"], + "e.g. 5432": ["z.B. 5432"], + "Port": ["Port"], + "e.g. sql/protocolv1/o/12345": ["z.B.sql/protocolv1/o/12345"], + "Copy the name of the HTTP Path of your cluster.": [ + "Kopieren Sie den Namen des HTTP-Pfads Ihres Clusters." ], - "Visualizes connected points, which form a path, on a map.": [ - "Visualisiert verbundene Punkte, die einen Pfad bilden, auf einer Karte." + "Copy the name of the database you are trying to connect to.": [ + "Kopieren Sie den Namen der Datenbank, mit der Sie eine Verbindung herstellen möchten." ], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ - "Visualisiert geografische Gebiete aus Ihren Daten als Polygone auf einer von Mapbox gerenderten Karte. Polygone können mithilfe einer Metrik eingefärbt werden." + "Access token": ["Zugangs-Token"], + "Pick a nickname for how the database will display in Superset.": [ + "Wählen Sie einen Kurznamen mit dem die Datenbank in Superset angezeigt werden soll." ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "Visualisiert, wie sich eine Metrik im Laufe der Zeit mithilfe einer Farbskala und einer Kalenderansicht verändert hat. Grauwerte werden verwendet, um fehlende Werte anzuzeigen, und das lineare Farbschema wird verwendet, um den Betrag jedes Tageswerts zu kodieren." + "e.g. param1=value1¶m2=value2": ["z.B. param1=Wert1¶m2=Wert2"], + "Additional Parameters": ["Zusätzliche Parameter"], + "Add additional custom parameters": ["Zusätzliche Parameter hinzufügen"], + "SSL Mode \"require\" will be used.": [ + "SSL-Modus „require“ wird verwendet." ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ - "Visualisiert, wie eine einzelne Metrik in den Hauptunterteilungen eines Landes (Bundesstaaten, Provinzen usw.) auf einer Choroplethenkarte variiert. Der Wert jeder Unterteilung wird erhöht, wenn Sie den Mauszeiger über die entsprechende geografische Grenze bewegen." + "Type of Google Sheets allowed": ["Art der zulässigen Google Tabellen"], + "Publicly shared sheets only": ["Nur öffentlich freigegebene Blätter"], + "Public and privately shared sheets": [ + "Öffentliche und privat freigegebene Blätter" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ - "Visualisiert viele verschiedene Zeitreihenobjekte in einem einzigen Diagramm. Dieses Diagramm ist überholt, und wir empfehlen, stattdessen das Zeitreihendiagramm zu verwenden." + "How do you want to enter service account credentials?": [ + "Wie möchten Sie die Anmeldeinformationen für das Dienstkonto eingeben?" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "Visualisiert den Fluss der Werte verschiedener Gruppen durch verschiedene Phasen eines Systems. Neue Stufen in der Pipeline werden als Knoten oder Layer visualisiert. Die Dicke der Balken oder Kanten stellt die Metrik dar, die visualisiert wird." + "Upload JSON file": ["JSON Datei hochladen"], + "Copy and Paste JSON credentials": [ + "Kopieren und Einfügen von JSON-Anmeldeinformationen" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "Visualisiert die Wörter in einer Spalte, die am häufigsten vorkommen. Größere Schrift entspricht einer höheren Frequenz." + "Service Account": ["Dienstkonto"], + "Paste content of service credentials JSON file here": [ + "Fügen Sie den Inhalt der JSON-Datei für Dienstanmeldeinformationen hier ein" ], - "Viz is missing a datasource": ["Visualisierung fehlt eine Datenquelle"], - "Viz type": ["Visualisierungstyp"], - "WED": ["MI"], - "Want to add a new database?": [ - "Möchten Sie eine neue Datenbank hinzufügen?" + "Copy and paste the entire service account .json file here": [ + "Kopieren Sie die gesamte JSON-Datei des Dienstkontos, und fügen Sie sie hier ein" ], - "Warning": ["Warnung"], - "Warning Message": ["Warnmeldung"], - "Warning!": ["Warnung!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Warnung! Wenn Sie den Datensatz ändern, kann das Diagramm beeinträchtigt werden, wenn die Metadaten nicht vorhanden sind." + "Upload Credentials": ["Anmeldeinformationen hochladen"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "Verwenden Sie die JSON-Datei, die Sie beim Erstellen Ihres Dienstkontos automatisch heruntergeladen haben." ], - "Was unable to check your query": [ - "Ihre Abfrage konnte nicht überprüft werden" + "Connect Google Sheets as tables to this database": [ + "Google Tabellen als Tabellen mit dieser Datenbank verbinden" ], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "Wir können keine Verbindung zu Ihrer Datenbank herstellen. Klicken Sie auf \"Weitere anzeigen\", um von der Datenbank bereitgestellte Informationen zu erhalten, die bei der Behebung des Problems helfen können." + "Google Sheet Name and URL": ["Google Tabellen-Name und URL"], + "Enter a name for this sheet": [ + "Geben Sie einen neuen Titel für die Registerkarte ein" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "Wir können die Spalte \"%(column)s\" in Zeile %(location)s nicht auflösen." + "Paste the shareable Google Sheet URL here": [ + "Fügen Sie die gemeinsam nutzbare Google Tabellen-URL hier ein" ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "Wir können die Spalte „%(column_name)s“ nicht auflösen." + "Add sheet": ["Tabelle hinzufügen"], + "e.g. xy12345.us-east-2.aws": ["z.B. xy12345.us-east-2.aws"], + "e.g. compute_wh": ["z.B. compute_wh"], + "e.g. AccountAdmin": ["z.B. AccountAdmin"], + "Duplicate dataset": ["Datensatz duplizieren"], + "Duplicate": ["Duplizieren"], + "New dataset name": ["Name des neuen Datensatzes"], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "Wir können die Spalte \"%(column_name)s\" in Zeile %(location)s nicht auflösen." + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Sie importieren eine oder mehrere Datenbanken, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" ], - "We have the following keys: %s": ["Wir haben folgende Schlüssel: %s"], - "We were unable to active or deactivate this report.": [ - "Wir konnten diesen Bericht nicht aktivieren oder deaktivieren." + "Refreshing columns": ["Aktualisieren von Spalten"], + "Table columns": ["Tabellenspalten"], + "Loading": ["Lädt"], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Dieser Tabelle ist bereits ein Datensatz zugeordnet. Sie können einer Tabelle nur einen Datasatz zuordnen.\n" ], - "We were unable to carry over any controls when switching to this new dataset.": [ - "Wir konnten beim Wechsel zu diesem neuen Datensatz keine Steuerungselemente übernehmen." + "View Dataset": ["Datensatz anzeigen"], + "This table already has a dataset": [ + "Diese Tabelle hat bereits einen Datensatz" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "Wir konnten keine Verbindung zu Ihrer Datenbank mit dem Namen \"%(database)s\" herstellen. Überprüfen Sie Ihren Datenbanknamen und versuchen Sie es erneut." + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Datensätze können aus Datenbanktabellen oder SQL-Abfragen erstellt werden. Wählen Sie links eine Datenbanktabelle aus oder " ], - "Web": ["Web"], - "Wednesday": ["Mittwoch"], - "Week": ["Woche"], - "Week ending Saturday": ["Woche endet am Samstag"], - "Week starting Monday": ["Woche beginnt am Montag"], - "Week starting Sunday": ["Woche beginnt am Sonntag"], - "Week_ending Sunday": ["Woche endet am Sonntag"], - "Weekly Report": ["Wöchentlicher Bericht"], - "Weekly Report for %s": ["Wöchentlicher Bericht für %s"], - "Weekly seasonality": ["Wöchentliche Saisonalität"], - "Weeks %s": ["Wochen %s"], - "Weight": ["Gewicht"], - "We’re having trouble loading these results. Queries are set to timeout after %s second.": [ - "Wir haben Probleme beim Laden dieser Ergebnisse. Abfragen überschreiten nach %s Sekunden die Ausführungszeit (Timeout).", - "Wir haben Probleme beim Laden dieser Ergebnisse. Abfragen überschreiten nach %s Sekunden die Ausführungszeit (Timeout)." + "create dataset from SQL query": ["Datensatz aus SQL-Abfrage erstellen"], + " to open SQL Lab. From there you can save the query as a dataset.": [ + " , um SQL Lab zu öffnen. Von dort aus können Sie die Abfrage als Datensatz speichern." ], - "We’re having trouble loading this visualization. Queries are set to timeout after %s second.": [ - "Wir haben Probleme beim Laden dieser Visualisierung. Abfragen überschreiten nach %s Sekunden die Ausführungszeit (Timeout).", - "Wir haben Probleme beim Laden dieser Visualisierung. Abfragen überschreiten nach %s Sekunden die Ausführungszeit (Timeout)." + "Select dataset source": ["Datensatz-Quelle auswählen"], + "No table columns": ["Keine Tabellenspalten"], + "This database table does not contain any data. Please select a different table.": [ + "Diese Datenbanktabelle enthält keine Daten. Bitte wählen Sie eine andere Tabelle aus." ], - "What should be shown on the label?": [ - "Was sollte als Beschriftung angezeigt werden?" + "An Error Occurred": ["Ein Fehler ist aufgetreten"], + "Unable to load columns for the selected table. Please select a different table.": [ + "Spalten für die ausgewählte Tabelle können nicht geladen werden. Bitte wählen Sie eine andere Tabelle aus." ], - "What should happen if the table already exists": [ - "Was soll passieren, wenn die Tabelle bereits vorhanden ist?" + "The API response from %s does not match the IDatabaseTable interface.": [ + "Die API-Antwort von %s stimmt nicht mit der IDatabaseTable-Schnittstelle überein." ], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "Wenn 'Berechnungstyp' auf \"Prozentuale Änderung\" gesetzt ist, wird das Y-Achsenformat '.1%' erzwungen" + "Usage": ["Verwendung"], + "Chart owners": ["Diagrammbesitzende"], + "Chart last modified": ["Diagramm zuletzt geändert"], + "Chart last modified by": ["Diagramm zuletzt geändert von"], + "Dashboard usage": ["Dashboard-Nutzung"], + "Create chart with dataset": ["Diagramm mit Datensatz erstellen"], + "chart": ["Diagramm"], + "No charts": ["Keine Diagramme"], + "This dataset is not used to power any charts.": [ + "Dieser Datesatz wird nicht von Diagrammen genutzt." ], - "When a secondary metric is provided, a linear color scale is used.": [ - "Wenn eine sekundäre Metrik bereitgestellt wird, wird eine lineare Farbskala verwendet." + "Select a database table.": ["Wählen Sie eine Datenbanktabelle aus."], + "Create dataset and create chart": [ + "Datensatz erstellen und Diagramm erstellen" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Wenn Sie die Option CREATE TABLE AS in SQL Lab zulassen, erzwingt diese Option, dass die Tabelle in diesem Schema erstellt wird" + "New dataset": ["Neuer Datensatz"], + "Select a database table and create dataset": [ + "Auswählen einer Datenbanktabelle und Erstellen eines Datensatzes" ], - "When checked, the map will zoom to your data after each query": [ - "Wenn diese Option aktiviert ist, zoomt die Karte nach jeder Abfrage auf Ihre Daten" + "dataset name": ["Datensatzname"], + "There was an error fetching dataset": [ + "Fehler beim Abrufen des Datensatzes" ], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "Wenn diese Option aktiviert ist, können Benutzer*innen SQL Lab-Ergebnisse in Explore visualisieren." + "There was an error fetching dataset's related objects": [ + "Fehler beim Abrufen der zugehörigen Objekte des Datensatzes" ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "Wenn nur eine primäre Metrik bereitgestellt wird, wird eine kategoriale Farbpalette verwendet." + "There was an error loading the dataset metadata": [ + "Fehler beim Laden der Datensatz-Metadaten" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "Beim Angeben von SQL fungiert die Datenquelle als Ansicht. Superset verwendet diese Anweisung als Unterabfrage beim Gruppieren und Filtern der generierten übergeordneten Abfragen." + "[Untitled]": ["[Unbenannt]"], + "Unknown": ["Unbekannt"], + "Viewed %s": ["%s angesehen"], + "Edited": ["Bearbeitet"], + "Created": ["Erstellt"], + "Viewed": ["Angesehen"], + "Favorite": ["Favoriten"], + "Mine": ["Meine"], + "View All »": ["Alle ansehen »"], + "An error occurred while fetching dashboards: %s": [ + "Beim Abrufen von Dashboards ist ein Fehler aufgetreten: %s" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "Bei Verwendung von \"AutoVervollständigen-Filtern\" kann dies verwendet werden, um die Leistung der Abfrage zum Abrufen der Werte zu verbessern. Verwenden Sie diese Option, um ein Prädikat (WHERE-Klausel) auf die Abfrage anzuwenden, die die verschiedenen Werte aus der Tabelle auswählt. In der Regel besteht die Absicht darin, den Scan einzuschränken, indem ein relativer Zeitfilter auf ein partitioniertes oder indiziertes zeitbezogenes Feld angewendet wird." + "charts": ["Diagramme"], + "dashboards": ["Dashboards"], + "recents": ["Kürzlich"], + "saved queries": ["gespeicherte Abfragen"], + "No charts yet": ["Noch keine Diagramme"], + "No dashboards yet": ["Noch keine Dashboards"], + "No recents yet": ["Noch keine aktuellen"], + "No saved queries yet": ["Noch keine gespeicherten Abfragen"], + "%(other)s charts will appear here": [ + "%(other)s Diagramme werden hier angezeigt" ], - "When using 'Group By' you are limited to use a single metric": [ - "Wenn Sie \"Gruppieren nach\" verwenden, sind Sie auf die Verwendung einer einzelnen Metrik beschränkt" + "%(other)s dashboards will appear here": [ + "%(other)s Dashboards werden hier angezeigt" ], - "When using other than adaptive formatting, labels may overlap": [ - "Bei Verwendung einer anderen als der adaptiven Formatierung können sich Beschriftungen überschneiden" + "%(other)s recents will appear here": [ + "Aktuelle %(other)s werden hier angezeigt" ], - "When using this option, default value can’t be set": [ - "Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden" + "%(other)s saved queries will appear here": [ + "%(other)s gespeicherte Abfragen werden hier angezeigt" ], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "Ob sich der Fortschrittsbalken überschneidet, wenn mehrere Datengruppen vorhanden sind" + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Kürzlich angezeigte Diagramme, Dashboards und gespeicherte Abfragen werden hier angezeigt" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "Ob die Tabelle durch den 'Visualize'-Fluss in SQL Lab generiert wurde" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden hier angezeigt" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Ob diese Spalte im Abschnitt \"Filter\" der Erkunden-Ansicht verfügbar gemacht wird." + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Kürzlich bearbeitete Diagramme, Dashboards und gespeicherte Abfragen werden hier angezeigt" ], - "Whether to align background charts with both positive and negative values at 0": [ - "Ob Hintergrunddiagramme sowohl mit positiven als auch mit negativen Werten bei 0 ausgerichtet werden sollen" + "SQL query": ["SQL Abfrage"], + "You don't have any favorites yet!": ["Sie haben noch keine Favoriten!"], + "See all %(tableName)s": ["Alle %(tableName)s ansehen"], + "Connect database": ["Datenbank verbinden"], + "Create dataset": ["Datensatz erstellen"], + "Connect Google Sheet": ["Google Sheet verbinden"], + "Upload CSV to database": ["CSV in Datenbank hochladen"], + "Upload columnar file to database": [ + "Spaltendatei in Datenbank hochladen" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "Ob positive und negative Werte im Zellbalkendiagramm bei 0 ausgerichtet werden sollen" + "Upload Excel file to database": ["Excel-Datei in Datenbank hochladen"], + "Enable 'Allow file uploads to database' in any database's settings": [ + "Aktivieren Sie \"Datei-Uploads in Datenbank zulassen\" in den Einstellungen einer beliebigen Datenbank" ], - "Whether to always show the annotation label": [ - "Ob die Anmerkungs-Beschriftung immer angezeigt werden soll" + "Info": ["Info"], + "Logout": ["Abmelden"], + "About": ["Über"], + "Powered by Apache Superset": ["Powered Apache Superset"], + "SHA": ["SHA"], + "Build": ["Build"], + "Documentation": ["Dokumentation"], + "Report a bug": ["Fehler melden"], + "Login": ["Anmelden"], + "query": ["Abfrage"], + "Deleted: %s": ["Gelöscht: %s"], + "There was an issue deleting %s: %s": [ + "Beim Löschen von %s ist ein Problem aufgetreten: %s" ], - "Whether to animate the progress and the value or just display them": [ - "Ob der Fortschritt und der Wert animiert oder nur angezeigt werden sollen" + "This action will permanently delete the saved query.": [ + "Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht." ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "Ob eine Normalverteilung basierend auf dem Rang auf der Farbskala angewendet werden soll" + "Delete Query?": ["Abfrage löschen?"], + "Ran %s": ["Ausgeführt %s"], + "Saved queries": ["Gespeicherte Abfragen"], + "Next": ["Weiter"], + "Tab name": ["Tabellenname"], + "User query": ["Benutzer*innen-Abfrage"], + "Executed query": ["Ausgeführte Abfrage"], + "Query name": ["Abfragename"], + "SQL Copied!": ["SQL kopiert!"], + "Sorry, your browser does not support copying.": [ + "Entschuldigung. Ihr Browser unterstützt leider kein Kopieren." ], - "Whether to apply filter when items are clicked": [ - "Ob Filter angewendet werden soll, wenn auf Elemente geklickt wird" + "There was an issue fetching reports attached to this dashboard.": [ + "Es gab ein Problem beim Abrufen von Reports, die an dieses Dashboard angehängt waren." ], - "Whether to colorize numeric values by if they are positive or negative": [ - "Ob numerische Werte eingefärbt werden sollen, wenn sie positiv oder negativ sind" + "The report has been created": ["Der Report wurde erstellt"], + "Report updated": ["Bericht aktualisiert"], + "We were unable to active or deactivate this report.": [ + "Wir konnten diesen Bericht nicht aktivieren oder deaktivieren." ], - "Whether to display a bar chart background in table columns": [ - "Ob ein Balkendiagrammhintergrund in Tabellenspalten angezeigt werden soll" + "Your report could not be deleted": [ + "Ihr Report konnte nicht gelöscht werden" ], - "Whether to display a legend for the chart": [ - "Ob eine Legende für das Diagramm angezeigt werden soll" + "Weekly Report for %s": ["Wöchentlicher Bericht für %s"], + "Weekly Report": ["Wöchentlicher Bericht"], + "Edit email report": ["E-Mail-Report bearbeiten"], + "Schedule a new email report": ["Planen eines neuen E-Mail-Berichts"], + "Text embedded in email": ["In E-Mail eingebetteter Text"], + "Image (PNG) embedded in email": ["Bild (PNG) in E-Mail eingebettet"], + "Formatted CSV attached in email": [ + "Formatierte CSV-Datei in E-Mail angehängt" ], - "Whether to display bubbles on top of countries": [ - "Ob Blasen über Ländern angezeigt werden sollen" + "Report Name": ["Berichtname"], + "Include a description that will be sent with your report": [ + "Fügen Sie eine Beschreibung hinzu, die mit Ihrem Bericht gesendet wird" ], - "Whether to display the aggregate count": [ - "Ob die Gesamtanzahl angezeigt werden soll" + "A screenshot of the dashboard will be sent to your email at": [ + "Ein Screenshot des Dashboards wird an Ihre E-Mail-Adresse gesendet" ], - "Whether to display the interactive data table": [ - "Ob die interaktive Datentabelle angezeigt werden soll" + "Failed to update report": ["Fehler beim Aktualisieren des Berichts"], + "Failed to create report": ["Bericht konnte nicht erstellt werden"], + "Set up an email report": ["E-Mail-Report einrichten"], + "Email reports active": ["E-Mail-Reporte aktiv"], + "Delete email report": ["E-Mail-Report löschen"], + "Schedule email report": ["Planen von E-Mail-Reports"], + "This action will permanently delete %s.": [ + "Mit dieser Aktion wird %s dauerhaft gelöscht." ], - "Whether to display the labels.": [ - "Ob die Beschriftungen angezeigt werden sollen." + "Delete Report?": ["Report löschen?"], + "Rule added": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Bei regulären Filtern sind dies die Rollen, auf die dieser Filter angewendet wird. Bei Basisfiltern sind dies die Rollen, auf die der Filter NICHT angewendet wird, z. B. Admin, wenn Admin alle Daten sehen soll." ], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ - "Ob die Beschriftungen angezeigt werden sollen. Beachten Sie, dass die Beschriftung nur angezeigt wird, wenn der Schwellenwert von 5 % erreicht ist." + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Filter mit demselben Gruppenschlüssel werden innerhalb der Gruppe ODER-verknüpft, während verschiedene Filtergruppen zusammen UND-verknüpft werden. Undefinierte Gruppenschlüssel werden als eindeutige Gruppen behandelt, d.h. nicht gruppiert. Wenn eine Tabelle beispielsweise drei Filter hat, von denen zwei für die Abteilungen Finanzen und Marketing (Gruppenschlüssel = 'Abteilung') sind und einer sich auf die Region Europa bezieht (Gruppenschlüssel = 'Region'), würde die Filterklausel den Filter anwenden (Abteilung = 'Finanzen' ODER Abteilung = 'Marketing') UND (Region = 'Europa')." ], - "Whether to display the legend (toggles)": [ - "Ob die Legende angezeigt werden soll (Wechselschalter)" + "Clause": ["Ausdruck"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Dies ist die Bedingung, die der WHERE-Klausel hinzugefügt wird. Um beispielsweise nur Zeilen für eine*n bestimmte*n Klient*n zurückzugeben, können Sie einen regulären Filter mit der Klausel \"client_id = 9\" definieren. Um keine Zeilen anzuzeigen, es sei denn, ein*e Benutzer*in gehört einer RLS-Filterrolle an, kann ein Basisfilter mit der Klausel '1 = 0' (immer falsch) erstellt werden." ], - "Whether to display the metric name as a title": [ - "Ob der Metrikname als Titel angezeigt werden soll" + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" ], - "Whether to display the min and max values of the X-axis": [ - "Ob die Min- und Max-Werte der X-Achse angezeigt werden sollen" + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": ["Ausgewählte nicht numerische Spalte"], + "UI Configuration": ["UI Konfiguration"], + "Filter value is required": ["Filterwert ist erforderlich"], + "User must select a value before applying the filter": [ + "Benutzer*in muss einen Wert für diesen Filter auswählen" ], - "Whether to display the min and max values of the Y-axis": [ - "Ob die Min- und Max-Werte der Y-Achse angezeigt werden sollen" + "Single value": ["Einzelner Wert"], + "Use only a single value.": ["Verwenden Sie nur einen einzigen Wert."], + "Range filter plugin using AntD": ["Bereichsfilter-Plugin mit AntD"], + " (excluded)": [" (ausgeschlossen)"], + "Check for sorting ascending": [ + "Überprüfen Sie die Sortierung aufsteigend" ], - "Whether to display the numerical values within the cells": [ - "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen" + "Can select multiple values": ["Mehrere Werte können ausgewählt werden"], + "Select first filter value by default": [ + "Standardmäßig erste Ersten Filterwert auswählen" ], - "Whether to display the stroke": [ - "Ob der Strich dargestellt werden soll" + "When using this option, default value can’t be set": [ + "Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden" ], - "Whether to display the time range interactive selector": [ - "Ob die interaktive Zeitbereichs-Auswahl angezeigt werden soll" + "Inverse selection": ["Auswahl umkehren"], + "Exclude selected values": ["Auswahlwerte ausschließen"], + "Dynamically search all filter values": [ + "Alle Filterwerte dynamisch durchsuchen" ], - "Whether to display the timestamp": [ - "Ob der Zeitstempel angezeigt werden soll" + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Standardmäßig lädt jeder Filter beim ersten Laden der Seite höchstens 1000 Auswahlmöglichkeiten. Aktivieren Sie dieses Kontrollkästchen, wenn Sie über mehr als 1000 Filterwerte verfügen und die dynamische Suche aktivieren möchten, die Filterwerte während der Benutzereingabe lädt (was die Datenbank belasten kann)." ], - "Whether to display the trend line": [ - "Ob die Trendlinie angezeigt werden soll" + "Select filter plugin using AntD": ["Filter-Plugin mit AntD auswählen"], + "Custom time filter plugin": ["Benutzerdefiniertes Zeitfilter-Plugin"], + "No time columns": ["Nicht-Zeitspalten"], + "Time column filter plugin": ["Zeitspalten-Filter-Plugin"], + "Time grain filter plugin": ["Zeitgranularität-Plugin"], + "Working": ["In Bearbeitung"], + "Not triggered": ["Nicht ausgelöst"], + "On Grace": ["Kulanz"], + "reports": ["Reports"], + "alerts": ["Alarme"], + "There was an issue deleting the selected %s: %s": [ + "Beim Löschen der ausgewählten %s ist ein Problem aufgetreten: %s" ], - "Whether to enable changing graph position and scaling.": [ - "Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll." + "Last run": ["Letzte Ausführung"], + "Execution log": ["Aktionsprotokoll"], + "Bulk select": ["Massenauswahl"], + "No %s yet": ["Noch keine %s"], + "Owner": ["Besitzer*in"], + "All": ["Alle"], + "An error occurred while fetching owners values: %s": [ + "Beim Abrufen der Werte der Besitzer*innen ist ein Fehler aufgetreten: %s" ], - "Whether to enable node dragging in force layout mode.": [ - "Ob das Ziehen von Knoten im Kräfte-basierten Layoutmodus aktiviert werden soll." + "Status": ["Status"], + "An error occurred while fetching dataset datasource values: %s": [ + "Beim Abrufen von Datassatz-Datenquellenwerten ist ein Fehler aufgetreten: %s" ], - "Whether to fill the objects": ["Ob die Objekte gefüllt werden sollen"], - "Whether to ignore locations that are null": [ - "Ob Örtlichkeiten ignoriert werden sollen, die null sind" + "Alerts & reports": ["Alarme und Reports"], + "Alerts": ["Alarme"], + "Reports": ["Reports"], + "Delete %s?": ["%s löschen?"], + "Are you sure you want to delete the selected %s?": [ + "Möchten Sie die/das ausgewählte %s wirklich löschen?" ], - "Whether to include a client-side search box": [ - "Ob ein clientseitiges Suchfeld eingeschlossen werden soll" + "There was an issue deleting the selected layers: %s": [ + "Beim Löschen der ausgewählten Ebenen ist ein Problem aufgetreten: %s" ], - "Whether to include a time filter": [ - "Ob ein Zeitfilter eingebunden werden soll" + "Edit template": ["Vorlage bearbeiten"], + "Delete template": ["Vorlage löschen"], + "No annotation layers yet": ["Noch keine Anmerkungsebenen"], + "This action will permanently delete the layer.": [ + "Durch diese Aktion wird die Ebene dauerhaft gelöscht." ], - "Whether to include the percentage in the tooltip": [ - "Ob der Prozentsatz in Tooltip aufgenommen werden soll" + "Delete Layer?": ["Ebene löschen?"], + "Are you sure you want to delete the selected layers?": [ + "Möchten Sie die ausgewählten Ebenen wirklich löschen?" ], - "Whether to include the time granularity as defined in the time section": [ - "Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden soll" + "There was an issue deleting the selected annotations: %s": [ + "Beim Löschen der ausgewählten Anmerkungen ist ein Problem aufgetreten: %s" ], - "Whether to make the grid 3D": [ - "Ob das Raster in 3D umgewandelt werden soll" + "Delete annotation": ["Anmerkung löschen"], + "Annotation": ["Anmerkung"], + "No annotation yet": ["Noch keinen Anmerkungen"], + "Annotation Layer %s": ["Anmerkungs-Layer %s"], + "Back to all": ["Zurück zu allen"], + "Are you sure you want to delete %s?": [ + "Sind Sie sicher, dass Sie %s löschen möchten?" ], - "Whether to make the histogram cumulative": [ - "Ob das Histogramm kumulativ dargestellt werden soll" + "Delete Annotation?": ["Anmerkung löschen?"], + "Are you sure you want to delete the selected annotations?": [ + "Möchten Sie die ausgewählten Anmerkungen wirklich löschen?" ], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Unabhängig davon, ob diese Spalte als [Zeitgranularität]-Option verfügbar gemacht werden soll, muss die Spalte DATETIME oder DATETIME-ähnlich sein" + "Failed to load chart data": [ + "Diagrammdaten konnten nicht geladen werden" ], - "Whether to normalize the histogram": [ - "Ob das Histogramm normalisiert werden soll" + "view instructions": ["Anleitung anzeigen"], + "Add a dataset": ["Datensatz hinzufügen"], + "or": ["Oder"], + "Choose a dataset": ["Datensatz auswählen"], + "Choose chart type": ["Diagrammtyp auswählen"], + "Please select both a Dataset and a Chart type to proceed": [ + "Wählen Sie sowohl einen Datensatz- als auch einen Diagrammtyp aus, um fortzufahren" ], - "Whether to populate autocomplete filters options": [ - "Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen" + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Ob das Dropdown-Menü des Filters im Filterabschnitt der Ansicht \"Erkunden\" mit einer Liste unterschiedlicher Werte aufgefüllt werden soll, die im laufenden Betrieb aus dem Back-End abgerufen werden sollen" + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Sie importieren ein oder mehrere Diagramme, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "Ob zusätzliche Steuerelemente angezeigt werden sollen oder nicht. Zu den zusätzlichen Steuerelementen gehören Elemente wie das gestapelt oder nebeneinander Erstellen von Multi-Bar-Diagrammen." + "Chart imported": ["Diagramm importiert"], + "There was an issue deleting the selected charts: %s": [ + "Beim Löschen der ausgewählten Diagramme ist ein Problem aufgetreten: %s" ], - "Whether to show minor ticks on the axis": [ - "Ob kleinere Ticks auf der Achse angezeigt werden sollen" + "An error occurred while fetching dashboards": [ + "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" ], - "Whether to show the pointer": ["Ob der Zeiger angezeigt werden soll"], - "Whether to show the progress of gauge chart": [ - "Ob der Fortschritt der Messgerätediagramms angezeigt werden soll" + "Any": ["Beliebig"], + "An error occurred while fetching chart owners values: %s": [ + "Beim Abrufen von Diagrammbesitzer*innenwerten ist ein Fehler aufgetreten: %s" ], - "Whether to show the split lines on the axis": [ - "Ob die geteilten Linien auf der Achse angezeigt werden sollen" + "Certified": ["Zertifiziert"], + "Alphabetical": ["Alphabetisch"], + "Recently modified": ["Kürzlich geändert"], + "Least recently modified": ["Zuletzt geändert"], + "Import charts": ["Diagramm importieren"], + "Are you sure you want to delete the selected charts?": [ + "Möchten Sie die ausgewählten Diagramme wirklich löschen?" ], - "Whether to sort ascending or descending on the base Axis.": [ - "Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll." + "CSS templates": ["CSS Vorlagen"], + "There was an issue deleting the selected templates: %s": [ + "Beim Löschen der ausgewählten Vorlagen ist ein Problem aufgetreten: %s" ], - "Whether to sort descending or ascending": [ - "Ob absteigend oder aufsteigend sortiert werden soll" + "CSS template": ["CSS Vorlagen"], + "This action will permanently delete the template.": [ + "Durch diese Aktion wird die Vorlage dauerhaft gelöscht." ], - "Whether to sort descending or ascending if a series limit is present": [ - "Ob absteigend oder aufsteigend sortiert werden soll, wenn ein Reihengrenzwert vorhanden ist" + "Delete Template?": ["Vorlage löschen?"], + "Are you sure you want to delete the selected templates?": [ + "Möchten Sie die ausgewählten Vorlagen wirklich löschen?" ], - "Whether to sort results by the selected metric in descending order.": [ - "Ob die Ergebnisse nach der ausgewählten Metrik in absteigender Reihenfolge sortiert werden sollen." + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um sie zusammen mit den Dashboards zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "Ob der Tooltip nach der ausgewählten Metrik in absteigender Reihenfolge sortiert werden soll." + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Sie importieren ein oder mehrere Dashboards, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" ], - "Whether to truncate metrics": [ - "Ob Metriken abgeschnitten werden sollen" + "Dashboard imported": ["Dashboard importiert"], + "There was an issue deleting the selected dashboards: ": [ + "Beim Löschen der ausgewählten Dashboards ist ein Problem aufgetreten: " ], - "Which country to plot the map for?": [ - "Für welches Land soll die Karte geplottet werden?" + "An error occurred while fetching dashboard owner values: %s": [ + "Beim Abrufen von Dashboardbesitzer*innen-Werten ist ein Fehler aufgetreten: %s" ], - "Which relatives to highlight on hover": [ - "Welche Verwandten beim Überfahren mit der Maus hervorgehoben werden sollen" + "Are you sure you want to delete the selected dashboards?": [ + "Möchten Sie die ausgewählten Dashboards wirklich löschen?" ], - "Whisker/outlier options": ["Whisker/Ausreißer-Optionen"], - "White": ["Weiß"], - "Width": ["Breite"], - "Width of the confidence interval. Should be between 0 and 1": [ - "Breite des Konfidenzintervalls. Sollte zwischen 0 und 1 liegen" + "An error occurred while fetching database related data: %s": [ + "Beim Abrufen datenbankbezogener Daten ist ein Fehler aufgetreten: %s" ], - "Width of the sparkline": ["Breite der Sparkline"], - "Window must be > 0": ["Fenster muss > 0 sein"], - "With a subheader": ["Mit einem Untertitel"], - "Word Cloud": ["Wortwolke"], - "Word Rotation": ["Wort-Rotation"], - "Working": ["In Bearbeitung"], - "Working timeout": ["Zeitüberschreitung"], - "World Map": ["Weltkarte"], - "Write a description for your query": ["Beschreibung Ihrer Anfrage"], - "Write a handlebars template to render the data": [ - "Handlebars-Template zur Darstellung der Daten verfassen" + "Upload file to database": ["Datei in Datenbank hochladen"], + "Upload CSV": ["CSV hochladen"], + "Upload columnar file": ["Spaltendatei hochladen"], + "Upload Excel file": ["Excel hochladen"], + "AQE": ["AQE"], + "Allow data manipulation language": [ + "DML (Datenmanipulationssprache) zulassen" ], - "Write dataframe index as a column": [ - "Dataframe-Index als Spalte schreiben" + "DML": ["DML"], + "CSV upload": ["CSV-Upload"], + "Delete database": ["Datenbank löschen"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "Die Datenbank %s ist mit %s Diagrammen verknüpft, die auf %s Dashboards angezeigt werden und Nutzende haben %s SQL Lab Reiter geöffnet, die auf diese Datenbank zugreifen. Sind Sie sicher, dass Sie fortfahren möchten? Durch das Löschen der Datenbank werden diese Objekte ungültig." ], - "Write dataframe index as a column.": [ - "Schreiben Sie den Dataframe-Index als Spalte." + "Delete Database?": ["Datenbank löschen?"], + "Dataset imported": ["Datensatz importiert"], + "An error occurred while fetching dataset related data": [ + "Fehler beim Abrufen von Daten des Datensatzes" ], - "X AXIS TITLE BOTTOM MARGIN": ["X-ACHSE TITEL UNTERER RAND"], - "X Axis": ["X-Achse"], - "X Axis Format": ["X-Achsen-Format"], - "X Axis Label": ["X Achsenbeschriftung"], - "X Axis Title": ["Titel der X-Achse"], - "X Log Scale": ["X-Log-Skala"], - "X Tick Layout": ["X Tick Layout"], - "X bounds": ["X-Grenzen"], - "X-Axis Sort Ascending": ["X-Achse aufsteigend sortieren"], - "X-Axis Sort By": ["X-Achse Sortieren nach"], - "X-axis": ["X-Achse"], - "XScale Interval": ["X-Skalen-Intervall"], - "Y 2 bounds": ["Y 2 Grenzen"], - "Y AXIS TITLE MARGIN": ["Y-ACHSE TITEL RAND"], - "Y AXIS TITLE POSITION": ["Y-ACHSE TITEL POSITION"], - "Y Axis": ["Y-Achse"], - "Y Axis 2 Bounds": ["Grenzen der Y-Achse 2"], - "Y Axis Bounds": ["Grenzen der Y-Achse"], - "Y Axis Format": ["Y-Achsenformat"], - "Y Axis Label": ["Y Achsenbeschriftung"], - "Y Axis Title": ["Titel der Y-Achse"], - "Y Log Scale": ["Y-Log-Skala"], - "Y bounds": ["Y-Grenzen"], - "Y-Axis Sort Ascending": ["Y-Achse aufsteigend sortieren"], - "Y-Axis Sort By": ["Y-Achse Sortieren nach"], - "Y-axis": ["Y-Achse"], - "Y-axis bounds": ["Grenzen der Y-Achse"], - "YScale Interval": ["Y-Skalen-Intervall"], - "Year": ["Jahr"], - "Year (freq=AS)": ["Jahr (freq=AS)"], - "Yearly seasonality": ["Jährliche Saisonalität"], - "Years %s": ["Jahre %s"], - "Yes": ["Ja"], - "Yes, cancel": ["Ja, abbrechen"], - "Yes, overwrite changes": ["Ja, Änderungen überschreiben"], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Sie importieren ein oder mehrere Diagramme, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" - ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Sie importieren ein oder mehrere Dashboards, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" - ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Sie importieren eine oder mehrere Datenbanken, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" - ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Sie importieren eine oder mehrere Datenbanken, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" - ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Sie importieren eine oder mehrere gespeicherte Abfragen, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" - ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "Sie sind nicht berechtigt, diese Abfrage anzuzeigen. Wenn Sie der Meinung sind, dass dies ein Fehler ist, wenden Sie sich bitte an Ihre*n Administrator*in." - ], - "You can": ["Sie können"], - "You can add the components in the": [ - "Hinzufügen können Sie die Komponenten in der" + "An error occurred while fetching dataset related data: %s": [ + "Beim Abrufen von Datensatzdaten ist ein Fehler aufgetreten: %s" ], - "You can add the components in the edit mode.": [ - "Sie können die Komponenten im Bearbeitungsmodus hinzufügen." + "Physical dataset": ["Physischer Datensatz"], + "Virtual dataset": ["Virtueller Datensatz"], + "Virtual": ["Virtuell"], + "An error occurred while fetching datasets: %s": [ + "Beim Abrufen von Datensätzen ist ein Fehler aufgetreten: %s" ], - "You can also just click on the chart to apply cross-filter.": [ - "Sie können auch einfach auf das Diagramm klicken, um den Kreuzfilter anzuwenden." + "An error occurred while fetching schema values: %s": [ + "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" ], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "Sie können auswählen, ob alle Diagramme angezeigt werden sollen, auf die Sie Zugriff haben, oder nur die Diagramme, die Sie besitzen.\n Ihre Filterauswahl wird gespeichert und bleibt aktiv, bis Sie sie ändern." + "An error occurred while fetching dataset owner values: %s": [ + "Beim Abrufen von Angaben zum/zur Datensatz-Besitzer*in ist ein Fehler aufgetreten: %s" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "Sie können ein neues Diagramm erstellen oder vorhandene Diagramme aus dem Bereich auf der rechten Seite verwenden." + "Import datasets": ["Datensätze importieren"], + "There was an issue deleting the selected datasets: %s": [ + "Beim Löschen der ausgewählten Datensätze ist ein Problem aufgetreten: %s" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "Sie können eine Vorschauliste der Dashboards in der Dropdownliste für die Diagrammeinstellungen anzeigen." + "There was an issue duplicating the dataset.": [ + "Beim Duplizieren des Datensatzes ist ein Problem aufgetreten." ], - "You can't apply cross-filter on this data point.": [ - "Sie können keinen Kreuzfilter auf diesen Datenpunkt anwenden." + "There was an issue duplicating the selected datasets: %s": [ + "Beim Duplizieren der ausgewählten Datensätze ist ein Problem aufgetreten: %s" ], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "Sie können den letzten Zeitfilter nicht löschen, da er für Zeitbereichsfilter in Dashboards verwendet wird." + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Der %s Datensatz ist mit %s Diagrammen verknüpft, die auf %s Dashboards angezeigt werden. Sind Sie sicher, dass Sie fortfahren möchten? Durch das Löschen des Datensatzes werden diese Objekte ungültig." ], - "You cannot use 45° tick layout along with the time range filter": [ - "Sie können das 45°-Strich-Layout nicht zusammen mit dem Zeitbereichsfilter verwenden" + "Delete Dataset?": ["Datensatz löschen?"], + "Are you sure you want to delete the selected datasets?": [ + "Möchten Sie die ausgewählten Datensätze wirklich löschen?" ], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "Sie können [Spalten] nicht in Kombination mit [Gruppieren nach]/[Metriken]/[Prozentmetriken] verwenden. Bitte wählen Sie das eine oder das andere." + "0 Selected": ["0 ausgewählt"], + "%s Selected (Virtual)": ["%s ausgewählt (virtuell)"], + "%s Selected (Physical)": ["%s ausgewählt (physisch)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s ausgewählt (%s physisch, %s virtuell)" ], - "You do not have permission to edit this %s": [ - "Sie haben keine Berechtigung, %s zu bearbeiten" + "log": ["Protokoll"], + "Execution ID": ["Ausführungs-ID"], + "Scheduled at (UTC)": ["Geplant um (UTC)"], + "Start at (UTC)": ["Starten um (UT)"], + "Error message": ["Fehlermeldung"], + "Alert": ["Alarm"], + "There was an issue fetching your recent activity: %s": [ + "Beim Abrufen Ihrer letzten Aktivität ist ein Problem aufgetreten: %s" ], - "You do not have permission to edit this chart": [ - "Sie sind nicht berechtigt, dieses Diagramm zu bearbeiten" + "There was an issue fetching your dashboards: %s": [ + "Beim Abrufen Ihrer Dashboards ist ein Problem aufgetreten: %s" ], - "You do not have permission to edit this dashboard": [ - "Sie haben keine Zugriff auf diese Datenquelle" + "There was an issue fetching your chart: %s": [ + "Beim Abrufen Ihres Diagramms ist ein Problem aufgetreten: %s" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "Sie haben keine Berechtigungen für den Zugriff auf die Datenquelle(n): %(name)s." + "There was an issue fetching your saved queries: %s": [ + "Beim Abrufen Ihrer gespeicherten Abfragen ist ein Problem aufgetreten: %s" ], - "You do not have permissions to edit this dashboard.": [ - "Sie haben keine Berechtigungen zum Bearbeiten dieses Dashboards." + "Thumbnails": ["Vorschaubilder"], + "Recents": ["Kürzlich"], + "There was an issue previewing the selected query. %s": [ + "Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s" ], - "You don't have access to this chart.": [ - "Sie haben keinen Zugriff auf dieses Diagramm." + "TABLES": ["TABELLEN"], + "Open query in SQL Lab": ["Bearbeiten in SQL Editor"], + "An error occurred while fetching database values: %s": [ + "Beim Abrufen von Datenbankwerten ist ein Fehler aufgetreten: %s" ], - "You don't have access to this dashboard.": [ - "Sie haben keinen Zugriff auf dieses Dashboard." + "An error occurred while fetching user values: %s": [ + "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" ], - "You don't have access to this dataset.": [ - "Sie haben keinen Zugriff auf dieses Dataset." + "Search by query text": ["Suche nach Abfragetext"], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um sie zusammen mit den gespeicherten Abfragen zu importieren. Bitte beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei Bedarf nach dem Import manuell hinzugefügt werden sollten." ], - "You don't have access to this embedded dashboard config.": [ - "Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration." + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Sie importieren eine oder mehrere gespeicherte Abfragen, die bereits vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" ], - "You don't have any favorites yet!": ["Sie haben noch keine Favoriten!"], - "You don't have permission to modify the value.": [ - "Sie sind nicht berechtigt, den Wert zu ändern." + "Query imported": ["Abfrage importiert"], + "There was an issue previewing the selected query %s": [ + "Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetreten" ], - "You don't have the rights to alter %(resource)s": [ - "Sie sind nicht berechtigt, %(resource)s zu ändern" + "Import queries": ["Abfragen importieren"], + "Link Copied!": ["Link kopiert!"], + "There was an issue deleting the selected queries: %s": [ + "Beim Löschen der ausgewählten Abfragen ist ein Problem aufgetreten: %s" ], - "You don't have the rights to alter this chart": [ - "Sie sind nicht berechtigt, dieses Diagramm zu ändern" + "Edit query": ["Abfrage bearbeiten"], + "Copy query URL": ["Abfrage-URL kopieren"], + "Export query": ["Abfrage exportieren"], + "Delete query": ["Abfrage löschen"], + "Are you sure you want to delete the selected queries?": [ + "Möchten Sie die ausgewählten Abfragen wirklich löschen?" ], - "You don't have the rights to alter this dashboard": [ - "Sie sind nicht berechtigt, dieses Dashboard zu ändern" + "queries": ["Abfragen"], + "tag": ["Schlagwort"], + "Are you sure you want to delete the selected tags?": [ + "Möchten Sie die ausgewählten Tags wirklich löschen?" ], - "You don't have the rights to alter this title.": [ - "Sie haben nicht das Recht, diesen Titel zu ändern." + "Image download failed, please refresh and try again.": [ + "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." ], - "You don't have the rights to create a chart": [ - "Sie haben nicht die Rechte zum Erstellen eines Diagramms" + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "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." ], - "You don't have the rights to create a dashboard": [ - "Sie haben nicht die Rechte zum Erstellen eines Dashboards" + "Invalid input": ["Ungültige Eingabe"], + "Unexpected error: ": ["Unerwarteter Fehler:"], + "(no description, click to see stack trace)": [ + "(keine Beschreibung, klicken Sie hier, um Fehlermeldung zu sehen)" ], - "You don't have the rights to download as csv": [ - "Sie haben nicht die Rechte, als CSV herunterzuladen" + "Sorry, an unknown error occurred.": [ + "Leider ist ein unbekannter Fehler aufgetreten." ], - "You have no permission to approve this request": [ - "Sie haben keine Berechtigung, diese Anforderung zu genehmigen" + "Sorry, there was an error saving this %s: %s": [ + "Leider ist beim Speichern dieses %s ein Fehler aufgetreten: %s" ], - "You have removed this filter.": ["Sie haben diesen Filter entfernt."], - "You have unsaved changes.": ["Ungesicherte Änderungen vorhanden."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "Sie haben alle %(historyLength)s Undo-Slots verwendet und können nachfolgende Aktionen nicht vollständig rückgängig machen. Sie können Ihren aktuellen Status speichern, um den Verlauf zurückzusetzen." + "You do not have permission to edit this %s": [ + "Sie haben keine Berechtigung, %s zu bearbeiten" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "Sie müssen ein Datensatzbesitzer*in sein, um bearbeiten zu können. Bitte wenden Sie sich an eine/n Datensatzbesitzer*in, um Änderungs- oder Bearbeitungszugriff zu erhalten." + "Network error": ["Netzwerkfehler"], + "Request timed out": ["Zeitüberschreitung der Anforderung"], + "Issue 1000 - The dataset is too large to query.": [ + "Problem 1000 - Die Datenquelle ist zu groß, um sie abzufragen." ], - "You must pick a name for the new dashboard": [ - "Sie müssen einen Namen für das neue Dashboard auswählen" + "Issue 1001 - The database is under an unusual load.": [ + "Problem 1001 - Die Datenbank ist ungewöhnlich belastet." ], - "You must run the query successfully first": [ - "Sie müssen die Abfrage zuerst erfolgreich ausführen" + "An error occurred while fetching %s info: %s": [ + "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" ], - "You need to configure HTML sanitization to use CSS": [ - "Sie müssen die HTML-Bereinigung (sanitization) aktivieren, um CSS verwenden zu können" + "An error occurred while fetching %ss: %s": [ + "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" ], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "Sie haben die Werte in der Systemsteuerung aktualisiert, aber das Diagramm wurde nicht automatisch aktualisiert. Führen Sie die Abfrage aus, indem Sie auf die Schaltfläche \"Diagramm aktualisieren\" klicken oder" + "An error occurred while creating %ss: %s": [ + "Beim Erstellen von %s ist ein Fehler aufgetreten: %s" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "Sie haben Datensätze geändert. Alle Steuerelemente mit Daten (Spalten, Metriken), die diesem neuen Dataset entsprechen, wurden beibehalten." + "Please re-export your file and try importing again": [ + "Bitte exportieren Sie Ihre Datei erneut und versuchen Sie nochmals, sie zu importieren." ], - "Your chart is not up to date": ["Ihr Diagramm ist nicht aktuell"], - "Your chart is ready to go!": ["Ihr Chart ist startklar!"], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "Ihr Dashboard ist zu groß. Bitte reduzieren Sie die Größe, bevor Sie es speichern." + "An error occurred while importing %s: %s": [ + "Beim Importieren von %s ist ein Fehler aufgetreten: %s" ], - "Your query could not be saved": [ - "Ihre Abfrage konnte nicht gespeichert werden" + "There was an error fetching the favorite status: %s": [ + "Beim Abrufen des Favoritenstatus ist ein Problem aufgetreten: %s" ], - "Your query could not be scheduled": [ - "Ihre Abfrage konnte nicht eingeplant werden" + "There was an error saving the favorite status: %s": [ + "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s" ], - "Your query could not be updated": [ - "Ihre Abfrage konnte nicht aktualisiert werden." + "Connection looks good!": ["Verbindung möglich!"], + "ERROR: %s": ["FEHLER: %s"], + "There was an error fetching your recent activity:": [ + "Beim Abrufen der letzten Aktivität ist ein Fehler aufgetreten:" ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Ihre Abfrage wurde geplant. Um Details zu Ihrer Abfrage anzuzeigen, navigieren Sie zu Gespeicherte Abfragen" + "There was an issue deleting: %s": [ + "Beim Löschen ist ein Problem aufgetreten: %s" ], - "Your query was not properly saved": [ - "Ihre Abfrage wurde nicht ordnungsgemäß gespeichert" + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Vorlagen-Link. Es ist möglich, {{ metric }} oder andere Werte aus den Steuerelementen einzuschließen." ], - "Your query was saved": ["Ihre Abfrage wurde gespeichert"], - "Your query was updated": ["Ihre Abfrage wurde angehalten"], - "Your report could not be deleted": [ - "Ihr Report konnte nicht gelöscht werden" + "Time-series Table": ["Zeitreihentabelle"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Vergleichen Sie schnell mehrere Zeitreihendiagramme (als Sparklines) und verwandte Metriken." ], - "Zero imputation": ["Fehlende-Werte-Ersetzung"], - "Zoom": ["Zoom"], - "Zoom level of the map": ["Zoomstufe der Karte"], - "[ untitled dashboard ]": ["[ unbenanntes Dashboard ]"], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "Die Spalten [Longitude] und [Latitude] müssen in [Group By] vorhanden sein." - ], - "[Longitude] and [Latitude] must be set": [ - "[Longitude] und [Latitude] müssen eingestellt sein" - ], - "[Missing Dataset]": ["[Fehlender Datensatz]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] Zugriff auf die Datenquelle %(name)s wurde gewährt" - ], - "[Untitled]": ["[Unbenannt]"], - "[asc]": ["[asc]"], - "[copy]": ["[Kopie]"], - "[dashboard name]": ["[Dashboard-Name]"], - "[desc]": ["[Beschreibung]"], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "[optional] Diese sekundäre Metrik wird verwendet, um die Farbe als Verhältnis zur primären Metrik zu definieren. Wenn keine angegeben, werden diskrete Farben verwendet, die auf den Beschriftungen basieren" - ], - "[untitled]": ["[Unbenannt]"], - "`compare_columns` must have the same length as `source_columns`.": [ - "„compare_columns“ muss die gleiche Länge wie „source_columns“ haben." - ], - "`compare_type` must be `difference`, `percentage` or `ratio`": [ - "\"compare_type\" muss \"Differenz\", \"Prozentsatz\" oder \"Verhältnis\" sein" - ], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "\"confidence_interval\" muss zwischen 0 und 1 liegen (exklusiv)" - ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "'count' ist COUNT(*), wenn ein ‚GROUP BY’ verwendet wird. Numerische Spalten werden mit der Aggregatfunktion aggregiert. Nicht numerische Spalten werden verwendet, um Punkte zu beschriften. Falls leer, wird die Anzahl der Punkte in jedem Cluster zurückgegeben." - ], - "`operation` property of post processing object undefined": [ - "'operation'-Eigenschaft des Nachbearbeitungsobjekts undefiniert" - ], - "`prophet` package not installed": ["Paket 'prophet' nicht installiert"], - "`rename_columns` must have the same length as `columns`.": [ - "\"rename_columns\" muss die gleiche Länge wie „columns“ haben." - ], - "`row_limit` must be greater than or equal to 0": [ - "\"row_limit\" muss größer oder gleich 0 sein" - ], - "`row_offset` must be greater than or equal to 0": [ - "\"row_offset\" muss größer oder gleich 0 sein" - ], - "`width` must be greater or equal to 0": [ - "\"Breite\" muss größer oder gleich 0 sein" - ], - "aggregate": ["Aggregat"], - "alert": ["Alarm"], - "alerts": ["Alarme"], - "all": ["alle"], - "also copy (duplicate) charts": ["auch (doppelte) Diagramme kopieren"], - "ancestor": ["Vorfahr"], - "and": ["und"], - "annotation": ["Anmerkungen"], - "annotation_layer": ["Anmerkungsebene"], - "asfreq": ["asfreq"], - "at": ["bei"], - "auto": ["automatisch"], - "auto (Smooth)": ["automatisch (geglättet)"], - "background": ["Hintergrund"], - "basis": ["basis"], - "below (example:": ["unten (Beispiel:"], - "between {down} and {up} {name}": ["zwischen {down} und {up} {name}"], - "bfill": ["Bfill"], - "bolt": ["Riegel"], - "boolean type icon": ["Symbol für booleschen Typ"], - "bottom": ["Unten"], - "button (cmd + z) until you save your changes.": [ - "Schaltfläche (cmd + z), bis Sie Ihre Änderungen speichern." - ], - "by using": ["durch die Verwendung von"], - "cannot be empty": ["darf nicht leer sein"], - "cardinal": ["Kardinal"], - "change": ["ändern"], - "chart": ["Diagramm"], - "charts": ["Diagramme"], - "choose WHERE or HAVING...": ["Wählen Sie WHERE oder HAVING…"], - "clear all filters": ["Alle Filter löschen"], - "click here": ["klicken Sie hier"], - "code ISO 3166-1 alpha-2 (cca2)": ["Code ISO 3166-1 alpha-2 (cca2)"], - "code ISO 3166-1 alpha-3 (cca3)": ["Code ISO 3166-1 alpha-3 (cca3)"], - "code International Olympic Committee (cioc)": [ - "Code Internationales Olympisches Komitee (CIOC)" - ], - "column": ["Spalte"], - "connecting to %(dbModelName)s.": ["verbinde mit %(dbModelName)s."], - "count": ["Anzahl"], - "create": ["Erstellen"], - "create a new chart": ["Neues Diagramm erstellen"], - "create dataset from SQL query": ["Datensatz aus SQL-Abfrage erstellen"], - "css": ["CSS"], - "css_template": ["css_template"], - "cumsum": ["cumsum"], - "cumulative": ["kumulativ"], - "dashboard": ["Dashboard"], - "dashboards": ["Dashboards"], - "database": ["Datenbank"], - "dataset": ["Datensatz"], - "dataset name": ["Datensatzname"], - "date": ["Datum"], - "day": ["Tag"], - "day of the month": ["Tag des Monats"], - "day of the week": ["Wochentag"], - "deck.gl 3D Hexagon": ["Deck.gl - 3D Hexagon"], - "deck.gl Arc": ["Deck.gl - Bogen"], - "deck.gl Geojson": ["Deck.gl - GeoJSON"], - "deck.gl Grid": ["Deck.gl - Raster"], - "deck.gl Multiple Layers": ["Deck.gl - Mehrere Ebenen"], - "deck.gl Path": ["Deck.gl - Pfade"], - "deck.gl Polygon": ["Deck.gl - Polygon"], - "deck.gl Scatterplot": ["deck.gl Streudiagramm"], - "deck.gl Screen Grid": ["Deck.gl - Bildschirmraster"], - "deck.gl charts": ["Deck.gl - Diagramme"], - "deckGL": ["deckGL"], - "default": ["Standard"], - "delete": ["Löschen"], - "descendant": ["Nachkomme"], - "description": ["Beschreibung"], - "deviation": ["Abweichung"], - "dialect+driver://username:password@host:port/database": [ - "dialect+driver://username:password@host:port/database" - ], - "draft": ["Entwurf"], - "dttm": ["dttm"], - "e.g. ********": ["z.B. ********"], - "e.g. 127.0.0.1": ["z.B. 127.0.0.1"], - "e.g. 5432": ["z.B. 5432"], - "e.g. AccountAdmin": ["z.B. AccountAdmin"], - "e.g. Analytics": ["z.B. Analytik"], - "e.g. compute_wh": ["z.B. compute_wh"], - "e.g. param1=value1¶m2=value2": ["z.B. param1=Wert1¶m2=Wert2"], - "e.g. sql/protocolv1/o/12345": ["z.B.sql/protocolv1/o/12345"], - "e.g. world_population": ["z.B. world_population"], - "e.g. xy12345.us-east-2.aws": ["z.B. xy12345.us-east-2.aws"], - "e.g., a \"user id\" column": ["z. B. eine Spalte „user id“"], - "edit mode": ["Bearbeitungsmodus"], - "entries": ["Einträge"], - "error dark": [""], - "error_message": ["Fehlermeldung"], - "every": ["jeden"], - "every day of the month": ["jeden Tag des Monats"], - "every day of the week": ["jeden Tag der Woche"], - "every hour": ["stündlich"], - "every minute": ["jede Minute"], - "every month": ["jeden Monat"], - "expand": ["aufklappen"], - "explore": ["Erkunden"], - "failed": ["fehlgeschlagen"], - "fetching": ["Wird abgerufen"], - "ffill": ["ffill"], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "filter_box wird in einer zukünftigen Version von Superset veraltet sein. Bitte ersetzen Sie filter_box durch Dashboard-Filterkomponenten." - ], - "flat": ["flach"], - "for more information on how to structure your URI.": [ - "für weitere Informationen zum Strukturieren des URI." - ], - "function type icon": ["Symbol für Funktionstyp"], - "geohash (square)": ["Geohash (quadratisch)"], - "heatmap": ["Heatmap"], - "heatmap: values are normalized across the entire heatmap": [ - "Heatmap: Werte werden über die gesamte Heatmap normalisiert" - ], - "here": ["hier"], - "hour": ["Stunde"], - "id": ["ID"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "CSS-Attribut zum Rendern von Bildern des Canvas-Objekts, das definiert, wie der Browser das Bild hochskaliert" - ], - "in": ["in"], - "in modal": [" "], - "is expected to be a number": ["wird als Zahl erwartet"], - "is expected to be an integer": ["wird als Ganzzahl erwartet"], - "joined": ["Verknüpft"], - "json isn't valid": ["JSON ist ungültig"], - "key a-z": ["Schlüssel a-z"], - "key z-a": ["Schlüssel z-a"], - "label": ["Beschriftung"], - "last day": ["Gestern"], - "last month": ["letzter Monat"], - "last quarter": ["letztes Quartal"], - "last week": ["letzte Woche"], - "last year": ["letztes Jahr"], - "latest partition:": ["neueste Partition:"], - "left": ["Links"], - "less than {min} {name}": ["weniger als {min} {name}"], - "linear": ["linear"], - "log": ["Protokoll"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "Das untere Perzentil muss größer als 0 und kleiner als 100 sein. Muss niedriger als das obere Perzentil sein." - ], - "max": ["Maximum"], - "mean": ["Mittelwert"], - "median": ["Median"], - "metric": ["Metrik"], - "min": ["Minimum"], - "minute": ["Minute"], - "minute(s)": ["Minute(n)"], - "monotone": ["monoton"], - "month": ["Monat"], - "more than {max} {name}": ["mehr als {max} {name}"], - "must have a value": ["Muss einen Wert haben"], - "name": ["Name"], - "no SQL validator is configured": ["kein SQL-Validator ist konfiguriert"], - "no SQL validator is configured for {}": [ - "Für {} ist kein SQL-Validator konfiguriert" - ], - "numeric type icon": ["Symbol für numerischen Typ"], - "nvd3": ["nvd3"], - "of parent": ["des Elternteils"], - "of total": ["der Gesamtsumme"], - "offline": ["Offline"], - "on": ["an"], - "or": ["Oder"], - "or use existing ones from the panel on the right": [ - "oder verwenden Sie vorhandene aus dem Bereich auf der rechten Seite" - ], - "orderby column must be populated": [ - "ORDER BY-Spalte muss angegeben werden" - ], - "overall": ["insgesamt"], - "p-value precision": ["p-Wert-Präzision"], - "p1": ["P1"], - "p5": ["P5"], - "p95": ["P95"], - "p99": ["P99"], - "page_size.all": ["page_size.all"], - "page_size.entries": ["page_size.entries"], - "page_size.show": ["page_size.show"], - "pending": ["ausstehend"], - "percentile (exclusive)": ["Perzentil (exklusiv)"], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "Perzentile müssen eine Liste oder ein Tupel mit zwei numerischen Werten sein, von denen der erste niedriger als der zweite Wert ist" - ], - "permalink state not found": ["Permalink-Status nicht gefunden"], - "pixelated (Sharp)": ["Gepixelt (scharf)"], - "previous calendar month": ["vorheriger Kalendermonat"], - "previous calendar week": ["vorherige Kalenderwoche"], - "previous calendar year": ["vorheriges Kalenderjahr"], - "published": ["veröffentlicht"], - "quarter": ["Quartal"], - "queries": ["Abfragen"], - "query": ["Abfrage"], - "random": ["zufällig"], - "reboot": ["Neu starten"], - "recent": ["Kürzlich"], - "recents": ["Kürzlich"], - "report": ["Report"], - "reports": ["Reports"], - "restore zoom": ["Zoom wiederherstellen"], - "right": ["Rechts"], - "running": ["laufend"], - "saved queries": ["gespeicherte Abfragen"], - "search by tags": ["Suche nach Tags"], - "seconds": ["Sekunden"], - "series": ["Zeitreihen"], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ - "Serie: Behandeln Sie jede Serie unabhängig voneinander; insgesamt: Alle Zeitreihen verwenden den gleichen Maßstab; Änderung: Änderungen im Vergleich zum ersten Datenpunkt in jeder Datenreihe anzeigen" - ], - "square": ["Quadrat"], - "stack": ["Stack"], - "staggered": ["gestaffelt"], - "std": ["Std"], - "step-after": ["step-after"], - "step-before": ["step-before"], - "stopped": ["gestoppt"], - "stream": ["Stream"], - "string type icon": ["Symbol für Zeichenfolgentyp"], - "success": ["Erfolg"], - "sum": ["sum"], - "syntax.": ["Syntax."], - "tag": ["Schlagwort"], - "temporal type icon": ["Symbol für Zeittyp"], - "textarea": ["Textfeld"], - "to": ["bis"], - "top": ["Oben"], - "undo": ["Rückgängig"], - "unknown type icon": ["Symbol für unbekannten Typ"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "Das obere Perzentil muss größer als 0 und kleiner als 100 sein. Muss größer als das untere Perzentil sein." - ], - "use latest_partition template": ["latest_partition Vorlage verwenden"], - "value ascending": ["Wert aufsteigend"], - "value descending": ["Wert absteigend"], - "variance": ["Varianz"], - "view instructions": ["Anleitung anzeigen"], - "virtual": ["virtuell"], - "viz type": ["Visualisierungstyp"], - "was created": ["wurde erstellt"], - "week": ["Woche"], - "week ending Saturday": ["Woche, am Samstag endend"], - "week starting Sunday": ["Woche, am Sonntag beginnend"], - "x": ["X"], - "x: values are normalized within each column": [ - "X: Werte werden innerhalb jeder Spalte normalisiert" - ], - "y": ["Y"], - "y: values are normalized within each row": [ - "y: Werte werden innerhalb jeder Zeile normalisiert" - ], - "year": ["Jahr"], - "zoom area": ["Zoombereich"] + "We have the following keys: %s": ["Wir haben folgende Schlüssel: %s"] } } } diff --git a/superset/translations/de/LC_MESSAGES/messages.po b/superset/translations/de/LC_MESSAGES/messages.po index 6a1ff690194d8..375e26c3315dd 100644 --- a/superset/translations/de/LC_MESSAGES/messages.po +++ b/superset/translations/de/LC_MESSAGES/messages.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2023-04-07 19:45+0200\n" "Last-Translator: Holger Bruch \n" "Language: de\n" @@ -29,4167 +29,3859 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" -"\n" -"Dieser Filter wurde vom Kontext des Dashboards geerbt.\n" -" Er wird beim Speichern des Diagramms nicht gespeichert.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "Die Datenquelle ist zu groß, um sie abzufragen." -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" -"\n" -"Fehler: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "Die Datenbank ist ungewöhnlich belastet." -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" -msgstr " (ausgeschlossen)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "Die Datenbank hat einen unerwarteten Fehler zurückgegeben." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -" Setzen Sie die Deckkraft auf 0, wenn Sie die im GeoJSON angegebene Farbe" -" nicht überschreiben möchten." - -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -msgid " a dashboard OR " -msgstr " ein Dashboard ODER " - -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -msgid " a new one" -msgstr " eine neue" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " -msgstr " die dem " - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" -msgstr " Quellcode des Sandbox-Parsers von Superset" +"In der SQL-Abfrage liegt ein Syntaxfehler vor. Vielleicht gab es einen " +"Rechtschreibfehler oder einen Tippfehler." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." -msgstr "" -" Standard genügen muss, um sicherzustellen, dass die lexikographische " -"Reihenfolge\n" -" mit der chronologischen Reihenfolge übereinstimmt. " -"Wenn das\n" -" Zeitstempelformat nicht dem ISO 8601-Standard " -"entspricht,\n" -" müssen Sie einen Ausdruck und einen Typ definieren " -"um\n" -" die Zeichenfolge in ein Datum oder einen " -"Zeitstempel umzuwandeln.\n" -" Hinweis: Derzeit werden Zeitzonen nicht " -"unterstützt. Wenn Zeit im\n" -" Epochenformat gespeichert ist, Geben Sie “epoch_s\"" -" oder \"epoch_ms\" ein. \n" -" Wenn kein Muster angegeben ist, greifen wir auf die" -" Verwendung der\n" -" \n" -" über den zusätzlichen Parameter angebbaren,\n" -" optionalen Standardwerte zurück." +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "Die Spalte wurde in der Datenbank gelöscht oder umbenannt." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -msgid " to add calculated columns" -msgstr ", um berechnete Spalten hinzuzufügen" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -msgid " to add metrics" -msgstr ", um Metriken hinzuzufügen" +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." -msgstr ", um Spalten und Metriken zu bearbeiten oder hinzuzufügen." +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "Der angegebene Hostname kann nicht aufgelöst werden." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" -msgstr " um eine Spalte als Zeitspalte zu markieren" +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "Der Port ist geschlossen." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -" , um SQL Lab zu öffnen. Von dort aus können Sie die Abfrage als " -"Datensatz speichern." +"Der Host ist möglicherweise außer Betrieb und kann über den angegebenen " +"Port nicht erreicht werden." -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." -msgstr " , um Ihre Daten zu visualisieren." +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "Superset hat beim Ausführen eines Befehls einen Fehler festgestellt." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" -msgstr "!= (Ist nicht gleich)" +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "Superset hat einen unerwarteten Fehler festgestellt." -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -"%(dialect)s kann aus Sicherheitsgründen nicht als Datenquelle verwendet " -"werden." +"Der Benutzer*innenname, der beim Herstellen einer Datenbankverbindung " +"angegeben wurde, ist ungültig." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -"%(message)s\n" -"Dies kann ausgelöst werden durch: \n" -"%(issues)s" - -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" -msgstr "%(name)s.csv" +"Das Kennwort, das beim Herstellen einer Datenbankverbindung angegeben " +"wurde, ist ungültig." -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." -msgstr "%(object)s existiert nicht in der Datenbank." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Entweder der Benutzer*innenname oder das Kennwort ist falsch." -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" -msgstr "%(other)s Diagramme werden hier angezeigt" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Entweder ist die Datenbank falsch geschrieben oder existiert nicht." -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" -msgstr "%(other)s Dashboards werden hier angezeigt" +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "Das Schema wurde in der Datenbank gelöscht oder umbenannt." -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" -msgstr "Aktuelle %(other)s werden hier angezeigt" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "Benutzer*in verfügt nicht über die richtigen Berechtigungen." -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" -msgstr "%(other)s gespeicherte Abfragen werden hier angezeigt" +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." +msgstr "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "Die übermittelte Nutzlast hat das falsche Format." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" -msgstr "%(rows)d Zeilen zurückgegeben" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "Die übermittelte Nutzlast hat das falsche Schema." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -"%(subtitle)s\n" -"Dies kann ausgelöst werden durch:\n" -" %(issue)s" +"Das Ergebnis-Backend, das für asynchrone Abfragen benötigt wird, ist " +"nicht konfiguriert." -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "%(suggestion)s statt \"%(undefinedParameter)s“?" -msgstr[1] "" -"%(firstSuggestions)s oder %(lastSuggestion)s statt " -"„%(undefinedParameter)s“?" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "Die Datenbank lässt keine Datenbearbeitung zu." -#: superset/views/core.py:385 -#, python-format +#: superset/errors.py:127 msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -"%(user)s wurde die Rolle %(role)s gewährt, die den Zugriff auf " -"%(datasource)s erlaubt" - -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" -msgstr "Profil von %(user)s" +"CTAS (create table as select) kann nur mit einer Abfrage ausgeführt " +"werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie " +"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat." +" Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" -msgstr "" -"%(validator)s konnte Ihre Abfrage nicht überprüfen.\n" -"Bitte überprüfen Sie Ihre Anfrage.\n" -"Ausnahme: %(ex)s" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "CVAS-Abfrage (Create View as Select) hat mehr als eine Anweisung." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s Fehler" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "CVAS-Abfrage (Create View as Select) ist keine SELECT-Anweisung." -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, python-format -msgid "%s PASSWORD" -msgstr "%s PASSWORT" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "Die Abfrage ist zu komplex und dauert zu lange." -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" -msgstr "%s SSH-TUNNEL-KENNWORT" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "Die Datenbank führt derzeit zu viele Abfragen aus." -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" -msgstr "%s PRIVATER SCHLÜSSEL FÜR DEN SSH-TUNNEL" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "" +"Ein oder mehrere in der Abfrage angegebene Parameter haben das falsche " +"Format." -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "%s PASSWORT FÜR DEN PRIVATEN SCHLÜSSEL DES SSH-TUNNELS" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "Das Objekt existiert nicht in der angegebenen Datenbank." -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" -msgstr "%s ausgewählt" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "Die Abfrage weist einen Syntaxfehler auf." -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s ausgewählt (%s physisch, %s virtuell)" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "Das Ergebnis-Backend verfügt nicht mehr über die Daten aus der Abfrage." -#: superset-frontend/src/pages/DatasetList/index.tsx:823 -#, python-format -msgid "%s Selected (Physical)" -msgstr "%s ausgewählt (physisch)" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "Die den Ergebnissen zugeordnete Abfrage wurde gelöscht." -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "%s ausgewählt (virtuell)" +#: superset/errors.py:141 +msgid "" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." +msgstr "" +"Die im Backend gespeicherten Ergebnisse wurden in einem anderen Format " +"gespeichert und können nicht mehr deserialisiert werden." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "%s Aggregate" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "Die Port-Nummer ist ungültig." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "%s Spalte(n)" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "Remoteabfrage für einen Worker konnte nicht gestartet werden." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "%s Operator(en)" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "Die Datenbank wurde gelöscht." -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s Option" -msgstr[1] "%s Optionen" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "Benutzerdefinierte SQL-Felder dürfen keine Unterabfragen enthalten." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s Option(en)" +#: superset/errors.py:149 +#, fuzzy +msgid "The submitted payload failed validation." +msgstr "Die übermittelte Nutzlast hat das falsche Schema." -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s Zeile" -msgstr[1] "%s Zeilen" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Ungültiges Zertifikat" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "%s gespeicherte Metrik(en)" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 +#: superset/forms.py:72 #, python-format -msgid "%s updated" -msgstr "%s aktualisiert" +msgid "File size must be less than or equal to %(max_size)s bytes" +msgstr "" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/jinja_context.py:344 #, python-format -msgid "%s%s" -msgstr "%s%s" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Unsicherer Rückgabetyp für %(func)s: %(value_type)s" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/jinja_context.py:355 #, python-format -msgid "%s-%s of %s" -msgstr "%s-%s von %s" +msgid "Unsupported return value for method %(name)s" +msgstr "Nicht unterstützter Rückgabewert für %(name)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(Entfernt)" +#: superset/jinja_context.py:371 +#, python-format +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Unsicherer Vorlagenwert für Schlüssel %(key)s: %(value_type)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "(gelöschter oder ungültiger Typ)" +#: superset/jinja_context.py:382 +#, python-format +msgid "Unsupported template value for key %(key)s" +msgstr "Nicht unterstützter Vorlagenwert für Schlüssel %(key)s" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "(keine Beschreibung, klicken Sie hier, um Fehlermeldung zu sehen)" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "Nur 'SELECT'-Anweisungen sind für diese Datenbank zulässig." -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 +#: superset/sql_lab.py:302 +#, python-format msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -"(Optionaler) Standardwert für den Filter, wenn Sie die Option ‚multiple‘ " -"verwenden, können Sie eine durch Semikolons getrennte Liste von Optionen " -"verwenden." +"Die Abfrage wurde nach %(sqllab_timeout)s Sekunden abgebrochen. Sie war " +"eventuell zu komplex, oder die Datenbank ist aktuell stark belastet." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "), und sie werden in Ihrem SQL verfügbar (Beispiel:" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "Das Ergebnis-Backend ist nicht konfiguriert." -#: superset/reports/notifications/slack.py:65 -#, python-format +#: superset/sql_lab.py:440 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|In Superset erkunden>\n" -"%(table)s\n" +"CTAS (create table as select) kann nur mit einer Abfrage ausgeführt " +"werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie " +"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat." +" Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset/reports/notifications/slack.py:82 -#, python-format +#: superset/sql_lab.py:457 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Fehler: %(text)s\n" +"CVAS (create view as select) kann nur mit einer Abfrage mit einer " +"einzigen SELECT-Anweisung ausgeführt werden. Bitte stellen Sie sicher, " +"dass Ihre Anfrage nur eine SELECT-Anweisung hat. Versuchen Sie dann " +"erneut, die Abfrage auszuführen." -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#: superset/sql_lab.py:488 #, python-format -msgid "+ %s more" -msgstr "+ %s weitere" +msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgstr "Führe Anweisung %(statement_num)s von %(statement_count)s aus" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "," +#: superset/sql_lab.py:510 +#, python-format +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "Anweisung %(statement_num)s von %(statement_count)s" + +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Visualisierung fehlt eine Datenquelle" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/viz.py:237 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -"-- Hinweis: Wenn Sie Ihre Anfrage nicht speichern, bleiben diese " -"Registerkarten NICHT bestehen, wenn Sie Ihre Cookies löschen oder den " -"Browser wechseln.\n" -"\n" +"Das angewendete rollierende Fenster hat keine Daten zurückgegeben. Bitte " +"stellen Sie sicher, dass die Quellabfrage die im rollierenden Fenster " +"definierten Mindestzeiträume erfüllt." -#: superset/views/database/forms.py:164 -msgid "." -msgstr "." +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "‚Von Datum' kann nicht größer als ‚Bis-Datum' sein" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0 ausgewählt" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Zwischengespeicherter Wert nicht gefunden" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "1 Kalendertag Frequenz" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "Fehlende Spalten in Datenquelle: %(invalid_columns)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" -msgstr "1 Tag" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Zeittabellenansicht" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "Vor 1 Tag" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Wählen Sie mindestens eine Metrik aus" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 Stunde" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "" +"Wenn Sie \"Gruppieren nach\" verwenden, sind Sie auf die Verwendung einer" +" einzelnen Metrik beschränkt" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" -msgstr "stündliche Frequenz" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Kalender Heatmap" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 Minute" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Blasen-Diagramm" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "minütlich" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Bitte verwenden Sie 3 verschiedene metrische Beschriftungen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "1 Monat Ende Frequenz" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Wählen Sie eine Metrik für x, y und Größe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "1 Monat Start Frequenz" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Bullet-Diagramm" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -msgid "1 week" -msgstr "1 Woche" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Wählen Sie eine Anzeige-Metrik" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" -msgstr "vor 1 Woche" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" -msgstr "1 Woche beginnend am Montag (freq=W-MON)" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Zeitreihen - Liniendiagramm" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "1 Woche beginnend am Sonntag (freq=W-SUN)" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "" +"Bei Verwendung eines Zeitvergleichs muss ein geschlossener Zeitbereich " +"(sowohl Anfang als auch Ende) angegeben werden." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -msgid "1 year" -msgstr "1 Jahr" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Zeitreihen - Balkendiagramm" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "vor 1 Jahr" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Zeitreihen - Perioden-Pivot" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" -msgstr "1 Jahres-Frequenz (Jahresende)" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Zeitreihen - Prozentuale Veränderung" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" -msgstr "1 Jahres-Frequenz (Jahresanfang)" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Zeitreihen - Gestapelt" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10 Minuten" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histogramm" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -msgid "104 weeks" -msgstr "104 Wochen" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Mindestens eine numerische Spalte erforderlich" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "vor 104 Wochen" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Verteilung - Balkendiagramm" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15 Minuten" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -msgid "156 weeks" -msgstr "156 Wochen" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Wählen Sie mindestens ein Feld für [Serie] aus." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "vor 156 Wochen" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "jährlich zu Jahresbeginn (1AS)" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Wählen Sie genau 2 Spalten als [Quelle / Ziel]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "täglich (1D)" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "" +"Es gibt eine Schleife in Ihrem Sankey, bitte geben Sie einen Baum an. " +"Hier ist ein fehlerhafter Link: {}" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "stündlich (1H)" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Kraftbasierte Anordnung" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "monatlich (1M)" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Länderkarte" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "minütlich (1T)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Weltkarte" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -msgid "2 years" -msgstr "2 Jahre" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Parallele Koordinaten" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "vor 2 Jahren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Heatmap" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "2/98 Perzentile" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Horizontdiagramme" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "22" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -msgid "28 days" -msgstr "28 Tage" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[Longitude] und [Latitude] müssen eingestellt sein" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "vor 28 Tagen" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "" +"Muss eine Spalte [Gruppieren nach] haben, um 'count' als [Label] zu " +"verwenden" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "2D" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "Die Auswahl von [Label] muss in [Group By] vorhanden sein." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" -msgstr "3-Buchstaben-Code des Landes" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -msgid "3 years" -msgstr "3 Jahre" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "" +"Die Spalten [Longitude] und [Latitude] müssen in [Group By] vorhanden " +"sein." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" -msgstr "vor 3 Jahren" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - Mehrere Ebenen" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30 Tage" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Fehlerhafter räumlicher Schlüssel" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" -msgstr "Vor 30 Tagen" +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "Ungültiger räumlicher Punkt: %s" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" -msgstr "30 Minuten" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" +"Ungültiger räumlicher NULL-Eintrag gefunden, bitte erwägen Sie, diese " +"herauszufiltern" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 Minuten" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - Streudiagramm" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" -msgstr "30 Sekunden" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - Bildschirmraster" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 Sekunden" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - 3D-Raster" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "3-täglich (3D)" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - Pfade" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "4 Wochen (freq=4W-MON)" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - Polygon" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5 Minuten" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D HEX" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 Minuten" +#: superset/viz.py:2271 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Diagramme" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "5 Sekunden" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Deck.gl - Bogen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" -msgstr "5 Sekunden" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - GeoJSON" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -msgid "52 weeks" -msgstr "52 Wochen" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - Bogen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "vor 52 Wochen" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Ereignisablauf" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "52 Wochen, beginnend am Montag (freq=52W-MON)" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Zeitreihen - t-Differenzentest" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" -msgstr "6 Stunden" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Zeitreihe - Nightingale Rose Chart" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60 Tage" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Partitionsdiagramm" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "7 Kalendertage Frequenz" +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" +msgstr "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" -msgstr "7 Tage" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "wöchentlich (7D)" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" -msgstr "9/91 Perzentile" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90 Tage" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "< (Kleiner als)" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "<= (Kleiner oder gleich)" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -msgid "" -msgstr "" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "Ungültiger erweiterter Datentyp: %(advanced_data_type)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -msgid "" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "%(num)d Anmerkungebene gelöscht" +msgstr[1] "%(num)d Anmerkungsebenen gelöscht" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" -msgstr "" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Gesamter Texte" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" -msgstr "" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "%(num)d Anmerkung gelöscht" +msgstr[1] "%(num)d Anmerkungen gelöscht" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "== (Ist gleich)" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "%(num)d Diagramm gelöscht" +msgstr[1] "%(num)d Diagramme gelöscht" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "> (Größer als)" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" +msgstr "Zertifiziert" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" -msgstr ">= (Größer oder gleich)" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" +msgstr "Hat „Erstellt von“" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" -msgstr "Eine Große Zahl" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" +msgstr "Von mir erstellt" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "" -"Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben " -"interpretiert werden sollen" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" +msgstr "Im Besitz, Erstellt oder Favorisiert" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "" -"Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben " -"interpretiert werden sollen." +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "Insgesamt (%(aggfunc)s)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "" -"Eine durch Kommas getrennte Liste von Schemata, in die Dateien " -"hochgeladen werden dürfen." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "Zwischensumme" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "Eine Datenbank mit dem gleichen Namen existiert bereits." +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "\"confidence_interval\" muss zwischen 0 und 1 liegen (exklusiv)" -#: superset/views/database/forms.py:145 +#: superset/charts/schemas.py:728 msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" +"Das untere Perzentil muss größer als 0 und kleiner als 100 sein. Muss " +"niedriger als das obere Perzentil sein." -#: superset/views/dynamic_plugins.py:52 +#: superset/charts/schemas.py:743 msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -"Eine vollständige URL, die auf den Speicherort des erstellten Plugins " -"verweist (könnte beispielsweise auf einem CDN gehostet werden)" +"Das obere Perzentil muss größer als 0 und kleiner als 100 sein. Muss " +"größer als das untere Perzentil sein." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "Ein Handelbars-Template, das auf die Daten angewendet wird" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "\"Breite\" muss größer oder gleich 0 sein" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Ein sprechender Name" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "\"row_limit\" muss größer oder gleich 0 sein" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." -msgstr "" -"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/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "\"row_offset\" muss größer oder gleich 0 sein" -#: 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." +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" +msgstr "ORDER BY-Spalte muss angegeben werden" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -"Eine Liste der Benutzer*innen, die das Diagramm ändern können. " -"Durchsuchbar nach Name oder Benutzer*innenname." +"Für das Diagramm ist kein Abfragekontext gespeichert. Bitte speichern Sie" +" das Diagramm erneut." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "Eine Weltkarte, die Werte in verschiedenen Ländern anzeigen kann." +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "Anfrage ist falsch: %(error)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" -msgstr "" -"Eine Karte, die Kreise mit einem variablen Radius bei Breiten" -"-/Längengrad-Koordinaten darstellt" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "Anfrage ist nicht JSON" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Eine Metrik, die für die Farbe verwendet werden soll" +#: superset/charts/data/api.py:369 +msgid "Empty query result" +msgstr "Leeres Abfrageergebnis" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." -msgstr "" -"Ein Polarkoordinatendiagramm, in dem der Kreis in Sektoren mit gleichem " -"Winkel unterteilt ist und der Wert, der durch einen Sektor dargestellt " -"wird, durch seine Fläche und nicht durch seinen Radius oder Sweep-Winkel " -"veranschaulicht wird." +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Besitzende sind ungültig" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "Eine sprechende URL für Ihr Dashboard" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Einige Rollen sind nicht vorhanden" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "" -"Ein Verweis auf die [Time]-Konfiguration unter Berücksichtigung der " -"Granularität" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "Datenquellen-Typ ist ungültig" -#: superset/reports/commands/exceptions.py:186 -#, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Ein Bericht mit dem Namen \"%(name)s\" ist bereits vorhanden" +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" +msgstr "Datenquelle ist nicht vorhanden" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "Ein wiederverwendbarer Datensatz wird mit Ihrem Diagramm gespeichert." +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" +msgstr "Abfrage ist nicht vorhanden" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "Ein Screenshot des Dashboards wird an Ihre E-Mail-Adresse gesendet" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Anmerkungs-Layer-Parameter sind ungültig." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "" -"Ein Satz von Parametern, die in der Abfrage mithilfe der Jinja-" -"Vorlagensyntax verfügbar werden" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Anmerkungsebene konnte nicht erstellt werden." -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." -msgstr "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Anmerkungsebene konnte nicht aktualisiert werden." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." -msgstr "" -"Ein Zeitreihendiagramm, das visualisiert, wie sich eine verwandte Metrik " -"aus mehreren Gruppen im Laufe der Zeit ändert. Jede Gruppe wird mit einer" -" anderen Farbe visualisiert." +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Anmerkungsebene nicht gefunden." -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "Beim Ausführen der Abfrage ist ein Timeout aufgetreten." +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "Anmerkungsebene konnte nicht gelöscht werden." -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "Beim Generieren einer CSV-Datei ist ein Timeout aufgetreten." +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "Der Anmerkungs-Layer ist Anmerkungen zugeordnet." -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." -msgstr "Beim Generieren eines Datenextrakts ist ein Timeout aufgetreten." +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "Name muss eindeutig sein" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." -msgstr "Beim Erstellen eines Screenshots ist ein Timeout aufgetreten." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "‚Von Datum' kann nicht größer als ‚Bis Datum' sein" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" -msgstr "Ein gültiges Farbschema ist erforderlich" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "Kurzbeschreibung muss für diese Ebene eindeutig sein" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "ANWENDEN" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Anmerkung nicht gefunden." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "APR" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "AQE" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Anmerkungs-Parameter sind ungültig." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "AUG" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "Anmerkung konnte nicht erstellt werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" -msgstr "ABSTAND DES ACHSENTITELS" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "Anmerkung konnte nicht aktualisiert werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" -msgstr "Y-ACHSE TITEL POSITION" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Anmerkungen konnten nicht gelöscht werden." -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "Über" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Es gibt zugehörige Alarme oder Reports: %s," -#: 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" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" +"Die Zeitzeichenfolge ist mehrdeutig. Bitte geben Sie [%(human_readable)s " +"ago] oder [%(human_readable)s later] an." -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Zugriffsanforderungen" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Zeitzeichenfolge [%(human_readable)s] kann nicht analysiert werden" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "Der Zugriff auf Benutzeraktivitätsdaten ist eingeschränkt" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" +"Zeitinterval ist unklar. Bitte geben Sie [%(human_readable)s ago] oder " +"[%(human_readable)s later] an." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" -msgstr "Zugangs-Token" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "Datenbank existiert nicht" -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "Zugang wurde beantragt" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Dashboards existieren nicht" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Aktion" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "Datenquellentyp ist erforderlich, wenn datasource_id angegeben wird" -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Aktionsprotokoll" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Diagrammparameter sind ungültig." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Aktion" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Diagramm konnte nicht erstellt werden." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Aktiv" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Diagramm konnte nicht aktualisiert werden." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -msgid "Actual Values" -msgstr "Istwerte" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Diagramme konnten nicht gelöscht werden." -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Tatsächlicher Zeitbereich" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Es gibt zugehörige Alarme oder Reports" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" -msgstr "Istwert" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "Sie haben keinen Zugriff auf dieses Diagramm." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -msgid "Actual values" -msgstr "Aktuelle Werte" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "Das Ändern dieses Diagramms ist verboten" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" -msgstr "Adaptative Formatierung" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "Fehler beim Importieren des Diagramms aus unbekanntem Grund" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "Hinzufügen" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Das Ändern dieses Dashboards ist verboten" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" -msgstr "Alarm hinzufügen" +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "Diagramm %(id)s nicht gefunden" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "CSS Vorlagen hinzufügen" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" +msgstr "Fehler: %(error)s" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "CSS Vorlagen" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "CSS-Vorlage konnte nicht gelöscht werden." -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Diagramm hinzufügen" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "CSS-Vorlage nicht gefunden." -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Spalte einfügen" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Muss eindeutig sein" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Dashboard hinzufügen" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Dashboard-Parameter sind ungültig." -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Datenbank hinzufügen" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "Dashboard konnte nicht erstellt werden." -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Protokoll hinzufügen" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Das Dashboard konnte nicht aktualisiert werden." -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Metrik hinzufügen" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Dashboard konnte nicht gelöscht werden." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" -msgstr "Report hinzufügen" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Das Ändern dieses Dashboards ist verboten" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Add Rule" -msgstr "Fehlerhafte Formel." +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "Import-Dashboard aus unbekanntem Grund fehlgeschlagen" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Gespeicherte Abfrage hinzufügen" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "Sie haben keinen Zugriff auf dieses Dashboard." -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Plugin hinzufügen" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." +msgstr "Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration." -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -msgid "Add a dataset" -msgstr "Datensatz hinzufügen" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "Keine Daten in Datei" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" -msgstr "Neu Registerkarte hinzufügen" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Datenbankparameter sind ungültig." -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" -msgstr "Neue Registerkarte zum Erstellen einer SQL-Abfrage hinzufügen" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "Eine Datenbank mit dem gleichen Namen existiert bereits." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" -msgstr "Zusätzliche Parameter hinzufügen" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Dieses Feld ist erforderlich" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -msgid "Add an annotation layer" -msgstr "Anmerkungsebene hinzufügen" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "Das Feld kann nicht durch JSON decodiert werden. %(json_error)s" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "Element hinzufügen" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "" +"Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. " +"Der Schlüssel %{key}s ist ungültig." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" -msgstr "Hinzufügen und Bearbeiten von Filtern" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "Datenbank nicht gefunden." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Anmerkungen hinzufügen" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "Datenbank konnte nicht erstellt werden." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Anmerkungsebene hinzufügen" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "Datenbank konnte nicht aktualisiert werden." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -"Fügen Sie berechnete Spalten im Dialog \"Datenquelle bearbeiten\" zum " -"Datensatz hinzu" +"Verbindung fehlgeschlagen, bitte überprüfen Sie Ihre " +"Verbindungseinstellungen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "" -"Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum" -" Datensatz hinzu" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" -msgstr "Kreuzfilter hinzufügen" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "Datenbank konnte nicht gelöscht werden." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Eine unsichere Datenbankverbindung wurde beendet" + +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Datenbanktreiber konnte nicht geladen werden" + +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" +"Unerwarteter Fehler aufgetreten, bitte überprüfen Sie Ihre Protokolle auf" +" Details" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "Übermittlungsmethode hinzufügen" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "kein SQL-Validator ist konfiguriert" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." -msgstr "Zusätzliche Verbindungsinformationen hinzufügen" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "Kein Validator gefunden (für das Modul konfiguriert)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Filter hinzufügen" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "Ihre Abfrage konnte nicht überprüft werden" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" -"Fügen Sie Filterklauseln hinzu, um die Anfrage der Filter-Quelle zu " -"steuern.\n" -" allerdings nur im Zusammenhang mit der " -"Autovervollständigung, d.h. diese Bedingungen\n" -" wirken Sie sich nicht darauf aus, wie der Filter auf " -"das Dashboard angewendet wird. Das ist nützlich,\n" -" wenn Sie die Antwortzeit der Abfrage verbessern " -"möchten, indem Sie nur eine Teilmenge\n" -" der zugrunde liegenden Daten scannen oder die " -"verfügbaren Werte einschränken, die im Filter angezeigt werden." +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "Ein unerwarteter Fehler ist aufgetreten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "Filter und Trennlinien hinzufügen" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "Fehler beim Importieren der Datenbank aus unbekanntem Grund" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Element hinzufügen" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Datenbanktreiber konnte nicht geladen werden: {}" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Metrik hinzufügen" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "" +"Die Engine-Spezifikation \"%(engine)s\" unterstützt keine Konfiguration " +"über Parameter." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "Datenbank ist offline." + +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -"Fügen Sie Metriken im Dialog \"Datenquelle bearbeiten\" zum Datensatz " -"hinzu" +"%(validator)s konnte Ihre Abfrage nicht überprüfen.\n" +"Bitte überprüfen Sie Ihre Anfrage.\n" +"Ausnahme: %(ex)s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "Neuen Farbformatierer hinzufügen" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "Für {} ist kein SQL-Validator konfiguriert" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "Neuen Formatierer hinzufügen" +#: superset/commands/database/validate_sql.py:111 +#, fuzzy, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "Kein Validator mit dem Namen {} gefunden (konfiguriert für das {}-Modul)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "Benachrichtigungsmethode hinzufügen" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." +msgstr "SSH-Tunnel konnte nicht gelöscht werden." -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "Erforderliche Steuerelementwerte zur Diagramm-Vorschau hinzufügen" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." +msgstr "SSH-Tunnel nicht gefunden." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" -msgstr "" -"Fügen Sie erforderlicher Steuerelementwerte hinzu, um das Diagramms zu " -"speichern" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." +msgstr "SSH-Tunnelparameter sind ungültig." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "Tabelle hinzufügen" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." +msgstr "SSH-Tunnel konnte nicht aktualisiert werden." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" -msgstr "Name des Diagramms hinzufügen" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "Das Erstellen eines SSH-Tunnels ist aus unbekanntem Grund fehlgeschlagen" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" -msgstr "Name des Dashboards hinzufügen" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "SSH-Tunneling ist nicht aktiviert" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Zu Dashboard hinzufügen" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "Anmeldeinformationen für den SSH-Tunnel sind verpflichtend" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" -msgstr "Filter hinzufügen/bearbeiten" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "Anmeldeinformationen für den SSH-Tunnel müssen eindeutig sein" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "Hinzugefügt" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "Datenbank nicht gefunden." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 +#: superset/commands/dataset/exceptions.py:32 #, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Zu Dashboard hinzugefügt" -msgstr[1] "Zu %s Dashboards hinzugefügt" +msgid "Dataset %(name)s already exists" +msgstr "Datensatz %(name)s bereits vorhanden" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" -msgstr "Zusätzliche Parameter" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "Datenbank darf nicht geändert werden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "Eventuell sind weitere Felder erforderlich" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Eine oder mehrere Spalten sind nicht vorhanden" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "Zusätzliche Information" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Eine oder mehrere Spalten werden dupliziert" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" -msgstr "Zusätzliche Metadaten" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Eine oder mehrere Spalten sind bereits vorhanden" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." -msgstr "Zusätzliche Einrückung für Legende." +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Eine oder mehrere Metriken sind nicht vorhanden" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" -msgstr "Zusätzliche Parameter" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Eine oder mehrere Metriken werden dupliziert" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." -msgstr "Zusätzliche Einstellungen" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Eine oder mehrere Metriken sind bereits vorhanden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -"Zusätzlicher Text, der vor oder nach dem Wert hinzugefügt werden kann, z." -" B. Einheit" +"Tabelle [%(table_name)s] konnte nicht gefunden werden, überprüfen Sie " +"bitte Ihre Datenbankverbindung, Ihr Schema und Ihren Tabellennamen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" -msgstr "Additiv" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Datensatz existiert nicht" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "Anpassen, wie diese Datenbank mit SQL Lab interagiert." +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Datensatz-Parameter sind ungültig." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." -msgstr "Leistungseinstellungen dieser Datenbank anpassen." +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Datensatz konnte nicht erstellt werden." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:153 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:66 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Erweitert" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Datensatz konnte nicht aktualisiert werden." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "Erweiterte Analysen" +#: superset/commands/dataset/exceptions.py:172 +#, fuzzy +msgid "Datasets could not be deleted." +msgstr "Datensatz konnte nicht gelöscht werden." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" -msgstr "Erweiterter Datentyp" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." +msgstr "Beispiele für Datensatz konnten nicht abgerufen werden." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Erweiterte Analysen" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "Das Ändern dieses Datensatz ist verboten" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" -msgstr "Advanced Analytics Abfrage A" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "Fehler beim Importieren des Datasatzes aus unbekanntem Grund" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" -msgstr "Advanced Analytics Abfrage B" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." +msgstr "Sie haben keinen Zugriff auf dieses Dataset." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" -msgstr "Erweiterter Datentyp" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." +msgstr "Der Datensatz konnte nicht dupliziert werden." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "Erweiterte Analysen" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." +msgstr "Daten-URI ist nicht zulässig." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" -msgstr "Ästhetisch" +#: superset/commands/dataset/exceptions.py:205 +#, fuzzy +msgid "The provided table was not found in the provided database" +msgstr "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" -msgstr "Nach" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Datensatz-Spalte nicht gefunden." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" -msgstr "Aggregieren" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Fehler beim Löschen der Datensatzspalte." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" -msgstr "Aggregater Mittelwert" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "Das Ändern dieses Datensatzes ist verboten." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" -msgstr "Aggregierte Summe" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "Datensatz-Metrik nicht gefunden." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." -msgstr "" -"Aggregatfunktion, die auf die Liste der Punkte in jedem Cluster " -"angewendet wird, um die Clusterbezeichnung zu erstellen." +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "Fehler beim Löschen der Datensatzmetrik." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -"Aggregatfunktion, die beim Pivotieren und Berechnen der Summe der Zeilen " -"und Spalten angewendet werden soll" +"Formulardaten nicht im Cache gefunden, es wird auf Diagramm-Metadaten " +"zurückgesetzt." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -"Aggregiert Daten innerhalb der Grenzen von Rasterzellen und ordnet die " -"aggregierten Werte einer dynamischen Farbskala zu" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "Aggregat" +"Formulardaten nicht im Cache gefunden. Es wird auf Datensatz-Metadaten " +"zurückgesetzt." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" -msgstr "Aggregationsfunktion" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[Fehlender Datensatz]" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -msgid "Alert" -msgstr "Alarm" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Gespeicherte Abfragen konnten nicht gelöscht werden." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Alarm ausgelöst, in Kulanzzeit" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Gespeicherte Abfrage nicht gefunden." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "Alarmierungsbedingung" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "" +"Der Import der gespeicherten Abfrage ist aus einem unbekannten Grund " +"fehlgeschlagen." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "Alarmierung-Zeitplan" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Gespeicherte Abfrageparameter sind ungültig." -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "Alarm beendet Karenzzeit." +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "" +"Die Alarmabfrage hat mehr als eine Zeile zurückgegeben. %s zurückgegebene" +" Zeilen" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Alarm fehlgeschlagen" +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "" +"Die Alarmabfrage hat mehr als eine Spalte zurückgegeben. %s Spalten " +"zurückgegegeben" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "Alarm während Karenzzeit ausgelöst." +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "Beim Kürzen von Protokollen ist ein Fehler aufgetreten " -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "Alarm ist beim Ausführen einer Abfrage auf einen Fehler gestoßen." +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "Ungültige Tab-IDs: %s(tab_ids)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "Name des Alarms" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Dashboard existiert nicht" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "Alarm in Karenzzeit" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "Diagramm existiert nicht" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "Die Alarm-Abfrage hat einen nicht-numerischen Wert zurückgegeben." +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "Für Alarme ist eine Datenbank erforderlich" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "Die Alarm-Abfrage hat mehr als eine Spalte zurückgegeben." +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "Typ ist erforderlich" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "" -"Die Alarmabfrage hat mehr als eine Spalte zurückgegeben. %s Spalten " -"zurückgegegeben" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Diagramm oder Dashboard auswählen, nicht beides" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "Die Alarm-Abfrage hat mehr als eine Zeile zurückgegeben." +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" +msgstr "Sie müssen entweder ein Diagramm oder ein Dashboard auswählen" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -"Die Alarmabfrage hat mehr als eine Zeile zurückgegeben. %s zurückgegebene" -" Zeilen" +"Bitte speichern Sie zuerst Ihr Diagramm und versuchen Sie dann, einen " +"neuen E-Mail-Report zu erstellen." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Alarm wird ausgeführt" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "" +"Bitte speichern Sie zuerst Ihr Dashboard und versuchen Sie dann, einen " +"neuen E-Mail-Report zu erstellen." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Alarm ausgelöst, Benachrichtigung gesendet" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Report-Ausführungsplanparameter sind ungültig." -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "Konfigurationsfehler des Alarm-Validators." +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Report-Ausführungsplan konnte nicht erstellt werden." -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Alarme" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "Report-Ausführungsplan konnte nicht aktualisiert werden." -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "Alarme und Reporte" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Report-Ausführungsplan nicht gefunden." -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Alarme und Reports" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "Fehler beim Löschen des Report-Ausführungsplans." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" -msgstr "Ausrichten +/-" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Fehler beim Beschneiden des Report-Ausführungsplan-Logs." -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "Alle" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" +"Report-Ausführungsplan Die Ausführung des Zeitplans ist beim Generieren " +"eines Screenshots fehlgeschlagen." -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -msgid "All Entities" -msgstr "Alle Entitäten" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "Report-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei." -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "Gesamter Texte" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "" +"Report-Ausführungsplan Fehler beim Generieren der Daten für geplanten " +"Report." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Alle Diagramme" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "Unerwarteter Fehler bei der Ausführung des geplanten Reports." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "Geplanter Bericht wird noch erstellt. Derzeit keine Neuerstellung möglich." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Alle Filter" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "Erstellung des geplanter Reports hat zulässige Zeit überschritten." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 +#: superset/commands/report/exceptions.py:180 #, python-format -msgid "All filters (%(filterCount)d)" -msgstr "Alle Filter (%(filterCount)d)" +msgid "A report named \"%(name)s\" already exists" +msgstr "Ein Bericht mit dem Namen \"%(name)s\" ist bereits vorhanden" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" -msgstr "Alle Bereiche" +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Es existiert bereits ein Alarm mit dem Namen \"%(name)s\"" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "Alle Bereiche mit dieser Spalte sind von diesem Filter betroffen" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "Resource verfügt bereits über einen angefügten Bericht." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "CREATE TABLE AS zulassen" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "Die Alarm-Abfrage hat mehr als eine Zeile zurückgegeben." -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Option CREATE TABLE AS in SQL Lab zulassen" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "Konfigurationsfehler des Alarm-Validators." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "CREATE VIEW AS zulassen" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "Die Alarm-Abfrage hat mehr als eine Spalte zurückgegeben." -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Option CREATE VIEW AS in SQL Lab zulassen" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "Die Alarm-Abfrage hat einen nicht-numerischen Wert zurückgegeben." -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "CSV-Upload zulassen" +#: superset/commands/report/exceptions.py:217 +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/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "DML zulassen" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Beim Ausführen der Abfrage ist ein Timeout aufgetreten." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" -msgstr "Neuanordnung von Spalten zulassen" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Beim Erstellen eines Screenshots ist ein Timeout aufgetreten." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "Erstellen neuer Tabellen basierend auf Abfragen zulassen" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Beim Generieren einer CSV-Datei ist ein Timeout aufgetreten." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "Erstellen neuer Ansichten basierend auf Abfragen zulassen" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "Beim Generieren eines Datenextrakts ist ein Timeout aufgetreten." -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "DML (Datenmanipulationssprache) zulassen" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "Alarm während Karenzzeit ausgelöst." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" -"Endbenutzer*innen erlauben, Spaltenüberschriften per Drag & Drop neu " -"anzuordnen. Beachten Sie, dass ihre Änderungen beim nächsten Öffnen des " -"Diagramms nicht beibehalten werden." +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "Alarm beendet Karenzzeit." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" -msgstr "Datei-Uploads in die Datenbank zulassen" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Alarm in Karenzzeit" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" -"Manipulation der Datenbank mit Nicht-SELECT-Anweisungen wie UPDATE, " -"DELETE, CREATE usw. ermöglichen." +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Geplanter Report Status nicht gefunden" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Mehrfachauswahl möglich" +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" +msgstr "Systemfehler beim Berichts-Zeitplan" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" -msgstr "Knotenauswahl zulassen" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" +msgstr "Clientfehler beim Berichts-Zeitplan" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "Senden mehrerer Polygone als Filterereignis zulassen" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Geplanter Report Unerwarteter Fehler" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "Abfragen dieser Datenbank in SQL Lab zulassen" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "Das Ändern dieses Reports ist verboten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "Abfragen dieser Datenbank in SQL Lab zulassen" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Beim Kürzen von Protokollen ist ein Fehler aufgetreten " -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" -msgstr "" -"Benutzer*innen das Ausführen von Nicht-SELECT-Anweisungen (UPDATE, " -"DELETE, CREATE, ...) in SQL Lab erlauben" +#: superset/commands/security/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Report-Ausführungsplan nicht gefunden." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" -msgstr "Zulässige Domänen (durch Kommas getrennt)" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "Diagramme konnten nicht gelöscht werden." -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "Alphabetisch" +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" +msgstr "Datenbank nicht gefunden." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 +#: superset/commands/sql_lab/estimate.py:86 +#, python-format msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -"Diese Visualisierung, die auch als Box-Whisker-Plot bezeichnet wird, " -"vergleicht die Verteilungen einer Metrik über mehrere Gruppen hinweg. Der" -" Kasten in der Mitte stellt den Mittelwert, den Median und die inneren 2 " -"Quartile dar. Die sogenannten „Whisker“ um jede Box visualisieren die " -"Min-, Max-, Range- und äußeren 2 Quartile." +"Die Abfrage-Schätzung wurde nach %(sqllab_timeout)s Sekunden abgebrochen." +" Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark " +"belastet." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Geändert" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." +msgstr "" +"Die Datenbank, auf die in dieser Abfrage verwiesen wird, wurde nicht " +"gefunden. Wenden Sie sich an eine*n Administrator*in, um weitere " +"Unterstützung zu erhalten, oder versuchen Sie es erneut." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" -msgstr "Ein Fehler ist aufgetreten" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "" +"Die mit diesen Ergebnissen verknüpfte Abfrage konnte nicht gefunden " +"werden. Sie müssen die ursprüngliche Abfrage erneut ausführen." -#: superset/reports/commands/exceptions.py:188 -#, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Es existiert bereits ein Alarm mit dem Namen \"%(name)s\"" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "Zugriff auf die Abfrage nicht möglich" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 +#: superset/commands/sql_lab/results.py:75 msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -"Bei Verwendung eines Zeitvergleichs muss ein geschlossener Zeitbereich " -"(sowohl Anfang als auch Ende) angegeben werden." +"Daten konnten nicht deserialisiert werden. Möglicherweise möchten Sie die" +" Abfrage erneut ausführen." -#: superset/databases/schemas.py:289 +#: superset/commands/sql_lab/results.py:116 msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -"Beim Übergeben einzelner Parameter an eine Datenbank muss ein Modul " -"angegeben werden." - -#: 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: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 -msgid "An error has occurred" -msgstr "Ein Fehler ist aufgetreten" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Ein Fehler ist aufgetreten" +"Daten konnten nicht aus dem Ergebnis-Backend deserialisiert werden. Das " +"Speicherformat hat sich möglicherweise geändert, wodurch die alten Daten " +"ungültig wurden. Sie müssen die ursprüngliche Abfrage erneut ausführen." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Beim Speichern des Datensatz ist ein Fehler aufgetreten" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." +msgstr "Tag-Parameter sind ungültig." -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." -msgstr "Beim Zugriff auf den Wert ist ein Fehler aufgetreten." +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." +msgstr "Tag konnte nicht erstellt werden." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "" -"Beim Reduzieren des Tabellenschemas ist ein Fehler aufgetreten. Wenden " -"Sie sich an Ihre*n Administrator*in." +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "Datensatz konnte nicht aktualisiert werden." -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Beim Erstellen von %s ist ein Fehler aufgetreten: %s" +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." +msgstr "Tag konnte nicht gelöscht werden." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." +msgstr "Getaggtes Object konnte nicht gelöscht werden." +#: superset/commands/temporary_cache/exceptions.py:29 #: superset/dashboards/permalink/exceptions.py:27 #: superset/explore/permalink/exceptions.py:27 #: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 msgid "An error occurred while creating the value." msgstr "Beim Erstellen des Werts ist ein Fehler aufgetreten." +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "Beim Zugriff auf den Wert ist ein Fehler aufgetreten." + +#: superset/commands/temporary_cache/exceptions.py:37 #: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 msgid "An error occurred while deleting the value." msgstr "Beim Löschen des Werts ist ein Fehler aufgetreten." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "" -"Beim Erweitern des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie" -" sich an Ihre*n Administrator*in." +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." +msgstr "Beim Aktualisieren des Werts ist ein Fehler aufgetreten." -#: superset-frontend/src/views/CRUD/hooks.ts:106 +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." +msgstr "Sie sind nicht berechtigt, den Wert zu ändern." + +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." +msgstr "Ressource wurde nicht gefunden." + +#: superset/common/query_actions.py:227 #, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" +msgid "Invalid result type: %(result_type)s" +msgstr "Ungültiger Ergebnistyp: %(result_type)s" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/common/query_context_processor.py:150 #, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "Im Datensatz fehlende Spalten: %(invalid_columns)s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "Beim Abrufen verfügbarer CSS-Vorlagen ist ein Fehler aufgetreten" +#: superset/common/query_context_processor.py:383 +#, fuzzy +msgid "Time Grain must be specified when using Time Shift." +msgstr "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "" -"Beim Abrufen des Diagramms, das durch die folgenden Werte erstellt wurde," -" ist ein Fehler aufgetreten: %s" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." +msgstr "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "" -"Beim Abrufen von Diagrammbesitzer*innenwerten ist ein Fehler aufgetreten:" -" %s" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "Das Diagramm ist nicht vorhanden" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Beim Abrufen von Werten ist ein Fehler aufgetreten: %s" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" +msgstr "Die Diagrammdatenquelle ist nicht vorhanden" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "" -"Beim Abrufen des Dashboards, das mit folgenden Werte erstellt wurde, ist " -"ein Fehler aufgetreten: %s" +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "Das Diagramm ist nicht vorhanden" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#: superset/common/query_object.py:290 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Beim Abrufen von Dashboardbesitzer*innen-Werten ist ein Fehler " -"aufgetreten: %s" - -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" +"Doppelte Spalten-/Metrikbeschriftungen: %(labels)s. Bitte stellen Sie " +"sicher, dass alle Spalten und Metriken eine eindeutige Beschriftung " +"haben." -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten: %s" +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " +msgstr "Folgende Einträge in 'series_columns' fehlen in ‚columns‘: %(columns)s. " -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "Beim Abrufen datenbankbezogener Daten ist ein Fehler aufgetreten: %s" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "'operation'-Eigenschaft des Nachbearbeitungsobjekts undefiniert" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Beim Abrufen von Datenbankwerten ist ein Fehler aufgetreten: %s" +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Nicht unterstützter Nachbearbeitungsvorgang: %(operation)s" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "" -"Beim Abrufen von Datassatz-Datenquellenwerten ist ein Fehler aufgetreten:" -" %s" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" +msgstr "[asc]" + +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" +msgstr "[Beschreibung]" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "" -"Beim Abrufen von Angaben zum/zur Datensatz-Besitzer*in ist ein Fehler " -"aufgetreten: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Fehler im Jinja-Ausdruck im Fetch Values-Prädikat: %(msg)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "Fehler beim Abrufen von Daten des Datensatzes" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "Virtuelle Datensatzabfrage muss schreibgeschützt sein" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Beim Abrufen von Datensatzdaten ist ein Fehler aufgetreten: %s" +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Beim Abrufen von Datensätzen ist ein Fehler aufgetreten: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "Virtuelle Datensatzabfrage darf nicht leer sein" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "Fehler bei Abruf von Funktionsnamen." +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" +msgstr "Virtuelle Datensatzabfrage kann nicht aus mehreren Anweisungen bestehen" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "Beim Abrufen der Werte der Besitzer*innen ist ein Fehler aufgetreten: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Fehler im Jinja-Ausdruck in RLS-Filtern: %(msg)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Beim Abrufen des Registerkartenstatus ist ein Fehler aufgetreten" +msgid "Metric '%(metric)s' does not exist" +msgstr "Metrik '%(metric)s' existiert nicht" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "Db-Modul hat nicht alle abgefragten Spalten zurückgegeben" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" -"Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten. Wenden " -"Sie sich an Ihre*n Administrator*in." - -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "" -"Beim Abrufen des von den folgenden Werten erstellten Tags ist ein Fehler " -"aufgetreten: %s" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "" -"Beim Ausblenden der linken Leiste ist ein Fehler aufgetreten. Wenden Sie " -"sich an Ihre*n Administrator*in." - -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Beim Importieren von %s ist ein Fehler aufgetreten: %s" - -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" - -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Beim Laden des SQL ist ein Fehler aufgetreten" - -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" -msgstr "Beim Öffnen von Explore ist ein Fehler aufgetreten" - -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." -msgstr "Beim Parsen des Schlüssels ist ein Fehler aufgetreten." +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Nur 'SELECT'-Anweisungen sind zulässig" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Beim Kürzen von Protokollen ist ein Fehler aufgetreten " +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Nur einzelne Abfragen werden unterstützt" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" -"Beim Entfernen der Abfrage ist ein Fehler aufgetreten. Wenden Sie sich an" -" Ihre*n Administrator*in." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Spalten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "" -"Beim Entfernen der Registerkarte ist ein Fehler aufgetreten. Wenden Sie " -"sich an Ihre*n Administrator*in." +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Spalte anzeigen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "" -"Beim Entfernen des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie" -" sich an Ihre*n Administrator*in." +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Spalte einfügen" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Bei der Darstellung dieser Visualisierung ist ein Fehler aufgetreten: %s" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Spalte bearbeiten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 +#: superset/connectors/sqla/views.py:104 msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -"Beim Festlegen der aktiven Registerkarte ist ein Fehler aufgetreten. " -"Wenden Sie sich an Ihre*n Administrator*in." +"Unabhängig davon, ob diese Spalte als [Zeitgranularität]-Option verfügbar" +" gemacht werden soll, muss die Spalte DATETIME oder DATETIME-ähnlich sein" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 +#: superset/connectors/sqla/views.py:109 msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -"Beim Festlegen der Registerkarte Autorun ist ein Fehler aufgetreten. " -"Wenden Sie sich an Ihre*n Administrator*in." +"Ob diese Spalte im Abschnitt \"Filter\" der Erkunden-Ansicht verfügbar " +"gemacht wird." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 +#: superset/connectors/sqla/views.py:113 msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -"Beim Festlegen der Registerkartendatenbank-ID ist ein Fehler aufgetreten." -" Wenden Sie sich an Ihre*n Administrator*in." +"Der Datentyp, der von der Datenbank abgeleitet wurde. In einigen Fällen " +"kann es erforderlich sein, einen Typ für ausdrucksdefinierte Spalten " +"manuell einzugeben. In den meisten Fällen sollten Benutzer*innen dies " +"nicht ändern müssen." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "" -"Beim Festlegen des Registerkartennamens ist ein Fehler aufgetreten. Bitte" -" wenden Sie sich an Ihren Administrator." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Spalte" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." -msgstr "" -"Beim Festlegen des Registerkartenschemas ist ein Fehler aufgetreten. " -"Wenden Sie sich an Ihre*n Administrator*in." +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Ausführlicher Name" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." -msgstr "" -"Beim Festlegen der Vorlagen-Parameter ist ein Fehler aufgetreten. Wenden " -"Sie sich an Ihre*n Administrator*in." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Beschreibung" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" -msgstr "Beim Favorisieren des Diagramms ist ein Fehler aufgetreten." +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Gruppierbar" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." -msgstr "" -"Beim Speichern der letzten Abfrage-ID im Backend ist ein Fehler " -"aufgetreten. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses " -"Problem weiterhin besteht." +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filterbar" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "" -"Beim Speichern der Abfrage im Backend ist ein Fehler aufgetreten. Um zu " -"vermeiden, dass Ihre Änderungen verloren gehen, speichern Sie Ihre " -"Abfrage bitte über die Schaltfläche \"Abfrage speichern\"." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabelle" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." -msgstr "Beim Aktualisieren des Werts ist ein Fehler aufgetreten." +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Ausdruck" -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." -msgstr "Beim Erhöhen des Werts ist ein Fehler aufgetreten." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Ist zeitlich" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" -msgstr "Ein unerwarteter Fehler ist aufgetreten" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Zeit/Datum-Format" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "" -"Ein unbekannter Fehler ist aufgetreten. Wenden Sie sich an Ihre*n " -"Superset-Administrator*in" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Typ" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "Verankern mit" +#: superset/connectors/sqla/views.py:163 +#, fuzzy +msgid "Business Data Type" +msgstr "Business Datentyp" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "Winkel, an dem die Fortschrittsachse enden soll" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Ungültiges Datums-/Zeitstempelformat" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" -msgstr "Winkel, an dem die Fortschrittsachse gestartet werden soll" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Metriken" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" -msgstr "Animation" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Metrik anzeigen" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Anmerkung" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Metrik hinzufügen" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, python-format -msgid "Annotation Layer %s" -msgstr "Anmerkungs-Layer %s" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Metrik bearbeiten" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Anmerkungsebenen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Metrik" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "Konfiguration Anmerkungs-Slice" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL-Ausdruck" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "Anmerkung konnte nicht erstellt werden." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "D3-Format" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "Anmerkung konnte nicht aktualisiert werden." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "Fehler beim Löschen von Anmerkungen." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Warnmeldung" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Anmerkungsebene" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tabellen" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "Anmerkungsebene konnte nicht erstellt werden." +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Tabelle anzeigen" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "Anmerkungsebene konnte nicht gelöscht werden." +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Tabellendefinition importieren" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "Anmerkungsebene konnte nicht aktualisiert werden." +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Tabelle bearbeiten" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "Fehler beim Löschen der Anmerkungsebene." +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" +msgstr "" +"Die Liste der Diagramme, die dieser Tabelle zugeordnet sind. Durch Ändern" +" dieser Datenquelle können Sie das Verhalten der zugeordneten Diagramme " +"ändern. Beachten Sie auch, dass Diagramme auf eine Datenquelle verweisen " +"müssen, sodass dieses Formular beim Speichern fehlschlägt, wenn Diagramme" +" aus einer Datenquelle entfernt werden. Wenn Sie die Datenquelle für ein " +"Diagramm ändern möchten, überschreiben Sie das Diagramm aus der " +"\"Explore-Ansicht\"." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" -msgstr "Beschreibungsspalten für Anmerkungsebenen" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Zeitzonen-Offset (in Stunden) für diese Datenquelle" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "Der Anmerkungs-Layer ist Anmerkungen zugeordnet." +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Name der Tabelle in der Quell-Datenbank" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" -msgstr "Ende des Anmerkungsebenen-Intervalls" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +msgstr "" +"Schema, wie es nur in einigen Datenbanken wie Postgres, Redshift und DB2 " +"verwendet wird" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "Name der Anmerkungebene" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." +msgstr "" +"Diese Felder fungieren als Superset-Ansicht, was bedeutet, dass Superset " +"eine Abfrage für diese Zeichenfolge als Unterabfrage ausführt." -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Anmerkungsebene nicht gefunden." +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "" +"Prädikat, das beim Abrufen eines eindeutigen Werts angewendet wird, um " +"die Filtersteuerelementkomponente aufzufüllen. Unterstützt jinja-" +"Vorlagensyntax. Gilt nur, wenn \"Filterauswahl aktivieren\" aktiviert " +"ist." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" -msgstr "Deckkraft der Amerkungsebene" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "" +"Leitet zu diesem Endpunkt um, wenn Sie in der Tabellenliste auf die " +"Tabelle klicken" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Anmerkungs-Layer-Parameter sind ungültig." +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "" +"Ob das Dropdown-Menü des Filters im Filterabschnitt der Ansicht " +"\"Erkunden\" mit einer Liste unterschiedlicher Werte aufgefüllt werden " +"soll, die im laufenden Betrieb aus dem Back-End abgerufen werden sollen" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" -msgstr "Strichstärke Anmerkungebene" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "Ob die Tabelle durch den 'Visualize'-Fluss in SQL Lab generiert wurde" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" -msgstr "Zeitspalte der Anmerkungsebene" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" +msgstr "" +"Ein Satz von Parametern, die in der Abfrage mithilfe der Jinja-" +"Vorlagensyntax verfügbar werden" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" -msgstr "Titelspalte der Anmerkungsebene" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" +"Dauer (in Sekunden) des Caching-Timeouts für diese Tabelle. Ein Timeout " +"von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass " +"standardmäßig das Datenbanktimeout verwendet wird, wenn es nicht " +"definiert ist." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "Anmerkungsebenen-Typ" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" -msgstr "Wert der Anmerkungsebene" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Anmerkungsebenen" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Zugehörige Diagramme" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "Anmerkungsebenen werden noch geladen." +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Bearbeitet von" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Name der Anmerkung" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Datenbank" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Anmerkung nicht gefunden." +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Zuletzt geändert" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "Anmerkungs-Parameter sind ungültig." +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Filterauswahl aktivieren" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -msgid "Annotation source" -msgstr "Quelle Anmerkungen" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Schema" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" -msgstr "Typ der Anmerkungsquelle" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Standard-Endpunkt" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" -msgstr "Anmerkungsvorlage erstellt" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Offset" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" -msgstr "Anmerkungsvorlage aktualisiert" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Cache Timeout" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" -msgstr "Anmerkungen und Ebenen" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Tabellenname" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Anmerkungen und Ebenen" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Werte-Prädikate abrufen" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "Anmerkungen konnten nicht gelöscht werden." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Besitzende" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" -msgstr "Beliebig" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Haupt-Datums/Zeit-Spalte" -#: 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 "" -"Alle zusätzlichen Details, die im Zertifizierungs-Tooltip angezeigt " -"werden sollen." +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "SQL Lab Anzeige" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" -"Jede hier ausgewählte Farbpalette überschreibt die Farben, die auf die " -"einzelnen Diagramme dieses Dashboards angewendet werden" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Vorlagen-Parameter" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "" -"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können" -" hinzugefügt werden. " +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Geändert" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/connectors/sqla/views.py:435 msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können" -" hinzugefügt werden. Informationen zum Verbinden eines Datenbanktreibers " - -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "Anhängen" +"Die Tabelle wurde erstellt. Im Rahmen dieses zweiphasigen " +"Konfigurationsprozesses sollten Sie nun auf die Schaltfläche Bearbeiten " +"neben der neuen Tabelle klicken, um sie zu konfigurieren." -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#: superset/css_templates/api.py:142 #, python-format -msgid "Applied cross-filters (%d)" -msgstr "Kreuzfilter (%d) angewendet" +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Gelöschte %(num)d CSS-Vorlage" +msgstr[1] "Gelöschte %(num)d CSS-Vorlagen" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#: superset/dashboards/api.py:390 #, python-format -msgid "Applied filters (%d)" -msgstr "Angewendete Filter (%d)" +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "Das Datensatz-Schema ist ungültig, verursacht durch: %(error)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#: superset/dashboards/api.py:697 #, python-format -msgid "Applied filters: %s" -msgstr "Angewendete Filter: %s" +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "%(num)d Dashboard gelöscht" +msgstr[1] "%(num)d Dashboards gelöscht" -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." -msgstr "" -"Das angewendete rollierende Fenster hat keine Daten zurückgegeben. Bitte " -"stellen Sie sicher, dass die Quellabfrage die im rollierenden Fenster " -"definierten Mindestzeiträume erfüllt." +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Titel oder Kopfzeile" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Übernehmen" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Rolle" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -#, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "Bedingten Farbformatierung auf Metriken anwenden" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "Bedingten Farbformatierung auf Metriken anwenden" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "Bedingte Farbformatierung auf numerische Spalten anwenden" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" -msgstr "Filter anwenden" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" -msgstr "Metriken anwenden auf" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Auf alle Bereiche anwenden" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Anwenden auf bestimmte Bereiche" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "April" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" -msgstr "Bogen" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "Ungültiger Zustand." -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Sind Sie sicher, dass Sie die folgenden Werte überschreiben möchten?" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Tabellenname nicht definiert" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "Möchten Sie wirklich abbrechen?" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "Hochladen aktiviert" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "Wollen Sie wirklich löschen" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" +"Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt " +"normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 #, python-format -msgid "Are you sure you want to delete %s?" -msgstr "Sind Sie sicher, dass Sie %s löschen möchten?" +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Das Feld kann nicht durch JSON decodiert werden. %(msg)s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/databases/schemas.py:233 #, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "Möchten Sie die/das ausgewählte %s wirklich löschen?" +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" +"Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. " +"Der Schlüssel %(key)s ist ungültig." -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Möchten Sie die ausgewählten Anmerkungen wirklich löschen?" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" +"Beim Übergeben einzelner Parameter an eine Datenbank muss ein Modul " +"angegeben werden." -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "Möchten Sie die ausgewählten Diagramme wirklich löschen?" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" +"Die Engine-Spezifikation \"%(engine_spec)s\" unterstützt keine " +"Konfiguration über einzelne Parameter." -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Möchten Sie die ausgewählten Dashboards wirklich löschen?" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Gelöschter %(num)d Datensatz" +msgstr[1] "Gelöschte %(num)d Datensätze" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Möchten Sie die ausgewählten Datensätze wirklich löschen?" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Null oder Leer" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?" +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" +"Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler bei oder in der Nähe " +"von \"%(syntax_error)s\". Versuchen Sie dann erneut, die Abfrage " +"auszuführen." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "Möchten Sie die ausgewählten Abfragen wirklich löschen?" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Sekunde" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -#, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5 Sekunden" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" -msgstr "Möchten Sie die ausgewählten Tags wirklich löschen?" +#: superset/db_engine_specs/base.py:100 +msgid "30 second" +msgstr "30 Sekunden" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "Möchten Sie die ausgewählten Vorlagen wirklich löschen?" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Minute" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Möchten Sie diesen Datensatz wirklich überschreiben?" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 Minuten" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "Möchten Sie wirklich fortfahren?" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 Minuten" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "Möchten Sie die Änderungen wirklich speichern und anwenden?" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 Minuten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" -msgstr "Flächendiagramm" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" +msgstr "30 Minuten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" -msgstr "Flächendiagramm (Legacy)" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Stunde" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" -msgstr "Flächendiagramm" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6 Stunden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" -msgstr "Deckkraft des Flächendiagramms" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "Tag" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." -msgstr "" -"Flächendiagramme ähneln Liniendiagrammen, da sie Variablen mit der " -"gleichen Skala darstellen, aber Flächendiagramme stapeln die Metriken " -"übereinander." +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Woche" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" -msgstr "Pfeil" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Monat" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" -msgstr "Eines Satz von Parametern zuweisen" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Quartal" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Zugehörige Diagramme" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Jahr" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Asynchrone Ausführung" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Woche beginnt am Sonntag" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "Asynchrone Abfrageausführung" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Woche beginnt am Montag" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "August" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Woche endet am Samstag" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" -msgstr "Auto" +#: superset/db_engine_specs/base.py:116 +#, fuzzy +msgid "Week ending Sunday" +msgstr "Woche, am Samstag endend" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" -msgstr "Auto-Zoom" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Benutzer*innenname" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "Autovervollständigung" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Password" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "Auto-Vervollständigen-Filter" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Hostname oder IP-Adresse" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "Abfrageprädikat für die automatische Vervollständigung" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Datenbankport" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" -msgstr "Automatische Farbe" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Datenbank" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" -msgstr "Verfügbare Sortiermodi:" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "Zusätzliche Parameter" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -msgid "Average" -msgstr "Durchschnitt" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Verschlüsselten Verbindung zur Datenbank verwenden" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -msgid "Average value" -msgstr "Durchschnittswert" +#: superset/db_engine_specs/base.py:2004 +#, fuzzy +msgid "Use an ssh tunnel connection to the database" +msgstr "Verschlüsselten Verbindung zur Datenbank verwenden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" -msgstr "Achse" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" +"Verbindung kann nicht hergestellt werden. Stellen Sie sicher, dass die " +"folgenden Rollen für das Dienstkonto festgelegt sind: \"BigQuery Data " +"Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" und die " +"folgenden Berechtigungen festgelegt sind " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" -msgstr "Achsenbegrenzungen" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" +"Die Tabelle \"%(table)s\" existiert nicht. Zum Ausführen dieser Abfrage " +"muss eine gültige Tabelle verwendet werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -msgid "Axis Format" -msgstr "Achsenformat" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "Wir können die Spalte \"%(column)s\" in Zeile %(location)s nicht auflösen." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" -msgstr "Titel der Achse" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" +"Das Schema \"%(schema)s\" existiert nicht. Zum Ausführen dieser Abfrage " +"muss ein gültiges Schema verwendet werden." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" -msgstr "Achse aufsteigend" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "" +"Entweder der Benutzer*innenname \"%(username)s\" oder das Passwort ist " +"falsch." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" -msgstr "Achse absteigend" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Unbekannter MySQL-Server-Host \"%(hostname)s\"." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "WAHRHEITSWERT" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "" +"Der Host \"%(hostname)s\" ist möglicherweise heruntergefahren und kann " +"nicht erreicht werden." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" -msgstr "Zurück" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "" +"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt " +"werden." -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" -msgstr "Zurück zu allen" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" +"Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler in der Nähe von " +"\"%(server_error)s\". Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Backend" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "Wir können die Spalte „%(column_name)s“ nicht auflösen." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" -msgstr "Rückwärtsinterpolation" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"Entweder der Benutzer*innenname \"%(username)s\", das Kennwort oder der " +"Datenbankname \"%(database)s\" ist falsch." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." -msgstr "Fehlerhafte Formel." +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "Der Hostname \"%(hostname)s\" kann nicht aufgelöst werden." -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "Fehlerhafter räumlicher Schlüssel" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "Balken" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" +"Der Host \"%(hostname)s\" ist möglicherweise außer Betrieb und kann über " +"Port %(port)s nicht erreicht werden." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" -msgstr "Balkendiagramm" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Unbekannter MySQL-Server-Host \"%(hostname)s\"." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" -msgstr "Balkendiagramm (Legacy)" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "Der Benutzer*innenname \"%(username)s\" existiert nicht." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." msgstr "" -"Balkendiagramme werden verwendet, um Metriken als eine Reihe von Balken " -"anzuzeigen." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "Balkenwerte" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" +"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt " +"werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -msgid "Bar orientation" -msgstr "Balken-Ausrichtung" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "" + +#: superset/db_engine_specs/ocient.py:271 #, fuzzy -msgid "Base" -msgstr "Datenbank" +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt " +"normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "Hintergrundkarten-Stil" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "Auf Metrik basierend" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Der Benutzer*innenname \"%(username)s\" existiert nicht." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -"Basierend auf der Granularität, Anzahl der Zeiträume, mit denen " -"verglichen werden soll" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" -"Basierend darauf, wonach Zeitreihen im Diagramm und in der Legende " -"angeordnet werden sollten" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Basic" +"Das für den Benutzer*innennamen \"%(username)s\" angegebene Kennwort ist " +"falsch." -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "Basisangaben" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "Bitte geben Sie das Passwort erneut ein." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 #, python-format -msgid "Batch editing %d filters:" -msgstr "Stapelbearbeitung %d Filter:" +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" +"Wir können die Spalte \"%(column_name)s\" in Zeile %(location)s nicht " +"auflösen." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "Akkustand im Laufe der Zeit" +#: superset/db_engine_specs/postgres.py:289 +#, fuzzy +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" +"%(dialect)s kann aus Sicherheitsgründen nicht als Datenquelle verwendet " +"werden." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "Seien Sie vorsichtig." +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." +msgstr "" +"Die Tabelle \"%(table_name)s\" existiert nicht. Zum Ausführen dieser " +"Abfrage muss eine gültige Tabelle verwendet werden." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "Vor" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." +msgstr "" +"Das Schema \"%(schema_name)s\" existiert nicht. Zum Ausführen dieser " +"Abfrage muss ein gültiges Schema verwendet werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Große Zahl" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "" +"Es konnte keine Verbindung zum Katalog mit dem Namen \"%(catalog_name)s\"" +" hergestellt werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "Große Zahl Schriftgröße" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Unbekannter Presto-Fehler" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Große Zahl mit Trendlinie" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "" +"Wir konnten keine Verbindung zu Ihrer Datenbank mit dem Namen " +"\"%(database)s\" herstellen. Überprüfen Sie Ihren Datenbanknamen und " +"versuchen Sie es erneut." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" -msgstr "Unten" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s existiert nicht in der Datenbank." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "Unterer Abstand" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." +msgstr "Beispiele für die Datenquelle konnten nicht abgerufen werden." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" -msgstr "Unten links" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" +msgstr "Das Ändern dieser Datenquelle ist verboten" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "Unterer Rand in Pixeln, ermöglicht mehr Platz für Achsenbeschriftungen" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Startseite" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" -msgstr "Unten rechts" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" +msgstr "Datenbankverbindungen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "Von Unten nach Oben" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Daten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." -msgstr "" -"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " -"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " -"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " -"Umfang der Daten nicht einschränken." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Dashboards" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "" -"Grenzen für die Achse. Wenn sie leer gelassen werden, werden die Grenzen " -"dynamisch basierend auf den Min/Max-Werten der Daten definiert. Beachten " -"Sie, dass diese Funktion nur den Achsenbereich erweitert. Der Umfang der " -"Daten wird dadurch nicht eingeschränkt." +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Diagramme" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -#, fuzzy -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." -msgstr "" -"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " -"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " -"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " -"Umfang der Daten nicht einschränken." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Datensätze" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -#, fuzzy -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." -msgstr "" -"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " -"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " -"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " -"Umfang der Daten nicht einschränken." +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Plugins" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" -msgstr "Boxplot" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Verwalten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" -msgstr "Aufschlüsselungen" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS Vorlagen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Blasen-Diagramm" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" -msgstr "Blasenfarbe" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" -msgstr "Blasengröße" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Gespeicherte Abfragen" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Blasengröße" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Abfrageverlauf" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" -msgstr "Klassen-Schwellwerte" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "Schlagwörter" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" -msgstr "Build" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Aktionsprotokoll" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Massenauswahl" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Sicherheit" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Bullet-Diagramm" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Alarme und Reporte" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "Geschäftlich" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Anmerkungsebenen" -#: superset/connectors/sqla/views.py:164 -#, fuzzy -msgid "Business Data Type" -msgstr "Business Datentyp" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "Sicherheit auf Zeilenebene" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." -msgstr "" -"Standardmäßig lädt jeder Filter beim ersten Laden der Seite höchstens " -"1000 Auswahlmöglichkeiten. Aktivieren Sie dieses Kontrollkästchen, wenn " -"Sie über mehr als 1000 Filterwerte verfügen und die dynamische Suche " -"aktivieren möchten, die Filterwerte während der Benutzereingabe lädt (was" -" die Datenbank belasten kann)." +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." +msgstr "Beim Parsen des Schlüssels ist ein Fehler aufgetreten." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "Nach Schlüssel: Spaltennamen als Sortierschlüssel verwenden" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." +msgstr "Beim Erhöhen des Werts ist ein Fehler aufgetreten." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" -msgstr "Nach Schlüssel: Zeilennamen als Sortierschlüssel verwenden" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" -msgstr "Nach Wert: Metrikwerte als Sortierschlüssel verwenden" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "ABBRECHEN" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" +msgstr "Ungültiger Permalink-Schlüssel" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -msgid "CREATE DATASET" -msgstr "DATASET ERSTELLEN" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "" +"Datetime-Spalte wird nicht als Teil-Tabellenkonfiguration bereitgestellt," +" ist aber für diesen Diagrammtyp erforderlich" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "CREATE TABLE AS" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Leere Abfrage?" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "CREATE VIEW AS" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Unbekannte Spalte in ORDER BY verwendet: %(col)s" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "CREATE VIEW-Anweisung" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "Zeitspalte \"%(col)s\" ist im Datensatz nicht vorhanden" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" -msgstr "CRON Zeitplan" +#: superset/models/helpers.py:1821 +msgid "error_message" +msgstr "Fehlermeldung" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "CRON-Ausdruck" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "Filterwertliste darf nicht leer sein" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "Muss einen Wert für Filter mit Vergleichsoperatoren angeben" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "CSS Stile" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Ungültiger Filtervorgangstyp: %(op)s" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS Vorlagen" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Fehler im Jinja-Ausdruck in WHERE-Klausel: %(msg)s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "Auf das Diagramm angewendetes CSS" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Fehler im Jinja-Ausdruck in HAVING-Klausel: %(msg)s" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "CSS Vorlagen" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "Datenbank unterstützt keine Unterabfragen" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "CSS-Vorlage konnte nicht gelöscht werden." +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "%(num)d gespeicherte Abfrage gelöscht" +msgstr[1] "%(num)d gespeicherte Abfragen gelöscht" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "CSS Vorlagename" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "%(num)d Report-Ausführungspläne gelöscht" +msgstr[1] "%(num)d Report-Ausführungspläne gelöscht" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "CSS-Vorlage nicht gefunden." +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "Der Wert muss größer als 0 sein" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "CSS Vorlagen" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" -msgstr "CSV-Hochladen" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" +msgstr "" -#: superset/views/database/views.py:290 +#: superset/reports/notifications/email.py:88 #, python-format msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"\n" +" Error: %(text)s\n" +" " msgstr "" -"CSV-Datei \"%(csv_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank" -" \"%(db_name)s\" hochgeladen" +"\n" +"Fehler: %(text)s\n" +" " -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "CSV-zu-Datenbank-Konfiguration" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" +msgstr "EMAIL_REPORTS_CTA" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "CSV-Upload" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "CTAS & CVAS SCHEMA" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" -#: superset/sql_lab.py:432 +#: superset/reports/notifications/slack.py:76 +#, python-format msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -"CTAS (create table as select) kann nur mit einer Abfrage ausgeführt " -"werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie " -"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat." -" Versuchen Sie dann erneut, die Abfrage auszuführen." - -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "CTAS-Schema" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|In Superset erkunden>\n" +"%(table)s\n" -#: superset/sql_lab.py:449 +#: superset/reports/notifications/slack.py:93 +#, python-format msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -"CVAS (create view as select) kann nur mit einer Abfrage mit einer " -"einzigen SELECT-Anweisung ausgeführt werden. Bitte stellen Sie sicher, " -"dass Ihre Anfrage nur eine SELECT-Anweisung hat. Versuchen Sie dann " -"erneut, die Abfrage auszuführen." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Fehler: %(text)s\n" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "CVAS-Abfrage (Create View as Select) hat mehr als eine Anweisung." +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "%(num)d Diagramm gelöscht" +msgstr[1] "%(num)d Diagramme gelöscht" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "CVAS-Abfrage (Create View as Select) ist keine SELECT-Anweisung." +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" +"%(dialect)s kann aus Sicherheitsgründen nicht als Datenquelle verwendet " +"werden." -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Cache Timeout" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Cache-Timeout (Sekunden)" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Sie sind nicht berechtigt, %(resource)s zu ändern" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Cache-Timeout" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "Fehler beim Ausführen %(query)s" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" -msgstr "Gecached" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" +"Überprüfen Sie Ihre Vorlagenparameter auf Syntaxfehler und stellen Sie " +"sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen " +"übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/sqllab/query_render.py:100 #, python-format -msgid "Cached %s" -msgstr "%s zwischengespeichert" +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "Der Parameter %(parameters)s in ihrer Abfrage ist nicht definiert." +msgstr[1] "" +"Die folgenden Parameter in Ihrer Abfrage sind nicht definiert: " +"%(parameters)s." -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "Zwischengespeicherter Wert nicht gefunden" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" -msgstr "Beitrag pro Serie oder Zeile berechnen" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" +"Bitte überprüfen Sie Ihre Anfrage und vergewissern Sie sich, dass alle " +"Vorlagenparameter von doppelten Klammern umgeben sind, z. B. \"{{ ds " +"}}\". Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "Berechnete Spalte [%s] erfordert einen Ausdruck" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "Tag-Name ist ungültig (darf nicht ‚:‘ enthalten)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Berechnete Spalten" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "Datenbank nicht gefunden." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Berechnungstyp" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "Benutzerdefinierten Zeitraum konfigurieren" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Kalender Heatmap" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" +msgstr "Geplanter Task-Executor nicht gefunden" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "" -"Registerkarte der obersten Ebene kann nicht in verschachtelte " -"Registerkarten verschoben werden" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Anzahl Datensätze" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" -msgstr "Mehrere Werte können ausgewählt werden" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Keine Datensätze gefunden" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Filterliste" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Abbrechen" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Suche" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" -msgstr "Abfrage abbrechen bei ‚Window unload‘-Ereignis" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Aktualisieren" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" -msgstr "Zugriff auf die Abfrage nicht möglich" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Dashboards importieren" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Dashboards importieren" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" -msgstr "Anmeldeinformationen für den SSH-Tunnel müssen eindeutig sein" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Datei" -#: superset/views/core.py:734 -#, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." -msgstr "" -"Dashboard kann nicht importiert werden: %(db_error)s.\n" -"Stellen Sie sicher, dass Sie die Datenbank erstellen, bevor Sie das " -"Dashboard importieren." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Datei wählen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "Filter konnte nicht geladen werden" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Hochladen" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Zeitzeichenfolge [%(human_readable)s] kann nicht analysiert werden" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "Verwenden Sie die Schaltfläche Bearbeiten, um dieses Feld zu ändern" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "Kategorisch" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Verbindungstest" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" -msgstr "Kategorien-Farbe" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "Nicht unterstützter Ausdruck-Typ: %(clause)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "Kategorien, nach denen auf der x-Achse gruppiert werden soll." +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "Ungültiges Metrik-Objekt: %(metric)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" -msgstr "Kategorie" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Kann einen solchen Feiertag nicht finden: [%(holiday)s]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -msgid "Category Name" -msgstr "Kategoriename" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" +msgstr "DB-Spalte %(col_name)s hat unbekannten Typ: %(value_type)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" -msgstr "Kategorie und Prozentsatz" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" +msgstr "" +"Perzentile müssen eine Liste oder ein Tupel mit zwei numerischen Werten " +"sein, von denen der erste niedriger als der zweite Wert ist" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" -msgstr "Kategorie und Wert" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "„compare_columns“ muss die gleiche Länge wie „source_columns“ haben." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -msgid "Category name" -msgstr "Kategoriename" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "" +"\"compare_type\" muss \"Differenz\", \"Prozentsatz\" oder \"Verhältnis\" " +"sein" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "Kategorie der Zielknoten" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "" +"Die Spalte \"%(column)s\" ist nicht numerisch oder existiert nicht in den" +" Abfrageergebnissen." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "Kategorie, Wert und Prozentsatz" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "\"rename_columns\" muss die gleiche Länge wie „columns“ haben." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "Zellen Abstand" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Ungültiger kumulativer Operator: %(operator)s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "Zellenradius" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Ungültige Geohash-Zeichenfolge" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" -msgstr "Zellengröße" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Ungültiger Längen-/Breitengrad" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" -msgstr "Zellenbalken" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Ungültige geodätische Zeichenfolge" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "Zellinhalt" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "Pivot-Operation erfordert mindestens einen Index" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" -msgstr "Zellgrenze" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "Pivot-Operation muss mindestens ein Aggregat enthalten" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" -msgstr "Zentriert" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "Paket 'prophet' nicht installiert" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " -msgstr "Schwerpunkt (Längen- und Breitengrad): " +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Zeiteinteilung fehlt" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" -msgstr "Zertifizierung" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Nicht unterstützte Zeiteinteilung: %(time_grain)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" -msgstr "Details zur Zertifizierung" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "Perioden müssen eine ganze Zahl sein" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" -msgstr "Zertifiziert" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "Das Konfidenzintervall muss zwischen 0 und 1 liegen (exklusiv)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" -msgstr "Zertifiziert durch" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "DataFrame muss temporale Spalte enthalten" -#: 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Zertifiziert durch" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "DataFrame mit mindestens eine Zeitreihe enhalten" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 -#, python-format -msgid "Certified by %s" -msgstr "Zertifiziert von %s" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" +msgstr "Label existiert bereits" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." -msgstr "Reihenfolge der Spalten ändern." +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" +msgstr "Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "Reihenfolge der Zeilen ändern." +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " +msgstr "Pandas Methode zur Stichprobenwiederholung (resample)" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Bearbeitet von" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Undefiniertes Fenster für rollierende Operation" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Bearbeitet am" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "Fenster muss > 0 sein" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "Änderungen gespeichert." +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "Ungültiger rolling_type: %(type)s" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" -msgstr "" -"Durch das Ändern des Datensatzes kann das Diagramm beeinträchtigt werden," -" wenn das Diagramm auf Spalten oder Metadaten basiert, die im " -"Zieldatensatz nicht vorhanden sind" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Ungültige Optionen für %(rolling_type)s: %(options)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "Referenzierte Spalten sind in DataFrame nicht verfügbar." + +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -"Das Ändern dieser Einstellungen wirkt sich auf alle Diagramme aus, die " -"diesen Datensatz verwenden, einschließlich Diagramme, die anderen " -"Personen gehören." +"Spalte, auf die in Aggregat referenziert wird, ist nicht definiert: " +"%(column)s" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "Das Ändern dieses Dashboards ist verboten" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Operator undefiniert für Aggregator: %(name)s" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "Das Ändern dieses Diagramms ist verboten" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" +msgstr "Ungültige Numpy-Funktion: %(operator)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "Das Ändern dieses Steuerelements wird sofort wirksam" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Unerwarteter Zeitraum: %s" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "Das Ändern dieses Datensatz ist verboten" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "JSON ist ungültig" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "Das Ändern dieses Datensatzes ist verboten." +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Exportieren als YAML" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" -msgstr "Das Ändern dieser Datenquelle ist verboten" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Als YAML exportieren?" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "Das Ändern dieses Reports ist verboten" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Löschen" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" -msgstr "Zeichen, das als Dezimaltrenner zu interpretieren ist." +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Wirklich alle löschen?" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "Zeichen, das als Dezimalstelle zu interpretieren ist." +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Favoriten" -#: 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "Diagramm" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "Ist markiert" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" -msgstr "Diagramm %(id)s nicht gefunden" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "Die Datenquelle scheint gelöscht worden zu sein" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Diagramm Cache-Timeout" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "Der/die Benutzer*in scheint gelöscht worden zu sein" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, python-format -msgid "Chart Data: %s" -msgstr "Diagrammdaten: %s" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" +msgstr "Sie haben nicht die Rechte, als CSV herunterzuladen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "Diagramm-ID" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" +msgstr "Fehler: Permalink-Status nicht gefunden" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" -msgstr "Diagramm-Optionen" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" -msgstr "Diagrammausrichtung" - -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#: superset/views/core.py:423 superset/views/core.py:833 #, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Diagrammbesitzer*in: %s" -msgstr[1] "Diagrammbesitzer*innen: %s" +msgid "Error: %(msg)s" +msgstr "Fehler: %(msg)s" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -msgid "Chart Source" -msgstr "Diagrammquelle" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" +msgstr "Sie sind nicht berechtigt, dieses Diagramm zu ändern" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" -msgstr "Diagrammtitel" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" +msgstr "Sie haben nicht die Rechte zum Erstellen eines Diagramms" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 +#: superset/views/core.py:570 #, python-format -msgid "Chart [%s] has been overwritten" -msgstr "Diagramm [%s] wurde überschrieben" +msgid "Explore - %(table)s" +msgstr "Erkunden - %(table)s" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, python-format -msgid "Chart [%s] has been saved" -msgstr "Diagramm [%s] wurde gespeichert" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Erkunden" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "Diagramm [%s] wurde dem Dashboard hinzugefügt [%s]" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "Diagramm [{}] wurde gespeichert" -#: superset/views/core.py:1099 +#: superset/views/core.py:625 msgid "Chart [{}] has been overwritten" msgstr "Diagramm [{}] wurde überschrieben" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "Diagramm [{}] wurde gespeichert" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" +msgstr "Sie sind nicht berechtigt, dieses Dashboard zu ändern" -#: superset/views/core.py:1124 +#: superset/views/core.py:650 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Diagramm [{}] wurde dem Dashboard hinzugefügt [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Diagramm-Cache Timeout" +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" +msgstr "Sie haben nicht die Rechte zum Erstellen eines Dashboards" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Diagrammänderungen" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/core.py:716 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" -msgstr "" -"Diagrammkomponente, mit der Sie Ihrem Dashboard eine benutzerdefinierte " -"Filter-Oberfläche hinzufügen können. Ist sie dem Dashboard zugefügt, " -"können Benutzer*innen in einem Filterfeld bestimmte Werte oder Bereiche " -"angeben, nach denen Diagramme gefiltert werden sollen. Die Diagramme, auf" -" die jedes Filterfeld angewendet wird, können auch in der " -"Dashboardansicht optimiert werden.\n" -"\n" -"Beachten Sie, dass dieses Plugin durch die neue Filterfunktion ersetzt " -"wird, die sich in der Dashboard-Ansicht selbst befindet. Sie ist " -"einfacher zu bedienen und hat mehr Funktionen!" - -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Diagramm konnte nicht erstellt werden." - -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "Diagramm konnte nicht gelöscht werden." +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" +msgstr "" +"Fehlerhafte Anforderung. slice_id oder table_name und db_name Argumente " +"werden erwartet" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "Diagramm konnte nicht aktualisiert werden." +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Diagramm %(id)s nicht gefunden" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "Diagramm existiert nicht" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "Tabelle %(table)s wurde in der Datenbank nicht gefunden %(db)s" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "" -"Für das Diagramm ist kein Abfragekontext gespeichert. Bitte speichern Sie" -" das Diagramm erneut." +#: superset/views/core.py:836 +msgid "permalink state not found" +msgstr "Permalink-Status nicht gefunden" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" -msgstr "Diagrammhöhe" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "CSS Vorlagen anzeigen" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" -msgstr "Diagramm importiert" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "CSS Vorlagen hinzufügen" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -msgid "Chart last modified" -msgstr "Diagramm zuletzt geändert" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "CSS Vorlagen bearbeiten" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -msgid "Chart last modified by" -msgstr "Diagramm zuletzt geändert von" +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Vorlagenname" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Diagrammname" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Ein sprechender Name" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" -msgstr "Diagramm-Optionen" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "" +"Wird intern verwendet, um das Plugin zu identifizieren. Sollte auf den " +"Paketnamen aus der paket.json des Plugins gesetzt werden" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -msgid "Chart owners" -msgstr "Diagrammbesitzende" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" +msgstr "" +"Eine vollständige URL, die auf den Speicherort des erstellten Plugins " +"verweist (könnte beispielsweise auf einem CDN gehostet werden)" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Diagrammparameter sind ungültig." +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Benutzerdefinierte Plugins" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" -msgstr "Diagrammeigenschaften aktualisiert" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Benutzerdefiniertes Plugin" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -msgid "Chart title" -msgstr "Diagrammtitel" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Plugin hinzufügen" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Diagrammtyp" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Plugin bearbeiten" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "Diagrammtyp erfordert einen Datensatz" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "Der diesem Diagramm zugeordnete Datensatz ist nicht mehr vorhanden" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" -msgstr "Diagrammbreite" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Datenquellentyp konnte nicht ermittelt werden" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Diagramme" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Visualisierungsobjekt konnte nicht gefunden werden" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Diagramme konnten nicht gelöscht werden." +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Diagramm anzeigen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "Konfiguration prüfen" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Diagramm hinzufügen" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Überprüfen Sie die Sortierung aufsteigend" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Diagramm bearbeiten" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 +#: superset/views/chart/mixin.py:63 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -"Aktivieren, falls das Rose-Diagramm für die Proportionierung den " -"Segmentbereich anstelle des Segmentradius verwenden soll." - -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Sehen Sie sich dieses Diagramm im Dashboard an:" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " -msgstr "Sehen Sie sich dieses Diagramm an: " - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "Schauen Sie sich dieses Dashboard an: " +"Diese Parameter werden dynamisch generiert, wenn Sie in der Explore-" +"Ansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Dieses" +" JSON-Objekt wird hier als Referenz und für Hauptbenutzer*in verfügbar " +"gemacht, die möglicherweise bestimmte Parameter ändern möchten." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 +#: superset/views/chart/mixin.py:69 msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." msgstr "" -"Anhaken, damit Filter bei Änderung sofort angewendet werden, anstatt die " -"Schaltfläche [Übernehmen] anzuzeigen" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" -msgstr "Aktivieren, um zu erzwingen, dass Datumspartitionen die gleiche Höhe haben" +"Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Beachten " +"Sie, dass standardmäßig das Datenquellen-/Tabellentimeout verwendet wird," +" wenn es nicht definiert ist." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "Anhaken, um Dropdown-Menü für die Zeitspalte einzubinden" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Ersteller*in" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "Anhaken, um Zeiteinheiten Dropdown-Menü einzubinden" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Datenquelle" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" -msgstr "Untergeordnete Beschriftungsposition" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Zuletzt geändert" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "Die Auswahl von [Label] muss in [Group By] vorhanden sein." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parameter" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Diagramm" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Datei wählen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Name" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Diagramm oder Dashboard auswählen, nicht beides" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." -msgstr "Wählen Sie eine Datenbank..." - -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Datensatz auswählen" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Wählen Sie eine Metrik für die rechte Achse" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" -msgstr "Wählen Sie ein Zahlenformat" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" -msgstr "Wählen Sie eine Quelle" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Visualisierungstyp" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" -msgstr "Wählen Sie eine Quelle und ein Ziel" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Dashboard anzeigen" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" -msgstr "Wählen Sie ein Ziel" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Dashboard hinzufügen" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" -msgstr "Diagrammtyp auswählen" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Dashboard bearbeiten" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" -"Wählen Sie einen der verfügbaren Datensätze aus dem Bereich auf der " -"linken Seite." +"Dieses json-Objekt beschreibt die Positionierung der Widgets im " +"Dashboard. Es wird dynamisch generiert, wenn die Größe und Positionen der" +" Widgets per Drag & Drop in der Dashboard-Ansicht angepasst werden" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "Auswählen des Anmerkungsebenen-Typs" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "" +"Das CSS für einzelne Dashboards kann hier oder in der Dashboard-Ansicht " +"geändert werden, wo Änderungen sofort sichtbar sind" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" -msgstr "Format für Legendenwerte auswählen" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "So erhalten Sie eine sprechende URL für Ihr Dashboard" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" -msgstr "Wählen Sie die Position der Legende" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "" +"Dieses JSON-Objekt wird dynamisch generiert, wenn Sie in der " +"Dashboardansicht auf die Schaltfläche Speichern oder Überschreiben " +"klicken. Es wird hier als Referenz und für Power-User verfügbar gemacht, " +"die möglicherweise bestimmte Parameter ändern möchten." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" -msgstr "Wählen Sie die Quelle Ihrer Anmerkungen aus" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "" +"Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern " +"können." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 +#: superset/views/dashboard/mixin.py:65 msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -"Wählen Sie aus, ob ein Land anhand der Metrik eingefärbt oder eine Farbe " -"basierend auf einer kategorialen Farbpalette zugewiesen werden soll." +"Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn " +"Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf " +"Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die " +"generellen Berechtigungen angewendet." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "Sehnendiagramm" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "Bestimmt, ob dieses Dashboard in der Liste aller Dashboards sichtbar ist" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "Ausgewählte nicht numerische Spalte" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" -msgstr "Kreis" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Titel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "Kreis -> Pfeil" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Kopfzeile" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" -msgstr "Kreis -> Kreis" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Rollen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" -msgstr "Kreisradarform" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Veröffentlicht" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" -msgstr "Kreisförmig" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Anordnungs-JSON" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." -msgstr "" -"Klassisches Diagramm, das visualisiert, wie sich Metriken im Laufe der " -"Zeit ändern." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." -msgstr "" -"Klassische Zeilen-für-Spalten-Tabellenansicht eines Datensatzes. " -"Verwenden Sie Tabellen, um eine Ansicht der zugrunde liegenden Daten oder" -" aggregierter Metriken anzuzeigen." +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSON-Metadaten" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "Ausdruck" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Export" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Zurücksetzen" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Dashboards exportieren?" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "Alles löschen" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" +msgstr "CSV-Hochladen" -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" -msgstr "Alle Daten leeren" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "Wählen Sie eine Datei aus, die in die Datenbank hochgeladen werden soll" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" -msgstr "Formular zurücksetzen" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "Nur die folgenden Dateierweiterungen sind zulässig: %(allowed_extensions)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" -msgstr "" -"Klicken Sie auf die Schaltfläche \"+Filter hinzufügen/bearbeiten\", um " -"neue Dashboard-Filter zu erstellen" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" +msgstr "Name der Tabelle, die aus CSV-Daten erstellt werden soll" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" -msgstr "" -"Klicken Sie auf die Schaltfläche \"Diagramm erstellen\" in der " -"Systemsteuerung auf der linken Seite, um eine Vorschau einer " -"Visualisierung anzuzeigen oder" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "Der Tabellenname darf kein Schema enthalten" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "Klicken Sie auf das Schloss, um Änderungen vorzunehmen." +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "Wählen Sie eine Datenbank aus, in die die Datei hochgeladen werden soll" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "Klicken Sie auf die Sperre, um weitere Änderungen zu verhindern." +#: superset/views/database/forms.py:145 +#, fuzzy +msgid "Column Data Types" +msgstr "Erweiterter Datentyp" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 +#: superset/views/database/forms.py:146 msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -"Klicken Sie auf diesen Link, um zu einem alternativen Formular zu " -"wechseln, mit dem Sie die SQLAlchemy-URL für diese Datenbank manuell " -"eingeben können." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "" -"Klicken Sie auf diesen Link, um zu einem alternativen Formular zu " -"wechseln, das nur die zum Verbinden dieser Datenbank erforderlichen " -"Felder verfügbar macht." +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "Wählen Sie ein Schema aus, wenn die Datenbank dies unterstützt" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "Klicken, um die Sortierung abzubrechen" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Trennzeichen" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Klicken um zu bearbeiten" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" +msgstr "Geben Sie ein Trennzeichen für diese Daten ein" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." -msgstr "Klicken Sie hier, um %s zu bearbeiten." +#: superset/views/database/forms.py:164 +msgid "," +msgstr "," -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." -msgstr "Klicken Sie hier, um das Diagramm zu bearbeiten." +#: superset/views/database/forms.py:165 +msgid "." +msgstr "." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "Klicke um zu Bezeichnung zu bearbeiten" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "Andere" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Klicken Sie hier, um als Favorit aus-/abzuwählen" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" +msgstr "Wenn Tabelle bereits vorhanden ist" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Klicken Sie hier, um die Aktualisierung zu erzwingen" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" +msgstr "Was soll passieren, wenn die Tabelle bereits vorhanden ist?" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Klicken zum Anzeigen der Unterschiede" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Fehlschlagen" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Click to sort ascending" -msgstr "Klicken Sie hier, um aufsteigend zu sortieren" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Ersetzen" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" -msgstr "Klicken Sie hier, um absteigend zu sortieren" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Anhängen" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "Schließen" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Führende Leerzeichen überspringen" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Schließen Sie alle anderen Registerkarten" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" +msgstr "Leerzeichen nach Trennzeichen überspringen." -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Registerkarte schließen" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Leerzeilen überspringen" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" -msgstr "Cluster-Beschriftung-Aggregator" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "" +"Überspringen Sie Leerzeilen, anstatt sie als Nicht-Zahl-Werte zu " +"interpretieren" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "Clustering-Radius" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" +msgstr "Spalten, die als Datumsangaben interpretiert werden sollen" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Code" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" +msgstr "" +"Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben " +"interpretiert werden sollen" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Alle einklappen" +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" -msgstr "Datenbereich ausblenden" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" -msgstr "Zeile zusammenklappen" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Dezimalzeichen" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" -msgstr "Inhalt der Registerkarte ausblenden" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" +msgstr "Zeichen, das als Dezimaltrenner zu interpretieren ist." -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" -msgstr "Tabellenvorschau komprimieren" +#: superset/views/database/forms.py:212 +msgid "Null Values" +msgstr "NULL Werte" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Farbe" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"Json-Liste der Werte, die als null behandelt werden sollen. Beispiele: " +"[\"\"] für leere Zeichenketten, [\"Keine\", \"N/A\"], [\"nan\", " +"\"null\"]. Warnung: Hive-Datenbank unterstützt nur einen einzigen Wert" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" -msgstr "Farbe +/-" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Index Spalte" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" -msgstr "Farbmetrik" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" +"Spalte, die als Zeilenbeschriftungen des Dataframe verwendet werden soll." +" Leer lassen, wenn keine Indexspalte existiert." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "Farbschema" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Dataframe-Index" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" -msgstr "Farbschritte" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "Dataframe-Index als Spalte schreiben" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" -msgstr "Farbgrenzen" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Spaltenbezeichnung(en)" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" -msgstr "Einfärben nach" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" +"Spaltenbeschriftung für Indexspalten. Wenn „None“ angegeben und " +"„Dataframe Index“ aktiviert ist, werden Indexnamen verwendet." -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Metrik auswählen" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" +msgstr "Zu lesende Spalten" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" -msgstr "Farbe des Zielortes" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" +msgstr "Json-Liste der Spaltennamen, die gelesen werden sollen" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Farbschema" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" +msgstr "Doppelte Spalten überschreiben" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/forms.py:249 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -"Die Farbe wird basierend auf dem normalisierten Wert (0% to 100%) einer " -"bestimmten Zelle im Vergleich zu den anderen Zellen im ausgewählten " -"Bereich schattiert: " - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Farben" +"Wenn doppelte Spalten nicht überschrieben werden, werden sie als \"X.1, " +"X.2 ... X.x\" dargestellt" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Spalte" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Kopfzeile" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset/views/database/forms.py:256 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -"Die Spalte \"%(column)s\" ist nicht numerisch oder existiert nicht in den" -" Abfrageergebnissen." +"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen" +" (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile " +"vorhanden ist." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" -msgstr "Spaltenkonfiguration" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Zu lesende Zeilen" -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "Erweiterter Datentyp" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" +msgstr "Anzahl der aus Datei zu lesenden Zeilen." -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" -msgstr "Spaltenformatierung" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Zeilen überspringen" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Spaltenbezeichnung(en)" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." -msgstr "Spalte mit ISO 3166-2-Codes der Region/Provinz/Kreis in Ihrer Tabelle." +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Name der Tabelle, die aus Excel-Daten erstellt werden soll." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "Spalte mit Breitengraddaten" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Excel-Datei" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "Spalte mit Längengraddaten" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "" +"Wählen Sie eine Excel-Datei aus, die in eine Datenbank hochgeladen werden" +" soll." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "Spaltenname" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Blattname" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "Tooltip zur Spaltenüberschrift" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "" +"Zeichenfolgen, die für Blattnamen verwendet werden (Standard ist das " +"erste Blatt)." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "Spalte ist erforderlich" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Geben Sie ein Schema an (wenn die Datenbankvariante dies unterstützt)." + +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "Tabelle existiert" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -"Spaltenbezeichnung für Indexspalte(n). Wenn None angegeben ist und " -"Dataframe Index den Wert True hat, werden Indexnamen verwendet." +"Wenn eine Tabelle vorhanden ist, soll folgendes passieren: Fehlschlagen " +"(Nichts tun), Ersetzen (Tabelle löschen und neu erstellen) oder Anhängen " +"(Daten einfügen)." -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:343 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -"Spaltenbeschriftung für Indexspalten. Wenn „None“ angegeben und " -"„Dataframe Index“ aktiviert ist, werden Indexnamen verwendet." - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -msgid "Column name" -msgstr "Spaltenname" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" -msgstr "Spaltenname [%s] wird dupliziert" - -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "" -"Spalte, auf die in Aggregat referenziert wird, ist nicht definiert: " -"%(column)s" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" -msgstr "Spaltenauswahl" - -#: superset/views/database/forms.py:221 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" -msgstr "" -"Spalte, die als Zeilenbeschriftungen des Dataframe verwendet werden soll." -" Leer lassen, wenn keine Indexspalte existiert." +"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen" +" (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile " +"vorhanden ist." -#: superset/views/database/forms.py:352 +#: superset/views/database/forms.py:353 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." @@ -4197,12356 +3889,12668 @@ msgstr "" "Spalte, die als Zeilenbeschriftungen des Datenrahmens verwendet werden " "soll. Leer lassen, wenn keine Indexspalte vorhanden." -#: superset/views/database/forms.py:424 -msgid "Columnar File" -msgstr "Tabellen-Datei" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." -#: superset/views/database/views.py:568 -#, python-format -msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Anzahl der aus Datei zu lesenden Zeilen." + +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Datumsangaben auswerten" + +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -"Spaltendatei \"%(columnar_filename)s\" in Tabelle \"%(table_name)s\" in " -"Datenbank \"%(db_name)s\" hochgeladen" +"Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben " +"interpretiert werden sollen." -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" -msgstr "Spalten-zu-Datenbank-Konfiguration" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Zeichen, das als Dezimalstelle zu interpretieren ist." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Spalten" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Schreiben Sie den Dataframe-Index als Spalte." -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" -msgstr "Spalten, die als Datumsangaben interpretiert werden sollen" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." +msgstr "" +"Spaltenbezeichnung für Indexspalte(n). Wenn None angegeben ist und " +"Dataframe Index den Wert True hat, werden Indexnamen verwendet." -#: superset/views/database/forms.py:241 -msgid "Columns To Read" -msgstr "Zu lesende Spalten" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "NULL Werte" -#: superset/common/query_context_processor.py:132 -#, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "Im Datensatz fehlende Spalten: %(invalid_columns)s" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" +"Json-Liste der Werte, die als NULL behandelt werden sollen. Beispiele: " +"[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Die Hive-" +"Datenbank unterstützt nur einen einzelnen Wert. Verwenden Sie [\"\"] für " +"die leere Zeichenfolge." -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "Fehlende Spalten in Datenquelle: %(invalid_columns)s" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "Name der Tabelle, die aus tabellarischen Daten erstellt werden soll." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" -msgstr "Zwischensummenposition der Spalten" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "Tabellen-Datei" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "Spalten, über die Verteilung berechnet werden soll." +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "" +"Wählen Sie eine tabellarische Datei aus, die in eine Datenbank " +"hochgeladen werden soll." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" -msgstr "Anzuzeigende Spalten" +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "Spalten verwenden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" -msgstr "Spalten, nach denen gruppiert wird" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." +msgstr "" +"JSON-Liste der Spaltennamen, die gelesen werden sollen. Wenn nicht " +"‚Keine‘, werden nur diese Spalten aus der Datei gelesen." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "Spalten, nach denen in den Spalten gruppiert werden soll" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Datenbanken" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "Spalten, nach denen in den Zeilen gruppiert werden soll" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Datenbank anzeigen" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" -msgstr "Anzuzeigende Spalten" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Datenbank hinzufügen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" -msgstr "Metriken kombinieren" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Datenbank bearbeiten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." -msgstr "" -"Kommagetrennte Farbwerte für die Intervalle, z.B. 1,2,4. Ganzzahlen " -"bezeichnen Farben aus dem gewählten Farbschema und sind 1-indiziert. Die " -"Anzahl muss mit der der Intervallgrenzen übereinstimmen." +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Diese Datenbank in SQL Lab verfügbar machen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -"Durch Kommas getrennte Intervallgrenzen, z.B. 2,4,5 für die Intervalle " -"0-2, 2-4 und 4-5. Die letzte Zahl sollte mit dem für MAX angegebenen Wert" -" übereinstimmen." +"Betreiben Sie die Datenbank im asynchronen Modus, was bedeutet, dass die " +"Abfragen auf Remote-Workern und nicht auf dem Webserver selbst ausgeführt" +" werden. Dies setzt voraus, dass Sie sowohl über ein Celery-Worker-Setup " +"als auch über ein Ergebnis-Backend verfügen. Weitere Informationen finden" +" Sie in den Installationsdokumenten." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" -msgstr "Komparator-Option" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Option CREATE TABLE AS in SQL Lab zulassen" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Option CREATE VIEW AS in SQL Lab zulassen" + +#: superset/views/database/mixins.py:114 msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -"Vergleichen Sie schnell mehrere Zeitreihendiagramme (als Sparklines) und " -"verwandte Metriken." +"Benutzer*innen das Ausführen von Nicht-SELECT-Anweisungen (UPDATE, " +"DELETE, CREATE, ...) in SQL Lab erlauben" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -"Vergleichen Sie dieselbe zusammengefasste Metrik über mehrere Gruppen " -"hinweg." +"Wenn Sie die Option CREATE TABLE AS in SQL Lab zulassen, erzwingt diese " +"Option, dass die Tabelle in diesem Schema erstellt wird" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +#: superset/views/database/mixins.py:165 msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -"Vergleicht, wie sich eine Metrik im Laufe der Zeit zwischen verschiedenen" -" Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung" -" im Laufe der Zeit werden als Balkenlängen und -farben visualisiert." +"Für Presto werden alle Abfragen in SQL Lab als aktuell angemeldete " +"Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen " +"muss.
Für Hive und falls hive.server2.enable.doAs aktiviert sind, " +"werden die Abfragen als Dienstkonto ausgeführt, die Identität der aktuell" +" angemeldeten Benutzer*in erfolgt jedoch über die hive.server2.proxy" +".user-Eigenschaft." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 +#: superset/views/database/mixins.py:172 msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -"Vergleicht Metriken aus verschiedenen Kategorien mithilfe von Balken. " -"Balkenlängen werden verwendet, um die Größe jedes Werts anzugeben, und " -"Farbe wird verwendet, um Gruppen zu unterscheiden." +"Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. " +"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass" +" standardmäßig das globale Timeout verwendet wird, wenn es nicht " +"definiert ist." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -"Vergleicht die Zeitspanne, die verschiedene Aktivitäten in einer " -"freigegebenen Zeitachsenansicht benötigen." +"Falls ausgewählt, legen Sie bitte die Schemata fest, die für den CSV-" +"Upload in Extra zulässig sind." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" -msgstr "Vergleich" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Verfügbarmachen in SQL Lab" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" -msgstr "Verzögerung des Vergleichszeitraums" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" -msgstr "Vergleichssuffix" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "CREATE TABLE AS zulassen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." -msgstr "" -"Stellen Sie mehrere Ebenen zusammen, um komplexe visuelle Elemente zu " -"bilden." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "CREATE VIEW AS zulassen" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Berechnen des Beitrags zur Gesamtsumme" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "DML zulassen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" -msgstr "Bedingung" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "CTAS-Schema" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Bedingte Formatierung" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "SQLAlchemy-URI" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" -msgstr "Bedingte Formatierung" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Diagramm Cache-Timeout" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" -msgstr "Konfidenzintervall" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Sicherheit Extra" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "Das Konfidenzintervall muss zwischen 0 und 1 liegen (exklusiv)" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Root-Zertifikat" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Konfiguration" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Asynchrone Ausführung" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "Erweiterten Zeitbereich konfigurieren " +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Identität von angemeldeter Benutzer*in annehmen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Zeitraum konfigurieren: Letzte..." +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "CSV-Upload zulassen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Zeitraum konfigurieren: Vorhergehende…" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Backend" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Benutzerdefinierten Zeitraum konfigurieren" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Zusätzliches Feld kann nicht durch JSON decodiert werden. %(msg)s" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Filterbereiche konfigurieren" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

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

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

" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "Konfigurieren Sie die Grundeinstellungen der Anmerkungsebene." +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "CSV-zu-Datenbank-Konfiguration" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -"Konfigurieren Sie dieses Dashboard, um es in eine externe Webanwendung " -"einzubetten." - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "Konfigurieren Sie hier, wie Ihr Overlay angezeigt wird." +"Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für CSV-" +"Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-" +"Administrator*in." -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" -msgstr "Überschreiben bestätigen" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"CSV-Datei \"%(filename)s\" kann nicht in tabelle \"%(table_name)s\" in " +"der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " +"%(error_msg)s" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "Speichern bestätigen" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" +msgstr "" +"CSV-Datei \"%(csv_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank" +" \"%(db_name)s\" hochgeladen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "Verbinden" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Excel-zu-Datenbank-Konfiguration" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" -msgstr "Google Sheet verbinden" +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." +msgstr "" +"Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für Excel-" +"Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-" +"Administrator*in." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "Google Tabellen als Tabellen mit dieser Datenbank verbinden" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Excel-Datei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\"" +" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " +"%(error_msg)s" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" -msgstr "Eine Datenbank verbinden" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Excel-Datei \"%(excel_filename)s\" in Tabelle \"%(table_name)s\" in " +"Datenbank \"%(db_name)s\" hochgeladen" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" -msgstr "Datenbank verbinden" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "Spalten-zu-Datenbank-Konfiguration" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -"Verbinden Sie diese Datenbank stattdessen mithilfe des dynamischen " -"Formulars" +"Unterschiedliche Dateierweiterungen sind für spaltenförmige Uploads nicht" +" zulässig. Bitte stellen Sie sicher, dass alle Dateien die gleiche " +"Erweiterung haben." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -"Verbinden Sie diese Datenbank stattdessen mit einer SQLAlchemy-URI-" -"Zeichenfolge" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Verbindung" +"Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für " +"spaltenförmige Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n " +"Superset-Administrator*in." -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -"Verbindung fehlgeschlagen, bitte überprüfen Sie Ihre " -"Verbindungseinstellungen" +"Die Spaltendatei \"%(filename)s\" kann nicht in die Tabelle " +"\"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. " +"Fehlermeldung: %(error_msg)s" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" -msgstr "Verbindung möglich!" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" +msgstr "" +"Spaltendatei \"%(columnar_filename)s\" in Tabelle \"%(table_name)s\" in " +"Datenbank \"%(db_name)s\" hochgeladen" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" -msgstr "Weiter" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "Datenfeld fehlt in Abfrage." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" -msgstr "Kontinuierlich" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "Doppelte Spaltenname(n): %(columns)s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Beitrag" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Protokolle" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" -msgstr "Beitragsmodus" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Protokoll anzeigen" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" -msgstr "Steuerung" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Protokoll hinzufügen" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "Feld " +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Protokoll bearbeiten" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " -msgstr "Steuerelemente beschriftet " +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Nutzer*in" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" -msgstr "Koordinaten" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "In Zwischenablage kopiert!" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" -msgstr "Kopieren" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "SELECT-Anweisung in die Zwischenablage kopieren" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "Kopieren und Einfügen von JSON-Anmeldeinformationen" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "" -"Kopieren Sie die gesamte JSON-Datei des Dienstkontos, und fügen Sie sie " -"hier ein" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "Link kopieren" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Aktion" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "Meldung kopieren" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Kopie von %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Partitionsabfrage in Zwischenablage kopieren" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" +msgstr "Unbenannte Abfrage" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" -msgstr "Permalink in Zwischenablage kopieren" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "Zeitraum" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Abfrage-URL kopieren" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" +msgstr "Zeitspalte" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Abfragelink in die Zwischenablage kopieren" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "Zeitgranularität" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." -msgstr "" -"Kopieren Sie den Kontonamen der Datenbank, mit der Sie eine Verbindung " -"herstellen möchten." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "Zeitgranularität" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "Kopieren Sie den Namen des HTTP-Pfads Ihres Clusters." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Zeit" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -"Kopieren Sie den Namen der Datenbank, mit der Sie eine Verbindung " -"herstellen möchten." - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" -msgstr "In Zwischenablage kopieren" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "In die Zwischenablage kopieren" +"Ein Verweis auf die [Time]-Konfiguration unter Berücksichtigung der " +"Granularität" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" -msgstr "Korrelation" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "Aggregieren" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Kostenschätzung" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "Rohdatensätze" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "" -"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt " -"werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +msgid "Category name" +msgstr "Kategoriename" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "Datenquellentyp konnte nicht ermittelt werden" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +msgid "Total value" +msgstr "Gesamtwert" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Nicht alle gespeicherten Diagramme konnten abgerufen werden" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" +msgstr "Minimalwert" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "Visualisierungsobjekt konnte nicht gefunden werden" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" +msgstr "Maximalwert" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Datenbanktreiber konnte nicht geladen werden" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" +msgstr "Durchschnittswert" -#: superset/views/core.py:1454 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 #, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "Datenbanktreiber konnte nicht geladen werden: %(driver_name)s" +msgid "Certified by %s" +msgstr "Zertifiziert von %s" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Datenbanktreiber konnte nicht geladen werden: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "Beschreibung" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "Riegel" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" -msgstr "Anzahl" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Das Ändern dieses Steuerelements wird sofort wirksam" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" -msgstr "Eindeutige Werte zählen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "Info-Tooltip anzeigen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" -msgstr "Als Anteil der Spalten zählen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "SQL-Ausdruck" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" -msgstr "Als Anteil der Zeilen zählen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +#, fuzzy +msgid "Column datatype" +msgstr "Spaltenname" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" -msgstr "Als Anteil der Gesamtsumme zählen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" +msgstr "Spaltenname" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" -msgstr "Land" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Label" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" -msgstr "Länderfarbschema" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" +msgstr "Name der Metrik" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" -msgstr "Länderspalte" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" +msgstr "Symbol für unbekannten Typ" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" -msgstr "Feldtyp \"Land\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "Symbol für Funktionstyp" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Länderkarte" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "Symbol für Zeichenfolgentyp" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "Erstellen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "Symbol für numerischen Typ" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" -msgstr "Diagramm erstellen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "Symbol für booleschen Typ" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -msgid "Create a dataset" -msgstr "Datensatz erstellen" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "Symbol für Zeittyp" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Erweiterte Analysen" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -"Erstellen Sie einen Datensatz, um mit der Visualisierung Ihrer Daten als " -"Diagramm zu beginnen, oder wechseln Sie zu\n" -" SQL Lab, um Ihre Daten abzufragen." - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Neues Diagramm erstellen" +"Dieser Abschnitt enthält Optionen, die eine erweiterte analytische " +"Nachbearbeitung von Abfrageergebnissen ermöglichen" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" -msgstr "Diagramm erstellen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Rollierendes Fenster" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" -msgstr "Diagramm mit Datensatz erstellen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Rollierende Funktion" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -msgid "Create dataset" -msgstr "Datensatz erstellen" - -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" -msgstr "Datensatz erstellen und Diagramm erstellen" - -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Neues Diagramm erstellen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Keine" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "Erstelle neue Filtergruppe" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" +msgstr "" +"Definiert eine Funktion ‚Rollierendes Fenster‘, die angewendet werden " +"soll. Arbeitet zusammen mit dem Textfeld [Punkte]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "Schema erstellen oder auswählen…" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Zeiträume" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Erstellt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "" +"Definiert die Größe der Funktion ‚Rollierendes Fenster‘ relativ zur " +"ausgewählten Zeitgranularität" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Erstellt am" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Mindestzeiträume" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Erstellt von" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" +msgstr "" +"Die Mindestanzahl von rollierender Perioden, die erforderlich sind, um " +"einen Wert anzuzeigen. Wenn Sie beispielsweise eine kumulative Summe an 7" +" Tagen durchführen, möchten Sie möglicherweise, dass Ihr " +"\"Mindestzeitraum\" 7 beträgt, so dass alle angezeigten Datenpunkte die " +"Summe von 7 Perioden sind. Dies wird den \"Hochlauf\" verbergen, der in " +"den ersten 7 Perioden stattfindet" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" -msgstr "Von mir erstellt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Zeitvergleich" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Erstellter Inhalt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Zeitverschiebung" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Erstellt am" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "Vor 1 Tag" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "Das Erstellen eines SSH-Tunnels ist aus unbekanntem Grund fehlgeschlagen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "vor 1 Woche" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Erstelle eine Datenquelle und eine neue Registerkarte" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "vor 28 Tagen" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Ersteller*in" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" +msgstr "Vor 30 Tagen" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -msgid "Crimson" -msgstr "Purpur" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "vor 52 Wochen" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." -msgstr "" -"Der Kreuzfilter wird auf alle Diagramme angewendet, die diesenn Datensatz" -" verwenden." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "vor 1 Jahr" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "vor 104 Wochen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "vor 2 Jahren" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "Kreuzfilterung aktivieren" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "vor 156 Wochen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -msgid "Cross-filters" -msgstr "Kreuzfilter" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "vor 3 Jahren" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" -msgstr "Kumuliert" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum." +" Erwartet relative Zeitintervalle in natürlicher Sprache (Beispiel: 24 " +"Stunden, 7 Tage, 52 Wochen, 365 Tage). Freitext wird unterstützt." -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" -msgstr "Derzeit dargestellt: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Berechnungstyp" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" -msgstr "Angepasst" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" +msgstr "Aktuelle Werte" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Benutzerdefiniertes Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" +msgstr "Differenz" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Benutzerdefinierte Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" +msgstr "Prozentuale Veränderung" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "Benutzerdefinierte SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" +msgstr "Verhältnis" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -"Benutzerdefinierte SQL-Ad-hoc-Metriken sind für diesen Datasatz nicht " -"aktiviert" +"So zeigen Sie Zeitverschiebungen an: als einzelne Linien; als absolute " +"Differenz zwischen der Hauptzeitreihe und jeder Zeitverschiebung; als " +"prozentuale Veränderung; oder wenn sich das Verhältnis zwischen Reihe und" +" Zeit verschiebt." -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "Benutzerdefinierte SQL-Felder dürfen keine Unterabfragen enthalten." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "Resample" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "Benutzerdefiniertes Zeitfilter-Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Regel" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "Anpassen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "minütlich" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" -msgstr "Anpassen von Metriken" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" +msgstr "stündliche Frequenz" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" -msgstr "Spalten anpassen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "1 Kalendertag Frequenz" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" -msgstr "Zyklische Abhängigkeit erkannt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "7 Kalendertage Frequenz" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "D3-Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "1 Monat Start Frequenz" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "D3 Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "1 Monat Ende Frequenz" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "D3-Formatsyntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" +msgstr "1 Jahres-Frequenz (Jahresanfang)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" -msgstr "" -"D3-Zahlenformat für Zahlen zwischen -1,0 und 1,0. Nützlich, wenn Sie " -"verschiedene Anzahlen signifikanter Ziffern für kleine und große Zahlen " -"haben möchten" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" +msgstr "1 Jahres-Frequenz (Jahresende)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" -msgstr "D3-Zeitformat für datetime-Spalten" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "D3-Zeitformatsyntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Pandas Resample-Regel" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -msgid "DATETIME" -msgstr "DATUM/UHRZEIT" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "Füll-Methode" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" -msgstr "DB-Spalte %(col_name)s hat unbekannten Typ: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" +msgstr "Fehlwert-Imputation" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "DEZ" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" +msgstr "Fehlende-Werte-Ersetzung" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "LÖSCHEN" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "Lineare Interpolation" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" +msgstr "Vorwärtsinterpolation" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "Tägliche Saisonalität" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" +msgstr "Rückwärtsinterpolation" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" -msgstr "Dunkel" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" +msgstr "Medianwerte" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" -msgstr "Dunkeltürkis" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" +msgstr "Mittelwerte" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" -msgstr "Dunkelmodus" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" +msgstr "Summenwerte" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Pandas Resample-Methode" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "Dashboard [%s] wurde gerade erstellt und Diagramm [%s] hinzugefügt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "Anmerkungen und Ebenen" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" +msgstr "Links" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "Dashboard konnte nicht erstellt werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" +msgstr "Oben" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "Dashboard konnte nicht gelöscht werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "Diagrammtitel" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "Das Dashboard konnte nicht aktualisiert werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "X-Achse" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "Dashboard existiert nicht" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "Titel der X-Achse" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -msgid "Dashboard imported" -msgstr "Dashboard importiert" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "X-ACHSE TITEL UNTERER RAND" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Dashboard-Parameter sind ungültig." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Y-Achse" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Dashboardeigenschaften bearbeiten" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "Titel der Y-Achse" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" -msgstr "Dashboard-Eigenschaften aktualisiert" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" -msgstr "Dashboard Schema" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +#, fuzzy +msgid "Y Axis Title Position" +msgstr "Zeilen Zwischensummenposition" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." -msgstr "" -"Dashboard-Zeitbereichsfilter gelten für zeitliche Spalten, die im\n" -" Filterabschnitt jedes Diagramms festgelegt wurden. Fügen Sie " -"Zeitspalten zu\n" -" Diagrammfiltern hinzu, damit sich dieser Dashboardfilter auf " -"diese Diagramme auswirkt." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Abfrage" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -msgid "Dashboard title" -msgstr "Dashboard Titel" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "Prädiktive Analysen" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -msgid "Dashboard usage" -msgstr "Dashboard-Nutzung" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "Prognose aktivieren" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "Aktivieren von Prognosen" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -msgid "Dashboards added to" -msgstr "Dashboards hinzugefügt zu" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "Prognosezeiträume" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "Dashboards konnten nicht gelöscht werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "Wie viele Perioden in der Zukunft sollen prognostiziert werden" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Dashboards existieren nicht" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "Konfidenzintervall" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -msgid "Dashed" -msgstr "Gestrichelt" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "Breite des Konfidenzintervalls. Sollte zwischen 0 und 1 liegen" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Daten" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "Jährliche Saisonalität" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" -msgstr "Datentabelle" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" +msgstr "Standard" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." -msgstr "Daten-URI ist nicht zulässig." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Ja" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" -msgstr "Datenzoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Nein" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -"Daten konnten nicht aus dem Ergebnis-Backend deserialisiert werden. Das " -"Speicherformat hat sich möglicherweise geändert, wodurch die alten Daten " -"ungültig wurden. Sie müssen die ursprüngliche Abfrage erneut ausführen." +"Sollte jährliche Saisonalität angewendet werden. Ein ganzzahliger Wert " +"gibt die Fourier-Reihenfolge der Saisonalität an." + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "Wöchentliche Saisonalität" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -"Daten konnten nicht deserialisiert werden. Möglicherweise möchten Sie die" -" Abfrage erneut ausführen." +"Sollte wöchentliche Saisonalität angewendet werden. Ein ganzzahliger Wert" +" gibt die Fourier-Reihenfolge der Saisonalität an." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" -msgstr "Daten haben keine Zeitschritte" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "Tägliche Saisonalität" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Datenvorschau" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Sollte tägliche Saisonalität angewendet werden. Ein ganzzahliger Wert " +"gibt die Fourier-Reihenfolge der Saisonalität an." -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" -msgstr "Daten aktualisiert" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Zeitbezogene Formularattribute" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Datentyp" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" +msgstr "Datenquelle & Diagrammtyp" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "DataFrame mit mindestens eine Zeitreihe enhalten" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "Diagramm-ID" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "DataFrame muss temporale Spalte enthalten" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "Die ID des aktiven Diagramms" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Datenbank" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Cache-Timeout (Sekunden)" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." -msgstr "" -"Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für " -"spaltenförmige Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n " -"Superset-Administrator*in." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "Die Anzahl der Sekunden vor Ablauf des Caches" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." -msgstr "" -"Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für CSV-" -"Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-" -"Administrator*in." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "URL-Parameter" -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Zusätzliche URL-Parameter für die Verwendung in Jinja-Vorlagenabfragen" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "Zusätzliche Parameter" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -"Datenbankschema \"%(database_name)s\" \"%(schema_name)s\" ist für Excel-" -"Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-" -"Administrator*in." +"Zusätzliche Parameter, die Plugins für die Verwendung in Jinja-Template-" +"Abfragen festlegen können" -#: superset/initialization/__init__.py:243 -msgid "Database Connections" -msgstr "Datenbankverbindungen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "Farbschema" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" -msgstr "Fehler bei der Datenbankerstellung" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "Beitragsmodus" -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "Datenbank URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Zeile" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" -msgstr "Datenbank verbunden" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Zeitreihen" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "Datenbank konnte nicht erstellt werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "Beitrag pro Serie oder Zeile berechnen" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "Datenbank konnte nicht gelöscht werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "Y-Achse Sortieren nach" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "Datenbank konnte nicht aktualisiert werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "X-Achse Sortieren nach" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." -msgstr "Die Datenbank lässt keine Datenbearbeitung zu." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "Datenbank existiert nicht" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" +msgstr "Y-Achse aufsteigend sortieren" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "Datenbank unterstützt keine Unterabfragen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" +msgstr "X-Achse aufsteigend sortieren" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " -msgstr "" -"Datenbanktreiber für den Import ist möglicherweise nicht installiert. " -"Installationsanweisungen finden Sie auf der Superset-Dokumentationsseite:" -" " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Datenbankfehler" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Quellkategorie" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." -msgstr "Datenbank ist offline." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." +msgstr "" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "Für Alarme ist eine Datenbank erforderlich" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +#, fuzzy +msgid "Decides which measure to sort the base axis by." +msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Datenbank" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" +msgstr "Dimensionen" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "Datenbank darf nicht geändert werden" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." +msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "Datenbank nicht gefunden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +#, fuzzy +msgid "Add dataset columns here to group the pivot table columns." +msgstr "Spalten, nach denen in den Spalten gruppiert werden soll" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" -msgstr "Datenbank nicht gefunden: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" +msgstr "Dimension" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Datenbankparameter sind ungültig." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." +msgstr "" +"Definiert die Gruppierung von Entitäten. Jede Serie wird als bestimmte " +"Farbe im Diagramm angezeigt und verfügt über einen Legenden-Umschalter" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" -msgstr "Datenbank-Kennwörter" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Element" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "Datenbankport" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Definiert das Element, das im Diagramm dargestellt werden soll" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" -msgstr "Datenbankeinstellungen aktualisiert" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filter" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Datenbanken" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Dataframe-Index" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Datensatz" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "Metrik der rechten Achse" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "Datensatz %(name)s bereits vorhanden" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +#, fuzzy +msgid "Select a metric to display on the right axis" +msgstr "Wählen Sie eine Metrik für die rechte Achse" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -msgid "Dataset Name" -msgstr "Datensatzbezeichnung" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Sortieren nach" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "Fehler beim Löschen der Datensatzspalte." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +#, fuzzy +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" +"Metrik, die verwendet wird, um zu definieren, wie die obersten Reihen " +"sortiert werden, wenn eine Reihen- oder Zeilenbegrenzung vorhanden ist. " +"Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls " +"zutreffend)." -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "Datensatz-Spalte nicht gefunden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "Blasengröße" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "Datensatz konnte nicht erstellt werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "Metrik zur Berechnung der Blasengröße" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "Datensatz konnte nicht gelöscht werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -#: superset/datasets/commands/exceptions.py:210 -msgid "Dataset could not be duplicated." -msgstr "Der Datensatz konnte nicht dupliziert werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "Datensatz konnte nicht aktualisiert werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "Farbmetrik" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Datensatz existiert nicht" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Eine Metrik, die für die Farbe verwendet werden soll" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" -msgstr "Datensatz importiert" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "" +"Die Zeitspalte für die Visualisierung. Beachten Sie, dass Sie beliebige " +"Ausdrücke definieren können, die eine DATETIME-Spalte in der Tabelle " +"zurückgeben. Beachten Sie auch, dass der folgende Filter auf diese Spalte" +" oder diesen Ausdruck angewendet wird" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "Datensatz ist erforderlich" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "Legen Sie hier eine Spalte ab oder klicken Sie" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "Fehler beim Löschen der Datensatzmetrik." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "Y-Achse" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "Datensatz-Metrik nicht gefunden." - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Datensatzname" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "Dimension der y-Achse." -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "Datensatz-Parameter sind ungültig." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "X-Achse" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" -msgstr "Das Datensatz-Schema ist ungültig, verursacht durch: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "Dimension der x-Achse." -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "Datensätze konnten nicht massengelöscht werden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Der anzuzeigende Visualisierungstyp" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Datensätze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "Fixierte Farbe" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" msgstr "" -"Datensätze können aus Datenbanktabellen oder SQL-Abfragen erstellt " -"werden. Wählen Sie links eine Datenbanktabelle aus oder " - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" -msgstr "Datensätze enthalten keine temporale Spalte" +"Verwenden Sie diese Option, um eine statische Farbe für alle Kreise zu " +"definieren" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Datenquelle" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "Farbverlaufschema" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" -msgstr "Datenquelle & Diagrammtyp" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "alle" -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" -msgstr "Datenquelle ist nicht vorhanden" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" +msgstr "5 Sekunden" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "Datenquellen-Typ ist ungültig" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 Sekunden" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "Datenquellentyp ist erforderlich, wenn datasource_id angegeben wird" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 Minute" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" -msgstr "Datum-Zeit-Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 Minuten" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Datumsfilter" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 Minuten" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" -msgstr "Datumsformat" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 Stunde" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" -msgstr "Datumsformat-Zeichenfolge" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" +msgstr "1 Tag" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Datum/Zeit" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" +msgstr "7 Tage" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Zeit/Datum-Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "Woche" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "" -"Datetime-Spalte wird nicht als Teil-Tabellenkonfiguration bereitgestellt," -" ist aber für diesen Diagrammtyp erforderlich" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "Woche, am Sonntag beginnend" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Datum Zeit Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "Woche, am Samstag endend" -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "Tag" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "Monat" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "Tag (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" +msgstr "Quartal" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "Tage %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "Jahr" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "Db-Modul hat nicht alle abgefragten Spalten zurückgegeben" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "" +"Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie " +"einfache natürliche Sprache wie in \"10 Sekunden\", \"1 Tag\" oder \"56 " +"Wochen\" eingeben und verwenden können" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" -msgstr "Deaktivieren" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "Dezember" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Zeilenlimit" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -#, fuzzy -msgid "Decides which measure to sort the base axis by." -msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "Dezimalzeichen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "Absteigend sortieren" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - 3D-Raster" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Zeitreihenbegrenzung" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - Bogen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" +"Begrenzt die Anzahl der Zeitreihen, die angezeigt werden. Eine " +"Unterabfrage (oder eine zusätzliche Phase, falls Unterabfragen nicht " +"unterstützt werden) wird angewendet, um die Anzahl der Zeitreihen zu " +"begrenzen, die abgerufen und angezeigt werden. Diese Funktion ist " +"nützlich, wenn Sie nach Dimension(en) mit hoher Kardinalität gruppieren, " +"erhöht jedoch die Abfragekomplexität und -kosten." -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Y-Achsenformat" -#: superset/viz.py:2848 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Deck.gl - Diagramme" +msgid "Currency format" +msgstr "Wertformat" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - Mehrere Ebenen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" +msgstr "Zeitformat" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "Deck.gl - Pfade" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "Das zur Diagrammanzeige verwendete Farbschema" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - Polygon" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" +msgstr "Metrik abschneiden" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - Streudiagramm" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "Ob Metriken abgeschnitten werden sollen" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - Bildschirmraster" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" +msgstr "Leere Spalten anzeigen" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Standard" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "D3-Formatsyntax: https://github.com/d3/d3-format" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Standard-Endpunkt" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." +msgstr "" +"Gilt nur, wenn \"Beschriftungstyp\" so eingestellt ist, dass Werte " +"angezeigt werden." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "Datenbank URL" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -"Standard-URL, auf die beim Zugriff von der Datensatz-Listenseite aus " -"zugegriffen werden soll" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "Standardwert" +"Gilt nur, wenn \"Beschriftungstyp\" nicht auf einen Prozentsatz " +"festgelegt ist." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" -msgstr "Standard-Datum/Zeit" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" +msgstr "Adaptative Formatierung" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" -msgstr "Standard Breitengrad" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Ursprünglicher Wert" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" -msgstr "Standard-Längengrad" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "Dauer in ms (66000 => 1m 6s)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" -msgstr "" -"Standardmäßig minimale Spaltenbreite in Pixel, tatsächliche Breite kann " -"immer noch größer sein, wenn andere Spalten nicht viel Platz benötigen" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "Dauer in ms (1,40008 => 1ms 400μs 80ns)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" -msgstr "Standardwert ist erforderlich" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "D3-Zeitformatsyntax: https://github.com/d3/d3-time-format" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" -"Standardwert muss festgelegt werden, wenn \"Filter hat Standardwert\" " -"aktiviert ist" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "Hoppla! Ein Fehler ist aufgetreten!" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" -"Der Standardwert muss festgelegt werden, wenn „Filterwert ist " -"erforderlich\" aktiviert ist" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "Stacktrace" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -"Standardwert wird automatisch festgelegt, wenn „Erstes Element als " -"Standard“ aktiviert ist" +"Für diese Abfrage wurden keine Ergebnisse zurückgegeben. Wenn Sie " +"erwartet haben, dass Ergebnisse zurückgegeben werden, stellen Sie sicher," +" dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle " +"Daten für den ausgewählten Zeitraum enthält." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" -msgstr "" -"Definieren Sie eine Funktion, die die Eingabe empfängt und den Inhalt für" -" einen Tooltip ausgibt" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" +msgstr "Keine Ergebnisse" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "" -"Definieren Sie eine Funktion, die eine URL zurückgibt, zu der navigiert " -"wird, wenn der/die Benutzer*in klickt" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" +msgstr "FEHLER" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." -msgstr "" -"Definieren Sie eine JavaScript-Funktion, die das in der Visualisierung " -"verwendete Daten-Array empfängt und eine geänderte Version dieses Arrays " -"zurückgibt. Dies kann verwendet werden, um Eigenschaften der Daten zu " -"ändern, zu filtern oder das Array anzureichern." +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" +msgstr "Ungültige Order-By-Optionen gefunden" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "" -"Definiert eine Funktion ‚Rollierendes Fenster‘, die angewendet werden " -"soll. Arbeitet zusammen mit dem Textfeld [Punkte]" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "wird als Ganzzahl erwartet" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "Definiert, wie jede Reihe aufgeschlüsselt wird" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "wird als Zahl erwartet" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "Gibt die Rastergröße in Pixel an" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +#, fuzzy +msgid "is expected to be a Mapbox URL" +msgstr "wird als Zahl erwartet" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -"Definiert die Gruppierung von Entitäten. Jede Serie wird als bestimmte " -"Farbe im Diagramm angezeigt und verfügt über einen Legenden-Umschalter" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" -msgstr "" -"Definiert die Größe der Funktion ‚Rollierendes Fenster‘ relativ zur " -"ausgewählten Zeitgranularität" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "darf nicht leer sein" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "" -"Definiert, ob der Schritt am Anfang, in der Mitte oder am Ende zwischen " -"zwei Datenpunkten erscheinen soll" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "Wertebereich" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Löschen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "Stunde" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "%s löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "Tag" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Anmerkung löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "Die Zeiteinheit, die für die Gruppierung von Blöcken verwendet wird" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Datenbank löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "Subdomain" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "Datensatz löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" +msgstr "Minimum" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Ebene löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" +msgstr "" +"Die Zeiteinheit für jeden Block. Sollte eine kleinere Einheit als " +"domain_granularity sein. Sollte größer oder gleich Zeitgranularität sein" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Abfrage löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "Diagramm-Optionen" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" -msgstr "Report löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "Zellengröße" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Vorlage löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "Die Größe der quadratischen Zelle in Pixel" -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "Wirklich alle löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "Zellen Abstand" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Anmerkung löschen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "Der Abstand zwischen Zellen in Pixel" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Dashboard-Reiter löschen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "Zellenradius" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Datenbank löschen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "Der Pixelradius" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" -msgstr "E-Mail-Report löschen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "Farbschritte" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Abfrage löschen" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Vorlage löschen" - -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "" -"Löschen Sie diesen Container und speichern Sie, um diese Nachricht zu " -"entfernen." - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "Löschen" - -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "%(num)d Anmerkung gelöscht" -msgstr[1] "%(num)d Anmerkungen gelöscht" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "%(num)d Anmerkungebene gelöscht" -msgstr[1] "%(num)d Anmerkungsebenen gelöscht" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "%(num)d Diagramm gelöscht" -msgstr[1] "%(num)d Diagramme gelöscht" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "Gelöschte %(num)d CSS-Vorlage" -msgstr[1] "Gelöschte %(num)d CSS-Vorlagen" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "%(num)d Dashboard gelöscht" -msgstr[1] "%(num)d Dashboards gelöscht" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Gelöschter %(num)d Datensatz" -msgstr[1] "Gelöschte %(num)d Datensätze" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "%(num)d Report-Ausführungspläne gelöscht" -msgstr[1] "%(num)d Report-Ausführungspläne gelöscht" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "%(num)d Diagramm gelöscht" -msgstr[1] "%(num)d Diagramme gelöscht" - -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "%(num)d gespeicherte Abfrage gelöscht" -msgstr[1] "%(num)d gespeicherte Abfragen gelöscht" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Gelöscht: %s" - -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Gelöscht: %s" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" -msgstr "" -"Wenn Sie eine Registerkarte löschen, werden alle darin enthaltenen " -"Inhalte entfernt. Sie können diese Aktion immer noch rückgängig machen, " -"indem Sie die" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "Länge und Breite in einer Spalte mit Trennzeichen" - -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "Trennzeichen" - -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "Übermittlungsmethode" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" -msgstr "Demographische Daten" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" -msgstr "Dichte" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" -msgstr "Abhängig von" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" -msgstr "Veraltet" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Beschreibung" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "Beschreibung (diese ist in der Liste zu sehen)" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" -msgstr "Beschreibungsspalten" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "Beschreibungstext, der unter Ihrer Großen Zahl angezeigt wird" - -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "Alle abwählen" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "Details zur Zertifizierung" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." -msgstr "Bestimmt, wie „Whisker“ und Ausreißer berechnet werden." - -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "Bestimmt, ob dieses Dashboard in der Liste aller Dashboards sichtbar ist" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" -msgstr "Diamant" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Meintest du:" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" -msgstr "Differenz" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" -msgstr "Dunkelgrau" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" -msgstr "Dimension" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." -msgstr "Dimension der x-Achse." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." -msgstr "Dimension der y-Achse." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" -msgstr "Dimensionen" - -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Kraftbasierte Anordnung" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" -msgstr "Direktional" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" -msgstr "Deaktivieren von SQL Lab-Datenvorschau-Abfragen" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." -msgstr "" -"Datenvorschau beim Abrufen von Tabellenmetadaten in SQL Lab deaktivieren." -" Nützlich, um Probleme mit der Browserleistung bei der Verwendung von " -"Datenbanken mit sehr breiten Tabellen zu vermeiden." - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" -msgstr "Einbettung deaktivieren?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" -msgstr "Deaktiviert" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" -msgstr "Verwerfen" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" -msgstr "Diskret" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "Anzeigename" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "Summe auf Spaltenebene anzeigen" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "Anzeige-Konfiguration" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" -"Zeigen Sie Metriken innerhalb jeder Spalte nebeneinander an, im Gegensatz" -" zur Darstellung einer Spalte je Metrik." - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" -msgstr "Summe auf Zeilenebene anzeigen" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" -msgstr "Darstellungs-Einstellungen" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "" -"Zeigt Verbindungen zwischen Elementen in einer Graphstruktur an. " -"Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem" -" Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, " -"dass sie kraftgesteuert sind oder zirkulieren. Wenn Ihre Daten über eine " -"Geodatenkomponente verfügen, versuchen Sie es mit dem deck.gl Arc-" -"Diagramm." - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" -msgstr "Verteilen über" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" -msgstr "Verteilung" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Verteilung - Balkendiagramm" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "Trenner" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" -msgstr "Donut oder Torten-Diagramm?" - -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" -msgstr "Dokumentation" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "Wertebereich" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" -msgstr "Donut" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -msgid "Dotted" -msgstr "Gepunktet" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" -msgstr "Herunterladen" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "Herunterladen als Bild" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "Als CSV herunterladen" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "Entwurf" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "Ziehen Sie Komponenten und Diagramme per Drag & Drop auf das Dashboard" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "Ziehen Sie Komponenten per Drag & Drop auf diese Registerkarte" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." -msgstr "Zeichnen Sie eine Markierung auf Datenpunkten. Gilt nur für Linientypen." - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "Zeichnen Sie den Bereich unter Kurven. Gilt nur für Linientypen." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" -msgstr "Linie von Torte zur Beschriftung ziehen, wenn Beschriftungen außerhalb?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "Zeichnen von Trennlinien für kleinere Achsenteilstriche" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "Geteilten Linien für kleinere Ticks der y-Achse zeichnen" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" -msgstr "Ins-Detail-Zoomen" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" -msgstr "Heinzoomem ist für diesen Datenpunkt nicht verfügbar" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "" -"Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp " -"noch nicht unterstützt." - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" -msgstr "Hineinzogen nach %s" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "Ins-Detail-Zoomen" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" -msgstr "Zu Detail zoomen anhand" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "" -"Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp " -"noch nicht unterstützt." - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." -msgstr "" -"Das Zu-Detail-Zoomen (Drilldown) ist deaktiviert, da dieses Diagramm " -"Daten nicht nach Dimensionswert gruppiert." - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" -msgstr "Zu Detail zoomen: %s" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "Legen Sie hier eine Spalte ab oder klicken Sie" -msgstr[1] "Legen Sie hier Spalten ab oder klicken Sie" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "Legen Sie hier eine Spalte/Metrik ab oder klicken Sie" -msgstr[1] "Legen Sie hier eine Spalten/Metriken ab oder klicken Sie" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" -msgstr "Legen Sie hier eine Spalte ab oder klicken Sie" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" -msgstr "Spalten/Metriken hierhin ziehen und ablegen oder klicken" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" -msgstr "Doppelliniendiagramm" - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" -msgstr "Duplizieren" - -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "Doppelte Spaltenname(n): %(columns)s" - -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." -msgstr "" -"Doppelte Spalten-/Metrikbeschriftungen: %(labels)s. Bitte stellen Sie " -"sicher, dass alle Spalten und Metriken eine eindeutige Beschriftung " -"haben." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "Die Anzahl Farbabstufungen" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" -msgstr "Datensatz duplizieren" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "Zeitformat" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Registerkarte duplizieren" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "Legende" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Dauer" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "Ob die Legende angezeigt werden soll (Wechselschalter)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." -msgstr "" -"Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. " -"Ein Timeout von 0 gibt an, dass der Cache nie abläuft, und -1 umgeht den " -"Cache. Beachten Sie, dass standardmäßig das globale Timeout verwendet " -"wird, wenn kein Wert definiert wurde." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "Werte anzeigen" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." -msgstr "" -"Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. " -"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass" -" standardmäßig das globale Timeout verwendet wird, wenn es nicht " -"definiert ist." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "" -"Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Beachten " -"Sie, dass standardmäßig das Datenquellen-/Tabellentimeout verwendet wird," -" wenn es nicht definiert ist." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "Metriknamen anzeigen" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "" -"Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Setzen Sie " -"diesen auf -1 um das Coaching zu umgehen. Beachten Sie, dass " -"standardmäßig das Timeout des Datensatzes verwendet wird, wenn kein Wert " -"definiert wurde." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "Ob der Metrikname als Titel angezeigt werden soll" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." -msgstr "" -"Dauer (in Sekunden) des Caching-Timeouts für diese Tabelle. Ein Timeout " -"von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass " -"standardmäßig das Datenbanktimeout verwendet wird, wenn es nicht " -"definiert ist." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "Zahlenformat" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "" -"Dauer (in Sekunden) des Cache-Timeouts für Diagramme dieser Datenbank. " -"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass" -" standardmäßig der globale Timeout verwendet wird, wenn keiner definiert " -"ist." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "Korrelation" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -"Dauer (in Sekunden) der Caching-Zeitdauer für Diagramme dieser Datenbank." -" Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, " -"dass standardmäßig der globale Timeout verwendet wird, wenn keiner " -"definiert ist. " - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "Dauer in ms (1,40008 => 1ms 400μs 80ns)" - -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "Dauer in ms (100,40008 => 100ms 400μs 80ns)" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "Dauer in ms (66000 => 1m 6s)" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "Laufzeit: %s" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" -msgstr "Dynamische Aggregationsfunktion" +"Visualisiert, wie sich eine Metrik im Laufe der Zeit mithilfe einer " +"Farbskala und einer Kalenderansicht verändert hat. Grauwerte werden " +"verwendet, um fehlende Werte anzuzeigen, und das lineare Farbschema wird " +"verwendet, um den Betrag jedes Tageswerts zu kodieren." -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "Alle Filterwerte dynamisch durchsuchen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "Geschäftlich" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" -msgstr "ECharts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "Vergleich" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" -msgstr "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "Intensität" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "ENDE (EXKLUSIV)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" +msgstr "Muster" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" -msgstr "FEHLER" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" +msgstr "Melden" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" -msgstr "FEHLER: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Trend" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" -msgstr "Kantenlänge" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "weniger als {min} {name}" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" -msgstr "Kantenlänge zwischen Knoten" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "zwischen {down} und {up} {name}" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" -msgstr "Kantensymbole" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "mehr als {max} {name}" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" -msgstr "Kantenbreite" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "Nach Metrik sortieren" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "" +"Ob die Ergebnisse nach der ausgewählten Metrik in absteigender " +"Reihenfolge sortiert werden sollen." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" -msgstr "Alarm bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" +msgstr "Nummern Format" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "CSS bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" +msgstr "Wählen Sie ein Zahlenformat" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "CSS Vorlagen bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Quelle" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "CSS Vorlagen" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" +msgstr "Wählen Sie eine Quelle" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Diagramm bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" +msgstr "Ziel" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" -msgstr "Diagrammeigenschaften bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" +msgstr "Wählen Sie ein Ziel" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Spalte bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" +msgstr "Fluss" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Dashboard bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." +msgstr "" +"Zeigt den Fluss oder die Verknüpfung zwischen Kategorien anhand der Dicke" +" der Sehnen. Der Wert und die entsprechende Dicke können für jede Seite " +"unterschiedlich sein." -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Datenbank bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "Beziehungen zwischen Community-Kanälen" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Datensatz bearbeiten " +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "Sehnendiagramm" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Protokoll bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "Ästhetisch" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Metrik bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "Kreisförmig" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Plugin bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "Veraltet" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" -msgstr "Report bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "Proportional" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Edit Rule" -msgstr "Bearbeitungsmodus" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" +msgstr "Relational" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Gespeicherte Abfrage bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "Land" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Tabelle bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "Für welches Land soll die Karte geplottet werden?" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Anmerkung bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "ISO-3166-2-Codes" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." +msgstr "Spalte mit ISO 3166-2-Codes der Region/Provinz/Kreis in Ihrer Tabelle." + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" +msgstr "Metrik zur Anzeige des unteren Titels" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "Karte" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Anmerkungsebene bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." +msgstr "" +"Visualisiert, wie eine einzelne Metrik in den Hauptunterteilungen eines " +"Landes (Bundesstaaten, Provinzen usw.) auf einer Choroplethenkarte " +"variiert. Der Wert jeder Unterteilung wird erhöht, wenn Sie den " +"Mauszeiger über die entsprechende geografische Grenze bewegen." -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Eigenschaften der Anmerkungsebene bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "2D" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -msgid "Edit chart" -msgstr "Diagramm bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "Räumlich" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Diagrammeigenschaften bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "Bereich" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "Dashboard bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "Gestapelt" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Datenbank bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "Leider scheint es keine Daten zu geben" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Datensatz bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "Ereignisdefinition" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" -msgstr "E-Mail-Report bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" +msgstr "Ereignisnamen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" -msgstr "Formatierer bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "Anzuzeigende Spalten" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Eigenschaften bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "Nach Entitäts-ID sortieren" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Abfrage bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." +msgstr "" +"Wichtig! Wählen Sie diese Option, wenn die Tabelle nicht bereits nach " +"Entitäts-ID sortiert ist, da sonst nicht garantiert ist, dass alle " +"Ereignisse für jede Entität zurückgegeben werden." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Vorlage bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "Minimale Anzahl der Blattknotenereignisse" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Vorlagenparameter bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "" +"Blattknoten, die weniger als diese Anzahl von Ereignissen darstellen, " +"werden zunächst in der Visualisierung ausgeblendet." -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -msgid "Edit the dashboard" -msgstr "Dashboard bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "Zusätzliche Metadaten" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "Zeitraum bearbeiten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" +msgstr "Metadaten" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Bearbeitet" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" +msgstr "Auswählen beliebiger Spalten für die Metadatenüberprüfung" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Bearbeiten von einem Filter:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "Entitäts-ID" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "Filterguppe bearbeiten:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" +msgstr "z. B. eine Spalte „user id“" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Entweder ist die Datenbank falsch geschrieben oder existiert nicht." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "Maximale Anzahl von Ereignissen" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -"Entweder der Benutzer*innenname \"%(username)s\" oder das Passwort ist " -"falsch." +"Die maximale Anzahl der zurückzugebenden Ereignisse, entspricht der " +"Anzahl Zeilen" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -"Entweder der Benutzer*innenname \"%(username)s\", das Kennwort oder der " -"Datenbankname \"%(database)s\" ist falsch." - -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." -msgstr "Entweder der Benutzer*innenname oder das Kennwort ist falsch." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" -msgstr "Höhendaten" +"Vergleicht die Zeitspanne, die verschiedene Aktivitäten in einer " +"freigegebenen Zeitachsenansicht benötigen." -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" -msgstr "E-Mail-Reporte aktiv" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" +msgstr "Ereignisablauf" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" -msgstr "Einbetten" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "Progressiv" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" -msgstr "Code einbetten" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "Achse aufsteigend" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -msgid "Embed dashboard" -msgstr "Dashboard einbetten" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "Achse absteigend" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." -msgstr "Einbetten deaktiviert." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" +msgstr "Metrik aufsteigend" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" -msgstr "Filterereignisse ausgeben" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" +msgstr "Metrik absteigend" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" -msgstr "Hervorhebung" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "Heatmap-Optionen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" -msgstr "Beschäftigung und Bildung" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" +msgstr "X-Skalen-Intervall" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" -msgstr "Leerer Kreis" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" +msgstr "" +"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der " +"X-Skala ausgeführt werden müssen" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "Leere Sammlung" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" +msgstr "Y-Skalen-Intervall" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -msgid "Empty column" -msgstr "Leere Spalte" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "" +"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der " +"Y-Skala ausgeführt werden müssen" -#: superset/charts/data/api.py:366 -msgid "Empty query result" -msgstr "Leeres Abfrageergebnis" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" +msgstr "Darstellen" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Leere Abfrage?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "Gepixelt (scharf)" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" -msgstr "Leere Zeile" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "automatisch (geglättet)" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -"Aktivieren Sie \"Datei-Uploads in Datenbank zulassen\" in den " -"Einstellungen einer beliebigen Datenbank" +"CSS-Attribut zum Rendern von Bildern des Canvas-Objekts, das definiert, " +"wie der Browser das Bild hochskaliert" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Filterauswahl aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "Normalisieren über" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" -msgstr "Kreuzfilterung aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" +msgstr "Heatmap" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" -msgstr "Aktivieren von Steuerelementen für das Zoomen von Daten" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "X" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" -msgstr "Einbettung aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "Y" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" -msgstr "Prognose aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" +"Die Farbe wird basierend auf dem normalisierten Wert (0% to 100%) einer " +"bestimmten Zelle im Vergleich zu den anderen Zellen im ausgewählten " +"Bereich schattiert: " + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "X: Werte werden innerhalb jeder Spalte normalisiert" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" -msgstr "Aktivieren von Prognosen" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "y: Werte werden innerhalb jeder Zeile normalisiert" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" -msgstr "Graph-Roaming aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "Heatmap: Werte werden über die gesamte Heatmap normalisiert" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" -msgstr "Aktivieren des Ziehens von Knoten" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "Linker Abstand" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "Abfragekostenschätzung aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" +msgstr "automatisch" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "" -"Aktivieren der serverseitigen Paginierung der Ergebnisse (experimentelle " -"Funktion)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "Linker Rand in Pixeln, um mehr Platz für Achsenbeschriftungen zu schaffen" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" -msgstr "" -"Ungültiger räumlicher NULL-Eintrag gefunden, bitte erwägen Sie, diese " -"herauszufiltern" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "Unterer Abstand" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "Ende" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "Unterer Rand in Pixeln, ermöglicht mehr Platz für Achsenbeschriftungen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " -msgstr "Ende (Längengrad, Breitengrad): " +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "Wertgrenzen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" -msgstr "Ende Längen- und Breitengrad" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." +msgstr "" +"Harte Wertgrenzen für die Farbcodierung. Ist nur relevant und wird " +"angewendet, wenn die Normalisierung auf die gesamte Heatmap angewendet " +"wird." -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Bis Zeit" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "X-Achse sortieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" -msgstr "Endwinkel" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "Y-Achse sortieren" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "End date" -msgstr "Enddatum" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "Prozentsatz anzeigen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "Enddatum aus dem Zeitraum ausgeschlossen" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "Ob der Prozentsatz in Tooltip aufgenommen werden soll" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "‚Von Datum' kann nicht größer als ‚Bis Datum' sein" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "Normalisiert" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -"Die Engine-Spezifikation \"%(engine)s\" unterstützt keine Konfiguration " -"über Parameter." +"Ob eine Normalverteilung basierend auf dem Rang auf der Farbskala " +"angewendet werden soll" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" -msgstr "Engine-Parameter" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" +msgstr "Wertformat" -#: superset/databases/schemas.py:302 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -"Die Engine-Spezifikation \"%(engine_spec)s\" unterstützt keine " -"Konfiguration über einzelne Parameter." +"Visualisieren Sie eine verwandte Metrik über Gruppenpaare hinweg. " +"Heatmaps zeichnen sich dadurch aus, dass sie die Korrelation oder Stärke " +"zwischen zwei Gruppen darstellen. Farbe wird verwendet, um die Stärke der" +" Verbindung zwischen jedem Gruppenpaar zu betonen." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" -msgstr "Geben Sie CA_BUNDLE ein" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" +msgstr "Fahrzeuggrößen" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" -msgstr "Primäre Anmeldeinformationen eingeben" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "Beschäftigung und Bildung" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" -msgstr "Geben Sie ein Trennzeichen für diese Daten ein" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "Dichte" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" -msgstr "Geben Sie einen neuen Titel für die Registerkarte ein" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" +msgstr "Prädikativ" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Geben Sie einen neuen Titel für die Registerkarte ein" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "Einzelne Metrik" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" -msgstr "Dauer in Sekunden eingeben" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" +msgstr "bis" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" -msgstr "Vollbild öffnen" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" +msgstr "Anzahl" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" -msgstr "Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "kumulativ" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Element" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "Perzentil (exklusiv)" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" -msgstr "Entitäts-ID" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "Auswählen der numerischen Spalten zum Zeichnen des Histogramms" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" -msgstr "Gleiche Datumsgrößen" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" +msgstr "Anzahl der Bis" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" -msgstr "Ist gleich (==)" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "Wählen Sie die Anzahl der Klassen für das Histogramm aus" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" -msgstr "Fehler" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "X Achsenbeschriftung" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Fehler im Jinja-Ausdruck in HAVING-Klausel: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "Y Achsenbeschriftung" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Fehler im Jinja-Ausdruck in RLS-Filtern: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "Ob das Histogramm normalisiert werden soll" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Fehler im Jinja-Ausdruck in WHERE-Klausel: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "Kumuliert" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Fehler im Jinja-Ausdruck im Fetch Values-Prädikat: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "Ob das Histogramm kumulativ dargestellt werden soll" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "Verteilung" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -"Fehler beim Laden von Diagrammdatenquellen. Filter funktionieren " -"möglicherweise nicht ordnungsgemäß." +"Gruppieren Sie Ihre Datenpunkte in Klassen, um zu sehen, wo die " +"dichtesten Informationsbereiche liegen" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "Fehlermeldung" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "Daten zum Bevölkerungsalter" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" -msgstr "Fehler beim Abrufen von Diagrammen" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Beitrag" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" -msgstr "Fehler beim Abrufen von Daten: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Berechnen des Beitrags zur Gesamtsumme" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "Zeitreihenhöhe" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "Pixelhöhe jeder Serie" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "Wertebereich" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" +msgstr "Zeitreihen" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" +msgstr "insgesamt" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" -msgstr "Fehler: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "change" +msgstr "ändern" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" -msgstr "Fehler: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" +"Serie: Behandeln Sie jede Serie unabhängig voneinander; insgesamt: Alle " +"Zeitreihen verwenden den gleichen Maßstab; Änderung: Änderungen im " +"Vergleich zum ersten Datenpunkt in jeder Datenreihe anzeigen" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" -msgstr "Fehler: Permalink-Status nicht gefunden" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." +msgstr "" +"Vergleicht, wie sich eine Metrik im Laufe der Zeit zwischen verschiedenen" +" Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung" +" im Laufe der Zeit werden als Balkenlängen und -farben visualisiert." -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Kosten schätzen" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" +msgstr "Horizont-Diagramm" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Schätze Kosten für ausgewählte Abfragen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "Dunkeltürkis" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "Schätzen der Kosten vor dem Ausführen einer Abfrage" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" +msgstr "Lila" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -msgid "Event" -msgstr "Ereignis" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "Gold" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" -msgstr "Ereignisablauf" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" +msgstr "Dunkelgrau" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" -msgstr "Ereignisnamen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" +msgstr "Purpur" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" -msgstr "Ereignisdefinition" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" +msgstr "Waldgrün" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "Ereignisablauf" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "Längengrad" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" -msgstr "Spalte \"Ereigniszeit\"" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "Spalte mit Längengraddaten" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Jeden" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "Breitengrad" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" -msgstr "Entwicklung" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "Spalte mit Breitengraddaten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" -msgstr "Genau" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "Clustering-Radius" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "Beispiel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "" +"Der Radius (in Pixel), den der Algorithmus zum Definieren eines Clusters " +"verwendet. Wählen Sie 0, um das Clustering zu deaktivieren, aber beachten" +" Sie, dass eine große Anzahl von Punkten (>1000) zu Verzögerungen führt." -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Beispiele" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "Punkte" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Excel-Datei" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "Punktradius" -#: superset/views/database/views.py:427 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -"Excel-Datei \"%(excel_filename)s\" in Tabelle \"%(table_name)s\" in " -"Datenbank \"%(db_name)s\" hochgeladen" +"Der Radius einzelner Punkte (die sich nicht in einem Cluster befinden). " +"Entweder eine numerische Spalte oder \"Auto\", die den Punkt basierend " +"auf dem größten Cluster skaliert" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Excel-zu-Datenbank-Konfiguration" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" +msgstr "Auto" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" -msgstr "Auswahlwerte ausschließen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "Punktradius-Einheit" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -#, fuzzy -msgid "Excluded roles" -msgstr "Zeitreihen einschließen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" +msgstr "Pixel" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" -msgstr "Ausgeführtes SQL" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" +msgstr "Meilen" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Ausgeführte Abfrage" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" +msgstr "Kilometer" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "Ausführungs-ID" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "Die Maßeinheit für den angegebenen Punktradius" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "Aktionsprotokoll" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "Beschriftung" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" -msgstr "Vorhandener Datensatz" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" +msgstr "Beschriftung" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" -msgstr "Vollbildanzeige beenden" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" +"'count' ist COUNT(*), wenn ein ‚GROUP BY’ verwendet wird. Numerische " +"Spalten werden mit der Aggregatfunktion aggregiert. Nicht numerische " +"Spalten werden verwendet, um Punkte zu beschriften. Falls leer, wird die " +"Anzahl der Punkte in jedem Cluster zurückgegeben." -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" -msgstr "Erweitern" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "Cluster-Beschriftung-Aggregator" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Alle aufklappen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "sum" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" -msgstr "Datenbereich erweitern" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "Mittelwert" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" -msgstr "Zeile erweitern" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" +msgstr "Maximum" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" -msgstr "Tabellenvorschau erweitern" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" +msgstr "Std" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Werkzeugleiste erweitern" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +#, fuzzy +msgid "var" +msgstr "Balken" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -"Erwartet eine Formel mit abhängigem Zeitparameter 'x'\n" -" in Millisekunden seit Startzeit der UNIX-Zeit (epoch). mathjs " -"wird verwendet, um die Formeln auszuwerten.\n" -" Beispiel: '2x+5'" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" -msgstr "Experimentell" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Erkunden" - -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "Erkunden - %(table)s" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Untersuchen der Ergebnismenge in der Datenexplorations-Ansicht" +"Aggregatfunktion, die auf die Liste der Punkte in jedem Cluster " +"angewendet wird, um die Clusterbezeichnung zu erstellen." -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Export" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" +msgstr "Visuelle Optimierungen" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "Dashboards exportieren?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "Live-Darstellung" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "Abfrage exportieren" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "" +"Punkte und Cluster werden aktualisiert, wenn das Ansichtsfenster geändert" +" wird" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" -msgstr "Export nach .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" +msgstr "Karten Stil" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" -msgstr "Exportieren nach . JSON" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" +msgstr "Straßen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" -msgstr "Exportieren nach Excel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" +msgstr "Dunkel" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Exportieren als YAML" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" +msgstr "Hell" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Als YAML exportieren?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" +msgstr "Satellit Straßen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" -msgstr "Export in vollständiges . .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" +msgstr "Satellit" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" -msgstr "Export in das ursprüngliche .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "Outdoor-Aktivitäten" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" -msgstr "Export in das pivotierte .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" -msgstr "Datenbank in SQL Lab verfügbar machen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Deckkraft" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Verfügbarmachen in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "Deckkraft aller Cluster, Punkte und Beschriftungen. Zwischen 0 und 1." -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Diese Datenbank in SQL Lab verfügbar machen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "RGB-Farbe" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Ausdruck" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "Die Farbe für Punkte und Cluster in RGB" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" +msgstr "Ansichtsfenster" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" -msgstr "Zusätzliche Bedienelemente" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "Standard-Längengrad" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" -msgstr "Zusätzliche Parameter" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "Längengrad des Standardansichtfensters" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" -msgstr "Zusätzliche Daten für JS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "Standard Breitengrad" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." -msgstr "" -"Zusätzliche Daten zum Angeben von Tabellenmetadaten. Unterstützt derzeit " -"Metadaten des Formats: '{ \"certification\": { \"certified_by\": \"Data " -"Platform Team\", \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" } `." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "Breitengrad des Standardansichtsfensters" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Zusätzliches Feld kann nicht durch JSON decodiert werden. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "Zoom" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Zusätzliche Parameter für die Verwendung in Jinja-Vorlagenabfragen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "Zoomstufe der Karte" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." msgstr "" -"Zusätzliche Parameter, die Plugins für die Verwendung in Jinja-Template-" -"Abfragen festlegen können" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Zusätzliche URL-Parameter für die Verwendung in Jinja-Vorlagenabfragen" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" -msgstr "extrudiert" +"Ein oder mehrere Steuerelemente, nach denen gruppiert werden soll. Bei " +"der Gruppierung müssen Breiten- und Längengradspalten vorhanden sein." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "FEB" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "Heller Modus" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "FR" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "Dunkelmodus" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" -msgstr "Faktor" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "MapBox" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" -msgstr "Faktor, mit dem die Metrik multipliziert wird" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "Streudiagramm" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "Fehlschlagen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "Transportierbar" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "Fehlgeschlagen" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "Signifikanzniveau" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Fehler beim Abrufen der Ergebnisse" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "Schwellenwert für Alpha-Level zur Bestimmung der Signifikanz" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" -msgstr "Fehler beim Beenden der Abfrage. %s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "p-Wert-Präzision" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" -msgstr "Bericht konnte nicht erstellt werden" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" +msgstr "Anzahl der Dezimalstellen, mit denen p-Werte angezeigt werden sollen" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" -msgstr "Fehler beim Ausführen %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "Prozentuale Präzision erhöhen" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -#, fuzzy -msgid "Failed to generate chart edit URL" -msgstr "Diagrammdaten konnten nicht geladen werden" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "Anzahl der Dezimalstellen, mit denen Hubwerte angezeigt werden sollen" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" -msgstr "Diagrammdaten konnten nicht geladen werden" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." +msgstr "" +"Tabelle, die gepaarte t-Tests visualisiert, die verwendet werden, um " +"statistische Unterschiede zwischen Gruppen zu verstehen." -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." -msgstr "Diagrammdaten konnten nicht geladen werden." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "Gepaarte t-Test-Tabelle" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -#, fuzzy -msgid "Failed to load dimensions for drill by" -msgstr "Keine Dimensionen verfügbar für das Hineinzoomen nach" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "Statistisch" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" -msgstr "Fehler beim Abrufen des erweiterten Typs" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "Tabellarisch" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -#, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Kreuzfilterung aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "Optionen" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "Remoteabfrage für einen Worker konnte nicht gestartet werden." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "Datentabelle" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" -msgstr "Fehler beim Aktualisieren des Berichts" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "Ob die interaktive Datentabelle angezeigt werden soll" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Auswahloptionen konnten nicht überprüft werden: %s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "Zeitreihen einschließen" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Favoriten" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "Zeitreihennamen als Achse einschließen" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Favoriten" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "Rangliste" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Februar" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." +msgstr "" +"Stellt die einzelnen Metriken für jede Zeile in den Daten vertikal dar " +"und verknüpft sie als Linie miteinander. Dieses Diagramm ist nützlich, um" +" mehrere Metriken in allen Stichproben oder Zeilen in den Daten zu " +"vergleichen." -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "Werte-Prädikate abrufen" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" +msgstr "Koordinaten" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Datenvorschau abrufen" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "Direktional" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "%s abgerufen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "Zeitreihen-Optionen" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" -msgstr "Wird abgerufen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "Keine Zeitreihen" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "Das Feld kann nicht durch JSON decodiert werden. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "Zeit ignorieren" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Das Feld kann nicht durch JSON decodiert werden. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" +msgstr "Zeitreihen" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "Dieses Feld ist erforderlich" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "Standard-Zeitreihen" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Datei" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "Aggregater Mittelwert" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" -msgstr "Füllfarbe" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "Mittelwert der Werte über einen bestimmten Zeitraum" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "" -"Füllen Sie alle erforderlichen Felder aus, um \"Standardwert\" zu " -"aktivieren" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "Aggregierte Summe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" -msgstr "Füll-Methode" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "Summe der Werte über einen bestimmten Zeitraum" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" -msgstr "Gefüllt" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "Metrische Wertänderung von 'seit' zu 'bis'" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" -msgstr "Filter" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" +msgstr "Prozentuale Veränderung" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" -msgstr "Filterkonfiguration" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "Metrische prozentuale Wertänderung von \"seit\" zu \"bis\"" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Filterliste" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "Faktor" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" -msgstr "Filtereinstellungen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "Änderung des metrischen Faktors von \"seit\" zu \"bis\"" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "Filtertyp" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "Erweiterte Analysen" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -#, fuzzy -msgid "Filter box (deprecated)" -msgstr "Kein Filter ausgewählt." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 -msgid "Filter charts" -msgstr "Diagramme filtern" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "Einstellungen für Zeitreihen" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Filterkonfiguration" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "Datum-Zeit-Format" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Filterkonfiguration für die Filterkomponente" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" +msgstr "Partitionslimit" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" -msgstr "Filter hat den Standardwert" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "" +"Die maximale Anzahl von Unterteilungen jeder Gruppe; Niedrigere Werte " +"werden zuerst ausgeblendet" -#: superset-frontend/src/components/Table/index.tsx:201 -msgid "Filter menu" -msgstr "Filter-Menü" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "Partitionsschwellenwert" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -"Filtern Sie Metadaten, die im Dashboard geändert wurden. Wird nicht " -"angewendet." +"Partitionen, deren Höhen- zu Elternhöhenverhältnissen unter diesem Wert " +"liegen, werden ausgeblendet." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Tabellenname" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "Logarithmische Skala" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." -msgstr "" -"Filter zeigt nur Werte an, die für die Auswahl in anderen Filtern " -"relevant sind." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "Verwenden einer Logarithmischen Skala" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "Ergebnisse filtern" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "Gleiche Datumsgrößen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "Filtergruppe bereits vorhanden" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "Aktivieren, um zu erzwingen, dass Datumspartitionen die gleiche Höhe haben" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "Filtergruppe mit diesem Namen existiert bereits" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "Umfangreicher Tooltip" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" -msgstr "Filtergruppen (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "" +"Der umfangreiche Tooltip zeigt eine Liste aller Zeitreihen für diesen " +"Zeitpunkt" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" -msgstr "Filter Typ" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "Rollierendes Fenster" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Filterwert (Groß-/Kleinschreibung beachten)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "Rollierende Funktion" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" -msgstr "Filterwert ist erforderlich" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" +msgstr "cumsum" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "Filterwertliste darf nicht leer sein" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "Mindestzeiträume" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Filtern Sie Ihre Diagramme" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "Zeitvergleich" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filterbar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "Zeitverschiebung" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filter" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" +msgstr "1 Woche" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "Filter (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" +msgstr "28 Tage" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Nach Spalten filtern" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 Tage" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Nach Metriken filtern" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" +msgstr "52 Wochen" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Filterkonfiguration" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" +msgstr "1 Jahr" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" -msgstr "Filter außerhalb des Gültigkeitsbereichs (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" +msgstr "104 Wochen" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." -msgstr "" -"Filter mit demselben Gruppenschlüssel werden innerhalb der Gruppe ODER-" -"verknüpft, während verschiedene Filtergruppen zusammen UND-verknüpft " -"werden. Undefinierte Gruppenschlüssel werden als eindeutige Gruppen " -"behandelt, d.h. nicht gruppiert. Wenn eine Tabelle beispielsweise drei " -"Filter hat, von denen zwei für die Abteilungen Finanzen und Marketing " -"(Gruppenschlüssel = 'Abteilung') sind und einer sich auf die Region " -"Europa bezieht (Gruppenschlüssel = 'Region'), würde die Filterklausel den" -" Filter anwenden (Abteilung = 'Finanzen' ODER Abteilung = 'Marketing') " -"UND (Region = 'Europa')." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" +msgstr "2 Jahre" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "Fertigstellen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" +msgstr "156 Wochen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" -msgstr "Erste" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" +msgstr "3 Jahre" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -"Trendlinie auf den angegebenen vollen Zeitbereich fixieren, falls " -"gefilterte Ergebnisse nicht das Start- oder Enddatum enthalten" +"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum." +" Erwartet relative Zeitintervalle in natürlicher, englischer Sprache " +"(Beispiel: „24 hours“, „7 days“, „52 weeks“, „365 days“). Freitext wird " +"unterstützt." + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" +msgstr "Istwerte" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" -msgstr "Auf ausgewählten Zeitraum fixieren" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "minütlich (1T)" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "Fixiert" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "stündlich (1H)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" -msgstr "Fixierte Farbe" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "täglich (1D)" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Fixierte Farbe" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "wöchentlich (7D)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" -msgstr "Fester Punktradius" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "monatlich (1M)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" -msgstr "Fluss" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "jährlich zu Jahresbeginn (1AS)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" -msgstr "Schriftgröße" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Methode" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" -msgstr "Schriftgröße für Achsenbeschriftungen, Detailwerte und andere Textelemente" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "asfreq" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" -msgstr "Schriftgröße für den größten Wert in der Liste" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "Bfill" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" -msgstr "Schriftgröße für den kleinsten Wert in der Liste" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "ffill" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "Median" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "Teil eines Ganzen" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -"Für Presto und Postgres wird ein Buttons angezeigt, um Kosten vor dem " -"Ausführen einer Abfrage zu schätzen." +"Vergleichen Sie dieselbe zusammengefasste Metrik über mehrere Gruppen " +"hinweg." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" -msgstr "Weitere Anweisungen finden Sie in der" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" +msgstr "Partitionsdiagramm" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "Kategorisch" + +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" +msgstr "Verwenden von Flächenproportionen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -"Weitere Informationen zu Objekten im Kontext dieser Funktion finden Sie " -"im Abschnitt" +"Aktivieren, falls das Rose-Diagramm für die Proportionierung den " +"Segmentbereich anstelle des Segmentradius verwenden soll." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -"Bei regulären Filtern sind dies die Rollen, auf die dieser Filter " -"angewendet wird. Bei Basisfiltern sind dies die Rollen, auf die der " -"Filter NICHT angewendet wird, z. B. Admin, wenn Admin alle Daten sehen " -"soll." +"Ein Polarkoordinatendiagramm, in dem der Kreis in Sektoren mit gleichem " +"Winkel unterteilt ist und der Wert, der durch einen Sektor dargestellt " +"wird, durch seine Fläche und nicht durch seinen Radius oder Sweep-Winkel " +"veranschaulicht wird." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" -msgstr "Kraft" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "Nightingale Rose Diagramm" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." -msgstr "" -"Erzwingen Sie, dass alle Tabellen und Ansichten in diesem Schema erstellt" -" werden, wenn Sie in SQL Lab auf CTAS oder CVAS klicken." +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "Erweiterte Analysen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" -msgstr "Datumsformat erzwingen" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "Mehr-Ebenen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Aktualisierung erzwingen" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "Quelle / Ziel" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "Aktualisierung der Schemaliste erzwingen" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "Wählen Sie eine Quelle und ein Ziel" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "Aktualisierung erzwingen" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." +msgstr "" +"Das Einschränken von Zeilen kann zu unvollständigen Daten und " +"irreführenden Diagrammen führen. Erwägen Sie stattdessen, " +"Quell-/Zielnamen zu filtern oder zu gruppieren." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" -msgstr "Prognosezeiträume" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." +msgstr "" +"Visualisiert den Fluss der Werte verschiedener Gruppen durch verschiedene" +" Phasen eines Systems. Neue Stufen in der Pipeline werden als Knoten oder" +" Layer visualisiert. Die Dicke der Balken oder Kanten stellt die Metrik " +"dar, die visualisiert wird." -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" -msgstr "Fremdschlüssel" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "Demographische Daten" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Forest Green" -msgstr "Waldgrün" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "Umfrage-Antworten" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "" -"Formulardaten nicht im Cache gefunden, es wird auf Diagramm-Metadaten " -"zurückgesetzt." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "Sankey-Diagramm" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "" -"Formulardaten nicht im Cache gefunden. Es wird auf Datensatz-Metadaten " -"zurückgesetzt." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "Prozentwerte" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" -msgstr "Formattabelle" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "Sankey-Diagramm mit Schleifen" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" -msgstr "Formatierte CSV-Datei in E-Mail angehängt" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "Feldtyp \"Land\"" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" -msgstr "Formatiertes Datum" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" +msgstr "Vollständiger Name" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" -msgstr "Formatierter Wert" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" +msgstr "Code Internationales Olympisches Komitee (CIOC)" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" -msgstr "Formatierung" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" +msgstr "Code ISO 3166-1 alpha-2 (cca2)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" -msgstr "Formel" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "Code ISO 3166-1 alpha-3 (cca3)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" -msgstr "Vorwärtsinterpolation" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" -msgstr "Ungültige Order-By-Optionen gefunden" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" +msgstr "Blasen anzeigen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" -msgstr "Nachkommastellen" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "Ob Blasen über Ländern angezeigt werden sollen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" -msgstr "Häufigkeit" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "Maximale Blasengröße" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" -msgstr "Reibung" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" +msgstr "Einfärben nach" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" -msgstr "Reibung zwischen Knoten" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" +msgstr "" +"Wählen Sie aus, ob ein Land anhand der Metrik eingefärbt oder eine Farbe " +"basierend auf einer kategorialen Farbpalette zugewiesen werden soll." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Freitag" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "Länderspalte" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "‚Von Datum' kann nicht größer als ‚Bis-Datum' sein" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" +msgstr "3-Buchstaben-Code des Landes" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" -msgstr "Vollständiger Name" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "Metrik, die die Größe der Blase definiert" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" -msgstr "Trichterdiagramm" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "Blasenfarbe" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" -msgstr "Weitere Anpassungen der Anzeige der Spaltenanzeige" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "Länderfarbschema" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" -msgstr "Passen Sie weiter an, wie die einzelnen Metriken angezeigt werden sollen" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "Eine Weltkarte, die Werte in verschiedenen Ländern anzeigen kann." -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" -msgstr "Gruppieren nach" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "Multi-Dimensionen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" -msgstr "Tachometerdiagramm" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "Multi-Variablen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" -msgstr "Allgemein" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "Beliebt" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." -msgstr "Link wird generiert, bitte warten." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" +msgstr "Deck.gl - Diagramme" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" -msgstr "Generisches Diagramm" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" +msgstr "" +"Wählen Sie eine Reihe von deck.gl Diagrammen aus, die übereinander gelegt" +" werden sollen" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" -msgstr "Räumlich" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "Diagramme auswählen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" -msgstr "GeoJson-Spalte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" +msgstr "Fehler beim Abrufen von Diagrammen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" -msgstr "GeoJson-Einstellungen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "" +"Stellen Sie mehrere Ebenen zusammen, um komplexe visuelle Elemente zu " +"bilden." -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geo Hashing" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "Deck.gl - Mehrere Ebenen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "Das letzte Datum anhand der Datumseinheit anfordern." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "deckGL" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" -msgstr "Abrufen des angegebenen Datums für den Feiertag" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " +msgstr "Start (Längengrad, Breitengrad): " -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" -msgstr "" -"Gehen Sie in den Bearbeitungsmodus, um das Dashboard zu konfigurieren und" -" Diagramme hinzuzufügen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " +msgstr "Ende (Längengrad, Breitengrad): " -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" -msgstr "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "Start Längengrad & Breitengrad" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "Google Tabellen-Name und URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "Zeigen Sie auf Ihre räumlichen Spalten" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "Kulanzzeit" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "Ende Längen- und Breitengrad" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" -msgstr "Graphen-Diagramm" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" +msgstr "Bogen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "Graph-Layout" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" +msgstr "Zielfarbe" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" -msgstr "Anziehungskraft" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" +msgstr "Farbe des Zielortes" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" -msgstr "Größer oder gleich (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" +msgstr "Kategorien-Farbe" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" -msgstr "Größer als (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" +msgstr "Strichstärke" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" -msgstr "Raster" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Erweitert" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" -msgstr "Rastergröße" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." +msgstr "Entfernung (wie Flugrouten) zwischen Abflug- und Zielort zeichen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "Gruppieren nach" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "Deck.gl - Bogen" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" -msgstr "Gruppieren nach Filter-Plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "3-täglich (3D)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "Group By, Metriken oder Prozentmetriken müssen einen Wert haben" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "Web" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " +msgstr "Schwerpunkt (Längen- und Breitengrad): " -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 #, fuzzy -msgid "Group Key" -msgstr "Gruppieren nach" +msgid "Threshold: " +msgstr "Beschriftungsschwellenwert" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Gruppieren nach" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +#, fuzzy +msgid "The size of each cell in meters" +msgstr "Die Größe der quadratischen Zelle in Pixel" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Gruppierbar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +#, fuzzy +msgid "Aggregation" +msgstr "Aggregat" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" -msgstr "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "Die beim Aggregieren von Punkten in Gruppen zu verwendende Funktion" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" -msgstr "Handlebars-Vorlage" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +#, fuzzy +msgid "Contours" +msgstr "Kontinuierlich" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -"Harte Wertgrenzen für die Farbcodierung. Ist nur relevant und wird " -"angewendet, wenn die Normalisierung auf die gesamte Heatmap angewendet " -"wird." -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -msgid "Has created by" -msgstr "Hat „Erstellt von“" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" +msgstr "Gewicht" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Header" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "Metrik, die als Gewicht für die Färbung des Rasters verwendet wird" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "Kopfzeile" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Heatmap" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "Deck.gl - Bogen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" -msgstr "Heatmap-Optionen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Raumbezug" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Höhe" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "Experimentell" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" -msgstr "Höhe der Sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" +msgstr "GeoJson-Einstellungen" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" -msgstr "Linie ausblenden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Linienbreite" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -msgid "Hide chart description" -msgstr "Diagrammbeschreibung ausblenden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Parameter" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "Ebene verstecken" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +#, fuzzy +msgid "pixels" +msgstr "Pixel" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." -msgstr "Passwort ausblenden." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "Punktradius Maßstab" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Werkzeugleiste ausblenden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" +"Der GeoJsonLayer nimmt GeoJSON-formatierte Daten auf und stellt sie als " +"interaktive Polygone, Linien und Punkte (Kreise, Symbole und/oder Texte) " +"dar." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" -msgstr "Blendet die Linie für die Zeitreihe aus" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "Deck.gl - GeoJSON" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" -msgstr "Hierarchie" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" +msgstr "Längen- und Breitengrad" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Histogramm" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Höhe" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Startseite" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" +msgstr "Metrik zur Steuerung der Höhe" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" -msgstr "Horizont-Diagramm" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." +msgstr "" +"Visualisieren Sie Geodaten wie 3D-Gebäude, Landschaften oder Objekte in " +"der Rasteransicht." -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Horizontdiagramme" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" +msgstr "Deck.gl - Raster" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" -msgstr "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +#, fuzzy +msgid "Intesity" +msgstr "Intensität" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" -msgstr "Horizontal (oben)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" -msgstr "Horizontale Ausrichtung" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +#, fuzzy +msgid "Intensity Radius" +msgstr "Punktradius" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" -msgstr "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "Hostname oder IP-Adresse" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Deck.gl - Diagramme" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "Stunde" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" +msgstr "Dynamische Aggregationsfunktion" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" -msgstr "Stunden %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" +msgstr "Varianz" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "Stunden-Versatz" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" +msgstr "Abweichung" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "Wie möchten Sie die Anmeldeinformationen für das Dienstkonto eingeben?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "P1" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." -msgstr "Anzahl Buckets, in die Daten gruppiert werden sollen." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" +msgstr "P5" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" -msgstr "Wie viele Perioden in der Zukunft sollen prognostiziert werden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "P95" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" +msgstr "P99" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -"So zeigen Sie Zeitverschiebungen an: als einzelne Linien; als absolute " -"Differenz zwischen der Hauptzeitreihe und jeder Zeitverschiebung; als " -"prozentuale Veränderung; oder wenn sich das Verhältnis zwischen Reihe und" -" Zeit verschiebt." +"Überlagert ein sechseckiges Raster auf einer Karte und aggregiert Daten " +"innerhalb der Grenzen jeder Zelle." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" -msgstr "Riesig" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" +msgstr "Deck.gl - 3D Hexagon" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "ISO-3166-2-Codes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "Polylinie" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "Visualisiert verbundene Punkte, die einen Pfad bilden, auf einer Karte." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" -msgstr "ID" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" +msgstr "Deck.gl - Pfade" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "ID des Stammknotens der Struktur." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +msgid "name" +msgstr "Name" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"Für Presto oder Trino werden alle Abfragen in SQL Lab mit aktuell " -"angemeldeter Benutzer*in ausgeführt, der über die Berechtigung zum " -"Ausführen verfügen muss. Für Hive und falls hive.server2.enable.doAs " -"aktiviert sind, werden die Abfragen über das Service-Konto ausgeführt, " -"die Identität der aktuell angemeldeten Benutzer*in jedoch über die " -"hive.server2.proxy.user-Eigenschaft berücksichtigt." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" +msgstr "Polygon-Spalte" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"Für Presto werden alle Abfragen in SQL Lab als aktuell angemeldete " -"Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen " -"muss.
Für Hive und falls hive.server2.enable.doAs aktiviert sind, " -"werden die Abfragen als Dienstkonto ausgeführt, die Identität der aktuell" -" angemeldeten Benutzer*in erfolgt jedoch über die hive.server2.proxy" -".user-Eigenschaft." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" +msgstr "Polygon-Kodierung" -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" -msgstr "Wenn Tabelle bereits vorhanden ist" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" +msgstr "Höhendaten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "" -"Wenn eine Metrik angegeben wird, erfolgt die Sortierung basierend auf dem" -" Metrikwert" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" +msgstr "Polygon-Einstellungen" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" -msgstr "" -"Wenn doppelte Spalten nicht überschrieben werden, werden sie als \"X.1, " -"X.2 ... X.x\" dargestellt" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" +msgstr "Deckkraft, erwartet Werte zwischen 0 und 100" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "" -"Falls ausgewählt, legen Sie bitte die Schemata fest, die für den CSV-" -"Upload in Extra zulässig sind." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "Anzahl der Buckets zum Gruppieren von Daten" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." -msgstr "" -"Wenn eine Tabelle vorhanden ist, soll folgendes passieren: Fehlschlagen " -"(Nichts tun), Ersetzen (Tabelle löschen und neu erstellen) oder Anhängen " -"(Daten einfügen)." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "Anzahl Buckets, in die Daten gruppiert werden sollen." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" -msgstr "Cache beim Generieren eines Screenshots ignorieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" +msgstr "Klassen-Schwellwerte" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" -msgstr "Angesetzte (Null) Örtlichkeiten ignorieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." +msgstr "Liste der n+1-Werte für das Bucketing der Metrik in n Buckets." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" -msgstr "Zeit ignorieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" +msgstr "Filterereignisse ausgeben" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" -msgstr "Bild (PNG) in E-Mail eingebettet" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" +msgstr "Ob Filter angewendet werden soll, wenn auf Elemente geklickt wird" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." -msgstr "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" +msgstr "Mehrfachfilterung" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" +msgstr "Senden mehrerer Polygone als Filterereignis zulassen" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -"Identität von angemeldeter Benutzer*in annehmen (Presto, Trino, Drill & " -"Hive)" +"Visualisiert geografische Gebiete aus Ihren Daten als Polygone auf einer " +"von Mapbox gerenderten Karte. Polygone können mithilfe einer Metrik " +"eingefärbt werden." -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Identität von angemeldeter Benutzer*in annehmen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "Deck.gl - Polygon" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "Kategorie" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Importiere %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" +msgstr "Punktgröße" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Dashboards importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "Punkteinheit" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Dashboards importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" +msgstr "Quadratmeter" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "Tabellendefinition importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" +msgstr "Quadratkilometern" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "Fehler beim Importieren des Diagramms aus unbekanntem Grund" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" +msgstr "Quadratmeilen" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "Diagramm importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" +msgstr "Radius in Metern" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "Import-Dashboard aus unbekanntem Grund fehlgeschlagen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "Radius in Kilometern" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Dashboards importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" +msgstr "Radius in Meilen" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "Fehler beim Importieren der Datenbank aus unbekanntem Grund" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "Minimaler Radius" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" -msgstr "Datenbank aus Datei importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" +"Mindestradius des Kreises in Pixel. Wenn sich die Zoomstufe ändert, wird " +"sichergestellt, dass der Kreis diesen Mindestradius einhält." -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "Fehler beim Importieren des Datasatzes aus unbekanntem Grund" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "Maximaler Radius" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "Datensätze importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" +"Maximale Radiusgröße des Kreises in Pixel. Wenn sich die Zoomstufe " +"ändert, wird sichergestellt, dass der Kreis diesen maximalen Radius " +"einhält." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "Abfragen importieren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "Punktfarbe" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -"Der Import der gespeicherten Abfrage ist aus einem unbekannten Grund " -"fehlgeschlagen." +"Eine Karte, die Kreise mit einem variablen Radius bei Breiten" +"-/Längengrad-Koordinaten darstellt" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "deck.gl Streudiagramm" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" +msgstr "Raster" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -"Wichtig! Wählen Sie diese Option, wenn die Tabelle nicht bereits nach " -"Entitäts-ID sortiert ist, da sonst nicht garantiert ist, dass alle " -"Ereignisse für jede Entität zurückgegeben werden." +"Aggregiert Daten innerhalb der Grenzen von Rasterzellen und ordnet die " +"aggregierten Werte einer dynamischen Farbskala zu" -#: superset-frontend/src/explore/constants.ts:71 -msgid "In" -msgstr "in" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" +msgstr "Deck.gl - Bildschirmraster" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" -msgstr "Zeitreihen einschließen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" +"Weitere Informationen zu Objekten im Kontext dieser Funktion finden Sie " +"im Abschnitt" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" -msgstr "Fügen Sie eine Beschreibung hinzu, die mit Ihrem Bericht gesendet wird" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr " Quellcode des Sandbox-Parsers von Superset" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" -msgstr "Zeitreihennamen als Achse einschließen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "Diese Funktion ist in Ihrer Umgebung aus Sicherheitsgründen deaktiviert." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" -msgstr "Zeit einschließen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "Angesetzte (Null) Örtlichkeiten ignorieren" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" -msgstr "Index" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "Ob Örtlichkeiten ignoriert werden sollen, die null sind" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Index Spalte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "Auto-Zoom" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "Info" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" +"Wenn diese Option aktiviert ist, zoomt die Karte nach jeder Abfrage auf " +"Ihre Daten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "Innenradius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "Wählen Sie eine Dimension" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "Innerer Radius des Donutlochs" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "Zusätzliche Daten für JS" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "" +"Liste der zusätzlichen Spalten, die in JavaScript-Funktionen zur " +"Verfügung gestellt werden" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Sofortige Filterung" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" +msgstr "JavaScript-Daten-Interceptor" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" -msgstr "Intensität" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." +msgstr "" +"Definieren Sie eine JavaScript-Funktion, die das in der Visualisierung " +"verwendete Daten-Array empfängt und eine geänderte Version dieses Arrays " +"zurückgibt. Dies kann verwendet werden, um Eigenschaften der Daten zu " +"ändern, zu filtern oder das Array anzureichern." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -#, fuzzy -msgid "Intensity Radius" -msgstr "Punktradius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "JavaScript-Tooltip-Generator" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" +"Definieren Sie eine Funktion, die die Eingabe empfängt und den Inhalt für" +" einen Tooltip ausgibt" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" +msgstr "JavaScript onClick href" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" +"Definieren Sie eine Funktion, die eine URL zurückgibt, zu der navigiert " +"wird, wenn der/die Benutzer*in klickt" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" -msgstr "Automatisches Interpretieren des Datumzeit-Formats" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" +msgstr "Legendenformat" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" -msgstr "Automatisches Interpretieren des Datumzeit-Formats" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" +msgstr "Format für Legendenwerte auswählen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -msgid "Interval" -msgstr "Intervall" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" +msgstr "Position der Legende" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" -msgstr "Spalte \"Intervallende\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" +msgstr "Wählen Sie die Position der Legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" -msgstr "Intervallgrenzen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" +msgstr "Oben links" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" -msgstr "Intervallfarben" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" +msgstr "Oben rechts" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" -msgstr "Spalte \"Intervallstart\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" +msgstr "Unten links" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" +msgstr "Unten rechts" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" +msgstr "Linien-Spalte" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" +msgstr "Die Datenbankspalten, die Zeileninformationen enthalten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" -msgstr "Intervalle" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Linienbreite" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -#, fuzzy -msgid "Intesity" -msgstr "Intensität" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" +msgstr "Die Breite der Linien" -#: superset/db_engine_specs/ocient.py:274 -#, fuzzy +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" +msgstr "Füllfarbe" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -"Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt " -"normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" +" Setzen Sie die Deckkraft auf 0, wenn Sie die im GeoJSON angegebene Farbe" +" nicht überschreiben möchten." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "Ungültiges JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" +msgstr "Strichfarbe" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "Ungültiger erweiterter Datentyp: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" +msgstr "Gefüllt" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Ungültiges Zertifikat" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" +msgstr "Ob die Objekte gefüllt werden sollen" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" -msgstr "" -"Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge lautet " -"normalerweise:\n" -"\"DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" +msgstr "Gestrichelt" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" -msgstr "" -"Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt " -"normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" +msgstr "Ob der Strich dargestellt werden soll" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

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

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

" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" +msgstr "extrudiert" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Ungültiger Cron-Ausdruck" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" +msgstr "Ob das Raster in 3D umgewandelt werden soll" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Ungültiger kumulativer Operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" +msgstr "Rastergröße" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Ungültiges Datums-/Zeitstempelformat" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "Gibt die Rastergröße in Pixel an" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "Ungültige Filterkonfiguration, bitte Spalte auswählen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "Parameter in Bezug auf die Ansicht und Perspektive auf der Karte" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "Ungültiger Filtervorgangstyp: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" +msgstr "Längen- und Breitengrad" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "Ungültige geodätische Zeichenfolge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" +msgstr "Fester Punktradius" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "Ungültige Geohash-Zeichenfolge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "Multiplikator" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" -msgstr "Ungültige Eingabe" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "Faktor, mit dem die Metrik multipliziert wird" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Ungültige Längen-/Breitengrad-Konfiguration." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "Zeilenkodierung" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Ungültiger Längen-/Breitengrad" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" +msgstr "Das Kodierungsformat der Zeilen" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "Ungültiges Metrik-Objekt: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "Geohash (quadratisch)" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Ungültige Numpy-Funktion: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" +msgstr "Länge/Breite vertauschen " -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Ungültige Optionen für %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" +msgstr "GeoJson-Spalte" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" -msgstr "Ungültiger Permalink-Schlüssel" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "Wählen Sie die GeoJSON-Spalte aus" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "Format der rechten Achse" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "Ungültiger Ergebnistyp: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "Markierungen anzeigen" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "Ungültiger rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "Datenpunkte als Kreismarkierungen auf den Linien darstellen" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "Ungültiger räumlicher Punkt: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "Y-Grenzen" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." -msgstr "Ungültiger Zustand." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "Ob die Min- und Max-Werte der Y-Achse angezeigt werden sollen" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" -msgstr "Ungültige Tab-IDs: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "Y 2 Grenzen" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" -msgstr "Auswahl umkehren" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "Linien Stil" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" -msgstr "Aktuelle Seite umkehren" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" +msgstr "linear" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" -msgstr "Zertifiziert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" +msgstr "basis" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "Ist Dimension" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" +msgstr "Kardinal" -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" -msgstr "Ist falsch" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" +msgstr "monoton" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "Favoriten" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" +msgstr "step-before" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "Ist filterbar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" +msgstr "step-after" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" -msgstr "Ist nicht null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "Linieninterpolation gemäß d3.js" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" -msgstr "Ist null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" +msgstr "Bereichsfilter anzeigen" -#: superset/views/base_api.py:177 -msgid "Is tagged" -msgstr "Ist markiert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "Ob die interaktive Zeitbereichs-Auswahl angezeigt werden soll" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "Ist zeitlich" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "Zusätzliche Bedienelemente" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" -msgstr "Ist wahr" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "" +"Ob zusätzliche Steuerelemente angezeigt werden sollen oder nicht. Zu den " +"zusätzlichen Steuerelementen gehören Elemente wie das gestapelt oder " +"nebeneinander Erstellen von Multi-Bar-Diagrammen." -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Problem 1000 - Die Datenquelle ist zu groß, um sie abzufragen." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "X Tick Layout" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Problem 1001 - Die Datenbank ist ungewöhnlich belastet." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" +msgstr "flach" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." -msgstr "Es wird nicht empfohlen, die Achse im Balkendiagramm abzuschneiden." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" +msgstr "gestaffelt" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "Die Art und Weise, wie die Ticks auf der X-Achse angeordnet sind" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" +msgstr "X-Achsen-Format" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSON-Metadaten" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "Y-Log-Skala" -#: 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/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "Logarithmische Skala für die Y-Achse verwenden" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" -msgstr "JSON-Metadaten sind ungültig!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "Grenzen der Y-Achse" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -"JSON-Zeichenfolge mit zusätzlicher Verbindungskonfiguration. Diese wird " -"verwendet, um Verbindungsinformationen für Systeme wie Hive, Presto und " -"BigQuery bereitzustellen, die nicht der syntax username:password " -"entsprechen, welche normalerweise von SQLAlchemy verwendet wird." - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "JUL" +"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " +"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " +"Umfang der Daten nicht einschränken." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "JUN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "Grenzen der Y-Achse 2" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Januar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "X-Grenzen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" -msgstr "JavaScript-Daten-Interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "Ob die Min- und Max-Werte der X-Achse angezeigt werden sollen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" -msgstr "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "Balkenwerte" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" -msgstr "JavaScript-Tooltip-Generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "Anzeigen des Werts oben auf der Leiste" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" -msgstr "Jinja Vorlagen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "Gestapelte Balken" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" -msgstr "Json-Liste der Spaltennamen, die gelesen werden sollen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "Reduzieren Sie X Ticks" -#: superset/views/database/forms.py:474 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -"JSON-Liste der Spaltennamen, die gelesen werden sollen. Wenn nicht " -"‚Keine‘, werden nur diese Spalten aus der Datei gelesen." +"Reduziert die Anzahl der darzustellenden X-Achsen-Ticks. Wenn WAHR, läuft" +" die x-Achse nicht über und Beschriftungen fehlen möglicherweise. Wenn " +"FALSCH, wird eine Mindestbreite auf Spalten angewendet und die Breite " +"kann in einen horizontalen Bildlauf überlaufen." -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -"Json-Liste der Werte, die als null behandelt werden sollen. Beispiele: " -"[\"\"] für leere Zeichenketten, [\"Keine\", \"N/A\"], [\"nan\", " -"\"null\"]. Warnung: Hive-Datenbank unterstützt nur einen einzigen Wert" +"Sie können das 45°-Strich-Layout nicht zusammen mit dem " +"Zeitbereichsfilter verwenden" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." -msgstr "" -"Json-Liste der Werte, die als NULL behandelt werden sollen. Beispiele: " -"[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Die Hive-" -"Datenbank unterstützt nur einen einzelnen Wert. Verwenden Sie [\"\"] für " -"die leere Zeichenfolge." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "Gestapelter Stil" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Juli" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" +msgstr "Stack" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Juni" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" +msgstr "Stream" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" -msgstr "KPI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" +msgstr "aufklappen" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" -msgstr "Steuerelement-Einstellungen beibehalten?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "Entwicklung" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "Weiter bearbeiten" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." +msgstr "" +"Ein Zeitreihendiagramm, das visualisiert, wie sich eine verwandte Metrik " +"aus mehreren Gruppen im Laufe der Zeit ändert. Jede Gruppe wird mit einer" +" anderen Farbe visualisiert." -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" -msgstr "Schlüssel" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "Gestreckter Stil" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "Schlüssel für Tabelle" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "Gestapelter Stil" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Kilometers" -msgstr "Kilometer" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "Videospielkonsolen" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" -msgstr "GRENZE" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" +msgstr "Fahrzeugtypen" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Label" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" +msgstr "Flächendiagramm (Legacy)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" -msgstr "Beschriftungslinie" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "Kontinuierlich" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" -msgstr "Beschriftungstyp" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" +msgstr "Linie" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" -msgstr "Label existiert bereits" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "nvd3" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Bezeichnung für Ihre Anfrage" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "Veraltet" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" -msgstr "Beschriftungsposition" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" +msgstr "Zeitreihenlimit Sortieren nach" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" -msgstr "Beschriftungsschwellenwert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." +msgstr "" +"Metrik, die verwendet wird, um das Limit zu ordnen, wenn ein " +"Zeitreihenlimit vorhanden ist. Wenn nicht definiert, wird auf die erste " +"Metrik zurückgesetzt (falls geeignet)." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" -msgstr "Beschriftung" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" +msgstr "Zeitreihenlimit absteigend sortieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" -msgstr "Beschriftungen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "" +"Ob absteigend oder aufsteigend sortiert werden soll, wenn ein " +"Reihengrenzwert vorhanden ist" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" -msgstr "Beschriftungen für die Markerlinien" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." +msgstr "" +"Visualisieren Sie mithilfe von Balken, wie sich eine Metrik im Laufe der " +"Zeit ändert. Fügen Sie eine Gruppe nach Spalte hinzu, um Metriken auf " +"Gruppenebene und deren Änderung im Laufe der Zeit zu visualisieren." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" -msgstr "Beschriftungen für die Marker" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" +msgstr "Zeitreihen-Balkendiagramm (Legacy)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" -msgstr "Beschriftungen für Bereiche" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "Balken" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "Vertikal" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Boxplot" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" -msgstr "Groß" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "X-Log-Skala" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" -msgstr "Letzte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "Logarithmische Skala für die X-Achse verwenden" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Zuletzt geändert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "" +"Visualisiert eine Metrik über drei Datendimensionen in einem einzelnen " +"Diagramm (X-Achse, Y-Achse und Blasengröße). Blasen aus derselben Gruppe " +"können mit Blasenfarbe präsentiert werden." -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Zuletzt geändert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +#, fuzzy +msgid "Bubble Chart (legacy)" +msgstr "Liniendiagramm (Legacy)" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Letzte Aktualisierung %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" +msgstr "Bereiche" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" -msgstr "Zuletzt aktualisiert %s von %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "Bereiche, die mit Schattierung hervorgehoben werden sollen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" -msgstr "Letzter verfügbarer Wert auf %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "Bereichsbeschriftungen" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Zuletzt geändert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "Beschriftungen für Bereiche" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Zuletzt geändert durch %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "Marker" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Letzte Ausführung" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "Liste der Werte, die mit Dreiecken markiert werden sollen" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" -msgstr "Breitengrad" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "Markierungsbeschriftungen" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" -msgstr "Breitengrad des Standardansichtsfensters" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "Beschriftungen für die Marker" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Ebenen-Konfiguration" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "Markierungslinien" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" -msgstr "Layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "Liste der Werte, die mit Linien markiert werden sollen" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" -msgstr "Layout-Elemente" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "Markierungslinienbeschriftungen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" -msgstr "Layouttyp des Diagramms" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "Beschriftungen für die Markerlinien" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" -msgstr "Layouttyp des Baums" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "KPI" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -"Blattknoten, die weniger als diese Anzahl von Ereignissen darstellen, " -"werden zunächst in der Visualisierung ausgeblendet." - -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "Zuletzt geändert" +"Zeigt den Fortschritt einer einzelnen Metrik gegenüber einem bestimmten " +"Ziel. Je höher die Füllung, desto näher ist die Metrik am Ziel." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" -msgstr "Links" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" +"Visualisiert viele verschiedene Zeitreihenobjekte in einem einzigen " +"Diagramm. Dieses Diagramm ist überholt, und wir empfehlen, stattdessen " +"das Zeitreihendiagramm zu verwenden." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" -msgstr "Format der linken Achse" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "Zeitreihen - Prozentuale Veränderung" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" -msgstr "Diagramm(e) der linken Achse" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "Balken sortieren" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" -msgstr "Linker Abstand" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "Sortieren Sie Balken nach x-Beschriftungen." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" -msgstr "Linker Rand in Pixeln, um mehr Platz für Achsenbeschriftungen zu schaffen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" +msgstr "Aufschlüsselungen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" -msgstr "Links nach rechts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "Definiert, wie jede Reihe aufgeschlüsselt wird" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" -msgstr "Linker Wert" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "" +"Vergleicht Metriken aus verschiedenen Kategorien mithilfe von Balken. " +"Balkenlängen werden verwendet, um die Größe jedes Werts anzugeben, und " +"Farbe wird verwendet, um Gruppen zu unterscheiden." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "Veraltet" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "Balkendiagramm (Legacy)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" -msgstr "Legende" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" +msgstr "Additiv" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" -msgstr "Legendenformat" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" +msgstr "Diskret" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -msgid "Legend Orientation" -msgstr "Legenden-Ausrichtung" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "Propagieren" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" -msgstr "Position der Legende" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "Bereichsfilter-Ereignisse an andere Diagramme senden" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" -msgstr "Legendentyp" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "" +"Klassisches Diagramm, das visualisiert, wie sich Metriken im Laufe der " +"Zeit ändern." -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" -msgstr "Kleiner oder gleich (<=)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" +msgstr "Akkustand im Laufe der Zeit" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" -msgstr "Weniger als (<)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" +msgstr "Liniendiagramm (Legacy)" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" -msgstr "Prozentuale Präzision erhöhen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" +msgstr "Beschriftungstyp" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" -msgstr "Hell" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" +msgstr "Kategoriename" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" -msgstr "Heller Modus" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Wert" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" -msgstr "Wie (Like)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" +msgstr "Prozentsatz" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" -msgstr "Like (Groß-/Kleinschreibung wird nicht beachtet)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "Kategorie und Wert" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Limit erreicht" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "Kategorie und Prozentsatz" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "Auswahlwerte einschränken" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "Kategorie, Wert und Prozentsatz" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" -msgstr "Typ einschränken" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "Was sollte als Beschriftung angezeigt werden?" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." -msgstr "" -"Das Einschränken von Zeilen kann zu unvollständigen Daten und " -"irreführenden Diagrammen führen. Erwägen Sie stattdessen, " -"Quell-/Zielnamen zu filtern oder zu gruppieren." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "Donut" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." -msgstr "Begrenzt die Anzahl der Zeilen, die angezeigt werden." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "Donut oder Torten-Diagramm?" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "Begrenzt die Anzahl der Zeilen, die angezeigt werden." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "Beschriftung anzeigen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -"Begrenzt die Anzahl der Zeitreihen, die angezeigt werden. Eine " -"Unterabfrage (oder eine zusätzliche Phase, falls Unterabfragen nicht " -"unterstützt werden) wird angewendet, um die Anzahl der Zeitreihen zu " -"begrenzen, die abgerufen und angezeigt werden. Diese Funktion ist " -"nützlich, wenn Sie nach Dimension(en) mit hoher Kardinalität gruppieren, " -"erhöht jedoch die Abfragekomplexität und -kosten." +"Ob die Beschriftungen angezeigt werden sollen. Beachten Sie, dass die " +"Beschriftung nur angezeigt wird, wenn der Schwellenwert von 5 % erreicht " +"ist." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" -msgstr "Linie" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "Beschriftung außerhalb darstellen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" -msgstr "Liniendiagramm" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "Beschriftungen außerhalb des Kuchens anordnen?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +#, fuzzy +msgid "Pie Chart (legacy)" msgstr "Liniendiagramm (Legacy)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" -msgstr "Linien Stil" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" +msgstr "Häufigkeit" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." -msgstr "" -"Liniendiagramm wird verwendet, um Messungen zu visualisieren, die über " -"eine bestimmte Kategorie durchgeführt wurden. Liniendiagramm ist eine Art" -" Diagramm, das Informationen als eine Reihe von Datenpunkten anzeigt, die" -" durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender " -"Diagrammtyp, der in vielen Bereichen üblich ist." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "Jahr (freq=AS)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" -msgstr "Linieninterpolation gemäß d3.js" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "52 Wochen, beginnend am Montag (freq=52W-MON)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "Linienbreite" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "1 Woche beginnend am Sonntag (freq=W-SUN)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" -msgstr "Farbverlaufschema" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" +msgstr "1 Woche beginnend am Montag (freq=W-MON)" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Farbverlaufschema" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "Tag (freq=D)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" -msgstr "Lineare Interpolation" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "4 Wochen (freq=4W-MON)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -msgid "Lines column" -msgstr "Linien-Spalte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." +msgstr "" +"Die Periodizität, über die die Zeit pilotiert werden soll. Benutzer " +"können\n" +" ein“ Pandas\" Offset-Alias angeben.\n" +" Klicken Sie auf die Infoblase, um weitere Informationen zu " +"akzeptierten \"freq\"-Ausdrücken zu erhalten." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" -msgstr "Zeilenkodierung" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" +msgstr "Zeitreihen - Perioden-Pivot" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Link kopiert!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" +msgstr "Formel" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Gespeicherte Abfragen auflisten" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" +msgstr "Ereignis" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" -msgstr "Eindeutige Werte auflisten" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" +msgstr "Intervall" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" -msgstr "" -"Liste der zusätzlichen Spalten, die in JavaScript-Funktionen zur " -"Verfügung gestellt werden" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" +msgstr "Gestapelt" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." -msgstr "Liste der n+1-Werte für das Bucketing der Metrik in n Buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" +msgstr "Stream" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" -msgstr "Liste der Werte, die mit Linien markiert werden sollen" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" +msgstr "Erweitern" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" -msgstr "Liste der Werte, die mit Dreiecken markiert werden sollen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "Legende anzeigen" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" -msgstr "Liste aktualisiert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "Ob eine Legende für das Diagramm angezeigt werden soll" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "Live CSS Editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "Rand" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" -msgstr "Live-Darstellung" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "Zusätzliche Einrückung für Legende." -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "CSS Vorlage laden" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" +msgstr "Scrollen" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Geladene Daten zwischengespeichert" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "Unformatiert" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Aus Zwischenspeicher geladen" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "Legendentyp" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" -msgstr "Lädt" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" +msgstr "Ausrichtung" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "Lade..." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" +msgstr "Unten" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -msgid "Locate the chart" -msgstr "Suchen des Diagramms" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" +msgstr "Rechts" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" -msgstr "Logarithmische Skala" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" +msgstr "Legenden-Ausrichtung" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "Protokollaufbewahrung" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" +msgstr "Wert anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" -msgstr "Logarithmische Achse" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" +msgstr "Reihenwerten im Diagramm anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" -msgstr "Logarithmische Skala auf primärer y-Achse" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "Reihen übereinander stapeln" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" -msgstr "Logarithmische Skala auf sekundärer y-Achse" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "Nur Gesamtwert" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" -msgstr "Logarithmische y-Achse" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "" +"Zeigen Sie nur den Gesamtwert im gestapelten Diagramm und nicht in der " +"ausgewählten Kategorie an" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Anmelden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" +msgstr "Prozentualer Schwellenwert" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen." + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "Umfangreicher Tooltip" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" -msgstr "Anmelden mit" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "Zeigt eine Liste aller zu diesem Zeitpunkt verfügbaren Zeitreihen an." -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Abmelden" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" +msgstr "Tooltip-Zeitformat" -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Protokolle" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "Tooltip nach Metrik sortieren" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" -msgstr "Lange gestrichelt" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "" +"Ob der Tooltip nach der ausgewählten Metrik in absteigender Reihenfolge " +"sortiert werden soll." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "Längengrad" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "Tooltip" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" -msgstr "Längen- und Breitengrad" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" +msgstr "Zeitreihen sortieren nach" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Längen- und Breitengradspalten" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "" +"Basierend darauf, wonach Zeitreihen im Diagramm und in der Legende " +"angeordnet werden sollten" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" -msgstr "Längen- und Breitengrad" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" +msgstr "Zeitreihen aufsteigend sortieren" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" -msgstr "Längengrad des Standardansichtfensters" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "Sortieren von Zeitreihen in aufsteigender Reihenfolge" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "MÄR" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "X-Achsenbeschriftung drehen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "MAI" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "MO" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" +msgstr "Zeitreihen-Reihenfolge" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Haupt-Datums/Zeit-Spalte" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Y-Achse abschneiden" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#, fuzzy msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -"Stellen Sie sicher, dass die Steuerelemente ordnungsgemäß konfiguriert " -"sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." +"Schneiden Sie die Y-Achse ab. Kann überschrieben werden, indem eine min- " +"oder max-Bindung angegeben wird." + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "Grenzen der Y-Achse" -#: superset/views/core.py:1752 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +#, fuzzy msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -"Fehlerhafte Anforderung. slice_id oder table_name und db_name Argumente " -"werden erwartet" - -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Verwalten" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" -msgstr "E-Mail-Bericht verwalten" - -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" -msgstr "Verwalten Sie Ihre Datenbanken" +"Grenzen für die Achse. Wenn sie leer gelassen werden, werden die Grenzen " +"dynamisch basierend auf den Min/Max-Werten der Daten definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Der Umfang der " +"Daten wird dadurch nicht eingeschränkt." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "Notwendig" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "Metriken kombinieren" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." -msgstr "Min/Max-Werte für die y-Achse manuell festlegen." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +#, fuzzy +msgid "Show minor ticks on axes." +msgstr "Ob kleinere Ticks auf der Achse angezeigt werden sollen" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" -msgstr "Karte" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" -msgstr "Karten Stil" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" +msgstr "Letzter verfügbarer Wert auf %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" -msgstr "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" +msgstr "Nicht aktuell" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Keine Daten" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "März" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" +msgstr "" +"Keine Daten nach dem Filtern oder Daten sind NULL für den letzten " +"Zeitdatensatz" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" -msgstr "Rand" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" +"Versuchen Sie, andere Filter anzuwenden oder sicherzustellen, dass Ihre " +"Datenquelle Daten enthält" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "Markieren einer Spalte als temporär im Modal \"Datenquelle bearbeiten\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "Große Zahl Schriftgröße" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" -msgstr "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "Sehr klein" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" -msgstr "Markergröße" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "Klein" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" -msgstr "Markierungsbeschriftungen" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "Normal" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" -msgstr "Markierungslinienbeschriftungen" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" +msgstr "Groß" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" -msgstr "Markierungslinien" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "Riesig" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" -msgstr "Markergröße" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "Schriftgröße Untertitel" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" -msgstr "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" +msgstr "Darstellungs-Einstellungen" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Markup-Typ" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" +msgstr "Untertitel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "Beschreibungstext, der unter Ihrer Großen Zahl angezeigt wird" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" -msgstr "Maximale Blasengröße" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" +msgstr "Datumsformat" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" -msgstr "Maximale Anzahl von Ereignissen" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" +msgstr "Datumsformat erzwingen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" -msgstr "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" +msgstr "" +"Verwenden Sie die Datumsformatierung, auch wenn der Metrikwert kein " +"Zeitstempel ist" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" -msgstr "Maximale Schriftgrösse" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Bedingte Formatierung" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" -msgstr "Maximaler Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Bedingten Farbformatierung auf Metriken anwenden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -"Maximale Radiusgröße des Kreises in Pixel. Wenn sich die Zoomstufe " -"ändert, wird sichergestellt, dass der Kreis diesen maximalen Radius " -"einhält." +"Zeigt eine einzelne Metrik im Vordergrund. ‚Große Zahl‘ wird am besten " +"verwendet, um die Aufmerksamkeit auf einen KPI oder die eine Information " +"zu lenken, auf die sich Ihr Publikum konzentrieren soll." + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "Eine Große Zahl" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "Mit einem Untertitel" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Maximum value" -msgstr "Maximalwert" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Große Zahl" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" -msgstr "Maximalwert auf der Messgerät-Skala" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "Verzögerung des Vergleichszeitraums" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Mai" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "" +"Basierend auf der Granularität, Anzahl der Zeiträume, mit denen " +"verglichen werden soll" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" -msgstr "Mittelwert der Werte über einen bestimmten Zeitraum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "Vergleichssuffix" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Mean values" -msgstr "Mittelwerte" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "Suffix, das hinter der Prozentanzeige angezeigt werden soll" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" -msgstr "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "Zeitstempel anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." -msgstr "Mittlere Kantenbreite, die dickste Kante ist 4-mal dicker als die dünnste." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "Ob der Zeitstempel angezeigt werden soll" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" -msgstr "Mittlere Knotengröße, der größte Knoten ist 4-mal größer als der kleinste" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "Trendlinie anzeigen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" -msgstr "Medianwerte" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "Ob die Trendlinie angezeigt werden soll" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" -msgstr "Mittel" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "y-Achse bei 0 beginnen" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" -msgstr "Auslöser von Menüaktionen" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" +"Beginnen Sie die y-Achse bei Null. Deaktivieren Sie das Kontrollkästchen," +" um die y-Achse beim Minimalwert in den Daten beginnen zu lassen." -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "Nachrichteninhalt" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "Auf ausgewählten Zeitraum fixieren" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" -msgstr "Metadaten" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" +"Trendlinie auf den angegebenen vollen Zeitbereich fixieren, falls " +"gefilterte Ergebnisse nicht das Start- oder Enddatum enthalten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" -msgstr "Metadaten Parameter" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" +msgstr "ZEITLICHE X-ACHSE" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "Metadaten wurden synchronisiert" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "" +"Zeigt eine einzelne Zahl zusammen mit einem einfachen Liniendiagramm, um " +"die Aufmerksamkeit auf eine wichtige Metrik zusammen mit ihrer " +"Veränderung im Laufe der Zeit oder einer anderen Dimension zu lenken." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "Methode" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Große Zahl mit Trendlinie" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Metrik" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "Whisker/Ausreißer-Optionen" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "Metrik '%(metric)s' existiert nicht" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "Bestimmt, wie „Whisker“ und Ausreißer berechnet werden." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" -msgstr "Metrik aufsteigend" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" +msgstr "Turkey" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Metrik, die der [X]-Achse zugewiesen ist" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "Min/Max (keine Ausreißer)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Metrik, die der [Y]-Achse zugewiesen ist" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "2/98 Perzentile" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" -msgstr "Metrische Wertänderung von 'seit' zu 'bis'" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "9/91 Perzentile" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" -msgstr "Metrik absteigend" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "Kategorien, nach denen auf der x-Achse gruppiert werden soll." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" -msgstr "Änderung des metrischen Faktors von \"seit\" zu \"bis\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" +msgstr "Verteilen über" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" -msgstr "Metrik für Knotenwerte" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." +msgstr "Spalten, über die Verteilung berechnet werden soll." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -msgid "Metric name" -msgstr "Name der Metrik" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." +msgstr "" +"Diese Visualisierung, die auch als Box-Whisker-Plot bezeichnet wird, " +"vergleicht die Verteilungen einer Metrik über mehrere Gruppen hinweg. Der" +" Kasten in der Mitte stellt den Mittelwert, den Median und die inneren 2 " +"Quartile dar. Die sogenannten „Whisker“ um jede Box visualisieren die " +"Min-, Max-, Range- und äußeren 2 Quartile." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "Metrikname [%s] wird dupliziert" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "ECharts" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" -msgstr "Metrische prozentuale Wertänderung von \"seit\" zu \"bis\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +#, fuzzy +msgid "Bubble size number format" +msgstr "Kleines Zahlenformat" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" -msgstr "Metrik, die die Größe der Blase definiert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Blasen-Diagramm" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" -msgstr "Metrik zur Anzeige des unteren Titels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Metrik zum Sortieren der Ergebnisse nach" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "Metrik, die als Gewicht für die Färbung des Rasters verwendet wird" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +#, fuzzy +msgid "Logarithmic x-axis" +msgstr "Logarithmische y-Achse" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" -msgstr "Metrik zur Berechnung der Blasengröße" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +#, fuzzy +msgid "Rotate y axis label" +msgstr "X-Achsenbeschriftung drehen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" -msgstr "Metrik zur Steuerung der Höhe" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "Y-ACHSE TITEL RAND" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." -msgstr "" -"Metrik, die verwendet wird, um zu definieren, wie die obersten Zeitreihen" -" sortiert werden, wenn ein Zeitreihen- oder ein Zellen-Limit vorhanden " -"ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls" -" zutreffend)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "Logarithmische y-Achse" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." -msgstr "" -"Metrik, die verwendet wird, um zu definieren, wie die obersten Reihen " -"sortiert werden, wenn eine Reihen- oder Zeilenbegrenzung vorhanden ist. " -"Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls " -"zutreffend)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "Y-Achse abschneiden" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -"Metrik, die verwendet wird, um das Limit zu ordnen, wenn ein " -"Zeitreihenlimit vorhanden ist. Wenn nicht definiert, wird auf die erste " -"Metrik zurückgesetzt (falls geeignet)." +"Schneiden Sie die Y-Achse ab. Kann überschrieben werden, indem eine min- " +"oder max-Bindung angegeben wird." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Metriken" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Berechnungstyp" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -"Metriken, für die ein Prozentsatz der Gesamtsumme angezeigt werden soll. " -"Berechnet nur aus Daten innerhalb des Zeilenlimits." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" -msgstr "Mitte" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" -msgstr "Mitternacht" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -msgid "Miles" -msgstr "Meilen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +#, fuzzy +msgid "Percent of total" +msgstr "der Gesamtsumme" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" -msgstr "Mindestzeiträume" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" +msgstr "Beschriftungen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" -msgstr "Min. Breite" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Zellinhalt" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "Mindestzeiträume" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Kategorie und Prozentsatz" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" -msgstr "Min/Max (keine Ausreißer)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +#, fuzzy +msgid "What should be shown as the label" +msgstr "Was sollte als Beschriftung angezeigt werden?" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "Meine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Zellinhalt" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" -msgstr "Minimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +#, fuzzy +msgid "What should be shown as the tooltip label" +msgstr "Was sollte als Beschriftung angezeigt werden?" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" -msgstr "Minimale Schriftgröße" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "Ob die Beschriftungen angezeigt werden sollen." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" -msgstr "Minimaler Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "Gesamtwerte anzeigen" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" -msgstr "Minimale Anzahl der Blattknotenereignisse" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "Ob die Beschriftungen angezeigt werden sollen." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -"Mindestradius des Kreises in Pixel. Wenn sich die Zoomstufe ändert, wird " -"sichergestellt, dass der Kreis diesen Mindestradius einhält." +"Zeigt, wie sich eine Metrik im Laufe des Trichters ändert. Dieses " +"klassische Diagramm ist nützlich, um den Abfall zwischen Phasen in einer " +"Pipeline oder einem Lebenszyklus zu visualisieren." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." -msgstr "Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" +msgstr "Trichterdiagramm" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Minimum value" -msgstr "Minimalwert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "Fortlaufend" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." -msgstr "Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "Spalten, nach denen gruppiert wird" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "Allgemein" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Min" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 msgid "Minimum value on the gauge axis" msgstr "Minimalwert auf der Messgerät-Skala" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" -msgstr "Kleine geteilte Linie" - -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "Minute" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Max" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" -msgstr "Minuten %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "Maximalwert auf der Messgerät-Skala" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" -msgstr "Fehlende URL-Parameter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "Startwinkel" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "Fehlender Datensatz" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "Winkel, an dem die Fortschrittsachse gestartet werden soll" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Chart" -msgstr "Gemischtes Diagramm" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "Endwinkel" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "Gemischte Zeitreihen" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Geändert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "Winkel, an dem die Fortschrittsachse enden soll" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" -msgstr "Geändert %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "Schriftgröße" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Geändert durch" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "Schriftgröße für Achsenbeschriftungen, Detailwerte und andere Textelemente" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "Geänderte Spalten: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "Wertformat" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Montag" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "" +"Zusätzlicher Text, der vor oder nach dem Wert hinzugefügt werden kann, z." +" B. Einheit" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "Monat" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "Zeiger anzeigen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" -msgstr "Monate %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "Ob der Zeiger angezeigt werden soll" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -msgid "More" -msgstr "Mehr" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" +msgstr "Animation" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -msgid "More filters" -msgstr "Weitere Filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "Ob der Fortschritt und der Wert animiert oder nur angezeigt werden sollen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" -msgstr "Nur verschieben" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "Achse" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "" -"Verschiebt den angegebenen Satz von Datumsangaben um ein angegebenes " -"Intervall." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "Anzeigen von Achsenlinien-Ticks" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" -msgstr "Multi-Dimensionen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "Ob kleinere Ticks auf der Achse angezeigt werden sollen" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" -msgstr "Mehr-Ebenen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "Geteilte Linien anzeigen" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" -msgstr "Mehrstufige" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "Ob die geteilten Linien auf der Achse angezeigt werden sollen" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" -msgstr "Multi-Variablen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" +msgstr "Zahl aufteilen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" -msgstr "Mehrfach" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "Anzahl der geteilten Segmente auf der Achse" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" -msgstr "Mehr-Liniendiagramme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "Fortschritt" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." -msgstr "" -"Unterschiedliche Dateierweiterungen sind für spaltenförmige Uploads nicht" -" zulässig. Bitte stellen Sie sicher, dass alle Dateien die gleiche " -"Erweiterung haben." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "Fortschritt anzeigen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" -msgstr "Mehrfachfilterung" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "Ob der Fortschritt der Messgerätediagramms angezeigt werden soll" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" -msgstr "" -"Mehrere Formate akzeptiert, recherchieren Sie in der geopy.points Python-" -"Bibliothek nach weiteren Details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" +msgstr "Überlappen" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -"Mehrfachauswahl zulässig, andernfalls ist der Filter auf einen einzelnen " -"Wert beschränkt" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" -msgstr "Multiplikator" +"Ob sich der Fortschrittsbalken überschneidet, wenn mehrere Datengruppen " +"vorhanden sind" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "Muss eindeutig sein" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "Runde Kappe" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" -msgstr "Sie müssen entweder ein Diagramm oder ein Dashboard auswählen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "Enden des Fortschrittsbalkens mit einer runden Kappe versehen" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "" -"Muss eine Spalte [Gruppieren nach] haben, um 'count' als [Label] zu " -"verwenden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" +msgstr "Intervalle" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Mindestens eine numerische Spalte erforderlich" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "Intervallgrenzen" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" -msgstr "Anmeldeinformationen für den SSH-Tunnel sind verpflichtend" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." +msgstr "" +"Durch Kommas getrennte Intervallgrenzen, z.B. 2,4,5 für die Intervalle " +"0-2, 2-4 und 4-5. Die letzte Zahl sollte mit dem für MAX angegebenen Wert" +" übereinstimmen." -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" -msgstr "Muss einen Wert für Filter mit Vergleichsoperatoren angeben" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" +msgstr "Intervallfarben" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" -msgstr "Meine schönen Farben" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." +msgstr "" +"Kommagetrennte Farbwerte für die Intervalle, z.B. 1,2,4. Ganzzahlen " +"bezeichnen Farben aus dem gewählten Farbschema und sind 1-indiziert. Die " +"Anzahl muss mit der der Intervallgrenzen übereinstimmen." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" -msgstr "Meine Spalte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." +msgstr "" +"Verwendet ein Tachometer, um den Fortschritt einer Metrik in Richtung " +"eines Ziels anzuzeigen. Die Position des Zifferblatts stellt den " +"Fortschritt und der Endwert im Tachometer den Zielwert dar." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Meine Metrik" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" +msgstr "Tachometerdiagramm" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" -msgstr "k.A." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "Name der Quellknoten" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" -msgstr "NICHT GRUPPIERT NACH" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "Name der Zielknoten" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "Quellkategorie" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "JETZT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." +msgstr "" +"Die Kategorie der Quellknoten, die zum Zuweisen von Farben verwendet " +"werden. Wenn ein Knoten mehr als einer Kategorie zugeordnet ist, wird nur" +" die erste verwendet." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -msgid "NUMERIC" -msgstr "NUMERISCH" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "Zielkategorie" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "Kategorie der Zielknoten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "Diagramm-Optionen" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "Name muss eindeutig sein" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "Layout" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." -msgstr "Name der Tabelle, die aus tabellarischen Daten erstellt werden soll." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "Graph-Layout" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Name der Tabelle, die aus Excel-Daten erstellt werden soll." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "Kraft" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" -msgstr "Name der Tabelle, die aus CSV-Daten erstellt werden soll" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "Layouttyp des Diagramms" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" -msgstr "Name der Spalte, die die ID des übergeordneten Knotens enthält" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "Kantensymbole" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" -msgstr "Name der ID-Spalte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "Symbol für zwei Enden der Kantenlinie" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" -msgstr "Name der Quellknoten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "Keine -> Keine" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Name der Tabelle in der Quell-Datenbank" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "Keine -> Pfeil" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" -msgstr "Name der Zielknoten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "Kreis -> Pfeil" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" -msgstr "Benennen der Datenbank" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "Kreis -> Kreis" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" -msgstr "Benötigen Sie Hilfe? Erfahren Sie, wie Sie Ihre Datenbank verbinden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "Aktivieren des Ziehens von Knoten" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" -msgstr "Benötigen Sie Hilfe? Erfahren Sie mehr über" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "" +"Ob das Ziehen von Knoten im Kräfte-basierten Layoutmodus aktiviert werden" +" soll." -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" -msgstr "Netzwerkfehler" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "Graph-Roaming aktivieren" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Netzwerk-Fehler." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "Deaktiviert" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Neues Diagramm" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "Nur Skalieren" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "Neue Spalten hinzugefügt: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "Nur verschieben" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -msgid "New dataset" -msgstr "Neuer Datensatz" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "Skalieren und Verschieben" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" -msgstr "Name des neuen Datensatzes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "Neue Filtergruppe" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "Knotenauswahlmodus" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -msgid "New header" -msgstr "Neue Überschrift" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "Einzeln" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "Neuer Tab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "Mehrfach" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" -msgstr "Neue Registerkarte (Strg + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "Knotenauswahl zulassen" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" -msgstr "Neue Registerkarte (Strg + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "Beschriftungsschwellenwert" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Weiter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" -msgstr "Nightingale Rose Diagramm" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" +msgstr "Knotengröße" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "Nein" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "Mittlere Knotengröße, der größte Knoten ist 4-mal größer als der kleinste" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "Noch keine %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" +msgstr "Kantenbreite" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Keine Zugriff!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "Mittlere Kantenbreite, die dickste Kante ist 4-mal dicker als die dünnste." -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" -msgstr "Keine Daten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "Kantenlänge" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" -msgstr "Keine Ergebnisse" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "Kantenlänge zwischen Knoten" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "Noch keine aktuellen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "Anziehungskraft" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -msgid "No annotation layers" -msgstr "Keine Anmerkungs-Layer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "Stärke, mit der Graph in Richtung Mitte gezogen wird" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Noch keine Anmerkungsebenen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" +msgstr "Abstoßung" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Noch keinen Anmerkungen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "Abstoßungsstärke zwischen Knoten" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -msgid "No applied filters" -msgstr "Keine angewendete Filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" +msgstr "Reibung" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." -msgstr "Keine Filter verfügbar." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "Reibung zwischen Knoten" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Keine Diagramme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" +"Zeigt Verbindungen zwischen Elementen in einer Graphstruktur an. " +"Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem" +" Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, " +"dass sie kraftgesteuert sind oder zirkulieren. Wenn Ihre Daten über eine " +"Geodatenkomponente verfügen, versuchen Sie es mit dem deck.gl Arc-" +"Diagramm." -#: superset-frontend/src/features/home/EmptyState.tsx:34 -msgid "No charts yet" -msgstr "Noch keine Diagramme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "Graphen-Diagramm" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "Keine Spalten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "Strukturell" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -msgid "No columns found" -msgstr "Keine Spalten gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Ob absteigend oder aufsteigend sortiert werden soll" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" -msgstr "Keine kompatiblen Quellen gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" +msgstr "Zeitreihentyp" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" -msgstr "Keine kompatiblen Datensätze gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "Glatte Linie" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" -msgstr "Kein kompatibles Schema gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "Schritt - Start" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Keine Dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "Schritt - Mitte" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -msgid "No dashboards yet" -msgstr "Noch keine Dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "Schritt - Ende" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Keine Daten" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "Zeitreihendiagrammtyp (Linie, Balken usw.)" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" -msgstr "" -"Keine Daten nach dem Filtern oder Daten sind NULL für den letzten " -"Zeitdatensatz" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "Stack-Serie" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "Keine Daten in Datei" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" +msgstr "Flächendiagramm" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" -msgstr "Keine Datenbanktabellen gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "Zeichnen Sie den Bereich unter Kurven. Gilt nur für Linientypen." -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "Keine Datenbanken stimmen mit Ihrer Suche überein" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "Deckkraft des Flächendiagramms." -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." -msgstr "Keine Beschreibung verfügbar." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "Marker" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "Noch keine Lieblingsdashboards, klicken Sie auf die Sterne!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "Zeichnen Sie eine Markierung auf Datenpunkten. Gilt nur für Linientypen." -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Noch keine Lieblingsdashboards, klicken Sie auf die Sterne!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "Markergröße" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" -msgstr "Kein Filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "Größe des Markers. Gilt auch für Prognosebeobachtungen." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Kein Filter ausgewählt." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "Primär" -#: superset-frontend/src/components/Table/index.tsx:204 -msgid "No filters" -msgstr "Keine Filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "Sekundär" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." -msgstr "Bisher wurden diesem Dashboard noch keine Filter hinzugefügt." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "Primäre oder sekundäre y-Achse" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" -msgstr "Es wurden keine Formulareinstellungen beibehalten" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +msgid "Shared query fields" +msgstr "Freigegebene Abfragefelder" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" -msgstr "Derzeit sind keine globalen Filter gesetzt" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" +msgstr "Abfrage A" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" -msgstr "Keine passenden Einträge gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" +msgstr "Advanced Analytics Abfrage A" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" -msgstr "Anzahl der Bis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" +msgstr "Abfrage B" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" -msgstr "Noch keine aktuellen" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" +msgstr "Advanced Analytics Abfrage B" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Keine Datensätze gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "Datenzoom" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" -msgstr "Keine Ergebnisse" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "Aktivieren von Steuerelementen für das Zoomen von Daten" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Keine Ergebnisse gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "Kleine geteilte Linie" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" -msgstr "Keine Ergebnisse entsprechen Ihren Filterkriterien" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "Geteilten Linien für kleinere Ticks der y-Achse zeichnen" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" -msgstr "Für diese Abfrage wurden keine Ergebnisse zurückgegeben" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Primäres y-Achsenformat" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +#, fuzzy msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -"Für diese Abfrage wurden keine Ergebnisse zurückgegeben. Wenn Sie " -"erwartet haben, dass Ergebnisse zurückgegeben werden, stellen Sie sicher," -" dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle " -"Daten für den ausgewählten Zeitraum enthält." +"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " +"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " +"Umfang der Daten nicht einschränken." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" -msgstr "Für diesen Datensatz wurden keine Zeilen zurückgegeben" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "Primäres y-Achsenformat" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "Logarithmische Skala auf primärer y-Achse" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Sekundäres y-Achsenformat" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " +"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " +"Umfang der Daten nicht einschränken." -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" -msgstr "Für diesen Dataensatz wurden keine Beispiele zurückgegeben" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "Sekundäres y-Achsenformat" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" -msgstr "Keine gespeicherten Ausdrücke gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +#, fuzzy +msgid "Secondary currency format" +msgstr "Sekundäres y-Achsenformat" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" -msgstr "Keine gespeicherten Metriken gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "Titel der sekundären y-Achse" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -msgid "No saved queries yet" -msgstr "Noch keine gespeicherten Abfragen" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "Logarithmische Skala auf sekundärer y-Achse" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -"Keine gespeicherten Ergebnisse gefunden. Sie müssen Ihre Abfrage erneut " -"ausführen" +"Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. " +"Beachten Sie, dass beide Reihen mit einem anderen Diagrammtyp " +"visualisiert werden können (z. B. eine mit Balken und die andere mit " +"einer Linie)." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." -msgstr "" -"Eine solche Spalte wurde nicht gefunden. Um nach einer Metrik zu filtern," -" versuchen Sie es mit der Registerkarte Benutzerdefinierte SQL." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" +msgstr "Gemischtes Diagramm" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -msgid "No table columns" -msgstr "Keine Tabellenspalten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "Sollen die Beschriftungen außerhalb der Torte dargestellt werden?" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" -msgstr "Keine Zeitspalten gefunden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "Beschriftungslinie" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "Nicht-Zeitspalten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "Linie von Torte zur Beschriftung ziehen, wenn Beschriftungen außerhalb?" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "Kein Validator gefunden (für das Modul konfiguriert)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" +msgstr "Gesamtsumme anzeigen" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" -msgstr "Kein Validator mit dem Namen {} gefunden (konfiguriert für das {}-Modul)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "Ob die Gesamtanzahl angezeigt werden soll" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" -msgstr "Position der Knotenbeschriftung" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "Kreisform" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" -msgstr "Knotenauswahlmodus" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "Aussenradius" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" -msgstr "Knotengröße" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "Äußerer Rand des Kreisdiagramms" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" -msgstr "Keine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "Innenradius" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" -msgstr "Keine -> Pfeil" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "Innerer Radius des Donutlochs" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "Keine -> Keine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "" +"Der Klassiker. Großartig, um zu zeigen, wie viel von einem Unternehmen " +"jeder Investor bekommt, welche Demografie Ihrem Blog folgt oder welcher " +"Teil des Budgets in den militärisch-industriellen Komplex fließt.\n" +"\n" +"Kreisdiagramme können schwierig zu interpretieren sein. Wenn die Klarheit" +" des relativen Anteils wichtig ist, sollten Sie stattdessen die " +"Verwendung eines Balkens oder eines anderen Diagrammtyps in Betracht " +"ziehen." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "Kreisdiagramm" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" -msgstr "Normalisieren über" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" +msgstr "Gesamt: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" -msgstr "Normalisiert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "Der Maximalwert von Metriken. Optionale Konfiguration" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" -msgstr "Keine Zeitreihen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "Beschriftungsposition" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -msgid "Not added to any dashboard" -msgstr "Zu keinem Dashboard hinzugefügt" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "Radar" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" -msgstr "Nicht verfügbar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "Anpassen von Metriken" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" -msgstr "Ist nicht gleich (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "Passen Sie weiter an, wie die einzelnen Metriken angezeigt werden sollen" -#: superset-frontend/src/explore/constants.ts:72 -msgid "Not in" -msgstr "Nicht in" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "Kreisradarform" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "Nicht NULL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "Radar-Darstellungsart, ob die Kreisform angezeigt werden soll." -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" -msgstr "Nicht ausgelöst" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" +"Visualisieren Sie einen parallelen Satz von Metriken über mehrere Gruppen" +" hinweg. Jede Gruppe wird mit einer eigenen Punktlinie visualisiert und " +"jede Metrik wird als Kante im Diagramm dargestellt." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" -msgstr "Nicht aktuell" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" +msgstr "Radar-Diagramm" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Nichts ausgelöst" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "Primäre Metrik" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "Benachrichtigungsmethode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "Die primäre Metrik wird verwendet, um die Bogensegmentgrößen zu definieren" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "November" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "Sekundäre Metrik" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" -msgstr "Jetzt" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" +msgstr "" +"[optional] Diese sekundäre Metrik wird verwendet, um die Farbe als " +"Verhältnis zur primären Metrik zu definieren. Wenn keine angegeben, " +"werden diskrete Farben verwendet, die auf den Beschriftungen basieren" -#: superset/views/database/forms.py:211 -msgid "Null Values" -msgstr "NULL Werte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" +"Wenn nur eine primäre Metrik bereitgestellt wird, wird eine kategoriale " +"Farbpalette verwendet." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" -msgstr "Fehlwert-Imputation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" +"Wenn eine sekundäre Metrik bereitgestellt wird, wird eine lineare " +"Farbskala verwendet." -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Null oder Leer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "Hierarchie" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "NULL Werte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" +"Legt die Hierarchieebenen des Diagramms fest. Jede Ebene ist\n" +" dargestellt durch einen Ring mit dem innersten Kreis als Spitze " +"der Hierarchie." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" -msgstr "Zahlenformat" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "" +"Verwendet Kreise, um den Datenfluss durch verschiedene Phasen eines " +"Systems zu visualisieren. Bewegen Sie den Mauszeiger über einzelne Pfade " +"in der Visualisierung, um die Phasen zu verstehen, die ein Wert " +"durchlaufen hat. Nützlich für die Visualisierung von Trichtern und " +"Pipelines in mehreren Gruppen." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "Sunburst Diagramm" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "Mehrstufige" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" +"Bei Verwendung einer anderen als der adaptiven Formatierung können sich " +"Beschriftungen überschneiden" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -"Zahlengrenzen, die für die Farbkodierung von Rot nach Blau verwendet " -"werden.\n" -" Kehren Sie die Zahlen für Blau in Rot um. Um reines Rot " -"oder Blau zu erhalten,\n" -" können Sie entweder nur min oder max eingeben." +"Schweizer Taschenmesser zur Visualisierung von Daten. Wählen Sie zwischen" +" Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser " +"Visualisierungstyp hat auch viele Anpassungsoptionen." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" -msgstr "Nummern Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" +msgstr "Generisches Diagramm" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" -msgstr "Zahlenformat-Zeichenfolge" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "Zoombereich" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" -msgstr "Anzahl der Buckets zum Gruppieren von Daten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" +msgstr "Zoom wiederherstellen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" -msgstr "Anzahl der Dezimalstellen, auf die gerundet wird" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" +msgstr "Zeitreihenstil" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "Anzahl der Dezimalstellen, mit denen Hubwerte angezeigt werden sollen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" +msgstr "Deckkraft des Flächendiagramms" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "Anzahl der Dezimalstellen, mit denen p-Werte angezeigt werden sollen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "Deckkraft des Flächendiagramms. Gilt auch für das Vertrauensband." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" -msgstr "Anzahl der zu vergleichenden Perioden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "Markergröße" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" -msgstr "Anzahl ins Verhältnis zu setzender Perioden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "" +"Flächendiagramme ähneln Liniendiagrammen, da sie Variablen mit der " +"gleichen Skala darstellen, aber Flächendiagramme stapeln die Metriken " +"übereinander." -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" -msgstr "Anzahl der aus Datei zu lesenden Zeilen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "Flächendiagramm" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "Anzahl der aus Datei zu lesenden Zeilen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" +msgstr "Titel der Achse" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" -msgstr "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "ABSTAND DES ACHSENTITELS" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" +msgstr "Y-ACHSE TITEL POSITION" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" -msgstr "Anzahl der geteilten Segmente auf der Achse" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" +msgstr "Achsenformat" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "" -"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der " -"X-Skala ausgeführt werden müssen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" +msgstr "Logarithmische Achse" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "" -"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der " -"Y-Skala ausgeführt werden müssen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "Zeichnen von Trennlinien für kleinere Achsenteilstriche" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" -msgstr "Numerischer Bereich" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" +msgstr "Achse abschneiden" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "OKT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "Es wird nicht empfohlen, die Achse im Balkendiagramm abzuschneiden." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" +msgstr "Achsenbegrenzungen" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "ÜBERSCHREIBEN" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Grenzen für die Achse. Wenn sie leer gelassen werden, werden die Grenzen " +"dynamisch basierend auf den Min/Max-Werten der Daten definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Der Umfang der " +"Daten wird dadurch nicht eingeschränkt." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Oktober" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" +msgstr "Diagrammausrichtung" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" +msgstr "Balken-Ausrichtung" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Offset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" +msgstr "Horizontal" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" -msgstr "Kulanz" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" +msgstr "Ausrichtung des Balkendiagramms" -#: superset-frontend/src/explore/controls.jsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "" +"Balkendiagramme werden verwendet, um Metriken als eine Reihe von Balken " +"anzuzeigen." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" +msgstr "Balkendiagramm" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -"Eine oder mehrere Spalten, nach denen gruppiert werden soll. " -"Gruppierungen mit hoher Kardinalität sollten ein Zeitreihenlimit " -"enthalten, um die Anzahl der abgerufenen und dargestellten Zeitreihen zu " -"begrenzen." +"Liniendiagramm wird verwendet, um Messungen zu visualisieren, die über " +"eine bestimmte Kategorie durchgeführt wurden. Liniendiagramm ist eine Art" +" Diagramm, das Informationen als eine Reihe von Datenpunkten anzeigt, die" +" durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender " +"Diagrammtyp, der in vielen Bereichen üblich ist." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" +msgstr "Liniendiagramm" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -"Eine oder mehrere Spalten, nach denen gruppiert werden soll. " -"Gruppierungen mit hoher Kardinalität sollten eine Sortierung nach Metrik " -"und Zeitreihenbegrenzung enthalten, um die Anzahl der abgerufenen und " -"dargestellten Reihen zu begrenzen." +"Das Punktdiagramm hat die horizontale Achse in linearen Einheiten, und " +"die Punkte sind in der richtigen Reihenfolge verbunden. Es zeigt eine " +"statistische Beziehung zwischen zwei Variablen." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" -msgstr "Eine oder mehrere Spalten, die als Spalten pivotiert werden sollen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "Streudiagramm" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -"Ein oder mehrere Steuerelemente, nach denen gruppiert werden soll. Bei " -"der Gruppierung müssen Breiten- und Längengradspalten vorhanden sein." +"„Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne Winkel und " +"harte Kanten wirkt „Glatte Linie“ manchmal passender und professioneller." -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "Ein oder mehrere Steuerelemente, um zu Spalten zu pivotieren" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "Schritttyp" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Eine oder mehrere anzuzeigende Metriken" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Start" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "Eine oder mehrere Spalten sind bereits vorhanden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" +msgstr "Mitte" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "Eine oder mehrere Spalten werden dupliziert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Ende" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "Eine oder mehrere Spalten sind nicht vorhanden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "" +"Definiert, ob der Schritt am Anfang, in der Mitte oder am Ende zwischen " +"zwei Datenpunkten erscheinen soll" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Eine oder mehrere Metriken sind bereits vorhanden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" +"Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine " +"Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von " +"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich" +" sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " +"Abständen auftreten." -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Eine oder mehrere Metriken werden dupliziert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" +msgstr "Stufendiagramm" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Eine oder mehrere Metriken sind nicht vorhanden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "ID" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." -msgstr "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "Name der ID-Spalte" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" +msgstr "Übergeordnet" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "Name der Spalte, die die ID des übergeordneten Knotens enthält" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "" -"Ein oder mehrere in der Abfrage angegebene Parameter haben das falsche " -"Format." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "Optionaler Name der Datenspalte." -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." -msgstr "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "Wurzelknoten-ID" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." -msgstr "" -"Ein oder mehrere Pflichtfelder fehlen in der Anfrage. Versuchen Sie es " -"erneut, und wenn das Problem weiterhin besteht, wenden Sie sich an Ihre/n" -" Administrator*in." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "ID des Stammknotens der Struktur." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "Metrik für Knotenwerte" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." -msgstr "Nur 'SELECT'-Anweisungen sind für diese Datenbank zulässig." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "Baum-Layout" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" -msgstr "Nur Gesamtwert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "Orthogonal" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Nur 'SELECT'-Anweisungen sind zulässig" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" +msgstr "Radial" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." -msgstr "" -"Gilt nur, wenn \"Beschriftungstyp\" nicht auf einen Prozentsatz " -"festgelegt ist." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "Layouttyp des Baums" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "" -"Gilt nur, wenn \"Beschriftungstyp\" so eingestellt ist, dass Werte " -"angezeigt werden." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" +msgstr "Baumausrichtung" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "Nur ausgewählte Bereiche sind von diesem Filter betroffen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" +msgstr "Links nach rechts" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" -msgstr "" -"Zeigen Sie nur den Gesamtwert im gestapelten Diagramm und nicht in der " -"ausgewählten Kategorie an" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "Rechts nach links" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "Nur einzelne Abfragen werden unterstützt" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "Oben nach unten" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "Nur die folgenden Dateierweiterungen sind zulässig: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "Von Unten nach Oben" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" -msgstr "Hoppla! Ein Fehler ist aufgetreten!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "Ausrichtung des Baumes" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Deckkraft" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "Position der Knotenbeschriftung" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." -msgstr "Deckkraft des Flächendiagramms. Gilt auch für das Vertrauensband." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "Links" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "Deckkraft aller Cluster, Punkte und Beschriftungen. Zwischen 0 und 1." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" +msgstr "Oben" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." -msgstr "Deckkraft des Flächendiagramms." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" +msgstr "Rechts" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" -msgstr "Deckkraft, erwartet Werte zwischen 0 und 100" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" +msgstr "Unten" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Datenquellen-Reiter öffnen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" +msgstr "Beschriftungs-Position der Zwischenknoten im Baum" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "In SQL Lab öffnen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "Untergeordnete Beschriftungsposition" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Bearbeiten in SQL Editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "Position der Beschriftung des untergeordneten Knotens in der Struktur" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." -msgstr "" -"Betreiben Sie die Datenbank im asynchronen Modus, was bedeutet, dass die " -"Abfragen auf Remote-Workern und nicht auf dem Webserver selbst ausgeführt" -" werden. Dies setzt voraus, dass Sie sowohl über ein Celery-Worker-Setup " -"als auch über ein Ergebnis-Backend verfügen. Weitere Informationen finden" -" Sie in den Installationsdokumenten." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "Hervorhebung" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" -msgstr "Operator" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "Vorfahr" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Operator undefiniert für Aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" +msgstr "Nachkomme" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." -msgstr "" -"Optionale CA_BUNDLE Inhalte, um HTTPS-Anforderungen zu überprüfen. Nur " -"für bestimmte Datenbank-Engines verfügbar." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "Welche Verwandten beim Überfahren mit der Maus hervorgehoben werden sollen" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" -msgstr "Optionale d3-Datumsformat-Zeichenfolge" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" +msgstr "Symbol" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" -msgstr "Optionale d3-Zahlenformat-Zeichenfolge" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "Leerer Kreis" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." -msgstr "Optionaler Name der Datenspalte." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" +msgstr "Kreis" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" -msgstr "Optionale Warnung zur Verwendung dieser Metrik" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" +msgstr "Rechteck" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" -msgstr "Optionen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "Dreieck" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" -msgstr "Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "Diamant" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" -msgstr "Nach Entitäts-ID sortieren" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "Pin" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" -msgstr "Ergebnisse nach ausgewählten Spalten sortieren" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "Pfeil" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" -msgstr "Sortierung" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" +msgstr "Symbolgröße" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -msgid "Orientation" -msgstr "Ausrichtung" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "Größe der Kantensymbole" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" -msgstr "Ausrichtung des Balkendiagramms" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "" +"Visualisieren Sie mehrere Hierarchieebenen mit einer vertrauten " +"baumartigen Struktur." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" -msgstr "Ausrichtung des Filterbalkens" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "Baumdiagramm" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" -msgstr "Ausrichtung des Baumes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "Obere Beschriftungen anzeigen" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" -msgstr "Original" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "Zeigen Sie Beschriftungen an, wenn der Knoten untergeordnete Elemente hat." -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Ursprüngliche Tabellenspaltenreihenfolge" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "Schlüssel" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "Ursprünglicher Wert" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" +"Zeigen Sie hierarchische Beziehungen von Daten, wobei der Wert durch " +"Fläche dargestellt wird, der Anteil und Beitrag zum Ganzen zeigt." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" -msgstr "Orthogonal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Treemap" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" -msgstr "Andere" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +#, fuzzy +msgid "Total" +msgstr "der Gesamtsumme" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" -msgstr "Outdoor-Aktivitäten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +#, fuzzy +msgid "Assist" +msgstr "basis" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" -msgstr "Aussenradius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "Erstellen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" -msgstr "Äußerer Rand des Kreisdiagramms" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "Erstellen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" -msgstr "Überlappen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Zeitreihenspalte" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum." -" Erwartet relative Zeitintervalle in natürlicher Sprache (Beispiel: 24 " -"Stunden, 7 Tage, 52 Wochen, 365 Tage). Freitext wird unterstützt." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum." -" Erwartet relative Zeitintervalle in natürlicher, englischer Sprache " -"(Beispiel: „24 hours“, „7 days“, „52 weeks“, „365 days“). Freitext wird " -"unterstützt." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." -msgstr "" -"Überlagert ein sechseckiges Raster auf einer Karte und aggregiert Daten " -"innerhalb der Grenzen jeder Zelle." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Alle Diagramm durchsuchen" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" -msgstr "Zeitgranularität überschreiben" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "page_size.all" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" -msgstr "Zeitbereich überschreiben" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Lade..." -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Überschreiben Scheibe %s" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" +msgstr "Handlebars-Template zur Darstellung der Daten verfassen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Überschreiben & Erkunden" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "Handlebars" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Dashboard überschreiben [%s]" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "Muss einen Wert haben" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" -msgstr "Doppelte Spalten überschreiben" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" +msgstr "Handlebars-Vorlage" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" -msgstr "Bestehende überschreiben" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "Ein Handelbars-Template, das auf die Daten angewendet wird" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Überschreiben von Text im Editor mit einer Abfrage für diese Tabelle" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" +msgstr "Zeit einschließen" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" -msgstr "Im Besitz, Erstellt oder Favorisiert" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" +msgstr "Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden soll" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Besitzer*in" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "Prozentuale Metriken" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Besitzende" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." +msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "Besitzende sind ungültig" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "Gesamtwerte anzeigen" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -"Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern " -"können." +"Zeigen Sie die Gesamtaggregationen ausgewählter Metriken an. Beachten " +"Sie, dass das Zeilenlimit nicht für das Ergebnis gilt." -#: 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." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" +msgstr "Sortierung" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "Ergebnisse nach ausgewählten Spalten sortieren" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Absteigend sortieren" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "Server-Paginierung" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -"Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern " -"können. Durchsuchbar nach Name oder Benutzer*innenname." +"Aktivieren der serverseitigen Paginierung der Ergebnisse (experimentelle " +"Funktion)" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" -msgstr "Seitenlänge" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "Server-Seitenlänge" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" -msgstr "Gepaarte t-Test-Tabelle" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "Zeilen pro Seite, 0 bedeutet keine Paginierung" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Pandas Resample-Methode" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "Abfragemodus" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Pandas Resample-Regel" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "Group By, Metriken oder Prozentmetriken müssen einen Wert haben" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Parallele Koordinaten" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "" +"Sie müssen die HTML-Bereinigung (sanitization) aktivieren, um CSS " +"verwenden zu können" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Parameter-Fehler" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "CSS Stile" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parameter" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "Auf das Diagramm angewendetes CSS" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " -msgstr "Parameter" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" -msgstr "Parameter in Bezug auf die Ansicht und Perspektive auf der Karte" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +#, fuzzy +msgid "Range for Comparison" +msgstr "Zeitvergleich" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" -msgstr "Übergeordnet" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "Zeitvergleich" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "Datumsangaben auswerten" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" -msgstr "Teil eines Ganzen" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" -msgstr "Partitionsdiagramm" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "Spalten, nach denen in den Spalten gruppiert werden soll" -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "Partitionsdiagramm" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Zeilen" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" -msgstr "Partitionslimit" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "Spalten, nach denen in den Zeilen gruppiert werden soll" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" -msgstr "Partitionsschwellenwert" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" +msgstr "Metriken anwenden auf" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "" +"Verwenden von Metriken als Gruppe der obersten Ebene für Spalten oder " +"Zeilen" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" +msgstr "Zellgrenze" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." +msgstr "Begrenzt die Anzahl der Zeilen, die angezeigt werden." + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Partitionen, deren Höhen- zu Elternhöhenverhältnissen unter diesem Wert " -"liegen, werden ausgeblendet." +"Metrik, die verwendet wird, um zu definieren, wie die obersten Zeitreihen" +" sortiert werden, wenn ein Zeitreihen- oder ein Zellen-Limit vorhanden " +"ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls" +" zutreffend)." + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "Aggregationsfunktion" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "Password" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" +msgstr "Anzahl" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" -msgstr "Privaten Schlüssel hier einfügen" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "Eindeutige Werte zählen" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" -msgstr "" -"Fügen Sie den Inhalt der JSON-Datei für Dienstanmeldeinformationen hier " -"ein" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" +msgstr "Eindeutige Werte auflisten" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "Fügen Sie die gemeinsam nutzbare Google Tabellen-URL hier ein" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "Summe" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" -msgstr "Muster" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" +msgstr "Durchschnitt" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" -msgstr "Prozentuale Veränderung" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "Median" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" -msgstr "Prozentsatz" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "Stichprobenvarianz" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" -msgstr "Prozentuale Veränderung" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "Standardabweichung von Stichprobe" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" -msgstr "Prozentuale Metriken" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "Minimum" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" -msgstr "Prozentualer Schwellenwert" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "Maximum" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" -msgstr "Prozentwerte" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "Erste" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" -msgstr "Leistung" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "Letzte" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" -msgstr "Periodendurchschnitt" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "Summe als Anteil am Gesamtbetrag" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Zeiträume" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "Summe als Anteil der Zeilen" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" -msgstr "Perioden müssen eine ganze Zahl sein" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "Summe als Anteil der Spalten" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." -msgstr "Person oder Gruppe, die dieses Diagramm zertifiziert hat." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "Als Anteil der Gesamtsumme zählen" -#: 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." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "Als Anteil der Zeilen zählen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "Person oder Gruppe, die diese Metrik zertifiziert hat" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "Als Anteil der Spalten zählen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "Physisch" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "" +"Aggregatfunktion, die beim Pivotieren und Berechnen der Summe der Zeilen " +"und Spalten angewendet werden soll" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "Physisch (Tabelle oder Ansicht)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "Zeilensumme anzeigen" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Physischer Datensatz" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "Summe auf Zeilenebene anzeigen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" -msgstr "Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "Zeilensumme anzeigen" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "" -"Wählen Sie eine Granularität im Abschnitt Zeit aus oder deaktivieren Sie " -"\"Zeit einschließen\"." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +#, fuzzy +msgid "Display row level subtotal" +msgstr "Summe auf Zeilenebene anzeigen" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Wählen Sie eine Metrik für die linke Achse!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "Spaltensumme anzeigen" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Wählen Sie eine Metrik für die rechte Achse!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "Summe auf Spaltenebene anzeigen" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Wählen Sie eine Metrik für x, y und Größe" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "Spaltensumme anzeigen" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Wählen Sie eine Anzeige-Metrik" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +#, fuzzy +msgid "Display column level subtotal" +msgstr "Summe auf Spaltenebene anzeigen" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Wählen Sie eine Metrik!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "Pivot transponieren" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." -msgstr "" -"Wählen Sie einen Namen aus, der Ihnen hilft, diese Datenbank zu " -"identifizieren." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "Zeilen und Spalten vertauschen" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." -msgstr "" -"Wählen Sie einen Kurznamen mit dem die Datenbank in Superset angezeigt " -"werden soll." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" +msgstr "Metriken kombinieren" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -"Wählen Sie eine Reihe von deck.gl Diagrammen aus, die übereinander gelegt" -" werden sollen" +"Zeigen Sie Metriken innerhalb jeder Spalte nebeneinander an, im Gegensatz" +" zur Darstellung einer Spalte je Metrik." -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Wählen Sie eine Zeitgranularität für Ihre Zeitreihe" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "D3-Zeitformat für datetime-Spalten" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." -msgstr "Wählen Sie einen Titel für Ihre Anmerkung aus." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" +msgstr "Zeilen sortieren nach" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Wählen Sie mindestens ein Feld für [Serie] aus." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "Schlüssel a-z" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Wählen Sie mindestens eine Metrik aus" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "Schlüssel z-a" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Wählen Sie genau 2 Spalten als [Quelle / Ziel]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" +msgstr "Wert aufsteigend" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." -msgstr "" -"Wählen Sie eine oder mehrere Spalten aus, die in der Anmerkung angezeigt " -"werden sollen. Wenn Sie keine Spalte auswählen, werden alle angezeigt." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "Wert absteigend" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Wählen Sie Ihre bevorzugte Markup-Sprache" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "Reihenfolge der Zeilen ändern." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" -msgstr "Kreisdiagramm" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" +msgstr "Verfügbare Sortiermodi:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" -msgstr "Kreisform" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "Nach Schlüssel: Zeilennamen als Sortierschlüssel verwenden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" -msgstr "Pin" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "Nach Wert: Metrikwerte als Sortierschlüssel verwenden" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Pivot-Tabelle" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" +msgstr "Spalten sortieren nach" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "Pivot-Operation muss mindestens ein Aggregat enthalten" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "Reihenfolge der Spalten ändern." -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "Pivot-Operation erfordert mindestens einen Index" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "Nach Schlüssel: Spaltennamen als Sortierschlüssel verwenden" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" -msgstr "Pilotiert" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "Zeilen Zwischensummenposition" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "Pixelhöhe jeder Serie" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "Position der Zwischensumme auf Zeilenebene" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" -msgstr "Pixel" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "Zwischensummenposition der Spalten" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" -msgstr "Unformatiert" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "Position der Zwischensumme auf Spaltenebene" -#: 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." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" +msgstr "Bedingte Formatierung" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" -msgstr "Bitte wenden Sie Filteränderungen an" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "Bedingten Farbformatierung auf Metriken anwenden" -#: superset/sqllab/query_render.py:118 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -"Bitte überprüfen Sie Ihre Anfrage und vergewissern Sie sich, dass alle " -"Vorlagenparameter von doppelten Klammern umgeben sind, z. B. \"{{ ds " -"}}\". Versuchen Sie dann erneut, die Abfrage auszuführen." +"Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere " +"Statistiken entlang zweier Achsen gruppiert werden. Beispiele: " +"Verkaufszahlen nach Region und Monat, Aufgaben nach Status und " +"Beauftragtem, aktive Nutzer nach Alter und Standort. Nicht die visuell " +"beeindruckendste Visualisierung, aber sehr informativ und vielseitig." -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." -msgstr "" -"Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler bei oder in der Nähe " -"von \"%(syntax_error)s\". Versuchen Sie dann erneut, die Abfrage " -"auszuführen." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Pivot-Tabelle" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." -msgstr "" -"Bitte überprüfen Sie Ihre Anfrage auf Syntaxfehler in der Nähe von " -"\"%(server_error)s\". Versuchen Sie dann erneut, die Abfrage auszuführen." +msgid "Total (%(aggregatorName)s)" +msgstr "Insgesamt (%(aggregatorName)s)" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "Unbekanntes Eingabeformat" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -"Überprüfen Sie Ihre Vorlagenparameter auf Syntaxfehler und stellen Sie " -"sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen " -"übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset/viz.py:3234 -msgid "Please choose at least one groupby" -msgstr "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "page_size.show" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Bitte wählen Sie verschiedene Metriken für die linke und rechte Achse" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" +msgstr "page_size.entries" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "Bitte bestätigen" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" +msgstr "Keine passenden Einträge gefunden" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." -msgstr "Bitte bestätigen Sie die überschreibenden Werte." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "UMSCHALT+Klicken um nach mehreren Spalten zu sortieren" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Bitten geben Sie eine SQL Alchemy URI zum Testen ein" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Summen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "Bitte Name für Filtergruppe eingeben" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "Zeitstempelformat" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "Bitte geben Sie das Passwort erneut ein." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "Seitenlänge" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" -msgstr "" -"Bitte exportieren Sie Ihre Datei erneut und versuchen Sie nochmals, sie " -"zu importieren." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" +msgstr "Suchfeld" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" -"Bitte wenden Sie sich an den/die Diagramm-Besitzer*in, um Unterstützung " -"zu erhalten." -msgstr[1] "" -"Bitte wenden Sie sich an die Diagramm-Besitzer*innen, um Unterstützung zu" -" erhalten." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "Ob ein clientseitiges Suchfeld eingeschlossen werden soll" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "Bitte speichern Sie die Abfrage, um die Freigabe zu aktivieren" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "Zellenbalken" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." -msgstr "" -"Bitte speichern Sie zuerst Ihr Diagramm und versuchen Sie dann, einen " -"neuen E-Mail-Report zu erstellen." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "Ob ein Balkendiagrammhintergrund in Tabellenspalten angezeigt werden soll" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "" -"Bitte speichern Sie zuerst Ihr Dashboard und versuchen Sie dann, einen " -"neuen E-Mail-Report zu erstellen." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "Ausrichten +/-" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -"Wählen Sie sowohl einen Datensatz- als auch einen Diagrammtyp aus, um " -"fortzufahren" - -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Bitte verwenden Sie 3 verschiedene metrische Beschriftungen" +"Ob Hintergrunddiagramme sowohl mit positiven als auch mit negativen " +"Werten bei 0 ausgerichtet werden sollen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "Entfernung (wie Flugrouten) zwischen Abflug- und Zielort zeichen" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "Farbe +/-" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +#, fuzzy msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -"Stellt die einzelnen Metriken für jede Zeile in den Daten vertikal dar " -"und verknüpft sie als Linie miteinander. Dieses Diagramm ist nützlich, um" -" mehrere Metriken in allen Stichproben oder Zeilen in den Daten zu " -"vergleichen." - -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "Plugins" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" -msgstr "Punktfarbe" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" -msgstr "Punktradius" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" -msgstr "Punktradius Maßstab" +"Ob numerische Werte eingefärbt werden sollen, wenn sie positiv oder " +"negativ sind" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" -msgstr "Punktradius-Einheit" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "Neuanordnung von Spalten zulassen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" -msgstr "Punktgröße" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" +"Endbenutzer*innen erlauben, Spaltenüberschriften per Drag & Drop neu " +"anzuordnen. Beachten Sie, dass ihre Änderungen beim nächsten Öffnen des " +"Diagramms nicht beibehalten werden." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "Punkteinheit" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" +msgstr "Spalten anpassen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "Zeigen Sie auf Ihre räumlichen Spalten" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "Weitere Anpassungen der Anzeige der Spaltenanzeige" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" -msgstr "Punkte" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "Bedingte Farbformatierung auf numerische Spalten anwenden" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -"Punkte und Cluster werden aktualisiert, wenn das Ansichtsfenster geändert" -" wird" +"Klassische Zeilen-für-Spalten-Tabellenansicht eines Datensatzes. " +"Verwenden Sie Tabellen, um eine Ansicht der zugrunde liegenden Daten oder" +" aggregierter Metriken anzuzeigen." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" -msgstr "Polygon-Spalte" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" +msgstr "Anzeigen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" -msgstr "Polygon-Kodierung" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" +msgstr "Einträge" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" -msgstr "Polygon-Einstellungen" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "Wortwolke" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" -msgstr "Polylinie" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "Minimale Schriftgröße" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "Tab-Link" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "Schriftgröße für den kleinsten Wert in der Liste" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "Beliebt" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "Maximale Schriftgrösse" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "Schriftgröße für den größten Wert in der Liste" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" -msgstr "Daten zum Bevölkerungsalter" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" +msgstr "Wort-Rotation" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "Port" -msgstr "Port" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" +msgstr "zufällig" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" +msgstr "Quadrat" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" +msgstr "Rotation, die auf Wörter in der Cloud angewendet werden soll" + +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" +"Visualisiert die Wörter in einer Spalte, die am häufigsten vorkommen. " +"Größere Schrift entspricht einer höheren Frequenz." -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "Anordnungs-JSON" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "k.A." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" -msgstr "Position der Beschriftung des untergeordneten Knotens in der Struktur" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" +msgstr "Offline" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" -msgstr "Position der Zwischensumme auf Spaltenebene" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" +msgstr "fehlgeschlagen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" -msgstr "Beschriftungs-Position der Zwischenknoten im Baum" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" +msgstr "ausstehend" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" -msgstr "Position der Zwischensumme auf Zeilenebene" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" +msgstr "Wird abgerufen" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" -msgstr "Powered Apache Superset" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" +msgstr "laufend" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" -msgstr "Vorfilter" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" +msgstr "gestoppt" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "Verfügbare Werte vorfiltern" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" +msgstr "Erfolg" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" -msgstr "Vorfilterung erforderlich" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "Die Abfrage konnte nicht geladen werden" -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -"Prädikat, das beim Abrufen eines eindeutigen Werts angewendet wird, um " -"die Filtersteuerelementkomponente aufzufüllen. Unterstützt jinja-" -"Vorlagensyntax. Gilt nur, wenn \"Filterauswahl aktivieren\" aktiviert " -"ist." - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" -msgstr "Prädikativ" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" -msgstr "Prädiktive Analysen" - -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Vorschau" - -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Vorschau: `%s" +"Ihre Abfrage wurde geplant. Um Details zu Ihrer Abfrage anzuzeigen, " +"navigieren Sie zu Gespeicherte Abfragen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Zurück" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Ihre Abfrage konnte nicht eingeplant werden" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" -msgstr "Vorherige Zeile" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Fehler beim Abrufen der Ergebnisse" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "Primär" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Unbekannter Fehler" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" -msgstr "Primäre Metrik" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "Die Abfrage wurde gestoppt." -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" -msgstr "Primärschlüssel" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" +msgstr "Fehler beim Beenden der Abfrage. %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "Primäre oder sekundäre y-Achse" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Der Tabellenschemastatus kann nicht zum Backend übertragen werden. " +"Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n " +"Administrator*in, wenn dieses Problem weiterhin besteht." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -#, fuzzy -msgid "Primary y-axis Bounds" -msgstr "Primäres y-Achsenformat" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." +msgstr "" +"Der Abfragestatus kann nicht zum Backend übertragen werden. Superset wird" +" es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, " +"wenn dieses Problem weiterhin besteht." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "Primäres y-Achsenformat" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Der Status des Abfrage-Editors kann nicht zum Backend übertragen werden. " +"Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n " +"Administrator*in, wenn dieses Problem weiterhin besteht." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "Privater Schlüssel" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" +"Dem Backend kann keine neue Registerkarte hinzugefügt werden. Wenden Sie " +"sich an Ihre*n Administrator*in." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "Privater Schlüssel & Passwort" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "" +"-- Hinweis: Wenn Sie Ihre Anfrage nicht speichern, bleiben diese " +"Registerkarten NICHT bestehen, wenn Sie Ihre Cookies löschen oder den " +"Browser wechseln.\n" +"\n" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" -msgstr "Passwort des privaten Schlüssels" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "Kopie von %s" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" -msgstr "Fortfahren" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" +"Beim Festlegen der aktiven Registerkarte ist ein Fehler aufgetreten. " +"Wenden Sie sich an Ihre*n Administrator*in." -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Profil" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Beim Abrufen des Registerkartenstatus ist ein Fehler aufgetreten" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Profilbild von Gravatar" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "" +"Beim Entfernen der Registerkarte ist ein Fehler aufgetreten. Wenden Sie " +"sich an Ihre*n Administrator*in." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "Fortschritt" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "" +"Beim Entfernen der Abfrage ist ein Fehler aufgetreten. Wenden Sie sich an" +" Ihre*n Administrator*in." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "Progressiv" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Ihre Abfrage konnte nicht gespeichert werden" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "Propagieren" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" +msgstr "Ihre Abfrage wurde nicht ordnungsgemäß gespeichert" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "Proportional" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Ihre Abfrage wurde gespeichert" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "Öffentliche und privat freigegebene Blätter" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Ihre Abfrage wurde angehalten" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "Nur öffentlich freigegebene Blätter" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Ihre Abfrage konnte nicht aktualisiert werden." -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Veröffentlicht" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." +msgstr "" +"Beim Speichern der Abfrage im Backend ist ein Fehler aufgetreten. Um zu " +"vermeiden, dass Ihre Änderungen verloren gehen, speichern Sie Ihre " +"Abfrage bitte über die Schaltfläche \"Abfrage speichern\"." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" -msgstr "Lila" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "" +"Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten. Wenden " +"Sie sich an Ihre*n Administrator*in." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" -msgstr "Beschriftung außerhalb darstellen" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "" +"Beim Erweitern des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie" +" sich an Ihre*n Administrator*in." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" -msgstr "Sollen die Beschriftungen außerhalb der Torte dargestellt werden?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "" +"Beim Reduzieren des Tabellenschemas ist ein Fehler aufgetreten. Wenden " +"Sie sich an Ihre*n Administrator*in." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" -msgstr "Beschriftungen außerhalb des Kuchens anordnen?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Beim Entfernen des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie" +" sich an Ihre*n Administrator*in." -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Geben Sie Ihren Code hier ein" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Geteilte Abfrage" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Python Datetime-Zeichenfolge" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "Datenquelle konnte nicht geladen werden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" -msgstr "DATEN IN SQL LAB ABFRAGEN " +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "Quartal" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Fehler bei Abruf von Funktionsnamen." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 #, python-format -msgid "Quarters %s" -msgstr "Quartale %s" +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" +"SQL Lab verwendet den lokalen Speicher Ihres Browsers, um Abfragen und " +"Ergebnisse zu speichern.\n" +"Derzeit verwenden Sie %(currentUsage)s KB von %(maxStorage)d KB " +"Speicherplatz.\n" +"Um zu verhindern, dass SQL Lab abstürzt, löschen Sie einige " +"Abfrageregisterkarten.\n" +"Sie können erneut auf diese Abfragen zugreifen, indem Sie die Funktion " +"Speichern verwenden, bevor Sie die Registerkarte löschen.\n" +"Beachten Sie, dass Sie andere SQL Lab-Fenster schließen müssen, bevor Sie" +" dies tun." -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -msgid "Queries" -msgstr "Abfragen" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" +msgstr "Primärschlüssel" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Abfrage" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" +msgstr "Fremdschlüssel" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" -msgstr "Abfrage %s: %s" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" +msgstr "Index" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" -msgstr "Abfrage A" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Schätze Kosten für ausgewählte Abfragen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" -msgstr "Abfrage B" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Kosten schätzen" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Abfrageverlauf" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Kostenschätzung" -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" -msgstr "Abfrage ist nicht vorhanden" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Erstelle eine Datenquelle und eine neue Registerkarte" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "Abfragenverlauf" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Ein Fehler ist aufgetreten" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" -msgstr "Abfrage importiert" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Untersuchen der Ergebnismenge in der Datenexplorations-Ansicht" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Abfrage auf einer neuen Registerkarte" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" +msgstr "Erkunden" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "Die Abfrage ist zu komplex und dauert zu lange." +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" +msgstr "Diagramm erstellen" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" -msgstr "Abfragemodus" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Quell-SQL" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Abfragename" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "Ausgeführtes SQL" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Abfragen-Voransicht" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Abfrage ausführen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "Abfrage wurde angehalten" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Abfrage ausführen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "Die Abfrage wurde gestoppt." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Abfrage anhalten" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "BEREICHSTYP" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Neuer Tab" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" -msgstr "RGB-Farbe" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" +msgstr "Vorherige Zeile" -#: superset/row_level_security/commands/exceptions.py:29 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 #, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Diagramme konnten nicht gelöscht werden." +msgid "Format SQL" +msgstr "D3 Format" -#: superset/row_level_security/commands/exceptions.py:25 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 #, fuzzy -msgid "RLS Rule not found." -msgstr "Report-Ausführungsplan nicht gefunden." +msgid "Find" +msgstr "in" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" -msgstr "Radar" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" -msgstr "Radar-Diagramm" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "Abfrage zum Anzeigen des Abfrageverlaufs ausführen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "Radar-Darstellungsart, ob die Kreisform angezeigt werden soll." +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" +msgstr "GRENZE" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" -msgstr "Radial" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Zustand" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "Radius in Kilometern" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" +msgstr "Gestartet" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" -msgstr "Radius in Metern" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Dauer" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "Radius in Meilen" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Ergebnisse" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" -msgstr "Ausgeführt %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Aktion" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" -msgstr "Bereich" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Erfolg" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" -msgstr "Bereichsfilter" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Fehlgeschlagen" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" -msgstr "Bereichsfilter-Plugin mit AntD" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "Läuft" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "Bereichsbeschriftungen" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" +msgstr "Wird abgerufen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" -msgstr "Bereiche" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Offline" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "Bereiche, die mit Schattierung hervorgehoben werden sollen" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Geplant" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" -msgstr "Rangliste" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "Status unbekannt" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" -msgstr "Verhältnis" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Bearbeiten" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "Rohdatensätze" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" +msgstr "Ansicht" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Datenvorschau" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" -msgstr "Bereit, die Filter In diesem Dashboard zu prüfen?" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Überschreiben von Text im Editor mit einer Abfrage für diese Tabelle" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" -msgstr "Wiederaufbau" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Abfrage auf einer neuen Registerkarte ausführen" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "Kürzliche Aktivitäten" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Abfrage aus Protokoll entfernen" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "" -"Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden" -" hier angezeigt" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "Diagramm kann ohne Abfrage-ID nicht erstellt werden." -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "" -"Kürzlich bearbeitete Diagramme, Dashboards und gespeicherte Abfragen " -"werden hier angezeigt" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Speichern & Erkunden" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "Kürzlich geändert" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Überschreiben & Erkunden" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -"Kürzlich angezeigte Diagramme, Dashboards und gespeicherte Abfragen " -"werden hier angezeigt" - -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Kürzlich" +"Speichern Sie diese Abfrage als virtuellen Datensatz, um mit der " +"Erkundung fortzufahren." -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Empfänger werden durch \",\" oder \";\" getrennt." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Als CSV herunterladen" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "Empfohlene Tags" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "In Zwischenablage kopieren" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Anzahl Datensätze" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Ergebnisse filtern" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" -msgstr "Rechteck" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" +"Die Anzahl der angezeigten Ergebnisse ist durch die Konfiguration " +"DISPLAY_MAX_ROW auf %(rows)d begrenzt. Bitte fügen Sie zusätzliche " +"Limits/Filter hinzu oder laden Sie sie als CSDV-Datei herunter, um " +"weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -"Leitet zu diesem Endpunkt um, wenn Sie in der Tabellenliste auf die " -"Tabelle klicken" +"Die Anzahl der angezeigten Ergebnisse ist auf %(rows)d begrenzt. Bitte " +"fügen Sie zusätzliche Limits/Filter hinzu, laden Sie sie als CSV-Datei " +"herunter oder wenden Sie sich an eine*n Administrator*in, um weitere " +"Zeilen bis zum %(limit)d-Limit anzuzeigen." -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "Aktion wiederholen" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "" +"Die Anzahl der angezeigten Zeilen ist durch die Abfrage auf %(rows)d " +"beschränkt" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "Reduzieren Sie X Ticks" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "" +"Die Anzahl der angezeigten Zeilen ist durch Dropdownliste \"Limit\" auf " +"%(rows)d beschränkt." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -"Reduziert die Anzahl der darzustellenden X-Achsen-Ticks. Wenn WAHR, läuft" -" die x-Achse nicht über und Beschriftungen fehlen möglicherweise. Wenn " -"FALSCH, wird eine Mindestbreite auf Spalten angewendet und die Breite " -"kann in einen horizontalen Bildlauf überlaufen." - -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" -msgstr "Weitere Informationen finden Sie im" - -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." -msgstr "Referenzierte Spalten sind in DataFrame nicht verfügbar." +"Die Anzahl der angezeigten Zeilen ist durch Dropdownliste-Abfrage und " +"-Limit auf %(rows)d beschränkt." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "Ergebnisse erneut anfordern" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "%(rows)d Zeilen zurückgegeben" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Aktualisieren" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "" +"Die Anzahl der angezeigten Zeilen ist durch das Dropdown-Menü auf " +"%(rows)d beschränkt." -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Dashboard aktualisieren" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s Zeile" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Aktualisierungsfrequenz" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Auftrag verfolgen" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Aktualisierungsinterval" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" +msgstr "Abfragedetails anzeigen" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" -msgstr "Aktualisierungsintervall gespeichert" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "Abfrage wurde angehalten" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" -msgstr "Tabellenliste aktualisieren" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Datenbankfehler" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -msgid "Refresh tables" -msgstr "Aktualisieren von Tabellen" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "wurde erstellt" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "Aktualisieren der Standardwerte" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Abfrage auf einer neuen Registerkarte" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" -msgstr "Aktualisieren von Diagrammen" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "Die Abfrage hat keine Daten zurückgegeben" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" -msgstr "Aktualisieren von Spalten" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Datenvorschau abrufen" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" -msgstr "Regex" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Ergebnisse erneut anfordern" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -#, fuzzy -msgid "Regular" -msgstr "Kreisförmig" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Stopp" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -#, fuzzy -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." -msgstr "" -"Reguläre Filter fügen Abfragen WHERE-Ausrücke hinzu, falls ein*e " -"Benutzer*in einer im Filter referenzierten Rolle angehört. Basisfilter " -"wenden Filter auf alle Abfragen mit Ausnahme der im Filter definierten " -"Rollen an. Über sie lässt sich definieren, was Benutzer*innen sehen " -"können, wenn auf sie keine RLS-Filter angewendet werden." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Auswahl ausführen" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" -msgstr "Relational" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Ausführen" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "Beziehungen zwischen Community-Kanälen" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Ausführung abbrechen (Strg + x)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "Relatives Datum/Uhrzeit" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" +msgstr "Beenden der Ausführung (Strg + e)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "Relativer Zeitraum" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Abfrage ausführen (Strg + Return)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Relative Menge" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Speichern" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" -msgstr "Neu laden" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" +msgstr "Unbenannter Datensatz" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "In 24 Stunden erinnern" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Beim Speichern des Datensatz ist ein Fehler aufgetreten" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "Entfernen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "Speichern oder Überschreiben des Datensatzes" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" -msgstr "Kreuzfilter entfernen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" +msgstr "Zurück" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "Ungültige Filter entfernen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Speichern unter…" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "Element entfernen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" +msgstr "Bestehende überschreiben" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Abfrage aus Protokoll entfernen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" +msgstr "Datensatzname auswählen oder eingeben" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Tabellenvorschau entfernen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" +msgstr "Vorhandener Datensatz" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "Entfernte Spalten: %s" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Möchten Sie diesen Datensatz wirklich überschreiben?" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Registerkarte umbenennen" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Undefiniert" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" -msgstr "Darstellen" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" +msgstr "Datensatz speichern" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "Ersetzen" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Speichern als" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" -msgstr "Melden" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Speichere Abfrage" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" -msgstr "Berichtname" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Abbrechen" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "Report-Ausführungsplan konnte nicht erstellt werden." +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Aktualisieren" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "Report-Ausführungsplan konnte nicht gelöscht werden." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Bezeichnung für Ihre Anfrage" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "Report-Ausführungsplan konnte nicht aktualisiert werden." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Beschreibung Ihrer Anfrage" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "Fehler beim Löschen des Report-Ausführungsplans." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "Senden" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "Report-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Abfrage einplanen" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "" -"Report-Ausführungsplan Fehler beim Generieren der Daten für geplanten " -"Report." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Zeitplan" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "" -"Report-Ausführungsplan Die Ausführung des Zeitplans ist beim Generieren " -"eines Screenshots fehlgeschlagen." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Bei Ihrer Anfrage ist ein Fehler aufgetreten" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "Unerwarteter Fehler bei der Ausführung des geplanten Reports." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Bitte speichern Sie die Abfrage, um die Freigabe zu aktivieren" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "Geplanter Bericht wird noch erstellt. Derzeit keine Neuerstellung möglich." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Abfragelink in die Zwischenablage kopieren" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "Fehler beim Beschneiden des Report-Ausführungsplan-Logs." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Speichern Sie die Abfrage, um diese Funktion zu aktivieren" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "Report-Ausführungsplan nicht gefunden." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Link kopieren" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "Report-Ausführungsplanparameter sind ungültig." +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "" +"Keine gespeicherten Ergebnisse gefunden. Sie müssen Ihre Abfrage erneut " +"ausführen" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "Erstellung des geplanter Reports hat zulässige Zeit überschritten." +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "Abfrage zum Anzeigen der Ergebnisse ausführen" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "Geplanter Report Status nicht gefunden" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Vorschau: `%s" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" -msgstr "Fehler melden" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Abfragenverlauf" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Report fehlgeschlagen" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Abfrage in regelmäßigen Abständen einplanen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "Name des Reports" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Sie müssen die Abfrage zuerst erfolgreich ausführen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "Report-Zeitplan" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Autovervollständigung" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" -msgstr "Clientfehler beim Berichts-Zeitplan" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "CREATE TABLE AS" -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" -msgstr "Systemfehler beim Berichts-Zeitplan" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "CREATE VIEW AS" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "Geplanter Report Unerwarteter Fehler" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Schätzen der Kosten vor dem Ausführen einer Abfrage" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Report wird versendet" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "Geben Sie den Namen für CREATE VIEW AS in Schema public an:" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Report gesendet" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "Geben Sie den Namen für das CREATE TABLE AS in Schema public an:" -#: superset-frontend/src/reports/actions/reports.js:121 -msgid "Report updated" -msgstr "Bericht aktualisiert" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "Auswählen einer Datenbank zum Schreiben einer Abfrage" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Reports" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "" +"Wählen Sie einen der verfügbaren Datensätze aus dem Bereich auf der " +"linken Seite." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" -msgstr "Abstoßung" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Erstellen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" -msgstr "Abstoßungsstärke zwischen Knoten" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "Tabellenvorschau komprimieren" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Berechtigung anfordern" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" +msgstr "Tabellenvorschau erweitern" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "Anfrage ist falsch: %(error)s" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Status zurücksetzen" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "Anfrage ist nicht JSON" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Geben Sie einen neuen Titel für die Registerkarte ein" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "Datenfeld fehlt in Abfrage." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Registerkarte schließen" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" -msgstr "Zeitüberschreitung der Anforderung" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Registerkarte umbenennen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Erforderlich" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Werkzeugleiste erweitern" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" -msgstr "Erforderliche Steuerwerte wurden entfernt" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Werkzeugleiste ausblenden" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" -msgstr "Resample" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Schließen Sie alle anderen Registerkarten" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " -msgstr "Pandas Methode zur Stichprobenwiederholung (resample)" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Registerkarte duplizieren" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" -msgstr "Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" +msgstr "Neu Registerkarte hinzufügen" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" -msgstr "Zurücksetzen" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Neue Registerkarte (Strg + q)" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" -msgstr "Status zurücksetzen" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Neue Registerkarte (Strg + t)" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." -msgstr "Resource verfügt bereits über einen angefügten Bericht." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "Neue Registerkarte zum Erstellen einer SQL-Abfrage hinzufügen" -#: superset/temporary_cache/commands/exceptions.py:49 -msgid "Resource was not found." -msgstr "Ressource wurde nicht gefunden." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Filter wiederherstellen" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Partitionsabfrage in Zwischenablage kopieren" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Ergebnisse" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "neueste Partition:" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Schlüssel für Tabelle" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 #, python-format -msgid "Results %s" -msgstr "Ergebnisse %s" +msgid "View keys & indexes (%s)" +msgstr "Schlüssel und Indizes anzeigen (%s)" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "Das Ergebnis-Backend ist nicht konfiguriert." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Ursprüngliche Tabellenspaltenreihenfolge" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" -"Das Ergebnis-Backend, das für asynchrone Abfragen benötigt wird, ist " -"nicht konfiguriert." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Spalten alphabetisch sortieren" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "Kehren Sie zu bestimmtem Zeitpunkt zurück." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "SELECT-Anweisung in die Zwischenablage kopieren" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" -msgstr "Länge/Breite vertauschen " +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "CREATE VIEW-Anweisung anzeigen" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "Länge/Breite vertauschen " +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "CREATE VIEW-Anweisung" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" -msgstr "Umfangreicher Tooltip" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Tabellenvorschau entfernen" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" -msgstr "Umfangreicher Tooltip" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" +msgstr "Eines Satz von Parametern zuweisen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" -msgstr "Rechts" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "unten (Beispiel:" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" -msgstr "Format der rechten Achse" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" +msgstr "), und sie werden in Ihrem SQL verfügbar (Beispiel:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" -msgstr "Metrik der rechten Achse" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "durch die Verwendung von" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Metrik der rechten Achse" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" +msgstr "Jinja Vorlagen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" -msgstr "Rechts nach links" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." +msgstr "Syntax." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "Rechter Wert" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Vorlagenparameter bearbeiten" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "" -"Klicken Sie mit der rechten Maustaste auf einen Bemaßungswert, um einen " -"Drilldown um diesen Wert durchzuführen." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " +msgstr "Parameter" -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "Rolle" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "Ungültiges JSON" + +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Unbenannte Abfrage" -#: superset/views/core.py:408 +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 #, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "" -"Rolle %(r)s wurde erweitert, um den Zugriff auf die Datenquelle %(ds)s zu" -" gewähren" +msgid "%s%s" +msgstr "%s%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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Rollen" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" +msgstr "Steuerung" -#: 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 " -"defined, regular access permissions apply." -msgstr "" -"Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn " -"Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf " -"Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die " -"generellen Berechtigungen angewendet." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "Vor" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." -msgstr "" -"Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn " -"Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf " -"Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die " -"generellen Berechtigungen angewendet." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "Nach" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Zu vergebende Rollen" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Klicken zum Anzeigen der Unterschiede" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" -msgstr "Rollierende Funktion" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Geändert" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" -msgstr "Rollierendes Fenster" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Diagrammänderungen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Rollierende Funktion" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Zuletzt geändert durch %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "Rollierendes Fenster" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Geladene Daten zwischengespeichert" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Root-Zertifikat" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Aus Zwischenspeicher geladen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "Wurzelknoten-ID" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Klicken Sie hier, um die Aktualisierung zu erzwingen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" -msgstr "Achsenbeschriftung drehen" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" +msgstr "Gecached" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" -msgstr "X-Achsenbeschriftung drehen" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" +msgstr "Erforderliche Steuerelementwerte zur Diagramm-Vorschau hinzufügen" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "Rotation, die auf Wörter in der Cloud angewendet werden soll" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "Ihr Chart ist startklar!" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" -msgstr "Runde Kappe" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" +msgstr "" +"Klicken Sie auf die Schaltfläche \"Diagramm erstellen\" in der " +"Systemsteuerung auf der linken Seite, um eine Vorschau einer " +"Visualisierung anzuzeigen oder" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Zeile" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "klicken Sie hier" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "Sicherheit auf Zeilenebene" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "Für diese Abfrage wurden keine Ergebnisse zurückgegeben" -#: superset/views/database/forms.py:255 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen" -" (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile " -"vorhanden ist." +"Stellen Sie sicher, dass die Steuerelemente ordnungsgemäß konfiguriert " +"sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Beim Laden des SQL ist ein Fehler aufgetreten" + +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "Leider ist ein Fehler aufgetreten" + +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "Aktualisierung des Diagramms wurde abgebrochen" + +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Bei der Darstellung dieser Visualisierung ist ein Fehler aufgetreten: %s" + +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Netzwerk-Fehler." + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen" -" (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile " -"vorhanden ist." +"Der Kreuzfilter wird auf alle Diagramme angewendet, die diesenn Datensatz" +" verwenden." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Zeilenlimit" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "" +"Sie können auch einfach auf das Diagramm klicken, um den Kreuzfilter " +"anzuwenden." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "Zeilen" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" -msgstr "Zeilen pro Seite, 0 bedeutet keine Paginierung" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." +msgstr "Dieser Visualisierungstyp unterstützt keine Kreuzfilterung." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" -msgstr "Zeilen Zwischensummenposition" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." +msgstr "Sie können keinen Kreuzfilter auf diesen Datenpunkt anwenden." -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Zu lesende Zeilen" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" +msgstr "Kreuzfilter entfernen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "Regel" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" +msgstr "Kreuzfilter hinzufügen" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 #, fuzzy -msgid "Rule Name" -msgstr "Vollständiger Name" +msgid "Failed to load dimensions for drill by" +msgstr "Keine Dimensionen verfügbar für das Hineinzoomen nach" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" +"Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp " +"noch nicht unterstützt." -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "Ausführen" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "Heinzoomem ist für diesen Datenpunkt nicht verfügbar" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" -msgstr "Abfrage zum Anzeigen des Abfrageverlaufs ausführen" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "Ins-Detail-Zoomen" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" -msgstr "Abfrage zum Anzeigen der Ergebnisse ausführen" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" +msgstr "Suchspalten" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Ausführen in SQL Lab" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" +msgstr "Keine Spalten gefunden" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Abfrage ausführen" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +#, fuzzy +msgid "Failed to generate chart edit URL" +msgstr "Diagrammdaten konnten nicht geladen werden" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "Abfrage ausführen (Strg + Return)" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Sie sind nicht berechtigt, dieses Diagramm zu bearbeiten" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Abfrage auf einer neuen Registerkarte ausführen" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" +msgstr "Diagramm bearbeiten" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Auswahl ausführen" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Schließen" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "Läuft" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "Diagrammdaten konnten nicht geladen werden." -#: superset/sql_lab.py:480 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 #, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "Führe Anweisung %(statement_num)s von %(statement_count)s aus" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "SA" +msgid "Drill by: %s" +msgstr "Hineinzogen nach %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "SEP" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" -msgstr "SHA" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Ergebnisse %s" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "Zu Detail zoomen anhand" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL kopiert!" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "Ins-Detail-Zoomen" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL-Ausdruck" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." +msgstr "" +"Das Zu-Detail-Zoomen (Drilldown) ist deaktiviert, da dieses Diagramm " +"Daten nicht nach Dimensionswert gruppiert." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" +"Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp " +"noch nicht unterstützt." -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "SQL Lab Anzeige" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" +"Klicken Sie mit der rechten Maustaste auf einen Bemaßungswert, um einen " +"Drilldown um diesen Wert durchzuführen." -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 #, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." -msgstr "" -"SQL Lab verwendet den lokalen Speicher Ihres Browsers, um Abfragen und " -"Ergebnisse zu speichern.\n" -"Derzeit verwenden Sie %(currentUsage)s KB von %(maxStorage)d KB " -"Speicherplatz.\n" -"Um zu verhindern, dass SQL Lab abstürzt, löschen Sie einige " -"Abfrageregisterkarten.\n" -"Sie können erneut auf diese Abfragen zugreifen, indem Sie die Funktion " -"Speichern verwenden, bevor Sie die Registerkarte löschen.\n" -"Beachten Sie, dass Sie andere SQL Lab-Fenster schließen müssen, bevor Sie" -" dies tun." +msgid "Drill to detail: %s" +msgstr "Zu Detail zoomen: %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "SQL Abfrage" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" +msgstr "Formatierung" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "SQL-Ausdruck" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" +msgstr "Formatierter Wert" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "SQL Abfrage" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "Für diesen Datensatz wurden keine Zeilen zurückgegeben" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "SQLAlchemy-URI" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" +msgstr "Neu laden" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" -msgstr "SSH-Host" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "Kopieren" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" -msgstr "SSH-Passwort" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "In die Zwischenablage kopieren" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" -msgstr "SSH Port" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "In Zwischenablage kopiert!" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" -msgstr "SSH-Tunnel" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "" +"Ihr Browser unterstützt leider kein Kopieren. Verwenden Sie Strg / Cmd + " +"C!" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" -msgstr "Konfigurationsparameter für den SSH-Tunnel" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "jeden" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." -msgstr "SSH-Tunnel konnte nicht gelöscht werden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "jeden Monat" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -msgid "SSH Tunnel could not be updated." -msgstr "SSH-Tunnel konnte nicht aktualisiert werden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "jeden Tag des Monats" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -msgid "SSH Tunnel not found." -msgstr "SSH-Tunnel nicht gefunden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "Tag des Monats" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." -msgstr "SSH-Tunnelparameter sind ungültig." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "jeden Tag der Woche" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "SSH-Tunneling ist nicht aktiviert" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "Wochentag" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "SSL-Modus „require“ wird verwendet." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "stündlich" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" +msgstr "jede Minute" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "Minute" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "Neu starten" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Jeden" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "START (INKLUSIVE)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "in" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "SCHRITT %(stepCurr)s VON %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "an" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" -msgstr "TEXT" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "und" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "SO" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "bei" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" -msgstr "Standardabweichung von Stichprobe" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "Stichprobenvarianz" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "Minute(n)" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" -msgstr "Beispiele" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Ungültiger Cron-Ausdruck" -#: superset/datasets/commands/exceptions.py:194 -msgid "Samples for dataset could not be retrieved." -msgstr "Beispiele für Datensatz konnten nicht abgerufen werden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Zurücksetzen" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." -msgstr "Beispiele für die Datenquelle konnten nicht abgerufen werden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Sonntag" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Montag" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "Sankey-Diagramm" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Dienstag" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" -msgstr "Sankey-Diagramm mit Schleifen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Mittwoch" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" -msgstr "Satellit" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Donnerstag" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" -msgstr "Satellit Straßen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Freitag" #: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 msgid "Saturday" msgstr "Samstag" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Januar" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Speichern & Erkunden" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Februar" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Speichern & zum Dashboard gehen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "März" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -msgid "Save & go to new dashboard" -msgstr "Speichern & zum neuen Dashboard wechseln" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "April" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Speichern (Überschreiben)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Mai" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Speichern als" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Juni" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -msgid "Save as Dataset" -msgstr "Als Datensatz speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Juli" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -msgid "Save as dataset" -msgstr "Als Datensatz speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "August" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Speichern unter…" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "September" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Als neues Dashboard speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Oktober" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -msgid "Save as..." -msgstr "Speichern unter..." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "November" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Speichern unter:" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "Dezember" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" -msgstr "Änderungen speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "SO" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Diagramm speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "MO" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Dashboard speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "DI" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -msgid "Save dataset" -msgstr "Datensatz speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "MI" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Für diese Sitzung speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "DO" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" -msgstr "Speichern oder Überschreiben des Datensatzes" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "FR" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Speichere Abfrage" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "SA" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "Speichern Sie die Abfrage, um diese Funktion zu aktivieren" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "JAN" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" -"Speichern Sie diese Abfrage als virtuellen Datensatz, um mit der " -"Erkundung fortzufahren." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "FEB" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -msgid "Save to new dashboard" -msgstr "Im neuem Dashboard speichern" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "MÄR" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Speichern als" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "APR" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Gespeicherte Abfragen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "MAI" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" -msgstr "Gespeicherte Ausdrücke" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "JUN" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Gespeicherte Abfragen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "JUL" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Gespeicherte Abfragen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "AUG" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "SEP" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "OKT" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Gespeicherte Abfragen konnten nicht gelöscht werden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "DEZ" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "Gespeicherte Abfrage nicht gefunden." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "Gespeicherte Abfrageparameter sind ungültig." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" +msgstr "Datenbank auswählen oder tippen zum Suchen von Datenbanken" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "Skalieren und Verschieben" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Aktualisierung der Schemaliste erzwingen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "Nur Skalieren" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" +msgstr "Schema auswählen oder tippen, um Schemas zu suchen" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "Streudiagramm" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" +msgstr "Kein kompatibles Schema gefunden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" -msgstr "Streudiagramm" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" +"Warnung! Wenn Sie den Datensatz ändern, kann das Diagramm beeinträchtigt " +"werden, wenn die Metadaten nicht vorhanden sind." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -"Das Punktdiagramm hat die horizontale Achse in linearen Einheiten, und " -"die Punkte sind in der richtigen Reihenfolge verbunden. Es zeigt eine " -"statistische Beziehung zwischen zwei Variablen." +"Durch das Ändern des Datensatzes kann das Diagramm beeinträchtigt werden," +" wenn das Diagramm auf Spalten oder Metadaten basiert, die im " +"Zieldatensatz nicht vorhanden sind" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "Zeitplan" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "Datensatz" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" -msgstr "Planen eines neuen E-Mail-Berichts" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" +msgstr "Datensatz erfolgreich geändert!" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "Planen von E-Mail-Reports" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Verbindung" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Abfrage einplanen" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" +msgstr "Datensatz austauschen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Zeitplan-Einstellungen" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" +msgstr "Fortfahren" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "Abfrage in regelmäßigen Abständen einplanen" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Warnung!" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "Geplant" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Suchen / Filtern" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "Geplant um (UTC)" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Element hinzufügen" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" -msgstr "Geplanter Task-Executor nicht gefunden" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "TEXT" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Schema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" +msgstr "NUMERISCH" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" -msgstr "Zeitüberschreitung Schema-Zwischenspeicher" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" +msgstr "DATUM/UHRZEIT" -#: superset/views/core.py:1186 -msgid "Schema undefined" -msgstr "Schema nicht definiert" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" +msgstr "WAHRHEITSWERT" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "" -"Schema, wie es nur in einigen Datenbanken wie Postgres, Redshift und DB2 " -"verwendet wird" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Physisch (Tabelle oder Ansicht)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" -msgstr "Zulässige Schemata für den Datei-Upload" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "Virtuell (SQL)" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" -msgstr "Geltungsbereich" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Datentyp" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "Auswahlverfahren" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" +msgstr "Erweiterter Datentyp" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" -msgstr "Scrollen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" +msgstr "Erweiterter Datentyp" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "" -"Scrollen Sie nach unten, um das Überschreiben von Änderungen zu " -"aktivieren. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Datum Zeit Format" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Suche" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Das Muster des Zeitstempelformats. Für Zeichenfolgen verwenden Sie eine " -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Suchen / Filtern" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Python Datetime-Zeichenfolge" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Metriken & Spalten durchsuchen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr " die dem " -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" -msgstr "Alle Diagramm durchsuchen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Alle Filteroptionen durchsuchen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" +" Standard genügen muss, um sicherzustellen, dass die lexikographische " +"Reihenfolge\n" +" mit der chronologischen Reihenfolge übereinstimmt. " +"Wenn das\n" +" Zeitstempelformat nicht dem ISO 8601-Standard " +"entspricht,\n" +" müssen Sie einen Ausdruck und einen Typ definieren " +"um\n" +" die Zeichenfolge in ein Datum oder einen " +"Zeitstempel umzuwandeln.\n" +" Hinweis: Derzeit werden Zeitzonen nicht " +"unterstützt. Wenn Zeit im\n" +" Epochenformat gespeichert ist, Geben Sie “epoch_s\"" +" oder \"epoch_ms\" ein. \n" +" Wenn kein Muster angegeben ist, greifen wir auf die" +" Verwendung der\n" +" \n" +" über den zusätzlichen Parameter angebbaren,\n" +" optionalen Standardwerte zurück." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" -msgstr "Suchfeld" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "Zertifiziert durch" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "Suche nach Abfragetext" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Person oder Gruppe, die diese Metrik zertifiziert hat" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -msgid "Search columns" -msgstr "Suchspalten" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Zertifiziert durch" -#: superset-frontend/src/components/Table/index.tsx:206 -msgid "Search in filters" -msgstr "Suche in Filtern" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Details zur Zertifizierung" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -msgid "Search tables" -msgstr "Tabellen durchsuchen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Details zur Zertifizierung" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Suche..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Ist Dimension" -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "Sekunde" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" +msgstr "Standard-Datum/Zeit" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" -msgstr "Sekundär" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Ist filterbar" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" -msgstr "Sekundäre Metrik" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -#, fuzzy -msgid "Secondary y-axis Bounds" -msgstr "Sekundäres y-Achsenformat" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" +msgstr "Besitzende auswählen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "Sekundäres y-Achsenformat" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Geänderte Spalten: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "Titel der sekundären y-Achse" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Entfernte Spalten: %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 #, python-format -msgid "Seconds %s" -msgstr "Sekunden %s" +msgid "New columns added: %s" +msgstr "Neue Spalten hinzugefügt: %s" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Sicherheit Extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Metadaten wurden synchronisiert" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Sicherheit extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Ein Fehler ist aufgetreten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Sicherheit" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Spaltenname [%s] wird dupliziert" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Sicherheit & Zugriff" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Metrikname [%s] wird dupliziert" -#: superset-frontend/src/features/home/EmptyState.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 #, python-format -msgid "See all %(tableName)s" -msgstr "Alle %(tableName)s ansehen" +msgid "Calculated column [%s] requires an expression" +msgstr "Berechnete Spalte [%s] erfordert einen Ausdruck" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "Weniger anzeigen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "Mehr anzeigen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Basic" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" -msgstr "Abfragedetails anzeigen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "Datenbank URL" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Siehe Tabellenschema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" +"Standard-URL, auf die beim Zugriff von der Datensatz-Listenseite aus " +"zugegriffen werden soll" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" -msgstr "Auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Auto-Vervollständigen-Filter" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Auswählen …" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "Übermittlungsmethode hinzufügen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Abfrageprädikat für die automatische Vervollständigung" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" -msgstr "Visualisierungstyp wählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" +"Bei Verwendung von \"AutoVervollständigen-Filtern\" kann dies verwendet " +"werden, um die Leistung der Abfrage zum Abrufen der Werte zu verbessern. " +"Verwenden Sie diese Option, um ein Prädikat (WHERE-Klausel) auf die " +"Abfrage anzuwenden, die die verschiedenen Werte aus der Tabelle auswählt." +" In der Regel besteht die Absicht darin, den Scan einzuschränken, indem " +"ein relativer Zeitfilter auf ein partitioniertes oder indiziertes " +"zeitbezogenes Feld angewendet wird." -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -"Wählen Sie eine tabellarische Datei aus, die in eine Datenbank " -"hochgeladen werden soll." +"Zusätzliche Daten zum Angeben von Tabellenmetadaten. Unterstützt derzeit " +"Metadaten des Formats: '{ \"certification\": { \"certified_by\": \"Data " +"Platform Team\", \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" } `." -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Cache-Timeout" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" -"Wählen Sie eine Excel-Datei aus, die in eine Datenbank hochgeladen werden" -" soll." +"Die Zeitdauer in Sekunden, bevor der Cache ungültig wird. Setzen Sie " +"diese auf -1 um den Cache zu umgehen." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" -msgstr "Spalte wählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Stunden-Versatz" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" -msgstr "Dashboard auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" +"Die Anzahl der Stunden, negativ oder positiv, um die Zeitspalte zu " +"verschieben. Dies kann verwendet werden, um die UTC-Zeit auf die Ortszeit" +" zu verschieben." -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" -msgstr "Auswählen einer Datenbanktabelle und Erstellen eines Datensatzes" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +#, fuzzy +msgid "Normalize column names" +msgstr "Spalten anpassen" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." -msgstr "Wählen Sie eine Datenbanktabelle aus." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +#, fuzzy +msgid "Always filter main datetime column" +msgstr "Haupt-Datums/Zeit-Spalte" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." msgstr "" -"Wählen Sie eine Datenbank aus, mit der eine Verbindung hergestellt werden" -" soll" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" -msgstr "Wählen Sie eine Datenbank aus, in die die Datei hochgeladen werden soll" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" -msgstr "Auswählen einer Datenbank zum Schreiben einer Abfrage" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" -msgstr "Wählen Sie eine Dimension" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Klicken Sie auf das Schloss, um Änderungen vorzunehmen." -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" -msgstr "Wählen Sie eine Datei aus, die in die Datenbank hochgeladen werden soll" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Klicken Sie auf die Sperre, um weitere Änderungen zu verhindern." -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" -msgstr "Wählen Sie ein Schema aus, wenn die Datenbank dies unterstützt" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "virtuell" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Visualisierungstyp wählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Datensatzname" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" -msgstr "Aggregierungsoptionen auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" +"Beim Angeben von SQL fungiert die Datenquelle als Ansicht. Superset " +"verwendet diese Anweisung als Unterabfrage beim Gruppieren und Filtern " +"der generierten übergeordneten Abfragen." -#: superset-frontend/src/components/Table/index.tsx:211 -msgid "Select all data" -msgstr "Alle Daten auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Physisch" -#: superset-frontend/src/components/Table/index.tsx:205 -msgid "Select all items" -msgstr "Alle Elemente auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" +"Der Zeiger auf eine physische Tabelle (oder Ansicht). Beachten Sie, dass " +"das Diagramm dieser logischen Superset-Tabelle zugeordnet ist welche auf " +"die hier angegebene physische Tabelle verweist." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" -msgstr "Auswählen beliebiger Spalten für die Metadatenüberprüfung" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +#, fuzzy +msgid "Metric Key" +msgstr "Metrik" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "D3 Format" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 #, fuzzy -msgid "Select chart" -msgstr "Diagramme auswählen" +msgid "Select or type currency symbol" +msgstr "Wert eingeben oder auswählen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" -msgstr "Diagramme auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "Warnung" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" -msgstr "Farbschema auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Optionale Warnung zur Verwendung dieser Metrik" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" -msgstr "Spalte auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 -msgid "Select current page" -msgstr "Aktuelle Seite auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Seien Sie vorsichtig." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "" +"Das Ändern dieser Einstellungen wirkt sich auf alle Diagramme aus, die " +"diesen Datensatz verwenden, einschließlich Diagramme, die anderen " +"Personen gehören." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Spalten aus der Quelle synchronisieren" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Berechnete Spalten" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -msgid "Select database & schema" -msgstr "Datenbank & Schema auswählen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Einstellungen" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" -msgstr "Datenbank auswählen oder tippen zum Suchen von Datenbanken" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "Der Datensatz wurde gespeichert" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -msgid "Select database table" -msgstr "Datenbanktabelle auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +#, fuzzy +msgid "Error saving dataset" +msgstr "Beim Speichern des Datensatz ist ein Fehler aufgetreten" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -"Für ausgewählte Datenbanken müssen zusätzliche Felder auf der " -"Registerkarte Erweitert ausgefüllt werden, um die Datenbank erfolgreich " -"zu verbinden. Erfahren Sie, welche Anforderungen Ihre Datenbanken haben " +"Die hier verfügbar gemachte Datensatzkonfiguration\n" +" wirkt sich auf alle Diagramme aus, die diesen Datensatz " +"verwenden.\n" +" Achten Sie darauf, dass das hier vorgenommene " +"Einstellungs-\n" +" änderungen sich in unerwünschter Weise\n" +" auf andere Diagramme auswirken können." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -msgid "Select dataset source" -msgstr "Datensatz-Quelle auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Möchten Sie die Änderungen wirklich speichern und anwenden?" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" -msgstr "Datei auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Speichern bestätigen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "Filter auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "OK" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "Filter-Plugin mit AntD auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Datensatz bearbeiten " -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "Standardmäßig erste Ersten Filterwert auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Verwenden des Legacy-Datenquellen-Editors" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "Operator auswählen" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" +"Dieser Datensatz wird extern verwaltet und kann nicht in Superset " +"bearbeitet werden." -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" -msgstr "Wert eingeben oder auswählen" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "LÖSCHEN" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" -msgstr "Datensatzname auswählen oder eingeben" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "Löschen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "Besitzende auswählen" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Geben Sie zur Bestätigung \"%s\" ein" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" -msgstr "Gespeicherte Metriken auswählen" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" +msgstr "Mehr" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" -msgstr "Schema auswählen oder tippen, um Schemas zu suchen" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Klicken um zu bearbeiten" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" -msgstr "Schema auswählen" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Sie haben nicht das Recht, diesen Titel zu ändern." + +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "Keine Datenbanken stimmen mit Ihrer Suche überein" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Start- und Enddatum auswählen" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "Es sind keine Datenbanken verfügbar" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "Betreff auswählen" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" +msgstr "Verwalten Sie Ihre Datenbanken" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" -msgstr "Tabelle auswählen oder tippen, um Tabellen zu suchen" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" +msgstr "hier" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." -msgstr "Wählen Sie den Anmerkungs-Layer aus, den Sie verwenden möchten." +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Unerwarteter Fehler" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "Dies kann ausgelöst werden durch:" + +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." msgstr "" +"Bitte wenden Sie sich an den/die Diagramm-Besitzer*in, um Unterstützung " +"zu erhalten." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Diagrammbesitzer*in: %s" + +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" +"%(message)s\n" +"Dies kann ausgelöst werden durch: \n" +"%(issues)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" -msgstr "Wählen Sie die GeoJSON-Spalte aus" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s Fehler" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" -msgstr "Wählen Sie die Anzahl der Klassen für das Histogramm aus" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Fehlender Datensatz" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "Auswählen der numerischen Spalten zum Zeichnen des Histogramms" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Mehr anzeigen" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." -msgstr "" -"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/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Weniger anzeigen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" -msgstr "Als CSV senden" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Meldung kopieren" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" -msgstr "Als PNG senden" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +#, fuzzy +msgid "Details" +msgstr "Summen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" -msgstr "Als Text senden" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" +msgstr "Ausgelöst durch:" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" -msgstr "Bereichsfilter-Ereignisse an andere Diagramme senden" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Meintest du:" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "September" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s statt \"%(undefinedParameter)s“?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" -msgstr "Fortlaufend" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Parameter-Fehler" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Zeitreihen" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgstr "" +"Wir haben Probleme beim Laden dieser Visualisierung. Abfragen " +"überschreiten nach %s Sekunden die Ausführungszeit (Timeout)." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "Zeitreihenhöhe" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgstr "" +"Wir haben Probleme beim Laden dieser Ergebnisse. Abfragen überschreiten " +"nach %s Sekunden die Ausführungszeit (Timeout)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" -msgstr "Zeitreihenlimit Sortieren nach" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "" +"%(subtitle)s\n" +"Dies kann ausgelöst werden durch:\n" +" %(issue)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" -msgstr "Zeitreihenlimit absteigend sortieren" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Zeitüberschreitung" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -msgid "Series Order" -msgstr "Zeitreihen-Reihenfolge" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Klicken Sie hier, um als Favorit aus-/abzuwählen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" -msgstr "Zeitreihenstil" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Zellinhalt" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" -msgstr "Zeitreihendiagrammtyp (Linie, Balken usw.)" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." +msgstr "Passwort ausblenden." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Zeitreihenbegrenzung" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." +msgstr "Passwort anzeigen." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" -msgstr "Zeitreihentyp" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " +msgstr "" +"Datenbanktreiber für den Import ist möglicherweise nicht installiert. " +"Installationsanweisungen finden Sie auf der Superset-Dokumentationsseite:" +" " -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "Server-Seitenlänge" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "ÜBERSCHREIBEN" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" -msgstr "Server-Paginierung" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" +msgstr "Datenbank-Kennwörter" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" -msgstr "Dienstkonto" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" +msgstr "%s PASSWORT" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Auto-Aktualisieren-Interval setzen" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" +msgstr "%s SSH-TUNNEL-KENNWORT" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "Festlegen der Filterzuordnung" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" +msgstr "%s PRIVATER SCHLÜSSEL FÜR DEN SSH-TUNNEL" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" -msgstr "E-Mail-Report einrichten" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "%s PASSWORT FÜR DEN PRIVATEN SCHLÜSSEL DES SSH-TUNNELS" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." -msgstr "" -"Legt die Hierarchieebenen des Diagramms fest. Jede Ebene ist\n" -" dargestellt durch einen Ring mit dem innersten Kreis als Spitze " -"der Hierarchie." +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Überschreiben Scheibe %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "Einstellungen" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Importieren" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" -msgstr "Einstellungen für Zeitreihen" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Importiere %s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Teilen" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" +msgstr "Datei auswählen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "Diagramm per Email teilen" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Letzte Aktualisierung %s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" -msgstr "Permalink per E-Mail teilen" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "Sortieren" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Geteilte Abfrage" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "+ %s weitere" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -msgid "Shared query fields" -msgstr "Freigegebene Abfragefelder" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s ausgewählt" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Blattname" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Alle abwählen" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "UMSCHALT+Klicken um nach mehreren Spalten zu sortieren" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +#, fuzzy +msgid "Add Tag" +msgstr "Schlagwort" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "Kurzbeschreibung muss für diese Ebene eindeutig sein" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "Keine Ergebnisse entsprechen Ihren Filterkriterien" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Sollte tägliche Saisonalität angewendet werden. Ein ganzzahliger Wert " -"gibt die Fourier-Reihenfolge der Saisonalität an." +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "Probieren Sie verschiedene Kriterien aus, um Ergebnisse anzuzeigen." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Sollte wöchentliche Saisonalität angewendet werden. Ein ganzzahliger Wert" -" gibt die Fourier-Reihenfolge der Saisonalität an." +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" +msgstr "Alle Filter löschen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Sollte jährliche Saisonalität angewendet werden. Ein ganzzahliger Wert " -"gibt die Fourier-Reihenfolge der Saisonalität an." +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Keine Daten" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" -msgstr "Anzeigen" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s von %s" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" -msgstr "Blasen anzeigen" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" +msgstr "Startdatum" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "CREATE VIEW-Anweisung anzeigen" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" +msgstr "Enddatum" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "CSS Vorlagen anzeigen" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "Geben Sie einen Wert ein" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Diagramm anzeigen" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "Filter" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Spalte anzeigen" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "Wert eingeben oder auswählen" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Dashboard anzeigen" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Zuletzt geändert" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Datenbank anzeigen" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Geändert durch" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" -msgstr "Beschriftung anzeigen" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Erstellt von" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "Weniger anzeigen..." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Erstellt am" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Protokoll anzeigen" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "Auslöser von Menüaktionen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" -msgstr "Markierungen anzeigen" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Auswählen …" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Metrik anzeigen" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" +msgstr "Filter-Menü" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" -msgstr "Metriknamen anzeigen" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" +msgstr "Zurücksetzen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" -msgstr "Bereichsfilter anzeigen" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" +msgstr "Keine Filter" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Gespeicherte Abfrage anzeigen" +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" +msgstr "Alle Elemente auswählen" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Tabelle anzeigen" +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" +msgstr "Suche in Filtern" + +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" +msgstr "Aktuelle Seite auswählen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "Zeitstempel anzeigen" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" +msgstr "Aktuelle Seite umkehren" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -msgid "Show Total" -msgstr "Gesamtsumme anzeigen" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" +msgstr "Alle Daten leeren" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" -msgstr "Trendlinie anzeigen" +#: superset-frontend/src/components/Table/index.tsx:226 +msgid "Select all data" +msgstr "Alle Daten auswählen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" -msgstr "Obere Beschriftungen anzeigen" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" +msgstr "Zeile erweitern" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" -msgstr "Wert anzeigen" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" +msgstr "Zeile zusammenklappen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" -msgstr "Werte anzeigen" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" +msgstr "Klicken Sie hier, um absteigend zu sortieren" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "Y-Achse anzeigen" +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" +msgstr "Klicken Sie hier, um aufsteigend zu sortieren" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." -msgstr "" -"Y-Achse auf der Sparkline anzeigen. Zeigt die manuell eingestellten Min" -"/Max-Werte an, falls festgelegt, andernfalls Min/Max-Werte der Daten." +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "Klicken, um die Sortierung abzubrechen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" -msgstr "Alle Spalten anzeigen" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" +msgstr "Liste aktualisiert" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." -msgstr "Zeige alle …" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "Beim Laden der Tabellen ist ein Fehler aufgetreten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" -msgstr "Anzeigen von Achsenlinien-Ticks" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Siehe Tabellenschema" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" -msgstr "Zellenbalken anzeigen" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" +msgstr "Tabelle auswählen oder tippen, um Tabellen zu suchen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -msgid "Show chart description" -msgstr "Diagrammbeschreibung anzeigen" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Aktualisierung erzwingen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" -msgstr "Spaltensumme anzeigen" +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "Sie haben keine Berechtigung, %s zu bearbeiten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "Datenpunkte als Kreismarkierungen auf den Linien darstellen" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Zeitzonen-Auswahl" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -msgid "Show empty columns" -msgstr "Leere Spalten anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Kreuzfilterung aktivieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -"Zeigen Sie hierarchische Beziehungen von Daten, wobei der Wert durch " -"Fläche dargestellt wird, der Anteil und Beitrag zum Ganzen zeigt." - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "Info-Tooltip anzeigen" +"Für diese Komponente ist nicht genügend Platz vorhanden. Versuchen Sie, " +"die Breite zu verringern oder die Zielbreite zu erhöhen." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" -msgstr "Beschriftung anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "" +"Registerkarte der obersten Ebene kann nicht in verschachtelte " +"Registerkarten verschoben werden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." -msgstr "Zeigen Sie Beschriftungen an, wenn der Knoten untergeordnete Elemente hat." +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Dieses Diagramm wurde in einen anderen Filterbereich verschoben." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" -msgstr "Legende anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "" +"Beim Abrufen des Favoritenstatus dieses Dashboards ist ein Problem " +"aufgetreten." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" -msgstr "Weniger Spalten anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Es gab ein Problem dabei, dieses Dashboard zu den Favoriten hinzuzufügen." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "Weniger..." +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" +msgstr "Dieses Dashboard ist jetzt veröffentlicht" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "Nur meine Diagramme anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "Dieses Dashboard ist nun verborgen" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." -msgstr "Passwort anzeigen." +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "Sie haben keine Berechtigungen zum Bearbeiten dieses Dashboards." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" -msgstr "Prozentsatz anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" +msgstr "[ unbenanntes Dashboard ]" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" -msgstr "Zeiger anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Dieses Dashboard wurde erfolgreich gespeichert." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" -msgstr "Fortschritt anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" +msgstr "Leider ist ein unbekannter Fehler aufgetreten" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "Zeilensumme anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "Reihenwerten im Diagramm anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "Sie haben keine Zugriff auf diese Datenquelle" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "Geteilte Linien anzeigen" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." +msgstr "Bitte bestätigen Sie die überschreibenden Werte." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "Anzeigen des Werts oben auf der Leiste" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." +msgstr "" +"Sie haben alle %(historyLength)s Undo-Slots verwendet und können " +"nachfolgende Aktionen nicht vollständig rückgängig machen. Sie können " +"Ihren aktuellen Status speichern, um den Verlauf zurückzusetzen." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "Zeitspalte anzeigen" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Nicht alle gespeicherten Diagramme konnten abgerufen werden" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "Dropdown-Liste Zeiteinheiten anzeigen" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten: " -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -"Zeigen Sie die Gesamtaggregationen ausgewählter Metriken an. Beachten " -"Sie, dass das Zeilenlimit nicht für das Ergebnis gilt." +"Jede hier ausgewählte Farbpalette überschreibt die Farben, die auf die " +"einzelnen Diagramme dieses Dashboards angewendet werden" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "Gesamtwerte anzeigen" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Ungesicherte Änderungen vorhanden." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." -msgstr "" -"Zeigt eine einzelne Metrik im Vordergrund. ‚Große Zahl‘ wird am besten " -"verwendet, um die Aufmerksamkeit auf einen KPI oder die eine Information " -"zu lenken, auf die sich Ihr Publikum konzentrieren soll." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "Ziehen Sie Komponenten und Diagramme per Drag & Drop auf das Dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -"Zeigt eine einzelne Zahl zusammen mit einem einfachen Liniendiagramm, um " -"die Aufmerksamkeit auf eine wichtige Metrik zusammen mit ihrer " -"Veränderung im Laufe der Zeit oder einer anderen Dimension zu lenken." +"Sie können ein neues Diagramm erstellen oder vorhandene Diagramme aus dem" +" Bereich auf der rechten Seite verwenden." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." -msgstr "" -"Zeigt, wie sich eine Metrik im Laufe des Trichters ändert. Dieses " -"klassische Diagramm ist nützlich, um den Abfall zwischen Phasen in einer " -"Pipeline oder einem Lebenszyklus zu visualisieren." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Neues Diagramm erstellen" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" +msgstr "Ziehen Sie Komponenten per Drag & Drop auf diese Registerkarte" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "Dieser Registerkarte wurden keine Komponenten hinzugefügt." + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "Sie können die Komponenten im Bearbeitungsmodus hinzufügen." + +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" +msgstr "Dashboard bearbeiten" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -"Zeigt den Fluss oder die Verknüpfung zwischen Kategorien anhand der Dicke" -" der Sehnen. Der Wert und die entsprechende Dicke können für jede Seite " -"unterschiedlich sein." +"Es gibt keine Diagrammdefinition, die dieser Komponente zugeordnet ist. " +"Könnte sie gelöscht worden sein?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -"Zeigt den Fortschritt einer einzelnen Metrik gegenüber einem bestimmten " -"Ziel. Je höher die Füllung, desto näher ist die Metrik am Ziel." +"Löschen Sie diesen Container und speichern Sie, um diese Nachricht zu " +"entfernen." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "Sie sehen %s von %s" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" +msgstr "Aktualisierungsintervall gespeichert" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "Zeigt eine Liste aller zu diesem Zeitpunkt verfügbaren Zeitreihen an." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Aktualisierungsinterval" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "Ein- oder Ausblenden von Markern für die Zeitreihe" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Aktualisierungsfrequenz" -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:31 -msgid "" -"Shows the composition of a dataset by segmenting a given rectangle as " -"smaller rectangles with areas proportional to their value or contribution" -" to the whole. Those rectangles may also, in turn, be further segmented " -"hierarchically." -msgstr "" -"Zeigt die Zusammensetzung eines Datensatzes an, indem ein bestimmtes " -"Rechteck als kleinere Rechtecke mit Bereichen segmentiert wird, die " -"proportional zu ihrem Wert oder Beitrag zum Ganzen sind. Diese Rechtecke " -"können wiederum auch hierarchisch weiter segmentiert werden." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Möchten Sie wirklich fortfahren?" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "Signifikanzniveau" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Für diese Sitzung speichern" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "Einfach" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Sie müssen einen Namen für das neue Dashboard auswählen" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "Einfache Ad-hoc-Metriken sind für diesen Datensatz nicht aktiviert" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Dashboard speichern" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" -msgstr "Einzeln" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Dashboard überschreiben [%s]" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" -msgstr "Einzelne Metrik" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Speichern unter:" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" -msgstr "Einzelner Wert" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[Dashboard-Name]" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" -msgstr "Einzelner Wert" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "auch (doppelte) Diagramme kopieren" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "Einzelwerttyp" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" +msgstr "Visualisierungstyp" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "Größe der Kantensymbole" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "Kürzlich" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "Größe des Markers. Gilt auch für Prognosebeobachtungen." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Neues Diagramm erstellen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "Fahrzeuggrößen" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Filtern Sie Ihre Diagramme" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "Leerzeilen überspringen" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +msgid "Filter charts" +msgstr "Diagramme filtern" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "Führende Leerzeichen überspringen" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "Sortieren nach %s" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "Zeilen überspringen" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" +msgstr "Nur meine Diagramme anzeigen" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -"Überspringen Sie Leerzeilen, anstatt sie als Nicht-Zahl-Werte zu " -"interpretieren" +"Sie können auswählen, ob alle Diagramme angezeigt werden sollen, auf die " +"Sie Zugriff haben, oder nur die Diagramme, die Sie besitzen.\n" +" Ihre Filterauswahl wird gespeichert und bleibt aktiv, bis " +"Sie sie ändern." -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" -msgstr "Leerzeichen nach Trennzeichen überspringen." +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Hinzugefügt" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Kopfzeile" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "Symbol für unbekannten Typ" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "Klein" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Visualisierungstyp" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "Kleines Zahlenformat" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Datensatz" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "Glatte Linie" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Superset Diagramm" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." -msgstr "" -"„Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne Winkel und " -"harte Kanten wirkt „Glatte Linie“ manchmal passender und professioneller." +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Sehen Sie sich dieses Diagramm im Dashboard an:" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "Durchgezogen" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "Layout-Elemente" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "Einige Rollen sind nicht vorhanden" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "CSS Vorlage laden" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." -msgstr "Etwas ist schief gelaufen." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Live CSS Editor" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "" -"Beim Abrufen von Datenbankinformationen ist leider ein Fehler " -"aufgetreten: %s" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "Inhalt der Registerkarte ausblenden" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten: " +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" +msgstr "Diesem Dashboard wurden keine Diagramme hinzugefügt." -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Leider ist ein Fehler aufgetreten" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" +msgstr "" +"Gehen Sie in den Bearbeitungsmodus, um das Dashboard zu konfigurieren und" +" Diagramme hinzuzufügen" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" -msgstr "Leider ist ein Fehler aufgetreten" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "Änderungen gespeichert." -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" -msgstr "Leider ist ein unbekannter Fehler aufgetreten" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" +msgstr "Einbettung deaktivieren?" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." -msgstr "Leider ist ein unbekannter Fehler aufgetreten." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." +msgstr "Dadurch wird Ihre aktuelle Embedded-Konfiguration entfernt." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "Einbetten deaktiviert." + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" "Entschuldigung, etwas ist schief gelaufen. Die Einbettung konnte nicht " "deaktiviert werden." -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." msgstr "Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "Leider scheint es keine Daten zu geben" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" +msgstr "" +"Dieses Dashboard ist bereit zum Einbetten. Übergeben Sie in Ihrer " +"Anwendung die folgende ID an das SDK:" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Leider ist beim Speichern dieses %s ein Fehler aufgetreten: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "" +"Konfigurieren Sie dieses Dashboard, um es in eine externe Webanwendung " +"einzubetten." -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "Weitere Anweisungen finden Sie in der" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "Entschuldigung. Ihr Browser unterstützt leider kein Kopieren." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." +msgstr "Superset Embedded SDK-Dokumentation." -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "Zulässige Domänen (durch Kommas getrennt)" + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -"Ihr Browser unterstützt leider kein Kopieren. Verwenden Sie Strg / Cmd + " -"C!" +"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/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" -msgstr "Sortieren" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" +msgstr "Deaktivieren" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" -msgstr "Balken sortieren" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" +msgstr "Änderungen speichern" + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" +msgstr "Einbettung aktivieren" + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" +msgstr "Einbetten" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" -msgstr "Absteigend sortieren" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" +msgstr "Kreuzfilter (%d) angewendet" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" -msgstr "Sortiermetrik" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" +msgstr "Angewendete Filter (%d)" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -msgid "Sort Series Ascending" -msgstr "Zeitreihen aufsteigend sortieren" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" +"Dieses Dashboard aktualisiert sich automatisch. Die nächste automatische " +"Aktualisierung erfolgt in %s." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -msgid "Sort Series By" -msgstr "Zeitreihen sortieren nach" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "" +"Ihr Dashboard ist zu groß. Bitte reduzieren Sie die Größe, bevor Sie es " +"speichern." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "X-Achse sortieren" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" +msgstr "Name des Dashboards hinzufügen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" -msgstr "Y-Achse sortieren" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" +msgstr "Dashboard Titel" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Aufsteigend sortieren" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" +msgstr "Aktion rückgängig machen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." -msgstr "Sortieren Sie Balken nach x-Beschriftungen." +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "Aktion wiederholen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Sortieren nach" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" +msgstr "Verwerfen" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" -msgstr "Sortieren nach %s" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Dashboard bearbeiten" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" -msgstr "Nach Metrik sortieren" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Beim Abrufen verfügbarer CSS-Vorlagen ist ein Fehler aufgetreten" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Spalten alphabetisch sortieren" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" +msgstr "Aktualisieren von Diagrammen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" -msgstr "Spalten sortieren nach" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Superset Dashboard" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "Absteigend sortieren" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Schauen Sie sich dieses Dashboard an: " -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" -msgstr "Filterwerte sortieren" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Dashboard aktualisieren" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Metrik anzeigen" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "Vollbildanzeige beenden" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" -msgstr "Zeilen sortieren nach" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "Vollbild öffnen" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" -msgstr "Sortieren von Zeitreihen in aufsteigender Reihenfolge" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Eigenschaften bearbeiten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" -msgstr "Art der Sortierung" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "CSS bearbeiten" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Quelle" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "Herunterladen" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" -msgstr "Quelle / Ziel" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "Exportieren als YAML" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Quell-SQL" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +#, fuzzy +msgid "Download as Image" +msgstr "Herunterladen als Bild" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" -msgstr "Quellkategorie" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Teilen" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" -msgstr "Sparkline" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" +msgstr "Permalink in Zwischenablage kopieren" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "Raumbezug" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "Permalink per E-Mail teilen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "Spezifisches Datum/Uhrzeit" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +msgid "Embed dashboard" +msgstr "Dashboard einbetten" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "Geben Sie ein Schema an (wenn die Datenbankvariante dies unterstützt)." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" +msgstr "E-Mail-Bericht verwalten" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Geben Sie doppelte Spalten als \"X.0, X.1\" an." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Festlegen der Filterzuordnung" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "Geben Sie den Namen für das CREATE TABLE AS in Schema public an:" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Auto-Aktualisieren-Interval setzen" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" -msgstr "Geben Sie den Namen für CREATE VIEW AS in Schema public an:" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" +msgstr "Überschreiben bestätigen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -"Geben Sie die Datenbankversion an. Dies sollte mit Presto verwendet " -"werden, um eine Abfragekostenschätzung zu ermöglichen." +"Scrollen Sie nach unten, um das Überschreiben von Änderungen zu " +"aktivieren. " -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" -msgstr "Zahl aufteilen" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" +msgstr "Ja, Änderungen überschreiben" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Square kilometers" -msgstr "Quadratkilometern" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Sind Sie sicher, dass Sie die folgenden Werte überschreiben möchten?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Square meters" -msgstr "Quadratmeter" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" +msgstr "Zuletzt aktualisiert %s von %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" -msgstr "Quadratmeilen" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Übernehmen" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" -msgstr "Gestapelt" +#: 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:66 +msgid "Error" +msgstr "Fehler" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" -msgstr "Stacktrace" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "Ein gültiges Farbschema ist erforderlich" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "Stack-Serie" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "JSON-Metadaten sind ungültig!" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "Reihen übereinander stapeln" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" +msgstr "Dashboard-Eigenschaften aktualisiert" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" -msgstr "Gestapelt" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Dashboard wurde erfolgreich gespeichert" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "Gestapelte Balken" +#: 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" + +#: 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." +msgstr "" +"Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern " +"können. Durchsuchbar nach Name oder Benutzer*innenname." + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Farben" + +#: 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 " +"defined, regular access permissions apply." +msgstr "" +"Rollen ist eine Liste, die den Zugriff auf das Dashboard definiert. Wenn " +"Sie einer Rolle Zugriff auf ein Dashboard gewähren, werden Prüfungen auf " +"Datensatzebene umgangen. Wenn keine Rollen definiert sind, werden die " +"generellen Berechtigungen angewendet." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "Gestapelter Stil" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Dashboardeigenschaften bearbeiten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" -msgstr "Gestapelter Stil" +#: 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 " +"bearbeitet werden." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "Standard-Zeitreihen" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Basisangaben" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Start" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "URL Titelform" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " -msgstr "Start (Längengrad, Breitengrad): " +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "Eine sprechende URL für Ihr Dashboard" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "Start Längengrad & Breitengrad" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "Zertifizierung" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" -msgstr "Starte Prüfung" +#: 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." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" -msgstr "Startwinkel" +#: 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 "" +"Alle zusätzlichen Details, die im Zertifizierungs-Tooltip angezeigt " +"werden sollen." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "Starten um (UT)" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." +msgstr "Eine Liste der Tags, die auf dieses Diagramm angewendet wurden." -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "Start date" -msgstr "Startdatum" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "JSON Metadaten" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "Startdatum im Zeitbereich enthalten" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." +msgstr "Bitte überschreiben Sie den \"filter_scopes“-Schlüssel NICHT." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "y-Achse bei 0 beginnen" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "Verwenden Sie stattdessen das Menü \"%(menuName)s\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -"Beginnen Sie die y-Achse bei Null. Deaktivieren Sie das Kontrollkästchen," -" um die y-Achse beim Minimalwert in den Daten beginnen zu lassen." +"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der" +" Dashboards angezeigt. Klicken Sie hier, um dieses Dashboard zu " +"veröffentlichen." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -msgid "Started" -msgstr "Gestartet" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" +"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der" +" Dashboards angezeigt. Wählen Sie es als Favorit aus, um es dort zu " +"sehen, oder greifen Sie direkt über die URL darauf zu." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Zustand" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "" +"Dieses Dashboard ist veröffentlicht. Klicken Sie hier, um es in den " +"Entwurfstatus zu setzen." -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" -msgstr "Anweisung %(statement_num)s von %(statement_count)s" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Entwurf" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" -msgstr "Statistisch" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Anmerkungsebenen werden noch geladen." -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Status" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" -msgstr "Schritt - Ende" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +#, fuzzy +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." +msgstr "" +"Dieses Diagramm gibt Kreuzfilter aus/wendet sie auf andere Diagramme an, " +"die denselben Datensatz verwenden." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" -msgstr "Schritt - Mitte" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "Daten aktualisiert" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" -msgstr "Schritt - Start" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "%s zwischengespeichert" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" -msgstr "Schritttyp" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "%s abgerufen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" -msgstr "Stufendiagramm" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "Abfrage %s: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "" -"Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine " -"Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von " -"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich" -" sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " -"Abständen auftreten." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Aktualisierung erzwingen" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Stopp" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" +msgstr "Diagrammbeschreibung ausblenden" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Abfrage anhalten" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" +msgstr "Diagrammbeschreibung anzeigen" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" -msgstr "Beenden der Ausführung (Strg + e)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Kreuzfilterung aktivieren" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "Ausführung abbrechen (Strg + x)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Abfrage anzeigen" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Eine unsichere Datenbankverbindung wurde beendet" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" +msgstr "Als Tabelle anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" -msgstr "Stream" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, python-format +msgid "Chart Data: %s" +msgstr "Diagrammdaten: %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" -msgstr "Straßen" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Diagramm per Email teilen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "Stärke, mit der Graph in Richtung Mitte gezogen wird" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " +msgstr "Sehen Sie sich dieses Diagramm an: " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" -msgstr "Gestreckter Stil" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" +msgstr "Export nach .CSV" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "" -"Zeichenfolgen, die für Blattnamen verwendet werden (Standard ist das " -"erste Blatt)." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" +msgstr "Exportieren nach Excel" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" -msgstr "Strichfarbe" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" +msgstr "Export in vollständiges . .CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" -msgstr "Strichstärke" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Exportieren nach Excel" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" -msgstr "Gestrichelt" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Herunterladen als Bild" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" -msgstr "Strukturell" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." +msgstr "Etwas ist schief gelaufen." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Stil" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Suche..." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "Enden des Fortschrittsbalkens mit einer runden Kappe versehen" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Kein Filter ausgewählt." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" -msgstr "Subdomain" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Bearbeiten von einem Filter:" + +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Stapelbearbeitung %d Filter:" + +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Filterbereiche konfigurieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" -msgstr "Untertitel" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "In diesem Dashboard gibt es keine Filter." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "Schriftgröße Untertitel" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Alle aufklappen" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" -msgstr "Senden" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Alle einklappen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" -msgstr "Zwischensumme" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" +msgstr "Beim Öffnen von Explore ist ein Fehler aufgetreten" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "Erfolg" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" +msgstr "Leere Spalte" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" -msgstr "Datensatz erfolgreich geändert!" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Diese Markdown-Komponente weist einen Fehler auf." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" -msgstr "Suffix, das hinter der Prozentanzeige angezeigt werden soll" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "" +"Diese Markdown-Komponente weist einen Fehler auf. Bitte machen Sie Ihre " +"letzten Änderungen rückgängig." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" -msgstr "Summe" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "Leere Zeile" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "Summe als Anteil der Spalten" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" +msgstr "Sie können" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "Summe als Anteil der Zeilen" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" +msgstr "Neues Diagramm erstellen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" -msgstr "Summe als Anteil am Gesamtbetrag" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" +msgstr "oder verwenden Sie vorhandene aus dem Bereich auf der rechten Seite" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" -msgstr "Summe der Werte über einen bestimmten Zeitraum" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" +msgstr "Hinzufügen können Sie die Komponenten in der" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Sum values" -msgstr "Summenwerte" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" +msgstr "Bearbeitungsmodus" -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Sunburst" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Dashboard-Reiter löschen?" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "Sunburst Diagramm" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" +"Wenn Sie eine Registerkarte löschen, werden alle darin enthaltenen " +"Inhalte entfernt. Sie können diese Aktion immer noch rückgängig machen, " +"indem Sie die" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -msgid "Sunburst Chart v2" -msgstr "Sunburst Diagramm v2" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "Rückgängig" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Sonntag" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "Schaltfläche (cmd + z), bis Sie Ihre Änderungen speichern." -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" -msgstr "Superset Diagramm" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "ABBRECHEN" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "Superset Embedded SDK-Dokumentation." +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Trenner" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Superset Diagramm" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Header" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Superset Dashboard" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" +msgstr "Text" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." -msgstr "Superset hat beim Ausführen eines Befehls einen Fehler festgestellt." +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Reiter" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." -msgstr "Superset hat einen unerwarteten Fehler festgestellt." +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "Hintergrund" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" -msgstr "Unterstützte Datenbanken" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Vorschau" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "Umfrage-Antworten" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut." -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -msgid "Swap dataset" -msgstr "Datensatz austauschen" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" +msgstr "Unbekannter Wert" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" -msgstr "Zeilen und Spalten vertauschen" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" +msgstr "Filter hinzufügen/bearbeiten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." -msgstr "" -"Schweizer Taschenmesser zur Visualisierung von Daten. Wählen Sie zwischen" -" Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser " -"Visualisierungstyp hat auch viele Anpassungsoptionen." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." +msgstr "Bisher wurden diesem Dashboard noch keine Filter hinzugefügt." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." -msgstr "" -"Schweizer Taschenmesser zur Visualisierung von Zeitreihendaten. Wählen " -"Sie zwischen Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser " -"Visualisierungstyp verfügt auch über viele Anpassungsoptionen." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" +msgstr "Derzeit sind keine globalen Filter gesetzt" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" -msgstr "Symbol" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgstr "" +"Klicken Sie auf die Schaltfläche \"+Filter hinzufügen/bearbeiten\", um " +"neue Dashboard-Filter zu erstellen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" -msgstr "Symbol für zwei Enden der Kantenlinie" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" +msgstr "Filter anwenden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" -msgstr "Symbolgröße" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Alles löschen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "Spalten aus der Quelle synchronisieren" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" +msgstr "Suchen des Diagramms" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" +msgstr "Kreuzfilter" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "TABELLEN" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" -msgstr "ZEITLICHE X-ACHSE" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Diagramme auswählen" -#: superset-frontend/src/explore/constants.ts:91 -msgid "TEMPORAL_RANGE" -msgstr "TEMPORAL_RANGE" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "DO" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "DI" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Tabellenname" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Alle Diagramme" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "Registerkartentitel" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" +msgstr "Kreuzfilterung aktivieren" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabelle" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" +msgstr "Ausrichtung des Filterbalkens" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "Tabelle %(table)s wurde in der Datenbank nicht gefunden %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" +msgstr "Vertikal (links)" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "Tabelle existiert" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" +msgstr "Horizontal (oben)" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Tabellenname" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" +msgstr "Weitere Filter" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Tabellenansicht" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" +msgstr "Keine angewendete Filter" -#: superset/datasets/commands/exceptions.py:147 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 #, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" -msgstr "" -"Tabelle [%(table_name)s] konnte nicht gefunden werden, überprüfen Sie " -"bitte Ihre Datenbankverbindung, Ihr Schema und Ihren Tabellennamen" - -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" -msgstr "" -"Tabelle [%{table}s] konnte nicht gefunden werden, bitte überprüfen Sie " -"Ihre Datenbankverbindung, Schema und Tabellenname, Fehler: {}" +msgid "Applied filters: %s" +msgstr "Angewendete Filter: %s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" -msgstr "Tabellen-Cache Timeout" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Filter konnte nicht geladen werden" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" -msgstr "Tabellenspalten" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" +msgstr "Filter außerhalb des Gültigkeitsbereichs (%d)" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" -msgstr "Tabelle lädt…" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "Abhängig von" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" -msgstr "Der Tabellenname darf kein Schema enthalten" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "" +"Filter zeigt nur Werte an, die für die Auswahl in anderen Filtern " +"relevant sind." -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Tabellenname nicht definiert" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Geltungsbereich" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "Der Benutzer*innenname \"%(username)s\" existiert nicht." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "Filter Typ" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." -msgstr "" -"Tabelle, die gepaarte t-Tests visualisiert, die verwendet werden, um " -"statistische Unterschiede zwischen Gruppen zu verstehen." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "Titel ist erforderlich" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tabellen" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Entfernt)" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "Reiter" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Rückgängig machen?" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" -msgstr "Tabellarisch" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "Filter und Trennlinien hinzufügen" -#: superset/tags/commands/exceptions.py:34 -msgid "Tag could not be created." -msgstr "Tag konnte nicht erstellt werden." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" +msgstr "[Unbenannt]" -#: superset/tags/commands/exceptions.py:38 -msgid "Tag could not be deleted." -msgstr "Tag konnte nicht gelöscht werden." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "Zyklische Abhängigkeit erkannt" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "Tag-Name ist ungültig (darf nicht ‚:‘ enthalten)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" +msgstr "Hinzufügen und Bearbeiten von Filtern" -#: superset/tags/commands/exceptions.py:30 -msgid "Tag parameters are invalid." -msgstr "Tag-Parameter sind ungültig." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "Spaltenauswahl" -#: superset/tags/commands/exceptions.py:42 -msgid "Tagged Object could not be deleted." -msgstr "Getaggtes Object konnte nicht gelöscht werden." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "Spalte wählen" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" -msgstr "Schlagwörter" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "Keine kompatiblen Quellen gefunden" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" -msgstr "" -"Gruppieren Sie Ihre Datenpunkte in Klassen, um zu sehen, wo die " -"dichtesten Informationsbereiche liegen" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" +msgstr "Keine kompatiblen Datensätze gefunden" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" -msgstr "Ziel" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Alle Daten auswählen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" -msgstr "Zielfarbe" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "Wert ist erforderlich" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" -msgstr "Zielkategorie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" +msgstr "(gelöschter oder ungültiger Typ)" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "Zielwert" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" +msgstr "Typ einschränken" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Vorlagenname" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." +msgstr "Keine Filter verfügbar." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Vorlagen-Parameter" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Filter hinzufügen" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." -msgstr "" -"Vorlagen-Link. Es ist möglich, {{ metric }} oder andere Werte aus den " -"Steuerelementen einzuschließen." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "Werte sind abhängig von anderen Filtern" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -"Beenden Sie die Ausführung von Abfragen, wenn das Browserfenster " -"geschlossen oder zu einer anderen Seite navigiert wird. Verfügbar für " -"Presto-, Hive-, MySQL-, Postgres- und Snowflake-Datenbanken." - -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Verbindungstest" +"In anderen Filtern ausgewählte Werte wirken sich auf die Filteroptionen " +"aus, sodass nur relevante Werte angezeigt werden" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Verbindungstest" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Werte abhängig von" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" -msgstr "Text" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Auswahlverfahren" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" -msgstr "Textausrichtung" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Filterkonfiguration" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" -msgstr "In E-Mail eingebetteter Text" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "Filtereinstellungen" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" -"Die API-Antwort von %s stimmt nicht mit der IDatabaseTable-Schnittstelle " -"überein." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "Filter auswählen" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" -msgstr "" -"Das CSS für einzelne Dashboards kann hier oder in der Dashboard-Ansicht " -"geändert werden, wo Änderungen sofort sichtbar sind" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "Bereichsfilter" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." -msgstr "" -"CTAS (create table as select) kann nur mit einer Abfrage ausgeführt " -"werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie " -"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat." -" Versuchen Sie dann erneut, die Abfrage auszuführen." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "Numerischer Bereich" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." -msgstr "" -"Der GeoJsonLayer nimmt GeoJSON-formatierte Daten auf und stellt sie als " -"interaktive Polygone, Linien und Punkte (Kreise, Symbole und/oder Texte) " -"dar." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "Zeitfilter" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "In der URL fehlen die Parameter dataset_id oder slice_id." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Zeitbereich" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" -msgstr "Die X-Achse befindet sich nicht in der Filterliste" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Zeitspalten" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" -"Die X-Achse befindet sich nicht in der Filterliste, weshalb sie nicht als" -"\n" -" Zeitbereichsfilter in Dashboards verwendet werden kaann. " -"Möchten Sie es zur Filterliste hinzufügen?" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Zeitgranularität" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "Die Zugriffsanfragen scheinen gelöscht worden zu sein" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "Gruppieren nach" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "Die Anmerkung wurde erfolgreich gespeichert" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Gruppieren nach" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" -msgstr "Anmerkung wurde aktualisiert" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "Vorfilterung erforderlich" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -"Die Kategorie der Quellknoten, die zum Zuweisen von Farben verwendet " -"werden. Wenn ein Knoten mehr als einer Kategorie zugeordnet ist, wird nur" -" die erste verwendet." +"Zeitspalte, auf die ein abhängiger zeitlicher Filter angewendet werden " +"soll" -#: superset/common/query_context_processor.py:585 -msgid "The chart datasource does not exist" -msgstr "Die Diagrammdatenquelle ist nicht vorhanden" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "Zeitspalte, auf die der Zeitbereich angewendet werden soll" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "Das Diagramm ist nicht vorhanden" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Tabellenname" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Name ist erforderlich" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Filtertyp" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "Datensätze enthalten keine temporale Spalte" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -"Der Klassiker. Großartig, um zu zeigen, wie viel von einem Unternehmen " -"jeder Investor bekommt, welche Demografie Ihrem Blog folgt oder welcher " -"Teil des Budgets in den militärisch-industriellen Komplex fließt.\n" -"\n" -"Kreisdiagramme können schwierig zu interpretieren sein. Wenn die Klarheit" -" des relativen Anteils wichtig ist, sollten Sie stattdessen die " -"Verwendung eines Balkens oder eines anderen Diagrammtyps in Betracht " -"ziehen." +"Dashboard-Zeitbereichsfilter gelten für zeitliche Spalten, die im\n" +" Filterabschnitt jedes Diagramms festgelegt wurden. Fügen Sie " +"Zeitspalten zu\n" +" Diagrammfiltern hinzu, damit sich dieser Dashboardfilter auf " +"diese Diagramme auswirkt." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" -msgstr "Die Farbe für Punkte und Cluster in RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "Datensatz ist erforderlich" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "Das zur Diagrammanzeige verwendete Farbschema" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "Verfügbare Werte vorfiltern" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -"Das Farbschema wird vom zugehörigen Dashboard bestimmt.\n" -" Bearbeiten Sie das Farbschema in den Dashboard-" -"Eigenschaften." +"Fügen Sie Filterklauseln hinzu, um die Anfrage der Filter-Quelle zu " +"steuern.\n" +" allerdings nur im Zusammenhang mit der " +"Autovervollständigung, d.h. diese Bedingungen\n" +" wirken Sie sich nicht darauf aus, wie der Filter auf " +"das Dashboard angewendet wird. Das ist nützlich,\n" +" wenn Sie die Antwortzeit der Abfrage verbessern " +"möchten, indem Sie nur eine Teilmenge\n" +" der zugrunde liegenden Daten scannen oder die " +"verfügbaren Werte einschränken, die im Filter angezeigt werden." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" -msgstr "Die Spaltenüberschrift" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" +msgstr "Vorfilter" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." -msgstr "Die Spalte wurde in der Datenbank gelöscht oder umbenannt." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "Kein Filter" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" -msgstr "Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "Filterwerte sortieren" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "Dashboard wurde erfolgreich gespeichert" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "Art der Sortierung" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "Die Datenquelle scheint gelöscht worden zu sein" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Aufsteigend sortieren" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." -msgstr "" -"Der Datentyp, der von der Datenbank abgeleitet wurde. In einigen Fällen " -"kann es erforderlich sein, einen Typ für ausdrucksdefinierte Spalten " -"manuell einzugeben. In den meisten Fällen sollten Benutzer*innen dies " -"nicht ändern müssen." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Sortiermetrik" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -"Die Datenbank %s ist mit %s Diagrammen verknüpft, die auf %s Dashboards " -"angezeigt werden und Nutzende haben %s SQL Lab Reiter geöffnet, die auf " -"diese Datenbank zugreifen. Sind Sie sicher, dass Sie fortfahren möchten? " -"Durch das Löschen der Datenbank werden diese Objekte ungültig." +"Wenn eine Metrik angegeben wird, erfolgt die Sortierung basierend auf dem" +" Metrikwert" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" -msgstr "Die Datenbankspalten, die Zeileninformationen enthalten" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Metrik anzeigen" -#: superset/sqllab/commands/estimate.py:58 -msgid "The database could not be found" -msgstr "Datenbank nicht gefunden." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "Einzelner Wert" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "Die Datenbank führt derzeit zu viele Abfragen aus." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "Einzelwerttyp" -#: superset/errors.py:99 -msgid "The database is under an unusual load." -msgstr "Die Datenbank ist ungewöhnlich belastet." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "Genau" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "" -"Die Datenbank, auf die in dieser Abfrage verwiesen wird, wurde nicht " -"gefunden. Wenden Sie sich an eine*n Administrator*in, um weitere " -"Unterstützung zu erhalten, oder versuchen Sie es erneut." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "Filter hat den Standardwert" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." -msgstr "Die Datenbank hat einen unerwarteten Fehler zurückgegeben." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Standardwert" -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "Die Datenbank wurde gelöscht." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "Standardwert ist erforderlich" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." -msgstr "Datenbank nicht gefunden." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "Aktualisieren der Standardwerte" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -"Der %s Datensatz ist mit %s Diagrammen verknüpft, die auf %s Dashboards " -"angezeigt werden. Sind Sie sicher, dass Sie fortfahren möchten? Durch das" -" Löschen des Datensatzes werden diese Objekte ungültig." +"Füllen Sie alle erforderlichen Felder aus, um \"Standardwert\" zu " +"aktivieren" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "Der diesem Diagramm zugeordnete Datensatz ist nicht mehr vorhanden" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Sie haben diesen Filter entfernt." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Filter wiederherstellen" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "Spalte ist erforderlich" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -"Die hier verfügbar gemachte Datensatzkonfiguration\n" -" wirkt sich auf alle Diagramme aus, die diesen Datensatz " -"verwenden.\n" -" Achten Sie darauf, dass das hier vorgenommene " -"Einstellungs-\n" -" änderungen sich in unerwünschter Weise\n" -" auf andere Diagramme auswirken können." +"Standardwert wird automatisch festgelegt, wenn „Erstes Element als " +"Standard“ aktiviert ist" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "Der Datensatz wurde gespeichert" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" +msgstr "" +"Der Standardwert muss festgelegt werden, wenn „Filterwert ist " +"erforderlich\" aktiviert ist" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"Der mit diesem Diagramm verknüpfte Datensatz wurde möglicherweise " -"gelöscht." +"Standardwert muss festgelegt werden, wenn \"Filter hat Standardwert\" " +"aktiviert ist" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "Datenquelle konnte nicht geladen werden" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Auf alle Bereiche anwenden" -#: superset/errors.py:98 -msgid "The datasource is too large to query." -msgstr "Die Datenquelle ist zu groß, um sie abzufragen." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Anwenden auf bestimmte Bereiche" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" -"Die Beschreibung kann als Widget-Titel in der Dashboard-Ansicht angezeigt" -" werden. Unterstützt Markdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "Nur ausgewählte Bereiche sind von diesem Filter betroffen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "Der Abstand zwischen Zellen in Pixel" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "Alle Bereiche mit dieser Spalte sind von diesem Filter betroffen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "Alle Bereiche" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -"Die Zeitdauer in Sekunden, bevor der Cache ungültig wird. Setzen Sie " -"diese auf -1 um den Cache zu umgehen." +"Dieses Diagramm ist möglicherweise nicht mit dem Filter kompatibel " +"(Datensätze stimmen nicht überein)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" -msgstr "Das Kodierungsformat der Zeilen" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Weiter bearbeiten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." -msgstr "" -"Das engine_params Objekt wird in den sqlalchemy.create_engine Aufrufs " -"entpackt." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Ja, abbrechen" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " -msgstr "Folgende Einträge in 'series_columns' fehlen in ‚columns‘: %(columns)s. " +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "Ungesicherte Änderungen vorhanden." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "Die beim Aggregieren von Punkten in Gruppen zu verwendende Funktion" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Möchten Sie wirklich abbrechen?" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -"Der Host \"%(hostname)s\" ist möglicherweise heruntergefahren und kann " -"nicht erreicht werden." +"Fehler beim Laden von Diagrammdatenquellen. Filter funktionieren " +"möglicherweise nicht ordnungsgemäß." + +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "Transparent" + +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "Weiß" + +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Alle Filter" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." -msgstr "" -"Der Host \"%(hostname)s\" ist möglicherweise außer Betrieb und kann über " -"Port %(port)s nicht erreicht werden." +msgid "Click to edit %s." +msgstr "Klicken Sie hier, um %s zu bearbeiten." -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "" -"Der Host ist möglicherweise außer Betrieb und kann über den angegebenen " -"Port nicht erreicht werden." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." +msgstr "Klicken Sie hier, um das Diagramm zu bearbeiten." -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "Der Hostname \"%(hostname)s\" kann nicht aufgelöst werden." +msgid "Use %s to open in a new tab." +msgstr "Verwenden Sie %s, um eine neue Registerkarte zu öffnen." -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." -msgstr "Der angegebene Hostname kann nicht aufgelöst werden." +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" +msgstr "Mittel" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "Die ID des aktiven Diagramms" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" +msgstr "Neue Überschrift" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Registerkartentitel" -#: superset/connectors/sqla/views.py:325 +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"Die Liste der Diagramme, die dieser Tabelle zugeordnet sind. Durch Ändern" -" dieser Datenquelle können Sie das Verhalten der zugeordneten Diagramme " -"ändern. Beachten Sie auch, dass Diagramme auf eine Datenquelle verweisen " -"müssen, sodass dieses Formular beim Speichern fehlschlägt, wenn Diagramme" -" aus einer Datenquelle entfernt werden. Wenn Sie die Datenquelle für ein " -"Diagramm ändern möchten, überschreiben Sie das Diagramm aus der " -"\"Explore-Ansicht\"." +"In dieser Sitzung ist eine Unterbrechung aufgetreten, und einige " +"Steuerelemente funktionieren möglicherweise nicht wie beabsichtigt. Wenn " +"Sie der/die Entwickler*in dieser App sind, überprüfen Sie bitte, ob das " +"Gast-Token korrekt generiert wird." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "" -"Die maximale Anzahl der zurückzugebenden Ereignisse, entspricht der " -"Anzahl Zeilen" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" +msgstr "Ist gleich (==)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" -msgstr "" -"Die maximale Anzahl von Unterteilungen jeder Gruppe; Niedrigere Werte " -"werden zuerst ausgeblendet" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" +msgstr "Ist nicht gleich (≠)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "Der Maximalwert von Metriken. Optionale Konfiguration" +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" +msgstr "Weniger als (<)" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." -msgstr "" -"Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. " -"Der Schlüssel %(key)s ist ungültig." +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" +msgstr "Kleiner oder gleich (<=)" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." -msgstr "" -"Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. " -"Der Schlüssel %{key}s ist ungültig." +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" +msgstr "Größer als (>)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "" -"Das metadata_params Objekt wird in den sqlalchemy.MetaData-Aufruf " -"entpackt." +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" +msgstr "Größer oder gleich (>=)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" -msgstr "" -"Die Mindestanzahl von rollierender Perioden, die erforderlich sind, um " -"einen Wert anzuzeigen. Wenn Sie beispielsweise eine kumulative Summe an 7" -" Tagen durchführen, möchten Sie möglicherweise, dass Ihr " -"\"Mindestzeitraum\" 7 beträgt, so dass alle angezeigten Datenpunkte die " -"Summe von 7 Perioden sind. Dies wird den \"Hochlauf\" verbergen, der in " -"den ersten 7 Perioden stattfindet" +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" +msgstr "in" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "Die Anzahl Farbabstufungen" +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" +msgstr "Nicht in" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." -msgstr "" -"Die Anzahl der Stunden, negativ oder positiv, um die Zeitspalte zu " -"verschieben. Dies kann verwendet werden, um die UTC-Zeit auf die Ortszeit" -" zu verschieben." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" +msgstr "Wie (Like)" + +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" +msgstr "Like (Groß-/Kleinschreibung wird nicht beachtet)" + +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" +msgstr "Ist nicht null" + +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" +msgstr "Ist null" + +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" +msgstr "latest_partition Vorlage verwenden" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." -msgstr "" -"Die Anzahl der angezeigten Ergebnisse ist durch die Konfiguration " -"DISPLAY_MAX_ROW auf %(rows)d begrenzt. Bitte fügen Sie zusätzliche " -"Limits/Filter hinzu oder laden Sie sie als CSDV-Datei herunter, um " -"weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" +msgstr "Ist wahr" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." -msgstr "" -"Die Anzahl der angezeigten Ergebnisse ist auf %(rows)d begrenzt. Bitte " -"fügen Sie zusätzliche Limits/Filter hinzu, laden Sie sie als CSV-Datei " -"herunter oder wenden Sie sich an eine*n Administrator*in, um weitere " -"Zeilen bis zum %(limit)d-Limit anzuzeigen." +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" +msgstr "Ist falsch" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "" -"Die Anzahl der angezeigten Zeilen ist durch das Dropdown-Menü auf " -"%(rows)d beschränkt." +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" +msgstr "TEMPORAL_RANGE" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "" -"Die Anzahl der angezeigten Zeilen ist durch Dropdownliste \"Limit\" auf " -"%(rows)d beschränkt." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Zeitgranularität" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "" -"Die Anzahl der angezeigten Zeilen ist durch die Abfrage auf %(rows)d " -"beschränkt" +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "Dauer in ms (100,40008 => 100ms 400μs 80ns)" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -"Die Anzahl der angezeigten Zeilen ist durch Dropdownliste-Abfrage und " -"-Limit auf %(rows)d beschränkt." +"Eine oder mehrere Spalten, nach denen gruppiert werden soll. " +"Gruppierungen mit hoher Kardinalität sollten ein Zeitreihenlimit " +"enthalten, um die Anzahl der abgerufenen und dargestellten Zeitreihen zu " +"begrenzen." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "Die Anzahl der Sekunden vor Ablauf des Caches" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Eine oder mehrere anzuzeigende Metriken" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "Das Objekt existiert nicht in der angegebenen Datenbank." +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Fixierte Farbe" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "Der Parameter %(parameters)s in ihrer Abfrage ist nicht definiert." -msgstr[1] "" -"Die folgenden Parameter in Ihrer Abfrage sind nicht definiert: " -"%(parameters)s." +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Metrik der rechten Achse" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "" -"Das für den Benutzer*innennamen \"%(username)s\" angegebene Kennwort ist " -"falsch." +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Wählen Sie eine Metrik für die rechte Achse" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "" -"Das Kennwort, das beim Herstellen einer Datenbankverbindung angegeben " -"wurde, ist ungültig." +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Farbverlaufschema" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Metrik auswählen" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Ein oder mehrere Steuerelemente, um zu Spalten zu pivotieren" -#: superset-frontend/src/pages/ChartList/index.tsx:93 +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -"Die Passwörter für die folgenden Datenbanken werden benötigt, um sie " -"zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die " -"Abschnitte \"Secure Extra\" und \"Certificate\" der " -"Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " -"Bedarf nach dem Import manuell hinzugefügt werden sollten." +"Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie " +"einfache natürliche, englische Sprache wie in \"10 seconds“, \"1 Day“ " +"oder \"56 weeks“ eingeben und verwenden können" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um" -" sie zusammen mit den Dashboards zu importieren. Bitte beachten Sie, dass" -" die Abschnitte \"Secure Extra\" und \"Certificate\" der " -"Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " -"Bedarf nach dem Import manuell hinzugefügt werden sollten." +"Die Zeitgranularität für die Visualisierung. Dadurch wird eine " +"Datumstransformation angewendet, um ihre Zeitspalte zu ändern, und es " +"wird eine neue Zeitgranularität definiert. Die Optionen hier werden pro " +"Datenbankmodul im Superset-Quellcode definiert." -#: superset-frontend/src/features/datasets/constants.ts:23 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -"Die Passwörter für die folgenden Datenbanken werden benötigt, um sie " -"zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die " -"Abschnitte \"Secure Extra\" und \"Certificate\" der " -"Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " -"Bedarf nach dem Import manuell hinzugefügt werden sollten." +"Der Zeitraum für die Visualisierung. Alle relativen Zeiten, z.B. " +"\"Letzter Monat\", \"Letzte 7 Tage\", \"jetzt\" usw., werden auf dem " +"Server anhand der Ortszeit des Servers (ohne Zeitzone) ausgewertet. Alle " +"QuickInfos und Platzhalterzeiten werden in UTC (ohne Zeitzone) " +"ausgedrückt. Die Zeitstempel werden dann von der Datenbank anhand der " +"lokalen Zeitzone des Moduls ausgewertet. Beachten Sie, dass man die " +"Zeitzone explizit nach dem ISO 8601-Format festlegen kann, wenn entweder " +"die Start- und/oder Endzeit angegeben wird." + +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Begrenzt die Anzahl der Zeilen, die angezeigt werden." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um" -" sie zusammen mit den gespeicherten Abfragen zu importieren. Bitte " -"beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" " -"der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " -"Bedarf nach dem Import manuell hinzugefügt werden sollten." +"Metrik, die verwendet wird, um zu definieren, wie die obersten Reihen " +"sortiert werden, wenn eine Reihen- oder Zeilenbegrenzung vorhanden ist. " +"Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls " +"zutreffend)." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -"Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zu " -"importieren. Bitte beachten Sie, dass die Abschnitte „Sicherheit Extra“ " -"und „Zertifikat“ der Datenbankkonfiguration nicht in „Dateien erkunden“ " -"vorhanden sind und nach dem Import manuell hinzugefügt werden sollten, " -"falls sie benötigt werden." +"Definiert die Gruppierung von Entitäten. Jede Serie wird als bestimmte " +"Farbe im Diagramm angezeigt und verfügt über einen Legenden-Umschalter" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "Das Muster des Zeitstempelformats. Für Zeichenfolgen verwenden Sie eine " +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Metrik, die der [X]-Achse zugewiesen ist" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." -msgstr "" -"Die Periodizität, über die die Zeit pilotiert werden soll. Benutzer " -"können\n" -" ein“ Pandas\" Offset-Alias angeben.\n" -" Klicken Sie auf die Infoblase, um weitere Informationen zu " -"akzeptierten \"freq\"-Ausdrücken zu erhalten." +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Metrik, die der [Y]-Achse zugewiesen ist" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "Der Pixelradius" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Blasengröße" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -"Der Zeiger auf eine physische Tabelle (oder Ansicht). Beachten Sie, dass " -"das Diagramm dieser logischen Superset-Tabelle zugeordnet ist welche auf " -"die hier angegebene physische Tabelle verweist." - -#: superset/errors.py:109 -msgid "The port is closed." -msgstr "Der Port ist geschlossen." +"Wenn 'Berechnungstyp' auf \"Prozentuale Änderung\" gesetzt ist, wird das " +"Y-Achsenformat '.1%' erzwungen" -#: superset/errors.py:142 -msgid "The port number is invalid." -msgstr "Die Port-Nummer ist ungültig." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Farbschema" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "Die primäre Metrik wird verwendet, um die Bogensegmentgrößen zu definieren" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "Beim Favorisieren des Diagramms ist ein Fehler aufgetreten." -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "Das angegebene Argument 'rows' ist keine gültige ganze Zahl." +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, python-format +msgid "Chart [%s] has been saved" +msgstr "Diagramm [%s] wurde gespeichert" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." -msgstr "Die den Ergebnissen zugeordnete Abfrage wurde gelöscht." +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, python-format +msgid "Chart [%s] has been overwritten" +msgstr "Diagramm [%s] wurde überschrieben" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." -msgstr "" -"Die mit diesen Ergebnissen verknüpfte Abfrage konnte nicht gefunden " -"werden. Sie müssen die ursprüngliche Abfrage erneut ausführen." +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "Dashboard [%s] wurde gerade erstellt und Diagramm [%s] hinzugefügt" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." -msgstr "Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "Diagramm [%s] wurde dem Dashboard hinzugefügt [%s]" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "Die Abfrage konnte nicht geladen werden" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" +msgstr "Gruppieren nach" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -"Die Abfrage-Schätzung wurde nach %(sqllab_timeout)s Sekunden abgebrochen." -" Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark " -"belastet." +"Verwenden Sie diesen Abschnitt, wenn Sie eine Abfrage benötigen, die " +"aggregiert" -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "Die Abfrage weist einen Syntaxfehler auf." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" +msgstr "NICHT GRUPPIERT NACH" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "Die Abfrage hat keine Daten zurückgegeben" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "Verwenden Sie diesen Abschnitt, wenn Sie atomare Zeilen abfragen möchten" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" -"Die Abfrage wurde nach %(sqllab_timeout)s Sekunden abgebrochen. Sie war " -"eventuell zu komplex, oder die Datenbank ist aktuell stark belastet." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "Die X-Achse befindet sich nicht in der Filterliste" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"Der Radius (in Pixel), den der Algorithmus zum Definieren eines Clusters " -"verwendet. Wählen Sie 0, um das Clustering zu deaktivieren, aber beachten" -" Sie, dass eine große Anzahl von Punkten (>1000) zu Verzögerungen führt." +"Die X-Achse befindet sich nicht in der Filterliste, weshalb sie nicht als" +"\n" +" Zeitbereichsfilter in Dashboards verwendet werden kaann. " +"Möchten Sie es zur Filterliste hinzufügen?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -"Der Radius einzelner Punkte (die sich nicht in einem Cluster befinden). " -"Entweder eine numerische Spalte oder \"Auto\", die den Punkt basierend " -"auf dem größten Cluster skaliert" +"Sie können den letzten Zeitfilter nicht löschen, da er für " +"Zeitbereichsfilter in Dashboards verwendet wird." -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "Der Report wurde erstellt" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "Dieser Abschnitt enthält Validierungsfehler" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "Das Ergebnis-Backend verfügt nicht mehr über die Daten aus der Abfrage." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" +msgstr "Steuerelement-Einstellungen beibehalten?" -#: superset/errors.py:138 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -"Die im Backend gespeicherten Ergebnisse wurden in einem anderen Format " -"gespeichert und können nicht mehr deserialisiert werden." +"Sie haben Datensätze geändert. Alle Steuerelemente mit Daten (Spalten, " +"Metriken), die diesem neuen Dataset entsprechen, wurden beibehalten." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" -"Der umfangreiche Tooltip zeigt eine Liste aller Zeitreihen für diesen " -"Zeitpunkt" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" +msgstr "Weiter" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "" -"Das Schema \"%(schema)s\" existiert nicht. Zum Ausführen dieser Abfrage " -"muss ein gültiges Schema verwendet werden." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" +msgstr "Formular zurücksetzen" -#: superset/db_engine_specs/presto.py:673 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "Es wurden keine Formulareinstellungen beibehalten" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -"Das Schema \"%(schema_name)s\" existiert nicht. Zum Ausführen dieser " -"Abfrage muss ein gültiges Schema verwendet werden." +"Wir konnten beim Wechsel zu diesem neuen Datensatz keine " +"Steuerungselemente übernehmen." -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." -msgstr "Das Schema wurde in der Datenbank gelöscht oder umbenannt." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Anpassen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "Die Größe der quadratischen Zelle in Pixel" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "Link wird generiert, bitte warten." -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" -"Die eingegebene URL gilt nicht als sicher, verwenden Sie nur URLs mit " -"derselben Domain wie Superset." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "Diagrammhöhe" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "Die übermittelte Nutzlast hat das falsche Format." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" +msgstr "Diagrammbreite" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "Die übermittelte Nutzlast hat das falsche Schema." +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." -msgstr "" -"Die Tabelle \"%(table)s\" existiert nicht. Zum Ausführen dieser Abfrage " -"muss eine gültige Tabelle verwendet werden." +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Speichern (Überschreiben)" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." -msgstr "" -"Die Tabelle \"%(table_name)s\" existiert nicht. Zum Ausführen dieser " -"Abfrage muss eine gültige Tabelle verwendet werden." +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." +msgstr "Speichern unter..." -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" -"Die Tabelle wurde erstellt. Im Rahmen dieses zweiphasigen " -"Konfigurationsprozesses sollten Sie nun auf die Schaltfläche Bearbeiten " -"neben der neuen Tabelle klicken, um sie zu konfigurieren." +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Diagrammname" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt." +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" +msgstr "Datensatzbezeichnung" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "" -"Die Zeitspalte für die Visualisierung. Beachten Sie, dass Sie beliebige " -"Ausdrücke definieren können, die eine DATETIME-Spalte in der Tabelle " -"zurückgeben. Beachten Sie auch, dass der folgende Filter auf diese Spalte" -" oder diesen Ausdruck angewendet wird" +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." +msgstr "Ein wiederverwendbarer Datensatz wird mit Ihrem Diagramm gespeichert." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "" -"Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie " -"einfache natürliche Sprache wie in \"10 Sekunden\", \"1 Tag\" oder \"56 " -"Wochen\" eingeben und verwenden können" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Zu Dashboard hinzufügen" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "" -"Die Zeitgranularität für die Visualisierung. Beachten Sie, dass Sie " -"einfache natürliche, englische Sprache wie in \"10 seconds“, \"1 Day“ " -"oder \"56 weeks“ eingeben und verwenden können" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "Dashboard auswählen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." -msgstr "" -"Die Zeitgranularität für die Visualisierung. Dadurch wird eine " -"Datumstransformation angewendet, um ihre Zeitspalte zu ändern, und es " -"wird eine neue Zeitgranularität definiert. Die Optionen hier werden pro " -"Datenbankmodul im Superset-Quellcode definiert." +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "Auswählen" + +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +msgid " a dashboard OR " +msgstr " ein Dashboard ODER " + +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" +msgstr "Erstellen" + +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" +msgstr " eine neue" + +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Dashboard konnte nicht erstellt werden." + +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Diagramm konnte nicht erstellt werden." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." -msgstr "" -"Der Zeitraum für die Visualisierung. Alle relativen Zeiten, z.B. " -"\"Letzter Monat\", \"Letzte 7 Tage\", \"jetzt\" usw., werden auf dem " -"Server anhand der Ortszeit des Servers (ohne Zeitzone) ausgewertet. Alle " -"QuickInfos und Platzhalterzeiten werden in UTC (ohne Zeitzone) " -"ausgedrückt. Die Zeitstempel werden dann von der Datenbank anhand der " -"lokalen Zeitzone des Moduls ausgewertet. Beachten Sie, dass man die " -"Zeitzone explizit nach dem ISO 8601-Format festlegen kann, wenn entweder " -"die Start- und/oder Endzeit angegeben wird." +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Dashboard konnte nicht erstellt werden." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" -msgstr "" -"Die Zeiteinheit für jeden Block. Sollte eine kleinere Einheit als " -"domain_granularity sein. Sollte größer oder gleich Zeitgranularität sein" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Speichern & zum Dashboard gehen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" -msgstr "Die Zeiteinheit, die für die Gruppierung von Blöcken verwendet wird" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Diagramm speichern" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "Der anzuzeigende Visualisierungstyp" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" +msgstr "Formatiertes Datum" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" -msgstr "Die Maßeinheit für den angegebenen Punktradius" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" +msgstr "Spaltenformatierung" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "Der/die Benutzer*in scheint gelöscht worden zu sein" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" +msgstr "Datenbereich ausblenden" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" +msgstr "Datenbereich erweitern" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "Der Benutzer*innenname \"%(username)s\" existiert nicht." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" +msgstr "Beispiele" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "" -"Der Benutzer*innenname, der beim Herstellen einer Datenbankverbindung " -"angegeben wurde, ist ungültig." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" +msgstr "Für diesen Dataensatz wurden keine Beispiele zurückgegeben" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" -msgstr "Die Art und Weise, wie die Ticks auf der X-Achse angeordnet sind" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" +msgstr "Keine Ergebnisse" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" -msgstr "Die Breite der Linien" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Metriken & Spalten durchsuchen" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Es gibt zugehörige Alarme oder Reports" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +msgid "Create a dataset" +msgstr "Datensatz erstellen" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." +msgstr ", um Spalten und Metriken zu bearbeiten oder hinzuzufügen." -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "There are associated alerts or reports: %s," -msgstr "Es gibt zugehörige Alarme oder Reports: %s," +msgid "Showing %s of %s" +msgstr "Sie sehen %s von %s" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" -msgstr "Diesem Dashboard wurden keine Diagramme hinzugefügt." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "Weniger..." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "Dieser Registerkarte wurden keine Komponenten hinzugefügt." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "Zeige alle …" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "Es sind keine Datenbanken verfügbar" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "Weniger anzeigen..." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "In diesem Dashboard gibt es keine Filter." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "Dashboardfarben können nicht abgerufen werden" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." -msgstr "Ungesicherte Änderungen vorhanden." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Zu Dashboard hinzugefügt" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" +msgstr "Zu keinem Dashboard hinzugefügt" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -"In der SQL-Abfrage liegt ein Syntaxfehler vor. Vielleicht gab es einen " -"Rechtschreibfehler oder einen Tippfehler." +"Sie können eine Vorschauliste der Dashboards in der Dropdownliste für die" +" Diagrammeinstellungen anzeigen." -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" +msgstr "Nicht verfügbar" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" +msgstr "Name des Diagramms hinzufügen" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" +msgstr "Diagrammtitel" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -"Es gibt keine Diagrammdefinition, die dieser Komponente zugeordnet ist. " -"Könnte sie gelöscht worden sein?" +"Fügen Sie erforderlicher Steuerelementwerte hinzu, um das Diagramms zu " +"speichern" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "Diagrammtyp erfordert einen Datensatz" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -"Für diese Komponente ist nicht genügend Platz vorhanden. Versuchen Sie, " -"die Breite zu verringern oder die Zielbreite zu erhöhen." +"Dieser Diagrammtyp wird nicht unterstützt, wenn eine nicht gespeicherte " +"Abfrage als Diagrammquelle verwendet wird. " -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -msgid "There was an error fetching dataset" -msgstr "Fehler beim Abrufen des Datensatzes" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." +msgstr " , um Ihre Daten zu visualisieren." -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -msgid "There was an error fetching dataset's related objects" -msgstr "Fehler beim Abrufen der zugehörigen Objekte des Datensatzes" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "Erforderliche Steuerwerte wurden entfernt" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" -msgstr "Fehler beim Abrufen von Tabellen" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "Ihr Diagramm ist nicht aktuell" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Beim Abrufen des Favoritenstatus ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 +msgid "" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" +msgstr "" +"Sie haben die Werte in der Systemsteuerung aktualisiert, aber das " +"Diagramm wurde nicht automatisch aktualisiert. Führen Sie die Abfrage " +"aus, indem Sie auf die Schaltfläche \"Diagramm aktualisieren\" klicken " +"oder" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "Beim Abrufen der letzten Aktivität ist ein Fehler aufgetreten:" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "Steuerelemente beschriftet " -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -#, fuzzy -msgid "There was an error loading the chart data" -msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "Feld " -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" -msgstr "Fehler beim Laden der Datensatz-Metadaten" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +msgid "Chart Source" +msgstr "Diagrammquelle" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Datenquellen-Reiter öffnen" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "Beim Laden der Tabellen ist ein Fehler aufgetreten" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" +msgstr "Original" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "Pilotiert" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "Bei Ihrer Anfrage ist ein Fehler aufgetreten" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Sie sind nicht berechtigt, dieses Diagramm zu bearbeiten" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" +msgstr "Diagrammeigenschaften aktualisiert" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" +msgstr "Diagrammeigenschaften bearbeiten" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "" +"Dieses Diagramm wird extern verwaltet und kann nicht in Superset " +"bearbeitet werden." + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." +msgstr "" +"Die Beschreibung kann als Widget-Titel in der Dashboard-Ansicht angezeigt" +" werden. Unterstützt Markdown." -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Beim Löschen der ausgewählten %s ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "Person oder Gruppe, die dieses Diagramm zertifiziert hat." -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "Beim Löschen der ausgewählten Anmerkungen ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Konfiguration" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "Beim Löschen der ausgewählten Diagramme ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "" +"Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Setzen Sie " +"diesen auf -1 um das Coaching zu umgehen. Beachten Sie, dass " +"standardmäßig das Timeout des Datensatzes verwendet wird, wenn kein Wert " +"definiert wurde." -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "Beim Löschen der ausgewählten Dashboards ist ein Problem aufgetreten: " +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "" +"Eine Liste der Benutzer*innen, die das Diagramm ändern können. " +"Durchsuchbar nach Name oder Benutzer*innenname." -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Beim Löschen der ausgewählten Datensätze ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Limit erreicht" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Beim Löschen der ausgewählten Ebenen ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" +msgstr "Diagramm erstellen" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "Beim Löschen der ausgewählten Abfragen ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" +msgstr "Diagramm aktualisieren" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "Beim Löschen der ausgewählten Vorlagen ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Ungültige Längen-/Breitengrad-Konfiguration." -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "Beim Löschen ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "Länge/Breite vertauschen " -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." -msgstr "Beim Duplizieren des Datensatzes ist ein Problem aufgetreten." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Längen- und Breitengradspalten" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "Länge und Breite in einer Spalte mit Trennzeichen" + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -"Beim Duplizieren der ausgewählten Datensätze ist ein Problem aufgetreten:" -" %s" +"Mehrere Formate akzeptiert, recherchieren Sie in der geopy.points Python-" +"Bibliothek nach weiteren Details" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Es gab ein Problem dabei, dieses Dashboard zu den Favoriten hinzuzufügen." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geo Hashing" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "" -"Es gab ein Problem beim Abrufen von Reports, die an dieses Dashboard " -"angehängt waren." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "Textfeld" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "" -"Beim Abrufen des Favoritenstatus dieses Dashboards ist ein Problem " -"aufgetreten." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr " " -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Beim Abrufen Ihres Diagramms ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Leider ist ein Fehler aufgetreten" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Beim Abrufen Ihrer Dashboards ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" +msgstr "Als Datensatz speichern" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Beim Abrufen Ihrer letzten Aktivität ist ein Problem aufgetreten: %s" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "In SQL Lab öffnen" -#: superset-frontend/src/pages/Home/index.tsx:293 +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Beim Abrufen Ihrer gespeicherten Abfragen ist ein Problem aufgetreten: %s" +msgid "Failed to verify select options: %s" +msgstr "Auswahloptionen konnten nicht überprüft werden: %s" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetreten" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +msgid "No annotation layers" +msgstr "Keine Anmerkungs-Layer" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +msgid "Add an annotation layer" +msgstr "Anmerkungsebene hinzufügen" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Anmerkungsebene" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." +msgstr "Wählen Sie den Anmerkungs-Layer aus, den Sie verwenden möchten." -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 #, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s" +msgid "" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" +msgstr "" +"Verwenden Sie ein anderes vorhandenes Diagramm als Quelle für Anmerkungen" +" und Überlagerungen.\n" +" Ihr Diagramm muss einer der folgenden Visualisierungstypen " +"sein: [%s]" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Es gibt eine Schleife in Ihrem Sankey, bitte geben Sie einen Baum an. " -"Hier ist ein fehlerhafter Link: {}" +"Erwartet eine Formel mit abhängigem Zeitparameter 'x'\n" +" in Millisekunden seit Startzeit der UNIX-Zeit (epoch). mathjs " +"wird verwendet, um die Formeln auszuwerten.\n" +" Beispiel: '2x+5'" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "Dies sind die Tabellen, auf die dieser Filter angewendet wird." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "Wert der Anmerkungsebene" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "Diese Filter gelten für die in den Dropdowns verfügbaren Werte" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." +msgstr "Fehlerhafte Formel." -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" -"Diese Parameter werden dynamisch generiert, wenn Sie in der Explore-" -"Ansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Dieses" -" JSON-Objekt wird hier als Referenz und für Hauptbenutzer*in verfügbar " -"gemacht, die möglicherweise bestimmte Parameter ändern möchten." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Konfiguration Anmerkungs-Slice" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -"Dieses JSON-Objekt wird dynamisch generiert, wenn Sie in der " -"Dashboardansicht auf die Schaltfläche Speichern oder Überschreiben " -"klicken. Es wird hier als Referenz und für Power-User verfügbar gemacht, " -"die möglicherweise bestimmte Parameter ändern möchten." +"In diesem Abschnitt können Sie konfigurieren, wie die Zeitscheibe " +"verwendet wird.\n" +" , um Anmerkungen zu generieren." -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." -msgstr "Mit dieser Aktion wird %s dauerhaft gelöscht." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "Zeitspalte der Anmerkungsebene" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "Durch diese Aktion wird die Ebene dauerhaft gelöscht." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "Spalte \"Intervallstart\"" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "Spalte \"Ereigniszeit\"" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "Durch diese Aktion wird die Vorlage dauerhaft gelöscht." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." +msgstr "Diese Spalte muss Datums-/Uhrzeitinformationen enthalten." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." -msgstr "" -"Dies kann entweder eine IP-Adresse (z.B. 127.0.0.1) oder ein Domainname " -"(z.B. mydatabase.com) sein." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "Ende des Anmerkungsebenen-Intervalls" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -#, fuzzy -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" -"Dieses Diagramm gibt Kreuzfilter aus/wendet sie auf andere Diagramme an, " -"die denselben Datensatz verwenden." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "Spalte \"Intervallende\"" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "Dieses Diagramm wurde in einen anderen Filterbereich verschoben." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" +msgstr "Titelspalte der Anmerkungsebene" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" -"Dieses Diagramm wird extern verwaltet und kann nicht in Superset " -"bearbeitet werden." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "Titelspalte" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "" -"Dieses Diagramm ist möglicherweise nicht mit dem Filter kompatibel " -"(Datensätze stimmen nicht überein)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "Wählen Sie einen Titel für Ihre Anmerkung aus." -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " -msgstr "" -"Dieser Diagrammtyp wird nicht unterstützt, wenn eine nicht gespeicherte " -"Abfrage als Diagrammquelle verwendet wird. " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "Beschreibungsspalten für Anmerkungsebenen" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" -msgstr "" -"Dieses Farbschema wird durch benutzerdefinierte Beschriftungsfarben " -"überschrieben.\n" -" Überprüfen Sie die JSON-Metadaten in den erweiterten " -"Einstellungen" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "Beschreibungsspalten" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -"Diese Spalte ist möglicherweise nicht mit dem aktuellen Datensatz " -"kompatibel." +"Wählen Sie eine oder mehrere Spalten aus, die in der Anmerkung angezeigt " +"werden sollen. Wenn Sie keine Spalte auswählen, werden alle angezeigt." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." -msgstr "Diese Spalte muss Datums-/Uhrzeitinformationen enthalten." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" +msgstr "Zeitbereich überschreiben" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" "This controls whether the \"time_range\" field from the current\n" " view should be passed down to the chart containing the " @@ -16556,7 +16560,11 @@ msgstr "" " Ansicht an das Diagramm mit den Anmerkungsdaten " "übergeben werden soll." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" +msgstr "Zeitgranularität überschreiben" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" "This controls whether the time grain field from the current\n" " view should be passed down to the chart containing the " @@ -16566,2638 +16574,2367 @@ msgstr "" " Ansicht an das Diagramm mit den Anmerkungsdaten " "übergeben werden soll." -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -"Dieses Dashboard aktualisiert sich automatisch. Die nächste automatische " -"Aktualisierung erfolgt in %s." +"Zeitdelta in natürlicher Sprache\n" +" (Beispiel: 24 Stunden, 7 Tage, 56 Wochen, 365 Tage)" -#: 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 " -"bearbeitet werden." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Anzeige-Konfiguration" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "" -"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der" -" Dashboards angezeigt. Wählen Sie es als Favorit aus, um es dort zu " -"sehen, oder greifen Sie direkt über die URL darauf zu." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Konfigurieren Sie hier, wie Ihr Overlay angezeigt wird." -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." -msgstr "" -"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der" -" Dashboards angezeigt. Klicken Sie hier, um dieses Dashboard zu " -"veröffentlichen." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "Strichstärke Anmerkungebene" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" -msgstr "Dieses Dashboard ist nun verborgen" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Stil" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" -msgstr "Dieses Dashboard ist jetzt veröffentlicht" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "Durchgezogen" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "" -"Dieses Dashboard ist veröffentlicht. Klicken Sie hier, um es in den " -"Entwurfstatus zu setzen." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" +msgstr "Gestrichelt" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" -msgstr "" -"Dieses Dashboard ist bereit zum Einbetten. Übergeben Sie in Ihrer " -"Anwendung die folgende ID an das SDK:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "Lange gestrichelt" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." -msgstr "" -"Dieses Dashboard wurde kürzlich geändert. Bitte laden Sie das Dashboard " -"neu, um die neueste Version zu erhalten." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" +msgstr "Gepunktet" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Dieses Dashboard wurde erfolgreich gespeichert." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "Deckkraft der Amerkungsebene" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "" -"Diese Datenbank wird extern verwaltet und kann nicht in Superset " -"bearbeitet werden." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Farbe" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." -msgstr "" -"Diese Datenbanktabelle enthält keine Daten. Bitte wählen Sie eine andere " -"Tabelle aus." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "Automatische Farbe" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" -"Dieser Datensatz wird extern verwaltet und kann nicht in Superset " -"bearbeitet werden." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "Ein- oder Ausblenden von Markern für die Zeitreihe" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "Dieser Datesatz wird nicht von Diagrammen genutzt." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" +msgstr "Linie ausblenden" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Definiert das Element, das im Diagramm dargestellt werden soll" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" +msgstr "Blendet die Linie für die Zeitreihe aus" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "Dies definiert die Ebene der Hierarchie" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Ebenen-Konfiguration" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "" -"Diese Felder fungieren als Superset-Ansicht, was bedeutet, dass Superset " -"eine Abfrage für diese Zeichenfolge als Unterabfrage ausführt." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Konfigurieren Sie die Grundeinstellungen der Anmerkungsebene." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Dieser Filter ist nicht im Dashboard vorhanden. Er wird nicht angewendet." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Notwendig" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "" -"Dieser Filter ist möglicherweise nicht mit dem aktuellen Datensatz " -"kompatibel." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Ebene verstecken" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "Diese Filtergruppe ist identisch mit: \"%s\"" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "Beschriftung anzeigen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "Diese Funktion ist in Ihrer Umgebung aus Sicherheitsgründen deaktiviert." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "Ob die Anmerkungs-Beschriftung immer angezeigt werden soll" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." -msgstr "" -"Dies ist die Bedingung, die der WHERE-Klausel hinzugefügt wird. Um " -"beispielsweise nur Zeilen für eine*n bestimmte*n Klient*n zurückzugeben, " -"können Sie einen regulären Filter mit der Klausel \"client_id = 9\" " -"definieren. Um keine Zeilen anzuzeigen, es sei denn, ein*e Benutzer*in " -"gehört einer RLS-Filterrolle an, kann ein Basisfilter mit der Klausel '1 " -"= 0' (immer falsch) erstellt werden." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Anmerkungsebenen-Typ" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" -msgstr "" -"Dieses json-Objekt beschreibt die Positionierung der Widgets im " -"Dashboard. Es wird dynamisch generiert, wenn die Größe und Positionen der" -" Widgets per Drag & Drop in der Dashboard-Ansicht angepasst werden" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Auswählen des Anmerkungsebenen-Typs" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Diese Markdown-Komponente weist einen Fehler auf." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "Typ der Anmerkungsquelle" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "" -"Diese Markdown-Komponente weist einen Fehler auf. Bitte machen Sie Ihre " -"letzten Änderungen rückgängig." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "Wählen Sie die Quelle Ihrer Anmerkungen aus" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "Dies kann ausgelöst werden durch:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" +msgstr "Quelle Anmerkungen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" -msgstr "" -"Diese Metrik ist möglicherweise nicht mit dem aktuellen Datensatz " -"kompatibel." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Entfernen" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" +msgstr "Zeitreihen" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Anmerkungsebene bearbeiten" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Anmerkungsebene hinzufügen" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Leere Sammlung" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Element hinzufügen" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Element entfernen" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -"In diesem Abschnitt können Sie konfigurieren, wie die Zeitscheibe " -"verwendet wird.\n" -" , um Anmerkungen zu generieren." +"Dieses Farbschema wird durch benutzerdefinierte Beschriftungsfarben " +"überschrieben.\n" +" Überprüfen Sie die JSON-Metadaten in den erweiterten " +"Einstellungen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -"Dieser Abschnitt enthält Optionen, die eine erweiterte analytische " -"Nachbearbeitung von Abfrageergebnissen ermöglichen" +"Das Farbschema wird vom zugehörigen Dashboard bestimmt.\n" +" Bearbeiten Sie das Farbschema in den Dashboard-" +"Eigenschaften." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" -msgstr "Dieser Abschnitt enthält Validierungsfehler" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "Dashboard" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." -msgstr "" -"In dieser Sitzung ist eine Unterbrechung aufgetreten, und einige " -"Steuerelemente funktionieren möglicherweise nicht wie beabsichtigt. Wenn " -"Sie der/die Entwickler*in dieser App sind, überprüfen Sie bitte, ob das " -"Gast-Token korrekt generiert wird." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" +msgstr "Dashboard Schema" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" -msgstr "Diese Tabelle hat bereits einen Datensatz" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "Farbschema auswählen" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" -msgstr "" -"Dieser Tabelle ist bereits ein Datensatz zugeordnet. Sie können einer " -"Tabelle nur einen Datasatz zuordnen.\n" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" +msgstr "Schema auswählen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "Dieser Wert sollte größer als der linke Zielwert sein" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" +msgstr "Weniger Spalten anzeigen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" -msgstr "Dieser Wert sollte kleiner als der rechte Zielwert sein" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" +msgstr "Alle Spalten anzeigen" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." -msgstr "Dieser Visualisierungstyp unterstützt keine Kreuzfilterung." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "Nachkommastellen" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Dieser Visualisierungstyp wird nicht unterstützt." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "Anzahl der Dezimalstellen, auf die gerundet wird" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "Ausgelöst durch:" -msgstr[1] "Ausgelöst durch:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" +msgstr "Min. Breite" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." -msgstr "Dadurch wird Ihre aktuelle Embedded-Konfiguration entfernt." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" +msgstr "" +"Standardmäßig minimale Spaltenbreite in Pixel, tatsächliche Breite kann " +"immer noch größer sein, wenn andere Spalten nicht viel Platz benötigen" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" -msgstr "Schwellenwert für Alpha-Level zur Bestimmung der Signifikanz" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "Textausrichtung" -#: 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." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "Horizontale Ausrichtung" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" -msgstr "Vorschaubilder" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "Zellenbalken anzeigen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Donnerstag" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" +msgstr "" +"Ob positive und negative Werte im Zellbalkendiagramm bei 0 ausgerichtet " +"werden sollen" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Zeit" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "" +"Ob numerische Werte eingefärbt werden sollen, wenn sie positiv oder " +"negativ sind" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" -msgstr "Zeitspalte" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" +msgstr "Zellen abschneiden" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" -msgstr "Zeitvergleich" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" +msgstr "Lange Zellen auf die oben festgelegte \"Mindestbreite\" abschneiden" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" -msgstr "Zeitformat" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" -msgstr "Zeitgranularität" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "Kleines Zahlenformat" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" -msgstr "Zeitgranularität" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "" +"D3-Zahlenformat für Zahlen zwischen -1,0 und 1,0. Nützlich, wenn Sie " +"verschiedene Anzahlen signifikanter Ziffern für kleine und große Zahlen " +"haben möchten" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" -msgstr "Verzögerung" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "Anzeigename" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "Zeitraum" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +#, fuzzy +msgid "Number formatting" +msgstr "Zahlenformat-Zeichenfolge" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" -msgstr "Zeitverhältnis" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" +msgstr "Formatierer bearbeiten" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" -msgstr "Zeitreihen" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "Neuen Formatierer hinzufügen" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Zeitreihen - Balkendiagramm" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "Neuen Farbformatierer hinzufügen" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Zeitreihen - Zweiachsen-Liniendiagramm" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "Alarm" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Zeitreihen - Liniendiagramm" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Fehler" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Zeitreihen - Diagramme mit mehreren Linien" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Erfolg" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Zeitreihe - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Alarm" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Zeitreihen - t-Differenzentest" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Zeitreihen - Prozentuale Veränderung" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "Dieser Wert sollte kleiner als der rechte Zielwert sein" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "Zeitreihen - Perioden-Pivot" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "Dieser Wert sollte größer als der linke Zielwert sein" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Zeitreihen - Gestapelt" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Erforderlich" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" -msgstr "Zeitreihen-Optionen" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Operator" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" -msgstr "Zeitverschiebung" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "Linker Wert" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "Zeittabellenansicht" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "Rechter Wert" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "Zeitspalten" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Zielwert" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "Zeitspalte \"%(col)s\" ist im Datensatz nicht vorhanden" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "Spalte auswählen" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "Zeitspalten-Filter-Plugin" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +#, fuzzy +msgid "Color: " +msgstr "Farbe" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -"Zeitspalte, auf die ein abhängiger zeitlicher Filter angewendet werden " -"soll" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" -msgstr "Zeitspalte, auf die der Zeitbereich angewendet werden soll" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +#, fuzzy +msgid "Upper threshold must be greater than lower threshold" +msgstr "\"row_limit\" muss größer oder gleich 0 sein" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Zeitvergleich" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "Offline" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" -msgstr "" -"Zeitdelta in natürlicher Sprache\n" -" (Beispiel: 24 Stunden, 7 Tage, 56 Wochen, 365 Tage)" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +#, fuzzy +msgid "Threshold" +msgstr "Beschriftungsschwellenwert" -#: superset/charts/commands/exceptions.py:66 -#, python-format +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -"Zeitinterval ist unklar. Bitte geben Sie [%(human_readable)s ago] oder " -"[%(human_readable)s later] an." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" -msgstr "Zeitfilter" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +#, fuzzy +msgid "The width of the Isoline in pixels" +msgstr "Die Breite der Linien" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" -msgstr "Zeitformat" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +#, fuzzy +msgid "The color of the isoline" +msgstr "Das Kodierungsformat der Zeilen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Zeitgranularität" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +#, fuzzy +msgid "Isoband" +msgstr "und" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" -msgstr "Zeitgranularität-Plugin" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +#, fuzzy +msgid "Lower Threshold" +msgstr "Beschriftungsschwellenwert" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Zeiteinteilung fehlt" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" -msgstr "Zeitgranularität" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +#, fuzzy +msgid "Upper Threshold" +msgstr "Beschriftungsschwellenwert" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "Zeit in Sekunden" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" -msgstr "Verzögerung" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +#, fuzzy +msgid "The color of the isoband" +msgstr "Das Kodierungsformat der Zeilen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Zeitbereich" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" -msgstr "Zeitverhältnis" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Zeitbezogene Formularattribute" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -msgid "Time series" -msgstr "Zeitreihen" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Zeitreihenspalte" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Zeitverschiebung" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" msgstr "" -"Die Zeitzeichenfolge ist mehrdeutig. Bitte geben Sie [%(human_readable)s " -"ago] oder [%(human_readable)s later] an." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" -msgstr "Zeitreihen-Flächendiagramm" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Datensatz bearbeiten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -"Zeitreihen-Flächendiagramme ähneln Liniendiagrammen insofern, als sie " -"Variablen mit der gleichen Skala darstellen, aber Flächendiagramme " -"stapeln die Metriken übereinander. Ein Flächendiagramm in Superset kann " -"streamen, stapeln oder erweitern." +"Sie müssen ein Datensatzbesitzer*in sein, um bearbeiten zu können. Bitte " +"wenden Sie sich an eine/n Datensatzbesitzer*in, um Änderungs- oder " +"Bearbeitungszugriff zu erhalten." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" -msgstr "Zeitreihen - Balkendiagramm" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "In SQL Lab anzeigen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -msgid "Time-series Bar Chart (legacy)" -msgstr "Zeitreihen-Balkendiagramm (Legacy)" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Abfragen-Voransicht" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." -msgstr "" -"Zeitreihen-Balkendiagramme werden verwendet, um die Änderungen in einer " -"Metrik im Laufe der Zeit als eine Reihe von Balken anzuzeigen." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" +msgstr "Als Datensatz speichern" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" -msgstr "Zeitreihendiagramm" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" +msgstr "Fehlende URL-Parameter" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" -msgstr "Zeitreihen - Liniendiagramm" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "In der URL fehlen die Parameter dataset_id oder slice_id." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" -msgstr "Zeitreihen - Prozentuale Veränderung" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "" +"Der mit diesem Diagramm verknüpfte Datensatz wurde möglicherweise " +"gelöscht." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" -msgstr "Zeitreihen - Perioden-Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "BEREICHSTYP" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" -msgstr "Zeitreihen-Streudiagramm" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Tatsächlicher Zeitbereich" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." -msgstr "" -"Das Zeitreihen-Streudiagramm stellt die Zeit auf der horizontalen Achse " -"in linearen Einheiten dar, und die Punkte sind in der richtigen " -"Reihenfolge verbunden. Es zeigt eine statistische Beziehung zwischen zwei" -" Variablen." +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "ANWENDEN" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" -msgstr "Zeitreihe Glatte Linie" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Zeitraum bearbeiten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." -msgstr "" -"„Zeitreihen-Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne " -"Winkel und harte Kanten wirkt dieser Diagrammtyp manchmal passender und " -"professioneller." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "Erweiterten Zeitbereich konfigurieren " -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" -msgstr "Zeitreihen-Stufenlinie" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "START (INKLUSIVE)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." -msgstr "" -"Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine " -"Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von " -"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich" -" sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " -"Abständen auftreten." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Startdatum im Zeitbereich enthalten" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Zeitreihentabelle" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "ENDE (EXKLUSIV)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." -msgstr "" -"Das Zeitreihen-Liniendiagramm wird verwendet, um wiederholte Messungen in" -" regelmäßigen Zeitintervallen zu visualisieren. Liniendiagramm ist ein " -"Diagrammtyp, der Informationen als eine Reihe von Datenpunkten anzeigt, " -"die durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender " -"Diagrammtyp, der in vielen Bereichen üblich ist." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Enddatum aus dem Zeitraum ausgeschlossen" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Zeitüberschreitung" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Zeitraum konfigurieren: Vorhergehende…" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" -msgstr "Zeitstempelformat" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Zeitraum konfigurieren: Letzte..." -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" -msgstr "Zeitzone" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Benutzerdefinierten Zeitraum konfigurieren" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Zeitzonen-Offset (in Stunden) für diese Datenquelle" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Relative Menge" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "Zeitzonen-Auswahl" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "Relativer Zeitraum" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" -msgstr "Sehr klein" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "Verankern mit" -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:186 -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:207 -#: 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 -msgid "Title" -msgstr "Titel" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "JETZT" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" -msgstr "Titelspalte" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Datum/Zeit" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" -msgstr "Titel ist erforderlich" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "Kehren Sie zu bestimmtem Zeitpunkt zurück." -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Titel oder Kopfzeile" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "Syntax" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Beispiel" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "" +"Verschiebt den angegebenen Satz von Datumsangaben um ein angegebenes " +"Intervall." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -"Um nach einer Metrik zu filtern, verwenden Sie die Registerkarte " -"Benutzerdefinierte SQL." - -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "So erhalten Sie eine sprechende URL für Ihr Dashboard" +"Kürzt das angegebene Datum auf die von der Datumseinheit angegebene " +"Genauigkeit." -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "Werkzeuge" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "Das letzte Datum anhand der Datumseinheit anfordern." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "Tooltip" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "Abrufen des angegebenen Datums für den Feiertag" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" -msgstr "Tooltip nach Metrik sortieren" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Zurück" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" -msgstr "Tooltip-Zeitformat" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "Angepasst" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" -msgstr "Oben" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "Gestern" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" -msgstr "Oben links" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "letzte Woche" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" -msgstr "Oben rechts" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "letzter Monat" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" -msgstr "Oben nach unten" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "letztes Quartal" -#: superset/viz.py:1047 -#, fuzzy -msgid "Total" -msgstr "der Gesamtsumme" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "letztes Jahr" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" -msgstr "Insgesamt (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "vorherige Kalenderwoche" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" -msgstr "Insgesamt (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "vorheriger Kalendermonat" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -msgid "Total value" -msgstr "Gesamtwert" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "vorheriges Kalenderjahr" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 #, python-format -msgid "Total: %s" -msgstr "Gesamt: %s" - -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "Summen" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "Auftrag verfolgen" +msgid "Seconds %s" +msgstr "Sekunden %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" -msgstr "Transportierbar" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" +msgstr "Minuten %s" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "Transparent" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "Stunden %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" -msgstr "Pivot transponieren" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Tage %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" -msgstr "Baumdiagramm" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Wochen %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" -msgstr "Baum-Layout" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "Monate %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" -msgstr "Baumausrichtung" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr "Quartale %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Treemap" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" +msgstr "Jahre %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" -msgstr "Trend" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "Spezifisches Datum/Uhrzeit" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "Dreieck" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "Relatives Datum/Uhrzeit" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "Alarm auslösen falls..." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "Jetzt" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" -msgstr "Achse abschneiden" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "Mitternacht" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" -msgstr "Zellen abschneiden" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "Gespeicherte Ausdrücke" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -msgid "Truncate Metric" -msgstr "Metrik abschneiden" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Speichern als" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" -msgstr "Y-Achse abschneiden" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" +msgstr "%s Spalte(n)" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." -msgstr "" -"Schneiden Sie die Y-Achse ab. Kann überschrieben werden, indem eine min- " -"oder max-Bindung angegeben wird." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" +msgstr "Keine Zeitspalten gefunden" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" -msgstr "Lange Zellen auf die oben festgelegte \"Mindestbreite\" abschneiden" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" +msgstr "Keine gespeicherten Ausdrücke gefunden" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -"Kürzt das angegebene Datum auf die von der Datumseinheit angegebene " -"Genauigkeit." +"Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum" +" Datensatz hinzu" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -"Versuchen Sie, andere Filter anzuwenden oder sicherzustellen, dass Ihre " -"Datenquelle Daten enthält" - -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." -msgstr "Probieren Sie verschiedene Kriterien aus, um Ergebnisse anzuzeigen." +"Fügen Sie berechnete Spalten im Dialog \"Datenquelle bearbeiten\" zum " +"Datensatz hinzu" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" -msgstr "Versuchen Sie, ein anderes Schema auszuwählen" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" +msgstr " um eine Spalte als Zeitspalte zu markieren" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Dienstag" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" +msgstr ", um berechnete Spalten hinzuzufügen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -msgid "Tukey" -msgstr "Turkey" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Einfach" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Typ" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" +msgstr "Markieren einer Spalte als temporär im Modal \"Datenquelle bearbeiten\"" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 -#, python-format -msgid "Type \"%s\" to confirm" -msgstr "Geben Sie zur Bestätigung \"%s\" ein" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "Benutzerdefinierte SQL" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" -msgstr "Geben Sie einen Wert ein" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "Meine Spalte" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "Geben Sie hier einen Wert ein" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" +msgstr "" +"Dieser Filter ist möglicherweise nicht mit dem aktuellen Datensatz " +"kompatibel." -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "Typ ist erforderlich" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" +msgstr "" +"Diese Spalte ist möglicherweise nicht mit dem aktuellen Datensatz " +"kompatibel." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "Art der zulässigen Google Tabellen" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "Legen Sie hier eine Spalte ab oder klicken Sie" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" -msgstr "Art des Vergleichs, Wertdifferenz oder Prozentsatz" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "Klicke um zu Bezeichnung zu bearbeiten" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Geben Sie ein oder wählen Sie [%s] aus." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "Spalten/Metriken hierhin ziehen und ablegen oder klicken" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "UI Konfiguration" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "" +"Diese Metrik ist möglicherweise nicht mit dem aktuellen Datensatz " +"kompatibel." -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" +msgstr "Legen Sie hier eine Spalte/Metrik ab oder klicken Sie" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "URL-Parameter" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " +msgstr "" +"\n" +"Dieser Filter wurde vom Kontext des Dashboards geerbt.\n" +" Er wird beim Speichern des Diagramms nicht gespeichert.\n" +" " -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "URL-Parameter" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" +msgstr "%s Option(en)" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "URL Titelform" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "Betreff auswählen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -"Dem Backend kann keine neue Registerkarte hinzugefügt werden. Wenden Sie " -"sich an Ihre*n Administrator*in." +"Eine solche Spalte wurde nicht gefunden. Um nach einer Metrik zu filtern," +" versuchen Sie es mit der Registerkarte Benutzerdefinierte SQL." -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -"Es konnte keine Verbindung zum Katalog mit dem Namen \"%(catalog_name)s\"" -" hergestellt werden." +"Um nach einer Metrik zu filtern, verwenden Sie die Registerkarte " +"Benutzerdefinierte SQL." -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "" -"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt " -"werden." +msgid "%s operator(s)" +msgstr "%s Operator(en)" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" -"Verbindung kann nicht hergestellt werden. Stellen Sie sicher, dass die " -"folgenden Rollen für das Dienstkonto festgelegt sind: \"BigQuery Data " -"Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" und die " -"folgenden Berechtigungen festgelegt sind " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "Operator auswählen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." -msgstr "Diagramm kann ohne Abfrage-ID nicht erstellt werden." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "Komparator-Option" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Geben Sie hier einen Wert ein" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Filterwert (Groß-/Kleinschreibung beachten)" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Kann einen solchen Feiertag nicht finden: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" +msgstr "Fehler beim Abrufen des erweiterten Typs" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." -msgstr "" -"Spalten für die ausgewählte Tabelle können nicht geladen werden. Bitte " -"wählen Sie eine andere Tabelle aus." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "Wählen Sie WHERE oder HAVING…" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" -"Der Status des Abfrage-Editors kann nicht zum Backend übertragen werden. " -"Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n " -"Administrator*in, wenn dieses Problem weiterhin besteht." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Nach Spalten filtern" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." -msgstr "" -"Der Abfragestatus kann nicht zum Backend übertragen werden. Superset wird" -" es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, " -"wenn dieses Problem weiterhin besteht." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Nach Metriken filtern" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" -"Der Tabellenschemastatus kann nicht zum Backend übertragen werden. " -"Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n " -"Administrator*in, wenn dieses Problem weiterhin besteht." +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" +msgstr "Metrik" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" -msgstr "Dashboardfarben können nicht abgerufen werden" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Fixiert" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"CSV-Datei \"%(filename)s\" kann nicht in tabelle \"%(table_name)s\" in " -"der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "Auf Metrik basierend" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" -msgstr "" -"Die Spaltendatei \"%(filename)s\" kann nicht in die Tabelle " -"\"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. " -"Fehlermeldung: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Meine Metrik" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Excel-Datei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\"" -" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Metrik hinzufügen" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Undefiniert" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" +msgstr "Aggregierungsoptionen auswählen" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Undefiniertes Fenster für rollierende Operation" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" +msgstr "%s Aggregate" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" -msgstr "Aktion rückgängig machen" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "Gespeicherte Metriken auswählen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "Rückgängig machen?" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" +msgstr "%s gespeicherte Metrik(en)" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Unerwarteter Fehler" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Gespeicherte Abfragen" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" +msgstr "Keine gespeicherten Metriken gefunden" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -"Unerwarteter Fehler aufgetreten, bitte überprüfen Sie Ihre Protokolle auf" -" Details" +"Fügen Sie Metriken im Dialog \"Datenquelle bearbeiten\" zum Datensatz " +"hinzu" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " -msgstr "Unerwarteter Fehler:" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" +msgstr ", um Metriken hinzuzufügen" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "Einfache Ad-hoc-Metriken sind für diesen Datensatz nicht aktiviert" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "Spalte" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" -msgstr "Unerwarteter Zeitraum: %s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "Aggregat" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "Unbekannt" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "" +"Benutzerdefinierte SQL-Ad-hoc-Metriken sind für diesen Datasatz nicht " +"aktiviert" -#: superset/db_engine_specs/mysql.py:155 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 #, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Unbekannter MySQL-Server-Host \"%(hostname)s\"." +msgid "Error while fetching data: %s" +msgstr "Fehler beim Abrufen von Daten: %s" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "Unbekannter Presto-Fehler" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Zeitreihenspalte" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" -msgstr "Status unbekannt" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" +msgstr "Istwert" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Unbekannte Spalte in ORDER BY verwendet: %(col)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "Sparkline" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "Unbekannter Fehler" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "Periodendurchschnitt" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" -msgstr "Unbekanntes Eingabeformat" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" +msgstr "Die Spaltenüberschrift" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -#, fuzzy -msgid "Unknown type" -msgstr "Symbol für unbekannten Typ" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "Tooltip zur Spaltenüberschrift" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" -msgstr "Unbekannter Wert" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" +msgstr "Art des Vergleichs, Wertdifferenz oder Prozentsatz" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Unsicherer Rückgabetyp für %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Breite" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Unsicherer Vorlagenwert für Schlüssel %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "Breite der Sparkline" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "Nicht unterstützter Ausdruck-Typ: %(clause)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "Höhe der Sparkline" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Nicht unterstützter Nachbearbeitungsvorgang: %(operation)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" +msgstr "Verzögerung" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Nicht unterstützter Rückgabewert für %(name)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Nicht unterstützter Vorlagenwert für Schlüssel %(key)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" +msgstr "Verzögerung" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Nicht unterstützte Zeiteinteilung: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" +msgstr "Zeitverhältnis" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -msgid "Untitled Dataset" -msgstr "Unbenannter Datensatz" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" +msgstr "Anzahl ins Verhältnis zu setzender Perioden" -#: superset/views/sql_lab/views.py:148 -msgid "Untitled Query" -msgstr "Unbenannte Abfrage" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" +msgstr "Zeitverhältnis" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Unbenannte Abfrage" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "Y-Achse anzeigen" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "Aktualisieren" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "" +"Y-Achse auf der Sparkline anzeigen. Zeigt die manuell eingestellten Min" +"/Max-Werte an, falls festgelegt, andernfalls Min/Max-Werte der Daten." -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" -msgstr "Diagramm aktualisieren" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "Grenzen der Y-Achse" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "Aktualisierung des Diagramms wurde abgebrochen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "Min/Max-Werte für die y-Achse manuell festlegen." -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Hochladen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "Farbgrenzen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" -msgstr "CSV hochladen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" +"Zahlengrenzen, die für die Farbkodierung von Rot nach Blau verwendet " +"werden.\n" +" Kehren Sie die Zahlen für Blau in Rot um. Um reines Rot " +"oder Blau zu erhalten,\n" +" können Sie entweder nur min oder max eingeben." -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" -msgstr "CSV in Datenbank hochladen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" +msgstr "Optionale d3-Zahlenformat-Zeichenfolge" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "Anmeldeinformationen hochladen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" +msgstr "Zahlenformat-Zeichenfolge" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" -msgstr "Hochladen aktiviert" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" +msgstr "Optionale d3-Datumsformat-Zeichenfolge" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" -msgstr "Excel hochladen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" +msgstr "Datumsformat-Zeichenfolge" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "Excel-Datei in Datenbank hochladen" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" +msgstr "Spaltenkonfiguration" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "JSON Datei hochladen" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "Visualisierungstyp wählen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" -msgstr "Spaltendatei hochladen" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" +msgstr "Derzeit dargestellt: %s" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" -msgstr "Spaltendatei in Datenbank hochladen" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "Empfohlene Tags" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" -msgstr "Datei in Datenbank hochladen" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "Alle Diagramm durchsuchen" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" -msgstr "Verwendung" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "Keine Beschreibung verfügbar." -#: 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\"." +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Beispiele" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." -msgstr "Verwenden Sie %s, um eine neue Registerkarte zu öffnen." +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Dieser Visualisierungstyp wird nicht unterstützt." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" -msgstr "Verwenden von Flächenproportionen" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" +msgstr "Alle Diagramme anzeigen" -#: superset/views/database/forms.py:472 -msgid "Use Columns" -msgstr "Spalten verwenden" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Visualisierungstyp wählen" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "Verwenden einer Logarithmischen Skala" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Keine Ergebnisse gefunden" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "Logarithmische Skala für die X-Achse verwenden" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "Superset Diagramm" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "Logarithmische Skala für die Y-Achse verwenden" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Neues Diagramm" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "Verschlüsselten Verbindung zur Datenbank verwenden" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Diagrammeigenschaften bearbeiten" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" -"Verwenden Sie ein anderes vorhandenes Diagramm als Quelle für Anmerkungen" -" und Überlagerungen.\n" -" Ihr Diagramm muss einer der folgenden Visualisierungstypen " -"sein: [%s]" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" +msgstr "Dashboards hinzugefügt zu" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" -"Verwenden Sie die Datumsformatierung, auch wenn der Metrikwert kein " -"Zeitstempel ist" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" +msgstr "Export in das ursprüngliche .CSV" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "Verwenden des Legacy-Datenquellen-Editors" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "Export in das pivotierte .CSV" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" -"Verwenden von Metriken als Gruppe der obersten Ebene für Spalten oder " -"Zeilen" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" +msgstr "Exportieren nach . JSON" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "Verwenden Sie nur einen einzigen Wert." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "Code einbetten" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" -msgstr "Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Ausführen in SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." -msgstr "" -"Verwenden Sie die JSON-Datei, die Sie beim Erstellen Ihres Dienstkontos " -"automatisch heruntergeladen haben." +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Code" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" -msgstr "Verwenden Sie die Schaltfläche Bearbeiten, um dieses Feld zu ändern" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Markup-Typ" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "" -"Verwenden Sie diesen Abschnitt, wenn Sie eine Abfrage benötigen, die " -"aggregiert" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Wählen Sie Ihre bevorzugte Markup-Sprache" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "Verwenden Sie diesen Abschnitt, wenn Sie atomare Zeilen abfragen möchten" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Geben Sie Ihren Code hier ein" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "" -"Verwenden Sie diese Option, um eine statische Farbe für alle Kreise zu " -"definieren" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "URL-Parameter" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" -"Wird intern verwendet, um das Plugin zu identifizieren. Sollte auf den " -"Paketnamen aus der paket.json des Plugins gesetzt werden" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Zusätzliche Parameter für die Verwendung in Jinja-Vorlagenabfragen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "" -"Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere " -"Statistiken entlang zweier Achsen gruppiert werden. Beispiele: " -"Verkaufszahlen nach Region und Monat, Aufgaben nach Status und " -"Beauftragtem, aktive Nutzer nach Alter und Standort. Nicht die visuell " -"beeindruckendste Visualisierung, aber sehr informativ und vielseitig." +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Anmerkungen und Ebenen" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Nutzer*in" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Anmerkungsebenen" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Nutzer*innen-Rollen" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "Meine schönen Farben" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." -msgstr "Benutzer*in verfügt nicht über die richtigen Berechtigungen." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (Kleiner als)" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" -msgstr "Benutzer*in muss einen Wert für diesen Filter auswählen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (Größer als)" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "Benutzer*in muss einen Wert für diesen Filter auswählen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (Kleiner oder gleich)" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "Benutzer*innen-Abfrage" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (Größer oder gleich)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "Benutzer*innenname" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (Ist gleich)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (Ist nicht gleich)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" -"Verwendet ein Tachometer, um den Fortschritt einer Metrik in Richtung " -"eines Ziels anzuzeigen. Die Position des Zifferblatts stellt den " -"Fortschritt und der Endwert im Tachometer den Zielwert dar." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Nicht NULL" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "" -"Verwendet Kreise, um den Datenfluss durch verschiedene Phasen eines " -"Systems zu visualisieren. Bewegen Sie den Mauszeiger über einzelne Pfade " -"in der Visualisierung, um die Phasen zu verstehen, die ein Wert " -"durchlaufen hat. Nützlich für die Visualisierung von Trichtern und " -"Pipelines in mehreren Gruppen." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 Tage" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Wert" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 Tage" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" -msgstr "Wertebereich" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Benachrichtigungsmethode hinzufügen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" -msgstr "Wertformat" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Übermittlungsmethode hinzufügen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" -msgstr "Wertgrenzen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Hinzufügen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" -msgstr "Wertformat" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" +msgstr "Report bearbeiten" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "Wert ist erforderlich" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "Alarm bearbeiten" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "Der Wert muss größer als 0 sein" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "Report hinzufügen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "Werte sind abhängig von anderen Filtern" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "Alarm hinzufügen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" -msgstr "Werte abhängig von" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Name des Reports" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" -msgstr "" -"In anderen Filtern ausgewählte Werte wirken sich auf die Filteroptionen " -"aus, sodass nur relevante Werte angezeigt werden" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Name des Alarms" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "Fahrzeugtypen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Aktiv" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Ausführlicher Name" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Alarmierungsbedingung" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" -msgstr "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQL Abfrage" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "Versionsnummer" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" -msgstr "Vertikal" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Alarm auslösen falls..." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" -msgstr "Vertikal (links)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "Bedingung" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "Videospielkonsolen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Report-Zeitplan" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" -msgstr "Ansicht" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Alarmierung-Zeitplan" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" -msgstr "Alle ansehen »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "Zeitzone" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -msgid "View Dataset" -msgstr "Datensatz anzeigen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Zeitplan-Einstellungen" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -msgid "View all charts" -msgstr "Alle Diagramme anzeigen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Protokollaufbewahrung" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" -msgstr "Als Tabelle anzeigen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Zeitüberschreitung" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "In SQL Lab anzeigen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Zeit in Sekunden" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Schlüssel und Indizes anzeigen (%s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" +msgstr "Sekunden" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Abfrage anzeigen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Kulanzzeit" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Angesehen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Nachrichteninhalt" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" -msgstr "%s angesehen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "Als PNG senden" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "Ansichtsfenster" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "Als CSV senden" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" -msgstr "Virtuell" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "Als Text senden" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "Virtuell (SQL)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +#, fuzzy +msgid "Ignore cache when generating report" +msgstr "Cache beim Generieren eines Screenshots ignorieren" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Virtueller Datensatz" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" +msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "Virtuelle Datensatzabfrage darf nicht leer sein" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" +msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "Virtuelle Datensatzabfrage kann nicht aus mehreren Anweisungen bestehen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Benachrichtigungsmethode" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "Virtuelle Datensatzabfrage muss schreibgeschützt sein" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "Report" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "Visuelle Optimierungen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" +msgstr "%s aktualisiert" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Visualisierungstyp" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" +msgstr "CRON Zeitplan" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Visualisierungstyp" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "CRON-Ausdruck" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" -"Visualisieren Sie einen parallelen Satz von Metriken über mehrere Gruppen" -" hinweg. Jede Gruppe wird mit einer eigenen Punktlinie visualisiert und " -"jede Metrik wird als Kante im Diagramm dargestellt." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Report gesendet" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." -msgstr "" -"Visualisieren Sie eine verwandte Metrik über Gruppenpaare hinweg. " -"Heatmaps zeichnen sich dadurch aus, dass sie die Korrelation oder Stärke " -"zwischen zwei Gruppen darstellen. Farbe wird verwendet, um die Stärke der" -" Verbindung zwischen jedem Gruppenpaar zu betonen." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Alarm ausgelöst, Benachrichtigung gesendet" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" -"Visualisieren Sie Geodaten wie 3D-Gebäude, Landschaften oder Objekte in " -"der Rasteransicht." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Report wird versendet" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" -"Visualisieren Sie mithilfe von Balken, wie sich eine Metrik im Laufe der " -"Zeit ändert. Fügen Sie eine Gruppe nach Spalte hinzu, um Metriken auf " -"Gruppenebene und deren Änderung im Laufe der Zeit zu visualisieren." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Alarm wird ausgeführt" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "" -"Visualisieren Sie mehrere Hierarchieebenen mit einer vertrauten " -"baumartigen Struktur." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Report fehlgeschlagen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "" -"Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. " -"Beachten Sie, dass beide Reihen mit einem anderen Diagrammtyp " -"visualisiert werden können (z. B. eine mit Balken und die andere mit " -"einer Linie)." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Alarm fehlgeschlagen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "" -"Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. " -"Beachten Sie, dass jede Zeitreihe unterschiedlich visualisiert werden " -"kann (z. B. eine mit Balken und die andere mit einer Linie)." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Nichts ausgelöst" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:28 -msgid "" -"Visualizes 2 metrics as line plots using the same x-axis. This chart is " -"useful for comparing metrics across the same time range." -msgstr "" -"Visualisiert 2 Metriken als Liniendiagramme mit derselben x-Achse. Dieses" -" Diagramm ist nützlich, um Metriken über den gleichen Zeitraum zu " -"vergleichen." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Alarm ausgelöst, in Kulanzzeit" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" -"Visualisiert eine Metrik über drei Datendimensionen in einem einzelnen " -"Diagramm (X-Achse, Y-Achse und Blasengröße). Blasen aus derselben Gruppe " -"können mit Blasenfarbe präsentiert werden." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "Übermittlungsmethode" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." -msgstr "Visualisiert verbundene Punkte, die einen Pfad bilden, auf einer Karte." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "Übermittlungsmethode hinzufügen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." -msgstr "" -"Visualisiert geografische Gebiete aus Ihren Daten als Polygone auf einer " -"von Mapbox gerenderten Karte. Polygone können mithilfe einer Metrik " -"eingefärbt werden." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Empfänger werden durch \",\" oder \";\" getrennt." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." -msgstr "" -"Visualisiert, wie sich eine Metrik im Laufe der Zeit mithilfe einer " -"Farbskala und einer Kalenderansicht verändert hat. Grauwerte werden " -"verwendet, um fehlende Werte anzuzeigen, und das lineare Farbschema wird " -"verwendet, um den Betrag jedes Tageswerts zu kodieren." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +msgid "Queries" +msgstr "Abfragen" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -"Visualisiert, wie eine einzelne Metrik in den Hauptunterteilungen eines " -"Landes (Bundesstaaten, Provinzen usw.) auf einer Choroplethenkarte " -"variiert. Der Wert jeder Unterteilung wird erhöht, wenn Sie den " -"Mauszeiger über die entsprechende geografische Grenze bewegen." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -"Visualisiert viele verschiedene Zeitreihenobjekte in einem einzigen " -"Diagramm. Dieses Diagramm ist überholt, und wir empfehlen, stattdessen " -"das Zeitreihendiagramm zu verwenden." -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "" -"Visualisiert den Fluss der Werte verschiedener Gruppen durch verschiedene" -" Phasen eines Systems. Neue Stufen in der Pipeline werden als Knoten oder" -" Layer visualisiert. Die Dicke der Balken oder Kanten stellt die Metrik " -"dar, die visualisiert wird." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "Anmerkungsebene" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." -msgstr "" -"Visualisiert die Wörter in einer Spalte, die am häufigsten vorkommen. " -"Größere Schrift entspricht einer höheren Frequenz." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" +msgstr "Anmerkungsvorlage aktualisiert" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Visualisierung fehlt eine Datenquelle" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" +msgstr "Anmerkungsvorlage erstellt" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "Visualisierungstyp" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Eigenschaften der Anmerkungsebene bearbeiten" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "MI" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Name der Anmerkungebene" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "Möchten Sie eine neue Datenbank hinzufügen?" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Beschreibung (diese ist in der Liste zu sehen)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "Warnung" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "Anmerkungen" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Warnmeldung" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "Anmerkung wurde aktualisiert" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Warnung!" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "Die Anmerkung wurde erfolgreich gespeichert" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." -msgstr "" -"Warnung! Wenn Sie den Datensatz ändern, kann das Diagramm beeinträchtigt " -"werden, wenn die Metadaten nicht vorhanden sind." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Anmerkung bearbeiten" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" -msgstr "Ihre Abfrage konnte nicht überprüft werden" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Anmerkungen hinzufügen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." -msgstr "" -"Wir können keine Verbindung zu Ihrer Datenbank herstellen. Klicken Sie " -"auf \"Weitere anzeigen\", um von der Datenbank bereitgestellte " -"Informationen zu erhalten, die bei der Behebung des Problems helfen " -"können." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "Datum" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "Wir können die Spalte \"%(column)s\" in Zeile %(location)s nicht auflösen." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Zusätzliche Information" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "Wir können die Spalte „%(column_name)s“ nicht auflösen." +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Bitte bestätigen" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." -msgstr "" -"Wir können die Spalte \"%(column_name)s\" in Zeile %(location)s nicht " -"auflösen." +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Wollen Sie wirklich löschen" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 #, python-format -msgid "We have the following keys: %s" -msgstr "Wir haben folgende Schlüssel: %s" - -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." -msgstr "Wir konnten diesen Bericht nicht aktivieren oder deaktivieren." +msgid "Modified %s" +msgstr "Geändert %s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." -msgstr "" -"Wir konnten beim Wechsel zu diesem neuen Datensatz keine " -"Steuerungselemente übernehmen." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css_template" -#: superset/db_engine_specs/redshift.py:94 -#, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." -msgstr "" -"Wir konnten keine Verbindung zu Ihrer Datenbank mit dem Namen " -"\"%(database)s\" herstellen. Überprüfen Sie Ihren Datenbanknamen und " -"versuchen Sie es erneut." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "CSS Vorlagen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" -msgstr "Web" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "CSS Vorlagen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Mittwoch" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "CSS" -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "Woche" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "veröffentlicht" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" -msgstr "Woche endet am Samstag" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "Entwurf" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" -msgstr "Woche beginnt am Montag" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "Anpassen, wie diese Datenbank mit SQL Lab interagiert." -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "Woche beginnt am Sonntag" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "Datenbank in SQL Lab verfügbar machen" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" -msgstr "Woche endet am Sonntag" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Abfragen dieser Datenbank in SQL Lab zulassen" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" -msgstr "Wöchentlicher Bericht" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Erstellen neuer Tabellen basierend auf Abfragen zulassen" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" -msgstr "Wöchentlicher Bericht für %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Erstellen neuer Ansichten basierend auf Abfragen zulassen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" -msgstr "Wöchentliche Saisonalität" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "CTAS & CVAS SCHEMA" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" -msgstr "Wochen %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Schema erstellen oder auswählen…" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" -msgstr "Gewicht" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +msgid "" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." +msgstr "" +"Erzwingen Sie, dass alle Tabellen und Ansichten in diesem Schema erstellt" +" werden, wenn Sie in SQL Lab auf CTAS oder CVAS klicken." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -"Wir haben Probleme beim Laden dieser Ergebnisse. Abfragen überschreiten " -"nach %s Sekunden die Ausführungszeit (Timeout)." -msgstr[1] "" -"Wir haben Probleme beim Laden dieser Ergebnisse. Abfragen überschreiten " -"nach %s Sekunden die Ausführungszeit (Timeout)." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." +msgstr "" +"Manipulation der Datenbank mit Nicht-SELECT-Anweisungen wie UPDATE, " +"DELETE, CREATE usw. ermöglichen." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "Abfragekostenschätzung aktivieren" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -"Wir haben Probleme beim Laden dieser Visualisierung. Abfragen " -"überschreiten nach %s Sekunden die Ausführungszeit (Timeout)." -msgstr[1] "" -"Wir haben Probleme beim Laden dieser Visualisierung. Abfragen " -"überschreiten nach %s Sekunden die Ausführungszeit (Timeout)." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." +msgstr "" +"Für Presto und Postgres wird ein Buttons angezeigt, um Kosten vor dem " +"Ausführen einer Abfrage zu schätzen." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" -msgstr "Was sollte als Beschriftung angezeigt werden?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "Abfragen dieser Datenbank in SQL Lab zulassen" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" -msgstr "Was soll passieren, wenn die Tabelle bereits vorhanden ist?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." +msgstr "" +"Wenn diese Option aktiviert ist, können Benutzer*innen SQL Lab-Ergebnisse" +" in Explore visualisieren." -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "Deaktivieren von SQL Lab-Datenvorschau-Abfragen" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -"Wenn 'Berechnungstyp' auf \"Prozentuale Änderung\" gesetzt ist, wird das " -"Y-Achsenformat '.1%' erzwungen" +"Datenvorschau beim Abrufen von Tabellenmetadaten in SQL Lab deaktivieren." +" Nützlich, um Probleme mit der Browserleistung bei der Verwendung von " +"Datenbanken mit sehr breiten Tabellen zu vermeiden." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -"Wenn eine sekundäre Metrik bereitgestellt wird, wird eine lineare " -"Farbskala verwendet." -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -"Wenn Sie die Option CREATE TABLE AS in SQL Lab zulassen, erzwingt diese " -"Option, dass die Tabelle in diesem Schema erstellt wird" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" -msgstr "" -"Wenn diese Option aktiviert ist, zoomt die Karte nach jeder Abfrage auf " -"Ihre Daten" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "Leistung" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." +msgstr "Leistungseinstellungen dieser Datenbank anpassen." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Diagramm-Cache Timeout" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." -msgstr "" -"Wenn diese Option aktiviert ist, können Benutzer*innen SQL Lab-Ergebnisse" -" in Explore visualisieren." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "Dauer in Sekunden eingeben" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -"Wenn nur eine primäre Metrik bereitgestellt wird, wird eine kategoriale " -"Farbpalette verwendet." +"Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. " +"Ein Timeout von 0 gibt an, dass der Cache nie abläuft, und -1 umgeht den " +"Cache. Beachten Sie, dass standardmäßig das globale Timeout verwendet " +"wird, wenn kein Wert definiert wurde." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "Zeitüberschreitung Schema-Zwischenspeicher" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -"Beim Angeben von SQL fungiert die Datenquelle als Ansicht. Superset " -"verwendet diese Anweisung als Unterabfrage beim Gruppieren und Filtern " -"der generierten übergeordneten Abfragen." +"Dauer (in Sekunden) des Cache-Timeouts für Diagramme dieser Datenbank. " +"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass" +" standardmäßig der globale Timeout verwendet wird, wenn keiner definiert " +"ist." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "Tabellen-Cache Timeout" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -"Bei Verwendung von \"AutoVervollständigen-Filtern\" kann dies verwendet " -"werden, um die Leistung der Abfrage zum Abrufen der Werte zu verbessern. " -"Verwenden Sie diese Option, um ein Prädikat (WHERE-Klausel) auf die " -"Abfrage anzuwenden, die die verschiedenen Werte aus der Tabelle auswählt." -" In der Regel besteht die Absicht darin, den Scan einzuschränken, indem " -"ein relativer Zeitfilter auf ein partitioniertes oder indiziertes " -"zeitbezogenes Feld angewendet wird." +"Dauer (in Sekunden) der Caching-Zeitdauer für Diagramme dieser Datenbank." +" Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, " +"dass standardmäßig der globale Timeout verwendet wird, wenn keiner " +"definiert ist. " -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "" -"Wenn Sie \"Gruppieren nach\" verwenden, sind Sie auf die Verwendung einer" -" einzelnen Metrik beschränkt" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Asynchrone Abfrageausführung" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "Abfrage abbrechen bei ‚Window unload‘-Ereignis" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -"Bei Verwendung einer anderen als der adaptiven Formatierung können sich " -"Beschriftungen überschneiden" +"Beenden Sie die Ausführung von Abfragen, wenn das Browserfenster " +"geschlossen oder zu einer anderen Seite navigiert wird. Verfügbar für " +"Presto-, Hive-, MySQL-, Postgres- und Snowflake-Datenbanken." -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" -msgstr "Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." +msgstr "Zusätzliche Verbindungsinformationen hinzufügen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Sicherheit extra" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -"Ob sich der Fortschrittsbalken überschneidet, wenn mehrere Datengruppen " -"vorhanden sind" +"JSON-Zeichenfolge mit zusätzlicher Verbindungskonfiguration. Diese wird " +"verwendet, um Verbindungsinformationen für Systeme wie Hive, Presto und " +"BigQuery bereitzustellen, die nicht der syntax username:password " +"entsprechen, welche normalerweise von SQLAlchemy verwendet wird." -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "Ob die Tabelle durch den 'Visualize'-Fluss in SQL Lab generiert wurde" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "Geben Sie CA_BUNDLE ein" -#: superset/connectors/sqla/views.py:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -"Ob diese Spalte im Abschnitt \"Filter\" der Erkunden-Ansicht verfügbar " -"gemacht wird." +"Optionale CA_BUNDLE Inhalte, um HTTPS-Anforderungen zu überprüfen. Nur " +"für bestimmte Datenbank-Engines verfügbar." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "" +"Identität von angemeldeter Benutzer*in annehmen (Presto, Trino, Drill & " +"Hive)" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -"Ob Hintergrunddiagramme sowohl mit positiven als auch mit negativen " -"Werten bei 0 ausgerichtet werden sollen" +"Für Presto oder Trino werden alle Abfragen in SQL Lab mit aktuell " +"angemeldeter Benutzer*in ausgeführt, der über die Berechtigung zum " +"Ausführen verfügen muss. Für Hive und falls hive.server2.enable.doAs " +"aktiviert sind, werden die Abfragen über das Service-Konto ausgeführt, " +"die Identität der aktuell angemeldeten Benutzer*in jedoch über die " +"hive.server2.proxy.user-Eigenschaft berücksichtigt." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" +msgstr "Datei-Uploads in die Datenbank zulassen" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" +msgstr "Zulässige Schemata für den Datei-Upload" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -"Ob positive und negative Werte im Zellbalkendiagramm bei 0 ausgerichtet " -"werden sollen" +"Eine durch Kommas getrennte Liste von Schemata, in die Dateien " +"hochgeladen werden dürfen." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" -msgstr "Ob die Anmerkungs-Beschriftung immer angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." +msgstr "Zusätzliche Einstellungen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" -msgstr "Ob der Fortschritt und der Wert animiert oder nur angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "Metadaten Parameter" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -"Ob eine Normalverteilung basierend auf dem Rang auf der Farbskala " -"angewendet werden soll" +"Das metadata_params Objekt wird in den sqlalchemy.MetaData-Aufruf " +"entpackt." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" -msgstr "Ob Filter angewendet werden soll, wenn auf Elemente geklickt wird" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "Engine-Parameter" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -"Ob numerische Werte eingefärbt werden sollen, wenn sie positiv oder " -"negativ sind" +"Das engine_params Objekt wird in den sqlalchemy.create_engine Aufrufs " +"entpackt." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" -msgstr "Ob ein Balkendiagrammhintergrund in Tabellenspalten angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "Version" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" -msgstr "Ob eine Legende für das Diagramm angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "Versionsnummer" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" -msgstr "Ob Blasen über Ländern angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +#, fuzzy +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." +msgstr "" +"Geben Sie die Datenbankversion an. Dies sollte mit Presto verwendet " +"werden, um eine Abfragekostenschätzung zu ermöglichen." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" -msgstr "Ob die Gesamtanzahl angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "SCHRITT %(stepCurr)s VON %(stepLast)s" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" -msgstr "Ob die interaktive Datentabelle angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" +msgstr "Primäre Anmeldeinformationen eingeben" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." -msgstr "Ob die Beschriftungen angezeigt werden sollen." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "Benötigen Sie Hilfe? Erfahren Sie, wie Sie Ihre Datenbank verbinden" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" +msgstr "Datenbank verbunden" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -"Ob die Beschriftungen angezeigt werden sollen. Beachten Sie, dass die " -"Beschriftung nur angezeigt wird, wenn der Schwellenwert von 5 % erreicht " -"ist." - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" -msgstr "Ob die Legende angezeigt werden soll (Wechselschalter)" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" -msgstr "Ob der Metrikname als Titel angezeigt werden soll" +"Erstellen Sie einen Datensatz, um mit der Visualisierung Ihrer Daten als " +"Diagramm zu beginnen, oder wechseln Sie zu\n" +" SQL Lab, um Ihre Daten abzufragen." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" -msgstr "Ob die Min- und Max-Werte der X-Achse angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "Ob die Min- und Max-Werte der Y-Achse angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "Benötigen Sie Hilfe? Erfahren Sie mehr über" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" -msgstr "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." +msgstr "verbinde mit %(dbModelName)s." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" -msgstr "Ob der Strich dargestellt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" +msgstr "" +"Wählen Sie eine Datenbank aus, mit der eine Verbindung hergestellt werden" +" soll" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "Ob die interaktive Zeitbereichs-Auswahl angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" +msgstr "SSH-Host" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" -msgstr "Ob der Zeitstempel angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" +msgstr "z.B. 127.0.0.1" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" -msgstr "Ob die Trendlinie angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" +msgstr "SSH Port" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." -msgstr "Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "22" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." -msgstr "" -"Ob das Ziehen von Knoten im Kräfte-basierten Layoutmodus aktiviert werden" -" soll." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" +msgstr "z.B. Analytik" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" -msgstr "Ob die Objekte gefüllt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" +msgstr "Anmelden mit" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" -msgstr "Ob Örtlichkeiten ignoriert werden sollen, die null sind" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" +msgstr "Privater Schlüssel & Passwort" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" -msgstr "Ob ein clientseitiges Suchfeld eingeschlossen werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" +msgstr "SSH-Passwort" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Ob ein Zeitfilter eingebunden werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "z.B. ********" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" -msgstr "Ob der Prozentsatz in Tooltip aufgenommen werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "Privater Schlüssel" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" +msgstr "Privaten Schlüssel hier einfügen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" -msgstr "Ob das Raster in 3D umgewandelt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" +msgstr "Passwort des privaten Schlüssels" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "Ob das Histogramm kumulativ dargestellt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" +msgstr "SSH-Tunnel" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" -msgstr "" -"Unabhängig davon, ob diese Spalte als [Zeitgranularität]-Option verfügbar" -" gemacht werden soll, muss die Spalte DATETIME oder DATETIME-ähnlich sein" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" +msgstr "Konfigurationsparameter für den SSH-Tunnel" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "Ob das Histogramm normalisiert werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Anzeigename" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "Benennen der Datenbank" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -"Ob das Dropdown-Menü des Filters im Filterabschnitt der Ansicht " -"\"Erkunden\" mit einer Liste unterschiedlicher Werte aufgefüllt werden " -"soll, die im laufenden Betrieb aus dem Back-End abgerufen werden sollen" +"Wählen Sie einen Namen aus, der Ihnen hilft, diese Datenbank zu " +"identifizieren." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." -msgstr "" -"Ob zusätzliche Steuerelemente angezeigt werden sollen oder nicht. Zu den " -"zusätzlichen Steuerelementen gehören Elemente wie das gestapelt oder " -"nebeneinander Erstellen von Multi-Bar-Diagrammen." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "dialect+driver://username:password@host:port/database" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "Ob kleinere Ticks auf der Achse angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "Weitere Informationen finden Sie im" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" -msgstr "Ob der Zeiger angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr "für weitere Informationen zum Strukturieren des URI." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" -msgstr "Ob der Fortschritt der Messgerätediagramms angezeigt werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Verbindungstest" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" -msgstr "Ob die geteilten Linien auf der Achse angezeigt werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "Datenbank" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Bitten geben Sie eine SQL Alchemy URI zum Testen ein" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Ob absteigend oder aufsteigend sortiert werden soll" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" +msgstr "z.B. world_population" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "" -"Ob absteigend oder aufsteigend sortiert werden soll, wenn ein " -"Reihengrenzwert vorhanden ist" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" +msgstr "Datenbankeinstellungen aktualisiert" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -"Ob die Ergebnisse nach der ausgewählten Metrik in absteigender " -"Reihenfolge sortiert werden sollen." +"Beim Abrufen von Datenbankinformationen ist leider ein Fehler " +"aufgetreten: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." -msgstr "" -"Ob der Tooltip nach der ausgewählten Metrik in absteigender Reihenfolge " -"sortiert werden soll." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" +msgstr "Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" -msgstr "Ob Metriken abgeschnitten werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" +msgstr "Unterstützte Datenbanken" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" -msgstr "Für welches Land soll die Karte geplottet werden?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." +msgstr "Wählen Sie eine Datenbank..." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" -msgstr "Welche Verwandten beim Überfahren mit der Maus hervorgehoben werden sollen" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "Möchten Sie eine neue Datenbank hinzufügen?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" -msgstr "Whisker/Ausreißer-Optionen" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "" +"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können" +" hinzugefügt werden. " -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" -msgstr "Weiß" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "" +"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können" +" hinzugefügt werden. Informationen zum Verbinden eines Datenbanktreibers " -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Breite" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "Verbinden" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "Breite des Konfidenzintervalls. Sollte zwischen 0 und 1 liegen" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "Fertigstellen" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" -msgstr "Breite der Sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "" +"Diese Datenbank wird extern verwaltet und kann nicht in Superset " +"bearbeitet werden." -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "Fenster muss > 0 sein" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." +msgstr "" +"Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zu " +"importieren. Bitte beachten Sie, dass die Abschnitte „Sicherheit Extra“ " +"und „Zertifikat“ der Datenbankkonfiguration nicht in „Dateien erkunden“ " +"vorhanden sind und nach dem Import manuell hinzugefügt werden sollten, " +"falls sie benötigt werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" -msgstr "Mit einem Untertitel" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Sie importieren eine oder mehrere Datenbanken, die bereits vorhanden " +"sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer " +"Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" -msgstr "Wortwolke" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" +msgstr "Fehler bei der Datenbankerstellung" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" -msgstr "Wort-Rotation" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." +msgstr "" +"Wir können keine Verbindung zu Ihrer Datenbank herstellen. Klicken Sie " +"auf \"Weitere anzeigen\", um von der Datenbank bereitgestellte " +"Informationen zu erhalten, die bei der Behebung des Problems helfen " +"können." -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" -msgstr "In Bearbeitung" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" +msgstr "DATASET ERSTELLEN" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" +msgstr "DATEN IN SQL LAB ABFRAGEN " + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "Eine Datenbank verbinden" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "Zeitüberschreitung" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Datenbank bearbeiten" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Weltkarte" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" +msgstr "" +"Verbinden Sie diese Datenbank stattdessen mithilfe des dynamischen " +"Formulars" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Beschreibung Ihrer Anfrage" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." +msgstr "" +"Klicken Sie auf diesen Link, um zu einem alternativen Formular zu " +"wechseln, das nur die zum Verbinden dieser Datenbank erforderlichen " +"Felder verfügbar macht." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" -msgstr "Handlebars-Template zur Darstellung der Daten verfassen" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "Eventuell sind weitere Felder erforderlich" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" -msgstr "Dataframe-Index als Spalte schreiben" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " +msgstr "" +"Für ausgewählte Datenbanken müssen zusätzliche Felder auf der " +"Registerkarte Erweitert ausgefüllt werden, um die Datenbank erfolgreich " +"zu verbinden. Erfahren Sie, welche Anforderungen Ihre Datenbanken haben " -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "Schreiben Sie den Dataframe-Index als Spalte." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" +msgstr "Datenbank aus Datei importieren" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" -msgstr "X-ACHSE TITEL UNTERER RAND" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" +msgstr "" +"Verbinden Sie diese Datenbank stattdessen mit einer SQLAlchemy-URI-" +"Zeichenfolge" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "X-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "" +"Klicken Sie auf diesen Link, um zu einem alternativen Formular zu " +"wechseln, mit dem Sie die SQLAlchemy-URL für diese Datenbank manuell " +"eingeben können." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" -msgstr "X-Achsen-Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" +"Dies kann entweder eine IP-Adresse (z.B. 127.0.0.1) oder ein Domainname " +"(z.B. mydatabase.com) sein." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" -msgstr "X Achsenbeschriftung" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "Host" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" -msgstr "Titel der X-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "z.B. 5432" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" -msgstr "X-Log-Skala" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" +msgstr "Port" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" -msgstr "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" +msgstr "z.B.sql/protocolv1/o/12345" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" -msgstr "X-Grenzen" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." +msgstr "Kopieren Sie den Namen des HTTP-Pfads Ihres Clusters." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" -msgstr "X-Achse aufsteigend sortieren" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." +msgstr "" +"Kopieren Sie den Namen der Datenbank, mit der Sie eine Verbindung " +"herstellen möchten." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" -msgstr "X-Achse Sortieren nach" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" +msgstr "Zugangs-Token" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" -msgstr "X-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." +msgstr "" +"Wählen Sie einen Kurznamen mit dem die Datenbank in Superset angezeigt " +"werden soll." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" -msgstr "X-Skalen-Intervall" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" +msgstr "z.B. param1=Wert1¶m2=Wert2" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" -msgstr "Y 2 Grenzen" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" +msgstr "Zusätzliche Parameter" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" -msgstr "Y-ACHSE TITEL RAND" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "Zusätzliche Parameter hinzufügen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" -msgstr "Y-ACHSE TITEL POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "SSL-Modus „require“ wird verwendet." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Y-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "Art der zulässigen Google Tabellen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" -msgstr "Grenzen der Y-Achse 2" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "Nur öffentlich freigegebene Blätter" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" -msgstr "Grenzen der Y-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "Öffentliche und privat freigegebene Blätter" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Y-Achsenformat" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" +msgstr "Wie möchten Sie die Anmeldeinformationen für das Dienstkonto eingeben?" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" -msgstr "Y Achsenbeschriftung" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "JSON Datei hochladen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" -msgstr "Titel der Y-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "Kopieren und Einfügen von JSON-Anmeldeinformationen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "Y-Log-Skala" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "Dienstkonto" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" -msgstr "Y-Grenzen" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" +msgstr "" +"Fügen Sie den Inhalt der JSON-Datei für Dienstanmeldeinformationen hier " +"ein" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" -msgstr "Y-Achse aufsteigend sortieren" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "" +"Kopieren Sie die gesamte JSON-Datei des Dienstkontos, und fügen Sie sie " +"hier ein" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" -msgstr "Y-Achse Sortieren nach" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "Anmeldeinformationen hochladen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" -msgstr "Y-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." +msgstr "" +"Verwenden Sie die JSON-Datei, die Sie beim Erstellen Ihres Dienstkontos " +"automatisch heruntergeladen haben." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" -msgstr "Grenzen der Y-Achse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "Google Tabellen als Tabellen mit dieser Datenbank verbinden" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" -msgstr "Y-Skalen-Intervall" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Google Tabellen-Name und URL" -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "Jahr" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "Geben Sie einen neuen Titel für die Registerkarte ein" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" -msgstr "Jahr (freq=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "Fügen Sie die gemeinsam nutzbare Google Tabellen-URL hier ein" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" -msgstr "Jährliche Saisonalität" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "Tabelle hinzufügen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" -msgstr "Jahre %s" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +#, fuzzy +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "" +"Kopieren Sie den Namen der Datenbank, mit der Sie eine Verbindung " +"herstellen möchten." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "Ja" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" +msgstr "z.B. xy12345.us-east-2.aws" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "Ja, abbrechen" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" +msgstr "z.B. compute_wh" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" -msgstr "Ja, Änderungen überschreiben" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" +msgstr "z.B. AccountAdmin" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" -"Sie importieren ein oder mehrere Diagramme, die bereits vorhanden sind. " -"Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit " -"verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" +msgstr "Datensatz duplizieren" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" -"Sie importieren ein oder mehrere Dashboards, die bereits vorhanden sind. " -"Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit " -"verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" +msgstr "Duplizieren" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" +msgstr "Name des neuen Datensatzes" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/constants.ts:23 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -"Sie importieren eine oder mehrere Datenbanken, die bereits vorhanden " -"sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer " -"Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" +"Die Passwörter für die folgenden Datenbanken werden benötigt, um sie " +"zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die " +"Abschnitte \"Secure Extra\" und \"Certificate\" der " +"Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " +"Bedarf nach dem Import manuell hinzugefügt werden sollten." #: superset-frontend/src/features/datasets/constants.ts:30 msgid "" @@ -19209,1524 +18946,1777 @@ msgstr "" "sind. Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer " "Arbeit verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" +msgstr "Aktualisieren von Spalten" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" +msgstr "Tabellenspalten" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" +msgstr "Lädt" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -"Sie importieren eine oder mehrere gespeicherte Abfragen, die bereits " -"vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil " -"Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" +"Dieser Tabelle ist bereits ein Datensatz zugeordnet. Sie können einer " +"Tabelle nur einen Datasatz zuordnen.\n" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" +msgstr "Datensatz anzeigen" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" +msgstr "Diese Tabelle hat bereits einen Datensatz" -#: superset/views/core.py:2213 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -"Sie sind nicht berechtigt, diese Abfrage anzuzeigen. Wenn Sie der Meinung" -" sind, dass dies ein Fehler ist, wenden Sie sich bitte an Ihre*n " -"Administrator*in." +"Datensätze können aus Datenbanktabellen oder SQL-Abfragen erstellt " +"werden. Wählen Sie links eine Datenbanktabelle aus oder " -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" -msgstr "Sie können" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" +msgstr "Datensatz aus SQL-Abfrage erstellen" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "Hinzufügen können Sie die Komponenten in der" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." +msgstr "" +" , um SQL Lab zu öffnen. Von dort aus können Sie die Abfrage als " +"Datensatz speichern." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "Sie können die Komponenten im Bearbeitungsmodus hinzufügen." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" +msgstr "Datensatz-Quelle auswählen" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" -"Sie können auch einfach auf das Diagramm klicken, um den Kreuzfilter " -"anzuwenden." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" +msgstr "Keine Tabellenspalten" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +"This database table does not contain any data. Please select a different " +"table." msgstr "" -"Sie können auswählen, ob alle Diagramme angezeigt werden sollen, auf die " -"Sie Zugriff haben, oder nur die Diagramme, die Sie besitzen.\n" -" Ihre Filterauswahl wird gespeichert und bleibt aktiv, bis " -"Sie sie ändern." +"Diese Datenbanktabelle enthält keine Daten. Bitte wählen Sie eine andere " +"Tabelle aus." + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" +msgstr "Ein Fehler ist aufgetreten" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -"Sie können ein neues Diagramm erstellen oder vorhandene Diagramme aus dem" -" Bereich auf der rechten Seite verwenden." +"Spalten für die ausgewählte Tabelle können nicht geladen werden. Bitte " +"wählen Sie eine andere Tabelle aus." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -"Sie können eine Vorschauliste der Dashboards in der Dropdownliste für die" -" Diagrammeinstellungen anzeigen." +"Die API-Antwort von %s stimmt nicht mit der IDatabaseTable-Schnittstelle " +"überein." -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." -msgstr "Sie können keinen Kreuzfilter auf diesen Datenpunkt anwenden." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" +msgstr "Verwendung" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." -msgstr "" -"Sie können den letzten Zeitfilter nicht löschen, da er für " -"Zeitbereichsfilter in Dashboards verwendet wird." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +msgid "Chart owners" +msgstr "Diagrammbesitzende" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" -msgstr "" -"Sie können das 45°-Strich-Layout nicht zusammen mit dem " -"Zeitbereichsfilter verwenden" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" +msgstr "Diagramm zuletzt geändert" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." -msgstr "" -"Sie können [Spalten] nicht in Kombination mit [Gruppieren " -"nach]/[Metriken]/[Prozentmetriken] verwenden. Bitte wählen Sie das eine " -"oder das andere." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" +msgstr "Diagramm zuletzt geändert von" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, python-format -msgid "You do not have permission to edit this %s" -msgstr "Sie haben keine Berechtigung, %s zu bearbeiten" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" +msgstr "Dashboard-Nutzung" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "Sie sind nicht berechtigt, dieses Diagramm zu bearbeiten" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" +msgstr "Diagramm mit Datensatz erstellen" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "Sie haben keine Zugriff auf diese Datenquelle" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "Diagramm" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "" -"Sie haben keine Berechtigungen für den Zugriff auf die Datenquelle(n): " -"%(name)s." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Keine Diagramme" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "Sie haben keine Berechtigungen zum Bearbeiten dieses Dashboards." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "Dieser Datesatz wird nicht von Diagrammen genutzt." -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." -msgstr "Sie haben keinen Zugriff auf dieses Diagramm." +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." +msgstr "Wählen Sie eine Datenbanktabelle aus." -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "Sie haben keinen Zugriff auf dieses Dashboard." +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" +msgstr "Datensatz erstellen und Diagramm erstellen" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." -msgstr "Sie haben keinen Zugriff auf dieses Dataset." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" +msgstr "Neuer Datensatz" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." -msgstr "Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "Auswählen einer Datenbanktabelle und Erstellen eines Datensatzes" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" +msgstr "Datensatzname" + +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "Undefiniert" + +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" +msgstr "Fehler beim Abrufen des Datensatzes" + +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" +msgstr "Fehler beim Abrufen der zugehörigen Objekte des Datensatzes" + +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" +msgstr "Fehler beim Laden der Datensatz-Metadaten" + +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Unbenannt]" + +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Unbekannt" + +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" +msgstr "%s angesehen" + +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Bearbeitet" + +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Erstellt" + +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Angesehen" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "Sie haben noch keine Favoriten!" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Favoriten" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." -msgstr "Sie sind nicht berechtigt, den Wert zu ändern." +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Meine" -#: superset/security/manager.py:2262 -#, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Sie sind nicht berechtigt, %(resource)s zu ändern" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "Alle ansehen »" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" -msgstr "Sie sind nicht berechtigt, dieses Diagramm zu ändern" +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten: %s" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" -msgstr "Sie sind nicht berechtigt, dieses Dashboard zu ändern" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" +msgstr "Diagramme" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Sie haben nicht das Recht, diesen Titel zu ändern." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" +msgstr "Dashboards" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" -msgstr "Sie haben nicht die Rechte zum Erstellen eines Diagramms" +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "Kürzlich" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" -msgstr "Sie haben nicht die Rechte zum Erstellen eines Dashboards" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "gespeicherte Abfragen" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as csv" -msgstr "Sie haben nicht die Rechte, als CSV herunterzuladen" +#: superset-frontend/src/features/home/EmptyState.tsx:35 +msgid "No charts yet" +msgstr "Noch keine Diagramme" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "Sie haben keine Berechtigung, diese Anforderung zu genehmigen" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +msgid "No dashboards yet" +msgstr "Noch keine Dashboards" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Sie haben diesen Filter entfernt." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" +msgstr "Noch keine aktuellen" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "Ungesicherte Änderungen vorhanden." +#: superset-frontend/src/features/home/EmptyState.tsx:38 +msgid "No saved queries yet" +msgstr "Noch keine gespeicherten Abfragen" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#: superset-frontend/src/features/home/EmptyState.tsx:44 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." -msgstr "" -"Sie haben alle %(historyLength)s Undo-Slots verwendet und können " -"nachfolgende Aktionen nicht vollständig rückgängig machen. Sie können " -"Ihren aktuellen Status speichern, um den Verlauf zurückzusetzen." +msgid "%(other)s charts will appear here" +msgstr "%(other)s Diagramme werden hier angezeigt" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." -msgstr "" -"Sie müssen ein Datensatzbesitzer*in sein, um bearbeiten zu können. Bitte " -"wenden Sie sich an eine/n Datensatzbesitzer*in, um Änderungs- oder " -"Bearbeitungszugriff zu erhalten." +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" +msgstr "%(other)s Dashboards werden hier angezeigt" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Sie müssen einen Namen für das neue Dashboard auswählen" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" +msgstr "Aktuelle %(other)s werden hier angezeigt" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "Sie müssen die Abfrage zuerst erfolgreich ausführen" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" +msgstr "%(other)s gespeicherte Abfragen werden hier angezeigt" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -"Sie müssen die HTML-Bereinigung (sanitization) aktivieren, um CSS " -"verwenden zu können" +"Kürzlich angezeigte Diagramme, Dashboards und gespeicherte Abfragen " +"werden hier angezeigt" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -"Sie haben die Werte in der Systemsteuerung aktualisiert, aber das " -"Diagramm wurde nicht automatisch aktualisiert. Führen Sie die Abfrage " -"aus, indem Sie auf die Schaltfläche \"Diagramm aktualisieren\" klicken " -"oder" +"Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden" +" hier angezeigt" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -"Sie haben Datensätze geändert. Alle Steuerelemente mit Daten (Spalten, " -"Metriken), die diesem neuen Dataset entsprechen, wurden beibehalten." +"Kürzlich bearbeitete Diagramme, Dashboards und gespeicherte Abfragen " +"werden hier angezeigt" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "Ihr Diagramm ist nicht aktuell" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQL Abfrage" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" -msgstr "Ihr Chart ist startklar!" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "Sie haben noch keine Favoriten!" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "" -"Ihr Dashboard ist zu groß. Bitte reduzieren Sie die Größe, bevor Sie es " -"speichern." +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" +msgstr "Alle %(tableName)s ansehen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Ihre Abfrage konnte nicht gespeichert werden" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "Datenbank verbinden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "Ihre Abfrage konnte nicht eingeplant werden" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" +msgstr "Datensatz erstellen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Ihre Abfrage konnte nicht aktualisiert werden." +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "Google Sheet verbinden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "CSV in Datenbank hochladen" + +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "Spaltendatei in Datenbank hochladen" + +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "Excel-Datei in Datenbank hochladen" + +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -"Ihre Abfrage wurde geplant. Um Details zu Ihrer Abfrage anzuzeigen, " -"navigieren Sie zu Gespeicherte Abfragen" +"Aktivieren Sie \"Datei-Uploads in Datenbank zulassen\" in den " +"Einstellungen einer beliebigen Datenbank" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" -msgstr "Ihre Abfrage wurde nicht ordnungsgemäß gespeichert" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Info" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "Ihre Abfrage wurde gespeichert" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Abmelden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "Ihre Abfrage wurde angehalten" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "Über" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" -msgstr "Ihr Report konnte nicht gelöscht werden" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "Powered Apache Superset" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" -msgstr "Fehlende-Werte-Ersetzung" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" +msgstr "SHA" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "Zoom" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" +msgstr "Build" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" -msgstr "Zoomstufe der Karte" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "Dokumentation" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" -msgstr "[ unbenanntes Dashboard ]" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "Fehler melden" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "" -"Die Spalten [Longitude] und [Latitude] müssen in [Group By] vorhanden " -"sein." +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Anmelden" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "[Longitude] und [Latitude] müssen eingestellt sein" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "Abfrage" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "[Fehlender Datensatz]" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Gelöscht: %s" -#: superset/utils/core.py:908 +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] Zugriff auf die Datenquelle %(name)s wurde gewährt" +msgid "There was an issue deleting %s: %s" +msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "[Unbenannt]" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht." -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" -msgstr "[asc]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Abfrage löschen?" + +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "Ausgeführt %s" + +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Gespeicherte Abfragen" + +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Weiter" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" -msgstr "[Kopie]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Tabellenname" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[Dashboard-Name]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Benutzer*innen-Abfrage" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "[Beschreibung]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Ausgeführte Abfrage" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" -"[optional] Diese sekundäre Metrik wird verwendet, um die Farbe als " -"Verhältnis zur primären Metrik zu definieren. Wenn keine angegeben, " -"werden diskrete Farben verwendet, die auf den Beschriftungen basieren" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Abfragename" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" -msgstr "[Unbenannt]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL kopiert!" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "„compare_columns“ muss die gleiche Länge wie „source_columns“ haben." +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Entschuldigung. Ihr Browser unterstützt leider kein Kopieren." -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -"\"compare_type\" muss \"Differenz\", \"Prozentsatz\" oder \"Verhältnis\" " -"sein" +"Es gab ein Problem beim Abrufen von Reports, die an dieses Dashboard " +"angehängt waren." -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "\"confidence_interval\" muss zwischen 0 und 1 liegen (exklusiv)" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "Der Report wurde erstellt" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." -msgstr "" -"'count' ist COUNT(*), wenn ein ‚GROUP BY’ verwendet wird. Numerische " -"Spalten werden mit der Aggregatfunktion aggregiert. Nicht numerische " -"Spalten werden verwendet, um Punkte zu beschriften. Falls leer, wird die " -"Anzahl der Punkte in jedem Cluster zurückgegeben." +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" +msgstr "Bericht aktualisiert" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "'operation'-Eigenschaft des Nachbearbeitungsobjekts undefiniert" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "Wir konnten diesen Bericht nicht aktivieren oder deaktivieren." -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "Paket 'prophet' nicht installiert" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "Ihr Report konnte nicht gelöscht werden" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "\"rename_columns\" muss die gleiche Länge wie „columns“ haben." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "Wöchentlicher Bericht für %s" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "\"row_limit\" muss größer oder gleich 0 sein" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" +msgstr "Wöchentlicher Bericht" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "\"row_offset\" muss größer oder gleich 0 sein" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "E-Mail-Report bearbeiten" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "\"Breite\" muss größer oder gleich 0 sein" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" +msgstr "Planen eines neuen E-Mail-Berichts" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "Aggregat" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "In E-Mail eingebetteter Text" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "Alarm" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "Bild (PNG) in E-Mail eingebettet" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -#, fuzzy -msgid "alert dark" -msgstr "Alarm" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "Formatierte CSV-Datei in E-Mail angehängt" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "Alarme" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" +msgstr "Berichtname" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" -msgstr "alle" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" +msgstr "Fügen Sie eine Beschreibung hinzu, die mit Ihrem Bericht gesendet wird" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "auch (doppelte) Diagramme kopieren" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "Ein Screenshot des Dashboards wird an Ihre E-Mail-Adresse gesendet" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" -msgstr "Vorfahr" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" +msgstr "Fehler beim Aktualisieren des Berichts" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "und" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" +msgstr "Bericht konnte nicht erstellt werden" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "Anmerkungen" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" +msgstr "E-Mail-Report einrichten" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "Anmerkungsebene" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "E-Mail-Reporte aktiv" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" -msgstr "asfreq" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "E-Mail-Report löschen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "bei" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "Planen von E-Mail-Reports" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -msgid "auto" -msgstr "automatisch" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Mit dieser Aktion wird %s dauerhaft gelöscht." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" -msgstr "automatisch (geglättet)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "Report löschen?" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "Hintergrund" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Sicherheit auf Zeilenebene" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" -msgstr "basis" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "unten (Beispiel:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "Bearbeitungsmodus" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "zwischen {down} und {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Add Rule" +msgstr "Fehlerhafte Formel." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "Bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Vollständiger Name" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "Riegel" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "Name muss eindeutig sein" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "Symbol für booleschen Typ" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +#, fuzzy +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "" +"Reguläre Filter fügen Abfragen WHERE-Ausrücke hinzu, falls ein*e " +"Benutzer*in einer im Filter referenzierten Rolle angehört. Basisfilter " +"wenden Filter auf alle Abfragen mit Ausnahme der im Filter definierten " +"Rollen an. Über sie lässt sich definieren, was Benutzer*innen sehen " +"können, wenn auf sie keine RLS-Filter angewendet werden." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" -msgstr "Unten" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +#, fuzzy +msgid "These are the datasets this filter will be applied to." +msgstr "Dies sind die Tabellen, auf die dieser Filter angewendet wird." -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "Schaltfläche (cmd + z), bis Sie Ihre Änderungen speichern." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +#, fuzzy +msgid "Excluded roles" +msgstr "Zeitreihen einschließen" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "durch die Verwendung von" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "" +"Bei regulären Filtern sind dies die Rollen, auf die dieser Filter " +"angewendet wird. Bei Basisfiltern sind dies die Rollen, auf die der " +"Filter NICHT angewendet wird, z. B. Admin, wenn Admin alle Daten sehen " +"soll." -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" -msgstr "darf nicht leer sein" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +#, fuzzy +msgid "Group Key" +msgstr "Gruppieren nach" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" -msgstr "Kardinal" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" +"Filter mit demselben Gruppenschlüssel werden innerhalb der Gruppe ODER-" +"verknüpft, während verschiedene Filtergruppen zusammen UND-verknüpft " +"werden. Undefinierte Gruppenschlüssel werden als eindeutige Gruppen " +"behandelt, d.h. nicht gruppiert. Wenn eine Tabelle beispielsweise drei " +"Filter hat, von denen zwei für die Abteilungen Finanzen und Marketing " +"(Gruppenschlüssel = 'Abteilung') sind und einer sich auf die Region " +"Europa bezieht (Gruppenschlüssel = 'Region'), würde die Filterklausel den" +" Filter anwenden (Abteilung = 'Finanzen' ODER Abteilung = 'Marketing') " +"UND (Region = 'Europa')." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -msgid "change" -msgstr "ändern" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Ausdruck" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "Diagramm" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"Dies ist die Bedingung, die der WHERE-Klausel hinzugefügt wird. Um " +"beispielsweise nur Zeilen für eine*n bestimmte*n Klient*n zurückzugeben, " +"können Sie einen regulären Filter mit der Klausel \"client_id = 9\" " +"definieren. Um keine Zeilen anzuzeigen, es sei denn, ein*e Benutzer*in " +"gehört einer RLS-Filterrolle an, kann ein Basisfilter mit der Klausel '1 " +"= 0' (immer falsch) erstellt werden." -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" -msgstr "Diagramme" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +#, fuzzy +msgid "Regular" +msgstr "Kreisförmig" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "Wählen Sie WHERE oder HAVING…" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +#, fuzzy +msgid "Base" +msgstr "Datenbank" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -msgid "clear all filters" -msgstr "Alle Filter löschen" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." +msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" -msgstr "klicken Sie hier" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" -msgstr "Code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Alle Elemente auswählen" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "Code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" -msgstr "Code Internationales Olympisches Komitee (CIOC)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "Spalte" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +#, fuzzy +msgid "tags" +msgstr "Schlagwort" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." -msgstr "verbinde mit %(dbModelName)s." +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "Alle abwählen" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" -msgstr "Anzahl" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "Liste aktualisiert" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -msgid "create" -msgstr "Erstellen" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "wurde erstellt" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" -msgstr "Neues Diagramm erstellen" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Tabellenname" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "Datensatz aus SQL-Abfrage erstellen" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Benennen der Datenbank" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "CSS" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Beschreibung Ihrer Anfrage" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "css_template" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Dashboard auswählen" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "cumsum" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Gespeicherte Metriken auswählen" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" -msgstr "kumulativ" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Ausgewählte nicht numerische Spalte" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "Dashboard" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "UI Konfiguration" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" -msgstr "Dashboards" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" +msgstr "Filterwert ist erforderlich" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "Datenbank" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "Benutzer*in muss einen Wert für diesen Filter auswählen" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "Datensatz" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" +msgstr "Einzelner Wert" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -msgid "dataset name" -msgstr "Datensatzname" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "Verwenden Sie nur einen einzigen Wert." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "Datum" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "Bereichsfilter-Plugin mit AntD" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "Tag" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr " (ausgeschlossen)" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "Tag des Monats" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s Option" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "Wochentag" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Überprüfen Sie die Sortierung aufsteigend" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" -msgstr "Deck.gl - 3D Hexagon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "Mehrere Werte können ausgewählt werden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" -msgstr "Deck.gl - Bogen" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "Standardmäßig erste Ersten Filterwert auswählen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" +msgstr "Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" -msgstr "Deck.gl - Raster" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "Auswahl umkehren" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "Deck.gl - Diagramme" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" +msgstr "Auswahlwerte ausschließen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" -msgstr "Deck.gl - Mehrere Ebenen" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "Alle Filterwerte dynamisch durchsuchen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" -msgstr "Deck.gl - Pfade" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" +"Standardmäßig lädt jeder Filter beim ersten Laden der Seite höchstens " +"1000 Auswahlmöglichkeiten. Aktivieren Sie dieses Kontrollkästchen, wenn " +"Sie über mehr als 1000 Filterwerte verfügen und die dynamische Suche " +"aktivieren möchten, die Filterwerte während der Benutzereingabe lädt (was" +" die Datenbank belasten kann)." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" -msgstr "Deck.gl - Polygon" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "Filter-Plugin mit AntD auswählen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" -msgstr "deck.gl Streudiagramm" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "Benutzerdefiniertes Zeitfilter-Plugin" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" -msgstr "Deck.gl - Bildschirmraster" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Nicht-Zeitspalten" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -msgid "deck.gl charts" -msgstr "Deck.gl - Diagramme" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" +msgstr "Zeitspalten-Filter-Plugin" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" -msgstr "deckGL" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "Zeitgranularität-Plugin" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" -msgstr "Standard" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "In Bearbeitung" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "Löschen" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" +msgstr "Nicht ausgelöst" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" -msgstr "Nachkomme" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "Kulanz" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "Beschreibung" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "Reports" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -msgid "deviation" -msgstr "Abweichung" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "Alarme" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" -msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Beim Löschen der ausgewählten %s ist ein Problem aufgetreten: %s" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "Entwurf" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Letzte Ausführung" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Aktionsprotokoll" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "z.B. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Massenauswahl" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "z.B. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Noch keine %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" -msgstr "z.B. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Besitzer*in" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "z.B. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Alle" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" -msgstr "z.B. Analytik" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Beim Abrufen der Werte der Besitzer*innen ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "z.B. compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Status" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "z.B. param1=Wert1¶m2=Wert2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "" +"Beim Abrufen von Datassatz-Datenquellenwerten ist ein Fehler aufgetreten:" +" %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "z.B.sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Alarme und Reports" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "z.B. world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Alarme" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "z.B. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Reports" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "z. B. eine Spalte „user id“" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "%s löschen?" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" -msgstr "Bearbeitungsmodus" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Möchten Sie die/das ausgewählte %s wirklich löschen?" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -msgid "entries" -msgstr "Einträge" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +#, fuzzy +msgid "Error Fetching Tagged Objects" +msgstr "Fehler beim Abrufen der zugehörigen Objekte des Datensatzes" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "error" -msgstr "Fehler" +msgid "Edit Tag" +msgstr "Protokoll bearbeiten" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Beim Löschen der ausgewählten Ebenen ist ein Problem aufgetreten: %s" -#: superset/models/helpers.py:1803 -msgid "error_message" -msgstr "Fehlermeldung" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Vorlage bearbeiten" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "jeden" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Vorlage löschen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "jeden Tag des Monats" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Bearbeitet von" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "jeden Tag der Woche" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Noch keine Anmerkungsebenen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "stündlich" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Durch diese Aktion wird die Ebene dauerhaft gelöscht." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" -msgstr "jede Minute" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Ebene löschen?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "jeden Monat" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" -msgstr "aufklappen" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "Beim Löschen der ausgewählten Anmerkungen ist ein Problem aufgetreten: %s" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" -msgstr "Erkunden" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Anmerkung löschen" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -msgid "failed" -msgstr "fehlgeschlagen" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Anmerkung" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" -msgstr "Wird abgerufen" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Noch keinen Anmerkungen" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "ffill" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format +msgid "Annotation Layer %s" +msgstr "Anmerkungs-Layer %s" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." -msgstr "" -"filter_box wird in einer zukünftigen Version von Superset veraltet sein. " -"Bitte ersetzen Sie filter_box durch Dashboard-Filterkomponenten." +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" +msgstr "Zurück zu allen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" -msgstr "flach" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Sind Sie sicher, dass Sie %s löschen möchten?" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "für weitere Informationen zum Strukturieren des URI." +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Anmerkung löschen?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" -msgstr "Symbol für Funktionstyp" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Möchten Sie die ausgewählten Anmerkungen wirklich löschen?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" -msgstr "Geohash (quadratisch)" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "Diagrammdaten konnten nicht geladen werden" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -msgid "heatmap" -msgstr "Heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" +msgstr "Anleitung anzeigen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "Heatmap: Werte werden über die gesamte Heatmap normalisiert" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" +msgstr "Datensatz hinzufügen" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" -msgstr "hier" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" +msgstr "Oder" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "Stunde" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Datensatz auswählen" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" -msgstr "ID" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "Diagrammtyp auswählen" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "" +"Wählen Sie sowohl einen Datensatz- als auch einen Diagrammtyp aus, um " +"fortzufahren" + +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Die Passwörter für die folgenden Datenbanken werden benötigt, um sie " +"zusammen mit den Diagrammen zu importieren. Bitte beachten Sie, dass die " +"Abschnitte \"Secure Extra\" und \"Certificate\" der " +"Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " +"Bedarf nach dem Import manuell hinzugefügt werden sollten." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +#: superset-frontend/src/pages/ChartList/index.tsx:102 msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -"CSS-Attribut zum Rendern von Bildern des Canvas-Objekts, das definiert, " -"wie der Browser das Bild hochskaliert" +"Sie importieren ein oder mehrere Diagramme, die bereits vorhanden sind. " +"Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit " +"verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "in" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" +msgstr "Diagramm importiert" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr " " +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Beim Löschen der ausgewählten Diagramme ist ein Problem aufgetreten: %s" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "wird als Zahl erwartet" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" -msgstr "wird als Ganzzahl erwartet" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "Beliebig" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "Verknüpft" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +#, fuzzy +msgid "Tag" +msgstr "Schlagwort" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "JSON ist ungültig" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "" +"Beim Abrufen von Diagrammbesitzer*innenwerten ist ein Fehler aufgetreten:" +" %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" -msgstr "Schlüssel a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "Zertifiziert" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "Schlüssel z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "Alphabetisch" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" -msgstr "Beschriftung" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Kürzlich geändert" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" -msgstr "Gestern" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Zuletzt geändert" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" -msgstr "letzter Monat" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Diagramm importieren" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "letztes Quartal" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Möchten Sie die ausgewählten Diagramme wirklich löschen?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "letzte Woche" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSS Vorlagen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" -msgstr "letztes Jahr" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Beim Löschen der ausgewählten Vorlagen ist ein Problem aufgetreten: %s" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "neueste Partition:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSS Vorlagen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" -msgstr "Links" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Durch diese Aktion wird die Vorlage dauerhaft gelöscht." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" -msgstr "weniger als {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Vorlage löschen?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -msgid "linear" -msgstr "linear" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Möchten Sie die ausgewählten Vorlagen wirklich löschen?" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "Protokoll" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um" +" sie zusammen mit den Dashboards zu importieren. Bitte beachten Sie, dass" +" die Abschnitte \"Secure Extra\" und \"Certificate\" der " +"Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " +"Bedarf nach dem Import manuell hinzugefügt werden sollten." -#: superset/charts/schemas.py:735 +#: superset-frontend/src/pages/DashboardList/index.tsx:80 msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -"Das untere Perzentil muss größer als 0 und kleiner als 100 sein. Muss " -"niedriger als das obere Perzentil sein." +"Sie importieren ein oder mehrere Dashboards, die bereits vorhanden sind. " +"Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit " +"verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" -msgstr "Maximum" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" +msgstr "Dashboard importiert" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" -msgstr "Mittelwert" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Beim Löschen der ausgewählten Dashboards ist ein Problem aufgetreten: " -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" -msgstr "Median" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "" +"Beim Abrufen von Dashboardbesitzer*innen-Werten ist ein Fehler " +"aufgetreten: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" -msgstr "Metrik" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Möchten Sie die ausgewählten Dashboards wirklich löschen?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -msgid "min" -msgstr "Minimum" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Beim Abrufen datenbankbezogener Daten ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "Minute" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" +msgstr "Datei in Datenbank hochladen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" -msgstr "Minute(n)" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" +msgstr "CSV hochladen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -msgid "monotone" -msgstr "monoton" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" +msgstr "Spaltendatei hochladen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "Monat" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" +msgstr "Excel hochladen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "mehr als {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "Muss einen Wert haben" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "DML (Datenmanipulationssprache) zulassen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -msgid "name" -msgstr "Name" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" -msgstr "kein SQL-Validator ist konfiguriert" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "CSV-Upload" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" -msgstr "Für {} ist kein SQL-Validator konfiguriert" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Datenbank löschen" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" -msgstr "Symbol für numerischen Typ" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" +"Die Datenbank %s ist mit %s Diagrammen verknüpft, die auf %s Dashboards " +"angezeigt werden und Nutzende haben %s SQL Lab Reiter geöffnet, die auf " +"diese Datenbank zugreifen. Sind Sie sicher, dass Sie fortfahren möchten? " +"Durch das Löschen der Datenbank werden diese Objekte ungültig." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Datenbank löschen?" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" -msgstr "des Elternteils" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" +msgstr "Datensatz importiert" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" -msgstr "der Gesamtsumme" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Fehler beim Abrufen von Daten des Datensatzes" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "offline" -msgstr "Offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Beim Abrufen von Datensatzdaten ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "an" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Physischer Datensatz" + +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Virtueller Datensatz" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -msgid "or" -msgstr "Oder" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" +msgstr "Virtuell" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "oder verwenden Sie vorhandene aus dem Bereich auf der rechten Seite" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Beim Abrufen von Datensätzen ist ein Fehler aufgetreten: %s" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" -msgstr "ORDER BY-Spalte muss angegeben werden" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "insgesamt" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "" +"Beim Abrufen von Angaben zum/zur Datensatz-Besitzer*in ist ein Fehler " +"aufgetreten: %s" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "p-Wert-Präzision" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Datensätze importieren" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "P1" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Beim Löschen der ausgewählten Datensätze ist ein Problem aufgetreten: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "P5" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." +msgstr "Beim Duplizieren des Datensatzes ist ein Problem aufgetreten." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "P95" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "" +"Beim Duplizieren der ausgewählten Datensätze ist ein Problem aufgetreten:" +" %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "P99" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." +msgstr "" +"Der %s Datensatz ist mit %s Diagrammen verknüpft, die auf %s Dashboards " +"angezeigt werden. Sind Sie sicher, dass Sie fortfahren möchten? Durch das" +" Löschen des Datensatzes werden diese Objekte ungültig." -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Datensatz löschen?" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Möchten Sie die ausgewählten Datensätze wirklich löschen?" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 ausgewählt" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "pending" -msgstr "ausstehend" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s ausgewählt (virtuell)" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "Perzentil (exklusiv)" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s ausgewählt (physisch)" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" -msgstr "" -"Perzentile müssen eine Liste oder ein Tupel mit zwei numerischen Werten " -"sein, von denen der erste niedriger als der zweite Wert ist" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s ausgewählt (%s physisch, %s virtuell)" -#: superset/views/core.py:1958 -msgid "permalink state not found" -msgstr "Permalink-Status nicht gefunden" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "Protokoll" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "Gepixelt (scharf)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "Ausführungs-ID" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "vorheriger Kalendermonat" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Geplant um (UTC)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "vorherige Kalenderwoche" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Starten um (UT)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "vorheriges Kalenderjahr" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Fehlermeldung" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "veröffentlicht" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" +msgstr "Alarm" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" -msgstr "Quartal" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Beim Abrufen Ihrer letzten Aktivität ist ein Problem aufgetreten: %s" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "Abfragen" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Beim Abrufen Ihrer Dashboards ist ein Problem aufgetreten: %s" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "Abfrage" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Beim Abrufen Ihres Diagramms ist ein Problem aufgetreten: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "zufällig" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Beim Abrufen Ihrer gespeicherten Abfragen ist ein Problem aufgetreten: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "Neu starten" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "Vorschaubilder" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "Kürzlich" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" -msgstr "Kürzlich" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "Report" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "TABELLEN" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "Reports" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Bearbeiten in SQL Editor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "Zoom wiederherstellen" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Beim Abrufen von Datenbankwerten ist ein Fehler aufgetreten: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" -msgstr "Rechts" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -#, fuzzy -msgid "rowlevelsecurity" -msgstr "Sicherheit auf Zeilenebene" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Suche nach Abfragetext" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "running" -msgstr "laufend" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Gelöscht: %s" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" -msgstr "gespeicherte Abfragen" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +#, fuzzy +msgid "Deleted" +msgstr "Löschen" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" -msgstr "Suche nach Tags" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "seconds" -msgstr "Sekunden" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +#, fuzzy +msgid "No Rules yet" +msgstr "Noch keine aktuellen" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -msgid "series" -msgstr "Zeitreihen" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -"Serie: Behandeln Sie jede Serie unabhängig voneinander; insgesamt: Alle " -"Zeitreihen verwenden den gleichen Maßstab; Änderung: Änderungen im " -"Vergleich zum ersten Datenpunkt in jeder Datenreihe anzeigen" +"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um" +" sie zusammen mit den gespeicherten Abfragen zu importieren. Bitte " +"beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" " +"der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " +"Bedarf nach dem Import manuell hinzugefügt werden sollten." + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "" +"Sie importieren eine oder mehrere gespeicherte Abfragen, die bereits " +"vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil " +"Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" +msgstr "Abfrage importiert" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetreten" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Abfragen importieren" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Link kopiert!" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Beim Löschen der ausgewählten Abfragen ist ein Problem aufgetreten: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" -msgstr "Quadrat" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Abfrage bearbeiten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" -msgstr "Stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Abfrage-URL kopieren" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" -msgstr "gestaffelt" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Abfrage exportieren" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" -msgstr "Std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Abfrage löschen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-after" -msgstr "step-after" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Möchten Sie die ausgewählten Abfragen wirklich löschen?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "step-before" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "Abfragen" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" -msgstr "gestoppt" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" +msgstr "Schlagwort" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" -msgstr "Stream" +#: superset-frontend/src/pages/Tags/index.tsx:130 +#, fuzzy +msgid "No Tags created" +msgstr "wurde erstellt" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" -msgstr "Symbol für Zeichenfolgentyp" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" +msgstr "Möchten Sie die ausgewählten Tags wirklich löschen?" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" -msgstr "Erfolg" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." +msgstr "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/utils/downloadAsPdf.ts:55 #, fuzzy -msgid "success dark" -msgstr "Erfolg" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" -msgstr "sum" +msgid "PDF download failed, please refresh and try again." +msgstr "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." -msgstr "Syntax." +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." +msgstr "" +"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/pages/Tags/index.tsx:76 -msgid "tag" -msgstr "Schlagwort" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "Ungültige Eingabe" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" -msgstr "Symbol für Zeittyp" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " +msgstr "Unerwarteter Fehler:" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "Textfeld" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "(keine Beschreibung, klicken Sie hier, um Fehlermeldung zu sehen)" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" -msgstr "bis" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." +msgstr "Leider ist ein unbekannter Fehler aufgetreten." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" -msgstr "Oben" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Leider ist beim Speichern dieses %s ein Fehler aufgetreten: %s" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" -msgstr "Rückgängig" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" +msgstr "Sie haben keine Berechtigung, %s zu bearbeiten" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" -msgstr "Symbol für unbekannten Typ" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" +msgstr "Netzwerkfehler" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." -msgstr "" -"Das obere Perzentil muss größer als 0 und kleiner als 100 sein. Muss " -"größer als das untere Perzentil sein." +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" +msgstr "Zeitüberschreitung der Anforderung" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" -msgstr "latest_partition Vorlage verwenden" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Problem 1000 - Die Datenquelle ist zu groß, um sie abzufragen." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" -msgstr "Wert aufsteigend" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Problem 1001 - Die Datenbank ist ungewöhnlich belastet." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" -msgstr "Wert absteigend" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#, fuzzy -msgid "var" -msgstr "Balken" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" -msgstr "Varianz" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Beim Erstellen von %s ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -msgid "view instructions" -msgstr "Anleitung anzeigen" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "" +"Bitte exportieren Sie Ihre Datei erneut und versuchen Sie nochmals, sie " +"zu importieren." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" -msgstr "virtuell" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Beim Importieren von %s ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" -msgstr "Visualisierungstyp" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Beim Abrufen des Favoritenstatus ist ein Problem aufgetreten: %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "wurde erstellt" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "Woche" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "Verbindung möglich!" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" -msgstr "Woche, am Samstag endend" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "FEHLER: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" -msgstr "Woche, am Sonntag beginnend" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Beim Abrufen der letzten Aktivität ist ein Fehler aufgetreten:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "X" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Beim Löschen ist ein Problem aufgetreten: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" -msgstr "X: Werte werden innerhalb jeder Spalte normalisiert" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" -msgstr "Y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." +msgstr "" +"Vorlagen-Link. Es ist möglich, {{ metric }} oder andere Werte aus den " +"Steuerelementen einzuschließen." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" -msgstr "y: Werte werden innerhalb jeder Zeile normalisiert" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Zeitreihentabelle" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "Jahr" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" +"Vergleichen Sie schnell mehrere Zeitreihendiagramme (als Sparklines) und " +"verwandte Metriken." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" -msgstr "Zoombereich" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" +msgstr "Wir haben folgende Schlüssel: %s" diff --git a/superset/translations/en/LC_MESSAGES/messages.json b/superset/translations/en/LC_MESSAGES/messages.json index f1d035d43a865..293af520b9a57 100644 --- a/superset/translations/en/LC_MESSAGES/messages.json +++ b/superset/translations/en/LC_MESSAGES/messages.json @@ -8,4726 +8,4718 @@ "plural_forms": "nplurals=2; plural=(n != 1)", "lang": "en" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "" - ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "The datasource is too large to query.": [""], + "The database is under an unusual load.": [""], + "The database returned an unexpected error.": [""], + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "" ], - " a dashboard OR ": [""], - " a new one": [""], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "The column was deleted or renamed in the database.": [""], + "The table was deleted or renamed in the database.": [""], + "One or more parameters specified in the query are missing.": [""], + "The hostname provided can't be resolved.": [""], + "The port is closed.": [""], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " to add calculated columns": [""], - " to add metrics": [""], - " to edit or add columns and metrics.": [""], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": [""], - "%(dialect)s cannot be used as a data source for security reasons.": [""], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(other)s saved queries will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(rows)d rows returned": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ + "Superset encountered an error while running a command.": [""], + "Superset encountered an unexpected error.": [""], + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [""], + "Either the database is spelled incorrectly or does not exist.": [""], + "The schema was deleted or renamed in the database.": [""], + "User doesn't have the proper permissions.": [""], + "One or more parameters needed to configure a database are missing.": [ "" ], - "%(user)s's profile": [""], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - "%s Error": [""], - "%s PASSWORD": [""], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": [""], - "%s Selected (%s Physical, %s Virtual)": [""], - "%s Selected (Physical)": [""], - "%s Selected (Virtual)": [""], - "%s aggregates(s)": [""], - "%s column(s)": [""], - "%s operator(s)": [""], - "%s option(s)": [""], - "%s row": ["", "%s rows"], - "%s saved metric(s)": [""], - "%s updated": [""], - "%s%s": [""], - "%s-%s of %s": [""], - "(Removed)": [""], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "One or more parameters specified in the query are malformed.": [""], + "The object does not exist in the given database.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "The port number is invalid.": [""], + "Failed to start remote query on a worker.": [""], + "The database was deleted.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": [""], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [""], + "Unsupported return value for method %(name)s": [""], + "Unsafe template value for key %(key)s: %(value_type)s": [""], + "Unsupported template value for key %(key)s": [""], + "Only SELECT statements are allowed against this database.": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - ".": [""], - "0 Selected": [""], - "1 calendar day frequency": [""], - "1 day": [""], - "1 day ago": [""], - "1 hour": [""], - "1 hourly frequency": [""], - "1 minute": [""], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year": [""], - "1 year ago": [""], - "1 year end frequency": [""], - "1 year start frequency": [""], - "10 minute": [""], - "104 weeks": [""], - "104 weeks ago": [""], - "15 minute": [""], - "156 weeks": [""], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days": [""], - "28 days ago": [""], - "2D": [""], - "3 letter code of the country": [""], - "3 years": [""], - "3 years ago": [""], - "30 days": [""], - "30 days ago": [""], - "30 minute": [""], - "30 minutes": [""], - "30 second": [""], - "30 seconds": [""], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": [""], - "5 minutes": [""], - "5 second": [""], - "5 seconds": [""], - "52 weeks": [""], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "6 hour": [""], - "60 days": [""], - "7 calendar day frequency": [""], - "7 days": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": [""], - ":": [""], - "< (Smaller than)": [""], - "<= (Smaller or equal)": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "== (Is equal)": [""], - "> (Larger than)": [""], - ">= (Larger or equal)": [""], - "A Big Number": [""], - "A comma separated list of columns that should be parsed as dates": [""], - "A comma separated list of columns that should be parsed as dates.": [""], - "A comma-separated list of schemas that files are allowed to upload to.": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "A database with the same name already exists.": [""], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": [""], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": [""], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "From date cannot be larger than to date": [""], + "Cached value not found": [""], + "Columns missing in datasource: %(invalid_columns)s": [""], + "Time Table View": [""], + "Pick at least one metric": [""], + "When using 'Group By' you are limited to use a single metric": [""], + "Calendar Heatmap": [""], + "Bubble Chart": [""], + "Please use 3 different metric labels": [""], + "Pick a metric for x, y and size": [""], + "Bullet Chart": [""], + "Pick a metric to display": [""], + "Time Series - Line Chart": [""], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ + "Time Series - Bar Chart": [""], + "Time Series - Period Pivot": [""], + "Time Series - Percent Change": [""], + "Time Series - Stacked": [""], + "Histogram": [""], + "Must have at least one numeric column specified": [""], + "Distribution - Bar Chart": [""], + "Can't have overlap between Series and Breakdowns": [""], + "Pick at least one field for [Series]": [""], + "Sankey": [""], + "Pick exactly 2 columns as [Source / Target]": [""], + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ "" ], - "A map of the world, that can indicate values in different countries.": [ + "Directed Force Layout": [""], + "Country Map": [""], + "World Map": [""], + "Parallel Coordinates": [""], + "Heatmap": [""], + "Horizon Charts": [""], + "Mapbox": [""], + "[Longitude] and [Latitude] must be set": [""], + "Must have a [Group By] column to have 'count' as the [Label]": [""], + "Choice of [Label] must be present in [Group By]": [""], + "Choice of [Point Radius] must be present in [Group By]": [""], + "[Longitude] and [Latitude] columns must be present in [Group By]": [""], + "Deck.gl - Multiple Layers": [""], + "Bad spatial key": [""], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "" + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - Heatmap": [""], + "Deck.gl - Contour": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": [""], + "Time Series - Paired t-test": [""], + "Time Series - Nightingale Rose Chart": [""], + "Partition Diagram": [""], + "Please choose at least one groupby": [""], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [ + "", + "Deleted %(num)d annotation layers" ], - "A metric to use for color": [""], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "All Text": [""], + "Deleted %(num)d annotation": ["", "Deleted %(num)d annotations"], + "Deleted %(num)d chart": ["", "Deleted %(num)d charts"], + "Is certified": [""], + "Has created by": [""], + "Created by me": [""], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [""], + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ "" ], - "A readable URL for your dashboard": [""], - "A reference to the [Time] configuration, taking granularity into account": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "A report named \"%(name)s\" already exists": [""], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "orderby column must be populated": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": [""], + "Request is not JSON": [""], + "Empty query result": [""], + "Owners are invalid": [""], + "Some roles do not exist": [""], + "Datasource type is invalid": [""], + "Datasource does not exist": [""], + "Query does not exist": [""], + "Annotation layer parameters are invalid.": [""], + "Annotation layer could not be created.": [""], + "Annotation layer could not be updated.": [""], + "Annotation layer not found.": [""], + "Annotation layers could not be deleted.": [""], + "Annotation layer has associated annotations.": [""], + "Name must be unique": [""], + "End date must be after start date": [""], + "Short description must be unique for this layer": [""], + "Annotation not found.": [""], + "Annotation parameters are invalid.": [""], + "Annotation could not be created.": [""], + "Annotation could not be updated.": [""], + "Annotations could not be deleted.": [""], + "There are associated alerts or reports: %(report_names)s": [""], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "A timeout occurred while executing the query.": [""], - "A timeout occurred while generating a CSV.": [""], - "A timeout occurred while generating a dataframe.": [""], - "A timeout occurred while taking a screenshot.": [""], - "A valid color scheme is required": [""], - "APPLY": [""], - "APR": [""], - "AQE": [""], - "AUG": [""], - "AXIS TITLE MARGIN": [""], - "AXIS TITLE POSITION": [""], - "About": [""], - "Access": [""], - "Access requests": [""], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": [""], - "Action": [""], - "Action Log": [""], - "Actions": [""], - "Active": [""], - "Actual Values": [""], - "Actual time range": [""], - "Actual value": [""], - "Actual values": [""], - "Adaptive formatting": [""], - "Add": [""], - "Add Alert": [""], - "Add CSS Template": [""], - "Add CSS template": [""], - "Add Chart": [""], - "Add Column": [""], - "Add Dashboard": [""], - "Add Database": [""], - "Add Log": [""], - "Add Metric": [""], - "Add Report": [""], - "Add Rule": [""], - "Add Saved Query": [""], - "Add a Plugin": [""], - "Add a dataset": [""], - "Add a new tab": [""], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": [""], - "Add an item": [""], - "Add and edit filters": [""], - "Add annotation": [""], - "Add annotation layer": [""], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "Database does not exist": [""], + "Dashboards do not exist": [""], + "Datasource type is required when datasource_id is given": [""], + "Chart parameters are invalid.": [""], + "Chart could not be created.": [""], + "Chart could not be updated.": [""], + "Charts could not be deleted.": [""], + "There are associated alerts or reports": [""], + "You don't have access to this chart.": [""], + "Changing this chart is forbidden": [""], + "Import chart failed for an unknown reason": [""], + "Changing one or more of these dashboards is forbidden": [""], + "Chart not found": [""], + "Error: %(error)s": [""], + "CSS templates could not be deleted.": [""], + "CSS template not found.": [""], + "Must be unique": [""], + "Dashboard parameters are invalid.": [""], + "Dashboards could not be created.": [""], + "Dashboard could not be updated.": [""], + "Dashboard could not be deleted.": [""], + "Changing this Dashboard is forbidden": [""], + "Import dashboard failed for an unknown reason": [""], + "You don't have access to this dashboard.": [""], + "You don't have access to this embedded dashboard config.": [""], + "No data in file": [""], + "Database parameters are invalid.": [""], + "A database with the same name already exists.": [""], + "Field is required": [""], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ "" ], - "Add cross-filter": [""], - "Add custom scoping": [""], - "Add delivery method": [""], - "Add extra connection information.": [""], - "Add filter": [""], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Database not found.": [""], + "Database could not be created.": [""], + "Database could not be updated.": [""], + "Connection failed, please check your connection settings": [""], + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": [""], + "Stopped an unsafe database connection": [""], + "Could not load database driver": [""], + "Unexpected error occurred, please check your logs for details": [""], + "no SQL validator is configured": [""], + "No validator found (configured for the engine)": [""], + "Was unable to check your query": [""], + "An unexpected error occurred": [""], + "Import database failed for an unknown reason": [""], + "Could not load database driver: {}": [""], + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "Database is offline.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ "" ], - "Add filters and dividers": [""], - "Add item": [""], - "Add metric": [""], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": [""], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add sheet": [""], - "Add the name of the chart": [""], - "Add the name of the dashboard": [""], - "Add to dashboard": [""], - "Add/Edit Filters": [""], - "Added": [""], - "Added to 1 dashboard": ["", "Added to %s dashboards"], - "Additional Parameters": [""], - "Additional fields may be required": [""], - "Additional information": [""], - "Additional metadata": [""], - "Additional padding for legend.": [""], - "Additional parameters": [""], - "Additional settings.": [""], - "Additional text to add before or after the value, e.g. unit": [""], - "Additive": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": [""], - "Advanced Analytics": [""], - "Advanced Data type": [""], - "Advanced analytics": [""], - "Advanced analytics Query A": [""], - "Advanced analytics Query B": [""], - "Advanced data type": [""], - "Advanced-Analytics": [""], - "Aesthetic": [""], - "After": [""], - "Aggregate": [""], - "Aggregate Mean": [""], - "Aggregate Sum": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "no SQL validator is configured for %(engine)s": [""], + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "SSH Tunnel could not be deleted.": [""], + "SSH Tunnel not found.": [""], + "SSH Tunnel parameters are invalid.": [""], + "SSH Tunnel could not be updated.": [""], + "Creating SSH Tunnel failed for an unknown reason": [""], + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "The database was not found.": [""], + "Dataset %(name)s already exists": [""], + "Database not allowed to change": [""], + "One or more columns do not exist": [""], + "One or more columns are duplicated": [""], + "One or more columns already exist": [""], + "One or more metrics do not exist": [""], + "One or more metrics are duplicated": [""], + "One or more metrics already exist": [""], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ "" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Dataset does not exist": [""], + "Dataset parameters are invalid.": [""], + "Dataset could not be created.": [""], + "Dataset could not be updated.": [""], + "Datasets could not be deleted.": [""], + "Samples for dataset could not be retrieved.": [""], + "Changing this dataset is forbidden": [""], + "Import dataset failed for an unknown reason": [""], + "You don't have access to this dataset.": [""], + "Dataset could not be duplicated.": [""], + "Data URI is not allowed.": [""], + "The provided table was not found in the provided database": [""], + "Dataset column not found.": [""], + "Dataset column delete failed.": [""], + "Changing this dataset is forbidden.": [""], + "Dataset metric not found.": [""], + "Dataset metric delete failed.": [""], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": [""], + "Saved queries could not be deleted.": [""], + "Saved query not found.": [""], + "Import saved query failed for an unknown reason.": [""], + "Saved query parameters are invalid.": [""], + "Alert query returned more than one row. %(num_rows)s rows returned": [ "" ], - "Aggregation": [""], - "Aggregation function": [""], - "Alert": [""], - "Alert Triggered, In Grace Period": [""], - "Alert condition": [""], - "Alert condition schedule": [""], - "Alert ended grace period.": [""], - "Alert failed": [""], - "Alert fired during grace period.": [""], - "Alert found an error while executing a query.": [""], - "Alert name": [""], - "Alert on grace period": [""], - "Alert query returned a non-number value.": [""], - "Alert query returned more than one column.": [""], - "Alert query returned more than one column. %s columns returned": [""], - "Alert query returned more than one row.": [""], - "Alert query returned more than one row. %s rows returned": [""], - "Alert running": [""], - "Alert triggered, notification sent": [""], - "Alert validator config error.": [""], - "Alerts": [""], - "Alerts & Reports": [""], - "Alerts & reports": [""], - "Align +/-": [""], - "All": [""], - "All Entities": [""], - "All Text": [""], - "All charts": [""], - "All charts/global scoping": [""], - "All filters": [""], - "All filters (%(filterCount)d)": [""], - "All panels": [""], - "All panels with this column will be affected by this filter": [""], - "Allow CREATE TABLE AS": [""], - "Allow CREATE TABLE AS option in SQL Lab": [""], - "Allow CREATE VIEW AS": [""], - "Allow CREATE VIEW AS option in SQL Lab": [""], - "Allow CSV Upload": [""], - "Allow DML": [""], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": [""], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "" - ], - "Allow file uploads to database": [""], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Alert query returned more than one column. %(num_columns)s columns returned": [ "" ], - "Allow multiple selections": [""], - "Allow node selections": [""], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "An error occurred when running alert query": [""], + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": [""], + "Chart does not exist": [""], + "Database is required for alerts": [""], + "Type is required": [""], + "Choose a chart or dashboard not both": [""], + "Must choose either a chart or a dashboard": [""], + "Please save your chart first, then try creating a new email report.": [ "" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": [""], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Please save your dashboard first, then try creating a new email report.": [ "" ], - "Altered": [""], - "An Error Occurred": [""], + "Report Schedule parameters are invalid.": [""], + "Report Schedule could not be created.": [""], + "Report Schedule could not be updated.": [""], + "Report Schedule not found.": [""], + "Report Schedule delete failed.": [""], + "Report Schedule log prune failed.": [""], + "Report Schedule execution failed when generating a screenshot.": [""], + "Report Schedule execution failed when generating a csv.": [""], + "Report Schedule execution failed when generating a dataframe.": [""], + "Report Schedule execution got an unexpected error.": [""], + "Report Schedule is still working, refusing to re-compute.": [""], + "Report Schedule reached a working timeout.": [""], + "A report named \"%(name)s\" already exists": [""], "An alert named \"%(name)s\" already exists": [""], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [""], + "Alert validator config error.": [""], + "Alert query returned more than one column.": [""], + "Alert query returned a non-number value.": [""], + "Alert found an error while executing a query.": [""], + "A timeout occurred while executing the query.": [""], + "A timeout occurred while taking a screenshot.": [""], + "A timeout occurred while generating a csv.": [""], + "A timeout occurred while generating a dataframe.": [""], + "Alert fired during grace period.": [""], + "Alert ended grace period.": [""], + "Alert on grace period": [""], + "Report Schedule state not found": [""], + "Report schedule system error": [""], + "Report schedule client error": [""], + "Report schedule unexpected error": [""], + "Changing this report is forbidden": [""], + "An error occurred while pruning logs ": [""], + "RLS Rule not found.": [""], + "RLS rules could not be deleted.": [""], + "The database could not be found": [""], + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "An engine must be specified when passing individual parameters to a database.": [ + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ "" ], - "An error has occurred": [""], - "An error occurred": [""], - "An error occurred saving dataset": [""], - "An error occurred while accessing the value.": [""], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "The query associated with these results could not be found. You need to re-run the original query.": [ "" ], - "An error occurred while creating %ss: %s": [""], - "An error occurred while creating the data source": [""], - "An error occurred while creating the value.": [""], - "An error occurred while deleting the value.": [""], - "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ "" ], - "An error occurred while fetching %s info: %s": [""], - "An error occurred while fetching %ss: %s": [""], - "An error occurred while fetching available CSS templates": [""], - "An error occurred while fetching chart created by values: %s": [""], - "An error occurred while fetching chart owners values: %s": [""], - "An error occurred while fetching created by values: %s": [""], - "An error occurred while fetching dashboard created by values: %s": [""], - "An error occurred while fetching dashboard owner values: %s": [""], - "An error occurred while fetching dashboards": [""], - "An error occurred while fetching dashboards: %s": [""], - "An error occurred while fetching database related data: %s": [""], - "An error occurred while fetching database values: %s": [""], - "An error occurred while fetching dataset datasource values: %s": [""], - "An error occurred while fetching dataset owner values: %s": [""], - "An error occurred while fetching dataset related data": [""], - "An error occurred while fetching dataset related data: %s": [""], - "An error occurred while fetching datasets: %s": [""], - "An error occurred while fetching function names.": [""], - "An error occurred while fetching owners values: %s": [""], - "An error occurred while fetching schema values: %s": [""], - "An error occurred while fetching tab state": [""], - "An error occurred while fetching table metadata": [""], - "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "An error occurred while fetching tag created by values: %s": [""], - "An error occurred while fetching user values: %s": [""], - "An error occurred while hiding the left bar. Please contact your administrator.": [ + "Tag parameters are invalid.": [""], + "Tag could not be created.": [""], + "Tag could not be updated.": [""], + "Tag could not be deleted.": [""], + "Tagged Object could not be deleted.": [""], + "An error occurred while creating the value.": [""], + "An error occurred while accessing the value.": [""], + "An error occurred while deleting the value.": [""], + "An error occurred while updating the value.": [""], + "You don't have permission to modify the value.": [""], + "Resource was not found.": [""], + "Invalid result type: %(result_type)s": [""], + "Columns missing in dataset: %(invalid_columns)s": [""], + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "The chart does not exist": [""], + "The chart datasource does not exist": [""], + "The chart query context does not exist": [""], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "An error occurred while importing %s: %s": [""], - "An error occurred while loading dashboard information.": [""], - "An error occurred while loading the SQL": [""], - "An error occurred while opening Explore": [""], - "An error occurred while parsing the key.": [""], - "An error occurred while pruning logs ": [""], - "An error occurred while removing query. Please contact your administrator.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "An error occurred while removing tab. Please contact your administrator.": [ + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [""], + "[asc]": [""], + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [""], + "Virtual dataset query must be read-only": [""], + "Error while rendering virtual dataset query: %(msg)s": [""], + "Virtual dataset query cannot be empty": [""], + "Virtual dataset query cannot consist of multiple statements": [""], + "Error in jinja expression in RLS filters: %(msg)s": [""], + "Metric '%(metric)s' does not exist": [""], + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [""], + "Only single queries supported": [""], + "Columns": [""], + "Show Column": [""], + "Add Column": [""], + "Edit Column": [""], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ + "Whether this column is exposed in the `Filters` section of the explore view.": [ "" ], - "An error occurred while rendering the visualization: %s": [""], - "An error occurred while setting the active tab. Please contact your administrator.": [ + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ "" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ + "Column": [""], + "Verbose Name": [""], + "Description": [""], + "Groupable": [""], + "Filterable": [""], + "Table": [""], + "Expression": [""], + "Is temporal": [""], + "Datetime Format": [""], + "Type": [""], + "Business Data Type": [""], + "Invalid date/timestamp format": [""], + "Metrics": [""], + "Show Metric": [""], + "Add Metric": [""], + "Edit Metric": [""], + "Metric": [""], + "SQL Expression": [""], + "D3 Format": [""], + "Extra": [""], + "Warning Message": [""], + "Tables": [""], + "Show Table": [""], + "Import a table definition": [""], + "Edit Table": [""], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ "" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ + "Timezone offset (in hours) for this datasource": [""], + "Name of the table that exists in the source database": [""], + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ "" ], - "An error occurred while setting the tab name. Please contact your administrator.": [ + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ "" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ "" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "Redirects to this endpoint when clicking on the table from the table list": [ "" ], - "An error occurred while starring this chart": [""], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ "" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ "" ], - "An error occurred while updating the value.": [""], - "An error occurred while upserting the value.": [""], - "An unexpected error occurred": [""], - "An unknown error occurred. Please contact your Superset administrator": [ + "A set of parameters that become available in the query using Jinja templating syntax": [ "" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Animation": [""], - "Annotation": [""], - "Annotation Layers": [""], - "Annotation Slice Configuration": [""], - "Annotation could not be created.": [""], - "Annotation could not be updated.": [""], - "Annotation delete failed.": [""], - "Annotation layer": [""], - "Annotation layer could not be created.": [""], - "Annotation layer could not be deleted.": [""], - "Annotation layer could not be updated.": [""], - "Annotation layer delete failed.": [""], - "Annotation layer description columns": [""], - "Annotation layer has associated annotations.": [""], - "Annotation layer interval end": [""], - "Annotation layer name": [""], - "Annotation layer not found.": [""], - "Annotation layer opacity": [""], - "Annotation layer parameters are invalid.": [""], - "Annotation layer stroke": [""], - "Annotation layer time column": [""], - "Annotation layer title column": [""], - "Annotation layer type": [""], - "Annotation layer value": [""], - "Annotation layers": [""], - "Annotation layers are still loading.": [""], - "Annotation name": [""], - "Annotation not found.": [""], - "Annotation parameters are invalid.": [""], - "Annotation source": [""], - "Annotation source type": [""], - "Annotation template created": [""], - "Annotation template updated": [""], - "Annotations and Layers": [""], - "Annotations and layers": [""], - "Annotations could not be deleted.": [""], - "Any": [""], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Append": [""], - "Applied cross-filters (%d)": [""], - "Applied filters (%d)": [""], - "Applied filters: %s": [""], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Associated Charts": [""], + "Changed By": [""], + "Database": [""], + "Last Changed": [""], + "Enable Filter Select": [""], + "Schema": [""], + "Default Endpoint": [""], + "Offset": [""], + "Cache Timeout": [""], + "Table Name": [""], + "Fetch Values Predicate": [""], + "Owners": [""], + "Main Datetime Column": [""], + "SQL Lab View": [""], + "Template parameters": [""], + "Modified": [""], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ "" ], - "Apply": [""], - "Apply conditional color formatting to metric": [""], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply filters": [""], - "Apply metrics on": [""], - "Apply to all panels": [""], - "Apply to specific panels": [""], - "April": [""], - "Arc": [""], - "Are you sure you intend to overwrite the following values?": [""], - "Are you sure you want to cancel?": [""], - "Are you sure you want to delete": [""], - "Are you sure you want to delete %s?": [""], - "Are you sure you want to delete the selected %s?": [""], - "Are you sure you want to delete the selected annotations?": [""], - "Are you sure you want to delete the selected charts?": [""], - "Are you sure you want to delete the selected dashboards?": [""], - "Are you sure you want to delete the selected datasets?": [""], - "Are you sure you want to delete the selected layers?": [""], - "Are you sure you want to delete the selected queries?": [""], - "Are you sure you want to delete the selected rules?": [""], - "Are you sure you want to delete the selected tags?": [""], - "Are you sure you want to delete the selected templates?": [""], - "Are you sure you want to overwrite this dataset?": [""], - "Are you sure you want to proceed?": [""], - "Are you sure you want to save and apply changes?": [""], - "Area Chart": [""], - "Area Chart (legacy)": [""], - "Area chart": [""], - "Area chart opacity": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Deleted %(num)d css template": ["", "Deleted %(num)d css templates"], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": ["", "Deleted %(num)d dashboards"], + "Title or Slug": [""], + "Role": [""], + "Invalid state.": [""], + "Table name undefined": [""], + "Upload Enabled": [""], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ "" ], - "Arrow": [""], - "Assign a set of parameters as": [""], - "Associated Charts": [""], - "Async Execution": [""], - "Asynchronous query execution": [""], - "August": [""], - "Auto": [""], - "Auto Zoom": [""], - "Autocomplete": [""], - "Autocomplete filters": [""], - "Autocomplete query predicate": [""], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Average": [""], - "Average value": [""], - "Axis": [""], - "Axis Bounds": [""], - "Axis Format": [""], - "Axis Title": [""], - "Axis ascending": [""], - "Axis descending": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": [""], - "Backward values": [""], - "Bad formula.": [""], - "Bad spatial key": [""], - "Bar": [""], - "Bar Chart": [""], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Bar Values": [""], - "Bar orientation": [""], - "Base": [""], - "Base layer map style": [""], - "Based on a metric": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": [""], - "Basic information": [""], - "Batch editing %d filters:": [""], - "Battery level over time": [""], - "Be careful.": [""], - "Before": [""], - "Big Number": [""], - "Big Number Font Size": [""], - "Big Number with Trendline": [""], - "Bottom": [""], - "Bottom Margin": [""], - "Bottom left": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom right": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Field cannot be decoded by JSON. %(msg)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Deleted %(num)d dataset": ["", "Deleted %(num)d datasets"], + "Null or Empty": [""], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Box Plot": [""], - "Breakdowns": [""], - "Bubble Chart": [""], - "Bubble Color": [""], - "Bubble Size": [""], - "Bubble size": [""], - "Bucket break points": [""], - "Build": [""], - "Bulk select": [""], - "Bullet Chart": [""], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Second": [""], + "5 second": [""], + "30 second": [""], + "Minute": [""], + "5 minute": [""], + "10 minute": [""], + "15 minute": [""], + "30 minute": [""], + "Hour": [""], + "6 hour": [""], + "Day": [""], + "Week": [""], + "Month": [""], + "Quarter": [""], + "Year": [""], + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Username": [""], + "Password": [""], + "Hostname or IP address": [""], + "Database port": [""], + "Database name": [""], + "Additional parameters": [""], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": [""], - "CREATE DATASET": [""], - "CREATE TABLE AS": [""], - "CREATE VIEW AS": [""], - "CREATE VIEW statement": [""], - "CRON Schedule": [""], - "CRON expression": [""], - "CSS": [""], - "CSS Styles": [""], - "CSS Templates": [""], - "CSS applied to the chart": [""], - "CSS template": [""], - "CSS template could not be deleted.": [""], - "CSS template name": [""], - "CSS template not found.": [""], - "CSS templates": [""], - "CSV Upload": [""], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "CSV to Database configuration": [""], - "CSV upload": [""], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "CTAS Schema": [""], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": [""], - "Cache Timeout (seconds)": [""], - "Cache timeout": [""], - "Cached": [""], - "Cached %s": [""], - "Cached value not found": [""], - "Calculate contribution per series or row": [""], - "Calculated column [%s] requires an expression": [""], - "Calculated columns": [""], - "Calculation type": [""], - "Calendar Heatmap": [""], - "Can not move top level tab into nested tabs": [""], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [""], - "Cancel": [""], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Cannot load filter": [""], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categorical Color": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category Name": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category name": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell Size": [""], - "Cell bars": [""], - "Cell content": [""], - "Cell limit": [""], - "Center": [""], - "Centroid (Longitude and Latitude): ": [""], - "Certification": [""], - "Certification details": [""], - "Certified": [""], - "Certified By": [""], - "Certified by": [""], - "Certified by %s": [""], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": [""], - "Changed on": [""], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Unknown Doris server host \"%(hostname)s\".": [""], + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [""], + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "" ], - "Changing this Dashboard is forbidden": [""], - "Changing this chart is forbidden": [""], - "Changing this control takes effect instantly": [""], - "Changing this dataset is forbidden": [""], - "Changing this dataset is forbidden.": [""], - "Changing this datasource is forbidden": [""], - "Changing this report is forbidden": [""], - "Character to interpret as decimal point": [""], - "Character to interpret as decimal point.": [""], - "Chart": [""], - "Chart %(id)s not found": [""], - "Chart Cache Timeout": [""], - "Chart Data: %s": [""], - "Chart ID": [""], - "Chart Options": [""], - "Chart Orientation": [""], - "Chart Source": [""], - "Chart Title": [""], - "Chart [%s] has been overwritten": [""], - "Chart [%s] has been saved": [""], - "Chart [%s] was added to dashboard [%s]": [""], - "Chart [{}] has been overwritten": [""], - "Chart [{}] has been saved": [""], - "Chart [{}] was added to dashboard [{}]": [""], - "Chart cache timeout": [""], - "Chart changes": [""], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "" - ], - "Chart could not be created.": [""], - "Chart could not be deleted.": [""], - "Chart could not be updated.": [""], - "Chart does not exist": [""], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart height": [""], - "Chart imported": [""], - "Chart last modified": [""], - "Chart last modified by": [""], - "Chart name": [""], - "Chart options": [""], - "Chart owners": [""], - "Chart parameters are invalid.": [""], - "Chart properties updated": [""], - "Chart title": [""], - "Chart type": [""], - "Chart type requires a dataset": [""], - "Chart width": [""], - "Charts": [""], - "Charts could not be deleted.": [""], - "Check configuration": [""], - "Check for sorting ascending": [""], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "" - ], - "Check out this chart in dashboard:": [""], - "Check out this chart: ": [""], - "Check out this dashboard: ": [""], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "" - ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [""], - "Check to include time grain dropdown": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [""], - "Choice of [Point Radius] must be present in [Group By]": [""], - "Choose File": [""], - "Choose a chart or dashboard not both": [""], - "Choose a database...": [""], - "Choose a dataset": [""], - "Choose a metric for right axis": [""], - "Choose a number format": [""], - "Choose a source": [""], - "Choose a source and a target": [""], - "Choose a target": [""], - "Choose chart type": [""], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": [""], - "Choose the format for legend values": [""], - "Choose the position of the legend": [""], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "" - ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "" - ], - "Clause": [""], - "Clear": [""], - "Clear all": [""], - "Clear all data": [""], - "Clear form": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "" - ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "Click the lock to make changes.": [""], - "Click the lock to prevent further changes.": [""], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Unknown MySQL server host \"%(hostname)s\".": [""], + "The username \"%(username)s\" does not exist.": [""], + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": [""], - "Click to edit %s.": [""], - "Click to edit chart.": [""], - "Click to edit label": [""], - "Click to favorite/unfavorite": [""], - "Click to force-refresh": [""], - "Click to see difference": [""], - "Click to sort ascending": [""], - "Click to sort descending": [""], - "Close": [""], - "Close all other tabs": [""], - "Close tab": [""], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": [""], - "Collapse all": [""], - "Collapse data panel": [""], - "Collapse row": [""], - "Collapse tab content": [""], - "Collapse table preview": [""], - "Color": [""], - "Color +/-": [""], - "Color Metric": [""], - "Color Scheme": [""], - "Color Steps": [""], - "Color bounds": [""], - "Color by": [""], - "Color metric": [""], - "Color of the target location": [""], - "Color scheme": [""], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Could not connect to database: \"%(database)s\"": [""], + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Colors": [""], - "Column": [""], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Column Configuration": [""], - "Column Data Types": [""], - "Column Formatting": [""], - "Column Label(s)": [""], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Table or View \"%(table)s\" does not exist.": [""], + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column datatype": [""], - "Column header tooltip": [""], - "Column is required": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Users are not allowed to set a search path for security reasons.": [""], + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Column name": [""], - "Column name [%s] is duplicated": [""], - "Column referenced by aggregate is undefined: %(column)s": [""], - "Column select": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": [""], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "%(object)s does not exist in this database.": [""], + "Samples for datasource could not be retrieved.": [""], + "Changing this datasource is forbidden": [""], + "Home": [""], + "Database Connections": [""], + "Data": [""], + "Dashboards": [""], + "Charts": [""], + "Datasets": [""], + "Plugins": [""], + "Manage": [""], + "CSS Templates": [""], + "SQL Lab": [""], + "SQL": [""], + "Saved Queries": [""], + "Query History": [""], + "Tags": [""], + "Action Log": [""], + "Security": [""], + "Alerts & Reports": [""], + "Annotation Layers": [""], + "Row Level Security": [""], + "An error occurred while parsing the key.": [""], + "An error occurred while upserting the value.": [""], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ "" ], - "Columnar File": [""], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "" + "Empty query?": [""], + "Unknown column used in orderby: %(col)s": [""], + "Time column \"%(col)s\" does not exist in dataset": [""], + "error_message": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [""], + "Error in jinja expression in HAVING clause: %(msg)s": [""], + "Database does not support subqueries": [""], + "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], + "Deleted %(num)d report schedule": [ + "", + "Deleted %(num)d report schedules" ], - "Columnar to Database configuration": [""], - "Columns": [""], - "Columns To Be Parsed as Dates": [""], - "Columns To Read": [""], - "Columns missing in dataset: %(invalid_columns)s": [""], - "Columns missing in datasource: %(invalid_columns)s": [""], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to display": [""], - "Columns to group by": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Columns to show": [""], - "Combine metrics": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Value must be greater than 0": [""], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "EMAIL_REPORTS_CTA": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [""], + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "" + "The parameter %(parameters)s in your query is undefined.": [ + "", + "The following parameters in your query are undefined: %(parameters)s." ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Tag name is invalid (cannot contain ':')": [""], + "Tag could not be found.": [""], + "Is custom tag": [""], + "Scheduled task executor not found": [""], + "Record Count": [""], + "No records found": [""], + "Filter List": [""], + "Search": [""], + "Refresh": [""], + "Import dashboards": [""], + "Import Dashboard(s)": [""], + "File": [""], + "Choose File": [""], + "Upload": [""], + "Use the edit button to change this field": [""], + "Test Connection": [""], + "Unsupported clause type: %(clause)s": [""], + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [""], + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], - "Comparison": [""], - "Comparison Period Lag": [""], - "Comparison suffix": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [""], - "Condition": [""], - "Conditional Formatting": [""], - "Conditional formatting": [""], - "Confidence interval": [""], + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": [""], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": [""], + "Unsupported time grain: %(time_grain)s": [""], + "Periods must be a whole number": [""], "Confidence interval must be between 0 and 1 (exclusive)": [""], - "Configuration": [""], - "Configure Advanced Time Range ": [""], - "Configure Time Range: Last...": [""], - "Configure Time Range: Previous...": [""], - "Configure custom time range": [""], - "Configure filter scopes": [""], - "Configure the basics of your Annotation Layer.": [""], - "Configure this dashboard to embed it into an external web application.": [ + "DataFrame must include temporal column": [""], + "DataFrame include at least one series": [""], + "Label already exists": [""], + "Resample operation requires DatetimeIndex": [""], + "Resample method should in ": [""], + "Undefined window for rolling operation": [""], + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [""], + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [""], + "Operator undefined for aggregator: %(name)s": [""], + "Invalid numpy function: %(operator)s": [""], + "Unexpected time range: %(error)s": [""], + "json isn't valid": [""], + "Export to YAML": [""], + "Export to YAML?": [""], + "Delete": [""], + "Delete all Really?": [""], + "Is favorite": [""], + "Is tagged": [""], + "The data source seems to have been deleted": [""], + "The user seems to have been deleted": [""], + "You don't have the rights to download as csv": [""], + "Error: permalink state not found": [""], + "Error: %(msg)s": [""], + "You don't have the rights to alter this chart": [""], + "You don't have the rights to create a chart": [""], + "Explore - %(table)s": [""], + "Explore": [""], + "Chart [{}] has been saved": [""], + "Chart [{}] has been overwritten": [""], + "You don't have the rights to alter this dashboard": [""], + "Chart [{}] was added to dashboard [{}]": [""], + "You don't have the rights to create a dashboard": [""], + "Dashboard [{}] just got created and chart [{}] was added to it": [""], + "Malformed request. slice_id or table_name and db_name arguments are expected": [ "" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm overwrite": [""], - "Confirm save": [""], - "Connect": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect a database": [""], - "Connect database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": [""], - "Connection failed, please check your connection settings": [""], - "Connection looks good!": [""], - "Continue": [""], - "Continuous": [""], - "Contribution": [""], - "Contribution Mode": [""], - "Control": [""], - "Control labeled ": [""], - "Controls labeled ": [""], - "Coordinates": [""], - "Copied to clipboard!": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": [""], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": [""], - "Copy message": [""], - "Copy of %s": [""], - "Copy partition query to clipboard": [""], - "Copy permalink to clipboard": [""], - "Copy query URL": [""], - "Copy query link to your clipboard": [""], - "Copy the account name of that database you are trying to connect to.": [ + "Chart %(id)s not found": [""], + "Table %(table)s wasn't found in the database %(db)s": [""], + "permalink state not found": [""], + "Show CSS Template": [""], + "Add CSS Template": [""], + "Edit CSS Template": [""], + "Template Name": [""], + "A human-friendly name": [""], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to Clipboard": [""], - "Copy to clipboard": [""], - "Correlation": [""], - "Cost estimate": [""], - "Could not connect to database: \"%(database)s\"": [""], + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "" + ], + "Custom Plugins": [""], + "Custom Plugin": [""], + "Add a Plugin": [""], + "Edit Plugin": [""], + "The dataset associated with this chart no longer exists": [""], "Could not determine datasource type": [""], - "Could not fetch all saved charts": [""], "Could not find viz object": [""], - "Could not load database driver": [""], - "Could not load database driver: %(driver_name)s": [""], - "Could not load database driver: {}": [""], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count": [""], - "Count Unique Values": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country": [""], - "Country Color Scheme": [""], - "Country Column": [""], - "Country Field Type": [""], - "Country Map": [""], - "Create": [""], - "Create Chart": [""], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Show Chart": [""], + "Add Chart": [""], + "Edit Chart": [""], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Create a new chart": [""], - "Create chart": [""], - "Create chart with dataset": [""], - "Create dataset": [""], - "Create dataset and create chart": [""], - "Create new chart": [""], - "Create new filter set": [""], - "Create or select schema...": [""], - "Created": [""], - "Created On": [""], - "Created by": [""], - "Created by me": [""], - "Created content": [""], - "Created on": [""], - "Creating SSH Tunnel failed for an unknown reason": [""], - "Creating a data source and creating a new tab": [""], - "Creator": [""], - "Crimson": [""], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ "" ], - "Cross-filtering is not enabled for this dashboard.": [""], - "Cross-filtering is not enabled in this dashboard": [""], - "Cross-filtering scoping": [""], - "Cross-filters": [""], - "Cumulative": [""], - "Currently rendered: %s": [""], - "Custom": [""], - "Custom Plugin": [""], - "Custom Plugins": [""], - "Custom SQL": [""], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": [""], - "Customize Metrics": [""], - "Customize columns": [""], - "Cyclic dependency detected": [""], - "D3 Format": [""], - "D3 format": [""], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Creator": [""], + "Datasource": [""], + "Last Modified": [""], + "Parameters": [""], + "Chart": [""], + "Name": [""], + "Visualization Type": [""], + "Show Dashboard": [""], + "Add Dashboard": [""], + "Edit Dashboard": [""], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DATETIME": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": [""], - "DELETE": [""], - "DML": [""], - "Daily seasonality": [""], - "Dark": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": [""], - "Dashboard [%s] just got created and chart [%s] was added to it": [""], - "Dashboard [{}] just got created and chart [{}] was added to it": [""], - "Dashboard could not be created.": [""], - "Dashboard could not be deleted.": [""], - "Dashboard could not be updated.": [""], - "Dashboard does not exist": [""], - "Dashboard imported": [""], - "Dashboard parameters are invalid.": [""], - "Dashboard properties": [""], - "Dashboard properties updated": [""], - "Dashboard scheme": [""], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ "" ], - "Dashboard title": [""], - "Dashboard usage": [""], - "Dashboards": [""], - "Dashboards added to": [""], - "Dashboards could not be deleted.": [""], - "Dashboards do not exist": [""], - "Dashed": [""], - "Data": [""], - "Data Table": [""], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "To get a readable URL for your dashboard": [""], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Owners is a list of users who can alter the dashboard.": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Data has no time steps": [""], - "Data preview": [""], - "Data refreshed": [""], - "Data type": [""], - "DataFrame include at least one series": [""], - "DataFrame must include temporal column": [""], - "Database": [""], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for CSV uploads. Please contact your Superset Admin.": [ + "Dashboard": [""], + "Title": [""], + "Slug": [""], + "Roles": [""], + "Published": [""], + "Position JSON": [""], + "CSS": [""], + "JSON Metadata": [""], + "Export": [""], + "Export dashboards?": [""], + "CSV Upload": [""], + "Select a file to be uploaded to the database": [""], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Name of table to be created with CSV file": [""], + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "Column Data Types": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Database Connections": [""], - "Database Creation Error": [""], - "Database URL": [""], - "Database connected": [""], - "Database could not be created.": [""], - "Database could not be deleted.": [""], - "Database could not be updated.": [""], - "Database does not allow data manipulation.": [""], - "Database does not exist": [""], - "Database does not support subqueries": [""], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Select a schema if the database supports this": [""], + "Delimiter": [""], + "Enter a delimiter for this data": [""], + ",": [""], + ".": [""], + "Other": [""], + "If Table Already Exists": [""], + "What should happen if the table already exists": [""], + "Fail": [""], + "Replace": [""], + "Append": [""], + "Skip Initial Space": [""], + "Skip spaces after delimiter": [""], + "Skip Blank Lines": [""], + "Skip blank lines rather than interpreting them as Not A Number values": [ "" ], - "Database error": [""], - "Database is offline.": [""], - "Database is required for alerts": [""], - "Database name": [""], - "Database not allowed to change": [""], - "Database not found.": [""], - "Database not found: %(id)s": [""], - "Database parameters are invalid.": [""], - "Database passwords": [""], - "Database port": [""], - "Database settings updated": [""], - "Databases": [""], - "Dataframe Index": [""], - "Dataset": [""], - "Dataset %(name)s already exists": [""], - "Dataset Name": [""], - "Dataset column delete failed.": [""], - "Dataset column not found.": [""], - "Dataset could not be created.": [""], - "Dataset could not be deleted.": [""], - "Dataset could not be duplicated.": [""], - "Dataset could not be updated.": [""], - "Dataset does not exist": [""], - "Dataset imported": [""], - "Dataset is required": [""], - "Dataset metric delete failed.": [""], - "Dataset metric not found.": [""], - "Dataset name": [""], - "Dataset parameters are invalid.": [""], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [""], - "Datasets": [""], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Columns To Be Parsed as Dates": [""], + "A comma separated list of columns that should be parsed as dates": [""], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": [""], + "Character to interpret as decimal point": [""], + "Null Values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": [""], - "Datasource & Chart Type": [""], - "Datasource does not exist": [""], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [""], - "Date Time Format": [""], - "Date filter": [""], - "Date format": [""], - "Date format string": [""], - "Date/Time": [""], - "Datetime Format": [""], - "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Index Column": [""], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Datetime format": [""], - "Day": [""], - "Day (freq=D)": [""], - "Days %s": [""], - "Db engine did not return all queried columns": [""], - "Deactivate": [""], - "December": [""], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": [""], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Heatmap": [""], - "Deck.gl - Multiple Layers": [""], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": [""], - "Default Endpoint": [""], - "Default URL": [""], - "Default URL to redirect to when accessing from the dataset list page": [ + "Dataframe Index": [""], + "Write dataframe index as a column": [""], + "Column Label(s)": [""], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ "" ], - "Default Value": [""], - "Default datetime": [""], - "Default latitude": [""], - "Default longitude": [""], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Columns To Read": [""], + "Json list of the column names that should be read": [""], + "Overwrite Duplicate Columns": [""], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Default value is required": [""], - "Default value must be set when \"Filter has default value\" is checked": [ + "Header Row": [""], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "Rows to Read": [""], + "Number of rows of file to read": [""], + "Skip Rows": [""], + "Number of rows to skip at start of file": [""], + "Name of table to be created from excel data.": [""], + "Excel File": [""], + "Select a Excel file to be uploaded to a database.": [""], + "Sheet Name": [""], + "Strings used for sheet names (default is the first sheet).": [""], + "Specify a schema (if database flavor supports this).": [""], + "Table Exists": [""], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Number of rows to skip at start of file.": [""], + "Number of rows of file to read.": [""], + "Parse Dates": [""], + "A comma separated list of columns that should be parsed as dates.": [""], + "Character to interpret as decimal point.": [""], + "Write dataframe index as a column.": [""], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Null values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Name of table to be created from columnar data.": [""], + "Columnar File": [""], + "Select a Columnar file to be uploaded to a database.": [""], + "Use Columns": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Databases": [""], + "Show Database": [""], + "Add Database": [""], + "Edit Database": [""], + "Expose this DB in SQL Lab": [""], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Allow CREATE TABLE AS option in SQL Lab": [""], + "Allow CREATE VIEW AS option in SQL Lab": [""], + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ "" ], - "Delete": [""], - "Delete %s?": [""], - "Delete Annotation?": [""], - "Delete Database?": [""], - "Delete Dataset?": [""], - "Delete Layer?": [""], - "Delete Query?": [""], - "Delete Report?": [""], - "Delete Template?": [""], - "Delete all Really?": [""], - "Delete annotation": [""], - "Delete dashboard tab?": [""], - "Delete database": [""], - "Delete email report": [""], - "Delete query": [""], - "Delete template": [""], - "Delete this container and save to remove this message.": [""], - "Deleted": [""], - "Deleted %(num)d annotation": ["", "Deleted %(num)d annotations"], - "Deleted %(num)d annotation layer": [ - "", - "Deleted %(num)d annotation layers" + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "" ], - "Deleted %(num)d chart": ["", "Deleted %(num)d charts"], - "Deleted %(num)d css template": ["", "Deleted %(num)d css templates"], - "Deleted %(num)d dashboard": ["", "Deleted %(num)d dashboards"], - "Deleted %(num)d dataset": ["", "Deleted %(num)d datasets"], - "Deleted %(num)d report schedule": [ - "", - "Deleted %(num)d report schedules" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "" ], - "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], - "Deleted %s": [""], - "Deleted: %s": [""], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "If selected, please set the schemas allowed for csv upload in Extra.": [ "" ], - "Delimited long & lat single column": [""], - "Delimiter": [""], - "Delivery method": [""], - "Demographics": [""], - "Density": [""], - "Dependent on": [""], - "Deprecated": [""], - "Description": [""], - "Description (this can be seen in the list)": [""], - "Description Columns": [""], - "Description text that shows up below your Big Number": [""], - "Deselect all": [""], - "Details of the certification": [""], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Expose in SQL Lab": [""], + "Allow CREATE TABLE AS": [""], + "Allow CREATE VIEW AS": [""], + "Allow DML": [""], + "CTAS Schema": [""], + "SQLAlchemy URI": [""], + "Chart Cache Timeout": [""], + "Secure Extra": [""], + "Root certificate": [""], + "Async Execution": [""], + "Impersonate the logged on user": [""], + "Allow Csv Upload": [""], + "Backend": [""], + "Extra field cannot be decoded by JSON. %(msg)s": [""], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ "" ], - "Diamond": [""], - "Did you mean:": [""], - "Difference": [""], - "Dim Gray": [""], - "Dimension": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Dimensions": [""], - "Directed Force Layout": [""], - "Directional": [""], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "CSV to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Disable embedding?": [""], - "Disabled": [""], - "Discard": [""], - "Discrete": [""], - "Display Name": [""], - "Display column level total": [""], - "Display configuration": [""], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Display row level total": [""], - "Display settings": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Distribute across": [""], - "Distribution": [""], - "Distribution - Bar Chart": [""], - "Divider": [""], - "Do you want a donut or a pie?": [""], - "Documentation": [""], - "Domain": [""], - "Donut": [""], - "Dotted": [""], - "Download": [""], - "Download as image": [""], - "Download to CSV": [""], - "Draft": [""], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill by: %s": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "Excel to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Drill to detail: %s": [""], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Dual Line Chart": [""], - "Duplicate": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duplicate dataset": [""], - "Duplicate tab": [""], - "Duration": [""], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Columnar to Database configuration": [""], + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": [""], + "Show Log": [""], + "Add Log": [""], + "Edit Log": [""], + "User": [""], + "Action": [""], + "dttm": [""], + "JSON": [""], + "Untitled Query": [""], + "Time Range": [""], + "Time Column": [""], + "Time Grain": [""], + "Time Granularity": [""], + "Time": [""], + "A reference to the [Time] configuration, taking granularity into account": [ "" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Aggregate": [""], + "Raw records": [""], + "Category name": [""], + "Total value": [""], + "Minimum value": [""], + "Maximum value": [""], + "Average value": [""], + "Certified by %s": [""], + "description": [""], + "bolt": [""], + "Changing this control takes effect instantly": [""], + "Show info tooltip": [""], + "SQL expression": [""], + "Column datatype": [""], + "Column name": [""], + "Label": [""], + "Metric name": [""], + "unknown type icon": [""], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": [""], + "This section contains options that allow for advanced analytical post processing of query results": [ "" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Rolling window": [""], + "Rolling function": [""], + "None": [""], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": [""], - "Dynamic Aggregation Function": [""], - "Dynamically search all filter values": [""], - "ECharts": [""], - "EMAIL_REPORTS_CTA": [""], - "END (EXCLUSIVE)": [""], - "ERROR": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edge width": [""], - "Edit": [""], - "Edit Alert": [""], - "Edit CSS": [""], - "Edit CSS Template": [""], - "Edit CSS template properties": [""], - "Edit Chart": [""], - "Edit Chart Properties": [""], - "Edit Column": [""], - "Edit Dashboard": [""], - "Edit Database": [""], - "Edit Dataset ": [""], - "Edit Log": [""], - "Edit Metric": [""], - "Edit Plugin": [""], - "Edit Report": [""], - "Edit Rule": [""], - "Edit Saved Query": [""], - "Edit Table": [""], - "Edit annotation": [""], - "Edit annotation layer": [""], - "Edit annotation layer properties": [""], - "Edit chart": [""], - "Edit chart properties": [""], - "Edit database": [""], - "Edit dataset": [""], - "Edit email report": [""], - "Edit formatter": [""], - "Edit properties": [""], - "Edit query": [""], - "Edit template": [""], - "Edit template parameters": [""], - "Edit time range": [""], - "Edited": [""], - "Editing 1 filter:": [""], - "Editing filter set:": [""], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ + "Periods": [""], + "Defines the size of the rolling window function, relative to the time granularity selected": [ "" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Min periods": [""], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ "" ], - "Either the username or the password is wrong.": [""], - "Elevation": [""], - "Email reports active": [""], - "Embed": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emit Filter Events": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty collection": [""], - "Empty column": [""], - "Empty query result": [""], - "Empty query?": [""], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "Time comparison": [""], + "Time shift": [""], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "30 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Enable Filter Select": [""], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], + "Calculation type": [""], + "Actual values": [""], + "Difference": [""], + "Percentage change": [""], + "Ratio": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "" + ], + "Resample": [""], + "Rule": [""], + "1 minutely frequency": [""], + "1 hourly frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "1 year start frequency": [""], + "1 year end frequency": [""], + "Pandas resample rule": [""], + "Fill method": [""], + "Null imputation": [""], + "Zero imputation": [""], + "Linear interpolation": [""], + "Forward values": [""], + "Backward values": [""], + "Median values": [""], + "Mean values": [""], + "Sum values": [""], + "Pandas resample method": [""], + "Annotations and Layers": [""], + "Left": [""], + "Top": [""], + "Chart Title": [""], + "X Axis": [""], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": [""], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Y Axis Title Position": [""], + "Query": [""], + "Predictive Analytics": [""], "Enable forecast": [""], "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Forecast periods": [""], + "How many periods into the future do we want to predict": [""], + "Confidence interval": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "default": [""], + "Yes": [""], + "No": [""], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "End": [""], - "End (Longitude, Latitude): ": [""], - "End Longitude & Latitude": [""], - "End Time": [""], - "End angle": [""], - "End date": [""], - "End date excluded from time range": [""], - "End date must be after start date": [""], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine Parameters": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter Primary Credentials": [""], - "Enter a delimiter for this data": [""], - "Enter a name for this sheet": [""], - "Enter a new title for the tab": [""], - "Enter duration in seconds": [""], - "Enter fullscreen": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": [""], - "Entity ID": [""], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [""], - "Error in jinja expression in RLS filters: %(msg)s": [""], - "Error in jinja expression in WHERE clause: %(msg)s": [""], - "Error in jinja expression in fetch values predicate: %(msg)s": [""], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": [""], - "Error while fetching charts": [""], - "Error while fetching data: %s": [""], - "Error while rendering virtual dataset query: %(msg)s": [""], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Error: permalink state not found": [""], - "Estimate cost": [""], - "Estimate selected query cost": [""], - "Estimate the cost before running a query": [""], - "Event": [""], - "Event Flow": [""], - "Event Names": [""], - "Event definition": [""], - "Event flow": [""], - "Event time column": [""], - "Every": [""], - "Evolution": [""], - "Exact": [""], - "Example": [""], - "Examples": [""], - "Excel File": [""], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "" - ], - "Excel to Database configuration": [""], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed SQL": [""], - "Executed query": [""], - "Execution ID": [""], - "Execution log": [""], - "Existing dataset": [""], - "Exit fullscreen": [""], - "Expand": [""], - "Expand all": [""], - "Expand data panel": [""], - "Expand row": [""], - "Expand table preview": [""], - "Expand tool bar": [""], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Experimental": [""], - "Explore": [""], - "Explore - %(table)s": [""], - "Explore the result set in the data exploration view": [""], - "Export": [""], - "Export dashboards?": [""], - "Export query": [""], - "Export to .CSV": [""], - "Export to .JSON": [""], - "Export to Excel": [""], - "Export to YAML": [""], - "Export to YAML?": [""], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": [""], - "Expose this DB in SQL Lab": [""], - "Expression": [""], - "Extra": [""], - "Extra Controls": [""], + "Time related form attributes": [""], + "Datasource & Chart Type": [""], + "Chart ID": [""], + "The id of the active chart": [""], + "Cache Timeout (seconds)": [""], + "The number of seconds before expiring the cache": [""], + "URL Parameters": [""], + "Extra url parameters for use in Jinja templated queries": [""], "Extra Parameters": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ "" ], - "Extra field cannot be decoded by JSON. %(msg)s": [""], - "Extra parameters for use in jinja templated queries": [""], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Color Scheme": [""], + "Contribution Mode": [""], + "Row": [""], + "Series": [""], + "Calculate contribution per series or row": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Y-Axis Sort Ascending": [""], + "X-Axis Sort Ascending": [""], + "Whether to sort ascending or descending on the base Axis.": [""], + "Force categorical": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "Extruded": [""], - "FEB": [""], - "FRI": [""], - "Factor": [""], - "Factor to multiply the metric by": [""], - "Fail": [""], - "Failed": [""], - "Failed at retrieving results": [""], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to retrieve advanced type": [""], - "Failed to save cross-filter scoping": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [""], - "Favorite": [""], - "Favorites": [""], - "February": [""], - "Fetch Values Predicate": [""], - "Fetch data preview": [""], - "Fetched %s": [""], - "Fetching": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [""], - "Field is required": [""], - "File": [""], - "Fill Color": [""], - "Fill all required fields to enable \"Default Value\"": [""], - "Fill method": [""], - "Filled": [""], - "Filter": [""], - "Filter Configuration": [""], - "Filter List": [""], - "Filter Settings": [""], - "Filter Type": [""], - "Filter box (deprecated)": [""], - "Filter charts": [""], - "Filter configuration": [""], - "Filter configuration for the filter box": [""], - "Filter has default value": [""], - "Filter menu": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter name": [""], - "Filter only displays values relevant to selections made in other filters.": [ + "Add dataset columns here to group the pivot table columns.": [""], + "Dimension": [""], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ "" ], - "Filter results": [""], - "Filter set already exists": [""], - "Filter set with this name already exists": [""], - "Filter sets (%(filterSetCount)d)": [""], - "Filter type": [""], - "Filter value (case sensitive)": [""], - "Filter value is required": [""], - "Filter value list cannot be empty": [""], - "Filter your charts": [""], - "Filterable": [""], + "Entity": [""], + "This defines the element to be plotted on the chart": [""], "Filters": [""], - "Filters (%d)": [""], - "Filters by columns": [""], - "Filters by metrics": [""], - "Filters configuration": [""], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Fix to selected Time Range": [""], - "Fixed": [""], + "Right Axis Metric": [""], + "Select a metric to display on the right axis": [""], + "Sort by": [""], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ + "" + ], + "Bubble Size": [""], + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "" + ], + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" + ], + "Color Metric": [""], + "A metric to use for color": [""], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "" + ], + "Drop a temporal column here or click": [""], + "Y-axis": [""], + "Dimension to use on y-axis.": [""], + "X-axis": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [""], "Fixed Color": [""], - "Fixed color": [""], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Use this to define a static color for all circles": [""], + "Linear Color Scheme": [""], + "all": [""], + "5 seconds": [""], + "30 seconds": [""], + "1 minute": [""], + "5 minutes": [""], + "30 minutes": [""], + "1 hour": [""], + "1 day": [""], + "7 days": [""], + "week": [""], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": [""], + "quarter": [""], + "year": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Force": [""], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Row limit": [""], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "Force date format": [""], - "Force refresh": [""], - "Force refresh schema list": [""], - "Force refresh table list": [""], - "Forecast periods": [""], - "Foreign key": [""], - "Forest Green": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formattable": [""], - "Formatted CSV attached in email": [""], - "Formatted date": [""], - "Formatted value": [""], - "Formatting": [""], - "Formula": [""], - "Forward values": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Frequency": [""], - "Friction": [""], - "Friction between nodes": [""], - "Friday": [""], - "From date cannot be larger than to date": [""], - "Full name": [""], - "Funnel Chart": [""], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "GROUP BY": [""], - "Gauge Chart": [""], - "General": [""], - "Generating link, please wait..": [""], - "Generic Chart": [""], - "Geo": [""], - "GeoJson Column": [""], - "GeoJson Settings": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": [""], - "Graph Chart": [""], - "Graph layout": [""], - "Gravity": [""], - "Greater or equal (>=)": [""], - "Greater than (>)": [""], - "Grid": [""], - "Grid Size": [""], - "Group By": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group Key": [""], - "Group by": [""], - "Groupable": [""], - "Handlebars": [""], - "Handlebars Template": [""], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Sort Descending": [""], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "Has created by": [""], - "Header": [""], - "Header Row": [""], - "Heatmap": [""], - "Heatmap Options": [""], - "Height": [""], - "Height of the sparkline": [""], - "Hide Line": [""], - "Hide chart description": [""], - "Hide layer": [""], - "Hide password.": [""], - "Hide tool bar": [""], - "Hides the Line for the time series": [""], - "Hierarchy": [""], - "Histogram": [""], - "Home": [""], - "Horizon Chart": [""], - "Horizon Charts": [""], - "Horizontal": [""], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": [""], - "Hour": [""], - "Hours %s": [""], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Series limit": [""], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id": [""], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Y Axis Format": [""], + "Currency format": [""], + "Time format": [""], + "The color scheme for rendering chart": [""], + "Truncate Metric": [""], + "Whether to truncate metrics": [""], + "Show empty columns": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": [""], + "Original value": [""], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Oops! An error occurred!": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "No Results": [""], + "ERROR": [""], + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": [""], + "day": [""], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "min": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "If Table Already Exists": [""], - "If a metric is specified, sorting will be done based on the metric value": [ + "Chart Options": [""], + "Cell Size": [""], + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "Color Steps": [""], + "The number color \"steps\"": [""], + "Time Format": [""], + "Legend": [""], + "Whether to display the legend (toggles)": [""], + "Show Values": [""], + "Whether to display the numerical values within the cells": [""], + "Show Metric Names": [""], + "Whether to display the metric name as a title": [""], + "Number Format": [""], + "Correlation": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Business": [""], + "Comparison": [""], + "Intensity": [""], + "Pattern": [""], + "Report": [""], + "Trend": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Sort by metric": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "If selected, please set the schemas allowed for CSV upload in Extra.": [ + "Number format": [""], + "Choose a number format": [""], + "Source": [""], + "Choose a source": [""], + "Target": [""], + "Choose a target": [""], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Relational": [""], + "Country": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" ], - "Ignore cache when generating screenshot": [""], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Metric to display bottom title": [""], + "Map": [""], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "Impersonate the logged on user": [""], - "Import": [""], - "Import %s": [""], - "Import Dashboard(s)": [""], - "Import Dashboards": [""], - "Import a table definition": [""], - "Import chart failed for an unknown reason": [""], - "Import charts": [""], - "Import dashboard failed for an unknown reason": [""], - "Import dashboards": [""], - "Import database failed for an unknown reason": [""], - "Import database from file": [""], - "Import dataset failed for an unknown reason": [""], - "Import datasets": [""], - "Import queries": [""], - "Import saved query failed for an unknown reason.": [""], + "2D": [""], + "Geo": [""], + "Range": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Event Names": [""], + "Columns to display": [""], + "Order by entity id": [""], "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "In": [""], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Include time": [""], - "Index": [""], - "Index Column": [""], - "Info": [""], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": [""], - "Intensity": [""], - "Intensity Radius": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "Interpret Datetime Format Automatically": [""], - "Interpret the datetime format automatically": [""], - "Interval": [""], - "Interval End column": [""], - "Interval bounds": [""], - "Interval colors": [""], - "Interval start column": [""], - "Intervals": [""], - "Intesity": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Additional metadata": [""], + "Metadata": [""], + "Select any columns for metadata inspection": [""], + "Entity ID": [""], + "e.g., a \"user id\" column": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "Invalid JSON": [""], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": [""], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Event Flow": [""], + "Progressive": [""], + "Axis ascending": [""], + "Axis descending": [""], + "Metric ascending": [""], + "Metric descending": [""], + "Heatmap Options": [""], + "XScale Interval": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "YScale Interval": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "Rendering": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Normalize Across": [""], + "heatmap": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "Invalid cron expression": [""], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": [""], - "Invalid filter configuration, please select a column": [""], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": [""], - "Invalid lat/long configuration.": [""], - "Invalid longitude/latitude": [""], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [""], - "Invalid options for %(rolling_type)s: %(options)s": [""], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid state.": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Invert current page": [""], - "Is certified": [""], - "Is dimension": [""], - "Is false": [""], - "Is favorite": [""], - "Is filterable": [""], - "Is not null": [""], - "Is null": [""], - "Is tagged": [""], - "Is temporal": [""], - "Is true": [""], - "Issue 1000 - The dataset is too large to query.": [""], - "Issue 1001 - The database is under an unusual load.": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": [""], - "JSON": [""], - "JSON Metadata": [""], - "JSON metadata": [""], - "JSON metadata is invalid!": [""], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], + "Left Margin": [""], + "auto": [""], + "Left margin, in pixels, allowing for more room for axis labels": [""], + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "JUL": [""], - "JUN": [""], - "January": [""], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Jinja templating": [""], - "Json list of the column names that should be read": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Whether to include the percentage in the tooltip": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Value Format": [""], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "Density": [""], + "Predictive": [""], + "Single Metric": [""], + "to": [""], + "count": [""], + "cumulative": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "No of Bins": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Cumulative": [""], + "Whether to make the histogram cumulative": [""], + "Distribution": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "July": [""], - "June": [""], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": [""], - "Key": [""], - "Keys for table": [""], - "Kilometers": [""], - "LIMIT": [""], - "Label": [""], - "Label Line": [""], - "Label Type": [""], - "Label already exists": [""], - "Label for your query": [""], - "Label position": [""], - "Label threshold": [""], - "Labelling": [""], - "Labels": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Large": [""], - "Last": [""], - "Last Changed": [""], - "Last Modified": [""], - "Last Updated %s": [""], - "Last Updated %s by %s": [""], - "Last available value seen on %s": [""], - "Last modified": [""], - "Last modified by %s": [""], - "Last run": [""], + "Population age data": [""], + "Contribution": [""], + "Compute the contribution to the total": [""], + "Series Height": [""], + "Pixel height of each series": [""], + "Value Domain": [""], + "series": [""], + "overall": [""], + "change": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "" + ], + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "" + ], + "Horizon Chart": [""], + "Dark Cyan": [""], + "Purple": [""], + "Gold": [""], + "Dim Gray": [""], + "Crimson": [""], + "Forest Green": [""], + "Longitude": [""], + "Column containing longitude data": [""], "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": [""], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Least recently modified": [""], - "Left": [""], - "Left Axis Format": [""], - "Left Axis chart(s)": [""], - "Left Margin": [""], - "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Left value": [""], - "Legacy": [""], - "Legend": [""], - "Legend Format": [""], - "Legend Orientation": [""], - "Legend Position": [""], - "Legend type": [""], - "Less or equal (<=)": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light": [""], - "Light mode": [""], - "Like": [""], - "Like (case insensitive)": [""], - "Limit reached": [""], - "Limit selector values": [""], - "Limit type": [""], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Points": [""], + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Auto": [""], + "Point Radius Unit": [""], + "Pixels": [""], + "Miles": [""], + "Kilometers": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "label": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "Line": [""], - "Line Chart": [""], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "max": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": [""], - "Linear Color Scheme": [""], - "Linear color scheme": [""], - "Linear interpolation": [""], - "Lines column": [""], - "Lines encoding": [""], - "Link Copied!": [""], - "List Saved Query": [""], - "List Unique Values": [""], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "List updated": [""], - "Live CSS editor": [""], + "Visual Tweaks": [""], "Live render": [""], - "Load a CSS template": [""], - "Loaded data cached": [""], - "Loaded from cache": [""], - "Loading": [""], - "Loading...": [""], - "Locate the chart": [""], - "Log Scale": [""], - "Log retention": [""], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": [""], - "Login with": [""], - "Logout": [""], - "Logs": [""], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": [""], - "Longitude and Latitude": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Map Style": [""], + "Streets": [""], + "Dark": [""], + "Light": [""], + "Satellite Streets": [""], + "Satellite": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": [""], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "RGB Color": [""], + "The color for points and clusters in RGB": [""], + "Viewport": [""], + "Default longitude": [""], "Longitude of default viewport": [""], - "MAR": [""], - "MAY": [""], - "MON": [""], - "Main Datetime Column": [""], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Default latitude": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Light mode": [""], + "Dark mode": [""], + "MapBox": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "Manage": [""], - "Manage email report": [""], - "Manage your databases": [""], - "Mandatory": [""], - "Manually set min/max values for the y-axis.": [""], - "Map": [""], - "Map Style": [""], - "MapBox": [""], - "Mapbox": [""], - "March": [""], - "Margin": [""], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markers": [""], - "Markup type": [""], - "Max": [""], - "Max Bubble Size": [""], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Options": [""], + "Data Table": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Ranking": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "" ], - "Maximum value": [""], - "Maximum value on the gauge axis": [""], - "May": [""], + "Coordinates": [""], + "Directional": [""], + "Time Series Options": [""], + "Not Time Series": [""], + "Ignore time": [""], + "Time Series": [""], + "Standard time series": [""], + "Aggregate Mean": [""], "Mean of values over specified period": [""], - "Mean values": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Aggregate Sum": [""], + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Percent Change": [""], + "Metric percent change in value from `since` to `until`": [""], + "Factor": [""], + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "Date Time Format": [""], + "Partition Limit": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "Median values": [""], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": [""], - "Metadata": [""], - "Metadata Parameters": [""], - "Metadata has been synced": [""], + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ + "" + ], + "Rolling Window": [""], + "Rolling Function": [""], + "cumsum": [""], + "Min Periods": [""], + "Time Comparison": [""], + "Time Shift": [""], + "1 week": [""], + "28 days": [""], + "30 days": [""], + "52 weeks": [""], + "1 year": [""], + "104 weeks": [""], + "2 years": [""], + "156 weeks": [""], + "3 years": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "" + ], + "Actual Values": [""], + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], "Method": [""], - "Metric": [""], - "Metric '%(metric)s' does not exist": [""], - "Metric ascending": [""], - "Metric assigned to the [X] axis": [""], - "Metric assigned to the [Y] axis": [""], - "Metric change in value from `since` to `until`": [""], - "Metric descending": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name": [""], - "Metric name [%s] is duplicated": [""], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to display bottom title": [""], - "Metric to sort the results by": [""], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Partition Chart": [""], + "Categorical": [""], + "Use Area Proportions": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Nightingale Rose Chart": [""], + "Advanced-Analytics": [""], + "Multi-Layers": [""], + "Source / Target": [""], + "Choose a source and a target": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Metrics": [""], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ "" ], - "Middle": [""], - "Midnight": [""], - "Miles": [""], - "Min": [""], - "Min Periods": [""], - "Min Width": [""], - "Min periods": [""], - "Min/max (no outliers)": [""], - "Mine": [""], - "Minimum": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "Full name": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ + "" + ], + "Show Bubbles": [""], + "Whether to display bubbles on top of countries": [""], + "Max Bubble Size": [""], + "Color by": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "" + ], + "Country Column": [""], + "3 letter code of the country": [""], + "Metric that defines the size of the bubble": [""], + "Bubble Color": [""], + "Country Color Scheme": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Minute": [""], - "Minutes %s": [""], - "Missing URL parameters": [""], - "Missing dataset": [""], - "Mixed Chart": [""], - "Mixed Time-Series": [""], - "Modified": [""], - "Modified %s": [""], - "Modified by": [""], - "Modified columns: %s": [""], - "Monday": [""], - "Month": [""], - "Months %s": [""], - "More": [""], - "More filters": [""], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], "Multi-Dimensions": [""], - "Multi-Layers": [""], - "Multi-Levels": [""], "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Popular": [""], + "deck.gl charts": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Select charts": [""], + "Error while fetching charts": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start (Longitude, Latitude): ": [""], + "End (Longitude, Latitude): ": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Arc": [""], + "Target Color": [""], + "Color of the target location": [""], + "Categorical Color": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Stroke Width": [""], + "Advanced": [""], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "Multiple filtering": [""], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Centroid (Longitude and Latitude): ": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "Aggregation": [""], + "The function to use when aggregating points into groups": [""], + "Contours": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "Weight": [""], + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "Multiplier": [""], - "Must be unique": [""], - "Must choose either a chart or a dashboard": [""], - "Must have a [Group By] column to have 'count' as the [Label]": [""], - "Must have at least one numeric column specified": [""], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "My column": [""], - "My metric": [""], - "N/A": [""], - "NOT GROUPED BY": [""], - "NOV": [""], - "NOW": [""], - "NUMERIC": [""], - "Name": [""], - "Name is required": [""], - "Name must be unique": [""], - "Name of table to be created from columnar data.": [""], - "Name of table to be created from excel data.": [""], - "Name of table to be created with CSV file": [""], - "Name of the column containing the id of the parent node": [""], - "Name of the id column": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [""], - "Name of the target nodes": [""], - "Name your database": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error": [""], - "Network error.": [""], - "New chart": [""], - "New columns added: %s": [""], - "New dataset": [""], - "New dataset name": [""], - "New filter set": [""], - "New header": [""], - "New tab": [""], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": [""], - "Nightingale Rose Chart": [""], - "No": [""], - "No %s yet": [""], - "No Access!": [""], - "No Data": [""], - "No Results": [""], - "No Rules yet": [""], - "No annotation layers yet": [""], - "No annotation yet": [""], - "No applied filters": [""], - "No available filters.": [""], - "No charts": [""], - "No charts yet": [""], - "No columns": [""], - "No columns found": [""], - "No compatible columns found": [""], - "No compatible datasets found": [""], - "No compatible schema found": [""], - "No dashboards": [""], - "No dashboards yet": [""], - "No data": [""], - "No data after filtering or data is NULL for the latest time record": [ + "deck.gl Contour": [""], + "Spatial": [""], + "Experimental": [""], + "GeoJson Settings": [""], + "Line width unit": [""], + "meters": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "No data in file": [""], - "No database tables found": [""], - "No databases match your search": [""], - "No description available.": [""], - "No favorite charts yet, go click on stars!": [""], - "No favorite dashboards yet, go click on stars!": [""], - "No filter": [""], - "No filter is selected.": [""], - "No filters": [""], - "No filters are currently added to this dashboard.": [""], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No matching records found": [""], - "No of Bins": [""], - "No recents yet": [""], - "No records found": [""], - "No results": [""], - "No results found": [""], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "deck.gl Geojson": [""], + "Longitude and Latitude": [""], + "Height": [""], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No saved expressions found": [""], - "No saved metrics found": [""], - "No saved queries yet": [""], - "No stored results found, you need to re-run your query": [""], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "deck.gl Grid": [""], + "Intesity": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ "" ], - "No table columns": [""], - "No temporal columns found": [""], - "No time columns": [""], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "Node select mode": [""], - "Node size": [""], - "None": [""], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not Time Series": [""], - "Not added to any dashboard": [""], - "Not available": [""], - "Not equal to (≠)": [""], - "Not in": [""], - "Not null": [""], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": [""], - "Notification method": [""], - "November": [""], - "Now": [""], - "Null Values": [""], - "Null imputation": [""], - "Null or Empty": [""], - "Null values": [""], - "Number Format": [""], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "deck.gl Heatmap": [""], + "Dynamic Aggregation Function": [""], + "variance": [""], + "deviation": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "Number format": [""], - "Number format string": [""], + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "name": [""], + "Polygon Column": [""], + "Polygon Encoding": [""], + "Elevation": [""], + "Polygon Settings": [""], + "Opacity, expects values between 0 and 100": [""], "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read": [""], - "Number of rows of file to read.": [""], - "Number of rows to skip at start of file": [""], - "Number of rows to skip at start of file.": [""], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": [""], - "OCT": [""], - "OK": [""], - "OVERWRITE": [""], - "October": [""], - "Offline": [""], - "Offset": [""], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Emit Filter Events": [""], + "Whether to apply filter when items are clicked": [""], + "Multiple filtering": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Size": [""], + "Point Unit": [""], + "Square meters": [""], + "Square kilometers": [""], + "Square miles": [""], + "Radius in meters": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "One or many columns to pivot as columns": [""], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "" ], - "One or many controls to pivot as columns": [""], - "One or many metrics to display": [""], - "One or more columns already exist": [""], - "One or more columns are duplicated": [""], - "One or more columns do not exist": [""], - "One or more metrics already exist": [""], - "One or more metrics are duplicated": [""], - "One or more metrics do not exist": [""], - "One or more parameters needed to configure a database are missing.": [ + "Point Color": [""], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "One or more parameters specified in the query are malformed.": [""], - "One or more parameters specified in the query are missing.": [""], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "deck.gl Scatterplot": [""], + "Grid": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], - "One ore more annotation layers failed loading.": [""], - "Only SELECT statements are allowed against this database.": [""], - "Only Total": [""], - "Only `SELECT` statements are allowed": [""], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [""], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ "" ], - "Only single queries supported": [""], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ "" ], - "Oops! An error occurred!": [""], - "Opacity": [""], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": [""], - "Open in SQL Lab": [""], - "Open query in SQL Lab": [""], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Select a dimension": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "Operator": [""], - "Operator undefined for aggregator: %(name)s": [""], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "Optional d3 date format string": [""], - "Optional d3 number format string": [""], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Options": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation": [""], - "Orientation of bar chart": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original": [""], - "Original table column order": [""], - "Original value": [""], - "Orthogonal": [""], - "Other": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Outer edge of Pie chart": [""], - "Overlap": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ "" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "" - ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Legend Format": [""], + "Choose the format for legend values": [""], + "Legend Position": [""], + "Choose the position of the legend": [""], + "Top left": [""], + "Top right": [""], + "Bottom left": [""], + "Bottom right": [""], + "Lines column": [""], + "The database columns that contains lines information": [""], + "Line width": [""], + "The width of the lines": [""], + "Fill Color": [""], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ "" ], - "Override time grain": [""], - "Override time range": [""], - "Overwrite": [""], - "Overwrite & Explore": [""], - "Overwrite Dashboard [%s]": [""], - "Overwrite Duplicate Columns": [""], - "Overwrite existing": [""], - "Overwrite text in the editor with a query on this table": [""], - "Owned Created or Favored": [""], - "Owner": [""], - "Owners": [""], - "Owners are invalid": [""], - "Owners is a list of users who can alter the dashboard.": [""], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Stroke Color": [""], + "Filled": [""], + "Whether to fill the objects": [""], + "Stroked": [""], + "Whether to display the stroke": [""], + "Extruded": [""], + "Whether to make the grid 3D": [""], + "Grid Size": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Multiplier": [""], + "Factor to multiply the metric by": [""], + "Lines encoding": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "GeoJson Column": [""], + "Select the geojson column": [""], + "Right Axis Format": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "linear": [""], + "basis": [""], + "cardinal": [""], + "monotone": [""], + "step-before": [""], + "step-after": [""], + "Line interpolation as defined by d3.js": [""], + "Show Range Filter": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": [""], - "Pandas resample rule": [""], - "Parallel Coordinates": [""], - "Parameter error": [""], - "Parameters": [""], - "Parameters ": [""], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": [""], - "Part of a Whole": [""], - "Partition Chart": [""], - "Partition Diagram": [""], - "Partition Limit": [""], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "X Tick Layout": [""], + "flat": [""], + "staggered": [""], + "The way the ticks are laid out on the X-axis": [""], + "X Axis Format": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Password": [""], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": [""], - "Percent Change": [""], - "Percentage": [""], - "Percentage change": [""], - "Percentage metrics": [""], - "Percentage threshold": [""], - "Percentages": [""], - "Performance": [""], - "Period average": [""], - "Periods": [""], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [""], - "Physical": [""], - "Physical (table or view)": [""], - "Physical dataset": [""], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [""], - "Pick a metric for x, y and size": [""], - "Pick a metric to display": [""], - "Pick a metric!": [""], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [""], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [""], - "Pick at least one metric": [""], - "Pick exactly 2 columns as [Source / Target]": [""], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Bar Values": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ "" ], - "Pick your favorite markup language": [""], - "Pie Chart": [""], - "Pie shape": [""], - "Pin": [""], - "Pivot Table": [""], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pivoted": [""], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "stream": [""], + "expand": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Area Chart (legacy)": [""], + "Continuous": [""], + "Line": [""], + "nvd3": [""], + "Deprecated": [""], + "Series Limit Sort By": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Series Limit Sort Descending": [""], + "Whether to sort descending or ascending if a series limit is present": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ "" ], - "Please choose at least one groupby": [""], - "Please choose different metrics on left and right axis": [""], - "Please confirm": [""], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [""], - "Please filter set name": [""], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [""], - "Please save your chart first, then try creating a new email report.": [ + "Time-series Bar Chart (legacy)": [""], + "Bar": [""], + "Vertical": [""], + "Box Plot": [""], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Bubble Chart (legacy)": [""], + "Ranges": [""], + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "Markers": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [""], - "Plot the distance (like flight paths) between origin and destination.": [ + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Time-series Percent Change": [""], + "Sort Bars": [""], + "Sort bars by x labels.": [""], + "Breakdowns": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ "" ], - "Plugins": [""], - "Point Color": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Size": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polygon Column": [""], - "Polygon Encoding": [""], - "Polygon Settings": [""], - "Polyline": [""], - "Pop Tab Link": [""], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Bar Chart (legacy)": [""], + "Additive": [""], + "Discrete": [""], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Label Type": [""], + "Category Name": [""], + "Value": [""], + "Percentage": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Donut": [""], + "Do you want a donut or a pie?": [""], + "Show Labels": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": [""], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter": [""], - "Pre-filter available values": [""], - "Pre-filter is required": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "" - ], - "Predictive": [""], - "Predictive Analytics": [""], - "Preview": [""], - "Preview: `%s`": [""], - "Previous": [""], - "Previous Line": [""], - "Primary": [""], - "Primary Metric": [""], - "Primary key": [""], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Private Key Password": [""], - "Proceed": [""], - "Profile": [""], - "Profile picture provided by Gravatar": [""], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": [""], - "Purple": [""], "Put labels outside": [""], - "Put the labels outside of the pie?": [""], "Put the labels outside the pie?": [""], - "Put your code here": [""], - "Python datetime string pattern": [""], - "QUERY DATA IN SQL LAB": [""], - "Quarter": [""], - "Quarters %s": [""], - "Queries": [""], - "Query": [""], - "Query %s: %s": [""], - "Query A": [""], - "Query B": [""], - "Query History": [""], - "Query does not exist": [""], - "Query history": [""], - "Query imported": [""], - "Query in a new tab": [""], - "Query is too complex and takes too long to run.": [""], - "Query mode": [""], - "Query name": [""], - "Query preview": [""], - "Query was stopped": [""], - "Query was stopped.": [""], - "RANGE TYPE": [""], - "RGB Color": [""], - "RLS Rule could not be deleted.": [""], - "RLS Rule not found.": [""], - "Radar": [""], - "Radar Chart": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radial": [""], - "Radius in kilometers": [""], - "Radius in meters": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range": [""], - "Range filter": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges": [""], - "Ranges to highlight with shading": [""], - "Ranking": [""], - "Ratio": [""], - "Raw records": [""], - "Ready to review filters in this dashboard?": [""], - "Rebuild": [""], - "Recent activity": [""], - "Recently created charts, dashboards, and saved queries will appear here": [ + "Pie Chart (legacy)": [""], + "Frequency": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ + "Time-series Period Pivot": [""], + "Formula": [""], + "Event": [""], + "Interval": [""], + "Stack": [""], + "Stream": [""], + "Expand": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Margin": [""], + "Additional padding for legend.": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Orientation": [""], + "Bottom": [""], + "Right": [""], + "Legend Orientation": [""], + "Show Value": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Recently modified": [""], - "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Percentage threshold": [""], + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Tooltip time format": [""], + "Tooltip sort by metric": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ "" ], - "Recents": [""], - "Recipients are separated by \",\" or \";\"": [""], - "Recommended tags": [""], - "Record Count": [""], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ + "Tooltip": [""], + "Sort Series By": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort Series Ascending": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Series Order": [""], + "Truncate X Axis": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "X Axis Bounds": [""], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Refer to the": [""], - "Referenced columns not available in DataFrame.": [""], - "Refetch results": [""], - "Refresh": [""], - "Refresh dashboard": [""], - "Refresh frequency": [""], - "Refresh interval": [""], - "Refresh interval saved": [""], - "Refresh table list": [""], - "Refresh tables": [""], - "Refresh the default values": [""], - "Refreshing charts": [""], - "Refreshing columns": [""], - "Regex": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Minor ticks": [""], + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": [""], + "No data after filtering or data is NULL for the latest time record": [ "" ], - "Relational": [""], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative period": [""], - "Relative quantity": [""], - "Reload": [""], - "Remind me in 24 hours": [""], - "Remove": [""], - "Remove cross-filter": [""], - "Remove invalid filters": [""], - "Remove item": [""], - "Remove query from log": [""], - "Remove table preview": [""], - "Removed columns: %s": [""], - "Rename tab": [""], - "Rendering": [""], - "Replace": [""], - "Report": [""], - "Report Name": [""], - "Report Schedule could not be created.": [""], - "Report Schedule could not be deleted.": [""], - "Report Schedule could not be updated.": [""], - "Report Schedule delete failed.": [""], - "Report Schedule execution failed when generating a CSV.": [""], - "Report Schedule execution failed when generating a dataframe.": [""], - "Report Schedule execution failed when generating a screenshot.": [""], - "Report Schedule execution got an unexpected error.": [""], - "Report Schedule is still working, refusing to re-compute.": [""], - "Report Schedule log prune failed.": [""], - "Report Schedule not found.": [""], - "Report Schedule parameters are invalid.": [""], - "Report Schedule reached a working timeout.": [""], - "Report Schedule state not found": [""], - "Report a bug": [""], - "Report failed": [""], - "Report name": [""], - "Report schedule": [""], - "Report schedule client error": [""], - "Report schedule system error": [""], - "Report schedule unexpected error": [""], - "Report sending": [""], - "Report sent": [""], - "Report updated": [""], - "Reports": [""], - "Repulsion": [""], - "Repulsion strength between nodes": [""], - "Request Permissions": [""], - "Request is incorrect: %(error)s": [""], - "Request is not JSON": [""], - "Request missing data field.": [""], - "Request timed out": [""], - "Required": [""], - "Required control values have been removed": [""], - "Resample": [""], - "Resample method should in ": [""], - "Resample operation requires DatetimeIndex": [""], - "Reset": [""], - "Reset state": [""], - "Resource already has an attached report.": [""], - "Resource was not found.": [""], - "Restore Filter": [""], - "Results": [""], - "Results %s": [""], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Try applying different filters or ensuring your datasource has data": [ "" ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": [""], - "Reverse lat/long ": [""], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right": [""], - "Right Axis Format": [""], - "Right Axis Metric": [""], - "Right axis metric": [""], - "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Big Number Font Size": [""], + "Tiny": [""], + "Small": [""], + "Normal": [""], + "Large": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Display settings": [""], + "Subheader": [""], + "Description text that shows up below your Big Number": [""], + "Date format": [""], + "Force date format": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Conditional Formatting": [""], + "Apply conditional color formatting to metric": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "" ], - "Role": [""], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ + "A Big Number": [""], + "With a subheader": [""], + "Big Number": [""], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Comparison suffix": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Roles": [""], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Fix to selected Time Range": [""], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "TEMPORAL X-AXIS": [""], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Roles to grant": [""], - "Rolling Function": [""], - "Rolling Window": [""], - "Rolling function": [""], - "Rolling window": [""], - "Root certificate": [""], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Round cap": [""], - "Row": [""], - "Row Level Security": [""], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Big Number with Trendline": [""], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Tukey": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Distribute across": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "ECharts": [""], + "Bubble size number format": [""], + "Bubble Opacity": [""], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Row limit": [""], - "Rows": [""], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": [""], - "Rule": [""], - "Rule Name": [""], - "Rule added": [""], - "Run": [""], - "Run a query to display query history": [""], - "Run a query to display results": [""], - "Run in SQL Lab": [""], - "Run query": [""], - "Run query (Ctrl + Return)": [""], - "Run query in a new tab": [""], - "Run selection": [""], - "Running": [""], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": [""], - "SEP": [""], - "SHA": [""], - "SQL": [""], - "SQL Copied!": [""], - "SQL Expression": [""], - "SQL Lab": [""], - "SQL Lab View": [""], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ "" ], - "SQL Query": [""], - "SQL expression": [""], - "SQL query": [""], - "SQLAlchemy URI": [""], - "SSH Host": [""], - "SSH Password": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunnel could not be deleted.": [""], - "SSH Tunnel could not be updated.": [""], - "SSH Tunnel not found.": [""], - "SSH Tunnel parameters are invalid.": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "STRING": [""], - "SUN": [""], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Samples": [""], - "Samples for dataset could not be retrieved.": [""], - "Samples for datasource could not be retrieved.": [""], - "Sankey": [""], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite": [""], - "Satellite Streets": [""], - "Saturday": [""], - "Save": [""], - "Save & Explore": [""], - "Save & go to dashboard": [""], - "Save & go to new dashboard": [""], - "Save (Overwrite)": [""], - "Save as": [""], - "Save as Dataset": [""], - "Save as dataset": [""], - "Save as new": [""], - "Save as new chart": [""], - "Save as...": [""], - "Save as:": [""], - "Save changes": [""], - "Save chart": [""], - "Save dashboard": [""], - "Save dataset": [""], - "Save for this session": [""], - "Save or Overwrite Dataset": [""], - "Save query": [""], - "Save the query to enable this feature": [""], - "Save this query as a virtual dataset to continue exploring": [""], - "Save to new dashboard": [""], - "Saved": [""], - "Saved Queries": [""], - "Saved expressions": [""], - "Saved metric": [""], - "Saved queries": [""], - "Saved queries could not be deleted.": [""], - "Saved query not found.": [""], - "Saved query parameters are invalid.": [""], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "% calculation": [""], + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Schedule": [""], - "Schedule a new email report": [""], - "Schedule email report": [""], - "Schedule query": [""], - "Schedule settings": [""], - "Schedule the query periodically": [""], - "Scheduled": [""], - "Scheduled at (UTC)": [""], - "Scheduled task executor not found": [""], - "Schema": [""], - "Schema cache timeout": [""], - "Schema undefined": [""], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "Labels": [""], + "Label Contents": [""], + "Value and Percentage": [""], + "What should be shown as the label": [""], + "Tooltip Contents": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Show Tooltip Labels": [""], + "Whether to display the tooltip labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ "" ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": [""], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": [""], - "Search / Filter": [""], - "Search Metrics & Columns": [""], - "Search all charts": [""], - "Search all filter options": [""], - "Search box": [""], - "Search by query text": [""], - "Search columns": [""], - "Search in filters": [""], - "Search tables": [""], - "Search...": [""], - "Second": [""], - "Secondary": [""], - "Secondary Metric": [""], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Seconds %s": [""], - "Secure Extra": [""], - "Secure extra": [""], - "Security": [""], - "Security & Access": [""], - "See all %(tableName)s": [""], - "See less": [""], - "See more": [""], - "See query details": [""], - "See table schema": [""], - "Select": [""], - "Select ...": [""], - "Select Delivery Method": [""], - "Select Viz Type": [""], - "Select a Columnar file to be uploaded to a database.": [""], - "Select a Excel file to be uploaded to a database.": [""], - "Select a column": [""], - "Select a database table and create dataset": [""], - "Select a database table.": [""], - "Select a database to connect": [""], - "Select a database to upload the file to": [""], - "Select a database to write a query": [""], - "Select a dimension": [""], - "Select a file to be uploaded to the database": [""], - "Select a schema if the database supports this": [""], - "Select a visualization type": [""], - "Select aggregate options": [""], - "Select all data": [""], - "Select all items": [""], - "Select any columns for metadata inspection": [""], - "Select charts": [""], - "Select color scheme": [""], - "Select column": [""], - "Select current page": [""], - "Select database & schema": [""], - "Select database or type to search databases": [""], - "Select database table": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Funnel Chart": [""], + "Sequential": [""], + "Columns to group by": [""], + "General": [""], + "Min": [""], + "Minimum value on the gauge axis": [""], + "Max": [""], + "Maximum value on the gauge axis": [""], + "Start angle": [""], + "Angle at which to start progress axis": [""], + "End angle": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Value format": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Animation": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Select dataset source": [""], - "Select file": [""], - "Select filter": [""], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select operator": [""], - "Select or type a value": [""], - "Select or type dataset name": [""], - "Select owners": [""], - "Select saved metrics": [""], - "Select schema or type to search schemas": [""], - "Select scheme": [""], - "Select start and end date": [""], - "Select subject": [""], - "Select table or type to search tables": [""], - "Select the Annotation Layer you would like to use.": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Axis": [""], + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Split number": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Show progress": [""], + "Whether to show the progress of gauge chart": [""], + "Overlap": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Round cap": [""], + "Style the ends of the progress bar with a round cap": [""], + "Intervals": [""], + "Interval bounds": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ "" ], - "Select the geojson column": [""], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Interval colors": [""], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": [""], - "Sequential": [""], - "Series": [""], - "Series Height": [""], - "Series Limit Sort By": [""], - "Series Limit Sort Descending": [""], - "Series Order": [""], - "Series Style": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": [""], - "Series type": [""], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": [""], - "Set filter mapping": [""], - "Set up an email report": [""], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "Settings": [""], - "Settings for time series": [""], - "Share": [""], - "Share chart by email": [""], - "Share permalink by email": [""], - "Shared query": [""], + "Gauge Chart": [""], + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "Source category": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "" + ], + "Target category": [""], + "Category of target nodes": [""], + "Chart options": [""], + "Layout": [""], + "Graph layout": [""], + "Force": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Disabled": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": [""], + "Single": [""], + "Multiple": [""], + "Allow node selections": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Node size": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "" + ], + "Edge width": [""], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "" + ], + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion": [""], + "Repulsion strength between nodes": [""], + "Friction": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "" + ], + "Graph Chart": [""], + "Structural": [""], + "Whether to sort descending or ascending": [""], + "Series type": [""], + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Area chart": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Marker": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary": [""], + "Secondary": [""], + "Primary or secondary y-axis": [""], "Shared query fields": [""], - "Sheet Name": [""], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [""], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Query A": [""], + "Advanced analytics Query A": [""], + "Query B": [""], + "Advanced analytics Query B": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ "" ], - "Show": [""], - "Show Bubbles": [""], - "Show CREATE VIEW statement": [""], - "Show CSS Template": [""], - "Show Chart": [""], - "Show Column": [""], - "Show Dashboard": [""], - "Show Database": [""], - "Show Labels": [""], - "Show Less...": [""], - "Show Log": [""], - "Show Markers": [""], - "Show Metric": [""], - "Show Metric Names": [""], - "Show Range Filter": [""], - "Show Saved Query": [""], - "Show Table": [""], - "Show Timestamp": [""], + "Mixed Chart": [""], + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], "Show Total": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Value": [""], - "Show Values": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Whether to display the aggregate count": [""], + "Pie shape": [""], + "Outer Radius": [""], + "Outer edge of Pie chart": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ "" ], - "Show all columns": [""], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show chart description": [""], - "Show columns total": [""], - "Show data points as circle markers on the lines": [""], - "Show empty columns": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Pie Chart": [""], + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Label position": [""], + "Radar": [""], + "Customize Metrics": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ "" ], - "Show info tooltip": [""], - "Show label": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less columns": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show password.": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show progress": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time column": [""], - "Show time grain dropdown": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Radar Chart": [""], + "Primary Metric": [""], + "The primary metric is used to define the arc segment sizes": [""], + "Secondary Metric": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "When only a primary metric is provided, a categorical color scale is used.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "When a secondary metric is provided, a linear color scale is used.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Hierarchy": [""], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Sunburst Chart": [""], + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" ], - "Showing %s of %s": [""], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single": [""], - "Single Metric": [""], - "Single Value": [""], - "Single value": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": [""], - "Skip Initial Space": [""], - "Skip Rows": [""], - "Skip blank lines rather than interpreting them as Not A Number values": [ + "Generic Chart": [""], + "zoom area": [""], + "restore zoom": [""], + "Series Style": [""], + "Area chart opacity": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Skip spaces after delimiter": [""], - "Slug": [""], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Area Chart": [""], + "Axis Title": [""], + "AXIS TITLE MARGIN": [""], + "AXIS TITLE POSITION": [""], + "Axis Format": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Axis Bounds": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Solid": [""], - "Some roles do not exist": [""], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [""], - "Sorry there was an error fetching saved charts: ": [""], - "Sorry, An error occurred": [""], - "Sorry, an error occurred": [""], - "Sorry, an unknown error occurred": [""], - "Sorry, an unknown error occurred.": [""], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, there was an error saving this %s: %s": [""], - "Sorry, there was an error saving this dashboard: %s": [""], - "Sorry, your browser does not support copying.": [""], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], - "Sort": [""], - "Sort Bars": [""], - "Sort Descending": [""], - "Sort Metric": [""], - "Sort Series Ascending": [""], - "Sort Series By": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": [""], - "Sort bars by x labels.": [""], - "Sort by": [""], - "Sort by %s": [""], - "Sort by metric": [""], - "Sort columns alphabetically": [""], - "Sort columns by": [""], - "Sort descending": [""], - "Sort filter values": [""], - "Sort metric": [""], - "Sort rows by": [""], - "Sort series in ascending order": [""], - "Sort type": [""], - "Source": [""], - "Source / Target": [""], - "Source SQL": [""], - "Source category": [""], - "Sparkline": [""], - "Spatial": [""], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [""], - "Specify duplicate columns as \"X.0, X.1\".": [""], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ + "Chart Orientation": [""], + "Bar orientation": [""], + "Horizontal": [""], + "Orientation of bar chart": [""], + "Bar Charts are used to show metrics as a series of bars.": [""], + "Bar Chart": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ "" ], - "Split number": [""], - "Square kilometers": [""], - "Square meters": [""], - "Square miles": [""], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": [""], - "Start (Longitude, Latitude): ": [""], - "Start Longitude & Latitude": [""], - "Start Review": [""], - "Start angle": [""], - "Start at (UTC)": [""], - "Start date": [""], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Line Chart": [""], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Started": [""], - "State": [""], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": [""], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Step type": [""], - "Stepped Line": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Stop": [""], - "Stop query": [""], - "Stop running (Ctrl + e)": [""], - "Stop running (Ctrl + x)": [""], - "Stopped an unsafe database connection": [""], - "Stream": [""], - "Streets": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [""], - "Stroke Color": [""], - "Stroke Width": [""], - "Stroked": [""], - "Structural": [""], - "Style": [""], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], - "Success": [""], - "Successfully changed dataset!": [""], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sum values": [""], - "Sunburst": [""], - "Sunburst Chart": [""], - "Sunburst Chart v2": [""], - "Sunday": [""], - "Superset Chart": [""], - "Superset Embedded SDK documentation.": [""], - "Superset chart": [""], - "Superset dashboard": [""], - "Superset encountered an error while running a command.": [""], - "Superset encountered an unexpected error.": [""], - "Supported databases": [""], - "Survey Responses": [""], - "Swap dataset": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Step type": [""], + "Start": [""], + "Middle": [""], + "End": [""], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ "" ], + "Stepped Line": [""], + "Id": [""], + "Name of the id column": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Radial": [""], + "Layout type of tree": [""], + "Tree orientation": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "left": [""], + "top": [""], + "right": [""], + "bottom": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], "Symbol": [""], - "Symbol of two ends of edge line": [""], + "Empty circle": [""], + "Circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Pin": [""], + "Arrow": [""], "Symbol size": [""], - "Sync columns from source": [""], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ - "" - ], - "TABLES": [""], - "TEMPORAL X-AXIS": [""], - "TEMPORAL_RANGE": [""], - "THU": [""], - "TUE": [""], - "Tab name": [""], - "Tab title": [""], - "Table": [""], - "Table %(table)s wasn't found in the database %(db)s": [""], - "Table Exists": [""], - "Table Name": [""], - "Table View": [""], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "" - ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "" - ], - "Table cache timeout": [""], - "Table columns": [""], - "Table loading": [""], - "Table name cannot contain a schema": [""], - "Table name undefined": [""], - "Table or View \"%(table)s\" does not exist.": [""], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "" - ], - "Tables": [""], - "Tabs": [""], - "Tabular": [""], - "Tag could not be created.": [""], - "Tag could not be deleted.": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Tag parameters are invalid.": [""], - "Tagged Object could not be deleted.": [""], - "Tags": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Target": [""], - "Target Color": [""], - "Target category": [""], - "Target value": [""], - "Template Name": [""], - "Template parameters": [""], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Tree Chart": [""], + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Key": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ "" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Treemap": [""], + "Total": [""], + "Assist": [""], + "Increase": [""], + "Decrease": [""], + "Series colors": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "Test Connection": [""], - "Test connection": [""], - "Text": [""], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Waterfall Chart": [""], + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "Handlebars": [""], + "must have a value": [""], + "Handlebars Template": [""], + "A handlebars template that is applied to the data": [""], + "Include time": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Percentage metrics": [""], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" - ], - "The access requests seem to have been deleted": [""], - "The annotation has been saved": [""], - "The annotation has been updated": [""], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Ordering": [""], + "Order results by selected columns": [""], + "Sort descending": [""], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Query mode": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Range for Comparison": [""], + "Filters for Comparison": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": [""], + "Columns to group by on the rows": [""], + "Apply metrics on": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Cell limit": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "The chart datasource does not exist": [""], - "The chart does not exist": [""], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Aggregation function": [""], + "Count": [""], + "Count Unique Values": [""], + "List Unique Values": [""], + "Sum": [""], + "Average": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Minimum": [""], + "Maximum": [""], + "First": [""], + "Last": [""], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ "" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [""], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Show rows total": [""], + "Display row level total": [""], + "Show rows subtotal": [""], + "Display row level subtotal": [""], + "Show columns total": [""], + "Display column level total": [""], + "Show columns subtotal": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Combine metrics": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ "" ], - "The column header label": [""], - "The column was deleted or renamed in the database.": [""], - "The country code standard that Superset should expect to find in the [country] column": [ + "D3 time format for datetime columns": [""], + "Sort rows by": [""], + "key a-z": [""], + "key z-a": [""], + "value ascending": [""], + "value descending": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Sort columns by": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Conditional formatting": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], - "The dashboard has been saved": [""], - "The data source seems to have been deleted": [""], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Pivot Table": [""], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "No matching records found": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": [""], + "Timestamp format": [""], + "Page length": [""], + "Search box": [""], + "Whether to include a client-side search box": [""], + "Cell bars": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "The database columns that contains lines information": [""], - "The database could not be found": [""], - "The database is currently running too many queries.": [""], - "The database is under an unusual load.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "The database returned an unexpected error.": [""], - "The database was deleted.": [""], - "The database was not found.": [""], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Customize columns": [""], + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Show": [""], + "entries": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "Word Rotation": [""], + "random": [""], + "square": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "The dataset has been saved": [""], - "The dataset linked to this chart may have been deleted.": [""], - "The datasource couldn't be loaded": [""], - "The datasource is too large to query.": [""], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "N/A": [""], + "offline": [""], + "failed": [""], + "pending": [""], + "fetching": [""], + "running": [""], + "stopped": [""], + "success": [""], + "The query couldn't be loaded": [""], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "The distance between cells, in pixels": [""], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "Your query could not be scheduled": [""], + "Failed at retrieving results": [""], + "Unknown error": [""], + "Query was stopped.": [""], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "The host might be down, and can't be reached on the provided port.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The hostname provided can't be resolved.": [""], - "The id of the active chart": [""], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Copy of %s": [""], + "An error occurred while setting the active tab. Please contact your administrator.": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ + "An error occurred while fetching tab state": [""], + "An error occurred while removing tab. Please contact your administrator.": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ + "An error occurred while removing query. Please contact your administrator.": [ "" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Your query could not be saved": [""], + "Your query was not properly saved": [""], + "Your query was saved": [""], + "Your query was updated": [""], + "Your query could not be updated": [""], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "An error occurred while fetching table metadata. Please contact your administrator.": [ "" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "An error occurred while expanding the table schema. Please contact your administrator.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "An error occurred while collapsing the table schema. Please contact your administrator.": [ "" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "An error occurred while removing the table schema. Please contact your administrator.": [ "" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to CSV to see more rows up to the %(limit)d limit.": [ + "Shared query": [""], + "The datasource couldn't be loaded": [""], + "An error occurred while creating the data source": [""], + "An error occurred while fetching function names.": [""], + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to CSV, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Primary key": [""], + "Foreign key": [""], + "Index": [""], + "Estimate selected query cost": [""], + "Estimate cost": [""], + "Cost estimate": [""], + "Creating a data source and creating a new tab": [""], + "An error occurred": [""], + "Explore the result set in the data exploration view": [""], + "explore": [""], + "Create Chart": [""], + "Source SQL": [""], + "Executed SQL": [""], + "Run query": [""], + "Run current query": [""], + "Stop query": [""], + "New tab": [""], + "Previous Line": [""], + "Format SQL": [""], + "Find": [""], + "Keyboard shortcuts": [""], + "Run a query to display query history": [""], + "LIMIT": [""], + "State": [""], + "Started": [""], + "Duration": [""], + "Results": [""], + "Actions": [""], + "Success": [""], + "Failed": [""], + "Running": [""], + "Fetching": [""], + "Offline": [""], + "Scheduled": [""], + "Unknown Status": [""], + "Edit": [""], + "View": [""], + "Data preview": [""], + "Overwrite text in the editor with a query on this table": [""], + "Run query in a new tab": [""], + "Remove query from log": [""], + "Unable to create chart without a query id.": [""], + "Save & Explore": [""], + "Overwrite & Explore": [""], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], + "Copy to Clipboard": [""], + "Filter results": [""], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], + "The number of rows displayed is limited to %(rows)d by the query": [""], "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "The number of seconds before expiring the cache": [""], - "The object does not exist in the given database.": [""], - "The parameter %(parameters)s in your query is undefined.": [ - "", - "The following parameters in your query are undefined: %(parameters)s." + "%(rows)d rows returned": [""], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "" ], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Track job": [""], + "See query details": [""], + "Query was stopped": [""], + "Database error": [""], + "was created": [""], + "Query in a new tab": [""], + "The query returned no data": [""], + "Fetch data preview": [""], + "Refetch results": [""], + "Stop": [""], + "Run selection": [""], + "Run": [""], + "Stop running (Ctrl + x)": [""], + "Stop running (Ctrl + e)": [""], + "Run query (Ctrl + Return)": [""], + "Save": [""], + "Untitled Dataset": [""], + "An error occurred saving dataset": [""], + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": [""], + "Overwrite existing": [""], + "Select or type dataset name": [""], + "Existing dataset": [""], + "Are you sure you want to overwrite this dataset?": [""], + "Undefined": [""], + "Save dataset": [""], + "Save as": [""], + "Save query": [""], + "Cancel": [""], + "Update": [""], + "Label for your query": [""], + "Write a description for your query": [""], + "Submit": [""], + "Schedule query": [""], + "Schedule": [""], + "There was an error with your request": [""], + "Please save the query to enable sharing": [""], + "Copy query link to your clipboard": [""], + "Save the query to enable this feature": [""], + "Copy link": [""], + "No stored results found, you need to re-run your query": [""], + "Run a query to display results": [""], + "Preview: `%s`": [""], + "Query history": [""], + "Schedule the query periodically": [""], + "You must run the query successfully first": [""], + "Autocomplete": [""], + "CREATE TABLE AS": [""], + "CREATE VIEW AS": [""], + "Estimate the cost before running a query": [""], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Create": [""], + "Collapse table preview": [""], + "Expand table preview": [""], + "Reset state": [""], + "Enter a new title for the tab": [""], + "Close tab": [""], + "Rename tab": [""], + "Expand tool bar": [""], + "Hide tool bar": [""], + "Close all other tabs": [""], + "Duplicate tab": [""], + "Add a new tab": [""], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [""], + "Copy partition query to clipboard": [""], + "latest partition:": [""], + "Keys for table": [""], + "View keys & indexes (%s)": [""], + "Original table column order": [""], + "Sort columns alphabetically": [""], + "Copy SELECT statement to the clipboard": [""], + "Show CREATE VIEW statement": [""], + "CREATE VIEW statement": [""], + "Remove table preview": [""], + "Assign a set of parameters as": [""], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "Jinja templating": [""], + "syntax.": [""], + "Edit template parameters": [""], + "Parameters ": [""], + "Invalid JSON": [""], + "Untitled query": [""], + "%s%s": [""], + "Control": [""], + "Before": [""], + "After": [""], + "Click to see difference": [""], + "Altered": [""], + "Chart changes": [""], + "Modified by: %s": [""], + "Loaded data cached": [""], + "Loaded from cache": [""], + "Click to force-refresh": [""], + "Cached": [""], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "An error occurred while loading the SQL": [""], + "Sorry, an error occurred": [""], + "Updating chart was stopped": [""], + "An error occurred while rendering the visualization: %s": [""], + "Network error.": [""], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "Cross-filtering is not enabled for this dashboard.": [""], + "This visualization type does not support cross-filtering.": [""], + "You can't apply cross-filter on this data point.": [""], + "Remove cross-filter": [""], + "Add cross-filter": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Search columns": [""], + "No columns found": [""], + "Failed to generate chart edit URL": [""], + "You do not have sufficient permissions to edit the chart": [""], + "Edit chart": [""], + "Close": [""], + "Failed to load chart data.": [""], + "Drill by: %s": [""], + "There was an error loading the chart data": [""], + "Results %s": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The pattern of timestamp format. For strings use ": [""], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Drill to detail: %s": [""], + "Formatting": [""], + "Formatted value": [""], + "No rows were returned for this dataset": [""], + "Reload": [""], + "Copy": [""], + "Copy to clipboard": [""], + "Copied to clipboard!": [""], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], + "every": [""], + "every month": [""], + "every day of the month": [""], + "day of the month": [""], + "every day of the week": [""], + "day of the week": [""], + "every hour": [""], + "every minute": [""], + "minute": [""], + "reboot": [""], + "Every": [""], + "in": [""], + "on": [""], + "and": [""], + "at": [""], + ":": [""], + "minute(s)": [""], + "Invalid cron expression": [""], + "Clear": [""], + "Sunday": [""], + "Monday": [""], + "Tuesday": [""], + "Wednesday": [""], + "Thursday": [""], + "Friday": [""], + "Saturday": [""], + "January": [""], + "February": [""], + "March": [""], + "April": [""], + "May": [""], + "June": [""], + "July": [""], + "August": [""], + "September": [""], + "October": [""], + "November": [""], + "December": [""], + "SUN": [""], + "MON": [""], + "TUE": [""], + "WED": [""], + "THU": [""], + "FRI": [""], + "SAT": [""], + "JAN": [""], + "FEB": [""], + "MAR": [""], + "APR": [""], + "MAY": [""], + "JUN": [""], + "JUL": [""], + "AUG": [""], + "SEP": [""], + "OCT": [""], + "NOV": [""], + "DEC": [""], + "There was an error loading the schemas": [""], + "Select database or type to search databases": [""], + "Force refresh schema list": [""], + "Select schema or type to search schemas": [""], + "No compatible schema found": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The port is closed.": [""], - "The port number is invalid.": [""], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": [""], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "dataset": [""], + "Successfully changed dataset!": [""], + "Connection": [""], + "Swap dataset": [""], + "Proceed": [""], + "Warning!": [""], + "Search / Filter": [""], + "Add item": [""], + "STRING": [""], + "NUMERIC": [""], + "DATETIME": [""], + "BOOLEAN": [""], + "Physical (table or view)": [""], + "Virtual (SQL)": [""], + "Data type": [""], + "Advanced data type": [""], + "Advanced Data type": [""], + "Datetime format": [""], + "The pattern of timestamp format. For strings use ": [""], + "Python datetime string pattern": [""], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The query has a syntax error.": [""], - "The query returned no data": [""], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "" - ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" - ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "" - ], - "The report has been created": [""], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "" - ], - "The rich tooltip shows a list of all series for that point in time": [ - "" - ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Certified By": [""], + "Person or group that has certified this metric": [""], + "Certified by": [""], + "Certification details": [""], + "Details of the certification": [""], + "Is dimension": [""], + "Default datetime": [""], + "Is filterable": [""], + "": [""], + "Select owners": [""], + "Modified columns: %s": [""], + "Removed columns: %s": [""], + "New columns added: %s": [""], + "Metadata has been synced": [""], + "An error has occurred": [""], + "Column name [%s] is duplicated": [""], + "Metric name [%s] is duplicated": [""], + "Calculated column [%s] requires an expression": [""], + "Invalid currency code in saved metrics": [""], + "Basic": [""], + "Default URL": [""], + "Default URL to redirect to when accessing from the dataset list page": [ "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Autocomplete filters": [""], + "Whether to populate autocomplete filters options": [""], + "Autocomplete query predicate": [""], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The schema was deleted or renamed in the database.": [""], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Cache timeout": [""], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Normalize column names": [""], + "Always filter main datetime column": [""], + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The table was deleted or renamed in the database.": [""], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "": [""], + "": [""], + "Click the lock to make changes.": [""], + "Click the lock to prevent further changes.": [""], + "virtual": [""], + "Dataset name": [""], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Physical": [""], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Metric Key": [""], + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "D3 format": [""], + "Metric currency": [""], + "Select or type currency symbol": [""], + "Warning": [""], + "Optional warning about use of this metric": [""], + "": [""], + "Be careful.": [""], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Sync columns from source": [""], + "Calculated columns": [""], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "": [""], + "Settings": [""], + "The dataset has been saved": [""], + "Error saving dataset": [""], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [""], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [""], - "The user/password combination is not valid (Incorrect password for user).": [ + "Are you sure you want to save and apply changes?": [""], + "Confirm save": [""], + "OK": [""], + "Edit Dataset ": [""], + "Use legacy datasource editor": [""], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The username \"%(username)s\" does not exist.": [""], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "The width of the lines": [""], - "There are associated alerts or reports": [""], - "There are associated alerts or reports: %s,": [""], - "There are no charts added to this dashboard": [""], - "There are no components added to this tab": [""], + "DELETE": [""], + "delete": [""], + "Type \"%s\" to confirm": [""], + "More": [""], + "Click to edit": [""], + "You don't have the rights to alter this title.": [""], + "No databases match your search": [""], "There are no databases available": [""], - "There are no filters in this dashboard.": [""], - "There are unsaved changes.": [""], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "" - ], - "There is no chart definition associated with this component, could it have been deleted?": [ + "Manage your databases": [""], + "here": [""], + "Unexpected error": [""], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": [""], + "Missing dataset": [""], + "See more": [""], + "See less": [""], + "Copy message": [""], + "Details": [""], + "Did you mean:": [""], + "Parameter error": [""], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": [""], + "Click to favorite/unfavorite": [""], + "Cell content": [""], + "Hide password.": [""], + "Show password.": [""], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], + "OVERWRITE": [""], + "Database passwords": [""], + "%s PASSWORD": [""], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": [""], + "Import": [""], + "Import %s": [""], + "Select file": [""], + "Last Updated %s": [""], + "Sort": [""], + "+ %s more": [""], + "%s Selected": [""], + "Deselect all": [""], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "clear all filters": [""], + "No Data": [""], + "%s-%s of %s": [""], + "Start date": [""], + "End date": [""], + "Type a value": [""], + "Filter": [""], + "Select or type a value": [""], + "Last modified": [""], + "Modified by": [""], + "Created by": [""], + "Created on": [""], + "Menu actions trigger": [""], + "Select ...": [""], + "Filter menu": [""], + "Reset": [""], + "No filters": [""], + "Select all items": [""], + "Search in filters": [""], + "Select current page": [""], + "Invert current page": [""], + "Clear all data": [""], + "Select all data": [""], + "Expand row": [""], + "Collapse row": [""], + "Click to sort descending": [""], + "Click to sort ascending": [""], + "Click to cancel sorting": [""], + "List updated": [""], + "There was an error loading the tables": [""], + "See table schema": [""], + "Select table or type to search tables": [""], + "Force refresh table list": [""], + "You do not have permission to read tags": [""], + "Timezone selector": [""], + "Failed to save cross-filter scoping": [""], "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ "" ], - "There was an error fetching dataset": [""], - "There was an error fetching dataset's related objects": [""], - "There was an error fetching tables": [""], - "There was an error fetching the favorite status: %s": [""], - "There was an error fetching your recent activity:": [""], - "There was an error loading the chart data": [""], - "There was an error loading the dataset metadata": [""], - "There was an error loading the schemas": [""], - "There was an error loading the tables": [""], - "There was an error saving the favorite status: %s": [""], - "There was an error with your request": [""], - "There was an issue deleting %s: %s": [""], - "There was an issue deleting rules: %s": [""], - "There was an issue deleting the selected %s: %s": [""], - "There was an issue deleting the selected annotations: %s": [""], - "There was an issue deleting the selected charts: %s": [""], - "There was an issue deleting the selected dashboards: ": [""], - "There was an issue deleting the selected datasets: %s": [""], - "There was an issue deleting the selected layers: %s": [""], - "There was an issue deleting the selected queries: %s": [""], - "There was an issue deleting the selected templates: %s": [""], - "There was an issue deleting: %s": [""], - "There was an issue duplicating the dataset.": [""], - "There was an issue duplicating the selected datasets: %s": [""], - "There was an issue favoriting this dashboard.": [""], - "There was an issue fetching reports attached to this dashboard.": [""], + "Can not move top level tab into nested tabs": [""], + "This chart has been moved to a different filter scope.": [""], "There was an issue fetching the favorite status of this dashboard.": [ "" ], - "There was an issue fetching your chart: %s": [""], - "There was an issue fetching your dashboards: %s": [""], - "There was an issue fetching your recent activity: %s": [""], - "There was an issue fetching your saved queries: %s": [""], - "There was an issue previewing the selected query %s": [""], - "There was an issue previewing the selected query. %s": [""], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "" - ], - "These are the tables this filter will be applied to.": [""], - "These filters apply to the values available in the dropdowns": [""], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "" - ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "There was an issue favoriting this dashboard.": [""], + "This dashboard is now published": [""], + "This dashboard is now hidden": [""], + "You do not have permissions to edit this dashboard.": [""], + "[ untitled dashboard ]": [""], + "This dashboard was saved successfully.": [""], + "Sorry, an unknown error occurred": [""], + "Sorry, there was an error saving this dashboard: %s": [""], + "You do not have permission to edit this dashboard": [""], + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "This action will permanently delete %s.": [""], - "This action will permanently delete the layer.": [""], - "This action will permanently delete the saved query.": [""], - "This action will permanently delete the template.": [""], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Could not fetch all saved charts": [""], + "Sorry there was an error fetching saved charts: ": [""], + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "You have unsaved changes.": [""], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "This chart has been moved to a different filter scope.": [""], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "Create a new chart": [""], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Delete this container and save to remove this message.": [""], + "Refresh interval saved": [""], + "Refresh interval": [""], + "Refresh frequency": [""], + "Are you sure you want to proceed?": [""], + "Save for this session": [""], + "You must pick a name for the new dashboard": [""], + "Save dashboard": [""], + "Overwrite Dashboard [%s]": [""], + "Save as:": [""], + "[dashboard name]": [""], + "also copy (duplicate) charts": [""], + "viz type": [""], + "recent": [""], + "Create new chart": [""], + "Filter your charts": [""], + "Filter charts": [""], + "Sort by %s": [""], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Added": [""], + "Unknown type": [""], + "Viz type": [""], + "Dataset": [""], + "Superset chart": [""], + "Check out this chart in dashboard:": [""], + "Layout elements": [""], + "Load a CSS template": [""], + "Live CSS editor": [""], + "Collapse tab content": [""], + "There are no charts added to this dashboard": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], + "Deactivate": [""], + "Save changes": [""], + "Enable embedding": [""], + "Embed": [""], + "Applied cross-filters (%d)": [""], + "Applied filters (%d)": [""], "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Your dashboard is too large. Please reduce its size before saving it.": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Add the name of the dashboard": [""], + "Dashboard title": [""], + "Undo the action": [""], + "Redo the action": [""], + "Discard": [""], + "An error occurred while fetching available CSS templates": [""], + "Refreshing charts": [""], + "Superset dashboard": [""], + "Check out this dashboard: ": [""], + "Refresh dashboard": [""], + "Exit fullscreen": [""], + "Enter fullscreen": [""], + "Edit properties": [""], + "Edit CSS": [""], + "Download": [""], + "Export to PDF": [""], + "Download as Image": [""], + "Share": [""], + "Copy permalink to clipboard": [""], + "Share permalink by email": [""], + "Manage email report": [""], + "Set filter mapping": [""], + "Set auto-refresh interval": [""], + "Confirm overwrite": [""], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Are you sure you intend to overwrite the following values?": [""], + "Last Updated %s by %s": [""], + "Apply": [""], + "Error": [""], + "A valid color scheme is required": [""], + "JSON metadata is invalid!": [""], + "Dashboard properties updated": [""], + "The dashboard has been saved": [""], + "Access": [""], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Colors": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "This dashboard is now hidden": [""], - "This dashboard is now published": [""], - "This dashboard is published. Click to make it a draft.": [""], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Dashboard properties": [""], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "Basic information": [""], + "URL slug": [""], + "A readable URL for your dashboard": [""], + "Certification": [""], + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": [""], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ "" ], - "This dashboard was saved successfully.": [""], - "This database is managed externally, and can't be edited in Superset": [ + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "This dashboard is published. Click to make it a draft.": [""], + "Draft": [""], + "Annotation layers are still loading.": [""], + "One ore more annotation layers failed loading.": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "Data refreshed": [""], + "Cached %s": [""], + "Fetched %s": [""], + "Query %s: %s": [""], + "Force refresh": [""], + "Hide chart description": [""], + "Show chart description": [""], + "Cross-filtering scoping": [""], + "View query": [""], + "View as table": [""], + "Chart Data: %s": [""], + "Share chart by email": [""], + "Check out this chart: ": [""], + "Export to .CSV": [""], + "Export to Excel": [""], + "Export to full .CSV": [""], + "Export to full Excel": [""], + "Download as image": [""], + "Something went wrong.": [""], + "Search...": [""], + "No filter is selected.": [""], + "Editing 1 filter:": [""], + "Batch editing %d filters:": [""], + "Configure filter scopes": [""], + "There are no filters in this dashboard.": [""], + "Expand all": [""], + "Collapse all": [""], + "An error occurred while opening Explore": [""], + "Empty column": [""], + "This markdown component has an error.": [""], + "This markdown component has an error. Please revert your recent changes.": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [""], - "This defines the level of the hierarchy": [""], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Empty row": [""], + "You can": [""], + "create a new chart": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "edit mode": [""], + "Delete dashboard tab?": [""], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ + "undo": [""], + "button (cmd + z) until you save your changes.": [""], + "CANCEL": [""], + "Divider": [""], + "Header": [""], + "Text": [""], + "Tabs": [""], + "background": [""], + "Preview": [""], + "Sorry, something went wrong. Try again later.": [""], + "Unknown value": [""], + "Add/Edit Filters": [""], + "No filters are currently added to this dashboard.": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Apply filters": [""], + "Clear all": [""], + "Locate the chart": [""], + "Cross-filters": [""], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Cross-filtering is not enabled in this dashboard": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This markdown component has an error.": [""], - "This markdown component has an error. Please revert your recent changes.": [ + "All charts": [""], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "More filters": [""], + "No applied filters": [""], + "Applied filters: %s": [""], + "Cannot load filter": [""], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ "" ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ + "Scope": [""], + "Filter type": [""], + "Title is required": [""], + "(Removed)": [""], + "Undo?": [""], + "Add filters and dividers": [""], + "[untitled]": [""], + "Cyclic dependency detected": [""], + "Add and edit filters": [""], + "Column select": [""], + "Select a column": [""], + "No compatible columns found": [""], + "No compatible datasets found": [""], + "Value is required": [""], + "(deleted or invalid type)": [""], + "Limit type": [""], + "No available filters.": [""], + "Add filter": [""], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ "" ], - "This section contains options that allow for advanced analytical post processing of query results": [ + "Values dependent on": [""], + "Scoping": [""], + "Filter Configuration": [""], + "Filter Settings": [""], + "Select filter": [""], + "Range filter": [""], + "Numerical range": [""], + "Time filter": [""], + "Time range": [""], + "Time column": [""], + "Time grain": [""], + "Group By": [""], + "Group by": [""], + "Pre-filter is required": [""], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": [""], + "Name is required": [""], + "Filter Type": [""], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Dataset is required": [""], + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ - "" - ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type does not support cross-filtering.": [""], - "This visualization type is not supported.": [""], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": [""], - "Time": [""], - "Time Column": [""], - "Time Comparison": [""], - "Time Format": [""], - "Time Grain": [""], - "Time Granularity": [""], - "Time Lag": [""], - "Time Range": [""], - "Time Ratio": [""], - "Time Series": [""], - "Time Series - Bar Chart": [""], - "Time Series - Line Chart": [""], - "Time Series - Nightingale Rose Chart": [""], - "Time Series - Paired t-test": [""], - "Time Series - Percent Change": [""], - "Time Series - Period Pivot": [""], - "Time Series - Stacked": [""], - "Time Series Options": [""], - "Time Shift": [""], - "Time Table View": [""], - "Time column": [""], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": [""], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ - "" - ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "" - ], - "Time filter": [""], - "Time format": [""], - "Time grain": [""], - "Time grain filter plugin": [""], - "Time grain missing": [""], - "Time granularity": [""], - "Time in seconds": [""], - "Time lag": [""], - "Time range": [""], - "Time ratio": [""], - "Time related form attributes": [""], - "Time series": [""], - "Time series columns": [""], - "Time shift": [""], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "" - ], - "Time-series Area Chart": [""], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "" - ], - "Time-series Bar Chart": [""], - "Time-series Bar Chart (legacy)": [""], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Pre-filter": [""], + "No filter": [""], + "Sort filter values": [""], + "Sort type": [""], + "Sort ascending": [""], + "Sort Metric": [""], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "Time-series Chart": [""], - "Time-series Line Chart": [""], - "Time-series Percent Change": [""], - "Time-series Period Pivot": [""], - "Time-series Scatter Plot": [""], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Sort metric": [""], + "Single Value": [""], + "Single value type": [""], + "Exact": [""], + "Filter has default value": [""], + "Default Value": [""], + "Default value is required": [""], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": [""], + "Restore Filter": [""], + "Column is required": [""], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ "" ], - "Time-series Smooth Line": [""], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Default value must be set when \"Filter value is required\" is checked": [ "" ], - "Time-series Stepped Line": [""], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "Time-series Table": [""], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Apply to all panels": [""], + "Apply to specific panels": [""], + "Only selected panels will be affected by this filter": [""], + "All panels with this column will be affected by this filter": [""], + "All panels": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "Timeout error": [""], - "Timestamp format": [""], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [""], - "Timezone selector": [""], - "Tiny": [""], - "Title": [""], - "Title Column": [""], - "Title is required": [""], - "Title or Slug": [""], - "To filter on a metric, use Custom SQL tab.": [""], - "To get a readable URL for your dashboard": [""], - "Tools": [""], - "Tooltip": [""], - "Tooltip sort by metric": [""], - "Tooltip time format": [""], - "Top": [""], - "Top left": [""], - "Top right": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total value": [""], - "Total: %s": [""], - "Totals": [""], - "Track job": [""], - "Transformable": [""], + "Keep editing": [""], + "Yes, cancel": [""], + "There are unsaved changes.": [""], + "Are you sure you want to cancel?": [""], + "Error loading chart datasources. Filters may not work correctly.": [""], "Transparent": [""], - "Transpose pivot": [""], - "Tree Chart": [""], - "Tree layout": [""], - "Tree orientation": [""], - "Treemap": [""], - "Trend": [""], - "Triangle": [""], - "Trigger Alert If...": [""], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Metric": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "White": [""], + "All filters": [""], + "Click to edit %s.": [""], + "Click to edit chart.": [""], + "Use %s to open in a new tab.": [""], + "Medium": [""], + "New header": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ + "Equal to (=)": [""], + "Not equal to (≠)": [""], + "Less than (<)": [""], + "Less or equal (<=)": [""], + "Greater than (>)": [""], + "Greater or equal (>=)": [""], + "In": [""], + "Not in": [""], + "Like": [""], + "Like (case insensitive)": [""], + "Is not null": [""], + "Is null": [""], + "use latest_partition template": [""], + "Is true": [""], + "Is false": [""], + "TEMPORAL_RANGE": [""], + "Time granularity": [""], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ + "One or many metrics to display": [""], + "Fixed color": [""], + "Right axis metric": [""], + "Choose a metric for right axis": [""], + "Linear color scheme": [""], + "Color metric": [""], + "One or many controls to pivot as columns": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": [""], - "Tukey": [""], - "Type": [""], - "Type \"%s\" to confirm": [""], - "Type a value": [""], - "Type a value here": [""], - "Type is required": [""], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": [""], - "UI Configuration": [""], - "URL": [""], - "URL Parameters": [""], - "URL parameters": [""], - "URL slug": [""], - "Unable to add a new tab to the backend. Please contact your administrator.": [ + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [""], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Metric assigned to the [X] axis": [""], + "Metric assigned to the [Y] axis": [""], + "Bubble size": [""], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Color scheme": [""], + "An error occurred while starring this chart": [""], + "Chart [%s] has been saved": [""], + "Chart [%s] has been overwritten": [""], + "Dashboard [%s] just got created and chart [%s] was added to it": [""], + "Chart [%s] was added to dashboard [%s]": [""], + "GROUP BY": [""], + "Use this section if you want a query that aggregates": [""], + "NOT GROUPED BY": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Continue": [""], + "Clear form": [""], + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "Undefined": [""], - "Undefined window for rolling operation": [""], - "Undo the action": [""], - "Undo?": [""], - "Unexpected error": [""], - "Unexpected error occurred, please check your logs for details": [""], - "Unexpected error: ": [""], - "Unexpected time range: %s": [""], - "Unknown": [""], - "Unknown MySQL server host \"%(hostname)s\".": [""], - "Unknown Presto Error": [""], - "Unknown Status": [""], - "Unknown column used in orderby: %(col)s": [""], - "Unknown error": [""], - "Unknown input format": [""], - "Unknown type": [""], - "Unknown value": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [""], - "Unsafe template value for key %(key)s: %(value_type)s": [""], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [""], - "Unsupported return value for method %(name)s": [""], - "Unsupported template value for key %(key)s": [""], - "Unsupported time grain: %(time_grain)s": [""], - "Untitled Dataset": [""], - "Untitled Query": [""], - "Untitled query": [""], - "Update": [""], - "Update chart": [""], - "Updating chart was stopped": [""], - "Upload": [""], - "Upload CSV": [""], - "Upload CSV to database": [""], - "Upload Credentials": [""], - "Upload Enabled": [""], - "Upload Excel file": [""], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file": [""], - "Upload columnar file to database": [""], - "Upload file to database": [""], - "Usage": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use %s to open in a new tab.": [""], - "Use Area Proportions": [""], - "Use Columns": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" - ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [""], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ + "Customize": [""], + "Generating link, please wait..": [""], + "Chart height": [""], + "Chart width": [""], + "An error occurred while loading dashboard information.": [""], + "Save (Overwrite)": [""], + "Save as...": [""], + "Chart name": [""], + "Dataset Name": [""], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": [""], + "Select": [""], + " a dashboard OR ": [""], + "create": [""], + " a new one": [""], + "A new chart and dashboard will be created.": [""], + "A new chart will be created.": [""], + "A new dashboard will be created.": [""], + "Save & go to dashboard": [""], + "Save chart": [""], + "Formatted date": [""], + "Column Formatting": [""], + "Collapse data panel": [""], + "Expand data panel": [""], + "Samples": [""], + "No samples were returned for this dataset": [""], + "No results": [""], + "Search Metrics & Columns": [""], + " to edit or add columns and metrics.": [""], + "Showing %s of %s": [""], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], + "Unable to retrieve dashboard colors": [""], + "Not added to any dashboard": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Use the edit button to change this field": [""], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [""], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Not available": [""], + "Add the name of the chart": [""], + "Chart title": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "User": [""], - "User Roles": [""], - "User doesn't have the proper permissions.": [""], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [""], - "User query": [""], - "Username": [""], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Controls labeled ": [""], + "Control labeled ": [""], + "Chart Source": [""], + "Open Datasource tab": [""], + "Original": [""], + "Pivoted": [""], + "You do not have permission to edit this chart": [""], + "Chart properties updated": [""], + "Edit Chart Properties": [""], + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Person or group that has certified this chart.": [""], + "Configuration": [""], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "A list of users who can alter the chart. Searchable by name or username.": [ "" ], - "Value": [""], - "Value Domain": [""], - "Value Format": [""], - "Value bounds": [""], - "Value format": [""], - "Value is required": [""], - "Value must be greater than 0": [""], - "Values are dependent on other filters": [""], - "Values dependent on": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ + "Limit reached": [""], + "Create chart": [""], + "Update chart": [""], + "Invalid lat/long configuration.": [""], + "Reverse lat/long ": [""], + "Longitude & Latitude columns": [""], + "Delimited long & lat single column": [""], + "Multiple formats accepted, look the geopy.points Python library for more details": [ "" ], - "Vehicle Types": [""], - "Verbose Name": [""], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View": [""], - "View All »": [""], - "View Dataset": [""], - "View all charts": [""], - "View as table": [""], - "View in SQL Lab": [""], - "View keys & indexes (%s)": [""], - "View query": [""], - "Viewed": [""], - "Viewed %s": [""], - "Viewport": [""], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset": [""], - "Virtual dataset query cannot be empty": [""], - "Virtual dataset query cannot consist of multiple statements": [""], - "Virtual dataset query must be read-only": [""], - "Visual Tweaks": [""], - "Visualization Type": [""], - "Visualization type": [""], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Geohash": [""], + "textarea": [""], + "in modal": [""], + "Sorry, An error occurred": [""], + "Save as Dataset": [""], + "Open in SQL Lab": [""], + "Failed to verify select options: %s": [""], + "Annotation layer": [""], + "Select the Annotation Layer you would like to use.": [""], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Annotation layer value": [""], + "Bad formula.": [""], + "Annotation Slice Configuration": [""], + "This section allows you to configure how to use the slice\n to generate annotations.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Annotation layer time column": [""], + "Interval start column": [""], + "Event time column": [""], + "This column must contain date/time information.": [""], + "Annotation layer interval end": [""], + "Interval End column": [""], + "Annotation layer title column": [""], + "Title Column": [""], + "Pick a title for you annotation.": [""], + "Annotation layer description columns": [""], + "Description Columns": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Override time range": [""], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Override time grain": [""], + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Display configuration": [""], + "Configure your how you overlay is displayed here.": [""], + "Annotation layer stroke": [""], + "Style": [""], + "Solid": [""], + "Dashed": [""], + "Long dashed": [""], + "Dotted": [""], + "Annotation layer opacity": [""], + "Color": [""], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hide Line": [""], + "Hides the Line for the time series": [""], + "Layer configuration": [""], + "Configure the basics of your Annotation Layer.": [""], + "Mandatory": [""], + "Hide layer": [""], + "Show label": [""], + "Whether to always show the annotation label": [""], + "Annotation layer type": [""], + "Choose the annotation layer type": [""], + "Annotation source type": [""], + "Choose the source of your annotations": [""], + "Annotation source": [""], + "Remove": [""], + "Time series": [""], + "Edit annotation layer": [""], + "Add annotation layer": [""], + "Empty collection": [""], + "Add an item": [""], + "Remove item": [""], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "dashboard": [""], + "Dashboard scheme": [""], + "Select color scheme": [""], + "Select scheme": [""], + "Show less columns": [""], + "Show all columns": [""], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Min Width": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Viz is missing a datasource": [""], - "Viz type": [""], - "WED": [""], - "Want to add a new database?": [""], - "Warning": [""], - "Warning Message": [""], - "Warning!": [""], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "" - ], - "Was unable to check your query": [""], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "" - ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "" - ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "" - ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "Display": [""], + "Number formatting": [""], + "Edit formatter": [""], + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": [""], + "error": [""], + "success dark": [""], + "alert dark": [""], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": [""], + "Operator": [""], + "Left value": [""], + "Right value": [""], + "Target value": [""], + "Select column": [""], + "Color: ": [""], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Isoline": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The width of the Isoline in pixels": [""], + "The color of the isoline": [""], + "Isoband": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": [""], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "View in SQL Lab": [""], + "Query preview": [""], + "Save as dataset": [""], + "Missing URL parameters": [""], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [""], + "RANGE TYPE": [""], + "Actual time range": [""], + "APPLY": [""], + "Edit time range": [""], + "Configure Advanced Time Range ": [""], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "End date excluded from time range": [""], + "Configure Time Range: Previous...": [""], + "Configure Time Range: Last...": [""], + "Configure custom time range": [""], + "Relative quantity": [""], + "Relative period": [""], + "Anchor to": [""], + "NOW": [""], + "Date/Time": [""], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": [""], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "Web": [""], - "Wednesday": [""], - "Week": [""], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": [""], + "Custom": [""], + "last day": [""], + "last week": [""], + "last month": [""], + "last quarter": [""], + "last year": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Seconds %s": [""], + "Minutes %s": [""], + "Hours %s": [""], + "Days %s": [""], "Weeks %s": [""], - "Weight": [""], - "What should be shown on the label?": [""], - "What should happen if the table already exists": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "" - ], - "When a secondary metric is provided, a linear color scale is used.": [ - "" - ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "" - ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "" - ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "" - ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "" - ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "" - ], - "When using 'Group By' you are limited to use a single metric": [""], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "" - ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "" - ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "" - ], - "Whether to align background charts with both positive and negative values at 0": [ - "" - ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "" - ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ - "" - ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "" - ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "Months %s": [""], + "Quarters %s": [""], + "Years %s": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Now": [""], + "Midnight": [""], + "Saved expressions": [""], + "Saved": [""], + "%s column(s)": [""], + "No temporal columns found": [""], + "No saved expressions found": [""], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + " to add calculated columns": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": [""], + "My column": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Click to edit label": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a client-side search box": [""], - "Whether to include a time filter": [""], - "Whether to include the percentage in the tooltip": [""], - "Whether to include the time granularity as defined in the time section": [ + "%s option(s)": [""], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ "" ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "To filter on a metric, use Custom SQL tab.": [""], + "%s operator(s)": [""], + "Select operator": [""], + "Comparator option": [""], + "Type a value here": [""], + "Filter value (case sensitive)": [""], + "Failed to retrieve advanced type": [""], + "choose WHERE or HAVING...": [""], + "Filters by columns": [""], + "Filters by metrics": [""], + "metric": [""], + "Fixed": [""], + "Based on a metric": [""], + "My metric": [""], + "Add metric": [""], + "Select aggregate options": [""], + "%s aggregates(s)": [""], + "Select saved metrics": [""], + "%s saved metric(s)": [""], + "Saved metric": [""], + "No saved metrics found": [""], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + " to add metrics": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": [""], + "aggregate": [""], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Error while fetching data: %s": [""], + "Time series columns": [""], + "Actual value": [""], + "Sparkline": [""], + "Period average": [""], + "The column header label": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": [""], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Time lag": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [""], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Time Lag": [""], + "Time ratio": [""], + "Number of periods to ratio against": [""], + "Time Ratio": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort ascending or descending on the base Axis.": [""], - "Whether to sort descending or ascending": [""], - "Whether to sort descending or ascending if a series limit is present": [ - "" - ], - "Whether to sort results by the selected metric in descending order.": [ + "Optional d3 number format string": [""], + "Number format string": [""], + "Optional d3 date format string": [""], + "Date format string": [""], + "Column Configuration": [""], + "Select Viz Type": [""], + "Currently rendered: %s": [""], + "Recommended tags": [""], + "Search all charts": [""], + "No description available.": [""], + "Examples": [""], + "This visualization type is not supported.": [""], + "View all charts": [""], + "Select a visualization type": [""], + "No results found": [""], + "Superset Chart": [""], + "New chart": [""], + "Edit chart properties": [""], + "Dashboards added to": [""], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Export to .JSON": [""], + "Embed code": [""], + "Run in SQL Lab": [""], + "Code": [""], + "Markup type": [""], + "Pick your favorite markup language": [""], + "Put your code here": [""], + "URL parameters": [""], + "Extra parameters for use in jinja templated queries": [""], + "Annotations and layers": [""], + "Annotation layers": [""], + "My beautiful colors": [""], + "< (Smaller than)": [""], + "> (Larger than)": [""], + "<= (Smaller or equal)": [""], + ">= (Larger or equal)": [""], + "== (Is equal)": [""], + "!= (Is not equal)": [""], + "Not null": [""], + "60 days": [""], + "90 days": [""], + "Add notification method": [""], + "Add delivery method": [""], + "Add": [""], + "Edit Report": [""], + "Edit Alert": [""], + "Add Report": [""], + "Add Alert": [""], + "Report name": [""], + "Alert name": [""], + "Active": [""], + "Alert condition": [""], + "SQL Query": [""], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": [""], + "Condition": [""], + "Report schedule": [""], + "Alert condition schedule": [""], + "Timezone": [""], + "Schedule settings": [""], + "Log retention": [""], + "Working timeout": [""], + "Time in seconds": [""], + "seconds": [""], + "Grace period": [""], + "Message content": [""], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Ignore cache when generating report": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": [""], + "report": [""], + "%s updated": [""], + "CRON Schedule": [""], + "CRON expression": [""], + "Report sent": [""], + "Alert triggered, notification sent": [""], + "Report sending": [""], + "Alert running": [""], + "Report failed": [""], + "Alert failed": [""], + "Nothing triggered": [""], + "Alert Triggered, In Grace Period": [""], + "Delivery method": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [""], + "Queries": [""], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": [""], + "Annotation template updated": [""], + "Annotation template created": [""], + "Edit annotation layer properties": [""], + "Annotation layer name": [""], + "Description (this can be seen in the list)": [""], + "annotation": [""], + "The annotation has been updated": [""], + "The annotation has been saved": [""], + "Edit annotation": [""], + "Add annotation": [""], + "date": [""], + "Additional information": [""], + "Please confirm": [""], + "Are you sure you want to delete": [""], + "Modified %s": [""], + "css_template": [""], + "Edit CSS template properties": [""], + "Add CSS template": [""], + "css": [""], + "published": [""], + "draft": [""], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ "" ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "White": [""], - "Width": [""], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Word Rotation": [""], - "Working": [""], - "Working timeout": [""], - "World Map": [""], - "Write a description for your query": [""], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [""], - "Write dataframe index as a column.": [""], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": [""], - "X Axis Format": [""], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort Ascending": [""], - "X-Axis Sort By": [""], - "X-axis": [""], - "XScale Interval": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": [""], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": [""], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort Ascending": [""], - "Y-Axis Sort By": [""], - "Y-axis": [""], - "Y-axis bounds": [""], - "YScale Interval": [""], - "Year": [""], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Years %s": [""], - "Yes": [""], - "Yes, cancel": [""], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": [""], + "Enter duration in seconds": [""], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "Schema cache timeout": [""], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ "" ], - "You can": [""], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Table cache timeout": [""], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ + "Asynchronous query execution": [""], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Add extra connection information.": [""], + "Secure extra": [""], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "" ], - "You do not have permission to edit this %s": [""], - "You do not have permission to edit this chart": [""], - "You do not have permission to edit this dashboard": [""], - "You do not have permissions to access the datasource(s): %(name)s.": [ + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "You do not have permissions to edit this dashboard.": [""], - "You don't have access to this chart.": [""], - "You don't have access to this dashboard.": [""], - "You don't have access to this dataset.": [""], - "You don't have access to this embedded dashboard config.": [""], - "You don't have any favorites yet!": [""], - "You don't have permission to modify the value.": [""], - "You don't have the rights to alter %(resource)s": [""], - "You don't have the rights to alter this chart": [""], - "You don't have the rights to alter this dashboard": [""], - "You don't have the rights to alter this title.": [""], - "You don't have the rights to create a chart": [""], - "You don't have the rights to create a dashboard": [""], - "You don't have the rights to download as CSV": [""], - "You have no permission to approve this request": [""], - "You have removed this filter.": [""], - "You have unsaved changes.": [""], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Allow file uploads to database": [""], + "Schemas allowed for File upload": [""], + "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Additional settings.": [""], + "Metadata Parameters": [""], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "You must pick a name for the new dashboard": [""], - "You must run the query successfully first": [""], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Engine Parameters": [""], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Enter Primary Credentials": [""], + "Need help? Learn how to connect your database": [""], + "Database connected": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Your query could not be saved": [""], - "Your query could not be scheduled": [""], - "Your query could not be updated": [""], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "Select a database to connect": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "e.g. Analytics": [""], + "Login with": [""], + "Private Key & Password": [""], + "SSH Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "Private Key Password": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Display Name": [""], + "Name your database": [""], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "Refer to the": [""], + "for more information on how to structure your URI.": [""], + "Test connection": [""], + "database": [""], + "Please enter a SQLAlchemy URI to test": [""], + "e.g. world_population": [""], + "Database settings updated": [""], + "Sorry there was an error fetching database information: %s": [""], + "Or choose from a list of other databases we support:": [""], + "Supported databases": [""], + "Choose a database...": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "Your query was not properly saved": [""], - "Your query was saved": [""], - "Your query was updated": [""], - "Your report could not be deleted": [""], - "Zero imputation": [""], - "Zoom": [""], - "Zoom level of the map": [""], - "[ untitled dashboard ]": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [""], - "[Longitude] and [Latitude] must be set": [""], - "[Missing Dataset]": [""], - "[Superset] Access to the datasource %(name)s was granted": [""], - "[Untitled]": [""], - "[asc]": [""], - "[copy]": [""], - "[dashboard name]": [""], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "[untitled]": [""], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [""], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "Connect": [""], + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": [""], - "alert": [""], - "alert dark": [""], - "alerts": [""], - "all": [""], - "also copy (duplicate) charts": [""], - "ancestor": [""], - "and": [""], - "annotation": [""], - "annotation_layer": [""], - "asfreq": [""], - "at": [""], - "auto": [""], - "auto (Smooth)": [""], - "background": [""], - "basis": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": [""], - "boolean type icon": [""], - "bottom": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "cardinal": [""], - "change": [""], - "chart": [""], - "charts": [""], - "choose WHERE or HAVING...": [""], - "clear all filters": [""], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": [""], - "connecting to %(dbModelName)s.": [""], - "count": [""], - "create": [""], - "create a new chart": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "cumulative": [""], - "dashboard": [""], - "dashboards": [""], - "database": [""], - "dataset": [""], - "dataset name": [""], - "date": [""], - "day": [""], - "day of the month": [""], - "day of the week": [""], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Heatmap": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deck.gl charts": [""], - "deckGL": [""], - "default": [""], - "delete": [""], - "descendant": [""], - "description": [""], - "deviation": [""], - "dialect+driver://username:password@host:port/database": [""], - "draft": [""], - "dttm": [""], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. Analytics": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": [""], - "edit mode": [""], - "entries": [""], - "error": [""], - "error dark": [""], - "error_message": [""], - "every": [""], - "every day of the month": [""], - "every day of the week": [""], - "every hour": [""], - "every minute": [""], - "every month": [""], - "expand": [""], - "explore": [""], - "failed": [""], - "fetching": [""], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "flat": [""], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "here": [""], - "hour": [""], - "id": [""], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "in": [""], - "in modal": [""], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": [""], - "json isn't valid": [""], - "key a-z": [""], - "key z-a": [""], - "label": [""], - "last day": [""], - "last month": [""], - "last quarter": [""], - "last week": [""], - "last year": [""], - "latest partition:": [""], - "left": [""], - "less than {min} {name}": [""], - "linear": [""], - "log": [""], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "Database Creation Error": [""], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "max": [""], - "mean": [""], - "median": [""], - "metric": [""], - "min": [""], - "minute": [""], - "minute(s)": [""], - "monotone": [""], - "month": [""], - "more than {max} {name}": [""], - "must have a value": [""], - "name": [""], - "no SQL validator is configured": [""], - "no SQL validator is configured for {}": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "offline": [""], - "on": [""], - "or": [""], - "or use existing ones from the panel on the right": [""], - "orderby column must be populated": [""], - "overall": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "pending": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "CREATE DATASET": [""], + "QUERY DATA IN SQL LAB": [""], + "Connect a database": [""], + "Edit database": [""], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "permalink state not found": [""], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": [""], - "quarter": [""], - "queries": [""], - "query": [""], - "random": [""], - "reboot": [""], - "recent": [""], + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "" + ], + "Import database from file": [""], + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "" + ], + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "" + ], + "Host": [""], + "e.g. 5432": [""], + "Port": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "Additional Parameters": [""], + "Add additional custom parameters": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Upload Credentials": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "" + ], + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Enter a name for this sheet": [""], + "Paste the shareable Google Sheet URL here": [""], + "Add sheet": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "Duplicate dataset": [""], + "Duplicate": [""], + "New dataset name": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Refreshing columns": [""], + "Table columns": [""], + "Loading": [""], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "" + ], + "View Dataset": [""], + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "" + ], + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "Select dataset source": [""], + "No table columns": [""], + "This database table does not contain any data. Please select a different table.": [ + "" + ], + "An Error Occurred": [""], + "Unable to load columns for the selected table. Please select a different table.": [ + "" + ], + "The API response from %s does not match the IDatabaseTable interface.": [ + "" + ], + "Usage": [""], + "Chart owners": [""], + "Chart last modified": [""], + "Chart last modified by": [""], + "Dashboard usage": [""], + "Create chart with dataset": [""], + "chart": [""], + "No charts": [""], + "This dataset is not used to power any charts.": [""], + "Select a database table.": [""], + "Create dataset and create chart": [""], + "New dataset": [""], + "Select a database table and create dataset": [""], + "dataset name": [""], + "Not defined": [""], + "There was an error fetching dataset": [""], + "There was an error fetching dataset's related objects": [""], + "There was an error loading the dataset metadata": [""], + "[Untitled]": [""], + "Unknown": [""], + "Viewed %s": [""], + "Edited": [""], + "Created": [""], + "Viewed": [""], + "Favorite": [""], + "Mine": [""], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [""], + "charts": [""], + "dashboards": [""], "recents": [""], - "report": [""], - "reports": [""], - "restore zoom": [""], - "right": [""], - "rowlevelsecurity": [""], - "running": [""], "saved queries": [""], - "search by tags": [""], - "seconds": [""], - "series": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "No charts yet": [""], + "No dashboards yet": [""], + "No recents yet": [""], + "No saved queries yet": [""], + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "%(other)s saved queries will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ "" ], - "square": [""], - "stack": [""], - "staggered": [""], - "std": [""], - "step-after": [""], - "step-before": [""], - "stopped": [""], - "stream": [""], - "string type icon": [""], - "success": [""], - "success dark": [""], - "sum": [""], - "syntax.": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": [""], - "to": [""], - "top": [""], - "undo": [""], - "unknown type icon": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Recently created charts, dashboards, and saved queries will appear here": [ "" ], - "use latest_partition template": [""], - "value ascending": [""], - "value descending": [""], - "var": [""], - "variance": [""], + "Recently edited charts, dashboards, and saved queries will appear here": [ + "" + ], + "SQL query": [""], + "You don't have any favorites yet!": [""], + "See all %(tableName)s": [""], + "Connect database": [""], + "Create dataset": [""], + "Connect Google Sheet": [""], + "Upload CSV to database": [""], + "Upload columnar file to database": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ + "" + ], + "Info": [""], + "Logout": [""], + "About": [""], + "Powered by Apache Superset": [""], + "SHA": [""], + "Build": [""], + "Documentation": [""], + "Report a bug": [""], + "Login": [""], + "query": [""], + "Deleted: %s": [""], + "There was an issue deleting %s: %s": [""], + "This action will permanently delete the saved query.": [""], + "Delete Query?": [""], + "Ran %s": [""], + "Saved queries": [""], + "Next": [""], + "Tab name": [""], + "User query": [""], + "Executed query": [""], + "Query name": [""], + "SQL Copied!": [""], + "Sorry, your browser does not support copying.": [""], + "There was an issue fetching reports attached to this dashboard.": [""], + "The report has been created": [""], + "Report updated": [""], + "We were unable to active or deactivate this report.": [""], + "Your report could not be deleted": [""], + "Weekly Report for %s": [""], + "Weekly Report": [""], + "Edit email report": [""], + "Schedule a new email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Report Name": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Set up an email report": [""], + "Email reports active": [""], + "Delete email report": [""], + "Schedule email report": [""], + "This action will permanently delete %s.": [""], + "Delete Report?": [""], + "rowlevelsecurity": [""], + "Rule added": [""], + "Edit Rule": [""], + "Add Rule": [""], + "Rule Name": [""], + "The name of the rule must be unique": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "" + ], + "These are the datasets this filter will be applied to.": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "" + ], + "Group Key": [""], + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "" + ], + "Clause": [""], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "" + ], + "Regular": [""], + "Base": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" + ], + "Tagged %s %ss": [""], + "Failed to tag items": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "tags": [""], + "Select Tags": [""], + "Tag updated": [""], + "Tag created": [""], + "Tag name": [""], + "Name of your tag": [""], + "Add description of your tag": [""], + "Chosen non-numeric column": [""], + "UI Configuration": [""], + "Filter value is required": [""], + "User must select a value before applying the filter": [""], + "Single value": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [""], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "" + ], + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "No time columns": [""], + "Time column filter plugin": [""], + "Time grain filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], + "reports": [""], + "alerts": [""], + "There was an issue deleting the selected %s: %s": [""], + "Last run": [""], + "Execution log": [""], + "Bulk select": [""], + "No %s yet": [""], + "Owner": [""], + "All": [""], + "An error occurred while fetching owners values: %s": [""], + "Status": [""], + "An error occurred while fetching dataset datasource values: %s": [""], + "Alerts & reports": [""], + "Alerts": [""], + "Reports": [""], + "Delete %s?": [""], + "Are you sure you want to delete the selected %s?": [""], + "Error Fetching Tagged Objects": [""], + "Edit Tag": [""], + "There was an issue deleting the selected layers: %s": [""], + "Edit template": [""], + "Delete template": [""], + "Changed by": [""], + "No annotation layers yet": [""], + "This action will permanently delete the layer.": [""], + "Delete Layer?": [""], + "Are you sure you want to delete the selected layers?": [""], + "There was an issue deleting the selected annotations: %s": [""], + "Delete annotation": [""], + "Annotation": [""], + "No annotation yet": [""], + "Back to all": [""], + "Are you sure you want to delete %s?": [""], + "Delete Annotation?": [""], + "Are you sure you want to delete the selected annotations?": [""], + "Failed to load chart data": [""], "view instructions": [""], - "virtual": [""], - "viz type": [""], - "was created": [""], - "week": [""], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": [""], - "zoom area": [""] + "Add a dataset": [""], + "or": [""], + "Choose a dataset": [""], + "Choose chart type": [""], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Chart imported": [""], + "There was an issue deleting the selected charts: %s": [""], + "An error occurred while fetching dashboards": [""], + "Any": [""], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [""], + "Certified": [""], + "Alphabetical": [""], + "Recently modified": [""], + "Least recently modified": [""], + "Import charts": [""], + "Are you sure you want to delete the selected charts?": [""], + "CSS templates": [""], + "There was an issue deleting the selected templates: %s": [""], + "CSS template": [""], + "This action will permanently delete the template.": [""], + "Delete Template?": [""], + "Are you sure you want to delete the selected templates?": [""], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Dashboard imported": [""], + "There was an issue deleting the selected dashboards: ": [""], + "An error occurred while fetching dashboard owner values: %s": [""], + "Are you sure you want to delete the selected dashboards?": [""], + "An error occurred while fetching database related data: %s": [""], + "Upload file to database": [""], + "Upload CSV": [""], + "Upload columnar file": [""], + "Upload Excel file": [""], + "AQE": [""], + "Allow data manipulation language": [""], + "DML": [""], + "CSV upload": [""], + "Delete database": [""], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "" + ], + "Delete Database?": [""], + "Dataset imported": [""], + "An error occurred while fetching dataset related data": [""], + "An error occurred while fetching dataset related data: %s": [""], + "Physical dataset": [""], + "Virtual dataset": [""], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [""], + "An error occurred while fetching schema values: %s": [""], + "An error occurred while fetching dataset owner values: %s": [""], + "Import datasets": [""], + "There was an issue deleting the selected datasets: %s": [""], + "There was an issue duplicating the dataset.": [""], + "There was an issue duplicating the selected datasets: %s": [""], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "" + ], + "Delete Dataset?": [""], + "Are you sure you want to delete the selected datasets?": [""], + "0 Selected": [""], + "%s Selected (Virtual)": [""], + "%s Selected (Physical)": [""], + "%s Selected (%s Physical, %s Virtual)": [""], + "log": [""], + "Execution ID": [""], + "Scheduled at (UTC)": [""], + "Start at (UTC)": [""], + "Error message": [""], + "Alert": [""], + "There was an issue fetching your recent activity: %s": [""], + "There was an issue fetching your dashboards: %s": [""], + "There was an issue fetching your chart: %s": [""], + "There was an issue fetching your saved queries: %s": [""], + "Thumbnails": [""], + "Recents": [""], + "There was an issue previewing the selected query. %s": [""], + "TABLES": [""], + "Open query in SQL Lab": [""], + "An error occurred while fetching database values: %s": [""], + "An error occurred while fetching user values: %s": [""], + "Search by query text": [""], + "Deleted %s": [""], + "Deleted": [""], + "There was an issue deleting rules: %s": [""], + "No Rules yet": [""], + "Are you sure you want to delete the selected rules?": [""], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Query imported": [""], + "There was an issue previewing the selected query %s": [""], + "Import queries": [""], + "Link Copied!": [""], + "There was an issue deleting the selected queries: %s": [""], + "Edit query": [""], + "Copy query URL": [""], + "Export query": [""], + "Delete query": [""], + "Are you sure you want to delete the selected queries?": [""], + "queries": [""], + "tag": [""], + "No Tags created": [""], + "Are you sure you want to delete the selected tags?": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "" + ], + "Invalid input": [""], + "Unexpected error: ": [""], + "(no description, click to see stack trace)": [""], + "Sorry, an unknown error occurred.": [""], + "Sorry, there was an error saving this %s: %s": [""], + "You do not have permission to edit this %s": [""], + "Network error": [""], + "Request timed out": [""], + "Issue 1000 - The dataset is too large to query.": [""], + "Issue 1001 - The database is under an unusual load.": [""], + "An error occurred while fetching %s info: %s": [""], + "An error occurred while fetching %ss: %s": [""], + "An error occurred while creating %ss: %s": [""], + "Please re-export your file and try importing again": [""], + "An error occurred while importing %s: %s": [""], + "There was an error fetching the favorite status: %s": [""], + "There was an error saving the favorite status: %s": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [""], + "There was an issue deleting: %s": [""], + "URL": [""], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "" + ], + "Time-series Table": [""], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/en/LC_MESSAGES/messages.po b/superset/translations/en/LC_MESSAGES/messages.po index ee3b15bd9b37a..f6c9572e9a4f0 100644 --- a/superset/translations/en/LC_MESSAGES/messages.po +++ b/superset/translations/en/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2016-05-02 08:49-0700\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -28,19185 +28,19175 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." msgstr "" -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." msgstr "" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -msgid " a dashboard OR " +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -msgid " a new one" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:112 +msgid "The port is closed." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -msgid " to add calculated columns" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -msgid " to add metrics" +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:127 +msgid "" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" -msgstr[1] "" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "" + +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "" + +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "" + +#: superset/errors.py:141 msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" +#: superset/errors.py:145 +msgid "The port number is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, python-format -msgid "%s PASSWORD" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:147 +msgid "The database was deleted." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/forms.py:72 #, python-format -msgid "%s Selected (Physical)" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/jinja_context.py:344 #, python-format -msgid "%s Selected (Virtual)" +msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/jinja_context.py:355 #, python-format -msgid "%s aggregates(s)" +msgid "Unsupported return value for method %(name)s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#: superset/jinja_context.py:371 #, python-format -msgid "%s column(s)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#: superset/jinja_context.py:382 #, python-format -msgid "%s operator(s)" +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "" -msgstr[1] "" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#: superset/sql_lab.py:302 #, python-format -msgid "%s option(s)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "" -msgstr[1] "" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, python-format -msgid "%s updated" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/sql_lab.py:488 #, python-format -msgid "%s%s" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/sql_lab.py:510 #, python-format -msgid "%s-%s of %s" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +#: superset/viz.py:562 +msgid "Cached value not found" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +#: superset/viz.py:706 +msgid "Time Table View" msgstr "" -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" msgstr "" -#: superset/views/database/forms.py:164 -msgid "." +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" +#: superset/viz.py:910 +msgid "Pick a metric to display" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -msgid "1 week" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -msgid "1 year" +#: superset/viz.py:1360 +msgid "Sankey" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" +#: superset/viz.py:1434 +msgid "Directed Force Layout" msgstr "" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -msgid "104 weeks" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" msgstr "" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -msgid "156 weeks" +#: superset/viz.py:1674 +msgid "Horizon Charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:1686 +msgid "Mapbox" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -msgid "2 years" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -msgid "28 days" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -msgid "3 years" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" +#: superset/viz.py:2271 +msgid "Deck.gl - Heatmap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" +#: superset/viz.py:2292 +msgid "Deck.gl - Contour" msgstr "" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" msgstr "" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" +#: superset/viz.py:2369 +msgid "Event flow" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/viz.py:2511 +msgid "Partition Diagram" msgstr "" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -msgid "52 weeks" -msgstr "" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -msgid "" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -msgid "" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" +#: superset/charts/data/api.py:369 +msgid "Empty query result" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" msgstr "" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" msgstr "" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." msgstr "" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." msgstr "" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." msgstr "" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" +#: superset/commands/annotation_layer/exceptions.py:45 +msgid "Annotation layers could not be deleted." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." msgstr "" -#: 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." +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." msgstr "" -#: superset/reports/commands/exceptions.py:186 +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 #, python-format -msgid "A report named \"%(name)s\" already exists" +msgid "There are associated alerts or reports: %(report_names)s" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" msgstr "" -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a CSV." +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." msgstr "" -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." msgstr "" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/chart/exceptions.py:151 +msgid "Changing one or more of these dashboards is forbidden" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" +#: superset/commands/chart/exceptions.py:156 +msgid "Chart not found" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: 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" +#: superset/commands/css/exceptions.py:23 +msgid "CSS templates could not be deleted." msgstr "" -#: superset/initialization/__init__.py:425 -msgid "Access requests" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" +#: superset/commands/dashboard/exceptions.py:54 +msgid "Dashboards could not be created." msgstr "" -#: superset/views/log/__init__.py:31 -msgid "Action" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -msgid "Actual Values" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -msgid "Actual values" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." msgstr "" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." msgstr "" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." msgstr "" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -#: superset/views/database/mixins.py:35 -msgid "Add Database" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset/views/log/__init__.py:23 -msgid "Add Log" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." msgstr "" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Add Rule" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" msgstr "" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -msgid "Add a dataset" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" +#: superset/commands/database/validate_sql.py:100 +#, python-format +msgid "no SQL validator is configured for %(engine)s" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." msgstr "" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" +#: superset/commands/dataset/exceptions.py:172 +msgid "Datasets could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." msgstr "" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." +#: superset/commands/dataset/exceptions.py:205 +msgid "The provided table was not found in the provided database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/alert.py:98 +#, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" +#: superset/commands/report/alert.py:107 +#, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" +#: superset/commands/report/alert.py:178 +msgid "An error occurred when running alert query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -msgid "Aggregation" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -msgid "Alert" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." msgstr "" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." msgstr "" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." msgstr "" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." msgstr "" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." msgstr "" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." msgstr "" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." msgstr "" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." msgstr "" -#: superset/reports/commands/alert.py:100 +#: superset/commands/report/exceptions.py:180 #, python-format -msgid "Alert query returned more than one row. %s rows returned" +msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." msgstr "" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -msgid "All Entities" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." msgstr "" -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" msgstr "" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " msgstr "" -#: superset/views/database/mixins.py:198 -msgid "Allow CSV Upload" +#: superset/commands/security/exceptions.py:25 +msgid "RLS Rule not found." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" +#: superset/commands/security/exceptions.py:29 +msgid "RLS rules could not be deleted." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" +#: superset/commands/sql_lab/results.py:75 +msgid "" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +#: superset/commands/sql_lab/results.py:116 msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +msgid "Tag could not be updated." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." msgstr "" -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." msgstr "" -#: superset/reports/commands/exceptions.py:188 +#: superset/common/query_actions.py:227 #, python-format -msgid "An alert named \"%(name)s\" already exists" +msgid "Invalid result type: %(result_type)s" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." 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: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 -msgid "An error has occurred" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" msgstr "" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." +#: superset/common/query_context_processor.py:719 +msgid "The chart query context does not exist" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 +#: superset/common/query_object.py:290 +#, python-format msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -msgid "An error occurred while creating the value." +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -msgid "An error occurred while deleting the value." +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, python-format -msgid "An error occurred while fetching %s info: %s" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching %ss: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:641 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching chart created by values: %s" +msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" +msgid "Metric '%(metric)s' does not exist" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, python-format -msgid "An error occurred while fetching owners values: %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, python-format -msgid "An error occurred while fetching tag created by values: %s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -msgid "An error occurred while loading dashboard information." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" msgstr "" -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" msgstr "" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 +#: superset/connectors/sqla/views.py:327 msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" msgstr "" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" msgstr "" -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." +#: superset/connectors/sqla/views.py:404 +msgid "Offset" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" +msgstr[1] "" + +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "" +msgstr[1] "" + +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" +#: superset/dashboards/filters.py:193 +msgid "Role" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." +#: superset/databases/filters.py:79 +msgid "Upload Enabled" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -msgid "Annotation source" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "" +msgstr[1] "" + +#: superset/datasets/filters.py:26 +msgid "Null or Empty" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" +#: superset/db_engine_specs/base.py:98 +msgid "Second" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." +#: superset/db_engine_specs/base.py:100 +msgid "30 second" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" msgstr "" -#: 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." +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" msgstr "" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, python-format -msgid "Applied cross-filters (%d)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, python-format -msgid "Applied filters (%d)" +#: superset/db_engine_specs/base.py:108 +msgid "Day" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, python-format -msgid "Applied filters: %s" +#: superset/db_engine_specs/base.py:109 +msgid "Week" msgstr "" -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +#: superset/db_engine_specs/base.py:110 +msgid "Month" msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -msgid "Apply conditional color formatting to metric" +#: superset/db_engine_specs/base.py:112 +msgid "Year" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, python-format -msgid "Are you sure you want to delete %s?" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" + +#: superset/db_engine_specs/bigquery.py:191 #, python-format -msgid "Are you sure you want to delete the selected %s?" +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -msgid "Are you sure you want to delete the selected rules?" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" +#: superset/db_engine_specs/ocient.py:284 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -msgid "Average" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -msgid "Average value" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -msgid "Axis Format" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset/initialization/__init__.py:276 +msgid "Plugins" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" msgstr "" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" +#: superset/initialization/__init__.py:348 +msgid "Query History" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/initialization/__init__.py:368 +msgid "Action Log" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -msgid "Bar orientation" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" msgstr "" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -msgid "Base" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +#: superset/models/helpers.py:1531 +msgid "Empty query?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" +#: superset/models/helpers.py:1821 +msgid "error_message" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" -msgstr "" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" +msgstr[1] "" + +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset/sqllab/query_render.py:124 msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/tags/exceptions.py:39 +msgid "Tag could not be found." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/tags/filters.py:31 +msgid "Is custom tag" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -msgid "CREATE DATASET" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" msgstr "" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" msgstr "" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" msgstr "" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset/views/database/views.py:290 -#, python-format +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "Cached %s" +msgid "Unsupported time grain: %(time_grain)s" msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/utils.py:172 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" +#: superset/views/api.py:109 +#, python-format +msgid "Unexpected time range: %(error)s" msgstr "" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" +#: superset/views/base.py:579 +msgid "json isn't valid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/views/base.py:591 +msgid "Export to YAML" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" +#: superset/views/base.py:591 +msgid "Export to YAML?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/views/base.py:648 +msgid "Delete all Really?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -msgid "Category Name" +#: superset/views/base_api.py:149 +msgid "Is favorite" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -msgid "Category name" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/views/core.py:739 #, python-format -msgid "Certified by %s" +msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset/views/core.py:836 +msgid "permalink state not found" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" msgstr "" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/views/css_templates.py:46 +msgid "Template Name" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/views/dynamic_plugins.py:48 msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" msgstr "" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/views/utils.py:492 +msgid "Could not find viz object" msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" msgstr "" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" msgstr "" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, python-format -msgid "Chart Data: %s" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -msgid "Chart Source" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, python-format -msgid "Chart [%s] has been saved" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" msgstr "" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" msgstr "" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" msgstr "" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" msgstr "" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -msgid "Chart last modified" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -msgid "Chart last modified by" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -msgid "Chart owners" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -msgid "Chart title" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." +#: superset/views/database/forms.py:145 +msgid "Column Data Types" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +#: superset/views/database/forms.py:161 +msgid "Delimiter" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" msgstr "" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" +#: superset/views/database/forms.py:212 +msgid "Null Values" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "" + +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 +#: superset/views/database/forms.py:234 msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" +#: superset/views/database/forms.py:289 +msgid "Excel File" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 +#: superset/views/database/forms.py:343 msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/database/forms.py:353 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." msgstr "" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" +#: superset/views/database/forms.py:399 +msgid "Null values" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Click to sort ascending" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" +#: superset/views/database/forms.py:421 +msgid "Columnar File" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" +#: superset/views/database/forms.py:469 +msgid "Use Columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" +#: superset/views/database/mixins.py:34 +msgid "Show Database" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" +#: superset/views/database/mixins.py:35 +msgid "Add Database" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" msgstr "" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 -msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format -msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" msgstr "" -#: superset/views/database/forms.py:144 -msgid "Column Data Types" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" msgstr "" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -msgid "Column datatype" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset/views/database/views.py:289 +#, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset/views/database/forms.py:233 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -msgid "Column name" +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#: superset/views/database/views.py:412 #, python-format -msgid "Column name [%s] is duplicated" +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 +#: superset/views/database/views.py:424 #, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" msgstr "" -#: superset/views/database/forms.py:221 +#: superset/views/database/views.py:466 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset/views/database/forms.py:352 +#: superset/views/database/views.py:479 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/forms.py:424 -msgid "Columnar File" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset/views/database/views.py:568 +#: superset/views/database/views.py:566 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" msgstr "" -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset/views/log/__init__.py:21 +msgid "Logs" msgstr "" -#: superset/views/database/forms.py:241 -msgid "Columns To Read" +#: superset/views/log/__init__.py:22 +msgid "Show Log" msgstr "" -#: superset/common/query_context_processor.py:132 -#, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" +#: superset/views/log/__init__.py:23 +msgid "Add Log" msgstr "" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset/views/log/__init__.py:31 +msgid "Action" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" +#: superset/views/log/__init__.py:32 +msgid "dttm" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +msgid "Category name" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +msgid "Total value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -msgid "Conditional Formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +msgid "Column datatype" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "" - -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" msgstr "" -#: superset/db_engine_specs/ocient.py:259 -#, python-format -msgid "Could not connect to database: \"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" msgstr "" -#: superset/views/utils.py:512 -msgid "Could not find viz object" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" msgstr "" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" msgstr "" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +msgid "Y Axis Title Position" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -msgid "Create dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" msgstr "" -#: superset/views/access_requests.py:49 -msgid "Created On" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -msgid "Crimson" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -msgid "Cross-filtering is not enabled in this dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -msgid "Cross-filtering scoping" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -msgid "Cross-filters" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +msgid "Force categorical" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -msgid "DATETIME" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +msgid "Select a metric to display on the right axis" msgstr "" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" msgstr "" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." msgstr "" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -msgid "Dashboard imported" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -msgid "Dashboard title" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -msgid "Dashboard usage" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -msgid "Dashboards added to" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" msgstr "" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" msgstr "" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -msgid "Dashed" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" msgstr "" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" msgstr "" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for CSV uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" msgstr "" -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -#: superset/initialization/__init__.py:243 -msgid "Database Connections" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -#: superset/views/access_requests.py:46 -msgid "Database URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" msgstr "" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" msgstr "" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" msgstr "" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +msgid "Currency format" msgstr "" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" msgstr "" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" msgstr "" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" msgstr "" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -msgid "Dataset Name" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset/datasets/commands/exceptions.py:210 -msgid "Dataset could not be duplicated." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" -msgstr "" - -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" -msgstr "" - -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "" - -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" msgstr "" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" msgstr "" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" msgstr "" -#: superset/db_engine_specs/base.py:107 -msgid "Day" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" msgstr "" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" msgstr "" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" msgstr "" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset/viz.py:2848 -msgid "Deck.gl - Heatmap" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" msgstr "" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" msgstr "" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset/views/base.py:664 -msgid "Delete all Really?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -msgid "Deleted" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" -msgstr[1] "" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" -msgstr[1] "" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" -msgstr[1] "" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" -msgstr[1] "" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "" -msgstr[1] "" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "" -msgstr[1] "" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" -msgstr[1] "" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" -msgstr[1] "" - -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, python-format -msgid "Deleted %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" msgstr "" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -msgid "Dotted" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "change" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" msgstr "" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" msgstr "" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" msgstr "" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" msgstr "" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Edit Rule" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -msgid "Edit chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -#, fuzzy -msgid "Edit dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -#, fuzzy -msgid "Edit the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." -msgstr "" - -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -#, fuzzy -msgid "Embed dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -msgid "Empty column" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset/charts/data/api.py:366 -msgid "Empty query result" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" msgstr "" -#: superset/models/helpers.py:1508 -msgid "Empty query?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "End date" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" msgstr "" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" msgstr "" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" msgstr "" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -msgid "Event" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" msgstr "" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 -msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +msgid "Aggregation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +msgid "Contours" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +msgid "deck.gl Contour" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +msgid "Line width unit" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +msgid "meters" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -msgid "Failed to save cross-filter scoping" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +msgid "deck.gl Heatmap" msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +msgid "name" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box (deprecated)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 -msgid "Filter charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -msgid "Filter menu" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Forest Green" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" msgstr "" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -msgid "Group Key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -msgid "Has created by" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -msgid "Hide chart description" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" msgstr "" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" msgstr "" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for CSV upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +msgid "Bubble Chart (legacy)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" msgstr "" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -msgid "In" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" msgstr "" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -msgid "Interval" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +msgid "Pie Chart (legacy)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/views/core.py:1463 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +msgid "Truncate X Axis" msgstr "" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +msgid "Minor ticks" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Kilometers" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +msgid "Conditional Formatting" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" msgstr "" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" msgstr "" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" -msgstr "" - -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +msgid "Bubble size number format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +msgid "Bubble Opacity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -msgid "Legend Orientation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, python-format +msgid "% calculation" msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +msgid "Label Contents" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +msgid "Value and Percentage" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +msgid "Show Tooltip Labels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +msgid "Whether to display the tooltip labels." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" msgstr "" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -msgid "Lines column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -msgid "Locate the chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset/views/log/__init__.py:21 -msgid "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" msgstr "" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Maximum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Mean values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" msgstr "" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -msgid "Metric name" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +msgid "Shared query fields" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -msgid "Miles" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Minimum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset/db_engine_specs/base.py:109 -msgid "Month" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -msgid "More" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -msgid "More filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset/views/database/views.py:468 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" msgstr "" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -msgid "NUMERIC" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -msgid "New dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -msgid "New header" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -msgid "No Rules yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -#, fuzzy -msgid "No annotation layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -msgid "No applied filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -msgid "No charts yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -msgid "No columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -msgid "No dashboards yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 -msgid "No filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +msgid "Increase" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +msgid "Decrease" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -msgid "No saved queries yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +msgid "Series colors" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -msgid "No table columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +msgid "Waterfall Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -msgid "Not added to any dashboard" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/src/explore/constants.ts:72 -msgid "Not in" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset/views/database/forms.py:211 -msgid "Null Values" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +msgid "Range for Comparison" msgstr "" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +msgid "Filters for Comparison" msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" msgstr "" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" msgstr "" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" msgstr "" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +msgid "Show rows subtotal" msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +msgid "Show columns subtotal" msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformed." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" msgstr "" -#: superset/views/core.py:2029 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:158 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format -msgid "Operator undefined for aggregator: %(name)s" +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -msgid "Orientation" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" msgstr "" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "" + +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" +msgstr "" + +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" msgstr "" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" msgstr "" -#: 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." +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset/viz.py:3069 -msgid "Partition Diagram" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" msgstr "" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" msgstr "" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +msgid "Run current query" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +msgid "Format SQL" msgstr "" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +msgid "Find" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" msgstr "" -#: superset/viz.py:3234 -msgid "Please choose at least one groupby" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" msgstr "" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -#, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" msgstr "" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "Port" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" msgstr "" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" msgstr "" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" msgstr "" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "" + +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" msgstr "" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -msgid "Queries" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" msgstr "" -#: superset/initialization/__init__.py:360 -msgid "Query History" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" msgstr "" -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" msgstr "" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" msgstr "" -#: superset/row_level_security/commands/exceptions.py:29 -msgid "RLS Rule could not be deleted." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset/row_level_security/commands/exceptions.py:25 -msgid "RLS Rule not found." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" msgstr "" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, python-format +msgid "Modified by: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -msgid "Refresh tables" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +msgid "You do not have sufficient permissions to edit the chart" msgstr "" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" msgstr "" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +msgid "There was an error loading the chart data" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" msgstr "" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" msgstr "" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a CSV." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" msgstr "" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" msgstr "" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" msgstr "" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" msgstr "" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" msgstr "" -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" msgstr "" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:121 -msgid "Report updated" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" msgstr "" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" msgstr "" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" msgstr "" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -msgid "Resource was not found." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" msgstr "" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" msgstr "" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" msgstr "" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" msgstr "" -#: superset/dashboards/filters.py:200 -msgid "Role" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" msgstr "" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" msgstr "" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 -msgid "Rule Name" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset/sql_lab.py:480 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 #, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgid "Modified columns: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" msgstr "" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -msgid "SSH Tunnel could not be updated." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +msgid "Normalize column names" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -msgid "SSH Tunnel not found." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -#: superset/datasets/commands/exceptions.py:194 -msgid "Samples for dataset could not be retrieved." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +msgid "Metric Key" msgstr "" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -msgid "Save & go to new dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -msgid "Save as Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -msgid "Save as dataset" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +msgid "Error saving dataset" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -msgid "Save as..." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -msgid "Save dataset" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -msgid "Save to new dashboard" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" msgstr "" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" msgstr "" -#: superset/views/core.py:1186 -msgid "Schema undefined" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" msgstr "" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -msgid "Search columns" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 -msgid "Search in filters" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -msgid "Search tables" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" msgstr "" -#: superset/db_engine_specs/base.py:97 -msgid "Second" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 #, python-format -msgid "Seconds %s" +msgid "%s-%s of %s" msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 #: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -#, fuzzy -msgid "Select a dashboard" +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" +#: superset-frontend/src/components/Table/index.tsx:226 +msgid "Select all data" msgstr "" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" msgstr "" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -msgid "Select all data" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 -msgid "Select all items" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" +#: superset-frontend/src/components/Tags/utils.tsx:72 +msgid "You do not have permission to read tags" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 -msgid "Select current page" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -msgid "Select database & schema" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -msgid "Select database table" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -msgid "Select dataset source" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" msgstr "" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" +msgstr "" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +#, fuzzy +msgid "Edit the dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -msgid "Series Order" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +msgid "Filter charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +msgid "Unknown type" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -msgid "Shared query fields" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" msgstr "" -#: superset/views/database/mixins.py:34 -msgid "Show Database" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" msgstr "" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -msgid "Show Total" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +#, fuzzy +msgid "Edit dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -msgid "Show chart description" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +msgid "Export to PDF" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -msgid "Show empty columns" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: 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:66 +msgid "Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" +#: 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 "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +"Owners is a list of users who can alter the dashboard. Searchable by name" +" or username." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks. If no roles are " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: 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 "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" msgstr "" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" msgstr "" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, python-format +msgid "Chart Data: %s" msgstr "" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +msgid "Export to full Excel" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." msgstr "" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 #, python-format -msgid "Sorry, there was an error saving this %s: %s" +msgid "Batch editing %d filters:" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" msgstr "" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -msgid "Sort Series Ascending" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -msgid "Sort Series By" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Square kilometers" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Square meters" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "Start date" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -msgid "Started" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 +msgid "" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Sum values" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" msgstr "" -#: superset/viz.py:1805 -msgid "Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -msgid "Sunburst Chart v2" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" msgstr "" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -msgid "Swap dataset" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +msgid "" +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/src/explore/constants.ts:91 -msgid "TEMPORAL_RANGE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." msgstr "" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "" + +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" msgstr "" -#: superset/viz.py:722 -msgid "Table View" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" msgstr "" -#: superset/datasets/commands/exceptions.py:147 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +msgid "Click to edit %s." msgstr "" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, python-format +msgid "Use %s to open in a new tab." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" +#: superset-frontend/src/embedded/index.tsx:112 +msgid "" +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset/db_engine_specs/ocient.py:287 -#, python-format -msgid "Table or View \"%(table)s\" does not exist." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" msgstr "" -#: superset/tags/commands/exceptions.py:34 -msgid "Tag could not be created." +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" msgstr "" -#: superset/tags/commands/exceptions.py:38 -msgid "Tag could not be deleted." +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" msgstr "" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" msgstr "" -#: superset/tags/commands/exceptions.py:30 -msgid "Tag parameters are invalid." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset/tags/commands/exceptions.py:42 -msgid "Tagged Object could not be deleted." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" msgstr "" -#: superset/views/css_templates.py:46 -msgid "Template Name" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" msgstr "" -#: superset/views/dashboard/mixin.py:52 +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset/errors.py:124 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/explore/controls.jsx:367 +msgid "" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." -msgstr "" - -#: superset/common/query_context_processor.py:585 -msgid "The chart datasource does not exist" -msgstr "" - -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, python-format +msgid "Chart [%s] has been saved" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, python-format +msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" msgstr "" - -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 +msgid "" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset/sqllab/commands/estimate.py:58 -msgid "The database could not be found" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 +msgid "" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset/errors.py:99 -msgid "The database is under an unusual load." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset/sqllab/commands/execute.py:172 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" msgstr "" -#: superset/errors.py:144 -msgid "The database was deleted." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +msgid "An error occurred while loading dashboard information." msgstr "" -#: superset/errors.py:98 -msgid "The datasource is too large to query." +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" msgstr "" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +#, fuzzy +msgid "Select a dashboard" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" msgstr "" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +msgid " a dashboard OR " msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" msgstr "" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +msgid "A new chart and dashboard will be created." msgstr "" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +msgid "A new chart will be created." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +msgid "A new dashboard will be created." msgstr "" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" msgstr "" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to CSV to see more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to CSV, or contact an admin to see " -"more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgid "Showing %s of %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" msgstr "" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" +msgstr "" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset/errors.py:109 -msgid "The port is closed." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset/errors.py:142 -msgid "The port number is invalid." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +msgid "Chart Source" msgstr "" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" msgstr "" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" msgstr "" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" msgstr "" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" msgstr "" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" msgstr "" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" msgstr "" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +#, fuzzy +msgid "No annotation layers" msgstr "" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +msgid "" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" msgstr "" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -msgid "There was an error fetching dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -msgid "There was an error fetching dataset's related objects" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +msgid "" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -msgid "There was an error loading the chart data" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, python-format -msgid "There was an issue deleting rules: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" msgstr "" -#: superset/viz.py:1915 -msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset/views/chart/mixin.py:63 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +msgid "Display" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +msgid "Number formatting" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" msgstr "" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" msgstr "" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +msgid "Color: " msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +msgid "Isoline" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -#, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" msgstr "" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" msgstr "" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" msgstr "" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " msgstr "" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" msgstr "" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" msgstr "" -#: superset/viz.py:878 -msgid "Time Table View" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -msgid "Time series" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" msgstr "" -#: superset/charts/commands/exceptions.py:38 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 #, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +msgid "Hours %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -msgid "Time-series Bar Chart (legacy)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" 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: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 -msgid "Title" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" msgstr "" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -msgid "Total value" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -msgid "Truncate Metric" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format +msgid "Error while fetching data: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -msgid "Tukey" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 -#, python-format -msgid "Type \"%s\" to confirm" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset/db_engine_specs/bigquery.py:178 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" msgstr "" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" msgstr "" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" msgstr "" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -msgid "Unknown type" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" msgstr "" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -msgid "Untitled Dataset" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" msgstr "" -#: superset/views/sql_lab/views.py:148 -msgid "Untitled Query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" msgstr "" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." msgstr "" -#: superset/views/database/forms.py:472 -msgid "Use Columns" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" msgstr "" -#: superset/views/access_requests.py:45 -msgid "User Roles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" msgstr "" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +msgid "Queries" msgstr "" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -msgid "View Dataset" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -msgid "View all charts" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 #, python-format -msgid "View keys & indexes (%s)" +msgid "Modified %s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" msgstr "" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 +msgid "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" msgstr "" -#: superset/db_engine_specs/base.py:108 -msgid "Week" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 #, python-format -msgid "Weekly Report for %s" +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -msgstr[1] "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 -msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset/views/database/mixins.py:119 -msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 -msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 -msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" msgstr "" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset/connectors/sqla/views.py:105 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset/connectors/sqla/views.py:357 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +msgid "Chart owners" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" msgstr "" -#: superset/db_engine_specs/base.py:111 -msgid "Year" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 -msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +msgid "Not defined" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" msgstr "" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, python-format -msgid "You do not have permission to edit this %s" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" msgstr "" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" msgstr "" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." +#: superset-frontend/src/features/home/EmptyState.tsx:35 +msgid "No charts yet" msgstr "" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." +#: superset-frontend/src/features/home/EmptyState.tsx:36 +msgid "No dashboards yet" msgstr "" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" msgstr "" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." +#: superset-frontend/src/features/home/EmptyState.tsx:38 +msgid "No saved queries yet" msgstr "" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset/security/manager.py:2262 +#: superset-frontend/src/features/home/EmptyState.tsx:50 #, python-format -msgid "You don't have the rights to alter %(resource)s" +msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" +msgstr "" + +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" msgstr "" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" msgstr "" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as CSV" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" msgstr "" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" msgstr "" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" msgstr "" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" msgstr "" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" msgstr "" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -msgid "alert dark" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +msgid "rowlevelsecurity" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Edit Rule" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +msgid "Rule Name" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +msgid "The name of the rule must be unique" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -msgid "auto" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +msgid "Base" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +msgid "Failed to tag items" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -msgid "change" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +msgid "tags" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +msgid "Select Tags" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/features/tags/TagModal.tsx:237 +msgid "Tag updated" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -msgid "clear all filters" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +msgid "Tag created" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +msgid "Tag name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +msgid "Name of your tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -msgid "create" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -msgid "dataset name" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -msgid "deck.gl Heatmap" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -msgid "deck.gl charts" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -msgid "deviation" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -#: superset/views/log/__init__.py:32 -msgid "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +msgid "Error Fetching Tagged Objects" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/pages/AllEntities/index.tsx:234 +msgid "Edit Tag" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +msgid "Changed by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -msgid "entries" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "error" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" msgstr "" -#: superset/models/helpers.py:1803 -msgid "error_message" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -msgid "failed" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -msgid "heatmap" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" msgstr "" -#: superset/views/base.py:596 -msgid "json isn't valid" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -msgid "linear" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" msgstr "" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -msgid "min" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -msgid "monotone" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -msgid "name" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -msgid "or" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." msgstr "" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "pending" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" msgstr "" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" msgstr "" -#: superset/views/core.py:1958 -msgid "permalink state not found" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, python-format +msgid "Deleted %s" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +msgid "Deleted" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, python-format +msgid "There was an issue deleting rules: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +msgid "No Rules yet" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -msgid "rowlevelsecurity" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "running" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "seconds" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -msgid "series" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-after" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/Tags/index.tsx:130 +msgid "No Tags created" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 -msgid "success dark" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" msgstr "" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -msgid "view instructions" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/es/LC_MESSAGES/messages.json b/superset/translations/es/LC_MESSAGES/messages.json index ea5636c0491e2..e6e44d614ad98 100644 --- a/superset/translations/es/LC_MESSAGES/messages.json +++ b/superset/translations/es/LC_MESSAGES/messages.json @@ -8,4017 +8,3903 @@ "plural_forms": "nplurals=2; plural=(n != 1)", "lang": "es" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "" ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "The hostname provided can't be resolved.": [""], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [""], + "Either the database is spelled incorrectly or does not exist.": [""], + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": ["!= (No es igual)"], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s recibió el rol %(role)s que le da acceso a %(datasource)s" - ], - "%(user)s's profile": ["Perfil de %(user)s"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "%s Error": ["%s Error"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": ["%s seleccionados"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s Seleccionados (%s Físico, %s Virtual)" - ], - "%s Selected (Physical)": ["%s Seleccionados (Físico)"], - "%s Selected (Virtual)": ["%s Seleccionados (Virtual)"], - "%s aggregates(s)": ["%s aggregación(es)"], - "%s column(s)": ["%s columnas(s)"], - "%s operator(s)": ["%s operador(es)"], - "%s option(s)": ["%s opción(es)"], - "%s saved metric(s)": ["%s métrica(s) guardada(s)"], - "%s%s": [""], - "%s-%s of %s": ["%s-%s de %s"], - "(Removed)": ["(Eliminado)"], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "" + "Failed to start remote query on a worker.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": ["Certificado Inválido"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Tipo de retorno inseguro para la función %(func)s: %(value_type)s" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "" + "Unsupported return value for method %(name)s": [ + "Valor de retorno no soportado para el método %(name)s" ], - ".": [""], - "0 Selected": ["0 Seleccionados"], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["1 hora"], - "1 minute": ["1 minuto"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year ago": [""], - "104 weeks ago": [""], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 years ago": [""], - "30 days": ["30 días"], - "30 minutes": ["30 minutos"], - "30 seconds": ["30 segundos"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minutes": ["5 minutos"], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "60 days": ["60 días"], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": ["90 días"], - ":": [""], - "< (Smaller than)": ["< (Menor que)"], - "<= (Smaller or equal)": ["<= (Menor o igual)"], - "": [""], - "== (Is equal)": ["== (Igual)"], - "> (Larger than)": ["> (mayor que)"], - ">= (Larger or equal)": [">= (Mayor o igual)"], - "A comma separated list of columns that should be parsed as dates.": [ - "Una lista separada por comas de columnas que deben ser parseadas como fechas." + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Valor de plantilla inseguro para la clave %(key)s: %(value_type)s" ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "Unsupported template value for key %(key)s": [ + "Valor de plantilla no soportado para la clave %(key)s" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": ["Un nombre legible para personas"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A map of the world, that can indicate values in different countries.": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": ["Falta una fuente de datos"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "" + "From date cannot be larger than to date": [ + "La fecha de inicio no puede ser posterior a la fecha final" ], - "A metric to use for color": ["Una métrica para usar para el color."], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "" + "Cached value not found": ["Valor no encontrado en memoria caché"], + "Columns missing in datasource: %(invalid_columns)s": [ + "La fuente de datos no tiene las columnas: %(invalid_columns)s" ], - "A readable URL for your dashboard": [ - "Una URL amigable para el dashboard" + "Time Table View": ["Vista de Tabla Temporal"], + "Pick at least one metric": ["Elige al menos una métrica"], + "When using 'Group By' you are limited to use a single metric": [ + "Cuando usas 'Group By', estás limitado a una sola métrica" ], - "A reference to the [Time] configuration, taking granularity into account": [ - "Una referencia a la configuración [Tiempo], teniendo en cuenta la granularidad." + "Calendar Heatmap": ["Mapa de Calor de Calendario"], + "Bubble Chart": ["Gráfico de Burbujas"], + "Please use 3 different metric labels": [ + "Por favor especifica 3 etiquetas de métrica distintas" ], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "" + "Pick a metric for x, y and size": [ + "Elige una métrica para 'x', 'y' y 'tamaño'" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Bullet Chart": ["Gráfico de Puntos"], + "Pick a metric to display": ["Elige qué métrica mostrar"], + "Time Series - Line Chart": ["Serie Temporal - Gráfico de Líneas"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A valid color scheme is required": [ - "Un esquema de colores válido es requerido" + "Time Series - Bar Chart": ["Serie Temporal - Gráfico de Barras"], + "Time Series - Period Pivot": ["Serie Temporal - Pivote de periodo"], + "Time Series - Percent Change": ["Serie Temporal - Cambio Porcentual"], + "Time Series - Stacked": ["Serie Temporal - Apiladas"], + "Histogram": ["Histograma"], + "Must have at least one numeric column specified": [ + "Debe especificarse al menos una columna numérica" ], - "APPLY": ["APPLICAR"], - "APR": ["ABR"], - "AQE": ["AQE"], - "AUG": ["AGO"], - "AXIS TITLE MARGIN": [""], - "About": [""], - "Access": ["Acceso"], - "Access requests": ["Solicitudes de Acceso"], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": ["Se ha solicitado Acceso"], - "Action": ["Acción"], - "Action Log": ["Bitácora de acciones"], - "Actions": ["Acciones"], - "Active": ["Activo"], - "Actual time range": ["Rango de tiempo actual"], - "Add": ["Agregar"], - "Add CSS Template": ["Añadir Plantilla CSS"], - "Add CSS template": ["Cargar una plantilla CSS"], - "Add Chart": ["Añadir Gráfico"], - "Add Column": ["Añadir Columna"], - "Add Dashboard": ["Añadir Dashboard"], - "Add Database": ["Añadir Base de Datos"], - "Add Log": ["Agregar Registro"], - "Add Metric": ["Añadir Métrica"], - "Add Saved Query": ["Añadir Consulta Guardada"], - "Add a Plugin": ["Añadir Columna"], - "Add a new tab to create SQL Query": [""], - "Add annotation": ["Añadir anotación"], - "Add annotation layer": ["Capas de Anotación"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "" + "Distribution - Bar Chart": ["Distribución - Gráfico de Barra"], + "Can't have overlap between Series and Breakdowns": [ + "No puede haber solapamiento entre Series y Distribuciones" ], - "Add custom scoping": [""], - "Add delivery method": ["Agregar método de entrega"], - "Add filter": ["Añadir filtro"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "Pick at least one field for [Series]": [ + "Elige al menos un campo para [Series]" ], - "Add filters and dividers": [""], - "Add item": ["Añadir elemento"], - "Add metric": ["Añadir Métrica"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": ["Agregar método de notificación"], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add to dashboard": ["Añadir a un nuevo Dashboard"], - "Added": ["Añadido"], - "Additional fields may be required": [""], - "Additional information": ["Información adicional"], - "Additional text to add before or after the value, e.g. unit": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": ["Avanzado"], - "Advanced analytics": ["Analíticos Avanzadas"], - "Aesthetic": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "" + "Sankey": [""], + "Pick exactly 2 columns as [Source / Target]": [ + "Elige exactamente 2 columnas como [Origen / Destino]" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "" + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Hay un bucle en tu Sankey, por favor proporciona un árbol. Aquí hay un enlace defectuoso: {}" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "" - ], - "Alert Triggered, In Grace Period": [ - "Alerta disparada, en periodo de gracia" + "Directed Force Layout": ["Disposición Dirigida Forzado"], + "Country Map": ["Mapa de País"], + "World Map": ["Mapa Mundial"], + "Parallel Coordinates": ["Coordenadas Paralelas"], + "Heatmap": ["Mapa de Calor"], + "Horizon Charts": ["Gráficos de Horizonte"], + "Mapbox": [""], + "[Longitude] and [Latitude] must be set": [ + "Deben especificarse [Longitud] y [Latitud]" ], - "Alert condition": ["Probar Conexión"], - "Alert condition schedule": ["Probar Conexión"], - "Alert ended grace period.": ["La alerta terminó el periodo de gracia."], - "Alert failed": ["Alerta fallida"], - "Alert fired during grace period.": [ - "La alerta saltó durante el periodo de gracia." + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Debe tener una columna [Group By] para tener 'count' como [Etiqueta]" ], - "Alert found an error while executing a query.": [ - "La alerta encontró un error al ejecutar una consulta." + "Choice of [Label] must be present in [Group By]": [ + "La opción de [Etiqueta] debe estar presente en [Group By]" ], - "Alert name": ["Nombre de la alerta"], - "Alert on grace period": ["Alerta durante el periodo de gracia"], - "Alert query returned a non-number value.": [ - "La consulta de alerta devolvió un valor no numérico." + "Choice of [Point Radius] must be present in [Group By]": [ + "La opción de [Radio de Puntos] debe estar presente en [Group By]" ], - "Alert query returned more than one column.": [ - "La consulta de alerta devolvió más de una columna." + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "Las columnas [Longitud] y [Latitud] deben estar presentes en [Group By]" ], - "Alert query returned more than one column. %s columns returned": [ - "La consulta de alerta devolvió más de una columna. %s columnas devueltas" + "Deck.gl - Multiple Layers": ["Deck.gl - Capas Múltiples"], + "Bad spatial key": ["Clave espacial errónea"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Se encontró una entrada espacial NULL inválida, por favor considera filtrar esas entradas" ], - "Alert query returned more than one row.": [ - "La consulta de alerta devolvió más de una fila." + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": ["Flujo de Eventos"], + "Time Series - Paired t-test": ["Serie Temporal - Prueba-T Emparejada"], + "Time Series - Nightingale Rose Chart": [ + "Serie Temporal - Gráfico de Nightingale Rose" ], - "Alert query returned more than one row. %s rows returned": [ - "La consulta de alerta devolvió más de una fila. %s filas devueltas" + "Partition Diagram": ["Partición de diagrama"], + "Deleted %(num)d annotation layer": [ + "", + "Deleted %(num)d annotation layers" ], - "Alert running": ["Ejecución de alerta"], - "Alert triggered, notification sent": [ - "Alerta disparada, notificación enviada" + "All Text": ["Todo el Texto"], + "Deleted %(num)d annotation": ["", "Deleted %(num)d annotations"], + "Deleted %(num)d chart": ["", "Deleted %(num)d charts"], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`confidence_interval` debe ser un número entre 0 y 1 (exclusivo)" ], - "Alert validator config error.": [ - "Error de configuración del validador de alertas." + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "el percentil inferior debe ser mayor que 0 y menor que 100. Debe ser menor que el percentil superior." ], - "Alerts": ["Alertas"], - "Alerts & Reports": ["Alertas y reportes"], - "Alerts & reports": ["Alertas e informes"], - "Align +/-": [""], - "All": [""], - "All Text": ["Todo el Texto"], - "All charts": ["Todos los gráficos"], - "All charts/global scoping": [""], - "All filters": ["Todos los filtros"], - "All filters (%(filterCount)d)": [""], - "All panels with this column will be affected by this filter": [""], - "Allow CREATE TABLE AS": ["Permitir CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Permitir la opción CREAR TABLA COMO en el laboratorio SQL" + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "el percentil superior debe ser mayor que 0 y menor que 100. Debe ser mayor que el percentil inferior." ], - "Allow CREATE VIEW AS": ["Permitir CREATE VIEW AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Permitie opción CREATE VIEW AS en el laboratorio SQL" + "`width` must be greater or equal to 0": [ + "`width` debe ser mayor o igual a 0" ], - "Allow Csv Upload": ["Permitir carga de CSV"], - "Allow DML": ["Permitir DML"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": ["Permitir manipulación de datos"], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "" + "`row_offset` must be greater than or equal to 0": [ + "`row_offset` debe ser mayor o igual a 0" ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "" + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": ["Petición incorrecta: %(error)s"], + "Request is not JSON": ["La petición no es JSON"], + "Owners are invalid": ["Los propietarios son invalidos"], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": [ + "Los parametros del Gráfico son invalidos" ], - "Allow multiple selections": ["Permitir selección múltiple"], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Permitir que los usuarios ejecuten instrucciones que no sean SELECT (UPDATE, DELETE, CREATE, ...) en el laboratorio SQL" + "Annotation layer could not be created.": [ + "El Gráfico no ha podido crearse" ], - "Allowed Domains (comma separated)": [""], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "" + "Annotation layer could not be updated.": [ + "El Gráfico no ha podido guardarse" ], - "Altered": ["Modificado"], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "" + "Annotation layer not found.": ["Capas de Anotación"], + "Annotation layer has associated annotations.": [ + "La capa de anotación tiene anotaciones asociadas" ], - "An engine must be specified when passing individual parameters to a database.": [ - "" + "Name must be unique": ["El nombre debe ser único"], + "End date must be after start date": [ + "La fecha de inicio no puede ser superior a la de fin" ], - "An error has occurred": ["Ha ocurrido un error"], - "An error occurred": ["Se produjo un error"], - "An error occurred saving dataset": [ - "Se produjo un error al crear el origen de datos" + "Short description must be unique for this layer": [ + "La descripción corta debe ser única para esta capa" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "" + "Annotation not found.": ["Anotaciones"], + "Annotation parameters are invalid.": [ + "Los parametros del Gráfico son invalidos" ], - "An error occurred while creating the data source": [ - "Se produjo un error al crear el origen de datos" + "Annotation could not be created.": ["El Gráfico no ha podido crearse"], + "Annotation could not be updated.": ["El Gráfico no ha podido guardarse"], + "Annotations could not be deleted.": [ + "Las anotaciones no han podido eliminarse." ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "An error occurred while fetching available CSS templates": [ - "Ha ocurrido un error cargando los CSS disponibles" - ], - "An error occurred while fetching chart created by values: %s": [ - "Se produjo un error al obtener los valores de los creadores de gráfico: %s" + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "" ], - "An error occurred while fetching chart owners values: %s": [ - "Se produjo un error al obtener los valores de los propietarios de gráfico: %s" + "Database does not exist": ["La base de datos no existe"], + "Dashboards do not exist": ["El dashboard no existe"], + "Datasource type is required when datasource_id is given": [ + "El tipo de fuente de datos es necesario cuando se especifica un `datasource_id`" ], - "An error occurred while fetching created by values: %s": [ - "Se produjo un error al obtener los valores creados por: %s" + "Chart parameters are invalid.": [ + "Los parametros del Gráfico son invalidos" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Se produjo un error al obtener los valores de los dashboards creados por: %s" + "Chart could not be created.": ["El Gráfico no ha podido crearse"], + "Chart could not be updated.": ["El Gráfico no ha podido guardarse"], + "Charts could not be deleted.": ["Los Gráficos no han podido eliminarse"], + "There are associated alerts or reports": [ + "Hay alertas o informes asociados" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Se produjo un error al obtener los valores del propietario de los dashboards: %s" + "Changing this chart is forbidden": [ + "No esta permitido modificar este Gráfico" ], - "An error occurred while fetching dashboards": [ - "Se produjo un error al crear el origen de datos" + "Import chart failed for an unknown reason": [ + "Importar el gráfico falló por una razón desconocida" ], - "An error occurred while fetching dashboards: %s": [ - "Se produjo un error al obtener los dashboards: %s" + "Error: %(error)s": [""], + "CSS template not found.": ["Plantillas CSS"], + "Must be unique": ["Debe ser único"], + "Dashboard parameters are invalid.": [ + "Parámetros de Dashboard inválidos." ], - "An error occurred while fetching database related data: %s": [ - "Se produjo un error al obtener los datos relacionados con la base de datos: %s" + "Dashboard could not be updated.": [ + "El Dashboard no pudo ser actualizado." ], - "An error occurred while fetching database values: %s": [ - "Ha ocurrido un error cargando valores de la base de datos: %s" + "Dashboard could not be deleted.": [ + "El Dashboard no pudo ser eliminado." ], - "An error occurred while fetching dataset datasource values: %s": [ - "Se produjo un error al obtener los valores de la fuente de datos: %s" + "Changing this Dashboard is forbidden": [ + "Cambiar este Dashboard está prohibido" ], - "An error occurred while fetching dataset owner values: %s": [ - "Se produjo un error al obtener los valores del propietario del conjunto de datos: %s" + "Import dashboard failed for an unknown reason": [ + "Importar el Dashboard falló por una razón desconocida" ], - "An error occurred while fetching dataset related data": [ - "Se produjo un error al obtener datos relacionados con el conjunto de datos" + "No data in file": ["No hay datos en el archivo"], + "Database parameters are invalid.": [ + "Los parametros del Gráfico son invalidos" ], - "An error occurred while fetching dataset related data: %s": [ - "Se produjo un error al obtener datos relacionados con el conjunto de datos: %s" + "Field is required": ["El campo es obligatorio"], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "" ], - "An error occurred while fetching datasets: %s": [ - "Se produjo un error al obtener conjuntos de datos: %s" + "Database not found.": ["La base de datos no existe"], + "Database could not be created.": ["El Gráfico no ha podido crearse"], + "Database could not be updated.": ["El Gráfico no ha podido guardarse"], + "Connection failed, please check your connection settings": [ + "La conexión ha fallado, por favor verifique sus ajustes de conexión" ], - "An error occurred while fetching schema values: %s": [ - "Se produjo un error al obtener valores de esquema: %s" + "Database could not be deleted.": [ + "La base de datos no han podido ser eliminada." ], - "An error occurred while fetching tab state": [ - "Se produjo un error al recuperar el estado de la pestaña" + "Stopped an unsafe database connection": [ + "Se ha detenido una conexión insegura a la base de datos" ], - "An error occurred while fetching table metadata": [ - "Se produjo un error al recuperar los metadatos de la tabla" + "Could not load database driver": [ + "No se ha podido cargar el controlador de la base de datos" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "" + "Unexpected error occurred, please check your logs for details": [ + "Se ha producido un error inesperado, por favor verifique los registros para más detalles" ], - "An error occurred while loading the SQL": [ - "Ocurrió un error al cargar SQL" + "No validator found (configured for the engine)": [""], + "Import database failed for an unknown reason": [ + "Importar la base de datos falló por una razón desconocida" ], - "An error occurred while pruning logs ": [ - "Se produjo un error al limpiar los registros" + "Could not load database driver: {}": [ + "No se ha podido cargar el controlador de la base de datos: {}" ], - "An error occurred while removing query. Please contact your administrator.": [ + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ "" ], - "An error occurred while removing tab. Please contact your administrator.": [ + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "" + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "Dataset %(name)s already exists": [ + "La fuente de datos %(name)s ya existe" ], - "An error occurred while rendering the visualization: %s": [ - "Ocurrió un error al crear la visualización: %s" + "Database not allowed to change": ["La base de datos no puede cambiar"], + "One or more columns do not exist": ["Una o más columnas no existen"], + "One or more columns are duplicated": [ + "Una o más columnas están duplicadas" ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "" + "One or more columns already exist": ["Una o más columnas ya existen"], + "One or more metrics do not exist": ["Una o más métricas no existen"], + "One or more metrics are duplicated": [ + "Una o más métricas están duplicadas" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ + "One or more metrics already exist": ["Una o más métricas ya existen"], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ "" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "" + "Dataset does not exist": ["La fuente no existe"], + "Dataset parameters are invalid.": [ + "Los parametros del conjunto de datos son inválidos." ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "" + "Dataset could not be created.": [ + "El conjunto de datos no pudo ser creado." ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "" + "Dataset could not be updated.": [ + "El conjunto de datos no pudo ser actualizado." ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "" + "Changing this dataset is forbidden": [ + "No está permitido cambiar este conjunto de datos" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "" + "Import dataset failed for an unknown reason": [ + "Importar el conjunto de datos falló por una razón desconocida" ], - "An unknown error occurred. Please contact your Superset administrator": [ - "Se produjo un error desconocido. Por favor, contacta con tu administrador de Superset" + "Data URI is not allowed.": [""], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "Saved queries could not be deleted.": [ + "Los Gráficos no han podido eliminarse" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Annotation": ["Anotación"], - "Annotation Layers": ["Capas de Anotación"], - "Annotation could not be created.": ["El Gráfico no ha podido crearse"], - "Annotation could not be updated.": ["El Gráfico no ha podido guardarse"], - "Annotation delete failed.": ["Capas de Anotación"], - "Annotation layer": ["Capa de Anotación"], - "Annotation layer could not be created.": [ - "El Gráfico no ha podido crearse" + "Saved query not found.": ["No se encuentra la consulta guardada."], + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["El dashboard no existe"], + "Chart does not exist": ["La base de datos no existe"], + "Database is required for alerts": [ + "La base de datos es requerida para las alertas" ], - "Annotation layer could not be deleted.": [ - "El Gráfico no ha podido eliminarse" + "Type is required": ["El tipo es obligatorio"], + "Choose a chart or dashboard not both": [ + "Elija un gráfico o un dashboard, no ambos" ], - "Annotation layer could not be updated.": [ - "El Gráfico no ha podido guardarse" + "Please save your chart first, then try creating a new email report.": [ + "" ], - "Annotation layer delete failed.": ["Capas de Anotación"], - "Annotation layer has associated annotations.": [ - "La capa de anotación tiene anotaciones asociadas" + "Please save your dashboard first, then try creating a new email report.": [ + "" ], - "Annotation layer name": ["Nombre de la capa de anotación"], - "Annotation layer not found.": ["Capas de Anotación"], - "Annotation layer parameters are invalid.": [ - "Los parametros del Gráfico son invalidos" + "Report Schedule parameters are invalid.": [ + "Los parametros del informe programado son inválidos" ], - "Annotation layer type": ["Capas de Anotación"], - "Annotation layers": ["Capas de Anotación"], - "Annotation layers are still loading.": [""], - "Annotation name": ["Nombre de la anotación"], - "Annotation not found.": ["Anotaciones"], - "Annotation parameters are invalid.": [ - "Los parametros del Gráfico son invalidos" + "Report Schedule could not be created.": [ + "El informe programado no ha podido ser creado." ], - "Annotations and layers": ["Anotaciones y capas"], - "Annotations could not be deleted.": [ - "Las anotaciones no han podido eliminarse." + "Report Schedule could not be updated.": [ + "El informe programado no ha podido ser actualizado." ], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "" + "Report Schedule not found.": ["No se encuentra el informe programado."], + "Report Schedule delete failed.": [ + "El informe programado no se pudo eliminar." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "" + "Report Schedule log prune failed.": [ + "Los registros del informe programado no pudieron limpiarse." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "" + "Report Schedule execution failed when generating a screenshot.": [ + "La ejecución del informe programado falló al generar una captura de pantalla." ], - "Append": ["Agregar"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "" + "Report Schedule execution got an unexpected error.": [ + "La ejecución del informe programado falló por un error inesperado." ], - "Apply": ["Aplicar"], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply to all panels": ["Aplicar a todos los páneles"], - "Apply to specific panels": ["Aplicar a páneles específicos"], - "April": ["Abril"], - "Are you sure you want to cancel?": [ - "¿Estas seguro de que quieres guardar y aplicar los cambios?" + "Report Schedule is still working, refusing to re-compute.": [ + "El informe programado todavía está en proceso, rechazando la recomputación." ], - "Are you sure you want to delete": ["onfirma que quieres eliminar"], - "Are you sure you want to delete the selected %s?": [ - "¿Está seguro de que desea eliminar los %s seleccionados?" + "Report Schedule reached a working timeout.": [ + "El informe programado alcanzó el tiempo de espera máximo." ], - "Are you sure you want to delete the selected annotations?": [ - "¿Estas seguro de que quieres guardar y aplicar los cambios?" + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [ + "La consulta de alerta devolvió más de una fila." ], - "Are you sure you want to delete the selected charts?": [ - "¿Estas seguro de que quieres eliminar los gráficos seleccionados?" + "Alert validator config error.": [ + "Error de configuración del validador de alertas." ], - "Are you sure you want to delete the selected dashboards?": [ - "¿Estas seguro de que quieres eliminar los dashboards seleccionados?" + "Alert query returned more than one column.": [ + "La consulta de alerta devolvió más de una columna." ], - "Are you sure you want to delete the selected datasets?": [ - "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" + "Alert query returned a non-number value.": [ + "La consulta de alerta devolvió un valor no numérico." ], - "Are you sure you want to delete the selected layers?": [ - "¿Estas seguro de que quieres eliminar las capas seleccionadas?" + "Alert found an error while executing a query.": [ + "La alerta encontró un error al ejecutar una consulta." ], - "Are you sure you want to delete the selected queries?": [ - "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" + "Alert fired during grace period.": [ + "La alerta saltó durante el periodo de gracia." ], - "Are you sure you want to delete the selected templates?": [ - "¿Estas seguro de que quieres eliminar las plantillas seleccionadas?" + "Alert ended grace period.": ["La alerta terminó el periodo de gracia."], + "Alert on grace period": ["Alerta durante el periodo de gracia"], + "Report Schedule state not found": [ + "No se encontró el estado del informe programado" ], - "Are you sure you want to proceed?": ["¿Seguro que quieres proceder?"], - "Are you sure you want to save and apply changes?": [ - "¿Estas seguro de que quieres guardar y aplicar los cambios?" + "Report schedule unexpected error": [ + "Error inesperado del informe programado" ], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "" + "Changing this report is forbidden": [ + "No está permitido cambiar este informe" ], - "Associated Charts": ["Gráficos asociados"], - "Async Execution": ["Ejecución Asincrónica"], - "Asynchronous query execution": ["Ejecución asíncrona de consultas"], - "August": ["Agosto"], - "Auto Zoom": [""], - "Autocomplete filters": ["Autocompletar filtros"], - "Autocomplete query predicate": ["Autocompletar predicado de consulta"], - "Automatic Color": [""], - "Available sorting modes:": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": ["Backend"], - "Bad spatial key": ["Clave espacial errónea"], - "Bar": [""], - "Base layer map style": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": ["Básico"], - "Basic information": ["Información Basica"], - "Batch editing %d filters:": ["Editando %d filtros simultáneamente:"], - "Battery level over time": [""], - "Be careful.": ["Se precavido."], - "Big Number": ["Número Grande"], - "Big Number Font Size": [""], - "Big Number with Trendline": ["Número Grande con Línea de Tendencia"], - "Bottom Margin": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "" + "An error occurred while pruning logs ": [ + "Se produjo un error al limpiar los registros" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "The query associated with these results could not be found. You need to re-run the original query.": [ "" ], - "Box Plot": ["Diagrama de Caja"], - "Bubble Chart": ["Gráfico de Burbujas"], - "Bubble size": ["Tamaño burbuja"], - "Bucket break points": [""], - "Build": [""], - "Bulk select": ["Selección múltiple"], - "Bullet Chart": ["Gráfico de Puntos"], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Cannot access the query": [""], + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": ["CANCELAR"], - "CREATE TABLE AS": ["Permitir CREATE TABLE AS"], - "CREATE VIEW AS": ["Permitir CREATE TABLE AS"], - "CREATE VIEW statement": ["Instrucción CREATE VIEW"], - "CRON expression": ["Expresión CRON"], - "CSS": ["CSS"], - "CSS Styles": [""], - "CSS Templates": ["Plantillas CSS"], - "CSS applied to the chart": [""], - "CSS template": ["Plantillas CSS"], - "CSS template could not be deleted.": [ - "El Gráfico no ha podido eliminarse" - ], - "CSS template name": ["Nombre de plantilla CSS"], - "CSS template not found.": ["Plantillas CSS"], - "CSS templates": ["Plantillas CSS"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "CSV to Database configuration": ["Configuración de CSV a base de datos"], - "CSV upload": ["Subida de archivos CSV"], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "CTAS Schema": ["Esquema CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "" + "`operation` property of post processing object undefined": [ + "La propiedad `operation` del objeto de post-procesamiento no está definida" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": ["Tiempo máximo de memoria caché"], - "Cache Timeout (seconds)": ["Tiempo de espera de caché (segundos)"], - "Cache timeout": ["Tiempo de espera de caché"], - "Cached %s": ["En cache %s"], - "Cached value not found": ["Valor no encontrado en memoria caché"], - "Calculated column [%s] requires an expression": [ - "Columna calculada [%s] requiere una expresión" + "Unsupported post processing operation: %(operation)s": [ + "Operación de post-procesamiento no soportada: %(operation)s" ], - "Calculated columns": ["Columnas calculadas"], - "Calculation type": ["Tipo de Cálculo"], - "Calendar Heatmap": ["Mapa de Calor de Calendario"], - "Can not move top level tab into nested tabs": [""], - "Can't have overlap between Series and Breakdowns": [ - "No puede haber solapamiento entre Series y Distribuciones" + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Error en la expresión jinja en el predicado de obtener valores: %(msg)s" ], - "Cancel": ["Cancelar"], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "" - ], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category and Percentage": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell content": ["Contenido de la celda"], - "Certification details": [""], - "Certified by": ["Certificado por"], - "Certified by %s": ["Certificado por %s"], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": ["Cambiado por"], - "Changed on": ["Cambiado el"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "" - ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "" + "Virtual dataset query must be read-only": [ + "La consulta de conjunto virtual debe ser de solo lectura" ], - "Changing this Dashboard is forbidden": [ - "Cambiar este Dashboard está prohibido" + "Virtual dataset query cannot consist of multiple statements": [ + "La consulta de conjunto virtual no puede consistir de varias consultas" ], - "Changing this chart is forbidden": [ - "No esta permitido modificar este Gráfico" + "Error in jinja expression in RLS filters: %(msg)s": [ + "Error en la expresión jinja en los filtros RLS: %(msg)s" ], - "Changing this control takes effect instantly": [ - "Los aambios en este control surten efecto de inmediato" + "Metric '%(metric)s' does not exist": [ + "La métrica '%(metric)s' no existe" ], - "Changing this dataset is forbidden": [ - "No está permitido cambiar este conjunto de datos" + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [ + "Solo las consultas `SELECT` estan permitidas en esta base de datos" ], - "Changing this report is forbidden": [ - "No está permitido cambiar este informe" + "Only single queries supported": [ + "Solo consultas sencillas están soportadas" ], - "Character to interpret as decimal point.": [ - "Caracter que interpreta como punto decimal." + "Columns": ["Columnas"], + "Show Column": ["Mostrar Columna"], + "Add Column": ["Añadir Columna"], + "Edit Column": ["Editar Columna"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Si hacer que esta columna esté disponible como una opción [Time Granularity], la columna debe ser DATETIME o DATETIME-like" ], - "Chart": ["Gráfico"], - "Chart %(id)s not found": ["Gráfico %(id)s no encontrado"], - "Chart Cache Timeout": [""], - "Chart ID": ["ID de gráfico"], - "Chart [{}] has been overwritten": [ - "El gráfico [{}] ha sido sobreescrito" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Si esta columna está expuesta en la sección `Filtros` de la vista de exploración." ], - "Chart [{}] has been saved": ["El gráfico [{}] ha sido guardado"], - "Chart [{}] was added to dashboard [{}]": [ - "El gráfico [{}] ha sido añadido al dashboard [{}]" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "El tipo de datos que fue inferido por la base de datos. Puede ser necesario ingresar un tipo manualmente para columnas definidas por expresión. En la mayoría de los casos, los usuarios no deberían necesitar alterar esto." ], - "Chart cache timeout": ["Tiempo de espera de caché"], - "Chart changes": ["El Gráfico ha cambiado"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "Column": ["Columna"], + "Verbose Name": ["Nombre detallado"], + "Description": ["Descripción"], + "Groupable": ["Agrupable"], + "Filterable": ["Filtrable"], + "Table": ["Tabla"], + "Expression": ["Expresión"], + "Is temporal": ["Es temporal"], + "Datetime Format": ["Formato FechaHora"], + "Type": ["Tipo"], + "Business Data Type": [""], + "Invalid date/timestamp format": ["Formato de fecha/hora inválido"], + "Metrics": ["Métricas"], + "Show Metric": ["Mostrar Métrica"], + "Add Metric": ["Añadir Métrica"], + "Edit Metric": ["Editar Métrica"], + "Metric": ["Métrica"], + "SQL Expression": ["Expresión SQL"], + "D3 Format": ["Formato D3"], + "Extra": ["Extra"], + "Warning Message": ["Mensaje de Aviso"], + "Tables": ["Tablas"], + "Show Table": ["Mostrar Tabla"], + "Import a table definition": ["Importar definición de tabla"], + "Edit Table": ["Esitar Tabla"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ "" ], - "Chart could not be created.": ["El Gráfico no ha podido crearse"], - "Chart could not be deleted.": ["El Gráfico no ha podido eliminarse"], - "Chart could not be updated.": ["El Gráfico no ha podido guardarse"], - "Chart does not exist": ["La base de datos no existe"], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart name": ["El Gráfico ha cambiado"], - "Chart parameters are invalid.": [ - "Los parametros del Gráfico son invalidos" + "Timezone offset (in hours) for this datasource": [ + "Desplazamiento de zona horaria (en horas) para esta fuente de datos" ], - "Chart type": ["Tipo de dato"], - "Chart type requires a dataset": [""], - "Charts": ["Gráficos"], - "Charts could not be deleted.": ["Los Gráficos no han podido eliminarse"], - "Check for sorting ascending": [ - "Selecciona para ordenar de forma ascendente" + "Name of the table that exists in the source database": [ + "Nombre de la tabla que existe en la fuente de datos." ], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Esquema, tal como se utiliza solo en algunas bases de datos como Postgres, Redshift y DB2" ], - "Check out this chart in dashboard:": [""], - "Check out this chart: ": [""], - "Check out this dashboard: ": [""], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Marcar para aplicar filtros instantáneamente cuando cambian en vez de mostrar el botón [Aplicar]" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Este campo actúa como una vista de Superset, lo que significa que Superset ejecutará una consulta en esta cadena como una subconsulta." ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [ - "Marcar para incluir la columna de tiempo en la caja de selección" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "El predicado aplicado al obtener un valor distinto para rellenar el componente de control de filtro. Soporta la sintaxis de la plantilla jinja. Se aplica solo cuando `Habilitar selección de filtro` está activado." ], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [ - "La opción de [Etiqueta] debe estar presente en [Group By]" + "Redirects to this endpoint when clicking on the table from the table list": [ + "Redirige a este punto al hacer clic en la tabla de la lista de tablas" ], - "Choice of [Point Radius] must be present in [Group By]": [ - "La opción de [Radio de Puntos] debe estar presente en [Group By]" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Si rellenar el menú desplegable del filtro en la sección de filtros de la vista de exploración con una lista de valores distintos obtenidos desde el backend sobre la marcha" ], - "Choose File": ["Seleccionar archivo"], - "Choose a chart or dashboard not both": [ - "Elija un gráfico o un dashboard, no ambos" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "" ], - "Choose a dataset": ["Selecciona una base de datos"], - "Choose a metric for right axis": [ - "Elige una métrica para el eje derecho" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "" ], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": ["Capas de Anotación"], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Clause": ["Cláusula"], - "Clear": ["Limpiar"], - "Clear all": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Associated Charts": ["Gráficos asociados"], + "Changed By": ["Cambiado por"], + "Database": ["Base de datos"], + "Last Changed": ["Último cambio"], + "Enable Filter Select": ["Habilitar selección de filtro"], + "Schema": ["Esquema"], + "Default Endpoint": ["Endpoint predeterminado"], + "Offset": ["Desplazamiento"], + "Cache Timeout": ["Tiempo máximo de memoria caché"], + "Table Name": ["Nombre Tabla"], + "Fetch Values Predicate": ["Predicado Obtención de Valores"], + "Owners": ["Propietarios"], + "Main Datetime Column": ["Columna principal de fecha y hora"], + "SQL Lab View": ["Vista de Laboratorio SQL"], + "Template parameters": ["Parametros de plantilla"], + "Modified": ["Modificado"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ "" ], - "Click the lock to make changes.": [ - "CLick en el candado para poder realizar cambios." + "Deleted %(num)d css template": ["", "Deleted %(num)d css templates"], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": ["", "Deleted %(num)d dashboards"], + "Title or Slug": ["Título o Slug"], + "Table name undefined": ["Nombre de tabla indefinido"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "" ], - "Click the lock to prevent further changes.": [ - "Click sobre el candado para prevenir futuros cambios." + "Field cannot be decoded by JSON. %(msg)s": [ + "El campo no puede ser decodificado por JSON. %(msg)s" ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": ["Click para editar"], - "Click to favorite/unfavorite": ["Haz clic para favorito/no favorito"], - "Click to force-refresh": ["Haga clic para forzar la actualización"], - "Click to see difference": [""], - "Close": ["Cerrar"], - "Close all other tabs": ["Cerrar las demás pestañas"], - "Close tab": ["Cerrar pestaña"], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": ["Código"], - "Collapse all": ["Contraer todo"], - "Color": ["Color"], - "Color +/-": [""], - "Color bounds": [""], - "Color metric": ["Métrica de Color"], - "Color scheme": ["Esquema de Color"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "Colors": ["Colores"], - "Column": ["Columna"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "" + "Deleted %(num)d dataset": [ + "Selecciona una base de datos", + "Selecciona una base de datos" ], - "Column Label(s)": ["Etiqueta(s) de columna"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Null or Empty": ["Nulo o Vacío"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "" + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Hostname or IP address": [""], + "Database name": ["Nombre de la Fuente de Datos"], + "Use an encrypted connection to the database": [ + "Usar una conexión encriptada a la base de datos" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "Column name [%s] is duplicated": ["La columna [%s] esta duplicada"], - "Column referenced by aggregate is undefined: %(column)s": [ - "La(s) columna(s) referenciada(s) por los agregados no está(n) definida(s): %(column)s" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Columns": ["Columnas"], - "Columns missing in datasource: %(invalid_columns)s": [ - "La fuente de datos no tiene las columnas: %(invalid_columns)s" + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [ + "No se puede conectar a la Base de Datos: \"%(database)s\\ " ], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "" + "Unknown MySQL server host \"%(hostname)s\".": [ + "Host desconocido de MySQL: \"%(hostname)s\"" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Comparison Period Lag": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [ - "Calcular la contribución al total" - ], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "El intervalo de confianza debe estar entre 0 y 1 (exclusivo)" - ], - "Configuration": ["Configuración"], - "Configure Time Range: Last...": [ - "Configurar Rango de Tiempo: Últimos.." - ], - "Configure Time Range: Previous...": [ - "Configurar Ranfo de Tiempo: Anteriores..." - ], - "Configure custom time range": [ - "Configurar rango de tiempo personalizado" - ], - "Configure filter scopes": ["Configurar ámbito de filtros"], - "Configure the basics of your Annotation Layer.": [ - "Configurar los elementos básicos de la capa de anotaciones." + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" ], - "Configure this dashboard to embed it into an external web application.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm save": ["Confirmar guardado"], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": ["Probar Conexión"], - "Connection failed, please check your connection settings": [ - "La conexión ha fallado, por favor verifique sus ajustes de conexión" + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "" ], - "Connection looks good!": ["¡La conexión parece correcta!"], - "Continuous": [""], - "Contribution": ["Contribución"], - "Control labeled ": [""], - "Controls labeled ": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": [ - "Copiar instrucción SELECT al portapapeles" + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "" ], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": ["Copiar enlace"], - "Copy message": ["Mensaje de Aviso"], - "Copy of %s": ["Copia de %s"], - "Copy partition query to clipboard": [ - "Copiar consulta de partición al portapapeles" + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "" ], - "Copy query URL": ["Copiar URL de la consulta"], - "Copy query link to your clipboard": [ - "Copiar consulta de partición al portapapeles" + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "No se puede conectar al catálogo \"%(catalog_name)s\"." ], - "Copy the account name of that database you are trying to connect to.": [ + "Unknown Presto Error": ["Error de Presto desconocido"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to clipboard": ["Copiar al portapapeles"], - "Cost estimate": ["Estimación de costo"], - "Could not determine datasource type": [ - "No se pudo determinar el tipo de fuente de datos" + "%(object)s does not exist in this database.": [""], + "Home": ["Inicio"], + "Data": ["Datos"], + "Dashboards": ["Dashboards"], + "Charts": ["Gráficos"], + "Datasets": ["Conjuntos de datos"], + "Plugins": [""], + "Manage": ["Administrar"], + "CSS Templates": ["Plantillas CSS"], + "SQL Lab": ["Laboratorio SQL"], + "SQL": ["SQL"], + "Saved Queries": ["Consultas Guardadas"], + "Query History": ["Historial de la consulta"], + "Action Log": ["Bitácora de acciones"], + "Security": ["Seguridad"], + "Alerts & Reports": ["Alertas y reportes"], + "Annotation Layers": ["Capas de Anotación"], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "No se ha proporcionado una columna de fecha y hora y es requerida por este tipo de gráfico" ], - "Could not fetch all saved charts": [ - "No se pudieron cargar todos los gráficos guardados" + "Empty query?": ["¿Consulta vacía?"], + "Unknown column used in orderby: %(col)s": [ + "Columna desconocida utilizada al ordenar: %(col)s%" ], - "Could not find viz object": [ - "No se pudo encontrar el objeto de visualización" + "Time column \"%(col)s\" does not exist in dataset": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [ + "Tipo de operación de filtrado inválida: %(op)s" ], - "Could not load database driver": [ - "No se ha podido cargar el controlador de la base de datos" + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Error en la expresión jinja en la cláusula WHERE: %(msg)s" ], - "Could not load database driver: %(driver_name)s": [ - "No se pudo cargar el controlador de base de datos: %(driver_name)s" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Error en la expresión jinja en la cláusula HAVING: %(msg)s" ], - "Could not load database driver: {}": [ - "No se ha podido cargar el controlador de la base de datos: {}" + "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], + "Deleted %(num)d report schedule": [ + "", + "Deleted %(num)d report schedules" ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country Field Type": [""], - "Country Map": ["Mapa de País"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Create a new chart": ["Crear un nuevo Gráfico"], - "Create chart with dataset": [""], - "Create new chart": ["Crear un nuevo Gráfico"], - "Create or select schema...": [""], - "Created": ["Creado"], - "Created On": ["Creado el"], - "Created by": ["Creado por"], - "Created content": ["Contenido Creado"], - "Created on": ["Creado el"], - "Creating a data source and creating a new tab": [ - "Creando un origen de datos y creando una nueva pestaña" - ], - "Creator": ["Creador"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "Guest user cannot modify chart payload": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Currently rendered: %s": [""], - "Custom Plugin": ["Customizar"], - "Custom Plugins": ["Customizar"], - "Custom SQL": ["SQL Personalizado"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": ["Personalizar"], - "Cyclic dependency detected": [""], - "D3 Format": ["Formato D3"], - "D3 format": ["Formato D3"], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "The parameter %(parameters)s in your query is undefined.": [ + "", + "The following parameters in your query are undefined: %(parameters)s." + ], + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Tag name is invalid (cannot contain ':')": [""], + "Record Count": ["Número de Registros"], + "No records found": ["No se encontraron registros"], + "Filter List": ["Filtrar lista"], + "Search": ["Buscar"], + "Refresh": ["Intervlo de actualización"], + "Import dashboards": ["Importar dashboards"], + "Import Dashboard(s)": ["Importar Dashboard(s)"], + "File": ["Archivo"], + "Choose File": ["Seleccionar archivo"], + "Upload": ["Subir"], + "Test Connection": ["Probar Conexión"], + "Unsupported clause type: %(clause)s": [""], "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": ["DIC"], - "DELETE": ["ELIMINAR"], - "DML": ["DML"], - "Daily seasonality": [""], - "Dark": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["Dashboard"], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" - ], - "Dashboard could not be created.": ["El Dashboard no pudo ser creado."], - "Dashboard could not be deleted.": [ - "El Dashboard no pudo ser eliminado." + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "" ], - "Dashboard could not be updated.": [ - "El Dashboard no pudo ser actualizado." + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "" ], - "Dashboard does not exist": ["El dashboard no existe"], - "Dashboard parameters are invalid.": [ - "Parámetros de Dashboard inválidos." + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [ + "Operador acumulativo inválido: %(operator)s" ], - "Dashboard properties": ["Propiedades del Dashboard"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "" + "Invalid geohash string": ["Cadena de geohash inválida"], + "Invalid longitude/latitude": ["Longitud/latitud inválidas"], + "Invalid geodetic string": ["Cadena geodésica inválida"], + "Pivot operation requires at least one index": [ + "La operación de pivote requiere al menos un índice" ], - "Dashboards": ["Dashboards"], - "Dashboards could not be deleted.": [ - "Los Dashboards no pudieron ser eliminados." + "Pivot operation must include at least one aggregate": [ + "La operación de pivote debe incluir al menos un agregado" ], - "Dashboards do not exist": ["El dashboard no existe"], - "Data": ["Datos"], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "" + "Time grain missing": ["Granularidad Temporal"], + "Unsupported time grain: %(time_grain)s": [ + "Granularidad temporal no soportada: %(time_grain)s" ], - "Data has no time steps": [""], - "Data preview": ["Previsualización de Datos"], - "Data type": ["Tipo de dato"], - "DataFrame include at least one series": [ - "Por favor elige al menos una métrica" + "Confidence interval must be between 0 and 1 (exclusive)": [ + "El intervalo de confianza debe estar entre 0 y 1 (exclusivo)" ], "DataFrame must include temporal column": [ "El DataFrame debe incluir una columna temporal" ], - "Database": ["Base de datos"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "" + "DataFrame include at least one series": [ + "Por favor elige al menos una métrica" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "" + "Undefined window for rolling operation": [ + "Ventana no definida para la operación de movimiento" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "" + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": ["rolling_type inválido: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Opciones inválidas para %(rolling_type)s: %(options)s" ], - "Database URL": ["URL de la Base de datos"], - "Database could not be created.": ["El Gráfico no ha podido crearse"], - "Database could not be deleted.": [ - "La base de datos no han podido ser eliminada." + "Referenced columns not available in DataFrame.": [ + "Columnas referenciadas no disponibles en DataFrame." ], - "Database could not be updated.": ["El Gráfico no ha podido guardarse"], - "Database does not allow data manipulation.": [""], - "Database does not exist": ["La base de datos no existe"], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "" + "Column referenced by aggregate is undefined: %(column)s": [ + "La(s) columna(s) referenciada(s) por los agregados no está(n) definida(s): %(column)s" ], - "Database error": ["Base de datos"], - "Database is required for alerts": [ - "La base de datos es requerida para las alertas" + "Operator undefined for aggregator: %(name)s": [ + "Operador no definido para el agregado: %(name)s" ], - "Database name": ["Nombre de la Fuente de Datos"], - "Database not allowed to change": ["La base de datos no puede cambiar"], - "Database not found.": ["La base de datos no existe"], - "Database parameters are invalid.": [ - "Los parametros del Gráfico son invalidos" + "Invalid numpy function: %(operator)s": [ + "Función numpy inválida: %(operator)s" ], - "Databases": ["Bases de datos"], - "Dataframe Index": ["Índice de Dataframe"], - "Dataset": ["Conjunto de Datos"], - "Dataset %(name)s already exists": [ - "La fuente de datos %(name)s ya existe" + "json isn't valid": ["no es json válido"], + "Export to YAML": ["Exportar a YAML"], + "Export to YAML?": ["¿Exportar a YAML?"], + "Delete": ["Eliminar"], + "Delete all Really?": ["¿Realmente quieres borrar todo?"], + "Is favorite": ["Favoritos"], + "Is tagged": [""], + "The data source seems to have been deleted": [ + "La fuente de datos parece haber sido eliminada" ], - "Dataset could not be created.": [ - "El conjunto de datos no pudo ser creado." + "The user seems to have been deleted": [ + "El usuario parece haber sido eliminado" ], - "Dataset could not be deleted.": [ - "El conjunto de datos no pudo ser eliminado." + "Error: %(msg)s": [""], + "Explore - %(table)s": ["Explorar - %(table)s"], + "Explore": ["Explorar"], + "Chart [{}] has been saved": ["El gráfico [{}] ha sido guardado"], + "Chart [{}] has been overwritten": [ + "El gráfico [{}] ha sido sobreescrito" ], - "Dataset could not be updated.": [ - "El conjunto de datos no pudo ser actualizado." + "Chart [{}] was added to dashboard [{}]": [ + "El gráfico [{}] ha sido añadido al dashboard [{}]" ], - "Dataset does not exist": ["La fuente no existe"], - "Dataset name": ["Nombre de la Fuente de Datos"], - "Dataset parameters are invalid.": [ - "Los parametros del conjunto de datos son inválidos." + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" ], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [ - "Los Gráficos no han podido eliminarse" + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Solicitud mal formada. Se esperan argumentos de slice_id o table_name y db_name" ], - "Datasets": ["Conjuntos de datos"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Chart %(id)s not found": ["Gráfico %(id)s no encontrado"], + "Table %(table)s wasn't found in the database %(db)s": [ + "La tabla %(table)s no fue encontrada en la base de datos %(db)s" + ], + "Show CSS Template": ["Mostrar Plantilla CSS"], + "Add CSS Template": ["Añadir Plantilla CSS"], + "Edit CSS Template": ["Editar Plantilla CSS"], + "Template Name": ["Nombre Plantilla"], + "A human-friendly name": ["Un nombre legible para personas"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "" + ], + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "" + ], + "Custom Plugins": ["Customizar"], + "Custom Plugin": ["Customizar"], + "Add a Plugin": ["Añadir Columna"], + "Edit Plugin": ["Editar Columna"], + "The dataset associated with this chart no longer exists": [""], + "Could not determine datasource type": [ + "No se pudo determinar el tipo de fuente de datos" + ], + "Could not find viz object": [ + "No se pudo encontrar el objeto de visualización" + ], + "Show Chart": ["Mostrar Gráfico"], + "Add Chart": ["Añadir Gráfico"], + "Edit Chart": ["Editar Gráfico"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Estos parámetros se generan dinámicamente al hacer clic en el botón Guardar o sobrescribir en la vista de exploración. Este objeto JSON se expone aquí como referencia y para usuarios avanzados que quieran modificar parámetros específicos." + ], + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ "" ], + "Creator": ["Creador"], "Datasource": ["Fuente de datos"], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [ - "El tipo de fuente de datos es necesario cuando se especifica un `datasource_id`" + "Last Modified": ["Última modificación"], + "Parameters": ["Parámetros"], + "Chart": ["Gráfico"], + "Name": ["Nombre"], + "Visualization Type": ["Tipo de Visualización"], + "Show Dashboard": ["Mostrar Dashboard"], + "Add Dashboard": ["Añadir Dashboard"], + "Edit Dashboard": ["Editar Dashboard"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Este objeto JSON describe la posición de los widgets en el panel de control. Se genera dinámicamente al ajustar el tamaño y las posiciones de los widgets mediante la función de arrastrar y soltar en la vista del tablero" ], - "Date filter": ["Filtro de Fecha"], - "Date/Time": ["Fecha/Hora"], - "Datetime Format": ["Formato FechaHora"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "No se ha proporcionado una columna de fecha y hora y es requerida por este tipo de gráfico" + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "El css para dashboards de manera individual puede ser modificado aquí, o en la vista del dashboard donde los cambios se ven de forma inmediata" ], - "Datetime format": ["Formato Fecha/Hora"], - "Day (freq=D)": [""], - "Db engine did not return all queried columns": [""], - "December": ["Diciembre"], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], + "To get a readable URL for your dashboard": [ + "Para obtener una URL legible para tu panel de control" + ], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Este objeto JSON se genera dinámicamente al hacer clic en el botón Guardar o sobrescribir en la vista del Dashboard. Se expone aquí como referencia y para usuarios avanzados que quieran modificar parámetros específicos." + ], + "Owners is a list of users who can alter the dashboard.": [ + "Propietarios es una lista de usuarios que pueden alterar el panel de control." + ], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "" + ], + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Identifica si el dashboard es visible en la lista de dashboards" + ], + "Dashboard": ["Dashboard"], + "Title": ["Título"], + "Slug": ["Slug"], + "Roles": ["Roles"], + "Published": ["Publicado"], + "Position JSON": ["Posición JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["Metadatos JSON"], + "Export": ["Exportar"], + "Export dashboards?": ["¿Exportar Dashboards?"], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Solo se permiten las siguientes extensiones de archivo: %(allowed_extensions)s" + ], + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], + "Delimiter": ["Delimitador"], + ",": [""], + ".": [""], + "Fail": ["Falla"], + "Replace": ["Remplazar"], + "Append": ["Agregar"], + "Skip Initial Space": ["Omitir Espacio Inicial"], + "Skip Blank Lines": ["Saltar líneas vacías"], + "Day First": [""], + "DD/MM format dates, international and European format": [""], "Decimal Character": ["Caracter Decimal"], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Multiple Layers": ["Deck.gl - Capas Múltiples"], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": ["Por defecto"], - "Default Endpoint": ["Endpoint predeterminado"], - "Default URL": ["Url por defecto"], - "Default URL to redirect to when accessing from the dataset list page": [ + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ "" ], - "Default latitude": [""], - "Default longitude": [""], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Index Column": ["Columna de Índice"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Default value must be set when \"Filter has default value\" is checked": [ + "Dataframe Index": ["Índice de Dataframe"], + "Column Label(s)": ["Etiqueta(s) de columna"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ "" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Header Row": ["Fila de Encabezado"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Rows to Read": ["Filas a Leer"], + "Skip Rows": ["Omitir Filas"], + "Name of table to be created from excel data.": [ + "Nombre de la tabla que se creará a partir de datos de excel." + ], + "Excel File": ["Archivo de Excel"], + "Select a Excel file to be uploaded to a database.": [ + "Selecciona un archivo de Excel para ser cargado a una base de datos." + ], + "Sheet Name": ["Nombre de Hoja"], + "Strings used for sheet names (default is the first sheet).": [ + "Cadenas usadas para nombres de hojas (por defecto es la primera hoja)." + ], + "Specify a schema (if database flavor supports this).": [ + "Especifica un esquema (si el sistema de base de datos lo soporta)." + ], + "Table Exists": ["Tabla Existe"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Define un una ventana de desplazamiento móvil para aplicar, funciona junto con el cuadro de texto [Periods]" + "Number of rows to skip at start of file.": [ + "Número de filas a omitir al inicio del archivo." ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Define la agrupación de entidades. Cada serie se muestra como un color específico en el gráfico y tiene una leyenda" + "Number of rows of file to read.": [ + "Número de filas del archivo a leer." ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Define el tamaño de la función de ventana móvil, en relación con la granularidad de tiempo seleccionada" + "Parse Dates": ["Parsear Fechas"], + "A comma separated list of columns that should be parsed as dates.": [ + "Una lista separada por comas de columnas que deben ser parseadas como fechas." ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Character to interpret as decimal point.": [ + "Caracter que interpreta como punto decimal." + ], + "Write dataframe index as a column.": [ + "Escribe el índice del dataframe como una columna." + ], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Delete": ["Eliminar"], - "Delete %s?": ["¿Eliminar %s?"], - "Delete Annotation?": ["¿Eliminar anotación?"], - "Delete Database?": ["¿Eliminar base de datos?"], - "Delete Dataset?": ["¿Eliminar conjunto de datos?"], - "Delete Layer?": ["¿Eliminar capa?"], - "Delete Query?": ["¿Realmente quieres eliminar la consulta?"], - "Delete Template?": ["Plantillas CSS"], - "Delete all Really?": ["¿Realmente quieres borrar todo?"], - "Delete annotation": ["Eliminar anotación"], - "Delete dashboard tab?": ["¿Quieres eliminar la pestaña del dashboard?"], - "Delete database": ["Eliminar base de datos"], - "Delete query": ["Eliminar consulta"], - "Delete template": ["Eliminar plantilla"], - "Delete this container and save to remove this message.": [""], - "Deleted %(num)d annotation": ["", "Deleted %(num)d annotations"], - "Deleted %(num)d annotation layer": [ - "", - "Deleted %(num)d annotation layers" + "Null values": ["Valores Nulos"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "" ], - "Deleted %(num)d chart": ["", "Deleted %(num)d charts"], - "Deleted %(num)d css template": ["", "Deleted %(num)d css templates"], - "Deleted %(num)d dashboard": ["", "Deleted %(num)d dashboards"], - "Deleted %(num)d dataset": [ - "Selecciona una base de datos", - "Selecciona una base de datos" + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "" ], - "Deleted %(num)d report schedule": [ - "", - "Deleted %(num)d report schedules" + "Databases": ["Bases de datos"], + "Show Database": ["Mostrar Base de Datos"], + "Add Database": ["Añadir Base de Datos"], + "Edit Database": ["Editar Base de Datos"], + "Expose this DB in SQL Lab": [ + "Mostrar esta base de datos en el laboratorio SQL" ], - "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], - "Deleted: %s": ["Eliminado: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Delimited long & lat single column": [ - "una sola columna con longitud y latitud delimitadas" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Permitir la opción CREAR TABLA COMO en el laboratorio SQL" ], - "Delimiter": ["Delimitador"], - "Demographics": [""], - "Description": ["Descripción"], - "Description (this can be seen in the list)": [ - "Descripción (se puede ver en la lista)" + "Allow CREATE VIEW AS option in SQL Lab": [ + "Permitie opción CREATE VIEW AS en el laboratorio SQL" ], - "Description text that shows up below your Big Number": [""], - "Deselect all": ["¿Realmente quieres borrar todo?"], - "Details of the certification": ["Detalles de la certificación"], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Identifica si el dashboard es visible en la lista de dashboards" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Permitir que los usuarios ejecuten instrucciones que no sean SELECT (UPDATE, DELETE, CREATE, ...) en el laboratorio SQL" ], - "Did you mean:": ["Quiciste decir:"], - "Difference": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Directed Force Layout": ["Disposición Dirigida Forzado"], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Cuando se permite la opción CREATE TABLE AS en el laboratorio SQL, esta opción hace que la tabla se cree en este esquema" ], - "Disable embedding?": [""], - "Discard": [""], - "Display column level total": [""], - "Display configuration": ["Configuración de visualización"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Display row level total": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "" ], - "Distribution - Bar Chart": ["Distribución - Gráfico de Barra"], - "Divider": ["División"], - "Do you want a donut or a pie?": [""], - "Domain": [""], - "Download as image": ["Descargar como imagen"], - "Download to CSV": [""], - "Draft": ["Borrador"], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ - "" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Si se selecciona, por favor, establezca los esquemas permitidos en Adicional" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "" + "Expose in SQL Lab": ["Mostrar en el laboratorio SQL"], + "Allow CREATE TABLE AS": ["Permitir CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Permitir CREATE VIEW AS"], + "Allow DML": ["Permitir DML"], + "CTAS Schema": ["Esquema CTAS"], + "SQLAlchemy URI": ["URI SQLAlchemy"], + "Chart Cache Timeout": [""], + "Secure Extra": [""], + "Root certificate": ["Certificado raíz"], + "Async Execution": ["Ejecución Asincrónica"], + "Impersonate the logged on user": ["Suplantar el usuario conectado"], + "Allow Csv Upload": ["Permitir carga de CSV"], + "Backend": ["Backend"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "El campo adicional no se puede decodificar por JSON. %(msg)s" ], - "Drill to detail: %s": [""], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ "" ], - "Duplicate tab": ["Duplicar pestaña"], - "Duration": ["Duración"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "CSV to Database configuration": ["Configuración de CSV a base de datos"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ - "" + "Excel to Database configuration": [ + "Configuración de Excel a base de datos" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ "" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": ["Duración: %s"], - "Dynamically search all filter values": [""], - "END (EXCLUSIVE)": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edit": ["Editar"], - "Edit CSS": ["Editar CSS"], - "Edit CSS Template": ["Editar Plantilla CSS"], - "Edit CSS template properties": ["Editar propiedades de plantilla CSS"], - "Edit Chart": ["Editar Gráfico"], - "Edit Column": ["Editar Columna"], - "Edit Dashboard": ["Editar Dashboard"], - "Edit Database": ["Editar Base de Datos"], - "Edit Dataset ": ["Editar Base de Datos"], - "Edit Log": ["Editar Registro"], - "Edit Metric": ["Editar Métrica"], - "Edit Plugin": ["Editar Columna"], - "Edit Saved Query": ["Editar Consulta Guardada"], - "Edit Table": ["Esitar Tabla"], - "Edit annotation": ["Editar anotación"], - "Edit annotation layer": ["Capas de Anotación"], - "Edit annotation layer properties": [ - "Editar propiedades de la capa de anotación" - ], - "Edit chart properties": ["Editar propiedades de gráfico"], - "Edit database": ["Editar Base de Datos"], - "Edit dataset": ["Editar Base de Datos"], - "Edit email report": [""], - "Edit properties": ["Editar propiedades"], - "Edit query": ["ditar consulta"], - "Edit template": ["Cargar una plantilla"], - "Edit template parameters": ["Editar parámetros de la plantilla"], - "Edit time range": ["Editar rango de tiempo"], - "Edited": ["Editado"], - "Editing 1 filter:": ["Editando 1 filtro:"], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Either the username or the password is wrong.": [""], - "Email reports active": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty query?": ["¿Consulta vacía?"], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Enable Filter Select": ["Habilitar selección de filtro"], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], - "Enable forecast": [""], - "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "Se encontró una entrada espacial NULL inválida, por favor considera filtrar esas entradas" - ], - "End": [""], - "End Time": ["Hora Final"], - "End date must be after start date": [ - "La fecha de inicio no puede ser superior a la de fin" - ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter a new title for the tab": [ - "Ingresa un nuevo título para la pestaña" + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": ["Registros"], + "Show Log": ["Mostrar Registro"], + "Add Log": ["Agregar Registro"], + "Edit Log": ["Editar Registro"], + "User": ["Usuario"], + "Action": ["Acción"], + "dttm": ["dttm"], + "JSON": [""], + "Time": ["Tiempo"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Una referencia a la configuración [Tiempo], teniendo en cuenta la granularidad." ], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": ["Entidad"], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Error en la expresión jinja en la cláusula HAVING: %(msg)s" + "Raw records": [""], + "Certified by %s": ["Certidicado por %s"], + "description": ["descripción"], + "bolt": ["tornillo"], + "Changing this control takes effect instantly": [ + "Los aambios en este control surten efecto de inmediato" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Error en la expresión jinja en los filtros RLS: %(msg)s" + "Show info tooltip": [""], + "SQL expression": ["Expresión SQL"], + "Label": ["Etiqueta"], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": ["Analíticos Avanzadas"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Esta sección contiene opciones que permiten el procesamiento analítico avanzado de los resultados de la consulta" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Error en la expresión jinja en la cláusula WHERE: %(msg)s" + "Rolling window": ["Ventana de desplazamiento"], + "Rolling function": ["Probar Conexión"], + "None": [""], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Define un una ventana de desplazamiento móvil para aplicar, funciona junto con el cuadro de texto [Periods]" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Error en la expresión jinja en el predicado de obtener valores: %(msg)s" + "Periods": ["Periodos"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Define el tamaño de la función de ventana móvil, en relación con la granularidad de tiempo seleccionada" ], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": ["Mensaje de error"], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Estimate cost": ["Estimar costo"], - "Estimate selected query cost": [ - "Estimar el costo de la consulta seleccionada" + "Min periods": ["Periodos Mínimos"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "El número mínimo de períodos de desplazamiento necesarios para mostrar un valor. Por ejemplo, si realizas una suma acumulada en 7 días, es posible que quieras que tu \"Período mínimo\" sea 7, de modo que todos los puntos de datos mostrados sean el total de 7 períodos. Esto ocultará el \"incremento\" que tendrá lugar durante los primeros 7 períodos." ], - "Estimate the cost before running a query": [ - "Estimar el costo antes de ejecutar una consulta" + "Time comparison": ["Columna de Tiempo"], + "Time shift": ["Desplazamiento de tiempo"], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Sobreponer una o más series de tiempo desde un período relativo. Se espera periodos de tiempo relativos en lenguaje natural (ejemplo: 24 horas, 7 días, 52 semanas, 365 días). Se admite texto libre." ], - "Event definition": [""], - "Event flow": ["Flujo de Eventos"], - "Every": ["Cada"], - "Evolution": [""], - "Examples": ["Ver ejemplos"], - "Excel File": ["Archivo de Excel"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Calculation type": ["Tipo de Cálculo"], + "Difference": [""], + "Rule": ["Regla"], + "1 minutely frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "Pandas resample rule": ["Regla de Remuestra Pandas"], + "Linear interpolation": [""], + "Pandas resample method": ["Método de Remuestra Pandas"], + "X Axis": ["Eje X"], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": ["Eje Y"], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Query": ["Consulta"], + "Enable forecast": [""], + "Enable forecasting": [""], + "How many periods into the future do we want to predict": [""], + "Yearly seasonality": [""], + "Yes": ["Sí"], + "No": ["No"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Excel to Database configuration": [ - "Configuración de Excel a base de datos" + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Excluded roles": [""], - "Executed query": ["Consulta ejecutada"], - "Execution log": ["Registro de ejecución"], - "Expand all": ["Expandir todo"], - "Expand data panel": [""], - "Expand tool bar": ["Expandir barra de herramientas"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Experimental": [""], - "Explore": ["Explorar"], - "Explore - %(table)s": ["Explorar - %(table)s"], - "Explore the result set in the data exploration view": [ - "Explorar el conjunto de resultados en la vista de exploración de datos" + "Time related form attributes": [ + "Atributos de formulario relacionados con el tiempo" ], - "Export": ["Exportar"], - "Export dashboards?": ["¿Exportar Dashboards?"], - "Export to YAML": ["Exportar a YAML"], - "Export to YAML?": ["¿Exportar a YAML?"], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": ["Mostrar en el laboratorio SQL"], - "Expose this DB in SQL Lab": [ - "Mostrar esta base de datos en el laboratorio SQL" + "Chart ID": ["ID de gráfico"], + "The id of the active chart": ["El id del gráfico activo"], + "Cache Timeout (seconds)": ["Tiempo de espera de caché (segundos)"], + "The number of seconds before expiring the cache": [ + "El número de segundos antes de caducar el caché." ], - "Expression": ["Expresión"], - "Extra": ["Extra"], - "Extra Controls": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Row": ["Hilera"], + "Series": ["Series"], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "El campo adicional no se puede decodificar por JSON. %(msg)s" + "Add dataset columns here to group the pivot table columns.": [""], + "Entity": ["Entidad"], + "This defines the element to be plotted on the chart": [ + "Esto define el elemento a trazar en el gráfico." ], - "Extra parameters for use in jinja templated queries": [ - "Parámetros extra para usar en consultas con plantillas jinja" + "Filters": ["Filtros"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "FEB": ["FEB"], - "FRI": ["VIE"], - "Factor to multiply the metric by": [""], - "Fail": ["Falla"], - "Failed": ["Falló"], - "Failed at retrieving results": ["Falla al recuperar los resultados"], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [ - "Fallo al verificar las opciones de selección: %s" + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Favorite": ["Favoritos"], - "Favorites": ["Favoritos"], - "February": ["Febrero"], - "Fetch Values Predicate": ["Predicado Obtención de Valores"], - "Fetch data preview": ["Obtener previsualización de datos"], - "Fetched %s": ["Obtenido %s"], - "Field cannot be decoded by JSON. %(msg)s": [ - "El campo no puede ser decodificado por JSON. %(msg)s" + "Sort by": ["Ordenar por"], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ + "" ], - "Field is required": ["El campo es obligatorio"], - "File": ["Archivo"], - "Fill all required fields to enable \"Default Value\"": [""], - "Filter List": ["Filtrar lista"], - "Filter configuration": ["Configuración de filtros"], - "Filter configuration for the filter box": [ - "Configuración de filtros en caja de filtros" + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "" ], - "Filter has default value": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter name": ["Valor del Filtro"], - "Filter only displays values relevant to selections made in other filters.": [ + "The dataset column/metric that returns the values on your chart's y-axis.": [ "" ], - "Filter results": ["ver resultados"], - "Filter sets (%(filterSetCount)d)": [""], - "Filter value (case sensitive)": [ - "Valor del filtro (sensible a mayúsculas/minúsculas)" + "A metric to use for color": ["Una métrica para usar para el color."], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "" ], - "Filter value list cannot be empty": [""], - "Filter your charts": ["Filtrar tus Gráficos"], - "Filterable": ["Filtrable"], - "Filters": ["Filtros"], - "Filters by columns": ["Filtrar por estado"], - "Filters by metrics": ["Filtrar por estado"], - "Filters configuration": ["Configuración de filtros"], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Drop a temporal column here or click": [""], + "Dimension to use on y-axis.": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [ + "El tipo de visualización a mostrar." + ], + "Use this to define a static color for all circles": [ + "Use esto para definir un color estático para todos los círculos" + ], + "all": [""], + "30 seconds": ["30 segundos"], + "1 minute": ["1 minuto"], + "5 minutes": ["5 minutos"], + "30 minutes": ["30 minutos"], + "1 hour": ["1 hora"], + "week": ["semana"], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": ["mes"], + "year": ["año"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "La granularidad del tiempo para la visualización. Ten en cuenta que puedes escribir y usar un lenguaje natural simple como en `10 seconds`, `1 day` o `56 weeks`" + ], + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Fixed color": ["Color fijo"], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Row limit": ["Límite filas"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Series limit": ["Límite de Serie"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "Force refresh": ["Forzar actualización"], - "Force refresh schema list": [""], - "Force refresh table list": [""], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formatted CSV attached in email": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Friction between nodes": [""], - "Friday": ["Viernes"], - "From date cannot be larger than to date": [ - "La fecha de inicio no puede ser posterior a la fecha final" + "Y Axis Format": ["Formato Eje Y"], + "The color scheme for rendering chart": [ + "El esquema de colores para la representación gráfica." ], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "General": [""], - "Generating link, please wait..": [""], - "Geo": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": ["Periodo de gracia"], - "Graph layout": [""], - "Gravity": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group by": ["Agrupar por"], - "Groupable": ["Agrupable"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Original value": [""], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Header": ["Encabezado"], - "Header Row": ["Fila de Encabezado"], - "Heatmap": ["Mapa de Calor"], - "Heatmap Options": [""], - "Height": ["Altura"], - "Height of the sparkline": [""], - "Hide layer": ["Ocultar capa"], - "Hide tool bar": ["Ocultar barra de herramientas"], - "Histogram": ["Histograma"], - "Home": ["Inicio"], - "Horizon Charts": ["Gráficos de Horizonte"], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": [""], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id of root node of the tree.": [""], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": ["hora"], + "day": ["día"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "If a metric is specified, sorting will be done based on the metric value": [ + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "The number color \"steps\"": [""], + "Whether to display the legend (toggles)": [""], + "Whether to display the numerical values within the cells": [""], + "Whether to display the metric name as a title": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Business": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Si se selecciona, por favor, establezca los esquemas permitidos en Adicional" - ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Source": ["Fuente"], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate the logged on user": ["Suplantar el usuario conectado"], - "Import": ["Import"], - "Import %s": ["Importar %s"], - "Import Dashboard(s)": ["Importar Dashboard(s)"], - "Import Dashboards": ["Importar Dashboards"], - "Import a table definition": ["Importar definición de tabla"], - "Import chart failed for an unknown reason": [ - "Importar el gráfico falló por una razón desconocida" - ], - "Import dashboard failed for an unknown reason": [ - "Importar el Dashboard falló por una razón desconocida" - ], - "Import dashboards": ["Importar dashboards"], - "Import database failed for an unknown reason": [ - "Importar la base de datos falló por una razón desconocida" + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "" ], - "Import dataset failed for an unknown reason": [ - "Importar el conjunto de datos falló por una razón desconocida" + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "" ], + "2D": [""], + "Geo": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Order by entity id": [""], "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Index Column": ["Columna de Índice"], - "Info": ["Información"], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": ["Filtrado Instantáneo"], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Select any columns for metadata inspection": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "Invalid JSON": ["JSON inválido"], - "Invalid certificate": ["Certificado Inválido"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Progressive": [""], + "Heatmap Options": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "Invalid cron expression": ["Expresión cron inválida"], - "Invalid cumulative operator: %(operator)s": [ - "Operador acumulativo inválido: %(operator)s" - ], - "Invalid date/timestamp format": ["Formato de fecha/hora inválido"], - "Invalid filter configuration, please select a column": [ - "Configuración de filtro invalido, por favor selecciona una columna" - ], - "Invalid filter operation type: %(op)s": [ - "Tipo de operación de filtrado inválida: %(op)s" + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], + "Left Margin": [""], + "Left margin, in pixels, allowing for more room for axis labels": [""], + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "" ], - "Invalid geodetic string": ["Cadena geodésica inválida"], - "Invalid geohash string": ["Cadena de geohash inválida"], - "Invalid input": [""], - "Invalid lat/long configuration.": [ - "Configuración de latitud/longitud inválida." + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ + "" ], - "Invalid longitude/latitude": ["Longitud/latitud inválidas"], - "Invalid numpy function: %(operator)s": [ - "Función numpy inválida: %(operator)s" + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "" ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Opciones inválidas para %(rolling_type)s: %(options)s" + "Sizes of vehicles": [""], + "Employment and education": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Whether to make the histogram cumulative": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "" ], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid rolling_type: %(type)s": ["rolling_type inválido: %(type)s"], - "Invalid spatial point encountered: %s": [ - "Punto espacial inválido encontrado: %s" + "Population age data": [""], + "Contribution": ["Contribución"], + "Compute the contribution to the total": [ + "Calcular la contribución al total" ], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": ["Selección inversa"], - "Is dimension": ["Es dimensión"], - "Is favorite": ["Favoritos"], - "Is filterable": ["Es filtrable"], - "Is tagged": [""], - "Is temporal": ["Es temporal"], - "Is true": [""], - "Issue 1001 - The database is under an unusual load.": [ - "Issue 1001 - La base de datos tiene una carga inusualmente elevada." + "Pixel height of each series": [""], + "Value Domain": [""], + "overall": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "" ], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": ["ENE"], - "JSON": [""], - "JSON Metadata": ["Metadatos JSON"], - "JSON metadata": ["Metadatos JSON"], - "JUL": ["JUL"], - "JUN": ["JUN"], - "January": ["Enero"], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Dark Cyan": [""], + "Gold": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "July": ["Julio"], - "June": ["Junio"], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": ["Continuar editando"], - "Key": [""], - "Keys for table": ["Claves de la tabla"], - "Label": ["Etiqueta"], - "Label Line": [""], - "Label for your query": ["Etiqueta para tu consulta"], - "Label threshold": [""], + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], "Labelling": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Last Changed": ["Último cambio"], - "Last Modified": ["Última modificación"], - "Last Updated %s": ["Última actualización %s"], - "Last available value seen on %s": [""], - "Last modified": ["Última modificación"], - "Last modified by %s": ["Última modificación por %s"], - "Last run": ["Último cambio"], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": ["Configuración"], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "Left Margin": [""], - "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Legacy": [""], - "Legend type": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light mode": [""], - "Like": [""], - "Limit reached": ["Límite alcanzado"], - "Limit selector values": ["Limitar valores del selector"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "" - ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line interpolation as defined by d3.js": [""], - "Line width": ["Grosor de línea"], - "Linear color scheme": ["Esquema de Color Lineal"], - "Linear interpolation": [""], - "Link Copied!": ["Enlace Copiado!"], - "List Saved Query": ["Mostrar Consultas Guardadas"], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "Live CSS editor": ["Editor CSS"], + "Visual Tweaks": [""], "Live render": [""], - "Load a CSS template": ["Cargar una plantilla CSS"], - "Loaded data cached": ["Datos cargados en caché"], - "Loaded from cache": ["Cargado de caché"], - "Loading...": [""], - "Log Scale": [""], - "Log retention": ["Retención de registros"], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["Acceder"], - "Logout": ["Salir"], - "Logs": ["Registros"], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude columns": ["Columnas de longitus y latitud"], + "Points and clusters will update as the viewport is being changed": [""], + "Dark": [""], + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Opacidad"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "The color for points and clusters in RGB": [""], + "Default longitude": [""], "Longitude of default viewport": [""], - "MAR": ["MAR"], - "MAY": ["MAY"], - "MON": ["LUN"], - "Main Datetime Column": ["Columna principal de fecha y hora"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Default latitude": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Solicitud mal formada. Se esperan argumentos de slice_id o table_name y db_name" - ], - "Manage": ["Administrar"], - "Mandatory": ["Oblugatorio"], + "Light mode": [""], + "Dark mode": [""], "MapBox": [""], - "Mapbox": [""], - "March": ["Marzo"], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markup type": ["Tipo de Markup"], - "Max": ["Máx"], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Scatter": [""], + "Transformable": ["Transformable"], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "Maximum value on the gauge axis": [""], - "May": ["Mayo"], + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "" + ], + "Ignore time": [""], + "Standard time series": [""], "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Metric percent change in value from `since` to `until`": [""], + "Metric factor change from `since` to `until`": [""], + "Use the Advanced Analytics options below": [ + "Usar la opción de Analítica Avanzada debajo " + ], + "Settings for time series": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": ["Contenido del mensaje"], - "Metadata has been synced": ["Los metadatos se han sincronizado"], + "Log Scale": [""], + "Use a log scale": ["Usar escala logarítimica"], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ + "" + ], + "cumsum": [""], + "30 days": ["30 días"], + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], "Method": ["Método"], - "Metric": ["Métrica"], - "Metric '%(metric)s' does not exist": [ - "La métrica '%(metric)s' no existe" + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Categorical": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "" ], - "Metric assigned to the [X] axis": ["Métrica asignada al eje [X]"], - "Metric assigned to the [Y] axis": ["Métrica asignada al eje [Y]"], - "Metric change in value from `since` to `until`": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": ["La métrica [%s] esta duplicada"], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to sort the results by": [ - "Métrica con la cual ordenar los resultados." + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "" ], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Multi-Layers": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ "" ], - "Metrics": ["Métricas"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "Whether to display bubbles on top of countries": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ "" ], - "Midnight": [""], - "Min": ["Mín"], - "Min periods": ["Periodos Mínimos"], - "Min/max (no outliers)": [""], - "Mine": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Metric that defines the size of the bubble": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Mixed Time-Series": [""], - "Modified": ["Modificado"], - "Modified by": ["Modificado por"], - "Modified columns: %s": ["Columnas modificadas: %s"], - "Monday": ["Lunes"], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], - "Multi-Layers": [""], - "Multi-Levels": [""], "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Popular": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deckGL": [""], + "Point to your spatial columns": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Advanced": ["Avanzado"], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "Must be unique": ["Debe ser único"], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Debe tener una columna [Group By] para tener 'count' como [Etiqueta]" - ], - "Must have at least one numeric column specified": [ - "Debe especificarse al menos una columna numérica" + "Spatial": ["Espacial"], + "Experimental": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "" ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "My metric": ["Métrica"], - "N/A": [""], - "NOV": ["NOV"], - "NOW": [""], - "Name": ["Nombre"], - "Name is required": ["Nombre es requerido"], - "Name must be unique": ["El nombre debe ser único"], - "Name of table to be created from excel data.": [ - "Nombre de la tabla que se creará a partir de datos de excel." + "deck.gl Geojson": [""], + "Height": ["Altura"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "" ], - "Name of the column containing the id of the parent node": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [ - "Nombre de la tabla que existe en la fuente de datos." - ], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error.": ["Error de red."], - "New chart": ["Nuevo gráfico"], - "New columns added: %s": ["Nuevas columnas añadidas: %s"], - "New tab": ["Nueva pestaña"], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": ["Siguiente"], - "No": ["No"], - "No %s yet": ["Aún no hay %s"], - "No Access!": ["Sin Acceso!"], - "No annotation layers yet": ["Aún no hay capas de anotación"], - "No annotation yet": ["Aún no hay anotaciones"], - "No charts": ["No hay gráficos"], - "No dashboards": ["No hay dashboards"], - "No data": ["No hay datos"], - "No data after filtering or data is NULL for the latest time record": [ + "deck.gl Grid": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ "" ], - "No data in file": ["No hay datos en el archivo"], - "No databases match your search": [""], - "No favorite charts yet, go click on stars!": [ - "No hay gráficos favoritos aun, clica en la estrella!" + "Intensity Radius is the radius at which the weight is distributed": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "" ], - "No favorite dashboards yet, go click on stars!": [ - "No hay dashboards favoritos aun, clica en la estrella!" + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Opacity, expects values between 0 and 100": [""], + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Whether to apply filter when items are clicked": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "" ], - "No filter is selected.": ["Ningún filtro seleccionado"], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No records found": ["No se encontraron registros"], - "No results found": ["No se han encontrado resultados"], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Unit": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No stored results found, you need to re-run your query": [ - "No se encontraron resultados almacenados, necesitas ejecutar tu consulta de nuevo" + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "No se encontró la columna especificada. Para filtrar por una métrica, intenta la pestaña SQL Personalizado" + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "" ], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "None": [""], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not null": ["No nulo"], - "Not up to date": [""], - "Nothing triggered": ["Nada disparado"], - "Notification method": ["Método de notificación"], - "November": ["Noviembre"], - "Null or Empty": ["Nulo o Vacío"], - "Null values": ["Valores Nulos"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "deck.gl Scatterplot": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read.": [ - "Número de filas del archivo a leer." + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ + "" ], - "Number of rows to skip at start of file.": [ - "Número de filas a omitir al inicio del archivo." + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ + "" ], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "OCT": ["OCT"], - "OK": ["OK"], - "OVERWRITE": ["SOBRESCRIBIR"], - "October": ["Octubre"], - "Offline": ["Desconectado"], - "Offset": ["Desplazamiento"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ "" ], - "One or many controls to pivot as columns": [ - "Uno o varios controles para pivotar como columnas" + "The database columns that contains lines information": [""], + "Line width": ["Grosor de línea"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "" ], - "One or many metrics to display": ["Una o varias métricas para mostrar"], - "One or more columns already exist": ["Una o más columnas ya existen"], - "One or more columns are duplicated": [ - "Una o más columnas están duplicadas" + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Fixed point radius": [""], + "Factor to multiply the metric by": [""], + "geohash (square)": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "" ], - "One or more columns do not exist": ["Una o más columnas no existen"], - "One or more metrics already exist": ["Una o más métricas ya existen"], - "One or more metrics are duplicated": [ - "Una o más métricas están duplicadas" + "X Tick Layout": [""], + "The way the ticks are laid out on the X-axis": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [ + "Usar escala logarítimica para el Eje Y" ], - "One or more metrics do not exist": ["Una o más métricas no existen"], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "One ore more annotation layers failed loading.": [ - "Una o más capas de anotación fallaron al cargar." + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "" ], - "Only Total": [""], - "Only `SELECT` statements are allowed": [ - "Solo las consultas `SELECT` estan permitidas en esta base de datos" + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "" ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [""], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Continuous": [""], + "nvd3": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Only single queries supported": [ - "Solo consultas sencillas están soportadas" + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "" ], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Solo se permiten las siguientes extensiones de archivo: %(allowed_extensions)s" + "Bar": [""], + "Vertical": [""], + "Box Plot": ["Diagrama de Caja"], + "X Log Scale": [""], + "Use a log scale for the X-axis": [ + "Usar escala logarítimica para el Eje X" ], - "Opacity": ["Opacidad"], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["Nombre de la Fuente de Datos"], - "Open in SQL Lab": ["Ejecutar en Laboratiorio SQL"], - "Open query in SQL Lab": ["Ejecutar en Laboratiorio SQL"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ "" ], - "Operator undefined for aggregator: %(name)s": [ - "Operador no definido para el agregado: %(name)s" - ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Contenido opcional CA_BUNDLE para validar las solicitudes HTTPS. Solo disponible en algunos motores de base de datos." + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "" ], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original table column order": ["Orden original de columna de tabla"], - "Original value": [""], - "Orthogonal": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Sobreponer una o más series de tiempo desde un período relativo. Se espera periodos de tiempo relativos en lenguaje natural (ejemplo: 24 horas, 7 días, 52 semanas, 365 días). Se admite texto libre." + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Sort bars by x labels.": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ "" ], - "Overwrite": ["Sobrescribir"], - "Overwrite & Explore": ["Sobreescribir y Explorar"], - "Overwrite Dashboard [%s]": ["Sobrescribir el Dashboard [%s]"], - "Overwrite text in the editor with a query on this table": [ - "Sobreescribir texto en el editor con una consulta sobre esta tabla" - ], - "Owned Created or Favored": [""], - "Owner": ["Propietario"], - "Owners": ["Propietarios"], - "Owners are invalid": ["Los propietarios son invalidos"], - "Owners is a list of users who can alter the dashboard.": [ - "Propietarios es una lista de usuarios que pueden alterar el panel de control." + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Value": ["Valor"], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Do you want a donut or a pie?": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": ["Método de Remuestra Pandas"], - "Pandas resample rule": ["Regla de Remuestra Pandas"], - "Parallel Coordinates": ["Coordenadas Paralelas"], - "Parameter error": ["Parámetros"], - "Parameters": ["Parámetros"], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": ["Parsear Fechas"], - "Part of a Whole": [""], - "Partition Diagram": ["Partición de diagrama"], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], "Percentage threshold": [""], - "Performance": [""], - "Period average": [""], - "Periods": ["Periodos"], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [""], - "Physical": ["Tabla física"], - "Physical (table or view)": ["Tabla física"], - "Physical dataset": ["Conjunto de datos físico"], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Elige una granularidad en la sección de tiempo o desmarca 'Incluir tiempo'" - ], - "Pick a metric for x, y and size": [ - "Elige una métrica para 'x', 'y' y 'tamaño'" - ], - "Pick a metric to display": ["Elige qué métrica mostrar"], - "Pick a metric!": ["Elige una métrica!"], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "Elige una granularidad de tiempo para tus series temporales." - ], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [ - "Elige al menos un campo para [Series]" + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ + "" ], - "Pick at least one metric": ["Elige al menos una métrica"], - "Pick exactly 2 columns as [Source / Target]": [ - "Elige exactamente 2 columnas como [Origen / Destino]" + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": ["No hay datos"], + "No data after filtering or data is NULL for the latest time record": [ "" ], - "Pick your favorite markup language": [ - "Elige tu idioma favorito de markup" + "Try applying different filters or ensuring your datasource has data": [ + "Intente aplicar filtros diferentes o asegúrese de que la fuente de datos tiene información" ], - "Pivot Table": ["Tabla Dinámica"], - "Pivot operation must include at least one aggregate": [ - "La operación de pivote debe incluir al menos un agregado" + "Big Number Font Size": [""], + "Small": [""], + "Normal": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Description text that shows up below your Big Number": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "" ], - "Pivot operation requires at least one index": [ - "La operación de pivote requiere al menos un índice" + "With a subheader": [""], + "Big Number": ["Número Grande"], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "" ], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Big Number with Trendline": ["Número Grande con Línea de Tendencia"], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Please choose different metrics on left and right axis": [ - "Por favor, elige diferentes métricas en el eje izquierdo y derecho" + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": ["Truncar el eje Y"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Truncar el eje Y. Puede ser sobreescrito al especificar un límite máximo o mínimo" ], - "Please confirm": ["Confirme"], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [ - "Por favor, introduce un URI SQLAlchemy para probar" + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "" ], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [ - "Por favor, guarda la consulta para habilitar el compartir" + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "What should be shown as the label": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "" ], - "Please save your chart first, then try creating a new email report.": [ + "Sequential": [""], + "General": [""], + "Min": ["Mín"], + "Minimum value on the gauge axis": [""], + "Max": ["Máx"], + "Maximum value on the gauge axis": [""], + "Angle at which to start progress axis": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Whether to show the progress of gauge chart": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [ - "Por favor especifica 3 etiquetas de métrica distintas" + "Style the ends of the progress bar with a round cap": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "" ], - "Plot the distance (like flight paths) between origin and destination.": [ + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "Plugins": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polyline": [""], - "Pop Tab Link": ["Pop Tab Link"], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Name of the source nodes": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": ["Posición JSON"], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter available values": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "El predicado aplicado al obtener un valor distinto para rellenar el componente de control de filtro. Soporta la sintaxis de la plantilla jinja. Se aplica solo cuando `Habilitar selección de filtro` está activado." + "Category of target nodes": [""], + "Layout": [""], + "Graph layout": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Multiple": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "" ], - "Preview": ["Previsualizar"], - "Preview: `%s`": ["Previsualizar: `%s`"], - "Previous": ["Anterior"], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Profile": ["Perfil"], - "Profile picture provided by Gravatar": [ - "Imagen de Perfil provista por Gravatar" + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "" ], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": ["Publicado"], - "Put labels outside": [""], - "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": ["Pon tu código aquí"], - "Python datetime string pattern": ["Patrón datetime de Python"], - "QUERY DATA IN SQL LAB": [""], - "Query": ["Consulta"], - "Query %s: %s": [""], - "Query History": ["Historial de la consulta"], - "Query history": ["Historial de la Consulta"], - "Query in a new tab": ["Consulta en nueva pestaña"], - "Query is too complex and takes too long to run.": [""], - "Query name": ["Nombre de la consulta"], - "Query preview": ["Previsualización de Datos"], - "Query was stopped.": ["La consulta ha sido detenida."], - "RANGE TYPE": ["TIPO DE RANGO"], - "Radar": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Raw records": [""], - "Rebuild": [""], - "Recent activity": ["Actividad Reciente"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Aquí aparecerán los gráficos, los dashboards y las consultas guardadas recientemente" - ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Aquí aparecerán los gráficos, los dashboards y las consultas editadas recientemente" - ], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Aquí aparecerán los gráficos, los dashboards y las consultas vistas recientemente" - ], - "Recents": ["Recientes"], - "Recipients are separated by \",\" or \";\"": [ - "Los destinatarios están separados por \",\" o \";\"" + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion strength between nodes": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "" ], - "Recommended tags": [""], - "Record Count": ["Número de Registros"], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Redirige a este punto al hacer clic en la tabla de la lista de tablas" + "Structural": [""], + "Whether to sort descending or ascending": [ + "Ordenar descendente o ascendente" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Marker": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary or secondary y-axis": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Referenced columns not available in DataFrame.": [ - "Columnas referenciadas no disponibles en DataFrame." - ], - "Refetch results": ["ver resultados"], - "Refresh": ["Intervlo de actualización"], - "Refresh dashboard": ["Actualizar dashboard automáticamente"], - "Refresh frequency": ["Frecuencia de actualización"], - "Refresh interval": ["Intérvalo de actualización"], - "Refresh table list": [""], - "Refresh the default values": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ "" ], - "Relationships between community channels": [""], - "Relative quantity": ["Cantidad relativa"], - "Remind me in 24 hours": [""], - "Remove": ["Eliminar"], - "Remove invalid filters": [""], - "Remove item": [""], - "Remove query from log": ["Eliminar consulta del historial"], - "Remove table preview": ["Eliminar vista previa de la tabla"], - "Removed columns: %s": ["Columnas eliminadas: %s"], - "Rename tab": ["Renombrar pestaña"], - "Replace": ["Remplazar"], - "Report Schedule could not be created.": [ - "El informe programado no ha podido ser creado." + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "" ], - "Report Schedule could not be deleted.": [ - "El informe programado no ha podido ser eliminado." + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Outer Radius": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "" ], - "Report Schedule could not be updated.": [ - "El informe programado no ha podido ser actualizado." + "The maximum value of metrics. It is an optional configuration": [""], + "Radar": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "" ], - "Report Schedule delete failed.": [ - "El informe programado no se pudo eliminar." + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "" ], - "Report Schedule execution failed when generating a screenshot.": [ - "La ejecución del informe programado falló al generar una captura de pantalla." + "When only a primary metric is provided, a categorical color scale is used.": [ + "" ], - "Report Schedule execution got an unexpected error.": [ - "La ejecución del informe programado falló por un error inesperado." + "When a secondary metric is provided, a linear color scale is used.": [ + "" ], - "Report Schedule is still working, refusing to re-compute.": [ - "El informe programado todavía está en proceso, rechazando la recomputación." + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "" ], - "Report Schedule log prune failed.": [ - "Los registros del informe programado no pudieron limpiarse." + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "" ], - "Report Schedule not found.": ["No se encuentra el informe programado."], - "Report Schedule parameters are invalid.": [ - "Los parametros del informe programado son inválidos" + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "" ], - "Report Schedule reached a working timeout.": [ - "El informe programado alcanzó el tiempo de espera máximo." + "zoom area": [""], + "restore zoom": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "" ], - "Report Schedule state not found": [ - "No se encontró el estado del informe programado" + "AXIS TITLE MARGIN": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Report failed": ["Informe fallido"], - "Report name": ["Nombre de informe"], - "Report schedule": ["Programar informe"], - "Report schedule unexpected error": [ - "Error inesperado del informe programado" + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "" ], - "Report sending": ["Envío de informe"], - "Report sent": ["Reporte enviado"], - "Reports": ["Informes"], - "Repulsion strength between nodes": [""], - "Request Permissions": ["Solicitar Permisos"], - "Request is incorrect: %(error)s": ["Petición incorrecta: %(error)s"], - "Request is not JSON": ["La petición no es JSON"], - "Request missing data field.": [""], - "Required": ["Requerido"], - "Required control values have been removed": [""], - "Reset state": ["Restablecer estado"], - "Resource already has an attached report.": [""], - "Results": ["Resultados"], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Start": ["Iniciar"], + "End": [""], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Return to specific datetime.": [""], - "Reverse lat/long ": ["latitud/longitud reversos"], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right axis metric": ["Métrica Eje Derecho"], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Layout type of tree": [""], + "Left to Right": [""], "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "Which relatives to highlight on hover": [""], + "Empty circle": [""], + "Rectangle": [""], + "Triangle": ["Triángulo"], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "El rol %(r)s se extendió para proporcionar el acceso al origen de datos %(ds)s" + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Key": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "" ], - "Roles": ["Roles"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Treemap": ["Mapa de Árbol"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "Roles to grant": ["Roles a conceder"], - "Rolling function": ["Probar Conexión"], - "Rolling window": ["Ventana de desplazamiento"], - "Root certificate": ["Certificado raíz"], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Row": ["Hilera"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "must have a value": [""], + "A handlebars template that is applied to the data": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "Row limit": ["Límite filas"], - "Rows": ["Filas"], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": ["Filas a Leer"], - "Rule": ["Regla"], - "Rule added": [""], - "Run": ["Ejecutar"], - "Run in SQL Lab": ["Ejecutar en Laboratiorio SQL"], - "Run query": ["Ejecutar consulta"], - "Run query (Ctrl + Return)": ["Ejecutar consulta (Ctrl + Enter)"], - "Run query in a new tab": ["Ejecutar consulta en otra pestaña"], - "Run selection": ["Probar Conexión"], - "Running": ["Ejecutando"], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": ["SÁB"], - "SEP": ["SEP"], - "SHA": [""], - "SQL": ["SQL"], - "SQL Copied!": ["Copiado!"], - "SQL Expression": ["Expresión SQL"], - "SQL Lab": ["Laboratorio SQL"], - "SQL Lab View": ["Vista de Laboratorio SQL"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "SQL Query": ["Consulta SQL"], - "SQL expression": ["Expresión SQL"], - "SQL query": ["Parar query"], - "SQLAlchemy URI": ["URI SQLAlchemy"], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "SUN": ["DOM"], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Sankey": [""], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite Streets": [""], - "Saturday": ["Sábado"], - "Save": ["Guardar"], - "Save & Explore": ["Guardar y Explorar"], - "Save & go to dashboard": ["Guardar e ir al Dashboard"], - "Save (Overwrite)": ["Guardar (Sobrescribir)"], - "Save as": ["Guardar como"], - "Save as new": ["Guardar como una consulta nueva"], - "Save as new chart": ["Guardar como gráfico nuevo"], - "Save as:": ["Guardar como:"], - "Save chart": ["Guardar gráfico"], - "Save dashboard": ["Guardar Dashboard"], - "Save for this session": ["Guardar para esta sesión"], - "Save or Overwrite Dataset": [""], - "Save query": ["Guardar Consulta"], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["Guardar"], - "Saved Queries": ["Consultas Guardadas"], - "Saved metric": ["Consultas Guardadas"], - "Saved queries": ["Consultas Guardadas"], - "Saved queries could not be deleted.": [ - "Los Gráficos no han podido eliminarse" + "Order results by selected columns": [""], + "Sort descending": ["Orden descendente"], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": ["Filas"], + "Columns to group by on the rows": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "" ], - "Saved query not found.": ["No se encuentra la consulta guardada."], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Schedule": ["Programar"], - "Schedule query": ["Guardar Consulta"], - "Schedule settings": ["Configuracion"], - "Schedule the query periodically": [ - "Programar la consulta periódicamente" + "Sum": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Maximum": [""], + "First": [""], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "" ], - "Scheduled": ["Programado"], - "Schema": ["Esquema"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Esquema, tal como se utiliza solo en algunas bases de datos como Postgres, Redshift y DB2" + "Show rows total": [""], + "Display row level total": [""], + "Display row level subtotal": [""], + "Display column level total": [""], + "Display column level subtotal": [""], + "Transpose pivot": ["Transponer pivot"], + "Swap rows and columns": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "" ], - "Scope": [""], - "Scoping": [""], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["Buscar"], - "Search / Filter": ["Buscar / Filtrar"], - "Search Metrics & Columns": ["Buscar Métricas y Columnas"], - "Search all filter options": ["Buscar / Filtrar"], - "Search by query text": ["Buscar por texto"], - "Search...": ["Buscar..."], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Secure Extra": [""], - "Secure extra": ["Seguridad"], - "Security": ["Seguridad"], - "Security & Access": ["Seguridad & Acceso"], - "See less": ["Ver menos"], - "See more": ["Ver más"], - "See table schema": ["Ver esquema de tabla"], - "Select ...": ["Selecciona ..."], - "Select a Excel file to be uploaded to a database.": [ - "Selecciona un archivo de Excel para ser cargado a una base de datos." + "D3 time format for datetime columns": [""], + "key a-z": [""], + "key z-a": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "" ], - "Select a database to upload the file to": [""], - "Select a visualization type": ["Selecciona un tipo de visualización"], - "Select any columns for metadata inspection": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Pivot Table": ["Tabla Dinámica"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": ["Totales"], + "Page length": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select start and end date": ["Seleciona fecha de inicio y de fin"], - "Select subject": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": ["Septiembre"], - "Sequential": [""], - "Series": ["Series"], - "Series chart type (line, bar etc)": [""], - "Series limit": ["Límite de Serie"], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": [ - "Configurar intervalo de actualización automática" + "Show": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "" ], - "Set filter mapping": ["Configurar mapeo de filtros"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "N/A": [""], + "The query couldn't be loaded": ["No se pudo cargar la consulta."], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "Settings": ["Configuración"], - "Settings for time series": [""], - "Share": ["Compartir"], - "Shared query": ["Guardar Consulta"], - "Sheet Name": ["Nombre de Hoja"], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [ - "La descripción corta debe ser única para esta capa" + "Your query could not be scheduled": [ + "No se pudo programar la consulta." ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Failed at retrieving results": ["Falla al recuperar los resultados"], + "Unknown error": ["Valor desconocido"], + "Query was stopped.": ["La consulta ha sido detenida."], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Show": [""], - "Show CREATE VIEW statement": ["Ver instrucción CREATE VIEW"], - "Show CSS Template": ["Mostrar Plantilla CSS"], - "Show Chart": ["Mostrar Gráfico"], - "Show Column": ["Mostrar Columna"], - "Show Dashboard": ["Mostrar Dashboard"], - "Show Database": ["Mostrar Base de Datos"], - "Show Less...": [""], - "Show Log": ["Mostrar Registro"], - "Show Markers": [""], - "Show Metric": ["Mostrar Métrica"], - "Show Saved Query": ["Mostrar Consulta Guardada"], - "Show Table": ["Mostrar Tabla"], - "Show Timestamp": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "No se pueden añadir nueva pestaña al back-end. Contacte al administrador." + ], + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Copy of %s": ["Copia de %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ "" ], - "Show info tooltip": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "" + "An error occurred while fetching tab state": [ + "Se produjo un error al recuperar el estado de la pestaña" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "An error occurred while removing tab. Please contact your administrator.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "An error occurred while removing query. Please contact your administrator.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "" + "Your query could not be saved": ["Tu consulta no pudo ser guardada"], + "Your query was saved": ["Tu consulta fue guardada"], + "Your query was updated": ["Tu consulta fue actualizada"], + "Your query could not be updated": [ + "Tu consulta no pudo ser actualizada" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "An error occurred while fetching table metadata. Please contact your administrator.": [ "" ], - "Showing %s of %s": ["Mostrando %s de %s"], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": ["Saltar líneas vacías"], - "Skip Initial Space": ["Omitir Espacio Inicial"], - "Skip Rows": ["Omitir Filas"], - "Slug": ["Slug"], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "An error occurred while expanding the table schema. Please contact your administrator.": [ "" ], - "Solid": [""], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [ - "Lo sentimos, hubo un error al obtener la información de la base de datos: %s" - ], - "Sorry there was an error fetching saved charts: ": [""], - "Sorry, An error occurred": ["Lo siento, ha ocurrido un error"], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, your browser does not support copying.": [ - "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "" ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "" ], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": ["Orden Descendente"], - "Sort bars by x labels.": [""], - "Sort by": ["Ordenar por"], - "Sort columns alphabetically": ["Ordenar columnas alfabéticamente"], - "Sort descending": ["Orden descendente"], - "Sort metric": ["Métroca de orden"], - "Sort series in ascending order": [""], - "Source": ["Fuente"], - "Source SQL": ["Fuente SQL"], - "Sparkline": [""], - "Spatial": ["Espacial"], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [ - "Especifica un esquema (si el sistema de base de datos lo soporta)." + "Shared query": ["Guardar Consulta"], + "The datasource couldn't be loaded": [ + "No se pudo cargar la fuente de datos" ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Especifica columnas duplicadas como \"X.0, X.1\"." + "An error occurred while creating the data source": [ + "Se produjo un error al crear el origen de datos" ], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["Iniciar"], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "" + "Foreign key": [""], + "Estimate selected query cost": [ + "Estimar el costo de la consulta seleccionada" ], - "State": ["Estado"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": ["Estado"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Stop": ["Detener"], - "Stop query": ["Detener consulta"], - "Stop running (Ctrl + x)": ["Detener (Ctrl + x)"], - "Stopped an unsafe database connection": [ - "Se ha detenido una conexión insegura a la base de datos" + "Estimate cost": ["Estimar costo"], + "Cost estimate": ["Estimación de costo"], + "Creating a data source and creating a new tab": [ + "Creando un origen de datos y creando una nueva pestaña" ], - "Strength to pull the graph toward center": [""], - "Strings used for sheet names (default is the first sheet).": [ - "Cadenas usadas para nombres de hojas (por defecto es la primera hoja)." + "An error occurred": ["Se produjo un error"], + "Explore the result set in the data exploration view": [ + "Explorar el conjunto de resultados en la vista de exploración de datos" ], - "Structural": [""], - "Style": ["Estilo"], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], + "Source SQL": ["Fuente SQL"], + "Run query": ["Ejecutar consulta"], + "Stop query": ["Detener consulta"], + "New tab": ["Nueva pestaña"], + "Keyboard shortcuts": [""], + "State": ["Estado"], + "Duration": ["Duración"], + "Results": ["Resultados"], + "Actions": ["Acciones"], "Success": ["Éxito"], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": [""], - "Sunday": ["Domingo"], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["Gráfico Superset"], - "Superset dashboard": ["Dashboard Superset"], - "Survey Responses": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" + "Failed": ["Falló"], + "Running": ["Ejecutando"], + "Offline": ["Desconectado"], + "Scheduled": ["Programado"], + "Unknown Status": ["EStado desconocido"], + "Edit": ["Editar"], + "Data preview": ["Previsualización de Datos"], + "Overwrite text in the editor with a query on this table": [ + "Sobreescribir texto en el editor con una consulta sobre esta tabla" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Run query in a new tab": ["Ejecutar consulta en otra pestaña"], + "Remove query from log": ["Eliminar consulta del historial"], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["Guardar y Explorar"], + "Overwrite & Explore": ["Sobreescribir y Explorar"], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], + "Filter results": ["ver resultados"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], - "Symbol of two ends of edge line": [""], - "Sync columns from source": ["Sincronizar las columnas desde la fuente"], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "TABLES": ["TABLAS"], - "THU": ["JUE"], - "TUE": ["MAR"], - "Tab name": ["Nombre de la pestaña"], - "Tab title": [""], - "Table": ["Tabla"], - "Table %(table)s wasn't found in the database %(db)s": [ - "La tabla %(table)s no fue encontrada en la base de datos %(db)s" - ], - "Table Exists": ["Tabla Existe"], - "Table Name": ["Nombre Tabla"], - "Table View": ["Vista de Tabla"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "The number of rows displayed is limited to %(rows)d by the query": [""], + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "Table name cannot contain a schema": [""], - "Table name undefined": ["Nombre de tabla indefinido"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], - "Tables": ["Tablas"], - "Tabs": ["Pestañas"], - "Tabular": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "" + "Track job": ["Seguir trabajo"], + "Database error": ["Base de datos"], + "was created": ["fue creada"], + "Query in a new tab": ["Consulta en nueva pestaña"], + "The query returned no data": ["La consulta no arrojó resultados"], + "Fetch data preview": ["Obtener previsualización de datos"], + "Refetch results": ["ver resultados"], + "Stop": ["Detener"], + "Run selection": ["Probar Conexión"], + "Run": ["Ejecutar"], + "Stop running (Ctrl + x)": ["Detener (Ctrl + x)"], + "Run query (Ctrl + Return)": ["Ejecutar consulta (Ctrl + Enter)"], + "Save": ["Guardar"], + "An error occurred saving dataset": [ + "Se produjo un error al crear el origen de datos" ], - "Template Name": ["Nombre Plantilla"], - "Template parameters": ["Parametros de plantilla"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "" + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": ["Guardar como una consulta nueva"], + "Undefined": ["Indefinido"], + "Save as": ["Guardar como"], + "Save query": ["Guardar Consulta"], + "Cancel": ["Cancelar"], + "Update": ["Actualizar"], + "Label for your query": ["Etiqueta para tu consulta"], + "Write a description for your query": [ + "Escribe una descripción para tu consulta" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "" + "Submit": [""], + "Schedule query": ["Guardar Consulta"], + "Schedule": ["Programar"], + "There was an error with your request": [ + "Hubo un error con tu solicitud" ], - "Test Connection": ["Probar Conexión"], - "Test connection": ["Probar Conexión"], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ - "" + "Please save the query to enable sharing": [ + "Por favor, guarda la consulta para habilitar el compartir" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "El css para dashboards de manera individual puede ser modificado aquí, o en la vista del dashboard donde los cambios se ven de forma inmediata" + "Copy query link to your clipboard": [ + "Copiar consulta de partición al portapapeles" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "" + "Copy link": ["Copiar enlace"], + "No stored results found, you need to re-run your query": [ + "No se encontraron resultados almacenados, necesitas ejecutar tu consulta de nuevo" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" + "Preview: `%s`": ["Previsualizar: `%s`"], + "Query history": ["Historial de la Consulta"], + "Schedule the query periodically": [ + "Programar la consulta periódicamente" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" + "You must run the query successfully first": [ + "Primero debes ejecutar la consulta exitosamente" ], - "The access requests seem to have been deleted": [ - "Las solicitudes de acceso parecen haber sido eliminadas" + "CREATE TABLE AS": ["Permitir CREATE TABLE AS"], + "CREATE VIEW AS": ["Permitir CREATE TABLE AS"], + "Estimate the cost before running a query": [ + "Estimar el costo antes de ejecutar una consulta" ], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "" + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Reset state": ["Restablecer estado"], + "Enter a new title for the tab": [ + "Ingresa un nuevo título para la pestaña" ], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "" + "Close tab": ["Cerrar pestaña"], + "Rename tab": ["Renombrar pestaña"], + "Expand tool bar": ["Expandir barra de herramientas"], + "Hide tool bar": ["Ocultar barra de herramientas"], + "Close all other tabs": ["Cerrar las demás pestañas"], + "Duplicate tab": ["Duplicar pestaña"], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "Se produjo un error al recuperar los metadatos de la tabla" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [ - "El esquema de colores para la representación gráfica." + "Copy partition query to clipboard": [ + "Copiar consulta de partición al portapapeles" ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "" + "latest partition:": ["última partición:"], + "Keys for table": ["Claves de la tabla"], + "View keys & indexes (%s)": ["Ver claves e índices (%s)"], + "Original table column order": ["Orden original de columna de tabla"], + "Sort columns alphabetically": ["Ordenar columnas alfabéticamente"], + "Copy SELECT statement to the clipboard": [ + "Copiar instrucción SELECT al portapapeles" ], - "The country code standard that Superset should expect to find in the [country] column": [ + "Show CREATE VIEW statement": ["Ver instrucción CREATE VIEW"], + "CREATE VIEW statement": ["Instrucción CREATE VIEW"], + "Remove table preview": ["Eliminar vista previa de la tabla"], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "syntax.": [""], + "Edit template parameters": ["Editar parámetros de la plantilla"], + "Invalid JSON": ["JSON inválido"], + "Untitled query": ["Consulta sin título"], + "%s%s": [""], + "Click to see difference": [""], + "Altered": ["Modificado"], + "Chart changes": ["El Gráfico ha cambiado"], + "Loaded data cached": ["Datos cargados en caché"], + "Loaded from cache": ["Cargado de caché"], + "Click to force-refresh": ["Haga clic para forzar la actualización"], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The dashboard has been saved": ["El dashboard ha sido guardado"], - "The data source seems to have been deleted": [ - "La fuente de datos parece haber sido eliminada" - ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "El tipo de datos que fue inferido por la base de datos. Puede ser necesario ingresar un tipo manualmente para columnas definidas por expresión. En la mayoría de los casos, los usuarios no deberían necesitar alterar esto." - ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "El conjunto de datos %s está vinculado a %s gráficos que aparecen en %s tableros. ¿Está seguro de que desea continuar? Eliminar el conjunto de datos romperá esos objetos." + "An error occurred while loading the SQL": [ + "Ocurrió un error al cargar SQL" ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "" + "Updating chart was stopped": [ + "La actualización del gráfico ha sido detenida" ], - "The dataset has been saved": [""], - "The datasource couldn't be loaded": [ - "No se pudo cargar la fuente de datos" + "An error occurred while rendering the visualization: %s": [ + "Ocurrió un error al crear la visualización: %s" ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Network error.": ["Error de red."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The distance between cells, in pixels": [""], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "You can't apply cross-filter on this data point.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": ["Cerrar"], + "Failed to load chart data.": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The host might be down, and can't be reached on the provided port.": [ - "" + "Drill to detail: %s": [""], + "No rows were returned for this dataset": [""], + "Copy": [""], + "Copy to clipboard": ["Copiar al portapapeles"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The hostname provided can't be resolved.": [""], - "The id of the active chart": ["El id del gráfico activo"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "every": ["cada"], + "every month": ["cada mes"], + "every day of the month": ["todos los días del mes"], + "day of the month": ["día del mes"], + "every day of the week": ["todos los días de la semana"], + "day of the week": ["día de la semana"], + "every hour": ["cada hora"], + "minute": ["minuto"], + "reboot": [""], + "Every": ["Cada"], + "in": ["en"], + "on": ["en"], + "and": ["y"], + "at": ["en"], + ":": [""], + "Invalid cron expression": ["Expresión cron inválida"], + "Clear": ["Limpiar"], + "Sunday": ["Domingo"], + "Monday": ["Lunes"], + "Tuesday": ["Martes"], + "Wednesday": ["Miércoles"], + "Thursday": ["Jueves"], + "Friday": ["Viernes"], + "Saturday": ["Sábado"], + "January": ["Enero"], + "February": ["Febrero"], + "March": ["Marzo"], + "April": ["Abril"], + "May": ["Mayo"], + "June": ["Junio"], + "July": ["Julio"], + "August": ["Agosto"], + "September": ["Septiembre"], + "October": ["Octubre"], + "November": ["Noviembre"], + "December": ["Diciembre"], + "SUN": ["DOM"], + "MON": ["LUN"], + "TUE": ["MAR"], + "WED": ["MIÉ"], + "THU": ["JUE"], + "FRI": ["VIE"], + "SAT": ["SÁB"], + "JAN": ["ENE"], + "FEB": ["FEB"], + "MAR": ["MAR"], + "APR": ["ABR"], + "MAY": ["MAY"], + "JUN": ["JUN"], + "JUL": ["JUL"], + "AUG": ["AGO"], + "SEP": ["SEP"], + "OCT": ["OCT"], + "NOV": ["NOV"], + "DEC": ["DIC"], + "Force refresh schema list": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "" + "dataset": [""], + "Connection": ["Probar Conexión"], + "Warning!": ["Mensaje de Aviso"], + "Search / Filter": ["Buscar / Filtrar"], + "Add item": ["Añadir elemento"], + "BOOLEAN": [""], + "Physical (table or view)": ["Tabla física"], + "Virtual (SQL)": [""], + "Data type": ["Tipo de dato"], + "Datetime format": ["Formato Fecha/Hora"], + "The pattern of timestamp format. For strings use ": [ + "Patrón de la fecha/hora. Para cadenas usar " ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Python datetime string pattern": ["Patrón datetime de Python"], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "" + "Person or group that has certified this metric": [""], + "Certified by": ["Certificado por"], + "Certification details": [""], + "Details of the certification": ["Detalles de la certificación"], + "Is dimension": ["Es dimensión"], + "Is filterable": ["Es filtrable"], + "Modified columns: %s": ["Columnas modificadas: %s"], + "Removed columns: %s": ["Columnas eliminadas: %s"], + "New columns added: %s": ["Nuevas columnas añadidas: %s"], + "Metadata has been synced": ["Los metadatos se han sincronizado"], + "An error has occurred": ["Ha ocurrido un error"], + "Column name [%s] is duplicated": ["La columna [%s] esta duplicada"], + "Metric name [%s] is duplicated": ["La métrica [%s] esta duplicada"], + "Calculated column [%s] requires an expression": [ + "Columna calculada [%s] requiere una expresión" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Invalid currency code in saved metrics": [""], + "Basic": ["Básico"], + "Default URL": ["Url por defecto"], + "Default URL to redirect to when accessing from the dataset list page": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "El número mínimo de períodos de desplazamiento necesarios para mostrar un valor. Por ejemplo, si realizas una suma acumulada en 7 días, es posible que quieras que tu \"Período mínimo\" sea 7, de modo que todos los puntos de datos mostrados sean el total de 7 períodos. Esto ocultará el \"incremento\" que tendrá lugar durante los primeros 7 períodos." - ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Autocomplete filters": ["Autocompletar filtros"], + "Whether to populate autocomplete filters options": [""], + "Autocomplete query predicate": ["Autocompletar predicado de consulta"], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Cache timeout": ["Tiempo de espera de caché"], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "" - ], - "The number of seconds before expiring the cache": [ - "El número de segundos antes de caducar el caché." + "Click the lock to make changes.": [ + "CLick en el candado para poder realizar cambios." ], - "The parameter %(parameters)s in your query is undefined.": [ - "", - "The following parameters in your query are undefined: %(parameters)s." + "Click the lock to prevent further changes.": [ + "Click sobre el candado para prevenir futuros cambios." ], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "virtual": [""], + "Dataset name": ["Nombre de la Fuente de Datos"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Physical": ["Tabla física"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Las contraseñas para las bases de datos a continuación se necesitan para importarlas juntas con los conjuntos de datos. Por favor, tenga en cuenta que la sección \"Seguro Extra\" y \"Certificado\" de la configuración de base de datos no están presentes en los archivos de exportación, y que deben añadirse manualmente después de la importación si se necesitan." - ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The pattern of timestamp format. For strings use ": [ - "Patrón de la fecha/hora. Para cadenas usar " - ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "D3 format": ["Formato D3"], + "Metric currency": [""], + "Optional warning about use of this metric": [""], + "Be careful.": ["Se precavido."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Sync columns from source": ["Sincronizar las columnas desde la fuente"], + "Calculated columns": ["Columnas calculadas"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "": [""], + "Settings": ["Configuración"], + "The dataset has been saved": [""], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": ["No se pudo cargar la consulta."], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "" + "Are you sure you want to save and apply changes?": [ + "¿Estas seguro de que quieres guardar y aplicar los cambios?" ], - "The query has a syntax error.": [""], - "The query returned no data": ["La consulta no arrojó resultados"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Confirm save": ["Confirmar guardado"], + "OK": ["OK"], + "Edit Dataset ": ["Editar Base de Datos"], + "Use legacy datasource editor": ["Usar editor de datasource legado"], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" + "DELETE": ["ELIMINAR"], + "delete": ["eliminar"], + "Type \"%s\" to confirm": ["Teclea \"%s\" para confirmar"], + "Click to edit": ["Click para editar"], + "You don't have the rights to alter this title.": [ + "No tienes los derechos para alterar este título." ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "No databases match your search": [""], + "There are no databases available": [""], + "Unexpected error": ["Error inesperado"], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": ["%s Error"], + "See more": ["Ver más"], + "See less": ["Ver menos"], + "Copy message": ["Mensaje de Aviso"], + "Did you mean:": ["Quiciste decir:"], + "Parameter error": ["Parámetros"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": ["Error de timeout"], + "Click to favorite/unfavorite": ["Haz clic para favorito/no favorito"], + "Cell content": ["Contenido de la celda"], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "OVERWRITE": ["SOBRESCRIBIR"], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["Sobrescribir"], + "Import": ["Import"], + "Import %s": ["Importar %s"], + "Last Updated %s": ["Última actualización %s"], + "+ %s more": [""], + "%s Selected": ["%s seleccionados"], + "Deselect all": ["¿Realmente quieres borrar todo?"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "%s-%s of %s": ["%s-%s de %s"], + "Last modified": ["Última modificación"], + "Modified by": ["Modificado por"], + "Created by": ["Creado por"], + "Created on": ["Creado el"], + "Menu actions trigger": [""], + "Select ...": ["Selecciona ..."], + "Click to cancel sorting": [""], + "See table schema": ["Ver esquema de tabla"], + "Force refresh table list": [""], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ "" ], - "The rich tooltip shows a list of all series for that point in time": [ + "Can not move top level tab into nested tabs": [""], + "This chart has been moved to a different filter scope.": [""], + "There was an issue fetching the favorite status of this dashboard.": [ "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "" + "There was an issue favoriting this dashboard.": [""], + "You do not have permissions to edit this dashboard.": [""], + "This dashboard was saved successfully.": [ + "Este Dashboard se guardó con éxito." ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "" + "You do not have permission to edit this dashboard": [ + "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." ], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "" + "Could not fetch all saved charts": [ + "No se pudieron cargar todos los gráficos guardados" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Sorry there was an error fetching saved charts: ": [""], + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "You have unsaved changes.": ["Tienes cambios no guardados."], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Create a new chart": ["Crear un nuevo Gráfico"], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "La granularidad del tiempo para la visualización. Ten en cuenta que puedes escribir y usar un lenguaje natural simple como en `10 seconds`, `1 day` o `56 weeks`" + "Delete this container and save to remove this message.": [""], + "Refresh interval": ["Intérvalo de actualización"], + "Refresh frequency": ["Frecuencia de actualización"], + "Are you sure you want to proceed?": ["¿Seguro que quieres proceder?"], + "Save for this session": ["Guardar para esta sesión"], + "You must pick a name for the new dashboard": [ + "Debes elegir un nombre para el nuevo Dashboard" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "La granularidad del tiempo para la visualización. Esto aplica una transformación de fecha para alterar tu columna de tiempo y define una nueva granularidad de tiempo. Las opciones aquí se definen en función del motor de base de datos en el código fuente de Superset." + "Save dashboard": ["Guardar Dashboard"], + "Overwrite Dashboard [%s]": ["Sobrescribir el Dashboard [%s]"], + "Save as:": ["Guardar como:"], + "[dashboard name]": ["[nombre del Dashboard]"], + "also copy (duplicate) charts": [ + "copiar (duplicar) tambien los Gráficos" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Create new chart": ["Crear un nuevo Gráfico"], + "Filter your charts": ["Filtrar tus Gráficos"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Added": ["Añadido"], + "Viz type": ["Tipo"], + "Dataset": ["Conjunto de Datos"], + "Superset chart": ["Gráfico Superset"], + "Check out this chart in dashboard:": [""], + "Layout elements": [""], + "Load a CSS template": ["Cargar una plantilla CSS"], + "Live CSS editor": ["Editor CSS"], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [ - "El tipo de visualización a mostrar." - ], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [ - "El usuario parece haber sido eliminado" + "Configure this dashboard to embed it into an external web application.": [ + "" ], - "The user/password combination is not valid (Incorrect password for user).": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "There are associated alerts or reports": [ - "Hay alertas o informes asociados" + "Enable embedding": [""], + "Redo the action": [""], + "Discard": [""], + "An error occurred while fetching available CSS templates": [ + "Ha ocurrido un error cargando los CSS disponibles" ], - "There are associated alerts or reports: %s,": [ - "Hay alertas o informes asociados: %s," + "Superset dashboard": ["Dashboard Superset"], + "Check out this dashboard: ": [""], + "Refresh dashboard": ["Actualizar dashboard automáticamente"], + "Edit properties": ["Editar propiedades"], + "Edit CSS": ["Editar CSS"], + "Share": ["Compartir"], + "Set filter mapping": ["Configurar mapeo de filtros"], + "Set auto-refresh interval": [ + "Configurar intervalo de actualización automática" ], - "There are no components added to this tab": [""], - "There are no databases available": [""], - "There are no filters in this dashboard.": [ - "No hay filtros en este dashboard" + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Apply": ["Aplicar"], + "A valid color scheme is required": [ + "Un esquema de colores válido es requerido" ], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "The dashboard has been saved": ["El dashboard ha sido guardado"], + "Access": ["Acceso"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ "" ], - "There is no chart definition associated with this component, could it have been deleted?": [ + "Colors": ["Colores"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Dashboard properties": ["Propiedades del Dashboard"], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "There was an error fetching your recent activity:": [ - "Hubo un error al obtener tu actividad reciente:" + "Basic information": ["Información Basica"], + "URL slug": ["nombre para URL"], + "A readable URL for your dashboard": [ + "Una URL amigable para el dashboard" ], - "There was an error with your request": [ - "Hubo un error con tu solicitud" + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": ["Metadatos JSON"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Este dashboard no es público, no serávisible en la lista de dashboards, Haz click aqui para publicarlo." ], - "There was an issue deleting %s: %s": [ - "Hubo un problema al eliminar %s: %s" + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "" ], - "There was an issue deleting the selected %s: %s": [ - "Hubo un error al eliminar el %s seleccionado: %s" - ], - "There was an issue deleting the selected annotations: %s": [ - "Hubo un problema al eliminar las anotaciones seleccionadas: %s" - ], - "There was an issue deleting the selected charts: %s": [ - "Hubo un problema al eliminar los gráficos seleccionados: %s" - ], - "There was an issue deleting the selected dashboards: ": [ - "Hubo un problema al eliminar los dashboards seleccionados: " - ], - "There was an issue deleting the selected datasets: %s": [ - "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" - ], - "There was an issue deleting the selected layers: %s": [ - "Hubo un problema al eliminar las capas seleccionadas: %s" - ], - "There was an issue deleting the selected queries: %s": [ - "Ocurrió un problema al eliminar las consultas seleccionadas: %s" + "This dashboard is published. Click to make it a draft.": [ + "Este dashboard es público, Haz click para hacerlo borrador" ], - "There was an issue deleting the selected templates: %s": [ - "Hubo un problema al eliminar las plantillas seleccionadas: %s" + "Draft": ["Borrador"], + "Annotation layers are still loading.": [""], + "One ore more annotation layers failed loading.": [ + "Una o más capas de anotación fallaron al cargar." ], - "There was an issue deleting: %s": ["Hubo un problema al eliminar: %s"], - "There was an issue favoriting this dashboard.": [""], - "There was an issue fetching the favorite status of this dashboard.": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], - "There was an issue previewing the selected query %s": [ - "Ocurrió un problema al previsualizar la consulta seleccionada %s" - ], - "There was an issue previewing the selected query. %s": [ - "Hubo un problema al previsualizar la consulta seleccionada. %s" - ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "Hay un bucle en tu Sankey, por favor proporciona un árbol. Aquí hay un enlace defectuoso: {}" - ], - "These are the tables this filter will be applied to.": [ - "Estas son las tablas a las que se aplicará este filtro." - ], - "These filters apply to the values available in the dropdowns": [ - "Estos filtros aplican para los valores disponibles en la caja de selección" - ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Estos parámetros se generan dinámicamente al hacer clic en el botón Guardar o sobrescribir en la vista de exploración. Este objeto JSON se expone aquí como referencia y para usuarios avanzados que quieran modificar parámetros específicos." - ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Este objeto JSON se genera dinámicamente al hacer clic en el botón Guardar o sobrescribir en la vista del Dashboard. Se expone aquí como referencia y para usuarios avanzados que quieran modificar parámetros específicos." - ], - "This action will permanently delete %s.": [ - "Esta acción eliminará permanentemente %s." - ], - "This action will permanently delete the layer.": [ - "Esta acción eliminará permanentemente la capa." + "Cached %s": ["En cache %s"], + "Fetched %s": ["Obtenido %s"], + "Query %s: %s": [""], + "Force refresh": ["Forzar actualización"], + "View query": ["Ver consulta"], + "Check out this chart: ": [""], + "Export to full .CSV": [""], + "Download as image": ["Descargar como imagen"], + "Something went wrong.": [""], + "Search...": ["Buscar..."], + "No filter is selected.": ["Ningún filtro seleccionado"], + "Editing 1 filter:": ["Editando 1 filtro:"], + "Batch editing %d filters:": ["Editando %d filtros simultáneamente:"], + "Configure filter scopes": ["Configurar ámbito de filtros"], + "There are no filters in this dashboard.": [ + "No hay filtros en este dashboard" ], - "This action will permanently delete the saved query.": [ - "Esta acción eliminará la consulta guardada de forma permanente" + "Expand all": ["Expandir todo"], + "Collapse all": ["Contraer todo"], + "This markdown component has an error.": [ + "Este componente markdown tiene un error." ], - "This action will permanently delete the template.": [ - "Esta acción eliminará permanentemente la plantilla." + "This markdown component has an error. Please revert your recent changes.": [ + "" ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Empty row": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "Delete dashboard tab?": ["¿Quieres eliminar la pestaña del dashboard?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "button (cmd + z) until you save your changes.": [""], + "CANCEL": ["CANCELAR"], + "Divider": ["División"], + "Header": ["Encabezado"], + "Tabs": ["Pestañas"], + "background": [""], + "Preview": ["Previsualizar"], + "Sorry, something went wrong. Try again later.": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "This chart has been moved to a different filter scope.": [""], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "Clear all": [""], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "All charts": ["Todos los gráficos"], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "Filters out of scope (%d)": [""], + "Filter only displays values relevant to selections made in other filters.": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Scope": [""], + "(Removed)": ["(Eliminado)"], + "Undo?": ["¿Deshacer?"], + "Add filters and dividers": [""], + "Cyclic dependency detected": [""], + "(deleted or invalid type)": [""], + "Add filter": ["Añadir filtro"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Scoping": [""], + "Time range": ["Periodo de tiempo"], + "Time column": ["Columna de Tiempo"], + "Time grain": ["Granularidad Temporal"], + "Group by": ["Agrupar por"], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["Valor del Filtro"], + "Name is required": ["Nombre es requerido"], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Sort ascending": ["Orden Descendente"], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Este dashboard no es público, no serávisible en la lista de dashboards, Haz click aqui para publicarlo." + "Sort metric": ["Métroca de orden"], + "Single value type": [""], + "Filter has default value": [""], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": ["Has eliminado este filtro."], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "" ], - "This dashboard is published. Click to make it a draft.": [ - "Este dashboard es público, Haz click para hacerlo borrador" + "Default value must be set when \"Filter value is required\" is checked": [ + "" ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "Apply to all panels": ["Aplicar a todos los páneles"], + "Apply to specific panels": ["Aplicar a páneles específicos"], + "Only selected panels will be affected by this filter": [""], + "All panels with this column will be affected by this filter": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "This dashboard was saved successfully.": [ - "Este Dashboard se guardó con éxito." + "Keep editing": ["Continuar editando"], + "Yes, cancel": ["Sí, cancelar"], + "Are you sure you want to cancel?": [ + "¿Estas seguro de que quieres guardar y aplicar los cambios?" ], - "This database is managed externally, and can't be edited in Superset": [ + "Error loading chart datasources. Filters may not work correctly.": [""], + "Transparent": ["Transparente"], + "All filters": ["Todos los filtros"], + "Medium": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "Equal to (=)": [""], + "Less than (<)": [""], + "Like": [""], + "Is true": [""], + "Time granularity": ["Granularidad de Tiempo"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ - "" + "One or many metrics to display": ["Una o varias métricas para mostrar"], + "Fixed color": ["Color fijo"], + "Right axis metric": ["Métrica Eje Derecho"], + "Choose a metric for right axis": [ + "Elige una métrica para el eje derecho" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [ - "Esto define el elemento a trazar en el gráfico." + "Linear color scheme": ["Esquema de Color Lineal"], + "Color metric": ["Métrica de Color"], + "One or many controls to pivot as columns": [ + "Uno o varios controles para pivotar como columnas" ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Este campo actúa como una vista de Superset, lo que significa que Superset ejecutará una consulta en esta cadena como una subconsulta." + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "La granularidad del tiempo para la visualización. Esto aplica una transformación de fecha para alterar tu columna de tiempo y define una nueva granularidad de tiempo. Las opciones aquí se definen en función del motor de base de datos en el código fuente de Superset." ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Este objeto JSON describe la posición de los widgets en el panel de control. Se genera dinámicamente al ajustar el tamaño y las posiciones de los widgets mediante la función de arrastrar y soltar en la vista del tablero" - ], - "This markdown component has an error.": [ - "Este componente markdown tiene un error." + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Define la agrupación de entidades. Cada serie se muestra como un color específico en el gráfico y tiene una leyenda" ], - "This markdown component has an error. Please revert your recent changes.": [ + "Metric assigned to the [X] axis": ["Métrica asignada al eje [X]"], + "Metric assigned to the [Y] axis": ["Métrica asignada al eje [Y]"], + "Bubble size": ["Tamaño burbuja"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ + "Color scheme": ["Esquema de Color"], + "Use this section if you want a query that aggregates": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Esta sección contiene opciones que permiten el procesamiento analítico avanzado de los resultados de la consulta" + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "" ], "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type is not supported.": [ - "Esta visualización no está soportada." - ], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": ["Jueves"], - "Time": ["Tiempo"], - "Time Series - Bar Chart": ["Serie Temporal - Gráfico de Barras"], - "Time Series - Line Chart": ["Serie Temporal - Gráfico de Líneas"], - "Time Series - Nightingale Rose Chart": [ - "Serie Temporal - Gráfico de Nightingale Rose" - ], - "Time Series - Paired t-test": ["Serie Temporal - Prueba-T Emparejada"], - "Time Series - Percent Change": ["Serie Temporal - Cambio Porcentual"], - "Time Series - Period Pivot": ["Serie Temporal - Pivote de periodo"], - "Time Series - Stacked": ["Serie Temporal - Apiladas"], - "Time Table View": ["Vista de Tabla Temporal"], - "Time column": ["Columna de Tiempo"], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": ["Columna de Tiempo"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Customize": ["Personalizar"], + "Generating link, please wait..": [""], + "Save (Overwrite)": ["Guardar (Sobrescribir)"], + "Chart name": ["El Gráfico ha cambiado"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["Añadir a un nuevo Dashboard"], + "Save & go to dashboard": ["Guardar e ir al Dashboard"], + "Save chart": ["Guardar gráfico"], + "Expand data panel": [""], + "No samples were returned for this dataset": [""], + "Search Metrics & Columns": ["Buscar Métricas y Columnas"], + "Showing %s of %s": ["Mostrando %s de %s"], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], + "Unable to retrieve dashboard colors": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Time grain": ["Granularidad Temporal"], - "Time grain missing": ["Granularidad Temporal"], - "Time granularity": ["Granularidad de Tiempo"], - "Time in seconds": ["Tiempo en segundos"], - "Time range": ["Periodo de tiempo"], - "Time related form attributes": [ - "Atributos de formulario relacionados con el tiempo" - ], - "Time series columns": ["Columna de Tiempo"], - "Time shift": ["Desplazamiento de tiempo"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "" + "Controls labeled ": [""], + "Control labeled ": [""], + "Open Datasource tab": ["Nombre de la Fuente de Datos"], + "You do not have permission to edit this chart": [ + "No tienes permiso para aprobar esta solicitud." ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Los gráficos de barras en las series de tiempo se utilizan para mostrar los cambios en las métricas con el paso del tiempo, en forma de barras." + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "" ], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Gráfico de Dispersión de Puntos (en Series de tiempo), muestra en el eje horizontal el tiempo en unidades lineales, conectando los puntos en orden. Muestra una relación estadística entre dos variables-" + "Person or group that has certified this chart.": [""], + "Configuration": ["Configuración"], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "A list of users who can alter the chart. Searchable by name or username.": [ "" ], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Gráfico de Series por tiempo en Pasos (conocida como Tabla de Pasos) es una variación del gráfico de Linea, en la cual la linea que forma la serie de tiempo forma una serie de 'pasos' entre los puntos de intervalos de datos. Una tabla de paso es útil cuando se quieren mostrar los cambios ocurridos en intervalos regulares." + "Limit reached": ["Límite alcanzado"], + "Invalid lat/long configuration.": [ + "Configuración de latitud/longitud inválida." ], - "Time-series Table": ["Tabla de serie temporal"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "El gráfico de linea (en series de tiempo) es un gráfico de linea utilizado para visualizar medidas tomadas en intervalos de tiempo regulares. El gráfico de linea es un tipo de gráfico que muestra información de una serie de puntos de datos conectados por segmentos de lineas rectas. Es un tipo básico de gráfico en la estadística." + "Reverse lat/long ": ["latitud/longitud reversos"], + "Longitude & Latitude columns": ["Columnas de longitus y latitud"], + "Delimited long & lat single column": [ + "una sola columna con longitud y latitud delimitadas" ], - "Timeout error": ["Error de timeout"], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [ - "Desplazamiento de zona horaria (en horas) para esta fuente de datos" + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "" ], - "Title": ["Título"], - "Title or Slug": ["Título o Slug"], - "To filter on a metric, use Custom SQL tab.": [ - "Para filtrar por una métrica, usa la pestaña SQL Personalizado" + "Geohash": [""], + "textarea": ["caja de texto"], + "in modal": ["en modal"], + "Sorry, An error occurred": ["Lo siento, ha ocurrido un error"], + "Open in SQL Lab": ["Ejecutar en Laboratiorio SQL"], + "Failed to verify select options: %s": [ + "Fallo al verificar las opciones de selección: %s" ], - "To get a readable URL for your dashboard": [ - "Para obtener una URL legible para tu panel de control" + "Annotation layer": ["Capa de Anotación"], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "" ], - "Tooltip": [""], - "Top to Bottom": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Totals": ["Totales"], - "Track job": ["Seguir trabajo"], - "Transformable": ["Transformable"], - "Transparent": ["Transparente"], - "Transpose pivot": ["Transponer pivot"], - "Tree layout": [""], - "Treemap": ["Mapa de Árbol"], - "Triangle": ["Triángulo"], - "Trigger Alert If...": ["Disparar Alerta si..."], - "Truncate Y Axis": ["Truncar el eje Y"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "Truncar el eje Y. Puede ser sobreescrito al especificar un límite máximo o mínimo" + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Trunca la fecha especificada a la precisión establecida en el formato de fecha" + "This section allows you to configure how to use the slice\n to generate annotations.": [ + "" ], - "Try applying different filters or ensuring your datasource has data": [ - "Intente aplicar filtros diferentes o asegúrese de que la fuente de datos tiene información" + "This column must contain date/time information.": [""], + "Pick a title for you annotation.": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": ["Martes"], - "Type": ["Tipo"], - "Type \"%s\" to confirm": ["Teclea \"%s\" para confirmar"], - "Type a value here": ["Introduce un valor"], - "Type is required": ["El tipo es obligatorio"], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["Escribe o Seleciona [%s]"], - "URL": ["URL"], - "URL parameters": ["Parámetros de URL"], - "URL slug": ["nombre para URL"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "No se pueden añadir nueva pestaña al back-end. Contacte al administrador." + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "No se puede conectar al catálogo \"%(catalog_name)s\"." + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "" ], - "Unable to connect to database \"%(database)s\".": [ - "No se puede conectar a la Base de Datos: \"%(database)s\\ " + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "" ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Display configuration": ["Configuración de visualización"], + "Configure your how you overlay is displayed here.": [""], + "Style": ["Estilo"], + "Solid": [""], + "Long dashed": [""], + "Color": ["Color"], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Layer configuration": ["Configuración"], + "Configure the basics of your Annotation Layer.": [ + "Configurar los elementos básicos de la capa de anotaciones." + ], + "Mandatory": ["Oblugatorio"], + "Hide layer": ["Ocultar capa"], + "Whether to always show the annotation label": [""], + "Annotation layer type": ["Capas de Anotación"], + "Choose the annotation layer type": ["Capas de Anotación"], + "Remove": ["Eliminar"], + "Edit annotation layer": ["Capas de Anotación"], + "Add annotation layer": ["Capas de Anotación"], + "Remove item": [""], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "dashboard": [""], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": ["alerta"], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": ["Requerido"], + "Right value": [""], + "Lower threshold must be lower than upper threshold": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Editar Base de Datos"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Undefined": ["Indefinido"], - "Undefined window for rolling operation": [ - "Ventana no definida para la operación de movimiento" + "View in SQL Lab": ["Ejecutar en Laboratiorio SQL"], + "Query preview": ["Previsualización de Datos"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "RANGE TYPE": ["TIPO DE RANGO"], + "Actual time range": ["Rango de tiempo actual"], + "APPLY": ["APPLICAR"], + "Edit time range": ["Editar rango de tiempo"], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "Configure Time Range: Previous...": [ + "Configurar Ranfo de Tiempo: Anteriores..." ], - "Undo?": ["¿Deshacer?"], - "Unexpected error": ["Error inesperado"], - "Unexpected error occurred, please check your logs for details": [ - "Se ha producido un error inesperado, por favor verifique los registros para más detalles" + "Configure Time Range: Last...": [ + "Configurar Rango de Tiempo: Últimos.." ], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Host desconocido de MySQL: \"%(hostname)s\"" + "Configure custom time range": [ + "Configurar rango de tiempo personalizado" ], - "Unknown Presto Error": ["Error de Presto desconocido"], - "Unknown Status": ["EStado desconocido"], - "Unknown column used in orderby: %(col)s": [ - "Columna desconocida utilizada al ordenar: %(col)s%" + "Relative quantity": ["Cantidad relativa"], + "Anchor to": [""], + "NOW": [""], + "Date/Time": ["Fecha/Hora"], + "Return to specific datetime.": [""], + "Syntax": [""], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Trunca la fecha especificada a la precisión establecida en el formato de fecha" ], - "Unknown error": ["Valor desconocido"], - "Unknown input format": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Tipo de retorno inseguro para la función %(func)s: %(value_type)s" + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": ["Anterior"], + "last quarter": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Specific Date/Time": [""], + "Midnight": [""], + "Saved": ["Guardar"], + "%s column(s)": ["%s columnas(s)"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Valor de plantilla inseguro para la clave %(key)s: %(value_type)s" - ], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [ - "Operación de post-procesamiento no soportada: %(operation)s" - ], - "Unsupported return value for method %(name)s": [ - "Valor de retorno no soportado para el método %(name)s" - ], - "Unsupported template value for key %(key)s": [ - "Valor de plantilla no soportado para la clave %(key)s" - ], - "Unsupported time grain: %(time_grain)s": [ - "Granularidad temporal no soportada: %(time_grain)s" - ], - "Untitled query": ["Consulta sin título"], - "Update": ["Actualizar"], - "Updating chart was stopped": [ - "La actualización del gráfico ha sido detenida" + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": ["SQL Personalizado"], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "" ], - "Upload": ["Subir"], - "Upload Excel file to database": [""], - "Upload JSON file": ["Subir un archivo JSON"], - "Use \"%(menuName)s\" menu instead.": [""], - "Use a log scale": ["Usar escala logarítimica"], - "Use a log scale for the X-axis": [ - "Usar escala logarítimica para el Eje X" + "%s option(s)": ["%s opción(es)"], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "No se encontró la columna especificada. Para filtrar por una métrica, intenta la pestaña SQL Personalizado" ], - "Use a log scale for the Y-axis": [ - "Usar escala logarítimica para el Eje Y" + "To filter on a metric, use Custom SQL tab.": [ + "Para filtrar por una métrica, usa la pestaña SQL Personalizado" ], - "Use an encrypted connection to the database": [ - "Usar una conexión encriptada a la base de datos" + "%s operator(s)": ["%s operador(es)"], + "Comparator option": [""], + "Type a value here": ["Introduce un valor"], + "Filter value (case sensitive)": [ + "Valor del filtro (sensible a mayúsculas/minúsculas)" ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "choose WHERE or HAVING...": ["elige WHERE o HAVING..."], + "Filters by columns": ["Filtrar por estado"], + "Filters by metrics": ["Filtrar por estado"], + "My metric": ["Métrica"], + "Add metric": ["Añadir Métrica"], + "%s aggregates(s)": ["%s aggregación(es)"], + "%s saved metric(s)": ["%s métrica(s) guardada(s)"], + "Saved metric": ["Consultas Guardadas"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": ["Columna"], + "aggregate": ["agregación"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Time series columns": ["Columna de Tiempo"], + "Sparkline": [""], + "Period average": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["Anchura"], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": ["Usar editor de datasource legado"], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": ["Usar un único valor"], - "Use the Advanced Analytics options below": [ - "Usar la opción de Analítica Avanzada debajo " - ], - "Use the JSON file you automatically downloaded when creating your service account.": [ + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [ - "Use esto para definir un color estático para todos los círculos" - ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Y-axis bounds": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "" + "Currently rendered: %s": [""], + "Recommended tags": [""], + "Examples": ["Ver ejemplos"], + "This visualization type is not supported.": [ + "Esta visualización no está soportada." ], - "User": ["Usuario"], - "User Roles": ["Roles de Usuario"], - "User must select a value for this filter": [ - "El usuario debe elegir un valor para este filtro" + "Select a visualization type": ["Selecciona un tipo de visualización"], + "No results found": ["No se han encontrado resultados"], + "New chart": ["Nuevo gráfico"], + "Edit chart properties": ["Editar propiedades de gráfico"], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["Ejecutar en Laboratiorio SQL"], + "Code": ["Código"], + "Markup type": ["Tipo de Markup"], + "Pick your favorite markup language": [ + "Elige tu idioma favorito de markup" ], - "User query": ["Ver consulta"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "Put your code here": ["Pon tu código aquí"], + "URL parameters": ["Parámetros de URL"], + "Extra parameters for use in jinja templated queries": [ + "Parámetros extra para usar en consultas con plantillas jinja" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "" + "Annotations and layers": ["Anotaciones y capas"], + "Annotation layers": ["Capas de Anotación"], + "My beautiful colors": [""], + "< (Smaller than)": ["< (Menor que)"], + "> (Larger than)": ["> (mayor que)"], + "<= (Smaller or equal)": ["<= (Menor o igual)"], + ">= (Larger or equal)": [">= (Mayor o igual)"], + "== (Is equal)": ["== (Igual)"], + "!= (Is not equal)": ["!= (No es igual)"], + "Not null": ["No nulo"], + "60 days": ["60 días"], + "90 days": ["90 días"], + "Add notification method": ["Agregar método de notificación"], + "Add delivery method": ["Agregar método de entrega"], + "Add": ["Agregar"], + "Report name": ["Nombre de informe"], + "Alert name": ["Nombre de la alerta"], + "Active": ["Activo"], + "Alert condition": ["Probar Conexión"], + "SQL Query": ["Consulta SQL"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Disparar Alerta si..."], + "Report schedule": ["Programar informe"], + "Alert condition schedule": ["Probar Conexión"], + "Timezone": [""], + "Schedule settings": ["Configuracion"], + "Log retention": ["Retención de registros"], + "Working timeout": ["Tiempo de espera"], + "Time in seconds": ["Tiempo en segundos"], + "Grace period": ["Periodo de gracia"], + "Message content": ["Contenido del mensaje"], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Método de notificación"], + "report": ["informe"], + "CRON expression": ["Expresión CRON"], + "Report sent": ["Reporte enviado"], + "Alert triggered, notification sent": [ + "Alerta disparada, notificación enviada" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "" + "Report sending": ["Envío de informe"], + "Alert running": ["Ejecución de alerta"], + "Report failed": ["Informe fallido"], + "Alert failed": ["Alerta fallida"], + "Nothing triggered": ["Nada disparado"], + "Alert Triggered, In Grace Period": [ + "Alerta disparada, en periodo de gracia" ], - "Value": ["Valor"], - "Value Domain": [""], - "Value bounds": [""], - "Values are dependent on other filters": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "" + "Recipients are separated by \",\" or \";\"": [ + "Los destinatarios están separados por \",\" o \";\"" ], - "Vehicle Types": [""], - "Verbose Name": ["Nombre detallado"], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View All »": [""], - "View in SQL Lab": ["Ejecutar en Laboratiorio SQL"], - "View keys & indexes (%s)": ["Ver claves e índices (%s)"], - "View query": ["Ver consulta"], - "Viewed": ["Visto"], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset": ["Conjunto de datos virtual"], - "Virtual dataset query cannot consist of multiple statements": [ - "La consulta de conjunto virtual no puede consistir de varias consultas" + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["Capas de Anotación"], + "Edit annotation layer properties": [ + "Editar propiedades de la capa de anotación" ], - "Virtual dataset query must be read-only": [ - "La consulta de conjunto virtual debe ser de solo lectura" + "Annotation layer name": ["Nombre de la capa de anotación"], + "Description (this can be seen in the list)": [ + "Descripción (se puede ver en la lista)" ], - "Visual Tweaks": [""], - "Visualization Type": ["Tipo de Visualización"], - "Visualization type": ["Tipo de Visualización"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "annotation": ["anotación"], + "Edit annotation": ["Editar anotación"], + "Add annotation": ["Añadir anotación"], + "date": ["fecha"], + "Additional information": ["Información adicional"], + "Please confirm": ["Confirme"], + "Are you sure you want to delete": ["onfirma que quieres eliminar"], + "css_template": [""], + "Edit CSS template properties": ["Editar propiedades de plantilla CSS"], + "Add CSS template": ["Cargar una plantilla CSS"], + "css": [""], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Enable query cost estimation": [""], + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["Tiempo de espera de caché"], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Asynchronous query execution": ["Ejecución asíncrona de consultas"], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "" + "Secure extra": ["Seguridad"], + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Contenido opcional CA_BUNDLE para validar las solicitudes HTTPS. Solo disponible en algunos motores de base de datos." ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "" + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "Private Key & Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "Test connection": ["Probar Conexión"], + "database": ["Base de datos"], + "Please enter a SQLAlchemy URI to test": [ + "Por favor, introduce un URI SQLAlchemy para probar" ], - "Viz is missing a datasource": ["Falta una fuente de datos"], - "Viz type": ["Tipo"], - "WED": ["MIÉ"], + "e.g. world_population": [""], + "Sorry there was an error fetching database information: %s": [ + "Lo sentimos, hubo un error al obtener la información de la base de datos: %s" + ], + "Or choose from a list of other databases we support:": [""], "Want to add a new database?": [""], - "Warning Message": ["Mensaje de Aviso"], - "Warning!": ["Mensaje de Aviso"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "Web": [""], - "Wednesday": ["Miércoles"], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "What should be shown on the label?": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "QUERY DATA IN SQL LAB": [""], + "Edit database": ["Editar Base de Datos"], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "When a secondary metric is provided, a linear color scale is used.": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Cuando se permite la opción CREATE TABLE AS en el laboratorio SQL, esta opción hace que la tabla se cree en este esquema" - ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": ["Subir un archivo JSON"], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "" + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Paste the shareable Google Sheet URL here": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Las contraseñas para las bases de datos a continuación se necesitan para importarlas juntas con los conjuntos de datos. Por favor, tenga en cuenta que la sección \"Seguro Extra\" y \"Certificado\" de la configuración de base de datos no están presentes en los archivos de exportación, y que deben añadirse manualmente después de la importación si se necesitan." ], - "When using 'Group By' you are limited to use a single metric": [ - "Cuando usas 'Group By', estás limitado a una sola métrica" + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Está importando uno o más conjuntos de datos que ya existen. Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está seguro de que quiere sobrescribir?" ], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Si esta columna está expuesta en la sección `Filtros` de la vista de exploración." - ], - "Whether to align background charts with both positive and negative values at 0": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "Whether to align positive and negative values in cell bar chart at 0": [ + "Unable to load columns for the selected table. Please select a different table.": [ "" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "" + "Create chart with dataset": [""], + "chart": ["gráfico"], + "No charts": ["No hay gráficos"], + "This dataset is not used to power any charts.": [""], + "Edited": ["Editado"], + "Created": ["Creado"], + "Viewed": ["Visto"], + "Favorite": ["Favoritos"], + "Mine": [""], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [ + "Se produjo un error al obtener los dashboards: %s" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ - "" + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Aquí aparecerán los gráficos, los dashboards y las consultas vistas recientemente" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ - "" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Aquí aparecerán los gráficos, los dashboards y las consultas guardadas recientemente" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a time filter": ["Mostrar un filtro de tiempo"], - "Whether to include the time granularity as defined in the time section": [ + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Aquí aparecerán los gráficos, los dashboards y las consultas editadas recientemente" + ], + "SQL query": ["Parar query"], + "You don't have any favorites yet!": ["¡Aún no tienes favoritos!"], + "Connect Google Sheet": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ "" ], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Si hacer que esta columna esté disponible como una opción [Time Granularity], la columna debe ser DATETIME o DATETIME-like" + "Info": ["Información"], + "Logout": ["Salir"], + "About": [""], + "Powered by Apache Superset": [""], + "SHA": [""], + "Build": [""], + "Login": ["Acceder"], + "query": ["consulta"], + "Deleted: %s": ["Eliminado: %s"], + "There was an issue deleting %s: %s": [ + "Hubo un problema al eliminar %s: %s" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [""], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Si rellenar el menú desplegable del filtro en la sección de filtros de la vista de exploración con una lista de valores distintos obtenidos desde el backend sobre la marcha" + "This action will permanently delete the saved query.": [ + "Esta acción eliminará la consulta guardada de forma permanente" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "" + "Delete Query?": ["¿Realmente quieres eliminar la consulta?"], + "Saved queries": ["Consultas Guardadas"], + "Next": ["Siguiente"], + "Tab name": ["Nombre de la pestaña"], + "User query": ["Ver consulta"], + "Executed query": ["Consulta ejecutada"], + "Query name": ["Nombre de la consulta"], + "SQL Copied!": ["Copiado!"], + "Sorry, your browser does not support copying.": [ + "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort descending or ascending": [ - "Ordenar descendente o ascendente" + "We were unable to active or deactivate this report.": [""], + "Weekly Report for %s": [""], + "Edit email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Email reports active": [""], + "This action will permanently delete %s.": [ + "Esta acción eliminará permanentemente %s." ], - "Whether to sort results by the selected metric in descending order.": [ + "Rule added": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "" ], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "Width": ["Anchura"], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Working": [""], - "Working timeout": ["Tiempo de espera"], - "World Map": ["Mapa Mundial"], - "Write a description for your query": [ - "Escribe una descripción para tu consulta" + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "" ], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column.": [ - "Escribe el índice del dataframe como una columna." - ], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": ["Eje X"], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort By": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": ["Eje Y"], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": ["Formato Eje Y"], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort By": [""], - "Y-axis bounds": [""], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Yes": ["Sí"], - "Yes, cancel": ["Sí, cancelar"], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Clause": ["Cláusula"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ "" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": [""], + "Use only a single value.": ["Usar un único valor"], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [ + "Selecciona para ordenar de forma ascendente" + ], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": ["Selección inversa"], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ "" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Está importando uno o más conjuntos de datos que ya existen. Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está seguro de que quiere sobrescribir?" + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "Time column filter plugin": [""], + "Working": [""], + "On Grace": [""], + "reports": ["informes"], + "alerts": ["alertas"], + "There was an issue deleting the selected %s: %s": [ + "Hubo un error al eliminar el %s seleccionado: %s" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "" + "Last run": ["Último cambio"], + "Execution log": ["Registro de ejecución"], + "Bulk select": ["Selección múltiple"], + "No %s yet": ["Aún no hay %s"], + "Owner": ["Propietario"], + "All": [""], + "Status": ["Estado"], + "An error occurred while fetching dataset datasource values: %s": [ + "Se produjo un error al obtener los valores de la fuente de datos: %s" ], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "" + "Alerts & reports": ["Alertas e informes"], + "Alerts": ["Alertas"], + "Reports": ["Informes"], + "Delete %s?": ["¿Eliminar %s?"], + "Are you sure you want to delete the selected %s?": [ + "¿Está seguro de que desea eliminar los %s seleccionados?" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "" + "There was an issue deleting the selected layers: %s": [ + "Hubo un problema al eliminar las capas seleccionadas: %s" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Edit template": ["Cargar una plantilla"], + "Delete template": ["Eliminar plantilla"], + "No annotation layers yet": ["Aún no hay capas de anotación"], + "This action will permanently delete the layer.": [ + "Esta acción eliminará permanentemente la capa." + ], + "Delete Layer?": ["¿Eliminar capa?"], + "Are you sure you want to delete the selected layers?": [ + "¿Estas seguro de que quieres eliminar las capas seleccionadas?" + ], + "There was an issue deleting the selected annotations: %s": [ + "Hubo un problema al eliminar las anotaciones seleccionadas: %s" + ], + "Delete annotation": ["Eliminar anotación"], + "Annotation": ["Anotación"], + "No annotation yet": ["Aún no hay anotaciones"], + "Back to all": [""], + "Delete Annotation?": ["¿Eliminar anotación?"], + "Are you sure you want to delete the selected annotations?": [ + "¿Estas seguro de que quieres guardar y aplicar los cambios?" + ], + "Failed to load chart data": [""], + "Choose a dataset": ["Selecciona una base de datos"], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "No puedes usar [Columns] en combinación con [Group By]/[Metrics]/[Percentage Metrics]. Por favor elige una u otra." + "There was an issue deleting the selected charts: %s": [ + "Hubo un problema al eliminar los gráficos seleccionados: %s" ], - "You do not have permission to edit this chart": [ - "No tienes permiso para aprobar esta solicitud." + "An error occurred while fetching dashboards": [ + "Se produjo un error al crear el origen de datos" ], - "You do not have permission to edit this dashboard": [ - "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "Se produjo un error al obtener los valores de los propietarios de gráfico: %s" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." + "Are you sure you want to delete the selected charts?": [ + "¿Estas seguro de que quieres eliminar los gráficos seleccionados?" ], - "You do not have permissions to edit this dashboard.": [""], - "You don't have any favorites yet!": ["¡Aún no tienes favoritos!"], - "You don't have the rights to alter this title.": [ - "No tienes los derechos para alterar este título." + "CSS templates": ["Plantillas CSS"], + "There was an issue deleting the selected templates: %s": [ + "Hubo un problema al eliminar las plantillas seleccionadas: %s" ], - "You have no permission to approve this request": [ - "No tienes permiso para aprobar esta solicitud." + "CSS template": ["Plantillas CSS"], + "This action will permanently delete the template.": [ + "Esta acción eliminará permanentemente la plantilla." ], - "You have removed this filter.": ["Has eliminado este filtro."], - "You have unsaved changes.": ["Tienes cambios no guardados."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Delete Template?": ["Plantillas CSS"], + "Are you sure you want to delete the selected templates?": [ + "¿Estas seguro de que quieres eliminar las plantillas seleccionadas?" + ], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You must pick a name for the new dashboard": [ - "Debes elegir un nombre para el nuevo Dashboard" + "There was an issue deleting the selected dashboards: ": [ + "Hubo un problema al eliminar los dashboards seleccionados: " ], - "You must run the query successfully first": [ - "Primero debes ejecutar la consulta exitosamente" + "An error occurred while fetching dashboard owner values: %s": [ + "Se produjo un error al obtener los valores del propietario de los dashboards: %s" ], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "" + "Are you sure you want to delete the selected dashboards?": [ + "¿Estas seguro de que quieres eliminar los dashboards seleccionados?" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "" + "An error occurred while fetching database related data: %s": [ + "Se produjo un error al obtener los datos relacionados con la base de datos: %s" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your query could not be saved": ["Tu consulta no pudo ser guardada"], - "Your query could not be scheduled": [ - "No se pudo programar la consulta." + "AQE": ["AQE"], + "Allow data manipulation language": ["Permitir manipulación de datos"], + "DML": ["DML"], + "CSV upload": ["Subida de archivos CSV"], + "Delete database": ["Eliminar base de datos"], + "Delete Database?": ["¿Eliminar base de datos?"], + "An error occurred while fetching dataset related data": [ + "Se produjo un error al obtener datos relacionados con el conjunto de datos" ], - "Your query could not be updated": [ - "Tu consulta no pudo ser actualizada" + "An error occurred while fetching dataset related data: %s": [ + "Se produjo un error al obtener datos relacionados con el conjunto de datos: %s" ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "" + "Physical dataset": ["Conjunto de datos físico"], + "Virtual dataset": ["Conjunto de datos virtual"], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [ + "Se produjo un error al obtener conjuntos de datos: %s" ], - "Your query was saved": ["Tu consulta fue guardada"], - "Your query was updated": ["Tu consulta fue actualizada"], - "Zoom": [""], - "Zoom level of the map": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "Las columnas [Longitud] y [Latitud] deben estar presentes en [Group By]" + "An error occurred while fetching schema values: %s": [ + "Se produjo un error al obtener valores de esquema: %s" ], - "[Longitude] and [Latitude] must be set": [ - "Deben especificarse [Longitud] y [Latitud]" + "An error occurred while fetching dataset owner values: %s": [ + "Se produjo un error al obtener los valores del propietario del conjunto de datos: %s" ], - "[Superset] Access to the datasource %(name)s was granted": [ - "Se ha otorgado Acceso [Superset] a la fuente de datos %(name)" + "There was an issue deleting the selected datasets: %s": [ + "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" ], - "[copy]": [""], - "[dashboard name]": ["[nombre del Dashboard]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "" + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "El conjunto de datos %s está vinculado a %s gráficos que aparecen en %s tableros. ¿Está seguro de que desea continuar? Eliminar el conjunto de datos romperá esos objetos." ], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`confidence_interval` debe ser un número entre 0 y 1 (exclusivo)" + "Delete Dataset?": ["¿Eliminar conjunto de datos?"], + "Are you sure you want to delete the selected datasets?": [ + "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "" + "0 Selected": ["0 Seleccionados"], + "%s Selected (Virtual)": ["%s Seleccionados (Virtual)"], + "%s Selected (Physical)": ["%s Seleccionados (Físico)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s Seleccionados (%s Físico, %s Virtual)" ], - "`operation` property of post processing object undefined": [ - "La propiedad `operation` del objeto de post-procesamiento no está definida" + "log": ["registro"], + "Error message": ["Mensaje de error"], + "Thumbnails": [""], + "Recents": ["Recientes"], + "There was an issue previewing the selected query. %s": [ + "Hubo un problema al previsualizar la consulta seleccionada. %s" ], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_offset` must be greater than or equal to 0": [ - "`row_offset` debe ser mayor o igual a 0" + "TABLES": ["TABLAS"], + "Open query in SQL Lab": ["Ejecutar en Laboratiorio SQL"], + "An error occurred while fetching database values: %s": [ + "Ha ocurrido un error cargando valores de la base de datos: %s" ], - "`width` must be greater or equal to 0": [ - "`width` debe ser mayor o igual a 0" + "Search by query text": ["Buscar por texto"], + "There was an issue previewing the selected query %s": [ + "Ocurrió un problema al previsualizar la consulta seleccionada %s" ], - "aggregate": ["agregación"], - "alert": ["alerta"], - "alerts": ["alertas"], - "all": [""], - "also copy (duplicate) charts": [ - "copiar (duplicar) tambien los Gráficos" + "Link Copied!": ["Enlace Copiado!"], + "There was an issue deleting the selected queries: %s": [ + "Ocurrió un problema al eliminar las consultas seleccionadas: %s" ], - "ancestor": [""], - "and": ["y"], - "annotation": ["anotación"], - "annotation_layer": ["Capas de Anotación"], - "asfreq": [""], - "at": ["en"], - "auto (Smooth)": [""], - "background": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": ["tornillo"], - "boolean type icon": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "chart": ["gráfico"], - "choose WHERE or HAVING...": ["elige WHERE o HAVING..."], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["Columna"], - "connecting to %(dbModelName)s.": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "dashboard": [""], - "database": ["Base de datos"], - "dataset": [""], - "date": ["fecha"], - "day": ["día"], - "day of the month": ["día del mes"], - "day of the week": ["día de la semana"], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deckGL": [""], - "delete": ["eliminar"], - "description": ["descripción"], - "dialect+driver://username:password@host:port/database": [""], - "dttm": ["dttm"], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "error dark": [""], - "every": ["cada"], - "every day of the month": ["todos los días del mes"], - "every day of the week": ["todos los días de la semana"], - "every hour": ["cada hora"], - "every month": ["cada mes"], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "" + "Edit query": ["ditar consulta"], + "Copy query URL": ["Copiar URL de la consulta"], + "Delete query": ["Eliminar consulta"], + "Are you sure you want to delete the selected queries?": [ + "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" ], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "hour": ["hora"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "tag": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "in": ["en"], - "in modal": ["en modal"], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": ["unido"], - "json isn't valid": ["no es json válido"], - "key a-z": [""], - "key z-a": [""], - "last quarter": [""], - "latest partition:": ["última partición:"], - "less than {min} {name}": [""], - "log": ["registro"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "el percentil inferior debe ser mayor que 0 y menor que 100. Debe ser menor que el percentil superior." + "Invalid input": [""], + "(no description, click to see stack trace)": [""], + "Issue 1001 - The database is under an unusual load.": [ + "Issue 1001 - La base de datos tiene una carga inusualmente elevada." ], - "mean": [""], - "median": [""], - "minute": ["minuto"], - "month": ["mes"], - "more than {max} {name}": [""], - "must have a value": [""], - "numeric type icon": [""], - "nvd3": [""], - "of total": [""], - "on": ["en"], - "or use existing ones from the panel on the right": [""], - "overall": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "" + "Please re-export your file and try importing again": [""], + "Connection looks good!": ["¡La conexión parece correcta!"], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [ + "Hubo un error al obtener tu actividad reciente:" ], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "query": ["consulta"], - "reboot": [""], - "report": ["informe"], - "reports": ["informes"], - "restore zoom": [""], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "There was an issue deleting: %s": ["Hubo un problema al eliminar: %s"], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ "" ], - "std": [""], - "step-before": [""], - "string type icon": [""], - "sum": [""], - "syntax.": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": ["caja de texto"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "el percentil superior debe ser mayor que 0 y menor que 100. Debe ser mayor que el percentil inferior." + "Time-series Table": ["Tabla de serie temporal"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" ], - "var": [""], - "virtual": [""], - "was created": ["fue creada"], - "week": ["semana"], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["año"], - "zoom area": [""] + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/es/LC_MESSAGES/messages.po b/superset/translations/es/LC_MESSAGES/messages.po index df4efb9b4b4bc..37c117cc4031c 100644 --- a/superset/translations/es/LC_MESSAGES/messages.po +++ b/superset/translations/es/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2018-11-03 00:11+0100\n" "Last-Translator: Ruben Sastre \n" "Language: es\n" @@ -28,19022 +28,18797 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" +#: superset/errors.py:101 +#, fuzzy +msgid "The datasource is too large to query." +msgstr "Issue 1000 - La fuente de datos es demasiado grande para consultar." -#: superset/reports/notifications/email.py:89 -#, python-format +#: superset/errors.py:102 +#, fuzzy +msgid "The database is under an unusual load." +msgstr "Issue 1001 - La base de datos tiene una carga inusualmente elevada." + +#: superset/errors.py:103 +#, fuzzy +msgid "The database returned an unexpected error." +msgstr "Issue 1002 - La base de datos devolvió un error inesperado." + +#: superset/errors.py:104 msgid "" -"\n" -" Error: %(text)s\n" -" " +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:108 +#, fuzzy +msgid "The column was deleted or renamed in the database." +msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos." + +#: superset/errors.py:109 +#, fuzzy +msgid "The table was deleted or renamed in the database." +msgstr "Issue 1005 - La tabla fue eliminada o renombrada en la base de datos." + +#: superset/errors.py:110 +#, fuzzy +msgid "One or more parameters specified in the query are missing." +msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." + +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 -msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +#: superset/errors.py:112 +#, fuzzy +msgid "The port is closed." +msgstr "Informe fallido" + +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 +#: superset/errors.py:114 #, fuzzy -msgid " a dashboard OR " -msgstr "Guardar Dashboard" +msgid "Superset encountered an error while running a command." +msgstr "La alerta encontró un error al ejecutar una consulta." -#: superset-frontend/src/explore/components/SaveModal.tsx:401 +#: superset/errors.py:115 #, fuzzy -msgid " a new one" -msgstr "Cambiado el" +msgid "Superset encountered an unexpected error." +msgstr "Error inesperado del informe programado" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "" + +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 +#: superset/errors.py:120 #, fuzzy -msgid " to add calculated columns" -msgstr "Columnas calculadas" +msgid "The schema was deleted or renamed in the database." +msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#: superset/errors.py:121 #, fuzzy -msgid " to add metrics" -msgstr "Añadir Métrica" +msgid "User doesn't have the proper permissions." +msgstr "No tienes los permisos para " -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +#: superset/errors.py:122 #, fuzzy -msgid " to edit or add columns and metrics." -msgstr "%s columna(s) y métrca(s)" +msgid "One or more parameters needed to configure a database are missing." +msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" -msgstr "!= (No es igual)" - -#: superset/security/analytics_db_safety.py:48 -#, fuzzy, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -"La base de datos SQLite no puede ser usada como fuente de datos por " -"razones de seguridad." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format +#: superset/errors.py:127 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" -msgstr "" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, fuzzy, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:137 +#, fuzzy +msgid "The object does not exist in the given database." +msgstr "Nombre de la tabla que existe en la fuente de datos." + +#: superset/errors.py:138 +msgid "The query has a syntax error." msgstr "" -"Aquí aparecerán los gráficos, los dashboards y las consultas vistas " -"recientemente" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, fuzzy, python-format -msgid "%(rows)d rows returned" -msgstr "líneas obtenidas" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format +#: superset/errors.py:141 msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" -msgstr[1] "" +#: superset/errors.py:145 +#, fuzzy +msgid "The port number is invalid." +msgstr "Los parametros del Gráfico son invalidos" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" -msgstr "%(user)s recibió el rol %(role)s que le da acceso a %(datasource)s" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" -msgstr "Perfil de %(user)s" +#: superset/errors.py:147 +#, fuzzy +msgid "The database was deleted." +msgstr "La base de datos no han podido ser eliminada." -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s Error" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "Contraseña de Broker" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Certificado Inválido" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 +#: superset/forms.py:72 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 +#: superset/jinja_context.py:344 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Tipo de retorno inseguro para la función %(func)s: %(value_type)s" -#: superset-frontend/src/components/ListView/ListView.tsx:245 +#: superset/jinja_context.py:355 #, python-format -msgid "%s Selected" -msgstr "%s seleccionados" +msgid "Unsupported return value for method %(name)s" +msgstr "Valor de retorno no soportado para el método %(name)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#: superset/jinja_context.py:371 #, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s Seleccionados (%s Físico, %s Virtual)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Valor de plantilla inseguro para la clave %(key)s: %(value_type)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/jinja_context.py:382 #, python-format -msgid "%s Selected (Physical)" -msgstr "%s Seleccionados (Físico)" +msgid "Unsupported template value for key %(key)s" +msgstr "Valor de plantilla no soportado para la clave %(key)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "%s Seleccionados (Virtual)" +#: superset/sql_lab.py:236 +#, fuzzy +msgid "Only SELECT statements are allowed against this database." +msgstr "Solo las consultas `SELECT` están permitidas en esta base de datos" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/sql_lab.py:302 #, python-format -msgid "%s aggregates(s)" -msgstr "%s aggregación(es)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "%s columnas(s)" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "%s operador(es)" - -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s opción(es)" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s opción(es)" - -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s Error" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "%s métrica(s) guardada(s)" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "Última actualización %s" - -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" -msgstr "" - -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "%s-%s de %s" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(Eliminado)" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "" - -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 +#: superset/sql_lab.py:440 msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format +#: superset/sql_lab.py:457 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset/reports/notifications/slack.py:82 +#: superset/sql_lab.py:488 #, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#: superset/sql_lab.py:510 #, python-format -msgid "+ %s more" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Falta una fuente de datos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/viz.py:237 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" -msgstr "" - -#: superset/views/database/forms.py:164 -msgid "." +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0 Seleccionados" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "La fecha de inicio no puede ser posterior a la fecha final" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Valor no encontrado en memoria caché" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "día" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Vista de Tabla Temporal" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 hora" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Elige al menos una métrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -#, fuzzy -msgid "1 hourly frequency" -msgstr "Frecuencia de actualización" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "Cuando usas 'Group By', estás limitado a una sola métrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 minuto" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Mapa de Calor de Calendario" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Gráfico de Burbujas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Por favor especifica 3 etiquetas de métrica distintas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Elige una métrica para 'x', 'y' y 'tamaño'" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "semana" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Gráfico de Puntos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" -msgstr "" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Elige qué métrica mostrar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" -msgstr "" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Serie Temporal - Gráfico de Líneas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "año" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Serie Temporal - Gráfico de Barras" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Serie Temporal - Pivote de periodo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -#, fuzzy -msgid "1 year end frequency" -msgstr "Frecuencia de actualización" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Serie Temporal - Cambio Porcentual" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -#, fuzzy -msgid "1 year start frequency" -msgstr "Frecuencia de actualización" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Serie Temporal - Apiladas" -#: superset/db_engine_specs/base.py:102 -#, fuzzy -msgid "10 minute" -msgstr "1 minuto" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histograma" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "semana" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Debe especificarse al menos una columna numérica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Distribución - Gráfico de Barra" -#: superset/db_engine_specs/base.py:103 -#, fuzzy -msgid "15 minute" -msgstr "1 minuto" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "No puede haber solapamiento entre Series y Distribuciones" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "semana" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Elige al menos un campo para [Series]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:1360 +msgid "Sankey" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Elige exactamente 2 columnas como [Origen / Destino]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" +"Hay un bucle en tu Sankey, por favor proporciona un árbol. Aquí hay un " +"enlace defectuoso: {}" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Disposición Dirigida Forzado" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Mapa de País" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Mapa Mundial" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -#, fuzzy -msgid "2 years" -msgstr "año" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Coordenadas Paralelas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Mapa de Calor" + +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Gráficos de Horizonte" + +#: superset/viz.py:1686 +msgid "Mapbox" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "Deben especificarse [Longitud] y [Latitud]" + +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Debe tener una columna [Group By] para tener 'count' como [Etiqueta]" + +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "La opción de [Etiqueta] debe estar presente en [Group By]" + +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "La opción de [Radio de Puntos] debe estar presente en [Group By]" + +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "Las columnas [Longitud] y [Latitud] deben estar presentes en [Group By]" + +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - Capas Múltiples" + +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Clave espacial errónea" + +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "Punto espacial inválido encontrado: %s" + +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" +"Se encontró una entrada espacial NULL inválida, por favor considera " +"filtrar esas entradas" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "90 días" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "" + +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "" + +#: superset/viz.py:2271 #, fuzzy -msgid "3 letter code of the country" -msgstr "todos los días del mes" +msgid "Deck.gl - Heatmap" +msgstr "Todos los gráficos" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +#: superset/viz.py:2292 #, fuzzy -msgid "3 years" -msgstr "año" +msgid "Deck.gl - Contour" +msgstr "Todos los gráficos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30 días" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -#, fuzzy -msgid "30 days ago" -msgstr "30 días" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Flujo de Eventos" -#: superset/db_engine_specs/base.py:104 -#, fuzzy -msgid "30 minute" -msgstr "30 minutos" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Serie Temporal - Prueba-T Emparejada" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 minutos" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Serie Temporal - Gráfico de Nightingale Rose" -#: superset/db_engine_specs/base.py:99 +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Partición de diagrama" + +#: superset/viz.py:2676 #, fuzzy -msgid "30 second" -msgstr "30 segundos" +msgid "Please choose at least one groupby" +msgstr "Por favor elige al menos un campo en 'Group by'" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 segundos" +#: superset/advanced_data_type/api.py:101 +#, fuzzy, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "rolling_type inválido: %(type)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Todo el Texto" -#: superset/db_engine_specs/base.py:101 -#, fuzzy -msgid "5 minute" -msgstr "5 minutos" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 minutos" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" +msgstr[1] "" -#: superset/db_engine_specs/base.py:98 +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 #, fuzzy -msgid "5 second" -msgstr "30 segundos" +msgid "Is certified" +msgstr "Certificado por" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 #, fuzzy -msgid "5 seconds" -msgstr "30 segundos" +msgid "Has created by" +msgstr "fue creada" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 #, fuzzy -msgid "52 weeks" -msgstr "semana" +msgid "Created by me" +msgstr "Creado por" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -#, fuzzy -msgid "6 hour" -msgstr "6 horas" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60 días" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -#, fuzzy -msgid "7 days" -msgstr "90 días" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`confidence_interval` debe ser un número entre 0 y 1 (exclusivo)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" +"el percentil inferior debe ser mayor que 0 y menor que 100. Debe ser " +"menor que el percentil superior." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" +"el percentil superior debe ser mayor que 0 y menor que 100. Debe ser " +"mayor que el percentil inferior." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90 días" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`width` debe ser mayor o igual a 0" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr "" +#: superset/charts/schemas.py:1266 +#, fuzzy +msgid "`row_limit` must be greater than or equal to 0" +msgstr "`row_limit` debe ser mayor o igual a 1" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "< (Menor que)" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`row_offset` debe ser mayor o igual a 0" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "<= (Menor o igual)" +#: superset/charts/schemas.py:1295 +#, fuzzy +msgid "orderby column must be populated" +msgstr "Tu consulta no pudo ser actualizada" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "Columna de Tiempo" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "Petición incorrecta: %(error)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "Consultas Guardadas" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "La petición no es JSON" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 +#: superset/charts/data/api.py:369 #, fuzzy -msgid "" -msgstr "Espacial" +msgid "Empty query result" +msgstr "¿Consulta vacía?" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Los propietarios son invalidos" + +#: superset/commands/exceptions.py:119 #, fuzzy -msgid "" -msgstr "Tipo de dato" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "== (Igual)" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "> (mayor que)" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" -msgstr ">= (Mayor o igual)" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -#, fuzzy -msgid "A Big Number" -msgstr "Número Grande" - -#: superset/views/database/forms.py:194 -#, fuzzy -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "" -"Una lista separada por comas de columnas que deben ser parseadas como " -"fechas." +msgid "Some roles do not exist" +msgstr "El dashboard no existe" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -"Una lista separada por comas de columnas que deben ser parseadas como " -"fechas." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 +#: superset/commands/exceptions.py:135 #, fuzzy -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "" -"Una lista separada por comas de columnas que deben ser parseadas como " -"fechas." +msgid "Datasource does not exist" +msgstr "La fuente no existe" -#: superset/databases/commands/exceptions.py:42 +#: superset/commands/exceptions.py:142 #, fuzzy -msgid "A database with the same name already exists." -msgstr "La fuente de datos %(name)s ya existe" +msgid "Query does not exist" +msgstr "La base de datos no existe" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Los parametros del Gráfico son invalidos" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "El Gráfico no ha podido crearse" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "El Gráfico no ha podido guardarse" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Un nombre legible para personas" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Capas de Anotación" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "El Gráfico no ha podido eliminarse" -#: 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 "" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "La capa de anotación tiene anotaciones asociadas" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "El nombre debe ser único" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "La fecha de inicio no puede ser superior a la de fin" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "La descripción corta debe ser única para esta capa" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Una métrica para usar para el color." +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Anotaciones" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Los parametros del Gráfico son invalidos" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "Una URL amigable para el dashboard" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "El Gráfico no ha podido crearse" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "" -"Una referencia a la configuración [Tiempo], teniendo en cuenta la " -"granularidad." +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "El Gráfico no ha podido guardarse" -#: superset/reports/commands/exceptions.py:186 +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Las anotaciones no han podido eliminarse." + +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 #, fuzzy, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "La fuente de datos %(name)s ya existe" +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Hay alertas o informes asociados: %s," -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." -msgstr "" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "La base de datos no existe" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." -msgstr "" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "El dashboard no existe" -#: superset/reports/commands/exceptions.py:228 -#, fuzzy -msgid "A timeout occurred while executing the query." -msgstr "La alerta encontró un error al ejecutar una consulta." +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "" +"El tipo de fuente de datos es necesario cuando se especifica un " +"`datasource_id`" -#: superset/reports/commands/exceptions.py:238 -#, fuzzy -msgid "A timeout occurred while generating a csv." -msgstr "Se produjo un error al recuperar el estado de la pestaña" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Los parametros del Gráfico son invalidos" -#: superset/reports/commands/exceptions.py:243 -#, fuzzy -msgid "A timeout occurred while generating a dataframe." -msgstr "Se produjo un error al crear el origen de datos" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "El Gráfico no ha podido crearse" -#: superset/reports/commands/exceptions.py:233 -#, fuzzy -msgid "A timeout occurred while taking a screenshot." -msgstr "Se produjo un error al recuperar el estado de la pestaña" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "El Gráfico no ha podido guardarse" -#: 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" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Los Gráficos no han podido eliminarse" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "APPLICAR" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Hay alertas o informes asociados" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "ABR" +#: superset/commands/chart/exceptions.py:131 +#, fuzzy +msgid "You don't have access to this chart." +msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "AQE" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "No esta permitido modificar este Gráfico" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "AGO" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "Importar el gráfico falló por una razón desconocida" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" -msgstr "" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Cambiar este Dashboard está prohibido" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 +#: superset/commands/chart/exceptions.py:156 #, fuzzy -msgid "AXIS TITLE POSITION" -msgstr "última partición:" +msgid "Chart not found" +msgstr "Gráfico %(id)s no encontrado" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: 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" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "El Gráfico no ha podido eliminarse" -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Solicitudes de Acceso" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "Plantillas CSS" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Debe ser único" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" -msgstr "" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Parámetros de Dashboard inválidos." -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "Se ha solicitado Acceso" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "El Dashboard no pudo ser creado." -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Acción" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "El Dashboard no pudo ser actualizado." -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Bitácora de acciones" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "El Dashboard no pudo ser eliminado." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Acciones" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Cambiar este Dashboard está prohibido" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Activo" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "Importar el Dashboard falló por una razón desconocida" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 +#: superset/commands/dashboard/exceptions.py:78 #, fuzzy -msgid "Actual Values" -msgstr "Valores Nulos" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Rango de tiempo actual" +msgid "You don't have access to this dashboard." +msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#: superset/commands/dashboard/embedded/exceptions.py:34 #, fuzzy -msgid "Actual value" -msgstr "Valores Nulos" +msgid "You don't have access to this embedded dashboard config." +msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -#, fuzzy -msgid "Actual values" -msgstr "Valores Nulos" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "No hay datos en el archivo" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Los parametros del Gráfico son invalidos" + +#: superset/commands/database/exceptions.py:42 #, fuzzy -msgid "Adaptive formatting" -msgstr "Formato Fecha/Hora" +msgid "A database with the same name already exists." +msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "Agregar" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "El campo es obligatorio" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -#, fuzzy -msgid "Add Alert" -msgstr "alerta" +#: superset/commands/database/exceptions.py:63 +#, fuzzy, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "El campo no puede ser decodificado como JSON. %{json_error}s" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Añadir Plantilla CSS" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "Cargar una plantilla CSS" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "La base de datos no existe" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Añadir Gráfico" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "El Gráfico no ha podido crearse" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Añadir Columna" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "El Gráfico no ha podido guardarse" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Añadir Dashboard" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "La conexión ha fallado, por favor verifique sus ajustes de conexión" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Añadir Base de Datos" +#: superset/commands/database/exceptions.py:111 +#, fuzzy +msgid "Cannot delete a database that has datasets attached" +msgstr "No se puede eliminar una base de datos que tiene tablas adjuntas" -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Agregar Registro" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "La base de datos no han podido ser eliminada." -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Añadir Métrica" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Se ha detenido una conexión insegura a la base de datos" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -#, fuzzy -msgid "Add Report" -msgstr "informe" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "No se ha podido cargar el controlador de la base de datos" + +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "" +"Se ha producido un error inesperado, por favor verifique los registros " +"para más detalles" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset/commands/database/exceptions.py:147 #, fuzzy -msgid "Add Rule" -msgstr "Formato Fecha/Hora" +msgid "no SQL validator is configured" +msgstr "Error de configuración del validador de alertas." -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Añadir Consulta Guardada" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Añadir Columna" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +#, fuzzy +msgid "Was unable to check your query" +msgstr "Etiqueta para tu consulta" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 +#: superset/commands/database/exceptions.py:162 #, fuzzy -msgid "Add a dataset" -msgstr "Añadir conjunto de datos" +msgid "An unexpected error occurred" +msgstr "Se produjo un error" + +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "Importar la base de datos falló por una razón desconocida" + +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "No se ha podido cargar el controlador de la base de datos: {}" + +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 +#: superset/commands/database/validate.py:124 #, fuzzy -msgid "Add a new tab" -msgstr "Consulta en nueva pestaña" +msgid "Database is offline." +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "Error de configuración del validador de alertas." + +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "" + +#: superset/commands/database/ssh_tunnel/exceptions.py:29 #, fuzzy -msgid "Add additional custom parameters" -msgstr "Editar parámetros de la plantilla" +msgid "SSH Tunnel could not be deleted." +msgstr "El Gráfico no ha podido eliminarse" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 +#: superset/commands/database/ssh_tunnel/exceptions.py:34 #, fuzzy -msgid "Add an annotation layer" -msgstr "Capas de Anotación" +msgid "SSH Tunnel not found." +msgstr "Plantillas CSS" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#: superset/commands/database/ssh_tunnel/exceptions.py:38 #, fuzzy -msgid "Add an item" -msgstr "Añadir elemento" +msgid "SSH Tunnel parameters are invalid." +msgstr "Los parametros del Gráfico son invalidos" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 +#: superset/commands/database/ssh_tunnel/exceptions.py:42 #, fuzzy -msgid "Add and edit filters" -msgstr "Filtro de Fecha" +msgid "SSH Tunnel could not be updated." +msgstr "El Gráfico no ha podido guardarse" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Añadir anotación" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +#, fuzzy +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "Importar el gráfico falló por una razón desconocida" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Capas de Anotación" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 +#: superset/commands/dataset/duplicate.py:60 #, fuzzy -msgid "Add cross-filter" -msgstr "Añadir filtro" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "" +msgid "The database was not found." +msgstr "La base de datos no existe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "Agregar método de entrega" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -#, fuzzy -msgid "Add extra connection information." -msgstr "Información Basica" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "La base de datos no puede cambiar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Añadir filtro" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Una o más columnas no existen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Una o más columnas están duplicadas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Una o más columnas ya existen" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Añadir elemento" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Una o más métricas no existen" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Añadir Métrica" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Una o más métricas están duplicadas" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Una o más métricas ya existen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "La fuente no existe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "Agregar método de notificación" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Los parametros del conjunto de datos son inválidos." -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "El conjunto de datos no pudo ser creado." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" -msgstr "" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "El conjunto de datos no pudo ser actualizado." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "Add sheet" -msgstr "Añadir conjunto de datos" +msgid "Datasets could not be deleted." +msgstr "El conjunto de datos no pudo ser eliminado." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 +#: superset/commands/dataset/exceptions.py:180 #, fuzzy -msgid "Add the name of the chart" -msgstr "El id del gráfico activo" +msgid "Samples for dataset could not be retrieved." +msgstr "El conjunto de datos no pudo ser creado." -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -#, fuzzy -msgid "Add the name of the dashboard" -msgstr "Guardar e ir al Dashboard" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "No está permitido cambiar este conjunto de datos" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Añadir a un nuevo Dashboard" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "Importar el conjunto de datos falló por una razón desconocida" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +#: superset/commands/dataset/exceptions.py:192 #, fuzzy -msgid "Add/Edit Filters" -msgstr "Añadir filtro" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "Añadido" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Añadir a un nuevo Dashboard" -msgstr[1] "" +msgid "You don't have access to this dataset." +msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 +#: superset/commands/dataset/exceptions.py:196 #, fuzzy -msgid "Additional Parameters" -msgstr "Editar parámetros de la plantilla" +msgid "Dataset could not be duplicated." +msgstr "El conjunto de datos no pudo ser actualizado." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "Información adicional" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 +#: superset/commands/dataset/exceptions.py:205 #, fuzzy -msgid "Additional metadata" -msgstr "Información adicional" +msgid "The provided table was not found in the provided database" +msgstr "Issue 1005 - La tabla fue eliminada o renombrada en la base de datos." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 +#: superset/commands/dataset/columns/exceptions.py:23 #, fuzzy -msgid "Additional padding for legend." -msgstr "Información adicional" +msgid "Dataset column not found." +msgstr "La base de datos no existe" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 +#: superset/commands/dataset/columns/exceptions.py:27 #, fuzzy -msgid "Additional parameters" -msgstr "Editar parámetros de la plantilla" +msgid "Dataset column delete failed." +msgstr "Capas de Anotación" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 #, fuzzy -msgid "Additional settings." -msgstr "Información adicional" +msgid "Changing this dataset is forbidden." +msgstr "No está permitido cambiar este conjunto de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "" +#: superset/commands/dataset/metrics/exceptions.py:23 +#, fuzzy +msgid "Dataset metric not found." +msgstr "La base de datos no existe" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +#: superset/commands/dataset/metrics/exceptions.py:27 #, fuzzy -msgid "Additive" -msgstr "Añadir elemento" +msgid "Dataset metric delete failed." +msgstr "Capas de Anotación" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Avanzado" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +#: superset/commands/explore/get.py:118 superset/views/core.py:471 #, fuzzy -msgid "Advanced Analytics" -msgstr "Analíticos Avanzadas" +msgid "[Missing Dataset]" +msgstr "Cambiar fuente" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -#, fuzzy -msgid "Advanced Data type" -msgstr "Datos cargados en caché" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Los Gráficos no han podido eliminarse" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Analíticos Avanzadas" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "No se encuentra la consulta guardada." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 +#: superset/commands/query/exceptions.py:36 #, fuzzy -msgid "Advanced analytics Query A" -msgstr "Analíticos Avanzadas" +msgid "Import saved query failed for an unknown reason." +msgstr "Importar el gráfico falló por una razón desconocida" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 +#: superset/commands/query/exceptions.py:40 #, fuzzy -msgid "Advanced analytics Query B" -msgstr "Analíticos Avanzadas" +msgid "Saved query parameters are invalid." +msgstr "Los parametros del Gráfico son invalidos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -#, fuzzy -msgid "Advanced data type" -msgstr "Datos cargados en caché" +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "La consulta de alerta devolvió más de una fila. %s filas devueltas" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "La consulta de alerta devolvió más de una columna. %s columnas devueltas" + +#: superset/commands/report/alert.py:178 #, fuzzy -msgid "Advanced-Analytics" -msgstr "Analíticos Avanzadas" +msgid "An error occurred when running alert query" +msgstr "Se produjo un error al limpiar los registros" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -#, fuzzy -msgid "After" -msgstr "fecha" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "El dashboard no existe" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -#, fuzzy -msgid "Aggregate" -msgstr "agregación" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "La base de datos no existe" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -#, fuzzy -msgid "Aggregate Mean" -msgstr "agregación" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "La base de datos es requerida para las alertas" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -#, fuzzy -msgid "Aggregate Sum" -msgstr "agregación" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "El tipo es obligatorio" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." -msgstr "" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Elija un gráfico o un dashboard, no ambos" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/report/exceptions.py:92 +#, fuzzy +msgid "Must choose either a chart or a dashboard" +msgstr "Elija un gráfico o un dashboard, no ambos" + +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "agregación" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Los parametros del informe programado son inválidos" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -#, fuzzy -msgid "Aggregation function" -msgstr "Probar Conexión" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "El informe programado no ha podido ser creado." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "alerta" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "El informe programado no ha podido ser actualizado." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Alerta disparada, en periodo de gracia" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "No se encuentra el informe programado." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "Probar Conexión" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "El informe programado no se pudo eliminar." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "Probar Conexión" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Los registros del informe programado no pudieron limpiarse." -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "La alerta terminó el periodo de gracia." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" +"La ejecución del informe programado falló al generar una captura de " +"pantalla." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Alerta fallida" +#: superset/commands/report/exceptions.py:153 +#, fuzzy +msgid "Report Schedule execution failed when generating a csv." +msgstr "" +"La ejecución del informe programado falló al generar una captura de " +"pantalla." -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "La alerta saltó durante el periodo de gracia." +#: superset/commands/report/exceptions.py:157 +#, fuzzy +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "" +"La ejecución del informe programado falló al generar una captura de " +"pantalla." -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "La alerta encontró un error al ejecutar una consulta." +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "La ejecución del informe programado falló por un error inesperado." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "Nombre de la alerta" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "" +"El informe programado todavía está en proceso, rechazando la " +"recomputación." -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "Alerta durante el periodo de gracia" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "El informe programado alcanzó el tiempo de espera máximo." -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "La consulta de alerta devolvió un valor no numérico." +#: superset/commands/report/exceptions.py:180 +#, fuzzy, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "La fuente de datos %(name)s ya existe" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "La consulta de alerta devolvió más de una columna." +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "La fuente de datos %(name)s ya existe" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "La consulta de alerta devolvió más de una columna. %s columnas devueltas" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "" -#: superset/reports/commands/exceptions.py:199 +#: superset/commands/report/exceptions.py:193 msgid "Alert query returned more than one row." msgstr "La consulta de alerta devolvió más de una fila." -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "La consulta de alerta devolvió más de una fila. %s filas devueltas" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Ejecución de alerta" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Alerta disparada, notificación enviada" - -#: superset/reports/commands/exceptions.py:204 +#: superset/commands/report/exceptions.py:198 msgid "Alert validator config error." msgstr "Error de configuración del validador de alertas." -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Alertas" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "La consulta de alerta devolvió más de una columna." -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "Alertas y reportes" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "La consulta de alerta devolvió un valor no numérico." -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Alertas e informes" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "La alerta encontró un error al ejecutar una consulta." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" -msgstr "" +#: superset/commands/report/exceptions.py:222 +#, fuzzy +msgid "A timeout occurred while executing the query." +msgstr "La alerta encontró un error al ejecutar una consulta." -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "" - -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 +#: superset/commands/report/exceptions.py:227 #, fuzzy -msgid "All Entities" -msgstr "Todos los filtros" - -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "Todo el Texto" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Todos los gráficos" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "" - -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Todos los filtros" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "" +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/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +#: superset/commands/report/exceptions.py:232 #, fuzzy -msgid "All panels" -msgstr "Aplicar a todos los páneles" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Permitir CREATE TABLE AS" +msgid "A timeout occurred while generating a csv." +msgstr "Se produjo un error al recuperar el estado de la pestaña" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Permitir la opción CREAR TABLA COMO en el laboratorio SQL" +#: superset/commands/report/exceptions.py:237 +#, fuzzy +msgid "A timeout occurred while generating a dataframe." +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Permitir CREATE VIEW AS" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "La alerta saltó durante el periodo de gracia." -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Permitie opción CREATE VIEW AS en el laboratorio SQL" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "La alerta terminó el periodo de gracia." -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "Permitir carga de CSV" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Alerta durante el periodo de gracia" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Permitir DML" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "No se encontró el estado del informe programado" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" -msgstr "" +#: superset/commands/report/exceptions.py:261 +#, fuzzy +msgid "Report schedule system error" +msgstr "Error inesperado del informe programado" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "" +#: superset/commands/report/exceptions.py:267 +#, fuzzy +msgid "Report schedule client error" +msgstr "Error inesperado del informe programado" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Error inesperado del informe programado" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "Permitir manipulación de datos" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "No está permitido cambiar este informe" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Se produjo un error al limpiar los registros" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 +#: superset/commands/security/exceptions.py:25 #, fuzzy -msgid "Allow file uploads to database" -msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Permitir selección múltiple" +msgid "RLS Rule not found." +msgstr "No se encuentra el informe programado." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 +#: superset/commands/security/exceptions.py:29 #, fuzzy -msgid "Allow node selections" -msgstr "Permitir selección múltiple" +msgid "RLS rules could not be deleted." +msgstr "Los Gráficos no han podido eliminarse" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "" +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "La base de datos no existe" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset/views/database/mixins.py:114 +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -"Permitir que los usuarios ejecuten instrucciones que no sean SELECT " -"(UPDATE, DELETE, CREATE, ...) en el laboratorio SQL" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 +#: superset/commands/sql_lab/results.py:75 #, fuzzy -msgid "Alphabetical" -msgstr "Espacial" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" +"Los datos no se pudieron deserializar. Puedes probar a re-ejecutar la " +"consulta." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Modificado" +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 +#: superset/commands/tag/exceptions.py:32 #, fuzzy -msgid "An Error Occurred" -msgstr "Se produjo un error" - -#: superset/reports/commands/exceptions.py:188 -#, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "La fuente de datos %(name)s ya existe" +msgid "Tag parameters are invalid." +msgstr "Los parametros del conjunto de datos son inválidos." -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." -msgstr "" +#: superset/commands/tag/exceptions.py:36 +#, fuzzy +msgid "Tag could not be created." +msgstr "El conjunto de datos no pudo ser creado." -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." -msgstr "" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "El conjunto de datos no pudo ser actualizado." -#: 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: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 -msgid "An error has occurred" -msgstr "Ha ocurrido un error" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "El conjunto de datos no pudo ser eliminado." -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Se produjo un error" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "El conjunto de datos no pudo ser eliminado." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +#, fuzzy +msgid "An error occurred while creating the value." msgstr "Se produjo un error al crear el origen de datos" +#: superset/commands/temporary_cache/exceptions.py:33 #: superset/dashboards/permalink/exceptions.py:31 #: superset/explore/permalink/exceptions.py:31 #: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 #, fuzzy msgid "An error occurred while accessing the value." msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "" - -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, fuzzy, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Se produjo un error al obtener conjuntos de datos: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Se produjo un error al crear el origen de datos" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +#, fuzzy +msgid "An error occurred while deleting the value." +msgstr "Se produjo un error al obtener valores de esquema: %s" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 #, fuzzy -msgid "An error occurred while creating the value." +msgid "An error occurred while updating the value." msgstr "Se produjo un error al crear el origen de datos" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 #, fuzzy -msgid "An error occurred while deleting the value." -msgstr "Se produjo un error al obtener valores de esquema: %s" +msgid "You don't have permission to modify the value." +msgstr "No tienes permiso para aprobar esta solicitud." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:49 +#, fuzzy +msgid "Resource was not found." +msgstr "La base de datos no existe" -#: superset-frontend/src/views/CRUD/hooks.ts:106 +#: superset/common/query_actions.py:227 #, fuzzy, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Se produjo un error al obtener los dashboards: %s" +msgid "Invalid result type: %(result_type)s" +msgstr "rolling_type inválido: %(type)s" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/common/query_context_processor.py:150 #, fuzzy, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Se produjo un error al obtener conjuntos de datos: %s" +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "Ha ocurrido un error cargando los CSS disponibles" +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "Se produjo un error al obtener los valores de los creadores de gráfico: %s" - -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "" -"Se produjo un error al obtener los valores de los propietarios de " -"gráfico: %s" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Se produjo un error al obtener los valores creados por: %s" - -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -"Se produjo un error al obtener los valores de los dashboards creados por:" -" %s" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "" -"Se produjo un error al obtener los valores del propietario de los " -"dashboards: %s" +#: superset/common/query_context_processor.py:696 +#, fuzzy +msgid "The chart does not exist" +msgstr "La base de datos no existe" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "Se produjo un error al crear el origen de datos" +#: superset/common/query_context_processor.py:702 +#, fuzzy +msgid "The chart datasource does not exist" +msgstr "La base de datos no existe" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Se produjo un error al obtener los dashboards: %s" +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "La base de datos no existe" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 +#: superset/common/query_object.py:290 #, python-format -msgid "An error occurred while fetching database related data: %s" +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Se produjo un error al obtener los datos relacionados con la base de " -"datos: %s" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Ha ocurrido un error cargando valores de la base de datos: %s" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "Se produjo un error al obtener los valores de la fuente de datos: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while fetching dataset owner values: %s" +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -"Se produjo un error al obtener los valores del propietario del conjunto " -"de datos: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "Se produjo un error al obtener datos relacionados con el conjunto de datos" - -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "" -"Se produjo un error al obtener datos relacionados con el conjunto de " -"datos: %s" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "La propiedad `operation` del objeto de post-procesamiento no está definida" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Se produjo un error al obtener conjuntos de datos: %s" +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Operación de post-procesamiento no soportada: %(operation)s" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 #, fuzzy -msgid "An error occurred while fetching function names." -msgstr "Se produjo un error al recuperar el estado de la pestaña" +msgid "[asc]" +msgstr "Básico" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -"Se produjo un error al obtener los valores de los propietarios de " -"gráfico: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Se produjo un error al obtener valores de esquema: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Se produjo un error al recuperar el estado de la pestaña" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "Se produjo un error al recuperar los metadatos de la tabla" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Error en la expresión jinja en el predicado de obtener valores: %(msg)s" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Se produjo un error al obtener los valores creados por: %s" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "La consulta de conjunto virtual debe ser de solo lectura" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, fuzzy, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Se produjo un error al obtener valores de esquema: %s" +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Error al guardar el conjunto de datos: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 #, fuzzy -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "" -"Se produjo un error desconocido. Por favor, contacta con tu administrador" -" de Superset" +msgid "Virtual dataset query cannot be empty" +msgstr "La consulta de conjunto virtual debe ser de solo lectura" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, fuzzy, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Se produjo un error al limpiar los registros" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" +msgstr "La consulta de conjunto virtual no puede consistir de varias consultas" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Se produjo un error al crear el origen de datos" +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 +#, python-format +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Error en la expresión jinja en los filtros RLS: %(msg)s" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Ocurrió un error al cargar SQL" +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" +msgstr "La métrica '%(metric)s' no existe" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -#, fuzzy -msgid "An error occurred while opening Explore" -msgstr "Se produjo un error al limpiar los registros" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "" -#: superset/key_value/exceptions.py:30 -#, fuzzy -msgid "An error occurred while parsing the key." -msgstr "Se produjo un error al crear el origen de datos" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Solo las consultas `SELECT` estan permitidas en esta base de datos" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Se produjo un error al limpiar los registros" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Solo consultas sencillas están soportadas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Columnas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Mostrar Columna" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Añadir Columna" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Ocurrió un error al crear la visualización: %s" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Editar Columna" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 +#: superset/connectors/sqla/views.py:104 msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" +"Si hacer que esta columna esté disponible como una opción [Time " +"Granularity], la columna debe ser DATETIME o DATETIME-like" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 +#: superset/connectors/sqla/views.py:109 msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" +"Si esta columna está expuesta en la sección `Filtros` de la vista de " +"exploración." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 +#: superset/connectors/sqla/views.py:113 msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" +"El tipo de datos que fue inferido por la base de datos. Puede ser " +"necesario ingresar un tipo manualmente para columnas definidas por " +"expresión. En la mayoría de los casos, los usuarios no deberían necesitar" +" alterar esto." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "" -"Se produjo un error desconocido. Por favor, contacta con tu administrador" -" de Superset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Columna" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." -msgstr "" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Nombre detallado" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Descripción" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -#, fuzzy -msgid "An error occurred while starring this chart" -msgstr "Ocurrió un error al cargar SQL" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Agrupable" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." -msgstr "" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filtrable" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabla" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -#, fuzzy -msgid "An error occurred while updating the value." -msgstr "Se produjo un error al crear el origen de datos" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Expresión" -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "Se produjo un error al crear el origen de datos" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Es temporal" -#: superset/databases/commands/exceptions.py:162 -#, fuzzy -msgid "An unexpected error occurred" -msgstr "Se produjo un error" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Formato FechaHora" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "" -"Se produjo un error desconocido. Por favor, contacta con tu administrador" -" de Superset" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Tipo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -#, fuzzy -msgid "Animation" -msgstr "anotación" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Anotación" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "Capas de Anotación" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Formato de fecha/hora inválido" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -#, fuzzy -msgid "Annotation Slice Configuration" -msgstr "Configuración de filtros" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Métricas" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "El Gráfico no ha podido crearse" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Mostrar Métrica" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "El Gráfico no ha podido guardarse" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Añadir Métrica" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Editar Métrica" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Capa de Anotación" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Métrica" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "El Gráfico no ha podido crearse" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "Expresión SQL" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "El Gráfico no ha podido eliminarse" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Formato D3" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "El Gráfico no ha podido guardarse" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Mensaje de Aviso" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -#, fuzzy -msgid "Annotation layer description columns" -msgstr "Capas de Anotación" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tablas" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "La capa de anotación tiene anotaciones asociadas" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Mostrar Tabla" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -#, fuzzy -msgid "Annotation layer interval end" -msgstr "Nombre de la capa de anotación" +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Importar definición de tabla" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "Nombre de la capa de anotación" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Esitar Tabla" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -#, fuzzy -msgid "Annotation layer opacity" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Desplazamiento de zona horaria (en horas) para esta fuente de datos" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Los parametros del Gráfico son invalidos" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Nombre de la tabla que existe en la fuente de datos." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -#, fuzzy -msgid "Annotation layer stroke" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +msgstr "" +"Esquema, tal como se utiliza solo en algunas bases de datos como " +"Postgres, Redshift y DB2" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." +msgstr "" +"Este campo actúa como una vista de Superset, lo que significa que " +"Superset ejecutará una consulta en esta cadena como una subconsulta." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "" +"El predicado aplicado al obtener un valor distinto para rellenar el " +"componente de control de filtro. Soporta la sintaxis de la plantilla " +"jinja. Se aplica solo cuando `Habilitar selección de filtro` está " +"activado." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "Redirige a este punto al hacer clic en la tabla de la lista de tablas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -#, fuzzy -msgid "Annotation layer value" -msgstr "Nombre de la capa de anotación" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "" +"Si rellenar el menú desplegable del filtro en la sección de filtros de la" +" vista de exploración con una lista de valores distintos obtenidos desde " +"el backend sobre la marcha" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Nombre de la anotación" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Anotaciones" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "Los parametros del Gráfico son invalidos" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "anotación" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Gráficos asociados" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -#, fuzzy -msgid "Annotation source type" -msgstr "Capas de Anotación" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Cambiado por" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "El Gráfico no ha podido crearse" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Base de datos" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "El Gráfico no ha podido guardarse" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Último cambio" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -#, fuzzy -msgid "Annotations and Layers" -msgstr "Anotaciones y capas" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Habilitar selección de filtro" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Anotaciones y capas" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Esquema" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "Las anotaciones no han podido eliminarse." +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Endpoint predeterminado" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -#, fuzzy -msgid "Any" -msgstr "día" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Desplazamiento" -#: 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 "" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Tiempo máximo de memoria caché" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Nombre Tabla" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Predicado Obtención de Valores" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " -msgstr "" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Propietarios" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "Agregar" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Columna principal de fecha y hora" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "Filtros aplicados (%d)" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "Vista de Laboratorio SQL" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "Filtros aplicados (%d)" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Parametros de plantilla" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "Filtros aplicados (%d)" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Modificado" -#: superset/viz.py:250 +#: superset/connectors/sqla/views.py:435 msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Aplicar" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -#, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "Información adicional" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -#, fuzzy -msgid "Apply filters" -msgstr "Todos los filtros" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -#, fuzzy -msgid "Apply metrics on" -msgstr "Métrica" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Aplicar a todos los páneles" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Aplicar a páneles específicos" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "Abril" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Título o Slug" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 +#: superset/dashboards/filters.py:193 #, fuzzy -msgid "Arc" -msgstr "Marzo" +msgid "Role" +msgstr "Perfil" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 #, fuzzy -msgid "Are you sure you intend to overwrite the following values?" -msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" +msgid "Invalid state." +msgstr "Certificado Inválido" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Nombre de tabla indefinido" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "onfirma que quieres eliminar" +#: superset/databases/filters.py:79 +#, fuzzy +msgid "Upload Enabled" +msgstr "Subir Excel" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, fuzzy, python-format -msgid "Are you sure you want to delete %s?" -msgstr "onfirma que quieres eliminar" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 #, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "¿Está seguro de que desea eliminar los %s seleccionados?" +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "El campo no puede ser decodificado por JSON. %(msg)s" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "¿Estas seguro de que quieres eliminar los gráficos seleccionados?" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "¿Estas seguro de que quieres eliminar los dashboards seleccionados?" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Selecciona una base de datos" +msgstr[1] "Selecciona una base de datos" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Nulo o Vacío" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#: superset/db_engine_specs/base.py:98 #, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?" +msgid "Second" +msgstr "30 segundos" -#: superset-frontend/src/pages/Tags/index.tsx:282 +#: superset/db_engine_specs/base.py:99 #, fuzzy -msgid "Are you sure you want to delete the selected tags?" -msgstr "¿Está seguro de que desea eliminar los %s seleccionados?" +msgid "5 second" +msgstr "30 segundos" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "¿Estas seguro de que quieres eliminar las plantillas seleccionadas?" +#: superset/db_engine_specs/base.py:100 +#, fuzzy +msgid "30 second" +msgstr "30 segundos" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 +#: superset/db_engine_specs/base.py:101 #, fuzzy -msgid "Are you sure you want to overwrite this dataset?" -msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" +msgid "Minute" +msgstr "minuto" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "¿Seguro que quieres proceder?" +#: superset/db_engine_specs/base.py:102 +#, fuzzy +msgid "5 minute" +msgstr "5 minutos" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" +#: superset/db_engine_specs/base.py:103 +#, fuzzy +msgid "10 minute" +msgstr "1 minuto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 +#: superset/db_engine_specs/base.py:104 #, fuzzy -msgid "Area Chart" -msgstr "Compartir gráfico" +msgid "15 minute" +msgstr "1 minuto" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 +#: superset/db_engine_specs/base.py:105 #, fuzzy -msgid "Area Chart (legacy)" -msgstr "Compartir gráfico" +msgid "30 minute" +msgstr "30 minutos" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 +#: superset/db_engine_specs/base.py:106 #, fuzzy -msgid "Area chart" -msgstr "Compartir gráfico" +msgid "Hour" +msgstr "hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 #, fuzzy -msgid "Area chart opacity" -msgstr "Compartir gráfico" +msgid "6 hour" +msgstr "6 horas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." -msgstr "" +#: superset/db_engine_specs/base.py:108 +#, fuzzy +msgid "Day" +msgstr "día" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 +#: superset/db_engine_specs/base.py:109 #, fuzzy -msgid "Arrow" -msgstr "hileras" +msgid "Week" +msgstr "semana" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +#: superset/db_engine_specs/base.py:110 #, fuzzy -msgid "Assign a set of parameters as" -msgstr "Los parametros del conjunto de datos son inválidos." +msgid "Month" +msgstr "mes" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Gráficos asociados" +#: superset/db_engine_specs/base.py:111 +#, fuzzy +msgid "Quarter" +msgstr "consulta" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Ejecución Asincrónica" +#: superset/db_engine_specs/base.py:112 +#, fuzzy +msgid "Year" +msgstr "año" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "Ejecución asíncrona de consultas" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "Agosto" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "" + +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 #, fuzzy -msgid "Auto" -msgstr "en" +msgid "Username" +msgstr "Nombre de la consulta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +#, fuzzy +msgid "Password" +msgstr "Contraseña de Broker" + +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 #, fuzzy -msgid "Autocomplete" -msgstr "Autocompletar filtros" +msgid "Database port" +msgstr "Base de datos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "Autocompletar filtros" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "Autocompletar predicado de consulta" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +#, fuzzy +msgid "Additional parameters" +msgstr "Editar parámetros de la plantilla" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Usar una conexión encriptada a la base de datos" + +#: superset/db_engine_specs/base.py:2004 +#, fuzzy +msgid "Use an ssh tunnel connection to the database" +msgstr "Usar una conexión encriptada a la base de datos" + +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "Compartir" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "Iniciar en" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -#, fuzzy -msgid "Axis" -msgstr "Eje Y" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -#, fuzzy -msgid "Axis Bounds" -msgstr "Filtrar por estado" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Host desconocido de MySQL: \"%(hostname)s\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "Formato Eje Y" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -#, fuzzy -msgid "Axis Title" -msgstr "%s - sin título" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "No se puede conectar a la Base de Datos: \"%(database)s\\ " + +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -#, fuzzy -msgid "Axis ascending" -msgstr "Orden Descendente" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -#, fuzzy -msgid "Axis descending" -msgstr "Orden descendente" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Backend" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Host desconocido de MySQL: \"%(hostname)s\"" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -#, fuzzy -msgid "Backward values" -msgstr "Valores Nulos" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, fuzzy, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "La métrica '%(metric)s' no existe" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -#, fuzzy -msgid "Bad formula." -msgstr "Formato Fecha/Hora" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "Clave espacial errónea" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "No se puede conectar a la Base de Datos: \"%(database)s\\ " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -#, fuzzy -msgid "Bar Chart" -msgstr "Compartir gráfico" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#, fuzzy -msgid "Bar Chart (legacy)" -msgstr "Compartir gráfico" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -#, fuzzy -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -"Los gráficos de barras en las series de tiempo se utilizan para mostrar " -"los cambios en las métricas con el paso del tiempo, en forma de barras." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -#, fuzzy -msgid "Bar Values" -msgstr "Valores Nulos" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "La métrica '%(metric)s' no existe" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -#, fuzzy -msgid "Bar orientation" -msgstr "Eliminar anotación" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "Base de datos" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" + +#: superset/db_engine_specs/postgres.py:289 #, fuzzy -msgid "Based on a metric" -msgstr "Consultas Guardadas" +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" +"La base de datos SQLite no puede ser usada como fuente de datos por " +"razones de seguridad." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Básico" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "No se puede conectar al catálogo \"%(catalog_name)s\"." -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "Información Basica" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Error de Presto desconocido" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/db_engine_specs/redshift.py:97 #, python-format -msgid "Batch editing %d filters:" -msgstr "Editando %d filtros simultáneamente:" +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "Se precavido." +#: superset/explore/exceptions.py:45 +#, fuzzy +msgid "Samples for datasource could not be retrieved." +msgstr "El conjunto de datos no pudo ser creado." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Before" -msgstr "Intervlo de actualización" +msgid "Changing this datasource is forbidden" +msgstr "No está permitido cambiar este conjunto de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Número Grande" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Inicio" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "" +#: superset/initialization/__init__.py:242 +#, fuzzy +msgid "Database Connections" +msgstr "Probar Conexión" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Número Grande con Línea de Tendencia" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -#, fuzzy -msgid "Bottom" -msgstr "dttm" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Dashboards" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Gráficos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -#, fuzzy -msgid "Bottom left" -msgstr "dttm" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Conjuntos de datos" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" +#: superset/initialization/__init__.py:276 +msgid "Plugins" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -#, fuzzy -msgid "Bottom right" -msgstr "dttm" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Administrar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "Plantillas CSS" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "Laboratorio SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Consultas Guardadas" + +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Historial de la consulta" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +#, fuzzy +msgid "Tags" +msgstr "Estado" + +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Bitácora de acciones" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Seguridad" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." -msgstr "" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Alertas y reportes" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" -msgstr "Diagrama de Caja" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Capas de Anotación" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 #, fuzzy -msgid "Breakdowns" -msgstr "Creado el" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Gráfico de Burbujas" +msgid "Row Level Security" +msgstr "Seguridad a nivel de registros" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +#: superset/key_value/exceptions.py:30 #, fuzzy -msgid "Bubble Color" -msgstr "Color fijo" +msgid "An error occurred while parsing the key." +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#: superset/key_value/exceptions.py:50 #, fuzzy -msgid "Bubble Size" -msgstr "Tamaño burbuja" +msgid "An error occurred while upserting the value." +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Tamaño burbuja" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Selección múltiple" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "" +"No se ha proporcionado una columna de fecha y hora y es requerida por " +"este tipo de gráfico" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Gráfico de Puntos" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "¿Consulta vacía?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Columna desconocida utilizada al ordenar: %(col)s%" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." -msgstr "" +#: superset/models/helpers.py:1821 +#, fuzzy +msgid "error_message" +msgstr "Mensaje de error" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" -msgstr "" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Tipo de operación de filtrado inválida: %(op)s" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "CANCELAR" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Error en la expresión jinja en la cláusula WHERE: %(msg)s" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -#, fuzzy -msgid "CREATE DATASET" -msgstr "Cambiar fuente" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Error en la expresión jinja en la cláusula HAVING: %(msg)s" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "Permitir CREATE TABLE AS" +#: superset/models/helpers.py:2090 +#, fuzzy +msgid "Database does not support subqueries" +msgstr "La base de datos no existe" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "Permitir CREATE TABLE AS" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "Instrucción CREATE VIEW" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 #, fuzzy -msgid "CRON Schedule" -msgstr "Programar informe" - -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "Expresión CRON" - -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +msgid "Value must be greater than 0" +msgstr "`row_offset` debe ser mayor o igual a 0" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "Plantillas CSS" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "Plantillas CSS" - -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "El Gráfico no ha podido eliminarse" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "Nombre de plantilla CSS" - -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "Plantillas CSS" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "Plantillas CSS" +#: superset/reports/notifications/email.py:88 +#, python-format +msgid "" +"\n" +" Error: %(text)s\n" +" " +msgstr "" -#: superset/views/database/forms.py:109 +#: superset/reports/notifications/email.py:132 #, fuzzy -msgid "CSV Upload" -msgstr "Subida de archivos CSV" +msgid "EMAIL_REPORTS_CTA" +msgstr "Alertas e informes" -#: superset/views/database/views.py:290 +#: superset/reports/notifications/email.py:170 #, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +msgid "%(name)s.csv" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "Configuración de CSV a base de datos" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "Subida de archivos CSV" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset/sql_lab.py:432 +#: superset/reports/notifications/slack.py:93 +#, python-format msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "Esquema CTAS" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/security/analytics_db_safety.py:52 +#, fuzzy, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" +"La base de datos SQLite no puede ser usada como fuente de datos por " +"razones de seguridad." -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/security/manager.py:2394 +#, fuzzy, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "No tienes los derechos para alterar este título." + +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Tiempo máximo de memoria caché" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Tiempo de espera de caché (segundos)" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Tiempo de espera de caché" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "" + +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -#, fuzzy -msgid "Cached" -msgstr "en cache" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" -msgstr "En cache %s" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "La base de datos no existe" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "Valor no encontrado en memoria caché" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "Configurar rango de tiempo personalizado" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 +#: superset/tasks/exceptions.py:24 #, fuzzy -msgid "Calculate contribution per series or row" -msgstr "Calcular la contribución al total" +msgid "Scheduled task executor not found" +msgstr "No se encontró el estado del informe programado" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "Columna calculada [%s] requiere una expresión" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Número de Registros" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Columnas calculadas" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "No se encontraron registros" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Tipo de Cálculo" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Filtrar lista" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Mapa de Calor de Calendario" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Buscar" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Intervlo de actualización" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -#, fuzzy -msgid "Can select multiple values" -msgstr "Limitar valores del selector" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Importar dashboards" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "No puede haber solapamiento entre Series y Distribuciones" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Importar Dashboard(s)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Cancelar" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Archivo" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Seleccionar archivo" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" -msgstr "" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Subir" -#: superset/databases/commands/exceptions.py:111 +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 #, fuzzy -msgid "Cannot delete a database that has datasets attached" -msgstr "No se puede eliminar una base de datos que tiene tablas adjuntas" +msgid "Use the edit button to change this field" +msgstr "Usa el botón 'editar' para cambiar este campo" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" -msgstr "" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Probar Conexión" -#: superset/views/core.py:734 +#: superset/utils/core.py:993 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -#, fuzzy -msgid "Cannot load filter" -msgstr "Filtro de padre" +#: superset/utils/core.py:1246 +#, fuzzy, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "Certificado Inválido" + +#: superset/utils/date_parser.py:393 +#, fuzzy, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "No se pudo encontrar el día festivo: [{}]" -#: superset/charts/commands/exceptions.py:51 +#: superset/utils/encrypt.py:121 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -#, fuzzy -msgid "Categorical Color" -msgstr "Esquema de Color Lineal" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "Nombre de la consulta" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -#, fuzzy -msgid "Category and Value" -msgstr "Introduce un valor" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Operador acumulativo inválido: %(operator)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -#, fuzzy -msgid "Category name" -msgstr "Nombre de la consulta" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Cadena de geohash inválida" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Longitud/latitud inválidas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Cadena geodésica inválida" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "La operación de pivote requiere al menos un índice" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "La operación de pivote debe incluir al menos un agregado" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset/utils/pandas_postprocessing/prophet.py:65 #, fuzzy -msgid "Cell Size" -msgstr "Archivo de Excel" +msgid "`prophet` package not installed" +msgstr "El paquete `fbprophet` no está instalado" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -#, fuzzy -msgid "Cell bars" -msgstr "Todos los gráficos" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Granularidad Temporal" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "Contenido de la celda" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Granularidad temporal no soportada: %(time_grain)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 +#: superset/utils/pandas_postprocessing/prophet.py:130 #, fuzzy -msgid "Cell limit" -msgstr "Límite de Serie" +msgid "Periods must be a whole number" +msgstr "Los periodos deben ser un valor entero positivo" + +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "El intervalo de confianza debe estar entre 0 y 1 (exclusivo)" + +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "El DataFrame debe incluir una columna temporal" + +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "Por favor elige al menos una métrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 +#: superset/utils/pandas_postprocessing/rename.py:53 #, fuzzy -msgid "Center" -msgstr "Recientes" +msgid "Label already exists" +msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 +#: superset/utils/pandas_postprocessing/resample.py:43 #, fuzzy -msgid "Centroid (Longitude and Latitude): " -msgstr "Longitud/latitud inválidas" +msgid "Resample operation requires DatetimeIndex" +msgstr "La operación de pivote requiere al menos un índice" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +#: superset/utils/pandas_postprocessing/resample.py:46 #, fuzzy -msgid "Certification" -msgstr "Certificado raíz" +msgid "Resample method should in " +msgstr "Método de Remuestra Pandas" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Ventana no definida para la operación de movimiento" + +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -#, fuzzy -msgid "Certified" -msgstr "Certificado por" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "rolling_type inválido: %(type)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -#, fuzzy -msgid "Certified By" -msgstr "Certificado por" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Opciones inválidas para %(rolling_type)s: %(options)s" -#: 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Certificado por" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "Columnas referenciadas no disponibles en DataFrame." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/utils/pandas_postprocessing/utils.py:153 #, python-format -msgid "Certified by %s" -msgstr "Certidicado por %s" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" +"La(s) columna(s) referenciada(s) por los agregados no está(n) " +"definida(s): %(column)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Operador no definido para el agregado: %(name)s" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Cambiado por" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" +msgstr "Función numpy inválida: %(operator)s" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Cambiado el" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Error inesperado: " -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "no es json válido" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" -msgstr "" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Exportar a YAML" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." -msgstr "" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "¿Exportar a YAML?" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "Cambiar este Dashboard está prohibido" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Eliminar" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "No esta permitido modificar este Gráfico" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "Los aambios en este control surten efecto de inmediato" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Favoritos" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "No está permitido cambiar este conjunto de datos" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "" + +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "La fuente de datos parece haber sido eliminada" + +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "El usuario parece haber sido eliminado" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 +#: superset/views/core.py:289 #, fuzzy -msgid "Changing this dataset is forbidden." -msgstr "No está permitido cambiar este conjunto de datos" +msgid "You don't have the rights to download as csv" +msgstr "No tienes los permisos para " -#: superset/explore/exceptions.py:49 +#: superset/views/core.py:420 #, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "No está permitido cambiar este conjunto de datos" +msgid "Error: permalink state not found" +msgstr "No se encontró el estado del informe programado" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "No está permitido cambiar este informe" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +msgstr "" -#: superset/views/database/forms.py:206 +#: superset/views/core.py:509 #, fuzzy -msgid "Character to interpret as decimal point" -msgstr "Caracter que interpreta como punto decimal." - -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "Caracter que interpreta como punto decimal." +msgid "You don't have the rights to alter this chart" +msgstr "No tienes los derechos para alterar este título." -#: 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "Gráfico" +#: superset/views/core.py:515 +#, fuzzy +msgid "You don't have the rights to create a chart" +msgstr "No tienes los permisos para " -#: superset/views/core.py:1762 +#: superset/views/core.py:570 #, python-format -msgid "Chart %(id)s not found" -msgstr "Gráfico %(id)s no encontrado" +msgid "Explore - %(table)s" +msgstr "Explorar - %(table)s" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Explorar" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "Última actualización %s" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "El gráfico [{}] ha sido guardado" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "ID de gráfico" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +msgstr "El gráfico [{}] ha sido sobreescrito" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 +#: superset/views/core.py:645 #, fuzzy -msgid "Chart Options" -msgstr "Editar propiedades de gráfico" +msgid "You don't have the rights to alter this dashboard" +msgstr "No tienes los derechos para alterar este título." + +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "El gráfico [{}] ha sido añadido al dashboard [{}]" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 +#: superset/views/core.py:661 #, fuzzy -msgid "Chart Orientation" -msgstr "Eliminar anotación" +msgid "You don't have the rights to create a dashboard" +msgstr "No tienes los permisos para " -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Propietario del Gráfico: %s" -msgstr[1] "" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "Fuente de datos" +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" +msgstr "" +"Solicitud mal formada. Se esperan argumentos de slice_id o table_name y " +"db_name" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -#, fuzzy -msgid "Chart Title" -msgstr "Tipo de dato" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Gráfico %(id)s no encontrado" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, fuzzy, python-format -msgid "Chart [%s] has been overwritten" -msgstr "El gráfico [{}] ha sido sobreescrito" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "La tabla %(table)s no fue encontrada en la base de datos %(db)s" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" -msgstr "El gráfico [{}] ha sido guardado" +#: superset/views/core.py:836 +#, fuzzy +msgid "permalink state not found" +msgstr "No se encontró el estado del informe programado" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, fuzzy, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "El gráfico [{}] ha sido añadido al dashboard [{}]" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Mostrar Plantilla CSS" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "El gráfico [{}] ha sido sobreescrito" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Añadir Plantilla CSS" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "El gráfico [{}] ha sido guardado" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Editar Plantilla CSS" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" -msgstr "El gráfico [{}] ha sido añadido al dashboard [{}]" +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Nombre Plantilla" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Tiempo de espera de caché" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Un nombre legible para personas" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "El Gráfico ha cambiado" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/dynamic_plugins.py:52 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "El Gráfico no ha podido crearse" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Customizar" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "El Gráfico no ha podido eliminarse" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Customizar" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "El Gráfico no ha podido guardarse" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Añadir Columna" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "La base de datos no existe" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Editar Columna" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -#, fuzzy -msgid "Chart height" -msgstr "Tipo de dato" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "No se pudo determinar el tipo de fuente de datos" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -#, fuzzy -msgid "Chart imported" -msgstr "Tipo de dato" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "No se pudo encontrar el objeto de visualización" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "Última modificación" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Mostrar Gráfico" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "Última modificación por %s" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Añadir Gráfico" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "El Gráfico ha cambiado" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Editar Gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -#, fuzzy -msgid "Chart options" -msgstr "Editar propiedades de gráfico" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." +msgstr "" +"Estos parámetros se generan dinámicamente al hacer clic en el botón " +"Guardar o sobrescribir en la vista de exploración. Este objeto JSON se " +"expone aquí como referencia y para usuarios avanzados que quieran " +"modificar parámetros específicos." -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "Propietario del Gráfico: %s" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Los parametros del Gráfico son invalidos" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Creador" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -#, fuzzy -msgid "Chart properties updated" -msgstr "Editar propiedades de gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Fuente de datos" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -#, fuzzy -msgid "Chart title" -msgstr "Tipo de dato" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Última modificación" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Tipo de dato" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parámetros" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Gráfico" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "Tipo de dato" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Nombre" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Gráficos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Tipo de Visualización" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Los Gráficos no han podido eliminarse" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Mostrar Dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -#, fuzzy -msgid "Check configuration" -msgstr "Configuración" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Añadir Dashboard" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Selecciona para ordenar de forma ascendente" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Editar Dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 +#: superset/views/dashboard/mixin.py:46 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" +"Este objeto JSON describe la posición de los widgets en el panel de " +"control. Se genera dinámicamente al ajustar el tamaño y las posiciones de" +" los widgets mediante la función de arrastrar y soltar en la vista del " +"tablero" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" +"El css para dashboards de manera individual puede ser modificado aquí, o " +"en la vista del dashboard donde los cambios se ven de forma inmediata" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Para obtener una URL legible para tu panel de control" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" +"Este objeto JSON se genera dinámicamente al hacer clic en el botón " +"Guardar o sobrescribir en la vista del Dashboard. Se expone aquí como " +"referencia y para usuarios avanzados que quieran modificar parámetros " +"específicos." -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." msgstr "" +"Propietarios es una lista de usuarios que pueden alterar el panel de " +"control." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 +#: superset/views/dashboard/mixin.py:65 msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -"Marcar para aplicar filtros instantáneamente cuando cambian en vez de " -"mostrar el botón [Aplicar]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" -msgstr "" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "Identifica si el dashboard es visible en la lista de dashboards" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "Marcar para incluir la columna de tiempo en la caja de selección" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Dashboard" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -#, fuzzy -msgid "Check to include time grain dropdown" -msgstr "Marcar para incluir la caja de selección de origen de tiempo" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Título" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" -msgstr "" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "La opción de [Etiqueta] debe estar presente en [Group By]" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Roles" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "La opción de [Radio de Puntos] debe estar presente en [Group By]" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Publicado" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Seleccionar archivo" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Posición JSON" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Elija un gráfico o un dashboard, no ambos" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -#, fuzzy -msgid "Choose a database..." -msgstr "Selecciona una base de datos" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "Metadatos JSON" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Selecciona una base de datos" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Exportar" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Elige una métrica para el eje derecho" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "¿Exportar Dashboards?" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 +#: superset/views/database/forms.py:109 #, fuzzy -msgid "Choose a number format" -msgstr "Elige una métrica para el eje derecho" +msgid "CSV Upload" +msgstr "Subida de archivos CSV" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 +#: superset/views/database/forms.py:110 #, fuzzy -msgid "Choose a source" -msgstr "Selecciona una base de datos" +msgid "Select a file to be uploaded to the database" +msgstr "Selecciona un archivo CSV para ser cargado a una base de datos." -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "" +"Solo se permiten las siguientes extensiones de archivo: " +"%(allowed_extensions)s" + +#: superset/views/database/forms.py:130 #, fuzzy -msgid "Choose a source and a target" -msgstr "Selecciona una base de datos" +msgid "Name of table to be created with CSV file" +msgstr "Nombre de la tabla que se creará a partir de los datos csv." + +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "" + +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 +#: superset/views/database/forms.py:145 #, fuzzy -msgid "Choose a target" -msgstr "Selecciona una base de datos" +msgid "Column Data Types" +msgstr "Datos cargados en caché" + +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + +#: superset/views/database/forms.py:156 +#, fuzzy +msgid "Select a schema if the database supports this" +msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)." + +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Delimitador" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 +#: superset/views/database/forms.py:162 #, fuzzy -msgid "Choose chart type" -msgstr "Tipo de dato" +msgid "Enter a delimiter for this data" +msgstr "Ingresa un nuevo título para la pestaña" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "Capas de Anotación" +#: superset/views/database/forms.py:165 +msgid "." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 #, fuzzy -msgid "Choose the format for legend values" -msgstr "Elige una métrica para el eje derecho" +msgid "Other" +msgstr "mes" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +#: superset/views/database/forms.py:175 #, fuzzy -msgid "Choose the position of the legend" -msgstr "Calcular la contribución al total" +msgid "If Table Already Exists" +msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#: superset/views/database/forms.py:176 #, fuzzy -msgid "Choose the source of your annotations" -msgstr "Configurar los elementos básicos de la capa de anotaciones." +msgid "What should happen if the table already exists" +msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Falla" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Remplazar" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Agregar" + +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Omitir Espacio Inicial" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 +#: superset/views/database/forms.py:185 #, fuzzy -msgid "Circle" -msgstr "Archivo" +msgid "Skip spaces after delimiter" +msgstr "Omitir espacios después del delimitador." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Saltar líneas vacías" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" -msgstr "" +#: superset/views/database/forms.py:189 +#, fuzzy +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "Saltar líneas vacías en lugar de interpretarlas como valores NaN." -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:194 +#, fuzzy +msgid "Columns To Be Parsed as Dates" msgstr "" +"Una lista separada por comas de columnas que deben ser parseadas como " +"fechas." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:195 +#, fuzzy +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" +"Una lista separada por comas de columnas que deben ser parseadas como " +"fechas." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "Cláusula" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Limpiar" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Caracter Decimal" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset/views/database/forms.py:207 #, fuzzy -msgid "Clear all data" -msgstr "Todos los gráficos" +msgid "Character to interpret as decimal point" +msgstr "Caracter que interpreta como punto decimal." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 +#: superset/views/database/forms.py:212 #, fuzzy -msgid "Clear form" -msgstr "Formato D3" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" -msgstr "" +msgid "Null Values" +msgstr "Valores Nulos" -#: superset-frontend/src/components/Chart/Chart.jsx:286 +#: superset/views/database/forms.py:214 msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "CLick en el candado para poder realizar cambios." - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "Click sobre el candado para prevenir futuros cambios." - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." -msgstr "" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Columna de Índice" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/database/forms.py:222 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "" - -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Click para editar" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, fuzzy, python-format -msgid "Click to edit %s." -msgstr "Click para editar" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#, fuzzy -msgid "Click to edit chart." -msgstr "Click para editar" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Índice de Dataframe" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +#: superset/views/database/forms.py:230 #, fuzzy -msgid "Click to edit label" -msgstr "Click para editar" - -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Haz clic para favorito/no favorito" +msgid "Write dataframe index as a column" +msgstr "Escribe el índice del dataframe como una columna." -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Haga clic para forzar la actualización" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Etiqueta(s) de columna" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:216 +#: superset/views/database/forms.py:242 #, fuzzy -msgid "Click to sort ascending" -msgstr "Selecciona para ordenar de forma ascendente" +msgid "Columns To Read" +msgstr "Mostrar Columna" -#: superset-frontend/src/components/Table/index.tsx:215 +#: superset/views/database/forms.py:244 #, fuzzy -msgid "Click to sort descending" -msgstr "Orden descendente" +msgid "Json list of the column names that should be read" +msgstr "" +"Una lista separada por comas de columnas que deben ser parseadas como " +"fechas." -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "Cerrar" +#: superset/views/database/forms.py:248 +#, fuzzy +msgid "Overwrite Duplicate Columns" +msgstr "Manglar Columnas Duplicadas" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Cerrar las demás pestañas" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Cerrar pestaña" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Fila de Encabezado" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Filas a Leer" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Código" +#: superset/views/database/forms.py:266 +#, fuzzy +msgid "Number of rows of file to read" +msgstr "Número de filas del archivo a leer." -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Contraer todo" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Omitir Filas" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 +#: superset/views/database/forms.py:272 #, fuzzy -msgid "Collapse data panel" -msgstr "Contraer todo" +msgid "Number of rows to skip at start of file" +msgstr "Número de filas a omitir al inicio del archivo." -#: superset-frontend/src/components/Table/index.tsx:214 -#, fuzzy -msgid "Collapse row" -msgstr "Contraer todo" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Nombre de la tabla que se creará a partir de datos de excel." -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -#, fuzzy -msgid "Collapse tab content" -msgstr "Contenido de la celda" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Archivo de Excel" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -#, fuzzy -msgid "Collapse table preview" -msgstr "Eliminar vista previa de la tabla" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Color" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Nombre de Hoja" + +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "Cadenas usadas para nombres de hojas (por defecto es la primera hoja)." + +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "Tabla Existe" + +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -#, fuzzy -msgid "Color Metric" -msgstr "Métrica de Color" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -#, fuzzy -msgid "Color Scheme" -msgstr "Esquema de Color" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -#, fuzzy -msgid "Color Steps" -msgstr "Esquema de Color" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Número de filas a omitir al inicio del archivo." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" -msgstr "" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Número de filas del archivo a leer." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -#, fuzzy -msgid "Color by" -msgstr "Ordenar por" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Parsear Fechas" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Métrica de Color" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." +msgstr "" +"Una lista separada por comas de columnas que deben ser parseadas como " +"fechas." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -#, fuzzy -msgid "Color of the target location" -msgstr "Propietarios del dataset" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Caracter que interpreta como punto decimal." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Esquema de Color" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Escribe el índice del dataframe como una columna." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Colores" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Columna" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Valores Nulos" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset/views/database/forms.py:401 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 +#: superset/views/database/forms.py:413 #, fuzzy -msgid "Column Configuration" -msgstr "Configuración" +msgid "Name of table to be created from columnar data." +msgstr "Nombre de la tabla que se creará a partir de datos de excel." -#: superset/views/database/forms.py:144 +#: superset/views/database/forms.py:421 #, fuzzy -msgid "Column Data Types" -msgstr "Datos cargados en caché" +msgid "Columnar File" +msgstr "Columna" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 +#: superset/views/database/forms.py:422 #, fuzzy -msgid "Column Formatting" -msgstr "Información adicional" +msgid "Select a Columnar file to be uploaded to a database." +msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Etiqueta(s) de columna" +#: superset/views/database/forms.py:469 +#, fuzzy +msgid "Use Columns" +msgstr "%s columnas(s)" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/database/forms.py:471 msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Bases de datos" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "Nombre(s) de columna(s) " +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Mostrar Base de Datos" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Añadir Base de Datos" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -#, fuzzy -msgid "Column is required" -msgstr "Nombre es requerido" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Editar Base de Datos" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." -msgstr "" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Mostrar esta base de datos en el laboratorio SQL" -#: superset/views/database/forms.py:233 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "Nombre(s) de columna(s) " +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Permitir la opción CREAR TABLA COMO en el laboratorio SQL" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" -msgstr "La columna [%s] esta duplicada" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Permitie opción CREATE VIEW AS en el laboratorio SQL" -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -"La(s) columna(s) referenciada(s) por los agregados no está(n) " -"definida(s): %(column)s" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -#, fuzzy -msgid "Column select" -msgstr "Probar Conexión" +"Permitir que los usuarios ejecuten instrucciones que no sean SELECT " +"(UPDATE, DELETE, CREATE, ...) en el laboratorio SQL" -#: superset/views/database/forms.py:221 +#: superset/views/database/mixins.py:119 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" +"Cuando se permite la opción CREATE TABLE AS en el laboratorio SQL, esta " +"opción hace que la tabla se cree en este esquema" -#: superset/views/database/forms.py:352 +#: superset/views/database/mixins.py:165 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:424 -#, fuzzy -msgid "Columnar File" -msgstr "Columna" - -#: superset/views/database/views.py:568 -#, python-format +#: superset/views/database/mixins.py:172 msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -#: superset/views/database/views.py:443 -#, fuzzy -msgid "Columnar to Database configuration" -msgstr "Configuración de Excel a base de datos" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "" +"Si se selecciona, por favor, establezca los esquemas permitidos en " +"Adicional" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Columnas" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Mostrar en el laboratorio SQL" -#: superset/views/database/forms.py:193 -#, fuzzy -msgid "Columns To Be Parsed as Dates" -msgstr "" -"Una lista separada por comas de columnas que deben ser parseadas como " -"fechas." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Permitir CREATE TABLE AS" -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "Mostrar Columna" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Permitir CREATE VIEW AS" -#: superset/common/query_context_processor.py:132 -#, fuzzy, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Permitir DML" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Esquema CTAS" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "URI SQLAlchemy" + +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -#, fuzzy -msgid "Columns to display" -msgstr "Elige qué métrica mostrar" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Certificado raíz" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -#, fuzzy -msgid "Columns to group by" -msgstr "Uno o varios controles para agrupar por" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Ejecución Asincrónica" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Suplantar el usuario conectado" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Permitir carga de CSV" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -#, fuzzy -msgid "Columns to show" -msgstr "Elige qué métrica mostrar" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Backend" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -#, fuzzy -msgid "Combine metrics" -msgstr "Métroca de orden" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "El campo adicional no se puede decodificar por JSON. %(msg)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +#: superset/views/database/validators.py:40 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "Configuración de CSV a base de datos" + +#: superset/views/database/views.py:180 +#, python-format msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +#: superset/views/database/views.py:289 +#, python-format msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Configuración de Excel a base de datos" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +#: superset/views/database/views.py:319 +#, python-format msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 +#: superset/views/database/views.py:412 +#, python-format msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +#: superset/views/database/views.py:424 +#, python-format msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +#: superset/views/database/views.py:440 #, fuzzy -msgid "Comparison" -msgstr "Columna de Tiempo" +msgid "Columnar to Database configuration" +msgstr "Configuración de Excel a base de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -#, fuzzy -msgid "Comparison suffix" -msgstr "Columna de Tiempo" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Calcular la contribución al total" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -#, fuzzy -msgid "Condition" -msgstr "Probar Conexión" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Información adicional" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -#, fuzzy -msgid "Conditional formatting" -msgstr "Información adicional" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Registros" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -#, fuzzy -msgid "Confidence interval" -msgstr "Intérvalo de actualización" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Mostrar Registro" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "El intervalo de confianza debe estar entre 0 y 1 (exclusivo)" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Agregar Registro" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Configuración" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Editar Registro" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -#, fuzzy -msgid "Configure Advanced Time Range " -msgstr "Configurar rango de tiempo avanzado" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Usuario" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Configurar Rango de Tiempo: Últimos.." +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Acción" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Configurar Ranfo de Tiempo: Anteriores..." +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Configurar rango de tiempo personalizado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Configurar ámbito de filtros" +#: superset/views/sql_lab/views.py:93 +#, fuzzy +msgid "Untitled Query" +msgstr "Consulta sin título" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "Configurar los elementos básicos de la capa de anotaciones." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +#, fuzzy +msgid "Time Range" +msgstr "Periodo de tiempo" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +#, fuzzy +msgid "Time Column" +msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +#, fuzzy +msgid "Time Grain" +msgstr "Granularidad Temporal" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 #, fuzzy -msgid "Confirm overwrite" -msgstr "Confirmar guardado" +msgid "Time Granularity" +msgstr "Granularidad de Tiempo" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "Confirmar guardado" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Tiempo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "" +"Una referencia a la configuración [Tiempo], teniendo en cuenta la " +"granularidad." + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 #, fuzzy -msgid "Connect" -msgstr "Probar Conexión" +msgid "Aggregate" +msgstr "agregación" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#, fuzzy +msgid "Category name" +msgstr "Nombre de la consulta" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy -msgid "Connect a database" -msgstr "Selecciona una base de datos" +msgid "Total value" +msgstr "Valores Nulos" -#: superset-frontend/src/features/home/RightMenu.tsx:173 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 #, fuzzy -msgid "Connect database" -msgstr "Selecciona una base de datos" +msgid "Minimum value" +msgstr "Valores Nulos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +#, fuzzy +msgid "Maximum value" +msgstr "Valores Nulos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "Iniciar en" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Probar Conexión" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "Certidicado por %s" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "La conexión ha fallado, por favor verifique sus ajustes de conexión" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "descripción" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" -msgstr "¡La conexión parece correcta!" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "tornillo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -#, fuzzy -msgid "Continue" -msgstr "Columna" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Los aambios en este control surten efecto de inmediato" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Contribución" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "Expresión SQL" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Contribution Mode" -msgstr "Contribución" +msgid "Column datatype" +msgstr "Nombre(s) de columna(s) " -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 #, fuzzy -msgid "Control" -msgstr "Columna" - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "" +msgid "Column name" +msgstr "Nombre(s) de columna(s) " -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Etiqueta" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 #, fuzzy -msgid "Coordinates" -msgstr "Coordenadas Paralelas" +msgid "Metric name" +msgstr "Nombre de la consulta" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 #, fuzzy -msgid "Copied to clipboard!" -msgstr "Copiar al portapapeles" +msgid "unknown type icon" +msgstr "Valor desconocido" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "Copiar instrucción SELECT al portapapeles" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "Copiar enlace" - -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "Mensaje de Aviso" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Copia de %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Copiar consulta de partición al portapapeles" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -#, fuzzy -msgid "Copy permalink to clipboard" -msgstr "Copiar consulta de partición al portapapeles" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Analíticos Avanzadas" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Copiar URL de la consulta" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"Esta sección contiene opciones que permiten el procesamiento analítico " +"avanzado de los resultados de la consulta" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Copiar consulta de partición al portapapeles" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Ventana de desplazamiento" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Probar Conexión" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" +"Define un una ventana de desplazamiento móvil para aplicar, funciona " +"junto con el cuadro de texto [Periods]" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -#, fuzzy -msgid "Copy to Clipboard" -msgstr "Copiar al portapapeles" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Periodos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -#, fuzzy -msgid "Correlation" -msgstr "Duración" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "" +"Define el tamaño de la función de ventana móvil, en relación con la " +"granularidad de tiempo seleccionada" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Estimación de costo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Periodos Mínimos" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "No se puede conectar a la Base de Datos: \"%(database)s\\ " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" +msgstr "" +"El número mínimo de períodos de desplazamiento necesarios para mostrar un" +" valor. Por ejemplo, si realizas una suma acumulada en 7 días, es posible" +" que quieras que tu \"Período mínimo\" sea 7, de modo que todos los " +"puntos de datos mostrados sean el total de 7 períodos. Esto ocultará el " +"\"incremento\" que tendrá lugar durante los primeros 7 períodos." -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "No se pudo determinar el tipo de fuente de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Columna de Tiempo" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "No se pudieron cargar todos los gráficos guardados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Desplazamiento de tiempo" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "No se pudo encontrar el objeto de visualización" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "No se ha podido cargar el controlador de la base de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "No se pudo cargar el controlador de base de datos: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "No se ha podido cargar el controlador de la base de datos: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +#, fuzzy +msgid "30 days ago" +msgstr "30 días" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -#, fuzzy -msgid "Count" -msgstr "Columna" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -#, fuzzy -msgid "Count Unique Values" -msgstr "Es filtrable" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -#, fuzzy -msgid "Country" -msgstr "Mapa de País" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Sobreponer una o más series de tiempo desde un período relativo. Se " +"espera periodos de tiempo relativos en lenguaje natural (ejemplo: 24 " +"horas, 7 días, 52 semanas, 365 días). Se admite texto libre." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -#, fuzzy -msgid "Country Color Scheme" -msgstr "Esquema de Color Lineal" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Tipo de Cálculo" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 #, fuzzy -msgid "Country Column" -msgstr "Filtrar por estado" +msgid "Actual values" +msgstr "Valores Nulos" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Mapa de País" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 #, fuzzy -msgid "Create" -msgstr "crear un " +msgid "Percentage change" +msgstr "El Gráfico ha cambiado" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 #, fuzzy -msgid "Create Chart" -msgstr "Compartir gráfico" +msgid "Ratio" +msgstr "Duración" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 #, fuzzy -msgid "Create a dataset" -msgstr "crear un " - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." -msgstr "" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Crear un nuevo Gráfico" - -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -#, fuzzy -msgid "Create chart" -msgstr "Compartir gráfico" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" +"Cómo mostrar desplazamientos de tiempo: como líneas individuales; como la" +" diferencia absoluta entre la serie de tiempo principal y cada " +"desplazamiento de tiempo; como el cambio porcentual; o como la relación " +"entre series y desplazamientos de tiempo." -#: superset-frontend/src/features/home/RightMenu.tsx:178 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 #, fuzzy -msgid "Create dataset" -msgstr "Cambiar fuente" +msgid "Resample" +msgstr "Ver ejemplos" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -#, fuzzy -msgid "Create dataset and create chart" -msgstr "Crear un nuevo Gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Regla" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Crear un nuevo Gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 #, fuzzy -msgid "Create new filter set" -msgstr "Crear un nuevo Gráfico" +msgid "1 hourly frequency" +msgstr "Frecuencia de actualización" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Creado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Creado el" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Creado por" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 #, fuzzy -msgid "Created by me" -msgstr "Creado por" +msgid "1 year start frequency" +msgstr "Frecuencia de actualización" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Contenido Creado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +#, fuzzy +msgid "1 year end frequency" +msgstr "Frecuencia de actualización" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Creado el" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Regla de Remuestra Pandas" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 #, fuzzy -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "Importar el gráfico falló por una razón desconocida" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Creando un origen de datos y creando una nueva pestaña" +msgid "Fill method" +msgstr "Método de notificación" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Creador" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +#, fuzzy +msgid "Null imputation" +msgstr "anotación" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 #, fuzzy -msgid "Crimson" -msgstr "Acción" +msgid "Zero imputation" +msgstr "descripción" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 #, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "No hay filtros en este dashboard" +msgid "Forward values" +msgstr "Valores Nulos" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 #, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "No hay filtros en este dashboard" +msgid "Backward values" +msgstr "Valores Nulos" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 #, fuzzy -msgid "Cross-filtering scoping" -msgstr "Filtro de padre" +msgid "Median values" +msgstr "Limitar valores del selector" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 #, fuzzy -msgid "Cross-filters" -msgstr "Filtro de padre" +msgid "Mean values" +msgstr "Limitar valores del selector" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 #, fuzzy -msgid "Cumulative" -msgstr "Activo" +msgid "Sum values" +msgstr "Valores Nulos" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Método de Remuestra Pandas" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 #, fuzzy -msgid "Custom" -msgstr "Personalizar" +msgid "Annotations and Layers" +msgstr "Anotaciones y capas" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Customizar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +#, fuzzy +msgid "Left" +msgstr "alerta" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Customizar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +#, fuzzy +msgid "Top" +msgstr "Detener" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "SQL Personalizado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +#, fuzzy +msgid "Chart Title" +msgstr "Tipo de dato" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "Eje X" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Eje Y" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "Personalizar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 #, fuzzy -msgid "Customize Metrics" -msgstr "Personalizar" +msgid "Y Axis Title Position" +msgstr "última partición:" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Consulta" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 #, fuzzy -msgid "Customize columns" -msgstr "Columnas calculadas" +msgid "Predictive Analytics" +msgstr "Analíticos Avanzadas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "Formato D3" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "Formato D3" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +#, fuzzy +msgid "Forecast periods" +msgstr "Periodo de gracia" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +#, fuzzy +msgid "Confidence interval" +msgstr "Intérvalo de actualización" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 #, fuzzy -msgid "DATETIME" -msgstr "Fecha/Hora" +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "El intervalo de confianza debe estar entre 0 y 1 (exclusivo)" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "DIC" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +#, fuzzy +msgid "default" +msgstr "Por defecto" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "ELIMINAR" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Sí" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "No" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Dashboard" - -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, fuzzy, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" - -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" - -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "El Dashboard no pudo ser creado." - -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "El Dashboard no pudo ser eliminado." - -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "El Dashboard no pudo ser actualizado." - -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "El dashboard no existe" - -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "Propiedades del Dashboard" - -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Parámetros de Dashboard inválidos." - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Propiedades del Dashboard" - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -#, fuzzy -msgid "Dashboard properties updated" -msgstr "Propiedades del Dashboard" - -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -#, fuzzy -msgid "Dashboard scheme" -msgstr "[nombre del Dashboard]" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Atributos de formulario relacionados con el tiempo" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 #, fuzzy -msgid "Dashboard usage" -msgstr "Dashboards" +msgid "Datasource & Chart Type" +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "ID de gráfico" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -#, fuzzy -msgid "Dashboards added to" -msgstr "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "El id del gráfico activo" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "Los Dashboards no pudieron ser eliminados." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Tiempo de espera de caché (segundos)" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "El dashboard no existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "El número de segundos antes de caducar el caché." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 #, fuzzy -msgid "Dashed" -msgstr "en cache" - -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Datos" +msgid "URL Parameters" +msgstr "Parámetros de URL" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 #, fuzzy -msgid "Data Table" -msgstr "Esitar Tabla" - -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" -msgstr "" +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Parámetros extra para usar en consultas con plantillas jinja" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +#, fuzzy +msgid "Extra Parameters" +msgstr "Parametros de plantilla" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 #, fuzzy msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." -msgstr "" -"Los datos no se pudieron deserializar. Puedes probar a re-ejecutar la " -"consulta." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" -msgstr "" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Previsualización de Datos" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" +msgstr "Parámetros extra para usar en consultas con plantillas jinja" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 #, fuzzy -msgid "Data refreshed" -msgstr "Última actualización de metadatos" +msgid "Color Scheme" +msgstr "Esquema de Color" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Tipo de dato" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#, fuzzy +msgid "Contribution Mode" +msgstr "Contribución" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "Por favor elige al menos una métrica" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Hilera" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "El DataFrame debe incluir una columna temporal" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Series" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Base de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +#, fuzzy +msgid "Calculate contribution per series or row" +msgstr "Calcular la contribución al total" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset/views/database/views.py:321 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/initialization/__init__.py:243 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 #, fuzzy -msgid "Database Connections" -msgstr "Probar Conexión" +msgid "Y-Axis Sort Ascending" +msgstr "Orden Descendente" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 #, fuzzy -msgid "Database Creation Error" -msgstr "Base de datos" - -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "URL de la Base de datos" +msgid "X-Axis Sort Ascending" +msgstr "Orden Descendente" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 #, fuzzy -msgid "Database connected" -msgstr "El Gráfico no ha podido crearse" - -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "El Gráfico no ha podido crearse" - -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "La base de datos no han podido ser eliminada." +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Ordenar descendente o ascendente" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "El Gráfico no ha podido guardarse" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Nombre de la Fuente de Datos" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "La base de datos no existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." +msgstr "" -#: superset/models/helpers.py:2063 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 #, fuzzy -msgid "Database does not support subqueries" -msgstr "La base de datos no existe" +msgid "Dimensions" +msgstr "Es dimensión" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Base de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." +msgstr "" -#: superset/databases/commands/validate.py:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 #, fuzzy -msgid "Database is offline." -msgstr "Nombre de la Fuente de Datos" +msgid "Dimension" +msgstr "Es dimensión" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "La base de datos es requerida para las alertas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." +msgstr "" +"Define la agrupación de entidades. Cada serie se muestra como un color " +"específico en el gráfico y tiene una leyenda" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Entidad" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "La base de datos no puede cambiar" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Esto define el elemento a trazar en el gráfico." -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "La base de datos no existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filtros" -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "La base de datos no existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Los parametros del Gráfico son invalidos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 #, fuzzy -msgid "Database passwords" -msgstr "Base de datos" +msgid "Right Axis Metric" +msgstr "Métrica Eje Derecho" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 #, fuzzy -msgid "Database port" -msgstr "Base de datos" +msgid "Select a metric to display on the right axis" +msgstr "Elige una métrica para el eje derecho" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -#, fuzzy -msgid "Database settings updated" -msgstr "El Gráfico no ha podido guardarse" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Ordenar por" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Bases de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Índice de Dataframe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +#, fuzzy +msgid "Bubble Size" +msgstr "Tamaño burbuja" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Conjunto de Datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "La fuente de datos %(name)s ya existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -#, fuzzy -msgid "Dataset Name" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" -#: superset/datasets/columns/commands/exceptions.py:27 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 #, fuzzy -msgid "Dataset column delete failed." -msgstr "Capas de Anotación" +msgid "Color Metric" +msgstr "Métrica de Color" -#: superset/datasets/columns/commands/exceptions.py:23 -#, fuzzy -msgid "Dataset column not found." -msgstr "La base de datos no existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Una métrica para usar para el color." -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "El conjunto de datos no pudo ser creado." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "El conjunto de datos no pudo ser eliminado." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "" -#: superset/datasets/commands/exceptions.py:210 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 #, fuzzy -msgid "Dataset could not be duplicated." -msgstr "El conjunto de datos no pudo ser actualizado." - -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "El conjunto de datos no pudo ser actualizado." +msgid "Y-axis" +msgstr "Eje Y" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "La fuente no existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 #, fuzzy -msgid "Dataset imported" -msgstr "Base de datos" +msgid "X-axis" +msgstr "Eje Y" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -#, fuzzy -msgid "Dataset is required" -msgstr "Fuentes de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 -#, fuzzy -msgid "Dataset metric delete failed." -msgstr "Capas de Anotación" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "El tipo de visualización a mostrar." -#: superset/datasets/metrics/commands/exceptions.py:23 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 #, fuzzy -msgid "Dataset metric not found." -msgstr "La base de datos no existe" +msgid "Fixed Color" +msgstr "Color fijo" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "Use esto para definir un color estático para todos los círculos" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "Los parametros del conjunto de datos son inválidos." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +#, fuzzy +msgid "Linear Color Scheme" +msgstr "Esquema de Color Lineal" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "Los Gráficos no han podido eliminarse" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +#, fuzzy +msgid "5 seconds" +msgstr "30 segundos" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Conjuntos de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 segundos" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 minuto" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -#, fuzzy -msgid "Datasets do not contain a temporal column" -msgstr "El DataFrame debe incluir una columna temporal" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 minutos" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 minutos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Fuente de datos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 hora" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 #, fuzzy -msgid "Datasource & Chart Type" -msgstr "Nombre de la Fuente de Datos" +msgid "1 day" +msgstr "día" -#: superset/commands/exceptions.py:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 #, fuzzy -msgid "Datasource does not exist" -msgstr "La fuente no existe" +msgid "7 days" +msgstr "90 días" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "semana" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" msgstr "" -"El tipo de fuente de datos es necesario cuando se especifica un " -"`datasource_id`" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -#, fuzzy -msgid "Date Time Format" -msgstr "Formato Fecha/Hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Filtro de Fecha" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "mes" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 #, fuzzy -msgid "Date format" -msgstr "Formato Fecha/Hora" +msgid "quarter" +msgstr "consulta" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -#, fuzzy -msgid "Date format string" -msgstr "Formato Fecha/Hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "año" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Fecha/Hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "" +"La granularidad del tiempo para la visualización. Ten en cuenta que " +"puedes escribir y usar un lenguaje natural simple como en `10 seconds`, " +"`1 day` o `56 weeks`" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Formato FechaHora" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" -#: superset/models/helpers.py:1502 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -"No se ha proporcionado una columna de fecha y hora y es requerida por " -"este tipo de gráfico" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Formato Fecha/Hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Límite filas" -#: superset/db_engine_specs/base.py:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 #, fuzzy -msgid "Day" -msgstr "día" +msgid "Sort Descending" +msgstr "Orden descendente" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, fuzzy, python-format -msgid "Days %s" -msgstr "día" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Límite de Serie" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Formato Eje Y" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "Deactivate" -msgstr "Activo" +msgid "Currency format" +msgstr "Formato de correo electrónico" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "Diciembre" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +#, fuzzy +msgid "Time format" +msgstr "Formato Fecha/Hora" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "El esquema de colores para la representación gráfica." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +#, fuzzy +msgid "Truncate Metric" +msgstr "Métroca de orden" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "Caracter Decimal" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +#, fuzzy +msgid "Whether to truncate metrics" +msgstr "Métrica con la cual ordenar los resultados." -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +#, fuzzy +msgid "Show empty columns" +msgstr "Mostrar columna de tiempo SQL" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset/viz.py:2848 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Todos los gráficos" - -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - Capas Múltiples" - -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "" +msgid "Adaptive formatting" +msgstr "Formato Fecha/Hora" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Por defecto" - -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Endpoint predeterminado" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "Url por defecto" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -#, fuzzy -msgid "Default Value" -msgstr "Valores Nulos" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 #, fuzzy -msgid "Default datetime" -msgstr "Valores Nulos" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" -msgstr "" +msgid "Oops! An error occurred!" +msgstr "Se produjo un error" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 #, fuzzy -msgid "Default value is required" -msgstr "Fuentes de datos" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" +msgid "No Results" +msgstr "Ver resultados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#, fuzzy +msgid "ERROR" +msgstr "%s Error" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -"Define un una ventana de desplazamiento móvil para aplicar, funciona " -"junto con el cuadro de texto [Periods]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "hora" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "día" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -"Define la agrupación de entidades. Cada serie se muestra como un color " -"específico en el gráfico y tiene una leyenda" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -"Define el tamaño de la función de ventana móvil, en relación con la " -"granularidad de tiempo seleccionada" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +#, fuzzy +msgid "min" +msgstr "en" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Eliminar" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +#, fuzzy +msgid "Chart Options" +msgstr "Editar propiedades de gráfico" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "¿Eliminar %s?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +#, fuzzy +msgid "Cell Size" +msgstr "Archivo de Excel" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "¿Eliminar anotación?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "¿Eliminar base de datos?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "¿Eliminar conjunto de datos?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "¿Eliminar capa?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "¿Realmente quieres eliminar la consulta?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy -msgid "Delete Report?" -msgstr "Plantillas CSS" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Plantillas CSS" - -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "¿Realmente quieres borrar todo?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Eliminar anotación" +msgid "Color Steps" +msgstr "Esquema de Color" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "¿Quieres eliminar la pestaña del dashboard?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Eliminar base de datos" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#, fuzzy +msgid "Time Format" +msgstr "Formato Fecha/Hora" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 #, fuzzy -msgid "Delete email report" -msgstr "Alertas e informes" +msgid "Legend" +msgstr "Modificado" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Eliminar consulta" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Eliminar plantilla" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +#, fuzzy +msgid "Show Values" +msgstr "Mostrar Tabla" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy -msgid "Deleted" -msgstr "eliminar" - -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" -msgstr[1] "" +msgid "Show Metric Names" +msgstr "Mostrar Métrica" -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "" -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +#, fuzzy +msgid "Number Format" +msgstr "Formato D3" -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +#, fuzzy +msgid "Correlation" +msgstr "Duración" -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." +msgstr "" -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Selecciona una base de datos" -msgstr[1] "Selecciona una base de datos" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "" -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +#, fuzzy +msgid "Comparison" +msgstr "Columna de Tiempo" -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +#, fuzzy +msgid "Intensity" +msgstr "Entidad" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +#, fuzzy +msgid "Pattern" +msgstr "Actualizar" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Eliminado: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +#, fuzzy +msgid "Report" +msgstr "informe" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Eliminado: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +#, fuzzy +msgid "Trend" +msgstr "Modificado" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "una sola columna con longitud y latitud delimitadas" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "Delimitador" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 #, fuzzy -msgid "Delivery method" -msgstr "Agregar método de entrega" +msgid "Sort by metric" +msgstr "Métroca de orden" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 #, fuzzy -msgid "Density" -msgstr "Entidad" +msgid "Number format" +msgstr "Formato D3" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 #, fuzzy -msgid "Dependent on" -msgstr "Orden descendente" +msgid "Choose a number format" +msgstr "Elige una métrica para el eje derecho" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#, fuzzy -msgid "Deprecated" -msgstr "Creado" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Fuente" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Descripción" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +#, fuzzy +msgid "Choose a source" +msgstr "Selecciona una base de datos" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "Descripción (se puede ver en la lista)" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +#, fuzzy +msgid "Target" +msgstr "Iniciar" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 #, fuzzy -msgid "Description Columns" -msgstr "descripción" +msgid "Choose a target" +msgstr "Selecciona una base de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "¿Realmente quieres borrar todo?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "Detalles de la certificación" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "Identifica si el dashboard es visible en la lista de dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -#, fuzzy -msgid "Diamond" -msgstr "y" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Quiciste decir:" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 #, fuzzy -msgid "Dim Gray" -msgstr "Granularidad Temporal" +msgid "Relational" +msgstr "Duración" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 #, fuzzy -msgid "Dimension" -msgstr "Es dimensión" +msgid "Country" +msgstr "Mapa de País" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -#, fuzzy -msgid "Dimensions" -msgstr "Es dimensión" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." +msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Disposición Dirigida Forzado" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +#, fuzzy +msgid "Metric to display bottom title" +msgstr "Elige qué métrica mostrar" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 #, fuzzy -msgid "Directional" -msgstr "descripción" +msgid "Map" +msgstr "Mapa de Árbol" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 #, fuzzy -msgid "Disabled" -msgstr "Esitar Tabla" +msgid "Range" +msgstr "Administrar" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +#, fuzzy +msgid "Stacked" +msgstr "Backend" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 #, fuzzy -msgid "Discrete" -msgstr "fue creada" +msgid "Event Names" +msgstr "Nombre de Hoja" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 #, fuzzy -msgid "Display Name" -msgstr "Valor del Filtro" +msgid "Columns to display" +msgstr "Elige qué métrica mostrar" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "Configuración de visualización" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 #, fuzzy -msgid "Display settings" -msgstr "Configuracion" +msgid "Additional metadata" +msgstr "Información adicional" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +#, fuzzy +msgid "Metadata" +msgstr "Metadatos JSON" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 #, fuzzy -msgid "Distribute across" -msgstr "Estimar costo" +msgid "Entity ID" +msgstr "Entidad" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 #, fuzzy -msgid "Distribution" -msgstr "Contribución" +msgid "e.g., a \"user id\" column" +msgstr "Columna de Tiempo" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Distribución - Gráfico de Barra" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "División" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 #, fuzzy -msgid "Documentation" -msgstr "anotación" +msgid "Event Flow" +msgstr "Flujo de Eventos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 #, fuzzy -msgid "Donut" -msgstr "mes" +msgid "Axis ascending" +msgstr "Orden Descendente" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 #, fuzzy -msgid "Dotted" -msgstr "Editado" +msgid "Axis descending" +msgstr "Orden descendente" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 #, fuzzy -msgid "Download" -msgstr "Descargar como imagen" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "Descargar como imagen" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "" +msgid "Metric ascending" +msgstr "Orden Descendente" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "Borrador" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +#, fuzzy +msgid "Metric descending" +msgstr "Orden descendente" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +#, fuzzy +msgid "XScale Interval" +msgstr "Intérvalo de actualización" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +#, fuzzy +msgid "YScale Interval" +msgstr "Intérvalo de actualización" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +#, fuzzy +msgid "Rendering" +msgstr "Orden Descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "Ordenar por" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +#, fuzzy +msgid "heatmap" +msgstr "Mapa de Calor" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -#, fuzzy -msgid "Dual Line Chart" -msgstr "Gráfico de Puntos" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 #, fuzzy -msgid "Duplicate" -msgstr "Duplicar pestaña" - -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "" +msgid "auto" +msgstr "en" -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -#, fuzzy -msgid "Duplicate dataset" -msgstr "Editar Base de Datos" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Duplicar pestaña" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Duración" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" msgstr "" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +#, fuzzy +msgid "Whether to include the percentage in the tooltip" +msgstr "Mostrar un filtro de tiempo" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +#, fuzzy +msgid "Value Format" +msgstr "Formato de correo electrónico" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +#, fuzzy +msgid "Density" +msgstr "Entidad" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "Duración: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +#, fuzzy +msgid "Predictive" +msgstr "Activo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 #, fuzzy -msgid "Dynamic Aggregation Function" -msgstr "Probar Conexión" +msgid "Single Metric" +msgstr "Filtrar por estado" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +#, fuzzy +msgid "to" +msgstr "Detener" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #, fuzzy -msgid "ECharts" -msgstr "gráfico" +msgid "count" +msgstr "Columna" -#: superset/reports/notifications/email.py:133 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 #, fuzzy -msgid "EMAIL_REPORTS_CTA" -msgstr "Alertas e informes" +msgid "cumulative" +msgstr "Activo" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 #, fuzzy -msgid "ERROR" -msgstr "%s Error" +msgid "No of Bins" +msgstr "Copia de %s" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 #, fuzzy -msgid "Edge width" -msgstr "Grosor de línea" +msgid "Cumulative" +msgstr "Activo" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Editar" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 #, fuzzy -msgid "Edit Alert" -msgstr "Esitar Tabla" +msgid "Distribution" +msgstr "Contribución" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "Editar CSS" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" +msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Editar Plantilla CSS" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "Editar propiedades de plantilla CSS" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Contribución" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Editar Gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Calcular la contribución al total" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 #, fuzzy -msgid "Edit Chart Properties" -msgstr "Editar propiedades de gráfico" +msgid "Series Height" +msgstr "Límite de Serie" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Editar Columna" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Editar Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Editar Base de Datos" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +#, fuzzy +msgid "series" +msgstr "Series" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Editar Base de Datos" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" +msgstr "" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Editar Registro" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "Administrar" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Editar Métrica" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#, fuzzy +msgid "Horizon Chart" +msgstr "Gráficos de Horizonte" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +#, fuzzy +msgid "Purple" +msgstr "Regla" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Editar Columna" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +#, fuzzy +msgid "Dim Gray" +msgstr "Granularidad Temporal" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 #, fuzzy -msgid "Edit Report" -msgstr "informe" +msgid "Crimson" +msgstr "Acción" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 #, fuzzy -msgid "Edit Rule" -msgstr "Nombre de la consulta" +msgid "Forest Green" +msgstr "Frecuencia de actualización" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Editar Consulta Guardada" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Esitar Tabla" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Editar anotación" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Capas de Anotación" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Editar propiedades de la capa de anotación" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 #, fuzzy -msgid "Edit chart" -msgstr "Editar Gráfico" +msgid "Points" +msgstr "Componentes" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Editar propiedades de gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -#, fuzzy -msgid "Edit dashboard" -msgstr "Editar Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Editar Base de Datos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +#, fuzzy +msgid "Auto" +msgstr "en" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Editar Base de Datos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 #, fuzzy -msgid "Edit formatter" -msgstr "Formato D3" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Editar propiedades" +msgid "Miles" +msgstr "Filtros" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "ditar consulta" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +#, fuzzy +msgid "Kilometers" +msgstr "Filtros" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Cargar una plantilla" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Editar parámetros de la plantilla" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 #, fuzzy -msgid "Edit the dashboard" -msgstr "Editar Dashboard" +msgid "label" +msgstr "Etiqueta" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "Editar rango de tiempo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Editado" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Editando 1 filtro:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #, fuzzy -msgid "Editing filter set:" -msgstr "Editando 1 filtro:" +msgid "max" +msgstr "Máx" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -#, fuzzy -msgid "Elevation" -msgstr "Duración" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 #, fuzzy -msgid "Embed" -msgstr "Noviembre" +msgid "Map Style" +msgstr "Tipo de Markup" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +#, fuzzy +msgid "Streets" +msgstr "Recientes" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 #, fuzzy -msgid "Embed dashboard" -msgstr "Guardar Dashboard" +msgid "Light" +msgstr "Altura" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 #, fuzzy -msgid "Emit Filter Events" -msgstr "Es filtrable" +msgid "Satellite" +msgstr "Filtro de Fecha" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Opacidad" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 #, fuzzy -msgid "Empty collection" -msgstr "Probar Conexión" +msgid "RGB Color" +msgstr "Color fijo" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -#, fuzzy -msgid "Empty column" -msgstr "Columna" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "" -#: superset/charts/data/api.py:366 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 #, fuzzy -msgid "Empty query result" -msgstr "¿Consulta vacía?" +msgid "Viewport" +msgstr "informe" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "¿Consulta vacía?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Habilitar selección de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "Transformable" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset/viz.py:2514 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -"Se encontró una entrada espacial NULL inválida, por favor considera " -"filtrar esas entradas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -#, fuzzy -msgid "End (Longitude, Latitude): " -msgstr "Longitud/latitud inválidas" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -#, fuzzy -msgid "End Longitude & Latitude" -msgstr "Longitud/latitud inválidas" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Hora Final" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 #, fuzzy -msgid "End angle" -msgstr "Periodo de tiempo" +msgid "Options" +msgstr "%s opción(es)" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 #, fuzzy -msgid "End date" -msgstr "fecha" +msgid "Data Table" +msgstr "Esitar Tabla" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -#, fuzzy -msgid "End date excluded from time range" -msgstr "Configurar rango de tiempo personalizado" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "La fecha de inicio no puede ser superior a la de fin" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 #, fuzzy -msgid "Engine Parameters" -msgstr "Parametros de plantilla" +msgid "Ranking" +msgstr "Mensaje de Aviso" -#: superset/databases/schemas.py:302 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -#, fuzzy -msgid "Enter Primary Credentials" -msgstr "Subir Credenciales" - -#: superset/views/database/forms.py:161 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 #, fuzzy -msgid "Enter a delimiter for this data" -msgstr "Ingresa un nuevo título para la pestaña" +msgid "Coordinates" +msgstr "Coordenadas Paralelas" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 #, fuzzy -msgid "Enter a name for this sheet" -msgstr "Ingresa un nuevo título para la pestaña" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Ingresa un nuevo título para la pestaña" +msgid "Directional" +msgstr "descripción" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 #, fuzzy -msgid "Enter duration in seconds" -msgstr "Tiempo en segundos" +msgid "Time Series Options" +msgstr "Columna de Tiempo" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 #, fuzzy -msgid "Enter fullscreen" -msgstr "Alternar pantalla completa" +msgid "Not Time Series" +msgstr "Editar rango de tiempo" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Entidad" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 #, fuzzy -msgid "Entity ID" -msgstr "Entidad" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" -msgstr "" +msgid "Time Series" +msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 #, fuzzy -msgid "Error" -msgstr "%s Error" - -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Error en la expresión jinja en la cláusula HAVING: %(msg)s" - -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Error en la expresión jinja en los filtros RLS: %(msg)s" - -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Error en la expresión jinja en la cláusula WHERE: %(msg)s" - -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Error en la expresión jinja en el predicado de obtener valores: %(msg)s" +msgid "Aggregate Mean" +msgstr "agregación" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "Mensaje de error" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 #, fuzzy -msgid "Error while fetching charts" -msgstr "Error obteniendo datos" - -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, fuzzy, python-format -msgid "Error while fetching data: %s" -msgstr "Error obteniendo datos" - -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, fuzzy, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Error al guardar el conjunto de datos: %s" +msgid "Aggregate Sum" +msgstr "agregación" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset/views/core.py:839 -#, fuzzy -msgid "Error: permalink state not found" -msgstr "No se encontró el estado del informe programado" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Estimar costo" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Estimar el costo de la consulta seleccionada" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "Estimar el costo antes de ejecutar una consulta" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 #, fuzzy -msgid "Event" -msgstr "Recientes" +msgid "Percent Change" +msgstr "El Gráfico ha cambiado" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -#, fuzzy -msgid "Event Flow" -msgstr "Flujo de Eventos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 #, fuzzy -msgid "Event Names" -msgstr "Nombre de Hoja" +msgid "Factor" +msgstr "Octubre" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "Flujo de Eventos" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 #, fuzzy -msgid "Event time column" -msgstr "Columna de Tiempo" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Cada" +msgid "Advanced Analytics" +msgstr "Analíticos Avanzadas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "Usar la opción de Analítica Avanzada debajo " -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -#, fuzzy -msgid "Exact" -msgstr "Siguiente" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 #, fuzzy -msgid "Example" -msgstr "Ver ejemplos" - -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Ver ejemplos" +msgid "Date Time Format" +msgstr "Formato Fecha/Hora" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Archivo de Excel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +#, fuzzy +msgid "Partition Limit" +msgstr "Partición de diagrama" -#: superset/views/database/views.py:427 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Configuración de Excel a base de datos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -#, fuzzy -msgid "Exclude selected values" -msgstr "Limitar valores del selector" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -#, fuzzy -msgid "Executed SQL" -msgstr "Consulta ejecutada" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "Usar escala logarítimica" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Consulta ejecutada" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -#, fuzzy -msgid "Execution ID" -msgstr "Registro de ejecución" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "Registro de ejecución" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -#, fuzzy -msgid "Existing dataset" -msgstr "Cambiar fuente" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 #, fuzzy -msgid "Exit fullscreen" -msgstr "Alternar pantalla completa" +msgid "Rolling Window" +msgstr "Ventana de desplazamiento" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 #, fuzzy -msgid "Expand" -msgstr "y" - -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Expandir todo" +msgid "Rolling Function" +msgstr "Probar Conexión" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 #, fuzzy -msgid "Expand row" -msgstr "Fila de Encabezado" +msgid "Min Periods" +msgstr "Periodos Mínimos" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 #, fuzzy -msgid "Expand table preview" -msgstr "Eliminar vista previa de la tabla" +msgid "Time Comparison" +msgstr "Columna de Tiempo" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Expandir barra de herramientas" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +#, fuzzy +msgid "Time Shift" +msgstr "Desplazamiento de tiempo" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +#, fuzzy +msgid "1 week" +msgstr "semana" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "90 días" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Explorar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 días" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "Explorar - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +#, fuzzy +msgid "52 weeks" +msgstr "semana" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Explorar el conjunto de resultados en la vista de exploración de datos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +#, fuzzy +msgid "1 year" +msgstr "año" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Exportar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +#, fuzzy +msgid "104 weeks" +msgstr "semana" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "¿Exportar Dashboards?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "año" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 #, fuzzy -msgid "Export query" -msgstr "Ver consulta" +msgid "156 weeks" +msgstr "semana" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 #, fuzzy -msgid "Export to .CSV" -msgstr "Exportar a YAML" +msgid "3 years" +msgstr "año" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 #, fuzzy -msgid "Export to .JSON" -msgstr "Exportar a YAML" +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Sobreponer una o más series de tiempo desde un período relativo. Se " +"espera periodos de tiempo relativos en lenguaje natural (ejemplo: 24 " +"horas, 7 días, 52 semanas, 365 días). Se admite texto libre." -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 #, fuzzy -msgid "Export to Excel" -msgstr "Exportar a YAML" +msgid "Actual Values" +msgstr "Valores Nulos" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Exportar a YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "¿Exportar a YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Mostrar en el laboratorio SQL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Método" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Mostrar esta base de datos en el laboratorio SQL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Expresión" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -#, fuzzy -msgid "Extra Parameters" -msgstr "Parametros de plantilla" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#, fuzzy +msgid "Partition Chart" +msgstr "Partición de diagrama" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "El campo adicional no se puede decodificar por JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +#, fuzzy +msgid "Use Area Proportions" +msgstr "Propiedades del Dashboard" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Parámetros extra para usar en consultas con plantillas jinja" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 -#, fuzzy +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" -msgstr "Parámetros extra para usar en consultas con plantillas jinja" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 #, fuzzy -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Parámetros extra para usar en consultas con plantillas jinja" +msgid "Nightingale Rose Chart" +msgstr "Serie Temporal - Gráfico de Nightingale Rose" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 #, fuzzy -msgid "Extruded" -msgstr "caja de texto" +msgid "Advanced-Analytics" +msgstr "Analíticos Avanzadas" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "FEB" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "VIE" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +#, fuzzy +msgid "Source / Target" +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 #, fuzzy -msgid "Factor" -msgstr "Octubre" +msgid "Choose a source and a target" +msgstr "Selecciona una base de datos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "Falla" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "Falló" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Falla al recuperar los resultados" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +#, fuzzy +msgid "Percentages" +msgstr "Recientes" + +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "Nombre de la consulta" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 #, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "Falla al recuperar los resultados" +msgid "Show Bubbles" +msgstr "Mostrar Tabla" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 #, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Filtro de padre" +msgid "Max Bubble Size" +msgstr "Tamaño burbuja" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +#, fuzzy +msgid "Color by" +msgstr "Ordenar por" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Fallo al verificar las opciones de selección: %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +#, fuzzy +msgid "Country Column" +msgstr "Filtrar por estado" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Favoritos" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#, fuzzy +msgid "3 letter code of the country" +msgstr "todos los días del mes" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Favoritos" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Febrero" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +#, fuzzy +msgid "Bubble Color" +msgstr "Color fijo" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "Predicado Obtención de Valores" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +#, fuzzy +msgid "Country Color Scheme" +msgstr "Esquema de Color Lineal" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Obtener previsualización de datos" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "Obtenido %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +#, fuzzy +msgid "Multi-Dimensions" +msgstr "Es dimensión" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 #, fuzzy -msgid "Fetching" -msgstr "Configuración" +msgid "deck.gl charts" +msgstr "Todos los gráficos" -#: superset/databases/commands/exceptions.py:63 -#, fuzzy, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "El campo no puede ser decodificado como JSON. %{json_error}s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" +msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "El campo no puede ser decodificado por JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +#, fuzzy +msgid "Select charts" +msgstr "Todos los gráficos" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "El campo es obligatorio" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +#, fuzzy +msgid "Error while fetching charts" +msgstr "Error obteniendo datos" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Archivo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 #, fuzzy -msgid "Fill Color" -msgstr "Color fijo" +msgid "deck.gl Multiple Layers" +msgstr "Deck.gl - Capas Múltiples" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 #, fuzzy -msgid "Fill method" -msgstr "Método de notificación" +msgid "Start (Longitude, Latitude): " +msgstr "Longitud/latitud inválidas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 #, fuzzy -msgid "Filled" -msgstr "Falló" +msgid "End (Longitude, Latitude): " +msgstr "Longitud/latitud inválidas" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 #, fuzzy -msgid "Filter" -msgstr "Filtros" +msgid "Start Longitude & Latitude" +msgstr "Longitud/latitud inválidas" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +#, fuzzy +msgid "End Longitude & Latitude" +msgstr "Longitud/latitud inválidas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 #, fuzzy -msgid "Filter Configuration" -msgstr "Configuración de filtros" - -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Filtrar lista" +msgid "Arc" +msgstr "Marzo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 #, fuzzy -msgid "Filter Settings" -msgstr "Configurar ámbito de filtros" +msgid "Target Color" +msgstr "Iniciar en" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 #, fuzzy -msgid "Filter Type" -msgstr "Filtrar por usuario" +msgid "Color of the target location" +msgstr "Propietarios del dataset" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 #, fuzzy -msgid "Filter box (deprecated)" -msgstr "Ningún filtro seleccionado" +msgid "Categorical Color" +msgstr "Esquema de Color Lineal" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 #, fuzzy -msgid "Filter charts" -msgstr "Filtrar tus Gráficos" +msgid "Stroke Width" +msgstr "Grosor de línea" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Configuración de filtros" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Avanzado" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Configuración de filtros en caja de filtros" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -#, fuzzy -msgid "Filter menu" -msgstr "Valor del Filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Valor del Filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +#, fuzzy +msgid "Centroid (Longitude and Latitude): " +msgstr "Longitud/latitud inválidas" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "ver resultados" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 #, fuzzy -msgid "Filter set already exists" -msgstr "La fuente de datos %(name)s ya existe" +msgid "Aggregation" +msgstr "agregación" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 #, fuzzy -msgid "Filter set with this name already exists" -msgstr "La fuente de datos %(name)s ya existe" +msgid "Contours" +msgstr "Columna" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 #, fuzzy -msgid "Filter type" -msgstr "Filtrar por usuario" +msgid "Weight" +msgstr "Altura" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Valor del filtro (sensible a mayúsculas/minúsculas)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 #, fuzzy -msgid "Filter value is required" -msgstr "Fuentes de datos" +msgid "deck.gl Contour" +msgstr "Todos los gráficos" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Espacial" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Filtrar tus Gráficos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +#, fuzzy +msgid "GeoJson Settings" +msgstr "Configuracion" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filtrable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Grosor de línea" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filtros" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Parámetros" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, fuzzy, python-format -msgid "Filters (%d)" -msgstr "Quitar filtros (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Filtrar por estado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Filtrar por estado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Configuración de filtros" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +#, fuzzy +msgid "Longitude and Latitude" +msgstr "Longitud/latitud inválidas" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Altura" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +#, fuzzy +msgid "Intesity" +msgstr "Entidad" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +#, fuzzy +msgid "Intensity Radius" +msgstr "Entidad" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 #, fuzzy -msgid "Fix to selected Time Range" -msgstr "Configurar rango de tiempo avanzado" +msgid "deck.gl Heatmap" +msgstr "Todos los gráficos" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 #, fuzzy -msgid "Fixed" -msgstr "Modificado" +msgid "Dynamic Aggregation Function" +msgstr "Probar Conexión" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 #, fuzzy -msgid "Fixed Color" -msgstr "Color fijo" +msgid "variance" +msgstr "Triángulo" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Color fijo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#, fuzzy +msgid "deviation" +msgstr "descripción" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -#, fuzzy -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." -msgstr "Estimar el costo antes de ejecutar una consulta" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 #, fuzzy -msgid "Force" -msgstr "Fuente" +msgid "name" +msgstr "Nombre" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +#, fuzzy +msgid "Polygon Column" +msgstr "Columna" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +#, fuzzy +msgid "Polygon Encoding" +msgstr "Envío de informe" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +#, fuzzy +msgid "Elevation" +msgstr "Duración" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +#, fuzzy +msgid "Polygon Settings" +msgstr "Configuracion" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -#, fuzzy -msgid "Force date format" -msgstr "Formato Fecha/Hora" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Forzar actualización" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 #, fuzzy -msgid "Forecast periods" -msgstr "Periodo de gracia" +msgid "Emit Filter Events" +msgstr "Es filtrable" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 #, fuzzy -msgid "Forest Green" -msgstr "Frecuencia de actualización" +msgid "Multiple filtering" +msgstr "Autocompletar filtros" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -#, fuzzy -msgid "Formattable" -msgstr "Claves de la tabla" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 #, fuzzy -msgid "Formatted date" -msgstr "Claves de la tabla" +msgid "Point Size" +msgstr "Tamaño burbuja" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 #, fuzzy -msgid "Formatted value" -msgstr "Limitar valores del selector" +msgid "Square meters" +msgstr "Parámetros" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 #, fuzzy -msgid "Formatting" -msgstr "Formato Fecha/Hora" +msgid "Square kilometers" +msgstr "Filtro de padre" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 #, fuzzy -msgid "Formula" -msgstr "Formato D3" +msgid "Square miles" +msgstr "Series" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 #, fuzzy -msgid "Forward values" -msgstr "Valores Nulos" +msgid "Radius in meters" +msgstr "Parámetros" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -#, fuzzy -msgid "Frequency" -msgstr "Frecuencia de actualización" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -#, fuzzy -msgid "Friction" -msgstr "Acción" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Viernes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "La fecha de inicio no puede ser posterior a la fecha final" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 #, fuzzy -msgid "Full name" -msgstr "Nombre de la consulta" +msgid "Point Color" +msgstr "Color fijo" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 #, fuzzy -msgid "Funnel Chart" -msgstr "Nuevo gráfico" +msgid "Grid" +msgstr "Viernes" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -#, fuzzy -msgid "GROUP BY" -msgstr "Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -#, fuzzy -msgid "Gauge Chart" -msgstr "Guardar gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Generic Chart" -msgstr "Todos los gráficos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -#, fuzzy -msgid "GeoJson Column" -msgstr "Columna" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 #, fuzzy -msgid "GeoJson Settings" -msgstr "Configuracion" +msgid "Select a dimension" +msgstr "Es dimensión" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "Periodo de gracia" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 #, fuzzy -msgid "Graph Chart" -msgstr "Guardar gráfico" +msgid "Legend Format" +msgstr "Formato de correo electrónico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +#, fuzzy +msgid "Choose the format for legend values" +msgstr "Elige una métrica para el eje derecho" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +#, fuzzy +msgid "Legend Position" +msgstr "última partición:" -#: superset-frontend/src/explore/constants.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 #, fuzzy -msgid "Greater or equal (>=)" -msgstr ">= (Mayor o igual)" +msgid "Choose the position of the legend" +msgstr "Calcular la contribución al total" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#, fuzzy +msgid "Top left" +msgstr "alerta" -#: superset-frontend/src/explore/constants.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 #, fuzzy -msgid "Greater than (>)" -msgstr "crear un " +msgid "Top right" +msgstr "Altura" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 #, fuzzy -msgid "Grid" -msgstr "Viernes" +msgid "Bottom left" +msgstr "dttm" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 #, fuzzy -msgid "Grid Size" -msgstr "Tamaño burbuja" +msgid "Bottom right" +msgstr "dttm" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +#, fuzzy +msgid "Lines column" +msgstr "Columna de Tiempo" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Grosor de línea" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +#, fuzzy +msgid "The width of the lines" +msgstr "El id del gráfico activo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 #, fuzzy -msgid "Group By" -msgstr "Agrupar por" +msgid "Fill Color" +msgstr "Color fijo" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#, fuzzy +msgid "Stroke Color" +msgstr "Color fijo" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 #, fuzzy -msgid "Group Key" -msgstr "Agrupar por" +msgid "Filled" +msgstr "Falló" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +#, fuzzy +msgid "Whether to fill the objects" +msgstr "Métrica con la cual ordenar los resultados." -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Agrupable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +#, fuzzy +msgid "Stroked" +msgstr "Creado" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 #, fuzzy -msgid "Handlebars" -msgstr "alertas" +msgid "Whether to display the stroke" +msgstr "Métrica con la cual ordenar los resultados." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 #, fuzzy -msgid "Handlebars Template" -msgstr "Eliminar plantilla" +msgid "Extruded" +msgstr "caja de texto" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +#, fuzzy +msgid "Whether to make the grid 3D" +msgstr "Métrica con la cual ordenar los resultados." -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 #, fuzzy -msgid "Has created by" -msgstr "fue creada" +msgid "Grid Size" +msgstr "Tamaño burbuja" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Encabezado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "Fila de Encabezado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Mapa de Calor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +#, fuzzy +msgid "Longitude & Latitude" +msgstr "Columnas de longitus y latitud" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Altura" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +#, fuzzy +msgid "Multiplier" +msgstr "Activo" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 #, fuzzy -msgid "Hide Line" -msgstr "Ocultar capa" +msgid "Lines encoding" +msgstr "Orden Descendente" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 #, fuzzy -msgid "Hide chart description" -msgstr "Alterna la descripción del Dashboard" +msgid "The encoding format of the lines" +msgstr "Métrica con la cual ordenar los resultados." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "Ocultar capa" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 #, fuzzy -msgid "Hide password." -msgstr "Contraseña de Broker" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Ocultar barra de herramientas" +msgid "Reverse Lat & Long" +msgstr "latitud/longitud reversos" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 #, fuzzy -msgid "Hides the Line for the time series" -msgstr "Métrica con la cual ordenar los resultados." +msgid "GeoJson Column" +msgstr "Columna" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 #, fuzzy -msgid "Hierarchy" -msgstr "Buscar" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Histograma" - -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Inicio" +msgid "Select the geojson column" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 #, fuzzy -msgid "Horizon Chart" -msgstr "Gráficos de Horizonte" +msgid "Right Axis Format" +msgstr "Métrica Eje Derecho" -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Gráficos de Horizonte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -#, fuzzy -msgid "Horizontal" -msgstr "Gráficos de Horizonte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset/db_engine_specs/base.py:105 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 #, fuzzy -msgid "Hour" -msgstr "hora" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, fuzzy, python-format -msgid "Hours %s" -msgstr "hora" +msgid "linear" +msgstr "Limpiar" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#, fuzzy +msgid "basis" +msgstr "Básico" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#, fuzzy +msgid "cardinal" +msgstr "Espacial" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "mes" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 #, fuzzy -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." -msgstr "" -"Cómo mostrar desplazamientos de tiempo: como líneas individuales; como la" -" diferencia absoluta entre la serie de tiempo principal y cada " -"desplazamiento de tiempo; como el cambio porcentual; o como la relación " -"entre series y desplazamientos de tiempo." +msgid "step-after" +msgstr "Filtro de padre" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +#, fuzzy +msgid "Show Range Filter" +msgstr "Filtro de Fecha" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -#, fuzzy -msgid "Id" -msgstr "id:" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -#, fuzzy +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -"Si Presto, todas las consultas en SQL Lab se ejecutarán como el usuario " -"conectado actualmente que debe tener permiso para ejecutarlas. Si Hive y " -"hive.server2.enable.doAs están habilitados, se ejecutarán las consultas " -"como cuenta de servicio, pero suplantará al usuario conectado actualmente" -" vía la propiedad de usuario de hive.server2.proxy." -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset/views/database/forms.py:174 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 #, fuzzy -msgid "If Table Already Exists" -msgstr "La fuente de datos %(name)s ya existe" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "" +msgid "flat" +msgstr "en" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +#, fuzzy +msgid "staggered" +msgstr "Nada disparado" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" msgstr "" -"Si se selecciona, por favor, establezca los esquemas permitidos en " -"Adicional" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +#, fuzzy +msgid "X Axis Format" +msgstr "Formato Eje Y" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -#, fuzzy -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "Usar escala logarítimica para el Eje Y" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" msgstr "" -"La ejecución del informe programado falló al generar una captura de " -"pantalla." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 #, fuzzy -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "Suplantar Usuario Conectado (Presto, Trino, Drill & Hive)" - -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Suplantar el usuario conectado" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Import" - -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Importar %s" - -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Importar Dashboard(s)" - -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Importar Dashboards" +msgid "Bar Values" +msgstr "Valores Nulos" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "Importar definición de tabla" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "Importar el gráfico falló por una razón desconocida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -#, fuzzy -msgid "Import charts" -msgstr "No hay gráficos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "Importar el Dashboard falló por una razón desconocida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Importar dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" +msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "Importar la base de datos falló por una razón desconocida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 #, fuzzy -msgid "Import database from file" -msgstr "Editar Base de Datos" - -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "Importar el conjunto de datos falló por una razón desconocida" +msgid "stack" +msgstr "Backend" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 #, fuzzy -msgid "Import datasets" -msgstr "Editar Base de Datos" +msgid "stream" +msgstr "Histograma" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 #, fuzzy -msgid "Import queries" -msgstr "¿Consulta vacía?" +msgid "expand" +msgstr "y" -#: superset/queries/saved_queries/commands/exceptions.py:36 -#, fuzzy -msgid "Import saved query failed for an unknown reason." -msgstr "Importar el gráfico falló por una razón desconocida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset-frontend/src/explore/constants.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 #, fuzzy -msgid "In" -msgstr "en" +msgid "Stretched style" +msgstr "Obtenido %s" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 #, fuzzy -msgid "Include time" -msgstr "Hora Final" +msgid "Area Chart (legacy)" +msgstr "Compartir gráfico" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 #, fuzzy -msgid "Index" +msgid "Line" msgstr "Desconectado" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Columna de Índice" - -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "Información" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#, fuzzy +msgid "Deprecated" +msgstr "Creado" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#, fuzzy +msgid "Series Limit Sort By" +msgstr "Límite de Serie" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Filtrado Instantáneo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#, fuzzy +msgid "Series Limit Sort Descending" +msgstr "Orden descendente" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 #, fuzzy -msgid "Intensity" -msgstr "Entidad" +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "Ordenar descendente o ascendente" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 #, fuzzy -msgid "Intensity Radius" -msgstr "Entidad" +msgid "Time-series Bar Chart (legacy)" +msgstr "Serie Temporal - Gráfico de Barras" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset/views/database/forms.py:200 -#, fuzzy -msgid "Interpret Datetime Format Automatically" -msgstr "Usar Pandas para interpretar el formato de fecha y hora automáticamente." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Diagrama de Caja" -#: superset/views/database/forms.py:201 -#, fuzzy -msgid "Interpret the datetime format automatically" -msgstr "Usar Pandas para interpretar el formato de fecha y hora automáticamente." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -#, fuzzy -msgid "Interval" -msgstr "Intérvalo de actualización" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "Usar escala logarítimica para el Eje X" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -#, fuzzy -msgid "Interval End column" -msgstr "Filtrar por estado" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "Interval bounds" -msgstr "Filtrar por estado" +msgid "Bubble Chart (legacy)" +msgstr "Compartir gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 #, fuzzy -msgid "Interval colors" -msgstr "Esquema de Color Lineal" +msgid "Ranges" +msgstr "Administrar" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -#, fuzzy -msgid "Interval start column" -msgstr "Filtrar por estado" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 #, fuzzy -msgid "Intervals" -msgstr "Intérvalo de actualización" +msgid "Markers" +msgstr "alertas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -#, fuzzy -msgid "Intesity" -msgstr "Entidad" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "JSON inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "" -#: superset/advanced_data_type/api.py:100 -#, fuzzy, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "rolling_type inválido: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Certificado Inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Expresión cron inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Operador acumulativo inválido: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Formato de fecha/hora inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +#, fuzzy +msgid "Time-series Percent Change" +msgstr "Serie Temporal - Cambio Porcentual" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "Configuración de filtro invalido, por favor selecciona una columna" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +#, fuzzy +msgid "Sort Bars" +msgstr "Ordenar por" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "Tipo de operación de filtrado inválida: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "Cadena geodésica inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +#, fuzzy +msgid "Breakdowns" +msgstr "Creado el" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "Cadena de geohash inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Configuración de latitud/longitud inválida." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +#, fuzzy +msgid "Bar Chart (legacy)" +msgstr "Compartir gráfico" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Longitud/latitud inválidas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +#, fuzzy +msgid "Additive" +msgstr "Añadir elemento" -#: superset/utils/core.py:1373 -#, fuzzy, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "Certificado Inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +#, fuzzy +msgid "Discrete" +msgstr "fue creada" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Función numpy inválida: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Opciones inválidas para %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset/common/query_actions.py:227 -#, fuzzy, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "rolling_type inválido: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" +msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "rolling_type inválido: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +#, fuzzy +msgid "Label Type" +msgstr "Tipo de dato" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "Punto espacial inválido encontrado: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +#, fuzzy +msgid "Category Name" +msgstr "Nombre de la consulta" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Valor" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 #, fuzzy -msgid "Invalid state." -msgstr "Certificado Inválido" +msgid "Percentage" +msgstr "Recientes" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +#, fuzzy +msgid "Category and Value" +msgstr "Introduce un valor" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" -msgstr "Selección inversa" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -#, fuzzy -msgid "Invert current page" -msgstr "El Gráfico ha cambiado" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 #, fuzzy -msgid "Is certified" -msgstr "Certificado por" +msgid "Donut" +msgstr "mes" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "Es dimensión" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "" -#: superset-frontend/src/explore/constants.ts:89 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 #, fuzzy -msgid "Is false" -msgstr "Esitar Tabla" +msgid "Show Labels" +msgstr "Mostrar Tabla" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "Favoritos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "Es filtrable" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "" -#: superset-frontend/src/explore/constants.ts:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 #, fuzzy -msgid "Is not null" -msgstr "No nulo" +msgid "Pie Chart (legacy)" +msgstr "Compartir gráfico" -#: superset-frontend/src/explore/constants.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 #, fuzzy -msgid "Is null" -msgstr "No nulo" +msgid "Frequency" +msgstr "Frecuencia de actualización" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "Es temporal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -#, fuzzy -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Issue 1000 - La fuente de datos es demasiado grande para consultar." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Issue 1001 - La base de datos tiene una carga inusualmente elevada." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "ENE" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +#, fuzzy +msgid "Time-series Period Pivot" +msgstr "Serie Temporal - Pivote de periodo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +#, fuzzy +msgid "Formula" +msgstr "Formato D3" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "Metadatos JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +#, fuzzy +msgid "Event" +msgstr "Recientes" -#: 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/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "Intérvalo de actualización" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 #, fuzzy -msgid "JSON metadata is invalid!" -msgstr "no es json válido" +msgid "Stack" +msgstr "Backend" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +msgid "Stream" +msgstr "Histograma" + +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +#, fuzzy +msgid "Expand" +msgstr "y" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -"Esto se utiliza para proporcionar información de conexión para sistemas " -"como Hive, Presto y BigQuery, que no conforman con la sintaxis normal de " -"usuario:contraseña utilizada por SQLAlchemy." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "JUL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "JUN" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +#, fuzzy +msgid "Margin" +msgstr "Origen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Enero" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +#, fuzzy +msgid "Additional padding for legend." +msgstr "Información adicional" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #, fuzzy -msgid "Jinja templating" -msgstr "Cargar una plantilla" +msgid "Orientation" +msgstr "Eliminar anotación" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +#, fuzzy +msgid "Bottom" +msgstr "dttm" -#: superset/views/database/forms.py:243 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 #, fuzzy -msgid "Json list of the column names that should be read" +msgid "Right" +msgstr "Altura" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +#, fuzzy +msgid "Legend Orientation" +msgstr "Eliminar anotación" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +#, fuzzy +msgid "Show Value" +msgstr "Mostrar Tabla" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -"Una lista separada por comas de columnas que deben ser parseadas como " -"fechas." -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset/views/database/forms.py:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Julio" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Junio" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "Continuar editando" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "Claves de la tabla" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 #, fuzzy -msgid "Kilometers" -msgstr "Filtros" +msgid "Tooltip time format" +msgstr "Formato Fecha/Hora" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 #, fuzzy -msgid "LIMIT" -msgstr "Límite filas" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Etiqueta" +msgid "Tooltip sort by metric" +msgstr "Filtrar por estado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -#, fuzzy -msgid "Label Type" -msgstr "Tipo de dato" - -#: superset/utils/pandas_postprocessing/rename.py:53 -#, fuzzy -msgid "Label already exists" -msgstr "La fuente de datos %(name)s ya existe" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Etiqueta para tu consulta" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 #, fuzzy -msgid "Label position" -msgstr "última partición:" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" -msgstr "" +msgid "Sort Series By" +msgstr "Ordenar por" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 #, fuzzy -msgid "Labels" -msgstr "Etiqueta" +msgid "Sort Series Ascending" +msgstr "Orden Descendente" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 #, fuzzy -msgid "Large" -msgstr "Compartir" +msgid "Series Order" +msgstr "Series" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 #, fuzzy -msgid "Last" -msgstr "en" - -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Último cambio" - -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Última modificación" - -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Última actualización %s" - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "Última actualización %s" +msgid "Truncate X Axis" +msgstr "Truncar el eje Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#, fuzzy +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" +"Truncar el eje Y. Puede ser sobreescrito al especificar un límite máximo " +"o mínimo" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Última modificación" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "Filtrar por estado" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Última modificación por %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Último cambio" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "Métroca de orden" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Configuración" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "No hay datos" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" +"Intente aplicar filtros diferentes o asegúrese de que la fuente de datos " +"tiene información" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 #, fuzzy -msgid "Least recently modified" -msgstr "Última modificación" +msgid "Tiny" +msgstr "en" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -#, fuzzy -msgid "Left" -msgstr "alerta" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -#, fuzzy -msgid "Left Axis Format" -msgstr "Formato Eje Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 #, fuzzy -msgid "Left Axis chart(s)" -msgstr "Selecciona un esquema (%s)" +msgid "Large" +msgstr "Compartir" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +#, fuzzy +msgid "Display settings" +msgstr "Configuracion" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 #, fuzzy -msgid "Left value" -msgstr "Valores Nulos" +msgid "Subheader" +msgstr "Encabezado" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 #, fuzzy -msgid "Legend" -msgstr "Modificado" +msgid "Date format" +msgstr "Formato Fecha/Hora" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy -msgid "Legend Format" -msgstr "Formato de correo electrónico" +msgid "Force date format" +msgstr "Formato Fecha/Hora" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 #, fuzzy -msgid "Legend Orientation" -msgstr "Eliminar anotación" +msgid "Conditional Formatting" +msgstr "Información adicional" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 #, fuzzy -msgid "Legend Position" -msgstr "última partición:" +msgid "Apply conditional color formatting to metric" +msgstr "Información adicional" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/src/explore/constants.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 #, fuzzy -msgid "Less or equal (<=)" -msgstr "<= (Menor o igual)" - -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" -msgstr "" +msgid "A Big Number" +msgstr "Número Grande" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -#, fuzzy -msgid "Light" -msgstr "Altura" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Número Grande" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 #, fuzzy -msgid "Like (case insensitive)" -msgstr "Valor del filtro (sensible a mayúsculas/minúsculas)" +msgid "Comparison suffix" +msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Límite alcanzado" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "Limitar valores del selector" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -#, fuzzy -msgid "Limit type" -msgstr "Tipo" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -#, fuzzy -msgid "Line" -msgstr "Desconectado" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 #, fuzzy -msgid "Line Chart" -msgstr "Minimizar" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" -msgstr "" +msgid "Fix to selected Time Range" +msgstr "Configurar rango de tiempo avanzado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 #, fuzzy -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." -msgstr "" -"El gráfico de linea (en series de tiempo) es un gráfico de linea " -"utilizado para visualizar medidas tomadas en intervalos de tiempo " -"regulares. El gráfico de linea es un tipo de gráfico que muestra " -"información de una serie de puntos de datos conectados por segmentos de " -"lineas rectas. Es un tipo básico de gráfico en la estadística." +msgid "TEMPORAL X-AXIS" +msgstr "Es temporal" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "Grosor de línea" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -#, fuzzy -msgid "Linear Color Scheme" -msgstr "Esquema de Color Lineal" - -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Esquema de Color Lineal" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Número Grande con Línea de Tendencia" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -#, fuzzy -msgid "Lines column" -msgstr "Columna de Tiempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Lines encoding" -msgstr "Orden Descendente" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Enlace Copiado!" +msgid "Tukey" +msgstr "consulta" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Mostrar Consultas Guardadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -#, fuzzy -msgid "List Unique Values" -msgstr "Limitar valores del selector" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +#, fuzzy +msgid "Distribute across" +msgstr "Estimar costo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "ECharts" +msgstr "gráfico" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 #, fuzzy -msgid "List updated" -msgstr "Última actualización %s" +msgid "Bubble size number format" +msgstr "Elige una métrica para el eje derecho" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "Editor CSS" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Gráfico de Burbujas" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Cargar una plantilla CSS" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Datos cargados en caché" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" +msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Cargado de caché" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -#, fuzzy -msgid "Loading" -msgstr "Subir" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -#, fuzzy -msgid "Locate the chart" -msgstr "Crear un nuevo Gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "Truncar el eje Y" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" +"Truncar el eje Y. Puede ser sobreescrito al especificar un límite máximo " +"o mínimo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "Retención de registros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Tipo de Cálculo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Acceder" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +#, fuzzy +msgid "Labels" +msgstr "Etiqueta" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 #, fuzzy -msgid "Login with" -msgstr "Grosor de línea" +msgid "Label Contents" +msgstr "Contenido de la celda" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Salir" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Orden descendente" -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Registros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Contenido de la celda" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 #, fuzzy -msgid "Longitude & Latitude" -msgstr "Columnas de longitus y latitud" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Columnas de longitus y latitud" +msgid "Show Tooltip Labels" +msgstr "Mostrar Tabla" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 #, fuzzy -msgid "Longitude and Latitude" -msgstr "Longitud/latitud inválidas" +msgid "Whether to display the tooltip labels." +msgstr "Métrica con la cual ordenar los resultados." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "MAR" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +#, fuzzy +msgid "Funnel Chart" +msgstr "Nuevo gráfico" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "LUN" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Columna principal de fecha y hora" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +#, fuzzy +msgid "Columns to group by" +msgstr "Uno o varios controles para agrupar por" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Mín" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -"Solicitud mal formada. Se esperan argumentos de slice_id o table_name y " -"db_name" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Administrar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Máx" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -#, fuzzy -msgid "Manage email report" -msgstr "Alertas e informes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 #, fuzzy -msgid "Manage your databases" -msgstr "Nombre de tu fuente de datos" +msgid "Start angle" +msgstr "El Gráfico ha cambiado" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "Oblugatorio" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 #, fuzzy -msgid "Manually set min/max values for the y-axis." -msgstr "Usar escala logarítimica para el Eje Y" +msgid "End angle" +msgstr "Periodo de tiempo" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -#, fuzzy -msgid "Map" -msgstr "Mapa de Árbol" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 #, fuzzy -msgid "Map Style" -msgstr "Tipo de Markup" +msgid "Value format" +msgstr "Formato de correo electrónico" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Marzo" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 #, fuzzy -msgid "Margin" -msgstr "Origen" +msgid "Animation" +msgstr "anotación" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +#, fuzzy +msgid "Axis" +msgstr "Eje Y" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +#, fuzzy +msgid "Split number" +msgstr "Número Grande" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 #, fuzzy -msgid "Markers" -msgstr "alertas" - -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Tipo de Markup" +msgid "Show progress" +msgstr "Propiedades del Dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Máx" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 #, fuzzy -msgid "Max Bubble Size" -msgstr "Tamaño burbuja" +msgid "Overlap" +msgstr "Mapa Mundial" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +#, fuzzy +msgid "Round cap" +msgstr "Mapa de País" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +#, fuzzy +msgid "Intervals" +msgstr "Intérvalo de actualización" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +#, fuzzy +msgid "Interval bounds" +msgstr "Filtrar por estado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 #, fuzzy -msgid "Maximum value" -msgstr "Valores Nulos" +msgid "Interval colors" +msgstr "Esquema de Color Lineal" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Mayo" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 #, fuzzy -msgid "Mean values" -msgstr "Limitar valores del selector" +msgid "Gauge Chart" +msgstr "Guardar gráfico" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +#, fuzzy +msgid "Name of the target nodes" +msgstr "Propietarios del dataset" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +#, fuzzy +msgid "Source category" +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 #, fuzzy -msgid "Median values" -msgstr "Limitar valores del selector" +msgid "Target category" +msgstr "Iniciar en" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +#, fuzzy +msgid "Chart options" +msgstr "Editar propiedades de gráfico" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "Contenido del mensaje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 #, fuzzy -msgid "Metadata" -msgstr "Metadatos JSON" +msgid "Force" +msgstr "Fuente" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -#, fuzzy -msgid "Metadata Parameters" -msgstr "Parametros de plantilla" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "Los metadatos se han sincronizado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "Método" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "La métrica '%(metric)s' no existe" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -#, fuzzy -msgid "Metric ascending" -msgstr "Orden Descendente" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Métrica asignada al eje [X]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Métrica asignada al eje [Y]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 #, fuzzy -msgid "Metric descending" -msgstr "Orden descendente" +msgid "Disabled" +msgstr "Esitar Tabla" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 #, fuzzy -msgid "Metric name" -msgstr "Nombre de la consulta" +msgid "Node select mode" +msgstr "Probar Conexión" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "La métrica [%s] esta duplicada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +#, fuzzy +msgid "Single" +msgstr "Archivo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +#, fuzzy +msgid "Allow node selections" +msgstr "Permitir selección múltiple" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 #, fuzzy -msgid "Metric to display bottom title" -msgstr "Elige qué métrica mostrar" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Métrica con la cual ordenar los resultados." +msgid "Node size" +msgstr "Tamaño burbuja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +#, fuzzy +msgid "Edge width" +msgstr "Grosor de línea" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Métricas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +#, fuzzy +msgid "Repulsion" +msgstr "Expresión" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 #, fuzzy -msgid "Middle" -msgstr "Archivo" +msgid "Friction" +msgstr "Acción" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 #, fuzzy -msgid "Miles" -msgstr "Filtros" +msgid "Graph Chart" +msgstr "Guardar gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Mín" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -#, fuzzy -msgid "Min Periods" -msgstr "Periodos Mínimos" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Ordenar descendente o ascendente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "Min Width" -msgstr "Grosor de línea" +msgid "Series type" +msgstr "Tipo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "Periodos Mínimos" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -#, fuzzy -msgid "Minimum" -msgstr "minuto" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +#, fuzzy +msgid "Area chart" +msgstr "Compartir gráfico" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -#, fuzzy -msgid "Minimum value" -msgstr "Valores Nulos" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +#, fuzzy +msgid "Primary" +msgstr "Viernes" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +#, fuzzy +msgid "Secondary" +msgstr "Lunes" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "Minute" -msgstr "minuto" +msgid "Shared query fields" +msgstr "Consultas Guardadas" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, fuzzy, python-format -msgid "Minutes %s" -msgstr "minuto" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +#, fuzzy +msgid "Query A" +msgstr "consulta" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 #, fuzzy -msgid "Missing URL parameters" -msgstr "Editar parámetros de la plantilla" +msgid "Advanced analytics Query A" +msgstr "Analíticos Avanzadas" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 #, fuzzy -msgid "Missing dataset" -msgstr "Cambiar fuente" +msgid "Query B" +msgstr "consulta" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 #, fuzzy -msgid "Mixed Chart" -msgstr "Minimizar" +msgid "Advanced analytics Query B" +msgstr "Analíticos Avanzadas" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Modificado" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, fuzzy, python-format -msgid "Modified %s" -msgstr "Última modificación en %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Modificado por" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "Columnas modificadas: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Lunes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "" -#: superset/db_engine_specs/base.py:109 -#, fuzzy -msgid "Month" -msgstr "mes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, fuzzy, python-format -msgid "Months %s" -msgstr "mes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -#, fuzzy -msgid "More" -msgstr "Ver más" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -#, fuzzy -msgid "More filters" -msgstr "Filtro de Fecha" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -#, fuzzy -msgid "Multi-Dimensions" -msgstr "Es dimensión" - -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 #, fuzzy -msgid "Multiple Line Charts" -msgstr "Serie temportal - Gráfico de múltiples líneas" +msgid "Mixed Chart" +msgstr "Minimizar" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -#, fuzzy -msgid "Multiple filtering" -msgstr "Autocompletar filtros" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "Multiplier" -msgstr "Activo" +msgid "Show Total" +msgstr "Mostrar Columna" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "Debe ser único" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "" -#: superset/reports/commands/exceptions.py:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 #, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "Elija un gráfico o un dashboard, no ambos" +msgid "Pie shape" +msgstr "Ver ejemplos" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Debe tener una columna [Group By] para tener 'count' como [Etiqueta]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Debe especificarse al menos una columna numérica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +#, fuzzy +msgid "Outer edge of Pie chart" +msgstr "El id del gráfico activo" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 #, fuzzy -msgid "My column" -msgstr "Columna" +msgid "Pie Chart" +msgstr "Nuevo gráfico" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, fuzzy, python-format +msgid "Total: %s" +msgstr "Totales" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 #, fuzzy -msgid "NOT GROUPED BY" -msgstr "Uno o varios controles para agrupar por" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "NOV" +msgid "Label position" +msgstr "última partición:" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 #, fuzzy -msgid "NUMERIC" -msgstr "Métrica" +msgid "Customize Metrics" +msgstr "Personalizar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Nombre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "Nombre es requerido" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "El nombre debe ser único" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "" -#: superset/views/database/forms.py:416 -#, fuzzy -msgid "Name of table to be created from columnar data." -msgstr "Nombre de la tabla que se creará a partir de datos de excel." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Nombre de la tabla que se creará a partir de datos de excel." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +#, fuzzy +msgid "Radar Chart" +msgstr "Compartir gráfico" -#: superset/views/database/forms.py:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 #, fuzzy -msgid "Name of table to be created with CSV file" -msgstr "Nombre de la tabla que se creará a partir de los datos csv." +msgid "Primary Metric" +msgstr "Métrica" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +#, fuzzy +msgid "The primary metric is used to define the arc segment sizes" +msgstr "Métrica utilizada para definir la serie superior." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 #, fuzzy -msgid "Name of the id column" -msgstr "Columna de Tiempo" +msgid "Secondary Metric" +msgstr "Métroca de orden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Nombre de la tabla que existe en la fuente de datos." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -#, fuzzy -msgid "Name of the target nodes" -msgstr "Propietarios del dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 #, fuzzy -msgid "Name your database" -msgstr "Nombre de tu fuente de datos" +msgid "Hierarchy" +msgstr "Buscar" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 #, fuzzy -msgid "Network error" -msgstr "Error de red." - -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Error de red." - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Nuevo gráfico" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "Nuevas columnas añadidas: %s" +msgid "Sunburst Chart" +msgstr "Gráfico Superset" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -#, fuzzy -msgid "New dataset" -msgstr "Cambiar fuente" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -#, fuzzy -msgid "New dataset name" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -#, fuzzy -msgid "New filter set" -msgstr "Configurar ámbito de filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 #, fuzzy -msgid "New header" -msgstr "Encabezado" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "Nueva pestaña" +msgid "Generic Chart" +msgstr "Todos los gráficos" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Siguiente" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +#, fuzzy +msgid "Series Style" +msgstr "Tabla de serie temporal" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 #, fuzzy -msgid "Nightingale Rose Chart" -msgstr "Serie Temporal - Gráfico de Nightingale Rose" +msgid "Area chart opacity" +msgstr "Compartir gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "Aún no hay %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Sin Acceso!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 #, fuzzy -msgid "No Data" -msgstr "No hay datos" +msgid "Area Chart" +msgstr "Compartir gráfico" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 #, fuzzy -msgid "No Results" -msgstr "Ver resultados" +msgid "Axis Title" +msgstr "%s - sin título" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 #, fuzzy -msgid "No Rules yet" -msgstr "Recientes" +msgid "AXIS TITLE POSITION" +msgstr "última partición:" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 #, fuzzy -msgid "No annotation layers" -msgstr "Capas de Anotación" +msgid "Axis Format" +msgstr "Formato Eje Y" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Aún no hay capas de anotación" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Aún no hay anotaciones" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 #, fuzzy -msgid "No applied filters" -msgstr "Filtros aplicados (%d)" +msgid "Truncate Axis" +msgstr "Truncar el eje Y" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 #, fuzzy -msgid "No available filters." -msgstr "Todos los filtros" +msgid "Axis Bounds" +msgstr "Filtrar por estado" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "No hay gráficos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 #, fuzzy -msgid "No charts yet" -msgstr "No hay gráficos" +msgid "Chart Orientation" +msgstr "Eliminar anotación" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 #, fuzzy -msgid "No columns" -msgstr "Columna" +msgid "Bar orientation" +msgstr "Eliminar anotación" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 #, fuzzy -msgid "No columns found" -msgstr "Filtros Incompatibles (%d)" +msgid "Horizontal" +msgstr "Gráficos de Horizonte" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 #, fuzzy -msgid "No compatible columns found" -msgstr "Filtros Incompatibles (%d)" +msgid "Orientation of bar chart" +msgstr "Distribución - Gráfico de Barra" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 #, fuzzy -msgid "No compatible datasets found" -msgstr "Filtros Incompatibles (%d)" +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "" +"Los gráficos de barras en las series de tiempo se utilizan para mostrar " +"los cambios en las métricas con el paso del tiempo, en forma de barras." -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 #, fuzzy -msgid "No compatible schema found" -msgstr "Filtros Incompatibles (%d)" +msgid "Bar Chart" +msgstr "Compartir gráfico" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "No hay dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +#, fuzzy +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." +msgstr "" +"El gráfico de linea (en series de tiempo) es un gráfico de linea " +"utilizado para visualizar medidas tomadas en intervalos de tiempo " +"regulares. El gráfico de linea es un tipo de gráfico que muestra " +"información de una serie de puntos de datos conectados por segmentos de " +"lineas rectas. Es un tipo básico de gráfico en la estadística." -#: superset-frontend/src/features/home/EmptyState.tsx:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 #, fuzzy -msgid "No dashboards yet" -msgstr "No hay dashboards" +msgid "Line Chart" +msgstr "Minimizar" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "No hay datos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +#, fuzzy +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." +msgstr "" +"Gráfico de Dispersión de Puntos (en Series de tiempo), muestra en el eje " +"horizontal el tiempo en unidades lineales, conectando los puntos en " +"orden. Muestra una relación estadística entre dos variables-" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "No hay datos en el archivo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 #, fuzzy -msgid "No database tables found" -msgstr "La base de datos no existe" +msgid "Step type" +msgstr "Tipo de dato" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Iniciar" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 #, fuzzy -msgid "No description available." -msgstr "descripción" +msgid "Middle" +msgstr "Archivo" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "No hay gráficos favoritos aun, clica en la estrella!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "No hay dashboards favoritos aun, clica en la estrella!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 #, fuzzy -msgid "No filter" -msgstr "Añadir filtro" +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" +"Gráfico de Series por tiempo en Pasos (conocida como Tabla de Pasos) es " +"una variación del gráfico de Linea, en la cual la linea que forma la " +"serie de tiempo forma una serie de 'pasos' entre los puntos de intervalos" +" de datos. Una tabla de paso es útil cuando se quieren mostrar los " +"cambios ocurridos en intervalos regulares." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Ningún filtro seleccionado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +#, fuzzy +msgid "Stepped Line" +msgstr "Tabla de serie temporal por pasos" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 #, fuzzy -msgid "No filters" -msgstr "Añadir filtro" +msgid "Id" +msgstr "id:" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 #, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "No hay filtros en este dashboard" +msgid "Name of the id column" +msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#, fuzzy -msgid "No matching records found" -msgstr "No se encontraron registros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -#, fuzzy -msgid "No of Bins" -msgstr "Copia de %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -#, fuzzy -msgid "No recents yet" -msgstr "Recientes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "No se encontraron registros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 #, fuzzy -msgid "No results" -msgstr "Ver resultados" +msgid "Radial" +msgstr "Espacial" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "No se han encontrado resultados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +#, fuzzy +msgid "Tree orientation" +msgstr "Eliminar anotación" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -#, fuzzy -msgid "No saved expressions found" -msgstr "Expresión SQL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 #, fuzzy -msgid "No saved metrics found" -msgstr "%s métrica(s) guardada(s)" +msgid "left" +msgstr "alerta" -#: superset-frontend/src/features/home/EmptyState.tsx:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 #, fuzzy -msgid "No saved queries yet" -msgstr "Consultas Guardadas" - -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" -msgstr "" -"No se encontraron resultados almacenados, necesitas ejecutar tu consulta " -"de nuevo" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." -msgstr "" -"No se encontró la columna especificada. Para filtrar por una métrica, " -"intenta la pestaña SQL Personalizado" +msgid "top" +msgstr "Detener" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 #, fuzzy -msgid "No table columns" -msgstr "Columna de Tiempo" +msgid "right" +msgstr "Altura" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 #, fuzzy -msgid "No temporal columns found" -msgstr "Filtros Incompatibles (%d)" +msgid "bottom" +msgstr "dttm" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -#, fuzzy -msgid "No time columns" -msgstr "Columna de Tiempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" +msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -#, fuzzy -msgid "Node select mode" -msgstr "Probar Conexión" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 #, fuzzy -msgid "Node size" -msgstr "Tamaño burbuja" +msgid "descendant" +msgstr "Orden descendente" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +#, fuzzy +msgid "Symbol" +msgstr "tornillo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +#, fuzzy +msgid "Circle" +msgstr "Archivo" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "Triángulo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 #, fuzzy -msgid "Not Time Series" -msgstr "Editar rango de tiempo" +msgid "Diamond" +msgstr "y" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 #, fuzzy -msgid "Not added to any dashboard" -msgstr "Añadir a un nuevo Dashboard" +msgid "Pin" +msgstr "en" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 #, fuzzy -msgid "Not available" -msgstr "descripción" +msgid "Arrow" +msgstr "hileras" -#: superset-frontend/src/explore/constants.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 #, fuzzy -msgid "Not equal to (≠)" -msgstr "!= (No es igual)" +msgid "Symbol size" +msgstr "Tamaño burbuja" -#: superset-frontend/src/explore/constants.ts:72 -#, fuzzy -msgid "Not in" -msgstr "anotación" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "No nulo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 #, fuzzy -msgid "Not triggered" -msgstr "Nada disparado" +msgid "Tree Chart" +msgstr "Compartir gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Nada disparado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "" -#: 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" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "Noviembre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -#, fuzzy -msgid "Now" -msgstr "Hilera" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Mapa de Árbol" -#: superset/views/database/forms.py:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 #, fuzzy -msgid "Null Values" -msgstr "Valores Nulos" +msgid "Total" +msgstr "Totales" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 #, fuzzy -msgid "Null imputation" -msgstr "anotación" +msgid "Assist" +msgstr "Básico" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Nulo o Vacío" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "crear un " -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Valores Nulos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "crear un " -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 #, fuzzy -msgid "Number Format" -msgstr "Formato D3" +msgid "Series colors" +msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -#, fuzzy -msgid "Number format" -msgstr "Formato D3" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 #, fuzzy -msgid "Number format string" -msgstr "Formato D3" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" -msgstr "" +msgid "Waterfall Chart" +msgstr "Todos los gráficos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +#, fuzzy +msgid "Handlebars" +msgstr "alertas" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset/views/database/forms.py:265 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 #, fuzzy -msgid "Number of rows of file to read" -msgstr "Número de filas del archivo a leer." +msgid "Handlebars Template" +msgstr "Eliminar plantilla" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "Número de filas del archivo a leer." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "" -#: superset/views/database/forms.py:271 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 #, fuzzy -msgid "Number of rows to skip at start of file" -msgstr "Número de filas a omitir al inicio del archivo." +msgid "Include time" +msgstr "Hora Final" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "Número de filas a omitir al inicio del archivo." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +#, fuzzy +msgid "Percentage metrics" +msgstr "Métroca de orden" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 #, fuzzy -msgid "Numerical range" -msgstr "Periodo de tiempo" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "OCT" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "OK" - -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "SOBRESCRIBIR" +msgid "Ordering" +msgstr "Orden descendente" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Octubre" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "Desconectado" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Orden descendente" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Desplazamiento" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 #, fuzzy -msgid "One or many columns to pivot as columns" -msgstr "Uno o varios controles para pivotar como columnas" +msgid "Query mode" +msgstr "Nombre de la consulta" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "Uno o varios controles para pivotar como columnas" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Una o varias métricas para mostrar" - -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "Una o más columnas ya existen" - -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "Una o más columnas están duplicadas" - -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "Una o más columnas no existen" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Una o más métricas ya existen" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Una o más métricas están duplicadas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Una o más métricas no existen" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -#: superset/errors.py:119 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 #, fuzzy -msgid "One or more parameters needed to configure a database are missing." -msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." +msgid "Range for Comparison" +msgstr "Columna de Tiempo" -#: superset/errors.py:133 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 #, fuzzy -msgid "One or more parameters specified in the query are malformatted." -msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." +msgid "Filters for Comparison" +msgstr "Columna de Tiempo" -#: superset/errors.py:107 -#, fuzzy -msgid "One or more parameters specified in the query are missing." -msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "Una o más capas de anotación fallaron al cargar." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "" -#: superset/sql_lab.py:228 -#, fuzzy -msgid "Only SELECT statements are allowed against this database." -msgstr "Solo las consultas `SELECT` están permitidas en esta base de datos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Filas" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Solo las consultas `SELECT` estan permitidas en esta base de datos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +#, fuzzy +msgid "Apply metrics on" +msgstr "Métrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +#, fuzzy +msgid "Cell limit" +msgstr "Límite de Serie" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "Solo consultas sencillas están soportadas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +#, fuzzy +msgid "Aggregation function" +msgstr "Probar Conexión" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "" -"Solo se permiten las siguientes extensiones de archivo: " -"%(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +#, fuzzy +msgid "Count" +msgstr "Columna" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 #, fuzzy -msgid "Oops! An error occurred!" -msgstr "Se produjo un error" +msgid "Count Unique Values" +msgstr "Es filtrable" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Opacidad" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#, fuzzy +msgid "List Unique Values" +msgstr "Limitar valores del selector" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "Compartir" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Ejecutar en Laboratiorio SQL" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +#, fuzzy +msgid "Minimum" +msgstr "minuto" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Ejecutar en Laboratiorio SQL" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 #, fuzzy -msgid "Operator" -msgstr "%s operador(es)" - -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Operador no definido para el agregado: %(name)s" +msgid "Last" +msgstr "en" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -"Contenido opcional CA_BUNDLE para validar las solicitudes HTTPS. Solo " -"disponible en algunos motores de base de datos." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -#, fuzzy -msgid "Optional d3 date format string" -msgstr "Información adicional" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -#, fuzzy -msgid "Optional d3 number format string" -msgstr "Información adicional" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -#, fuzzy -msgid "Options" -msgstr "%s opción(es)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 #, fuzzy -msgid "Ordering" -msgstr "Orden descendente" +msgid "Show rows subtotal" +msgstr "Mostrar Columna" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 #, fuzzy -msgid "Orientation" -msgstr "Eliminar anotación" +msgid "Show columns total" +msgstr "Mostrar Columna" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 #, fuzzy -msgid "Orientation of bar chart" -msgstr "Distribución - Gráfico de Barra" +msgid "Show columns subtotal" +msgstr "Mostrar Columna" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "Transponer pivot" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 #, fuzzy -msgid "Original" -msgstr "Origen" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Orden original de columna de tabla" +msgid "Combine metrics" +msgstr "Métroca de orden" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 #, fuzzy -msgid "Other" -msgstr "mes" +msgid "Sort rows by" +msgstr "Ordenar por" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 #, fuzzy -msgid "Outer edge of Pie chart" -msgstr "El id del gráfico activo" +msgid "value ascending" +msgstr "Orden Descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 #, fuzzy -msgid "Overlap" -msgstr "Mapa Mundial" +msgid "value descending" +msgstr "Orden descendente" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -"Sobreponer una o más series de tiempo desde un período relativo. Se " -"espera periodos de tiempo relativos en lenguaje natural (ejemplo: 24 " -"horas, 7 días, 52 semanas, 365 días). Se admite texto libre." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -#, fuzzy -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -"Sobreponer una o más series de tiempo desde un período relativo. Se " -"espera periodos de tiempo relativos en lenguaje natural (ejemplo: 24 " -"horas, 7 días, 52 semanas, 365 días). Se admite texto libre." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -#, fuzzy -msgid "Override time grain" -msgstr "Mostrar origen de tiempo de Druid" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 #, fuzzy -msgid "Override time range" -msgstr "Editar rango de tiempo" +msgid "Sort columns by" +msgstr "Ordenar columnas alfabéticamente" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Sobrescribir" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Sobreescribir y Explorar" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Sobrescribir el Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "" -#: superset/views/database/forms.py:247 -#, fuzzy -msgid "Overwrite Duplicate Columns" -msgstr "Manglar Columnas Duplicadas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 #, fuzzy -msgid "Overwrite existing" -msgstr "Continuar editando" +msgid "Conditional formatting" +msgstr "Información adicional" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Sobreescribir texto en el editor con una consulta sobre esta tabla" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Propietario" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Tabla Dinámica" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Propietarios" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" +msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "Los propietarios son invalidos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -"Propietarios es una lista de usuarios que pueden alterar el panel de " -"control." -#: 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." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#, fuzzy +msgid "No matching records found" +msgstr "No se encontraron registros" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Método de Remuestra Pandas" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Totales" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Regla de Remuestra Pandas" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +#, fuzzy +msgid "Timestamp format" +msgstr "Formato de fecha/hora inválido" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Coordenadas Paralelas" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Parámetros" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +#, fuzzy +msgid "Search box" +msgstr "Buscar" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parámetros" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +#, fuzzy +msgid "Whether to include a client-side search box" +msgstr "Mostrar un filtro de tiempo" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 #, fuzzy -msgid "Parameters " -msgstr "Parámetros" +msgid "Cell bars" +msgstr "Todos los gráficos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "Parsear Fechas" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 #, fuzzy -msgid "Partition Chart" -msgstr "Partición de diagrama" - -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "Partición de diagrama" +msgid "Customize columns" +msgstr "Columnas calculadas" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -#, fuzzy -msgid "Partition Limit" -msgstr "Partición de diagrama" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 #, fuzzy -msgid "Password" -msgstr "Contraseña de Broker" +msgid "entries" +msgstr "Series" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -#, fuzzy -msgid "Pattern" -msgstr "Actualizar" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -#, fuzzy -msgid "Percent Change" -msgstr "El Gráfico ha cambiado" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 #, fuzzy -msgid "Percentage" -msgstr "Recientes" +msgid "Word Rotation" +msgstr "Añadir anotación" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 #, fuzzy -msgid "Percentage change" -msgstr "El Gráfico ha cambiado" +msgid "random" +msgstr "y" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 #, fuzzy -msgid "Percentage metrics" -msgstr "Métroca de orden" +msgid "square" +msgstr "consulta" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -#, fuzzy -msgid "Percentages" -msgstr "Recientes" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Periodos" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +#, fuzzy +msgid "offline" +msgstr "Desconectado" -#: superset/utils/pandas_postprocessing/prophet.py:126 +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy -msgid "Periods must be a whole number" -msgstr "Los periodos deben ser un valor entero positivo" +msgid "failed" +msgstr "Falló" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +#, fuzzy +msgid "pending" +msgstr "Orden Descendente" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:36 +#, fuzzy +msgid "fetching" +msgstr "Configuración" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "running" +msgstr "Ejecutando" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "Tabla física" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "Agregar" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "Tabla física" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "Éxito" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Conjunto de datos físico" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "No se pudo cargar la consulta." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "Elige una granularidad en la sección de tiempo o desmarca 'Incluir tiempo'" - -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Elige una métrica para el eje izquierdo!" - -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Elige una métrica para el eje derecho!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "No se pudo programar la consulta." -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Elige una métrica para 'x', 'y' y 'tamaño'" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Falla al recuperar los resultados" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Elige qué métrica mostrar" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Valor desconocido" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Elige una métrica!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "La consulta ha sido detenida." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Elige una granularidad de tiempo para tus series temporales." - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Elige al menos un campo para [Series]" - -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Elige al menos una métrica" - -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Elige exactamente 2 columnas como [Origen / Destino]" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "No se pueden añadir nueva pestaña al back-end. Contacte al administrador." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Elige tu idioma favorito de markup" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -#, fuzzy -msgid "Pie Chart" -msgstr "Nuevo gráfico" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "Copia de %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -#, fuzzy -msgid "Pie shape" -msgstr "Ver ejemplos" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -#, fuzzy -msgid "Pin" -msgstr "en" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Se produjo un error al recuperar el estado de la pestaña" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Tabla Dinámica" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "La operación de pivote debe incluir al menos un agregado" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "La operación de pivote requiere al menos un índice" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Tu consulta no pudo ser guardada" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 #, fuzzy -msgid "Pivoted" -msgstr "Editado" +msgid "Your query was not properly saved" +msgstr "Tu consulta fue guardada" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Tu consulta fue guardada" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Tu consulta fue actualizada" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Tu consulta no pudo ser actualizada" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" -#: superset/sqllab/query_render.py:118 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +"An error occurred while removing the table schema. Please contact your " +"administrator." msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Guardar Consulta" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "No se pudo cargar la fuente de datos" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Se produjo un error al crear el origen de datos" + +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +#, fuzzy +msgid "An error occurred while fetching function names." +msgstr "Se produjo un error al recuperar el estado de la pestaña" + +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 #, python-format msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +#, fuzzy +msgid "Primary key" +msgstr "Viernes" + +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset/viz.py:3234 +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "Por favor elige al menos un campo en 'Group by'" +msgid "Index" +msgstr "Desconectado" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Por favor, elige diferentes métricas en el eje izquierdo y derecho" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Estimar el costo de la consulta seleccionada" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "Confirme" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Estimar costo" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Estimación de costo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Por favor, introduce un URI SQLAlchemy para probar" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Creando un origen de datos y creando una nueva pestaña" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -#, fuzzy -msgid "Please filter set name" -msgstr "Por favor introduce un nombre para el gráfico" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Se produjo un error" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Explorar el conjunto de resultados en la vista de exploración de datos" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +#, fuzzy +msgid "explore" +msgstr "Explorar" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" -msgstr[1] "" +msgid "Create Chart" +msgstr "Compartir gráfico" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "Por favor, guarda la consulta para habilitar el compartir" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Fuente SQL" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +#, fuzzy +msgid "Executed SQL" +msgstr "Consulta ejecutada" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Ejecutar consulta" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Ejecutar consulta" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Por favor especifica 3 etiquetas de métrica distintas" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Detener consulta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Nueva pestaña" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +#, fuzzy +msgid "Previous Line" +msgstr "Anterior" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +#, fuzzy +msgid "Format SQL" +msgstr "Formato D3" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 #, fuzzy -msgid "Point Color" -msgstr "Color fijo" +msgid "Find" +msgstr "en" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#, fuzzy +msgid "Run a query to display query history" +msgstr "Ejecutar una consulta para mostrar los resultados aquí" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +#, fuzzy +msgid "LIMIT" +msgstr "Límite filas" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Estado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 #, fuzzy -msgid "Point Size" -msgstr "Tamaño burbuja" +msgid "Started" +msgstr "Estado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Duración" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Resultados" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -#, fuzzy -msgid "Points" -msgstr "Componentes" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Acciones" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Éxito" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -#, fuzzy -msgid "Polygon Column" -msgstr "Columna" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Falló" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "Ejecutando" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 #, fuzzy -msgid "Polygon Encoding" -msgstr "Envío de informe" +msgid "Fetching" +msgstr "Configuración" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Desconectado" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Programado" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "EStado desconocido" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Editar" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 #, fuzzy -msgid "Polygon Settings" -msgstr "Configuracion" +msgid "View" +msgstr "Previsualizar" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Previsualización de Datos" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Sobreescribir texto en el editor con una consulta sobre esta tabla" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Ejecutar consulta en otra pestaña" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Eliminar consulta del historial" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "Pop Tab Link" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Guardar y Explorar" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Sobreescribir y Explorar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 #, fuzzy -msgid "Port" -msgstr "informe" - -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "" - -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" -msgstr "" +msgid "Copy to Clipboard" +msgstr "Copiar al portapapeles" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "Posición JSON" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "ver resultados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -#, fuzzy -msgid "Pre-filter" -msgstr "Filtro de padre" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, fuzzy, python-format +msgid "%(rows)d rows returned" +msgstr "líneas obtenidas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -#, fuzzy -msgid "Pre-filter is required" -msgstr "El tipo es obligatorio" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s Error" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." -msgstr "" -"El predicado aplicado al obtener un valor distinto para rellenar el " -"componente de control de filtro. Soporta la sintaxis de la plantilla " -"jinja. Se aplica solo cuando `Habilitar selección de filtro` está " -"activado." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Seguir trabajo" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 #, fuzzy -msgid "Predictive" -msgstr "Activo" +msgid "See query details" +msgstr "Consultas Guardadas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 #, fuzzy -msgid "Predictive Analytics" -msgstr "Analíticos Avanzadas" +msgid "Query was stopped" +msgstr "La consulta ha sido detenida." -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Previsualizar" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Base de datos" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Previsualizar: `%s`" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "fue creada" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Anterior" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Consulta en nueva pestaña" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -#, fuzzy -msgid "Previous Line" -msgstr "Anterior" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "La consulta no arrojó resultados" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -#, fuzzy -msgid "Primary" -msgstr "Viernes" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Obtener previsualización de datos" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -#, fuzzy -msgid "Primary Metric" -msgstr "Métrica" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "ver resultados" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -#, fuzzy -msgid "Primary key" -msgstr "Viernes" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Detener" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Probar Conexión" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Ejecutar" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Detener (Ctrl + x)" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#, fuzzy +msgid "Stop running (Ctrl + e)" +msgstr "Detener (Ctrl + x)" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Ejecutar consulta (Ctrl + Enter)" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -#, fuzzy -msgid "Private Key Password" -msgstr "Contraseña de Broker" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Guardar" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 #, fuzzy -msgid "Proceed" -msgstr "Creado" - -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Perfil" +msgid "Untitled Dataset" +msgstr "Editar Base de Datos" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Imagen de Perfil provista por Gravatar" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Guardar como una consulta nueva" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +#, fuzzy +msgid "Overwrite existing" +msgstr "Continuar editando" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +#, fuzzy +msgid "Select or type dataset name" +msgstr "Selecciona tabla o introduce su nombre" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +#, fuzzy +msgid "Existing dataset" +msgstr "Cambiar fuente" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Publicado" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +#, fuzzy +msgid "Are you sure you want to overwrite this dataset?" +msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Indefinido" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +#, fuzzy +msgid "Save dataset" +msgstr "Cambiar fuente" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -#, fuzzy -msgid "Purple" -msgstr "Regla" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Guardar como" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Guardar Consulta" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Cancelar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Actualizar" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Pon tu código aquí" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Etiqueta para tu consulta" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Patrón datetime de Python" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Escribe una descripción para tu consulta" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset/db_engine_specs/base.py:110 -#, fuzzy -msgid "Quarter" -msgstr "consulta" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Guardar Consulta" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, fuzzy, python-format -msgid "Quarters %s" -msgstr "Propietario del Gráfico: %s" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Programar" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "Series" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Hubo un error con tu solicitud" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Consulta" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Por favor, guarda la consulta para habilitar el compartir" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" -msgstr "" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Copiar consulta de partición al portapapeles" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 #, fuzzy -msgid "Query A" -msgstr "consulta" +msgid "Save the query to enable this feature" +msgstr "Por favor, guarda la consulta para habilitar el compartir" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -#, fuzzy -msgid "Query B" -msgstr "consulta" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Copiar enlace" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Historial de la consulta" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "" +"No se encontraron resultados almacenados, necesitas ejecutar tu consulta " +"de nuevo" -#: superset/commands/exceptions.py:142 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 #, fuzzy -msgid "Query does not exist" -msgstr "La base de datos no existe" +msgid "Run a query to display results" +msgstr "Ejecutar una consulta para mostrar los resultados aquí" + +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Previsualizar: `%s`" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 #: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 msgid "Query history" msgstr "Historial de la Consulta" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Programar la consulta periódicamente" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Primero debes ejecutar la consulta exitosamente" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 #, fuzzy -msgid "Query imported" -msgstr "Nombre de la consulta" +msgid "Autocomplete" +msgstr "Autocompletar filtros" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Consulta en nueva pestaña" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "Permitir CREATE TABLE AS" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "Permitir CREATE TABLE AS" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -#, fuzzy -msgid "Query mode" -msgstr "Nombre de la consulta" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Estimar el costo antes de ejecutar una consulta" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Nombre de la consulta" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Previsualización de Datos" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 #, fuzzy -msgid "Query was stopped" -msgstr "La consulta ha sido detenida." - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "La consulta ha sido detenida." +msgid "Select a database to write a query" +msgstr "Selecciona tabla o introduce su nombre" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "TIPO DE RANGO" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 #, fuzzy -msgid "RGB Color" -msgstr "Color fijo" +msgid "Create" +msgstr "crear un " -#: superset/row_level_security/commands/exceptions.py:29 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Los Gráficos no han podido eliminarse" +msgid "Collapse table preview" +msgstr "Eliminar vista previa de la tabla" -#: superset/row_level_security/commands/exceptions.py:25 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "RLS Rule not found." -msgstr "No se encuentra el informe programado." +msgid "Expand table preview" +msgstr "Eliminar vista previa de la tabla" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Restablecer estado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -#, fuzzy -msgid "Radar Chart" -msgstr "Compartir gráfico" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Ingresa un nuevo título para la pestaña" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Cerrar pestaña" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -#, fuzzy -msgid "Radial" -msgstr "Espacial" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Renombrar pestaña" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Expandir barra de herramientas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -#, fuzzy -msgid "Radius in meters" -msgstr "Parámetros" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Ocultar barra de herramientas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Cerrar las demás pestañas" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, fuzzy, python-format -msgid "Ran %s" -msgstr "Duración: %s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Duplicar pestaña" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 #, fuzzy -msgid "Range" -msgstr "Administrar" +msgid "Add a new tab" +msgstr "Consulta en nueva pestaña" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -#, fuzzy -msgid "Range filter" -msgstr "Filtro de Fecha" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -#, fuzzy -msgid "Ranges" -msgstr "Administrar" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Se produjo un error al recuperar los metadatos de la tabla" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Copiar consulta de partición al portapapeles" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -#, fuzzy -msgid "Ranking" -msgstr "Mensaje de Aviso" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "última partición:" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Claves de la tabla" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Ver claves e índices (%s)" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Orden original de columna de tabla" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Ordenar columnas alfabéticamente" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Copiar instrucción SELECT al portapapeles" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Ver instrucción CREATE VIEW" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -#, fuzzy -msgid "Ratio" -msgstr "Duración" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "Instrucción CREATE VIEW" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Eliminar vista previa de la tabla" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 #, fuzzy -msgid "Ready to review filters in this dashboard?" -msgstr "No hay filtros en este dashboard" +msgid "Assign a set of parameters as" +msgstr "Los parametros del conjunto de datos son inválidos." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "Actividad Reciente" - -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -"Aquí aparecerán los gráficos, los dashboards y las consultas guardadas " -"recientemente" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -"Aquí aparecerán los gráficos, los dashboards y las consultas editadas " -"recientemente" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 #, fuzzy -msgid "Recently modified" -msgstr "Última modificación" +msgid "Jinja templating" +msgstr "Cargar una plantilla" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -"Aquí aparecerán los gráficos, los dashboards y las consultas vistas " -"recientemente" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Recientes" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Editar parámetros de la plantilla" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Los destinatarios están separados por \",\" o \";\"" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#, fuzzy +msgid "Parameters " +msgstr "Parámetros" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "JSON inválido" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Número de Registros" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Consulta sin título" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "Redirige a este punto al hacer clic en la tabla de la lista de tablas" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#, fuzzy +msgid "Control" +msgstr "Columna" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +#, fuzzy +msgid "Before" +msgstr "Intervlo de actualización" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +#, fuzzy +msgid "After" +msgstr "fecha" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -#, fuzzy -msgid "Refer to the" -msgstr "Referirse a " - -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." -msgstr "Columnas referenciadas no disponibles en DataFrame." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Modificado" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "ver resultados" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "El Gráfico ha cambiado" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Intervlo de actualización" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Última modificación por %s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Actualizar dashboard automáticamente" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Datos cargados en caché" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Frecuencia de actualización" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Cargado de caché" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Intérvalo de actualización" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Haga clic para forzar la actualización" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +#: superset-frontend/src/components/CachedLabel/index.tsx:51 #, fuzzy -msgid "Refresh interval saved" -msgstr "Intérvalo de actualización" +msgid "Cached" +msgstr "en cache" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -#, fuzzy -msgid "Refresh tables" -msgstr "Tabla de serie temporal" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -#, fuzzy -msgid "Refreshing charts" -msgstr "Error obteniendo datos" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -#, fuzzy -msgid "Refreshing columns" -msgstr "Columna de Tiempo" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" +msgstr "" -#: superset-frontend/src/explore/constants.ts:78 -#, fuzzy -msgid "Regex" -msgstr "Compartir" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Ocurrió un error al cargar SQL" + +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 #, fuzzy -msgid "Relational" -msgstr "Duración" +msgid "Sorry, an error occurred" +msgstr "Lo siento, ha ocurrido un error" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "La actualización del gráfico ha sido detenida" + +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Ocurrió un error al crear la visualización: %s" + +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Error de red." + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -#, fuzzy -msgid "Relative Date/Time" -msgstr "Cantidad relativa" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 #, fuzzy -msgid "Relative period" -msgstr "Periodo de gracia" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Cantidad relativa" +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "No hay filtros en este dashboard" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 #, fuzzy -msgid "Reload" -msgstr "Creado" +msgid "This visualization type does not support cross-filtering." +msgstr "Esta visualización no está soportada." -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "Eliminar" - -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 #, fuzzy msgid "Remove cross-filter" msgstr "Filtro de padre" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +#, fuzzy +msgid "Add cross-filter" +msgstr "Añadir filtro" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Eliminar consulta del historial" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Eliminar vista previa de la tabla" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "Columnas eliminadas: %s" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Renombrar pestaña" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -#, fuzzy -msgid "Rendering" -msgstr "Orden Descendente" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "Remplazar" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy -msgid "Report" -msgstr "informe" +msgid "Search columns" +msgstr "%s columnas(s)" -#: superset-frontend/src/components/ReportModal/index.tsx:281 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy -msgid "Report Name" -msgstr "Nombre de informe" +msgid "No columns found" +msgstr "Filtros Incompatibles (%d)" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "El informe programado no ha podido ser creado." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" +msgstr "" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "El informe programado no ha podido ser eliminado." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "No tienes permiso para aprobar esta solicitud." -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "El informe programado no ha podido ser actualizado." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#, fuzzy +msgid "Edit chart" +msgstr "Editar Gráfico" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "El informe programado no se pudo eliminar." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Cerrar" -#: superset/reports/commands/exceptions.py:159 -#, fuzzy -msgid "Report Schedule execution failed when generating a csv." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -"La ejecución del informe programado falló al generar una captura de " -"pantalla." -#: superset/reports/commands/exceptions.py:163 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "Ordenar por" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 #, fuzzy -msgid "Report Schedule execution failed when generating a dataframe." +msgid "There was an error loading the chart data" +msgstr "Hubo un error con tu solicitud" + +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, fuzzy, python-format +msgid "Results %s" +msgstr "Resultados" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -"La ejecución del informe programado falló al generar una captura de " -"pantalla." -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -"La ejecución del informe programado falló al generar una captura de " -"pantalla." -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "La ejecución del informe programado falló por un error inesperado." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." +msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -"El informe programado todavía está en proceso, rechazando la " -"recomputación." -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "Los registros del informe programado no pudieron limpiarse." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "No se encuentra el informe programado." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "Los parametros del informe programado son inválidos" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#, fuzzy +msgid "Formatting" +msgstr "Formato Fecha/Hora" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "El informe programado alcanzó el tiempo de espera máximo." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#, fuzzy +msgid "Formatted value" +msgstr "Limitar valores del selector" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "No se encontró el estado del informe programado" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 #, fuzzy -msgid "Report a bug" -msgstr "informe" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Informe fallido" +msgid "Reload" +msgstr "Creado" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "Nombre de informe" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "Programar informe" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" -#: superset/reports/commands/exceptions.py:273 +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 #, fuzzy -msgid "Report schedule client error" -msgstr "Error inesperado del informe programado" +msgid "Copied to clipboard!" +msgstr "Copiar al portapapeles" -#: superset/reports/commands/exceptions.py:267 -#, fuzzy -msgid "Report schedule system error" -msgstr "Error inesperado del informe programado" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "Error inesperado del informe programado" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "cada" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Envío de informe" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "cada mes" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Reporte enviado" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "todos los días del mes" -#: superset-frontend/src/reports/actions/reports.js:121 -#, fuzzy -msgid "Report updated" -msgstr "Informe fallido" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "día del mes" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Informes" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "todos los días de la semana" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "día de la semana" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "cada hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 #, fuzzy -msgid "Repulsion" -msgstr "Expresión" +msgid "every minute" +msgstr "cada minuto UTC" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minuto" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Solicitar Permisos" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "Petición incorrecta: %(error)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Cada" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "La petición no es JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "en" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "en" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -#, fuzzy -msgid "Request timed out" -msgstr "La petición no es JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "y" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Requerido" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "en" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 #, fuzzy -msgid "Resample" -msgstr "Ver ejemplos" +msgid "minute(s)" +msgstr "minuto(s) UTC" -#: superset/utils/pandas_postprocessing/resample.py:46 -#, fuzzy -msgid "Resample method should in " -msgstr "Método de Remuestra Pandas" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Expresión cron inválida" -#: superset/utils/pandas_postprocessing/resample.py:43 -#, fuzzy -msgid "Resample operation requires DatetimeIndex" -msgstr "La operación de pivote requiere al menos un índice" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Limpiar" -#: superset-frontend/src/components/Table/index.tsx:203 -#, fuzzy -msgid "Reset" -msgstr "Recientes" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Domingo" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" -msgstr "Restablecer estado" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Lunes" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Martes" -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "La base de datos no existe" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Miércoles" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -#, fuzzy -msgid "Restore Filter" -msgstr "Filtro de Fecha" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Jueves" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Resultados" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Viernes" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, fuzzy, python-format -msgid "Results %s" -msgstr "Resultados" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "Sábado" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Enero" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Febrero" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Marzo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -#, fuzzy -msgid "Reverse Lat & Long" -msgstr "latitud/longitud reversos" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "Abril" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "latitud/longitud reversos" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Mayo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Junio" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Julio" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -#, fuzzy -msgid "Right" -msgstr "Altura" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Agosto" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -#, fuzzy -msgid "Right Axis Format" -msgstr "Métrica Eje Derecho" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "Septiembre" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -#, fuzzy -msgid "Right Axis Metric" -msgstr "Métrica Eje Derecho" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Octubre" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Métrica Eje Derecho" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "Noviembre" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "Diciembre" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "DOM" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "LUN" -#: superset/dashboards/filters.py:200 -#, fuzzy -msgid "Role" -msgstr "Perfil" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "MAR" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "" -"El rol %(r)s se extendió para proporcionar el acceso al origen de datos " -"%(ds)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "MIÉ" -#: 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Roles" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "JUE" -#: 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 " -"defined, regular access permissions apply." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "VIE" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "SÁB" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Roles a conceder" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "ENE" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -#, fuzzy -msgid "Rolling Function" -msgstr "Probar Conexión" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "FEB" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -#, fuzzy -msgid "Rolling Window" -msgstr "Ventana de desplazamiento" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "MAR" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Probar Conexión" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "ABR" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "Ventana de desplazamiento" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "MAY" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Certificado raíz" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "JUN" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "JUL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "AGO" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "SEP" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "OCT" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -#, fuzzy -msgid "Round cap" -msgstr "Mapa de País" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Hilera" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "DIC" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 #, fuzzy -msgid "Row Level Security" -msgstr "Seguridad a nivel de registros" +msgid "There was an error loading the schemas" +msgstr "Hubo un error con tu solicitud" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +#, fuzzy +msgid "Select database or type to search databases" +msgstr "Selecciona tabla o introduce su nombre" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Límite filas" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +#, fuzzy +msgid "Select schema or type to search schemas" +msgstr "Selecciona tabla o introduce su nombre" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "Filas" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +#, fuzzy +msgid "No compatible schema found" +msgstr "Filtros Incompatibles (%d)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Filas a Leer" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "Regla" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy -msgid "Rule Name" -msgstr "Nombre de la consulta" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" -msgstr "" +msgid "Successfully changed dataset!" +msgstr "Cambiar fuente" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "Ejecutar" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Probar Conexión" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 #, fuzzy -msgid "Run a query to display query history" -msgstr "Ejecutar una consulta para mostrar los resultados aquí" +msgid "Swap dataset" +msgstr "Conjunto de datos físico" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy -msgid "Run a query to display results" -msgstr "Ejecutar una consulta para mostrar los resultados aquí" +msgid "Proceed" +msgstr "Creado" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Ejecutar en Laboratiorio SQL" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Mensaje de Aviso" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Ejecutar consulta" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Buscar / Filtrar" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "Ejecutar consulta (Ctrl + Enter)" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Añadir elemento" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Ejecutar consulta en otra pestaña" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +#, fuzzy +msgid "STRING" +msgstr "Mensaje de Aviso" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Probar Conexión" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +#, fuzzy +msgid "NUMERIC" +msgstr "Métrica" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "Ejecutando" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +#, fuzzy +msgid "DATETIME" +msgstr "Fecha/Hora" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "SÁB" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "SEP" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Tabla física" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" - -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "Copiado!" - -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "Expresión SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Tipo de dato" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "Laboratorio SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +#, fuzzy +msgid "Advanced data type" +msgstr "Datos cargados en caché" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "Vista de Laboratorio SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +#, fuzzy +msgid "Advanced Data type" +msgstr "Datos cargados en caché" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Formato Fecha/Hora" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "Consulta SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Patrón de la fecha/hora. Para cadenas usar " -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "Expresión SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Patrón datetime de Python" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "Parar query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "URI SQLAlchemy" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 #, fuzzy -msgid "SSH Password" -msgstr "Contraseña de Broker" +msgid "Certified By" +msgstr "Certificado por" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Certificado por" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -#, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "El Gráfico no ha podido eliminarse" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Detalles de la certificación" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Es dimensión" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 #, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "El Gráfico no ha podido guardarse" +msgid "Default datetime" +msgstr "Valores Nulos" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Es filtrable" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 #, fuzzy -msgid "SSH Tunnel not found." -msgstr "Plantillas CSS" +msgid "" +msgstr "Columna de Tiempo" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "Los parametros del Gráfico son invalidos" +msgid "Select owners" +msgstr "Probar Conexión" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Columnas modificadas: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Columnas eliminadas: %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "Nuevas columnas añadidas: %s" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Los metadatos se han sincronizado" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Ha ocurrido un error" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 #, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "" +msgid "Column name [%s] is duplicated" +msgstr "La columna [%s] esta duplicada" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -#, fuzzy -msgid "STRING" -msgstr "Mensaje de Aviso" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "La métrica [%s] esta duplicada" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "DOM" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "Columna calculada [%s] requiere una expresión" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Básico" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "Ver ejemplos" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "Url por defecto" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "El conjunto de datos no pudo ser creado." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "El conjunto de datos no pudo ser creado." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Autocompletar filtros" -#: superset/viz.py:1854 -msgid "Sankey" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Autocompletar predicado de consulta" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -#, fuzzy -msgid "Satellite" -msgstr "Filtro de Fecha" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "Sábado" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Tiempo de espera de caché" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Guardar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Guardar y Explorar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Guardar e ir al Dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Save & go to new dashboard" -msgstr "Guardar e ir al Dashboard" +msgid "Normalize column names" +msgstr "Columnas calculadas" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Guardar (Sobrescribir)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +#, fuzzy +msgid "Always filter main datetime column" +msgstr "Columna principal de fecha y hora" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Guardar como" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 #, fuzzy -msgid "Save as Dataset" -msgstr "Selecciona una base de datos" +msgid "" +msgstr "Espacial" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 #, fuzzy -msgid "Save as dataset" -msgstr "Selecciona una base de datos" +msgid "" +msgstr "Tipo de dato" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Guardar como una consulta nueva" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "CLick en el candado para poder realizar cambios." -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Guardar como gráfico nuevo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Click sobre el candado para prevenir futuros cambios." -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "Guardar como..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Guardar como:" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -#, fuzzy -msgid "Save changes" -msgstr "Descartar cambios" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Guardar gráfico" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Tabla física" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Guardar Dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 #, fuzzy -msgid "Save dataset" -msgstr "Cambiar fuente" +msgid "Metric Key" +msgstr "Métrica" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Guardar para esta sesión" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "Formato D3" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Guardar Consulta" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +#, fuzzy +msgid "Select or type currency symbol" +msgstr "Limitar valores del selector" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 #, fuzzy -msgid "Save the query to enable this feature" -msgstr "Por favor, guarda la consulta para habilitar el compartir" +msgid "Warning" +msgstr "Mensaje de Aviso" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Save to new dashboard" -msgstr "Guardar e ir al Dashboard" +msgid "" +msgstr "Consultas Guardadas" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Guardar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Se precavido." -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Consultas Guardadas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -#, fuzzy -msgid "Saved expressions" -msgstr "Expresión SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Sincronizar las columnas desde la fuente" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Consultas Guardadas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Columnas calculadas" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Consultas Guardadas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Los Gráficos no han podido eliminarse" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "No se encuentra la consulta guardada." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Configuración" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Saved query parameters are invalid." -msgstr "Los parametros del Gráfico son invalidos" +msgid "Error saving dataset" +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Confirmar guardado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "OK" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Editar Base de Datos" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Usar editor de datasource legado" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 -#, fuzzy -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." -msgstr "" -"Gráfico de Dispersión de Puntos (en Series de tiempo), muestra en el eje " -"horizontal el tiempo en unidades lineales, conectando los puntos en " -"orden. Muestra una relación estadística entre dos variables-" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "ELIMINAR" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "Programar" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "eliminar" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -#, fuzzy -msgid "Schedule a new email report" -msgstr "Programar informes por correo electrónico para gráficos" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Teclea \"%s\" para confirmar" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 #, fuzzy -msgid "Schedule email report" -msgstr "Programar informes por correo electrónico para gráficos" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Guardar Consulta" +msgid "More" +msgstr "Ver más" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Configuracion" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Click para editar" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "Programar la consulta periódicamente" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "No tienes los derechos para alterar este título." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "Programado" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -#, fuzzy -msgid "Scheduled at (UTC)" -msgstr "Programado en" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "" -#: superset/tasks/exceptions.py:24 +#: superset-frontend/src/components/EmptyState/index.tsx:230 #, fuzzy -msgid "Scheduled task executor not found" -msgstr "No se encontró el estado del informe programado" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Esquema" +msgid "Manage your databases" +msgstr "Nombre de tu fuente de datos" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 #, fuzzy -msgid "Schema cache timeout" -msgstr "Tiempo de espera de caché" +msgid "here" +msgstr "Compartir" -#: superset/views/core.py:1186 -#, fuzzy -msgid "Schema undefined" -msgstr "Indefinido" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Error inesperado" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" msgstr "" -"Esquema, tal como se utiliza solo en algunas bases de datos como " -"Postgres, Redshift y DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 #, fuzzy -msgid "Schemas allowed for File upload" +msgid "Please reach out to the Chart Owner for assistance." msgstr "" -"Si se selecciona, por favor, establezca los esquemas permitidos en " -"Adicional" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Propietario del Gráfico: %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s Error" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +#, fuzzy +msgid "Missing dataset" +msgstr "Cambiar fuente" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Buscar" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Ver más" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Buscar / Filtrar" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Ver menos" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Buscar Métricas y Columnas" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Mensaje de Aviso" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 #, fuzzy -msgid "Search all charts" -msgstr "Todos los gráficos" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Buscar / Filtrar" +msgid "Details" +msgstr "Totales" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Search box" -msgstr "Buscar" +msgid "This was triggered by:" +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "Buscar por texto" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Quiciste decir:" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -#, fuzzy -msgid "Search columns" -msgstr "%s columnas(s)" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 -#, fuzzy -msgid "Search in filters" -msgstr "Buscar / Filtrar" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Parámetros" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -#, fuzzy -msgid "Search tables" -msgstr "Roles de Usuario" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgstr "" +"Estamos teniendo problemas cargando esta visualización. Las consultas se " +"establecen a tiempo de espera después de %s segundo." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Buscar..." +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgstr "" +"Estamos teniendo problemas cargando estos resultados. Las consultas se " +"establecen a tiempo de espera después de %s segundo." -#: superset/db_engine_specs/base.py:97 -#, fuzzy -msgid "Second" -msgstr "30 segundos" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Error de timeout" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Haz clic para favorito/no favorito" + +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Contenido de la celda" + +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Secondary" -msgstr "Lunes" +msgid "Hide password." +msgstr "Contraseña de Broker" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 #, fuzzy -msgid "Secondary Metric" -msgstr "Métroca de orden" +msgid "Show password." +msgstr "Mostrar Dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "SOBRESCRIBIR" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +#, fuzzy +msgid "Database passwords" +msgstr "Base de datos" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 #, fuzzy, python-format -msgid "Seconds %s" -msgstr "30 segundos" +msgid "%s PASSWORD" +msgstr "Contraseña de Broker" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Seguridad" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Seguridad" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" +msgstr "" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Seguridad & Acceso" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, fuzzy, python-format -msgid "See all %(tableName)s" -msgstr "Explorar - %(table)s" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Sobrescribir" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "Ver menos" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Import" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "Ver más" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Importar %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 +#: superset-frontend/src/components/ImportModal/index.tsx:445 #, fuzzy -msgid "See query details" -msgstr "Consultas Guardadas" +msgid "Select file" +msgstr "Buscar / Filtrar" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Ver esquema de tabla" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Última actualización %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 #, fuzzy -msgid "Select" -msgstr "Selección múltiple" +msgid "Sort" +msgstr "informe" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Selecciona ..." +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -#, fuzzy -msgid "Select Delivery Method" -msgstr "Agregar método de entrega" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s seleccionados" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -#, fuzzy -msgid "Select Viz Type" -msgstr "Selecciona un tipo de visualización" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "¿Realmente quieres borrar todo?" -#: superset/views/database/forms.py:425 -#, fuzzy -msgid "Select a Columnar file to be uploaded to a database." -msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" +msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." -msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -#, fuzzy -msgid "Select a column" -msgstr "¿Realmente quieres borrar todo?" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 +#: superset-frontend/src/components/ListView/ListView.tsx:450 #, fuzzy -msgid "Select a dashboard" -msgstr "Dashboard Superset" +msgid "clear all filters" +msgstr "Buscar / Filtrar" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +#: superset-frontend/src/components/ListView/ListView.tsx:455 #, fuzzy -msgid "Select a database table and create dataset" -msgstr "Selecciona tabla o introduce su nombre" +msgid "No Data" +msgstr "No hay datos" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -#, fuzzy -msgid "Select a database table." -msgstr "Eliminar base de datos" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s de %s" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Select a database to connect" -msgstr "Se ha detenido una conexión insegura a la base de datos" - -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" -msgstr "" +msgid "Start date" +msgstr "El Gráfico ha cambiado" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Select a database to write a query" -msgstr "Selecciona tabla o introduce su nombre" +msgid "End date" +msgstr "fecha" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 #, fuzzy -msgid "Select a dimension" -msgstr "Es dimensión" +msgid "Type a value" +msgstr "Introduce un valor" -#: superset/views/database/forms.py:110 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 #, fuzzy -msgid "Select a file to be uploaded to the database" -msgstr "Selecciona un archivo CSV para ser cargado a una base de datos." +msgid "Filter" +msgstr "Filtros" -#: superset/views/database/forms.py:155 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 #, fuzzy -msgid "Select a schema if the database supports this" -msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)." +msgid "Select or type a value" +msgstr "Limitar valores del selector" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Selecciona un tipo de visualización" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Última modificación" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -#, fuzzy -msgid "Select aggregate options" -msgstr "%s aggregación(es)" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Modificado por" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "¿Realmente quieres borrar todo?" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Creado por" -#: superset-frontend/src/components/Table/index.tsx:205 -#, fuzzy -msgid "Select all items" -msgstr "¿Realmente quieres borrar todo?" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Creado el" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "Todos los gráficos" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#, fuzzy -msgid "Select charts" -msgstr "Todos los gráficos" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Selecciona ..." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy -msgid "Select color scheme" -msgstr "Esquema de Color Lineal" +msgid "Filter menu" +msgstr "Valor del Filtro" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +#: superset-frontend/src/components/Table/index.tsx:218 #, fuzzy -msgid "Select column" -msgstr "Columna de Tiempo" +msgid "Reset" +msgstr "Recientes" -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:219 #, fuzzy -msgid "Select current page" -msgstr "Buscar / Filtrar" +msgid "No filters" +msgstr "Añadir filtro" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 +#: superset-frontend/src/components/Table/index.tsx:220 #, fuzzy -msgid "Select database & schema" -msgstr "Ver esquema de tabla" +msgid "Select all items" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 +#: superset-frontend/src/components/Table/index.tsx:221 #, fuzzy -msgid "Select database or type to search databases" -msgstr "Selecciona tabla o introduce su nombre" +msgid "Search in filters" +msgstr "Buscar / Filtrar" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/Table/index.tsx:223 #, fuzzy -msgid "Select database table" -msgstr "Eliminar base de datos" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " -msgstr "" +msgid "Select current page" +msgstr "Buscar / Filtrar" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 +#: superset-frontend/src/components/Table/index.tsx:224 #, fuzzy -msgid "Select dataset source" -msgstr "Usar editor de datasource legado" +msgid "Invert current page" +msgstr "El Gráfico ha cambiado" -#: superset-frontend/src/components/ImportModal/index.tsx:445 +#: superset-frontend/src/components/Table/index.tsx:225 #, fuzzy -msgid "Select file" -msgstr "Buscar / Filtrar" +msgid "Clear all data" +msgstr "Todos los gráficos" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 +#: superset-frontend/src/components/Table/index.tsx:226 #, fuzzy -msgid "Select filter" -msgstr "Buscar / Filtrar" - -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "" - -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "" +msgid "Select all data" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 +#: superset-frontend/src/components/Table/index.tsx:228 #, fuzzy -msgid "Select operator" -msgstr "%s operador(es)" +msgid "Expand row" +msgstr "Fila de Encabezado" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +#: superset-frontend/src/components/Table/index.tsx:229 #, fuzzy -msgid "Select or type a value" -msgstr "Limitar valores del selector" +msgid "Collapse row" +msgstr "Contraer todo" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 +#: superset-frontend/src/components/Table/index.tsx:230 #, fuzzy -msgid "Select or type dataset name" -msgstr "Selecciona tabla o introduce su nombre" +msgid "Click to sort descending" +msgstr "Orden descendente" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 +#: superset-frontend/src/components/Table/index.tsx:231 #, fuzzy -msgid "Select owners" -msgstr "Probar Conexión" +msgid "Click to sort ascending" +msgstr "Selecciona para ordenar de forma ascendente" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -#, fuzzy -msgid "Select saved metrics" -msgstr "%s métrica(s) guardada(s)" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/TableSelector/index.tsx:187 #, fuzzy -msgid "Select schema or type to search schemas" -msgstr "Selecciona tabla o introduce su nombre" +msgid "List updated" +msgstr "Última actualización %s" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#: superset-frontend/src/components/TableSelector/index.tsx:194 #, fuzzy -msgid "Select scheme" -msgstr "Selecciona un esquema (%s)" - -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Seleciona fecha de inicio y de fin" +msgid "There was an error loading the tables" +msgstr "Hubo un error con tu solicitud" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Ver esquema de tabla" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 #, fuzzy msgid "Select table or type to search tables" msgstr "Selecciona tabla o introduce su nombre" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -#, fuzzy -msgid "Select the Annotation Layer you would like to use." -msgstr "Capas de Anotación" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 +#: superset-frontend/src/components/Tags/utils.tsx:72 #, fuzzy -msgid "Select the geojson column" -msgstr "¿Realmente quieres borrar todo?" +msgid "You do not have permission to read tags" +msgstr "No tienes permiso para aprobar esta solicitud." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" -msgstr "" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +#, fuzzy +msgid "Timezone selector" +msgstr "Probar Conexión" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Filtro de padre" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "Septiembre" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Series" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -#, fuzzy -msgid "Series Height" -msgstr "Límite de Serie" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 #, fuzzy -msgid "Series Limit Sort By" -msgstr "Límite de Serie" +msgid "This dashboard is now published" +msgstr "Cambiar este Dashboard está prohibido" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 #, fuzzy -msgid "Series Limit Sort Descending" -msgstr "Orden descendente" +msgid "This dashboard is now hidden" +msgstr "Cambiar este Dashboard está prohibido" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -#, fuzzy -msgid "Series Order" -msgstr "Series" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 #, fuzzy -msgid "Series Style" -msgstr "Tabla de serie temporal" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" -msgstr "" +msgid "[ untitled dashboard ]" +msgstr "Editar Dashboard" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Límite de Serie" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Este Dashboard se guardó con éxito." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 #, fuzzy -msgid "Series type" -msgstr "Tipo" +msgid "Sorry, an unknown error occurred" +msgstr "Lo siento, ha ocurrido un error" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" +"Lo sentimos, hubo un error al obtener la información de la base de datos:" +" %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Configurar intervalo de actualización automática" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "Configurar mapeo de filtros" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -#, fuzzy -msgid "Set up an email report" -msgstr "Alertas e informes" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "Configuración" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "No se pudieron cargar todos los gráficos guardados" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Compartir" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -#, fuzzy -msgid "Share chart by email" -msgstr "Compartir gráfico" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -#, fuzzy -msgid "Share permalink by email" -msgstr "Compartir gráfico" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Tienes cambios no guardados." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Guardar Consulta" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -#, fuzzy -msgid "Shared query fields" -msgstr "Consultas Guardadas" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" +msgstr "" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Nombre de Hoja" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Crear un nuevo Gráfico" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "La descripción corta debe ser única para esta capa" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +#, fuzzy +msgid "Edit the dashboard" +msgstr "Editar Dashboard" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 #, fuzzy -msgid "Show Bubbles" -msgstr "Mostrar Tabla" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "Ver instrucción CREATE VIEW" +msgid "Refresh interval saved" +msgstr "Intérvalo de actualización" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Mostrar Plantilla CSS" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Intérvalo de actualización" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Mostrar Gráfico" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Frecuencia de actualización" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Mostrar Columna" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "¿Seguro que quieres proceder?" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Mostrar Dashboard" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Guardar para esta sesión" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Mostrar Base de Datos" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Debes elegir un nombre para el nuevo Dashboard" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -#, fuzzy -msgid "Show Labels" -msgstr "Mostrar Tabla" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Guardar Dashboard" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Sobrescribir el Dashboard [%s]" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Mostrar Registro" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Guardar como:" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[nombre del Dashboard]" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Mostrar Métrica" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "copiar (duplicar) tambien los Gráficos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 #, fuzzy -msgid "Show Metric Names" -msgstr "Mostrar Métrica" +msgid "viz type" +msgstr "Tipo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 #, fuzzy -msgid "Show Range Filter" -msgstr "Filtro de Fecha" - -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Mostrar Consulta Guardada" +msgid "recent" +msgstr "Recientes" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Mostrar Tabla" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Crear un nuevo Gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Filtrar tus Gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 #, fuzzy -msgid "Show Total" -msgstr "Mostrar Columna" +msgid "Filter charts" +msgstr "Filtrar tus Gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, fuzzy, python-format +msgid "Sort by %s" +msgstr "Ordenar por" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -#, fuzzy -msgid "Show Value" -msgstr "Mostrar Tabla" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Añadido" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 #, fuzzy -msgid "Show Values" -msgstr "Mostrar Tabla" +msgid "Unknown type" +msgstr "Valor desconocido" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Tipo" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Conjunto de Datos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -#, fuzzy -msgid "Show all columns" -msgstr "Mostrar Columna" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Gráfico Superset" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" -msgstr "" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Cargar una plantilla CSS" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -#, fuzzy -msgid "Show chart description" -msgstr "Alterna la descripción del Dashboard" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Editor CSS" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 #, fuzzy -msgid "Show columns total" -msgstr "Mostrar Columna" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "" +msgid "Collapse tab content" +msgstr "Contenido de la celda" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 #, fuzzy -msgid "Show empty columns" -msgstr "Mostrar columna de tiempo SQL" +msgid "There are no charts added to this dashboard" +msgstr "No hay filtros en este dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -#, fuzzy -msgid "Show label" -msgstr "Mostrar Tabla" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -#, fuzzy -msgid "Show less columns" -msgstr "Mostrar columna de tiempo SQL" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -#, fuzzy -msgid "Show password." -msgstr "Mostrar Dashboard" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -#, fuzzy -msgid "Show progress" -msgstr "Propiedades del Dashboard" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 #, fuzzy -msgid "Show time column" -msgstr "Mostrar columna de tiempo SQL" +msgid "Deactivate" +msgstr "Activo" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 #, fuzzy -msgid "Show time grain dropdown" -msgstr "Mostrar caja de selección de Granularidad de Druid" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." -msgstr "" +msgid "Save changes" +msgstr "Descartar cambios" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +#, fuzzy +msgid "Embed" +msgstr "Noviembre" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "Filtros aplicados (%d)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, fuzzy, python-format +msgid "Applied filters (%d)" +msgstr "Filtros aplicados (%d)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, fuzzy, python-format msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" +"Este Dashboard está actualmente fuerza refrescar; la siguiente fuerza " +"refrescar será en %s." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +#, fuzzy +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" +"Tu dashboard es demasiado grande, Por favor reduce el tamaño antes de " +"guardar" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "Mostrando %s de %s" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#, fuzzy +msgid "Add the name of the dashboard" +msgstr "Guardar e ir al Dashboard" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "Dashboards" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#, fuzzy +msgid "Undo the action" +msgstr "Probar Conexión" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 #, fuzzy -msgid "Single" -msgstr "Archivo" +msgid "Edit dashboard" +msgstr "Editar Dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -#, fuzzy -msgid "Single Metric" -msgstr "Filtrar por estado" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Ha ocurrido un error cargando los CSS disponibles" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 #, fuzzy -msgid "Single Value" -msgstr "Valores Nulos" +msgid "Refreshing charts" +msgstr "Error obteniendo datos" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -#, fuzzy -msgid "Single value" -msgstr "Valores Nulos" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Dashboard Superset" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Actualizar dashboard automáticamente" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +#, fuzzy +msgid "Exit fullscreen" +msgstr "Alternar pantalla completa" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +#, fuzzy +msgid "Enter fullscreen" +msgstr "Alternar pantalla completa" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "Saltar líneas vacías" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Editar propiedades" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "Omitir Espacio Inicial" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Editar CSS" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "Omitir Filas" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#, fuzzy +msgid "Download" +msgstr "Descargar como imagen" -#: superset/views/database/forms.py:188 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 #, fuzzy -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "Saltar líneas vacías en lugar de interpretarlas como valores NaN." +msgid "Export to PDF" +msgstr "Exportar a YAML" -#: superset/views/database/forms.py:184 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 #, fuzzy -msgid "Skip spaces after delimiter" -msgstr "Omitir espacios después del delimitador." +msgid "Download as Image" +msgstr "Descargar como imagen" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Compartir" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +#, fuzzy +msgid "Copy permalink to clipboard" +msgstr "Copiar consulta de partición al portapapeles" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +#, fuzzy +msgid "Share permalink by email" +msgstr "Compartir gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" +msgstr "Guardar Dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +#, fuzzy +msgid "Manage email report" +msgstr "Alertas e informes" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Configurar mapeo de filtros" -#: superset/commands/exceptions.py:119 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Configurar intervalo de actualización automática" + +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 #, fuzzy -msgid "Some roles do not exist" -msgstr "El dashboard no existe" +msgid "Confirm overwrite" +msgstr "Confirmar guardado" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -"Lo sentimos, hubo un error al obtener la información de la base de datos:" -" %s" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +#, fuzzy +msgid "Are you sure you intend to overwrite the following values?" +msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Lo siento, ha ocurrido un error" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, fuzzy, python-format +msgid "Last Updated %s by %s" +msgstr "Última actualización %s" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Aplicar" + +#: 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:66 #, fuzzy -msgid "Sorry, an error occurred" -msgstr "Lo siento, ha ocurrido un error" +msgid "Error" +msgstr "%s Error" + +#: 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" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy -msgid "Sorry, an unknown error occurred" -msgstr "Lo siento, ha ocurrido un error" +msgid "JSON metadata is invalid!" +msgstr "no es json válido" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy -msgid "Sorry, an unknown error occurred." -msgstr "Lo siento, ha ocurrido un error" +msgid "Dashboard properties updated" +msgstr "Propiedades del Dashboard" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "El dashboard ha sido guardado" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "" +#: 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" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: 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." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "" -"Lo sentimos, hubo un error al obtener la información de la base de datos:" -" %s" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Colores" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this dashboard: %s" +#: 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 " +"defined, regular access permissions apply." msgstr "" -"Lo sentimos, hubo un error al obtener la información de la base de datos:" -" %s" - -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -#, fuzzy -msgid "Sort" -msgstr "informe" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Propiedades del Dashboard" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -#, fuzzy -msgid "Sort Bars" -msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -#, fuzzy -msgid "Sort Descending" -msgstr "Orden descendente" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Información Basica" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -#, fuzzy -msgid "Sort Metric" -msgstr "Métroca de orden" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "nombre para URL" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -#, fuzzy -msgid "Sort Series Ascending" -msgstr "Orden Descendente" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "Una URL amigable para el dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy -msgid "Sort Series By" -msgstr "Ordenar por" +msgid "Certification" +msgstr "Certificado raíz" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: 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 "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Orden Descendente" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "Metadatos JSON" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, fuzzy, python-format -msgid "Sort by %s" -msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -#, fuzzy -msgid "Sort by metric" -msgstr "Métroca de orden" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Ordenar columnas alfabéticamente" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." +msgstr "" +"Este dashboard no es público, no serávisible en la lista de dashboards, " +"Haz click aqui para publicarlo." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -#, fuzzy -msgid "Sort columns by" -msgstr "Ordenar columnas alfabéticamente" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "Orden descendente" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Este dashboard es público, Haz click para hacerlo borrador" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -#, fuzzy -msgid "Sort filter values" -msgstr "Es filtrable" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Borrador" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Métroca de orden" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -#, fuzzy -msgid "Sort rows by" -msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Una o más capas de anotación fallaron al cargar." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 #, fuzzy -msgid "Sort type" -msgstr "Tipo de dato" +msgid "Data refreshed" +msgstr "Última actualización de metadatos" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Fuente" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "En cache %s" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -#, fuzzy -msgid "Source / Target" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "Obtenido %s" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Fuente SQL" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -#, fuzzy -msgid "Source category" -msgstr "Nombre de la Fuente de Datos" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Forzar actualización" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +#, fuzzy +msgid "Hide chart description" +msgstr "Alterna la descripción del Dashboard" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "Espacial" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +#, fuzzy +msgid "Show chart description" +msgstr "Alterna la descripción del Dashboard" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Filtro de padre" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Ver consulta" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Especifica columnas duplicadas como \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +#, fuzzy +msgid "View as table" +msgstr "Ver ejemplos" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "Última actualización %s" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +#, fuzzy +msgid "Share chart by email" +msgstr "Compartir gráfico" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 #, fuzzy -msgid "Split number" -msgstr "Número Grande" +msgid "Export to .CSV" +msgstr "Exportar a YAML" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 #, fuzzy -msgid "Square kilometers" -msgstr "Filtro de padre" +msgid "Export to Excel" +msgstr "Exportar a YAML" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -#, fuzzy -msgid "Square meters" -msgstr "Parámetros" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 #, fuzzy -msgid "Square miles" -msgstr "Series" +msgid "Export to full Excel" +msgstr "Exportar a YAML" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -#, fuzzy -msgid "Stack" -msgstr "Backend" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Descargar como imagen" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Buscar..." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Ningún filtro seleccionado" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -#, fuzzy -msgid "Stacked" -msgstr "Backend" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Editando 1 filtro:" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Editando %d filtros simultáneamente:" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Configurar ámbito de filtros" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "No hay filtros en este dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Expandir todo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Iniciar" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Contraer todo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 #, fuzzy -msgid "Start (Longitude, Latitude): " -msgstr "Longitud/latitud inválidas" +msgid "An error occurred while opening Explore" +msgstr "Se produjo un error al limpiar los registros" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 #, fuzzy -msgid "Start Longitude & Latitude" -msgstr "Longitud/latitud inválidas" +msgid "Empty column" +msgstr "Columna" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -#, fuzzy -msgid "Start Review" -msgstr "Previsualización de Datos" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Este componente markdown tiene un error." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -#, fuzzy -msgid "Start angle" -msgstr "El Gráfico ha cambiado" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -#, fuzzy -msgid "Start at (UTC)" -msgstr "Iniciar en" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 #, fuzzy -msgid "Start date" -msgstr "El Gráfico ha cambiado" +msgid "You can" +msgstr "Mapa de País" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +#, fuzzy +msgid "create a new chart" +msgstr "Crear un nuevo Gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 #, fuzzy -msgid "Started" -msgstr "Estado" +msgid "edit mode" +msgstr "Nombre de la consulta" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Estado" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "¿Quieres eliminar la pestaña del dashboard?" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +#, fuzzy +msgid "undo" +msgstr "¿Deshacer?" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Estado" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "CANCELAR" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "División" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Encabezado" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#, fuzzy +msgid "Text" +msgstr "Siguiente" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Pestañas" + +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Previsualizar" + +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 #, fuzzy -msgid "Step type" -msgstr "Tipo de dato" +msgid "Unknown value" +msgstr "Valor desconocido" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 #, fuzzy -msgid "Stepped Line" -msgstr "Tabla de serie temporal por pasos" +msgid "Add/Edit Filters" +msgstr "Añadir filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 #, fuzzy -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "" -"Gráfico de Series por tiempo en Pasos (conocida como Tabla de Pasos) es " -"una variación del gráfico de Linea, en la cual la linea que forma la " -"serie de tiempo forma una serie de 'pasos' entre los puntos de intervalos" -" de datos. Una tabla de paso es útil cuando se quieren mostrar los " -"cambios ocurridos en intervalos regulares." +msgid "No filters are currently added to this dashboard." +msgstr "No hay filtros en este dashboard" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Detener" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Detener consulta" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #, fuzzy -msgid "Stop running (Ctrl + e)" -msgstr "Detener (Ctrl + x)" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "Detener (Ctrl + x)" +msgid "Apply filters" +msgstr "Todos los filtros" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Se ha detenido una conexión insegura a la base de datos" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 #, fuzzy -msgid "Stream" -msgstr "Histograma" +msgid "Locate the chart" +msgstr "Crear un nuevo Gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy -msgid "Streets" -msgstr "Recientes" +msgid "Cross-filters" +msgstr "Filtro de padre" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -#, fuzzy -msgid "Stretched style" -msgstr "Obtenido %s" - -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "Cadenas usadas para nombres de hojas (por defecto es la primera hoja)." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 #, fuzzy -msgid "Stroke Color" -msgstr "Color fijo" +msgid "Select chart" +msgstr "Todos los gráficos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 #, fuzzy -msgid "Stroke Width" -msgstr "Grosor de línea" +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "No hay filtros en este dashboard" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -#, fuzzy -msgid "Stroked" -msgstr "Creado" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Estilo" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Todos los gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -#, fuzzy -msgid "Subheader" -msgstr "Encabezado" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#, fuzzy +msgid "More filters" +msgstr "Filtro de Fecha" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "Éxito" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#, fuzzy +msgid "No applied filters" +msgstr "Filtros aplicados (%d)" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "Filtros aplicados (%d)" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 #, fuzzy -msgid "Successfully changed dataset!" -msgstr "Cambiar fuente" +msgid "Cannot load filter" +msgstr "Filtro de padre" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +#, fuzzy +msgid "Dependent on" +msgstr "Orden descendente" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +#, fuzzy +msgid "Filter type" +msgstr "Filtrar por usuario" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#, fuzzy +msgid "Title is required" +msgstr "El título es obligatorio" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Eliminado)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "¿Deshacer?" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 #, fuzzy -msgid "Sum values" -msgstr "Valores Nulos" +msgid "[untitled]" +msgstr "%s - sin título" -#: superset/viz.py:1805 -msgid "Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 #, fuzzy -msgid "Sunburst Chart" -msgstr "Gráfico Superset" +msgid "Add and edit filters" +msgstr "Filtro de Fecha" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 #, fuzzy -msgid "Sunburst Chart v2" -msgstr "Gráfico Superset" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Domingo" +msgid "Column select" +msgstr "Probar Conexión" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 #, fuzzy -msgid "Superset Chart" -msgstr "Gráfico Superset" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "" - -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Gráfico Superset" +msgid "Select a column" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Dashboard Superset" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +#, fuzzy +msgid "No compatible columns found" +msgstr "Filtros Incompatibles (%d)" -#: superset/errors.py:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 #, fuzzy -msgid "Superset encountered an error while running a command." -msgstr "La alerta encontró un error al ejecutar una consulta." +msgid "No compatible datasets found" +msgstr "Filtros Incompatibles (%d)" -#: superset/errors.py:112 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 #, fuzzy -msgid "Superset encountered an unexpected error." -msgstr "Error inesperado del informe programado" +msgid "Select a dataset" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 #, fuzzy -msgid "Supported databases" -msgstr "Eliminar base de datos" +msgid "Value is required" +msgstr "Nombre es requerido" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 #, fuzzy -msgid "Swap dataset" -msgstr "Conjunto de datos físico" +msgid "Limit type" +msgstr "Tipo" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "Todos los filtros" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Añadir filtro" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 #, fuzzy -msgid "Symbol" -msgstr "tornillo" +msgid "Values dependent on" +msgstr "Orden descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 #, fuzzy -msgid "Symbol size" -msgstr "Tamaño burbuja" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "Sincronizar las columnas desde la fuente" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "" - -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" -msgstr "" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "TABLAS" +msgid "Filter Configuration" +msgstr "Configuración de filtros" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 #, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "Es temporal" +msgid "Filter Settings" +msgstr "Configurar ámbito de filtros" -#: superset-frontend/src/explore/constants.ts:91 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 #, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "Es temporal" +msgid "Select filter" +msgstr "Buscar / Filtrar" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "JUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +#, fuzzy +msgid "Range filter" +msgstr "Filtro de Fecha" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "MAR" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#, fuzzy +msgid "Numerical range" +msgstr "Periodo de tiempo" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Nombre de la pestaña" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +#, fuzzy +msgid "Time filter" +msgstr "Filtro de Fecha" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Periodo de tiempo" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabla" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Columna de Tiempo" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "La tabla %(table)s no fue encontrada en la base de datos %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Granularidad Temporal" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "Tabla Existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +#, fuzzy +msgid "Group By" +msgstr "Agrupar por" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Nombre Tabla" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Agrupar por" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Vista de Tabla" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +#, fuzzy +msgid "Pre-filter is required" +msgstr "El tipo es obligatorio" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -#, fuzzy -msgid "Table cache timeout" -msgstr "Tiempo de espera de caché" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Valor del Filtro" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -#, fuzzy -msgid "Table columns" -msgstr "Columna de Tiempo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Nombre es requerido" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 #, fuzzy -msgid "Table loading" -msgstr "Orden Descendente" - -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" -msgstr "" - -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Nombre de tabla indefinido" +msgid "Filter Type" +msgstr "Filtrar por usuario" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "La métrica '%(metric)s' no existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +#, fuzzy +msgid "Datasets do not contain a temporal column" +msgstr "El DataFrame debe incluir una columna temporal" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tablas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +#, fuzzy +msgid "Dataset is required" +msgstr "Fuentes de datos" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "Pestañas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset/tags/commands/exceptions.py:34 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 #, fuzzy -msgid "Tag could not be created." -msgstr "El conjunto de datos no pudo ser creado." +msgid "Pre-filter" +msgstr "Filtro de padre" -#: superset/tags/commands/exceptions.py:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 #, fuzzy -msgid "Tag could not be deleted." -msgstr "El conjunto de datos no pudo ser eliminado." - -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "" +msgid "No filter" +msgstr "Añadir filtro" -#: superset/tags/commands/exceptions.py:30 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 #, fuzzy -msgid "Tag parameters are invalid." -msgstr "Los parametros del conjunto de datos son inválidos." +msgid "Sort filter values" +msgstr "Es filtrable" -#: superset/tags/commands/exceptions.py:42 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 #, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "El conjunto de datos no pudo ser eliminado." +msgid "Sort type" +msgstr "Tipo de dato" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Orden Descendente" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 #, fuzzy -msgid "Tags" -msgstr "Estado" +msgid "Sort Metric" +msgstr "Métroca de orden" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -#, fuzzy -msgid "Target" -msgstr "Iniciar" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Métroca de orden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 #, fuzzy -msgid "Target Color" -msgstr "Iniciar en" +msgid "Single Value" +msgstr "Valores Nulos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -#, fuzzy -msgid "Target category" -msgstr "Iniciar en" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 #, fuzzy -msgid "Target value" -msgstr "Iniciar en" +msgid "Exact" +msgstr "Siguiente" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Nombre Plantilla" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Parametros de plantilla" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +#, fuzzy +msgid "Default Value" +msgstr "Valores Nulos" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +#, fuzzy +msgid "Default value is required" +msgstr "Fuentes de datos" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Probar Conexión" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Has eliminado este filtro." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Probar Conexión" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +#, fuzzy +msgid "Restore Filter" +msgstr "Filtro de Fecha" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 #, fuzzy -msgid "Text" -msgstr "Siguiente" +msgid "Column is required" +msgstr "Nombre es requerido" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +msgid "" +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"El css para dashboards de manera individual puede ser modificado aquí, o " -"en la vista del dashboard donde los cambios se ven de forma inmediata" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Aplicar a todos los páneles" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Aplicar a páneles específicos" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +#, fuzzy +msgid "All panels" +msgstr "Aplicar a todos los páneles" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "Las solicitudes de acceso parecen haber sido eliminadas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Continuar editando" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -#, fuzzy -msgid "The annotation has been saved" -msgstr "El dashboard ha sido guardado" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Sí, cancelar" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 #, fuzzy -msgid "The annotation has been updated" -msgstr "El Gráfico no ha podido guardarse" +msgid "There are unsaved changes." +msgstr "Tienes cambios no guardados." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" + +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset/common/query_context_processor.py:585 -#, fuzzy -msgid "The chart datasource does not exist" -msgstr "La base de datos no existe" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "Transparente" -#: superset/common/query_context_processor.py:583 +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 #, fuzzy -msgid "The chart does not exist" -msgstr "La base de datos no existe" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" -msgstr "" +msgid "White" +msgstr "Título" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "El esquema de colores para la representación gráfica." +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Todos los filtros" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." -msgstr "" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, fuzzy, python-format +msgid "Click to edit %s." +msgstr "Click para editar" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 #, fuzzy -msgid "The column header label" -msgstr "Ordenar columnas alfabéticamente" +msgid "Click to edit chart." +msgstr "Click para editar" -#: superset/errors.py:105 -#, fuzzy -msgid "The column was deleted or renamed in the database." -msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "Consulta en nueva pestaña" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "El dashboard ha sido guardado" - -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "La fuente de datos parece haber sido eliminada" - -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "Encabezado" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -"El tipo de datos que fue inferido por la base de datos. Puede ser " -"necesario ingresar un tipo manualmente para columnas definidas por " -"expresión. En la mayoría de los casos, los usuarios no deberían necesitar" -" alterar esto." -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, fuzzy, python-format +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"La base de datos %s está vinculada a %s gráficos que aparecen en %s " -"dashboards. ¿Estás seguro de que quieres continuar? Eliminar la base de " -"datos dejará inutilizables esos objetos." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset/sqllab/commands/estimate.py:58 +#: superset-frontend/src/explore/constants.ts:59 #, fuzzy -msgid "The database could not be found" -msgstr "La base de datos no existe" +msgid "Not equal to (≠)" +msgstr "!= (No es igual)" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset/errors.py:99 +#: superset-frontend/src/explore/constants.ts:62 #, fuzzy -msgid "The database is under an unusual load." -msgstr "Issue 1001 - La base de datos tiene una carga inusualmente elevada." - -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "" +msgid "Less or equal (<=)" +msgstr "<= (Menor o igual)" -#: superset/errors.py:100 +#: superset-frontend/src/explore/constants.ts:65 #, fuzzy -msgid "The database returned an unexpected error." -msgstr "Issue 1002 - La base de datos devolvió un error inesperado." +msgid "Greater than (>)" +msgstr "crear un " -#: superset/errors.py:144 +#: superset-frontend/src/explore/constants.ts:67 #, fuzzy -msgid "The database was deleted." -msgstr "La base de datos no han podido ser eliminada." +msgid "Greater or equal (>=)" +msgstr ">= (Mayor o igual)" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 +#: superset-frontend/src/explore/constants.ts:70 #, fuzzy -msgid "The database was not found." -msgstr "La base de datos no existe" - -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." -msgstr "" -"El conjunto de datos %s está vinculado a %s gráficos que aparecen en %s " -"tableros. ¿Está seguro de que desea continuar? Eliminar el conjunto de " -"datos romperá esos objetos." - -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "" +msgid "In" +msgstr "en" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." -msgstr "" +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "anotación" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 +#: superset-frontend/src/explore/constants.ts:74 #, fuzzy -msgid "The dataset linked to this chart may have been deleted." -msgstr "La fuente de datos parece haber sido eliminada" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "No se pudo cargar la fuente de datos" +msgid "Like (case insensitive)" +msgstr "Valor del filtro (sensible a mayúsculas/minúsculas)" -#: superset/errors.py:98 +#: superset-frontend/src/explore/constants.ts:78 #, fuzzy -msgid "The datasource is too large to query." -msgstr "Issue 1000 - La fuente de datos es demasiado grande para consultar." +msgid "Is not null" +msgstr "No nulo" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" +#: superset-frontend/src/explore/constants.ts:81 +#, fuzzy +msgid "Is null" +msgstr "No nulo" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "" +#: superset-frontend/src/explore/constants.ts:83 +#, fuzzy +msgid "use latest_partition template" +msgstr "última partición:" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 +#: superset-frontend/src/explore/constants.ts:87 #, fuzzy -msgid "The encoding format of the lines" -msgstr "Métrica con la cual ordenar los resultados." +msgid "Is false" +msgstr "Esitar Tabla" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 +#: superset-frontend/src/explore/constants.ts:89 #, fuzzy -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." -msgstr "" -"1. El objeto engine_params se descompone en la llamada a " -"sqlalchemy.create_engine, mientras que el objeto metadata_params se " -"descompone en la llamada a sqlalchemy.MetaData." - -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " -msgstr "" +msgid "TEMPORAL_RANGE" +msgstr "Es temporal" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Granularidad de Tiempo" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." -msgstr "" - -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "" - -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "" - -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "El id del gráfico activo" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Una o varias métricas para mostrar" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Color fijo" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Métrica Eje Derecho" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Elige una métrica para el eje derecho" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Esquema de Color Lineal" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Métrica de Color" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Uno o varios controles para pivotar como columnas" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 +#: superset-frontend/src/explore/controls.jsx:271 +#, fuzzy msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" +"La granularidad del tiempo para la visualización. Ten en cuenta que " +"puedes escribir y usar un lenguaje natural simple como en `10 seconds`, " +"`1 day` o `56 weeks`" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" -msgstr "" -"El número mínimo de períodos de desplazamiento necesarios para mostrar un" -" valor. Por ejemplo, si realizas una suma acumulada en 7 días, es posible" -" que quieras que tu \"Período mínimo\" sea 7, de modo que todos los " -"puntos de datos mostrados sean el total de 7 períodos. Esto ocultará el " -"\"incremento\" que tendrá lugar durante los primeros 7 períodos." - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" +"La granularidad del tiempo para la visualización. Esto aplica una " +"transformación de fecha para alterar tu columna de tiempo y define una " +"nueva granularidad de tiempo. Las opciones aquí se definen en función del" +" motor de base de datos en el código fuente de Superset." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +#: superset-frontend/src/explore/controls.jsx:383 +msgid "" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" +"Define la agrupación de entidades. Cada serie se muestra como un color " +"específico en el gráfico y tiene una leyenda" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Métrica asignada al eje [X]" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Métrica asignada al eje [Y]" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Tamaño burbuja" + +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "El número de segundos antes de caducar el caché." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Esquema de Color" -#: superset/errors.py:134 +#: superset-frontend/src/explore/actions/exploreActions.ts:89 #, fuzzy -msgid "The object does not exist in the given database." -msgstr "Nombre de la tabla que existe en la fuente de datos." +msgid "An error occurred while starring this chart" +msgstr "Ocurrió un error al cargar SQL" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "El gráfico [{}] ha sido guardado" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "" +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, fuzzy, python-format +msgid "Chart [%s] has been overwritten" +msgstr "El gráfico [{}] ha sido sobreescrito" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, fuzzy, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, fuzzy, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "El gráfico [{}] ha sido añadido al dashboard [{}]" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#, fuzzy +msgid "GROUP BY" +msgstr "Agrupar por" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#, fuzzy +msgid "NOT GROUPED BY" +msgstr "Uno o varios controles para agrupar por" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -"Las contraseñas para las bases de datos a continuación se necesitan para " -"importarlas juntas con los conjuntos de datos. Por favor, tenga en cuenta" -" que la sección \"Seguro Extra\" y \"Certificado\" de la configuración de" -" base de datos no están presentes en los archivos de exportación, y que " -"deben añadirse manualmente después de la importación si se necesitan." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -#, fuzzy +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"Las contraseñas para las bases de datos a continuación se necesitan para " -"importarlas juntas con los conjuntos de datos. Por favor, tenga en cuenta" -" que la sección \"Seguro Extra\" y \"Certificado\" de la configuración de" -" base de datos no están presentes en los archivos de exportación, y que " -"deben añadirse manualmente después de la importación si se necesitan." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "Patrón de la fecha/hora. Para cadenas usar " - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset/errors.py:109 -#, fuzzy -msgid "The port is closed." -msgstr "Informe fallido" - -#: superset/errors.py:142 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 #, fuzzy -msgid "The port number is invalid." -msgstr "Los parametros del Gráfico son invalidos" +msgid "Continue" +msgstr "Columna" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 #, fuzzy -msgid "The primary metric is used to define the arc segment sizes" -msgstr "Métrica utilizada para definir la serie superior." - -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "" +msgid "Clear form" +msgstr "Formato D3" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Personalizar" + +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "No se pudo cargar la consulta." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +#, fuzzy +msgid "Chart height" +msgstr "Tipo de dato" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." -msgstr "" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#, fuzzy +msgid "Chart width" +msgstr "Tipo de dato" -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "La consulta no arrojó resultados" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Guardar (Sobrescribir)" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "Guardar como..." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "El Gráfico ha cambiado" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "Nombre de la Fuente de Datos" + +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Añadir a un nuevo Dashboard" + +#: superset-frontend/src/explore/components/SaveModal.tsx:389 #, fuzzy -msgid "The report has been created" -msgstr "El dashboard ha sido guardado" +msgid "Select a dashboard" +msgstr "Dashboard Superset" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#, fuzzy +msgid "Select" +msgstr "Selección múltiple" + +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "Guardar Dashboard" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "crear un " -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#, fuzzy +msgid " a new one" +msgstr "Cambiado el" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "El Dashboard no pudo ser creado." -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "El Gráfico no ha podido crearse" -#: superset/errors.py:117 +#: superset-frontend/src/explore/components/SaveModal.tsx:432 #, fuzzy -msgid "The schema was deleted or renamed in the database." -msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos." +msgid "A new dashboard will be created." +msgstr "El Dashboard no pudo ser creado." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Guardar e ir al Dashboard" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Guardar gráfico" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +#, fuzzy +msgid "Formatted date" +msgstr "Claves de la tabla" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +#, fuzzy +msgid "Column Formatting" +msgstr "Información adicional" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +#, fuzzy +msgid "Collapse data panel" +msgstr "Contraer todo" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "Ver ejemplos" + +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset/errors.py:106 +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 #, fuzzy -msgid "The table was deleted or renamed in the database." -msgstr "Issue 1005 - La tabla fue eliminada o renombrada en la base de datos." +msgid "No results" +msgstr "Ver resultados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Buscar Métricas y Columnas" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "" -"La granularidad del tiempo para la visualización. Ten en cuenta que " -"puedes escribir y usar un lenguaje natural simple como en `10 seconds`, " -"`1 day` o `56 weeks`" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "crear un " -#: superset-frontend/src/explore/controls.jsx:271 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 #, fuzzy -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "" -"La granularidad del tiempo para la visualización. Ten en cuenta que " -"puedes escribir y usar un lenguaje natural simple como en `10 seconds`, " -"`1 day` o `56 weeks`" +msgid " to edit or add columns and metrics." +msgstr "%s columna(s) y métrca(s)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." -msgstr "" -"La granularidad del tiempo para la visualización. Esto aplica una " -"transformación de fecha para alterar tu columna de tiempo y define una " -"nueva granularidad de tiempo. Las opciones aquí se definen en función del" -" motor de base de datos en el código fuente de Superset." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" +msgstr "Mostrando %s de %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "El tipo de visualización a mostrar." - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "El usuario parece haber sido eliminado" - -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Añadir a un nuevo Dashboard" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, fuzzy, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "La métrica '%(metric)s' no existe" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "Añadir a un nuevo Dashboard" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#, fuzzy +msgid "Not available" +msgstr "descripción" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 #, fuzzy -msgid "The width of the lines" +msgid "Add the name of the chart" msgstr "El id del gráfico activo" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Hay alertas o informes asociados" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "Tipo de dato" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," -msgstr "Hay alertas o informes asociados: %s," +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -#, fuzzy -msgid "There are no charts added to this dashboard" -msgstr "No hay filtros en este dashboard" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "No hay filtros en este dashboard" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -#, fuzzy -msgid "There are unsaved changes." -msgstr "Tienes cambios no guardados." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "" -#: superset/errors.py:101 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 #, fuzzy -msgid "There was an error fetching dataset" -msgstr "" -"Lo sentimos, hubo un error al obtener la información de la base de datos:" -" %s" +msgid "Chart Source" +msgstr "Fuente de datos" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Nombre de la Fuente de Datos" + +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 #, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "" -"Lo sentimos, hubo un error al obtener la información de la base de datos:" -" %s" +msgid "Original" +msgstr "Origen" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 #, fuzzy -msgid "There was an error fetching tables" -msgstr "Hubo un error con tu solicitud" - -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, fuzzy, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" +msgid "Pivoted" +msgstr "Editado" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "Hubo un error al obtener tu actividad reciente:" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "No tienes permiso para aprobar esta solicitud." -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "Hubo un error con tu solicitud" +msgid "Chart properties updated" +msgstr "Editar propiedades de gráfico" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 #, fuzzy -msgid "There was an error loading the dataset metadata" -msgstr "Hubo un error con tu solicitud" +msgid "Edit Chart Properties" +msgstr "Editar propiedades de gráfico" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -#, fuzzy -msgid "There was an error loading the schemas" -msgstr "Hubo un error con tu solicitud" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -#, fuzzy -msgid "There was an error loading the tables" -msgstr "Hubo un error con tu solicitud" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." +msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, fuzzy, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "Hubo un error con tu solicitud" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Configuración" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Hubo un problema al eliminar %s: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Hubo un problema al eliminar %s: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Hubo un error al eliminar el %s seleccionado: %s" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Límite alcanzado" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "Hubo un problema al eliminar las anotaciones seleccionadas: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#, fuzzy +msgid "Create chart" +msgstr "Compartir gráfico" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "Hubo un problema al eliminar los gráficos seleccionados: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#, fuzzy +msgid "Update chart" +msgstr "Guardar gráfico" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "Hubo un problema al eliminar los dashboards seleccionados: " +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Configuración de latitud/longitud inválida." -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "latitud/longitud reversos" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Hubo un problema al eliminar las capas seleccionadas: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Columnas de longitus y latitud" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "Ocurrió un problema al eliminar las consultas seleccionadas: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "una sola columna con longitud y latitud delimitadas" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "Hubo un problema al eliminar: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -#, fuzzy -msgid "There was an issue duplicating the dataset." -msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "caja de texto" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, fuzzy, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "en modal" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Lo siento, ha ocurrido un error" -#: superset-frontend/src/reports/actions/reports.js:68 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 #, fuzzy -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "Hubo un problema al eliminar los dashboards seleccionados: " +msgid "Save as Dataset" +msgstr "Selecciona una base de datos" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Ejecutar en Laboratiorio SQL" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Hubo un problema al eliminar: %s" +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" +msgstr "Fallo al verificar las opciones de selección: %s" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, fuzzy, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Hubo un problema al eliminar los dashboards seleccionados: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +#, fuzzy +msgid "No annotation layers" +msgstr "Capas de Anotación" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, fuzzy, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Hubo un error al obtener tu actividad reciente:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" +msgstr "Capas de Anotación" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, fuzzy, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Ocurrió un problema al eliminar las consultas seleccionadas: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Capa de Anotación" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "Ocurrió un problema al previsualizar la consulta seleccionada %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#, fuzzy +msgid "Select the Annotation Layer you would like to use." +msgstr "Capas de Anotación" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 #, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Hubo un problema al previsualizar la consulta seleccionada. %s" +msgid "" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" +msgstr "" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Hay un bucle en tu Sankey, por favor proporciona un árbol. Aquí hay un " -"enlace defectuoso: {}" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "Estas son las tablas a las que se aplicará este filtro." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +#, fuzzy +msgid "Annotation layer value" +msgstr "Nombre de la capa de anotación" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "Estos filtros aplican para los valores disponibles en la caja de selección" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +#, fuzzy +msgid "Bad formula." +msgstr "Formato Fecha/Hora" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" -"Estos parámetros se generan dinámicamente al hacer clic en el botón " -"Guardar o sobrescribir en la vista de exploración. Este objeto JSON se " -"expone aquí como referencia y para usuarios avanzados que quieran " -"modificar parámetros específicos." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +#, fuzzy +msgid "Annotation Slice Configuration" +msgstr "Configuración de filtros" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -"Este objeto JSON se genera dinámicamente al hacer clic en el botón " -"Guardar o sobrescribir en la vista del Dashboard. Se expone aquí como " -"referencia y para usuarios avanzados que quieran modificar parámetros " -"específicos." - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." -msgstr "Esta acción eliminará permanentemente %s." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "Esta acción eliminará permanentemente la capa." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "Capas de Anotación" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "Esta acción eliminará la consulta guardada de forma permanente" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +#, fuzzy +msgid "Interval start column" +msgstr "Filtrar por estado" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "Esta acción eliminará permanentemente la plantilla." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +#, fuzzy +msgid "Event time column" +msgstr "Columna de Tiempo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +#, fuzzy +msgid "Annotation layer interval end" +msgstr "Nombre de la capa de anotación" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +#, fuzzy +msgid "Interval End column" +msgstr "Filtrar por estado" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "Capas de Anotación" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +#, fuzzy +msgid "Title Column" +msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +#, fuzzy +msgid "Annotation layer description columns" +msgstr "Capas de Anotación" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +#, fuzzy +msgid "Description Columns" +msgstr "descripción" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +#, fuzzy +msgid "Override time range" +msgstr "Editar rango de tiempo" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" "This controls whether the \"time_range\" field from the current\n" " view should be passed down to the chart containing the " "annotation data." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "Mostrar origen de tiempo de Druid" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" "This controls whether the time grain field from the current\n" " view should be passed down to the chart containing the " "annotation data." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, fuzzy, python-format +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -"Este Dashboard está actualmente fuerza refrescar; la siguiente fuerza " -"refrescar será en %s." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Configuración de visualización" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +#, fuzzy +msgid "Annotation layer stroke" +msgstr "Capas de Anotación" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Estilo" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#, fuzzy +msgid "Dashed" +msgstr "en cache" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -"Este dashboard no es público, no serávisible en la lista de dashboards, " -"Haz click aqui para publicarlo." -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 #, fuzzy -msgid "This dashboard is now hidden" -msgstr "Cambiar este Dashboard está prohibido" +msgid "Dotted" +msgstr "Editado" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 #, fuzzy -msgid "This dashboard is now published" -msgstr "Cambiar este Dashboard está prohibido" +msgid "Annotation layer opacity" +msgstr "Capas de Anotación" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "Este dashboard es público, Haz click para hacerlo borrador" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Color" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Este Dashboard se guardó con éxito." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +#, fuzzy +msgid "Hide Line" +msgstr "Ocultar capa" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +#, fuzzy +msgid "Hides the Line for the time series" +msgstr "Métrica con la cual ordenar los resultados." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Configuración" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Configurar los elementos básicos de la capa de anotaciones." -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Oblugatorio" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Esto define el elemento a trazar en el gráfico." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Ocultar capa" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 #, fuzzy -msgid "This defines the level of the hierarchy" -msgstr "Esto define el elemento a trazar en el gráfico." +msgid "Show label" +msgstr "Mostrar Tabla" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -"Este campo actúa como una vista de Superset, lo que significa que " -"Superset ejecutará una consulta en esta cadena como una subconsulta." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Capas de Anotación" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Capas de Anotación" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +#, fuzzy +msgid "Annotation source type" +msgstr "Capas de Anotación" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +#, fuzzy +msgid "Choose the source of your annotations" +msgstr "Configurar los elementos básicos de la capa de anotaciones." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "anotación" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" -msgstr "" -"Este objeto JSON describe la posición de los widgets en el panel de " -"control. Se genera dinámicamente al ajustar el tamaño y las posiciones de" -" los widgets mediante la función de arrastrar y soltar en la vista del " -"tablero" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Eliminar" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Este componente markdown tiene un error." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +#, fuzzy +msgid "Time series" +msgstr "Columna de Tiempo" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Capas de Anotación" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Capas de Anotación" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +#, fuzzy +msgid "Empty collection" +msgstr "Probar Conexión" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#, fuzzy +msgid "Add an item" +msgstr "Añadir elemento" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +msgid "" +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#, fuzzy +msgid "Dashboard scheme" +msgstr "[nombre del Dashboard]" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +#, fuzzy +msgid "Select color scheme" +msgstr "Esquema de Color Lineal" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#, fuzzy +msgid "Select scheme" +msgstr "Selecciona un esquema (%s)" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +#, fuzzy +msgid "Show less columns" +msgstr "Mostrar columna de tiempo SQL" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +#, fuzzy +msgid "Show all columns" +msgstr "Mostrar Columna" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -"Esta sección contiene opciones que permiten el procesamiento analítico " -"avanzado de los resultados de la consulta" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +#, fuzzy +msgid "Min Width" +msgstr "Grosor de línea" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -#, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "Esta visualización no está soportada." - -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Esta visualización no está soportada." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 #, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" -msgstr[1] "" +msgid "Truncate Cells" +msgstr "Truncar el eje Y" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Jueves" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Tiempo" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 #, fuzzy -msgid "Time Column" -msgstr "Columna de Tiempo" +msgid "Display" +msgstr "Valor del Filtro" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 #, fuzzy -msgid "Time Comparison" -msgstr "Columna de Tiempo" +msgid "Number formatting" +msgstr "Formato D3" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 #, fuzzy -msgid "Time Format" -msgstr "Formato Fecha/Hora" +msgid "Edit formatter" +msgstr "Formato D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -#, fuzzy -msgid "Time Grain" -msgstr "Granularidad Temporal" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -#, fuzzy -msgid "Time Granularity" -msgstr "Granularidad de Tiempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -#, fuzzy -msgid "Time Lag" -msgstr "Periodo de tiempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "alerta" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 #, fuzzy -msgid "Time Range" -msgstr "Periodo de tiempo" +msgid "error" +msgstr "%s Error" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 #, fuzzy -msgid "Time Ratio" -msgstr "Granularidad Temporal" +msgid "success dark" +msgstr "Éxito" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 #, fuzzy -msgid "Time Series" -msgstr "Columna de Tiempo" - -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Serie Temporal - Gráfico de Barras" - -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Serie Temporal - Gráfico de líneas de doble eje" +msgid "alert dark" +msgstr "alerta" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Serie Temporal - Gráfico de Líneas" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Serie temportal - Gráfico de múltiples líneas" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Serie Temporal - Gráfico de Nightingale Rose" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Serie Temporal - Prueba-T Emparejada" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Requerido" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Serie Temporal - Cambio Porcentual" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +#, fuzzy +msgid "Operator" +msgstr "%s operador(es)" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "Serie Temporal - Pivote de periodo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +#, fuzzy +msgid "Left value" +msgstr "Valores Nulos" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Serie Temporal - Apiladas" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 #, fuzzy -msgid "Time Series Options" -msgstr "Columna de Tiempo" +msgid "Target value" +msgstr "Iniciar en" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy -msgid "Time Shift" -msgstr "Desplazamiento de tiempo" - -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "Vista de Tabla Temporal" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" +msgid "Select column" msgstr "Columna de Tiempo" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "" - -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +#, fuzzy +msgid "Color: " +msgstr "Color" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" -msgstr "" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +#, fuzzy +msgid "Upper threshold must be greater than lower threshold" +msgstr "`row_limit` debe ser mayor o igual a 1" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Columna de Tiempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "Desconectado" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -#, fuzzy -msgid "Time filter" -msgstr "Filtro de Fecha" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 #, fuzzy -msgid "Time format" -msgstr "Formato Fecha/Hora" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Granularidad Temporal" +msgid "The width of the Isoline in pixels" +msgstr "El id del gráfico activo" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 #, fuzzy -msgid "Time grain filter plugin" -msgstr "Granularidad Temporal" +msgid "The color of the isoline" +msgstr "Métrica con la cual ordenar los resultados." -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Granularidad Temporal" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +#, fuzzy +msgid "Isoband" +msgstr "y" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" -msgstr "Granularidad de Tiempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "Tiempo en segundos" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -#, fuzzy -msgid "Time lag" -msgstr "Periodo de tiempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Periodo de tiempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 #, fuzzy -msgid "Time ratio" -msgstr "Granularidad Temporal" +msgid "The color of the isoband" +msgstr "Métrica con la cual ordenar los resultados." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Atributos de formulario relacionados con el tiempo" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" +msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -#, fuzzy -msgid "Time series" -msgstr "Columna de Tiempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Columna de Tiempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Desplazamiento de tiempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -#, fuzzy -msgid "Time-series Area Chart" -msgstr "Serie Temporal - Gráfico de Barras" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Editar Base de Datos" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Ejecutar en Laboratiorio SQL" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Previsualización de Datos" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Time-series Bar Chart" -msgstr "Serie Temporal - Gráfico de Barras" +msgid "Save as dataset" +msgstr "Selecciona una base de datos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 #, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "Serie Temporal - Gráfico de Barras" +msgid "Missing URL parameters" +msgstr "Editar parámetros de la plantilla" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -"Los gráficos de barras en las series de tiempo se utilizan para mostrar " -"los cambios en las métricas con el paso del tiempo, en forma de barras." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 #, fuzzy -msgid "Time-series Chart" -msgstr "Tabla de serie temporal" +msgid "The dataset linked to this chart may have been deleted." +msgstr "La fuente de datos parece haber sido eliminada" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -#, fuzzy -msgid "Time-series Line Chart" -msgstr "Serie Temporal - Gráfico de Líneas" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "TIPO DE RANGO" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -#, fuzzy -msgid "Time-series Percent Change" -msgstr "Serie Temporal - Cambio Porcentual" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Rango de tiempo actual" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -#, fuzzy -msgid "Time-series Period Pivot" -msgstr "Serie Temporal - Pivote de periodo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "APPLICAR" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Editar rango de tiempo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 #, fuzzy -msgid "Time-series Scatter Plot" -msgstr "Gráfico de Dispersión de Puntos (Series de Tiempo)" +msgid "Configure Advanced Time Range " +msgstr "Configurar rango de tiempo avanzado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" msgstr "" -"Gráfico de Dispersión de Puntos (en Series de tiempo), muestra en el eje " -"horizontal el tiempo en unidades lineales, conectando los puntos en " -"orden. Muestra una relación estadística entre dos variables-" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -#, fuzzy -msgid "Time-series Smooth Line" -msgstr "Tabla de serie temporal Suavizada" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 #, fuzzy -msgid "Time-series Stepped Line" -msgstr "Tabla de serie temporal por pasos" +msgid "End date excluded from time range" +msgstr "Configurar rango de tiempo personalizado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." -msgstr "" -"Gráfico de Series por tiempo en Pasos (conocida como Tabla de Pasos) es " -"una variación del gráfico de Linea, en la cual la linea que forma la " -"serie de tiempo forma una serie de 'pasos' entre los puntos de intervalos" -" de datos. Una tabla de paso es útil cuando se quieren mostrar los " -"cambios ocurridos en intervalos regulares." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Configurar Ranfo de Tiempo: Anteriores..." -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Tabla de serie temporal" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Configurar Rango de Tiempo: Últimos.." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." -msgstr "" -"El gráfico de linea (en series de tiempo) es un gráfico de linea " -"utilizado para visualizar medidas tomadas en intervalos de tiempo " -"regulares. El gráfico de linea es un tipo de gráfico que muestra " -"información de una serie de puntos de datos conectados por segmentos de " -"lineas rectas. Es un tipo básico de gráfico en la estadística." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Configurar rango de tiempo personalizado" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Error de timeout" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Cantidad relativa" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 #, fuzzy -msgid "Timestamp format" -msgstr "Formato de fecha/hora inválido" +msgid "Relative period" +msgstr "Periodo de gracia" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Desplazamiento de zona horaria (en horas) para esta fuente de datos" - -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -#, fuzzy -msgid "Timezone selector" -msgstr "Probar Conexión" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -#, fuzzy -msgid "Tiny" -msgstr "en" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Fecha/Hora" -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:186 -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:207 -#: 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 -msgid "Title" -msgstr "Título" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -#, fuzzy -msgid "Title Column" -msgstr "Columna de Tiempo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 #, fuzzy -msgid "Title is required" -msgstr "El título es obligatorio" - -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Título o Slug" +msgid "Example" +msgstr "Ver ejemplos" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Para filtrar por una métrica, usa la pestaña SQL Personalizado" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Para obtener una URL legible para tu panel de control" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "" +"Trunca la fecha especificada a la precisión establecida en el formato de " +"fecha" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -#, fuzzy -msgid "Tools" -msgstr "Roles" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -#, fuzzy -msgid "Tooltip sort by metric" -msgstr "Filtrar por estado" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Anterior" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 #, fuzzy -msgid "Tooltip time format" -msgstr "Formato Fecha/Hora" +msgid "Custom" +msgstr "Personalizar" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 #, fuzzy -msgid "Top" -msgstr "Detener" +msgid "last day" +msgstr "Sábado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 #, fuzzy -msgid "Top left" -msgstr "alerta" +msgid "last week" +msgstr "Semana anterior" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 #, fuzzy -msgid "Top right" -msgstr "Altura" +msgid "last month" +msgstr "mes" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" msgstr "" -#: superset/viz.py:1047 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 #, fuzzy -msgid "Total" -msgstr "Totales" +msgid "last year" +msgstr "Cluster" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "Valores Nulos" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 #, fuzzy, python-format -msgid "Total: %s" -msgstr "Totales" +msgid "Seconds %s" +msgstr "30 segundos" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "Totales" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, fuzzy, python-format +msgid "Minutes %s" +msgstr "minuto" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "Seguir trabajo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, fuzzy, python-format +msgid "Hours %s" +msgstr "hora" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" -msgstr "Transformable" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, fuzzy, python-format +msgid "Days %s" +msgstr "día" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "Transparente" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, fuzzy, python-format +msgid "Weeks %s" +msgstr "semana" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" -msgstr "Transponer pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, fuzzy, python-format +msgid "Months %s" +msgstr "mes" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -#, fuzzy -msgid "Tree Chart" -msgstr "Compartir gráfico" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, fuzzy, python-format +msgid "Quarters %s" +msgstr "Propietario del Gráfico: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, fuzzy, python-format +msgid "Years %s" +msgstr "año" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 #, fuzzy -msgid "Tree orientation" -msgstr "Eliminar anotación" +msgid "Relative Date/Time" +msgstr "Cantidad relativa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Mapa de Árbol" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +#, fuzzy +msgid "Now" +msgstr "Hilera" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 #, fuzzy -msgid "Trend" -msgstr "Modificado" +msgid "Saved expressions" +msgstr "Expresión SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "Triángulo" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Guardar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "Disparar Alerta si..." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" +msgstr "%s columnas(s)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 #, fuzzy -msgid "Truncate Axis" -msgstr "Truncar el eje Y" +msgid "No temporal columns found" +msgstr "Filtros Incompatibles (%d)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 #, fuzzy -msgid "Truncate Cells" -msgstr "Truncar el eje Y" +msgid "No saved expressions found" +msgstr "Expresión SQL" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -#, fuzzy -msgid "Truncate Metric" -msgstr "Métroca de orden" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" -msgstr "Truncar el eje Y" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -"Truncar el eje Y. Puede ser sobreescrito al especificar un límite máximo " -"o mínimo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#, fuzzy +msgid " to add calculated columns" +msgstr "Columnas calculadas" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -"Trunca la fecha especificada a la precisión establecida en el formato de " -"fecha" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "SQL Personalizado" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#, fuzzy +msgid "My column" +msgstr "Columna" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -"Intente aplicar filtros diferentes o asegúrese de que la fuente de datos " -"tiene información" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Martes" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +#, fuzzy +msgid "Click to edit label" +msgstr "Click para editar" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 #, fuzzy -msgid "Tukey" -msgstr "consulta" +msgid "Drop a column/metric here or click" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Tipo" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " +msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" +msgstr "%s opción(es)" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." +msgstr "" +"No se encontró la columna especificada. Para filtrar por una métrica, " +"intenta la pestaña SQL Personalizado" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Para filtrar por una métrica, usa la pestaña SQL Personalizado" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "Type \"%s\" to confirm" -msgstr "Teclea \"%s\" para confirmar" +msgid "%s operator(s)" +msgstr "%s operador(es)" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 #, fuzzy -msgid "Type a value" -msgstr "Introduce un valor" +msgid "Select operator" +msgstr "%s operador(es)" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 msgid "Type a value here" msgstr "Introduce un valor" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "El tipo es obligatorio" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Valor del filtro (sensible a mayúsculas/minúsculas)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#, fuzzy +msgid "Failed to retrieve advanced type" +msgstr "Falla al recuperar los resultados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "elige WHERE o HAVING..." -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Escribe o Seleciona [%s]" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Filtrar por estado" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Filtrar por estado" + +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy -msgid "UI Configuration" -msgstr "Configuración de filtros" +msgid "metric" +msgstr "Métrica" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +#, fuzzy +msgid "Fixed" +msgstr "Modificado" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 #, fuzzy -msgid "URL Parameters" -msgstr "Parámetros de URL" +msgid "Based on a metric" +msgstr "Consultas Guardadas" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "Parámetros de URL" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Métrica" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "nombre para URL" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Añadir Métrica" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "No se pueden añadir nueva pestaña al back-end. Contacte al administrador." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +#, fuzzy +msgid "Select aggregate options" +msgstr "%s aggregación(es)" -#: superset/db_engine_specs/presto.py:704 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "No se puede conectar al catálogo \"%(catalog_name)s\"." +msgid "%s aggregates(s)" +msgstr "%s aggregación(es)" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +#, fuzzy +msgid "Select saved metrics" +msgstr "%s métrica(s) guardada(s)" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "No se puede conectar a la Base de Datos: \"%(database)s\\ " +msgid "%s saved metric(s)" +msgstr "%s métrica(s) guardada(s)" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Consultas Guardadas" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#, fuzzy +msgid "No saved metrics found" +msgstr "%s métrica(s) guardada(s)" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "Añadir Métrica" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "Columna" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "agregación" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/utils/date_parser.py:393 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 #, fuzzy, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "No se pudo encontrar el día festivo: [{}]" +msgid "Error while fetching data: %s" +msgstr "Error obteniendo datos" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Columna de Tiempo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#, fuzzy +msgid "Actual value" +msgstr "Valores Nulos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#, fuzzy +msgid "The column header label" +msgstr "Ordenar columnas alfabéticamente" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Anchura" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Indefinido" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Ventana no definida para la operación de movimiento" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 #, fuzzy -msgid "Undo the action" -msgstr "Probar Conexión" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "¿Deshacer?" - -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Error inesperado" +msgid "Time lag" +msgstr "Periodo de tiempo" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -"Se ha producido un error inesperado, por favor verifique los registros " -"para más detalles" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 #, fuzzy -msgid "Unexpected error: " -msgstr "Error inesperado: " - -#: superset/views/api.py:108 -#, fuzzy, python-format -msgid "Unexpected time range: %s" -msgstr "Error inesperado: " +msgid "Time Lag" +msgstr "Periodo de tiempo" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 #, fuzzy -msgid "Unknown" -msgstr "Error desconocido" - -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Host desconocido de MySQL: \"%(hostname)s\"" - -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "Error de Presto desconocido" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" -msgstr "EStado desconocido" - -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Columna desconocida utilizada al ordenar: %(col)s%" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "Valor desconocido" +msgid "Time ratio" +msgstr "Granularidad Temporal" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -#, fuzzy -msgid "Unknown type" -msgstr "Valor desconocido" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 #, fuzzy -msgid "Unknown value" -msgstr "Valor desconocido" +msgid "Time Ratio" +msgstr "Granularidad Temporal" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Tipo de retorno inseguro para la función %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Valor de plantilla inseguro para la clave %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Operación de post-procesamiento no soportada: %(operation)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +#, fuzzy +msgid "Manually set min/max values for the y-axis." +msgstr "Usar escala logarítimica para el Eje Y" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Valor de retorno no soportado para el método %(name)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Valor de plantilla no soportado para la clave %(key)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Granularidad temporal no soportada: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +#, fuzzy +msgid "Optional d3 number format string" +msgstr "Información adicional" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 #, fuzzy -msgid "Untitled Dataset" -msgstr "Editar Base de Datos" +msgid "Number format string" +msgstr "Formato D3" -#: superset/views/sql_lab/views.py:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 #, fuzzy -msgid "Untitled Query" -msgstr "Consulta sin título" +msgid "Optional d3 date format string" +msgstr "Información adicional" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Consulta sin título" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +#, fuzzy +msgid "Date format string" +msgstr "Formato Fecha/Hora" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "Actualizar" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +#, fuzzy +msgid "Column Configuration" +msgstr "Configuración" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 #, fuzzy -msgid "Update chart" -msgstr "Guardar gráfico" +msgid "Select Viz Type" +msgstr "Selecciona un tipo de visualización" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "La actualización del gráfico ha sido detenida" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" +msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Subir" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 #, fuzzy -msgid "Upload CSV" -msgstr "Descargar como imagen" +msgid "Search all charts" +msgstr "Todos los gráficos" -#: superset-frontend/src/features/home/RightMenu.tsx:189 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 #, fuzzy -msgid "Upload CSV to database" -msgstr "Eliminar base de datos" +msgid "No description available." +msgstr "descripción" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -#, fuzzy -msgid "Upload Credentials" -msgstr "Subir Credenciales" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Ver ejemplos" -#: superset/databases/filters.py:66 -#, fuzzy -msgid "Upload Enabled" -msgstr "Subir Excel" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Esta visualización no está soportada." -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 #, fuzzy -msgid "Upload Excel file" -msgstr "Subir Excel" +msgid "View all charts" +msgstr "Todos los gráficos" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Selecciona un tipo de visualización" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "Subir un archivo JSON" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "No se han encontrado resultados" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 #, fuzzy -msgid "Upload columnar file" -msgstr "Columna" +msgid "Superset Chart" +msgstr "Gráfico Superset" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -#, fuzzy -msgid "Upload columnar file to database" -msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Nuevo gráfico" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -#, fuzzy -msgid "Upload file to database" -msgstr "Editar Base de Datos" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Editar propiedades de gráfico" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 #, fuzzy -msgid "Usage" -msgstr "Administrar" +msgid "Dashboards added to" +msgstr "Dashboards" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "Consulta en nueva pestaña" - -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -#, fuzzy -msgid "Use Area Proportions" -msgstr "Propiedades del Dashboard" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "" -#: superset/views/database/forms.py:472 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 #, fuzzy -msgid "Use Columns" -msgstr "%s columnas(s)" +msgid "Export to .JSON" +msgstr "Exportar a YAML" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "Usar escala logarítimica" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "Usar escala logarítimica para el Eje X" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Ejecutar en Laboratiorio SQL" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "Usar escala logarítimica para el Eje Y" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Código" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "Usar una conexión encriptada a la base de datos" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Tipo de Markup" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Elige tu idioma favorito de markup" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Pon tu código aquí" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "Usar editor de datasource legado" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Parámetros de URL" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Parámetros extra para usar en consultas con plantillas jinja" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "Usar un único valor" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Anotaciones y capas" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" -msgstr "Usar la opción de Analítica Avanzada debajo " +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Capas de Anotación" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -#, fuzzy -msgid "Use the edit button to change this field" -msgstr "Usa el botón 'editar' para cambiar este campo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (Menor que)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (mayor que)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (Menor o igual)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "Use esto para definir un color estático para todos los círculos" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (Mayor o igual)" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (Igual)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (No es igual)" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "No nulo" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 días" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Usuario" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 días" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Roles de Usuario" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Agregar método de notificación" -#: superset/errors.py:118 -#, fuzzy -msgid "User doesn't have the proper permissions." -msgstr "No tienes los permisos para " +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Agregar método de entrega" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Agregar" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy -msgid "User must select a value before applying the filter" -msgstr "El usuario debe elegir un valor para este filtro" +msgid "Edit Report" +msgstr "informe" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "El usuario debe elegir un valor para este filtro" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#, fuzzy +msgid "Edit Alert" +msgstr "Esitar Tabla" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "Ver consulta" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#, fuzzy +msgid "Add Report" +msgstr "informe" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 #, fuzzy -msgid "Username" -msgstr "Nombre de la consulta" +msgid "Add Alert" +msgstr "alerta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Nombre de informe" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Nombre de la alerta" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Activo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Valor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Probar Conexión" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "Consulta SQL" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Disparar Alerta si..." + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 #, fuzzy -msgid "Value Format" -msgstr "Formato de correo electrónico" +msgid "Condition" +msgstr "Probar Conexión" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Programar informe" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Probar Conexión" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -#, fuzzy -msgid "Value format" -msgstr "Formato de correo electrónico" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Configuracion" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -#, fuzzy -msgid "Value is required" -msgstr "Nombre es requerido" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Retención de registros" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -#, fuzzy -msgid "Value must be greater than 0" -msgstr "`row_offset` debe ser mayor o igual a 0" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Tiempo de espera" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Tiempo en segundos" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 #, fuzzy -msgid "Values dependent on" -msgstr "Orden descendente" +msgid "seconds" +msgstr "30 segundos" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Periodo de gracia" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Contenido del mensaje" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Nombre detallado" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +#, fuzzy +msgid "Ignore cache when generating report" msgstr "" +"La ejecución del informe programado falló al generar una captura de " +"pantalla." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#, fuzzy -msgid "View" -msgstr "Previsualizar" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Método de notificación" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "informe" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "Editar Base de Datos" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "Última actualización %s" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 #, fuzzy -msgid "View all charts" -msgstr "Todos los gráficos" +msgid "CRON Schedule" +msgstr "Programar informe" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -#, fuzzy -msgid "View as table" -msgstr "Ver ejemplos" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "Expresión CRON" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Ejecutar en Laboratiorio SQL" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Reporte enviado" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Ver claves e índices (%s)" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Alerta disparada, notificación enviada" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Ver consulta" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Envío de informe" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Visto" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Ejecución de alerta" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, fuzzy, python-format -msgid "Viewed %s" -msgstr "Visto" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Informe fallido" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -#, fuzzy -msgid "Viewport" -msgstr "informe" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Alerta fallida" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Nada disparado" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Alerta disparada, en periodo de gracia" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Conjunto de datos virtual" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +#, fuzzy +msgid "Delivery method" +msgstr "Agregar método de entrega" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +#, fuzzy +msgid "Select Delivery Method" +msgstr "Agregar método de entrega" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Los destinatarios están separados por \",\" o \";\"" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 #, fuzzy -msgid "Virtual dataset query cannot be empty" -msgstr "La consulta de conjunto virtual debe ser de solo lectura" - -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "La consulta de conjunto virtual no puede consistir de varias consultas" +msgid "Queries" +msgstr "Series" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "La consulta de conjunto virtual debe ser de solo lectura" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Tipo de Visualización" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "Capas de Anotación" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Tipo de Visualización" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#, fuzzy +msgid "Annotation template updated" +msgstr "El Gráfico no ha podido guardarse" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#, fuzzy +msgid "Annotation template created" +msgstr "El Gráfico no ha podido crearse" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Editar propiedades de la capa de anotación" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Nombre de la capa de anotación" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Descripción (se puede ver en la lista)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "anotación" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#, fuzzy +msgid "The annotation has been updated" +msgstr "El Gráfico no ha podido guardarse" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#, fuzzy +msgid "The annotation has been saved" +msgstr "El dashboard ha sido guardado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Editar anotación" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Añadir anotación" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "fecha" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Información adicional" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Confirme" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "onfirma que quieres eliminar" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, fuzzy, python-format +msgid "Modified %s" +msgstr "Última modificación en %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Falta una fuente de datos" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "Tipo" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Editar propiedades de plantilla CSS" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "MIÉ" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Cargar una plantilla CSS" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 #, fuzzy -msgid "Warning" -msgstr "Mensaje de Aviso" - -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Mensaje de Aviso" +msgid "published" +msgstr "No publicado" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Mensaje de Aviso" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +#, fuzzy +msgid "draft" +msgstr "Borrador" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -#, fuzzy -msgid "Was unable to check your query" -msgstr "Etiqueta para tu consulta" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Miércoles" - -#: superset/db_engine_specs/base.py:108 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 #, fuzzy -msgid "Week" -msgstr "semana" +msgid "" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." +msgstr "Estimar el costo antes de ejecutar una consulta" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +msgid "" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 +msgid "" +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -#, fuzzy -msgid "Weekly Report" -msgstr "informe" - -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, fuzzy, python-format -msgid "Weeks %s" -msgstr "semana" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Tiempo de espera de caché" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 #, fuzzy -msgid "Weight" -msgstr "Altura" +msgid "Enter duration in seconds" +msgstr "Tiempo en segundos" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -"Estamos teniendo problemas cargando estos resultados. Las consultas se " -"establecen a tiempo de espera después de %s segundo." -msgstr[1] "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -"Estamos teniendo problemas cargando esta visualización. Las consultas se " -"establecen a tiempo de espera después de %s segundo." -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +#, fuzzy +msgid "Schema cache timeout" +msgstr "Tiempo de espera de caché" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -#: superset/views/database/forms.py:175 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 #, fuzzy -msgid "What should happen if the table already exists" -msgstr "La fuente de datos %(name)s ya existe" +msgid "Table cache timeout" +msgstr "Tiempo de espera de caché" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Ejecución asíncrona de consultas" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -"Cuando se permite la opción CREATE TABLE AS en el laboratorio SQL, esta " -"opción hace que la tabla se cree en este esquema" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +#, fuzzy +msgid "Add extra connection information." +msgstr "Información Basica" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Seguridad" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +#, fuzzy +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" +"Esto se utiliza para proporcionar información de conexión para sistemas " +"como Hive, Presto y BigQuery, que no conforman con la sintaxis normal de " +"usuario:contraseña utilizada por SQLAlchemy." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" +"Contenido opcional CA_BUNDLE para validar las solicitudes HTTPS. Solo " +"disponible en algunos motores de base de datos." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +#, fuzzy +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "Suplantar Usuario Conectado (Presto, Trino, Drill & Hive)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +#, fuzzy msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" +"Si Presto, todas las consultas en SQL Lab se ejecutarán como el usuario " +"conectado actualmente que debe tener permiso para ejecutarlas. Si Hive y " +"hive.server2.enable.doAs están habilitados, se ejecutarán las consultas " +"como cuenta de servicio, pero suplantará al usuario conectado actualmente" +" vía la propiedad de usuario de hive.server2.proxy." -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "Cuando usas 'Group By', estás limitado a una sola métrica" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +#, fuzzy +msgid "Allow file uploads to database" +msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +#, fuzzy +msgid "Schemas allowed for File upload" msgstr "" +"Si se selecciona, por favor, establezca los esquemas permitidos en " +"Adicional" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +#, fuzzy +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" +"Una lista separada por comas de columnas que deben ser parseadas como " +"fechas." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "Información adicional" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +#, fuzzy +msgid "Metadata Parameters" +msgstr "Parametros de plantilla" -#: superset/connectors/sqla/views.py:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -"Si esta columna está expuesta en la sección `Filtros` de la vista de " -"exploración." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +#, fuzzy +msgid "Engine Parameters" +msgstr "Parametros de plantilla" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +#, fuzzy msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" +"1. El objeto engine_params se descompone en la llamada a " +"sqlalchemy.create_engine, mientras que el objeto metadata_params se " +"descompone en la llamada a sqlalchemy.MetaData." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +#, fuzzy +msgid "Enter Primary Credentials" +msgstr "Subir Credenciales" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "El Gráfico no ha podido crearse" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#, fuzzy +msgid "Select a database to connect" +msgstr "Se ha detenido una conexión insegura a la base de datos" + +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +#, fuzzy +msgid "e.g. Analytics" +msgstr "Analíticos Avanzadas" + +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#, fuzzy +msgid "Login with" +msgstr "Grosor de línea" + +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#, fuzzy +msgid "SSH Password" +msgstr "Contraseña de Broker" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 #, fuzzy -msgid "Whether to display the stroke" -msgstr "Métrica con la cual ordenar los resultados." +msgid "Private Key Password" +msgstr "Contraseña de Broker" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +#, fuzzy +msgid "Display Name" +msgstr "Valor del Filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +#, fuzzy +msgid "Name your database" +msgstr "Nombre de tu fuente de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -#, fuzzy -msgid "Whether to fill the objects" -msgstr "Métrica con la cual ordenar los resultados." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 #, fuzzy -msgid "Whether to include a client-side search box" -msgstr "Mostrar un filtro de tiempo" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Mostrar un filtro de tiempo" +msgid "Refer to the" +msgstr "Referirse a " -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 #, fuzzy -msgid "Whether to include the percentage in the tooltip" -msgstr "Mostrar un filtro de tiempo" +msgid "for more information on how to structure your URI." +msgstr " para más información sobre cómo estructurar tu URI." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Probar Conexión" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -#, fuzzy -msgid "Whether to make the grid 3D" -msgstr "Métrica con la cual ordenar los resultados." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "Base de datos" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Por favor, introduce un URI SQLAlchemy para probar" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -"Si hacer que esta columna esté disponible como una opción [Time " -"Granularity], la columna debe ser DATETIME o DATETIME-like" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +#, fuzzy +msgid "Database settings updated" +msgstr "El Gráfico no ha podido guardarse" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" +"Lo sentimos, hubo un error al obtener la información de la base de datos:" +" %s" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -"Si rellenar el menú desplegable del filtro en la sección de filtros de la" -" vista de exploración con una lista de valores distintos obtenidos desde " -"el backend sobre la marcha" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +#, fuzzy +msgid "Supported databases" +msgstr "Eliminar base de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +#, fuzzy +msgid "Choose a database..." +msgstr "Selecciona una base de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 #, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Ordenar descendente o ascendente" +msgid "Connect" +msgstr "Probar Conexión" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Ordenar descendente o ascendente" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -#, fuzzy -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "Ordenar descendente o ascendente" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 #, fuzzy -msgid "Whether to truncate metrics" -msgstr "Métrica con la cual ordenar los resultados." +msgid "Database Creation Error" +msgstr "Base de datos" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +#, fuzzy +msgid "CREATE DATASET" +msgstr "Cambiar fuente" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 #, fuzzy -msgid "White" -msgstr "Título" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Anchura" +msgid "Connect a database" +msgstr "Selecciona una base de datos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -#, fuzzy -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "El intervalo de confianza debe estar entre 0 y 1 (exclusivo)" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Editar Base de Datos" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 #, fuzzy -msgid "Word Rotation" -msgstr "Añadir anotación" +msgid "Import database from file" +msgstr "Editar Base de Datos" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "Tiempo de espera" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Mapa Mundial" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Escribe una descripción para tu consulta" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset/views/database/forms.py:229 -#, fuzzy -msgid "Write dataframe index as a column" -msgstr "Escribe el índice del dataframe como una columna." - -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "Escribe el índice del dataframe como una columna." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "Eje X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 #, fuzzy -msgid "X Axis Format" -msgstr "Formato Eje Y" +msgid "Port" +msgstr "informe" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -#, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "Orden Descendente" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 #, fuzzy -msgid "X-axis" -msgstr "Eje Y" +msgid "Additional Parameters" +msgstr "Editar parámetros de la plantilla" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 #, fuzzy -msgid "XScale Interval" -msgstr "Intérvalo de actualización" +msgid "Add additional custom parameters" +msgstr "Editar parámetros de la plantilla" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Eje Y" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Formato Eje Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "Subir un archivo JSON" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 #, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "Orden Descendente" +msgid "Upload Credentials" +msgstr "Subir Credenciales" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -#, fuzzy -msgid "Y-axis" -msgstr "Eje Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 #, fuzzy -msgid "YScale Interval" -msgstr "Intérvalo de actualización" +msgid "Enter a name for this sheet" +msgstr "Ingresa un nuevo título para la pestaña" -#: superset/db_engine_specs/base.py:111 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 #, fuzzy -msgid "Year" -msgstr "año" +msgid "Add sheet" +msgstr "Añadir conjunto de datos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, fuzzy, python-format -msgid "Years %s" -msgstr "año" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "Sí" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "Sí, cancelar" - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#, fuzzy +msgid "Duplicate dataset" +msgstr "Editar Base de Datos" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +#, fuzzy +msgid "Duplicate" +msgstr "Duplicar pestaña" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "Nombre de la Fuente de Datos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/constants.ts:23 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" +"Las contraseñas para las bases de datos a continuación se necesitan para " +"importarlas juntas con los conjuntos de datos. Por favor, tenga en cuenta" +" que la sección \"Seguro Extra\" y \"Certificado\" de la configuración de" +" base de datos no están presentes en los archivos de exportación, y que " +"deben añadirse manualmente después de la importación si se necesitan." #: superset-frontend/src/features/datasets/constants.ts:30 msgid "" @@ -19055,1573 +18830,1803 @@ msgstr "" "Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está " "seguro de que quiere sobrescribir?" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 #, fuzzy -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" -msgstr "" -"Está importando uno o más conjuntos de datos que ya existen. " -"Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está " -"seguro de que quiere sobrescribir?" +msgid "Refreshing columns" +msgstr "Columna de Tiempo" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "Columna de Tiempo" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 #, fuzzy -msgid "You can" -msgstr "Mapa de País" +msgid "Loading" +msgstr "Subir" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "Editar Base de Datos" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +#, fuzzy +msgid "Select dataset source" +msgstr "Usar editor de datasource legado" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "Columna de Tiempo" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "Se produjo un error" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." -msgstr "" -"No puedes usar [Columns] en combinación con [Group " -"By]/[Metrics]/[Percentage Metrics]. Por favor elige una u otra." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#, fuzzy +msgid "Usage" +msgstr "Administrar" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Propietario del Gráfico: %s" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "Última modificación" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "Última modificación por %s" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "No tienes permiso para aprobar esta solicitud." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "Dashboards" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "No tienes permiso para aprobar esta solicitud." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" +msgstr "" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "gráfico" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "No hay gráficos" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset/charts/commands/exceptions.py:131 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 #, fuzzy -msgid "You don't have access to this chart." -msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." +msgid "Select a database table." +msgstr "Eliminar base de datos" -#: superset/dashboards/commands/exceptions.py:86 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 #, fuzzy -msgid "You don't have access to this dashboard." -msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." +msgid "Create dataset and create chart" +msgstr "Crear un nuevo Gráfico" -#: superset/datasets/commands/exceptions.py:206 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 #, fuzzy -msgid "You don't have access to this dataset." -msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." +msgid "New dataset" +msgstr "Cambiar fuente" -#: superset/embedded_dashboard/commands/exceptions.py:34 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 #, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." - -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "¡Aún no tienes favoritos!" +msgid "Select a database table and create dataset" +msgstr "Selecciona tabla o introduce su nombre" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 #, fuzzy -msgid "You don't have permission to modify the value." -msgstr "No tienes permiso para aprobar esta solicitud." - -#: superset/security/manager.py:2262 -#, fuzzy, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "No tienes los derechos para alterar este título." +msgid "dataset name" +msgstr "Nombre de la Fuente de Datos" -#: superset/views/core.py:945 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 #, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "No tienes los derechos para alterar este título." +msgid "Not defined" +msgstr "Indefinido" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "No tienes los derechos para alterar este título." - -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "No tienes los derechos para alterar este título." +msgid "There was an error fetching dataset" +msgstr "" +"Lo sentimos, hubo un error al obtener la información de la base de datos:" +" %s" -#: superset/views/core.py:951 +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "No tienes los permisos para " +msgid "There was an error fetching dataset's related objects" +msgstr "" +"Lo sentimos, hubo un error al obtener la información de la base de datos:" +" %s" -#: superset/views/core.py:1135 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "No tienes los permisos para " +msgid "There was an error loading the dataset metadata" +msgstr "Hubo un error con tu solicitud" -#: superset/views/core.py:649 +#: superset-frontend/src/features/home/ActivityTable.tsx:85 #, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "No tienes los permisos para " - -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "No tienes permiso para aprobar esta solicitud." +msgid "[Untitled]" +msgstr "%s - sin título" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Has eliminado este filtro." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +#, fuzzy +msgid "Unknown" +msgstr "Error desconocido" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "Tienes cambios no guardados." +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, fuzzy, python-format +msgid "Viewed %s" +msgstr "Visto" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Editado" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Creado" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Debes elegir un nombre para el nuevo Dashboard" +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Visto" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "Primero debes ejecutar la consulta exitosamente" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Favoritos" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." -msgstr "" +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Se produjo un error al obtener los dashboards: %s" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +#, fuzzy +msgid "charts" +msgstr "gráfico" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:29 +#, fuzzy +msgid "dashboards" +msgstr "Dashboards" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +#: superset-frontend/src/features/home/EmptyState.tsx:30 #, fuzzy -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "" -"Tu dashboard es demasiado grande, Por favor reduce el tamaño antes de " -"guardar" +msgid "recents" +msgstr "Recientes" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Tu consulta no pudo ser guardada" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +#, fuzzy +msgid "saved queries" +msgstr "Consultas Guardadas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "No se pudo programar la consulta." +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "No hay gráficos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Tu consulta no pudo ser actualizada" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +#, fuzzy +msgid "No dashboards yet" +msgstr "No hay dashboards" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:37 +#, fuzzy +msgid "No recents yet" +msgstr "Recientes" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +#: superset-frontend/src/features/home/EmptyState.tsx:38 #, fuzzy -msgid "Your query was not properly saved" -msgstr "Tu consulta fue guardada" +msgid "No saved queries yet" +msgstr "Consultas Guardadas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "Tu consulta fue guardada" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "Tu consulta fue actualizada" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" +msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 -#, fuzzy -msgid "Your report could not be deleted" -msgstr "El Gráfico no ha podido eliminarse" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -#, fuzzy -msgid "Zero imputation" -msgstr "descripción" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, fuzzy, python-format +msgid "%(other)s saved queries will appear here" +msgstr "" +"Aquí aparecerán los gráficos, los dashboards y las consultas vistas " +"recientemente" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" +"Aquí aparecerán los gráficos, los dashboards y las consultas vistas " +"recientemente" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" +"Aquí aparecerán los gráficos, los dashboards y las consultas guardadas " +"recientemente" + +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "" +"Aquí aparecerán los gráficos, los dashboards y las consultas editadas " +"recientemente" + +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "Parar query" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -#, fuzzy -msgid "[ untitled dashboard ]" -msgstr "Editar Dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "¡Aún no tienes favoritos!" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "Las columnas [Longitud] y [Latitud] deben estar presentes en [Group By]" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, fuzzy, python-format +msgid "See all %(tableName)s" +msgstr "Explorar - %(table)s" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "Deben especificarse [Longitud] y [Latitud]" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +#, fuzzy +msgid "Connect database" +msgstr "Selecciona una base de datos" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 +#: superset-frontend/src/features/home/RightMenu.tsx:179 #, fuzzy -msgid "[Missing Dataset]" +msgid "Create dataset" msgstr "Cambiar fuente" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "Se ha otorgado Acceso [Superset] a la fuente de datos %(name)" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 +#: superset-frontend/src/features/home/RightMenu.tsx:190 #, fuzzy -msgid "[Untitled]" -msgstr "%s - sin título" +msgid "Upload CSV to database" +msgstr "Eliminar base de datos" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 +#: superset-frontend/src/features/home/RightMenu.tsx:197 #, fuzzy -msgid "[asc]" -msgstr "Básico" +msgid "Upload columnar file to database" +msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[nombre del Dashboard]" - -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Información" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -#, fuzzy -msgid "[untitled]" -msgstr "%s - sin título" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Salir" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`confidence_interval` debe ser un número entre 0 y 1 (exclusivo)" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "La propiedad `operation` del objeto de post-procesamiento no está definida" - -#: superset/utils/pandas_postprocessing/prophet.py:61 -#, fuzzy -msgid "`prophet` package not installed" -msgstr "El paquete `fbprophet` no está instalado" - -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset/charts/schemas.py:1284 +#: superset-frontend/src/features/home/RightMenu.tsx:527 #, fuzzy -msgid "`row_limit` must be greater than or equal to 0" -msgstr "`row_limit` debe ser mayor o igual a 1" - -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`row_offset` debe ser mayor o igual a 0" +msgid "Documentation" +msgstr "anotación" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "`width` debe ser mayor o igual a 0" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +#, fuzzy +msgid "Report a bug" +msgstr "informe" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "agregación" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Acceder" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "alerta" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "consulta" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -#, fuzzy -msgid "alert dark" -msgstr "alerta" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Eliminado: %s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "alertas" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Hubo un problema al eliminar %s: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Esta acción eliminará la consulta guardada de forma permanente" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "copiar (duplicar) tambien los Gráficos" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "¿Realmente quieres eliminar la consulta?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, fuzzy, python-format +msgid "Ran %s" +msgstr "Duración: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "y" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Consultas Guardadas" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "anotación" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Siguiente" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "Capas de Anotación" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Nombre de la pestaña" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Ver consulta" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "en" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Consulta ejecutada" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -#, fuzzy -msgid "auto" -msgstr "en" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Nombre de la consulta" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" -msgstr "" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "Copiado!" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 #, fuzzy -msgid "basis" -msgstr "Básico" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "" +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "Hubo un problema al eliminar los dashboards seleccionados: " -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +#, fuzzy +msgid "The report has been created" +msgstr "El dashboard ha sido guardado" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "tornillo" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +#, fuzzy +msgid "Report updated" +msgstr "Informe fallido" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 #, fuzzy -msgid "bottom" -msgstr "dttm" +msgid "Your report could not be deleted" +msgstr "El Gráfico no ha podido eliminarse" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +#, fuzzy +msgid "Weekly Report" +msgstr "informe" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -#, fuzzy -msgid "cardinal" -msgstr "Espacial" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 #, fuzzy -msgid "change" -msgstr "Administrar" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "gráfico" +msgid "Schedule a new email report" +msgstr "Programar informes por correo electrónico para gráficos" -#: superset-frontend/src/features/home/EmptyState.tsx:27 -#, fuzzy -msgid "charts" -msgstr "gráfico" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "elige WHERE o HAVING..." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "" + +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 #, fuzzy -msgid "clear all filters" -msgstr "Buscar / Filtrar" +msgid "Report Name" +msgstr "Nombre de informe" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "Columna" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +#, fuzzy +msgid "Set up an email report" +msgstr "Alertas e informes" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 #, fuzzy -msgid "count" -msgstr "Columna" +msgid "Delete email report" +msgstr "Alertas e informes" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 #, fuzzy -msgid "create" -msgstr "crear un " +msgid "Schedule email report" +msgstr "Programar informes por correo electrónico para gráficos" + +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Esta acción eliminará permanentemente %s." -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 #, fuzzy -msgid "create a new chart" -msgstr "Crear un nuevo Gráfico" +msgid "Delete Report?" +msgstr "Plantillas CSS" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Seguridad a nivel de registros" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "Nombre de la consulta" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Add Rule" +msgstr "Formato Fecha/Hora" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 #, fuzzy -msgid "cumulative" -msgstr "Activo" +msgid "Rule Name" +msgstr "Nombre de la consulta" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "El nombre debe ser único" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 #, fuzzy -msgid "dashboards" -msgstr "Dashboards" +msgid "These are the datasets this filter will be applied to." +msgstr "Estas son las tablas a las que se aplicará este filtro." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "Base de datos" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 #, fuzzy -msgid "dataset name" -msgstr "Nombre de la Fuente de Datos" +msgid "Group Key" +msgstr "Agrupar por" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "fecha" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "día" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Cláusula" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "día del mes" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "día de la semana" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +#, fuzzy +msgid "Base" +msgstr "Base de datos" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "¿Realmente quieres borrar todo?" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "deck.gl Heatmap" -msgstr "Todos los gráficos" +msgid "tags" +msgstr "Estado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 #, fuzzy -msgid "deck.gl Multiple Layers" -msgstr "Deck.gl - Capas Múltiples" +msgid "Select Tags" +msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "Última actualización %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "fue creada" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Nombre de la pestaña" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Nombre de tu fuente de datos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 +#: superset-frontend/src/features/tags/TagModal.tsx:301 #, fuzzy -msgid "deck.gl charts" -msgstr "Todos los gráficos" +msgid "Add description of your tag" +msgstr "Escribe una descripción para tu consulta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Dashboard Superset" + +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "%s métrica(s) guardada(s)" + +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 #, fuzzy -msgid "default" -msgstr "Por defecto" +msgid "UI Configuration" +msgstr "Configuración de filtros" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "eliminar" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#, fuzzy +msgid "Filter value is required" +msgstr "Fuentes de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 #, fuzzy -msgid "descendant" -msgstr "Orden descendente" +msgid "User must select a value before applying the filter" +msgstr "El usuario debe elegir un valor para este filtro" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "descripción" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +#, fuzzy +msgid "Single value" +msgstr "Valores Nulos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "Usar un único valor" + +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "" + +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr "" + +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s opción(es)" + +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Selecciona para ordenar de forma ascendente" + +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 #, fuzzy -msgid "deviation" -msgstr "descripción" +msgid "Can select multiple values" +msgstr "Limitar valores del selector" + +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -#, fuzzy -msgid "draft" -msgstr "Borrador" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "Selección inversa" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +#, fuzzy +msgid "Exclude selected values" +msgstr "Limitar valores del selector" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 #, fuzzy -msgid "e.g. Analytics" -msgstr "Analíticos Avanzadas" +msgid "No time columns" +msgstr "Columna de Tiempo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +#, fuzzy +msgid "Time grain filter plugin" +msgstr "Granularidad Temporal" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +#, fuzzy +msgid "Not triggered" +msgstr "Nada disparado" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -#, fuzzy -msgid "e.g., a \"user id\" column" -msgstr "Columna de Tiempo" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "informes" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -#, fuzzy -msgid "edit mode" -msgstr "Nombre de la consulta" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "alertas" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -#, fuzzy -msgid "entries" -msgstr "Series" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Hubo un error al eliminar el %s seleccionado: %s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "error" -msgstr "%s Error" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Último cambio" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Registro de ejecución" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "Mensaje de error" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Selección múltiple" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "cada" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Aún no hay %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "todos los días del mes" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Propietario" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "todos los días de la semana" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "cada hora" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "" +"Se produjo un error al obtener los valores de los propietarios de " +"gráfico: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -#, fuzzy -msgid "every minute" -msgstr "cada minuto UTC" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Estado" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "cada mes" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "Se produjo un error al obtener los valores de la fuente de datos: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -#, fuzzy -msgid "expand" -msgstr "y" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Alertas e informes" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -#, fuzzy -msgid "explore" -msgstr "Explorar" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Alertas" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "Falló" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Informes" -#: superset-frontend/src/SqlLab/constants.ts:35 -#, fuzzy -msgid "fetching" -msgstr "Configuración" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "¿Eliminar %s?" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "¿Está seguro de que desea eliminar los %s seleccionados?" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +#, fuzzy +msgid "Error Fetching Tagged Objects" msgstr "" +"Lo sentimos, hubo un error al obtener la información de la base de datos:" +" %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "flat" -msgstr "en" +msgid "Edit Tag" +msgstr "Editar Registro" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -#, fuzzy -msgid "for more information on how to structure your URI." -msgstr " para más información sobre cómo estructurar tu URI." +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Hubo un problema al eliminar las capas seleccionadas: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Cargar una plantilla" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Eliminar plantilla" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 #, fuzzy -msgid "heatmap" -msgstr "Mapa de Calor" +msgid "Changed by" +msgstr "Cambiado por" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Aún no hay capas de anotación" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -#, fuzzy -msgid "here" -msgstr "Compartir" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Esta acción eliminará permanentemente la capa." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "hora" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "¿Eliminar capa?" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -#, fuzzy -msgid "id" -msgstr "id:" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "Hubo un problema al eliminar las anotaciones seleccionadas: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "en" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Eliminar anotación" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "en modal" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Anotación" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Aún no hay anotaciones" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "Capas de Anotación" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "unido" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, fuzzy, python-format +msgid "Are you sure you want to delete %s?" +msgstr "onfirma que quieres eliminar" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "no es json válido" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "¿Eliminar anotación?" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 #, fuzzy -msgid "label" -msgstr "Etiqueta" +msgid "view instructions" +msgstr "Tiempo en segundos" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "last day" -msgstr "Sábado" +msgid "Add a dataset" +msgstr "Añadir conjunto de datos" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 #, fuzzy -msgid "last month" -msgstr "mes" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "" +msgid "or" +msgstr "hora" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -#, fuzzy -msgid "last week" -msgstr "Semana anterior" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Selecciona una base de datos" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 #, fuzzy -msgid "last year" -msgstr "Cluster" +msgid "Choose chart type" +msgstr "Tipo de dato" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "última partición:" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -#, fuzzy -msgid "left" -msgstr "alerta" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 +#: superset-frontend/src/pages/ChartList/index.tsx:231 #, fuzzy -msgid "linear" -msgstr "Limpiar" +msgid "Chart imported" +msgstr "Tipo de dato" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "registro" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Hubo un problema al eliminar los gráficos seleccionados: %s" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." -msgstr "" -"el percentil inferior debe ser mayor que 0 y menor que 100. Debe ser " -"menor que el percentil superior." +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 #, fuzzy -msgid "max" -msgstr "Máx" +msgid "Any" +msgstr "día" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" +"Se produjo un error al obtener los valores de los propietarios de " +"gráfico: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 #, fuzzy -msgid "metric" -msgstr "Métrica" +msgid "Certified" +msgstr "Certificado por" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 #, fuzzy -msgid "min" -msgstr "en" +msgid "Alphabetical" +msgstr "Espacial" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minuto" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +#, fuzzy +msgid "Recently modified" +msgstr "Última modificación" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 #, fuzzy -msgid "minute(s)" -msgstr "minuto(s) UTC" +msgid "Least recently modified" +msgstr "Última modificación" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#: superset-frontend/src/pages/ChartList/index.tsx:783 #, fuzzy -msgid "monotone" -msgstr "mes" +msgid "Import charts" +msgstr "No hay gráficos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "mes" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "¿Estas seguro de que quieres eliminar los gráficos seleccionados?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "Plantillas CSS" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" + +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "Plantillas CSS" + +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Esta acción eliminará permanentemente la plantilla." + +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Plantillas CSS" + +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "¿Estas seguro de que quieres eliminar las plantillas seleccionadas?" + +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "Nombre" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" -#: superset/databases/commands/exceptions.py:147 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "no SQL validator is configured" -msgstr "Error de configuración del validador de alertas." +msgid "Dashboard imported" +msgstr "Propiedades del Dashboard" -#: superset/databases/commands/validate_sql.py:101 -#, fuzzy -msgid "no SQL validator is configured for {}" -msgstr "Error de configuración del validador de alertas." +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Hubo un problema al eliminar los dashboards seleccionados: " -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" msgstr "" +"Se produjo un error al obtener los valores del propietario de los " +"dashboards: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "¿Estas seguro de que quieres eliminar los dashboards seleccionados?" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" msgstr "" +"Se produjo un error al obtener los datos relacionados con la base de " +"datos: %s" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 #, fuzzy -msgid "of parent" -msgstr "Transparente" +msgid "Upload file to database" +msgstr "Editar Base de Datos" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +#, fuzzy +msgid "Upload CSV" +msgstr "Descargar como imagen" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 #, fuzzy -msgid "offline" -msgstr "Desconectado" +msgid "Upload columnar file" +msgstr "Columna" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "en" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +#, fuzzy +msgid "Upload Excel file" +msgstr "Subir Excel" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Permitir manipulación de datos" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "Subida de archivos CSV" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "hora" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Eliminar base de datos" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, fuzzy, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" +"La base de datos %s está vinculada a %s gráficos que aparecen en %s " +"dashboards. ¿Estás seguro de que quieres continuar? Eliminar la base de " +"datos dejará inutilizables esos objetos." + +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "¿Eliminar base de datos?" -#: superset/charts/schemas.py:1313 +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "orderby column must be populated" -msgstr "Tu consulta no pudo ser actualizada" +msgid "Dataset imported" +msgstr "Base de datos" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Se produjo un error al obtener datos relacionados con el conjunto de datos" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" msgstr "" +"Se produjo un error al obtener datos relacionados con el conjunto de " +"datos: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Conjunto de datos físico" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Conjunto de datos virtual" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Se produjo un error al obtener conjuntos de datos: %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Se produjo un error al obtener valores de esquema: %s" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" +"Se produjo un error al obtener los valores del propietario del conjunto " +"de datos: %s" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +#, fuzzy +msgid "Import datasets" +msgstr "Editar Base de Datos" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:720 #, fuzzy -msgid "pending" -msgstr "Orden Descendente" +msgid "There was an issue duplicating the dataset." +msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, fuzzy, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" -#: superset/utils/pandas_postprocessing/boxplot.py:88 +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" +"El conjunto de datos %s está vinculado a %s gráficos que aparecen en %s " +"tableros. ¿Está seguro de que desea continuar? Eliminar el conjunto de " +"datos romperá esos objetos." -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "No se encontró el estado del informe programado" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "¿Eliminar conjunto de datos?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 Seleccionados" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s Seleccionados (Virtual)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s Seleccionados (Físico)" + +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s Seleccionados (%s Físico, %s Virtual)" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "registro" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 #, fuzzy -msgid "published" -msgstr "No publicado" +msgid "Execution ID" +msgstr "Registro de ejecución" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 #, fuzzy -msgid "quarter" -msgstr "consulta" +msgid "Scheduled at (UTC)" +msgstr "Programado en" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 #, fuzzy -msgid "queries" -msgstr "Series" +msgid "Start at (UTC)" +msgstr "Iniciar en" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "consulta" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Mensaje de error" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 #, fuzzy -msgid "random" -msgstr "y" +msgid "Alert" +msgstr "alerta" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, fuzzy, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Hubo un error al obtener tu actividad reciente:" + +#: superset-frontend/src/pages/Home/index.tsx:270 +#, fuzzy, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Hubo un problema al eliminar los dashboards seleccionados: " + +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Hubo un problema al eliminar: %s" + +#: superset-frontend/src/pages/Home/index.tsx:293 +#, fuzzy, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Ocurrió un problema al eliminar las consultas seleccionadas: %s" + +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -#, fuzzy -msgid "recent" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "Recientes" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -#, fuzzy -msgid "recents" -msgstr "Recientes" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Hubo un problema al previsualizar la consulta seleccionada. %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "informe" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "TABLAS" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "informes" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Ejecutar en Laboratiorio SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Ha ocurrido un error cargando valores de la base de datos: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -#, fuzzy -msgid "right" -msgstr "Altura" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, fuzzy, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Se produjo un error al obtener valores de esquema: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -#, fuzzy -msgid "rowlevelsecurity" -msgstr "Seguridad a nivel de registros" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Buscar por texto" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -#, fuzzy -msgid "running" -msgstr "Ejecutando" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Eliminado: %s" -#: superset-frontend/src/features/home/EmptyState.tsx:30 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "saved queries" -msgstr "Consultas Guardadas" +msgid "Deleted" +msgstr "eliminar" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Hubo un problema al eliminar %s: %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "seconds" -msgstr "30 segundos" +msgid "No Rules yet" +msgstr "Recientes" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 #, fuzzy -msgid "series" -msgstr "Series" +msgid "Are you sure you want to delete the selected rules?" +msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +#, fuzzy msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." +msgstr "" +"Las contraseñas para las bases de datos a continuación se necesitan para " +"importarlas juntas con los conjuntos de datos. Por favor, tenga en cuenta" +" que la sección \"Seguro Extra\" y \"Certificado\" de la configuración de" +" base de datos no están presentes en los archivos de exportación, y que " +"deben añadirse manualmente después de la importación si se necesitan." + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +#, fuzzy +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" +"Está importando uno o más conjuntos de datos que ya existen. " +"Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está " +"seguro de que quiere sobrescribir?" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 #, fuzzy -msgid "square" -msgstr "consulta" +msgid "Query imported" +msgstr "Nombre de la consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -#, fuzzy -msgid "stack" -msgstr "Backend" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Ocurrió un problema al previsualizar la consulta seleccionada %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 #, fuzzy -msgid "staggered" -msgstr "Nada disparado" +msgid "Import queries" +msgstr "¿Consulta vacía?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Enlace Copiado!" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -#, fuzzy -msgid "step-after" -msgstr "Filtro de padre" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Ocurrió un problema al eliminar las consultas seleccionadas: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "ditar consulta" -#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Copiar URL de la consulta" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 #, fuzzy -msgid "stopped" -msgstr "Agregar" +msgid "Export query" +msgstr "Ver consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Eliminar consulta" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 #, fuzzy -msgid "stream" -msgstr "Histograma" +msgid "queries" +msgstr "Series" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success" -msgstr "Éxito" +msgid "No Tags created" +msgstr "fue creada" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:352 #, fuzzy -msgid "success dark" -msgstr "Éxito" +msgid "Are you sure you want to delete the selected tags?" +msgstr "¿Está seguro de que desea eliminar los %s seleccionados?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "caja de texto" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -#, fuzzy -msgid "to" -msgstr "Detener" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 +#: superset-frontend/src/utils/getClientErrorObject.ts:75 #, fuzzy -msgid "top" -msgstr "Detener" +msgid "Unexpected error: " +msgstr "Error inesperado: " -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -#, fuzzy -msgid "undo" -msgstr "¿Deshacer?" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 +#: superset-frontend/src/utils/getClientErrorObject.ts:97 #, fuzzy -msgid "unknown type icon" -msgstr "Valor desconocido" +msgid "Sorry, an unknown error occurred." +msgstr "Lo siento, ha ocurrido un error" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -"el percentil superior debe ser mayor que 0 y menor que 100. Debe ser " -"mayor que el percentil inferior." +"Lo sentimos, hubo un error al obtener la información de la base de datos:" +" %s" + +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "No tienes permiso para aprobar esta solicitud." -#: superset-frontend/src/explore/constants.ts:85 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "use latest_partition template" -msgstr "última partición:" +msgid "Network error" +msgstr "Error de red." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 +#: superset-frontend/src/utils/getClientErrorObject.ts:144 #, fuzzy -msgid "value ascending" -msgstr "Orden Descendente" +msgid "Request timed out" +msgstr "La petición no es JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +#: superset-frontend/src/utils/getClientErrorObject.ts:153 #, fuzzy -msgid "value descending" -msgstr "Orden descendente" +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Issue 1000 - La fuente de datos es demasiado grande para consultar." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Issue 1001 - La base de datos tiene una carga inusualmente elevada." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -#, fuzzy -msgid "variance" -msgstr "Triángulo" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, fuzzy, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Se produjo un error al obtener los dashboards: %s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "Tiempo en segundos" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, fuzzy, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Se produjo un error al obtener conjuntos de datos: %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, fuzzy, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Se produjo un error al obtener conjuntos de datos: %s" + +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "Tipo" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, fuzzy, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Se produjo un error al limpiar los registros" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "fue creada" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, fuzzy, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "semana" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, fuzzy, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" -msgstr "" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "¡La conexión parece correcta!" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Hubo un error al obtener tu actividad reciente:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Hubo un problema al eliminar: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" -msgstr "" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "año" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Tabla de serie temporal" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/fr/LC_MESSAGES/messages.json b/superset/translations/fr/LC_MESSAGES/messages.json index 2391b33db8c2e..10912dcb144b5 100644 --- a/superset/translations/fr/LC_MESSAGES/messages.json +++ b/superset/translations/fr/LC_MESSAGES/messages.json @@ -8,4633 +8,4451 @@ "plural_forms": "nplurals=2; plural=(n > 1)", "lang": "fr" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\n Ce filtre est hérite du contexte du tableau de bord.\n Il ne sera pas sauvé à l'enregistrement du graphique.\n " - ], - "\n Error: %(text)s\n ": [ - "\n Erreur: %(text)s\n " + "The datasource is too large to query.": [ + "Source de données trop volumineuse pour être interrogée." ], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - "" + "The database is under an unusual load.": [ + "La base de données est soumise à une charge inhabituelle." ], - " expression which needs to adhere to the ": [ - " Expression qui doit adhérer à " + "The database returned an unexpected error.": [ + "La base de données a retourné une erreur inattendue." ], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - " standard pour s'assurer que l'ordre lexicographique\n coïncide avec l'ordre chronologique. Si le format\n de temps n’adhère pas à l'ISO 8601 standard\n dont vous aurez besoin pour définir une expression ou type\n pour transformer une chaine en date ou timestampNote\n actuellement, les timezone ne sont pas gérées Si le temps est stocké\n en format epoch, mettez `epoch_s` ou `epoch_ms`. Si aucun pattern\n n'est spécifié, nous revenons à utiliser les options par défauts\n de niveau database / nom de colonne via l'extra parameter." + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "Il y a une erreur de syntaxe dans la requête SQL. Peut-être une faute de frappe." ], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": ["!= (N'est pas égal)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s ne peut pas être utilisé comme source de données pour des raisons de sécurité." + "The column was deleted or renamed in the database.": [ + "La colonne a été supprimée ou renommée dans la base de données." ], - "%(name)s.csv": ["%(name)s.csv"], - "%(object)s does not exist in this database.": [ - "%(object)s n'existe pas dans cette base de données." + "The table was deleted or renamed in the database.": [ + "La table a été supprimée ou renommée dans la base de données." ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": ["%(rows)d lignes retournées"], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s a obtenu le profil %(role)s qui donne accès à %(datasource)s" + "One or more parameters specified in the query are missing.": [ + "Il manque un ou plusieurs paramêtres dans la requête." ], - "%(user)s's profile": ["Le profil de %(user)s"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s n'a pas pu vérifier votre requête.\nMerci de vérifier à nouveau votre requête.\nException: %(ex)s" + "The hostname provided can't be resolved.": [ + "Le nom d'hôte ne peut pas être résolu." ], - "%s Error": ["%s Erreur"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": ["%s Sélectionné"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s Sélectionnée (%s Physique, %s Virtuelle)" + "The port is closed.": ["Le port est fermé."], + "The host might be down, and can't be reached on the provided port.": [ + "L'hôte est peut-être HS et ne peut pas être atteint sur le port." ], - "%s Selected (Physical)": ["%s Sélectionnée (Physique)"], - "%s Selected (Virtual)": ["%s Sélectionnée (Virtuelle)"], - "%s aggregates(s)": ["%s agrégat(s)"], - "%s column(s)": ["%s colonne(s)"], - "%s operator(s)": ["%s opérateur(s)"], - "%s option(s)": ["%s option(s)"], - "%s saved metric(s)": ["%s métrique(s) sauvegardée(s)"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s de %s"], - "(Removed)": ["(Supprimé)"], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "(optionnel) valeur pas défaut pour le filtre, avec l'option multiple, vous pouvez utiliser un point virgule pour séparer les options." + "Superset encountered an error while running a command.": [ + "Superset a rencontré une erreur lors de l'exécution d'une commande." ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explorer dans Superset>\n\n%(table)s\n" + "Superset encountered an unexpected error.": [ + "Superset a rencontré une erreur inattendue." ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ - "*%(name)s*\n\n%(description)s\n\nErreur: %(text)s\n" + "The username provided when connecting to a database is not valid.": [ + "Le nom d'utilisateur fourni à une base de données est invalide." ], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "" + "The password provided when connecting to a database is not valid.": [ + "Le mot de passe fourni à une base de données est invalide." ], - ".": [""], - "0 Selected": ["0 sélectionné"], - "1 calendar day frequency": [""], - "1 day ago": ["Il y a 1 jour"], - "1 hour": ["1 heure"], - "1 minute": ["1 minute"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": ["Il y a 1 semaine"], - "1 year ago": ["Il y a 1 an"], - "10 minute": ["10 minutes"], - "104 weeks ago": [""], - "15 minute": ["15 minutes"], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": ["Il y a 2 ans"], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 years ago": ["Il y a 3 ans"], - "30 days": ["30 jours"], - "30 minute": ["30 minutes"], - "30 minutes": ["30 minutes"], - "30 second": ["30 secondes"], - "30 seconds": ["30 secondes"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": ["5 minutes"], - "5 minutes": ["5 minutes"], - "5 second": ["5 secondes"], - "52 weeks ago": [""], - "6 hour": ["6 heures"], - "60 days": ["60 jours"], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": ["90 jours"], - ":": [":"], - "< (Smaller than)": ["< (Plus petit que)"], - "<= (Smaller or equal)": ["<= (Plus petit ou égal)"], - "": [""], - "== (Is equal)": ["== (Est equal)"], - "> (Larger than)": ["> (Plus grand que)"], - ">= (Larger or equal)": [">= (Plus grand ou égal)"], - "A comma separated list of columns that should be parsed as dates.": [ - "Une liste de colonnes séparées par des virgules qui devraient être parsées comme des dates." + "Either the username or the password is wrong.": [ + "Le nom d'utilisateur ou le mot de passe est incorrect." ], - "A database with the same name already exists.": [ - "Une base de données avec le même nom existe déjà." + "Either the database is spelled incorrectly or does not exist.": [ + "Base de données inexistante ou nom incorrect." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "The schema was deleted or renamed in the database.": [ + "Le schéma a été supprimé ou renommé dans la base de données." ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "Une URL complète désignant le lieu du plugin (pourrait être hébergé sur un CDN par exemple)" + "User doesn't have the proper permissions.": [ + "L'utilisateur n'a pas les droits." ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": ["Un nom facile à comprendre"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "One or more parameters needed to configure a database are missing.": [ + "Il manque un ou plusieurs paramètres de configuration de la base." ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Une liste d'utilisateurs qui peuvent modifier le graphique. Il est possible de chercher par nom de graphique ou d'utilisateur." + "The submitted payload has the incorrect format.": [ + "Les données fournies sont dans un format incorrect." ], - "A map of the world, that can indicate values in different countries.": [ - "" + "The submitted payload has the incorrect schema.": [ + "Les données fournies ont un schéma incorrect." ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "" + "Results backend needed for asynchronous queries is not configured.": [ + "Le backend des résultats pour les requêtes asynchrones n'est pas configuré." ], - "A metric to use for color": ["Une métrique à utiliser par couleur"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "" + "Database does not allow data manipulation.": [ + "La base de données ne permet pas la manipulation de données." ], - "A readable URL for your dashboard": [ - "Pour avoir une URL lisible pour votre tableau de bord" + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. Assurez-vous que la requête a bien un SELECT en dernière instruction. Puis essayez d'exécuter votre requête à nouveau." ], - "A reference to the [Time] configuration, taking granularity into account": [ - "Une référence à la configuration [Time] prends la granularité en compte" + "CVAS (create view as select) query has more than one statement.": [ + "La requête CVAS (create view as select) a plus d'une instruction." ], - "A reusable dataset will be saved with your chart.": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Un ensemble de paramètre qui seront disponible dans la requête utilisant la syntaxe du template Jinja" + "CVAS (create view as select) query is not a SELECT statement.": [ + "La requête CVAS (create view as select) n'est pas une instruction SELECT." ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "" + "Query is too complex and takes too long to run.": [ + "La requête est trop complexe et trop longue à exécuter." ], - "A timeout occurred while executing the query.": [ - "Un timeout s'est produit lors de l'exécution de la requête." + "The database is currently running too many queries.": [ + "La base de données exécute actuellement trop de requêtes." ], - "A timeout occurred while generating a csv.": [ - "Dépassement de délai lors de la génération d'un CSV." + "The object does not exist in the given database.": [ + "L'objet n'existe pas dans la base de données." ], - "A timeout occurred while generating a dataframe.": [ - "Dépassement de délai lors de la génération d'un dataframe." + "The query has a syntax error.": ["La requête a une erreur de syntaxe."], + "The results backend no longer has the data from the query.": [ + "Le backend des résultats n'a plus les données de la requête." ], - "A timeout occurred while taking a screenshot.": [ - "Dépassement de délai lors d'une capture d'écran." + "The query associated with the results was deleted.": [ + "La requête associée aux résutlats a été supprimée." ], - "A valid color scheme is required": [ - "Un jeu de couleur valide doit être fourni" + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Les résultats stockés dans le backend le sont dans un format différent et ne peuvent plus être déserialisés." ], - "APPLY": ["APPLIQUER"], - "APR": ["AVR"], - "AQE": ["AQE"], - "AUG": ["AOU"], - "AXIS TITLE MARGIN": [""], - "About": ["A propos"], - "Access": ["Accès"], - "Access requests": ["Requêtes d'accès"], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": ["Accès demandé"], - "Action": ["Action"], - "Action Log": ["Journaux d'actions"], - "Actions": ["Actions"], - "Active": ["Actif"], - "Actual time range": ["Intervalle de temps courant"], - "Add": ["Ajouter"], - "Add CSS Template": ["Ajouter un Template CSS"], - "Add CSS template": ["Templates CSS"], - "Add Chart": ["Ajouter un graphique"], - "Add Column": ["Ajouter une colonne"], - "Add Dashboard": ["Ajouter un tableau de bord"], - "Add Database": ["Ajouter une base de données"], - "Add Log": ["Ajouter un log"], - "Add Metric": ["Ajouter une métrique"], - "Add Saved Query": ["Ajouter une requête sauvegardée"], - "Add a Plugin": ["Ajouter un plugin"], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": [ - "Ajouter des paramètres personnalisés supplémentaires" + "The port number is invalid.": ["Le numéro de port est invalide."], + "Failed to start remote query on a worker.": [ + "Echec de la requête à distance." ], - "Add an item": ["Ajouter un élément"], - "Add and edit filters": ["Ajouter et modifier les filtres"], - "Add annotation": ["Ajouter une annotation"], - "Add annotation layer": ["Ajouter une couche d'annotations"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "" + "The database was deleted.": ["La base de données a été supprimée."], + "Custom SQL fields cannot contain sub-queries.": [""], + "Invalid certificate": ["Certificat invalide"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Type de retour non sécurisé pour la fonction %(func)s: %(value_type)s" ], - "Add cross-filter": ["Ajouter un filtre"], - "Add custom scoping": [""], - "Add delivery method": ["Ajouter méthode de livraison"], - "Add filter": ["Ajouter un filtre"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "Unsupported return value for method %(name)s": [ + "Type de retour non supporté pour la méthode %(name)s" ], - "Add filters and dividers": ["Ajouter un filtre ou un diviseur"], - "Add item": ["Ajouter un item"], - "Add metric": ["Ajouter une métrique"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": ["Ajouter un nouveau formateur de couleur"], - "Add new formatter": ["Ajouter un formateur"], - "Add notification method": ["Ajouter une méthode de notification"], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add sheet": ["Ajouter une feuille"], - "Add to dashboard": ["Ajouter au tableau de bord"], - "Add/Edit Filters": ["Ajouter/Editer les filtres"], - "Added": ["Ajouté"], - "Additional fields may be required": [""], - "Additional information": ["Informations additionnelles"], - "Additional parameters": ["Paramètres supplémentaires"], - "Additional text to add before or after the value, e.g. unit": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": ["Avancé"], - "Advanced analytics": ["Analyses avancées"], - "Advanced-Analytics": ["Analyses avancées"], - "Aesthetic": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "" + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Valeur de template non sécurisée pour la clé %(key)s: %(value_type)s" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "" + "Unsupported template value for key %(key)s": [ + "Valeur de template non supportée pour la clé key %(key)s" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "" + "Only SELECT statements are allowed against this database.": [ + "Seules les instructions SELECT sont autorisées pour cette base de données." ], - "Alert Triggered, In Grace Period": [ - "Alerte déclenchée, -période de grâce" + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "La requête a été tuée après %(sqllab_timeout)s secondes. Elle est peut-être trop complexe ou la base de donnée est soumise à une charge trop importante." ], - "Alert condition": ["Condition d'alerte"], - "Alert condition schedule": ["Planification de la condition d'alerte"], - "Alert ended grace period.": [ - "L'alerte a mis fin à la période de grâce." + "Results backend is not configured.": [ + "Le backend des résultats n'est pas configuré." ], - "Alert failed": ["L'alerte a échoué"], - "Alert fired during grace period.": [ - "Alerte déclenchée pendant la période de grâce." + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. Assurez-vous que la requête a bien un SELECT en dernière instruction. Puis essayez d'exécuter votre requête à nouveau." ], - "Alert found an error while executing a query.": [ - "Une erreur a été rencontrée lors de l'exécution de la requête." + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "Le CVAS (create view as select) ne peut être exécuté qu'avec une requête contenant une seule instruction SELECT. Assurez-vous que la requête a bien une seule instruction SELECT. Puis essayez d'exécuter votre requête à nouveau." ], - "Alert name": ["Nom de l'alerte"], - "Alert on grace period": ["Alerte sur la période de grace"], - "Alert query returned a non-number value.": [ - "La requête a retourné une valeur non numérique." + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": [ + "Viz est une source de données manquante" ], - "Alert query returned more than one column.": [ - "La requête a retourné plus d'une colonne." + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "La fenêtre glissante appliquée n'a pas retourné de données. Assurez-vous que la requête source satisfasse les périodes minimum définies dans la fenêtre glissante." ], - "Alert query returned more than one column. %s columns returned": [ - "La requête a retourné plus d'une colonne. %s colonnes retournées" + "From date cannot be larger than to date": [ + "La date de début ne peut être postérieure à la date de fin" ], - "Alert query returned more than one row.": [ - "La requête a retourné plus d'une ligne." + "Cached value not found": ["Valeur en cache non trouvée"], + "Columns missing in datasource: %(invalid_columns)s": [ + "Colonnes absentes de la source de données : %(invalid_columns)s" ], - "Alert query returned more than one row. %s rows returned": [ - "La requête a retourné plus d'une ligne. %s lignes retournées" + "Time Table View": ["Vue de la table temporelle"], + "Pick at least one metric": ["Choisissez au moins une métrique"], + "When using 'Group By' you are limited to use a single metric": [ + "Quand vous utilisez 'Grouper par' vous êtes limité à une seule métrique" ], - "Alert running": ["Altere en cours"], - "Alert triggered, notification sent": [ - "Alerte déclenchée, notification envoyée" + "Calendar Heatmap": ["Calendrier Carte de chaleur"], + "Bubble Chart": ["Bulles"], + "Please use 3 different metric labels": [ + "Utilisez 3 libellés de métrique différents" ], - "Alert validator config error.": [ - "Erreur de configuration du validateur." + "Pick a metric for x, y and size": [ + "Choisissez une métrique pour x, y, taille" ], - "Alerts": ["Alertes"], - "Alerts & Reports": ["Alertes et rapports"], - "Alerts & reports": ["Alertes et rapports"], - "Align +/-": [""], - "All": ["Tous"], - "All Text": ["Tout texte"], - "All charts": ["Tous les graphiques"], - "All charts/global scoping": [""], - "All filters": ["Tous les filtres"], - "All panels with this column will be affected by this filter": [ - "Les panneaux avec cette colonne seront affectés par ce filtre" + "Bullet Chart": ["Points"], + "Pick a metric to display": ["Choisissez une métrique à afficher"], + "Time Series - Line Chart": ["Séries temporelles - ligne"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Une période délimitée (à la fois début et fin) doit être spécifiée quand on utilise une Comparaison de temps." ], - "Allow CREATE TABLE AS": ["Autoriser CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Autorise l'option CREATE TABLE AS dans SQL Lab" + "Time Series - Bar Chart": ["Séries temporelles - histogramme"], + "Time Series - Period Pivot": ["Séries temporelles - Période Pivot"], + "Time Series - Percent Change": [ + "Séries temporelles - pourcentage de changement" ], - "Allow CREATE VIEW AS": ["Autoriser CREATE VIEW AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Autorise l'option CREATE VIEW AS dans SQL Lab" + "Time Series - Stacked": ["Séries temporelles - empilées"], + "Histogram": ["Histogramme"], + "Must have at least one numeric column specified": [ + "Au moins une colonne numérique doit être spécifiée" ], - "Allow Csv Upload": ["Autoriser le téléversement CSV"], - "Allow DML": ["Autoriser DML"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [ - "Autoriser la création de nouvelles tables basées sur des requêtes" + "Distribution - Bar Chart": ["Distibution - histogramme"], + "Can't have overlap between Series and Breakdowns": [ + "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" ], - "Allow creation of new views based on queries": [ - "Autoriser la création de nouvelles vues basées sur des requêtes" + "Pick at least one field for [Series]": [ + "Choisissez au moins un champs pour [Séries]" ], - "Allow data manipulation language": ["Autoriser DML"], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "" + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Choisissez exactement 2 colonnes pour [Source / Target]" ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Permettre la manipulation de la base de données en utilisant des instructionsnon SELECT comme UPDATE, DELETE, CREATE, etc." + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Il y a une boucle dans votre Sankey, il faut un arbre. Lien fautif: {}" ], - "Allow multiple selections": ["Autoriséer les sélections multiples"], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [ - "Autoriser cette base de données à être explorée" + "Directed Force Layout": ["Graphe orienté"], + "Country Map": ["Carte de pays"], + "World Map": ["Carte du monde"], + "Parallel Coordinates": ["Coordonnées parallèles"], + "Heatmap": ["Carte de chaleur"], + "Horizon Charts": ["Histogrammes horizontaux"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "Les colonnes [Longitude] et [Latitude] doivent êtres définies" ], - "Allow this database to be queried in SQL Lab": [ - "Autoriser cette base de données à être requêtées dans SQL Lab" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Il faut une colonne [Grouper par] pour avoir 'count' comme [Label]" ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Autorise les utilisateurs à lancer des expression non-SELECT (UPDATE, DELETE, CREATE, etc.) dans SQL Lab" + "Choice of [Label] must be present in [Group By]": [ + "Le [Label] choisi doit être présent dans [Grouper par]" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": ["Alphabétique"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "" + "Choice of [Point Radius] must be present in [Group By]": [ + "Le [Point Radius] doit être présent dans [Grouper par]" ], - "Altered": ["Modifié"], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "Une période délimitée (à la fois début et fin) doit être spécifiée quand on utilise une Comparaison de temps." + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans [Grouper par]" ], - "An engine must be specified when passing individual parameters to a database.": [ - "Un moteur doit être fournit lorsque l'on passe des paramètres individuels à la base de données." + "Deck.gl - Multiple Layers": ["Deck.gl - Couches Multiples"], + "Bad spatial key": ["Mauvaise clef spatiale"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Entrée spatiale NULL rencontrée, veuillez les filtrer" ], - "An error has occurred": ["Une erreur est survenue"], - "An error occurred": ["Un erreur s'est produite"], - "An error occurred saving dataset": [ - "Une erreur s'est produite durant la sauvegarde du jeu de données" + "Deck.gl - Scatter plot": ["Deck.gl - Nuage de points"], + "Deck.gl - Screen Grid": ["Deck.gl - Grille d'écran"], + "Deck.gl - 3D Grid": ["Deck.gl - Grille 3D"], + "Deck.gl - Paths": ["Deck.gl - Chemins"], + "Deck.gl - Polygon": ["Deck.gl - Polygone"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], + "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], + "Deck.gl - Arc": ["Deck.gl - Arc"], + "Event flow": ["Flot d'événements"], + "Time Series - Paired t-test": ["Séries temporelles - Paired t-test"], + "Time Series - Nightingale Rose Chart": [ + "Séries temporelles - Graphique Nightingale Rose" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Une erreur s'est produite en repliant le schéma de la table. Veuillez contacter votre administrateur." + "Partition Diagram": ["Diagramme de Partition"], + "Deleted %(num)d annotation layer": [ + "%(num)d couche d'annotations supprimée", + "%(num)d couches d'annotations supprimées" ], - "An error occurred while creating the data source": [ - "Une erreur s'est produite durant la création de la source de donnée" + "All Text": ["Tout texte"], + "Deleted %(num)d annotation": [ + "%(num)d annotation supprimée", + "%(num)d annotations supprimées" ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Une erreur s'est produite en développant le schéma de la table. Veuillez contacter votre administrateur." + "Deleted %(num)d chart": [ + "%(num)d graphique supprimé", + "%(num)d graphiques supprimés" ], - "An error occurred while fetching available CSS templates": [ - "Une erreur s'est produite lors de l'extraction des modèles de CSS disponibles" + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": ["Sous-Total"], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`confidence_interval` doit être entre 0 et 1 (exclusif)" ], - "An error occurred while fetching chart created by values: %s": [ - "Une erreur s'est produite durant la récupération du graphique créé par les valeurs : %s" + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "le percentile inférieur doit être plus grand que 0 et plus petit que 100 et doit être plus petit que le percentile supérieur." ], - "An error occurred while fetching chart owners values: %s": [ - "Une erreur s'est produite durant la récupération des propriétaires du graphique : %s" + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "le percentile supérieur doit être plus grand que 0 et plus petit que 100 et doit être supérieur au percentile inférieur." ], - "An error occurred while fetching created by values: %s": [ - "Une erreur s'est produite en récupérant les valeurs créées : %s" + "`width` must be greater or equal to 0": [ + "`width` doit être plus grand ou égal à 0" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Une erreur s'est produite lors de la récupération du tableau de bord créé avec les valeurs : %s" + "`row_limit` must be greater than or equal to 0": [ + "`row_limit` doit être plus grand ou égal à 0" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Une erreur s'est produite durant la récupération des propriétaires du tableau de bord : %s" + "`row_offset` must be greater than or equal to 0": [ + "`row_offset` doit être plus grand ou égal à 0" ], - "An error occurred while fetching dashboards: %s": [ - "Une erreur s'est produite durant la récupération des tableaux de bord : %s" + "orderby column must be populated": [ + "la colonne de tri doit être remplie" ], - "An error occurred while fetching database related data: %s": [ - "Une erreur s'est produite lors de la récupération des données de la base : %s" + "Chart has no query context saved. Please save the chart again.": [ + "Le graphique n'a pas de contexte de requête sauvegardé. Veuillez sauver le graphique à nouveau." ], - "An error occurred while fetching database values: %s": [ - "Une erreur s'est produite durant la récupération des valeurs de la base de données : %s" + "Request is incorrect: %(error)s": [ + "La requête est incorrecte : %(error)s" ], - "An error occurred while fetching dataset datasource values: %s": [ - "Une erreur s'est produite durant la récupération les sources de données du jeu de données : %s" + "Request is not JSON": ["La requête n'est pas JSON"], + "Owners are invalid": ["Les propriétaires sont invalides"], + "Some roles do not exist": ["Des profils n'existent pas"], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": [ + "Les paramètres de la couche d'annotations sont invalides." ], - "An error occurred while fetching dataset owner values: %s": [ - "Une erreur s'est produite durant la récupération des valeurs du propriétaire du jeu de données : %s" + "Annotation layer could not be created.": [ + "La couche d'annotations n'a pas pu être créée." ], - "An error occurred while fetching dataset related data": [ - "Une erreur s'est produite lors de la récupération des données relatives au jeu de données" - ], - "An error occurred while fetching dataset related data: %s": [ - "Une erreur s'est produite lors de la récupération des données relatives au jeu de données : %s" + "Annotation layer could not be updated.": [ + "La couche d'annotations n'a pas pu être mise à jour." ], - "An error occurred while fetching datasets: %s": [ - "Une erreur s'est produite durant la récupération des jeux de données : %s" + "Annotation layer not found.": ["Couche d'annotations non trouvée."], + "Annotation layer has associated annotations.": [ + "La couche d'annotations a des annotations associées." ], - "An error occurred while fetching function names.": [ - "Une erreur s'est produite lors de la récupération des noms des fonctions." + "Name must be unique": ["Le nom doit être unique"], + "End date must be after start date": [ + "Date de début ne peut être postérieure à Date de fin" ], - "An error occurred while fetching schema values: %s": [ - "Une erreur s'est produit en récupérant les valeurs du schéma : %s" + "Short description must be unique for this layer": [ + "La description courte doit être unique pour cette couche" ], - "An error occurred while fetching tab state": [ - "Une erreur s'est produite lors de la récupération de l'état de l'onglet" + "Annotation not found.": ["Annotation non trouvée."], + "Annotation parameters are invalid.": [ + "Les paramètres d'annotation sont invalides." ], - "An error occurred while fetching table metadata": [ - "Une erreur s'est produite lors de l'extraction des méta-données de la table" + "Annotation could not be created.": [ + "L'annotation n'a pas pu être créée." ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Une erreur s'est produite lors de l'extraction des méta-données de la table. Veuillez contacter votre administrateur." + "Annotation could not be updated.": [ + "L'annotation n'a pas pu être mise à jour." ], - "An error occurred while fetching user values: %s": [ - "Une erreur s'est produit en récupérant les valeurs d'utilisateur : %s" + "Annotations could not be deleted.": [ + "Les annotations n'ont pas pu être supprimées." ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "Une erreur s'est produite en masquant la barre de gauche. Veuillez contacter votre administrateur." + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "La chaîne de Temps est ambigüe. Veuillez spécifier [%(human_readable)s ago] ou [%(human_readable)s later]." ], - "An error occurred while loading the SQL": [ - "Une erreur s'est produite durant le chargement du SQL" + "Cannot parse time string [%(human_readable)s]": [ + "Ne peut pas parser la chaîne de temps [%(human_readable)s]" ], - "An error occurred while pruning logs ": [ - "Une erreur s'est produite le traitement des logs " + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "La chaîne Ecart Temps est ambigüe. Veuillez spécifier [%(human_readable)s ago] ou [%(human_readable)s later]." ], - "An error occurred while removing query. Please contact your administrator.": [ - "Une erreur s'est produite en supprimant la requête. Veuillez contacter votre administrateur." + "Database does not exist": ["La base de données n'existe pas"], + "Dashboards do not exist": ["Les tableaux de bord n'existent pas"], + "Datasource type is required when datasource_id is given": [ + "Le type de source de données est requis quand datasource_id est spécifié" ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Une erreur s'est produite en supprimant l'onglet. Veuillez contacter votre administrateur." + "Chart parameters are invalid.": [ + "Les paramètres du graphique sont invalides." ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Une erreur s'est produite en enlevant le schéma de la table. Veuillez contacter votre administrateur." + "Chart could not be created.": ["Le graphique n'a pas pu être créé."], + "Chart could not be updated.": [ + "Le graphique n'a pas pu être mis à jour." ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Une erreur s'est produite en positionnant l'onglet actif. Veuillez contacter votre administrateur." + "Charts could not be deleted.": [ + "Les graphiques n'ont pas pu être supprimés." ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Une erreur s'est produite durant l'initialisation de l'onglet Autorun. Veuillez contacter votre administrateur." + "There are associated alerts or reports": [ + "Il y a des alertes ou des rapports associés" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Une erreur s'est produite en positionnant l'id de l'onglet Base de données. Veuillez contacter votre administrateur." + "Changing this chart is forbidden": [ + "Modifier ce graphique est interdit" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Une erreur s'est produite durant l'initialisation de l'onglet Schéma. Veuillez contacter votre administrateur." + "Import chart failed for an unknown reason": [ + "L'import du graphique a échoué pour une raison inconnue" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "Une erreur s'est produite durant l'initialisation des paramètres de template de l'onglet. Veuillez contacter votre administrateur." + "Error: %(error)s": [""], + "CSS template not found.": ["Template CSS non trouvé."], + "Must be unique": ["Doit être unique"], + "Dashboard parameters are invalid.": [ + "Les paramètres du tableau de bord sont invalides." ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "Une erreur s'est produite en enregistrant l'id de la dernière requête dans le backend. Veuillez contacter votre administrateur si le problème persiste." + "Dashboard could not be updated.": [ + "Le tableau de bord n'a pas pu être mis à jour." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "Une erreur s'est produite en stockant la requête dans le backend. Pour éviter de perdre vos modifications, sauver votre requête en utilisant le bouton \"Enresigtrer requête\"." + "Dashboard could not be deleted.": [ + "Le tableau de bord n'a pas pu être supprimé." ], - "An unknown error occurred. Please contact your Superset administrator": [ - "Une erreur s'est produite. Contactez votre admin superset" + "Changing this Dashboard is forbidden": [ + "Modifier ce tableau de bord est interdit" ], - "Anchor to": ["S'ancrer à"], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Annotation": ["Annotation"], - "Annotation Layers": ["Couches d'annotations"], - "Annotation Slice Configuration": [ - "Configuration de l'annotation de graphique" + "Import dashboard failed for an unknown reason": [ + "L'import du tableau de bord a échoué pour une raison inconnue" ], - "Annotation could not be created.": [ - "L'annotation n'a pas pu être créée." + "You don't have access to this dashboard.": [ + "Vous n'avez pas accès à ce tableau de bord." ], - "Annotation could not be updated.": [ - "L'annotation n'a pas pu être mise à jour." + "No data in file": ["Pas de données dans le fichier"], + "Database parameters are invalid.": [ + "Les paramètres de base de données sont invalides." ], - "Annotation delete failed.": ["La suppression de l'annotation a échoué."], - "Annotation layer": ["Couches d'annotations"], - "Annotation layer could not be created.": [ - "La couche d'annotations n'a pas pu être créée." + "A database with the same name already exists.": [ + "Une base de données avec le même nom existe déjà." ], - "Annotation layer could not be deleted.": [ - "La couche d'annotations n'a pas pu être supprimée." + "Field is required": ["Le champ est requis"], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "Le paramètre metadata_params dans Champ supplémentaire n'est pas correctement configuré. La clé %(key)s est invalide." ], - "Annotation layer could not be updated.": [ - "La couche d'annotations n'a pas pu être mise à jour." + "Database not found.": ["Base de donnée non trouvée."], + "Database could not be created.": [ + "La base de données n'a pas pu être créée." ], - "Annotation layer delete failed.": [ - "La suppression de la couche d'annotations a échoué." + "Database could not be updated.": [ + "La base de données n'a pas pu être mise à jour." ], - "Annotation layer description columns": [ - "Colonnes de description de la couche d'annotations" + "Connection failed, please check your connection settings": [ + "La connexion a échoué, veuillez vérifier vos paramètres de connexion" ], - "Annotation layer has associated annotations.": [ - "La couche d'annotations a des annotations associées." + "Cannot delete a database that has datasets attached": [ + "Impossible de supprimer une base de données qui a des jeux de données rattachés" ], - "Annotation layer interval end": [ - "Fin de l'intervalle de la couche d'annotations" + "Database could not be deleted.": [ + "La base de données n'a pas pu être supprimée." ], - "Annotation layer name": ["Nom de la couche d'annotations"], - "Annotation layer not found.": ["Couche d'annotations non trouvée."], - "Annotation layer opacity": ["Opacité de la couche d'annotations"], - "Annotation layer parameters are invalid.": [ - "Les paramètres de la couche d'annotations sont invalides." + "Stopped an unsafe database connection": [ + "Une connexion non sécurisée avec la base de données a été arrêtée" ], - "Annotation layer stroke": ["Trait de la couche d'annotations"], - "Annotation layer time column": [ - "Colonne temporelle de la couche d'annotations" + "Could not load database driver": [ + "Le driver de la base de données n'a pas pu être chargé" ], - "Annotation layer title column": [ - "Colonne de titre de la couche d'annotations" + "Unexpected error occurred, please check your logs for details": [ + "Erreur inattendue, consultez les logs pour plus de détails" ], - "Annotation layer type": ["Type de couche d'annotations"], - "Annotation layer value": ["Valeur de la couche d'annotations"], - "Annotation layers": ["Couches d'annotations"], - "Annotation layers are still loading.": [ - "Les couches d'annotation sont toujours en cours de chargement." + "No validator found (configured for the engine)": [""], + "Import database failed for an unknown reason": [ + "L'import de la base de données a échoué pour une raison inconnue" ], - "Annotation name": ["Nom de l'annotation"], - "Annotation not found.": ["Annotation non trouvée."], - "Annotation parameters are invalid.": [ - "Les paramètres d'annotation sont invalides." + "Could not load database driver: {}": [ + "Ce driver de la base de données n'a pas pu être chargé : {}" ], - "Annotation source type": ["Type de source de la couche d'annotations"], - "Annotations and layers": ["Annotations et couches"], - "Annotations could not be deleted.": [ - "Les annotations n'ont pas pu être supprimées." + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "Le moteur \"%(engine)s\" ne peut pas être configuré via des paramètres." ], - "Any": ["Tous"], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Une palette de couleur sélectionnée ici écrasera les couleurs appliquées aux graphiques de ce tableau de bord" + "Database is offline.": ["La base de données est hors-ligne."], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s n'a pas pu vérifier votre requête.\nMerci de vérifier à nouveau votre requête.\nException: %(ex)s" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "" + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "The database was not found.": ["Base de données non trouvée."], + "Dataset %(name)s already exists": [ + "Le jeu de données %(name)s existe déjà" ], - "Append": ["Ajouter"], - "Applied filters (%d)": ["Filtres appliqués (%d)"], - "Applied filters: %s": ["Filtres appliqué: %s"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "La fenêtre glissante appliquée n'a pas retourné de données. Assurez-vous que la requête source satisfasse les périodes minimum définies dans la fenêtre glissante." + "Database not allowed to change": [ + "La base de données ne peut pas être changée" ], - "Apply": ["Appliquer"], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply filters": ["Appliquer les filtres"], - "Apply to all panels": ["Appliquer à tous les panneaux"], - "Apply to specific panels": ["Appliquer à certains panneaux"], - "April": ["Avril"], - "Are you sure you want to cancel?": ["Voulez vous vraiment annuler ?"], - "Are you sure you want to delete": ["Etes-vous sûr de vouloir supprimer"], - "Are you sure you want to delete the selected %s?": [ - "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" + "One or more columns do not exist": [ + "Une ou plusieurs colonnes n'existent pas" ], - "Are you sure you want to delete the selected annotations?": [ - "Etes-vous sûr de vouloir supprimer les annotations sélectionnées ?" + "One or more columns are duplicated": [ + "Une ou plusieurs colonnes sont dupliquées" ], - "Are you sure you want to delete the selected charts?": [ - "Etes-vous sûr de vouloir supprimer les graphiques sélectionnés ?" + "One or more columns already exist": [ + "Une ou plusieurs colonnes existent déjà" ], - "Are you sure you want to delete the selected dashboards?": [ - "Etes-vous sûr de vouloir supprimer les tableaux de bord sélectionné ?" + "One or more metrics do not exist": [ + "Une ou plusieurs métriques n'existent pas" ], - "Are you sure you want to delete the selected datasets?": [ - "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" + "One or more metrics are duplicated": [ + "Une ou plusieurs métriques sont dupliquées" ], - "Are you sure you want to delete the selected layers?": [ - "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" + "One or more metrics already exist": [ + "Une ou plusieurs métriques existent déjà" ], - "Are you sure you want to delete the selected queries?": [ - "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "La table [%(table_name)s] n'a pu être trouvée, vérifiez à nouveau votre connexion à votre base de données, le schéma et le nom de la table" ], - "Are you sure you want to delete the selected templates?": [ - "Etes-vous sûr de vouloir supprimer les templates sélectionnés ?" + "Dataset does not exist": ["Le jeu de données n'existe pas"], + "Dataset parameters are invalid.": [ + "Les paramètres du jeu de données sont invalides." ], - "Are you sure you want to proceed?": [ - "Êtes-vous certain de vouloir continuer ?" + "Dataset could not be created.": [ + "Le jeu de données n'a pas pu être créé." ], - "Are you sure you want to save and apply changes?": [ - "Êtes vous sur de vouloir sauvegarder et appliquer les modifications ?" + "Dataset could not be updated.": [ + "Le jeu de données n'a pas pu être mis à jour." ], - "Area chart opacity": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "" + "Changing this dataset is forbidden": [ + "Changer ce jeu de données est interdit" ], - "Associated Charts": ["Les graphiques associés"], - "Async Execution": ["Exécution asynchrone"], - "Asynchronous query execution": ["Exécution de requête asynchrone"], - "August": ["Aout"], - "Auto Zoom": [""], - "Autocomplete": ["Complétion automatique"], - "Autocomplete filters": ["Remplir automatiquement les filtres"], - "Autocomplete query predicate": [ - "Remplir automatiquement le prédicat de requête" + "Import dataset failed for an unknown reason": [ + "L'import du jeu de données a échoué pour une raison inconnue" ], - "Automatic Color": [""], - "Available sorting modes:": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": ["Backend"], - "Bad spatial key": ["Mauvaise clef spatiale"], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Base layer map style": [""], - "Based on a metric": ["Basé sur une métrique"], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": ["Simple"], - "Basic information": ["Information simple"], - "Batch editing %d filters:": ["Edition Batch %d filtres:"], - "Battery level over time": [""], - "Be careful.": ["Faites attention."], - "Before": ["Avant"], - "Big Number": ["Gros nombre"], - "Big Number Font Size": [""], - "Big Number with Trendline": ["Gros nombre avec tendance"], - "Bottom Margin": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "" + "Data URI is not allowed.": [""], + "Dataset column not found.": ["Colonne du jeu de données introuvable."], + "Dataset column delete failed.": [ + "La suppression de la colonne du jeu de données a échoué." ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "" + "Changing this dataset is forbidden.": [ + "Modifier ce jeu de données est interdit." ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "" + "Dataset metric not found.": ["Métrique du jeu de données non trouvée."], + "Dataset metric delete failed.": [ + "La suppression de la métrique du jeu de données a échoué." ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ - "" + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": ["[jeu de données manquant]"], + "Saved queries could not be deleted.": [ + "Les requêtes sauvegardées ne peuvent pas être supprimées." ], - "Bubble Chart": ["Bulles"], - "Bubble size": ["Taille de la bulle"], - "Bucket break points": [""], - "Bulk select": ["Sélectionner plusieurs"], - "Bullet Chart": ["Points"], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "Par défaut, chaque filtre charge au plus 1000 choix au chargement initial de la page. Cocher cette case su vous avez plus de 1000 valeurs de filtre et voulez permettre la recherche dynamique qui charge les valeurs de filtre à mesure que le les utilisateurs tapent (peut surcharger la base de données)." + "Saved query not found.": ["Requête sauvegardée introuvable."], + "Import saved query failed for an unknown reason.": [ + "L'import de la requête sauvegardée a échoué pour une raison inconnue." ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": ["ANNULER"], - "CREATE TABLE AS": ["Autoriser CREATE TABLE AS"], - "CREATE VIEW AS": ["CREATE VIEW AS"], - "CREATE VIEW statement": ["ordre CREATE VIEW"], - "CRON expression": ["Expression CRON"], - "CSS": ["CSS"], - "CSS Styles": [""], - "CSS Templates": ["Templates CSS"], - "CSS applied to the chart": [""], - "CSS template": ["Templates CSS"], - "CSS template could not be deleted.": [ - "Le template CSS n'a pas pu être supprimé." + "Saved query parameters are invalid.": [ + "Les paramètres des requêtes sauvegardées sont invalides." ], - "CSS template name": ["Nom du template"], - "CSS template not found.": ["Template CSS non trouvé."], - "CSS templates": ["Templates CSS"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Fichier CSV \"%(csv_filename)s\" chargé dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\"" + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["Le tableau de bord n'existe pas"], + "Chart does not exist": ["Le graphique n'existe pas"], + "Database is required for alerts": [ + "Une base de données est requise pour les alertes" ], - "CSV to Database configuration": [ - "Configuration de CSV vers base de données" + "Type is required": ["Le type est requis"], + "Choose a chart or dashboard not both": [ + "Choisissez un graphique ou un tableau de bord, pas les deux" ], - "CSV upload": ["Charger un CSV"], - "CTAS & CVAS SCHEMA": ["SCHEMA CTAS & CVAS"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. Assurez-vous que la requête a bien un SELECT en dernière instruction. Puis essayez d'exécuter votre requête à nouveau." + "Please save your chart first, then try creating a new email report.": [ + "Merci de sauvegarder votre graphique d'abord, créez ensuite un nouveau rapport email." ], - "CTAS Schema": ["Schéma CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "Le CVAS (create view as select) ne peut être exécuté qu'avec une requête contenant une seule instruction SELECT. Assurez-vous que la requête a bien une seule instruction SELECT. Puis essayez d'exécuter votre requête à nouveau." + "Please save your dashboard first, then try creating a new email report.": [ + "Merci de sauvegarder votre tableau de bord d'abord, créez ensuite un nouveau rapport email." ], - "CVAS (create view as select) query has more than one statement.": [ - "La requête CVAS (create view as select) a plus d'une instruction." + "Report Schedule parameters are invalid.": [ + "Les paramètres des planification de rapport sont invalides." ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "La requête CVAS (create view as select) n'est pas une instruction SELECT." + "Report Schedule could not be created.": [ + "La planification de rapport n'a pas pu être créée." ], - "Cache Timeout": ["Cache timeout"], - "Cache Timeout (seconds)": ["Timeout du cache (secondes)"], - "Cache timeout": ["Cache timeout"], - "Cached %s": ["En cache %s"], - "Cached value not found": ["Valeur en cache non trouvée"], - "Calculated column [%s] requires an expression": [ - "La colonne calculée [%s] nécessite une expression" + "Report Schedule could not be updated.": [ + "La planification de rapport n'a pas pu être mise à jour." ], - "Calculated columns": ["Colonnes calculées"], - "Calculation type": ["Choisir un type de calcul"], - "Calendar Heatmap": ["Calendrier Carte de chaleur"], - "Can not move top level tab into nested tabs": [ - "On ne peut déplacer un onglet top level vers des onglets imbriqués" + "Report Schedule not found.": ["Planification de rapport introuvable."], + "Report Schedule delete failed.": [ + "La planification de rapport n'a pas être supprimée." ], - "Can select multiple values": ["Peut selectionner plusieurs valeurs"], - "Can't have overlap between Series and Breakdowns": [ - "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" + "Report Schedule log prune failed.": [ + "Le log de la planification de rapport n'a pas pu être élagué." ], - "Cancel": ["Annuler"], - "Cancel query on window unload event": [ - "Annule la requête quand on quitte la fenêtre" + "Report Schedule execution failed when generating a screenshot.": [ + "L'exécution de la planification de rapport a échoué à la génération de la copie d'écran." ], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [ - "Impossible de supprimer une base de données qui a des jeux de données rattachés" + "Report Schedule execution failed when generating a csv.": [ + "L'exécution de la planification de rapport a échoué à la génération d'un csv." ], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Impossible d'importer le tableau de bord : %(db_error)s.\nAssurez vous de créer d'abord la base de données avant d'importer le tableau de bord." + "Report Schedule execution failed when generating a dataframe.": [ + "L'exécution de la planification de rapport a échoué à la génération d'un dataframe." ], - "Cannot load filter": ["Impossible de charger le filtre"], - "Cannot parse time string [%(human_readable)s]": [ - "Ne peut pas parser la chaîne de temps [%(human_readable)s]" + "Report Schedule execution got an unexpected error.": [ + "L'exécution de la planification de rapport a rencontré une erreur inattendue." ], - "Categories to group by on the x-axis.": [""], - "Category": ["Catégorie"], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell content": ["Contenu de cellule"], - "Certification details": ["Détails de certification"], - "Certified By": ["Certifié Par"], - "Certified by": ["Certifié par"], - "Certified by %s": ["Certifié par %s"], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": ["Modifié par"], - "Changed on": ["Modifié le"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Changer le jeu de données peut mettre en erreur le graphiquesi celui-ci s'appuie sur des colonnes ou une métadonnées qui n'existe pas dans le jeu de données cible" + "Report Schedule is still working, refusing to re-compute.": [ + "La planification de rapport est toujours en cours d'exécution, refus de re-traiter." ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "La modification de ces paramètres affectera tous les graphiques qui utilisent ce jeu de données, y compris les graphiques qui appartiennent à d'autres personnes." + "Report Schedule reached a working timeout.": [ + "La planification de rapport a atteint un timeout d'exécution." ], - "Changing this Dashboard is forbidden": [ - "Modifier ce tableau de bord est interdit" + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [ + "La requête a retourné plus d'une ligne." ], - "Changing this chart is forbidden": [ - "Modifier ce graphique est interdit" + "Alert validator config error.": [ + "Erreur de configuration du validateur." ], - "Changing this control takes effect instantly": [ - "La modification de ce contrôle prendra effet immédiatement" + "Alert query returned more than one column.": [ + "La requête a retourné plus d'une colonne." ], - "Changing this dataset is forbidden": [ - "Changer ce jeu de données est interdit" + "Alert query returned a non-number value.": [ + "La requête a retourné une valeur non numérique." ], - "Changing this dataset is forbidden.": [ - "Modifier ce jeu de données est interdit." + "Alert found an error while executing a query.": [ + "Une erreur a été rencontrée lors de l'exécution de la requête." ], - "Changing this report is forbidden": [ - "Il est interdit de changer ce rapport" + "A timeout occurred while executing the query.": [ + "Un timeout s'est produit lors de l'exécution de la requête." ], - "Character to interpret as decimal point.": [ - "Caractère à interpréter comme un point décimal." + "A timeout occurred while taking a screenshot.": [ + "Dépassement de délai lors d'une capture d'écran." ], - "Chart": ["Graphique"], - "Chart %(id)s not found": ["Graphique %(id)s non trouvé"], - "Chart Cache Timeout": ["Timeout du cahce du graphique"], - "Chart ID": ["ID Graphique"], - "Chart [{}] has been overwritten": ["Le graphique [{}] a été écrasé"], - "Chart [{}] has been saved": ["Le graphique [{}] a été sauvegardé"], - "Chart [{}] was added to dashboard [{}]": [ - "Graphique [{}] ajouté au tableau de bord [{}]" + "A timeout occurred while generating a csv.": [ + "Dépassement de délai lors de la génération d'un CSV." ], - "Chart cache timeout": ["Timeout du cache du graphique"], - "Chart changes": ["Changements de graphique"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "Composant graphique sui vous laisse ajouter un filtre personnalisé dans votre tableau de bord. Quand elle est ajouteé au tableau de bord, une boîte de filtrage permet à l'utilisateur de choisir des valeurs ou plages spécifiques pour filtrer les graphiques. Les graphiques concernés par chaque filtre peuvent être réglés finement dans la vue Tableau de bord.\n\n Notez que ce plugin est remplacé par la nouvelle fonction Filtres qui est présente dans cette vue Tableau de bord. C'est plus facile à utiliser et offre plus de possibilités !" + "A timeout occurred while generating a dataframe.": [ + "Dépassement de délai lors de la génération d'un dataframe." ], - "Chart could not be created.": ["Le graphique n'a pas pu être créé."], - "Chart could not be deleted.": ["Le graphique n'a pas pu être supprimé."], - "Chart could not be updated.": [ - "Le graphique n'a pas pu être mis à jour." + "Alert fired during grace period.": [ + "Alerte déclenchée pendant la période de grâce." ], - "Chart does not exist": ["Le graphique n'existe pas"], - "Chart has no query context saved. Please save the chart again.": [ - "Le graphique n'a pas de contexte de requête sauvegardé. Veuillez sauver le graphique à nouveau." + "Alert ended grace period.": [ + "L'alerte a mis fin à la période de grâce." ], - "Chart name": ["Nom du graphique"], - "Chart parameters are invalid.": [ - "Les paramètres du graphique sont invalides." + "Alert on grace period": ["Alerte sur la période de grace"], + "Report Schedule state not found": [ + "Etat du programme de rapport introuvable" ], - "Chart type": ["Type de graphique"], - "Chart type requires a dataset": [""], - "Charts": ["Graphiques"], - "Charts could not be deleted.": [ - "Les graphiques n'ont pas pu être supprimés." + "Report schedule unexpected error": [ + "Erreur inattendue du programme de rapport" ], - "Check configuration": ["Vérifier la configuration"], - "Check for sorting ascending": ["Cocher pour trier par ordre croissant"], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "" + "Changing this report is forbidden": [ + "Il est interdit de changer ce rapport" ], - "Check out this chart in dashboard:": [ - "Vérifiez ce graphique dans le tableau de bord :" + "An error occurred while pruning logs ": [ + "Une erreur s'est produite le traitement des logs " ], - "Check out this chart: ": ["Vérifiez ce tableau de bord : "], - "Check out this dashboard: ": ["Vérifiez ce tableau de bord : "], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Cocher pour appliquer les filtres instantanément dès qu'ils changent aulieu d'afficher le bouton [Appliquer]" + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "Impossible de trouver la base de données référencée dans cette requête. Merci de contacter un administrateur pour obtenir davantage d'aide ou bien d'essayer à nouveau." ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [ - "Cocher pour inclure la liste déroulante colonne Temps" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "La requête associée à ces résultats n'a pu être trouvée. Rejouez la requête originale." ], - "Check to include time grain dropdown": [ - "Cocher pour inclure la liste déroulante de granularité de temps" + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Impossible de récupérer les données depuis le backend. Rejouez la requête originale." ], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [ - "Le [Label] choisi doit être présent dans [Grouper par]" + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Impossible de désérialiser la donnée. Le format de stockage peut avoir changé. Rejouez la requête originale." ], - "Choice of [Point Radius] must be present in [Group By]": [ - "Le [Point Radius] doit être présent dans [Grouper par]" + "Invalid result type: %(result_type)s": [ + "Type de résultat invalide : %(result_type)s" ], - "Choose File": ["Choisissez un fichier"], - "Choose a chart or dashboard not both": [ - "Choisissez un graphique ou un tableau de bord, pas les deux" + "The chart does not exist": ["Le graphique n'existe pas"], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Doublons de libellés colonne/métrique : %(labels)s. Veuillez vous assurer que toutes les colonnes et métriques ont des libellés uniques." ], - "Choose a dataset": ["Choisissez un jeu de donnée"], - "Choose a metric for right axis": [ - "Choisir une mesure pour l'axe de droite" + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Les entrées suivantes dans `series_columns` sont manquantes dans `columns`: %(columns)s. " ], - "Choose chart type": ["Choisissez un type de graphique"], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": [ - "Choisir le type de couche d'annotations" + "`operation` property of post processing object undefined": [ + "La propriété `operation` de l'objet de post-traitement est indéfinie" ], - "Choose the source of your annotations": [ - "Choisir la source de vos annotations" + "Unsupported post processing operation: %(operation)s": [ + "Opération de post-traitement non supportée : %(operation)s" ], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "" + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Erreur dans l'expression jinja dans la réupération du prédicat des valeurs : %(msg)s" ], - "Chord Diagram": [""], - "Chosen non-numeric column": ["Colonne non numérique choisie"], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "" + "Virtual dataset query must be read-only": [ + "La requête du jeu de données virtuel doit être en lecture seule" ], - "Clause": ["Clause"], - "Clear": ["Effacer"], - "Clear all": ["Effacer tout"], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "" + "Error while rendering virtual dataset query: %(msg)s": [ + "Erreur durant le rendu de la requête du jeu de données virtuel : %(msg)s" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ - "" + "Virtual dataset query cannot be empty": [ + "La requête du jeu de données virtuel ne peut pas être vide" ], - "Click the lock to make changes.": [ - "Cliquez sur le cadenas pour apporter des modifications." + "Virtual dataset query cannot consist of multiple statements": [ + "La requête du jeu de données virtuel ne peut pas comporter plusieurs instructions" ], - "Click the lock to prevent further changes.": [ - "Cliquez sur le cadenas pour empêcher d'autres modifications." + "Error in jinja expression in RLS filters: %(msg)s": [ + "Erreur dans l'expression jinja des filtres RLS : %(msg)s" ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "Cliquez sur ce lien pour basculer sur un autre formulaire qui vous permettra d'entrer manuellement l'URL SQLAlchemy pour cette base de données." + "Metric '%(metric)s' does not exist": [ + "La métrique '%(metric)s' n'existe pas" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "Cliquez sur ce lien pour basculer sur un autre formulaire qui ne montrera que les champs nécessaires pour se connecter à cette base de données." + "Db engine did not return all queried columns": [ + "La base de données n'a pas retourné toutes les colonnes demandées" ], - "Click to cancel sorting": [""], - "Click to edit": ["Cliquer pour modifier"], - "Click to edit label": ["Cliquer pour éditer le Label"], - "Click to favorite/unfavorite": ["Cliquez pour favori ou non"], - "Click to force-refresh": ["Cliquer pour forcer le rafraîchissement"], - "Click to see difference": ["Cliquer pour voir la différence"], - "Close": ["Fermer"], - "Close all other tabs": ["Fermer tous les autres onglets"], - "Close tab": ["Fermer l'onglet"], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": ["Code"], - "Collapse all": ["Tout réduire"], - "Color": ["Couleur"], - "Color +/-": [""], - "Color bounds": [""], - "Color metric": ["Métrique de couleur"], - "Color scheme": ["Jeu de couleur"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ - "" + "Only `SELECT` statements are allowed": [ + "Seules les instructions `SELECT` sont autorisées" + ], + "Only single queries supported": [ + "Seules les requêtes simples sont autorisées" + ], + "Columns": ["Colonnes"], + "Show Column": ["Afficher la colonne"], + "Add Column": ["Ajouter une colonne"], + "Edit Column": ["Éditer une colonne"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "S'il faut que cette colonne soit accessible comme une option [Time Granularity], elle doit être DATETIME ou d'un format équivalent" + ], + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Si cette colonne doit apparaître dans la section `Filtres` de la page exploration." + ], + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Le type de donnée inféré par la base de données. Il peut être nécessaire de le rentrer manuellement pour les colonnes définissant des expressions dans certains cas. Dans la plupart des cas il n'est pas nécessaire de le modifier." ], - "Colors": ["Couleur"], "Column": ["Colonne"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "La colonne \"%(column)s\" n'est pas numérique ou n'existe pas dans les résultats de requêtes." + "Verbose Name": ["Nom explicite"], + "Description": ["Description"], + "Groupable": ["Groupable"], + "Filterable": ["Filtrable"], + "Table": ["Table"], + "Expression": ["Expression"], + "Is temporal": ["Est temporel"], + "Datetime Format": ["Format Datetime"], + "Type": ["Type"], + "Business Data Type": [""], + "Invalid date/timestamp format": ["Format date/timestamp invalide"], + "Metrics": ["Métriques"], + "Show Metric": ["Afficher la métrique"], + "Add Metric": ["Ajouter une métrique"], + "Edit Metric": ["Éditer la métrique"], + "Metric": ["Métrique"], + "SQL Expression": ["Expression SQL"], + "D3 Format": ["Format D3"], + "Extra": ["Extra"], + "Warning Message": ["Message d'avertissement"], + "Tables": ["Tables"], + "Show Table": ["Afficher les tables"], + "Import a table definition": ["Importer la définition d'une table"], + "Edit Table": ["Éditer la table"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "La liste des graphiques associés à cette table. En alterant cette source de données, vous pouvez changer le comportement des graphiques associés. Aussi notez que les graphiques doivent pointer vers une source de données, alors ce formulaire ne pourra pas être enregistré si des graphiques sont retirés d'une source de données. Si vous voulez changer la source de données d'un graphique, écraser le graphique depuis la 'vue d'exploration'" ], - "Column Label(s)": ["Labels) de colonne"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "" + "Timezone offset (in hours) for this datasource": [ + "Timezone offset (en heure) de cette source de données" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column is required": ["Colonne requise"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Label de colonne pour l'index de colonne(s). Si aucun label est donné et que l'index du tableau de données est Vrai, alors les noms d'Index sont utilisés." + "Name of the table that exists in the source database": [ + "Nom de la table qui existe dans la base de données source" ], - "Column name [%s] is duplicated": ["Le nom de colonne [%s] est dupliqué"], - "Column referenced by aggregate is undefined: %(column)s": [ - "La colonne référencée dans l'agrégat est indéfinie: %(column)s" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Schéma, utilisé uniquement dans certaines bases de données comme Postgres, Redshift et DB2" ], - "Column select": ["Sélection d'une colonne"], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Colonne à utiliser comme labelle de ligne du tableau de données. Laissez vide si pas d'index de colonne." + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Ces champs agissent comme une vue Superset, i.e. Superset va lancer une requête pour cette expression comme une sous-requête." ], - "Columnar File": ["Fichier en colonnes"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Fichier en colonne \"%(columnar_filename)s\" chargé dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\"" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Prédicat appliqué à la récupération des valeurs distinctes pour remplir le filtre de contrôle des composants. Supporte la syntaxe Jinja. S'applique uniquement si `Activer le filtre` est coché." ], - "Columnar to Database configuration": [ - "Configuration des colonnes vers la base de données" + "Redirects to this endpoint when clicking on the table from the table list": [ + "Redirige à cet endpoint quand on clique sur la table depuis la liste des tables" ], - "Columns": ["Colonnes"], - "Columns missing in datasource: %(invalid_columns)s": [ - "Colonnes absentes de la source de données : %(invalid_columns)s" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Faut-il remplir à la volée les choix du filtre de la section filtre de la page d'exploration avec la liste des valeurs distinctes répérées depuis le backend" ], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to group by": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Si la table a été générée par le flow 'Visualiser' dans SQL Lab" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Un ensemble de paramètre qui seront disponible dans la requête utilisant la syntaxe du template Jinja" ], - "Comparator option": ["Option comparateur"], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "Comparer rapidement des graphiques de multiple séries temporelles et leurs métriques." + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Durée (en secondes) du timeout du cache pour cette table. Un timeout à 0 indique que le cache n'expire jamais. Notez que le timeout de la base de données par défaut est undefined." ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "" + "Associated Charts": ["Les graphiques associés"], + "Changed By": ["Modifié par"], + "Database": ["Base de données"], + "Last Changed": ["Dernière modification"], + "Enable Filter Select": ["Activer le filtre de sélection"], + "Schema": ["Schéma"], + "Default Endpoint": ["Endpoint par défaut"], + "Offset": ["Décalage (offset)"], + "Cache Timeout": ["Cache timeout"], + "Table Name": ["Nom de la table"], + "Fetch Values Predicate": ["Récupérer les valeurs des prédicats"], + "Owners": ["Propriétaires"], + "Main Datetime Column": ["Colonne Datetime principale"], + "SQL Lab View": ["Vue SQL Lab"], + "Template parameters": ["Les paramètres du modèle"], + "Modified": ["Modifié"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "La table a été créée. Dans le cadre de cette configuration en deux étapes, vous devez maintenant cliquer sur le bouton d'édition de la nouvelle table pour la configurer." ], - "Comparison": ["Comparaison"], - "Comparison Period Lag": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [ - "Calculer la contribution au total" + "Deleted %(num)d css template": [ + "Template css %(num)d supprimé", + "Templates css %(num)d supprimés" ], - "Condition": ["Condition"], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "L'intervalle de confiance doit être entre 0 et 1 (exclusif)" + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": [ + "%(num)d tableau de bord supprimé", + "%(num)d tableaux de bord supprimés" ], - "Configuration": ["Configuration"], - "Configure Advanced Time Range ": [ - "Configurer Intervalle de temps avancé " + "Title or Slug": ["Titre"], + "Role": ["Profil"], + "Table name undefined": ["Nom de la table non défini"], + "Field cannot be decoded by JSON. %(msg)s": [ + "Le champ ne peut pas être décodé par JSON. %(msg)s" ], - "Configure Time Range: Last...": [ - "Configurer intervalle de temps : Dernier ..." + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Le paramètre metadata_params dans Champ supplémentaire n'est pas correctement configuré. La clé %(key)s est invalide." ], - "Configure Time Range: Previous...": [ - "Configurer intervalle de temps : Précédent ..." + "An engine must be specified when passing individual parameters to a database.": [ + "Un moteur doit être fournit lorsque l'on passe des paramètres individuels à la base de données." ], - "Configure custom time range": [ - "Configurer un intervalle de temps personnalisée" + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "La spec moteur \"InvalidEngine\" ne supporte pas d'être configuré via des paramètres individuels." ], - "Configure filter scopes": ["Configurer la portée du filtre"], - "Configure the basics of your Annotation Layer.": [ - "Configurer les bases de votre couche d'annotations." + "Deleted %(num)d dataset": [ + "%(num)d jeu de données supprimé", + "%(num)d jeux de données supprimés" ], - "Configure this dashboard to embed it into an external web application.": [ - "" - ], - "Configure your how you overlay is displayed here.": [ - "Configurer comment votre superposition est affichée ici." + "Null or Empty": ["Null ou Vide"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Veuillez corriger une erreur de syntaxe dans la requête près de \"%(syntax_error)s\". Puis essayez de relancer la requête." ], - "Confirm save": ["Confirmez la sauvegarde"], - "Connect": ["Connecter"], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [ - "Connecter à cette base de données les feuilles Google Sheet comme des tables" + "Second": ["Seconde"], + "5 second": ["5 secondes"], + "30 second": ["30 secondes"], + "Minute": ["Minute"], + "5 minute": ["5 minutes"], + "10 minute": ["10 minutes"], + "15 minute": ["15 minutes"], + "30 minute": ["30 minutes"], + "Hour": ["Heure"], + "6 hour": ["6 heures"], + "Day": ["Jour"], + "Week": ["Semaine"], + "Month": ["Mois"], + "Quarter": ["Trimestre"], + "Year": ["Année"], + "Week starting Sunday": ["Semaine débutant le dimanche"], + "Week starting Monday": ["Semaine débutant le lundi"], + "Week ending Saturday": ["Semaine terminant le samedi"], + "Username": ["Nom d'utilisateur"], + "Password": ["Mot de passe"], + "Hostname or IP address": ["Nom d'hôte ou adresse IP"], + "Database port": ["Port de la base de données"], + "Database name": ["Nom de la base de données"], + "Additional parameters": ["Paramètres supplémentaires"], + "Use an encrypted connection to the database": [ + "Utiliser une connexion cryptée vers la base de données" ], - "Connect a database": ["Connecter une base de données"], - "Connect database": ["Connexion à la base de données"], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": ["Connexion"], - "Connection failed, please check your connection settings": [ - "La connexion a échoué, veuillez vérifier vos paramètres de connexion" + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "" ], - "Connection looks good!": [""], - "Continuous": [""], - "Contribution": ["Contribution"], - "Control labeled ": ["Contrôle libellé "], - "Controls labeled ": ["Contrôles libellés "], - "Copied to clipboard!": ["Copié vers le presse-papier !"], - "Copy": ["Copier"], - "Copy SELECT statement to the clipboard": [ - "Copier l'étape SELECT vers le presse-papier" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "La table \"%(table)s\" n'existe pas. Une table valide doit être utilisée pour cette requête." ], - "Copy and Paste JSON credentials": [ - "Copier et coller les informations de connexion JSON" + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Nous ne pouvons résoudre la colonne \"%(column)s\" à la ligne %(location)s." ], - "Copy and paste the entire service account .json file here": [ - "Copier et coller ici le fichier de service .json en entier" + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Le schéma \"%(schema)s\" n'existe pas. Un schéma valide doit être utilisé pour cette requête." ], - "Copy link": ["Copier le lien"], - "Copy message": ["Copier le message"], - "Copy of %s": ["Copie de %s"], - "Copy partition query to clipboard": [ - "Copier la requête de partition vers le presse-papier" + "Either the username \"%(username)s\" or the password is incorrect.": [ + "L'utilisateur \"%(username)s\" ou le mot de passe est incorrect." ], - "Copy permalink to clipboard": ["Copier le lien dans le presse-papiers"], - "Copy query URL": ["Copier l'URL de la requête"], - "Copy query link to your clipboard": [ - "Copier le lien de la requête vers le presse-papier" + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être atteint." ], - "Copy the account name of that database you are trying to connect to.": [ - "Copier le nom du compte de la base de données à laquelle vous essayez de vous connecter." + "Unable to connect to database \"%(database)s\".": [ + "Impossible de se connecter à la base de données \"%(database)s\"." ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy to Clipboard": ["Copier vers le presse-papier"], - "Copy to clipboard": ["Copier vers le presse-papier"], - "Cost estimate": ["Estimation coût"], - "Could not determine datasource type": [ - "Impossible de déterminer le type de source de données" + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Veuillez corriger une erreur de syntaxe dans la requête près de \"%(server_error)s\". Puis essayez de relancer la requête." ], - "Could not fetch all saved charts": [ - "Impossible de récupérer tous les graphiques sauvegardés" + "We can't seem to resolve the column \"%(column_name)s\"": [ + "Nous ne pouvons résoudre la colonne \"%(column_name)s\"" ], - "Could not find viz object": ["Impossible de trouver l'objet viz"], - "Could not load database driver": [ - "Le driver de la base de données n'a pas pu être chargé" + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Soit l'utilisateur \"%(username)s\", le mot de passe, ou le nom de la base de données \"%(database)s\" est incorrect." ], - "Could not load database driver: %(driver_name)s": [ - "Impossible de charger le driver de base de donnée: %(driver_name)s" + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "Le nom d'hôte \"%(hostname)s\" ne peut pas être résolu." ], - "Could not load database driver: {}": [ - "Ce driver de la base de données n'a pas pu être chargé : {}" + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Le port %(port)s sur l'hôte \"%(hostname)s\" a refusé la connexion." ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country Field Type": [""], - "Country Map": ["Carte de pays"], - "Create": ["Créer"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "" + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être atteint sur le port %(port)s." ], - "Create a new chart": ["Créer un nouveau graphique"], - "Create chart with dataset": [""], - "Create new chart": ["Créer un nouveau graphique"], - "Create new filter set": ["Créer un nouvel ensemble de filtre"], - "Create or select schema...": ["Créer ou sélectionner schéma ..."], - "Created": ["Créé le"], - "Created On": ["Créé le"], - "Created by": ["Créé par"], - "Created content": ["Contenu créé"], - "Created on": ["Créé le"], - "Creating a data source and creating a new tab": [ - "Créer une source de données et ouvrir un nouvel onglet" + "Unknown MySQL server host \"%(hostname)s\".": [ + "Hôte MySQL \"%(hostname)s\" inconnu." ], - "Creator": ["Créateur"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "Le filtre va être appliqué à tous les graphiques qui utilise cet ensemble de données" + "The username \"%(username)s\" does not exist.": [ + "L'utilisateur \"%(username)s\" n'existe pas." ], - "Currently rendered: %s": [""], - "Custom": ["Personnalisée"], - "Custom Plugin": ["Plugin custom"], - "Custom Plugins": ["Plugins custom"], - "Custom SQL": ["SQL personnalisé"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "Les métriques ad-hoc pour le SQL personnalisé ne sont pas disponibles pour ce dataset" + "The user/password combination is not valid (Incorrect password for user).": [ + "" ], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": ["Personnaliser"], - "Cyclic dependency detected": [""], - "D3 Format": ["Format D3"], - "D3 format": ["Format D3"], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": ["DEC"], - "DELETE": ["EFFACER"], - "DML": ["DML"], - "Daily seasonality": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["Tableau de bord"], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [ + "Le mot de passe fourni pour l'utilisateur \"%(username)s\" est incorrect." ], - "Dashboard could not be created.": [ - "Le tableau de bord n'a pas pu être créé." + "Please re-enter the password.": ["Veuillez re-saisir le mot de passe."], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Nous ne pouvons résoudre la colonne \"%(column_name)s\" à la ligne %(location)s." ], - "Dashboard could not be deleted.": [ - "Le tableau de bord n'a pas pu être supprimé." + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "La table \"%(table_name)s\" n'existe pas. Une table valide doit être utilisée pour cette requête." ], - "Dashboard could not be updated.": [ - "Le tableau de bord n'a pas pu être mis à jour." + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Le schéma \"%(schema_name)s\" n'existe pas. Un schéma valide doit être utilisé pour cette requête." ], - "Dashboard does not exist": ["Le tableau de bord n'existe pas"], - "Dashboard parameters are invalid.": [ - "Les paramètres du tableau de bord sont invalides." + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "Impossible de se connecter au catalogue \"%(catalog_name)s\"." ], - "Dashboard properties": ["Propriétés du tableau de bord"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "" + "Unknown Presto Error": ["Erreur Presto inconnue"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Nous n'avons pas pu nous connecter à votre base de données \"%(database)s\". Veuillez vérfier le nom de la base et réessayez." ], - "Dashboards": ["Tableaux de bord"], - "Dashboards could not be deleted.": [ - "Les tableaux de bord n'ont pas pu être supprimés." + "%(object)s does not exist in this database.": [ + "%(object)s n'existe pas dans cette base de données." ], - "Dashboards do not exist": ["Les tableaux de bord n'existent pas"], + "Home": ["Accueil"], "Data": ["Données"], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "Impossible de désérialiser la donnée. Le format de stockage peut avoir changé. Rejouez la requête originale." + "Dashboards": ["Tableaux de bord"], + "Charts": ["Graphiques"], + "Datasets": ["Jeux de données"], + "Plugins": ["Plugins"], + "Manage": ["Gestion"], + "CSS Templates": ["Templates CSS"], + "SQL Lab": ["SQL Lab"], + "SQL": ["SQL"], + "Saved Queries": ["Requêtes sauvegardées"], + "Query History": ["Historiques des requêtes"], + "Tags": ["Tags"], + "Action Log": ["Journaux d'actions"], + "Security": ["Sécurité"], + "Alerts & Reports": ["Alertes et rapports"], + "Annotation Layers": ["Couches d'annotations"], + "Row Level Security": ["Sécurité de niveau ligne"], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Colonne Datetime non fournie dans la configuration alors qu'elle est requise pour ce type de graphique" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Impossible de récupérer les données depuis le backend. Rejouez la requête originale." + "Empty query?": ["Requête vide ?"], + "Unknown column used in orderby: %(col)s": [ + "Colonne inconnue utilisée dans le tri %(col)s" ], - "Data has no time steps": [""], - "Data preview": ["Prévisualiser les données"], - "Data refreshed": ["Données rafraîchies"], - "Data type": ["Type de donnée"], - "DataFrame include at least one series": [ - "DataFrame doit comprendre au moins une série" + "Time column \"%(col)s\" does not exist in dataset": [ + "La colonne temporelle \"%(col)s\" n'existe pas dans le jeu de données" ], - "DataFrame must include temporal column": [ - "Dataframe doit inclure une colonne temporelle" + "Filter value list cannot be empty": [ + "La liste de valeurs du filtre ne peut pas être vide" ], - "Database": ["Base de données"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est pas autorisée pour les téléversements en colonne. Contactez votre administrateur Superset." + "Must specify a value for filters with comparison operators": [ + "Il faut spécifier une valeur pour les filtres avec opérateurs de comparaison" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est pas autorisée pour les téléversements csv. Contactez votre administrateur Superset." + "Invalid filter operation type: %(op)s": [ + "Type d'opération de filtrage invalide : %(op)s" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est pas autorisée pour les téléversements Excel. Contactez votre administrateur Superset." + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Erreur d'expression jinja dans la clause WHERE : %(msg)s" ], - "Database URL": ["URL de la base de données"], - "Database could not be created.": [ - "La base de données n'a pas pu être créée." + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Erreur d'expression jinja dans la clause HAVING : %(msg)s" ], - "Database could not be deleted.": [ - "La base de données n'a pas pu être supprimée." + "Database does not support subqueries": [ + "La base de données n'autorise pas les sous-requêtes" ], - "Database could not be updated.": [ - "La base de données n'a pas pu être mise à jour." - ], - "Database does not allow data manipulation.": [ - "La base de données ne permet pas la manipulation de données." - ], - "Database does not exist": ["La base de données n'existe pas"], - "Database does not support subqueries": [ - "La base de données n'autorise pas les sous-requêtes" - ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "" + "Deleted %(num)d saved query": [ + "%(num)d requête sauvegardée supprimée", + "%(num)d requêtes sauvegardées supprimées" ], - "Database error": ["Erreur de base de données"], - "Database is offline.": ["La base de données est hors-ligne."], - "Database is required for alerts": [ - "Une base de données est requise pour les alertes" + "Deleted %(num)d report schedule": [ + "%(num)d planification de rapport supprimée", + "%(num)d planifications de rapport supprimées" ], - "Database name": ["Nom de la base de données"], - "Database not allowed to change": [ - "La base de données ne peut pas être changée" + "Value must be greater than 0": ["La valeur doit être plus grande que 0"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [ + "\n Erreur: %(text)s\n " ], - "Database not found.": ["Base de donnée non trouvée."], - "Database parameters are invalid.": [ - "Les paramètres de base de données sont invalides." + "%(name)s.csv": ["%(name)s.csv"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explorer dans Superset>\n\n%(table)s\n" ], - "Database port": ["Port de la base de données"], - "Databases": ["Bases de données"], - "Dataframe Index": ["Index du tableau de données"], - "Dataset": ["Jeu de données"], - "Dataset %(name)s already exists": [ - "Le jeu de données %(name)s existe déjà" + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ + "*%(name)s*\n\n%(description)s\n\nErreur: %(text)s\n" ], - "Dataset column delete failed.": [ - "La suppression de la colonne du jeu de données a échoué." + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s ne peut pas être utilisé comme source de données pour des raisons de sécurité." ], - "Dataset column not found.": ["Colonne du jeu de données introuvable."], - "Dataset could not be created.": [ - "Le jeu de données n'a pas pu être créé." + "Guest user cannot modify chart payload": [""], + "Failed to execute %(query)s": [""], + "The parameter %(parameters)s in your query is undefined.": [ + "Le paramètre %(parameters)s de votre requête est indéfini.", + "Les paramètres suivants de votre requête sont indéfinis : %(parameters)s." ], - "Dataset could not be deleted.": [ - "Le jeu de données n'a pas pu être supprimé." + "The query contains one or more malformed template parameters.": [ + "Cette requête contient un ou plusieurs paramètres de modèle malformé(s)." ], - "Dataset could not be updated.": [ - "Le jeu de données n'a pas pu être mis à jour." + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Merci de vérifier votre requête et de confirmer que tous les paramètres du modèle sont entourés par des doubles accolades, par exemple, \"{{ ds }}\". Puis ré essayez ." ], - "Dataset does not exist": ["Le jeu de données n'existe pas"], - "Dataset is required": ["Un jeu de données est obligatoire"], - "Dataset metric delete failed.": [ - "La suppression de la métrique du jeu de données a échoué." + "Tag name is invalid (cannot contain ':')": [""], + "Record Count": ["Nombre d'enregistrements"], + "No records found": ["Aucun enregistrement trouvé"], + "Filter List": ["Filtres"], + "Search": ["Recherche"], + "Refresh": ["Forcer à rafraîchir"], + "Import dashboards": ["Import des tableaux de bord"], + "Import Dashboard(s)": ["Importer des tableaux de bords"], + "File": ["Fichier"], + "Choose File": ["Choisissez un fichier"], + "Upload": ["Téléverser"], + "Test Connection": ["Test de connexion"], + "Unsupported clause type: %(clause)s": [ + "Type de clause non supportée: %(clause)s" ], - "Dataset metric not found.": ["Métrique du jeu de données non trouvée."], - "Dataset name": ["Nom du jeu de donnée"], - "Dataset parameters are invalid.": [ - "Les paramètres du jeu de données sont invalides." + "Unable to find such a holiday: [%(holiday)s]": [ + "Impossible de trouver un tel congé : [%(holiday)s]" ], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [ - "Les jeux de données n'ont pas pu être supprimés par lot." + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "percentiles doit être une liste ou un couple de 2 valeurs dont le premier est inférieur au second" ], - "Datasets": ["Jeux de données"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "" + "`compare_columns` must have the same length as `source_columns`.": [ + "`compare_columns` doit être de même longueur que `source_columns`." ], - "Datasets do not contain a temporal column": [ - "Les jeux de données ne comportent pas de colonne temporelle" + "`compare_type` must be `difference`, `percentage` or `ratio`": [ + "`compare_type` doit être `difference`, `percentage` or `ratio`" ], - "Datasource": ["Source de données"], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [ - "Le type de source de données est requis quand datasource_id est spécifié" + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "La colonne \"%(column)s\" n'est pas numérique ou n'existe pas dans les résultats de requêtes." ], - "Date filter": ["Filtre de date"], - "Date/Time": ["Date/Heure"], - "Datetime Format": ["Format Datetime"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "Colonne Datetime non fournie dans la configuration alors qu'elle est requise pour ce type de graphique" + "`rename_columns` must have the same length as `columns`.": [ + "`rename_columns` doit être de même longueur que `columns`." ], - "Datetime format": ["Format Datetime"], - "Day": ["Jour"], - "Day (freq=D)": [""], - "Days %s": ["Jours %s"], - "Db engine did not return all queried columns": [ - "La base de données n'a pas retourné toutes les colonnes demandées" + "Invalid cumulative operator: %(operator)s": [ + "Operateur cumulatif invalide: %(operator)s" ], - "December": ["Décembre"], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": ["Caractère décimal"], - "Deck.gl - 3D Grid": ["Deck.gl - Grille 3D"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], - "Deck.gl - Arc": ["Deck.gl - Arc"], - "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], - "Deck.gl - Multiple Layers": ["Deck.gl - Couches Multiples"], - "Deck.gl - Paths": ["Deck.gl - Chemins"], - "Deck.gl - Polygon": ["Deck.gl - Polygone"], - "Deck.gl - Scatter plot": ["Deck.gl - Nuage de points"], - "Deck.gl - Screen Grid": ["Deck.gl - Grille d'écran"], - "Default": ["Par défaut"], - "Default Endpoint": ["Endpoint par défaut"], - "Default URL": ["URL par défaut"], - "Default URL to redirect to when accessing from the dataset list page": [ - "URL par défaut vers laquelle rediriger quand on accède depuisla page qui liste les jeux de données" + "Invalid geohash string": ["Chaine de geohash invalide"], + "Invalid longitude/latitude": ["Invalide Longitude/Latitude"], + "Invalid geodetic string": ["Chaine de géodésie invalide"], + "Pivot operation requires at least one index": [ + "L'opération de pivot nécessite au moins un index" ], - "Default Value": ["Valeur par défaut"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "" + "Pivot operation must include at least one aggregate": [ + "L'opération de pivot nécessite au moins un agrégat" ], - "Default value is required": ["Une valeur par défaut est obligatoire"], - "Default value must be set when \"Filter has default value\" is checked": [ - "" + "`prophet` package not installed": ["`prophet` package non installé"], + "Time grain missing": ["Granularité de temps manquante"], + "Unsupported time grain: %(time_grain)s": [ + "Granularité de Temps non supportée : %(time_grain)s" ], - "Default value must be set when \"Filter value is required\" is checked": [ - "" + "Confidence interval must be between 0 and 1 (exclusive)": [ + "L'intervalle de confiance doit être entre 0 et 1 (exclusif)" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ - "" + "DataFrame must include temporal column": [ + "Dataframe doit inclure une colonne temporelle" ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "" + "DataFrame include at least one series": [ + "DataFrame doit comprendre au moins une série" ], - "Define a function that returns a URL to navigate to when user clicks": [ - "" + "Undefined window for rolling operation": [ + "Fenêtre indéfinie pour l'opération de roulement" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "" + "Window must be > 0": ["La fenêtre doit être > 0"], + "Invalid rolling_type: %(type)s": ["Le rolling_type invalide: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Options invalides pour %(rolling_type)s: %(options)s" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Définit une fonction de fenêtre glissante à appliquer, fonctionne avec le champ texte [Périodes]" + "Referenced columns not available in DataFrame.": [ + "Les colonnes référencées sont indisponibles dans la DataFrame." ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Définit le regroupement d'entités. Chaque série est représentée par une couleur spécifique sur le graphique et masquée/affichée en cliquant sur sa légende" + "Column referenced by aggregate is undefined: %(column)s": [ + "La colonne référencée dans l'agrégat est indéfinie: %(column)s" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Définit la taille de la fonction de fenêtre glissante, par rapport à la granularité temporelle sélectionnée" + "Operator undefined for aggregator: %(name)s": [ + "Opérateur indéfini pour l'agrégat: %(name)s" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "" + "Invalid numpy function: %(operator)s": [ + "Fonction numpy invalide: %(operator)s" ], + "json isn't valid": ["le json n'est pas valide"], + "Export to YAML": ["Exporter au format YAML"], + "Export to YAML?": ["Exporter en YAML?"], "Delete": ["Effacer"], - "Delete %s?": ["Effacer %s ?"], - "Delete Annotation?": ["Supprimer l'annotation ?"], - "Delete Database?": ["Supprimer la base de données ?"], - "Delete Dataset?": ["Supprimer le jeu de données ?"], - "Delete Layer?": ["Effacer couche ?"], - "Delete Query?": ["Supprimer la requête ?"], - "Delete Report?": ["Supprimer le rapport ?"], - "Delete Template?": ["Supprimer template ?"], "Delete all Really?": ["Vraiment tout effacer ?"], - "Delete annotation": ["Supprimer annotation"], - "Delete dashboard tab?": ["Supprimer l'onglet du tableau de bord ?"], - "Delete database": ["Supprimer une base de données"], - "Delete email report": ["Supprimer le rapport par e-mail"], - "Delete query": ["Effacer la requête"], - "Delete template": ["Supprimer un template"], - "Delete this container and save to remove this message.": [ - "Supprimez ce conteneur et sauvegardez pour supprimer ce message." + "Is favorite": ["Favoris"], + "Is tagged": [""], + "The data source seems to have been deleted": [ + "La source de données semble avoir été effacée" ], - "Deleted %(num)d annotation": [ - "%(num)d annotation supprimée", - "%(num)d annotations supprimées" + "The user seems to have been deleted": [ + "L'utilisateur semble avoir été effacé" ], - "Deleted %(num)d annotation layer": [ - "%(num)d couche d'annotations supprimée", - "%(num)d couches d'annotations supprimées" + "Error: %(msg)s": [""], + "Explore - %(table)s": ["Explorer - %(table)s"], + "Explore": ["Explorer"], + "Chart [{}] has been saved": ["Le graphique [{}] a été sauvegardé"], + "Chart [{}] has been overwritten": ["Le graphique [{}] a été écrasé"], + "Chart [{}] was added to dashboard [{}]": [ + "Graphique [{}] ajouté au tableau de bord [{}]" ], - "Deleted %(num)d chart": [ - "%(num)d graphique supprimé", - "%(num)d graphiques supprimés" + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" ], - "Deleted %(num)d css template": [ - "Template css %(num)d supprimé", - "Templates css %(num)d supprimés" + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Requête malformée. Les arguments slice_id ou table_name et db_name sont attendus" ], - "Deleted %(num)d dashboard": [ - "%(num)d tableau de bord supprimé", - "%(num)d tableaux de bord supprimés" + "Chart %(id)s not found": ["Graphique %(id)s non trouvé"], + "Table %(table)s wasn't found in the database %(db)s": [ + "Table %(table)s pas trouvée dans la base de données %(db)s" ], - "Deleted %(num)d dataset": [ - "%(num)d jeu de données supprimé", - "%(num)d jeux de données supprimés" + "Show CSS Template": ["Voir le Template CSS"], + "Add CSS Template": ["Ajouter un Template CSS"], + "Edit CSS Template": ["Modifier le Template CSS"], + "Template Name": ["Nom du template"], + "A human-friendly name": ["Un nom facile à comprendre"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Utilisé en interne pour identifier le plugin. Devrait être le nom du package tiré du fichier plugin package.json" ], - "Deleted %(num)d report schedule": [ - "%(num)d planification de rapport supprimée", - "%(num)d planifications de rapport supprimées" + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Une URL complète désignant le lieu du plugin (pourrait être hébergé sur un CDN par exemple)" ], - "Deleted %(num)d saved query": [ - "%(num)d requête sauvegardée supprimée", - "%(num)d requêtes sauvegardées supprimées" + "Custom Plugins": ["Plugins custom"], + "Custom Plugin": ["Plugin custom"], + "Add a Plugin": ["Ajouter un plugin"], + "Edit Plugin": ["Éditer le plugin"], + "The dataset associated with this chart no longer exists": [ + "Le jeu de donnée associé à ce graphique n'existe plus" ], - "Deleted: %s": ["Supprimé : %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "" + "Could not determine datasource type": [ + "Impossible de déterminer le type de source de données" ], - "Delimited long & lat single column": [ - "Une seule colonne long & lat délimité" + "Could not find viz object": ["Impossible de trouver l'objet viz"], + "Show Chart": ["Afficher le graphique"], + "Add Chart": ["Ajouter un graphique"], + "Edit Chart": ["Modifier le graphique"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Ces paramètres sont généré dynamiquement quand vous cliquez sur Sauvegarder ou forcer dans la page d'exploration. Cet objet JSON est exposé ici comme une référence et pour les experts qui voudraient modifier des paramètres." ], - "Delimiter": ["Délimiteur"], - "Delivery method": ["Méthode de livraison"], - "Demographics": [""], - "Dependent on": ["Dépend de"], - "Description": ["Description"], - "Description (this can be seen in the list)": [ - "Description (cela peut être vu dans la liste)" + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Durée (en seconds) du délai de mise en cache pour ce graphique." + ], + "Creator": ["Créateur"], + "Datasource": ["Source de données"], + "Last Modified": ["Dernière modification"], + "Parameters": ["Paramètres"], + "Chart": ["Graphique"], + "Name": ["Nom"], + "Visualization Type": ["Type de visualisation"], + "Show Dashboard": ["Montrer les tableaux de bords"], + "Add Dashboard": ["Ajouter un tableau de bord"], + "Edit Dashboard": ["Éditer le tableau de bord"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Cet objet JSON décrit la position des widgets dans le tableau de bord. Il est généré dynamiquement quand on ajuste la taille ou la position des widgets via drag and drop dans la vue tableau de bord" + ], + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Le css pour certains tableaux de bords peut être modifié ici, ou dans la page tableaux de bords pour que les changement soient visibles immédiatement" + ], + "To get a readable URL for your dashboard": [ + "Pour avoir une URL lisible pour votre tableau de bord" + ], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Ce JSON a été généré automatiquement quand vous avez cliqué sur sauvegarder ou forcer dans la page des tableaux de bords. Il est exposé ici comme une référence et pour les experts qui voudraient modifier des paramètres." + ], + "Owners is a list of users who can alter the dashboard.": [ + "Owners est une liste d'utilisateurs qui peuvent modifier le tableau de bord." ], - "Description Columns": ["Colonnes de description"], - "Description text that shows up below your Big Number": [""], - "Deselect all": ["Tout Dé-Sélectionner"], - "Details of the certification": ["Détails de la certification"], - "Determines how whiskers and outliers are calculated.": [""], "Determines whether or not this dashboard is visible in the list of all dashboards": [ "Indique si ce tableau de bord est visible dans la liste des tableaux de bord" ], - "Did you mean:": ["Vouliez-vous dire :"], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Directed Force Layout": ["Graphe orienté"], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "" + "Dashboard": ["Tableau de bord"], + "Title": ["Titre"], + "Slug": ["Slug"], + "Roles": ["Profils"], + "Published": ["Publié"], + "Position JSON": ["JSON des positions"], + "CSS": ["CSS"], + "JSON Metadata": ["JSON des méta-données"], + "Export": ["Exporter"], + "Export dashboards?": ["Exporter les tableaux de bords ?"], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Seules les extensions de fichier suivantes sont autorisées : %(allowed_extensions)s" ], - "Disable embedding?": [""], - "Display Name": ["Nom affiché"], - "Display column level total": [""], - "Display configuration": ["Configuration d'affichage"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Display row level total": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Delimiter": ["Délimiteur"], + ",": [""], + ".": [""], + "Other": ["Autres"], + "Fail": ["Echec"], + "Replace": ["Remplacer"], + "Append": ["Ajouter"], + "Skip Initial Space": ["Supprimer l'espace initial"], + "Skip Blank Lines": ["Sauter les lignes vides"], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["Caractère décimal"], + "Index Column": ["Index de colonne"], + "Dataframe Index": ["Index du tableau de données"], + "Column Label(s)": ["Labels) de colonne"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Distribution - Bar Chart": ["Distibution - histogramme"], - "Divider": ["Diviseur"], - "Do you want a donut or a pie?": [""], - "Documentation": ["Documentation"], - "Download": ["Télécharger"], - "Download as image": ["Télécharger comme image"], - "Download to CSV": ["Télécharger en CSV"], - "Draft": ["Brouillon"], - "Drag and drop components and charts to the dashboard": [ - "Glissez/Déposez des composants et des graphiques sur le tableau de bord" + "Header Row": ["Ligne d'en-tête"], + "Rows to Read": ["Lignes à lire"], + "Skip Rows": ["Sauter des lignes"], + "Name of table to be created from excel data.": [ + "Nom de la table à créer à partir des données Excel." ], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill by: %s": ["Trier par %s"], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ - "" + "Excel File": ["Fichier Excel"], + "Select a Excel file to be uploaded to a database.": [ + "Sélectionner un fichier Excel à charger dans une base de données." ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "" + "Sheet Name": ["Nom de la feuille"], + "Strings used for sheet names (default is the first sheet).": [ + "Chaînes utilisées pour les noms des feuilles (par défaut la première feuille)." ], - "Drill to detail: %s": [""], - "Drop columns/metrics here or click": [ - "Supprimer des colonnes/métriques ici ou cliquer" + "Specify a schema (if database flavor supports this).": [ + "Spécifier un schéma (si la base de données soutient cette fonctionnalités)." ], - "Duplicate column name(s): %(columns)s": [ - "Nom(s) de colonne dupliqué: %(columns)s" + "Table Exists": ["La table existe"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Si la table existe, faire une des actions suivantes : Echec (pas d'actions), Remplacer (supprimer et recréer la table) ou Ajouter (insérer les données)." ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "Doublons de libellés colonne/métrique : %(labels)s. Veuillez vous assurer que toutes les colonnes et métriques ont des libellés uniques." + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." ], - "Duplicate tab": ["Dupliquer l'onglet"], - "Duration": ["Durée"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "Durée (en secondes) du timeout de cache pour les graphiques cette base de données. Un timeout de 0 indique que le cache n'expire jamais. Noter que s'il n'est pas défini, c'est le timeout global qui est pris en compte." + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Colonne à utiliser comme labelle de ligne du tableau de données. Laissez vide si pas d'index de colonne." ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Durée (en seconds) du délai de mise en cache pour ce graphique." + "Number of rows to skip at start of file.": [ + "Nombre de lignes à sauter au début du fichier." ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "Durée (en secondes) du timeout du cache pour cette table. Un timeout à 0 indique que le cache n'expire jamais. Notez que le timeout de la base de données par défaut est undefined." + "Number of rows of file to read.": [ + "Nombre de lignes du fichier à lire." ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Durée (en seconds) du délai de mise en cache pour les schémas de base de données. Si vide, le cache n'expire jamais." + "Parse Dates": ["Parser les dates"], + "A comma separated list of columns that should be parsed as dates.": [ + "Une liste de colonnes séparées par des virgules qui devraient être parsées comme des dates." ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "Durée (en secondes) du délai de mise en cache pour les métadonnées des tables de cette base de données. Si vide, le cache n'expire jamais. " + "Character to interpret as decimal point.": [ + "Caractère à interpréter comme un point décimal." ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "Durée en ms (1.40008 => 1ms 400µs 80ns)" + "Write dataframe index as a column.": [ + "Ecrire l'index du tableau de données en colonne." ], - "Duration in ms (66000 => 1m 6s)": ["Durée en ms (66000 => 1m 6s)"], - "Duration: %s": ["Durée : %s"], - "Dynamically search all filter values": [ - "Charge dynamiquement les valeurs du filtre" + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Label de colonne pour l'index de colonne(s). Si aucun label est donné et que l'index du tableau de données est Vrai, alors les noms d'Index sont utilisés." ], - "ECharts": ["EGraphiques"], - "END (EXCLUSIVE)": ["FIN (EXCLUSIVE)"], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edit": ["Éditer"], - "Edit CSS": ["Modifier le CSS"], - "Edit CSS Template": ["Modifier le Template CSS"], - "Edit CSS template properties": [ - "Modifier les propriétés du template CSS" + "Null values": ["Valeurs NULL"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Json liste de valeur à traiter comme NULL. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte qu'une seule valeur. Use [\"\"] for empty string." ], - "Edit Chart": ["Modifier le graphique"], - "Edit Column": ["Éditer une colonne"], - "Edit Dashboard": ["Éditer le tableau de bord"], - "Edit Database": ["Éditer la base de données"], - "Edit Dataset ": ["Éditer le jeu de données "], - "Edit Log": ["Éditer le log"], - "Edit Metric": ["Éditer la métrique"], - "Edit Plugin": ["Éditer le plugin"], - "Edit Saved Query": ["Éditer la requête sauvegardée"], - "Edit Table": ["Éditer la table"], - "Edit annotation": ["Modifier annotation"], - "Edit annotation layer": ["Modifier une couche d'annotations"], - "Edit annotation layer properties": ["Couches d'annotation"], - "Edit chart properties": ["Modifier les propriétés du graphique"], - "Edit dashboard": ["Éditer le tableau de bord"], - "Edit database": ["Éditer la base de données"], - "Edit dataset": ["Éditer le jeu de données"], - "Edit email report": ["Modifier le rapport par e-mail"], - "Edit formatter": ["Modifier un formateur"], - "Edit properties": ["Modifier les propriétés"], - "Edit query": ["Modifier la requête"], - "Edit template": ["Modifier un template"], - "Edit template parameters": ["Modifier les paramètres du modèle"], - "Edit the dashboard": ["Modifier le tableau de bord"], - "Edit time range": ["Modifier intervalle de temps"], - "Edited": ["Édité"], - "Editing 1 filter:": ["Édition d'un filtre :"], - "Editing filter set:": ["Modifier l'ensemble de filtre :"], - "Either the database is spelled incorrectly or does not exist.": [ - "Base de données inexistante ou nom incorrect." + "Name of table to be created from columnar data.": [ + "Nom de la table à créer à partir des données en colonne." ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "L'utilisateur \"%(username)s\" ou le mot de passe est incorrect." + "Columnar File": ["Fichier en colonnes"], + "Select a Columnar file to be uploaded to a database.": [ + "Sélectionner un fichier en colonne à téléverser dans une base de données." ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "Soit l'utilisateur \"%(username)s\", le mot de passe, ou le nom de la base de données \"%(database)s\" est incorrect." + "Use Columns": ["Utilise Columns"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Liste json des noms de colonnes qui devraient être lues. Si différent de None, uniquement ces colonnes seront lues depuis le fichier." ], - "Either the username or the password is wrong.": [ - "Le nom d'utilisateur ou le mot de passe est incorrect." + "Databases": ["Bases de données"], + "Show Database": ["Afficher la base de données"], + "Add Database": ["Ajouter une base de données"], + "Edit Database": ["Éditer la base de données"], + "Expose this DB in SQL Lab": ["Expose cette BDD dans SQL Lab"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Faire fonctionner la base de données en mode asynchrone, c'est-à-dire que les requêtes sont exécutées dans un processus distant au lieu de les exécuter sur le serveur Web lui-même. Cela suppose que vous avez configuré un processus Celery ainsi qu'un backend de résultats. Se référer aux docs d'installation pour plus d'informations." ], - "Email reports active": ["Rapports par e-mail actifs"], - "Embedding deactivated.": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty collection": ["Collection vide"], - "Empty query?": ["Requête vide ?"], - "Empty row": [""], - "Enable Filter Select": ["Activer le filtre de sélection"], - "Enable data zooming controls": [""], - "Enable embedding": [""], - "Enable forecast": [""], - "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [ - "Activer l'estimation du coût de la requête" - ], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "Entrée spatiale NULL rencontrée, veuillez les filtrer" - ], - "End": ["Date de fin"], - "End Time": ["Date de fin"], - "End date excluded from time range": [ - "Date de fin exclue de l'intervalle de temps" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Autorise l'option CREATE TABLE AS dans SQL Lab" ], - "End date must be after start date": [ - "Date de début ne peut être postérieure à Date de fin" + "Allow CREATE VIEW AS option in SQL Lab": [ + "Autorise l'option CREATE VIEW AS dans SQL Lab" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "Le moteur \"%(engine)s\" ne peut pas être configuré via des paramètres." + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Autorise les utilisateurs à lancer des expression non-SELECT (UPDATE, DELETE, CREATE, etc.) dans SQL Lab" ], - "Engine Parameters": ["Les paramètres du moteur"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ - "La spec moteur \"InvalidEngine\" ne supporte pas d'être configuré via des paramètres individuels." + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Quand l'option autoriser CREATE TABLE AS dans SQL Lab est cochée, force la table a être créée dans le schéma" ], - "Enter CA_BUNDLE": ["Entrer CA_BUNDLE"], - "Enter a name for this sheet": ["Entrée un nom pour cette feuille"], - "Enter a new title for the tab": [ - "Entrée un nouveau titre pour l'onglet" + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Si Presto, toutes les requêtes dans SQL Lab sont en cours d'exécution sous le compte de l'utilisateur actuellement connecté qui doit avoir les premissions requises.
Si Hive et hive.server2.enable.doAs sont activés, les requêtes seront exécutées sous le compte du service, mais impersonnifiant l'utilisateur actuellement connecté via la propriété hive.server2.proxy.user." ], - "Enter duration in seconds": ["Entrer la durée en secondes"], - "Enter fullscreen": ["Passer en plein écran"], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": ["Entité"], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Erreur d'expression jinja dans la clause HAVING : %(msg)s" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Durée (en secondes) du timeout de cache pour les graphiques cette base de données. Un timeout de 0 indique que le cache n'expire jamais. Noter que s'il n'est pas défini, c'est le timeout global qui est pris en compte." ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Erreur dans l'expression jinja des filtres RLS : %(msg)s" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Si sélectionné, veuillez indiquer les schémas permis pour le téléversement csv dans Extra." ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Erreur d'expression jinja dans la clause WHERE : %(msg)s" + "Expose in SQL Lab": ["Exposer dans SQL Lab"], + "Allow CREATE TABLE AS": ["Autoriser CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Autoriser CREATE VIEW AS"], + "Allow DML": ["Autoriser DML"], + "CTAS Schema": ["Schéma CTAS"], + "SQLAlchemy URI": ["URI SQLAlchemy"], + "Chart Cache Timeout": ["Timeout du cahce du graphique"], + "Secure Extra": ["Sécurité"], + "Root certificate": ["Certificat racine"], + "Async Execution": ["Exécution asynchrone"], + "Impersonate the logged on user": [ + "Impersonnaliser la connexion de l'utilisateur" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Erreur dans l'expression jinja dans la réupération du prédicat des valeurs : %(msg)s" + "Allow Csv Upload": ["Autoriser le téléversement CSV"], + "Backend": ["Backend"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Champ supplémentaire ne peut pas être décodé par JSON. %(msg)s" ], - "Error loading chart datasources. Filters may not work correctly.": [ - "Erreur au chargement des source de données du graphique Les filtres peuvent mal fonctionner." + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Chaîne de connexion invalide, une chaîne valide a généralement cette forme : DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" ], - "Error message": ["Message d'erreur"], - "Error while rendering virtual dataset query: %(msg)s": [ - "Erreur durant le rendu de la requête du jeu de données virtuel : %(msg)s" + "CSV to Database configuration": [ + "Configuration de CSV vers base de données" ], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Estimate cost": ["Estimer le coût"], - "Estimate selected query cost": [ - "Estimer le coût estimé de la requête sélectionnée" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est pas autorisée pour les téléversements csv. Contactez votre administrateur Superset." ], - "Estimate the cost before running a query": [ - "Estimer le coût avant d'exécuter une requête" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Impossible de téléverser le fichier CSV \"%(filename)s\" dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message d'erreur : %(error_msg)s" ], - "Event definition": [""], - "Event flow": ["Flot d'événements"], - "Event time column": ["Colonne temporelle de l’événement"], - "Every": ["Chaque"], - "Evolution": [""], - "Example": ["Exemple"], - "Examples": ["Exemples"], - "Excel File": ["Fichier Excel"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Fichier CSV \"%(excel_filename)s\" chargé dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\"" + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Fichier CSV \"%(csv_filename)s\" chargé dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\"" ], "Excel to Database configuration": [ "Configuration de Excel vers base de données" ], - "Excluded roles": [""], - "Executed SQL": ["Lancer la requête SQL"], - "Executed query": ["Lancer la requête sélectionnée"], - "Execution ID": ["ID d'exécution"], - "Execution log": ["Log d'exécution"], - "Exit fullscreen": ["Sortir du mode plein écran"], - "Expand all": ["Développer tout"], - "Expand data panel": [""], - "Expand tool bar": ["Etendre la barre d'outil"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est pas autorisée pour les téléversements Excel. Contactez votre administrateur Superset." ], - "Experimental": [""], - "Explore": ["Explorer"], - "Explore - %(table)s": ["Explorer - %(table)s"], - "Explore the result set in the data exploration view": [ - "Explorer le résultat dans la vue d'exploration des données" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Impossible de charger le fichier Excel \"%(filename)s\" dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message d'erreur : %(error_msg)s" ], - "Export": ["Exporter"], - "Export dashboards?": ["Exporter les tableaux de bords ?"], - "Export query": ["Exporter la requête"], - "Export to .CSV": ["Exporter au format CSV"], - "Export to .JSON": ["Exporter au format JSON"], - "Export to Excel": ["Exporter vers Excel"], - "Export to YAML": ["Exporter au format YAML"], - "Export to YAML?": ["Exporter en YAML?"], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": ["Exposer la base de données dans SQL Lab"], - "Expose in SQL Lab": ["Exposer dans SQL Lab"], - "Expose this DB in SQL Lab": ["Expose cette BDD dans SQL Lab"], - "Expression": ["Expression"], - "Extra": ["Extra"], - "Extra Controls": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "Donnée complémentaire pour spécifier une métadonnée de la table. Les métadonnéesactuellement supportées sont `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`." + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Fichier CSV \"%(excel_filename)s\" chargé dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\"" ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Champ supplémentaire ne peut pas être décodé par JSON. %(msg)s" + "Columnar to Database configuration": [ + "Configuration des colonnes vers la base de données" ], - "Extra parameters for use in jinja templated queries": [ - "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "De multiples extensions de fichier ne sont pas autorisées pour les téléversements en colonne. Merci de vous assurer que tous les fichiers ont la même extension." ], - "FEB": ["FEV"], - "FRI": ["VEN"], - "Factor to multiply the metric by": [""], - "Fail": ["Echec"], - "Failed": ["Echec"], - "Failed at retrieving results": [ - "Echec lors de la récupération des résultats" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est pas autorisée pour les téléversements en colonne. Contactez votre administrateur Superset." ], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to start remote query on a worker.": [ - "Echec de la requête à distance." + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Impossible de charger le fichier en colonnes \"%(filename)s\" dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message d'erreur : %(error_msg)s" ], - "Failed to update report": [""], - "Failed to verify select options: %s": [ - "Echec de la vérification des options de sélection : %s" + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Fichier en colonne \"%(columnar_filename)s\" chargé dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\"" ], - "Favorite": ["Favoris"], - "Favorites": ["Favoris"], - "February": ["Février"], - "Fetch Values Predicate": ["Récupérer les valeurs des prédicats"], - "Fetch data preview": ["Prévisualisation des données"], - "Fetched %s": ["Récupéré %s"], - "Field cannot be decoded by JSON. %(msg)s": [ - "Le champ ne peut pas être décodé par JSON. %(msg)s" + "Request missing data field.": [ + "Il manque un champ de donnée dans la requête." ], - "Field is required": ["Le champ est requis"], - "File": ["Fichier"], - "Fill all required fields to enable \"Default Value\"": [ - "Remplissez tous les champs obligatoires pour activer \"la valeur par défaut\"" + "Duplicate column name(s): %(columns)s": [ + "Nom(s) de colonne dupliqué: %(columns)s" ], - "Filter": ["Filtre"], - "Filter Configuration": ["Configuration du filtre"], - "Filter List": ["Filtres"], - "Filter Settings": ["Paramètres des filtres"], - "Filter Type": ["Type du filtre"], - "Filter configuration": ["Configuration du filtre"], - "Filter configuration for the filter box": [ - "Configuration du filtre pour la boîte de filtrage" + "Logs": ["Logs"], + "Show Log": ["Afficher le log"], + "Add Log": ["Ajouter un log"], + "Edit Log": ["Éditer le log"], + "User": ["Utilisateur"], + "Action": ["Action"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Time": ["Temps"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Une référence à la configuration [Time] prends la granularité en compte" ], - "Filter has default value": ["Le filtre a une valeur par défaut"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Les métadonnées du filtre ont changé dans le tableau de bord. Il ne sera pas appliqué." + "Raw records": [""], + "Certified by %s": ["Certifié par %s"], + "description": ["description"], + "bolt": ["boulon"], + "Changing this control takes effect instantly": [ + "La modification de ce contrôle prendra effet immédiatement" ], - "Filter name": ["Nom du filtre"], - "Filter only displays values relevant to selections made in other filters.": [ - "Le filtre n'affiche que les valeurs pertinentes après les sélections effectuées dans d'autres filtres." + "Show info tooltip": [""], + "SQL expression": ["Expression SQL"], + "Label": ["Label"], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": ["Analyses avancées"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Cette section contient les options permettant un post traitement analytique avancé des résultats de requêtes" ], - "Filter results": ["Filtrer les résultats"], - "Filter set already exists": ["Cet ensemble de filtre existe déjà"], - "Filter set with this name already exists": [ - "Un ensemble de filtre avec ce nom existe déjà" + "Rolling window": ["Fenêtre glissante"], + "Rolling function": ["Fonction de fenêtre glissante"], + "None": ["Aucun"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Définit une fonction de fenêtre glissante à appliquer, fonctionne avec le champ texte [Périodes]" ], - "Filter sets (%(filterSetCount)d)": [""], - "Filter type": ["Type du filtre"], - "Filter value (case sensitive)": [ - "Valeur du filtre (sensible à la casse)" + "Periods": ["Périodes"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Définit la taille de la fonction de fenêtre glissante, par rapport à la granularité temporelle sélectionnée" ], - "Filter value is required": ["La valeur du filtre est requise"], - "Filter value list cannot be empty": [ - "La liste de valeurs du filtre ne peut pas être vide" + "Min periods": ["Périodes min"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Le nombre minimum de périodes glissantes requis pour afficher une valeur. Par exemple, si vous faites un somme cumulée sur 7 jours, vous souhaitez peut être que votre \"Min Période\" soit égale à 7, de sorte que tous les points de données affichés correspondent au total des 7 périodes. Ceci cachera la \"montée en puissance\" qui aura lieu au cours des 7 périodes" ], - "Filter your charts": ["Filtrer vos graphiques"], - "Filterable": ["Filtrable"], - "Filters": ["Filtres"], - "Filters (%d)": ["Filtres (%d)"], - "Filters by columns": ["Filtrer par colonne"], - "Filters by metrics": ["Filtres par métrique"], - "Filters configuration": ["Configuration des filtres"], - "Filters out of scope (%d)": ["Filtres hors du périmètre (%d)"], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ - "Les filtres d'un groupe qui ont la même clé vont se combiner avec des OU, alors que des filtres de groupes différents vont se combiner avec des ET. Les groupes qui ont une clé indéfinie sont traités comme des groupes uniques, c'est-à-dire qu'ils ne sont pas regroupés. Par exemple, si une table a 3 filtres dont 2 sont pour les départements Finance et Marketing (clé de groupe 'department', et 1 se réfère à la région Europe (clé de groupe = 'region'), la clause du filtre qui s'appliquerait serait (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe')." - ], - "Finish": ["Terminer"], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "" + "Time comparison": ["Comparaison de temps"], + "Time shift": ["Décalage temporel"], + "1 day ago": ["Il y a 1 jour"], + "1 week ago": ["Il y a 1 semaine"], + "28 days ago": [""], + "52 weeks ago": [""], + "1 year ago": ["Il y a 1 an"], + "104 weeks ago": [""], + "2 years ago": ["Il y a 2 ans"], + "156 weeks ago": [""], + "3 years ago": ["Il y a 3 ans"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Superposer une ou plusieurs séries temporelles d'une période relative. Attend des écarts temporels relatifs en langage naturel en anglais (exemple : 24 hours, 7 days, 52 weeks, 365 days). Le texte libre est supporté." ], - "Fixed": ["Modifié"], - "Fixed color": ["Couleur fixe"], - "Fixed point radius": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "Pour Presto et Postgres, affiche un bouton pour calculer le coût avant d'exécuter une requête." + "Calculation type": ["Choisir un type de calcul"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Comment afficher des décalages temporels : comme des lignes individuelles ; comme la différence entre les séries temporelles principales et chaque décalage temporel ; comme le pourcentage de changement; ou comme le ratio entre les séries et les décalages temporels." ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Rule": ["Règle"], + "1 minutely frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "Pandas resample rule": ["Règle de ré-échantillonnage Pandas"], + "Linear interpolation": [""], + "Pandas resample method": ["Méthode de ré-échantillonnage Pandas"], + "X Axis": ["Axe X"], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": ["Axe Y"], + "Y Axis Title Margin": [""], + "Query": ["Requête"], + "Enable forecast": [""], + "Enable forecasting": [""], + "How many periods into the future do we want to predict": [""], + "Yearly seasonality": [""], + "Yes": ["Oui"], + "No": ["Non"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ - "Pour les filtres réguliers, ce sont les profils sur lesquels vont s'appliquer les filtres. Pour les filtres de base, ce sont les profis sur lesquels les filtres NE VONT PAS s'appliquer, par exemple Admin si l'admin devrait voir toutes les données." + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "Force la création des tables et des vues dans ce schéma quand on cliquer sur CTAS or CVAS dans SQL Lab." + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Force refresh": ["Forcer à rafraîchir"], - "Force refresh schema list": [ - "Forcez à actualiser la liste des schémas" + "Time related form attributes": ["Attributs de formulaire liés au temps"], + "Chart ID": ["ID Graphique"], + "The id of the active chart": ["L'identifiant du graphique actif"], + "Cache Timeout (seconds)": ["Timeout du cache (secondes)"], + "The number of seconds before expiring the cache": [ + "Le nombre de secondes avant l'expiration du cache" ], - "Force refresh table list": ["Forcer à actualiser les données"], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formatted CSV attached in email": ["CSV formatté attaché dans l'e-mail"], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Friction between nodes": [""], - "Friday": ["Vendredi"], - "From date cannot be larger than to date": [ - "La date de début ne peut être postérieure à la date de fin" + "Row": ["Ligne"], + "Series": ["Séries"], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "" ], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "General": [""], - "Generating link, please wait..": [""], - "Geo": [""], - "Geohash": ["Geohash"], - "Get the last date by the date unit.": [ - "Récupérer la dernière date par l'unité de date." + "Add dataset columns here to group the pivot table columns.": [""], + "Entity": ["Entité"], + "This defines the element to be plotted on the chart": [ + "Ceci définit l'élément à tracer sur le graphique" ], - "Get the specify date for the holiday": [ - "Récupérer la date spécifiée pour le jour férié" + "Filters": ["Filtres"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Go to the edit mode to configure the dashboard and add charts": [ - "Allez dans l'edition pour configurer le tableau de bord et ajouter des graphiques" + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Gold": [""], - "Google Sheet Name and URL": ["Nom et URL de la feuille Google Sheet"], - "Grace period": ["Période de grâce"], - "Graph layout": [""], - "Gravity": [""], - "Group By": ["Grouper par"], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group by": ["Grouper par"], - "Groupable": ["Groupable"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Sort by": ["Trier par"], + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "Header": ["Ligne d'en-tête"], - "Header Row": ["Ligne d'en-tête"], - "Heatmap": ["Carte de chaleur"], - "Heatmap Options": [""], - "Height": ["Hauteur"], - "Height of the sparkline": [""], - "Hide layer": ["Masquer la couche"], - "Hide tool bar": ["Masquer la barre d'outil"], - "Histogram": ["Histogramme"], - "Home": ["Accueil"], - "Horizon Charts": ["Histogrammes horizontaux"], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": ["Nom d'hôte ou adresse IP"], - "Hour": ["Heure"], - "Hours %s": ["Heures %s"], - "Hours offset": ["Offset des heures"], - "How do you want to enter service account credentials?": [ - "Comment voulez-vous entrer les informations de connexion du compte de service ?" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "Comment afficher des décalages temporels : comme des lignes individuelles ; comme la différence entre les séries temporelles principales et chaque décalage temporel ; comme le pourcentage de changement; ou comme le ratio entre les séries et les décalages temporels." + "A metric to use for color": ["Une métrique à utiliser par couleur"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "La colonne temps pour la visualisation. Notez que vous pouvez définir arbitrairement l'expression que retourne la colonne DATETIME dans la table. Aussi noter que le filtre ci-dessous est appliqué à cette colonne ou expression" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": ["ISO 8601"], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Si Presto ou Trino, toutes les requêtes dans SQL Lab sont en cours d'exécution sous le compte de l'utilisateur actuellement connecté qui doit avoir les permissions requises pour les exécuter. Si Hive et hive.server2.enable.doAs est activé, les requêtes seront exécutées sous le compte du service, mais en impersonnifiant l'utilisateur actuellement connecté via la propriété hive.server2.proxy.user." + "Dimension to use on y-axis.": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [ + "Le type de visualisation à afficher" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Si Presto, toutes les requêtes dans SQL Lab sont en cours d'exécution sous le compte de l'utilisateur actuellement connecté qui doit avoir les premissions requises.
Si Hive et hive.server2.enable.doAs sont activés, les requêtes seront exécutées sous le compte du service, mais impersonnifiant l'utilisateur actuellement connecté via la propriété hive.server2.proxy.user." + "Use this to define a static color for all circles": [ + "Utiliser ceci pour définir une couleur statique pour tous les cercles" ], - "If a metric is specified, sorting will be done based on the metric value": [ - "Si une métrique est définie, le tri sera basé sur sa valeur" + "all": ["Tous"], + "30 seconds": ["30 secondes"], + "1 minute": ["1 minute"], + "5 minutes": ["5 minutes"], + "30 minutes": ["30 minutes"], + "1 hour": ["1 heure"], + "week": ["semaine"], + "month": ["mois"], + "year": ["année"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "La granularité temporelle pour la visualisation. Noter que vous pouvez taper etu tiliser le langage naturel comme `10 seconds`, `1 day` ou `56 weeks`" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Si sélectionné, veuillez indiquer les schémas permis pour le téléversement csv dans Extra." - ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "Si la table existe, faire une des actions suivantes : Echec (pas d'actions), Remplacer (supprimer et recréer la table) ou Ajouter (insérer les données)." - ], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": ["Image (PNG) encapsulée dans l'e-mail"], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "Impersonnaliser l'utilisateur connecté (Presto, Trino, Drill, Hive, and GSheets)" - ], - "Impersonate the logged on user": [ - "Impersonnaliser la connexion de l'utilisateur" + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "" ], - "Import": ["Importe"], - "Import %s": ["Import %s"], - "Import Dashboard(s)": ["Importer des tableaux de bords"], - "Import Dashboards": ["Importer des tableaux de bord"], - "Import a table definition": ["Importer la définition d'une table"], - "Import chart failed for an unknown reason": [ - "L'import du graphique a échoué pour une raison inconnue" + "Row limit": ["Nombre de lignes max"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Import charts": ["Importer des graphiques"], - "Import dashboard failed for an unknown reason": [ - "L'import du tableau de bord a échoué pour une raison inconnue" + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "" ], - "Import dashboards": ["Import des tableaux de bord"], - "Import database failed for an unknown reason": [ - "L'import de la base de données a échoué pour une raison inconnue" + "Series limit": ["Nombre de séries max"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Limite le nombre de séries affichées. Une sous-requête associée (ou une phase supplémentaire dans laquelle les sous-requêtes ne sont pas prises en charge) est appliquée pour limiter le nombre de séries qui sont récupérées et affichées. Cette fonctionnalité est utile lors du regroupement par colonne(s) de cardinalité(s) élevée(s) bien que cela augmente la complexité et le coût de la requête." ], - "Import dataset failed for an unknown reason": [ - "L'import du jeu de données a échoué pour une raison inconnue" + "Y Axis Format": ["Format de l'axe Y"], + "The color scheme for rendering chart": [ + "Le jeu de couleur pour le rendu graphique" ], - "Import datasets": ["Importer des jeux de données"], - "Import queries": ["Importer des requêtes"], - "Import saved query failed for an unknown reason.": [ - "L'import de la requête sauvegardée a échoué pour une raison inconnue." + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Original value": ["Valeur d'origine"], + "Duration in ms (66000 => 1m 6s)": ["Durée en ms (66000 => 1m 6s)"], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "Durée en ms (1.40008 => 1ms 400µs 80ns)" ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Index Column": ["Index de colonne"], - "Info": ["Info"], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": ["Filtrage instantané"], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "hour": ["heure"], + "day": ["jour"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "Interval End column": ["Dernière colonne de l'intervalle"], - "Interval start column": ["Première colonne de l'intervalle"], - "Invalid JSON": ["JSON invalide"], - "Invalid certificate": ["Certificat invalide"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "Chaine de connexion incorrecte, une chaine correcte s'écrit habituellement\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" - ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ - "Chaîne de connexion invalide, une chaîne valide a généralement cette forme : DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" - ], - "Invalid cron expression": ["Expression Cron invalide"], - "Invalid cumulative operator: %(operator)s": [ - "Operateur cumulatif invalide: %(operator)s" + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "The number color \"steps\"": [""], + "Whether to display the legend (toggles)": [""], + "Whether to display the numerical values within the cells": [""], + "Whether to display the metric name as a title": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "" ], - "Invalid date/timestamp format": ["Format date/timestamp invalide"], - "Invalid filter configuration, please select a column": [ - "Configuration du filtre invalide, veuillez sélectionner une colonne" + "Business": [""], + "Comparison": ["Comparaison"], + "Trend": ["Tendance"], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Whether to sort results by the selected metric in descending order.": [ + "" ], - "Invalid filter operation type: %(op)s": [ - "Type d'opération de filtrage invalide : %(op)s" + "Source": ["Source"], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "" ], - "Invalid geodetic string": ["Chaine de géodésie invalide"], - "Invalid geohash string": ["Chaine de geohash invalide"], - "Invalid input": [""], - "Invalid lat/long configuration.": ["Configuration lat/long non valide."], - "Invalid longitude/latitude": ["Invalide Longitude/Latitude"], - "Invalid numpy function: %(operator)s": [ - "Fonction numpy invalide: %(operator)s" + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": ["Legacy"], + "Proportional": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "" ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Options invalides pour %(rolling_type)s: %(options)s" + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "" ], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [ - "Type de résultat invalide : %(result_type)s" + "2D": [""], + "Geo": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "" ], - "Invalid rolling_type: %(type)s": ["Le rolling_type invalide: %(type)s"], - "Invalid spatial point encountered: %s": [ - "Point géographique invalide : %s" + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "" ], - "Invalid tab ids: %s(tab_ids)": [""], - "Is dimension": ["Est une Dimension"], - "Is favorite": ["Favoris"], - "Is filterable": ["Filtrable"], - "Is tagged": [""], - "Is temporal": ["Est temporel"], - "Is true": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": ["JAN"], - "JSON": ["JSON"], - "JSON Metadata": ["JSON des méta-données"], - "JSON metadata": ["méta-données JSON "], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "Chaîne JSON qui contient des informations de configuration de connexion supplémentaires. Ceci est utilisé pour fournir des informations de connexion pour des systèmes comme Hive, Presto et BigQuery qui ne se conforment pas à la syntaxe utilisateur:mot_de_passe normalement utilisée par SQLAlchemy." + "Select any columns for metadata inspection": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ + "" ], - "JUL": ["JUI"], - "JUN": ["JUI"], - "January": ["Janvier"], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "Liste json des noms de colonnes qui devraient être lues. Si différent de None, uniquement ces colonnes seront lues depuis le fichier." + "Compares the lengths of time different activities take in a shared timeline view.": [ + "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "Json liste de valeur à traiter comme NULL. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte qu'une seule valeur. Use [\"\"] for empty string." + "Progressive": [""], + "Heatmap Options": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "" ], - "July": ["Juillet"], - "June": ["Juin"], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": ["Garder en édition"], - "Keys for table": ["Clefs pour la table"], - "Label": ["Label"], - "Label Line": [""], - "Label for your query": ["Label pour votre requête"], - "Label threshold": [""], - "Labelling": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Last": ["Dernier"], - "Last Changed": ["Dernière modification"], - "Last Modified": ["Dernière modification"], - "Last Updated %s": ["Dernière mise à jour %s"], - "Last Updated %s by %s": ["Dernière mise à jour %s"], - "Last modified": ["Dernière modification"], - "Last modified by %s": ["Dernière modification par %s"], - "Last run": ["Dernière exécution"], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": ["Configuration de la couche"], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "Least recently modified": ["Dernière modification"], - "Left Axis chart(s)": [""], + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], "Left Margin": [""], "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Left value": ["Valeur gauche"], - "Legacy": ["Legacy"], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light mode": [""], - "Like": [""], - "Limit reached": ["Limite atteinte"], - "Limit selector values": ["Limiter les valeurs"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "Limits the number of rows that get displayed.": [ - "Limite le nombre de lignes qui sont affichées." - ], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "Limite le nombre de séries affichées. Une sous-requête associée (ou une phase supplémentaire dans laquelle les sous-requêtes ne sont pas prises en charge) est appliquée pour limiter le nombre de séries qui sont récupérées et affichées. Cette fonctionnalité est utile lors du regroupement par colonne(s) de cardinalité(s) élevée(s) bien que cela augmente la complexité et le coût de la requête." + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ + "" ], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": ["L'épaisseur de la ligne"], - "Linear color scheme": ["Schéma de couleurs linéaire"], - "Linear interpolation": [""], - "Link Copied!": ["Lien copié !"], - "List Saved Query": ["Liste des requêtes sauvegardées"], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "Live CSS editor": ["Editeur CSS en ligne"], - "Live render": [""], - "Load a CSS template": ["Chargé un modèle CSS"], - "Loaded data cached": ["Données chargées mises en cache"], - "Loaded from cache": ["Chargé depuis le cache"], - "Loading...": ["Chargement ..."], - "Log Scale": [""], - "Log retention": ["Rétention de log"], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["Connexion"], - "Logout": ["Déconnexion"], - "Logs": ["Logs"], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude columns": ["Les colonnes longitude & latitude"], - "Longitude of default viewport": [""], - "MAR": ["MAR"], - "MAY": ["MAI"], - "MON": ["LUN"], - "Main Datetime Column": ["Colonne Datetime principale"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Whether to make the histogram cumulative": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Requête malformée. Les arguments slice_id ou table_name et db_name sont attendus" + "Population age data": [""], + "Contribution": ["Contribution"], + "Compute the contribution to the total": [ + "Calculer la contribution au total" ], - "Manage": ["Gestion"], - "Mandatory": ["Obligatoire"], - "Manually set min/max values for the y-axis.": [""], - "Mapbox": ["Mapbox"], - "March": ["Mars"], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker Size": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markup type": ["Type de balisage"], - "Max": ["Max"], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Pixel height of each series": [""], + "Value Domain": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" ], - "Maximum value on the gauge axis": [""], - "May": ["Mai"], - "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Dark Cyan": [""], + "Gold": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": ["Contenu du message"], - "Metadata Parameters": ["Les paramètres de métadonnées"], - "Metadata has been synced": ["Les métadonnées ont été synchronisées"], - "Method": ["Méthode"], - "Metric": ["Métrique"], - "Metric '%(metric)s' does not exist": [ - "La métrique '%(metric)s' n'existe pas" - ], - "Metric assigned to the [X] axis": ["Métrique assignée à l'axe [X]"], - "Metric assigned to the [Y] axis": ["Métrique assignée à l'axe [Y]"], - "Metric change in value from `since` to `until`": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": [ - "Le nom de métrique [%s] est dupliqué" + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "" ], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to sort the results by": [ - "Métrique servant à trier les résultats" + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "" ], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Métrique utilisée pour définir comment les séries principales sont triées si une limite de série ou de ligne est définie. Si indéfini, la première métrique sera utilisée (si approprié)." + "Cluster label aggregator": [""], + "sum": [""], + "std": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "" ], - "Metrics": ["Métriques"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Opacité"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "The color for points and clusters in RGB": [""], + "Longitude of default viewport": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Midnight": ["Minuit"], - "Min": ["Min"], - "Min periods": ["Périodes min"], - "Min/max (no outliers)": [""], - "Mine": ["Personnel"], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Light mode": [""], + "Dark mode": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Minute": ["Minute"], - "Minutes %s": ["Minutes %s"], - "Missing dataset": ["Jeu de données manquant"], - "Mixed Time-Series": [""], - "Modified": ["Modifié"], - "Modified %s": ["%s modifié"], - "Modified by": ["Modifié"], - "Modified columns: %s": ["Colonnes modifiées : %s"], - "Monday": ["Lundi"], - "Month": ["Mois"], - "Months %s": ["Mois %s"], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [ - "Décale l'ensemble de dates d'un intervalle spécifié." + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": ["Tabulaire"], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "" ], - "Multi-Layers": [""], - "Multi-Levels": [""], - "Multi-Variables": ["Multi-Variables"], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "De multiples extensions de fichier ne sont pas autorisées pour les téléversements en colonne. Merci de vous assurer que tous les fichiers ont la même extension." + "Ignore time": [""], + "Standard time series": [""], + "Mean of values over specified period": [""], + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Metric percent change in value from `since` to `until`": [""], + "Metric factor change from `since` to `until`": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "" ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "Multiples formats acceptés, regarder la librairie Python geopy.points pour plus de détails" + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "Sélections multiples autorisées, sinon le filtre est limité à une seule valeur" + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ + "" ], - "Must be unique": ["Doit être unique"], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Il faut une colonne [Grouper par] pour avoir 'count' comme [Label]" + "cumsum": [""], + "30 days": ["30 jours"], + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": ["Méthode"], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "" ], - "Must have at least one numeric column specified": [ - "Au moins une colonne numérique doit être spécifiée" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "" ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [ - "Il faut spécifier une valeur pour les filtres avec opérateurs de comparaison" + "Advanced-Analytics": ["Analyses avancées"], + "Multi-Layers": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "" ], - "My beautiful colors": [""], - "My column": ["Ma colonne"], - "My metric": ["Ma métrique"], - "N/A": [""], - "NOV": ["NOV"], - "NOW": ["MAINTENANT"], - "Name": ["Nom"], - "Name is required": ["Le nom est obligatoire"], - "Name must be unique": ["Le nom doit être unique"], - "Name of table to be created from columnar data.": [ - "Nom de la table à créer à partir des données en colonne." + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "" ], - "Name of table to be created from excel data.": [ - "Nom de la table à créer à partir des données Excel." + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": ["Pourcentages"], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ + "" ], - "Name of the column containing the id of the parent node": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [ - "Nom de la table qui existe dans la base de données source" + "Whether to display bubbles on top of countries": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "" ], - "Name of the target nodes": [""], - "Name your database": ["Donner un nom à la base de données"], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "New chart": ["Nouveau graphique"], - "New columns added: %s": ["Nouvelles colonnes ajoutées : %s"], - "New filter set": ["Nouvel ensemble de filtre"], - "New tab": ["Nouvel onglet"], - "New tab (Ctrl + q)": ["Nouvel onglet (Ctrl + q)"], - "New tab (Ctrl + t)": ["Nouvel onglet (Ctrl + t)"], - "Next": ["Suivant"], - "No": ["Non"], - "No %s yet": ["Pas encore de %s"], - "No Access!": ["Pas d'accès !"], - "No Data": ["Pas de données"], - "No annotation layers yet": ["Pas encore de couches d'annotations"], - "No annotation yet": ["Pas encore d'annotations"], - "No charts": ["Aucun graphique"], - "No columns": ["Pas de colonne"], - "No compatible columns found": ["Aucun colonne compatible trouvée"], - "No dashboards": ["Aucun tableau de bord"], - "No data": ["Pas de données"], - "No data after filtering or data is NULL for the latest time record": [ - "Pas de données après filtrage ou données manquantes pour la période sélectionnée" + "Metric that defines the size of the bubble": [""], + "A map of the world, that can indicate values in different countries.": [ + "" ], - "No data in file": ["Pas de données dans le fichier"], - "No databases match your search": [""], - "No description available.": ["Pas de description disponible."], - "No favorite charts yet, go click on stars!": [ - "Aucun graphique favori pour le moment, cliquer sur les étoiles !" + "Multi-Variables": ["Multi-Variables"], + "Popular": ["Populaires"], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deckGL": [""], + "Point to your spatial columns": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Advanced": ["Avancé"], + "Plot the distance (like flight paths) between origin and destination.": [ + "" ], - "No favorite dashboards yet, go click on stars!": [ - "Aucun tableau de bord favori pour le moment, cliquer sur les étoiles !" + "3D": [""], + "Web": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "No filter": ["Pas de filtre"], - "No filter is selected.": ["Pas de filtre sélectionné."], - "No form settings were maintained": [""], - "No matching records found": ["Aucun enregistrement trouvé"], - "No records found": ["Aucun enregistrement trouvé"], - "No results found": ["Aucun résultat trouvé"], - "No results match your filter criteria": [""], - "No results were returned for this query": [ - "Aucun résultat avec ces paramètres" + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" ], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Spatial": ["Spatial"], + "Experimental": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "No stored results found, you need to re-run your query": [ - "Pas de résultat existant trouvé, re-jouez votre requête" + "Height": ["Hauteur"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Aucune colonne de ce type n'a été trouvée. Pour filtrer sur une métrique, essayer l'onglet Custom SQL." + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "No time columns": ["Pas de colonne temporelle"], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "None": ["Aucun"], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not null": ["Non Null"], - "Not up to date": [""], - "Nothing triggered": ["Rien déclenché"], - "Notification method": ["Méthode de notification"], - "November": ["Novembre"], - "Now": ["Maintenant"], - "Null or Empty": ["Null ou Vide"], - "Null values": ["Valeurs NULL"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Intensity Radius is the radius at which the weight is distributed": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "Opacity, expects values between 0 and 100": [""], "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read.": [ - "Nombre de lignes du fichier à lire." + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Whether to apply filter when items are clicked": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "" ], - "Number of rows to skip at start of file.": [ - "Nombre de lignes à sauter au début du fichier." + "Category": ["Catégorie"], + "Point Unit": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "" ], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": ["Interval numérique"], - "OCT": ["OCT"], - "OK": ["OK"], - "OVERWRITE": ["ECRASE"], - "October": ["Octobre"], - "Offline": ["Hors ligne"], - "Offset": ["Décalage (offset)"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "Une ou plusieurs colonnes doivent être regroupées. Les regroupements avec une cardinalité importante devraient inclure une limite de séries afin de limiter le nombre de séries récupérées et affichées." + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "One or many controls to pivot as columns": [ - "Un ou plusieurs contrôles à transposer en colonnes" + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "" ], - "One or many metrics to display": [ - "Une ou plusieurs métriques à afficher" + "For more information about objects are in context in the scope of this function, refer to the": [ + "" ], - "One or more columns already exist": [ - "Une ou plusieurs colonnes existent déjà" + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ + "" ], - "One or more columns are duplicated": [ - "Une ou plusieurs colonnes sont dupliquées" + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "" ], - "One or more columns do not exist": [ - "Une ou plusieurs colonnes n'existent pas" + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ + "" ], - "One or more metrics already exist": [ - "Une ou plusieurs métriques existent déjà" + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ + "" ], - "One or more metrics are duplicated": [ - "Une ou plusieurs métriques sont dupliquées" + "Line width": ["L'épaisseur de la ligne"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "" ], - "One or more metrics do not exist": [ - "Une ou plusieurs métriques n'existent pas" + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Fixed point radius": [""], + "Factor to multiply the metric by": [""], + "geohash (square)": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "" ], - "One or more parameters needed to configure a database are missing.": [ - "Il manque un ou plusieurs paramètres de configuration de la base." + "X Tick Layout": [""], + "The way the ticks are laid out on the X-axis": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "One or more parameters specified in the query are malformatted.": [ - "Un ou plusieurs paramètres de la requête sont malformés." + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "" ], - "One or more parameters specified in the query are missing.": [ - "Il manque un ou plusieurs paramêtres dans la requête." + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "" ], - "One ore more annotation layers failed loading.": [ - "Une ou plusieurs couches d'annotation ont échoué au chargement." + "Stacked style": [""], + "Video game consoles": [""], + "Continuous": [""], + "nvd3": [""], + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "" ], - "Only SELECT statements are allowed against this database.": [ - "Seules les instructions SELECT sont autorisées pour cette base de données." + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "" ], - "Only Total": [""], - "Only `SELECT` statements are allowed": [ - "Seules les instructions `SELECT` sont autorisées" + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "List of values to mark with triangles": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "" ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [ - "Seuls les panneaux sélectionnés seront affectés par ce filtre" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "Sort bars by x labels.": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ "" ], - "Only single queries supported": [ - "Seules les requêtes simples sont autorisées" + "Bar Chart (legacy)": [""], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Value": ["Valeur"], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Do you want a donut or a pie?": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "" ], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Seules les extensions de fichier suivantes sont autorisées : %(allowed_extensions)s" + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Year (freq=AS)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "" ], - "Opacity": ["Opacité"], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["Ouvrir l'onglet Source de données"], - "Open in SQL Lab": ["Ouvrir dans SQL Lab"], - "Open query in SQL Lab": ["Ouvrir requête dans SQL Lab"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "Faire fonctionner la base de données en mode asynchrone, c'est-à-dire que les requêtes sont exécutées dans un processus distant au lieu de les exécuter sur le serveur Web lui-même. Cela suppose que vous avez configuré un processus Celery ainsi qu'un backend de résultats. Se référer aux docs d'installation pour plus d'informations." + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Scroll": [""], + "Plain": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "" ], - "Operator": ["Opérateur"], - "Operator undefined for aggregator: %(name)s": [ - "Opérateur indéfini pour l'agrégat: %(name)s" + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ + "" ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Contenu CA_BUNDLE optionnel pour valider les requêtes HTTPS. Disponible seulent pour certains moteurs de base de données." + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ + "" ], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [ - "Avertissement optionnel à propos de l'utilisation de cette métrique" + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Original table column order": ["Ordre de colonne de table original"], - "Original value": ["Valeur d'origine"], - "Orthogonal": [""], - "Other": ["Autres"], - "Outdoors": [""], - "Outer Radius": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Superposer une ou plusieurs séries temporelles d'une période relative. Attend des écarts temporels relatifs en langage naturel en anglais (exemple : 24 hours, 7 days, 52 weeks, 365 days). Le texte libre est supporté." + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Not up to date": [""], + "No data": ["Pas de données"], + "No data after filtering or data is NULL for the latest time record": [ + "Pas de données après filtrage ou données manquantes pour la période sélectionnée" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Try applying different filters or ensuring your datasource has data": [ "" ], - "Overwrite": ["Ecrase"], - "Overwrite & Explore": ["Modifier et explorer"], - "Overwrite Dashboard [%s]": ["Ecraser le Tableau de Bord [%s]"], - "Overwrite text in the editor with a query on this table": [ - "Ecraser le texte dans l'éditeur avec une requête sur cette table" + "Big Number Font Size": [""], + "Small": [""], + "Normal": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Description text that shows up below your Big Number": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "" ], - "Owned Created or Favored": [""], - "Owner": ["Propriétaire"], - "Owners": ["Propriétaires"], - "Owners are invalid": ["Les propriétaires sont invalides"], - "Owners is a list of users who can alter the dashboard.": [ - "Owners est une liste d'utilisateurs qui peuvent modifier le tableau de bord." + "With a subheader": [""], + "Big Number": ["Gros nombre"], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Suffix to apply after the percentage display": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Owners est une liste d'utilisateurs qui peuvent modifier le tableau de bord. Interrogeable par nom ou nom d'utilisateur." + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": ["Méthode de ré-échantillonnage Pandas"], - "Pandas resample rule": ["Règle de ré-échantillonnage Pandas"], - "Parallel Coordinates": ["Coordonnées parallèles"], - "Parameter error": ["Erreur de paramètre"], - "Parameters": ["Paramètres"], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": ["Parser les dates"], - "Part of a Whole": [""], - "Partition Diagram": ["Diagramme de Partition"], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Password": ["Mot de passe"], - "Paste Private Key here": [""], - "Paste the shareable Google Sheet URL here": [ - "Coller ici l'URL partageable de Google Sheet" + "Big Number with Trendline": ["Gros nombre avec tendance"], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "" ], - "Percentages": ["Pourcentages"], - "Performance": [""], - "Period average": [""], - "Periods": ["Périodes"], - "Person or group that has certified this metric": [ - "Groupe ou personne ayant certifié cette métrique" + "ECharts": ["EGraphiques"], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ + "" ], - "Physical": ["Physique"], - "Physical (table or view)": ["Physique (table ou vue)"], - "Physical dataset": ["Jeu de données physique"], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Choississez une granularité dans la section Temps ou décochez 'Inclure le temps'" + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "" ], - "Pick a metric for left axis!": [ - "Choisissez une métrique pour l'axe de gauche !" + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "" ], - "Pick a metric for right axis!": [ - "Choisissez une métrique pour l'axe de droite !" + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "What should be shown as the label": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "" ], - "Pick a metric for x, y and size": [ - "Choisissez une métrique pour x, y, taille" + "Sequential": [""], + "Columns to group by": [""], + "General": [""], + "Min": ["Min"], + "Minimum value on the gauge axis": [""], + "Max": ["Max"], + "Maximum value on the gauge axis": [""], + "Angle at which to start progress axis": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Whether to animate the progress and the value or just display them": [ + "" ], - "Pick a metric to display": ["Choisissez une métrique à afficher"], - "Pick a metric!": ["Choisissez une métrique !"], - "Pick a name to help you identify this database.": [ - "Choisissez un nom pour vous aider à identifier cette base de données." + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Whether to show the progress of gauge chart": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "" ], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "Choisissez une granularité pour vos séries temporelles" + "Style the ends of the progress bar with a round cap": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "" ], - "Pick a title for you annotation.": [ - "Choisissez un titre pour votre annotation." + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "" ], - "Pick at least one field for [Series]": [ - "Choisissez au moins un champs pour [Séries]" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "" ], - "Pick at least one metric": ["Choisissez au moins une métrique"], - "Pick exactly 2 columns as [Source / Target]": [ - "Choisissez exactement 2 colonnes pour [Source / Target]" + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "Choisissez une ou plusieurs colonnes qui doivent être montrées dans l'annotation. Si vous n'en sélectionnez aucune, elles seront toutes affichées." + "Category of target nodes": [""], + "Layout": [""], + "Graph layout": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Multiple": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "" ], - "Pick your favorite markup language": [ - "Choisissez votre langage de balisage préféré" + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "" ], - "Pivot Table": ["Table pivot"], - "Pivot operation must include at least one aggregate": [ - "L'opération de pivot nécessite au moins un agrégat" + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion strength between nodes": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "" ], - "Pivot operation requires at least one index": [ - "L'opération de pivot nécessite au moins un index" + "Structural": [""], + "Whether to sort descending or ascending": [ + "Trier par ordre décroissant ou croissant" ], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "Merci de vérifier votre requête et de confirmer que tous les paramètres du modèle sont entourés par des doubles accolades, par exemple, \"{{ ds }}\". Puis ré essayez ." + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary or secondary y-axis": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "Veuillez corriger une erreur de syntaxe dans la requête près de \"%(syntax_error)s\". Puis essayez de relancer la requête." + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "Veuillez corriger une erreur de syntaxe dans la requête près de \"%(server_error)s\". Puis essayez de relancer la requête." + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "" ], - "Please choose different metrics on left and right axis": [ - "Choisissez des métriques différentes pour les axes gauches et droits" + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Outer Radius": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "" ], - "Please confirm": ["Veuillez confirmer"], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [ - "Veuillez entrer une URI SQLAlchemy pour tester" + "The maximum value of metrics. It is an optional configuration": [""], + "Radar": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "" ], - "Please filter set name": ["Veuillez saisir un nom d'ensemble de filtre"], - "Please re-enter the password.": ["Veuillez re-saisir le mot de passe."], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [ - "Sauver votre requête pour pouvoir la partager" + "The primary metric is used to define the arc segment sizes": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "" ], - "Please save your chart first, then try creating a new email report.": [ - "Merci de sauvegarder votre graphique d'abord, créez ensuite un nouveau rapport email." + "When only a primary metric is provided, a categorical color scale is used.": [ + "" ], - "Please save your dashboard first, then try creating a new email report.": [ - "Merci de sauvegarder votre tableau de bord d'abord, créez ensuite un nouveau rapport email." - ], - "Please select both a Dataset and a Chart type to proceed": [ - "Merci de sélectionner à la fois un Dataset et un type de graphique pour continuer" - ], - "Please use 3 different metric labels": [ - "Utilisez 3 libellés de métrique différents" - ], - "Plot the distance (like flight paths) between origin and destination.": [ + "When a secondary metric is provided, a linear color scale is used.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "Plugins": ["Plugins"], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polyline": [""], - "Pop Tab Link": ["Retirer le lien de l'onglet"], - "Popular": ["Populaires"], - "Populate \"Default value\" to enable this control": [ - "Remplissez \"Valeur par défaut\" pour activer ce contrôle" - ], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "Le port %(port)s sur l'hôte \"%(hostname)s\" a refusé la connexion." - ], - "Port out of range 0-65535": [""], - "Position JSON": ["JSON des positions"], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": ["Propulsé par Apache Superset"], - "Pre-filter": ["Pre-filtre"], - "Pre-filter available values": ["Valeurs de pre-filtre disponibles"], - "Pre-filter is required": ["Un pré-filtre est obligatoire"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Prédicat appliqué à la récupération des valeurs distinctes pour remplir le filtre de contrôle des composants. Supporte la syntaxe Jinja. S'applique uniquement si `Activer le filtre` est coché." - ], - "Preview": ["Prévisualisation"], - "Preview: `%s`": ["Prévisualisation : `%s`"], - "Previous": ["Précédent"], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Profile": ["Profil"], - "Profile picture provided by Gravatar": [ - "Image de profil fournie par Gravatar" - ], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [ - "Feuilles partagées de manière publique ou privée" - ], - "Publicly shared sheets only": [ - "Seulement les feuilles paratagées publiques" - ], - "Published": ["Publié"], - "Put labels outside": [""], - "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": ["Mettez votre code ici"], - "Python datetime string pattern": ["Python datetime string pattern"], - "QUERY DATA IN SQL LAB": [""], - "Quarter": ["Trimestre"], - "Quarters %s": ["Trimestres %s"], - "Query": ["Requête"], - "Query %s: %s": [""], - "Query History": ["Historiques des requêtes"], - "Query history": ["Historiques des requêtes"], - "Query in a new tab": ["Requête dans un nouvel onglet"], - "Query is too complex and takes too long to run.": [ - "La requête est trop complexe et trop longue à exécuter." - ], - "Query name": ["Nom de la requête"], - "Query preview": ["Prévisualisation de la requête"], - "Query was stopped": ["La requête a été arrêtée"], - "Query was stopped.": ["La requête a été arrêtée."], - "RANGE TYPE": ["TYPE INTERVALLE"], - "Radar": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Ran %s": ["A été exécuté %s"], - "Range filter": ["Filtre d'intervalle"], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Raw records": [""], - "Ready to review filters in this dashboard?": [ - "Prêt à vérifier les filtres dans ce tableau de bord ?" - ], - "Rebuild": ["Rebuild"], - "Recent activity": ["Activité récente"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été récemment créés apparaîtront ici" - ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été récemment modifiés apparaîtront ici" - ], - "Recently modified": ["Dernière modification"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été récemment consultés apparaîtront ici" - ], - "Recents": ["Récents"], - "Recipients are separated by \",\" or \";\"": [ - "Les destinataires sont séparés par \",\" ou \";\"" + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "" ], - "Recommended tags": ["Tags recommandés"], - "Record Count": ["Nombre d'enregistrements"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Redirige à cet endpoint quand on clique sur la table depuis la liste des tables" + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "zoom area": [""], + "restore zoom": [""], + "Area chart opacity": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Refer to the": ["Se référér à"], - "Referenced columns not available in DataFrame.": [ - "Les colonnes référencées sont indisponibles dans la DataFrame." + "AXIS TITLE MARGIN": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Refetch results": ["Résultats de recherche"], - "Refresh": ["Forcer à rafraîchir"], - "Refresh dashboard": ["Rafraichir le tableau de bord"], - "Refresh frequency": ["Fréquence de rafraichissement"], - "Refresh interval": ["Intervalle d'actualisation"], - "Refresh the default values": ["Rafraichir les valeurs par défaut"], - "Refreshing charts": ["Rafraîchissement en cours"], - "Regular": [""], - "Relationships between community channels": [""], - "Relative Date/Time": ["Date/Heure Relative"], - "Relative period": ["Période relative"], - "Relative quantity": ["Quantité relative"], - "Remind me in 24 hours": ["Me le rappeler dans 24 heures"], - "Remove": ["Supprimer"], - "Remove invalid filters": ["Supprime les filtres invalides"], - "Remove item": ["Supprimer élément"], - "Remove query from log": ["Supprimer la requête des logs"], - "Remove table preview": ["Supprimer la Prévisualisation de la table"], - "Removed columns: %s": ["Colonnes supprimées : %s"], - "Rename tab": ["Renommer l'onglet"], - "Replace": ["Remplacer"], - "Report Schedule could not be created.": [ - "La planification de rapport n'a pas pu être créée." + "Bar Charts are used to show metrics as a series of bars.": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "" ], - "Report Schedule could not be deleted.": [ - "La planification de rapport n'a pas pu être supprimée." + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "" ], - "Report Schedule could not be updated.": [ - "La planification de rapport n'a pas pu être mise à jour." + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "" ], - "Report Schedule delete failed.": [ - "La planification de rapport n'a pas être supprimée." + "Start": ["Date de début"], + "End": ["Date de fin"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "" ], - "Report Schedule execution failed when generating a csv.": [ - "L'exécution de la planification de rapport a échoué à la génération d'un csv." + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "" ], - "Report Schedule execution failed when generating a dataframe.": [ - "L'exécution de la planification de rapport a échoué à la génération d'un dataframe." + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Layout type of tree": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Node label position": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "Which relatives to highlight on hover": [""], + "Empty circle": [""], + "Triangle": [""], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "" ], - "Report Schedule execution failed when generating a screenshot.": [ - "L'exécution de la planification de rapport a échoué à la génération de la copie d'écran." + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "" ], - "Report Schedule execution got an unexpected error.": [ - "L'exécution de la planification de rapport a rencontré une erreur inattendue." + "Treemap": ["Carte proportionnelle"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "" ], - "Report Schedule is still working, refusing to re-compute.": [ - "La planification de rapport est toujours en cours d'exécution, refus de re-traiter." + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "" ], - "Report Schedule log prune failed.": [ - "Le log de la planification de rapport n'a pas pu être élagué." + "page_size.all": [""], + "Loading...": ["Chargement ..."], + "Write a handlebars template to render the data": [""], + "A handlebars template that is applied to the data": [""], + "Whether to include the time granularity as defined in the time section": [ + "" ], - "Report Schedule not found.": ["Planification de rapport introuvable."], - "Report Schedule parameters are invalid.": [ - "Les paramètres des planification de rapport sont invalides." + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "" ], - "Report Schedule reached a working timeout.": [ - "La planification de rapport a atteint un timeout d'exécution." + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "" ], - "Report Schedule state not found": [ - "Etat du programme de rapport introuvable" + "Order results by selected columns": [""], + "Sort descending": ["Tri décroissant"], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": ["Lignes"], + "Columns to group by on the rows": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Sum": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Maximum": [""], + "First": [""], + "Last": ["Dernier"], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "" ], - "Report a bug": ["Rapporter un BUG"], - "Report failed": ["Le rapport a échoué"], - "Report name": ["Nom du rapport"], - "Report schedule": ["Planification de rapport"], - "Report schedule unexpected error": [ - "Erreur inattendue du programme de rapport" + "Show rows total": [""], + "Display row level total": [""], + "Display row level subtotal": [""], + "Display column level total": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "" ], - "Report sending": ["Envoi d'un rapport"], - "Report sent": ["Rapport envoyé"], - "Reports": ["Rapports"], - "Repulsion strength between nodes": [""], - "Request Permissions": ["Besoin de permissions"], - "Request is incorrect: %(error)s": [ - "La requête est incorrecte : %(error)s" + "D3 time format for datetime columns": [""], + "key a-z": [""], + "key z-a": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "" ], - "Request is not JSON": ["La requête n'est pas JSON"], - "Request missing data field.": [ - "Il manque un champ de donnée dans la requête." + "Pivot Table": ["Table pivot"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "No matching records found": ["Aucun enregistrement trouvé"], + "Shift + Click to sort by multiple columns": [ + "Maintenir Shift + Clic pour trier plusieurs colonnes" ], - "Required": ["Requis"], - "Required control values have been removed": [""], - "Reset state": ["Réinitialiser l'état"], - "Resource already has an attached report.": [""], - "Restore Filter": ["Restaurer le Filtre"], - "Results": ["Résultats"], - "Results %s": ["Résultats"], - "Results backend is not configured.": [ - "Le backend des résultats n'est pas configuré." + "Totals": ["Totaux"], + "Page length": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ + "" ], - "Results backend needed for asynchronous queries is not configured.": [ - "Le backend des résultats pour les requêtes asynchrones n'est pas configuré." + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ + "" ], - "Return to specific datetime.": ["Retour au datetime spécifique."], - "Reverse lat/long ": ["Inverser lat/long "], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right axis metric": ["Mesure de l'axe de droite"], - "Right to Left": [""], - "Right value": ["Valeur droite"], - "Right-click on a dimension value to drill to detail by that value.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "Role": ["Profil"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "Le profil %(r)s a été étendu pour donner l'accès à la source de données %(ds)s" + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "" ], - "Roles": ["Profils"], - "Roles to grant": ["Profils à donner"], - "Rolling function": ["Fonction de fenêtre glissante"], - "Rolling window": ["Fenêtre glissante"], - "Root certificate": ["Certificat racine"], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], + "Show": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], "Rotation to apply to words in the cloud": [""], - "Row": ["Ligne"], - "Row Level Security": ["Sécurité de niveau ligne"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." - ], - "Row limit": ["Nombre de lignes max"], - "Rows": ["Lignes"], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": ["Lignes à lire"], - "Rule": ["Règle"], - "Rule added": [""], - "Run": ["Exécuter"], - "Run a query to display results": [ - "Lancer une requête pour afficher les résultats" - ], - "Run in SQL Lab": ["Exécuter dans SQL Lab"], - "Run query": ["Lancer la requête"], - "Run query (Ctrl + Return)": ["Exécuter la requête (Ctrl + Return)"], - "Run query in a new tab": ["Lancer la requête dans une nouvelle fenêtre"], - "Run selection": ["Exécuter la sélection"], - "Running": ["En cours"], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": ["SAM"], - "SEP": ["SEP"], - "SHA": [""], - "SQL": ["SQL"], - "SQL Copied!": ["SQL Copié !"], - "SQL Expression": ["Expression SQL"], - "SQL Lab": ["SQL Lab"], - "SQL Lab View": ["Vue SQL Lab"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "SQL Query": ["Requête SQL"], - "SQL expression": ["Expression SQL"], - "SQL query": ["requête SQL"], - "SQLAlchemy URI": ["URI SQLAlchemy"], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [ - "Le mode SSL \"require\" sera utilisé." + "N/A": [""], + "fetching": ["récupération"], + "The query couldn't be loaded": ["La requête ne peut pas être chargée"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Votre requête a été planifiée. Pour voir les détails de votre requête, naviguer vers Requêtes sauvegardées" ], - "START (INCLUSIVE)": ["DEBUT (INCLUSIVE)"], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "SUN": ["DIM"], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Samples": ["Exemples"], - "Sankey": ["Sankey"], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite Streets": [""], - "Saturday": ["Samedi"], - "Save": ["Enregistrer"], - "Save & Explore": ["Sauver et explorer"], - "Save & go to dashboard": ["Sauvegarder et aller au tableau de bord"], - "Save (Overwrite)": ["Enregister (écrase)"], - "Save as": ["Enregistrer sous"], - "Save as new": ["Enregistrer comme nouveau"], - "Save as new chart": ["Enregistrer comme un nouveau graphique"], - "Save as:": ["Enregistrer sous :"], - "Save chart": ["Enregistrer un graphique"], - "Save dashboard": ["Sauvegarder le Tableau de Bord"], - "Save for this session": ["Sauvegarder pour la session"], - "Save or Overwrite Dataset": [""], - "Save query": ["Sauvegarder la requête"], - "Save the query to enable this feature": [ - "Sauver la requête pour permettre cette fonction" + "Your query could not be scheduled": [ + "Votre requête ne peut pas être planifiée" ], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["Enregistré"], - "Saved Queries": ["Requêtes sauvegardées"], - "Saved expressions": ["Expressions sauvegardées"], - "Saved metric": ["Métrique sauvegardée"], - "Saved queries": ["Requêtes sauvegardées"], - "Saved queries could not be deleted.": [ - "Les requêtes sauvegardées ne peuvent pas être supprimées." + "Failed at retrieving results": [ + "Echec lors de la récupération des résultats" ], - "Saved query not found.": ["Requête sauvegardée introuvable."], - "Saved query parameters are invalid.": [ - "Les paramètres des requêtes sauvegardées sont invalides." + "Unknown error": ["Erreur inconnue"], + "Query was stopped.": ["La requête a été arrêtée."], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Impossible de migrer l'état du schéma de la table dans le backend. Superset réessayera plus tard. Veuillez contacter votre administrateur si le problème persiste." ], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "" + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Impossible de migrer l'état de la requête dans le backend. Superset réessayera plus tard. Veuillez contacter votre administrateur si le problème persiste." ], - "Schedule": ["Plannifeir"], - "Schedule email report": ["Planifier un rapport par e-mail"], - "Schedule query": ["Plannifier une requête"], - "Schedule settings": ["Paramètres de planification"], - "Schedule the query periodically": [ - "Planifier la requête de façon périodique" + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Impossible de migrer l'état de l'éditeur de requêtes dans le backend. Superset réessayera plus tard. Veuillez contacter votre administrateur si le problème persiste." ], - "Scheduled": ["Programmé"], - "Scheduled at (UTC)": ["Plannifié à (UTC)"], - "Schema": ["Schéma"], - "Schema cache timeout": ["Timeout du cache de schéma"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Schéma, utilisé uniquement dans certaines bases de données comme Postgres, Redshift et DB2" + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Impossible d'ajouter une table dans le backend. Veuillez contacter votre administrateur." ], - "Scope": ["Périmètre"], - "Scoping": ["Portée"], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["Recherche"], - "Search / Filter": ["Rechercher / Filtrer"], - "Search Metrics & Columns": [ - "Chercher dans les métriques et les colonnes" + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "" + ], + "Copy of %s": ["Copie de %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Une erreur s'est produite en positionnant l'onglet actif. Veuillez contacter votre administrateur." ], - "Search all charts": ["Chercher tous les graphiques"], - "Search all filter options": [ - "Rechercher toutes les options de filtrage" + "An error occurred while fetching tab state": [ + "Une erreur s'est produite lors de la récupération de l'état de l'onglet" ], - "Search by query text": ["Texte de recherche"], - "Search...": ["Recherche..."], - "Second": ["Seconde"], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Seconds %s": ["Secondes %s"], - "Secure Extra": ["Sécurité"], - "Secure extra": ["Sécurité"], - "Security": ["Sécurité"], - "Security & Access": ["Securité et accès"], - "See less": ["Voir moins"], - "See more": ["Voir plus"], - "See table schema": ["Voir le schéma de la table"], - "Select": ["Sélectionner"], - "Select ...": ["Sélectionner..."], - "Select Delivery Method": ["Choisir la méthode de livraison"], - "Select Viz Type": ["Sélectionner un type de visualisation"], - "Select a Columnar file to be uploaded to a database.": [ - "Sélectionner un fichier en colonne à téléverser dans une base de données." + "An error occurred while removing tab. Please contact your administrator.": [ + "Une erreur s'est produite en supprimant l'onglet. Veuillez contacter votre administrateur." ], - "Select a Excel file to be uploaded to a database.": [ - "Sélectionner un fichier Excel à charger dans une base de données." + "An error occurred while removing query. Please contact your administrator.": [ + "Une erreur s'est produite en supprimant la requête. Veuillez contacter votre administrateur." ], - "Select a column": ["Sélectionner une colonne"], - "Select a dashboard": ["Sélectionner un tableau de bord"], - "Select a database to upload the file to": [""], - "Select a visualization type": ["Sélectionner un type de visualisation"], - "Select aggregate options": ["Sélectionner les options d’agrégat"], - "Select any columns for metadata inspection": [""], - "Select color scheme": ["Sélectionner un schéma de couleurs"], - "Select column": ["Sélectionner la colonne"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "" + "Your query could not be saved": [ + "Votre requête n'a pas pu être enregistrée" ], - "Select filter": ["Sélectionner un filtre"], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [ - "Sélectionne la première valeur du filtre par défaut" + "Your query was saved": ["Votre requête a été enregistrée"], + "Your query was updated": ["Votre requête a été mise à jour"], + "Your query could not be updated": [ + "Votre requête n'a pas pu être mise à jour" ], - "Select operator": ["Sélectionner l'opérateur"], - "Select or type a value": ["Sélectionner ou renseigner une valeur"], - "Select owners": ["Sélectionner les propriétaires"], - "Select saved metrics": ["Sélectionner les métriques sauvegardées"], - "Select start and end date": [ - "Sélectionner la date de début et la date de fin" + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Une erreur s'est produite en stockant la requête dans le backend. Pour éviter de perdre vos modifications, sauver votre requête en utilisant le bouton \"Enresigtrer requête\"." ], - "Select subject": ["Sélectionner un objet"], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Une erreur s'est produite lors de l'extraction des méta-données de la table. Veuillez contacter votre administrateur." ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Une erreur s'est produite en développant le schéma de la table. Veuillez contacter votre administrateur." ], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ - "" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Une erreur s'est produite en repliant le schéma de la table. Veuillez contacter votre administrateur." ], - "Send as CSV": ["Envoyer au format CSV"], - "Send as PNG": ["Envoyer comme PNG"], - "Send as text": ["Envoyer comme texte"], - "Send range filter events to other charts": [""], - "September": ["Septembre"], - "Sequential": [""], - "Series": ["Séries"], - "Series chart type (line, bar etc)": [""], - "Series limit": ["Nombre de séries max"], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": ["Compte de service"], - "Set auto-refresh interval": ["Définir l'interval d'auto-refresh"], - "Set filter mapping": ["Définir le mappage de filtre"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Une erreur s'est produite en enlevant le schéma de la table. Veuillez contacter votre administrateur." ], - "Settings": ["Paramètres"], - "Settings for time series": [""], - "Share": ["Partage de requête"], - "Share chart by email": ["Partager le graphique par e-mail"], - "Share permalink by email": ["Partager le lien par mail"], "Shared query": ["Requête partagée"], - "Sheet Name": ["Nom de la feuille"], - "Shift + Click to sort by multiple columns": [ - "Maintenir Shift + Clic pour trier plusieurs colonnes" + "The datasource couldn't be loaded": [ + "La requête ne peut pas être chargée" ], - "Short description must be unique for this layer": [ - "La description courte doit être unique pour cette couche" + "An error occurred while creating the data source": [ + "Une erreur s'est produite durant la création de la source de donnée" ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "" + "An error occurred while fetching function names.": [ + "Une erreur s'est produite lors de la récupération des noms des fonctions." ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "" + "Foreign key": [""], + "Estimate selected query cost": [ + "Estimer le coût estimé de la requête sélectionnée" ], - "Show": [""], - "Show CREATE VIEW statement": ["Voir l'ordre CREATE VIEW"], - "Show CSS Template": ["Voir le Template CSS"], - "Show Chart": ["Afficher le graphique"], - "Show Column": ["Afficher la colonne"], - "Show Dashboard": ["Montrer les tableaux de bords"], - "Show Database": ["Afficher la base de données"], - "Show Less...": ["Afficher moins ..."], - "Show Log": ["Afficher le log"], - "Show Markers": [""], - "Show Metric": ["Afficher la métrique"], - "Show Saved Query": ["Montrer les requêtes sauvegardées"], - "Show Table": ["Afficher les tables"], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "" + "Estimate cost": ["Estimer le coût"], + "Cost estimate": ["Estimation coût"], + "Creating a data source and creating a new tab": [ + "Créer une source de données et ouvrir un nouvel onglet" ], - "Show all...": ["Afficher tout ..."], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ - "" + "An error occurred": ["Un erreur s'est produite"], + "Explore the result set in the data exploration view": [ + "Explorer le résultat dans la vue d'exploration des données" ], - "Show info tooltip": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less...": ["Afficher moins ..."], - "Show only my charts": [""], - "Show pointer": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time column": ["Afficher la colonne temps"], - "Show time grain dropdown": [ - "Afficher la liste déroulante de la granularité de temps" + "Source SQL": ["SQL source"], + "Executed SQL": ["Lancer la requête SQL"], + "Run query": ["Lancer la requête"], + "Stop query": ["Arrêter la requête"], + "New tab": ["Nouvel onglet"], + "Keyboard shortcuts": [""], + "State": ["Etat"], + "Duration": ["Durée"], + "Results": ["Résultats"], + "Actions": ["Actions"], + "Success": ["Succès"], + "Failed": ["Echec"], + "Running": ["En cours"], + "Offline": ["Hors ligne"], + "Scheduled": ["Programmé"], + "Unknown Status": ["Statut inconnu"], + "Edit": ["Éditer"], + "Data preview": ["Prévisualiser les données"], + "Overwrite text in the editor with a query on this table": [ + "Ecraser le texte dans l'éditeur avec une requête sur cette table" ], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Run query in a new tab": ["Lancer la requête dans une nouvelle fenêtre"], + "Remove query from log": ["Supprimer la requête des logs"], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["Sauver et explorer"], + "Overwrite & Explore": ["Modifier et explorer"], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": ["Télécharger en CSV"], + "Copy to Clipboard": ["Copier vers le presse-papier"], + "Filter results": ["Filtrer les résultats"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "" + "The number of rows displayed is limited to %(rows)d by the query": [ + "Le nombre de lignes affichées est limité à %(rows)d par la requête" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "" + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "Le nombre de lignes affichées est limité à %(rows)d par la limite de la liste déroulante." ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "" + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Le nombre de lignes affichées est limité à %(rows)d par la requête et par la limite de la liste déroulante." ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "" + "%(rows)d rows returned": ["%(rows)d lignes retournées"], + "Track job": ["Suivre le job"], + "Query was stopped": ["La requête a été arrêtée"], + "Database error": ["Erreur de base de données"], + "was created": ["a été créé"], + "Query in a new tab": ["Requête dans un nouvel onglet"], + "The query returned no data": ["La requête n'a pas retourné de résultat"], + "Fetch data preview": ["Prévisualisation des données"], + "Refetch results": ["Résultats de recherche"], + "Stop": ["Arrêt"], + "Run selection": ["Exécuter la sélection"], + "Run": ["Exécuter"], + "Stop running (Ctrl + x)": ["Arrêter l'exécution (Ctrl + x)"], + "Run query (Ctrl + Return)": ["Exécuter la requête (Ctrl + Return)"], + "Save": ["Enregistrer"], + "An error occurred saving dataset": [ + "Une erreur s'est produite durant la sauvegarde du jeu de données" ], - "Showing %s of %s": ["Affichage de %s sur %s"], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": ["Simple"], - "Simple ad-hoc metrics are not enabled for this dataset": [ - "Les métriques ad-hoc simples ne sont pas disponibles pour ce dataset" + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": ["Enregistrer comme nouveau"], + "Undefined": ["Indéfini"], + "Save as": ["Enregistrer sous"], + "Save query": ["Sauvegarder la requête"], + "Cancel": ["Annuler"], + "Update": ["Mettre à jour"], + "Label for your query": ["Label pour votre requête"], + "Write a description for your query": [ + "Ecrire une description à votre requête" ], - "Single value type": ["Type de valeur unique"], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": ["Sauter les lignes vides"], - "Skip Initial Space": ["Supprimer l'espace initial"], - "Skip Rows": ["Sauter des lignes"], - "Slug": ["Slug"], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "" + "Submit": [""], + "Schedule query": ["Plannifier une requête"], + "Schedule": ["Plannifeir"], + "There was an error with your request": [ + "Il y avait une erreur avec vore requête" + ], + "Please save the query to enable sharing": [ + "Sauver votre requête pour pouvoir la partager" ], - "Solid": [""], - "Some roles do not exist": ["Des profils n'existent pas"], - "Sorry there was an error fetching database information: %s": [ - "Désolé, une erreur s'est produite lors de la récupération des informations de cette base de données : %s" + "Copy query link to your clipboard": [ + "Copier le lien de la requête vers le presse-papier" ], - "Sorry there was an error fetching saved charts: ": [ - "Désolé, une erreur s'est produite lors de la récupération des graphiques sauvegardés : " + "Save the query to enable this feature": [ + "Sauver la requête pour permettre cette fonction" ], - "Sorry, An error occurred": ["Désolén une erreur s'est produite"], - "Sorry, something went wrong. Try again later.": [ - "Une erreur s'est produite. Ré essayez plus tard." + "Copy link": ["Copier le lien"], + "No stored results found, you need to re-run your query": [ + "Pas de résultat existant trouvé, re-jouez votre requête" ], - "Sorry, there appears to be no data": [""], - "Sorry, your browser does not support copying.": [ - "Désolé, votre navigateur ne doit pas supporter la copie." + "Run a query to display results": [ + "Lancer une requête pour afficher les résultats" ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "Désolé, votre navigateur ne supporte pas la copie. Utilisez Ctrl/Cmd + C!" + "Preview: `%s`": ["Prévisualisation : `%s`"], + "Query history": ["Historiques des requêtes"], + "Schedule the query periodically": [ + "Planifier la requête de façon périodique" ], - "Sort": ["Trier"], - "Sort Metric": ["Trier les métriques"], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": ["Tri croissant"], - "Sort bars by x labels.": [""], - "Sort by": ["Trier par"], - "Sort by %s": ["Trier par %s"], - "Sort columns alphabetically": ["Trier les colonnes alphabétiquement"], - "Sort descending": ["Tri décroissant"], - "Sort filter values": ["Trier les valeurs de filtre"], - "Sort metric": ["Trier les métriques"], - "Sort series in ascending order": [""], - "Sort type": ["Type de tri"], - "Source": ["Source"], - "Source SQL": ["SQL source"], - "Sparkline": [""], - "Spatial": ["Spatial"], - "Specific Date/Time": ["Date/Heure Spécifique"], - "Specify a schema (if database flavor supports this).": [ - "Spécifier un schéma (si la base de données soutient cette fonctionnalités)." + "You must run the query successfully first": [ + "Vous devez d'abord exécuter la requête avec succès" ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Spécifier les colonnes en double comme\"X.0, X.1\"." + "Autocomplete": ["Complétion automatique"], + "CREATE TABLE AS": ["Autoriser CREATE TABLE AS"], + "CREATE VIEW AS": ["CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "Estimer le coût avant d'exécuter une requête" ], - "Specify name to CREATE TABLE AS schema in: public": [""], "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "Spécifier la version de la base de données. Ceci doit être utilisé avec Presto afin d'autoriser l'estimation du coût de requête." + "Specify name to CREATE TABLE AS schema in: public": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Create": ["Créer"], + "Reset state": ["Réinitialiser l'état"], + "Enter a new title for the tab": [ + "Entrée un nouveau titre pour l'onglet" ], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["Date de début"], - "Start Review": ["Démarrer la Vérification"], - "Start at (UTC)": ["Début à (UTC)"], - "Start date included in time range": [ - "Date de début incluse de l'intervalle de temps" + "Close tab": ["Fermer l'onglet"], + "Rename tab": ["Renommer l'onglet"], + "Expand tool bar": ["Etendre la barre d'outil"], + "Hide tool bar": ["Masquer la barre d'outil"], + "Close all other tabs": ["Fermer tous les autres onglets"], + "Duplicate tab": ["Dupliquer l'onglet"], + "New tab (Ctrl + q)": ["Nouvel onglet (Ctrl + q)"], + "New tab (Ctrl + t)": ["Nouvel onglet (Ctrl + t)"], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "Une erreur s'est produite lors de l'extraction des méta-données de la table" ], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Copy partition query to clipboard": [ + "Copier la requête de partition vers le presse-papier" + ], + "latest partition:": ["dernière partition :"], + "Keys for table": ["Clefs pour la table"], + "View keys & indexes (%s)": ["Vue des clefs et index (%s)"], + "Original table column order": ["Ordre de colonne de table original"], + "Sort columns alphabetically": ["Trier les colonnes alphabétiquement"], + "Copy SELECT statement to the clipboard": [ + "Copier l'étape SELECT vers le presse-papier" + ], + "Show CREATE VIEW statement": ["Voir l'ordre CREATE VIEW"], + "CREATE VIEW statement": ["ordre CREATE VIEW"], + "Remove table preview": ["Supprimer la Prévisualisation de la table"], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "Edit template parameters": ["Modifier les paramètres du modèle"], + "Invalid JSON": ["JSON invalide"], + "Untitled query": ["Requête sans titre"], + "%s%s": ["%s%s"], + "Before": ["Avant"], + "Click to see difference": ["Cliquer pour voir la différence"], + "Altered": ["Modifié"], + "Chart changes": ["Changements de graphique"], + "Loaded data cached": ["Données chargées mises en cache"], + "Loaded from cache": ["Chargé depuis le cache"], + "Click to force-refresh": ["Cliquer pour forcer le rafraîchissement"], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "State": ["Etat"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": ["Statut"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "click here": [""], + "No results were returned for this query": [ + "Aucun résultat avec ces paramètres" + ], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "Stop": ["Arrêt"], - "Stop query": ["Arrêter la requête"], - "Stop running (Ctrl + x)": ["Arrêter l'exécution (Ctrl + x)"], - "Stopped an unsafe database connection": [ - "Une connexion non sécurisée avec la base de données a été arrêtée" + "An error occurred while loading the SQL": [ + "Une erreur s'est produite durant le chargement du SQL" ], - "Strength to pull the graph toward center": [""], - "Strings used for sheet names (default is the first sheet).": [ - "Chaînes utilisées pour les noms des feuilles (par défaut la première feuille)." + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Le filtre va être appliqué à tous les graphiques qui utilise cet ensemble de données" ], - "Structural": [""], - "Style": ["Style"], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": ["Sous-Total"], - "Success": ["Succès"], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": ["Camembert hiérarchique"], - "Sunday": ["Dimanche"], - "Superset Chart": ["Graphique Superset"], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["Graphique superset"], - "Superset dashboard": ["Tableau de bord superset"], - "Superset encountered an error while running a command.": [ - "Superset a rencontré une erreur lors de l'exécution d'une commande." + "You can also just click on the chart to apply cross-filter.": [ + "Vous pouvez juste cliquer sur le graphique pour appliquer le filtre" ], - "Superset encountered an unexpected error.": [ - "Superset a rencontré une erreur inattendue." + "This visualization type does not support cross-filtering.": [ + "Ce type de visualisation ne supporte pas le cross-filtering." ], - "Survey Responses": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" + "You can't apply cross-filter on this data point.": [ + "Vous ne pouvez pas ajouter de filtre sur ce point de donnée" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Add cross-filter": ["Ajouter un filtre"], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": ["Fermer"], + "Failed to load chart data.": [""], + "Drill by: %s": ["Trier par %s"], + "Results %s": ["Résultats"], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "Symbol of two ends of edge line": [""], - "Sync columns from source": ["Synchroniser les colonnes de la source"], - "Syntax": ["Syntaxe"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "TABLES": ["TABLES"], - "THU": ["JEU"], - "TUE": ["MAR"], - "Tab name": ["Nom de l'onglet"], - "Tab title": ["Onglet titre"], - "Table": ["Table"], - "Table %(table)s wasn't found in the database %(db)s": [ - "Table %(table)s pas trouvée dans la base de données %(db)s" + "Right-click on a dimension value to drill to detail by that value.": [ + "" ], - "Table Exists": ["La table existe"], - "Table Name": ["Nom de la table"], - "Table View": ["Vue en table"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "La table [%(table_name)s] n'a pu être trouvée, vérifiez à nouveau votre connexion à votre base de données, le schéma et le nom de la table" + "Drill to detail: %s": [""], + "Copy": ["Copier"], + "Copy to clipboard": ["Copier vers le presse-papier"], + "Copied to clipboard!": ["Copié vers le presse-papier !"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "Désolé, votre navigateur ne supporte pas la copie. Utilisez Ctrl/Cmd + C!" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "La table [%{table}s] n'a pu être trouvée, vérifiez à nouveau votre la connexion à votre base de données, le schéma et le nom de la table, error: {}" + "every": ["chaque"], + "every month": ["chaque mois"], + "every day of the month": ["chaque jour du mois"], + "day of the month": ["jour du mois"], + "every day of the week": ["chaque jour de la semaine"], + "day of the week": ["jour de la semaine"], + "every hour": ["chaque heure"], + "every minute": ["chaque minute"], + "minute": ["minute"], + "reboot": ["reboot"], + "Every": ["Chaque"], + "in": ["dans"], + "on": ["sur"], + "and": ["et"], + "at": ["à"], + ":": [":"], + "minute(s)": ["minute(s)"], + "Invalid cron expression": ["Expression Cron invalide"], + "Clear": ["Effacer"], + "Sunday": ["Dimanche"], + "Monday": ["Lundi"], + "Tuesday": ["Mardi"], + "Wednesday": ["Mercredi"], + "Thursday": ["Jeudi"], + "Friday": ["Vendredi"], + "Saturday": ["Samedi"], + "January": ["Janvier"], + "February": ["Février"], + "March": ["Mars"], + "April": ["Avril"], + "May": ["Mai"], + "June": ["Juin"], + "July": ["Juillet"], + "August": ["Aout"], + "September": ["Septembre"], + "October": ["Octobre"], + "November": ["Novembre"], + "December": ["Décembre"], + "SUN": ["DIM"], + "MON": ["LUN"], + "TUE": ["MAR"], + "WED": ["MER"], + "THU": ["JEU"], + "FRI": ["VEN"], + "SAT": ["SAM"], + "JAN": ["JAN"], + "FEB": ["FEV"], + "MAR": ["MAR"], + "APR": ["AVR"], + "MAY": ["MAI"], + "JUN": ["JUI"], + "JUL": ["JUI"], + "AUG": ["AOU"], + "SEP": ["SEP"], + "OCT": ["OCT"], + "NOV": ["NOV"], + "DEC": ["DEC"], + "There was an error loading the schemas": [ + "Une erreur s'est produite lors de la récupération des schémas" ], - "Table cache timeout": ["Timeout du cache de table"], - "Table name cannot contain a schema": [""], - "Table name undefined": ["Nom de la table non défini"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "" + "Force refresh schema list": [ + "Forcez à actualiser la liste des schémas" ], - "Tables": ["Tables"], - "Tabs": ["Onglets"], - "Tabular": ["Tabulaire"], - "Tag name is invalid (cannot contain ':')": [""], - "Tags": ["Tags"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "" + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Attention ! Changer le jeu de données peut mettre en erreur le graphique si la métadonnées n'existe pas." ], - "Target value": ["Valeur cible"], - "Template Name": ["Nom du template"], - "Template parameters": ["Les paramètres du modèle"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Lien template, il est possible d'inclure {{ metric }} or autres valeurs provenant de ces contrôles." + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Changer le jeu de données peut mettre en erreur le graphiquesi celui-ci s'appuie sur des colonnes ou une métadonnées qui n'existe pas dans le jeu de données cible" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "Arrête les requêtes en cours quand la fenêtre du navigateur est fermée ou quand change pour un autre page. Disponibles pour les bases de données Presto, Hive, MySQL, Postgres et Snowflake." + "dataset": ["jeu de données"], + "Connection": ["Connexion"], + "Warning!": ["Attention !"], + "Search / Filter": ["Rechercher / Filtrer"], + "Add item": ["Ajouter un item"], + "BOOLEAN": [""], + "Physical (table or view)": ["Physique (table ou vue)"], + "Virtual (SQL)": ["SQL virtuel"], + "Data type": ["Type de donnée"], + "Datetime format": ["Format Datetime"], + "The pattern of timestamp format. For strings use ": [ + "Le motif du format de timestamp. Pour les chaines, utilisez " ], - "Test Connection": ["Test de connexion"], - "Test connection": ["Tester la connexion"], - "Text": ["Zone de texte"], - "Text align": [""], - "Text embedded in email": ["Text encapsulé dans l'e-mail"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "" + "Python datetime string pattern": ["Python datetime string pattern"], + " expression which needs to adhere to the ": [ + " Expression qui doit adhérer à " ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "Le css pour certains tableaux de bords peut être modifié ici, ou dans la page tableaux de bords pour que les changement soient visibles immédiatement" + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + " standard pour s'assurer que l'ordre lexicographique\n coïncide avec l'ordre chronologique. Si le format\n de temps n’adhère pas à l'ISO 8601 standard\n dont vous aurez besoin pour définir une expression ou type\n pour transformer une chaine en date ou timestampNote\n actuellement, les timezone ne sont pas gérées Si le temps est stocké\n en format epoch, mettez `epoch_s` ou `epoch_ms`. Si aucun pattern\n n'est spécifié, nous revenons à utiliser les options par défauts\n de niveau database / nom de colonne via l'extra parameter." ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. Assurez-vous que la requête a bien un SELECT en dernière instruction. Puis essayez d'exécuter votre requête à nouveau." + "Certified By": ["Certifié Par"], + "Person or group that has certified this metric": [ + "Groupe ou personne ayant certifié cette métrique" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" + "Certified by": ["Certifié par"], + "Certification details": ["Détails de certification"], + "Details of the certification": ["Détails de la certification"], + "Is dimension": ["Est une Dimension"], + "Is filterable": ["Filtrable"], + "Select owners": ["Sélectionner les propriétaires"], + "Modified columns: %s": ["Colonnes modifiées : %s"], + "Removed columns: %s": ["Colonnes supprimées : %s"], + "New columns added: %s": ["Nouvelles colonnes ajoutées : %s"], + "Metadata has been synced": ["Les métadonnées ont été synchronisées"], + "An error has occurred": ["Une erreur est survenue"], + "Column name [%s] is duplicated": ["Le nom de colonne [%s] est dupliqué"], + "Metric name [%s] is duplicated": [ + "Le nom de métrique [%s] est dupliqué" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" + "Calculated column [%s] requires an expression": [ + "La colonne calculée [%s] nécessite une expression" ], - "The access requests seem to have been deleted": [ - "L'accée à cette requête semble avoir été effacé" + "Invalid currency code in saved metrics": [""], + "Basic": ["Simple"], + "Default URL": ["URL par défaut"], + "Default URL to redirect to when accessing from the dataset list page": [ + "URL par défaut vers laquelle rediriger quand on accède depuisla page qui liste les jeux de données" ], - "The annotation has been saved": ["Cette annotation a été sauvegardée"], - "The annotation has been updated": ["Cette annotation a été modifiée"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "" + "Autocomplete filters": ["Remplir automatiquement les filtres"], + "Whether to populate autocomplete filters options": [ + "S'il faut remplir les options des filtres de saisie semi-automatique" ], - "The chart does not exist": ["Le graphique n'existe pas"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "" + "Autocomplete query predicate": [ + "Remplir automatiquement le prédicat de requête" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [ - "Le jeu de couleur pour le rendu graphique" + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Quand vous utilisez les filtres de replissage automatique, cela peut être utilisé pour améliorer la perfomance de chargement des valeurs. Utilisez cette option pour appliquer un prédicat (clause WHERE) à la requête qui sélectionne les valeurs. Typiquement, le but serait de limiter le parcours en appliquant un filtre temporel sur un champ temporel partitionné ou indexé." ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "" + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Donnée complémentaire pour spécifier une métadonnée de la table. Les métadonnéesactuellement supportées sont `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`." ], - "The column was deleted or renamed in the database.": [ - "La colonne a été supprimée ou renommée dans la base de données." + "Cache timeout": ["Cache timeout"], + "Hours offset": ["Offset des heures"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Nombre d'heures, négatif ou positif, pour décaler la colonne de temps. Cela peut être utilisé pour passer du temps UTC au temps local." ], - "The country code standard that Superset should expect to find in the [country] column": [ + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The dashboard has been saved": ["Ce Tableau de Bord a été sauvegardé"], - "The data source seems to have been deleted": [ - "La source de données semble avoir été effacée" - ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "Le type de donnée inféré par la base de données. Il peut être nécessaire de le rentrer manuellement pour les colonnes définissant des expressions dans certains cas. Dans la plupart des cas il n'est pas nécessaire de le modifier." + "Click the lock to make changes.": [ + "Cliquez sur le cadenas pour apporter des modifications." ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "La base de données %s est liée à %s graphiques qui apparaissent sur %s tableaux de bord et les utilisateurs ont des onglets %s SQL Lab ouverts qui utilisent cette base de données . Êtes-vous sûr de vouloir continuer ? Supprimer la base de données cassera ces objets." + "Click the lock to prevent further changes.": [ + "Cliquez sur le cadenas pour empêcher d'autres modifications." ], - "The database is currently running too many queries.": [ - "La base de données exécute actuellement trop de requêtes." + "virtual": ["virtuel"], + "Dataset name": ["Nom du jeu de donnée"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Quand on indique du SQL, la source de données se comporte comme une vue. Superset utilisera ce paramètre comme une sous-requête lors du regroupement et du filtrage sur la requête parent générée." ], - "The database is under an unusual load.": [ - "La base de données est soumise à une charge inhabituelle." + "Physical": ["Physique"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Pointeur vers une table physique (ou une vue). Gardez à l'esprit que le graphique est associé à cette table logique de superset et que cette table logique pointe vers la table physique décrite ici." ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "Impossible de trouver la base de données référencée dans cette requête. Merci de contacter un administrateur pour obtenir davantage d'aide ou bien d'essayer à nouveau." + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ + "" ], - "The database returned an unexpected error.": [ - "La base de données a retourné une erreur inattendue." + "D3 format": ["Format D3"], + "Metric currency": [""], + "Warning": ["Avertissement"], + "Optional warning about use of this metric": [ + "Avertissement optionnel à propos de l'utilisation de cette métrique" ], - "The database was deleted.": ["La base de données a été supprimée."], - "The database was not found.": ["Base de données non trouvée."], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "La source de données %s est reliée à %s graphiques qui sont présents dans %s tableaux de bord. Etes-vous sûr de vouloir continuer ? Supprimer le jeu de données cassera ces objets." + "Be careful.": ["Faites attention."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "La modification de ces paramètres affectera tous les graphiques qui utilisent ce jeu de données, y compris les graphiques qui appartiennent à d'autres personnes." ], - "The dataset associated with this chart no longer exists": [ - "Le jeu de donnée associé à ce graphique n'existe plus" + "Sync columns from source": ["Synchroniser les colonnes de la source"], + "Calculated columns": ["Colonnes calculées"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ + "" ], + "": [""], + "Settings": ["Paramètres"], + "The dataset has been saved": ["Le jeu de données a été sauvegardé"], "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "La configuration du jeu de donnée indiqué ici\n s'applique à tous les graphiques utilisant ce jeu de données.\n Rappelez vous que changer ces paramètres\n peut affecter d'autres graphiques\n de manière non voulue." ], - "The dataset has been saved": ["Le jeu de données a été sauvegardé"], - "The dataset linked to this chart may have been deleted.": [ - "Le jeu de données lié à ce graphique semble avoir été effacé." - ], - "The datasource couldn't be loaded": [ - "La requête ne peut pas être chargée" - ], - "The datasource is too large to query.": [ - "Source de données trop volumineuse pour être interrogée." - ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "La description peut être affichée comme des widgets d'entête dans la vue tableau de bord. Prend en charge le Markdown." - ], - "The distance between cells, in pixels": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "L'objet engine_params contient les paramètres envoyés à sqlalchemy.create_engine." - ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "Les entrées suivantes dans `series_columns` sont manquantes dans `columns`: %(columns)s. " - ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être atteint." + "Are you sure you want to save and apply changes?": [ + "Êtes vous sur de vouloir sauvegarder et appliquer les modifications ?" ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être atteint sur le port %(port)s." + "Confirm save": ["Confirmez la sauvegarde"], + "OK": ["OK"], + "Edit Dataset ": ["Éditer le jeu de données "], + "Use legacy datasource editor": [ + "Utiliser l'ancien éditeur de source de données" ], - "The host might be down, and can't be reached on the provided port.": [ - "L'hôte est peut-être HS et ne peut pas être atteint sur le port." + "This dataset is managed externally, and can't be edited in Superset": [ + "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "Le nom d'hôte \"%(hostname)s\" ne peut pas être résolu." + "DELETE": ["EFFACER"], + "delete": ["effacer"], + "Type \"%s\" to confirm": ["Tapez \"%s\" pour confirmer"], + "Click to edit": ["Cliquer pour modifier"], + "You don't have the rights to alter this title.": [ + "Vous n'avez pas les droits pour modifier ce titre." ], - "The hostname provided can't be resolved.": [ - "Le nom d'hôte ne peut pas être résolu." + "No databases match your search": [""], + "There are no databases available": [""], + "Unexpected error": ["Erreur inattendue"], + "This may be triggered by:": ["Cela peut être déclenché par:"], + "%s Error": ["%s Erreur"], + "Missing dataset": ["Jeu de données manquant"], + "See more": ["Voir plus"], + "See less": ["Voir moins"], + "Copy message": ["Copier le message"], + "Did you mean:": ["Vouliez-vous dire :"], + "Parameter error": ["Erreur de paramètre"], + "Timeout error": ["Erreur de timeout"], + "Click to favorite/unfavorite": ["Cliquez pour favori ou non"], + "Cell content": ["Contenu de cellule"], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "" ], - "The id of the active chart": ["L'identifiant du graphique actif"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "La liste des graphiques associés à cette table. En alterant cette source de données, vous pouvez changer le comportement des graphiques associés. Aussi notez que les graphiques doivent pointer vers une source de données, alors ce formulaire ne pourra pas être enregistré si des graphiques sont retirés d'une source de données. Si vous voulez changer la source de données d'un graphique, écraser le graphique depuis la 'vue d'exploration'" + "OVERWRITE": ["ECRASE"], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["Ecrase"], + "Import": ["Importe"], + "Import %s": ["Import %s"], + "Last Updated %s": ["Dernière mise à jour %s"], + "Sort": ["Trier"], + "+ %s more": [""], + "%s Selected": ["%s Sélectionné"], + "Deselect all": ["Tout Dé-Sélectionner"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "No Data": ["Pas de données"], + "%s-%s of %s": ["%s-%s de %s"], + "Type a value": ["Renseigner une valeur"], + "Filter": ["Filtre"], + "Select or type a value": ["Sélectionner ou renseigner une valeur"], + "Last modified": ["Dernière modification"], + "Modified by": ["Modifié"], + "Created by": ["Créé par"], + "Created on": ["Créé le"], + "Menu actions trigger": [""], + "Select ...": ["Sélectionner..."], + "Click to cancel sorting": [""], + "There was an error loading the tables": [ + "Il y a eu une erreur au chargement des tables" ], - "The maximum number of events to return, equivalent to the number of rows": [ - "" + "See table schema": ["Voir le schéma de la table"], + "Force refresh table list": ["Forcer à actualiser les données"], + "Timezone selector": ["Sélecteur de fuseau horaire"], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Espace insuffisant pour ce composant. Diminuez sa largeur ou augmentez la largeur de la destination." ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "" + "Can not move top level tab into nested tabs": [ + "On ne peut déplacer un onglet top level vers des onglets imbriqués" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "Le paramètre metadata_params dans Champ supplémentaire n'est pas correctement configuré. La clé %(key)s est invalide." + "This chart has been moved to a different filter scope.": [ + "Ce graphique a été déplacé vers un autre champ d'application du filtre." ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "Le paramètre metadata_params dans Champ supplémentaire n'est pas correctement configuré. La clé %(key)s est invalide." + "There was an issue fetching the favorite status of this dashboard.": [ + "Erreur à la récupération du statut favori de ce Tableau de Bord." ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "L'objet metadata_params contient les paramètres envoyés à sqlalchemy.MetaData." + "There was an issue favoriting this dashboard.": [ + "Un problème est survenu lors de l'activation de ce tableau de bord." ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "Le nombre minimum de périodes glissantes requis pour afficher une valeur. Par exemple, si vous faites un somme cumulée sur 7 jours, vous souhaitez peut être que votre \"Min Période\" soit égale à 7, de sorte que tous les points de données affichés correspondent au total des 7 périodes. Ceci cachera la \"montée en puissance\" qui aura lieu au cours des 7 périodes" + "You do not have permissions to edit this dashboard.": [ + "Vous n'avez pas les droits pour modifier ce tableau de bord." ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "Nombre d'heures, négatif ou positif, pour décaler la colonne de temps. Cela peut être utilisé pour passer du temps UTC au temps local." + "This dashboard was saved successfully.": [ + "Ce Tableau de Bord a été sauvegardé avec succès." ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "" + "You do not have permission to edit this dashboard": [ + "Vous n'avez pas le droit de modifier ce tableau de bord" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "Le nombre de lignes affichées est limité à %(rows)d par la limite de la liste déroulante." + "Could not fetch all saved charts": [ + "Impossible de récupérer tous les graphiques sauvegardés" ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "Le nombre de lignes affichées est limité à %(rows)d par la requête" + "Sorry there was an error fetching saved charts: ": [ + "Désolé, une erreur s'est produite lors de la récupération des graphiques sauvegardés : " ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "Le nombre de lignes affichées est limité à %(rows)d par la requête et par la limite de la liste déroulante." + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Une palette de couleur sélectionnée ici écrasera les couleurs appliquées aux graphiques de ce tableau de bord" ], - "The number of seconds before expiring the cache": [ - "Le nombre de secondes avant l'expiration du cache" + "You have unsaved changes.": [ + "Vous avez des modifications non sauvegardées." ], - "The object does not exist in the given database.": [ - "L'objet n'existe pas dans la base de données." + "Drag and drop components and charts to the dashboard": [ + "Glissez/Déposez des composants et des graphiques sur le tableau de bord" ], - "The parameter %(parameters)s in your query is undefined.": [ - "Le paramètre %(parameters)s de votre requête est indéfini.", - "Les paramètres suivants de votre requête sont indéfinis : %(parameters)s." + "You can create a new chart or use existing ones from the panel on the right": [ + "Vous pouvez créer un nouveau graphique ou utililser ceux existants à partir du panneau de droite" ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "Le mot de passe fourni pour l'utilisateur \"%(username)s\" est incorrect." + "Create a new chart": ["Créer un nouveau graphique"], + "There are no components added to this tab": [ + "Il n'y a pas de composant à ajouter dans cet onglet" ], - "The password provided when connecting to a database is not valid.": [ - "Le mot de passe fourni à une base de données est invalide." + "Edit the dashboard": ["Modifier le tableau de bord"], + "There is no chart definition associated with this component, could it have been deleted?": [ + "Il n'y a pas de définition de graphique associé à ce composanta-t-il été supprimé ?" ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les importer en même temps que les graphiques. Notez que les sections \"Securité Supplémentaire\" et \"Certificat\" de la configuration de la base de données ne sont pas présents dans les fichiers d'export et doivent être ajoutés manuellement après l'import si nécessaire." + "Delete this container and save to remove this message.": [ + "Supprimez ce conteneur et sauvegardez pour supprimer ce message." ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les importer en même temps que les tableaux de bord. Notez que les sections \"Securité Supplémentaire\" et \"Certificat\" de la configuration de la base de données ne sont pas présents dans les fichiers d'export et doivent être ajoutés manuellement après l'import si nécessaire." + "Refresh interval": ["Intervalle d'actualisation"], + "Refresh frequency": ["Fréquence de rafraichissement"], + "Are you sure you want to proceed?": [ + "Êtes-vous certain de vouloir continuer ?" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les importer en même temps que les requêtes sauvegardées. Notez que les sections \"Securité Supplémentaire\" et \"Certificat\" de la configuration de la base de données ne sont pas présents dans les fichiers d'export et doivent être ajoutés manuellement après l'import si nécessaire." + "Save for this session": ["Sauvegarder pour la session"], + "You must pick a name for the new dashboard": [ + "Vous devez entrer un nom pour le nouveau Tableau de Bord" ], - "The pattern of timestamp format. For strings use ": [ - "Le motif du format de timestamp. Pour les chaines, utilisez " + "Save dashboard": ["Sauvegarder le Tableau de Bord"], + "Overwrite Dashboard [%s]": ["Ecraser le Tableau de Bord [%s]"], + "Save as:": ["Enregistrer sous :"], + "[dashboard name]": ["[nom du tableau de bord]"], + "also copy (duplicate) charts": [ + "copier également les graphiques (dupliquer)" ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Create new chart": ["Créer un nouveau graphique"], + "Filter your charts": ["Filtrer vos graphiques"], + "Sort by %s": ["Trier par %s"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "Pointeur vers une table physique (ou une vue). Gardez à l'esprit que le graphique est associé à cette table logique de superset et que cette table logique pointe vers la table physique décrite ici." - ], - "The port is closed.": ["Le port est fermé."], - "The port number is invalid.": ["Le numéro de port est invalide."], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [ - "L'argument `rows` n'est pas un entier valide." - ], - "The query associated with the results was deleted.": [ - "La requête associée aux résutlats a été supprimée." - ], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "La requête associée à ces résultats n'a pu être trouvée. Rejouez la requête originale." - ], - "The query contains one or more malformed template parameters.": [ - "Cette requête contient un ou plusieurs paramètres de modèle malformé(s)." + "Added": ["Ajouté"], + "Viz type": ["Type"], + "Dataset": ["Jeu de données"], + "Superset chart": ["Graphique superset"], + "Check out this chart in dashboard:": [ + "Vérifiez ce graphique dans le tableau de bord :" ], - "The query couldn't be loaded": ["La requête ne peut pas être chargée"], - "The query has a syntax error.": ["La requête a une erreur de syntaxe."], - "The query returned no data": ["La requête n'a pas retourné de résultat"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "La requête a été tuée après %(sqllab_timeout)s secondes. Elle est peut-être trop complexe ou la base de donnée est soumise à une charge trop importante." + "Layout elements": [""], + "Load a CSS template": ["Chargé un modèle CSS"], + "Live CSS editor": ["Editeur CSS en ligne"], + "There are no charts added to this dashboard": [ + "Il n'y a pas de graphiques ajouté dans ce tableau de bord" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" + "Go to the edit mode to configure the dashboard and add charts": [ + "Allez dans l'edition pour configurer le tableau de bord et ajouter des graphiques" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "The report has been created": ["Le rapport a été créé"], - "The results backend no longer has the data from the query.": [ - "Le backend des résultats n'a plus les données de la requête." - ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Les résultats stockés dans le backend le sont dans un format différent et ne peuvent plus être déserialisés." - ], - "The rich tooltip shows a list of all series for that point in time": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "Le schéma \"%(schema)s\" n'existe pas. Un schéma valide doit être utilisé pour cette requête." - ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "Le schéma \"%(schema_name)s\" n'existe pas. Un schéma valide doit être utilisé pour cette requête." - ], - "The schema was deleted or renamed in the database.": [ - "Le schéma a été supprimé ou renommé dans la base de données." - ], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "The submitted payload has the incorrect format.": [ - "Les données fournies sont dans un format incorrect." - ], - "The submitted payload has the incorrect schema.": [ - "Les données fournies ont un schéma incorrect." - ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "La table \"%(table)s\" n'existe pas. Une table valide doit être utilisée pour cette requête." - ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "La table \"%(table_name)s\" n'existe pas. Une table valide doit être utilisée pour cette requête." - ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "La table a été créée. Dans le cadre de cette configuration en deux étapes, vous devez maintenant cliquer sur le bouton d'édition de la nouvelle table pour la configurer." - ], - "The table was deleted or renamed in the database.": [ - "La table a été supprimée ou renommée dans la base de données." + "Enable embedding": [""], + "Applied filters (%d)": ["Filtres appliqués (%d)"], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Ce tableau de bord est en train de se rafraîchir automatiquement ; le prochain rafraîchissement sera dans %s." ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "La colonne temps pour la visualisation. Notez que vous pouvez définir arbitrairement l'expression que retourne la colonne DATETIME dans la table. Aussi noter que le filtre ci-dessous est appliqué à cette colonne ou expression" + "Your dashboard is too large. Please reduce its size before saving it.": [ + "Votre tableau de bord est trop gros.Merci de réduire sa taille avant de sauvegarder." ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "La granularité temporelle pour la visualisation. Noter que vous pouvez taper etu tiliser le langage naturel comme `10 seconds`, `1 day` ou `56 weeks`" + "Redo the action": [""], + "Edit dashboard": ["Éditer le tableau de bord"], + "An error occurred while fetching available CSS templates": [ + "Une erreur s'est produite lors de l'extraction des modèles de CSS disponibles" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "Le granularité de temps pour la visualisation. Ceci applique une transformation de date pour modifier votre colonne de temps et définit une nouvelle granularité d'heure. Les options ici sont définies pour chaque type de SGBD dans le code source de Superset." + "Refreshing charts": ["Rafraîchissement en cours"], + "Superset dashboard": ["Tableau de bord superset"], + "Check out this dashboard: ": ["Vérifiez ce tableau de bord : "], + "Refresh dashboard": ["Rafraichir le tableau de bord"], + "Exit fullscreen": ["Sortir du mode plein écran"], + "Enter fullscreen": ["Passer en plein écran"], + "Edit properties": ["Modifier les propriétés"], + "Edit CSS": ["Modifier le CSS"], + "Download": ["Télécharger"], + "Share": ["Partage de requête"], + "Copy permalink to clipboard": ["Copier le lien dans le presse-papiers"], + "Share permalink by email": ["Partager le lien par mail"], + "Set filter mapping": ["Définir le mappage de filtre"], + "Set auto-refresh interval": ["Définir l'interval d'auto-refresh"], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Last Updated %s by %s": ["Dernière mise à jour %s"], + "Apply": ["Appliquer"], + "A valid color scheme is required": [ + "Un jeu de couleur valide doit être fourni" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "L'intervalle de temps pour la visualisation. Tous les temps relatifs, par exemple \"Mois dernier\", \"7 derniers jours\", \"maintenant\", etc. sont évalués sur le serveur en utilisant l'heure locale du serveur (sans fuseau horaire). Toutes les infobulles et les heures des \"placeholders\" sont exprimées en UTC (sans fuseau). Les timestamps sont alors évalués par la base données en utilisant le fuseau horaire local du serveur. Notez que l'on peut indiquer explicitement la fuseau horaire dans le format ISO 8601 quand on spécifie l'heure de début et/ou de fin." + "The dashboard has been saved": ["Ce Tableau de Bord a été sauvegardé"], + "Access": ["Accès"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Owners est une liste d'utilisateurs qui peuvent modifier le tableau de bord. Interrogeable par nom ou nom d'utilisateur." ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Colors": ["Couleur"], + "Dashboard properties": ["Propriétés du tableau de bord"], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [ - "Le type de visualisation à afficher" - ], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [ - "L'utilisateur semble avoir été effacé" - ], - "The user/password combination is not valid (Incorrect password for user).": [ - "" + "Basic information": ["Information simple"], + "URL slug": ["URL Slug"], + "A readable URL for your dashboard": [ + "Pour avoir une URL lisible pour votre tableau de bord" ], - "The username \"%(username)s\" does not exist.": [ - "L'utilisateur \"%(username)s\" n'existe pas." + "Any additional detail to show in the certification tooltip.": [""], + "JSON metadata": ["méta-données JSON "], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste des tableaux de bord. Cliquez ici pour publier ce tableau de bord." ], - "The username provided when connecting to a database is not valid.": [ - "Le nom d'utilisateur fourni à une base de données est invalide." + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste des tableaux de bord. Rendez le favori pour le voir ici ou utilisez son URL pour y avoir accès." ], - "The way the ticks are laid out on the X-axis": [""], - "There are associated alerts or reports": [ - "Il y a des alertes ou des rapports associés" + "This dashboard is published. Click to make it a draft.": [ + "Ce tableau de bord est publié. Cliquez pour en faire un brouillon." ], - "There are associated alerts or reports: %s,": [ - "Il y a des alertes ou des rapports associés : %s," + "Draft": ["Brouillon"], + "Annotation layers are still loading.": [ + "Les couches d'annotation sont toujours en cours de chargement." ], - "There are no charts added to this dashboard": [ - "Il n'y a pas de graphiques ajouté dans ce tableau de bord" + "One ore more annotation layers failed loading.": [ + "Une ou plusieurs couches d'annotation ont échoué au chargement." ], - "There are no components added to this tab": [ - "Il n'y a pas de composant à ajouter dans cet onglet" + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Ce graphique filtre automatiquement les graphiques ayant des colonnes de même nom dans leurs ensembles de données." ], - "There are no databases available": [""], + "Data refreshed": ["Données rafraîchies"], + "Cached %s": ["En cache %s"], + "Fetched %s": ["Récupéré %s"], + "Query %s: %s": [""], + "Force refresh": ["Forcer à rafraîchir"], + "View query": ["Voir la requête"], + "Share chart by email": ["Partager le graphique par e-mail"], + "Check out this chart: ": ["Vérifiez ce tableau de bord : "], + "Export to .CSV": ["Exporter au format CSV"], + "Export to Excel": ["Exporter vers Excel"], + "Download as image": ["Télécharger comme image"], + "Search...": ["Recherche..."], + "No filter is selected.": ["Pas de filtre sélectionné."], + "Editing 1 filter:": ["Édition d'un filtre :"], + "Batch editing %d filters:": ["Edition Batch %d filtres:"], + "Configure filter scopes": ["Configurer la portée du filtre"], "There are no filters in this dashboard.": [ "Pas de filtre dans ce tableau de bord." ], - "There are unsaved changes.": [ - "Vous avez des modifications non sauvegardées." + "Expand all": ["Développer tout"], + "Collapse all": ["Tout réduire"], + "This markdown component has an error.": [ + "Ce composant markdown est en erreur." ], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "Il y a une erreur de syntaxe dans la requête SQL. Peut-être une faute de frappe." + "This markdown component has an error. Please revert your recent changes.": [ + "Ce composant markdown est en erreur. Reprenez vos modifications récentes." ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "Il n'y a pas de définition de graphique associé à ce composanta-t-il été supprimé ?" + "Empty row": [""], + "You can add the components in the": [ + "Vous pouvez ajouter les composants via le" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Espace insuffisant pour ce composant. Diminuez sa largeur ou augmentez la largeur de la destination." + "edit mode": ["mode edition"], + "Delete dashboard tab?": ["Supprimer l'onglet du tableau de bord ?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "" ], - "There was an error fetching your recent activity:": [ - "Une erreur s'est produite lors de lors de la récupération de votre activité récente :" + "button (cmd + z) until you save your changes.": [""], + "CANCEL": ["ANNULER"], + "Divider": ["Diviseur"], + "Header": ["Ligne d'en-tête"], + "Text": ["Zone de texte"], + "Tabs": ["Onglets"], + "background": [""], + "Preview": ["Prévisualisation"], + "Sorry, something went wrong. Try again later.": [ + "Une erreur s'est produite. Ré essayez plus tard." ], - "There was an error loading the schemas": [ - "Une erreur s'est produite lors de la récupération des schémas" + "Add/Edit Filters": ["Ajouter/Editer les filtres"], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "" ], - "There was an error loading the tables": [ - "Il y a eu une erreur au chargement des tables" + "Apply filters": ["Appliquer les filtres"], + "Clear all": ["Effacer tout"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "There was an error with your request": [ - "Il y avait une erreur avec vore requête" + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "There was an issue deleting %s: %s": [ - "Il y a eu un problème lors de la suppression de %s: %s" + "All charts": ["Tous les graphiques"], + "Horizontal (Top)": [""], + "Applied filters: %s": ["Filtres appliqué: %s"], + "Cannot load filter": ["Impossible de charger le filtre"], + "Filters out of scope (%d)": ["Filtres hors du périmètre (%d)"], + "Dependent on": ["Dépend de"], + "Filter only displays values relevant to selections made in other filters.": [ + "Le filtre n'affiche que les valeurs pertinentes après les sélections effectuées dans d'autres filtres." ], - "There was an issue deleting the selected %s: %s": [ - "Il y a eu un problème lors de la suppression des %s sélectionné(e)s :%s" + "Scope": ["Périmètre"], + "Filter type": ["Type du filtre"], + "(Removed)": ["(Supprimé)"], + "Undo?": ["Défaire?"], + "Add filters and dividers": ["Ajouter un filtre ou un diviseur"], + "Cyclic dependency detected": [""], + "Add and edit filters": ["Ajouter et modifier les filtres"], + "Column select": ["Sélection d'une colonne"], + "Select a column": ["Sélectionner une colonne"], + "No compatible columns found": ["Aucun colonne compatible trouvée"], + "Value is required": ["Une valeur est obligatoire"], + "(deleted or invalid type)": [""], + "Add filter": ["Ajouter un filtre"], + "Values are dependent on other filters": [ + "Les valeurs dépendent d'autres filtres" ], - "There was an issue deleting the selected annotations: %s": [ - "Il y eu un problème lors de la suppression des annotations sélectionnés : %s" + "Values selected in other filters will affect the filter options to only show relevant values": [ + "Les valeurs sélectionnées dans d'autres filtres affecteront les options de filtrage afin de n'afficher que les valeurs pertinentes" ], - "There was an issue deleting the selected charts: %s": [ - "Il y a eu un problème lors de la suppression des graphiques sélectionnés : %s" + "Values dependent on": ["Valeurs dépendent de"], + "Scoping": ["Portée"], + "Filter Configuration": ["Configuration du filtre"], + "Filter Settings": ["Paramètres des filtres"], + "Select filter": ["Sélectionner un filtre"], + "Range filter": ["Filtre d'intervalle"], + "Numerical range": ["Interval numérique"], + "Time filter": ["Filtre de temps"], + "Time range": ["Intervalle de Temps"], + "Time column": ["Colonne de temps"], + "Time grain": ["Granularité de Temps"], + "Group By": ["Grouper par"], + "Group by": ["Grouper par"], + "Pre-filter is required": ["Un pré-filtre est obligatoire"], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["Nom du filtre"], + "Name is required": ["Le nom est obligatoire"], + "Filter Type": ["Type du filtre"], + "Datasets do not contain a temporal column": [ + "Les jeux de données ne comportent pas de colonne temporelle" ], - "There was an issue deleting the selected dashboards: ": [ - "Une erreur s'est produite durant la sauvegarde du tableau de bord sélectionné : " + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "" ], - "There was an issue deleting the selected datasets: %s": [ - "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" + "Dataset is required": ["Un jeu de données est obligatoire"], + "Pre-filter available values": ["Valeurs de pre-filtre disponibles"], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "" ], - "There was an issue deleting the selected layers: %s": [ - "Il y eu un problème lors de la suppression des couches sélectionnés : %s" + "Pre-filter": ["Pre-filtre"], + "No filter": ["Pas de filtre"], + "Sort filter values": ["Trier les valeurs de filtre"], + "Sort type": ["Type de tri"], + "Sort ascending": ["Tri croissant"], + "Sort Metric": ["Trier les métriques"], + "If a metric is specified, sorting will be done based on the metric value": [ + "Si une métrique est définie, le tri sera basé sur sa valeur" ], - "There was an issue deleting the selected queries: %s": [ - "Il y a eu un problème lors de la suppression de requêtes sélectionnées : %s" + "Sort metric": ["Trier les métriques"], + "Single value type": ["Type de valeur unique"], + "Filter has default value": ["Le filtre a une valeur par défaut"], + "Default Value": ["Valeur par défaut"], + "Default value is required": ["Une valeur par défaut est obligatoire"], + "Refresh the default values": ["Rafraichir les valeurs par défaut"], + "Fill all required fields to enable \"Default Value\"": [ + "Remplissez tous les champs obligatoires pour activer \"la valeur par défaut\"" ], - "There was an issue deleting the selected templates: %s": [ - "Il y a eu un problème lors de la suppression des templates sélectionnés : %s" + "You have removed this filter.": ["Vous avez supprimé ce filtre."], + "Restore Filter": ["Restaurer le Filtre"], + "Column is required": ["Colonne requise"], + "Populate \"Default value\" to enable this control": [ + "Remplissez \"Valeur par défaut\" pour activer ce contrôle" ], - "There was an issue deleting: %s": [ - "Il y a eu un problème lors de la suppression de : %s" + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "" ], - "There was an issue favoriting this dashboard.": [ - "Un problème est survenu lors de l'activation de ce tableau de bord." + "Default value must be set when \"Filter value is required\" is checked": [ + "" ], - "There was an issue fetching reports attached to this dashboard.": [ - "Désolé, une erreur s'est produite lors de la récupération des rapports de ce tableau de bord." + "Default value must be set when \"Filter has default value\" is checked": [ + "" ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Erreur à la récupération du statut favori de ce Tableau de Bord." + "Apply to all panels": ["Appliquer à tous les panneaux"], + "Apply to specific panels": ["Appliquer à certains panneaux"], + "Only selected panels will be affected by this filter": [ + "Seuls les panneaux sélectionnés seront affectés par ce filtre" ], - "There was an issue fetching your recent activity: %s": [ - "Une erreur s'est produite lors de la récupération de votre activité récente : %s" + "All panels with this column will be affected by this filter": [ + "Les panneaux avec cette colonne seront affectés par ce filtre" ], - "There was an issue previewing the selected query %s": [ - "Il y a eu un problème lors de la prévisualisation de la requête sélectionnée %s" + "This chart might be incompatible with the filter (datasets don't match)": [ + "" ], - "There was an issue previewing the selected query. %s": [ - "Il y a eu un problème de prévisualisation de la requête sélectionnée. %s" + "Keep editing": ["Garder en édition"], + "Yes, cancel": ["Oui, annuler"], + "There are unsaved changes.": [ + "Vous avez des modifications non sauvegardées." ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "Il y a une boucle dans votre Sankey, il faut un arbre. Lien fautif: {}" + "Are you sure you want to cancel?": ["Voulez vous vraiment annuler ?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "Erreur au chargement des source de données du graphique Les filtres peuvent mal fonctionner." + ], + "Transparent": [""], + "All filters": ["Tous les filtres"], + "Medium": [""], + "Tab title": ["Onglet titre"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "" ], - "These are the tables this filter will be applied to.": [ - "Ce sont les tables sur lesquelles vont s'appliquer les filtres." + "Equal to (=)": [""], + "Less than (<)": [""], + "Like": [""], + "Is true": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Une ou plusieurs colonnes doivent être regroupées. Les regroupements avec une cardinalité importante devraient inclure une limite de séries afin de limiter le nombre de séries récupérées et affichées." ], - "These filters apply to the values available in the dropdowns": [ - "Ces filtres s'appliquent aux valeurs disponibles dans les listes déroulantes" + "One or many metrics to display": [ + "Une ou plusieurs métriques à afficher" ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Ces paramètres sont généré dynamiquement quand vous cliquez sur Sauvegarder ou forcer dans la page d'exploration. Cet objet JSON est exposé ici comme une référence et pour les experts qui voudraient modifier des paramètres." + "Fixed color": ["Couleur fixe"], + "Right axis metric": ["Mesure de l'axe de droite"], + "Choose a metric for right axis": [ + "Choisir une mesure pour l'axe de droite" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Ce JSON a été généré automatiquement quand vous avez cliqué sur sauvegarder ou forcer dans la page des tableaux de bords. Il est exposé ici comme une référence et pour les experts qui voudraient modifier des paramètres." + "Linear color scheme": ["Schéma de couleurs linéaire"], + "Color metric": ["Métrique de couleur"], + "One or many controls to pivot as columns": [ + "Un ou plusieurs contrôles à transposer en colonnes" ], - "This action will permanently delete %s.": [ - "Cette action va supprimer définitivement %s." + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Le granularité de temps pour la visualisation. Ceci applique une transformation de date pour modifier votre colonne de temps et définit une nouvelle granularité d'heure. Les options ici sont définies pour chaque type de SGBD dans le code source de Superset." ], - "This action will permanently delete the layer.": [ - "Cette action va définitivement supprimer la couche." + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "L'intervalle de temps pour la visualisation. Tous les temps relatifs, par exemple \"Mois dernier\", \"7 derniers jours\", \"maintenant\", etc. sont évalués sur le serveur en utilisant l'heure locale du serveur (sans fuseau horaire). Toutes les infobulles et les heures des \"placeholders\" sont exprimées en UTC (sans fuseau). Les timestamps sont alors évalués par la base données en utilisant le fuseau horaire local du serveur. Notez que l'on peut indiquer explicitement la fuseau horaire dans le format ISO 8601 quand on spécifie l'heure de début et/ou de fin." ], - "This action will permanently delete the saved query.": [ - "Cette action va définitivement supprimer la requête sauvegardée." + "Limits the number of rows that get displayed.": [ + "Limite le nombre de lignes qui sont affichées." ], - "This action will permanently delete the template.": [ - "Cette acion supprimera définitvement le template." + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Métrique utilisée pour définir comment les séries principales sont triées si une limite de série ou de ligne est définie. Si indéfini, la première métrique sera utilisée (si approprié)." ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine (ex mydatabase.com)." + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Définit le regroupement d'entités. Chaque série est représentée par une couleur spécifique sur le graphique et masquée/affichée en cliquant sur sa légende" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ - "Ce graphique filtre automatiquement les graphiques ayant des colonnes de même nom dans leurs ensembles de données." + "Metric assigned to the [X] axis": ["Métrique assignée à l'axe [X]"], + "Metric assigned to the [Y] axis": ["Métrique assignée à l'axe [Y]"], + "Bubble size": ["Taille de la bulle"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Lorsque `Type de calcul` vaut \"Pourcentage de changement\", le format de l'axe Y est à forcé à `.1%`" ], - "This chart has been moved to a different filter scope.": [ - "Ce graphique a été déplacé vers un autre champ d'application du filtre." + "Color scheme": ["Jeu de couleur"], + "Use this section if you want a query that aggregates": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "" ], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [ - "Cette colonne doit contenir une information date/heure." + "Customize": ["Personnaliser"], + "Generating link, please wait..": [""], + "Save (Overwrite)": ["Enregister (écrase)"], + "Chart name": ["Nom du graphique"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["Ajouter au tableau de bord"], + "Select a dashboard": ["Sélectionner un tableau de bord"], + "Select": ["Sélectionner"], + "Save & go to dashboard": ["Sauvegarder et aller au tableau de bord"], + "Save chart": ["Enregistrer un graphique"], + "Expand data panel": [""], + "Samples": ["Exemples"], + "Search Metrics & Columns": [ + "Chercher dans les métriques et les colonnes" ], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Showing %s of %s": ["Affichage de %s sur %s"], + "Show less...": ["Afficher moins ..."], + "Show all...": ["Afficher tout ..."], + "Show Less...": ["Afficher moins ..."], + "Unable to retrieve dashboard colors": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "Ce tableau de bord est en train de se rafraîchir automatiquement ; le prochain rafraîchissement sera dans %s." - ], - "This dashboard is managed externally, and can't be edited in Superset": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste des tableaux de bord. Rendez le favori pour le voir ici ou utilisez son URL pour y avoir accès." - ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste des tableaux de bord. Cliquez ici pour publier ce tableau de bord." + "Controls labeled ": ["Contrôles libellés "], + "Control labeled ": ["Contrôle libellé "], + "Open Datasource tab": ["Ouvrir l'onglet Source de données"], + "You do not have permission to edit this chart": [ + "Vous n'avez pas les permission pour modifier ce graphique" ], - "This dashboard is published. Click to make it a draft.": [ - "Ce tableau de bord est publié. Cliquez pour en faire un brouillon." + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "La description peut être affichée comme des widgets d'entête dans la vue tableau de bord. Prend en charge le Markdown." ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ - "" + "Configuration": ["Configuration"], + "A list of users who can alter the chart. Searchable by name or username.": [ + "Une liste d'utilisateurs qui peuvent modifier le graphique. Il est possible de chercher par nom de graphique ou d'utilisateur." ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "Ce tableau de bord a été changé récemment. Merci de le recharger pour avoir la dernière version." + "Limit reached": ["Limite atteinte"], + "Invalid lat/long configuration.": ["Configuration lat/long non valide."], + "Reverse lat/long ": ["Inverser lat/long "], + "Longitude & Latitude columns": ["Les colonnes longitude & latitude"], + "Delimited long & lat single column": [ + "Une seule colonne long & lat délimité" ], - "This dashboard was saved successfully.": [ - "Ce Tableau de Bord a été sauvegardé avec succès." + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Multiples formats acceptés, regarder la librairie Python geopy.points pour plus de détails" ], - "This database is managed externally, and can't be edited in Superset": [ - "" + "Geohash": ["Geohash"], + "textarea": ["zone de texte"], + "in modal": ["en modal"], + "Sorry, An error occurred": ["Désolén une erreur s'est produite"], + "Open in SQL Lab": ["Ouvrir dans SQL Lab"], + "Failed to verify select options: %s": [ + "Echec de la vérification des options de sélection : %s" ], - "This database table does not contain any data. Please select a different table.": [ + "Annotation layer": ["Couches d'annotations"], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [ - "Ceci définit l'élément à tracer sur le graphique" - ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Ces champs agissent comme une vue Superset, i.e. Superset va lancer une requête pour cette expression comme une sous-requête." - ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Ce filtre n'existe pas dans le tableau de bord. Il ne sera pas appliqué." + "Annotation layer value": ["Valeur de la couche d'annotations"], + "Annotation Slice Configuration": [ + "Configuration de l'annotation de graphique" ], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [ - "Cet ensemble de filtre est identique à : \"%s\"" + "Annotation layer time column": [ + "Colonne temporelle de la couche d'annotations" ], - "This functionality is disabled in your environment for security reasons.": [ - "" + "Interval start column": ["Première colonne de l'intervalle"], + "Event time column": ["Colonne temporelle de l’événement"], + "This column must contain date/time information.": [ + "Cette colonne doit contenir une information date/heure." ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "Ceci est la condition qui sera ajoutée à la clause WHERE. Par exemple, pour ne retourner que les lignes d'un client particulier, vous pouvez définir un filtre régulier avec la clause `client_id = 9`. Pour n'afficher aucune ligne sauf pour les utilisateurs qui appartiennent à un role de filtre RLS, un filtre de base peut être créé avec la clause `1 = 0` (toujours faux)." + "Annotation layer interval end": [ + "Fin de l'intervalle de la couche d'annotations" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Cet objet JSON décrit la position des widgets dans le tableau de bord. Il est généré dynamiquement quand on ajuste la taille ou la position des widgets via drag and drop dans la vue tableau de bord" + "Interval End column": ["Dernière colonne de l'intervalle"], + "Annotation layer title column": [ + "Colonne de titre de la couche d'annotations" ], - "This markdown component has an error.": [ - "Ce composant markdown est en erreur." + "Title Column": ["Colonne de Titre"], + "Pick a title for you annotation.": [ + "Choisissez un titre pour votre annotation." ], - "This markdown component has an error. Please revert your recent changes.": [ - "Ce composant markdown est en erreur. Reprenez vos modifications récentes." + "Annotation layer description columns": [ + "Colonnes de description de la couche d'annotations" ], - "This may be triggered by:": ["Cela peut être déclenché par:"], - "This metric might be incompatible with current dataset": [""], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Cette section contient les options permettant un post traitement analytique avancé des résultats de requêtes" + "Description Columns": ["Colonnes de description"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Choisissez une ou plusieurs colonnes qui doivent être montrées dans l'annotation. Si vous n'en sélectionnez aucune, elles seront toutes affichées." ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "This value should be greater than the left target value": [ - "Cette valeur devrait être plus grande que la valeur cible de gauche" - ], - "This value should be smaller than the right target value": [ - "Cette valeur devrait être plus petite que la valeur cible de droite" - ], - "This visualization type does not support cross-filtering.": [ - "Ce type de visualisation ne supporte pas le cross-filtering." - ], - "This visualization type is not supported.": [ - "Ce type de visualisation n'est pas supporté." + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "" ], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": ["Jeudi"], - "Time": ["Temps"], - "Time Series - Bar Chart": ["Séries temporelles - histogramme"], - "Time Series - Dual Axis Line Chart": ["Séries temporelles - double axe"], - "Time Series - Line Chart": ["Séries temporelles - ligne"], - "Time Series - Multiple Line Charts": [ - "Séries temporelles - Lignes multiples" + "Display configuration": ["Configuration d'affichage"], + "Configure your how you overlay is displayed here.": [ + "Configurer comment votre superposition est affichée ici." ], - "Time Series - Nightingale Rose Chart": [ - "Séries temporelles - Graphique Nightingale Rose" + "Annotation layer stroke": ["Trait de la couche d'annotations"], + "Style": ["Style"], + "Solid": [""], + "Long dashed": [""], + "Annotation layer opacity": ["Opacité de la couche d'annotations"], + "Color": ["Couleur"], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Layer configuration": ["Configuration de la couche"], + "Configure the basics of your Annotation Layer.": [ + "Configurer les bases de votre couche d'annotations." ], - "Time Series - Paired t-test": ["Séries temporelles - Paired t-test"], - "Time Series - Percent Change": [ - "Séries temporelles - pourcentage de changement" + "Mandatory": ["Obligatoire"], + "Hide layer": ["Masquer la couche"], + "Whether to always show the annotation label": [""], + "Annotation layer type": ["Type de couche d'annotations"], + "Choose the annotation layer type": [ + "Choisir le type de couche d'annotations" ], - "Time Series - Period Pivot": ["Séries temporelles - Période Pivot"], - "Time Series - Stacked": ["Séries temporelles - empilées"], - "Time Table View": ["Vue de la table temporelle"], - "Time column": ["Colonne de temps"], - "Time column \"%(col)s\" does not exist in dataset": [ - "La colonne temporelle \"%(col)s\" n'existe pas dans le jeu de données" + "Annotation source type": ["Type de source de la couche d'annotations"], + "Choose the source of your annotations": [ + "Choisir la source de vos annotations" ], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": ["Comparaison de temps"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Remove": ["Supprimer"], + "Edit annotation layer": ["Modifier une couche d'annotations"], + "Add annotation layer": ["Ajouter une couche d'annotations"], + "Empty collection": ["Collection vide"], + "Add an item": ["Ajouter un élément"], + "Remove item": ["Supprimer élément"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "La chaîne Ecart Temps est ambigüe. Veuillez spécifier [%(human_readable)s ago] ou [%(human_readable)s later]." - ], - "Time filter": ["Filtre de temps"], - "Time grain": ["Granularité de Temps"], - "Time grain missing": ["Granularité de temps manquante"], - "Time in seconds": ["Temps en secondes"], - "Time range": ["Intervalle de Temps"], - "Time related form attributes": ["Attributs de formulaire liés au temps"], - "Time series columns": ["Colonnes des séries temporelles"], - "Time shift": ["Décalage temporel"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "La chaîne de Temps est ambigüe. Veuillez spécifier [%(human_readable)s ago] ou [%(human_readable)s later]." - ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "dashboard": ["tableau de bord"], + "Select color scheme": ["Sélectionner un schéma de couleurs"], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Time-series Table": ["Table de Séries temporelles"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Timeout error": ["Erreur de timeout"], - "Timezone": ["Fuseau horaire"], - "Timezone offset (in hours) for this datasource": [ - "Timezone offset (en heure) de cette source de données" - ], - "Timezone selector": ["Sélecteur de fuseau horaire"], - "Title": ["Titre"], - "Title Column": ["Colonne de Titre"], - "Title or Slug": ["Titre"], - "To filter on a metric, use Custom SQL tab.": [ - "Pour filtrer sur une métrique, utiliser l'onglet Custom SQL." + "Edit formatter": ["Modifier un formateur"], + "Add new formatter": ["Ajouter un formateur"], + "Add new color formatter": ["Ajouter un nouveau formateur de couleur"], + "alert": ["alerte"], + "error dark": [""], + "This value should be smaller than the right target value": [ + "Cette valeur devrait être plus petite que la valeur cible de droite" ], - "To get a readable URL for your dashboard": [ - "Pour avoir une URL lisible pour votre tableau de bord" + "This value should be greater than the left target value": [ + "Cette valeur devrait être plus grande que la valeur cible de gauche" ], - "Tools": ["Outils"], - "Tooltip": [""], - "Top to Bottom": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Totals": ["Totaux"], - "Track job": ["Suivre le job"], - "Transformable": [""], - "Transparent": [""], - "Transpose pivot": [""], - "Tree layout": [""], - "Treemap": ["Carte proportionnelle"], - "Trend": ["Tendance"], - "Triangle": [""], - "Trigger Alert If...": ["Déclencher une alerte si ..."], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Required": ["Requis"], + "Operator": ["Opérateur"], + "Left value": ["Valeur gauche"], + "Right value": ["Valeur droite"], + "Target value": ["Valeur cible"], + "Select column": ["Sélectionner la colonne"], + "Lower threshold must be lower than upper threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The lower limit of the threshold range of the Isoband": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Éditer le jeu de données"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Tronquer la date spécifiée à la précision spécifiée par l'unité de date." - ], - "Try applying different filters or ensuring your datasource has data": [ - "" + "View in SQL Lab": ["Voir dans SQL Lab"], + "Query preview": ["Prévisualisation de la requête"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [ + "Le jeu de données lié à ce graphique semble avoir été effacé." ], - "Try selecting a different schema": [""], - "Tuesday": ["Mardi"], - "Type": ["Type"], - "Type \"%s\" to confirm": ["Tapez \"%s\" pour confirmer"], - "Type a value": ["Renseigner une valeur"], - "Type a value here": ["Saisir une valeur ici"], - "Type is required": ["Le type est requis"], - "Type of Google Sheets allowed": [ - "Type de feuilles Google Sheets autorisées" + "RANGE TYPE": ["TYPE INTERVALLE"], + "Actual time range": ["Intervalle de temps courant"], + "APPLY": ["APPLIQUER"], + "Edit time range": ["Modifier intervalle de temps"], + "Configure Advanced Time Range ": [ + "Configurer Intervalle de temps avancé " ], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["Tapez ou Selectionnez [%s]"], - "URL": ["URL"], - "URL parameters": ["Paramètres URL"], - "URL slug": ["URL Slug"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "Impossible d'ajouter une table dans le backend. Veuillez contacter votre administrateur." + "START (INCLUSIVE)": ["DEBUT (INCLUSIVE)"], + "Start date included in time range": [ + "Date de début incluse de l'intervalle de temps" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "Impossible de se connecter au catalogue \"%(catalog_name)s\"." + "END (EXCLUSIVE)": ["FIN (EXCLUSIVE)"], + "End date excluded from time range": [ + "Date de fin exclue de l'intervalle de temps" ], - "Unable to connect to database \"%(database)s\".": [ - "Impossible de se connecter à la base de données \"%(database)s\"." + "Configure Time Range: Previous...": [ + "Configurer intervalle de temps : Précédent ..." ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "" + "Configure Time Range: Last...": [ + "Configurer intervalle de temps : Dernier ..." ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [ - "Impossible de trouver un tel congé : [%(holiday)s]" + "Configure custom time range": [ + "Configurer un intervalle de temps personnalisée" ], - "Unable to load columns for the selected table. Please select a different table.": [ - "" + "Relative quantity": ["Quantité relative"], + "Relative period": ["Période relative"], + "Anchor to": ["S'ancrer à"], + "NOW": ["MAINTENANT"], + "Date/Time": ["Date/Heure"], + "Return to specific datetime.": ["Retour au datetime spécifique."], + "Syntax": ["Syntaxe"], + "Example": ["Exemple"], + "Moves the given set of dates by a specified interval.": [ + "Décale l'ensemble de dates d'un intervalle spécifié." ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Impossible de migrer l'état de l'éditeur de requêtes dans le backend. Superset réessayera plus tard. Veuillez contacter votre administrateur si le problème persiste." + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Tronquer la date spécifiée à la précision spécifiée par l'unité de date." ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Impossible de migrer l'état de la requête dans le backend. Superset réessayera plus tard. Veuillez contacter votre administrateur si le problème persiste." + "Get the last date by the date unit.": [ + "Récupérer la dernière date par l'unité de date." ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Impossible de migrer l'état du schéma de la table dans le backend. Superset réessayera plus tard. Veuillez contacter votre administrateur si le problème persiste." + "Get the specify date for the holiday": [ + "Récupérer la date spécifiée pour le jour férié" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Impossible de téléverser le fichier CSV \"%(filename)s\" dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message d'erreur : %(error_msg)s" + "Previous": ["Précédent"], + "Custom": ["Personnalisée"], + "last day": ["hier"], + "last week": ["la semaine dernière"], + "last month": ["le mois dernier"], + "last quarter": ["le trimestre dernier"], + "last year": ["l'année dernière"], + "previous calendar week": ["semaine calendaire précédente"], + "previous calendar month": ["mois calendaire précédent"], + "previous calendar year": ["année calendaire précédente"], + "Seconds %s": ["Secondes %s"], + "Minutes %s": ["Minutes %s"], + "Hours %s": ["Heures %s"], + "Days %s": ["Jours %s"], + "Weeks %s": ["Semaines %s"], + "Months %s": ["Mois %s"], + "Quarters %s": ["Trimestres %s"], + "Years %s": ["Année %s"], + "Specific Date/Time": ["Date/Heure Spécifique"], + "Relative Date/Time": ["Date/Heure Relative"], + "Now": ["Maintenant"], + "Midnight": ["Minuit"], + "Saved expressions": ["Expressions sauvegardées"], + "Saved": ["Enregistré"], + "%s column(s)": ["%s colonne(s)"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Impossible de charger le fichier en colonnes \"%(filename)s\" dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message d'erreur : %(error_msg)s" + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": ["Simple"], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": ["SQL personnalisé"], + "My column": ["Ma colonne"], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Click to edit label": ["Cliquer pour éditer le Label"], + "Drop columns/metrics here or click": [ + "Supprimer des colonnes/métriques ici ou cliquer" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Impossible de charger le fichier Excel \"%(filename)s\" dans la table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message d'erreur : %(error_msg)s" + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "\n Ce filtre est hérite du contexte du tableau de bord.\n Il ne sera pas sauvé à l'enregistrement du graphique.\n " ], - "Undefined": ["Indéfini"], - "Undefined window for rolling operation": [ - "Fenêtre indéfinie pour l'opération de roulement" + "%s option(s)": ["%s option(s)"], + "Select subject": ["Sélectionner un objet"], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Aucune colonne de ce type n'a été trouvée. Pour filtrer sur une métrique, essayer l'onglet Custom SQL." ], - "Undo?": ["Défaire?"], - "Unexpected error": ["Erreur inattendue"], - "Unexpected error occurred, please check your logs for details": [ - "Erreur inattendue, consultez les logs pour plus de détails" + "To filter on a metric, use Custom SQL tab.": [ + "Pour filtrer sur une métrique, utiliser l'onglet Custom SQL." ], - "Unexpected time range: %s": ["Intervalle de temps inattendu: %s"], - "Unknown": ["Erreur inconnue"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Hôte MySQL \"%(hostname)s\" inconnu." + "%s operator(s)": ["%s opérateur(s)"], + "Select operator": ["Sélectionner l'opérateur"], + "Comparator option": ["Option comparateur"], + "Type a value here": ["Saisir une valeur ici"], + "Filter value (case sensitive)": [ + "Valeur du filtre (sensible à la casse)" ], - "Unknown Presto Error": ["Erreur Presto inconnue"], - "Unknown Status": ["Statut inconnu"], - "Unknown column used in orderby: %(col)s": [ - "Colonne inconnue utilisée dans le tri %(col)s" + "choose WHERE or HAVING...": ["choisir WHERE ou HAVING..."], + "Filters by columns": ["Filtrer par colonne"], + "Filters by metrics": ["Filtres par métrique"], + "Fixed": ["Modifié"], + "Based on a metric": ["Basé sur une métrique"], + "My metric": ["Ma métrique"], + "Add metric": ["Ajouter une métrique"], + "Select aggregate options": ["Sélectionner les options d’agrégat"], + "%s aggregates(s)": ["%s agrégat(s)"], + "Select saved metrics": ["Sélectionner les métriques sauvegardées"], + "%s saved metric(s)": ["%s métrique(s) sauvegardée(s)"], + "Saved metric": ["Métrique sauvegardée"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [ + "Les métriques ad-hoc simples ne sont pas disponibles pour ce dataset" ], - "Unknown error": ["Erreur inconnue"], - "Unknown input format": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Type de retour non sécurisé pour la fonction %(func)s: %(value_type)s" + "column": ["colonne"], + "aggregate": ["agrégat"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "Les métriques ad-hoc pour le SQL personnalisé ne sont pas disponibles pour ce dataset" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Valeur de template non sécurisée pour la clé %(key)s: %(value_type)s" + "Time series columns": ["Colonnes des séries temporelles"], + "Sparkline": [""], + "Period average": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["Largeur"], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Unsupported clause type: %(clause)s": [ - "Type de clause non supportée: %(clause)s" + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "" ], - "Unsupported post processing operation: %(operation)s": [ - "Opération de post-traitement non supportée : %(operation)s" + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "" ], - "Unsupported return value for method %(name)s": [ - "Type de retour non supporté pour la méthode %(name)s" + "Select Viz Type": ["Sélectionner un type de visualisation"], + "Currently rendered: %s": [""], + "Recommended tags": ["Tags recommandés"], + "Search all charts": ["Chercher tous les graphiques"], + "No description available.": ["Pas de description disponible."], + "Examples": ["Exemples"], + "This visualization type is not supported.": [ + "Ce type de visualisation n'est pas supporté." ], - "Unsupported template value for key %(key)s": [ - "Valeur de template non supportée pour la clé key %(key)s" + "Select a visualization type": ["Sélectionner un type de visualisation"], + "No results found": ["Aucun résultat trouvé"], + "Superset Chart": ["Graphique Superset"], + "New chart": ["Nouveau graphique"], + "Edit chart properties": ["Modifier les propriétés du graphique"], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Export to .JSON": ["Exporter au format JSON"], + "Run in SQL Lab": ["Exécuter dans SQL Lab"], + "Code": ["Code"], + "Markup type": ["Type de balisage"], + "Pick your favorite markup language": [ + "Choisissez votre langage de balisage préféré" ], - "Unsupported time grain: %(time_grain)s": [ - "Granularité de Temps non supportée : %(time_grain)s" + "Put your code here": ["Mettez votre code ici"], + "URL parameters": ["Paramètres URL"], + "Extra parameters for use in jinja templated queries": [ + "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" ], - "Untitled query": ["Requête sans titre"], - "Update": ["Mettre à jour"], - "Upload": ["Téléverser"], - "Upload CSV to database": [ - "Importer des fichiers CSV vers la base de données" + "Annotations and layers": ["Annotations et couches"], + "Annotation layers": ["Couches d'annotations"], + "My beautiful colors": [""], + "< (Smaller than)": ["< (Plus petit que)"], + "> (Larger than)": ["> (Plus grand que)"], + "<= (Smaller or equal)": ["<= (Plus petit ou égal)"], + ">= (Larger or equal)": [">= (Plus grand ou égal)"], + "== (Is equal)": ["== (Est equal)"], + "!= (Is not equal)": ["!= (N'est pas égal)"], + "Not null": ["Non Null"], + "60 days": ["60 jours"], + "90 days": ["90 jours"], + "Add notification method": ["Ajouter une méthode de notification"], + "Add delivery method": ["Ajouter méthode de livraison"], + "Add": ["Ajouter"], + "Report name": ["Nom du rapport"], + "Alert name": ["Nom de l'alerte"], + "Active": ["Actif"], + "Alert condition": ["Condition d'alerte"], + "SQL Query": ["Requête SQL"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Déclencher une alerte si ..."], + "Condition": ["Condition"], + "Report schedule": ["Planification de rapport"], + "Alert condition schedule": ["Planification de la condition d'alerte"], + "Timezone": ["Fuseau horaire"], + "Schedule settings": ["Paramètres de planification"], + "Log retention": ["Rétention de log"], + "Working timeout": ["Timeout d'exécution"], + "Time in seconds": ["Temps en secondes"], + "Grace period": ["Période de grâce"], + "Message content": ["Contenu du message"], + "Send as PNG": ["Envoyer comme PNG"], + "Send as CSV": ["Envoyer au format CSV"], + "Send as text": ["Envoyer comme texte"], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Méthode de notification"], + "report": ["rapport"], + "CRON expression": ["Expression CRON"], + "Report sent": ["Rapport envoyé"], + "Alert triggered, notification sent": [ + "Alerte déclenchée, notification envoyée" ], - "Upload Credentials": ["Charger les informations de connexion"], - "Upload Excel file to database": [ - "Importer des fichiers Excel vers la base de données" + "Report sending": ["Envoi d'un rapport"], + "Alert running": ["Altere en cours"], + "Report failed": ["Le rapport a échoué"], + "Alert failed": ["L'alerte a échoué"], + "Nothing triggered": ["Rien déclenché"], + "Alert Triggered, In Grace Period": [ + "Alerte déclenchée, -période de grâce" ], - "Upload JSON file": ["Charger un fichier JSON"], - "Upload columnar file to database": [ - "Importer des colonnes vers la base de données" + "Delivery method": ["Méthode de livraison"], + "Select Delivery Method": ["Choisir la méthode de livraison"], + "Recipients are separated by \",\" or \";\"": [ + "Les destinataires sont séparés par \",\" ou \";\"" ], - "Use \"%(menuName)s\" menu instead.": [""], - "Use Columns": ["Utilise Columns"], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [ - "Utiliser une connexion cryptée vers la base de données" + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["annotation_layer"], + "Edit annotation layer properties": ["Couches d'annotation"], + "Annotation layer name": ["Nom de la couche d'annotations"], + "Description (this can be seen in the list)": [ + "Description (cela peut être vu dans la liste)" ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" + "annotation": ["annotation"], + "The annotation has been updated": ["Cette annotation a été modifiée"], + "The annotation has been saved": ["Cette annotation a été sauvegardée"], + "Edit annotation": ["Modifier annotation"], + "Add annotation": ["Ajouter une annotation"], + "date": ["date"], + "Additional information": ["Informations additionnelles"], + "Please confirm": ["Veuillez confirmer"], + "Are you sure you want to delete": ["Etes-vous sûr de vouloir supprimer"], + "Modified %s": ["%s modifié"], + "css_template": ["css_template"], + "Edit CSS template properties": [ + "Modifier les propriétés du template CSS" ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [ - "Utiliser l'ancien éditeur de source de données" + "Add CSS template": ["Templates CSS"], + "css": ["css"], + "published": ["publié"], + "draft": ["brouillon"], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": ["Exposer la base de données dans SQL Lab"], + "Allow this database to be queried in SQL Lab": [ + "Autoriser cette base de données à être requêtées dans SQL Lab" ], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "Utiliser le fichier JSON que vous avez téléchargé automatiquement lors de la création de votre compte de service." + "Allow creation of new tables based on queries": [ + "Autoriser la création de nouvelles tables basées sur des requêtes" ], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [ - "Utiliser ceci pour définir une couleur statique pour tous les cercles" + "Allow creation of new views based on queries": [ + "Autoriser la création de nouvelles vues basées sur des requêtes" ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "Utilisé en interne pour identifier le plugin. Devrait être le nom du package tiré du fichier plugin package.json" + "CTAS & CVAS SCHEMA": ["SCHEMA CTAS & CVAS"], + "Create or select schema...": ["Créer ou sélectionner schéma ..."], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Force la création des tables et des vues dans ce schéma quand on cliquer sur CTAS or CVAS dans SQL Lab." ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Permettre la manipulation de la base de données en utilisant des instructionsnon SELECT comme UPDATE, DELETE, CREATE, etc." ], - "User": ["Utilisateur"], - "User Roles": ["Profils utilisateurs"], - "User doesn't have the proper permissions.": [ - "L'utilisateur n'a pas les droits." + "Enable query cost estimation": [ + "Activer l'estimation du coût de la requête" + ], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Pour Presto et Postgres, affiche un bouton pour calculer le coût avant d'exécuter une requête." ], - "User must select a value for this filter": [ - "L'utilisateur doit sélectionner une valeur pour ce filtre" + "Allow this database to be explored": [ + "Autoriser cette base de données à être explorée" ], - "User query": ["Requête utilisateur"], - "Username": ["Nom d'utilisateur"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Quand activé, les utilisateurs peuvent visualiser les résulats de SQL Lab dans Explorer." ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Value": ["Valeur"], - "Value Domain": [""], - "Value bounds": [""], - "Value is required": ["Une valeur est obligatoire"], - "Value must be greater than 0": ["La valeur doit être plus grande que 0"], - "Values are dependent on other filters": [ - "Les valeurs dépendent d'autres filtres" + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["Timeout du cache du graphique"], + "Enter duration in seconds": ["Entrer la durée en secondes"], + "Schema cache timeout": ["Timeout du cache de schéma"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Durée (en seconds) du délai de mise en cache pour les schémas de base de données. Si vide, le cache n'expire jamais." ], - "Values dependent on": ["Valeurs dépendent de"], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "Les valeurs sélectionnées dans d'autres filtres affecteront les options de filtrage afin de n'afficher que les valeurs pertinentes" + "Table cache timeout": ["Timeout du cache de table"], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Durée (en secondes) du délai de mise en cache pour les métadonnées des tables de cette base de données. Si vide, le cache n'expire jamais. " ], - "Verbose Name": ["Nom explicite"], - "Version": ["Version"], - "Version number": ["Numéro de version"], - "Video game consoles": [""], - "View All »": ["Tout voir »"], - "View in SQL Lab": ["Voir dans SQL Lab"], - "View keys & indexes (%s)": ["Vue des clefs et index (%s)"], - "View query": ["Voir la requête"], - "Viewed": ["Consultés"], - "Virtual (SQL)": ["SQL virtuel"], - "Virtual dataset": ["Jeu de données virtuel"], - "Virtual dataset query cannot be empty": [ - "La requête du jeu de données virtuel ne peut pas être vide" + "Asynchronous query execution": ["Exécution de requête asynchrone"], + "Cancel query on window unload event": [ + "Annule la requête quand on quitte la fenêtre" ], - "Virtual dataset query cannot consist of multiple statements": [ - "La requête du jeu de données virtuel ne peut pas comporter plusieurs instructions" + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Arrête les requêtes en cours quand la fenêtre du navigateur est fermée ou quand change pour un autre page. Disponibles pour les bases de données Presto, Hive, MySQL, Postgres et Snowflake." ], - "Virtual dataset query must be read-only": [ - "La requête du jeu de données virtuel doit être en lecture seule" + "Secure extra": ["Sécurité"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Chaîne JSON qui contient des informations de configuration de connexion supplémentaires. Ceci est utilisé pour fournir des informations de connexion pour des systèmes comme Hive, Presto et BigQuery qui ne se conforment pas à la syntaxe utilisateur:mot_de_passe normalement utilisée par SQLAlchemy." ], - "Visual Tweaks": [""], - "Visualization Type": ["Type de visualisation"], - "Visualization type": ["Type de visualisation"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "" + "Enter CA_BUNDLE": ["Entrer CA_BUNDLE"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Contenu CA_BUNDLE optionnel pour valider les requêtes HTTPS. Disponible seulent pour certains moteurs de base de données." ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ - "" + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Impersonnaliser l'utilisateur connecté (Presto, Trino, Drill, Hive, and GSheets)" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "" + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Si Presto ou Trino, toutes les requêtes dans SQL Lab sont en cours d'exécution sous le compte de l'utilisateur actuellement connecté qui doit avoir les permissions requises pour les exécuter. Si Hive et hive.server2.enable.doAs est activé, les requêtes seront exécutées sous le compte du service, mais en impersonnifiant l'utilisateur actuellement connecté via la propriété hive.server2.proxy.user." ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "" + "Metadata Parameters": ["Les paramètres de métadonnées"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "L'objet metadata_params contient les paramètres envoyés à sqlalchemy.MetaData." ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "" + "Engine Parameters": ["Les paramètres du moteur"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "L'objet engine_params contient les paramètres envoyés à sqlalchemy.create_engine." ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Version": ["Version"], + "Version number": ["Numéro de version"], + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ - "" + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Display Name": ["Nom affiché"], + "Name your database": ["Donner un nom à la base de données"], + "Pick a name to help you identify this database.": [ + "Choisissez un nom pour vous aider à identifier cette base de données." ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ - "" + "dialect+driver://username:password@host:port/database": [ + "dialect+driver://username:password@host:port/database" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ - "" + "Refer to the": ["Se référér à"], + "for more information on how to structure your URI.": [ + "pour plus d'information sur comment strcuturer votre URI." ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "" + "Test connection": ["Tester la connexion"], + "database": ["base de données"], + "Please enter a SQLAlchemy URI to test": [ + "Veuillez entrer une URI SQLAlchemy pour tester" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ - "" + "e.g. world_population": [""], + "Sorry there was an error fetching database information: %s": [ + "Désolé, une erreur s'est produite lors de la récupération des informations de cette base de données : %s" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Or choose from a list of other databases we support:": [""], + "Want to add a new database?": ["Ajouter un nouvelle base de données ?"], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Connect": ["Connecter"], + "Finish": ["Terminer"], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "Viz is missing a datasource": [ - "Viz est une source de données manquante" - ], - "Viz type": ["Type"], - "WED": ["MER"], - "Want to add a new database?": ["Ajouter un nouvelle base de données ?"], - "Warning": ["Avertissement"], - "Warning Message": ["Message d'avertissement"], - "Warning!": ["Attention !"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Attention ! Changer le jeu de données peut mettre en erreur le graphique si la métadonnées n'existe pas." + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Vous importez une ou plusieurs bases de données qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" ], "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "Nous ne pouvons résoudre la colonne \"%(column)s\" à la ligne %(location)s." - ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "Nous ne pouvons résoudre la colonne \"%(column_name)s\"" - ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "Nous ne pouvons résoudre la colonne \"%(column_name)s\" à la ligne %(location)s." - ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [ - "Nous n'avons pas pu activer ou désactiver ce rapport." + "QUERY DATA IN SQL LAB": [""], + "Connect a database": ["Connecter une base de données"], + "Edit database": ["Éditer la base de données"], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Cliquez sur ce lien pour basculer sur un autre formulaire qui ne montrera que les champs nécessaires pour se connecter à cette base de données." ], - "We were unable to carry over any controls when switching to this new dataset.": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "Nous n'avons pas pu nous connecter à votre base de données \"%(database)s\". Veuillez vérfier le nom de la base et réessayez." - ], - "Web": [""], - "Wednesday": ["Mercredi"], - "Week": ["Semaine"], - "Week ending Saturday": ["Semaine terminant le samedi"], - "Week starting Monday": ["Semaine débutant le lundi"], - "Week starting Sunday": ["Semaine débutant le dimanche"], - "Week_ending Sunday": ["Semaine terminant le dimanche"], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "Weeks %s": ["Semaines %s"], - "What should be shown on the label?": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "Lorsque `Type de calcul` vaut \"Pourcentage de changement\", le format de l'axe Y est à forcé à `.1%`" - ], - "When a secondary metric is provided, a linear color scale is used.": [ - "" + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Cliquez sur ce lien pour basculer sur un autre formulaire qui vous permettra d'entrer manuellement l'URL SQLAlchemy pour cette base de données." ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Quand l'option autoriser CREATE TABLE AS dans SQL Lab est cochée, force la table a être créée dans le schéma" + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine (ex mydatabase.com)." ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "Quand activé, les utilisateurs peuvent visualiser les résulats de SQL Lab dans Explorer." + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Access token": [""], + "e.g. param1=value1¶m2=value2": [""], + "Add additional custom parameters": [ + "Ajouter des paramètres personnalisés supplémentaires" ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "" + "SSL Mode \"require\" will be used.": [ + "Le mode SSL \"require\" sera utilisé." ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "Quand on indique du SQL, la source de données se comporte comme une vue. Superset utilisera ce paramètre comme une sous-requête lors du regroupement et du filtrage sur la requête parent générée." + "Type of Google Sheets allowed": [ + "Type de feuilles Google Sheets autorisées" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "Quand vous utilisez les filtres de replissage automatique, cela peut être utilisé pour améliorer la perfomance de chargement des valeurs. Utilisez cette option pour appliquer un prédicat (clause WHERE) à la requête qui sélectionne les valeurs. Typiquement, le but serait de limiter le parcours en appliquant un filtre temporel sur un champ temporel partitionné ou indexé." + "Publicly shared sheets only": [ + "Seulement les feuilles paratagées publiques" ], - "When using 'Group By' you are limited to use a single metric": [ - "Quand vous utilisez 'Grouper par' vous êtes limité à une seule métrique" + "Public and privately shared sheets": [ + "Feuilles partagées de manière publique ou privée" ], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [ - "Quand l'option est utilisée, une valeur par defaut doit être indiquée" + "How do you want to enter service account credentials?": [ + "Comment voulez-vous entrer les informations de connexion du compte de service ?" ], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "" + "Upload JSON file": ["Charger un fichier JSON"], + "Copy and Paste JSON credentials": [ + "Copier et coller les informations de connexion JSON" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "Si la table a été générée par le flow 'Visualiser' dans SQL Lab" + "Service Account": ["Compte de service"], + "Copy and paste the entire service account .json file here": [ + "Copier et coller ici le fichier de service .json en entier" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Si cette colonne doit apparaître dans la section `Filtres` de la page exploration." + "Upload Credentials": ["Charger les informations de connexion"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "Utiliser le fichier JSON que vous avez téléchargé automatiquement lors de la création de votre compte de service." ], - "Whether to align background charts with both positive and negative values at 0": [ - "" + "Connect Google Sheets as tables to this database": [ + "Connecter à cette base de données les feuilles Google Sheet comme des tables" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "" + "Google Sheet Name and URL": ["Nom et URL de la feuille Google Sheet"], + "Enter a name for this sheet": ["Entrée un nom pour cette feuille"], + "Paste the shareable Google Sheet URL here": [ + "Coller ici l'URL partageable de Google Sheet" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "Add sheet": ["Ajouter une feuille"], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Unable to load columns for the selected table. Please select a different table.": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a time filter": [ - "S'il faut inclure un filtre de temps" - ], - "Whether to include the time granularity as defined in the time section": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "S'il faut que cette colonne soit accessible comme une option [Time Granularity], elle doit être DATETIME ou d'un format équivalent" + "Create chart with dataset": [""], + "chart": ["graphique"], + "No charts": ["Aucun graphique"], + "This dataset is not used to power any charts.": [""], + "[Untitled]": ["[Sans titre]"], + "Unknown": ["Erreur inconnue"], + "Edited": ["Édité"], + "Created": ["Créé le"], + "Viewed": ["Consultés"], + "Favorite": ["Favoris"], + "Mine": ["Personnel"], + "View All »": ["Tout voir »"], + "An error occurred while fetching dashboards: %s": [ + "Une erreur s'est produite durant la récupération des tableaux de bord : %s" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [ - "S'il faut remplir les options des filtres de saisie semi-automatique" + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été récemment consultés apparaîtront ici" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Faut-il remplir à la volée les choix du filtre de la section filtre de la page d'exploration avec la liste des valeurs distinctes répérées depuis le backend" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été récemment créés apparaîtront ici" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été récemment modifiés apparaîtront ici" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort descending or ascending": [ - "Trier par ordre décroissant ou croissant" + "SQL query": ["requête SQL"], + "You don't have any favorites yet!": [ + "Vous n'avez pas encore de favoris !" ], - "Whether to sort results by the selected metric in descending order.": [ - "" + "Connect database": ["Connexion à la base de données"], + "Connect Google Sheet": [""], + "Upload CSV to database": [ + "Importer des fichiers CSV vers la base de données" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "" + "Upload columnar file to database": [ + "Importer des colonnes vers la base de données" ], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "Width": ["Largeur"], - "Width of the sparkline": [""], - "Window must be > 0": ["La fenêtre doit être > 0"], - "With a subheader": [""], - "Word Cloud": [""], - "Working": [""], - "Working timeout": ["Timeout d'exécution"], - "World Map": ["Carte du monde"], - "Write a description for your query": [ - "Ecrire une description à votre requête" + "Upload Excel file to database": [ + "Importer des fichiers Excel vers la base de données" ], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column.": [ - "Ecrire l'index du tableau de données en colonne." + "Info": ["Info"], + "Logout": ["Déconnexion"], + "About": ["A propos"], + "Powered by Apache Superset": ["Propulsé par Apache Superset"], + "SHA": [""], + "Documentation": ["Documentation"], + "Report a bug": ["Rapporter un BUG"], + "Login": ["Connexion"], + "query": ["requête"], + "Deleted: %s": ["Supprimé : %s"], + "There was an issue deleting %s: %s": [ + "Il y a eu un problème lors de la suppression de %s: %s" ], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": ["Axe X"], - "X Axis Label": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort By": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": ["Axe Y"], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": ["Format de l'axe Y"], - "Y Axis Label": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort By": [""], - "Y-axis bounds": [""], - "Year": ["Année"], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Years %s": ["Année %s"], - "Yes": ["Oui"], - "Yes, cancel": ["Oui, annuler"], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Vous importez un ou plusieurs graphiques qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" + "This action will permanently delete the saved query.": [ + "Cette action va définitivement supprimer la requête sauvegardée." ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Vous importez un ou plusieurs tableaux de bord qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" + "Delete Query?": ["Supprimer la requête ?"], + "Ran %s": ["A été exécuté %s"], + "Saved queries": ["Requêtes sauvegardées"], + "Next": ["Suivant"], + "Tab name": ["Nom de l'onglet"], + "User query": ["Requête utilisateur"], + "Executed query": ["Lancer la requête sélectionnée"], + "Query name": ["Nom de la requête"], + "SQL Copied!": ["SQL Copié !"], + "Sorry, your browser does not support copying.": [ + "Désolé, votre navigateur ne doit pas supporter la copie." ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Vous importez une ou plusieurs bases de données qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" + "There was an issue fetching reports attached to this dashboard.": [ + "Désolé, une erreur s'est produite lors de la récupération des rapports de ce tableau de bord." ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Vous importez une ou plusieurs requêtes sauvegardées qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" + "The report has been created": ["Le rapport a été créé"], + "We were unable to active or deactivate this report.": [ + "Nous n'avons pas pu activer ou désactiver ce rapport." ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "Vous n'avez pas le droit de voir cette requête. Contactez votre administrateur si vous pensez que c'est une erreur." + "Your report could not be deleted": [ + "Votre rapport n'a pas pu être supprimé" ], - "You can add the components in the": [ - "Vous pouvez ajouter les composants via le" + "Weekly Report for %s": [""], + "Edit email report": ["Modifier le rapport par e-mail"], + "Text embedded in email": ["Text encapsulé dans l'e-mail"], + "Image (PNG) embedded in email": ["Image (PNG) encapsulée dans l'e-mail"], + "Formatted CSV attached in email": ["CSV formatté attaché dans l'e-mail"], + "Include a description that will be sent with your report": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Email reports active": ["Rapports par e-mail actifs"], + "Delete email report": ["Supprimer le rapport par e-mail"], + "Schedule email report": ["Planifier un rapport par e-mail"], + "This action will permanently delete %s.": [ + "Cette action va supprimer définitivement %s." ], - "You can also just click on the chart to apply cross-filter.": [ - "Vous pouvez juste cliquer sur le graphique pour appliquer le filtre" + "Delete Report?": ["Supprimer le rapport ?"], + "Rule added": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Pour les filtres réguliers, ce sont les profils sur lesquels vont s'appliquer les filtres. Pour les filtres de base, ce sont les profis sur lesquels les filtres NE VONT PAS s'appliquer, par exemple Admin si l'admin devrait voir toutes les données." ], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "" + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Les filtres d'un groupe qui ont la même clé vont se combiner avec des OU, alors que des filtres de groupes différents vont se combiner avec des ET. Les groupes qui ont une clé indéfinie sont traités comme des groupes uniques, c'est-à-dire qu'ils ne sont pas regroupés. Par exemple, si une table a 3 filtres dont 2 sont pour les départements Finance et Marketing (clé de groupe 'department', et 1 se réfère à la région Europe (clé de groupe = 'region'), la clause du filtre qui s'appliquerait serait (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe')." ], - "You can create a new chart or use existing ones from the panel on the right": [ - "Vous pouvez créer un nouveau graphique ou utililser ceux existants à partir du panneau de droite" + "Clause": ["Clause"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Ceci est la condition qui sera ajoutée à la clause WHERE. Par exemple, pour ne retourner que les lignes d'un client particulier, vous pouvez définir un filtre régulier avec la clause `client_id = 9`. Pour n'afficher aucune ligne sauf pour les utilisateurs qui appartiennent à un role de filtre RLS, un filtre de base peut être créé avec la clause `1 = 0` (toujours faux)." ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ "" ], - "You can't apply cross-filter on this data point.": [ - "Vous ne pouvez pas ajouter de filtre sur ce point de donnée" + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": ["Colonne non numérique choisie"], + "Filter value is required": ["La valeur du filtre est requise"], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": ["Cocher pour trier par ordre croissant"], + "Can select multiple values": ["Peut selectionner plusieurs valeurs"], + "Select first filter value by default": [ + "Sélectionne la première valeur du filtre par défaut" ], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "" + "When using this option, default value can’t be set": [ + "Quand l'option est utilisée, une valeur par defaut doit être indiquée" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "Vous ne pouvez pas utiliser [Colonnes] en même temps que [Grouper par]/[Métriques]/[Métriques de Pourcentages]. Veuillez choisir l'un ou l'autre." + "Dynamically search all filter values": [ + "Charge dynamiquement les valeurs du filtre" ], - "You do not have permission to edit this chart": [ - "Vous n'avez pas les permission pour modifier ce graphique" + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Par défaut, chaque filtre charge au plus 1000 choix au chargement initial de la page. Cocher cette case su vous avez plus de 1000 valeurs de filtre et voulez permettre la recherche dynamique qui charge les valeurs de filtre à mesure que le les utilisateurs tapent (peut surcharger la base de données)." ], - "You do not have permission to edit this dashboard": [ - "Vous n'avez pas le droit de modifier ce tableau de bord" + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "No time columns": ["Pas de colonne temporelle"], + "Time column filter plugin": [""], + "Working": [""], + "On Grace": [""], + "reports": ["rapports"], + "alerts": ["alertes"], + "There was an issue deleting the selected %s: %s": [ + "Il y a eu un problème lors de la suppression des %s sélectionné(e)s :%s" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "Vous n'avez pas les permissions pour accéder à(aux) source(s) : %(name)s." + "Last run": ["Dernière exécution"], + "Execution log": ["Log d'exécution"], + "Bulk select": ["Sélectionner plusieurs"], + "No %s yet": ["Pas encore de %s"], + "Owner": ["Propriétaire"], + "All": ["Tous"], + "Status": ["Statut"], + "An error occurred while fetching dataset datasource values: %s": [ + "Une erreur s'est produite durant la récupération les sources de données du jeu de données : %s" ], - "You do not have permissions to edit this dashboard.": [ - "Vous n'avez pas les droits pour modifier ce tableau de bord." + "Alerts & reports": ["Alertes et rapports"], + "Alerts": ["Alertes"], + "Reports": ["Rapports"], + "Delete %s?": ["Effacer %s ?"], + "Are you sure you want to delete the selected %s?": [ + "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" ], - "You don't have access to this dashboard.": [ - "Vous n'avez pas accès à ce tableau de bord." + "There was an issue deleting the selected layers: %s": [ + "Il y eu un problème lors de la suppression des couches sélectionnés : %s" ], - "You don't have any favorites yet!": [ - "Vous n'avez pas encore de favoris !" + "Edit template": ["Modifier un template"], + "Delete template": ["Supprimer un template"], + "No annotation layers yet": ["Pas encore de couches d'annotations"], + "This action will permanently delete the layer.": [ + "Cette action va définitivement supprimer la couche." ], - "You don't have the rights to alter this title.": [ - "Vous n'avez pas les droits pour modifier ce titre." + "Delete Layer?": ["Effacer couche ?"], + "Are you sure you want to delete the selected layers?": [ + "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" ], - "You have no permission to approve this request": [ - "Vous n'avez pas les permission pour approuver cette requête" + "There was an issue deleting the selected annotations: %s": [ + "Il y eu un problème lors de la suppression des annotations sélectionnés : %s" ], - "You have removed this filter.": ["Vous avez supprimé ce filtre."], - "You have unsaved changes.": [ - "Vous avez des modifications non sauvegardées." + "Delete annotation": ["Supprimer annotation"], + "Annotation": ["Annotation"], + "No annotation yet": ["Pas encore d'annotations"], + "Back to all": [""], + "Delete Annotation?": ["Supprimer l'annotation ?"], + "Are you sure you want to delete the selected annotations?": [ + "Etes-vous sûr de vouloir supprimer les annotations sélectionnées ?" ], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "" + "Failed to load chart data": [""], + "Choose a dataset": ["Choisissez un jeu de donnée"], + "Choose chart type": ["Choisissez un type de graphique"], + "Please select both a Dataset and a Chart type to proceed": [ + "Merci de sélectionner à la fois un Dataset et un type de graphique pour continuer" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "" + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les importer en même temps que les graphiques. Notez que les sections \"Securité Supplémentaire\" et \"Certificat\" de la configuration de la base de données ne sont pas présents dans les fichiers d'export et doivent être ajoutés manuellement après l'import si nécessaire." ], - "You must pick a name for the new dashboard": [ - "Vous devez entrer un nom pour le nouveau Tableau de Bord" + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Vous importez un ou plusieurs graphiques qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" ], - "You must run the query successfully first": [ - "Vous devez d'abord exécuter la requête avec succès" + "There was an issue deleting the selected charts: %s": [ + "Il y a eu un problème lors de la suppression des graphiques sélectionnés : %s" ], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "" + "Any": ["Tous"], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "Une erreur s'est produite durant la récupération des propriétaires du graphique : %s" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "" + "Alphabetical": ["Alphabétique"], + "Recently modified": ["Dernière modification"], + "Least recently modified": ["Dernière modification"], + "Import charts": ["Importer des graphiques"], + "Are you sure you want to delete the selected charts?": [ + "Etes-vous sûr de vouloir supprimer les graphiques sélectionnés ?" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "Votre tableau de bord est trop gros.Merci de réduire sa taille avant de sauvegarder." + "CSS templates": ["Templates CSS"], + "There was an issue deleting the selected templates: %s": [ + "Il y a eu un problème lors de la suppression des templates sélectionnés : %s" ], - "Your query could not be saved": [ - "Votre requête n'a pas pu être enregistrée" + "CSS template": ["Templates CSS"], + "This action will permanently delete the template.": [ + "Cette acion supprimera définitvement le template." ], - "Your query could not be scheduled": [ - "Votre requête ne peut pas être planifiée" + "Delete Template?": ["Supprimer template ?"], + "Are you sure you want to delete the selected templates?": [ + "Etes-vous sûr de vouloir supprimer les templates sélectionnés ?" ], - "Your query could not be updated": [ - "Votre requête n'a pas pu être mise à jour" + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les importer en même temps que les tableaux de bord. Notez que les sections \"Securité Supplémentaire\" et \"Certificat\" de la configuration de la base de données ne sont pas présents dans les fichiers d'export et doivent être ajoutés manuellement après l'import si nécessaire." ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Votre requête a été planifiée. Pour voir les détails de votre requête, naviguer vers Requêtes sauvegardées" + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Vous importez un ou plusieurs tableaux de bord qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" ], - "Your query was saved": ["Votre requête a été enregistrée"], - "Your query was updated": ["Votre requête a été mise à jour"], - "Your report could not be deleted": [ - "Votre rapport n'a pas pu être supprimé" + "There was an issue deleting the selected dashboards: ": [ + "Une erreur s'est produite durant la sauvegarde du tableau de bord sélectionné : " ], - "Zoom": [""], - "Zoom level of the map": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans [Grouper par]" + "An error occurred while fetching dashboard owner values: %s": [ + "Une erreur s'est produite durant la récupération des propriétaires du tableau de bord : %s" ], - "[Longitude] and [Latitude] must be set": [ - "Les colonnes [Longitude] et [Latitude] doivent êtres définies" + "Are you sure you want to delete the selected dashboards?": [ + "Etes-vous sûr de vouloir supprimer les tableaux de bord sélectionné ?" + ], + "An error occurred while fetching database related data: %s": [ + "Une erreur s'est produite lors de la récupération des données de la base : %s" ], - "[Missing Dataset]": ["[jeu de données manquant]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] Accès à la source de données %(name)s accordé" + "AQE": ["AQE"], + "Allow data manipulation language": ["Autoriser DML"], + "DML": ["DML"], + "CSV upload": ["Charger un CSV"], + "Delete database": ["Supprimer une base de données"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "La base de données %s est liée à %s graphiques qui apparaissent sur %s tableaux de bord et les utilisateurs ont des onglets %s SQL Lab ouverts qui utilisent cette base de données . Êtes-vous sûr de vouloir continuer ? Supprimer la base de données cassera ces objets." ], - "[Untitled]": ["[Sans titre]"], - "[dashboard name]": ["[nom du tableau de bord]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "" + "Delete Database?": ["Supprimer la base de données ?"], + "An error occurred while fetching dataset related data": [ + "Une erreur s'est produite lors de la récupération des données relatives au jeu de données" ], - "`compare_columns` must have the same length as `source_columns`.": [ - "`compare_columns` doit être de même longueur que `source_columns`." + "An error occurred while fetching dataset related data: %s": [ + "Une erreur s'est produite lors de la récupération des données relatives au jeu de données : %s" ], - "`compare_type` must be `difference`, `percentage` or `ratio`": [ - "`compare_type` doit être `difference`, `percentage` or `ratio`" + "Physical dataset": ["Jeu de données physique"], + "Virtual dataset": ["Jeu de données virtuel"], + "An error occurred while fetching datasets: %s": [ + "Une erreur s'est produite durant la récupération des jeux de données : %s" ], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`confidence_interval` doit être entre 0 et 1 (exclusif)" + "An error occurred while fetching schema values: %s": [ + "Une erreur s'est produit en récupérant les valeurs du schéma : %s" ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "" + "An error occurred while fetching dataset owner values: %s": [ + "Une erreur s'est produite durant la récupération des valeurs du propriétaire du jeu de données : %s" ], - "`operation` property of post processing object undefined": [ - "La propriété `operation` de l'objet de post-traitement est indéfinie" + "Import datasets": ["Importer des jeux de données"], + "There was an issue deleting the selected datasets: %s": [ + "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" ], - "`prophet` package not installed": ["`prophet` package non installé"], - "`rename_columns` must have the same length as `columns`.": [ - "`rename_columns` doit être de même longueur que `columns`." + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "La source de données %s est reliée à %s graphiques qui sont présents dans %s tableaux de bord. Etes-vous sûr de vouloir continuer ? Supprimer le jeu de données cassera ces objets." ], - "`row_limit` must be greater than or equal to 0": [ - "`row_limit` doit être plus grand ou égal à 0" + "Delete Dataset?": ["Supprimer le jeu de données ?"], + "Are you sure you want to delete the selected datasets?": [ + "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" ], - "`row_offset` must be greater than or equal to 0": [ - "`row_offset` doit être plus grand ou égal à 0" + "0 Selected": ["0 sélectionné"], + "%s Selected (Virtual)": ["%s Sélectionnée (Virtuelle)"], + "%s Selected (Physical)": ["%s Sélectionnée (Physique)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s Sélectionnée (%s Physique, %s Virtuelle)" ], - "`width` must be greater or equal to 0": [ - "`width` doit être plus grand ou égal à 0" + "log": ["log"], + "Execution ID": ["ID d'exécution"], + "Scheduled at (UTC)": ["Plannifié à (UTC)"], + "Start at (UTC)": ["Début à (UTC)"], + "Error message": ["Message d'erreur"], + "There was an issue fetching your recent activity: %s": [ + "Une erreur s'est produite lors de la récupération de votre activité récente : %s" ], - "aggregate": ["agrégat"], - "alert": ["alerte"], - "alerts": ["alertes"], - "all": ["Tous"], - "also copy (duplicate) charts": [ - "copier également les graphiques (dupliquer)" + "Thumbnails": [""], + "Recents": ["Récents"], + "There was an issue previewing the selected query. %s": [ + "Il y a eu un problème de prévisualisation de la requête sélectionnée. %s" ], - "ancestor": [""], - "and": ["et"], - "annotation": ["annotation"], - "annotation_layer": ["annotation_layer"], - "asfreq": [""], - "at": ["à"], - "auto (Smooth)": [""], - "background": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": ["boulon"], - "boolean type icon": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "chart": ["graphique"], - "choose WHERE or HAVING...": ["choisir WHERE ou HAVING..."], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["colonne"], - "connecting to %(dbModelName)s.": [""], - "create dataset from SQL query": [""], - "css": ["css"], - "css_template": ["css_template"], - "cumsum": [""], - "dashboard": ["tableau de bord"], - "database": ["base de données"], - "dataset": ["jeu de données"], - "date": ["date"], - "day": ["jour"], - "day of the month": ["jour du mois"], - "day of the week": ["jour de la semaine"], - "deckGL": [""], - "delete": ["effacer"], - "description": ["description"], - "dialect+driver://username:password@host:port/database": [ - "dialect+driver://username:password@host:port/database" + "TABLES": ["TABLES"], + "Open query in SQL Lab": ["Ouvrir requête dans SQL Lab"], + "An error occurred while fetching database values: %s": [ + "Une erreur s'est produite durant la récupération des valeurs de la base de données : %s" ], - "draft": ["brouillon"], - "dttm": ["dttm"], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "edit mode": ["mode edition"], - "error dark": [""], - "every": ["chaque"], - "every day of the month": ["chaque jour du mois"], - "every day of the week": ["chaque jour de la semaine"], - "every hour": ["chaque heure"], - "every minute": ["chaque minute"], - "every month": ["chaque mois"], - "fetching": ["récupération"], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "filter_box sera déprécié dans une future version de Superset. Merci de remplacer filter_box par des composants filtre de tableau de bord." + "An error occurred while fetching user values: %s": [ + "Une erreur s'est produit en récupérant les valeurs d'utilisateur : %s" ], - "for more information on how to structure your URI.": [ - "pour plus d'information sur comment strcuturer votre URI." + "Search by query text": ["Texte de recherche"], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les importer en même temps que les requêtes sauvegardées. Notez que les sections \"Securité Supplémentaire\" et \"Certificat\" de la configuration de la base de données ne sont pas présents dans les fichiers d'export et doivent être ajoutés manuellement après l'import si nécessaire." ], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "hour": ["heure"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "" + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Vous importez une ou plusieurs requêtes sauvegardées qui existent déjà. L'écrasement peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de vouloir ce remplacement ?" ], - "in": ["dans"], - "in modal": ["en modal"], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": ["relié"], - "json isn't valid": ["le json n'est pas valide"], - "key a-z": [""], - "key z-a": [""], - "last day": ["hier"], - "last month": ["le mois dernier"], - "last quarter": ["le trimestre dernier"], - "last week": ["la semaine dernière"], - "last year": ["l'année dernière"], - "latest partition:": ["dernière partition :"], - "less than {min} {name}": [""], - "log": ["log"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "le percentile inférieur doit être plus grand que 0 et plus petit que 100 et doit être plus petit que le percentile supérieur." + "There was an issue previewing the selected query %s": [ + "Il y a eu un problème lors de la prévisualisation de la requête sélectionnée %s" ], - "median": [""], - "metric": ["métrique"], - "minute": ["minute"], - "minute(s)": ["minute(s)"], - "month": ["mois"], - "more than {max} {name}": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "on": ["sur"], - "orderby column must be populated": [ - "la colonne de tri doit être remplie" + "Import queries": ["Importer des requêtes"], + "Link Copied!": ["Lien copié !"], + "There was an issue deleting the selected queries: %s": [ + "Il y a eu un problème lors de la suppression de requêtes sélectionnées : %s" ], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "percentiles doit être une liste ou un couple de 2 valeurs dont le premier est inférieur au second" + "Edit query": ["Modifier la requête"], + "Copy query URL": ["Copier l'URL de la requête"], + "Export query": ["Exporter la requête"], + "Delete query": ["Effacer la requête"], + "Are you sure you want to delete the selected queries?": [ + "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" ], - "pixelated (Sharp)": [""], - "previous calendar month": ["mois calendaire précédent"], - "previous calendar week": ["semaine calendaire précédente"], - "previous calendar year": ["année calendaire précédente"], - "published": ["publié"], "queries": ["requêtes"], - "query": ["requête"], - "reboot": ["reboot"], - "report": ["rapport"], - "reports": ["rapports"], - "restore zoom": [""], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "tag": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "std": [""], - "step-before": [""], - "string type icon": [""], - "sum": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": ["zone de texte"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "le percentile supérieur doit être plus grand que 0 et plus petit que 100 et doit être supérieur au percentile inférieur." + "Invalid input": [""], + "(no description, click to see stack trace)": [""], + "Please re-export your file and try importing again": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [ + "Une erreur s'est produite lors de lors de la récupération de votre activité récente :" ], - "virtual": ["virtuel"], - "was created": ["a été créé"], - "week": ["semaine"], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["année"], - "zoom area": [""], - "10 seconds": ["10 secondes"], - "6 hours": ["6 heures"], - "12 hours": ["12 heures"], - "24 hours": ["24 heures"] + "There was an issue deleting: %s": [ + "Il y a eu un problème lors de la suppression de : %s" + ], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Lien template, il est possible d'inclure {{ metric }} or autres valeurs provenant de ces contrôles." + ], + "Time-series Table": ["Table de Séries temporelles"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Comparer rapidement des graphiques de multiple séries temporelles et leurs métriques." + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/fr/LC_MESSAGES/messages.po b/superset/translations/fr/LC_MESSAGES/messages.po index ab2b065ce2c1f..aa21ade88ae8a 100644 --- a/superset/translations/fr/LC_MESSAGES/messages.po +++ b/superset/translations/fr/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2021-11-16 17:33+0100\n" "Last-Translator: FULL NAME \n" "Language: fr\n" @@ -28,16360 +28,16015 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" -"\n" -" Ce filtre est hérite du contexte du tableau de bord.\n" -" Il ne sera pas sauvé à l'enregistrement du graphique.\n" -" " - -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" -"\n" -" Erreur: %(text)s\n" -" " - -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 -msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" -msgstr "" - -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "Sauvegarder le Tableau de Bord" - -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -#, fuzzy -msgid " a new one" -msgstr "Modifié le" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " -msgstr " Expression qui doit adhérer à " - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." -msgstr "" -" standard pour s'assurer que l'ordre lexicographique\n" -" coïncide avec l'ordre chronologique. Si le format\n" -" de temps n’adhère pas à l'ISO 8601 standard\n" -" dont vous aurez besoin pour définir une expression " -"ou type\n" -" pour transformer une chaine en date ou " -"timestampNote\n" -" actuellement, les timezone ne sont pas gérées Si le" -" temps est stocké\n" -" en format epoch, mettez `epoch_s` ou `epoch_ms`. Si" -" aucun pattern\n" -" n'est spécifié, nous revenons à utiliser les " -"options par défauts\n" -" de niveau database / nom de colonne via l'extra " -"parameter." - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -#, fuzzy -msgid " to add calculated columns" -msgstr "Colonnes calculées" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -#, fuzzy -msgid " to add metrics" -msgstr "Ajouter une métrique" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -#, fuzzy -msgid " to edit or add columns and metrics." -msgstr "%s colonne(s) et métrique(s)" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" -msgstr "" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." -msgstr "" - -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" -msgstr "!= (N'est pas égal)" - -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." -msgstr "" -"%(dialect)s ne peut pas être utilisé comme source de données pour des " -"raisons de sécurité." - -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" -msgstr "Cela peut être déclenché par:" - -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" -msgstr "%(name)s.csv" - -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." -msgstr "%(object)s n'existe pas dans cette base de données." - -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, fuzzy, python-format -msgid "%(other)s charts will appear here" -msgstr "Les ${tableName.toLowerCase()} d'exemple apparaîtront ici" - -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, fuzzy, python-format -msgid "%(other)s dashboards will appear here" -msgstr "Les ${tableName.toLowerCase()} d'exemple apparaîtront ici" - -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, fuzzy, python-format -msgid "%(other)s recents will appear here" -msgstr "Les ${tableName.toLowerCase()} d'exemple apparaîtront ici" - -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, fuzzy, python-format -msgid "%(other)s saved queries will appear here" -msgstr "" -"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " -"récemment consultés apparaîtront ici" - -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" -msgstr "%(rows)d lignes retournées" - -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, fuzzy, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" -msgstr "Cela peut être déclenché par:" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "%(suggestion)s au lieu de \"%(undefinedParameter)s?\"" -msgstr[1] "" - -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" -msgstr "%(user)s a obtenu le profil %(role)s qui donne accès à %(datasource)s" - -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" -msgstr "Le profil de %(user)s" - -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" -msgstr "" -"%(validator)s n'a pas pu vérifier votre requête.\n" -"Merci de vérifier à nouveau votre requête.\n" -"Exception: %(ex)s" - -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s Erreur" - -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "%s Mot de passe" - -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" -msgstr "" - -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" -msgstr "" - -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "" - -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" -msgstr "%s Sélectionné" - -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s Sélectionnée (%s Physique, %s Virtuelle)" - -#: superset-frontend/src/pages/DatasetList/index.tsx:823 -#, python-format -msgid "%s Selected (Physical)" -msgstr "%s Sélectionnée (Physique)" - -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "%s Sélectionnée (Virtuelle)" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "%s agrégat(s)" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "%s colonne(s)" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "%s opérateur(s)" - -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s option(s)" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s option(s)" - -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s Erreur" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "%s métrique(s) sauvegardée(s)" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "Dernière mise à jour %s" - -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" -msgstr "%s%s" - -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "%s-%s de %s" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(Supprimé)" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "" - -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "" -"(optionnel) valeur pas défaut pour le filtre, avec l'option multiple, " -"vous pouvez utiliser un point virgule pour séparer les options." - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "" - -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explorer dans Superset>\n" -"\n" -"%(table)s\n" - -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Erreur: %(text)s\n" - -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" -msgstr "" - -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" -msgstr "" - -#: superset/views/database/forms.py:164 -msgid "." -msgstr "" - -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0 sélectionné" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "jour" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "Il y a 1 jour" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 heure" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -#, fuzzy -msgid "1 hourly frequency" -msgstr "Fréquence de rafraichissement" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 minute" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "semaine" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" -msgstr "Il y a 1 semaine" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -#, fuzzy -msgid "1 week starting Monday (freq=W-MON)" -msgstr "Semaine débutant le lundi" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -#, fuzzy -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "Semaine débutant le dimanche" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "année" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "Il y a 1 an" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -#, fuzzy -msgid "1 year end frequency" -msgstr "Fréquence de rafraichissement" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -#, fuzzy -msgid "1 year start frequency" -msgstr "Fréquence de rafraichissement" - -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10 minutes" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "semaine" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "" - -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15 minutes" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "semaine" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -#, fuzzy -msgid "2 years" -msgstr "année" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "Il y a 2 ans" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "90 jours" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -#, fuzzy -msgid "3 letter code of the country" -msgstr "chaque jour du mois" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -#, fuzzy -msgid "3 years" -msgstr "année" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" -msgstr "Il y a 3 ans" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30 jours" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -#, fuzzy -msgid "30 days ago" -msgstr "30 jours" - -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" -msgstr "30 minutes" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 minutes" - -#: superset/db_engine_specs/base.py:99 -msgid "30 second" -msgstr "30 secondes" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 secondes" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "" - -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5 minutes" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 minutes" - -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "5 secondes" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -#, fuzzy -msgid "5 seconds" -msgstr "5 secondes" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -#, fuzzy -msgid "52 weeks" -msgstr "semaine" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -#, fuzzy -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "Semaine débutant le lundi" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" -msgstr "6 heures" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60 jours" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -#, fuzzy -msgid "7 days" -msgstr "90 jours" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90 jours" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "Source de données trop volumineuse pour être interrogée." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "< (Plus petit que)" +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "La base de données est soumise à une charge inhabituelle." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "<= (Plus petit ou égal)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "La base de données a retourné une erreur inattendue." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/errors.py:104 +msgid "" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" +"Il y a une erreur de syntaxe dans la requête SQL. Peut-être une faute de " +"frappe." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "Colonne de temps" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "Métrique sauvegardée" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "La colonne a été supprimée ou renommée dans la base de données." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -#, fuzzy -msgid "" -msgstr "Spatial" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "La table a été supprimée ou renommée dans la base de données." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -#, fuzzy -msgid "" -msgstr "Type de tri" +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "Il manque un ou plusieurs paramêtres dans la requête." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "== (Est equal)" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "Le nom d'hôte ne peut pas être résolu." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "> (Plus grand que)" +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "Le port est fermé." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" -msgstr ">= (Plus grand ou égal)" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." +msgstr "L'hôte est peut-être HS et ne peut pas être atteint sur le port." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -#, fuzzy -msgid "A Big Number" -msgstr "Gros nombre" +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "Superset a rencontré une erreur lors de l'exécution d'une commande." -#: superset/views/database/forms.py:194 -#, fuzzy -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "" -"Une liste de colonnes séparées par des virgules qui devraient être " -"parsées comme des dates." +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "Superset a rencontré une erreur inattendue." -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "" -"Une liste de colonnes séparées par des virgules qui devraient être " -"parsées comme des dates." +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "Le nom d'utilisateur fourni à une base de données est invalide." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#, fuzzy -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "" -"Une liste de schémas (séparés par des virgules) autorisés pour le " -"chargement de CSV." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "Le mot de passe fourni à une base de données est invalide." -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "Une base de données avec le même nom existe déjà." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Le nom d'utilisateur ou le mot de passe est incorrect." -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Base de données inexistante ou nom incorrect." -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" -msgstr "" -"Une URL complète désignant le lieu du plugin (pourrait être hébergé sur " -"un CDN par exemple)" +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "Le schéma a été supprimé ou renommé dans la base de données." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "L'utilisateur n'a pas les droits." -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Un nom facile à comprendre" +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." +msgstr "Il manque un ou plusieurs paramètres de configuration de la base." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." -msgstr "" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "Les données fournies sont dans un format incorrect." -#: 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." -msgstr "Groupe ou personne ayant certifié cette métrique" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "Les données fournies ont un schéma incorrect." -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -"Une liste d'utilisateurs qui peuvent modifier le graphique. Il est " -"possible de chercher par nom de graphique ou d'utilisateur." +"Le backend des résultats pour les requêtes asynchrones n'est pas " +"configuré." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "La base de données ne permet pas la manipulation de données." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 +#: superset/errors.py:127 msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" +"Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. " +"Assurez-vous que la requête a bien un SELECT en dernière instruction. " +"Puis essayez d'exécuter votre requête à nouveau." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Une métrique à utiliser par couleur" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "La requête CVAS (create view as select) a plus d'une instruction." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." -msgstr "" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "La requête CVAS (create view as select) n'est pas une instruction SELECT." -#: superset-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" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "La requête est trop complexe et trop longue à exécuter." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "Une référence à la configuration [Time] prends la granularité en compte" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "La base de données exécute actuellement trop de requêtes." -#: superset/reports/commands/exceptions.py:186 -#, fuzzy, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Le jeu de données %(name)s existe déjà" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "Un ou plusieurs paramètres de la requête sont malformés." -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "L'objet n'existe pas dans la base de données." -#: superset-frontend/src/components/ReportModal/index.tsx:308 -#, fuzzy -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "Les rapports planifiés seront envoyés à votre @ e-mail en PNG" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "La requête a une erreur de syntaxe." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "" -"Un ensemble de paramètre qui seront disponible dans la requête utilisant " -"la syntaxe du template Jinja" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "Le backend des résultats n'a plus les données de la requête." -#: superset/common/query_context_processor.py:417 -#, fuzzy -msgid "A time column must be specified when using a Time Comparison." -msgstr "" -"Une période délimitée (à la fois début et fin) doit être spécifiée quand " -"on utilise une Comparaison de temps." +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "La requête associée aux résutlats a été supprimée." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +#: superset/errors.py:141 msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" +"Les résultats stockés dans le backend le sont dans un format différent et" +" ne peuvent plus être déserialisés." -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "Un timeout s'est produit lors de l'exécution de la requête." - -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "Dépassement de délai lors de la génération d'un CSV." - -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." -msgstr "Dépassement de délai lors de la génération d'un dataframe." - -#: superset/reports/commands/exceptions.py:233 -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:296 -msgid "A valid color scheme is required" -msgstr "Un jeu de couleur valide doit être fourni" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "APPLIQUER" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "AVR" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "Le numéro de port est invalide." -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "AQE" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "Echec de la requête à distance." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "AOU" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "La base de données a été supprimée." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 +#: superset/errors.py:149 #, fuzzy -msgid "AXIS TITLE POSITION" -msgstr "dernière partition :" - -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "A propos" - -#: 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" +msgid "The submitted payload failed validation." +msgstr "Les données fournies ont un schéma incorrect." -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Requêtes d'accès" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Certificat invalide" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/forms.py:72 +#, python-format +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "Accès demandé" +#: superset/jinja_context.py:344 +#, python-format +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Type de retour non sécurisé pour la fonction %(func)s: %(value_type)s" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Action" +#: superset/jinja_context.py:355 +#, python-format +msgid "Unsupported return value for method %(name)s" +msgstr "Type de retour non supporté pour la méthode %(name)s" -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Journaux d'actions" +#: superset/jinja_context.py:371 +#, python-format +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Valeur de template non sécurisée pour la clé %(key)s: %(value_type)s" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Actions" +#: superset/jinja_context.py:382 +#, python-format +msgid "Unsupported template value for key %(key)s" +msgstr "Valeur de template non supportée pour la clé key %(key)s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Actif" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "Seules les instructions SELECT sont autorisées pour cette base de données." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -#, fuzzy -msgid "Actual Values" -msgstr "Valeurs NULL" +#: superset/sql_lab.py:302 +#, python-format +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "" +"La requête a été tuée après %(sqllab_timeout)s secondes. Elle est peut-" +"être trop complexe ou la base de donnée est soumise à une charge trop " +"importante." -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Intervalle de temps courant" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "Le backend des résultats n'est pas configuré." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -#, fuzzy -msgid "Actual value" -msgstr "Valeurs NULL" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." +msgstr "" +"Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. " +"Assurez-vous que la requête a bien un SELECT en dernière instruction. " +"Puis essayez d'exécuter votre requête à nouveau." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -#, fuzzy -msgid "Actual values" -msgstr "Valeurs NULL" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." +msgstr "" +"Le CVAS (create view as select) ne peut être exécuté qu'avec une requête " +"contenant une seule instruction SELECT. Assurez-vous que la requête a " +"bien une seule instruction SELECT. Puis essayez d'exécuter votre requête " +"à nouveau." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -#, fuzzy -msgid "Adaptive formatting" -msgstr "Formatage adapté" +#: superset/sql_lab.py:488 +#, python-format +msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "Ajouter" +#: superset/sql_lab.py:510 +#, python-format +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -#, fuzzy -msgid "Add Alert" -msgstr "alerte" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Viz est une source de données manquante" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Ajouter un Template CSS" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." +msgstr "" +"La fenêtre glissante appliquée n'a pas retourné de données. Assurez-vous " +"que la requête source satisfasse les périodes minimum définies dans la " +"fenêtre glissante." -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "Templates CSS" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "La date de début ne peut être postérieure à la date de fin" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Ajouter un graphique" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Valeur en cache non trouvée" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Ajouter une colonne" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "Colonnes absentes de la source de données : %(invalid_columns)s" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Ajouter un tableau de bord" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Vue de la table temporelle" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Ajouter une base de données" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Choisissez au moins une métrique" -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Ajouter un log" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "Quand vous utilisez 'Grouper par' vous êtes limité à une seule métrique" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Ajouter une métrique" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Calendrier Carte de chaleur" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -#, fuzzy -msgid "Add Report" -msgstr "rapport" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Bulles" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Add Rule" -msgstr "Format Date" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Utilisez 3 libellés de métrique différents" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Ajouter une requête sauvegardée" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Choisissez une métrique pour x, y, taille" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Ajouter un plugin" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Points" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -#, fuzzy -msgid "Add a dataset" -msgstr "Ajouter un jeu de données" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Choisissez une métrique à afficher" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -#, fuzzy -msgid "Add a new tab" -msgstr "Ajouter un nouvelle base de données ?" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Séries temporelles - ligne" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" +"Une période délimitée (à la fois début et fin) doit être spécifiée quand " +"on utilise une Comparaison de temps." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" -msgstr "Ajouter des paramètres personnalisés supplémentaires" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Séries temporelles - histogramme" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" -msgstr "Ajouter une couche d'annotations" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Séries temporelles - Période Pivot" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "Ajouter un élément" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Séries temporelles - pourcentage de changement" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" -msgstr "Ajouter et modifier les filtres" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Séries temporelles - empilées" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Ajouter une annotation" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histogramme" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Ajouter une couche d'annotations" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Au moins une colonne numérique doit être spécifiée" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Distibution - histogramme" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" -msgstr "Ajouter un filtre" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Choisissez au moins un champs pour [Séries]" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "Ajouter méthode de livraison" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Choisissez exactement 2 colonnes pour [Source / Target]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -#, fuzzy -msgid "Add extra connection information." -msgstr "Information simple" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "Il y a une boucle dans votre Sankey, il faut un arbre. Lien fautif: {}" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Ajouter un filtre" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Graphe orienté" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Carte de pays" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "Ajouter un filtre ou un diviseur" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Carte du monde" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Ajouter un item" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Coordonnées parallèles" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Ajouter une métrique" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Carte de chaleur" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Histogrammes horizontaux" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "Ajouter un nouveau formateur de couleur" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "Ajouter un formateur" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "Les colonnes [Longitude] et [Latitude] doivent êtres définies" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "Ajouter une méthode de notification" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Il faut une colonne [Grouper par] pour avoir 'count' comme [Label]" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "Le [Label] choisi doit être présent dans [Grouper par]" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "Le [Point Radius] doit être présent dans [Grouper par]" + +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" +"Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans " +"[Grouper par]" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "Ajouter une feuille" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - Couches Multiples" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -#, fuzzy -msgid "Add the name of the chart" -msgstr "L'identifiant du graphique actif" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Mauvaise clef spatiale" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -#, fuzzy -msgid "Add the name of the dashboard" -msgstr "Modifier le tableau de bord" +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "Point géographique invalide : %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Ajouter au tableau de bord" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" +"Entrée spatiale NULL rencontrée, " +"veuillez les filtrer" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" -msgstr "Ajouter/Editer les filtres" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - Nuage de points" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "Ajouté" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - Grille d'écran" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Ajouter au tableau de bord" -msgstr[1] "" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - Grille 3D" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -#, fuzzy -msgid "Additional Parameters" -msgstr "Paramètres supplémentaires" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - Chemins" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - Polygone" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "Informations additionnelles" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D HEX" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 +#: superset/viz.py:2271 #, fuzzy -msgid "Additional metadata" -msgstr "Paramètres supplémentaires" +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Chemins" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 +#: superset/viz.py:2292 #, fuzzy -msgid "Additional padding for legend." -msgstr "Informations additionnelles" - -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" -msgstr "Paramètres supplémentaires" +msgid "Deck.gl - Contour" +msgstr "Deck.gl - Arc" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -#, fuzzy -msgid "Additional settings." -msgstr "Informations additionnelles" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - GeoJSON" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - Arc" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -#, fuzzy -msgid "Additive" -msgstr "Ajouter un item" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Flot d'événements" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Séries temporelles - Paired t-test" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." -msgstr "" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Séries temporelles - Graphique Nightingale Rose" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:153 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:66 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Avancé" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Diagramme de Partition" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +#: superset/viz.py:2676 #, fuzzy -msgid "Advanced Analytics" -msgstr "Analyses avancées" +msgid "Please choose at least one groupby" +msgstr "Merci de choisir au moins un champ dans 'Grouper par' " -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -#, fuzzy -msgid "Advanced Data type" -msgstr "Données chargées mises en cache" +#: superset/advanced_data_type/api.py:101 +#, fuzzy, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "Type de résultat invalide : %(result_type)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Analyses avancées" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "%(num)d couche d'annotations supprimée" +msgstr[1] "%(num)d couches d'annotations supprimées" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -#, fuzzy -msgid "Advanced analytics Query A" -msgstr "Analyses avancées" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Tout texte" + +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "%(num)d annotation supprimée" +msgstr[1] "%(num)d annotations supprimées" + +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "%(num)d graphique supprimé" +msgstr[1] "%(num)d graphiques supprimés" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 #, fuzzy -msgid "Advanced analytics Query B" -msgstr "Analyses avancées" +msgid "Is certified" +msgstr "Certifié par" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 #, fuzzy -msgid "Advanced data type" -msgstr "Données chargées mises en cache" +msgid "Has created by" +msgstr "a été créé" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "Analyses avancées" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#, fuzzy +msgid "Created by me" +msgstr "Créé par" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -#, fuzzy -msgid "After" -msgstr "Après" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -#, fuzzy -msgid "Aggregate" -msgstr "agrégat" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -#, fuzzy -msgid "Aggregate Mean" -msgstr "agrégat" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "Sous-Total" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -#, fuzzy -msgid "Aggregate Sum" -msgstr "agrégat" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`confidence_interval` doit être entre 0 et 1 (exclusif)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 +#: superset/charts/schemas.py:728 msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" +"le percentile inférieur doit être plus grand que 0 et plus petit que 100 " +"et doit être plus petit que le percentile supérieur." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 +#: superset/charts/schemas.py:743 msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" +"le percentile supérieur doit être plus grand que 0 et plus petit que 100 " +"et doit être supérieur au percentile inférieur." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`width` doit être plus grand ou égal à 0" + +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "`row_limit` doit être plus grand ou égal à 0" + +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`row_offset` doit être plus grand ou égal à 0" + +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" +msgstr "la colonne de tri doit être remplie" + +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" +"Le graphique n'a pas de contexte de requête sauvegardé. Veuillez sauver " +"le graphique à nouveau." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "agrégat" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "La requête est incorrecte : %(error)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -#, fuzzy -msgid "Aggregation function" -msgstr "Fonctions Python" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "La requête n'est pas JSON" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 +#: superset/charts/data/api.py:369 #, fuzzy -msgid "Alert" -msgstr "alerte" +msgid "Empty query result" +msgstr "Requête vide ?" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Alerte déclenchée, -période de grâce" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Les propriétaires sont invalides" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "Condition d'alerte" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Des profils n'existent pas" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "Planification de la condition d'alerte" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "L'alerte a mis fin à la période de grâce." +#: superset/commands/exceptions.py:135 +#, fuzzy +msgid "Datasource does not exist" +msgstr "Le jeu de données n'existe pas" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "L'alerte a échoué" +#: superset/commands/exceptions.py:142 +#, fuzzy +msgid "Query does not exist" +msgstr "Le graphique n'existe pas" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "Alerte déclenchée pendant la période de grâce." +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Les paramètres de la couche d'annotations sont invalides." -#: superset/reports/commands/exceptions.py:223 -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/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "La couche d'annotations n'a pas pu être créée." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "Nom de l'alerte" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "La couche d'annotations n'a pas pu être mise à jour." -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "Alerte sur la période de grace" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Couche d'annotations non trouvée." -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "La requête a retourné une valeur non numérique." +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "La couche d'annotations n'a pas pu être supprimée." -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "La requête a retourné plus d'une colonne." +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "La couche d'annotations a des annotations associées." -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "La requête a retourné plus d'une colonne. %s colonnes retournées" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "Le nom doit être unique" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "La requête a retourné plus d'une ligne." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "Date de début ne peut être postérieure à Date de fin" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "La requête a retourné plus d'une ligne. %s lignes retournées" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "La description courte doit être unique pour cette couche" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Altere en cours" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Annotation non trouvée." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Alerte déclenchée, notification envoyée" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Les paramètres d'annotation sont invalides." -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "Erreur de configuration du validateur." +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "L'annotation n'a pas pu être créée." -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Alertes" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "L'annotation n'a pas pu être mise à jour." -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "Alertes et rapports" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Les annotations n'ont pas pu être supprimées." -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Alertes et rapports" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Il y a des alertes ou des rapports associés : %s," -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" +"La chaîne de Temps est ambigüe. Veuillez spécifier [%(human_readable)s " +"ago] ou [%(human_readable)s later]." -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "Tous" - -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -#, fuzzy -msgid "All Entities" -msgstr "Tous les filtres" - -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "Tout texte" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Tous les graphiques" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Ne peut pas parser la chaîne de temps [%(human_readable)s]" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" +"La chaîne Ecart Temps est ambigüe. Veuillez spécifier [%(human_readable)s" +" ago] ou [%(human_readable)s later]." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Tous les filtres" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, fuzzy, python-format -msgid "All filters (%(filterCount)d)" -msgstr "Tous les filtres (${filterValues.length})" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "La base de données n'existe pas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -#, fuzzy -msgid "All panels" -msgstr "Appliquer à tous les panneaux" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Les tableaux de bord n'existent pas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "Les panneaux avec cette colonne seront affectés par ce filtre" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "Le type de source de données est requis quand datasource_id est spécifié" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Autoriser CREATE TABLE AS" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Les paramètres du graphique sont invalides." -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Autorise l'option CREATE TABLE AS dans SQL Lab" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Le graphique n'a pas pu être créé." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Autoriser CREATE VIEW AS" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Le graphique n'a pas pu être mis à jour." -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Autorise l'option CREATE VIEW AS dans SQL Lab" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Les graphiques n'ont pas pu être supprimés." -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "Autoriser le téléversement CSV" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Il y a des alertes ou des rapports associés" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Autoriser DML" +#: superset/commands/chart/exceptions.py:131 +#, fuzzy +msgid "You don't have access to this chart." +msgstr "Vous n'avez pas accès à ce tableau de bord." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" -msgstr "" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "Modifier ce graphique est interdit" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "Autoriser la création de nouvelles tables basées sur des requêtes" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "L'import du graphique a échoué pour une raison inconnue" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "Autoriser la création de nouvelles vues basées sur des requêtes" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Modifier ce tableau de bord est interdit" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "Autoriser DML" +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "Graphique %(id)s non trouvé" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 +#: superset/commands/css/exceptions.py:23 #, fuzzy -msgid "Allow file uploads to database" -msgstr "Sélectionner un fichier Excel à charger dans une base de données." +msgid "CSS templates could not be deleted." +msgstr "Le template CSS n'a pas pu être supprimé." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" -"Permettre la manipulation de la base de données en utilisant des " -"instructionsnon SELECT comme UPDATE, DELETE, CREATE, etc." +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "Template CSS non trouvé." -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Autoriséer les sélections multiples" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Doit être unique" + +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Les paramètres du tableau de bord sont invalides." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 +#: superset/commands/dashboard/exceptions.py:54 #, fuzzy -msgid "Allow node selections" -msgstr "Autoriséer les sélections multiples" +msgid "Dashboards could not be created." +msgstr "Le tableau de bord n'a pas pu être créé." + +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Le tableau de bord n'a pas pu être mis à jour." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Le tableau de bord n'a pas pu être supprimé." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "Autoriser cette base de données à être explorée" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Modifier ce tableau de bord est interdit" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "Autoriser cette base de données à être requêtées dans SQL Lab" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "L'import du tableau de bord a échoué pour une raison inconnue" -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" -msgstr "" -"Autorise les utilisateurs à lancer des expression non-SELECT (UPDATE, " -"DELETE, CREATE, etc.) dans SQL Lab" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "Vous n'avez pas accès à ce tableau de bord." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" -msgstr "" +#: superset/commands/dashboard/embedded/exceptions.py:34 +#, fuzzy +msgid "You don't have access to this embedded dashboard config." +msgstr "Vous n'avez pas accès à ce tableau de bord." -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "Alphabétique" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "Pas de données dans le fichier" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." -msgstr "" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Les paramètres de base de données sont invalides." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Modifié" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "Une base de données avec le même nom existe déjà." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -#, fuzzy -msgid "An Error Occurred" -msgstr "Un erreur s'est produite" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Le champ est requis" -#: superset/reports/commands/exceptions.py:188 +#: superset/commands/database/exceptions.py:63 #, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Le jeu de données %(name)s existe déjà" - -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." -msgstr "" -"Une période délimitée (à la fois début et fin) doit être spécifiée quand " -"on utilise une Comparaison de temps." +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "Le champ ne peut pas être décodé par JSON %{json_error}s" -#: superset/databases/schemas.py:289 +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -"Un moteur doit être fournit lorsque l'on passe des paramètres individuels" -" à la base de données." +"Le paramètre metadata_params dans Champ supplémentaire n'est pas " +"correctement configuré. La clé %(key)s est invalide." -#: 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: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 -msgid "An error has occurred" -msgstr "Une erreur est survenue" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "Base de donnée non trouvée." -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Un erreur s'est produite" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "La base de données n'a pas pu être créée." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "La base de données n'a pas pu être mise à jour." -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -#, fuzzy -msgid "An error occurred while accessing the value." -msgstr "Une erreur s'est produite durant la création de la source de donnée" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "La connexion a échoué, veuillez vérifier vos paramètres de connexion" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -"Une erreur s'est produite en repliant le schéma de la table. Veuillez " -"contacter votre administrateur." +"Impossible de supprimer une base de données qui a des jeux de données " +"rattachés" -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, fuzzy, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Une erreur s'est produite durant la récupération des jeux de données %ss: %s" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "La base de données n'a pas pu être supprimée." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Une erreur s'est produite durant la création de la source de donnée" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Une connexion non sécurisée avec la base de données a été arrêtée" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -#, fuzzy -msgid "An error occurred while creating the value." -msgstr "Une erreur s'est produite durant la création de la source de donnée" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Le driver de la base de données n'a pas pu être chargé" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "Erreur inattendue, consultez les logs pour plus de détails" + +#: superset/commands/database/exceptions.py:147 #, fuzzy -msgid "An error occurred while deleting the value." -msgstr "Une erreur s'est produit en récupérant les valeurs du schéma : %s" +msgid "no SQL validator is configured" +msgstr "Erreur de configuration du validateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -"Une erreur s'est produite en développant le schéma de la table. Veuillez " -"contacter votre administrateur." -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, fuzzy, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Une erreur s'est produite durant la récupération des tableaux de bord %s : %s" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +#, fuzzy +msgid "Was unable to check your query" +msgstr "Label pour votre requête" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, fuzzy, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" +#: superset/commands/database/exceptions.py:162 +#, fuzzy +msgid "An unexpected error occurred" +msgstr "Un erreur s'est produite" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "" -"Une erreur s'est produite lors de l'extraction des modèles de CSS " -"disponibles" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "L'import de la base de données a échoué pour une raison inconnue" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "" -"Une erreur s'est produite durant la récupération du graphique créé par " -"les valeurs : %s" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Ce driver de la base de données n'a pas pu être chargé : {}" -#: superset-frontend/src/pages/ChartList/index.tsx:619 +#: superset/commands/database/validate.py:59 #, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "" -"Une erreur s'est produite durant la récupération des propriétaires du " -"graphique : %s" +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "Le moteur \"%(engine)s\" ne peut pas être configuré via des paramètres." -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Une erreur s'est produite en récupérant les valeurs créées : %s" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "La base de données est hors-ligne." -#: superset-frontend/src/pages/DashboardList/index.tsx:556 +#: superset/commands/database/validate_sql.py:73 #, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -"Une erreur s'est produite lors de la récupération du tableau de bord créé" -" avec les valeurs : %s" +"%(validator)s n'a pas pu vérifier votre requête.\n" +"Merci de vérifier à nouveau votre requête.\n" +"Exception: %(ex)s" + +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "Erreur de configuration du validateur." -#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#: superset/commands/database/validate_sql.py:111 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -"Une erreur s'est produite durant la récupération des propriétaires du " -"tableau de bord : %s" -#: superset-frontend/src/pages/ChartList/index.tsx:299 +#: superset/commands/database/ssh_tunnel/exceptions.py:29 #, fuzzy -msgid "An error occurred while fetching dashboards" -msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" +msgid "SSH Tunnel could not be deleted." +msgstr "Le graphique n'a pas pu être supprimé." -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +#, fuzzy +msgid "SSH Tunnel not found." +msgstr "Template CSS non trouvé." -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "" -"Une erreur s'est produite lors de la récupération des données de la base " -": %s" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +#, fuzzy +msgid "SSH Tunnel parameters are invalid." +msgstr "Les paramètres du graphique sont invalides." -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "" -"Une erreur s'est produite durant la récupération des valeurs de la base " -"de données : %s" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +#, fuzzy +msgid "SSH Tunnel could not be updated." +msgstr "Le graphique n'a pas pu être mis à jour." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "" -"Une erreur s'est produite durant la récupération les sources de données " -"du jeu de données : %s" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +#, fuzzy +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "L'import du graphique a échoué pour une raison inconnue" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" msgstr "" -"Une erreur s'est produite durant la récupération des valeurs du " -"propriétaire du jeu de données : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -"Une erreur s'est produite lors de la récupération des données relatives " -"au jeu de données" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -"Une erreur s'est produite lors de la récupération des données relatives " -"au jeu de données : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "Base de données non trouvée." + +#: superset/commands/dataset/exceptions.py:32 #, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" +msgid "Dataset %(name)s already exists" +msgstr "Le jeu de données %(name)s existe déjà" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "Une erreur s'est produite lors de la récupération des noms des fonctions." +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "La base de données ne peut pas être changée" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "" -"Une erreur s'est produite durant la récupération des propriétaires du " -"graphique : %s" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Une ou plusieurs colonnes n'existent pas" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Une erreur s'est produit en récupérant les valeurs du schéma : %s" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Une ou plusieurs colonnes sont dupliquées" + +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Une ou plusieurs colonnes existent déjà" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Une erreur s'est produite lors de la récupération de l'état de l'onglet" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Une ou plusieurs métriques n'existent pas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "" -"Une erreur s'est produite lors de l'extraction des méta-données de la " -"table" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Une ou plusieurs métriques sont dupliquées" + +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Une ou plusieurs métriques existent déjà" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 +#: superset/commands/dataset/exceptions.py:130 +#, python-format msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -"Une erreur s'est produite lors de l'extraction des méta-données de la " -"table. Veuillez contacter votre administrateur." +"La table [%(table_name)s] n'a pu être trouvée, vérifiez à nouveau votre " +"connexion à votre base de données, le schéma et le nom de la table" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Une erreur s'est produite en récupérant les valeurs créées : %s" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Le jeu de données n'existe pas" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Une erreur s'est produit en récupérant les valeurs d'utilisateur : %s" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Les paramètres du jeu de données sont invalides." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "" -"Une erreur s'est produite en masquant la barre de gauche. Veuillez " -"contacter votre administrateur." +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Le jeu de données n'a pas pu être créé." -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, fuzzy, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Une erreur s'est produite le traitement des logs " +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Le jeu de données n'a pas pu être mis à jour." -#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" - -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Une erreur s'est produite durant le chargement du SQL" +msgid "Datasets could not be deleted." +msgstr "Le jeu de données n'a pas pu être supprimé." -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 +#: superset/commands/dataset/exceptions.py:180 #, fuzzy -msgid "An error occurred while opening Explore" -msgstr "Une erreur s'est produite le traitement des logs " +msgid "Samples for dataset could not be retrieved." +msgstr "Le jeu de données n'a pas pu être créé." -#: superset/key_value/exceptions.py:30 +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "Changer ce jeu de données est interdit" + +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "L'import du jeu de données a échoué pour une raison inconnue" + +#: superset/commands/dataset/exceptions.py:192 #, fuzzy -msgid "An error occurred while parsing the key." -msgstr "Une erreur s'est produite durant la création de la source de donnée" +msgid "You don't have access to this dataset." +msgstr "Vous n'avez pas accès à ce tableau de bord." -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Une erreur s'est produite le traitement des logs " +#: superset/commands/dataset/exceptions.py:196 +#, fuzzy +msgid "Dataset could not be duplicated." +msgstr "Le jeu de données n'a pas pu être mis à jour." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -"Une erreur s'est produite en supprimant la requête. Veuillez contacter " -"votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "" -"Une erreur s'est produite en supprimant l'onglet. Veuillez contacter " -"votre administrateur." +#: superset/commands/dataset/exceptions.py:205 +#, fuzzy +msgid "The provided table was not found in the provided database" +msgstr "La table a été supprimée ou renommée dans la base de données." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "" -"Une erreur s'est produite en enlevant le schéma de la table. Veuillez " -"contacter votre administrateur." +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Colonne du jeu de données introuvable." -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, fuzzy, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Une erreur s'est produite durant la modification du rapport : %s" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "La suppression de la colonne du jeu de données a échoué." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." -msgstr "" -"Une erreur s'est produite en positionnant l'onglet actif. Veuillez " -"contacter votre administrateur." +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "Modifier ce jeu de données est interdit." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." -msgstr "" -"Une erreur s'est produite durant l'initialisation de l'onglet Autorun. " -"Veuillez contacter votre administrateur." +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "Métrique du jeu de données non trouvée." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." -msgstr "" -"Une erreur s'est produite en positionnant l'id de l'onglet Base de " -"données. Veuillez contacter votre administrateur." +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "La suppression de la métrique du jeu de données a échoué." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -"Une erreur s'est produite durant l'initialisation du titre de l'onglet. " -"Veuillez contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -"Une erreur s'est produite durant l'initialisation de l'onglet Schéma. " -"Veuillez contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[jeu de données manquant]" + +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Les requêtes sauvegardées ne peuvent pas être supprimées." + +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Requête sauvegardée introuvable." + +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "L'import de la requête sauvegardée a échoué pour une raison inconnue." + +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Les paramètres des requêtes sauvegardées sont invalides." + +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "La requête a retourné plus d'une ligne. %s lignes retournées" + +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." -msgstr "" -"Une erreur s'est produite durant l'initialisation des paramètres de " -"template de l'onglet. Veuillez contacter votre administrateur." +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "La requête a retourné plus d'une colonne. %s colonnes retournées" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 +#: superset/commands/report/alert.py:178 #, fuzzy -msgid "An error occurred while starring this chart" -msgstr "Une erreur s'est produite durant la modification de ce rapport." +msgid "An error occurred when running alert query" +msgstr "Une erreur s'est produite le traitement des logs " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -"Une erreur s'est produite en enregistrant l'id de la dernière requête " -"dans le backend. Veuillez contacter votre administrateur si le problème " -"persiste." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "" -"Une erreur s'est produite en stockant la requête dans le backend. Pour " -"éviter de perdre vos modifications, sauver votre requête en utilisant le " -"bouton \"Enresigtrer requête\"." +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Le tableau de bord n'existe pas" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -#, fuzzy -msgid "An error occurred while updating the value." -msgstr "Une erreur s'est produite durant la création de la source de donnée" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "Le graphique n'existe pas" -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "Une erreur s'est produite durant la création de la source de donnée" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "Une base de données est requise pour les alertes" -#: superset/databases/commands/exceptions.py:162 -#, fuzzy -msgid "An unexpected error occurred" -msgstr "Un erreur s'est produite" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "Le type est requis" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "Une erreur s'est produite. Contactez votre admin superset" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Choisissez un graphique ou un tableau de bord, pas les deux" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "S'ancrer à" +#: superset/commands/report/exceptions.py:92 +#, fuzzy +msgid "Must choose either a chart or a dashboard" +msgstr "Choisissez un graphique ou un tableau de bord, pas les deux" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" +"Merci de sauvegarder votre graphique d'abord, créez ensuite un nouveau " +"rapport email." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" +"Merci de sauvegarder votre tableau de bord d'abord, créez ensuite un " +"nouveau rapport email." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -#, fuzzy -msgid "Animation" -msgstr "annotation" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Annotation" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Les paramètres des planification de rapport sont invalides." -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "Couches d'annotations" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "La planification de rapport n'a pas pu être créée." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Couches d'annotations" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "La planification de rapport n'a pas pu être mise à jour." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "Configuration de l'annotation de graphique" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Planification de rapport introuvable." -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "L'annotation n'a pas pu être créée." +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "La planification de rapport n'a pas être supprimée." -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "L'annotation n'a pas pu être mise à jour." +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Le log de la planification de rapport n'a pas pu être élagué." -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "La suppression de l'annotation a échoué." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" +"L'exécution de la planification de rapport a échoué à la génération de la" +" copie d'écran." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Couches d'annotations" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "" +"L'exécution de la planification de rapport a échoué à la génération d'un " +"csv." -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "La couche d'annotations n'a pas pu être créée." +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "" +"L'exécution de la planification de rapport a échoué à la génération d'un " +"dataframe." -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "La couche d'annotations n'a pas pu être supprimée." +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "" +"L'exécution de la planification de rapport a rencontré une erreur " +"inattendue." -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "La couche d'annotations n'a pas pu être mise à jour." +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "" +"La planification de rapport est toujours en cours d'exécution, refus de " +"re-traiter." -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "La suppression de la couche d'annotations a échoué." +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "La planification de rapport a atteint un timeout d'exécution." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" -msgstr "Colonnes de description de la couche d'annotations" +#: superset/commands/report/exceptions.py:180 +#, fuzzy, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Le jeu de données %(name)s existe déjà" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "La couche d'annotations a des annotations associées." +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Le jeu de données %(name)s existe déjà" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" -msgstr "Fin de l'intervalle de la couche d'annotations" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "Nom de la couche d'annotations" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "La requête a retourné plus d'une ligne." -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Couche d'annotations non trouvée." +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "Erreur de configuration du validateur." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" -msgstr "Opacité de la couche d'annotations" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "La requête a retourné plus d'une colonne." -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Les paramètres de la couche d'annotations sont invalides." +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "La requête a retourné une valeur non numérique." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" -msgstr "Trait de la couche d'annotations" +#: superset/commands/report/exceptions.py:217 +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/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" -msgstr "Colonne temporelle de la couche d'annotations" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Un timeout s'est produit lors de l'exécution de la requête." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" -msgstr "Colonne de titre de la couche d'annotations" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Dépassement de délai lors d'une capture d'écran." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "Type de couche d'annotations" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Dépassement de délai lors de la génération d'un CSV." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" -msgstr "Valeur de la couche d'annotations" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "Dépassement de délai lors de la génération d'un dataframe." -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Couches d'annotations" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "Alerte déclenchée pendant la période de grâce." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "Les couches d'annotation sont toujours en cours de chargement." +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "L'alerte a mis fin à la période de grâce." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Nom de l'annotation" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Alerte sur la période de grace" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Annotation non trouvée." +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Etat du programme de rapport introuvable" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "Les paramètres d'annotation sont invalides." +#: superset/commands/report/exceptions.py:261 +#, fuzzy +msgid "Report schedule system error" +msgstr "Erreur inattendue du programme de rapport" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 +#: superset/commands/report/exceptions.py:267 #, fuzzy -msgid "Annotation source" -msgstr "Source de l'Annotation" +msgid "Report schedule client error" +msgstr "Erreur inattendue du programme de rapport" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" -msgstr "Type de source de la couche d'annotations" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Erreur inattendue du programme de rapport" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "L'annotation n'a pas pu être créée." +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "Il est interdit de changer ce rapport" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "Cette annotation a été modifiée" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Une erreur s'est produite le traitement des logs " -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 +#: superset/commands/security/exceptions.py:25 #, fuzzy -msgid "Annotations and Layers" -msgstr "Annotations et couches" +msgid "RLS Rule not found." +msgstr "Planification de rapport introuvable." -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Annotations et couches" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "Les graphiques n'ont pas pu être supprimés." -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "Les annotations n'ont pas pu être supprimées." +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "Base de données non trouvée." -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" -msgstr "Tous" +#: superset/commands/sql_lab/estimate.py:86 +#, fuzzy, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." +msgstr "" +"La requête a été tuée après %(sqllab_timeout)s secondes. Elle est peut-" +"être trop complexe ou la base de donnée est soumise à une charge trop " +"importante." -#: 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." +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" +"Impossible de trouver la base de données référencée dans cette requête. " +"Merci de contacter un administrateur pour obtenir davantage d'aide ou " +"bien d'essayer à nouveau." -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -"Une palette de couleur sélectionnée ici écrasera les couleurs appliquées " -"aux graphiques de ce tableau de bord" +"La requête associée à ces résultats n'a pu être trouvée. Rejouez la " +"requête originale." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/commands/sql_lab/results.py:75 msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" +"Impossible de récupérer les données depuis le backend. Rejouez la requête" +" originale." -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "Ajouter" - -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "Filtres croisés appliqués (%d)" - -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, python-format -msgid "Applied filters (%d)" -msgstr "Filtres appliqués (%d)" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, python-format -msgid "Applied filters: %s" -msgstr "Filtres appliqué: %s" - -#: superset/viz.py:250 +#: superset/commands/sql_lab/results.py:116 msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -"La fenêtre glissante appliquée n'a pas retourné de données. Assurez-vous " -"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: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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Appliquer" +"Impossible de désérialiser la donnée. Le format de stockage peut avoir " +"changé. Rejouez la requête originale." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#: superset/commands/tag/exceptions.py:32 #, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "Informations additionnelles" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" -msgstr "Appliquer les filtres" +msgid "Tag parameters are invalid." +msgstr "Les paramètres du jeu de données sont invalides." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 +#: superset/commands/tag/exceptions.py:36 #, fuzzy -msgid "Apply metrics on" -msgstr "Ma métrique" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Appliquer à tous les panneaux" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Appliquer à certains panneaux" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "Avril" +msgid "Tag could not be created." +msgstr "Le jeu de données n'a pas pu être créé." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 #, fuzzy -msgid "Arc" -msgstr "Mars" +msgid "Tag could not be updated." +msgstr "Le jeu de données n'a pas pu être mis à jour." -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +#: superset/commands/tag/exceptions.py:44 #, fuzzy -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "Voulez vous vraiment annuler ?" - -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "Etes-vous sûr de vouloir supprimer" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, fuzzy, python-format -msgid "Are you sure you want to delete %s?" -msgstr "Etes-vous sûr de vouloir supprimer" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 -#, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Etes-vous sûr de vouloir supprimer les annotations sélectionnées ?" - -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "Etes-vous sûr de vouloir supprimer les graphiques sélectionnés ?" - -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Etes-vous sûr de vouloir supprimer les tableaux de bord sélectionné ?" - -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" +msgid "Tag could not be deleted." +msgstr "Le jeu de données n'a pas pu être supprimé." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "Le jeu de données n'a pas pu être supprimé." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +#, fuzzy +msgid "An error occurred while creating the value." +msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 #, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" +msgid "An error occurred while accessing the value." +msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset-frontend/src/pages/Tags/index.tsx:282 +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 #, fuzzy -msgid "Are you sure you want to delete the selected tags?" -msgstr "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" +msgid "An error occurred while deleting the value." +msgstr "Une erreur s'est produit en récupérant les valeurs du schéma : %s" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "Etes-vous sûr de vouloir supprimer les templates sélectionnés ?" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +#, fuzzy +msgid "An error occurred while updating the value." +msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 #, fuzzy -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" +msgid "You don't have permission to modify the value." +msgstr "Vous n'avez pas les permission pour modifier ce graphique" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "Êtes-vous certain de vouloir continuer ?" +#: superset/commands/temporary_cache/exceptions.py:49 +#, fuzzy +msgid "Resource was not found." +msgstr "Base de données non trouvée." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "Êtes vous sur de vouloir sauvegarder et appliquer les modifications ?" +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" +msgstr "Type de résultat invalide : %(result_type)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -#, fuzzy -msgid "Area Chart" -msgstr "Enregistrer un graphique" +#: superset/common/query_context_processor.py:150 +#, fuzzy, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "Colonnes absentes de la source de données : %(invalid_columns)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 +#: superset/common/query_context_processor.py:383 #, fuzzy -msgid "Area Chart (legacy)" -msgstr "Enregistrer un graphique" +msgid "Time Grain must be specified when using Time Shift." +msgstr "" +"Une période délimitée (à la fois début et fin) doit être spécifiée quand " +"on utilise une Comparaison de temps." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 +#: superset/common/query_context_processor.py:486 #, fuzzy -msgid "Area chart" -msgstr "Enregistrer un graphique" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +msgid "A time column must be specified when using a Time Comparison." msgstr "" +"Une période délimitée (à la fois début et fin) doit être spécifiée quand " +"on utilise une Comparaison de temps." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." -msgstr "" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "Le graphique n'existe pas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 +#: superset/common/query_context_processor.py:702 #, fuzzy -msgid "Arrow" -msgstr "lignes" +msgid "The chart datasource does not exist" +msgstr "Le graphique n'existe pas" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +#: superset/common/query_context_processor.py:719 #, fuzzy -msgid "Assign a set of parameters as" -msgstr "Les paramètres du jeu de données sont invalides." +msgid "The chart query context does not exist" +msgstr "Le graphique n'existe pas" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Les graphiques associés" +#: superset/common/query_object.py:290 +#, python-format +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." +msgstr "" +"Doublons de libellés colonne/métrique : %(labels)s. Veuillez vous assurer" +" que toutes les colonnes et métriques ont des libellés uniques." -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Exécution asynchrone" +#: superset/common/query_object.py:312 +#, python-format +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " +msgstr "" +"Les entrées suivantes dans `series_columns` sont manquantes dans " +"`columns`: %(columns)s. " -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "Exécution de requête asynchrone" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "La propriété `operation` de l'objet de post-traitement est indéfinie" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "Aout" +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Opération de post-traitement non supportée : %(operation)s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 #, fuzzy -msgid "Auto" -msgstr "à" +msgid "[asc]" +msgstr "Simple" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "Complétion automatique" +#: superset/connectors/sqla/models.py:1394 +#, python-format +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "" +"Erreur dans l'expression jinja dans la réupération du prédicat des " +"valeurs : %(msg)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "Remplir automatiquement les filtres" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "La requête du jeu de données virtuel doit être en lecture seule" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "Remplir automatiquement le prédicat de requête" +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Erreur durant le rendu de la requête du jeu de données virtuel : %(msg)s" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" -msgstr "" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "La requête du jeu de données virtuel ne peut pas être vide" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" +"La requête du jeu de données virtuel ne peut pas comporter plusieurs " +"instructions" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "Partage de requête" +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 +#, python-format +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Erreur dans l'expression jinja des filtres RLS : %(msg)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "Valeur cible" +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" +msgstr "La métrique '%(metric)s' n'existe pas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -#, fuzzy -msgid "Axis" -msgstr "Axe Y" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "La base de données n'a pas retourné toutes les colonnes demandées" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -#, fuzzy -msgid "Axis Bounds" -msgstr "Filtrer par colonne" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Seules les instructions `SELECT` sont autorisées" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "Format de l'axe Y" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Seules les requêtes simples sont autorisées" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -#, fuzzy -msgid "Axis Title" -msgstr "Onglet titre" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Colonnes" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -#, fuzzy -msgid "Axis ascending" -msgstr "Tri croissant" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Afficher la colonne" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -#, fuzzy -msgid "Axis descending" -msgstr "Tri décroissant" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Ajouter une colonne" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Éditer une colonne" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" +"S'il faut que cette colonne soit accessible comme une option [Time " +"Granularity], elle doit être DATETIME ou d'un format équivalent" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" +"Si cette colonne doit apparaître dans la section `Filtres` de la page " +"exploration." -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Backend" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -#, fuzzy -msgid "Backward values" -msgstr "Valeur cible" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -#, fuzzy -msgid "Bad formula." -msgstr "Format Date" - -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "Mauvaise clef spatiale" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." +msgstr "" +"Le type de donnée inféré par la base de données. Il peut être nécessaire " +"de le rentrer manuellement pour les colonnes définissant des expressions " +"dans certains cas. Dans la plupart des cas il n'est pas nécessaire de le " +"modifier." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -#, fuzzy -msgid "Bar" -msgstr "Tabulaire" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Colonne" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -#, fuzzy -msgid "Bar Chart" -msgstr "Enregistrer un graphique" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Nom explicite" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Description" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Groupable" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -#, fuzzy -msgid "Bar Values" -msgstr "Valeur cible" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filtrable" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -#, fuzzy -msgid "Bar orientation" -msgstr "Documentation" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Table" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "base de données" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Expression" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Est temporel" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "Basé sur une métrique" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Format Datetime" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Type" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Simple" - -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "Information simple" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Format date/timestamp invalide" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" -msgstr "Edition Batch %d filtres:" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Métriques" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Afficher la métrique" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "Faites attention." +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Ajouter une métrique" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "Avant" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Éditer la métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Gros nombre" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "Expression SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Gros nombre avec tendance" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Format D3" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -#, fuzzy -msgid "Bottom" -msgstr "dttm" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Message d'avertissement" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -#, fuzzy -msgid "Bottom left" -msgstr "dttm" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tables" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Afficher les tables" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -#, fuzzy -msgid "Bottom right" -msgstr "dttm" +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Importer la définition d'une table" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Éditer la table" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 +#: superset/connectors/sqla/views.py:327 msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" +"La liste des graphiques associés à cette table. En alterant cette source " +"de données, vous pouvez changer le comportement des graphiques associés. " +"Aussi notez que les graphiques doivent pointer vers une source de " +"données, alors ce formulaire ne pourra pas être enregistré si des " +"graphiques sont retirés d'une source de données. Si vous voulez changer " +"la source de données d'un graphique, écraser le graphique depuis la 'vue " +"d'exploration'" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Timezone offset (en heure) de cette source de données" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Nom de la table qui existe dans la base de données source" + +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" +"Schéma, utilisé uniquement dans certaines bases de données comme " +"Postgres, Redshift et DB2" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#: superset/connectors/sqla/views.py:345 msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" +"Ces champs agissent comme une vue Superset, i.e. Superset va lancer une " +"requête pour cette expression comme une sous-requête." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -#, fuzzy -msgid "Box Plot" -msgstr "boulon" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -#, fuzzy -msgid "Breakdowns" -msgstr "Créé le" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Bulles" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -#, fuzzy -msgid "Bubble Color" -msgstr "Couleur fixe" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -#, fuzzy -msgid "Bubble Size" -msgstr "Taille de la bulle" - -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Taille de la bulle" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" +"Prédicat appliqué à la récupération des valeurs distinctes pour remplir " +"le filtre de contrôle des composants. Supporte la syntaxe Jinja. " +"S'applique uniquement si `Activer le filtre` est coché." -#: superset-frontend/src/features/home/RightMenu.tsx:511 -#, fuzzy -msgid "Build" -msgstr "Rebuild" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Sélectionner plusieurs" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Points" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" +"Redirige à cet endpoint quand on clique sur la table depuis la liste des " +"tables" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" +"Faut-il remplir à la volée les choix du filtre de la section filtre de la" +" page d'exploration avec la liste des valeurs distinctes répérées depuis " +"le backend" + +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "Si la table a été générée par le flow 'Visualiser' dans SQL Lab" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -"Par défaut, chaque filtre charge au plus 1000 choix au chargement initial" -" de la page. Cocher cette case su vous avez plus de 1000 valeurs de " -"filtre et voulez permettre la recherche dynamique qui charge les valeurs " -"de filtre à mesure que le les utilisateurs tapent (peut surcharger la " -"base de données)." +"Un ensemble de paramètre qui seront disponible dans la requête utilisant " +"la syntaxe du template Jinja" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" +"Durée (en secondes) du timeout du cache pour cette table. Un timeout à 0 " +"indique que le cache n'expire jamais. Notez que le timeout de la base de " +"données par défaut est undefined." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "ANNULER" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Les graphiques associés" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -#, fuzzy -msgid "CREATE DATASET" -msgstr "Changer de jeu de données" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Modifié par" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "Autoriser CREATE TABLE AS" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Base de données" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "CREATE VIEW AS" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Dernière modification" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "ordre CREATE VIEW" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Activer le filtre de sélection" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -#, fuzzy -msgid "CRON Schedule" -msgstr "Planification de rapport" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Schéma" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "Expression CRON" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Endpoint par défaut" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Décalage (offset)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Cache timeout" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "Templates CSS" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Nom de la table" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Récupérer les valeurs des prédicats" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "Templates CSS" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Propriétaires" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "Le template CSS n'a pas pu être supprimé." +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Colonne Datetime principale" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "Nom du template" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "Vue SQL Lab" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "Template CSS non trouvé." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Les paramètres du modèle" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "Templates CSS" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Modifié" -#: superset/views/database/forms.py:109 -#, fuzzy -msgid "CSV Upload" -msgstr "Charger un CSV" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" +"La table a été créée. Dans le cadre de cette configuration en deux " +"étapes, vous devez maintenant cliquer sur le bouton d'édition de la " +"nouvelle table pour la configurer." -#: superset/views/database/views.py:290 +#: superset/css_templates/api.py:142 #, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Template css %(num)d supprimé" +msgstr[1] "Templates css %(num)d supprimés" + +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -"Fichier CSV \"%(csv_filename)s\" chargé dans la table \"%(table_name)s\" " -"de la base de données \"%(db_name)s\"" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "Configuration de CSV vers base de données" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "%(num)d tableau de bord supprimé" +msgstr[1] "%(num)d tableaux de bord supprimés" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "Charger un CSV" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Titre" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "SCHEMA CTAS & CVAS" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Profil" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." -msgstr "" -"Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. " -"Assurez-vous que la requête a bien un SELECT en dernière instruction. " -"Puis essayez d'exécuter votre requête à nouveau." +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +#, fuzzy +msgid "Invalid state." +msgstr "Certificat invalide" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "Schéma CTAS" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Nom de la table non défini" + +#: superset/databases/filters.py:79 +#, fuzzy +msgid "Upload Enabled" +msgstr "Téléverser un fichier Excel" -#: superset/sql_lab.py:449 +#: superset/databases/schemas.py:175 +#, fuzzy msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -"Le CVAS (create view as select) ne peut être exécuté qu'avec une requête " -"contenant une seule instruction SELECT. Assurez-vous que la requête a " -"bien une seule instruction SELECT. Puis essayez d'exécuter votre requête " -"à nouveau." +"Chaîne de connexion invalide, une chaîne valide a généralement cette " +"forme : driver://user:password@database-host/database-name" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "La requête CVAS (create view as select) a plus d'une instruction." +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Le champ ne peut pas être décodé par JSON. %(msg)s" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "La requête CVAS (create view as select) n'est pas une instruction SELECT." +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" +"Le paramètre metadata_params dans Champ supplémentaire n'est pas " +"correctement configuré. La clé %(key)s est invalide." -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Cache timeout" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" +"Un moteur doit être fournit lorsque l'on passe des paramètres individuels" +" à la base de données." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Timeout du cache (secondes)" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" +"La spec moteur \"InvalidEngine\" ne supporte pas d'être configuré via " +"des paramètres individuels." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Cache timeout" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "%(num)d jeu de données supprimé" +msgstr[1] "%(num)d jeux de données supprimés" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -#, fuzzy -msgid "Cached" -msgstr "mis en cache" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Null ou Vide" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 #, python-format -msgid "Cached %s" -msgstr "En cache %s" +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" +"Veuillez corriger une erreur de syntaxe dans la requête près de " +"\"%(syntax_error)s\". Puis essayez de relancer la requête." + +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Seconde" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "Valeur en cache non trouvée" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5 secondes" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -#, fuzzy -msgid "Calculate contribution per series or row" -msgstr "Calculer la contribution au total" +#: superset/db_engine_specs/base.py:100 +msgid "30 second" +msgstr "30 secondes" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "La colonne calculée [%s] nécessite une expression" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Minute" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Colonnes calculées" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 minutes" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Choisir un type de calcul" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 minutes" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Calendrier Carte de chaleur" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 minutes" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "On ne peut déplacer un onglet top level vers des onglets imbriqués" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" +msgstr "30 minutes" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" -msgstr "Peut selectionner plusieurs valeurs" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Heure" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6 heures" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Annuler" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "Jour" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" -msgstr "Annule la requête quand on quitte la fenêtre" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Semaine" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" -msgstr "" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Mois" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "" -"Impossible de supprimer une base de données qui a des jeux de données " -"rattachés" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Trimestre" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" -msgstr "" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Année" -#: superset/views/core.py:734 -#, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." -msgstr "" -"Impossible d'importer le tableau de bord : %(db_error)s.\n" -"Assurez vous de créer d'abord la base de données avant d'importer le " -"tableau de bord." +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Semaine débutant le dimanche" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "Impossible de charger le filtre" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Semaine débutant le lundi" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Ne peut pas parser la chaîne de temps [%(human_readable)s]" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Semaine terminant le samedi" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +#: superset/db_engine_specs/base.py:116 #, fuzzy -msgid "Categorical" -msgstr "Catégorie" +msgid "Week ending Sunday" +msgstr "Semaine terminant le samedi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -#, fuzzy -msgid "Categorical Color" -msgstr "Catégorie" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Nom d'utilisateur" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Mot de passe" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" -msgstr "Catégorie" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Nom d'hôte ou adresse IP" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "Nom de la requête" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Port de la base de données" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -#, fuzzy -msgid "Category and Percentage" -msgstr "Pourcentages" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Nom de la base de données" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -#, fuzzy -msgid "Category and Value" -msgstr "Renseigner une valeur" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "Paramètres supplémentaires" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Utiliser une connexion cryptée vers la base de données" + +#: superset/db_engine_specs/base.py:2004 #, fuzzy -msgid "Category name" -msgstr "Nom de la requête" +msgid "Use an ssh tunnel connection to the database" +msgstr "Utiliser une connexion cryptée vers la base de données" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" +"La table \"%(table)s\" n'existe pas. Une table valide doit être utilisée " +"pour cette requête." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" +"Nous ne pouvons résoudre la colonne \"%(column)s\" à la ligne " +"%(location)s." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" +"Le schéma \"%(schema)s\" n'existe pas. Un schéma valide doit être utilisé" +" pour cette requête." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -#, fuzzy -msgid "Cell Size" -msgstr "Fichier Excel" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -#, fuzzy -msgid "Cell bars" -msgstr "Tous les graphiques" - -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "Contenu de cellule" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -#, fuzzy -msgid "Cell limit" -msgstr "Nombre de séries max" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "L'utilisateur \"%(username)s\" ou le mot de passe est incorrect." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -#, fuzzy -msgid "Center" -msgstr "Récents" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Hôte MySQL \"%(hostname)s\" inconnu." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -#, fuzzy -msgid "Centroid (Longitude and Latitude): " -msgstr "Invalide Longitude/Latitude" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "" +"L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être " +"atteint." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -#, fuzzy -msgid "Certification" -msgstr "Détails de certification" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Impossible de se connecter à la base de données \"%(database)s\"." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" -msgstr "Détails de certification" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" +"Veuillez corriger une erreur de syntaxe dans la requête près de " +"\"%(server_error)s\". Puis essayez de relancer la requête." -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -#, fuzzy -msgid "Certified" -msgstr "Certifié" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "Nous ne pouvons résoudre la colonne \"%(column_name)s\"" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" -msgstr "Certifié Par" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"Soit l'utilisateur \"%(username)s\", le mot de passe, ou le nom de la " +"base de données \"%(database)s\" est incorrect." -#: 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Certifié par" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "Le nom d'hôte \"%(hostname)s\" ne peut pas être résolu." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 #, python-format -msgid "Certified by %s" -msgstr "Certifié par %s" +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Le port %(port)s sur l'hôte \"%(hostname)s\" a refusé la connexion." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" +"L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être " +"atteint sur le port %(port)s." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Hôte MySQL \"%(hostname)s\" inconnu." -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Modifié par" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "L'utilisateur \"%(username)s\" n'existe pas." -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Modifié le" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Impossible de se connecter à la base de données \"%(database)s\"." + +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -"Changer le jeu de données peut mettre en erreur le graphiquesi celui-ci " -"s'appuie sur des colonnes ou une métadonnées qui n'existe pas dans le jeu" -" de données cible" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/db_engine_specs/ocient.py:271 +#, fuzzy msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -"La modification de ces paramètres affectera tous les graphiques qui " -"utilisent ce jeu de données, y compris les graphiques qui appartiennent à" -" d'autres personnes." - -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "Modifier ce tableau de bord est interdit" +"Chaîne de connexion invalide, une chaîne valide a généralement cette " +"forme : driver://user:password@database-host/database-name" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "Modifier ce graphique est interdit" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "La modification de ce contrôle prendra effet immédiatement" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "L'utilisateur \"%(username)s\" n'existe pas." -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "Changer ce jeu de données est interdit" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "Modifier ce jeu de données est interdit." +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "Le mot de passe fourni pour l'utilisateur \"%(username)s\" est incorrect." -#: superset/explore/exceptions.py:49 -#, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "Changer ce jeu de données est interdit" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "Veuillez re-saisir le mot de passe." -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "Il est interdit de changer ce rapport" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" +"Nous ne pouvons résoudre la colonne \"%(column_name)s\" à la ligne " +"%(location)s." -#: superset/views/database/forms.py:206 +#: superset/db_engine_specs/postgres.py:289 #, fuzzy -msgid "Character to interpret as decimal point" -msgstr "Caractère à interpréter comme un point décimal." +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" +"%(dialect)s ne peut pas être utilisé comme source de données pour des " +"raisons de sécurité." -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "Caractère à interpréter comme un point décimal." +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." +msgstr "" +"La table \"%(table_name)s\" n'existe pas. Une table valide doit être " +"utilisée pour cette requête." -#: 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "Graphique" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." +msgstr "" +"Le schéma \"%(schema_name)s\" n'existe pas. Un schéma valide doit être " +"utilisé pour cette requête." -#: superset/views/core.py:1762 +#: superset/db_engine_specs/presto.py:703 #, python-format -msgid "Chart %(id)s not found" -msgstr "Graphique %(id)s non trouvé" +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "Impossible de se connecter au catalogue \"%(catalog_name)s\"." -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Timeout du cahce du graphique" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Erreur Presto inconnue" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "Dernière mise à jour %s" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "" +"Nous n'avons pas pu nous connecter à votre base de données " +"\"%(database)s\". Veuillez vérfier le nom de la base et réessayez." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "ID Graphique" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s n'existe pas dans cette base de données." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 +#: superset/explore/exceptions.py:45 #, fuzzy -msgid "Chart Options" -msgstr "Option comparateur" +msgid "Samples for datasource could not be retrieved." +msgstr "Le jeu de données n'a pas pu être créé." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Chart Orientation" -msgstr "Documentation" +msgid "Changing this datasource is forbidden" +msgstr "Changer ce jeu de données est interdit" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Propriétaire du graphique : %s" -msgstr[1] "" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Accueil" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#: superset/initialization/__init__.py:242 #, fuzzy -msgid "Chart Source" -msgstr "Source de données" +msgid "Database Connections" +msgstr "Tester la connexion" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -#, fuzzy -msgid "Chart Title" -msgstr "Onglet titre" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Données" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, fuzzy, python-format -msgid "Chart [%s] has been overwritten" -msgstr "Le graphique [{}] a été écrasé" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Tableaux de bord" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" -msgstr "Le graphique [{}] a été sauvegardé" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Graphiques" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, fuzzy, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "Graphique [{}] ajouté au tableau de bord [{}]" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Jeux de données" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "Le graphique [{}] a été écrasé" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Plugins" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "Le graphique [{}] a été sauvegardé" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Gestion" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" -msgstr "Graphique [{}] ajouté au tableau de bord [{}]" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "Templates CSS" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Timeout du cache du graphique" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL Lab" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Changements de graphique" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 -msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" -msgstr "" -"Composant graphique sui vous laisse ajouter un filtre personnalisé dans " -"votre tableau de bord. Quand elle est ajouteé au tableau de bord, une " -"boîte de filtrage permet à l'utilisateur de choisir des valeurs ou plages" -" spécifiques pour filtrer les graphiques. Les graphiques concernés par " -"chaque filtre peuvent être réglés finement dans la vue Tableau de bord.\n" -"\n" -" Notez que ce plugin est remplacé par la nouvelle fonction Filtres " -"qui est présente dans cette vue Tableau de bord. C'est plus facile à " -"utiliser et offre plus de possibilités !" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Requêtes sauvegardées" + +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Historiques des requêtes" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "Tags" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Le graphique n'a pas pu être créé." +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Journaux d'actions" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "Le graphique n'a pas pu être supprimé." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Sécurité" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "Le graphique n'a pas pu être mis à jour." +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Alertes et rapports" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "Le graphique n'existe pas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Couches d'annotations" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "" -"Le graphique n'a pas de contexte de requête sauvegardé. Veuillez sauver " -"le graphique à nouveau." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "Sécurité de niveau ligne" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +#: superset/key_value/exceptions.py:30 #, fuzzy -msgid "Chart height" -msgstr "Onglet titre" +msgid "An error occurred while parsing the key." +msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset-frontend/src/pages/ChartList/index.tsx:228 +#: superset/key_value/exceptions.py:50 #, fuzzy -msgid "Chart imported" -msgstr "Onglet titre" +msgid "An error occurred while upserting the value." +msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "Dernière modification" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "Dernière modification par %s" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Nom du graphique" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -#, fuzzy -msgid "Chart options" -msgstr "Option comparateur" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "" +"Colonne Datetime non fournie dans la configuration alors qu'elle est " +"requise pour ce type de graphique" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "Propriétaire du graphique : %s" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Requête vide ?" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Les paramètres du graphique sont invalides." +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Colonne inconnue utilisée dans le tri %(col)s" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -#, fuzzy -msgid "Chart properties updated" -msgstr "Modifier les propriétés du graphique" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "La colonne temporelle \"%(col)s\" n'existe pas dans le jeu de données" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 +#: superset/models/helpers.py:1821 #, fuzzy -msgid "Chart title" -msgstr "Onglet titre" +msgid "error_message" +msgstr "Message d'erreur" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Type de graphique" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "La liste de valeurs du filtre ne peut pas être vide" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" +"Il faut spécifier une valeur pour les filtres avec opérateurs de " +"comparaison" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "Onglet titre" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Type d'opération de filtrage invalide : %(op)s" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Graphiques" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Erreur d'expression jinja dans la clause WHERE : %(msg)s" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Les graphiques n'ont pas pu être supprimés." +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Erreur d'expression jinja dans la clause HAVING : %(msg)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "Vérifier la configuration" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "La base de données n'autorise pas les sous-requêtes" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Cocher pour trier par ordre croissant" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "%(num)d requête sauvegardée supprimée" +msgstr[1] "%(num)d requêtes sauvegardées supprimées" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "%(num)d planification de rapport supprimée" +msgstr[1] "%(num)d planifications de rapport supprimées" + +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "La valeur doit être plus grande que 0" + +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" + +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" +msgstr "" + +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +"\n" +" Error: %(text)s\n" +" " msgstr "" +"\n" +" Erreur: %(text)s\n" +" " -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Vérifiez ce graphique dans le tableau de bord :" +#: superset/reports/notifications/email.py:132 +#, fuzzy +msgid "EMAIL_REPORTS_CTA" +msgstr "Rapports par e-mail actifs" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " -msgstr "Vérifiez ce tableau de bord : " +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "Vérifiez ce tableau de bord : " +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 +#: superset/reports/notifications/slack.py:76 +#, python-format msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -"Cocher pour appliquer les filtres instantanément dès qu'ils changent " -"aulieu d'afficher le bouton [Appliquer]" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explorer dans Superset>\n" +"\n" +"%(table)s\n" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Erreur: %(text)s\n" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "Cocher pour inclure la liste déroulante colonne Temps" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "%(num)d graphique supprimé" +msgstr[1] "%(num)d graphiques supprimés" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "Cocher pour inclure la liste déroulante de granularité de temps" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" +"%(dialect)s ne peut pas être utilisé comme source de données pour des " +"raisons de sécurité." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "Le [Label] choisi doit être présent dans [Grouper par]" +#: superset/security/manager.py:2394 +#, fuzzy, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "Le [Point Radius] doit être présent dans [Grouper par]" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Choisissez un fichier" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +#, fuzzy +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" +"Veuillez corriger une erreur de syntaxe dans la requête près de " +"\"%(syntax_error)s\". Puis essayez de relancer la requête." -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Choisissez un graphique ou un tableau de bord, pas les deux" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "Le paramètre %(parameters)s de votre requête est indéfini." +msgstr[1] "Les paramètres suivants de votre requête sont indéfinis : %(parameters)s." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -#, fuzzy -msgid "Choose a database..." -msgstr "Choisissez un jeu de donnée" +#: superset/sqllab/query_render.py:121 +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/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Choisissez un jeu de donnée" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" +"Merci de vérifier votre requête et de confirmer que tous les paramètres " +"du modèle sont entourés par des doubles accolades, par exemple, \"{{ ds " +"}}\". Puis ré essayez ." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Choisir une mesure pour l'axe de droite" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 +#: superset/tags/exceptions.py:39 #, fuzzy -msgid "Choose a number format" -msgstr "Choisir une mesure pour l'axe de droite" +msgid "Tag could not be found." +msgstr "Base de données non trouvée." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 +#: superset/tags/filters.py:31 #, fuzzy -msgid "Choose a source" -msgstr "Choisissez un jeu de donnée" +msgid "Is custom tag" +msgstr "Configurer un intervalle de temps personnalisée" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 +#: superset/tasks/exceptions.py:24 #, fuzzy -msgid "Choose a source and a target" -msgstr "Choisissez un jeu de donnée" +msgid "Scheduled task executor not found" +msgstr "Etat du programme de rapport introuvable" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -#, fuzzy -msgid "Choose a target" -msgstr "Choisissez un jeu de donnée" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Nombre d'enregistrements" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" -msgstr "Choisissez un type de graphique" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Aucun enregistrement trouvé" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." -msgstr "" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Filtres" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "Choisir le type de couche d'annotations" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Recherche" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -#, fuzzy -msgid "Choose the format for legend values" -msgstr "Choisir une mesure pour l'axe de droite" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Forcer à rafraîchir" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -#, fuzzy -msgid "Choose the position of the legend" -msgstr "Calculer la contribution au total" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Import des tableaux de bord" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" -msgstr "Choisir la source de vos annotations" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Importer des tableaux de bords" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Fichier" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Choisissez un fichier" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "Colonne non numérique choisie" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Téléverser" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 #, fuzzy -msgid "Circle" -msgstr "Fichier" +msgid "Use the edit button to change this field" +msgstr "Utilisez le bouton Editer pour changer ce champ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Test de connexion" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" -msgstr "" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "Type de clause non supportée: %(clause)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" -msgstr "" +#: superset/utils/core.py:1246 +#, fuzzy, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "Object métrique invalide" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" -msgstr "" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Impossible de trouver un tel congé : [%(holiday)s]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" +"percentiles doit être une liste ou un couple de 2 valeurs dont le premier" +" est inférieur au second" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "Clause" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Effacer" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "`compare_columns` doit être de même longueur que `source_columns`." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "Effacer tout" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "`compare_type` doit être `difference`, `percentage` or `ratio`" -#: superset-frontend/src/components/Table/index.tsx:210 -#, fuzzy -msgid "Clear all data" -msgstr "Effacer tout" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "" +"La colonne \"%(column)s\" n'est pas numérique ou n'existe pas dans les " +"résultats de requêtes." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -#, fuzzy -msgid "Clear form" -msgstr "Format D3" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "`rename_columns` doit être de même longueur que `columns`." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" -msgstr "" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Operateur cumulatif invalide: %(operator)s" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" -msgstr "" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Chaine de geohash invalide" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "Cliquez sur le cadenas pour apporter des modifications." +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Invalide Longitude/Latitude" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "Cliquez sur le cadenas pour empêcher d'autres modifications." +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Chaine de géodésie invalide" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." -msgstr "" -"Cliquez sur ce lien pour basculer sur un autre formulaire qui vous " -"permettra d'entrer manuellement l'URL SQLAlchemy pour cette base de " -"données." +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "L'opération de pivot nécessite au moins un index" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "" -"Cliquez sur ce lien pour basculer sur un autre formulaire qui ne montrera" -" que les champs nécessaires pour se connecter à cette base de données." +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "L'opération de pivot nécessite au moins un agrégat" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "`prophet` package non installé" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Cliquer pour modifier" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Granularité de temps manquante" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, fuzzy, python-format -msgid "Click to edit %s." -msgstr "Cliquer pour modifier" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Granularité de Temps non supportée : %(time_grain)s" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#: superset/utils/pandas_postprocessing/prophet.py:130 #, fuzzy -msgid "Click to edit chart." -msgstr "Cliquer pour modifier" +msgid "Periods must be a whole number" +msgstr "Les périodes doivent être des nombres entiers positifs" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "Cliquer pour éditer le Label" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "L'intervalle de confiance doit être entre 0 et 1 (exclusif)" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Cliquez pour favori ou non" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "Dataframe doit inclure une colonne temporelle" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Cliquer pour forcer le rafraîchissement" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "DataFrame doit comprendre au moins une série" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Cliquer pour voir la différence" +#: superset/utils/pandas_postprocessing/rename.py:53 +#, fuzzy +msgid "Label already exists" +msgstr "Cet ensemble de filtre existe déjà" -#: superset-frontend/src/components/Table/index.tsx:216 +#: superset/utils/pandas_postprocessing/resample.py:43 #, fuzzy -msgid "Click to sort ascending" -msgstr "Cocher pour trier par ordre croissant" +msgid "Resample operation requires DatetimeIndex" +msgstr "L'opération de pivot nécessite au moins un index" -#: superset-frontend/src/components/Table/index.tsx:215 +#: superset/utils/pandas_postprocessing/resample.py:46 #, fuzzy -msgid "Click to sort descending" -msgstr "Tri décroissant" +msgid "Resample method should in " +msgstr "Méthode de ré-échantillonnage Pandas" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "Fermer" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Fenêtre indéfinie pour l'opération de roulement" + +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "La fenêtre doit être > 0" + +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "Le rolling_type invalide: %(type)s" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Fermer tous les autres onglets" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Options invalides pour %(rolling_type)s: %(options)s" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Fermer l'onglet" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "Les colonnes référencées sont indisponibles dans la DataFrame." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" -msgstr "" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "La colonne référencée dans l'agrégat est indéfinie: %(column)s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Opérateur indéfini pour l'agrégat: %(name)s" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Code" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" +msgstr "Fonction numpy invalide: %(operator)s" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Tout réduire" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Intervalle de temps inattendu: %s" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -#, fuzzy -msgid "Collapse data panel" -msgstr "Tout réduire" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "le json n'est pas valide" -#: superset-frontend/src/components/Table/index.tsx:214 -#, fuzzy -msgid "Collapse row" -msgstr "Tout réduire" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Exporter au format YAML" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -#, fuzzy -msgid "Collapse tab content" -msgstr "Contenu de cellule" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Exporter en YAML?" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -#, fuzzy -msgid "Collapse table preview" -msgstr "Supprimer la Prévisualisation de la table" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Effacer" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Couleur" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Vraiment tout effacer ?" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Favoris" + +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -#, fuzzy -msgid "Color Metric" -msgstr "Métrique de couleur" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "La source de données semble avoir été effacée" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "L'utilisateur semble avoir été effacé" + +#: superset/views/core.py:289 #, fuzzy -msgid "Color Scheme" -msgstr "Jeu de couleur" +msgid "You don't have the rights to download as csv" +msgstr "Vous n'avez pas les droits pour " -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +#: superset/views/core.py:420 #, fuzzy -msgid "Color Steps" -msgstr "Jeu de couleur" +msgid "Error: permalink state not found" +msgstr "Etat du programme de rapport introuvable" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 +#: superset/views/core.py:509 #, fuzzy -msgid "Color by" -msgstr "Trier par" - -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Métrique de couleur" +msgid "You don't have the rights to alter this chart" +msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 +#: superset/views/core.py:515 #, fuzzy -msgid "Color of the target location" -msgstr "Détails de la certification" - -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Jeu de couleur" +msgid "You don't have the rights to create a chart" +msgstr "Vous n'avez pas les droits pour " -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 -msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " -msgstr "" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "Explorer - %(table)s" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Couleur" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Explorer" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Colonne" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "Le graphique [{}] a été sauvegardé" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format -msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." -msgstr "" -"La colonne \"%(column)s\" n'est pas numérique ou n'existe pas dans les " -"résultats de requêtes." +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +msgstr "Le graphique [{}] a été écrasé" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 +#: superset/views/core.py:645 #, fuzzy -msgid "Column Configuration" -msgstr "Vérifier la configuration" +msgid "You don't have the rights to alter this dashboard" +msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "Données chargées mises en cache" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "Graphique [{}] ajouté au tableau de bord [{}]" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 +#: superset/views/core.py:661 #, fuzzy -msgid "Column Formatting" -msgstr "Informations additionnelles" +msgid "You don't have the rights to create a dashboard" +msgstr "Vous n'avez pas les droits pour " -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Labels) de colonne" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/core.py:716 msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" +"Requête malformée. Les arguments slice_id ou table_name et db_name sont " +"attendus" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Graphique %(id)s non trouvé" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "Table %(table)s pas trouvée dans la base de données %(db)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#: superset/views/core.py:836 #, fuzzy -msgid "Column datatype" -msgstr "Nom(s) de colonne " +msgid "permalink state not found" +msgstr "Etat du programme de rapport introuvable" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Voir le Template CSS" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "Colonne requise" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Ajouter un Template CSS" + +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Modifier le Template CSS" + +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Nom du template" + +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Un nom facile à comprendre" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset/views/dynamic_plugins.py:48 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -"Label de colonne pour l'index de colonne(s). Si aucun label est donné et " -"que l'index du tableau de données est Vrai, alors les noms d'Index sont " -"utilisés." +"Utilisé en interne pour identifier le plugin. Devrait être le nom du " +"package tiré du fichier plugin package.json" -#: superset/views/database/forms.py:233 -#, fuzzy +#: superset/views/dynamic_plugins.py:52 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -"Label de colonne pour l'index de colonne(s). Si aucun label est donné et " -"que l'index du tableau de données est Vrai, alors les noms d'Index sont " -"utilisés." - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "Nom(s) de colonne " - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" -msgstr "Le nom de colonne [%s] est dupliqué" +"Une URL complète désignant le lieu du plugin (pourrait être hébergé sur " +"un CDN par exemple)" -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "La colonne référencée dans l'agrégat est indéfinie: %(column)s" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Plugins custom" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" -msgstr "Sélection d'une colonne" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Plugin custom" -#: superset/views/database/forms.py:221 -#, fuzzy -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" -msgstr "" -"Colonne à utiliser comme labelle de ligne du tableau de données. Laissez " -"vide si pas d'index de colonne." +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Ajouter un plugin" -#: superset/views/database/forms.py:352 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." -msgstr "" -"Colonne à utiliser comme labelle de ligne du tableau de données. Laissez " -"vide si pas d'index de colonne." +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Éditer le plugin" -#: superset/views/database/forms.py:424 -msgid "Columnar File" -msgstr "Fichier en colonnes" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "Le jeu de donnée associé à ce graphique n'existe plus" -#: superset/views/database/views.py:568 -#, python-format -msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "" -"Fichier en colonne \"%(columnar_filename)s\" chargé dans la table " -"\"%(table_name)s\" de la base de données \"%(db_name)s\"" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Impossible de déterminer le type de source de données" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" -msgstr "Configuration des colonnes vers la base de données" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Impossible de trouver l'objet viz" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Colonnes" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Afficher le graphique" -#: superset/views/database/forms.py:193 -#, fuzzy -msgid "Columns To Be Parsed as Dates" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Ajouter un graphique" + +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Modifier le graphique" + +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -"Une liste de colonnes séparées par des virgules qui devraient être " -"parsées comme des dates." +"Ces paramètres sont généré dynamiquement quand vous cliquez sur " +"Sauvegarder ou forcer dans la page d'exploration. Cet objet JSON est " +"exposé ici comme une référence et pour les experts qui voudraient " +"modifier des paramètres." -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "Pas de colonne" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "Durée (en seconds) du délai de mise en cache pour ce graphique." -#: superset/common/query_context_processor.py:132 -#, fuzzy, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "Colonnes absentes de la source de données : %(invalid_columns)s" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Créateur" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "Colonnes absentes de la source de données : %(invalid_columns)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Source de données" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" -msgstr "" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Dernière modification" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Paramètres" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -#, fuzzy -msgid "Columns to display" -msgstr "Choisissez une métrique à afficher" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Graphique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Nom" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Type de visualisation" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Montrer les tableaux de bords" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -#, fuzzy -msgid "Columns to show" -msgstr "Choisissez une métrique à afficher" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Ajouter un tableau de bord" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -#, fuzzy -msgid "Combine metrics" -msgstr "Trier les métriques" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Éditer le tableau de bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +#: superset/views/dashboard/mixin.py:46 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" +"Cet objet JSON décrit la position des widgets dans le tableau de bord. Il" +" est généré dynamiquement quand on ajuste la taille ou la position des " +"widgets via drag and drop dans la vue tableau de bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +#: superset/views/dashboard/mixin.py:52 msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" +"Le css pour certains tableaux de bords peut être modifié ici, ou dans la" +" page tableaux de bords pour que les changement soient visibles " +"immédiatement" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" -msgstr "Option comparateur" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Pour avoir une URL lisible pour votre tableau de bord" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -"Comparer rapidement des graphiques de multiple séries temporelles et " -"leurs métriques." +"Ce JSON a été généré automatiquement quand vous avez cliqué sur " +"sauvegarder ou forcer dans la page des tableaux de bords. Il est exposé " +"ici comme une référence et pour les experts qui voudraient modifier des " +"paramètres." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." msgstr "" +"Owners est une liste d'utilisateurs qui peuvent modifier le tableau de " +"bord." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +#: superset/views/dashboard/mixin.py:65 +#, fuzzy msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" +"Roles est une liste qui défini ceux qui accède au tableau de bord .Donner" +" un droit d'accès à un tableau de bord surpasse les contrôles de droit de" +" niveau jeu de donnée. Si roles n'est pas défini, le tableau de bord est " +"accessible à tous les profils." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 +#: superset/views/dashboard/mixin.py:70 msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" +"Indique si ce tableau de bord est visible dans la liste des tableaux de " +"bord" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Tableau de bord" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" -msgstr "Comparaison" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Titre" + +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" + +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Profils" + +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Publié" + +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "JSON des positions" + +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" + +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSON des méta-données" + +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Exporter" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" -msgstr "" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Exporter les tableaux de bords ?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +#: superset/views/database/forms.py:109 #, fuzzy -msgid "Comparison suffix" -msgstr "Comparaison" +msgid "CSV Upload" +msgstr "Charger un CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset/views/database/forms.py:110 +#, fuzzy +msgid "Select a file to be uploaded to the database" +msgstr "Sélectionner un fichier CSV à charger dans une base de données." + +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" +"Seules les extensions de fichier suivantes sont autorisées : " +"%(allowed_extensions)s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Calculer la contribution au total" +#: superset/views/database/forms.py:130 +#, fuzzy +msgid "Name of table to be created with CSV file" +msgstr "Nom de la table à créer à partir des données CSV." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" -msgstr "Condition" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Informations additionnelles" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 +#: superset/views/database/forms.py:145 #, fuzzy -msgid "Conditional formatting" -msgstr "Informations additionnelles" +msgid "Column Data Types" +msgstr "Données chargées mises en cache" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + +#: superset/views/database/forms.py:156 #, fuzzy -msgid "Confidence interval" -msgstr "Intervalle d'actualisation" +msgid "Select a schema if the database supports this" +msgstr "" +"Spécifier un schéma (si la base de données soutient cette " +"fonctionnalités)." -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "L'intervalle de confiance doit être entre 0 et 1 (exclusif)" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Délimiteur" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Configuration" +#: superset/views/database/forms.py:162 +#, fuzzy +msgid "Enter a delimiter for this data" +msgstr "Entrée un nouveau titre pour l'onglet" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "Configurer Intervalle de temps avancé " +#: superset/views/database/forms.py:164 +msgid "," +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Configurer intervalle de temps : Dernier ..." +#: superset/views/database/forms.py:165 +msgid "." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Configurer intervalle de temps : Précédent ..." +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "Autres" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Configurer un intervalle de temps personnalisée" +#: superset/views/database/forms.py:175 +#, fuzzy +msgid "If Table Already Exists" +msgstr "Cet ensemble de filtre existe déjà" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Configurer la portée du filtre" +#: superset/views/database/forms.py:176 +#, fuzzy +msgid "What should happen if the table already exists" +msgstr "Un ensemble de filtre avec ce nom existe déjà" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "Configurer les bases de votre couche d'annotations." +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Echec" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Remplacer" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "Configurer comment votre superposition est affichée ici." +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Ajouter" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Supprimer l'espace initial" + +#: superset/views/database/forms.py:185 #, fuzzy -msgid "Confirm overwrite" -msgstr "Confirmez la sauvegarde" +msgid "Skip spaces after delimiter" +msgstr "Supprimer l'espace après le délimiteur." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "Confirmez la sauvegarde" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Sauter les lignes vides" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "Connecter" +#: superset/views/database/forms.py:189 +#, fuzzy +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "Sauter les lignes vides au lieu des les interpréter comme des valeurs NaN." -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset/views/database/forms.py:194 +#, fuzzy +msgid "Columns To Be Parsed as Dates" msgstr "" +"Une liste de colonnes séparées par des virgules qui devraient être " +"parsées comme des dates." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset/views/database/forms.py:195 +#, fuzzy +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -"Connecter à cette base de données les feuilles Google Sheet comme des " -"tables" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" -msgstr "Connecter une base de données" - -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" -msgstr "Connexion à la base de données" +"Une liste de colonnes séparées par des virgules qui devraient être " +"parsées comme des dates." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Connexion" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Caractère décimal" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "La connexion a échoué, veuillez vérifier vos paramètres de connexion" +#: superset/views/database/forms.py:207 +#, fuzzy +msgid "Character to interpret as decimal point" +msgstr "Caractère à interpréter comme un point décimal." -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" -msgstr "" +#: superset/views/database/forms.py:212 +#, fuzzy +msgid "Null Values" +msgstr "Valeurs NULL" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 +#: superset/views/database/forms.py:214 #, fuzzy -msgid "Continue" -msgstr "colonne" +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"Json liste de valeur à traiter comme NULL. Examples: [\"\"], [\"None\", " +"\"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte " +"qu'une seule valeur. Use [\"\"] for empty string." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Index de colonne" + +#: superset/views/database/forms.py:222 +#, fuzzy +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" +"Colonne à utiliser comme labelle de ligne du tableau de données. Laissez " +"vide si pas d'index de colonne." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Contribution" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Index du tableau de données" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset/views/database/forms.py:230 #, fuzzy -msgid "Contribution Mode" -msgstr "Contribution" +msgid "Write dataframe index as a column" +msgstr "Ecrire l'index du tableau de données en colonne." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Labels) de colonne" + +#: superset/views/database/forms.py:234 #, fuzzy -msgid "Control" -msgstr "colonne" +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" +"Label de colonne pour l'index de colonne(s). Si aucun label est donné et " +"que l'index du tableau de données est Vrai, alors les noms d'Index sont " +"utilisés." -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "Contrôle libellé " +#: superset/views/database/forms.py:242 +#, fuzzy +msgid "Columns To Read" +msgstr "Pas de colonne" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " -msgstr "Contrôles libellés " +#: superset/views/database/forms.py:244 +#, fuzzy +msgid "Json list of the column names that should be read" +msgstr "" +"Une liste de colonnes séparées par des virgules qui devraient être " +"parsées comme des dates." -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset/views/database/forms.py:248 #, fuzzy -msgid "Coordinates" -msgstr "Coordonnées parallèles" +msgid "Overwrite Duplicate Columns" +msgstr "Supprimer les colonnes en double" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "Copié vers le presse-papier !" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" +msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" -msgstr "Copier" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Ligne d'en-tête" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "Copier l'étape SELECT vers le presse-papier" +#: superset/views/database/forms.py:256 +#, fuzzy +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" +msgstr "" +"Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première" +" ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "Copier et coller les informations de connexion JSON" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Lignes à lire" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "Copier et coller ici le fichier de service .json en entier" +#: superset/views/database/forms.py:266 +#, fuzzy +msgid "Number of rows of file to read" +msgstr "Nombre de lignes du fichier à lire." -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "Copier le lien" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Sauter des lignes" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "Copier le message" +#: superset/views/database/forms.py:272 +#, fuzzy +msgid "Number of rows to skip at start of file" +msgstr "Nombre de lignes à sauter au début du fichier." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Copie de %s" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Nom de la table à créer à partir des données Excel." -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Copier la requête de partition vers le presse-papier" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Fichier Excel" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" -msgstr "Copier le lien dans le presse-papiers" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Sélectionner un fichier Excel à charger dans une base de données." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Copier l'URL de la requête" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Nom de la feuille" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Copier le lien de la requête vers le presse-papier" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "" +"Chaînes utilisées pour les noms des feuilles (par défaut la première " +"feuille)." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -"Copier le nom du compte de la base de données à laquelle vous essayez de " -"vous connecter." +"Spécifier un schéma (si la base de données soutient cette " +"fonctionnalités)." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "La table existe" + +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" +"Si la table existe, faire une des actions suivantes : Echec (pas " +"d'actions), Remplacer (supprimer et recréer la table) ou Ajouter (insérer" +" les données)." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -#, fuzzy -msgid "Copy the name of the database you are trying to connect to." +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -"Copier le nom de la base de données à laquelle vous essayez de vous " -"connecter." +"Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première" +" ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" -msgstr "Copier vers le presse-papier" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." +msgstr "" +"Colonne à utiliser comme labelle de ligne du tableau de données. Laissez " +"vide si pas d'index de colonne." -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Copier vers le presse-papier" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Nombre de lignes à sauter au début du fichier." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -#, fuzzy -msgid "Correlation" -msgstr "Durée" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Nombre de lignes du fichier à lire." -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Estimation coût" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Parser les dates" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "Impossible de se connecter à la base de données \"%(database)s\"." +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." +msgstr "" +"Une liste de colonnes séparées par des virgules qui devraient être " +"parsées comme des dates." -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "Impossible de déterminer le type de source de données" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Caractère à interpréter comme un point décimal." -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Impossible de récupérer tous les graphiques sauvegardés" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Ecrire l'index du tableau de données en colonne." -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "Impossible de trouver l'objet viz" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." +msgstr "" +"Label de colonne pour l'index de colonne(s). Si aucun label est donné et " +"que l'index du tableau de données est Vrai, alors les noms d'Index sont " +"utilisés." -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Le driver de la base de données n'a pas pu être chargé" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Valeurs NULL" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "Impossible de charger le driver de base de donnée: %(driver_name)s" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" +"Json liste de valeur à traiter comme NULL. Examples: [\"\"], [\"None\", " +"\"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte " +"qu'une seule valeur. Use [\"\"] for empty string." -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Ce driver de la base de données n'a pas pu être chargé : {}" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "Nom de la table à créer à partir des données en colonne." -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "Fichier en colonnes" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -#, fuzzy -msgid "Count" -msgstr "colonne" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "Sélectionner un fichier en colonne à téléverser dans une base de données." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -#, fuzzy -msgid "Count Unique Values" -msgstr "Trier les valeurs de filtre" +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "Utilise Columns" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" +"Liste json des noms de colonnes qui devraient être lues. Si différent de " +"None, uniquement ces colonnes seront lues depuis le fichier." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Bases de données" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" -msgstr "" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Afficher la base de données" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -#, fuzzy -msgid "Country" -msgstr "Carte de pays" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Ajouter une base de données" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -#, fuzzy -msgid "Country Color Scheme" -msgstr "Sélectionner un schéma de couleurs" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Éditer la base de données" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -#, fuzzy -msgid "Country Column" -msgstr "Ma colonne" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Expose cette BDD dans SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" +"Faire fonctionner la base de données en mode asynchrone, c'est-à-dire que" +" les requêtes sont exécutées dans un processus distant au lieu de les " +"exécuter sur le serveur Web lui-même. Cela suppose que vous avez " +"configuré un processus Celery ainsi qu'un backend de résultats. Se " +"référer aux docs d'installation pour plus d'informations." -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Carte de pays" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Autorise l'option CREATE TABLE AS dans SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "Créer" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Autorise l'option CREATE VIEW AS dans SQL Lab" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "Enregistrer un graphique" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "" +"Autorise les utilisateurs à lancer des expression non-SELECT (UPDATE, " +"DELETE, CREATE, etc.) dans SQL Lab" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" -msgstr "créer un " +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" +msgstr "" +"Quand l'option autoriser CREATE TABLE AS dans SQL Lab est cochée, force " +"la table a être créée dans le schéma" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Si Presto, toutes les requêtes dans SQL Lab sont en cours d'exécution " +"sous le compte de l'utilisateur actuellement connecté qui doit avoir les " +"premissions requises.
Si Hive et hive.server2.enable.doAs sont " +"activés, les requêtes seront exécutées sous le compte du service, mais " +"impersonnifiant l'utilisateur actuellement connecté via la propriété " +"hive.server2.proxy.user." + +#: superset/views/database/mixins.py:172 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" +"Durée (en secondes) du timeout de cache pour les graphiques cette base de" +" données. Un timeout de 0 indique que le cache n'expire jamais. Noter que" +" s'il n'est pas défini, c'est le timeout global qui est pris en compte." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Créer un nouveau graphique" - -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -#, fuzzy -msgid "Create chart" -msgstr "Enregistrer un graphique" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" +"Si sélectionné, veuillez indiquer les schémas permis pour le " +"téléversement csv dans Extra." -#: superset-frontend/src/features/home/RightMenu.tsx:178 -#, fuzzy -msgid "Create dataset" -msgstr "Changer de jeu de données" - -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -#, fuzzy -msgid "Create dataset and create chart" -msgstr "Créer un nouveau graphique" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Exposer dans SQL Lab" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Créer un nouveau graphique" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Autoriser CREATE TABLE AS" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "Créer un nouvel ensemble de filtre" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Autoriser CREATE VIEW AS" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "Créer ou sélectionner schéma ..." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Autoriser DML" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Créé le" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Schéma CTAS" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Créé le" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "URI SQLAlchemy" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Créé par" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Timeout du cahce du graphique" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -#, fuzzy -msgid "Created by me" -msgstr "Créé par" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Sécurité" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Contenu créé" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Certificat racine" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Créé le" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Exécution asynchrone" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -#, fuzzy -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "L'import du graphique a échoué pour une raison inconnue" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Impersonnaliser la connexion de l'utilisateur" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Créer une source de données et ouvrir un nouvel onglet" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Autoriser le téléversement CSV" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Créateur" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Backend" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -#, fuzzy -msgid "Crimson" -msgstr "Action" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Champ supplémentaire ne peut pas être décodé par JSON. %(msg)s" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." -msgstr "Le filtre va être appliqué à tous les graphiques qui utilise cet ensemble de données" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" +msgstr "" +"Chaîne de connexion invalide, une chaîne valide a généralement cette " +"forme : DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -#, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Pas de filtre dans ce tableau de bord." +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "Configuration de CSV vers base de données" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Pas de filtre dans ce tableau de bord." +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." +msgstr "" +"La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est" +" pas autorisée pour les téléversements csv. Contactez votre " +"administrateur Superset." -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "Portée du filtre croisé" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Impossible de téléverser le fichier CSV \"%(filename)s\" dans la table " +"\"%(table_name)s\" de la base de données \"%(db_name)s\". Message " +"d'erreur : %(error_msg)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -#, fuzzy -msgid "Cross-filters" -msgstr "Portée du filtre croisé" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" +msgstr "" +"Fichier CSV \"%(csv_filename)s\" chargé dans la table \"%(table_name)s\" " +"de la base de données \"%(db_name)s\"" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -#, fuzzy -msgid "Cumulative" -msgstr "Actif" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Configuration de Excel vers base de données" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#: superset/views/database/views.py:319 #, python-format -msgid "Currently rendered: %s" +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" +"La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est" +" pas autorisée pour les téléversements Excel. Contactez votre " +"administrateur Superset." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" -msgstr "Personnalisée" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Impossible de charger le fichier Excel \"%(filename)s\" dans la table " +"\"%(table_name)s\" de la base de données \"%(db_name)s\". Message " +"d'erreur : %(error_msg)s" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Plugin custom" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Fichier CSV \"%(excel_filename)s\" chargé dans la table " +"\"%(table_name)s\" de la base de données \"%(db_name)s\"" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Plugins custom" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "Configuration des colonnes vers la base de données" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "SQL personnalisé" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." +msgstr "" +"De multiples extensions de fichier ne sont pas autorisées pour les " +"téléversements en colonne. Merci de vous assurer que tous les fichiers " +"ont la même extension." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -"Les métriques ad-hoc pour le SQL personnalisé ne sont pas disponibles " -"pour ce dataset" +"La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est" +" pas autorisée pour les téléversements en colonne. Contactez votre " +"administrateur Superset." -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" +"Impossible de charger le fichier en colonnes \"%(filename)s\" dans la " +"table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message " +"d'erreur : %(error_msg)s" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" +"Fichier en colonne \"%(columnar_filename)s\" chargé dans la table " +"\"%(table_name)s\" de la base de données \"%(db_name)s\"" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "Personnaliser" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "Il manque un champ de donnée dans la requête." + +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "Nom(s) de colonne dupliqué: %(columns)s" + +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Logs" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -#, fuzzy -msgid "Customize Metrics" -msgstr "Personnaliser" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Afficher le log" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -#, fuzzy -msgid "Customize columns" -msgstr "Pas de colonne temporelle" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Ajouter un log" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" -msgstr "" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Éditer le log" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "Format D3" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Utilisateur" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "Format D3" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Action" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" -msgstr "" +#: superset/views/sql_lab/views.py:93 +#, fuzzy +msgid "Untitled Query" +msgstr "Requête sans titre" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +#, fuzzy +msgid "Time Range" +msgstr "Intervalle de Temps" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 #, fuzzy -msgid "DATETIME" -msgstr "Date/Heure" +msgid "Time Column" +msgstr "Colonne de temps" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +#, fuzzy +msgid "Time Grain" +msgstr "Granularité de Temps" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +#, fuzzy +msgid "Time Granularity" +msgstr "Granularité de Temps" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "EFFACER" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Temps" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "Une référence à la configuration [Time] prends la granularité en compte" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +#, fuzzy +msgid "Aggregate" +msgstr "agrégat" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy -msgid "Dark" -msgstr "Trimestre" +msgid "Category name" +msgstr "Nom de la requête" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#, fuzzy +msgid "Total value" +msgstr "Valeurs NULL" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +#, fuzzy +msgid "Minimum value" +msgstr "Valeurs NULL" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Tableau de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +#, fuzzy +msgid "Maximum value" +msgstr "Valeurs NULL" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, fuzzy, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "Valeur cible" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "Certifié par %s" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "Le tableau de bord n'a pas pu être créé." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "description" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "Le tableau de bord n'a pas pu être supprimé." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "boulon" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "Le tableau de bord n'a pas pu être mis à jour." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "La modification de ce contrôle prendra effet immédiatement" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "Le tableau de bord n'existe pas" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "Expression SQL" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Dashboard imported" -msgstr "Propriétés du tableau de bord" +msgid "Column datatype" +msgstr "Nom(s) de colonne " -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Les paramètres du tableau de bord sont invalides." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +#, fuzzy +msgid "Column name" +msgstr "Nom(s) de colonne " -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Propriétés du tableau de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Label" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 #, fuzzy -msgid "Dashboard properties updated" -msgstr "Propriétés du tableau de bord" +msgid "Metric name" +msgstr "Nom de la requête" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 #, fuzzy -msgid "Dashboard scheme" -msgstr "[nom du tableau de bord]" +msgid "unknown type icon" +msgstr "Erreur inconnue" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "tableau de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "tableaux de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Tableaux de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -#, fuzzy -msgid "Dashboards added to" -msgstr "tableaux de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "Les tableaux de bord n'ont pas pu être supprimés." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Analyses avancées" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Les tableaux de bord n'existent pas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"Cette section contient les options permettant un post traitement " +"analytique avancé des résultats de requêtes" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -#, fuzzy -msgid "Dashed" -msgstr "tableau de bord" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Fenêtre glissante" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Fonction de fenêtre glissante" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -#, fuzzy -msgid "Data Table" -msgstr "Éditer la table" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Aucun" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" +"Définit une fonction de fenêtre glissante à appliquer, fonctionne avec le" +" champ texte [Périodes]" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Périodes" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -"Impossible de désérialiser la donnée. Le format de stockage peut avoir " -"changé. Rejouez la requête originale." +"Définit la taille de la fonction de fenêtre glissante, par rapport à la " +"granularité temporelle sélectionnée" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Périodes min" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -"Impossible de récupérer les données depuis le backend. Rejouez la requête" -" originale." +"Le nombre minimum de périodes glissantes requis pour afficher une valeur." +" Par exemple, si vous faites un somme cumulée sur 7 jours, vous souhaitez" +" peut être que votre \"Min Période\" soit égale à 7, de sorte que tous " +"les points de données affichés correspondent au total des 7 périodes. " +"Ceci cachera la \"montée en puissance\" qui aura lieu au cours des 7 " +"périodes" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Comparaison de temps" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Prévisualiser les données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Décalage temporel" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" -msgstr "Données rafraîchies" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "Il y a 1 jour" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Type de donnée" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "Il y a 1 semaine" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "DataFrame doit comprendre au moins une série" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "Dataframe doit inclure une colonne temporelle" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +#, fuzzy +msgid "30 days ago" +msgstr "30 jours" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Base de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "Il y a 1 an" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -"La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est" -" pas autorisée pour les téléversements en colonne. Contactez votre " -"administrateur Superset." -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "Il y a 2 ans" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -"La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est" -" pas autorisée pour les téléversements csv. Contactez votre " -"administrateur Superset." -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "Il y a 3 ans" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -"La base de données \"%(database_name)s\" schéma \"%(schema_name)s\" n'est" -" pas autorisée pour les téléversements Excel. Contactez votre " -"administrateur Superset." +"Superposer une ou plusieurs séries temporelles d'une période relative. " +"Attend des écarts temporels relatifs en langage naturel en anglais " +"(exemple : 24 hours, 7 days, 52 weeks, 365 days). Le texte libre est " +"supporté." -#: superset/initialization/__init__.py:243 -#, fuzzy -msgid "Database Connections" -msgstr "Tester la connexion" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Choisir un type de calcul" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 #, fuzzy -msgid "Database Creation Error" -msgstr "Erreur de base de données" - -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "URL de la base de données" +msgid "Actual values" +msgstr "Valeurs NULL" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 #, fuzzy -msgid "Database connected" -msgstr "La base de données n'a pas pu être créée." - -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "La base de données n'a pas pu être créée." - -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "La base de données n'a pas pu être supprimée." - -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "La base de données n'a pas pu être mise à jour." - -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." -msgstr "La base de données ne permet pas la manipulation de données." +msgid "Difference" +msgstr "Cliquer pour voir la différence" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "La base de données n'existe pas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +#, fuzzy +msgid "Percentage change" +msgstr "Pourcentages" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "La base de données n'autorise pas les sous-requêtes" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +#, fuzzy +msgid "Ratio" +msgstr "Durée" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" +"Comment afficher des décalages temporels : comme des lignes individuelles" +" ; comme la différence entre les séries temporelles principales et chaque" +" décalage temporel ; comme le pourcentage de changement; ou comme le " +"ratio entre les séries et les décalages temporels." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Erreur de base de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +#, fuzzy +msgid "Resample" +msgstr "Voir exemples" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." -msgstr "La base de données est hors-ligne." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Règle" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "Une base de données est requise pour les alertes" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Nom de la base de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +#, fuzzy +msgid "1 hourly frequency" +msgstr "Fréquence de rafraichissement" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "La base de données ne peut pas être changée" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "Base de donnée non trouvée." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "" -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "Identifiant de source de données non trouvé : %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Les paramètres de base de données sont invalides." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 #, fuzzy -msgid "Database passwords" -msgstr "Port de la base de données" - -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "Port de la base de données" +msgid "1 year start frequency" +msgstr "Fréquence de rafraichissement" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 #, fuzzy -msgid "Database settings updated" -msgstr "La base de données n'a pas pu être mise à jour." - -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Bases de données" +msgid "1 year end frequency" +msgstr "Fréquence de rafraichissement" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Index du tableau de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Règle de ré-échantillonnage Pandas" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Jeu de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +#, fuzzy +msgid "Fill method" +msgstr "Méthode de livraison" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "Le jeu de données %(name)s existe déjà" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +#, fuzzy +msgid "Null imputation" +msgstr "annotation" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 #, fuzzy -msgid "Dataset Name" -msgstr "Nom du jeu de donnée" +msgid "Zero imputation" +msgstr "description" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "La suppression de la colonne du jeu de données a échoué." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "Colonne du jeu de données introuvable." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#, fuzzy +msgid "Forward values" +msgstr "Valeur cible" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "Le jeu de données n'a pas pu être créé." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +#, fuzzy +msgid "Backward values" +msgstr "Valeur cible" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "Le jeu de données n'a pas pu être supprimé." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +#, fuzzy +msgid "Median values" +msgstr "Valeurs émises" -#: superset/datasets/commands/exceptions.py:210 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 #, fuzzy -msgid "Dataset could not be duplicated." -msgstr "Le jeu de données n'a pas pu être mis à jour." +msgid "Mean values" +msgstr "Valeurs émises" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "Le jeu de données n'a pas pu être mis à jour." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +#, fuzzy +msgid "Sum values" +msgstr "Valeurs NULL" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Le jeu de données n'existe pas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Méthode de ré-échantillonnage Pandas" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 #, fuzzy -msgid "Dataset imported" -msgstr "Port de la base de données" +msgid "Annotations and Layers" +msgstr "Annotations et couches" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "Un jeu de données est obligatoire" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +#, fuzzy +msgid "Left" +msgstr "alerte" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "La suppression de la métrique du jeu de données a échoué." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +#, fuzzy +msgid "Top" +msgstr "Arrêt" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "Métrique du jeu de données non trouvée." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +#, fuzzy +msgid "Chart Title" +msgstr "Onglet titre" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Nom du jeu de donnée" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "Axe X" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "Les paramètres du jeu de données sont invalides." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +#, fuzzy +msgid "X Axis Title" +msgstr "Onglet titre" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "Les jeux de données n'ont pas pu être supprimés par lot." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Axe Y" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Jeux de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +#, fuzzy +msgid "Y Axis Title" +msgstr "Onglet titre" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" -msgstr "Les jeux de données ne comportent pas de colonne temporelle" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Source de données" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 #, fuzzy -msgid "Datasource & Chart Type" -msgstr "Choisissez un type de graphique" +msgid "Y Axis Title Position" +msgstr "dernière partition :" -#: superset/commands/exceptions.py:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Requête" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 #, fuzzy -msgid "Datasource does not exist" -msgstr "Le jeu de données n'existe pas" +msgid "Predictive Analytics" +msgstr "Analyses avancées" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "Le type de source de données est requis quand datasource_id est spécifié" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 #, fuzzy -msgid "Date Time Format" -msgstr "Format Datetime" +msgid "Forecast periods" +msgstr "Période relative" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Filtre de date" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 #, fuzzy -msgid "Date format" -msgstr "Format Date" +msgid "Confidence interval" +msgstr "Intervalle d'actualisation" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 #, fuzzy -msgid "Date format string" -msgstr "Formatage adapté" +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "L'intervalle de confiance doit être entre 0 et 1 (exclusif)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Date/Heure" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Format Datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +#, fuzzy +msgid "default" +msgstr "Par défaut" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Oui" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Non" -#: superset/models/helpers.py:1502 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -"Colonne Datetime non fournie dans la configuration alors qu'elle est " -"requise pour ce type de graphique" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Format Datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "" -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "Jour" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "Jours %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "La base de données n'a pas retourné toutes les colonnes demandées" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Attributs de formulaire liés au temps" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 #, fuzzy -msgid "Deactivate" -msgstr "Actif" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "Décembre" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "" +msgid "Datasource & Chart Type" +msgstr "Choisissez un type de graphique" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "ID Graphique" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "Caractère décimal" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "L'identifiant du graphique actif" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - Grille 3D" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Timeout du cache (secondes)" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "Le nombre de secondes avant l'expiration du cache" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - Arc" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +#, fuzzy +msgid "URL Parameters" +msgstr "Paramètres URL" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +#, fuzzy +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" -#: superset/viz.py:2848 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Deck.gl - Chemins" +msgid "Extra Parameters" +msgstr "Les paramètres du modèle" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - Couches Multiples" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +#, fuzzy +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" +msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "Deck.gl - Chemins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +#, fuzzy +msgid "Color Scheme" +msgstr "Jeu de couleur" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - Polygone" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#, fuzzy +msgid "Contribution Mode" +msgstr "Contribution" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - Nuage de points" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Ligne" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - Grille d'écran" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Séries" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Par défaut" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +#, fuzzy +msgid "Calculate contribution per series or row" +msgstr "Calculer la contribution au total" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Endpoint par défaut" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "URL par défaut" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -"URL par défaut vers laquelle rediriger quand on accède depuisla page qui " -"liste les jeux de données" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "Valeur par défaut" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +#, fuzzy +msgid "Y-Axis Sort Ascending" +msgstr "Tri croissant" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 #, fuzzy -msgid "Default datetime" -msgstr "Valeur par défaut" +msgid "X-Axis Sort Ascending" +msgstr "Tri croissant" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 #, fuzzy -msgid "Default latitude" -msgstr "Valeur par défaut" +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Trier par ordre décroissant ou croissant" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 #, fuzzy -msgid "Default longitude" -msgstr "Valeur par défaut" +msgid "Force categorical" +msgstr "Catégorie" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" -msgstr "Une valeur par défaut est obligatoire" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +#, fuzzy +msgid "Dimensions" +msgstr "Est une Dimension" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +#, fuzzy +msgid "Dimension" +msgstr "Est une Dimension" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" +"Définit le regroupement d'entités. Chaque série est représentée par une " +"couleur spécifique sur le graphique et masquée/affichée en cliquant sur " +"sa légende" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Entité" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Ceci définit l'élément à tracer sur le graphique" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filtres" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -"Définit une fonction de fenêtre glissante à appliquer, fonctionne avec le" -" champ texte [Périodes]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +#, fuzzy +msgid "Right Axis Metric" +msgstr "Mesure de l'axe de droite" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +#, fuzzy +msgid "Select a metric to display on the right axis" +msgstr "Choisir une mesure pour l'axe de droite" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Trier par" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +#, fuzzy +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." msgstr "" +"Métrique utilisée pour définir comment les séries principales sont triées" +" si une limite de série ou de ligne est définie. Si indéfini, la première" +" métrique sera utilisée (si approprié)." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +#, fuzzy +msgid "Bubble Size" +msgstr "Taille de la bulle" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -"Définit le regroupement d'entités. Chaque série est représentée par une " -"couleur spécifique sur le graphique et masquée/affichée en cliquant sur " -"sa légende" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -"Définit la taille de la fonction de fenêtre glissante, par rapport à la " -"granularité temporelle sélectionnée" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +#, fuzzy +msgid "Color Metric" +msgstr "Métrique de couleur" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Une métrique à utiliser par couleur" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" +"La colonne temps pour la visualisation. Notez que vous pouvez définir " +"arbitrairement l'expression que retourne la colonne DATETIME dans la " +"table. Aussi noter que le filtre ci-dessous est appliqué à cette colonne " +"ou expression" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Effacer" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "Effacer %s ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +#, fuzzy +msgid "Drop a temporal column here or click" +msgstr "Supprimer une colonne ici ou cliquer" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Supprimer l'annotation ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +#, fuzzy +msgid "Y-axis" +msgstr "Axe Y" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Supprimer la base de données ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "Supprimer le jeu de données ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +#, fuzzy +msgid "X-axis" +msgstr "Axe Y" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Effacer couche ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Supprimer la requête ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Le type de visualisation à afficher" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" -msgstr "Supprimer le rapport ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +#, fuzzy +msgid "Fixed Color" +msgstr "Couleur fixe" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Supprimer template ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "Utiliser ceci pour définir une couleur statique pour tous les cercles" -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "Vraiment tout effacer ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +#, fuzzy +msgid "Linear Color Scheme" +msgstr "Schéma de couleurs linéaire" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Supprimer annotation" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "Tous" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Supprimer l'onglet du tableau de bord ?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +#, fuzzy +msgid "5 seconds" +msgstr "5 secondes" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Supprimer une base de données" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 secondes" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" -msgstr "Supprimer le rapport par e-mail" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 minute" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Effacer la requête" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 minutes" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Supprimer un template" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 minutes" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "Supprimez ce conteneur et sauvegardez pour supprimer ce message." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 heure" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 #, fuzzy -msgid "Deleted" -msgstr "effacer" +msgid "1 day" +msgstr "jour" -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "%(num)d annotation supprimée" -msgstr[1] "%(num)d annotations supprimées" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +#, fuzzy +msgid "7 days" +msgstr "90 jours" -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "%(num)d couche d'annotations supprimée" -msgstr[1] "%(num)d couches d'annotations supprimées" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "semaine" -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "%(num)d graphique supprimé" -msgstr[1] "%(num)d graphiques supprimés" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +#, fuzzy +msgid "week starting Sunday" +msgstr "Semaine débutant le dimanche" -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "Template css %(num)d supprimé" -msgstr[1] "Templates css %(num)d supprimés" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +#, fuzzy +msgid "week ending Saturday" +msgstr "Semaine terminant le samedi" -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "%(num)d tableau de bord supprimé" -msgstr[1] "%(num)d tableaux de bord supprimés" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "mois" -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "%(num)d jeu de données supprimé" -msgstr[1] "%(num)d jeux de données supprimés" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +#, fuzzy +msgid "quarter" +msgstr "Trimestre" -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "%(num)d planification de rapport supprimée" -msgstr[1] "%(num)d planifications de rapport supprimées" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "année" -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "%(num)d graphique supprimé" -msgstr[1] "%(num)d graphiques supprimés" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "" +"La granularité temporelle pour la visualisation. Noter que vous pouvez " +"taper etu tiliser le langage naturel comme `10 seconds`, `1 day` ou `56 " +"weeks`" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "%(num)d requête sauvegardée supprimée" -msgstr[1] "%(num)d requêtes sauvegardées supprimées" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Supprimé : %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Supprimé : %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Nombre de lignes max" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "Une seule colonne long & lat délimité" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +#, fuzzy +msgid "Sort Descending" +msgstr "Tri décroissant" -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "Délimiteur" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "Méthode de livraison" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Nombre de séries max" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" +"Limite le nombre de séries affichées. Une sous-requête associée (ou une " +"phase supplémentaire dans laquelle les sous-requêtes ne sont pas prises " +"en charge) est appliquée pour limiter le nombre de séries qui sont " +"récupérées et affichées. Cette fonctionnalité est utile lors du " +"regroupement par colonne(s) de cardinalité(s) élevée(s) bien que cela " +"augmente la complexité et le coût de la requête." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -#, fuzzy -msgid "Density" -msgstr "Entité" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" -msgstr "Dépend de" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Format de l'axe Y" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "Deprecated" -msgstr "Créé le" +msgid "Currency format" +msgstr "Format d'e-mail" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Description" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +#, fuzzy +msgid "Time format" +msgstr "Format Datetime" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "Description (cela peut être vu dans la liste)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "Le jeu de couleur pour le rendu graphique" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" -msgstr "Colonnes de description" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +#, fuzzy +msgid "Truncate Metric" +msgstr "Trier les métriques" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +#, fuzzy +msgid "Whether to truncate metrics" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "Tout Dé-Sélectionner" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +#, fuzzy +msgid "Show empty columns" +msgstr "Afficher la colonne temps" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "Détails de la certification" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -"Indique si ce tableau de bord est visible dans la liste des tableaux de " -"bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 #, fuzzy -msgid "Diamond" -msgstr "et" +msgid "Adaptive formatting" +msgstr "Formatage adapté" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Vouliez-vous dire :" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Valeur d'origine" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -#, fuzzy -msgid "Difference" -msgstr "Cliquer pour voir la différence" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "Durée en ms (66000 => 1m 6s)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -#, fuzzy -msgid "Dim Gray" -msgstr "Granularité de Temps" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" + +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 #, fuzzy -msgid "Dimension" -msgstr "Est une Dimension" +msgid "Oops! An error occurred!" +msgstr "Un erreur s'est produite" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 #, fuzzy -msgid "Dimensions" -msgstr "Est une Dimension" - -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Graphe orienté" +msgid "No Results" +msgstr "Visualiser les résultats" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy -msgid "Directional" -msgstr "description" +msgid "ERROR" +msgstr "Opérateur" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -#, fuzzy -msgid "Disabled" -msgstr "Éditer la table" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -#, fuzzy -msgid "Discard" -msgstr "tableau de bord" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 #, fuzzy -msgid "Discrete" -msgstr "a été créé" +msgid "cannot be empty" +msgstr "La liste de valeurs du filtre ne peut pas être vide" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "Nom affiché" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +#, fuzzy +msgid "Domain" +msgstr "Comparaison" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "heure" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "Configuration d'affichage" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "jour" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 #, fuzzy -msgid "Display settings" -msgstr "Paramètres de planification" +msgid "min" +msgstr "dans" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 #, fuzzy -msgid "Distribute across" -msgstr "Estimer le coût" +msgid "Chart Options" +msgstr "Option comparateur" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 #, fuzzy -msgid "Distribution" -msgstr "Contribution" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Distibution - histogramme" +msgid "Cell Size" +msgstr "Fichier Excel" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "Diviseur" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" -msgstr "Documentation" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#, fuzzy -msgid "Domain" -msgstr "Comparaison" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -#, fuzzy -msgid "Donut" -msgstr "mois" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy -msgid "Dotted" -msgstr "Édité" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" -msgstr "Télécharger" +msgid "Color Steps" +msgstr "Jeu de couleur" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "Télécharger comme image" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "Télécharger en CSV" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#, fuzzy +msgid "Time Format" +msgstr "Format Datetime" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "Brouillon" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +#, fuzzy +msgid "Legend" +msgstr "Modifié" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "Glissez/Déposez des composants et des graphiques sur le tableau de bord" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 #, fuzzy -msgid "Drag and drop components to this tab" -msgstr "Il n'y a pas de composant à ajouter dans cet onglet" +msgid "Show Values" +msgstr "Afficher les tables" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#, fuzzy +msgid "Show Metric Names" +msgstr "Afficher la métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +#, fuzzy +msgid "Number Format" +msgstr "Format D3" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +#, fuzzy +msgid "Correlation" +msgstr "Durée" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "Comparaison" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" -msgstr "Trier par %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +#, fuzzy +msgid "Intensity" +msgstr "Entité" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +#, fuzzy +msgid "Pattern" +msgstr "Mettre à jour" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +#, fuzzy +msgid "Report" +msgstr "rapport" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Tendance" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 #, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "Supprimer une colonne ici ou cliquer" -msgstr[1] "" +msgid "Sort by metric" +msgstr "Trier les métriques" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 #, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "Supprimer une colonne/métrique ici ou cliquer" -msgstr[1] "" +msgid "Number format" +msgstr "Format D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 #, fuzzy -msgid "Drop a temporal column here or click" -msgstr "Supprimer une colonne ici ou cliquer" +msgid "Choose a number format" +msgstr "Choisir une mesure pour l'axe de droite" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" -msgstr "Supprimer des colonnes/métriques ici ou cliquer" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Source" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 #, fuzzy -msgid "Dual Line Chart" -msgstr "Points" +msgid "Choose a source" +msgstr "Choisissez un jeu de donnée" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 #, fuzzy -msgid "Duplicate" -msgstr "Dupliquer l'onglet" +msgid "Target" +msgstr "Date de début" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "Nom(s) de colonne dupliqué: %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +#, fuzzy +msgid "Choose a target" +msgstr "Choisissez un jeu de donnée" -#: superset/common/query_object.py:291 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +#, fuzzy +msgid "Flow" +msgstr "jaune" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -"Doublons de libellés colonne/métrique : %(labels)s. Veuillez vous assurer" -" que toutes les colonnes et métriques ont des libellés uniques." -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -#, fuzzy -msgid "Duplicate dataset" -msgstr "Éditer le jeu de données" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Dupliquer l'onglet" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "Legacy" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +#, fuzzy +msgid "Relational" msgstr "Durée" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 #, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +msgid "Country" +msgstr "Carte de pays" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -"Durée (en secondes) du timeout de cache pour les graphiques cette base de" -" données. Un timeout de 0 indique que le cache n'expire jamais. Noter que" -" s'il n'est pas défini, c'est le timeout global qui est pris en compte." -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -"Durée (en secondes) du timeout de cache pour les graphiques cette base de" -" données. Un timeout de 0 indique que le cache n'expire jamais. Noter que" -" s'il n'est pas défini, c'est le timeout global qui est pris en compte." -#: superset/views/chart/mixin.py:69 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "Durée (en seconds) du délai de mise en cache pour ce graphique." +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." +msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 #, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "" -"Durée (en secondes) du timeout du cache pour ce graphique. Notez que " -"c'est par défaut le timeout du jeu de données si indéfinie." +msgid "Metric to display bottom title" +msgstr "Choisissez une métrique à afficher" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." -msgstr "" -"Durée (en secondes) du timeout du cache pour cette table. Un timeout à 0 " -"indique que le cache n'expire jamais. Notez que le timeout de la base de " -"données par défaut est undefined." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +#, fuzzy +msgid "Map" +msgstr "Carte proportionnelle" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -"Durée (en seconds) du délai de mise en cache pour les schémas de base de " -"données. Si vide, le cache n'expire jamais." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -"Durée (en secondes) du délai de mise en cache pour les métadonnées des " -"tables de cette base de données. Si vide, le cache n'expire jamais. " -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 #, fuzzy -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "Durée en ms (66000 => 1m 6s)" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "Durée : %s" +msgid "Range" +msgstr "Gestion" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 #, fuzzy -msgid "Dynamic Aggregation Function" -msgstr "Fonctions Python" +msgid "Stacked" +msgstr "Backend" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "Charge dynamiquement les valeurs du filtre" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" -msgstr "EGraphiques" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "" -#: superset/reports/notifications/email.py:133 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 #, fuzzy -msgid "EMAIL_REPORTS_CTA" -msgstr "Rapports par e-mail actifs" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "FIN (EXCLUSIVE)" +msgid "Event Names" +msgstr "Nom de la feuille" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 #, fuzzy -msgid "ERROR" -msgstr "Opérateur" +msgid "Columns to display" +msgstr "Choisissez une métrique à afficher" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 #, fuzzy -msgid "Edge width" -msgstr "L'épaisseur de la ligne" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Éditer" +msgid "Additional metadata" +msgstr "Paramètres supplémentaires" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 #, fuzzy -msgid "Edit Alert" -msgstr "Éditer la table" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "Modifier le CSS" - -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Modifier le Template CSS" +msgid "Metadata" +msgstr "méta-données JSON " -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "Modifier les propriétés du template CSS" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" +msgstr "" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Modifier le graphique" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +#, fuzzy +msgid "Entity ID" +msgstr "Entité" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 #, fuzzy -msgid "Edit Chart Properties" -msgstr "Modifier les propriétés du graphique" +msgid "e.g., a \"user id\" column" +msgstr "Colonnes des séries temporelles" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Éditer une colonne" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Éditer le tableau de bord" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Éditer la base de données" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Éditer le jeu de données " +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +#, fuzzy +msgid "Event Flow" +msgstr "Flot d'événements" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Éditer le log" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Éditer la métrique" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +#, fuzzy +msgid "Axis ascending" +msgstr "Tri croissant" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Éditer le plugin" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +#, fuzzy +msgid "Axis descending" +msgstr "Tri décroissant" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 #, fuzzy -msgid "Edit Report" -msgstr "Modifier le rapport par e-mail" +msgid "Metric ascending" +msgstr "Tri croissant" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 #, fuzzy -msgid "Edit Rule" -msgstr "mode edition" +msgid "Metric descending" +msgstr "Tri décroissant" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Éditer la requête sauvegardée" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Éditer la table" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +#, fuzzy +msgid "XScale Interval" +msgstr "Intervalle d'actualisation" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Modifier annotation" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Modifier une couche d'annotations" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +#, fuzzy +msgid "YScale Interval" +msgstr "Intervalle d'actualisation" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Couches d'annotation" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 #, fuzzy -msgid "Edit chart" -msgstr "Modifier le graphique" +msgid "Rendering" +msgstr "Avertissement" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Modifier les propriétés du graphique" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "Éditer le tableau de bord" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Éditer la base de données" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Éditer le jeu de données" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" -msgstr "Modifier le rapport par e-mail" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +#, fuzzy +msgid "heatmap" +msgstr "Carte de chaleur" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" -msgstr "Modifier un formateur" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Modifier les propriétés" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Modifier la requête" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Modifier un template" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Modifier les paramètres du modèle" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -msgid "Edit the dashboard" -msgstr "Modifier le tableau de bord" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "Modifier intervalle de temps" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Édité" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +#, fuzzy +msgid "auto" +msgstr "à" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Édition d'un filtre :" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "Modifier l'ensemble de filtre :" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Base de données inexistante ou nom incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "L'utilisateur \"%(username)s\" ou le mot de passe est incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -"Soit l'utilisateur \"%(username)s\", le mot de passe, ou le nom de la " -"base de données \"%(database)s\" est incorrect." - -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." -msgstr "Le nom d'utilisateur ou le mot de passe est incorrect." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -#, fuzzy -msgid "Elevation" -msgstr "Durée" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" -msgstr "Rapports par e-mail actifs" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 #, fuzzy -msgid "Embed" -msgstr "Novembre" +msgid "Show percentage" +msgstr "Pourcentages" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #, fuzzy -msgid "Embed code" -msgstr "mode edition" +msgid "Whether to include the percentage in the tooltip" +msgstr "S'il faut inclure un filtre de temps" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -#, fuzzy -msgid "Embed dashboard" -msgstr "Sauvegarder le Tableau de Bord" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 #, fuzzy -msgid "Emit Filter Events" -msgstr "Trier les valeurs de filtre" +msgid "Value Format" +msgstr "Format d'e-mail" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 msgid "Employment and education" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +#, fuzzy +msgid "Density" +msgstr "Entité" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "Collection vide" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +#, fuzzy +msgid "Predictive" +msgstr "Actif" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 #, fuzzy -msgid "Empty column" -msgstr "Ma colonne" +msgid "Single Metric" +msgstr "Filtres par métrique" -#: superset/charts/data/api.py:366 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 #, fuzzy -msgid "Empty query result" -msgstr "Requête vide ?" +msgid "to" +msgstr "Arrêt" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Requête vide ?" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +#, fuzzy +msgid "count" +msgstr "colonne" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#, fuzzy +msgid "cumulative" +msgstr "Actif" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 #, fuzzy -msgid "Enable 'Allow file uploads to database' in any database's settings" +msgid "No of Bins" +msgstr "Copie de %s" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -"Activez l'option 'Autoriser le chargement de données' dans les paramètres" -" de la base de données" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Activer le filtre de sélection" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 #, fuzzy -msgid "Enable cross-filtering" -msgstr "Portée du filtre croisé" +msgid "Cumulative" +msgstr "Actif" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +#, fuzzy +msgid "Distribution" +msgstr "Contribution" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Contribution" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Calculer la contribution au total" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +#, fuzzy +msgid "Series Height" +msgstr "Nombre de séries max" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +#, fuzzy +msgid "series" +msgstr "Séries" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "Activer l'estimation du coût de la requête" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +#, fuzzy +msgid "overall" +msgstr "Effacer tout" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "Gestion" -#: superset/viz.py:2514 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -"Entrée spatiale NULL rencontrée, " -"veuillez les filtrer" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "Date de fin" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 #, fuzzy -msgid "End (Longitude, Latitude): " -msgstr "Invalide Longitude/Latitude" +msgid "Horizon Chart" +msgstr "Histogrammes horizontaux" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 #, fuzzy -msgid "End Longitude & Latitude" -msgstr "Invalide Longitude/Latitude" +msgid "Purple" +msgstr "Règle" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Date de fin" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 #, fuzzy -msgid "End angle" -msgstr "Intervalle de Temps" +msgid "Dim Gray" +msgstr "Granularité de Temps" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 #, fuzzy -msgid "End date" -msgstr "Envoyer comme texte" +msgid "Crimson" +msgstr "Action" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "Date de fin exclue de l'intervalle de temps" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "Fréquence de rafraichissement" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "Date de début ne peut être postérieure à Date de fin" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "Le moteur \"%(engine)s\" ne peut pas être configuré via des paramètres." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" -msgstr "Les paramètres du moteur" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -"La spec moteur \"InvalidEngine\" ne supporte pas d'être configuré via " -"des paramètres individuels." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" -msgstr "Entrer CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -#, fuzzy -msgid "Enter Primary Credentials" -msgstr "Charger les informations de connexion" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "" -#: superset/views/database/forms.py:161 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 #, fuzzy -msgid "Enter a delimiter for this data" -msgstr "Entrée un nouveau titre pour l'onglet" +msgid "Points" +msgstr "Composants" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" -msgstr "Entrée un nom pour cette feuille" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Entrée un nouveau titre pour l'onglet" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" -msgstr "Entrer la durée en secondes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +#, fuzzy +msgid "Auto" +msgstr "à" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" -msgstr "Passer en plein écran" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Entité" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +#, fuzzy +msgid "Miles" +msgstr "Exemples" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 #, fuzzy -msgid "Entity ID" -msgstr "Entité" +msgid "Kilometers" +msgstr "Filtres" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 #, fuzzy -msgid "Error" -msgstr "Opérateur" - -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Erreur d'expression jinja dans la clause HAVING : %(msg)s" - -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Erreur dans l'expression jinja des filtres RLS : %(msg)s" +msgid "label" +msgstr "Label" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Erreur d'expression jinja dans la clause WHERE : %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -"Erreur dans l'expression jinja dans la réupération du prédicat des " -"valeurs : %(msg)s" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -"Erreur au chargement des source de données du graphique Les filtres " -"peuvent mal fonctionner." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "Message d'erreur" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +#, fuzzy +msgid "mean" +msgstr "Comparaison" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #, fuzzy -msgid "Error while fetching charts" -msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" +msgid "max" +msgstr "Max" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, fuzzy, python-format -msgid "Error while fetching data: %s" -msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" +msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Erreur durant le rendu de la requête du jeu de données virtuel : %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +#, fuzzy +msgid "var" +msgstr "Tabulaire" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset/views/core.py:839 -#, fuzzy -msgid "Error: permalink state not found" -msgstr "Etat du programme de rapport introuvable" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Estimer le coût" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Estimer le coût estimé de la requête sélectionnée" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "Estimer le coût avant d'exécuter une requête" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 #, fuzzy -msgid "Event" -msgstr "date" +msgid "Map Style" +msgstr "Type de balisage" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 #, fuzzy -msgid "Event Flow" -msgstr "Flot d'événements" +msgid "Streets" +msgstr "récents" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 #, fuzzy -msgid "Event Names" -msgstr "Nom de la feuille" +msgid "Dark" +msgstr "Trimestre" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +#, fuzzy +msgid "Light" +msgstr "Hauteur" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "Flot d'événements" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +#, fuzzy +msgid "Satellite" +msgstr "Filtre de date" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" -msgstr "Colonne temporelle de l’événement" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Chaque" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Opacité" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 #, fuzzy -msgid "Exact" -msgstr "Zone de texte" +msgid "RGB Color" +msgstr "Couleur fixe" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "Exemple" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Exemples" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +#, fuzzy +msgid "Viewport" +msgstr "rapport" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Fichier Excel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +#, fuzzy +msgid "Default longitude" +msgstr "Valeur par défaut" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -"Fichier CSV \"%(excel_filename)s\" chargé dans la table " -"\"%(table_name)s\" de la base de données \"%(db_name)s\"" - -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Configuration de Excel vers base de données" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 #, fuzzy -msgid "Exclude selected values" -msgstr "Limiter les valeurs" +msgid "Default latitude" +msgstr "Valeur par défaut" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" -msgstr "Lancer la requête SQL" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Lancer la requête sélectionnée" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "ID d'exécution" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "Log d'exécution" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 #, fuzzy -msgid "Existing dataset" -msgstr "Jeu de données manquant" +msgid "MapBox" +msgstr "Mapbox" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" -msgstr "Sortir du mode plein écran" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -#, fuzzy -msgid "Expand" -msgstr "et" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Développer tout" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -#, fuzzy -msgid "Expand row" -msgstr "Ligne d'en-tête" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -#, fuzzy -msgid "Expand table preview" -msgstr "Supprimer la Prévisualisation de la table" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Etendre la barre d'outil" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Explorer" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "Explorer - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "Tabulaire" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Explorer le résultat dans la vue d'exploration des données" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +#, fuzzy +msgid "Options" +msgstr "%s option(s)" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Exporter" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +#, fuzzy +msgid "Data Table" +msgstr "Éditer la table" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "Exporter les tableaux de bords ?" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "Exporter la requête" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" -msgstr "Exporter au format CSV" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" -msgstr "Exporter au format JSON" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +#, fuzzy +msgid "Ranking" +msgstr "Avertissement" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" -msgstr "Exporter vers Excel" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Exporter au format YAML" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +#, fuzzy +msgid "Coordinates" +msgstr "Coordonnées parallèles" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Exporter en YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +#, fuzzy +msgid "Directional" +msgstr "description" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 #, fuzzy -msgid "Export to full .CSV" -msgstr "Exporter en full CSV" +msgid "Time Series Options" +msgstr "Colonnes des séries temporelles" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +#, fuzzy +msgid "Not Time Series" +msgstr "Modifier intervalle de temps" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" -msgstr "Exposer la base de données dans SQL Lab" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Exposer dans SQL Lab" - -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Expose cette BDD dans SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#, fuzzy +msgid "Time Series" +msgstr "Colonnes des séries temporelles" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Expression" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +#, fuzzy +msgid "Aggregate Mean" +msgstr "agrégat" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 #, fuzzy -msgid "Extra Parameters" -msgstr "Les paramètres du modèle" +msgid "Aggregate Sum" +msgstr "agrégat" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -"Donnée complémentaire pour spécifier une métadonnée de la table. Les " -"métadonnéesactuellement supportées sont `{ \"certification\": { " -"\"certified_by\": \"Data Platform Team\", \"details\": \"This table is " -"the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" " -"}`." -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Champ supplémentaire ne peut pas être décodé par JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +#, fuzzy +msgid "Percent Change" +msgstr "Pourcentages" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 #, fuzzy -msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" -msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" +msgid "Factor" +msgstr "Octobre" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -#, fuzzy -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 #, fuzzy -msgid "Extruded" -msgstr "zone de texte" +msgid "Advanced Analytics" +msgstr "Analyses avancées" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "FEV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "VEN" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 #, fuzzy -msgid "Factor" -msgstr "Octobre" +msgid "Date Time Format" +msgstr "Format Datetime" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +#, fuzzy +msgid "Partition Limit" +msgstr "Diagramme de Partition" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "Echec" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "Echec" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Echec lors de la récupération des résultats" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +#, fuzzy +msgid "Rolling Window" +msgstr "Fenêtre glissante" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +#, fuzzy +msgid "Rolling Function" +msgstr "Fonction de fenêtre glissante" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 #, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "Echec lors de la récupération des résultats" +msgid "Min Periods" +msgstr "Périodes min" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 #, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Portée du filtre croisé" +msgid "Time Comparison" +msgstr "Comparaison de temps" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "Echec de la requête à distance." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +#, fuzzy +msgid "Time Shift" +msgstr "Décalage temporel" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +#, fuzzy +msgid "1 week" +msgstr "semaine" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Echec de la vérification des options de sélection : %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "90 jours" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Favoris" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 jours" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Favoris" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +#, fuzzy +msgid "52 weeks" +msgstr "semaine" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Février" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +#, fuzzy +msgid "1 year" +msgstr "année" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "Récupérer les valeurs des prédicats" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +#, fuzzy +msgid "104 weeks" +msgstr "semaine" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Prévisualisation des données" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "année" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "Récupéré %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +#, fuzzy +msgid "156 weeks" +msgstr "semaine" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 #, fuzzy -msgid "Fetching" -msgstr "récupération" +msgid "3 years" +msgstr "année" -#: superset/databases/commands/exceptions.py:63 -#, fuzzy, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "Le champ ne peut pas être décodé par JSON %{json_error}s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +#, fuzzy +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Superposer une ou plusieurs séries temporelles d'une période relative. " +"Attend des écarts temporels relatifs en langage naturel en anglais " +"(exemple : 24 hours, 7 days, 52 weeks, 365 days). Le texte libre est " +"supporté." -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Le champ ne peut pas être décodé par JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +#, fuzzy +msgid "Actual Values" +msgstr "Valeurs NULL" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "Le champ est requis" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Fichier" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -#, fuzzy -msgid "Fill Color" -msgstr "Couleur fixe" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -"Remplissez tous les champs obligatoires pour activer \"la valeur par " -"défaut\"" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -#, fuzzy -msgid "Fill method" -msgstr "Méthode de livraison" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Méthode" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -#, fuzzy -msgid "Filled" -msgstr "Echec" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" -msgstr "Filtre" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" -msgstr "Configuration du filtre" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Filtres" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" -msgstr "Paramètres des filtres" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "Type du filtre" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 #, fuzzy -msgid "Filter box (deprecated)" -msgstr "Pas de filtre sélectionné." +msgid "Partition Chart" +msgstr "Diagramme de Partition" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 #, fuzzy -msgid "Filter charts" -msgstr "Filtrer vos graphiques" +msgid "Categorical" +msgstr "Catégorie" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Configuration du filtre" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +#, fuzzy +msgid "Use Area Proportions" +msgstr "Sélectionner les options d’agrégat" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Configuration du filtre pour la boîte de filtrage" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" -msgstr "Le filtre a une valeur par défaut" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 #, fuzzy -msgid "Filter menu" -msgstr "Nom du filtre" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "" -"Les métadonnées du filtre ont changé dans le tableau de bord. Il ne sera " -"pas appliqué." +msgid "Nightingale Rose Chart" +msgstr "Séries temporelles - Graphique Nightingale Rose" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Nom du filtre" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "Analyses avancées" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -"Le filtre n'affiche que les valeurs pertinentes après les sélections " -"effectuées dans d'autres filtres." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "Filtrer les résultats" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "Cet ensemble de filtre existe déjà" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +#, fuzzy +msgid "Source / Target" +msgstr "Nom source de données" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "Un ensemble de filtre avec ce nom existe déjà" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +#, fuzzy +msgid "Choose a source and a target" +msgstr "Choisissez un jeu de donnée" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" -msgstr "Type du filtre" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Valeur du filtre (sensible à la casse)" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" -msgstr "La valeur du filtre est requise" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "La liste de valeurs du filtre ne peut pas être vide" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Filtrer vos graphiques" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filtrable" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "Pourcentages" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filtres" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "Filtres (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Filtrer par colonne" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "Nom de la requête" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Filtres par métrique" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Configuration des filtres" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" -msgstr "Filtres hors du périmètre (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -"Les filtres d'un groupe qui ont la même clé vont se combiner avec des OU," -" alors que des filtres de groupes différents vont se combiner avec des " -"ET. Les groupes qui ont une clé indéfinie sont traités comme des groupes " -"uniques, c'est-à-dire qu'ils ne sont pas regroupés. Par exemple, si une " -"table a 3 filtres dont 2 sont pour les départements Finance et Marketing " -"(clé de groupe 'department', et 1 se réfère à la région Europe (clé de " -"groupe = 'region'), la clause du filtre qui s'appliquerait serait " -"(department = 'Finance' OR department = 'Marketing') AND (region = " -"'Europe')." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "Terminer" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +#, fuzzy +msgid "Show Bubbles" +msgstr "Afficher les tables" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +#, fuzzy +msgid "Max Bubble Size" +msgstr "Taille de la bulle" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +#, fuzzy +msgid "Color by" +msgstr "Trier par" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 #, fuzzy -msgid "Fix to selected Time Range" -msgstr "Intervalle de temps courant" +msgid "Country Column" +msgstr "Ma colonne" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#, fuzzy +msgid "3 letter code of the country" +msgstr "chaque jour du mois" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "Modifié" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 #, fuzzy -msgid "Fixed Color" +msgid "Bubble Color" msgstr "Couleur fixe" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Couleur fixe" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +#, fuzzy +msgid "Country Color Scheme" +msgstr "Sélectionner un schéma de couleurs" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 #, fuzzy -msgid "Flow" -msgstr "jaune" +msgid "Multi-Dimensions" +msgstr "Est une Dimension" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "Multi-Variables" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "Populaires" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +#, fuzzy +msgid "deck.gl charts" +msgstr "Deck.gl - Chemins" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." -msgstr "" -"Pour Presto et Postgres, affiche un bouton pour calculer le coût avant " -"d'exécuter une requête." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +#, fuzzy +msgid "Select charts" +msgstr "Tous les graphiques" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +#, fuzzy +msgid "Error while fetching charts" +msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +#, fuzzy +msgid "deck.gl Multiple Layers" +msgstr "Deck.gl - Couches Multiples" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -"Pour les filtres réguliers, ce sont les profils sur lesquels vont " -"s'appliquer les filtres. Pour les filtres de base, ce sont les profis sur" -" lesquels les filtres NE VONT PAS s'appliquer, par exemple Admin si " -"l'admin devrait voir toutes les données." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 #, fuzzy -msgid "Force" -msgstr "Source" +msgid "Start (Longitude, Latitude): " +msgstr "Invalide Longitude/Latitude" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +#, fuzzy +msgid "End (Longitude, Latitude): " +msgstr "Invalide Longitude/Latitude" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +#, fuzzy +msgid "Start Longitude & Latitude" +msgstr "Invalide Longitude/Latitude" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" msgstr "" -"Force la création des tables et des vues dans ce schéma quand on cliquer " -"sur CTAS or CVAS dans SQL Lab." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 #, fuzzy -msgid "Force date format" -msgstr "Format Date" +msgid "End Longitude & Latitude" +msgstr "Invalide Longitude/Latitude" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Forcer à rafraîchir" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +#, fuzzy +msgid "Arc" +msgstr "Mars" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "Forcez à actualiser la liste des schémas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +#, fuzzy +msgid "Target Color" +msgstr "Catégorie" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "Forcer à actualiser les données" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +#, fuzzy +msgid "Color of the target location" +msgstr "Détails de la certification" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 #, fuzzy -msgid "Forecast periods" -msgstr "Période relative" +msgid "Categorical Color" +msgstr "Catégorie" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 #, fuzzy -msgid "Forest Green" -msgstr "Fréquence de rafraichissement" +msgid "Stroke Width" +msgstr "L'épaisseur de la ligne" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Avancé" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 #, fuzzy -msgid "Formattable" -msgstr "Clefs pour la table" +msgid "deck.gl Arc" +msgstr "Deck.gl - Arc" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" -msgstr "CSV formatté attaché dans l'e-mail" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 #, fuzzy -msgid "Formatted date" -msgstr "Clefs pour la table" +msgid "Centroid (Longitude and Latitude): " +msgstr "Invalide Longitude/Latitude" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 #, fuzzy -msgid "Formatted value" -msgstr "Valeurs émises" +msgid "Threshold: " +msgstr "Pourcentages" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 #, fuzzy -msgid "Formatting" -msgstr "Formatage adapté" +msgid "Aggregation" +msgstr "agrégat" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 #, fuzzy -msgid "Formula" -msgstr "Format D3" +msgid "Contours" +msgstr "colonne" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 #, fuzzy -msgid "Forward values" -msgstr "Valeur cible" +msgid "Weight" +msgstr "Hauteur" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 #, fuzzy -msgid "Frequency" -msgstr "Fréquence de rafraichissement" +msgid "deck.gl Contour" +msgstr "Deck.gl - Arc" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Spatial" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 #, fuzzy -msgid "Friction" -msgstr "Action" +msgid "GeoJson Settings" +msgstr "Paramètres de planification" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "L'épaisseur de la ligne" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Paramètres" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Vendredi" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "La date de début ne peut être postérieure à la date de fin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 #, fuzzy -msgid "Full name" -msgstr "Nom de la requête" +msgid "deck.gl Geojson" +msgstr "Deck.gl - Polygone" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 #, fuzzy -msgid "Funnel Chart" -msgstr "Nouveau graphique" +msgid "Longitude and Latitude" +msgstr "Invalide Longitude/Latitude" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Hauteur" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 #, fuzzy -msgid "GROUP BY" -msgstr "Grouper par" +msgid "deck.gl Grid" +msgstr "Deck.gl - Grille 3D" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 #, fuzzy -msgid "Gauge Chart" -msgstr "Enregistrer un graphique" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" -msgstr "" +msgid "Intesity" +msgstr "Entité" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 #, fuzzy -msgid "Generic Chart" -msgstr "Tous les graphiques" +msgid "Intensity Radius" +msgstr "Entité" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 #, fuzzy -msgid "GeoJson Column" -msgstr "Pas de colonne" +msgid "deck.gl Heatmap" +msgstr "Deck.gl - Chemins" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 #, fuzzy -msgid "GeoJson Settings" -msgstr "Paramètres de planification" +msgid "Dynamic Aggregation Function" +msgstr "Fonctions Python" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +#, fuzzy +msgid "variance" +msgstr "Avancé" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "Récupérer la dernière date par l'unité de date." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#, fuzzy +msgid "deviation" +msgstr "description" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" -msgstr "Récupérer la date spécifiée pour le jour férié" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -"Allez dans l'edition pour configurer le tableau de bord et ajouter des " -"graphiques" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "Nom et URL de la feuille Google Sheet" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "Période de grâce" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 #, fuzzy -msgid "Graph Chart" -msgstr "Enregistrer un graphique" +msgid "deck.gl 3D Hexagon" +msgstr "Deck.gl - Polygone" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/src/explore/constants.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 #, fuzzy -msgid "Greater or equal (>=)" -msgstr ">= (Plus grand ou égal)" +msgid "deck.gl Path" +msgstr "Deck.gl - Chemins" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "nom" -#: superset-frontend/src/explore/constants.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 #, fuzzy -msgid "Greater than (>)" -msgstr "créer un " +msgid "Polygon Column" +msgstr "Ma colonne" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 #, fuzzy -msgid "Grid" -msgstr "Vendredi" +msgid "Polygon Encoding" +msgstr "Envoi d'un rapport" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 #, fuzzy -msgid "Grid Size" -msgstr "Taille de la bulle" +msgid "Elevation" +msgstr "Durée" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "Grouper par" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +#, fuzzy +msgid "Polygon Settings" +msgstr "Paramètres de planification" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -#, fuzzy -msgid "Group Key" -msgstr "Grouper par" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Grouper par" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Groupable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -#, fuzzy -msgid "Handlebars" -msgstr "alertes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 #, fuzzy -msgid "Handlebars Template" -msgstr "Supprimer un template" +msgid "Emit Filter Events" +msgstr "Trier les valeurs de filtre" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 #, fuzzy -msgid "Has created by" -msgstr "a été créé" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Ligne d'en-tête" - -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "Ligne d'en-tête" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Carte de chaleur" +msgid "Multiple filtering" +msgstr "Remplir automatiquement les filtres" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Hauteur" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -#, fuzzy -msgid "Hide Line" -msgstr "Masquer la couche" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 #, fuzzy -msgid "Hide chart description" -msgstr "Basculer la description du graphique" +msgid "deck.gl Polygon" +msgstr "Deck.gl - Polygone" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "Masquer la couche" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "Catégorie" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 #, fuzzy -msgid "Hide password." -msgstr "Réinitialiser mon mot de passe" +msgid "Point Size" +msgstr "Taille de la bulle" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Masquer la barre d'outil" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 #, fuzzy -msgid "Hides the Line for the time series" -msgstr "Métrique servant à trier les résultats" +msgid "Square meters" +msgstr "Paramètres" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 #, fuzzy -msgid "Hierarchy" -msgstr "Recherche" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Histogramme" - -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Accueil" +msgid "Square kilometers" +msgstr "Filtre parent" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 #, fuzzy -msgid "Horizon Chart" -msgstr "Histogrammes horizontaux" - -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Histogrammes horizontaux" +msgid "Square miles" +msgstr "requêtes" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 #, fuzzy -msgid "Horizontal" -msgstr "Histogrammes horizontaux" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" -msgstr "" - -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "Nom d'hôte ou adresse IP" - -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "Heure" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" -msgstr "Heures %s" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "Offset des heures" +msgid "Radius in meters" +msgstr "Paramètres" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -"Comment voulez-vous entrer les informations de connexion du compte de " -"service ?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -"Comment afficher des décalages temporels : comme des lignes individuelles" -" ; comme la différence entre les séries temporelles principales et chaque" -" décalage temporel ; comme le pourcentage de changement; ou comme le " -"ratio entre les séries et les décalages temporels." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "ISO 8601" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 #, fuzzy -msgid "Id" -msgstr "id:" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"Si Presto ou Trino, toutes les requêtes dans SQL Lab sont en cours " -"d'exécution sous le compte de l'utilisateur actuellement connecté qui " -"doit avoir les permissions requises pour les exécuter. Si Hive et " -"hive.server2.enable.doAs est activé, les requêtes seront exécutées sous " -"le compte du service, mais en impersonnifiant l'utilisateur actuellement " -"connecté via la propriété hive.server2.proxy.user." +msgid "Point Color" +msgstr "Couleur fixe" -#: superset/views/database/mixins.py:165 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -"Si Presto, toutes les requêtes dans SQL Lab sont en cours d'exécution " -"sous le compte de l'utilisateur actuellement connecté qui doit avoir les " -"premissions requises.
Si Hive et hive.server2.enable.doAs sont " -"activés, les requêtes seront exécutées sous le compte du service, mais " -"impersonnifiant l'utilisateur actuellement connecté via la propriété " -"hive.server2.proxy.user." -#: superset/views/database/forms.py:174 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 #, fuzzy -msgid "If Table Already Exists" -msgstr "Cet ensemble de filtre existe déjà" +msgid "deck.gl Scatterplot" +msgstr "Deck.gl - Nuage de points" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "Si une métrique est définie, le tri sera basé sur sa valeur" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +#, fuzzy +msgid "Grid" +msgstr "Vendredi" -#: superset/views/database/forms.py:248 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "" -"Si sélectionné, veuillez indiquer les schémas permis pour le " -"téléversement csv dans Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +#, fuzzy +msgid "deck.gl Screen Grid" +msgstr "Deck.gl - Grille d'écran" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +"For more information about objects are in context in the scope of this " +"function, refer to the" msgstr "" -"Si la table existe, faire une des actions suivantes : Echec (pas " -"d'actions), Remplacer (supprimer et recréer la table) ou Ajouter (insérer" -" les données)." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -#, fuzzy -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -"L'exécution de la planification de rapport a échoué à la génération de la" -" copie d'écran." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" -msgstr "Image (PNG) encapsulée dans l'e-mail" - -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -"Impersonnaliser l'utilisateur connecté (Presto, Trino, Drill, Hive, and " -"GSheets)" - -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Impersonnaliser la connexion de l'utilisateur" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Importe" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Import %s" - -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Importer des tableaux de bords" - -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Importer des tableaux de bord" - -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "Importer la définition d'une table" - -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "L'import du graphique a échoué pour une raison inconnue" - -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "Importer des graphiques" - -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "L'import du tableau de bord a échoué pour une raison inconnue" - -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Import des tableaux de bord" - -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "L'import de la base de données a échoué pour une raison inconnue" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 #, fuzzy -msgid "Import database from file" -msgstr "Importer la base de données" - -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "L'import du jeu de données a échoué pour une raison inconnue" +msgid "Select a dimension" +msgstr "Est une Dimension" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "Importer des jeux de données" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "Importer des requêtes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "L'import de la requête sauvegardée a échoué pour une raison inconnue." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -#, fuzzy -msgid "In" -msgstr "dans" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 #, fuzzy -msgid "Include time" -msgstr "Date de fin" +msgid "Legend Format" +msgstr "Format d'e-mail" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 #, fuzzy -msgid "Index" -msgstr "Personnel" +msgid "Choose the format for legend values" +msgstr "Choisir une mesure pour l'axe de droite" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Index de colonne" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +#, fuzzy +msgid "Legend Position" +msgstr "dernière partition :" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "Info" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +#, fuzzy +msgid "Choose the position of the legend" +msgstr "Calculer la contribution au total" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#, fuzzy +msgid "Top left" +msgstr "alerte" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +#, fuzzy +msgid "Top right" +msgstr "Hauteur" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +#, fuzzy +msgid "Bottom left" +msgstr "dttm" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +#, fuzzy +msgid "Bottom right" +msgstr "dttm" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +#, fuzzy +msgid "Lines column" +msgstr "Colonne de temps" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +#, fuzzy +msgid "The database columns that contains lines information" +msgstr "Cette colonne doit contenir une information date/heure." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Filtrage instantané" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "L'épaisseur de la ligne" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 #, fuzzy -msgid "Intensity" -msgstr "Entité" +msgid "The width of the lines" +msgstr "L'identifiant du graphique actif" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 #, fuzzy -msgid "Intensity Radius" -msgstr "Entité" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" -msgstr "" +msgid "Fill Color" +msgstr "Couleur fixe" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset/views/database/forms.py:200 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 #, fuzzy -msgid "Interpret Datetime Format Automatically" -msgstr "Utiliser Pandas pour interpréter le format Datetime automatiquement." +msgid "Stroke Color" +msgstr "Couleur fixe" -#: superset/views/database/forms.py:201 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 #, fuzzy -msgid "Interpret the datetime format automatically" -msgstr "Utiliser Pandas pour interpréter le format Datetime automatiquement." +msgid "Filled" +msgstr "Echec" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 #, fuzzy -msgid "Interval" -msgstr "Intervalle d'actualisation" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" -msgstr "Dernière colonne de l'intervalle" +msgid "Whether to fill the objects" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 #, fuzzy -msgid "Interval bounds" -msgstr "Filtrer par colonne" +msgid "Stroked" +msgstr "rouge" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 #, fuzzy -msgid "Interval colors" -msgstr "Schéma de couleurs linéaire" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" -msgstr "Première colonne de l'intervalle" +msgid "Whether to display the stroke" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 #, fuzzy -msgid "Intervals" -msgstr "Intervalle d'actualisation" +msgid "Extruded" +msgstr "zone de texte" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 #, fuzzy -msgid "Intesity" -msgstr "Entité" +msgid "Whether to make the grid 3D" +msgstr "Métrique servant à trier les résultats" -#: superset/db_engine_specs/ocient.py:274 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 #, fuzzy -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." -msgstr "" -"Chaîne de connexion invalide, une chaîne valide a généralement cette " -"forme : driver://user:password@database-host/database-name" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "JSON invalide" - -#: superset/advanced_data_type/api.py:100 -#, fuzzy, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "Type de résultat invalide : %(result_type)s" +msgid "Grid Size" +msgstr "Taille de la bulle" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Certificat invalide" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -"Chaine de connexion incorrecte, une chaine correcte s'écrit " -"habituellement\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" -#: superset/databases/schemas.py:164 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 #, fuzzy -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" -msgstr "" -"Chaîne de connexion invalide, une chaîne valide a généralement cette " -"forme : driver://user:password@database-host/database-name" +msgid "Longitude & Latitude" +msgstr "Les colonnes longitude & latitude" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -"Chaîne de connexion invalide, une chaîne valide a généralement cette " -"forme : DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Expression Cron invalide" - -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Operateur cumulatif invalide: %(operator)s" - -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Format date/timestamp invalide" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "Configuration du filtre invalide, veuillez sélectionner une colonne" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +#, fuzzy +msgid "Multiplier" +msgstr "Actif" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "Type d'opération de filtrage invalide : %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "Chaine de géodésie invalide" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +#, fuzzy +msgid "Lines encoding" +msgstr "Tri croissant" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "Chaine de geohash invalide" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +#, fuzzy +msgid "The encoding format of the lines" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Configuration lat/long non valide." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +#, fuzzy +msgid "Reverse Lat & Long" +msgstr "Inverser lat/long " -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Invalide Longitude/Latitude" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +#, fuzzy +msgid "GeoJson Column" +msgstr "Pas de colonne" -#: superset/utils/core.py:1373 -#, fuzzy, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "Object métrique invalide" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +#, fuzzy +msgid "Select the geojson column" +msgstr "Sélectionner une colonne" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Fonction numpy invalide: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +#, fuzzy +msgid "Right Axis Format" +msgstr "Mesure de l'axe de droite" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Options invalides pour %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "Type de résultat invalide : %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "Le rolling_type invalide: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "Point géographique invalide : %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 #, fuzzy -msgid "Invalid state." -msgstr "Certificat invalide" - -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" -msgstr "" +msgid "linear" +msgstr "Effacer" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 #, fuzzy -msgid "Inverse selection" -msgstr "Exécuter la sélection" +msgid "basis" +msgstr "Simple" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 #, fuzzy -msgid "Invert current page" -msgstr "Pourcentages" +msgid "cardinal" +msgstr "Spatial" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 #, fuzzy -msgid "Is certified" -msgstr "Certifié par" +msgid "monotone" +msgstr "mois" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "Est une Dimension" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" +msgstr "" -#: superset-frontend/src/explore/constants.ts:89 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 #, fuzzy -msgid "Is false" -msgstr "Éditer la table" - -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "Favoris" +msgid "step-after" +msgstr "css_template" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "Filtrable" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "" -#: superset-frontend/src/explore/constants.ts:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 #, fuzzy -msgid "Is not null" -msgstr "Non Null" +msgid "Show Range Filter" +msgstr "Filtre d'intervalle" -#: superset-frontend/src/explore/constants.ts:83 -#, fuzzy -msgid "Is null" -msgstr "Non Null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "Est temporel" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 #, fuzzy -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Source de données trop volumineuse pour être interrogée." +msgid "flat" +msgstr "à" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 #, fuzzy -msgid "Issue 1001 - The database is under an unusual load." -msgstr "La base de données est soumise à une charge inhabituelle." +msgid "staggered" +msgstr "Rien déclenché" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "JAN" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +#, fuzzy +msgid "X Axis Format" +msgstr "Format de l'axe Y" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSON des méta-données" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "" -#: 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/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -#, fuzzy -msgid "JSON metadata is invalid!" -msgstr "le json n'est pas valide" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -"Chaîne JSON qui contient des informations de configuration de connexion " -"supplémentaires. Ceci est utilisé pour fournir des informations de " -"connexion pour des systèmes comme Hive, Presto et BigQuery qui ne se " -"conforment pas à la syntaxe utilisateur:mot_de_passe normalement utilisée" -" par SQLAlchemy." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "JUI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "JUI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Janvier" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +#, fuzzy +msgid "Bar Values" +msgstr "Valeur cible" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 #, fuzzy -msgid "Jinja templating" -msgstr "Modifier un template" +msgid "stack" +msgstr "Backend" -#: superset/views/database/forms.py:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 #, fuzzy -msgid "Json list of the column names that should be read" +msgid "stream" +msgstr "Histogramme" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +#, fuzzy +msgid "expand" +msgstr "et" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -"Une liste de colonnes séparées par des virgules qui devraient être " -"parsées comme des dates." -#: superset/views/database/forms.py:474 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -"Liste json des noms de colonnes qui devraient être lues. Si différent de " -"None, uniquement ces colonnes seront lues depuis le fichier." -#: superset/views/database/forms.py:213 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 #, fuzzy -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +msgid "Stretched style" +msgstr "Récupéré %s" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -"Json liste de valeur à traiter comme NULL. Examples: [\"\"], [\"None\", " -"\"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte " -"qu'une seule valeur. Use [\"\"] for empty string." -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -"Json liste de valeur à traiter comme NULL. Examples: [\"\"], [\"None\", " -"\"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte " -"qu'une seule valeur. Use [\"\"] for empty string." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Juillet" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +#, fuzzy +msgid "Vehicle Types" +msgstr "Type du filtre" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Juin" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +#, fuzzy +msgid "Area Chart (legacy)" +msgstr "Enregistrer un graphique" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +#, fuzzy +msgid "Line" +msgstr "Personnel" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "Garder en édition" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 #, fuzzy -msgid "Key" -msgstr "Sankey" +msgid "Deprecated" +msgstr "Créé le" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "Clefs pour la table" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#, fuzzy +msgid "Series Limit Sort By" +msgstr "Nombre de séries max" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 #, fuzzy -msgid "Kilometers" -msgstr "Filtres" +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." +msgstr "" +"Métrique utilisée pour définir comment les séries principales sont triées" +" si une limite de série ou de ligne est définie. Si indéfini, la première" +" métrique sera utilisée (si approprié)." -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 #, fuzzy -msgid "LIMIT" -msgstr "Nombre de lignes max" +msgid "Series Limit Sort Descending" +msgstr "Tri décroissant" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Label" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +#, fuzzy +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "Trier par ordre décroissant ou croissant" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 #, fuzzy -msgid "Label Type" -msgstr "Type du filtre" +msgid "Time-series Bar Chart (legacy)" +msgstr "Séries temporelles - histogramme" -#: superset/utils/pandas_postprocessing/rename.py:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 #, fuzzy -msgid "Label already exists" -msgstr "Cet ensemble de filtre existe déjà" +msgid "Bar" +msgstr "Tabulaire" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Label pour votre requête" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +#, fuzzy +msgid "Vertical" +msgstr "virtuel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 #, fuzzy -msgid "Label position" -msgstr "dernière partition :" +msgid "Box Plot" +msgstr "boulon" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "Labels" -msgstr "Label" +msgid "Bubble Chart (legacy)" +msgstr "Enregistrer un graphique" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +#, fuzzy +msgid "Ranges" +msgstr "Gestion" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 msgid "Labels for the ranges" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 #, fuzzy -msgid "Large" -msgstr "Partage de requête" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" -msgstr "Dernier" - -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Dernière modification" - -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Dernière modification" - -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Dernière mise à jour %s" - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" -msgstr "Dernière mise à jour %s" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, fuzzy, python-format -msgid "Last available value seen on %s" -msgstr "Valeurs de pre-filtre disponibles" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Dernière modification" +msgid "Markers" +msgstr "alertes" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Dernière modification par %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Dernière exécution" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +#, fuzzy +msgid "Marker labels" +msgstr "[Alert] %(label)s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Configuration de la couche" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "Dernière modification" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 #, fuzzy -msgid "Left" -msgstr "alerte" +msgid "Time-series Percent Change" +msgstr "Séries temporelles - pourcentage de changement" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 #, fuzzy -msgid "Left Axis Format" -msgstr "Format de l'axe Y" +msgid "Sort Bars" +msgstr "Importer des graphiques" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +#, fuzzy +msgid "Breakdowns" +msgstr "Créé le" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" -msgstr "Valeur gauche" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "Legacy" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -#, fuzzy -msgid "Legend" -msgstr "Modifié" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -#, fuzzy -msgid "Legend Format" -msgstr "Format d'e-mail" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -#, fuzzy -msgid "Legend Orientation" -msgstr "Documentation" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -#, fuzzy -msgid "Legend Position" -msgstr "dernière partition :" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 #, fuzzy -msgid "Legend type" -msgstr "Type du filtre" +msgid "Additive" +msgstr "Ajouter un item" -#: superset-frontend/src/explore/constants.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 #, fuzzy -msgid "Less or equal (<=)" -msgstr "<= (Plus petit ou égal)" +msgid "Discrete" +msgstr "a été créé" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -#, fuzzy -msgid "Light" -msgstr "Hauteur" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 #, fuzzy -msgid "Like (case insensitive)" -msgstr "Valeur du filtre (sensible à la casse)" - -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Limite atteinte" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "Limiter les valeurs" +msgid "Label Type" +msgstr "Type du filtre" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 #, fuzzy -msgid "Limit type" -msgstr "type de visualisation" +msgid "Category Name" +msgstr "Nom de la requête" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Valeur" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 #, fuzzy -msgid "Limits the number of cells that get retrieved." -msgstr "Limite le nombre de lignes qui sont affichées." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "Limite le nombre de lignes qui sont affichées." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." -msgstr "" -"Limite le nombre de séries affichées. Une sous-requête associée (ou une " -"phase supplémentaire dans laquelle les sous-requêtes ne sont pas prises " -"en charge) est appliquée pour limiter le nombre de séries qui sont " -"récupérées et affichées. Cette fonctionnalité est utile lors du " -"regroupement par colonne(s) de cardinalité(s) élevée(s) bien que cela " -"augmente la complexité et le coût de la requête." +msgid "Percentage" +msgstr "Pourcentages" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 #, fuzzy -msgid "Line" -msgstr "Personnel" +msgid "Category and Value" +msgstr "Renseigner une valeur" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 #, fuzzy -msgid "Line Chart" -msgstr "Graphique minimisé" +msgid "Category and Percentage" +msgstr "Pourcentages" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +#, fuzzy +msgid "Donut" +msgstr "mois" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "L'épaisseur de la ligne" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 #, fuzzy -msgid "Linear Color Scheme" -msgstr "Schéma de couleurs linéaire" +msgid "Show Labels" +msgstr "Afficher les tables" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Schéma de couleurs linéaire" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 #, fuzzy -msgid "Lines column" -msgstr "Colonne de temps" +msgid "Pie Chart (legacy)" +msgstr "Enregistrer un graphique" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 #, fuzzy -msgid "Lines encoding" -msgstr "Tri croissant" +msgid "Frequency" +msgstr "Fréquence de rafraichissement" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Lien copié !" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Liste des requêtes sauvegardées" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +#, fuzzy +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "Semaine débutant le lundi" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 #, fuzzy -msgid "List Unique Values" -msgstr "Valeurs émises" +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "Semaine débutant le dimanche" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +#, fuzzy +msgid "1 week starting Monday (freq=W-MON)" +msgstr "Semaine débutant le lundi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 #, fuzzy -msgid "List updated" -msgstr "le trimestre dernier" - -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "Editeur CSS en ligne" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" -msgstr "" +msgid "Time-series Period Pivot" +msgstr "Séries temporelles - Période Pivot" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Chargé un modèle CSS" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +#, fuzzy +msgid "Formula" +msgstr "Format D3" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Données chargées mises en cache" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +#, fuzzy +msgid "Event" +msgstr "date" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Chargé depuis le cache" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "Intervalle d'actualisation" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 #, fuzzy -msgid "Loading" -msgstr "Chargement ..." +msgid "Stack" +msgstr "Backend" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "Chargement ..." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#, fuzzy +msgid "Stream" +msgstr "Histogramme" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy -msgid "Locate the chart" -msgstr "Créer un nouveau graphique" +msgid "Expand" +msgstr "et" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "Rétention de log" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +#, fuzzy +msgid "Margin" +msgstr "Comparaison" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +#, fuzzy +msgid "Additional padding for legend." +msgstr "Informations additionnelles" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Connexion" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 #, fuzzy -msgid "Login with" -msgstr "L'épaisseur de la ligne" - -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Déconnexion" - -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Logs" +msgid "Legend type" +msgstr "Type du filtre" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +#, fuzzy +msgid "Orientation" +msgstr "Documentation" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +#, fuzzy +msgid "Bottom" +msgstr "dttm" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 #, fuzzy -msgid "Longitude & Latitude" -msgstr "Les colonnes longitude & latitude" +msgid "Right" +msgstr "Hauteur" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Les colonnes longitude & latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +#, fuzzy +msgid "Legend Orientation" +msgstr "Documentation" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 #, fuzzy -msgid "Longitude and Latitude" -msgstr "Invalide Longitude/Latitude" +msgid "Show Value" +msgstr "Afficher les tables" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "MAR" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "MAI" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "LUN" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Colonne Datetime principale" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +#, fuzzy +msgid "Percentage threshold" +msgstr "Pourcentages" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -"Requête malformée. Les arguments slice_id ou table_name et db_name sont " -"attendus" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Gestion" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 #, fuzzy -msgid "Manage email report" -msgstr "Supprimer le rapport par e-mail" +msgid "Tooltip time format" +msgstr "Format Datetime" -#: superset-frontend/src/components/EmptyState/index.tsx:230 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 #, fuzzy -msgid "Manage your databases" -msgstr "Donner un nom à la base de données" +msgid "Tooltip sort by metric" +msgstr "Filtres par métrique" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "Obligatoire" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 #, fuzzy -msgid "Map" -msgstr "Carte proportionnelle" +msgid "Sort Series By" +msgstr "Trier par" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -#, fuzzy -msgid "Map Style" -msgstr "Type de balisage" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 #, fuzzy -msgid "MapBox" -msgstr "Mapbox" +msgid "Sort Series Ascending" +msgstr "Tri croissant" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Mars" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 #, fuzzy -msgid "Margin" -msgstr "Comparaison" +msgid "Series Order" +msgstr "Séries" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Trier les métriques" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 #, fuzzy -msgid "Marker" -msgstr "Trimestre" +msgid "X Axis Bounds" +msgstr "Filtrer par colonne" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 #, fuzzy -msgid "Marker labels" -msgstr "[Alert] %(label)s" +msgid "Minor ticks" +msgstr "Trier les métriques" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, fuzzy, python-format +msgid "Last available value seen on %s" +msgstr "Valeurs de pre-filtre disponibles" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -#, fuzzy -msgid "Markers" -msgstr "alertes" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Pas de données" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Type de balisage" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" +msgstr "" +"Pas de données après filtrage ou données manquantes pour la période " +"sélectionnée" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 #, fuzzy -msgid "Max Bubble Size" -msgstr "Taille de la bulle" +msgid "Tiny" +msgstr "dans" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +#, fuzzy +msgid "Large" +msgstr "Partage de requête" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +#, fuzzy +msgid "Display settings" +msgstr "Paramètres de planification" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +#, fuzzy +msgid "Subheader" +msgstr "Ligne d'en-tête" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 #, fuzzy -msgid "Maximum value" -msgstr "Valeurs NULL" +msgid "Date format" +msgstr "Format Date" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#, fuzzy +msgid "Force date format" +msgstr "Format Date" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Mai" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Informations additionnelles" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Informations additionnelles" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 #, fuzzy -msgid "Mean values" -msgstr "Valeurs émises" +msgid "A Big Number" +msgstr "Gros nombre" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Gros nombre" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 #, fuzzy -msgid "Median values" -msgstr "Valeurs émises" +msgid "Comparison suffix" +msgstr "Comparaison" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +#, fuzzy +msgid "Show Timestamp" +msgstr "Afficher la colonne temps" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "Contenu du message" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 #, fuzzy -msgid "Metadata" -msgstr "méta-données JSON " +msgid "Fix to selected Time Range" +msgstr "Intervalle de temps courant" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" -msgstr "Les paramètres de métadonnées" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +#, fuzzy +msgid "TEMPORAL X-AXIS" +msgstr "Est temporel" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "Les métadonnées ont été synchronisées" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "Méthode" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Gros nombre avec tendance" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Métrique" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "La métrique '%(metric)s' n'existe pas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Metric ascending" -msgstr "Tri croissant" +msgid "Tukey" +msgstr "requête" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Métrique assignée à l'axe [X]" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Métrique assignée à l'axe [Y]" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 #, fuzzy -msgid "Metric descending" -msgstr "Tri décroissant" +msgid "Distribute across" +msgstr "Estimer le coût" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "EGraphiques" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 #, fuzzy -msgid "Metric name" -msgstr "Nom de la requête" +msgid "Bubble size number format" +msgstr "Choisir une mesure pour l'axe de droite" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "Le nom de métrique [%s] est dupliqué" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Bulles" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -#, fuzzy -msgid "Metric to display bottom title" -msgstr "Choisissez une métrique à afficher" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Métrique servant à trier les résultats" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -#, fuzzy -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -"Métrique utilisée pour définir comment les séries principales sont triées" -" si une limite de série ou de ligne est définie. Si indéfini, la première" -" métrique sera utilisée (si approprié)." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -"Métrique utilisée pour définir comment les séries principales sont triées" -" si une limite de série ou de ligne est définie. Si indéfini, la première" -" métrique sera utilisée (si approprié)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -#, fuzzy -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -"Métrique utilisée pour définir comment les séries principales sont triées" -" si une limite de série ou de ligne est définie. Si indéfini, la première" -" métrique sera utilisée (si approprié)." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Métriques" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Choisir un type de calcul" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -#, fuzzy -msgid "Middle" -msgstr "Fichier" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" -msgstr "Minuit" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -#, fuzzy -msgid "Miles" -msgstr "Exemples" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 #, fuzzy -msgid "Min Periods" -msgstr "Périodes min" +msgid "Labels" +msgstr "Label" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 #, fuzzy -msgid "Min Width" -msgstr "L'épaisseur de la ligne" +msgid "Label Contents" +msgstr "Contenu de cellule" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "Périodes min" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Pourcentages" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "Personnel" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 #, fuzzy -msgid "Minimum" -msgstr "minute" +msgid "Tooltip Contents" +msgstr "Contenu de cellule" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "Afficher les tables" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 #, fuzzy -msgid "Minimum value" -msgstr "Valeurs NULL" +msgid "Funnel Chart" +msgstr "Nouveau graphique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "Minute" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Min" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" -msgstr "Minutes %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -#, fuzzy -msgid "Missing URL parameters" -msgstr "Paramètres supplémentaires" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Max" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "Jeu de données manquant" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 #, fuzzy -msgid "Mixed Chart" -msgstr "Graphique minimisé" +msgid "Start angle" +msgstr "Changements de graphique" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Modifié" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +#, fuzzy +msgid "End angle" +msgstr "Intervalle de Temps" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" -msgstr "%s modifié" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Modifié" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "Colonnes modifiées : %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Lundi" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +#, fuzzy +msgid "Value format" +msgstr "Format d'e-mail" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "Mois" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" -msgstr "Mois %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -#, fuzzy -msgid "More" -msgstr "Voir plus" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 #, fuzzy -msgid "More filters" -msgstr "Filtre de temps" +msgid "Animation" +msgstr "annotation" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "Décale l'ensemble de dates d'un intervalle spécifié." - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 #, fuzzy -msgid "Multi-Dimensions" -msgstr "Est une Dimension" +msgid "Axis" +msgstr "Axe Y" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" -msgstr "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 #, fuzzy -msgid "Multiple Line Charts" -msgstr "Séries temporelles - Lignes multiples" +msgid "Split number" +msgstr "Numéro de version" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -"De multiples extensions de fichier ne sont pas autorisées pour les " -"téléversements en colonne. Merci de vous assurer que tous les fichiers " -"ont la même extension." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 #, fuzzy -msgid "Multiple filtering" -msgstr "Remplir automatiquement les filtres" +msgid "Show progress" +msgstr "Propriétés du tableau de bord" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -"Multiples formats acceptés, regarder la librairie Python geopy.points " -"pour plus de détails" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#, fuzzy +msgid "Overlap" +msgstr "Carte du monde" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -"Sélections multiples autorisées, sinon le filtre est limité à une seule " -"valeur" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 #, fuzzy -msgid "Multiplier" -msgstr "Actif" +msgid "Round cap" +msgstr "Carte de pays" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "Doit être unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "" -#: superset/reports/commands/exceptions.py:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 #, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "Choisissez un graphique ou un tableau de bord, pas les deux" - -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Il faut une colonne [Grouper par] pour avoir 'count' comme [Label]" +msgid "Intervals" +msgstr "Intervalle d'actualisation" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Au moins une colonne numérique doit être spécifiée" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +#, fuzzy +msgid "Interval bounds" +msgstr "Filtrer par colonne" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +#, fuzzy +msgid "Interval colors" +msgstr "Schéma de couleurs linéaire" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -"Il faut spécifier une valeur pour les filtres avec opérateurs de " -"comparaison" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" -msgstr "Ma colonne" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +#, fuzzy +msgid "Gauge Chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Ma métrique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 #, fuzzy -msgid "NOT GROUPED BY" -msgstr "Grouper par" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "NOV" +msgid "Source category" +msgstr "Catégorie" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "MAINTENANT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 #, fuzzy -msgid "NUMERIC" -msgstr "Ma métrique" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Nom" +msgid "Target category" +msgstr "Catégorie" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "Le nom est obligatoire" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "Le nom doit être unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +#, fuzzy +msgid "Chart options" +msgstr "Option comparateur" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." -msgstr "Nom de la table à créer à partir des données en colonne." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Nom de la table à créer à partir des données Excel." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "" -#: superset/views/database/forms.py:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 #, fuzzy -msgid "Name of table to be created with CSV file" -msgstr "Nom de la table à créer à partir des données CSV." +msgid "Force" +msgstr "Source" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -#, fuzzy -msgid "Name of the id column" -msgstr "Pas de colonne temporelle" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Nom de la table qui existe dans la base de données source" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" -msgstr "Donner un nom à la base de données" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 #, fuzzy -msgid "Network error" -msgstr "Erreur de paramètre" +msgid "Disabled" +msgstr "Éditer la table" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -#, fuzzy -msgid "Network error." -msgstr "Erreur de paramètre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Nouveau graphique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "Nouvelles colonnes ajoutées : %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 #, fuzzy -msgid "New dataset" -msgstr "Changer de jeu de données" +msgid "Node select mode" +msgstr "Exécuter la sélection" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 #, fuzzy -msgid "New dataset name" -msgstr "Nom du jeu de donnée" +msgid "Single" +msgstr "Personnel" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "Nouvel ensemble de filtre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 #, fuzzy -msgid "New header" -msgstr "Ligne d'en-tête" +msgid "Allow node selections" +msgstr "Autoriséer les sélections multiples" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "Nouvel onglet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" -msgstr "Nouvel onglet (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" -msgstr "Nouvel onglet (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +#, fuzzy +msgid "Node size" +msgstr "Taille de la bulle" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Suivant" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 #, fuzzy -msgid "Nightingale Rose Chart" -msgstr "Séries temporelles - Graphique Nightingale Rose" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "Non" +msgid "Edge width" +msgstr "L'épaisseur de la ligne" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "Pas encore de %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Pas d'accès !" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" -msgstr "Pas de données" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -#, fuzzy -msgid "No Results" -msgstr "Visualiser les résultats" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "récents" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 #, fuzzy -msgid "No annotation layers" -msgstr "Couches d'annotations" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Pas encore de couches d'annotations" +msgid "Repulsion" +msgstr "Expression" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Pas encore d'annotations" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 #, fuzzy -msgid "No applied filters" -msgstr "Appliquer les filtres" +msgid "Friction" +msgstr "Action" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -#, fuzzy -msgid "No available filters." -msgstr "Tous les filtres" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Aucun graphique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 #, fuzzy -msgid "No charts yet" -msgstr "Aucun graphique" - -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "Pas de colonne" +msgid "Graph Chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -#, fuzzy -msgid "No columns found" -msgstr "Aucun colonne compatible trouvée" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" -msgstr "Aucun colonne compatible trouvée" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Trier par ordre décroissant ou croissant" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "No compatible datasets found" -msgstr "Aucun colonne compatible trouvée" +msgid "Series type" +msgstr "Type du filtre" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -#, fuzzy -msgid "No compatible schema found" -msgstr "Aucun colonne compatible trouvée" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Aucun tableau de bord" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "Aucun tableau de bord" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Pas de données" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -"Pas de données après filtrage ou données manquantes pour la période " -"sélectionnée" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "Pas de données dans le fichier" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 #, fuzzy -msgid "No database tables found" -msgstr "Base de données non trouvée." +msgid "Area chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." -msgstr "Pas de description disponible." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "Aucun graphique favori pour le moment, cliquer sur les étoiles !" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +#, fuzzy +msgid "Marker" +msgstr "Trimestre" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Aucun tableau de bord favori pour le moment, cliquer sur les étoiles !" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" -msgstr "Pas de filtre" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Pas de filtre sélectionné." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 #, fuzzy -msgid "No filters" -msgstr "Pas de filtre" +msgid "Primary" +msgstr "Vendredi" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 #, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "Aucun filtre ajouté" +msgid "Secondary" +msgstr "5 secondes" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "No global filters are currently added" -msgstr "Aucun filtre ajouté" - -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" -msgstr "Aucun enregistrement trouvé" +msgid "Shared query fields" +msgstr "requêtes sauvegardées" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 #, fuzzy -msgid "No of Bins" -msgstr "Copie de %s" +msgid "Query A" +msgstr "requête" -#: superset-frontend/src/features/home/EmptyState.tsx:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 #, fuzzy -msgid "No recents yet" -msgstr "récents" +msgid "Advanced analytics Query A" +msgstr "Analyses avancées" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Aucun enregistrement trouvé" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +#, fuzzy +msgid "Query B" +msgstr "requête" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 #, fuzzy -msgid "No results" -msgstr "Visualiser les résultats" +msgid "Advanced analytics Query B" +msgstr "Analyses avancées" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Aucun résultat trouvé" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" -msgstr "Aucun résultat avec ces paramètres" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -#, fuzzy -msgid "No rows were returned for this dataset" -msgstr "Aucun résultat avec ces paramètres" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -#, fuzzy -msgid "No samples were returned for this dataset" -msgstr "Aucun résultat avec ces paramètres" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -#, fuzzy -msgid "No saved expressions found" -msgstr "Expressions sauvegardées" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -#, fuzzy -msgid "No saved metrics found" -msgstr "%s métrique(s) sauvegardée(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -#, fuzzy -msgid "No saved queries yet" -msgstr "requêtes sauvegardées" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" -msgstr "Pas de résultat existant trouvé, re-jouez votre requête" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -"Aucune colonne de ce type n'a été trouvée. Pour filtrer sur une métrique," -" essayer l'onglet Custom SQL." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -#, fuzzy -msgid "No table columns" -msgstr "Pas de colonne temporelle" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -#, fuzzy -msgid "No temporal columns found" -msgstr "Aucun colonne compatible trouvée" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "Pas de colonne temporelle" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +#, fuzzy +msgid "Mixed Chart" +msgstr "Graphique minimisé" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "Node select mode" -msgstr "Exécuter la sélection" +msgid "Show Total" +msgstr "Pas de colonne" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -#, fuzzy -msgid "Node size" -msgstr "Taille de la bulle" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" -msgstr "Aucun" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +#, fuzzy +msgid "Pie shape" +msgstr "Voir exemples" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +#, fuzzy +msgid "Outer edge of Pie chart" +msgstr "L'identifiant du graphique actif" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 #, fuzzy -msgid "Not Time Series" -msgstr "Modifier intervalle de temps" +msgid "Pie Chart" +msgstr "Nouveau graphique" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, fuzzy, python-format +msgid "Total: %s" +msgstr "Totaux" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 #, fuzzy -msgid "Not added to any dashboard" -msgstr "Ajouter au tableau de bord" +msgid "Label position" +msgstr "dernière partition :" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 #, fuzzy -msgid "Not available" -msgstr "Pas de description disponible." +msgid "Customize Metrics" +msgstr "Personnaliser" -#: superset-frontend/src/explore/constants.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 #, fuzzy -msgid "Not equal to (≠)" -msgstr "!= (N'est pas égal)" +msgid "Radar Chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 #, fuzzy -msgid "Not in" -msgstr "annotation" +msgid "Primary Metric" +msgstr "Ma métrique" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "Non Null" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 #, fuzzy -msgid "Not triggered" -msgstr "Rien déclenché" +msgid "Secondary Metric" +msgstr "Basé sur une métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Rien déclenché" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "Méthode de notification" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "Novembre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +#, fuzzy +msgid "Hierarchy" +msgstr "Recherche" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" -msgstr "Maintenant" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" -#: superset/views/database/forms.py:211 -#, fuzzy -msgid "Null Values" -msgstr "Valeurs NULL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 #, fuzzy -msgid "Null imputation" -msgstr "annotation" - -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Null ou Vide" +msgid "Sunburst Chart" +msgstr "Graphique superset" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Valeurs NULL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -#, fuzzy -msgid "Number Format" -msgstr "Format D3" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -#, fuzzy -msgid "Number format" -msgstr "Format D3" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 #, fuzzy -msgid "Number format string" -msgstr "Format D3" +msgid "Generic Chart" +msgstr "Tous les graphiques" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +#, fuzzy +msgid "Series Style" +msgstr "Table de Séries temporelles" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset/views/database/forms.py:265 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 #, fuzzy -msgid "Number of rows of file to read" -msgstr "Nombre de lignes du fichier à lire." +msgid "Area Chart" +msgstr "Enregistrer un graphique" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "Nombre de lignes du fichier à lire." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +#, fuzzy +msgid "Axis Title" +msgstr "Onglet titre" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "" -#: superset/views/database/forms.py:271 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 #, fuzzy -msgid "Number of rows to skip at start of file" -msgstr "Nombre de lignes à sauter au début du fichier." +msgid "AXIS TITLE POSITION" +msgstr "dernière partition :" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "Nombre de lignes à sauter au début du fichier." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +#, fuzzy +msgid "Axis Format" +msgstr "Format de l'axe Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" -msgstr "Interval numérique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "OCT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +#, fuzzy +msgid "Axis Bounds" +msgstr "Filtrer par colonne" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "ECRASE" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +#, fuzzy +msgid "Chart Orientation" +msgstr "Documentation" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Octobre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +#, fuzzy +msgid "Bar orientation" +msgstr "Documentation" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "Hors ligne" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +#, fuzzy +msgid "Horizontal" +msgstr "Histogrammes horizontaux" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Décalage (offset)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#, fuzzy +msgid "Orientation of bar chart" +msgstr "Source de l'Annotation" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +#, fuzzy +msgid "Bar Chart" +msgstr "Enregistrer un graphique" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -"Une ou plusieurs colonnes doivent être regroupées. Les regroupements avec" -" une cardinalité importante devraient inclure une limite de séries afin " -"de limiter le nombre de séries récupérées et affichées." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 #, fuzzy +msgid "Line Chart" +msgstr "Graphique minimisé" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -"Une ou plusieurs colonnes doivent être regroupées. Les regroupements avec" -" une cardinalité importante devraient inclure une limite de séries afin " -"de limiter le nombre de séries récupérées et affichées." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 #, fuzzy -msgid "One or many columns to pivot as columns" -msgstr "Un ou plusieurs contrôles à transposer en colonnes" +msgid "Scatter Plot" +msgstr "Deck.gl - Nuage de points" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "Un ou plusieurs contrôles à transposer en colonnes" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Une ou plusieurs métriques à afficher" - -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "Une ou plusieurs colonnes existent déjà" - -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "Une ou plusieurs colonnes sont dupliquées" - -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "Une ou plusieurs colonnes n'existent pas" - -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Une ou plusieurs métriques existent déjà" - -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Une ou plusieurs métriques sont dupliquées" - -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Une ou plusieurs métriques n'existent pas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +#, fuzzy +msgid "Step type" +msgstr "Type du filtre" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." -msgstr "Il manque un ou plusieurs paramètres de configuration de la base." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Date de début" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "Un ou plusieurs paramètres de la requête sont malformés." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +#, fuzzy +msgid "Middle" +msgstr "Fichier" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." -msgstr "Il manque un ou plusieurs paramêtres dans la requête." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Date de fin" -#: superset/views/core.py:2029 -#, fuzzy +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -"Un ou plusieurs champs obligatoires manquent dans la requête. Merci de ré" -" essayer et de contacter votre administrateur si le problème persiste." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "Une ou plusieurs couches d'annotation ont échoué au chargement." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." -msgstr "Seules les instructions SELECT sont autorisées pour cette base de données." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +#, fuzzy +msgid "Stepped Line" +msgstr "Table de Séries temporelles" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +#, fuzzy +msgid "Id" +msgstr "id:" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +#, fuzzy +msgid "Name of the id column" +msgstr "Pas de colonne temporelle" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Seules les instructions `SELECT` sont autorisées" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "Seuls les panneaux sélectionnés seront affectés par ce filtre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "Seules les requêtes simples sont autorisées" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -"Seules les extensions de fichier suivantes sont autorisées : " -"%(allowed_extensions)s" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 #, fuzzy -msgid "Oops! An error occurred!" -msgstr "Un erreur s'est produite" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Opacité" +msgid "Radial" +msgstr "Spatial" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +#, fuzzy +msgid "Tree orientation" +msgstr "Documentation" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Ouvrir l'onglet Source de données" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Ouvrir dans SQL Lab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Ouvrir requête dans SQL Lab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +#, fuzzy +msgid "Orientation of tree" +msgstr "Source de l'Annotation" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -"Faire fonctionner la base de données en mode asynchrone, c'est-à-dire que" -" les requêtes sont exécutées dans un processus distant au lieu de les " -"exécuter sur le serveur Web lui-même. Cela suppose que vous avez " -"configuré un processus Celery ainsi qu'un backend de résultats. Se " -"référer aux docs d'installation pour plus d'informations." - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" -msgstr "Opérateur" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Opérateur indéfini pour l'agrégat: %(name)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +#, fuzzy +msgid "left" +msgstr "alerte" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." -msgstr "" -"Contenu CA_BUNDLE optionnel pour valider les requêtes HTTPS. Disponible " -"seulent pour certains moteurs de base de données." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +#, fuzzy +msgid "top" +msgstr "Arrêt" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 #, fuzzy -msgid "Optional d3 date format string" -msgstr "Informations additionnelles" +msgid "right" +msgstr "Hauteur" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 #, fuzzy -msgid "Optional d3 number format string" -msgstr "Informations additionnelles" +msgid "bottom" +msgstr "dttm" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" -msgstr "Avertissement optionnel à propos de l'utilisation de cette métrique" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -#, fuzzy -msgid "Options" -msgstr "%s option(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 #, fuzzy -msgid "Ordering" +msgid "descendant" msgstr "Tri décroissant" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -#, fuzzy -msgid "Orientation" -msgstr "Documentation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 #, fuzzy -msgid "Orientation of bar chart" -msgstr "Source de l'Annotation" +msgid "Symbol" +msgstr "boulon" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -#, fuzzy -msgid "Orientation of filter bar" -msgstr "Source de l'Annotation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 #, fuzzy -msgid "Orientation of tree" -msgstr "Source de l'Annotation" +msgid "Circle" +msgstr "Fichier" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 #, fuzzy -msgid "Original" -msgstr "Valeur d'origine" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Ordre de colonne de table original" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "Valeur d'origine" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" -msgstr "" - -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" -msgstr "Autres" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" -msgstr "" +msgid "Rectangle" +msgstr "Pourcentages" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 #, fuzzy -msgid "Outer edge of Pie chart" -msgstr "L'identifiant du graphique actif" +msgid "Diamond" +msgstr "et" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 #, fuzzy -msgid "Overlap" -msgstr "Carte du monde" +msgid "Pin" +msgstr "dans" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "" -"Superposer une ou plusieurs séries temporelles d'une période relative. " -"Attend des écarts temporels relatifs en langage naturel en anglais " -"(exemple : 24 hours, 7 days, 52 weeks, 365 days). Le texte libre est " -"supporté." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +#, fuzzy +msgid "Arrow" +msgstr "lignes" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 #, fuzzy -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +msgid "Symbol size" +msgstr "Taille de la bulle" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -"Superposer une ou plusieurs séries temporelles d'une période relative. " -"Attend des écarts temporels relatifs en langage naturel en anglais " -"(exemple : 24 hours, 7 days, 52 weeks, 365 days). Le texte libre est " -"supporté." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 #, fuzzy -msgid "Override time grain" -msgstr "Afficher l'origine du temps Druid" +msgid "Tree Chart" +msgstr "Nouveau graphique" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -#, fuzzy -msgid "Override time range" -msgstr "Modifier intervalle de temps" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Ecrase" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Modifier et explorer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +#, fuzzy +msgid "Key" +msgstr "Sankey" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Ecraser le Tableau de Bord [%s]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" -#: superset/views/database/forms.py:247 -#, fuzzy -msgid "Overwrite Duplicate Columns" -msgstr "Supprimer les colonnes en double" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Carte proportionnelle" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 #, fuzzy -msgid "Overwrite existing" -msgstr "Garder en édition" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Ecraser le texte dans l'éditeur avec une requête sur cette table" +msgid "Total" +msgstr "Totaux" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +#, fuzzy +msgid "Assist" +msgstr "Simple" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Propriétaire" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "Créer" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Propriétaires" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "Créer" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "Les propriétaires sont invalides" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Colonnes des séries temporelles" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -"Owners est une liste d'utilisateurs qui peuvent modifier le tableau de " -"bord." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name" -" or username." +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -"Owners est une liste d'utilisateurs qui peuvent modifier le tableau de " -"bord. Interrogeable par nom ou nom d'utilisateur." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Chercher tous les graphiques" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Méthode de ré-échantillonnage Pandas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Chargement ..." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Règle de ré-échantillonnage Pandas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Coordonnées parallèles" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +#, fuzzy +msgid "Handlebars" +msgstr "alertes" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Erreur de paramètre" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +#, fuzzy +msgid "must have a value" +msgstr "Renseigner une valeur" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Paramètres" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#, fuzzy +msgid "Handlebars Template" +msgstr "Supprimer un template" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 #, fuzzy -msgid "Parameters " -msgstr "Paramètres" +msgid "Include time" +msgstr "Date de fin" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +#, fuzzy +msgid "Percentage metrics" +msgstr "Pourcentages" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "Parser les dates" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 #, fuzzy -msgid "Partition Chart" -msgstr "Diagramme de Partition" +msgid "Ordering" +msgstr "Tri décroissant" -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "Diagramme de Partition" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -#, fuzzy -msgid "Partition Limit" -msgstr "Diagramme de Partition" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Tri décroissant" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "Mot de passe" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 #, fuzzy -msgid "Paste content of service credentials JSON file here" -msgstr "Copier et coller ici le fichier de service .json en entier" +msgid "Query mode" +msgstr "Nom de la requête" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "Coller ici l'URL partageable de Google Sheet" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -#, fuzzy -msgid "Pattern" -msgstr "Mettre à jour" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -#, fuzzy -msgid "Percent Change" -msgstr "Pourcentages" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -#, fuzzy -msgid "Percentage" -msgstr "Pourcentages" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -#, fuzzy -msgid "Percentage change" -msgstr "Pourcentages" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 #, fuzzy -msgid "Percentage metrics" -msgstr "Pourcentages" +msgid "Range for Comparison" +msgstr "Comparaison de temps" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 #, fuzzy -msgid "Percentage threshold" -msgstr "Pourcentages" +msgid "Filters for Comparison" +msgstr "Comparaison de temps" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" -msgstr "Pourcentages" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Périodes" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Lignes" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 #, fuzzy -msgid "Periods must be a whole number" -msgstr "Les périodes doivent être des nombres entiers positifs" +msgid "Apply metrics on" +msgstr "Ma métrique" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 #, fuzzy -msgid "Person or group that has certified this chart." -msgstr "Groupe ou personne ayant certifié cette métrique" +msgid "Cell limit" +msgstr "Nombre de séries max" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 #, fuzzy -msgid "Person or group that has certified this dashboard." -msgstr "Groupe ou personne ayant certifié cette métrique" +msgid "Limits the number of cells that get retrieved." +msgstr "Limite le nombre de lignes qui sont affichées." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "Groupe ou personne ayant certifié cette métrique" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +#, fuzzy +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "" +"Métrique utilisée pour définir comment les séries principales sont triées" +" si une limite de série ou de ligne est définie. Si indéfini, la première" +" métrique sera utilisée (si approprié)." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "Physique" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +#, fuzzy +msgid "Aggregation function" +msgstr "Fonctions Python" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "Physique (table ou vue)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +#, fuzzy +msgid "Count" +msgstr "colonne" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Jeu de données physique" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +#, fuzzy +msgid "Count Unique Values" +msgstr "Trier les valeurs de filtre" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#, fuzzy +msgid "List Unique Values" +msgstr "Valeurs émises" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -"Choississez une granularité dans la section Temps ou décochez 'Inclure le" -" temps'" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Choisissez une métrique pour l'axe de gauche !" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "Partage de requête" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Choisissez une métrique pour l'axe de droite !" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Choisissez une métrique pour x, y, taille" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Choisissez une métrique à afficher" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Choisissez une métrique !" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +#, fuzzy +msgid "Minimum" +msgstr "minute" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." -msgstr "Choisissez un nom pour vous aider à identifier cette base de données." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -#, fuzzy -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -"Choisissez un alias pour l'affichage de cette base de données dans " -"Superset." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "Dernier" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Choisissez une granularité pour vos séries temporelles" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." -msgstr "Choisissez un titre pour votre annotation." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Choisissez au moins un champs pour [Séries]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Choisissez au moins une métrique" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Choisissez exactement 2 colonnes pour [Source / Target]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -"Choisissez une ou plusieurs colonnes qui doivent être montrées dans " -"l'annotation. Si vous n'en sélectionnez aucune, elles seront toutes " -"affichées." - -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Choisissez votre langage de balisage préféré" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -#, fuzzy -msgid "Pie Chart" -msgstr "Nouveau graphique" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -#, fuzzy -msgid "Pie shape" -msgstr "Voir exemples" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 #, fuzzy -msgid "Pin" -msgstr "dans" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Table pivot" - -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "L'opération de pivot nécessite au moins un agrégat" +msgid "Show rows subtotal" +msgstr "Pas de colonne" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "L'opération de pivot nécessite au moins un index" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" +msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 #, fuzzy -msgid "Pivoted" -msgstr "Édité" +msgid "Show columns total" +msgstr "Pas de colonne" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "Pas de colonne" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." -msgstr "" -"Merci de vérifier votre requête et de confirmer que tous les paramètres " -"du modèle sont entourés par des doubles accolades, par exemple, \"{{ ds " -"}}\". Puis ré essayez ." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +#, fuzzy +msgid "Combine metrics" +msgstr "Trier les métriques" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -"Veuillez corriger une erreur de syntaxe dans la requête près de " -"\"%(syntax_error)s\". Puis essayez de relancer la requête." -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -"Veuillez corriger une erreur de syntaxe dans la requête près de " -"\"%(server_error)s\". Puis essayez de relancer la requête." -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 #, fuzzy -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +msgid "Sort rows by" +msgstr "Trier par" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -"Veuillez corriger une erreur de syntaxe dans la requête près de " -"\"%(syntax_error)s\". Puis essayez de relancer la requête." -#: superset/viz.py:3234 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "Merci de choisir au moins un champ dans 'Grouper par' " +msgid "value ascending" +msgstr "Tri croissant" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Choisissez des métriques différentes pour les axes gauches et droits" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +#, fuzzy +msgid "value descending" +msgstr "Tri décroissant" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "Veuillez confirmer" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Veuillez entrer une URI SQLAlchemy pour tester" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "Veuillez saisir un nom d'ensemble de filtre" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "Veuillez re-saisir le mot de passe." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +#, fuzzy +msgid "Sort columns by" +msgstr "Pas de colonne" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -#, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "Contactez le propriétaire du graphique pour obtenir de l'aide." -msgstr[1] "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "Sauver votre requête pour pouvoir la partager" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -"Merci de sauvegarder votre graphique d'abord, créez ensuite un nouveau " -"rapport email." -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -"Merci de sauvegarder votre tableau de bord d'abord, créez ensuite un " -"nouveau rapport email." -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -"Merci de sélectionner à la fois un Dataset et un type de graphique pour " -"continuer" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Utilisez 3 libellés de métrique différents" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +#, fuzzy +msgid "Conditional formatting" +msgstr "Informations additionnelles" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "Plugins" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -#, fuzzy -msgid "Point Color" -msgstr "Couleur fixe" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Table pivot" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -#, fuzzy -msgid "Point Size" -msgstr "Taille de la bulle" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" +msgstr "Aucun enregistrement trouvé" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "Maintenir Shift + Clic pour trier plusieurs colonnes" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Totaux" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 #, fuzzy -msgid "Points" -msgstr "Composants" +msgid "Timestamp format" +msgstr "Format date/timestamp invalide" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 #, fuzzy -msgid "Polygon Column" -msgstr "Ma colonne" +msgid "Search box" +msgstr "Recherche" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 #, fuzzy -msgid "Polygon Encoding" -msgstr "Envoi d'un rapport" +msgid "Whether to include a client-side search box" +msgstr "S'il faut inclure un filtre de temps" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 #, fuzzy -msgid "Polygon Settings" -msgstr "Paramètres de planification" +msgid "Cell bars" +msgstr "Tous les graphiques" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "Retirer le lien de l'onglet" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "Populaires" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "Remplissez \"Valeur par défaut\" pour activer ce contrôle" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -#, fuzzy -msgid "Port" -msgstr "rapport" - -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "Le port %(port)s sur l'hôte \"%(hostname)s\" a refusé la connexion." - -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "JSON des positions" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" -msgstr "Propulsé par Apache Superset" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" -msgstr "Pre-filtre" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +#, fuzzy +msgid "Customize columns" +msgstr "Pas de colonne temporelle" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "Valeurs de pre-filtre disponibles" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" -msgstr "Un pré-filtre est obligatoire" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "" -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -"Prédicat appliqué à la récupération des valeurs distinctes pour remplir " -"le filtre de contrôle des composants. Supporte la syntaxe Jinja. " -"S'applique uniquement si `Activer le filtre` est coché." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -#, fuzzy -msgid "Predictive" -msgstr "Actif" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 #, fuzzy -msgid "Predictive Analytics" -msgstr "Analyses avancées" +msgid "entries" +msgstr "Séries" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Prévisualisation" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Prévisualisation : `%s`" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Précédent" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -#, fuzzy -msgid "Previous Line" -msgstr "Précédent" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -#, fuzzy -msgid "Primary" -msgstr "Vendredi" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 #, fuzzy -msgid "Primary Metric" -msgstr "Ma métrique" +msgid "Word Rotation" +msgstr "Ajouter une annotation" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 #, fuzzy -msgid "Primary key" -msgstr "Vendredi" +msgid "random" +msgstr "et" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +#, fuzzy +msgid "square" +msgstr "le trimestre dernier" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 #, fuzzy -msgid "Private Key & Password" -msgstr "Réinitialiser mon mot de passe" +msgid "offline" +msgstr "Hors ligne" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy -msgid "Private Key Password" -msgstr "Réinitialiser mon mot de passe" +msgid "failed" +msgstr "Echec" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 #, fuzzy -msgid "Proceed" -msgstr "rouge" +msgid "pending" +msgstr "Avertissement" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Profil" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" +msgstr "récupération" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Image de profil fournie par Gravatar" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "running" +msgstr "En cours" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "Ajouter" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "Succès" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "La requête ne peut pas être chargée" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" +"Votre requête a été planifiée. Pour voir les détails de votre requête, " +"naviguer vers Requêtes sauvegardées" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "Feuilles partagées de manière publique ou privée" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Votre requête ne peut pas être planifiée" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "Seulement les feuilles paratagées publiques" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Echec lors de la récupération des résultats" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Publié" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Erreur inconnue" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -#, fuzzy -msgid "Purple" -msgstr "Règle" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "La requête a été arrêtée." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" +"Impossible de migrer l'état du schéma de la table dans le backend. " +"Superset réessayera plus tard. Veuillez contacter votre administrateur si" +" le problème persiste." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" +"Impossible de migrer l'état de la requête dans le backend. Superset " +"réessayera plus tard. Veuillez contacter votre administrateur si le " +"problème persiste." -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Mettez votre code ici" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Python datetime string pattern" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Impossible de migrer l'état de l'éditeur de requêtes dans le backend. " +"Superset réessayera plus tard. Veuillez contacter votre administrateur si" +" le problème persiste." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" +"Impossible d'ajouter une table dans le backend. Veuillez contacter votre " +"administrateur." -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "Trimestre" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 #, python-format -msgid "Quarters %s" -msgstr "Trimestres %s" +msgid "Copy of %s" +msgstr "Copie de %s" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "requêtes" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" +"Une erreur s'est produite en positionnant l'onglet actif. Veuillez " +"contacter votre administrateur." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Requête" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Une erreur s'est produite lors de la récupération de l'état de l'onglet" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" +"Une erreur s'est produite en supprimant l'onglet. Veuillez contacter " +"votre administrateur." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -#, fuzzy -msgid "Query A" -msgstr "requête" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -#, fuzzy -msgid "Query B" -msgstr "requête" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "" +"Une erreur s'est produite en supprimant la requête. Veuillez contacter " +"votre administrateur." -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Historiques des requêtes" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Votre requête n'a pas pu être enregistrée" -#: superset/commands/exceptions.py:142 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 #, fuzzy -msgid "Query does not exist" -msgstr "Le graphique n'existe pas" +msgid "Your query was not properly saved" +msgstr "Votre requête a été enregistrée" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "Historiques des requêtes" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Votre requête a été enregistrée" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -#, fuzzy -msgid "Query imported" -msgstr "Nom de la requête" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Votre requête a été mise à jour" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Requête dans un nouvel onglet" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Votre requête n'a pas pu être mise à jour" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "La requête est trop complexe et trop longue à exécuter." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." +msgstr "" +"Une erreur s'est produite en stockant la requête dans le backend. Pour " +"éviter de perdre vos modifications, sauver votre requête en utilisant le " +"bouton \"Enresigtrer requête\"." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -#, fuzzy -msgid "Query mode" -msgstr "Nom de la requête" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "" +"Une erreur s'est produite lors de l'extraction des méta-données de la " +"table. Veuillez contacter votre administrateur." -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Nom de la requête" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "" +"Une erreur s'est produite en développant le schéma de la table. Veuillez " +"contacter votre administrateur." -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Prévisualisation de la requête" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "" +"Une erreur s'est produite en repliant le schéma de la table. Veuillez " +"contacter votre administrateur." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "La requête a été arrêtée" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Une erreur s'est produite en enlevant le schéma de la table. Veuillez " +"contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "La requête a été arrêtée." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Requête partagée" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "TYPE INTERVALLE" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "La requête ne peut pas être chargée" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -#, fuzzy -msgid "RGB Color" -msgstr "Couleur fixe" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Les graphiques n'ont pas pu être supprimés." +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Une erreur s'est produite lors de la récupération des noms des fonctions." + +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" -#: superset/row_level_security/commands/exceptions.py:25 +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 #, fuzzy -msgid "RLS Rule not found." -msgstr "Planification de rapport introuvable." +msgid "Primary key" +msgstr "Vendredi" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 #, fuzzy -msgid "Radar Chart" -msgstr "Enregistrer un graphique" +msgid "Index" +msgstr "Personnel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Estimer le coût estimé de la requête sélectionnée" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -#, fuzzy -msgid "Radial" -msgstr "Spatial" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Estimer le coût" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Estimation coût" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -#, fuzzy -msgid "Radius in meters" -msgstr "Paramètres" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Créer une source de données et ouvrir un nouvel onglet" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Un erreur s'est produite" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" -msgstr "A été exécuté %s" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Explorer le résultat dans la vue d'exploration des données" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 #, fuzzy -msgid "Range" -msgstr "Gestion" +msgid "explore" +msgstr "Explorer" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" -msgstr "Filtre d'intervalle" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +#, fuzzy +msgid "Create Chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "SQL source" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "Lancer la requête SQL" + +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Lancer la requête" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 #, fuzzy -msgid "Ranges" -msgstr "Gestion" +msgid "Run current query" +msgstr "Lancer la requête" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Arrêter la requête" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Nouvel onglet" + +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 #, fuzzy -msgid "Ranking" -msgstr "Avertissement" +msgid "Previous Line" +msgstr "Précédent" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 #, fuzzy -msgid "Ratio" -msgstr "Durée" +msgid "Format SQL" +msgstr "Format D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "dans" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" -msgstr "Prêt à vérifier les filtres dans ce tableau de bord ?" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" -msgstr "Rebuild" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#, fuzzy +msgid "Run a query to display query history" +msgstr "Lancer une requête pour afficher les résultats" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "Activité récente" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +#, fuzzy +msgid "LIMIT" +msgstr "Nombre de lignes max" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "" -"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " -"récemment créés apparaîtront ici" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Etat" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "" -"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " -"récemment modifiés apparaîtront ici" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#, fuzzy +msgid "Started" +msgstr "Etat" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "Dernière modification" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Durée" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "" -"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " -"récemment consultés apparaîtront ici" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Résultats" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Récents" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Actions" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Les destinataires sont séparés par \",\" ou \";\"" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Succès" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "Tags recommandés" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Echec" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Nombre d'enregistrements" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "En cours" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 #, fuzzy -msgid "Rectangle" -msgstr "Pourcentages" - -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "" -"Redirige à cet endpoint quand on clique sur la table depuis la liste des " -"tables" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "" +msgid "Fetching" +msgstr "récupération" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Hors ligne" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Programmé" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" -msgstr "Se référér à" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "Statut inconnu" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." -msgstr "Les colonnes référencées sont indisponibles dans la DataFrame." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Éditer" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "Résultats de recherche" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#, fuzzy +msgid "View" +msgstr "Prévisualisation" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Forcer à rafraîchir" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Prévisualiser les données" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Rafraichir le tableau de bord" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Ecraser le texte dans l'éditeur avec une requête sur cette table" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Fréquence de rafraichissement" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Lancer la requête dans une nouvelle fenêtre" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Intervalle d'actualisation" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Supprimer la requête des logs" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -#, fuzzy -msgid "Refresh interval saved" -msgstr "Intervalle d'actualisation" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -#, fuzzy -msgid "Refresh table list" -msgstr "Forcer à actualiser les données" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Sauver et explorer" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -#, fuzzy -msgid "Refresh tables" -msgstr "Forcer à actualiser les données" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Modifier et explorer" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "Rafraichir les valeurs par défaut" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" -msgstr "Rafraîchissement en cours" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Télécharger en CSV" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -#, fuzzy -msgid "Refreshing columns" -msgstr "Colonnes des séries temporelles" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "Copier vers le presse-papier" -#: superset-frontend/src/explore/constants.ts:78 -#, fuzzy -msgid "Regex" -msgstr "vert" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Filtrer les résultats" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -#, fuzzy +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -"Les filtres réguliers ajoutent des clauses WHERE aux requêtes si un " -"utilisateur appartient à un profil référencé dans le filtre. Les filtres " -"de base appliquent les filtres à toutes les requêtes sauf pour les " -"profils définis dans le filtre, et peuvent être utilisés pour définir ce " -"que les utilisateurs peuvent voir si aucun filtre RLS au sein d'un groupe" -" de filtres ne s'appliquent à eux." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -#, fuzzy -msgid "Relational" -msgstr "Durée" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "Le nombre de lignes affichées est limité à %(rows)d par la requête" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" +"Le nombre de lignes affichées est limité à %(rows)d par la limite de la " +"liste déroulante." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "Date/Heure Relative" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "Période relative" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "" +"Le nombre de lignes affichées est limité à %(rows)d par la requête et par" +" la limite de la liste déroulante." -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Quantité relative" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "%(rows)d lignes retournées" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -#, fuzzy -msgid "Reload" -msgstr "rouge" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, fuzzy, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "" +"Le nombre de lignes affichées est limité à %(rows)d par la limite de la " +"liste déroulante." -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "Me le rappeler dans 24 heures" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s Erreur" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "Supprimer" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Suivre le job" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 #, fuzzy -msgid "Remove cross-filter" -msgstr "Pre-filtre" +msgid "See query details" +msgstr "requêtes sauvegardées" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "Supprime les filtres invalides" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "La requête a été arrêtée" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "Supprimer élément" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Erreur de base de données" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Supprimer la requête des logs" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "a été créé" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Supprimer la Prévisualisation de la table" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Requête dans un nouvel onglet" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "Colonnes supprimées : %s" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "La requête n'a pas retourné de résultat" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Renommer l'onglet" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Prévisualisation des données" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -#, fuzzy -msgid "Rendering" -msgstr "Avertissement" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Résultats de recherche" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "Remplacer" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Arrêt" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -#, fuzzy -msgid "Report" -msgstr "rapport" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Exécuter la sélection" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Exécuter" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Arrêter l'exécution (Ctrl + x)" -#: superset-frontend/src/components/ReportModal/index.tsx:281 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 #, fuzzy -msgid "Report Name" -msgstr "Nom du rapport" +msgid "Stop running (Ctrl + e)" +msgstr "Arrêter l'exécution (Ctrl + x)" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "La planification de rapport n'a pas pu être créée." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Exécuter la requête (Ctrl + Return)" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "La planification de rapport n'a pas pu être supprimée." +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Enregistrer" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "La planification de rapport n'a pas pu être mise à jour." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +#, fuzzy +msgid "Untitled Dataset" +msgstr "Éditer le jeu de données" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "La planification de rapport n'a pas être supprimée." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -"L'exécution de la planification de rapport a échoué à la génération d'un " -"csv." -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -"L'exécution de la planification de rapport a échoué à la génération d'un " -"dataframe." -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "" -"L'exécution de la planification de rapport a échoué à la génération de la" -" copie d'écran." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Enregistrer comme nouveau" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "" -"L'exécution de la planification de rapport a rencontré une erreur " -"inattendue." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +#, fuzzy +msgid "Overwrite existing" +msgstr "Garder en édition" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "" -"La planification de rapport est toujours en cours d'exécution, refus de " -"re-traiter." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +#, fuzzy +msgid "Select or type dataset name" +msgstr "Sélectionnez la base de données ou tapez le nom de la table" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "Le log de la planification de rapport n'a pas pu être élagué." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +#, fuzzy +msgid "Existing dataset" +msgstr "Jeu de données manquant" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "Planification de rapport introuvable." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +#, fuzzy +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "Les paramètres des planification de rapport sont invalides." +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Indéfini" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "La planification de rapport a atteint un timeout d'exécution." +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +#, fuzzy +msgid "Save dataset" +msgstr "Changer de jeu de données" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "Etat du programme de rapport introuvable" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Enregistrer sous" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Sauvegarder la requête" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Annuler" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Mettre à jour" + +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Label pour votre requête" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" -msgstr "Rapporter un BUG" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Ecrire une description à votre requête" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Le rapport a échoué" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "Nom du rapport" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Plannifier une requête" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "Planification de rapport" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Plannifeir" -#: superset/reports/commands/exceptions.py:273 -#, fuzzy -msgid "Report schedule client error" -msgstr "Erreur inattendue du programme de rapport" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Il y avait une erreur avec vore requête" -#: superset/reports/commands/exceptions.py:267 -#, fuzzy -msgid "Report schedule system error" -msgstr "Erreur inattendue du programme de rapport" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Sauver votre requête pour pouvoir la partager" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "Erreur inattendue du programme de rapport" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Copier le lien de la requête vers le presse-papier" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Envoi d'un rapport" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Sauver la requête pour permettre cette fonction" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Rapport envoyé" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Copier le lien" -#: superset-frontend/src/reports/actions/reports.js:121 -#, fuzzy -msgid "Report updated" -msgstr "Le rapport a échoué" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "Pas de résultat existant trouvé, re-jouez votre requête" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Rapports" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "Lancer une requête pour afficher les résultats" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -#, fuzzy -msgid "Repulsion" -msgstr "Expression" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Prévisualisation : `%s`" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" -msgstr "" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Historiques des requêtes" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Besoin de permissions" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Planifier la requête de façon périodique" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "La requête est incorrecte : %(error)s" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Vous devez d'abord exécuter la requête avec succès" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "La requête n'est pas JSON" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Complétion automatique" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "Il manque un champ de donnée dans la requête." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "Autoriser CREATE TABLE AS" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -#, fuzzy -msgid "Request timed out" -msgstr "La requête n'est pas JSON" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "CREATE VIEW AS" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Requis" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Estimer le coût avant d'exécuter une requête" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -#, fuzzy -msgid "Resample" -msgstr "Voir exemples" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 #, fuzzy -msgid "Resample method should in " -msgstr "Méthode de ré-échantillonnage Pandas" +msgid "Select a database to write a query" +msgstr "Sélectionnez la base de données ou tapez le nom de la table" -#: superset/utils/pandas_postprocessing/resample.py:43 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Créer" + +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Resample operation requires DatetimeIndex" -msgstr "L'opération de pivot nécessite au moins un index" +msgid "Collapse table preview" +msgstr "Supprimer la Prévisualisation de la table" -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Reset" -msgstr "date" +msgid "Expand table preview" +msgstr "Supprimer la Prévisualisation de la table" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 msgid "Reset state" msgstr "Réinitialiser l'état" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." -msgstr "" - -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "Base de données non trouvée." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Entrée un nouveau titre pour l'onglet" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Restaurer le Filtre" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Fermer l'onglet" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Résultats" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Renommer l'onglet" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" -msgstr "Résultats" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Etendre la barre d'outil" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "Le backend des résultats n'est pas configuré." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Masquer la barre d'outil" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" -"Le backend des résultats pour les requêtes asynchrones n'est pas " -"configuré." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Fermer tous les autres onglets" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "Retour au datetime spécifique." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Dupliquer l'onglet" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 #, fuzzy -msgid "Reverse Lat & Long" -msgstr "Inverser lat/long " +msgid "Add a new tab" +msgstr "Ajouter un nouvelle base de données ?" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "Inverser lat/long " +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Nouvel onglet (Ctrl + q)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Nouvel onglet (Ctrl + t)" + +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" msgstr "" +"Une erreur s'est produite lors de l'extraction des méta-données de la " +"table" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -#, fuzzy -msgid "Right" -msgstr "Hauteur" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Copier la requête de partition vers le presse-papier" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -#, fuzzy -msgid "Right Axis Format" -msgstr "Mesure de l'axe de droite" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "dernière partition :" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -#, fuzzy -msgid "Right Axis Metric" -msgstr "Mesure de l'axe de droite" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Clefs pour la table" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Mesure de l'axe de droite" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Vue des clefs et index (%s)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Ordre de colonne de table original" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "Valeur droite" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Trier les colonnes alphabétiquement" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Copier l'étape SELECT vers le presse-papier" -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "Profil" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Voir l'ordre CREATE VIEW" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "" -"Le profil %(r)s a été étendu pour donner l'accès à la source de données " -"%(ds)s" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "ordre CREATE VIEW" -#: 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Profils" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Supprimer la Prévisualisation de la table" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 #, fuzzy -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." -msgstr "" -"Roles est une liste qui défini ceux qui accède au tableau de bord .Donner" -" un droit d'accès à un tableau de bord surpasse les contrôles de droit de" -" niveau jeu de donnée. Si roles n'est pas défini, le tableau de bord est " -"accessible à tous les profils." +msgid "Assign a set of parameters as" +msgstr "Les paramètres du jeu de données sont invalides." + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "" -#: superset/views/dashboard/mixin.py:65 -#, fuzzy -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -"Roles est une liste qui défini ceux qui accède au tableau de bord .Donner" -" un droit d'accès à un tableau de bord surpasse les contrôles de droit de" -" niveau jeu de donnée. Si roles n'est pas défini, le tableau de bord est " -"accessible à tous les profils." -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Profils à donner" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 #, fuzzy -msgid "Rolling Function" -msgstr "Fonction de fenêtre glissante" +msgid "Jinja templating" +msgstr "Modifier un template" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 #, fuzzy -msgid "Rolling Window" -msgstr "Fenêtre glissante" +msgid "syntax." +msgstr "Syntaxe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Fonction de fenêtre glissante" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Modifier les paramètres du modèle" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "Fenêtre glissante" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#, fuzzy +msgid "Parameters " +msgstr "Paramètres" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Certificat racine" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "JSON invalide" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Requête sans titre" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" -msgstr "" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#, fuzzy +msgid "Control" +msgstr "colonne" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "Avant" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 #, fuzzy -msgid "Round cap" -msgstr "Carte de pays" +msgid "After" +msgstr "Après" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Ligne" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Cliquer pour voir la différence" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "Sécurité de niveau ligne" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Modifié" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Changements de graphique" + +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Dernière modification par %s" -#: superset/views/database/forms.py:255 +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Données chargées mises en cache" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Chargé depuis le cache" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Cliquer pour forcer le rafraîchissement" + +#: superset-frontend/src/components/CachedLabel/index.tsx:51 #, fuzzy -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" -msgstr "" -"Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première" -" ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." +msgid "Cached" +msgstr "mis en cache" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -"Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première" -" ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Nombre de lignes max" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "Lignes" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Lignes à lire" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "Aucun résultat avec ces paramètres" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "Règle" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" +msgstr "" + +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Une erreur s'est produite durant le chargement du SQL" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 #, fuzzy -msgid "Rule Name" -msgstr "Nom de la requête" +msgid "Sorry, an error occurred" +msgstr "Désolén une erreur s'est produite" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" -msgstr "" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +#, fuzzy +msgid "Updating chart was stopped" +msgstr "La requête a été arrêtée" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "Exécuter" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, fuzzy, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Une erreur s'est produite durant la modification du rapport : %s" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 #, fuzzy -msgid "Run a query to display query history" -msgstr "Lancer une requête pour afficher les résultats" +msgid "Network error." +msgstr "Erreur de paramètre" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" -msgstr "Lancer une requête pour afficher les résultats" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" +"Le filtre va être appliqué à tous les graphiques qui utilise cet ensemble" +" de données" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Exécuter dans SQL Lab" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "Vous pouvez juste cliquer sur le graphique pour appliquer le filtre" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Lancer la requête" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +#, fuzzy +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Pas de filtre dans ce tableau de bord." -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "Exécuter la requête (Ctrl + Return)" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." +msgstr "Ce type de visualisation ne supporte pas le cross-filtering." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Lancer la requête dans une nouvelle fenêtre" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." +msgstr "Vous ne pouvez pas ajouter de filtre sur ce point de donnée" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Exécuter la sélection" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +#, fuzzy +msgid "Remove cross-filter" +msgstr "Pre-filtre" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "En cours" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" +msgstr "Ajouter un filtre" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "SAM" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "SEP" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "Utilise Columns" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL Copié !" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#, fuzzy +msgid "No columns found" +msgstr "Aucun colonne compatible trouvée" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "Expression SQL" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Vous n'avez pas les permission pour modifier ce graphique" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "Vue SQL Lab" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#, fuzzy +msgid "Edit chart" +msgstr "Modifier le graphique" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Fermer" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "Requête SQL" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" +msgstr "Trier par %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "Expression SQL" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Une erreur s'est produite lors de la récupération des schémas" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "requête SQL" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Résultats" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "URI SQLAlchemy" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -#, fuzzy -msgid "SSH Password" -msgstr "Mot de passe" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 #, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "Le graphique n'a pas pu être supprimé." +msgid "Formatting" +msgstr "Formatage adapté" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 #, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "Le graphique n'a pas pu être mis à jour." +msgid "Formatted value" +msgstr "Valeurs émises" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 #, fuzzy -msgid "SSH Tunnel not found." -msgstr "Template CSS non trouvé." +msgid "No rows were returned for this dataset" +msgstr "Aucun résultat avec ces paramètres" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 #, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "Les paramètres du graphique sont invalides." +msgid "Reload" +msgstr "rouge" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "Copier" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "Le mode SSL \"require\" sera utilisé." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Copier vers le presse-papier" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "DEBUT (INCLUSIVE)" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "Copié vers le presse-papier !" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "Désolé, votre navigateur ne supporte pas la copie. Utilisez Ctrl/Cmd + C!" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -#, fuzzy -msgid "STRING" -msgstr "Avertissement" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "chaque" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "DIM" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "chaque mois" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "chaque jour du mois" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "jour du mois" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" -msgstr "Exemples" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "chaque jour de la semaine" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "Le jeu de données n'a pas pu être créé." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "jour de la semaine" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "Le jeu de données n'a pas pu être créé." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "chaque heure" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" +msgstr "chaque minute" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minute" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "reboot" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -#, fuzzy -msgid "Satellite" -msgstr "Filtre de date" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Chaque" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "dans" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "sur" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "et" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "à" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "minute(s)" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Expression Cron invalide" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Effacer" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Dimanche" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Lundi" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Mardi" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Mercredi" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Jeudi" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Vendredi" #: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 msgid "Saturday" msgstr "Samedi" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Enregistrer" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Janvier" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Février" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Mars" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Sauver et explorer" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "Avril" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Sauvegarder et aller au tableau de bord" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Mai" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -#, fuzzy -msgid "Save & go to new dashboard" -msgstr "Sauvegarder et aller au tableau de bord" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Juin" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Enregister (écrase)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Juillet" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Enregistrer sous" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Aout" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -#, fuzzy -msgid "Save as Dataset" -msgstr "Choisissez un jeu de donnée" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "Septembre" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -#, fuzzy -msgid "Save as dataset" -msgstr "Choisissez un jeu de donnée" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Octobre" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Enregistrer comme nouveau" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "Novembre" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Enregistrer comme un nouveau graphique" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "Décembre" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "Enregistrer sous ..." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "DIM" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Enregistrer sous :" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "LUN" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -#, fuzzy -msgid "Save changes" -msgstr "Abandonner les modifications" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "MAR" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Enregistrer un graphique" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "MER" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Sauvegarder le Tableau de Bord" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "JEU" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -#, fuzzy -msgid "Save dataset" -msgstr "Changer de jeu de données" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "VEN" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Sauvegarder pour la session" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "SAM" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "JAN" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Sauvegarder la requête" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "FEV" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "Sauver la requête pour permettre cette fonction" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "MAR" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "AVR" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -#, fuzzy -msgid "Save to new dashboard" -msgstr "Sauvegarder et aller au tableau de bord" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "MAI" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Enregistré" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "JUI" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Requêtes sauvegardées" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "JUI" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" -msgstr "Expressions sauvegardées" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "AOU" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Métrique sauvegardée" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "SEP" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Requêtes sauvegardées" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "OCT" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Les requêtes sauvegardées ne peuvent pas être supprimées." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "Requête sauvegardée introuvable." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "DEC" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "Les paramètres des requêtes sauvegardées sont invalides." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "Une erreur s'est produite lors de la récupération des schémas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +#, fuzzy +msgid "Select database or type to search databases" +msgstr "Sélectionnez la base de données ou tapez le nom de la table" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Forcez à actualiser la liste des schémas" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +#, fuzzy +msgid "Select schema or type to search schemas" +msgstr "Sélectionnez le schéma ou tapez le nom du schéma" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 #, fuzzy -msgid "Scatter Plot" -msgstr "Deck.gl - Nuage de points" +msgid "No compatible schema found" +msgstr "Aucun colonne compatible trouvée" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" +"Attention ! Changer le jeu de données peut mettre en erreur le graphique " +"si la métadonnées n'existe pas." -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "Plannifeir" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" +"Changer le jeu de données peut mettre en erreur le graphiquesi celui-ci " +"s'appuie sur des colonnes ou une métadonnées qui n'existe pas dans le jeu" +" de données cible" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "jeu de données" -#: superset-frontend/src/components/ReportModal/index.tsx:211 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy -msgid "Schedule a new email report" -msgstr "Planifier un rapport par e-mail" +msgid "Successfully changed dataset!" +msgstr "Changer de jeu de données" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "Planifier un rapport par e-mail" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Connexion" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Plannifier une requête" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +#, fuzzy +msgid "Swap dataset" +msgstr "jeu de données" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Paramètres de planification" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#, fuzzy +msgid "Proceed" +msgstr "rouge" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "Planifier la requête de façon périodique" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Attention !" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "Programmé" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Rechercher / Filtrer" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "Plannifié à (UTC)" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Ajouter un item" -#: superset/tasks/exceptions.py:24 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 #, fuzzy -msgid "Scheduled task executor not found" -msgstr "Etat du programme de rapport introuvable" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Schéma" +msgid "STRING" +msgstr "Avertissement" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" -msgstr "Timeout du cache de schéma" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +#, fuzzy +msgid "NUMERIC" +msgstr "Ma métrique" -#: superset/views/core.py:1186 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 #, fuzzy -msgid "Schema undefined" -msgstr "Indéfini" +msgid "DATETIME" +msgstr "Date/Heure" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -"Schéma, utilisé uniquement dans certaines bases de données comme " -"Postgres, Redshift et DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -#, fuzzy -msgid "Schemas allowed for File upload" -msgstr "Schémas autorisés pour le chargement de CSV" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Physique (table ou vue)" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" -msgstr "Périmètre" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "SQL virtuel" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "Portée" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Type de donnée" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +#, fuzzy +msgid "Advanced data type" +msgstr "Données chargées mises en cache" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +#, fuzzy +msgid "Advanced Data type" +msgstr "Données chargées mises en cache" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Recherche" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Format Datetime" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Rechercher / Filtrer" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Le motif du format de timestamp. Pour les chaines, utilisez " -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Chercher dans les métriques et les colonnes" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Python datetime string pattern" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" -msgstr "Chercher tous les graphiques" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr " Expression qui doit adhérer à " -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Rechercher toutes les options de filtrage" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -#, fuzzy -msgid "Search box" -msgstr "Recherche" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" +" standard pour s'assurer que l'ordre lexicographique\n" +" coïncide avec l'ordre chronologique. Si le format\n" +" de temps n’adhère pas à l'ISO 8601 standard\n" +" dont vous aurez besoin pour définir une expression " +"ou type\n" +" pour transformer une chaine en date ou " +"timestampNote\n" +" actuellement, les timezone ne sont pas gérées Si le" +" temps est stocké\n" +" en format epoch, mettez `epoch_s` ou `epoch_ms`. Si" +" aucun pattern\n" +" n'est spécifié, nous revenons à utiliser les " +"options par défauts\n" +" de niveau database / nom de colonne via l'extra " +"parameter." -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "Texte de recherche" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "Certifié Par" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -#, fuzzy -msgid "Search columns" -msgstr "Utilise Columns" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Groupe ou personne ayant certifié cette métrique" -#: superset-frontend/src/components/Table/index.tsx:206 -#, fuzzy -msgid "Search in filters" -msgstr "Rechercher / Filtrer" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Certifié par" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -#, fuzzy -msgid "Search tables" -msgstr "Profils utilisateurs" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Détails de certification" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Recherche..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Détails de la certification" -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "Seconde" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Est une Dimension" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 #, fuzzy -msgid "Secondary" -msgstr "5 secondes" +msgid "Default datetime" +msgstr "Valeur par défaut" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Filtrable" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 #, fuzzy -msgid "Secondary Metric" -msgstr "Basé sur une métrique" +msgid "" +msgstr "Colonne de temps" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" +msgstr "Sélectionner les propriétaires" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Colonnes modifiées : %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Colonnes supprimées : %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 #, python-format -msgid "Seconds %s" -msgstr "Secondes %s" +msgid "New columns added: %s" +msgstr "Nouvelles colonnes ajoutées : %s" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Sécurité" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Les métadonnées ont été synchronisées" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Sécurité" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Une erreur est survenue" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Sécurité" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Le nom de colonne [%s] est dupliqué" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Securité et accès" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Le nom de métrique [%s] est dupliqué" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, fuzzy, python-format -msgid "See all %(tableName)s" -msgstr "Explorer - %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "La colonne calculée [%s] nécessite une expression" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "Voir moins" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "Voir plus" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Simple" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -#, fuzzy -msgid "See query details" -msgstr "requêtes sauvegardées" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "URL par défaut" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Voir le schéma de la table" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" +"URL par défaut vers laquelle rediriger quand on accède depuisla page qui " +"liste les jeux de données" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" -msgstr "Sélectionner" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Remplir automatiquement les filtres" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Sélectionner..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "S'il faut remplir les options des filtres de saisie semi-automatique" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "Choisir la méthode de livraison" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Remplir automatiquement le prédicat de requête" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" -msgstr "Sélectionner un type de visualisation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" +"Quand vous utilisez les filtres de replissage automatique, cela peut être" +" utilisé pour améliorer la perfomance de chargement des valeurs. Utilisez" +" cette option pour appliquer un prédicat (clause WHERE) à la requête qui " +"sélectionne les valeurs. Typiquement, le but serait de limiter le " +"parcours en appliquant un filtre temporel sur un champ temporel " +"partitionné ou indexé." -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." -msgstr "Sélectionner un fichier en colonne à téléverser dans une base de données." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." +msgstr "" +"Donnée complémentaire pour spécifier une métadonnée de la table. Les " +"métadonnéesactuellement supportées sont `{ \"certification\": { " +"\"certified_by\": \"Data Platform Team\", \"details\": \"This table is " +"the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" " +"}`." -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." -msgstr "Sélectionner un fichier Excel à charger dans une base de données." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Cache timeout" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" -msgstr "Sélectionner une colonne" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +#, fuzzy +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "Le nombre de secondes avant l'expiration du cache" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" -msgstr "Sélectionner un tableau de bord" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Offset des heures" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -#, fuzzy -msgid "Select a database table and create dataset" -msgstr "Sélectionnez la base de données ou tapez le nom de la table" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" +"Nombre d'heures, négatif ou positif, pour décaler la colonne de temps. " +"Cela peut être utilisé pour passer du temps UTC au temps local." -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Select a database table." -msgstr "Supprimer une base de données" +msgid "Normalize column names" +msgstr "Pas de colonne temporelle" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 #, fuzzy -msgid "Select a database to connect" -msgstr "Une connexion non sécurisée avec la base de données a été arrêtée" +msgid "Always filter main datetime column" +msgstr "Colonne Datetime principale" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 #, fuzzy -msgid "Select a database to write a query" -msgstr "Sélectionnez la base de données ou tapez le nom de la table" +msgid "" +msgstr "Spatial" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 #, fuzzy -msgid "Select a dimension" -msgstr "Est une Dimension" +msgid "" +msgstr "Type de tri" -#: superset/views/database/forms.py:110 -#, fuzzy -msgid "Select a file to be uploaded to the database" -msgstr "Sélectionner un fichier CSV à charger dans une base de données." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Cliquez sur le cadenas pour apporter des modifications." -#: superset/views/database/forms.py:155 -#, fuzzy -msgid "Select a schema if the database supports this" -msgstr "" -"Spécifier un schéma (si la base de données soutient cette " -"fonctionnalités)." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Cliquez sur le cadenas pour empêcher d'autres modifications." -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Sélectionner un type de visualisation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "virtuel" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" -msgstr "Sélectionner les options d’agrégat" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Nom du jeu de donnée" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "Tout Dé-Sélectionner" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" +"Quand on indique du SQL, la source de données se comporte comme une vue. " +"Superset utilisera ce paramètre comme une sous-requête lors du " +"regroupement et du filtrage sur la requête parent générée." -#: superset-frontend/src/components/Table/index.tsx:205 -#, fuzzy -msgid "Select all items" -msgstr "Tout Dé-Sélectionner" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Physique" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" +"Pointeur vers une table physique (ou une vue). Gardez à l'esprit que le " +"graphique est associé à cette table logique de superset et que cette " +"table logique pointe vers la table physique décrite ici." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 #, fuzzy -msgid "Select chart" -msgstr "Tous les graphiques" +msgid "Metric Key" +msgstr "métrique" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#, fuzzy -msgid "Select charts" -msgstr "Tous les graphiques" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" -msgstr "Sélectionner un schéma de couleurs" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "Format D3" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" -msgstr "Sélectionner la colonne" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 #, fuzzy -msgid "Select current page" -msgstr "Selectionnee les filtres parents" +msgid "Select or type currency symbol" +msgstr "Sélectionner ou renseigner une valeur" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -#, fuzzy -msgid "Select database & schema" -msgstr "Voir le schéma de la table" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "Avertissement" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -#, fuzzy -msgid "Select database or type to search databases" -msgstr "Sélectionnez la base de données ou tapez le nom de la table" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Avertissement optionnel à propos de l'utilisation de cette métrique" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Select database table" -msgstr "Supprimer une base de données" +msgid "" +msgstr "Métrique sauvegardée" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Faites attention." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" +"La modification de ces paramètres affectera tous les graphiques qui " +"utilisent ce jeu de données, y compris les graphiques qui appartiennent à" +" d'autres personnes." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "Utiliser l'ancien éditeur de source de données" - -#: superset-frontend/src/components/ImportModal/index.tsx:445 -#, fuzzy -msgid "Select file" -msgstr "Selectionner un filtre" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Synchroniser les colonnes de la source" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "Sélectionner un filtre" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Colonnes calculées" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "Sélectionne la première valeur du filtre par défaut" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "Sélectionner l'opérateur" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Paramètres" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" -msgstr "Sélectionner ou renseigner une valeur" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "Le jeu de données a été sauvegardé" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Select or type dataset name" -msgstr "Sélectionnez la base de données ou tapez le nom de la table" +msgid "Error saving dataset" +msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "Sélectionner les propriétaires" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." +msgstr "" +"La configuration du jeu de donnée indiqué ici\n" +" s'applique à tous les graphiques utilisant ce jeu de " +"données.\n" +" Rappelez vous que changer ces paramètres\n" +" peut affecter d'autres graphiques\n" +" de manière non voulue." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" -msgstr "Sélectionner les métriques sauvegardées" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Êtes vous sur de vouloir sauvegarder et appliquer les modifications ?" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -#, fuzzy -msgid "Select schema or type to search schemas" -msgstr "Sélectionnez le schéma ou tapez le nom du schéma" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Confirmez la sauvegarde" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -#, fuzzy -msgid "Select scheme" -msgstr "Sélectionner un schéma de couleurs" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "OK" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Sélectionner la date de début et la date de fin" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Éditer le jeu de données " -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "Sélectionner un objet" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Utiliser l'ancien éditeur de source de données" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" + +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "EFFACER" + +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "effacer" + +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Tapez \"%s\" pour confirmer" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 #, fuzzy -msgid "Select table or type to search tables" -msgstr "Sélectionnez la table ou le nom de type de table" +msgid "More" +msgstr "Voir plus" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -#, fuzzy -msgid "Select the Annotation Layer you would like to use." -msgstr "Choisir le type de couche d'annotations" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Cliquer pour modifier" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." -msgstr "" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -#, fuzzy -msgid "Select the geojson column" -msgstr "Sélectionner une colonne" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +#, fuzzy +msgid "Manage your databases" +msgstr "Donner un nom à la base de données" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." -msgstr "" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +#, fuzzy +msgid "here" +msgstr "Partage de requête" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" -msgstr "Envoyer au format CSV" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Erreur inattendue" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" -msgstr "Envoyer comme PNG" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "Cela peut être déclenché par:" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" -msgstr "Envoyer comme texte" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." +msgstr "Contactez le propriétaire du graphique pour obtenir de l'aide." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Propriétaire du graphique : %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "Septembre" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" +msgstr "Cela peut être déclenché par:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s Erreur" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Séries" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Jeu de données manquant" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -#, fuzzy -msgid "Series Height" -msgstr "Nombre de séries max" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Voir plus" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -#, fuzzy -msgid "Series Limit Sort By" -msgstr "Nombre de séries max" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Voir moins" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -#, fuzzy -msgid "Series Limit Sort Descending" -msgstr "Tri décroissant" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Copier le message" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 #, fuzzy -msgid "Series Order" -msgstr "Séries" +msgid "Details" +msgstr "Totaux" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Series Style" -msgstr "Table de Séries temporelles" +msgid "This was triggered by:" +msgstr "Cela a été déclenché par:" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Vouliez-vous dire :" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Nombre de séries max" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s au lieu de \"%(undefinedParameter)s?\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -#, fuzzy -msgid "Series type" -msgstr "Type du filtre" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Erreur de paramètre" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" +"Erreur au chargement de cette visu. Les requêtes s'interrompent au bout " +"de %s secondes." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" +"Erreur au chargement de ces résultats. Les requêtes s'interrompent au " +"bout de %s secondes." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" -msgstr "Compte de service" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, fuzzy, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "Cela peut être déclenché par:" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Définir l'interval d'auto-refresh" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Erreur de timeout" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "Définir le mappage de filtre" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Cliquez pour favori ou non" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Contenu de cellule" + +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Set up an email report" -msgstr "Supprimer le rapport par e-mail" +msgid "Hide password." +msgstr "Réinitialiser mon mot de passe" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +#, fuzzy +msgid "Show password." +msgstr "Réinitialiser mon mot de passe" + +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "Paramètres" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "ECRASE" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +#, fuzzy +msgid "Database passwords" +msgstr "Port de la base de données" + +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "%s Mot de passe" + +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Partage de requête" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "Partager le graphique par e-mail" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" -msgstr "Partager le lien par mail" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Ecrase" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Requête partagée" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Importe" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -#, fuzzy -msgid "Shared query fields" -msgstr "requêtes sauvegardées" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Import %s" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Nom de la feuille" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +#, fuzzy +msgid "Select file" +msgstr "Selectionner un filtre" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "Maintenir Shift + Clic pour trier plusieurs colonnes" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Dernière mise à jour %s" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "La description courte doit être unique pour cette couche" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "Trier" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s Sélectionné" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Tout Dé-Sélectionner" + +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 +#: superset-frontend/src/components/ListView/ListView.tsx:447 #, fuzzy -msgid "Show Bubbles" -msgstr "Afficher les tables" +msgid "Try different criteria to display results." +msgstr "Lancer une requête pour afficher les résultats" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "Voir l'ordre CREATE VIEW" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +#, fuzzy +msgid "clear all filters" +msgstr "Rechercher toutes les options de filtrage" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Voir le Template CSS" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Pas de données" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Afficher le graphique" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s de %s" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Afficher la colonne" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "Start date" +msgstr "Changements de graphique" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Montrer les tableaux de bords" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "End date" +msgstr "Envoyer comme texte" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Afficher la base de données" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "Renseigner une valeur" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -#, fuzzy -msgid "Show Labels" -msgstr "Afficher les tables" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "Filtre" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "Afficher moins ..." +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "Sélectionner ou renseigner une valeur" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Afficher le log" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Dernière modification" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Modifié" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Créé par" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Créé le" + +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Afficher la métrique" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Sélectionner..." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy -msgid "Show Metric Names" -msgstr "Afficher la métrique" +msgid "Filter menu" +msgstr "Nom du filtre" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 +#: superset-frontend/src/components/Table/index.tsx:218 #, fuzzy -msgid "Show Range Filter" -msgstr "Filtre d'intervalle" - -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Montrer les requêtes sauvegardées" - -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Afficher les tables" +msgid "Reset" +msgstr "date" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 +#: superset-frontend/src/components/Table/index.tsx:219 #, fuzzy -msgid "Show Timestamp" -msgstr "Afficher la colonne temps" +msgid "No filters" +msgstr "Pas de filtre" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 +#: superset-frontend/src/components/Table/index.tsx:220 #, fuzzy -msgid "Show Total" -msgstr "Pas de colonne" +msgid "Select all items" +msgstr "Tout Dé-Sélectionner" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:221 +#, fuzzy +msgid "Search in filters" +msgstr "Rechercher / Filtrer" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:223 +#, fuzzy +msgid "Select current page" +msgstr "Selectionnee les filtres parents" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 +#: superset-frontend/src/components/Table/index.tsx:224 #, fuzzy -msgid "Show Value" -msgstr "Afficher les tables" +msgid "Invert current page" +msgstr "Pourcentages" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 +#: superset-frontend/src/components/Table/index.tsx:225 #, fuzzy -msgid "Show Values" -msgstr "Afficher les tables" +msgid "Clear all data" +msgstr "Effacer tout" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:226 +#, fuzzy +msgid "Select all data" +msgstr "Tout Dé-Sélectionner" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:228 +#, fuzzy +msgid "Expand row" +msgstr "Ligne d'en-tête" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 +#: superset-frontend/src/components/Table/index.tsx:229 #, fuzzy -msgid "Show all columns" -msgstr "Pas de colonne" +msgid "Collapse row" +msgstr "Tout réduire" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." -msgstr "Afficher tout ..." +#: superset-frontend/src/components/Table/index.tsx:230 +#, fuzzy +msgid "Click to sort descending" +msgstr "Tri décroissant" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:231 +#, fuzzy +msgid "Click to sort ascending" +msgstr "Cocher pour trier par ordre croissant" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +#: superset-frontend/src/components/TableSelector/index.tsx:187 #, fuzzy -msgid "Show chart description" -msgstr "Basculer la description du graphique" +msgid "List updated" +msgstr "le trimestre dernier" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -#, fuzzy -msgid "Show columns total" -msgstr "Pas de colonne" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "Il y a eu une erreur au chargement des tables" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Voir le schéma de la table" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 #, fuzzy -msgid "Show empty columns" -msgstr "Afficher la colonne temps" +msgid "Select table or type to search tables" +msgstr "Sélectionnez la table ou le nom de type de table" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Forcer à actualiser les données" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "" +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "Vous n'avez pas les permission pour modifier ce graphique" + +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Sélecteur de fuseau horaire" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 #, fuzzy -msgid "Show label" -msgstr "Afficher les tables" +msgid "Failed to save cross-filter scoping" +msgstr "Portée du filtre croisé" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" +"Espace insuffisant pour ce composant. Diminuez sa largeur ou augmentez la" +" largeur de la destination." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "On ne peut déplacer un onglet top level vers des onglets imbriqués" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -#, fuzzy -msgid "Show less columns" -msgstr "Afficher la colonne temps" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Ce graphique a été déplacé vers un autre champ d'application du filtre." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "Afficher moins ..." +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "Erreur à la récupération du statut favori de ce Tableau de Bord." -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Un problème est survenu lors de l'activation de ce tableau de bord." -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 #, fuzzy -msgid "Show password." -msgstr "Réinitialiser mon mot de passe" +msgid "This dashboard is now published" +msgstr "Ce tableau de bord est maintenant ${nowPublished}" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 #, fuzzy -msgid "Show percentage" -msgstr "Pourcentages" +msgid "This dashboard is now hidden" +msgstr "Modifier ce tableau de bord est interdit" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "Vous n'avez pas les droits pour modifier ce tableau de bord." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 #, fuzzy -msgid "Show progress" -msgstr "Propriétés du tableau de bord" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "" +msgid "[ untitled dashboard ]" +msgstr "Éditer le tableau de bord" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "Afficher la colonne temps" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Ce Tableau de Bord a été sauvegardé avec succès." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "Afficher la liste déroulante de la granularité de temps" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +#, fuzzy +msgid "Sorry, an unknown error occurred" +msgstr "Désolén une erreur s'est produite" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des graphiques " +"sauvegardés : " -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "Vous n'avez pas le droit de modifier ce tableau de bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." -msgstr "" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Impossible de récupérer tous les graphiques sauvegardés" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des graphiques " +"sauvegardés : " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" +"Une palette de couleur sélectionnée ici écrasera les couleurs appliquées " +"aux graphiques de ce tableau de bord" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "Affichage de %s sur %s" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Vous avez des modifications non sauvegardées." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "Glissez/Déposez des composants et des graphiques sur le tableau de bord" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" +"Vous pouvez créer un nouveau graphique ou utililser ceux existants à " +"partir du panneau de droite" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "Simple" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "Les métriques ad-hoc simples ne sont pas disponibles pour ce dataset" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -#, fuzzy -msgid "Single" -msgstr "Personnel" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Créer un nouveau graphique" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 #, fuzzy -msgid "Single Metric" -msgstr "Filtres par métrique" +msgid "Drag and drop components to this tab" +msgstr "Il n'y a pas de composant à ajouter dans cet onglet" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -#, fuzzy -msgid "Single Value" -msgstr "Valeur Unique" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "Il n'y a pas de composant à ajouter dans cet onglet" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 #, fuzzy -msgid "Single value" -msgstr "Valeur unique" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "Type de valeur unique" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "" +msgid "You can add the components in the edit mode." +msgstr "Vous pouvez ajouter les composants via mode edition" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" +msgstr "Modifier le tableau de bord" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" +"Il n'y a pas de définition de graphique associé à ce composanta-t-il été " +"supprimé ?" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "Sauter les lignes vides" - -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "Supprimer l'espace initial" - -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "Sauter des lignes" - -#: superset/views/database/forms.py:188 -#, fuzzy -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "Sauter les lignes vides au lieu des les interpréter comme des valeurs NaN." +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "Supprimez ce conteneur et sauvegardez pour supprimer ce message." -#: superset/views/database/forms.py:184 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 #, fuzzy -msgid "Skip spaces after delimiter" -msgstr "Supprimer l'espace après le délimiteur." - -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "" +msgid "Refresh interval saved" +msgstr "Intervalle d'actualisation" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Intervalle d'actualisation" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Fréquence de rafraichissement" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Êtes-vous certain de vouloir continuer ?" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Sauvegarder pour la session" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "Des profils n'existent pas" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Vous devez entrer un nom pour le nouveau Tableau de Bord" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -#, fuzzy -msgid "Something went wrong." -msgstr "Une erreur s'est produite. Ré essayez plus tard." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Sauvegarder le Tableau de Bord" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 #, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des " -"informations de cette base de données : %s" +msgid "Overwrite Dashboard [%s]" +msgstr "Ecraser le Tableau de Bord [%s]" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des graphiques " -"sauvegardés : " +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Enregistrer sous :" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Désolén une erreur s'est produite" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[nom du tableau de bord]" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "copier également les graphiques (dupliquer)" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 #, fuzzy -msgid "Sorry, an error occurred" -msgstr "Désolén une erreur s'est produite" +msgid "viz type" +msgstr "type de visualisation" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 #, fuzzy -msgid "Sorry, an unknown error occurred" -msgstr "Désolén une erreur s'est produite" +msgid "recent" +msgstr "date" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -#, fuzzy -msgid "Sorry, an unknown error occurred." -msgstr "Désolén une erreur s'est produite" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Créer un nouveau graphique" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Filtrer vos graphiques" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 #, fuzzy -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "Une erreur s'est produite. Ré essayez plus tard." +msgid "Filter charts" +msgstr "Filtrer vos graphiques" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "Une erreur s'est produite. Ré essayez plus tard." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "Trier par %s" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des graphiques " -"sauvegardés : " -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des graphiques " -"sauvegardés : " +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Ajouté" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "Désolé, votre navigateur ne doit pas supporter la copie." +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "Erreur inconnue" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Désolé, votre navigateur ne supporte pas la copie. Utilisez Ctrl/Cmd + C!" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Type" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" -msgstr "Trier" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Jeu de données" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -#, fuzzy -msgid "Sort Bars" -msgstr "Importer des graphiques" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Graphique superset" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -#, fuzzy -msgid "Sort Descending" -msgstr "Tri décroissant" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Vérifiez ce graphique dans le tableau de bord :" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" -msgstr "Trier les métriques" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -#, fuzzy -msgid "Sort Series Ascending" -msgstr "Tri croissant" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Chargé un modèle CSS" + +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Editeur CSS en ligne" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 #, fuzzy -msgid "Sort Series By" -msgstr "Trier par" +msgid "Collapse tab content" +msgstr "Contenu de cellule" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" +msgstr "Il n'y a pas de graphiques ajouté dans ce tableau de bord" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" +"Allez dans l'edition pour configurer le tableau de bord et ajouter des " +"graphiques" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Tri croissant" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Trier par" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" -msgstr "Trier par %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 #, fuzzy -msgid "Sort by metric" -msgstr "Trier les métriques" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Trier les colonnes alphabétiquement" +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "Une erreur s'est produite. Ré essayez plus tard." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 #, fuzzy -msgid "Sort columns by" -msgstr "Pas de colonne" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "Tri décroissant" +msgid "Sorry, something went wrong. Please try again." +msgstr "Une erreur s'est produite. Ré essayez plus tard." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" -msgstr "Trier les valeurs de filtre" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Trier les métriques" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -#, fuzzy -msgid "Sort rows by" -msgstr "Trier par" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" -msgstr "Type de tri" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Source" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 #, fuzzy -msgid "Source / Target" -msgstr "Nom source de données" - -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "SQL source" +msgid "Deactivate" +msgstr "Actif" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 #, fuzzy -msgid "Source category" -msgstr "Catégorie" +msgid "Save changes" +msgstr "Abandonner les modifications" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "Spatial" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "Date/Heure Spécifique" - -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "" -"Spécifier un schéma (si la base de données soutient cette " -"fonctionnalités)." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +#, fuzzy +msgid "Embed" +msgstr "Novembre" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Spécifier les colonnes en double comme\"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "Filtres croisés appliqués (%d)" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" +msgstr "Filtres appliqués (%d)" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" +"Ce tableau de bord est en train de se rafraîchir automatiquement ; le " +"prochain rafraîchissement sera dans %s." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -"Spécifier la version de la base de données. Ceci doit être utilisé avec " -"Presto afin d'autoriser l'estimation du coût de requête." +"Votre tableau de bord est trop gros.Merci de réduire sa taille avant de " +"sauvegarder." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 #, fuzzy -msgid "Split number" -msgstr "Numéro de version" +msgid "Add the name of the dashboard" +msgstr "Modifier le tableau de bord" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 #, fuzzy -msgid "Square kilometers" -msgstr "Filtre parent" +msgid "Dashboard title" +msgstr "tableau de bord" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 #, fuzzy -msgid "Square meters" -msgstr "Paramètres" +msgid "Undo the action" +msgstr "Exécuter la sélection" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -#, fuzzy -msgid "Square miles" -msgstr "requêtes" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 #, fuzzy -msgid "Stack" -msgstr "Backend" +msgid "Discard" +msgstr "tableau de bord" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Éditer le tableau de bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" msgstr "" +"Une erreur s'est produite lors de l'extraction des modèles de CSS " +"disponibles" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" +msgstr "Rafraîchissement en cours" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -#, fuzzy -msgid "Stacked" -msgstr "Backend" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Tableau de bord superset" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Vérifiez ce tableau de bord : " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Rafraichir le tableau de bord" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "Sortir du mode plein écran" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "Passer en plein écran" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Date de début" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Modifier les propriétés" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Modifier le CSS" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "Télécharger" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 #, fuzzy -msgid "Start (Longitude, Latitude): " -msgstr "Invalide Longitude/Latitude" +msgid "Export to PDF" +msgstr "Exporter au format YAML" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 #, fuzzy -msgid "Start Longitude & Latitude" -msgstr "Invalide Longitude/Latitude" +msgid "Download as Image" +msgstr "Télécharger comme image" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" -msgstr "Démarrer la Vérification" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Partage de requête" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -#, fuzzy -msgid "Start angle" -msgstr "Changements de graphique" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" +msgstr "Copier le lien dans le presse-papiers" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "Début à (UTC)" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "Partager le lien par mail" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 #, fuzzy -msgid "Start date" -msgstr "Changements de graphique" +msgid "Embed dashboard" +msgstr "Sauvegarder le Tableau de Bord" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "Date de début incluse de l'intervalle de temps" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +#, fuzzy +msgid "Manage email report" +msgstr "Supprimer le rapport par e-mail" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Définir le mappage de filtre" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Définir l'interval d'auto-refresh" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 #, fuzzy -msgid "Started" -msgstr "Etat" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Etat" +msgid "Confirm overwrite" +msgstr "Confirmez la sauvegarde" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Statut" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +#, fuzzy +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" +msgstr "Dernière mise à jour %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" -msgstr "" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Appliquer" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 +#: 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:66 #, fuzzy -msgid "Step type" -msgstr "Type du filtre" +msgid "Error" +msgstr "Opérateur" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -#, fuzzy -msgid "Stepped Line" -msgstr "Table de Séries temporelles" +#: 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" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#, fuzzy +msgid "JSON metadata is invalid!" +msgstr "le json n'est pas valide" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Arrêt" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +#, fuzzy +msgid "Dashboard properties updated" +msgstr "Propriétés du tableau de bord" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Arrêter la requête" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Ce Tableau de Bord a été sauvegardé" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -#, fuzzy -msgid "Stop running (Ctrl + e)" -msgstr "Arrêter l'exécution (Ctrl + x)" +#: superset-frontend/src/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" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "Arrêter l'exécution (Ctrl + x)" +#: 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." +msgstr "" +"Owners est une liste d'utilisateurs qui peuvent modifier le tableau de " +"bord. Interrogeable par nom ou nom d'utilisateur." -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Une connexion non sécurisée avec la base de données a été arrêtée" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Couleur" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 #, fuzzy -msgid "Stream" -msgstr "Histogramme" +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks. If no roles are " +"defined, regular access permissions apply." +msgstr "" +"Roles est une liste qui défini ceux qui accède au tableau de bord .Donner" +" un droit d'accès à un tableau de bord surpasse les contrôles de droit de" +" niveau jeu de donnée. Si roles n'est pas défini, le tableau de bord est " +"accessible à tous les profils." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -#, fuzzy -msgid "Streets" -msgstr "récents" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Propriétés du tableau de bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -#, fuzzy -msgid "Stretched style" -msgstr "Récupéré %s" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Information simple" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "" -"Chaînes utilisées pour les noms des feuilles (par défaut la première " -"feuille)." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "URL Slug" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -#, fuzzy -msgid "Stroke Color" -msgstr "Couleur fixe" +#: 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" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy -msgid "Stroke Width" -msgstr "L'épaisseur de la ligne" +msgid "Certification" +msgstr "Détails de certification" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 #, fuzzy -msgid "Stroked" -msgstr "rouge" +msgid "Person or group that has certified this dashboard." +msgstr "Groupe ou personne ayant certifié cette métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: 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 "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Style" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +#, fuzzy +msgid "A list of tags that have been applied to this chart." +msgstr "Groupe ou personne ayant certifié cette métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "méta-données JSON " -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -#, fuzzy -msgid "Subheader" -msgstr "Ligne d'en-tête" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" +"Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste" +" des tableaux de bord. Cliquez ici pour publier ce tableau de bord." -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" +"Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste" +" des tableaux de bord. Rendez le favori pour le voir ici ou utilisez son " +"URL pour y avoir accès." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" -msgstr "Sous-Total" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Ce tableau de bord est publié. Cliquez pour en faire un brouillon." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "Succès" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Brouillon" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -#, fuzzy -msgid "Successfully changed dataset!" -msgstr "Changer de jeu de données" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Les couches d'annotation sont toujours en cours de chargement." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Une ou plusieurs couches d'annotation ont échoué au chargement." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" +"Ce graphique filtre automatiquement les graphiques ayant des colonnes de " +"même nom dans leurs ensembles de données." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "Données rafraîchies" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "En cache %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "Récupéré %s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -#, fuzzy -msgid "Sum values" -msgstr "Valeurs NULL" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Forcer à rafraîchir" -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Camembert hiérarchique" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +#, fuzzy +msgid "Hide chart description" +msgstr "Basculer la description du graphique" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 #, fuzzy -msgid "Sunburst Chart" -msgstr "Graphique superset" +msgid "Show chart description" +msgstr "Basculer la description du graphique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Sunburst Chart v2" -msgstr "Graphique superset" +msgid "Cross-filtering scoping" +msgstr "Portée du filtre croisé" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Dimanche" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Voir la requête" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" -msgstr "Graphique Superset" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +#, fuzzy +msgid "View as table" +msgstr "Voir exemples" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "Dernière mise à jour %s" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Graphique superset" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Partager le graphique par e-mail" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Tableau de bord superset" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " +msgstr "Vérifiez ce tableau de bord : " -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." -msgstr "Superset a rencontré une erreur lors de l'exécution d'une commande." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" +msgstr "Exporter au format CSV" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." -msgstr "Superset a rencontré une erreur inattendue." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" +msgstr "Exporter vers Excel" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 #, fuzzy -msgid "Supported databases" -msgstr "Importer la base de données" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "" +msgid "Export to full .CSV" +msgstr "Exporter en full CSV" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 #, fuzzy -msgid "Swap dataset" -msgstr "jeu de données" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." -msgstr "" +msgid "Export to full Excel" +msgstr "Exporter vers Excel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Télécharger comme image" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 #, fuzzy -msgid "Symbol" -msgstr "boulon" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" -msgstr "" +msgid "Something went wrong." +msgstr "Une erreur s'est produite. Ré essayez plus tard." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -#, fuzzy -msgid "Symbol size" -msgstr "Taille de la bulle" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Recherche..." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "Synchroniser les colonnes de la source" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Pas de filtre sélectionné." -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "Syntaxe" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Édition d'un filtre :" -#: superset/db_engine_specs/ocient.py:282 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 #, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" -msgstr "" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "TABLES" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -#, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "Est temporel" - -#: superset-frontend/src/explore/constants.ts:91 -#, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "Est temporel" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "JEU" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "MAR" +msgid "Batch editing %d filters:" +msgstr "Edition Batch %d filtres:" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Nom de l'onglet" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Configurer la portée du filtre" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "Onglet titre" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "Pas de filtre dans ce tableau de bord." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Table" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Développer tout" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "Table %(table)s pas trouvée dans la base de données %(db)s" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Tout réduire" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "La table existe" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +#, fuzzy +msgid "An error occurred while opening Explore" +msgstr "Une erreur s'est produite le traitement des logs " -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Nom de la table" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#, fuzzy +msgid "Empty column" +msgstr "Ma colonne" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Vue en table" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Ce composant markdown est en erreur." -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" -msgstr "" -"La table [%(table_name)s] n'a pu être trouvée, vérifiez à nouveau votre " -"connexion à votre base de données, le schéma et le nom de la table" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "Ce composant markdown est en erreur. Reprenez vos modifications récentes." -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -"La table [%{table}s] n'a pu être trouvée, vérifiez à nouveau votre la " -"connexion à votre base de données, le schéma et le nom de la table, " -"error: {}" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" -msgstr "Timeout du cache de table" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 #, fuzzy -msgid "Table columns" -msgstr "Colonne de Titre" +msgid "You can" +msgstr "Carte de pays" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 #, fuzzy -msgid "Table loading" -msgstr "Tri croissant" +msgid "create a new chart" +msgstr "Créer un nouveau graphique" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +#, fuzzy +msgid "or use existing ones from the panel on the right" msgstr "" +"Vous pouvez créer de nouveaux graphiques ou utililser ceux existants à " +"partir du panneau de droite" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Nom de la table non défini" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" +msgstr "Vous pouvez ajouter les composants via le" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "L'utilisateur \"%(username)s\" n'existe pas." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" +msgstr "mode edition" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Supprimer l'onglet du tableau de bord ?" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tables" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +#, fuzzy +msgid "undo" +msgstr "Défaire?" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "ANNULER" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Diviseur" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Ligne d'en-tête" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" +msgstr "Zone de texte" #: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 msgid "Tabs" msgstr "Onglets" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" -msgstr "Tabulaire" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "" -#: superset/tags/commands/exceptions.py:34 -#, fuzzy -msgid "Tag could not be created." -msgstr "Le jeu de données n'a pas pu être créé." +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Prévisualisation" + +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Une erreur s'est produite. Ré essayez plus tard." -#: superset/tags/commands/exceptions.py:38 +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 #, fuzzy -msgid "Tag could not be deleted." -msgstr "Le jeu de données n'a pas pu être supprimé." +msgid "Unknown value" +msgstr "Statut inconnu" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" +msgstr "Ajouter/Editer les filtres" -#: superset/tags/commands/exceptions.py:30 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 #, fuzzy -msgid "Tag parameters are invalid." -msgstr "Les paramètres du jeu de données sont invalides." +msgid "No filters are currently added to this dashboard." +msgstr "Aucun filtre ajouté" -#: superset/tags/commands/exceptions.py:42 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 #, fuzzy -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:733 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:430 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" -msgstr "Tags" +msgid "No global filters are currently added" +msgstr "Aucun filtre ajouté" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -#, fuzzy -msgid "Target" -msgstr "Date de début" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" +msgstr "Appliquer les filtres" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -#, fuzzy -msgid "Target Color" -msgstr "Catégorie" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Effacer tout" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 #, fuzzy -msgid "Target category" -msgstr "Catégorie" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "Valeur cible" - -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Nom du template" +msgid "Locate the chart" +msgstr "Créer un nouveau graphique" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Les paramètres du modèle" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#, fuzzy +msgid "Cross-filters" +msgstr "Portée du filtre croisé" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -"Lien template, il est possible d'inclure {{ metric }} or autres valeurs " -"provenant de ces contrôles." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -"Arrête les requêtes en cours quand la fenêtre du navigateur est fermée ou" -" quand change pour un autre page. Disponibles pour les bases de données " -"Presto, Hive, MySQL, Postgres et Snowflake." -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Test de connexion" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Tous les graphiques" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Tester la connexion" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Pas de filtre dans ce tableau de bord." -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" -msgstr "Zone de texte" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" -msgstr "Text encapsulé dans l'e-mail" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Tous les graphiques" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#, fuzzy +msgid "Enable cross-filtering" +msgstr "Portée du filtre croisé" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" -msgstr "" -"Le css pour certains tableaux de bords peut être modifié ici, ou dans la" -" page tableaux de bords pour que les changement soient visibles " -"immédiatement" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +#, fuzzy +msgid "Orientation of filter bar" +msgstr "Source de l'Annotation" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." -msgstr "" -"Le CTAS (create table as select) n'a pas d'instruction SELECT à la fin. " -"Assurez-vous que la requête a bien un SELECT en dernière instruction. " -"Puis essayez d'exécuter votre requête à nouveau." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +#, fuzzy +msgid "Vertical (Left)" +msgstr "virtuel" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#, fuzzy +msgid "More filters" +msgstr "Filtre de temps" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#, fuzzy +msgid "No applied filters" +msgstr "Appliquer les filtres" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" +msgstr "Filtres appliqué: %s" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "L'accée à cette requête semble avoir été effacé" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Impossible de charger le filtre" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "Cette annotation a été sauvegardée" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" +msgstr "Filtres hors du périmètre (%d)" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" -msgstr "Cette annotation a été modifiée" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "Dépend de" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" +"Le filtre n'affiche que les valeurs pertinentes après les sélections " +"effectuées dans d'autres filtres." -#: superset/common/query_context_processor.py:585 -#, fuzzy -msgid "The chart datasource does not exist" -msgstr "Le graphique n'existe pas" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Périmètre" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "Le graphique n'existe pas" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "Type du filtre" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#, fuzzy +msgid "Title is required" +msgstr "Une valeur est obligatoire" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Supprimé)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "Le jeu de couleur pour le rendu graphique" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Défaire?" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "Ajouter un filtre ou un diviseur" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 #, fuzzy -msgid "The column header label" -msgstr "Supprimer une colonne ici" - -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." -msgstr "La colonne a été supprimée ou renommée dans la base de données." +msgid "[untitled]" +msgstr "[Sans titre]" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "Ce Tableau de Bord a été sauvegardé" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" +msgstr "Ajouter et modifier les filtres" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "La source de données semble avoir été effacée" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "Sélection d'une colonne" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." -msgstr "" -"Le type de donnée inféré par la base de données. Il peut être nécessaire " -"de le rentrer manuellement pour les colonnes définissant des expressions " -"dans certains cas. Dans la plupart des cas il n'est pas nécessaire de le " -"modifier." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "Sélectionner une colonne" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." -msgstr "" -"La base de données %s est liée à %s graphiques qui apparaissent sur %s " -"tableaux de bord et les utilisateurs ont des onglets %s SQL Lab ouverts " -"qui utilisent cette base de données . Êtes-vous sûr de vouloir continuer " -"? Supprimer la base de données cassera ces objets." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "Aucun colonne compatible trouvée" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 #, fuzzy -msgid "The database columns that contains lines information" -msgstr "Cette colonne doit contenir une information date/heure." +msgid "No compatible datasets found" +msgstr "Aucun colonne compatible trouvée" -#: superset/sqllab/commands/estimate.py:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 #, fuzzy -msgid "The database could not be found" -msgstr "Base de données non trouvée." - -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "La base de données exécute actuellement trop de requêtes." +msgid "Select a dataset" +msgstr "Tout Dé-Sélectionner" -#: superset/errors.py:99 -msgid "The database is under an unusual load." -msgstr "La base de données est soumise à une charge inhabituelle." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "Une valeur est obligatoire" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -"Impossible de trouver la base de données référencée dans cette requête. " -"Merci de contacter un administrateur pour obtenir davantage d'aide ou " -"bien d'essayer à nouveau." -#: superset/errors.py:100 -msgid "The database returned an unexpected error." -msgstr "La base de données a retourné une erreur inattendue." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#, fuzzy +msgid "Limit type" +msgstr "type de visualisation" -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "La base de données a été supprimée." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "Tous les filtres" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." -msgstr "Base de données non trouvée." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Ajouter un filtre" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "Les valeurs dépendent d'autres filtres" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -"La source de données %s est reliée à %s graphiques qui sont présents dans" -" %s tableaux de bord. Etes-vous sûr de vouloir continuer ? Supprimer le " -"jeu de données cassera ces objets." +"Les valeurs sélectionnées dans d'autres filtres affecteront les options " +"de filtrage afin de n'afficher que les valeurs pertinentes" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "Le jeu de donnée associé à ce graphique n'existe plus" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Valeurs dépendent de" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." -msgstr "" -"La configuration du jeu de donnée indiqué ici\n" -" s'applique à tous les graphiques utilisant ce jeu de " -"données.\n" -" Rappelez vous que changer ces paramètres\n" -" peut affecter d'autres graphiques\n" -" de manière non voulue." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Portée" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "Le jeu de données a été sauvegardé" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Configuration du filtre" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." -msgstr "Le jeu de données lié à ce graphique semble avoir été effacé." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "Paramètres des filtres" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "La requête ne peut pas être chargée" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "Sélectionner un filtre" -#: superset/errors.py:98 -msgid "The datasource is too large to query." -msgstr "Source de données trop volumineuse pour être interrogée." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "Filtre d'intervalle" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" -"La description peut être affichée comme des widgets d'entête dans la vue " -"tableau de bord. Prend en charge le Markdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "Interval numérique" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "Filtre de temps" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -#, fuzzy -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "Le nombre de secondes avant l'expiration du cache" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Intervalle de Temps" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -#, fuzzy -msgid "The encoding format of the lines" -msgstr "Métrique servant à trier les résultats" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Colonne de temps" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." -msgstr "" -"L'objet engine_params contient les paramètres envoyés à " -"sqlalchemy.create_engine." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Granularité de Temps" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " -msgstr "" -"Les entrées suivantes dans `series_columns` sont manquantes dans " -"`columns`: %(columns)s. " +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "Grouper par" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Grouper par" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "Un pré-filtre est obligatoire" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -"L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être " -"atteint." -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -"L'hôte \"%(hostname)s\" est peut-être hors-dervice et ne peut être " -"atteint sur le port %(port)s." -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "L'hôte est peut-être HS et ne peut pas être atteint sur le port." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Nom du filtre" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "Le nom d'hôte \"%(hostname)s\" ne peut pas être résolu." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Le nom est obligatoire" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." -msgstr "Le nom d'hôte ne peut pas être résolu." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Type du filtre" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "L'identifiant du graphique actif" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "Les jeux de données ne comportent pas de colonne temporelle" -#: superset/connectors/sqla/views.py:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -"La liste des graphiques associés à cette table. En alterant cette source " -"de données, vous pouvez changer le comportement des graphiques associés. " -"Aussi notez que les graphiques doivent pointer vers une source de " -"données, alors ce formulaire ne pourra pas être enregistré si des " -"graphiques sont retirés d'une source de données. Si vous voulez changer " -"la source de données d'un graphique, écraser le graphique depuis la 'vue " -"d'exploration'" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "Un jeu de données est obligatoire" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "Valeurs de pre-filtre disponibles" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" +msgstr "Pre-filtre" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." -msgstr "" -"Le paramètre metadata_params dans Champ supplémentaire n'est pas " -"correctement configuré. La clé %(key)s est invalide." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "Pas de filtre" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." -msgstr "" -"Le paramètre metadata_params dans Champ supplémentaire n'est pas " -"correctement configuré. La clé %(key)s est invalide." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "Trier les valeurs de filtre" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "" -"L'objet metadata_params contient les paramètres envoyés à " -"sqlalchemy.MetaData." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "Type de tri" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" -msgstr "" -"Le nombre minimum de périodes glissantes requis pour afficher une valeur." -" Par exemple, si vous faites un somme cumulée sur 7 jours, vous souhaitez" -" peut être que votre \"Min Période\" soit égale à 7, de sorte que tous " -"les points de données affichés correspondent au total des 7 périodes. " -"Ceci cachera la \"montée en puissance\" qui aura lieu au cours des 7 " -"périodes" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Tri croissant" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Trier les métriques" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." -msgstr "" -"Nombre d'heures, négatif ou positif, pour décaler la colonne de temps. " -"Cela peut être utilisé pour passer du temps UTC au temps local." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" +msgstr "Si une métrique est définie, le tri sera basé sur sa valeur" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Trier les métriques" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +#, fuzzy +msgid "Single Value" +msgstr "Valeur Unique" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, fuzzy, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "" -"Le nombre de lignes affichées est limité à %(rows)d par la limite de la " -"liste déroulante." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "Type de valeur unique" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "" -"Le nombre de lignes affichées est limité à %(rows)d par la limite de la " -"liste déroulante." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +#, fuzzy +msgid "Exact" +msgstr "Zone de texte" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "Le nombre de lignes affichées est limité à %(rows)d par la requête" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "Le filtre a une valeur par défaut" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." -msgstr "" -"Le nombre de lignes affichées est limité à %(rows)d par la requête et par" -" la limite de la liste déroulante." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Valeur par défaut" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "Le nombre de secondes avant l'expiration du cache" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "Une valeur par défaut est obligatoire" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "L'objet n'existe pas dans la base de données." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "Rafraichir les valeurs par défaut" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "Le paramètre %(parameters)s de votre requête est indéfini." -msgstr[1] "Les paramètres suivants de votre requête sont indéfinis : %(parameters)s." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "" +"Remplissez tous les champs obligatoires pour activer \"la valeur par " +"défaut\"" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "Le mot de passe fourni pour l'utilisateur \"%(username)s\" est incorrect." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Vous avez supprimé ce filtre." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Restaurer le Filtre" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "Colonne requise" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "Le mot de passe fourni à une base de données est invalide." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "Remplissez \"Valeur par défaut\" pour activer ce contrôle" -#: superset-frontend/src/pages/ChartList/index.tsx:93 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -"Les mots de passe pour les bases de données ci-dessous sont nécessaires " -"pour les importer en même temps que les graphiques. Notez que les " -"sections \"Securité Supplémentaire\" et \"Certificat\" de la " -"configuration de la base de données ne sont pas présents dans les " -"fichiers d'export et doivent être ajoutés manuellement après l'import si " -"nécessaire." -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -"Les mots de passe pour les bases de données ci-dessous sont nécessaires " -"pour les importer en même temps que les tableaux de bord. Notez que les " -"sections \"Securité Supplémentaire\" et \"Certificat\" de la " -"configuration de la base de données ne sont pas présents dans les " -"fichiers d'export et doivent être ajoutés manuellement après l'import si " -"nécessaire." -#: superset-frontend/src/features/datasets/constants.ts:23 -#, fuzzy -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"Les mots de passe pour les bases de données ci-dessous sont nécessaires " -"pour les importer en même temps que les graphiques. Notez que les " -"sections \"Securité Supplémentaire\" et \"Certificat\" de la " -"configuration de la base de données ne sont pas présents dans les " -"fichiers d'export et doivent être ajoutés manuellement après l'import si " -"nécessaire." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." -msgstr "" -"Les mots de passe pour les bases de données ci-dessous sont nécessaires " -"pour les importer en même temps que les requêtes sauvegardées. Notez que " -"les sections \"Securité Supplémentaire\" et \"Certificat\" de la " -"configuration de la base de données ne sont pas présents dans les " -"fichiers d'export et doivent être ajoutés manuellement après l'import si " -"nécessaire." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Appliquer à tous les panneaux" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -#, fuzzy -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." -msgstr "" -"Les mots de passe pour les bases de données ci-dessous sont nécessaires " -"pour les importer. Notez que les sections \"Securité Supplémentaire\" et " -"\"Certificat\" de la configuration de la base de données ne sont pas " -"présents dans les fichiers d'export et doivent être ajoutés manuellement " -"après l'import si nécessaire." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Appliquer à certains panneaux" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "Le motif du format de timestamp. Pour les chaines, utilisez " +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "Seuls les panneaux sélectionnés seront affectés par ce filtre" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "Les panneaux avec cette colonne seront affectés par ce filtre" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +#, fuzzy +msgid "All panels" +msgstr "Appliquer à tous les panneaux" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -"Pointeur vers une table physique (ou une vue). Gardez à l'esprit que le " -"graphique est associé à cette table logique de superset et que cette " -"table logique pointe vers la table physique décrite ici." -#: superset/errors.py:109 -msgid "The port is closed." -msgstr "Le port est fermé." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Garder en édition" -#: superset/errors.py:142 -msgid "The port number is invalid." -msgstr "Le numéro de port est invalide." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Oui, annuler" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "Vous avez des modifications non sauvegardées." -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "L'argument `rows` n'est pas un entier valide." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Voulez vous vraiment annuler ?" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." -msgstr "La requête associée aux résutlats a été supprimée." +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." +msgstr "" +"Erreur au chargement des source de données du graphique Les filtres " +"peuvent mal fonctionner." -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -"La requête associée à ces résultats n'a pu être trouvée. Rejouez la " -"requête originale." -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." -msgstr "Cette requête contient un ou plusieurs paramètres de modèle malformé(s)." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#, fuzzy +msgid "White" +msgstr "Titre" -#: 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" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Tous les filtres" -#: superset/sqllab/commands/estimate.py:86 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, fuzzy, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +msgid "Click to edit %s." +msgstr "Cliquer pour modifier" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#, fuzzy +msgid "Click to edit chart." +msgstr "Cliquer pour modifier" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "Requête dans un nouvel onglet" + +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -"La requête a été tuée après %(sqllab_timeout)s secondes. Elle est peut-" -"être trop complexe ou la base de donnée est soumise à une charge trop " -"importante." -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "La requête a une erreur de syntaxe." +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "Ligne d'en-tête" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "La requête n'a pas retourné de résultat" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Onglet titre" -#: superset/sql_lab.py:297 -#, python-format +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"La requête a été tuée après %(sqllab_timeout)s secondes. Elle est peut-" -"être trop complexe ou la base de donnée est soumise à une charge trop " -"importante." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/constants.ts:59 +#, fuzzy +msgid "Not equal to (≠)" +msgstr "!= (N'est pas égal)" + +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "Le rapport a été créé" +#: superset-frontend/src/explore/constants.ts:62 +#, fuzzy +msgid "Less or equal (<=)" +msgstr "<= (Plus petit ou égal)" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "Le backend des résultats n'a plus les données de la requête." +#: superset-frontend/src/explore/constants.ts:65 +#, fuzzy +msgid "Greater than (>)" +msgstr "créer un " -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +#: superset-frontend/src/explore/constants.ts:67 +#, fuzzy +msgid "Greater or equal (>=)" +msgstr ">= (Plus grand ou égal)" + +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "dans" + +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "annotation" + +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -"Les résultats stockés dans le backend le sont dans un format différent et" -" ne peuvent plus être déserialisés." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" +#: superset-frontend/src/explore/constants.ts:74 +#, fuzzy +msgid "Like (case insensitive)" +msgstr "Valeur du filtre (sensible à la casse)" + +#: superset-frontend/src/explore/constants.ts:78 +#, fuzzy +msgid "Is not null" +msgstr "Non Null" + +#: superset-frontend/src/explore/constants.ts:81 +#, fuzzy +msgid "Is null" +msgstr "Non Null" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "" -"Le schéma \"%(schema)s\" n'existe pas. Un schéma valide doit être utilisé" -" pour cette requête." +#: superset-frontend/src/explore/constants.ts:83 +#, fuzzy +msgid "use latest_partition template" +msgstr "dernière partition :" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -"Le schéma \"%(schema_name)s\" n'existe pas. Un schéma valide doit être " -"utilisé pour cette requête." -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." -msgstr "Le schéma a été supprimé ou renommé dans la base de données." - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "" +#: superset-frontend/src/explore/constants.ts:87 +#, fuzzy +msgid "Is false" +msgstr "Éditer la table" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" +#: superset-frontend/src/explore/constants.ts:89 +#, fuzzy +msgid "TEMPORAL_RANGE" +msgstr "Est temporel" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "Les données fournies sont dans un format incorrect." +#: superset-frontend/src/explore/constants.ts:134 +#, fuzzy +msgid "Time granularity" +msgstr "Granularité de Temps" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "Les données fournies ont un schéma incorrect." +#: superset-frontend/src/explore/controls.jsx:90 +#, fuzzy +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -"La table \"%(table)s\" n'existe pas. Une table valide doit être utilisée " -"pour cette requête." +"Une ou plusieurs colonnes doivent être regroupées. Les regroupements avec" +" une cardinalité importante devraient inclure une limite de séries afin " +"de limiter le nombre de séries récupérées et affichées." -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." -msgstr "" -"La table \"%(table_name)s\" n'existe pas. Une table valide doit être " -"utilisée pour cette requête." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Une ou plusieurs métriques à afficher" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" -"La table a été créée. Dans le cadre de cette configuration en deux " -"étapes, vous devez maintenant cliquer sur le bouton d'édition de la " -"nouvelle table pour la configurer." +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Couleur fixe" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "La table a été supprimée ou renommée dans la base de données." +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Mesure de l'axe de droite" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "" -"La colonne temps pour la visualisation. Notez que vous pouvez définir " -"arbitrairement l'expression que retourne la colonne DATETIME dans la " -"table. Aussi noter que le filtre ci-dessous est appliqué à cette colonne " -"ou expression" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Choisir une mesure pour l'axe de droite" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "" -"La granularité temporelle pour la visualisation. Noter que vous pouvez " -"taper etu tiliser le langage naturel comme `10 seconds`, `1 day` ou `56 " -"weeks`" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Schéma de couleurs linéaire" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Métrique de couleur" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Un ou plusieurs contrôles à transposer en colonnes" #: superset-frontend/src/explore/controls.jsx:271 #, fuzzy @@ -16393,7 +16048,6 @@ msgstr "" "taper etu tiliser le langage naturel comme `10 seconds`, `1 day` ou `56 " "weeks`" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 #: superset-frontend/src/explore/controls.jsx:310 msgid "" "The time granularity for the visualization. This applies a date " @@ -16406,7 +16060,6 @@ msgstr "" "une nouvelle granularité d'heure. Les options ici sont définies pour " "chaque type de SGBD dans le code source de Superset." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 #: superset-frontend/src/explore/controls.jsx:327 msgid "" "The time range for the visualization. All relative times, e.g. \"Last " @@ -16426,394 +16079,364 @@ msgstr "" "Notez que l'on peut indiquer explicitement la fuseau horaire dans le " "format ISO 8601 quand on spécifie l'heure de début et/ou de fin." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Limite le nombre de lignes qui sont affichées." + +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" +"Métrique utilisée pour définir comment les séries principales sont triées" +" si une limite de série ou de ligne est définie. Si indéfini, la première" +" métrique sera utilisée (si approprié)." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/controls.jsx:383 +msgid "" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" +"Définit le regroupement d'entités. Chaque série est représentée par une " +"couleur spécifique sur le graphique et masquée/affichée en cliquant sur " +"sa légende" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "Le type de visualisation à afficher" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Métrique assignée à l'axe [X]" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Métrique assignée à l'axe [Y]" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "L'utilisateur semble avoir été effacé" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Taille de la bulle" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/controls.jsx:434 +msgid "" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" +"Lorsque `Type de calcul` vaut \"Pourcentage de changement\", le format de" +" l'axe Y est à forcé à `.1%`" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "L'utilisateur \"%(username)s\" n'existe pas." - -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "Le nom d'utilisateur fourni à une base de données est invalide." - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Jeu de couleur" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 +#: superset-frontend/src/explore/actions/exploreActions.ts:89 #, fuzzy -msgid "The width of the lines" -msgstr "L'identifiant du graphique actif" +msgid "An error occurred while starring this chart" +msgstr "Une erreur s'est produite durant la modification de ce rapport." -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Il y a des alertes ou des rapports associés" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "Le graphique [{}] a été sauvegardé" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," -msgstr "Il y a des alertes ou des rapports associés : %s," +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, fuzzy, python-format +msgid "Chart [%s] has been overwritten" +msgstr "Le graphique [{}] a été écrasé" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" -msgstr "Il n'y a pas de graphiques ajouté dans ce tableau de bord" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, fuzzy, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "Il n'y a pas de composant à ajouter dans cet onglet" +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, fuzzy, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "Graphique [{}] ajouté au tableau de bord [{}]" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#, fuzzy +msgid "GROUP BY" +msgstr "Grouper par" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "Pas de filtre dans ce tableau de bord." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#, fuzzy +msgid "NOT GROUPED BY" +msgstr "Grouper par" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." -msgstr "Vous avez des modifications non sauvegardées." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "" -#: superset/errors.py:101 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"Il y a une erreur de syntaxe dans la requête SQL. Peut-être une faute de " -"frappe." -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -"Il n'y a pas de définition de graphique associé à ce composanta-t-il été " -"supprimé ?" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -"Espace insuffisant pour ce composant. Diminuez sa largeur ou augmentez la" -" largeur de la destination." -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 #, fuzzy -msgid "There was an error fetching dataset" -msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des " -"informations de cette base de données : %s" +msgid "Continue" +msgstr "colonne" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 #, fuzzy -msgid "There was an error fetching dataset's related objects" +msgid "Clear form" +msgstr "Format D3" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des " -"informations de cette base de données : %s" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -#, fuzzy -msgid "There was an error fetching tables" -msgstr "Il y a eu une erreur au chargement des tables" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 +msgid "" +"We were unable to carry over any controls when switching to this new " +"dataset." +msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, fuzzy, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Erreur à la récupération du statut favori de ce Tableau de Bord." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Personnaliser" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -"Une erreur s'est produite lors de lors de la récupération de votre " -"activité récente :" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "Une erreur s'est produite lors de la récupération des schémas" +msgid "Chart height" +msgstr "Onglet titre" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 #, fuzzy -msgid "There was an error loading the dataset metadata" -msgstr "Il y a eu une erreur au chargement des tables" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "Une erreur s'est produite lors de la récupération des schémas" - -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "Il y a eu une erreur au chargement des tables" - -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, fuzzy, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Il y a eu une erreur au chargement des tables" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "Il y avait une erreur avec vore requête" +msgid "Chart width" +msgstr "Onglet titre" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Il y a eu un problème lors de la suppression de %s: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Il y a eu un problème lors de la suppression de %s: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Enregister (écrase)" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Il y a eu un problème lors de la suppression des %s sélectionné(e)s :%s" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "Enregistrer sous ..." -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "" -"Il y eu un problème lors de la suppression des annotations sélectionnés :" -" %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Nom du graphique" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "" -"Il y a eu un problème lors de la suppression des graphiques sélectionnés " -": %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "Nom du jeu de donnée" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -"Une erreur s'est produite durant la sauvegarde du tableau de bord " -"sélectionné : " -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Ajouter au tableau de bord" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Il y eu un problème lors de la suppression des couches sélectionnés : %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "Sélectionner un tableau de bord" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "" -"Il y a eu un problème lors de la suppression de requêtes sélectionnées : " -"%s" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "Sélectionner" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "" -"Il y a eu un problème lors de la suppression des templates sélectionnés :" -" %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "Sauvegarder le Tableau de Bord" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "Il y a eu un problème lors de la suppression de : %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "Créer" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #, fuzzy -msgid "There was an issue duplicating the dataset." -msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" +msgid " a new one" +msgstr "Modifié le" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, fuzzy, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Le tableau de bord n'a pas pu être créé." -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Un problème est survenu lors de l'activation de ce tableau de bord." +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Le graphique n'a pas pu être créé." -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "" -"Désolé, une erreur s'est produite lors de la récupération des rapports de" -" ce tableau de bord." +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Le tableau de bord n'a pas pu être créé." -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "Erreur à la récupération du statut favori de ce Tableau de Bord." +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Sauvegarder et aller au tableau de bord" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Une erreur s'est produite lors de la récupération de votre graphique : %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, fuzzy, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "" -"Une erreur s'est produite lors de la récupération de votre tableau de " -"bord : %s" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +#, fuzzy +msgid "Formatted date" +msgstr "Clefs pour la table" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "" -"Une erreur s'est produite lors de la récupération de votre activité " -"récente : %s" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +#, fuzzy +msgid "Column Formatting" +msgstr "Informations additionnelles" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, fuzzy, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "" -"Une erreur s'est produite lors de la récupération de vos requêtes " -"sauvegardées : %s" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +#, fuzzy +msgid "Collapse data panel" +msgstr "Tout réduire" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -"Il y a eu un problème lors de la prévisualisation de la requête " -"sélectionnée %s" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Il y a eu un problème de prévisualisation de la requête sélectionnée. %s" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" +msgstr "Exemples" -#: superset/viz.py:1915 -msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" -msgstr "Il y a une boucle dans votre Sankey, il faut un arbre. Lien fautif: {}" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +#, fuzzy +msgid "No samples were returned for this dataset" +msgstr "Aucun résultat avec ces paramètres" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "Ce sont les tables sur lesquelles vont s'appliquer les filtres." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +#, fuzzy +msgid "No results" +msgstr "Visualiser les résultats" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "" -"Ces filtres s'appliquent aux valeurs disponibles dans les listes " -"déroulantes" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Chercher dans les métriques et les colonnes" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" -"Ces paramètres sont généré dynamiquement quand vous cliquez sur " -"Sauvegarder ou forcer dans la page d'exploration. Cet objet JSON est " -"exposé ici comme une référence et pour les experts qui voudraient " -"modifier des paramètres." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "créer un " -#: 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 " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." -msgstr "" -"Ce JSON a été généré automatiquement quand vous avez cliqué sur " -"sauvegarder ou forcer dans la page des tableaux de bords. Il est exposé " -"ici comme une référence et pour les experts qui voudraient modifier des " -"paramètres." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +#, fuzzy +msgid " to edit or add columns and metrics." +msgstr "%s colonne(s) et métrique(s)" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "This action will permanently delete %s." -msgstr "Cette action va supprimer définitivement %s." +msgid "Showing %s of %s" +msgstr "Affichage de %s sur %s" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "Cette action va définitivement supprimer la couche." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "Afficher moins ..." -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "Cette action va définitivement supprimer la requête sauvegardée." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "Afficher tout ..." -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "Cette acion supprimera définitvement le template." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "Afficher moins ..." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -"Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine " -"(ex mydatabase.com)." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "Ce graphique filtre automatiquement les graphiques ayant des colonnes de même nom dans leurs" -" ensembles de données." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Ajouter au tableau de bord" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "Ce graphique a été déplacé vers un autre champ d'application du filtre." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "Ajouter au tableau de bord" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#, fuzzy +msgid "Not available" +msgstr "Pas de description disponible." + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +#, fuzzy +msgid "Add the name of the chart" +msgstr "L'identifiant du graphique actif" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "Onglet titre" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" msgstr "" #: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 @@ -16822,195 +16445,225 @@ msgid "" "source. " msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." -msgstr "Cette colonne doit contenir une information date/heure." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "Contrôles libellés " + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "Contrôle libellé " + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#, fuzzy +msgid "Chart Source" +msgstr "Source de données" + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Ouvrir l'onglet Source de données" + +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#, fuzzy +msgid "Original" +msgstr "Valeur d'origine" + +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#, fuzzy +msgid "Pivoted" +msgstr "Édité" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Vous n'avez pas les permission pour modifier ce graphique" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +#, fuzzy +msgid "Chart properties updated" +msgstr "Modifier les propriétés du graphique" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#, fuzzy +msgid "Edit Chart Properties" +msgstr "Modifier les propriétés du graphique" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -"Ce tableau de bord est en train de se rafraîchir automatiquement ; le " -"prochain rafraîchissement sera dans %s." +"La description peut être affichée comme des widgets d'entête dans la vue " +"tableau de bord. Prend en charge le Markdown." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +#, fuzzy +msgid "Person or group that has certified this chart." +msgstr "Groupe ou personne ayant certifié cette métrique" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Configuration" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#, fuzzy msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" -"Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste" -" des tableaux de bord. Rendez le favori pour le voir ici ou utilisez son " -"URL pour y avoir accès." +"Durée (en secondes) du timeout du cache pour ce graphique. Notez que " +"c'est par défaut le timeout du jeu de données si indéfinie." -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -"Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste" -" des tableaux de bord. Cliquez ici pour publier ce tableau de bord." +"Une liste d'utilisateurs qui peuvent modifier le graphique. Il est " +"possible de chercher par nom de graphique ou d'utilisateur." + +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Limite atteinte" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 #, fuzzy -msgid "This dashboard is now hidden" -msgstr "Modifier ce tableau de bord est interdit" +msgid "Create chart" +msgstr "Enregistrer un graphique" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 #, fuzzy -msgid "This dashboard is now published" -msgstr "Ce tableau de bord est maintenant ${nowPublished}" +msgid "Update chart" +msgstr "Mettre à jour" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "Ce tableau de bord est publié. Cliquez pour en faire un brouillon." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Configuration lat/long non valide." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" -msgstr "" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "Inverser lat/long " + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Les colonnes longitude & latitude" + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "Une seule colonne long & lat délimité" -#: superset/views/core.py:1353 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -"Ce tableau de bord a été changé récemment. Merci de le recharger pour " -"avoir la dernière version." +"Multiples formats acceptés, regarder la librairie Python geopy.points " +"pour plus de détails" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Ce Tableau de Bord a été sauvegardé avec succès." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geohash" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "zone de texte" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." -msgstr "" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "en modal" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Désolén une erreur s'est produite" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +#, fuzzy +msgid "Save as Dataset" +msgstr "Choisissez un jeu de donnée" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Ceci définit l'élément à tracer sur le graphique" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Ouvrir dans SQL Lab" + +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" +msgstr "Echec de la vérification des options de sélection : %s" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 #, fuzzy -msgid "This defines the level of the hierarchy" -msgstr "Ceci définit l'élément à tracer sur le graphique" +msgid "No annotation layers" +msgstr "Couches d'annotations" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "" -"Ces champs agissent comme une vue Superset, i.e. Superset va lancer une " -"requête pour cette expression comme une sous-requête." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" +msgstr "Ajouter une couche d'annotations" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Ce filtre n'existe pas dans le tableau de bord. Il ne sera pas appliqué." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Couches d'annotations" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#, fuzzy +msgid "Select the Annotation Layer you would like to use." +msgstr "Choisir le type de couche d'annotations" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 #, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "Cet ensemble de filtre est identique à : \"%s\"" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -"Ceci est la condition qui sera ajoutée à la clause WHERE. Par exemple, " -"pour ne retourner que les lignes d'un client particulier, vous pouvez " -"définir un filtre régulier avec la clause `client_id = 9`. Pour " -"n'afficher aucune ligne sauf pour les utilisateurs qui appartiennent à un" -" role de filtre RLS, un filtre de base peut être créé avec la clause `1 " -"= 0` (toujours faux)." -#: superset/views/dashboard/mixin.py:46 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Cet objet JSON décrit la position des widgets dans le tableau de bord. Il" -" est généré dynamiquement quand on ajuste la taille ou la position des " -"widgets via drag and drop dans la vue tableau de bord" - -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Ce composant markdown est en erreur." -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "Ce composant markdown est en erreur. Reprenez vos modifications récentes." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "Valeur de la couche d'annotations" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "Cela peut être déclenché par:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +#, fuzzy +msgid "Bad formula." +msgstr "Format Date" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Configuration de l'annotation de graphique" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 #, fuzzy msgid "" "This section allows you to configure how to use the slice\n" @@ -17019,2376 +16672,2442 @@ msgstr "" "Cette section vous permet de configurer comment utiliser le graphique\n" " pour générer des annotations." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "Colonne temporelle de la couche d'annotations" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "Première colonne de l'intervalle" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "Colonne temporelle de l’événement" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." +msgstr "Cette colonne doit contenir une information date/heure." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "Fin de l'intervalle de la couche d'annotations" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "Dernière colonne de l'intervalle" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" +msgstr "Colonne de titre de la couche d'annotations" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "Colonne de Titre" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "Choisissez un titre pour votre annotation." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "Colonnes de description de la couche d'annotations" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "Colonnes de description" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -"Cette section contient les options permettant un post traitement " -"analytique avancé des résultats de requêtes" +"Choisissez une ou plusieurs colonnes qui doivent être montrées dans " +"l'annotation. Si vous n'en sélectionnez aucune, elles seront toutes " +"affichées." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +#, fuzzy +msgid "Override time range" +msgstr "Modifier intervalle de temps" -#: superset-frontend/src/embedded/index.tsx:109 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "Afficher l'origine du temps Druid" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "Cette valeur devrait être plus grande que la valeur cible de gauche" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Configuration d'affichage" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" -msgstr "Cette valeur devrait être plus petite que la valeur cible de droite" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Configurer comment votre superposition est affichée ici." -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." -msgstr "Ce type de visualisation ne supporte pas le cross-filtering." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "Trait de la couche d'annotations" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Ce type de visualisation n'est pas supporté." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Style" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 #, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "Cela a été déclenché par:" -msgstr[1] "" +msgid "Dashed" +msgstr "tableau de bord" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +#, fuzzy +msgid "Dotted" +msgstr "Édité" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "Opacité de la couche d'annotations" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Couleur" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Jeudi" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Temps" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 #, fuzzy -msgid "Time Column" -msgstr "Colonne de temps" +msgid "Hide Line" +msgstr "Masquer la couche" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 #, fuzzy -msgid "Time Comparison" -msgstr "Comparaison de temps" +msgid "Hides the Line for the time series" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -#, fuzzy -msgid "Time Format" -msgstr "Format Datetime" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Configuration de la couche" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Configurer les bases de votre couche d'annotations." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Obligatoire" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Masquer la couche" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 #, fuzzy -msgid "Time Grain" -msgstr "Granularité de Temps" +msgid "Show label" +msgstr "Afficher les tables" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Type de couche d'annotations" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Choisir le type de couche d'annotations" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -#, fuzzy -msgid "Time Granularity" -msgstr "Granularité de Temps" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "Type de source de la couche d'annotations" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -#, fuzzy -msgid "Time Lag" -msgstr "Intervalle de Temps" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "Choisir la source de vos annotations" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 #, fuzzy -msgid "Time Range" -msgstr "Intervalle de Temps" +msgid "Annotation source" +msgstr "Source de l'Annotation" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -#, fuzzy -msgid "Time Ratio" -msgstr "Granularité de Temps" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Supprimer" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 #, fuzzy -msgid "Time Series" +msgid "Time series" msgstr "Colonnes des séries temporelles" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Séries temporelles - histogramme" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Modifier une couche d'annotations" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Séries temporelles - double axe" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Ajouter une couche d'annotations" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Séries temporelles - ligne" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Collection vide" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Séries temporelles - Lignes multiples" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Ajouter un élément" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Séries temporelles - Graphique Nightingale Rose" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Supprimer élément" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Séries temporelles - Paired t-test" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +msgid "" +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" +msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Séries temporelles - pourcentage de changement" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." +msgstr "" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "Séries temporelles - Période Pivot" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "tableau de bord" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Séries temporelles - empilées" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#, fuzzy +msgid "Dashboard scheme" +msgstr "[nom du tableau de bord]" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "Sélectionner un schéma de couleurs" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 #, fuzzy -msgid "Time Series Options" -msgstr "Colonnes des séries temporelles" +msgid "Select scheme" +msgstr "Sélectionner un schéma de couleurs" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 #, fuzzy -msgid "Time Shift" -msgstr "Décalage temporel" +msgid "Show less columns" +msgstr "Afficher la colonne temps" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "Vue de la table temporelle" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +#, fuzzy +msgid "Show all columns" +msgstr "Pas de colonne" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "Colonne de temps" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "La colonne temporelle \"%(col)s\" n'existe pas dans le jeu de données" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +#, fuzzy +msgid "Min Width" +msgstr "L'épaisseur de la ligne" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Comparaison de temps" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -"La chaîne Ecart Temps est ambigüe. Veuillez spécifier [%(human_readable)s" -" ago] ou [%(human_readable)s later]." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" -msgstr "Filtre de temps" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "Nom affiché" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 #, fuzzy -msgid "Time format" -msgstr "Format Datetime" +msgid "Number formatting" +msgstr "Format D3" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Granularité de Temps" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" +msgstr "Modifier un formateur" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -#, fuzzy -msgid "Time grain filter plugin" -msgstr "Granularité de temps manquante" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "Ajouter un formateur" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Granularité de temps manquante" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "Ajouter un nouveau formateur de couleur" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "alerte" -#: superset-frontend/src/explore/constants.ts:135 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 #, fuzzy -msgid "Time granularity" -msgstr "Granularité de Temps" +msgid "error" +msgstr "Opérateur" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "Temps en secondes" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Succès" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 #, fuzzy -msgid "Time lag" -msgstr "Intervalle de Temps" +msgid "alert dark" +msgstr "alerte" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Intervalle de Temps" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -#, fuzzy -msgid "Time ratio" -msgstr "Granularité de Temps" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "Cette valeur devrait être plus petite que la valeur cible de droite" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Attributs de formulaire liés au temps" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "Cette valeur devrait être plus grande que la valeur cible de gauche" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -#, fuzzy -msgid "Time series" -msgstr "Colonnes des séries temporelles" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Requis" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Colonnes des séries temporelles" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Opérateur" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Décalage temporel" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "Valeur gauche" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." -msgstr "" -"La chaîne de Temps est ambigüe. Veuillez spécifier [%(human_readable)s " -"ago] ou [%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "Valeur droite" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Valeur cible" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "Sélectionner la colonne" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 #, fuzzy -msgid "Time-series Area Chart" -msgstr "Séries temporelles - histogramme" +msgid "Color: " +msgstr "Couleur" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 #, fuzzy -msgid "Time-series Bar Chart" -msgstr "Séries temporelles - histogramme" +msgid "Upper threshold must be greater than lower threshold" +msgstr "`row_limit` doit être plus grand ou égal à 0" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 #, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "Séries temporelles - histogramme" +msgid "Isoline" +msgstr "Hors ligne" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +#, fuzzy +msgid "Threshold" +msgstr "Pourcentages" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Time-series Chart" -msgstr "Table de Séries temporelles" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 #, fuzzy -msgid "Time-series Line Chart" -msgstr "Séries temporelles - ligne" +msgid "The width of the Isoline in pixels" +msgstr "L'identifiant du graphique actif" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 #, fuzzy -msgid "Time-series Percent Change" -msgstr "Séries temporelles - pourcentage de changement" +msgid "The color of the isoline" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 #, fuzzy -msgid "Time-series Period Pivot" -msgstr "Séries temporelles - Période Pivot" +msgid "Isoband" +msgstr "et" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 #, fuzzy -msgid "Time-series Scatter Plot" -msgstr "Table de Séries temporelles" +msgid "Lower Threshold" +msgstr "Pourcentages" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 #, fuzzy -msgid "Time-series Smooth Line" -msgstr "Table de Séries temporelles" +msgid "Upper Threshold" +msgstr "Pourcentages" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 #, fuzzy -msgid "Time-series Stepped Line" -msgstr "Table de Séries temporelles" +msgid "The color of the isoband" +msgstr "Métrique servant à trier les résultats" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Table de Séries temporelles" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Erreur de timeout" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -#, fuzzy -msgid "Timestamp format" -msgstr "Format date/timestamp invalide" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" -msgstr "Fuseau horaire" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Timezone offset (en heure) de cette source de données" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "Sélecteur de fuseau horaire" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Éditer le jeu de données" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -#, fuzzy -msgid "Tiny" -msgstr "dans" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +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: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 -msgid "Title" -msgstr "Titre" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Voir dans SQL Lab" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" -msgstr "Colonne de Titre" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Prévisualisation de la requête" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Title is required" -msgstr "Une valeur est obligatoire" - -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Titre" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Pour filtrer sur une métrique, utiliser l'onglet Custom SQL." - -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Pour avoir une URL lisible pour votre tableau de bord" +msgid "Save as dataset" +msgstr "Choisissez un jeu de donnée" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "Outils" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +#, fuzzy +msgid "Missing URL parameters" +msgstr "Paramètres supplémentaires" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -#, fuzzy -msgid "Tooltip sort by metric" -msgstr "Filtres par métrique" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "Le jeu de données lié à ce graphique semble avoir été effacé." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -#, fuzzy -msgid "Tooltip time format" -msgstr "Format Datetime" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "TYPE INTERVALLE" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -#, fuzzy -msgid "Top" -msgstr "Arrêt" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Intervalle de temps courant" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -#, fuzzy -msgid "Top left" -msgstr "alerte" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "APPLIQUER" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -#, fuzzy -msgid "Top right" -msgstr "Hauteur" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Modifier intervalle de temps" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "Configurer Intervalle de temps avancé " -#: superset/viz.py:1047 -#, fuzzy -msgid "Total" -msgstr "Totaux" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "DEBUT (INCLUSIVE)" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Date de début incluse de l'intervalle de temps" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "FIN (EXCLUSIVE)" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "Valeurs NULL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Date de fin exclue de l'intervalle de temps" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, fuzzy, python-format -msgid "Total: %s" -msgstr "Totaux" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Configurer intervalle de temps : Précédent ..." -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "Totaux" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Configurer intervalle de temps : Dernier ..." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "Suivre le job" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Configurer un intervalle de temps personnalisée" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Quantité relative" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "Période relative" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "S'ancrer à" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -#, fuzzy -msgid "Tree Chart" -msgstr "Nouveau graphique" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "MAINTENANT" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Date/Heure" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -#, fuzzy -msgid "Tree orientation" -msgstr "Documentation" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "Retour au datetime spécifique." -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Carte proportionnelle" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "Syntaxe" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" -msgstr "Tendance" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Exemple" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "Décale l'ensemble de dates d'un intervalle spécifié." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "Déclencher une alerte si ..." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "Tronquer la date spécifiée à la précision spécifiée par l'unité de date." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "Récupérer la dernière date par l'unité de date." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "Récupérer la date spécifiée pour le jour férié" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -#, fuzzy -msgid "Truncate Metric" -msgstr "Trier les métriques" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Précédent" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "Personnalisée" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "hier" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "la semaine dernière" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." -msgstr "Tronquer la date spécifiée à la précision spécifiée par l'unité de date." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "le mois dernier" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "le trimestre dernier" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -#, fuzzy -msgid "Try different criteria to display results." -msgstr "Lancer une requête pour afficher les résultats" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "l'année dernière" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "semaine calendaire précédente" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Mardi" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "mois calendaire précédent" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#, fuzzy -msgid "Tukey" -msgstr "requête" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "année calendaire précédente" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Type" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "Secondes %s" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 #, python-format -msgid "Type \"%s\" to confirm" -msgstr "Tapez \"%s\" pour confirmer" +msgid "Minutes %s" +msgstr "Minutes %s" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" -msgstr "Renseigner une valeur" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "Heures %s" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "Saisir une valeur ici" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Jours %s" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "Le type est requis" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Semaines %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "Type de feuilles Google Sheets autorisées" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "Mois %s" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr "Trimestres %s" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 #, python-format -msgid "Type or Select [%s]" -msgstr "Tapez ou Selectionnez [%s]" +msgid "Years %s" +msgstr "Année %s" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -#, fuzzy -msgid "UI Configuration" -msgstr "Configuration du filtre" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "Date/Heure Spécifique" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "Date/Heure Relative" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -#, fuzzy -msgid "URL Parameters" -msgstr "Paramètres URL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "Maintenant" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "Paramètres URL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "Minuit" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "URL Slug" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "Expressions sauvegardées" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "" -"Impossible d'ajouter une table dans le backend. Veuillez contacter votre " -"administrateur." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Enregistré" -#: superset/db_engine_specs/presto.py:704 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "Impossible de se connecter au catalogue \"%(catalog_name)s\"." +msgid "%s column(s)" +msgstr "%s colonne(s)" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Impossible de se connecter à la base de données \"%(database)s\"." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +#, fuzzy +msgid "No temporal columns found" +msgstr "Aucun colonne compatible trouvée" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#, fuzzy +msgid "No saved expressions found" +msgstr "Expressions sauvegardées" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Impossible de trouver un tel congé : [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#, fuzzy +msgid " to add calculated columns" +msgstr "Colonnes calculées" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Simple" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "SQL personnalisé" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "Ma colonne" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -"Impossible de migrer l'état de l'éditeur de requêtes dans le backend. " -"Superset réessayera plus tard. Veuillez contacter votre administrateur si" -" le problème persiste." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -"Impossible de migrer l'état de la requête dans le backend. Superset " -"réessayera plus tard. Veuillez contacter votre administrateur si le " -"problème persiste." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" -"Impossible de migrer l'état du schéma de la table dans le backend. " -"Superset réessayera plus tard. Veuillez contacter votre administrateur si" -" le problème persiste." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "Supprimer une colonne ici ou cliquer" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "Cliquer pour éditer le Label" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "Supprimer des colonnes/métriques ici ou cliquer" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset/views/database/views.py:278 -#, python-format +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" +msgstr "Supprimer une colonne/métrique ici ou cliquer" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -"Impossible de téléverser le fichier CSV \"%(filename)s\" dans la table " -"\"%(table_name)s\" de la base de données \"%(db_name)s\". Message " -"d'erreur : %(error_msg)s" +"\n" +" Ce filtre est hérite du contexte du tableau de bord.\n" +" Il ne sera pas sauvé à l'enregistrement du graphique.\n" +" " -#: superset/views/database/views.py:556 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 #, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +msgid "%s option(s)" +msgstr "%s option(s)" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "Sélectionner un objet" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -"Impossible de charger le fichier en colonnes \"%(filename)s\" dans la " -"table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message " -"d'erreur : %(error_msg)s" +"Aucune colonne de ce type n'a été trouvée. Pour filtrer sur une métrique," +" essayer l'onglet Custom SQL." -#: superset/views/database/views.py:415 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Pour filtrer sur une métrique, utiliser l'onglet Custom SQL." + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Impossible de charger le fichier Excel \"%(filename)s\" dans la table " -"\"%(table_name)s\" de la base de données \"%(db_name)s\". Message " -"d'erreur : %(error_msg)s" +msgid "%s operator(s)" +msgstr "%s opérateur(s)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Indéfini" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "Sélectionner l'opérateur" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Fenêtre indéfinie pour l'opération de roulement" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "Option comparateur" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Saisir une valeur ici" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Valeur du filtre (sensible à la casse)" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy -msgid "Undo the action" -msgstr "Exécuter la sélection" +msgid "Failed to retrieve advanced type" +msgstr "Echec lors de la récupération des résultats" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "Défaire?" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "choisir WHERE ou HAVING..." -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Erreur inattendue" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Filtrer par colonne" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" -msgstr "Erreur inattendue, consultez les logs pour plus de détails" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Filtres par métrique" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy -msgid "Unexpected error: " -msgstr "Erreur inattendue" +msgid "metric" +msgstr "métrique" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" -msgstr "Intervalle de temps inattendu: %s" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Modifié" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "Erreur inconnue" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "Basé sur une métrique" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Hôte MySQL \"%(hostname)s\" inconnu." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Ma métrique" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "Erreur Presto inconnue" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Ajouter une métrique" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" -msgstr "Statut inconnu" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" +msgstr "Sélectionner les options d’agrégat" -#: superset/models/helpers.py:1582 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Colonne inconnue utilisée dans le tri %(col)s" +msgid "%s aggregates(s)" +msgstr "%s agrégat(s)" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "Erreur inconnue" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "Sélectionner les métriques sauvegardées" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" +msgstr "%s métrique(s) sauvegardée(s)" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -#, fuzzy -msgid "Unknown type" -msgstr "Erreur inconnue" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Métrique sauvegardée" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 #, fuzzy -msgid "Unknown value" -msgstr "Statut inconnu" +msgid "No saved metrics found" +msgstr "%s métrique(s) sauvegardée(s)" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Type de retour non sécurisé pour la fonction %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" +msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Valeur de template non sécurisée pour la clé %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "Ajouter une métrique" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "Type de clause non supportée: %(clause)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "Les métriques ad-hoc simples ne sont pas disponibles pour ce dataset" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Opération de post-traitement non supportée : %(operation)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "colonne" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Type de retour non supporté pour la méthode %(name)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "agrégat" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Valeur de template non supportée pour la clé key %(key)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "" +"Les métriques ad-hoc pour le SQL personnalisé ne sont pas disponibles " +"pour ce dataset" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Granularité de Temps non supportée : %(time_grain)s" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, fuzzy, python-format +msgid "Error while fetching data: %s" +msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Colonnes des séries temporelles" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 #, fuzzy -msgid "Untitled Dataset" -msgstr "Éditer le jeu de données" +msgid "Actual value" +msgstr "Valeurs NULL" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "" -#: superset/views/sql_lab/views.py:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 #, fuzzy -msgid "Untitled Query" -msgstr "Requête sans titre" +msgid "The column header label" +msgstr "Supprimer une colonne ici" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Requête sans titre" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" +msgstr "" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Largeur" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#, fuzzy +msgid "Time lag" +msgstr "Intervalle de Temps" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "Mettre à jour" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 #, fuzzy -msgid "Update chart" -msgstr "Mettre à jour" +msgid "Time Lag" +msgstr "Intervalle de Temps" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 #, fuzzy -msgid "Updating chart was stopped" -msgstr "La requête a été arrêtée" +msgid "Time ratio" +msgstr "Granularité de Temps" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Téléverser" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 #, fuzzy -msgid "Upload CSV" -msgstr "télécharger en CSV" +msgid "Time Ratio" +msgstr "Granularité de Temps" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" -msgstr "Importer des fichiers CSV vers la base de données" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "Charger les informations de connexion" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "" -#: superset/databases/filters.py:66 -#, fuzzy -msgid "Upload Enabled" -msgstr "Téléverser un fichier Excel" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -#, fuzzy -msgid "Upload Excel file" -msgstr "Téléverser un fichier Excel" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "Importer des fichiers Excel vers la base de données" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "Charger un fichier JSON" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 #, fuzzy -msgid "Upload columnar file" -msgstr "Téléverser un fichier en colonnes" +msgid "Optional d3 number format string" +msgstr "Informations additionnelles" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" -msgstr "Importer des colonnes vers la base de données" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +#, fuzzy +msgid "Number format string" +msgstr "Format D3" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 #, fuzzy -msgid "Upload file to database" -msgstr "Importer des fichiers Excel vers la base de données" +msgid "Optional d3 date format string" +msgstr "Informations additionnelles" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 #, fuzzy -msgid "Usage" -msgstr "Gestion" +msgid "Date format string" +msgstr "Formatage adapté" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +#, fuzzy +msgid "Column Configuration" +msgstr "Vérifier la configuration" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "Sélectionner un type de visualisation" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 #, python-format -msgid "Use \"%(menuName)s\" menu instead." +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "Requête dans un nouvel onglet" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "Tags recommandés" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -#, fuzzy -msgid "Use Area Proportions" -msgstr "Sélectionner les options d’agrégat" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "Chercher tous les graphiques" -#: superset/views/database/forms.py:472 -msgid "Use Columns" -msgstr "Utilise Columns" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "Pas de description disponible." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Exemples" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Ce type de visualisation n'est pas supporté." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#, fuzzy +msgid "View all charts" +msgstr "Chercher tous les graphiques" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "Utiliser une connexion cryptée vers la base de données" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Sélectionner un type de visualisation" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Aucun résultat trouvé" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "Graphique Superset" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "Utiliser l'ancien éditeur de source de données" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Nouveau graphique" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Modifier les propriétés du graphique" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +#, fuzzy +msgid "Dashboards added to" +msgstr "tableaux de bord" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -"Utiliser le fichier JSON que vous avez téléchargé automatiquement lors de" -" la création de votre compte de service." -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" +msgstr "Exporter au format JSON" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 #, fuzzy -msgid "Use the edit button to change this field" -msgstr "Utilisez le bouton Editer pour changer ce champ" +msgid "Embed code" +msgstr "mode edition" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Exécuter dans SQL Lab" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Code" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "Utiliser ceci pour définir une couleur statique pour tous les cercles" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Type de balisage" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" -"Utilisé en interne pour identifier le plugin. Devrait être le nom du " -"package tiré du fichier plugin package.json" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Choisissez votre langage de balisage préféré" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Mettez votre code ici" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Paramètres URL" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Annotations et couches" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Couches d'annotations" + +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Utilisateur" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (Plus petit que)" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Profils utilisateurs" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (Plus grand que)" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." -msgstr "L'utilisateur n'a pas les droits." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (Plus petit ou égal)" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -#, fuzzy -msgid "User must select a value before applying the filter" -msgstr "L'utilisateur doit sélectionner une valeur pour ce filtre" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (Plus grand ou égal)" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "L'utilisateur doit sélectionner une valeur pour ce filtre" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (Est equal)" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "Requête utilisateur" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (N'est pas égal)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "Nom d'utilisateur" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Non Null" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 jours" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 jours" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Ajouter une méthode de notification" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Valeur" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Ajouter méthode de livraison" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Ajouter" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy -msgid "Value Format" -msgstr "Format d'e-mail" +msgid "Edit Report" +msgstr "Modifier le rapport par e-mail" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#, fuzzy +msgid "Edit Alert" +msgstr "Éditer la table" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 #, fuzzy -msgid "Value format" -msgstr "Format d'e-mail" +msgid "Add Report" +msgstr "rapport" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "Une valeur est obligatoire" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#, fuzzy +msgid "Add Alert" +msgstr "alerte" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "La valeur doit être plus grande que 0" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Nom du rapport" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "Les valeurs dépendent d'autres filtres" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Nom de l'alerte" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" -msgstr "Valeurs dépendent de" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Actif" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" -msgstr "" -"Les valeurs sélectionnées dans d'autres filtres affecteront les options " -"de filtrage afin de n'afficher que les valeurs pertinentes" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Condition d'alerte" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -#, fuzzy -msgid "Vehicle Types" -msgstr "Type du filtre" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "Requête SQL" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Nom explicite" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" -msgstr "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Déclencher une alerte si ..." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "Numéro de version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "Condition" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -#, fuzzy -msgid "Vertical" -msgstr "virtuel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Planification de rapport" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -#, fuzzy -msgid "Vertical (Left)" -msgstr "virtuel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Planification de la condition d'alerte" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "Fuseau horaire" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#, fuzzy -msgid "View" -msgstr "Prévisualisation" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Paramètres de planification" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" -msgstr "Tout voir »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Rétention de log" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "Éditer le jeu de données" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Timeout d'exécution" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -#, fuzzy -msgid "View all charts" -msgstr "Chercher tous les graphiques" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Temps en secondes" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 #, fuzzy -msgid "View as table" -msgstr "Voir exemples" +msgid "seconds" +msgstr "30 secondes" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Voir dans SQL Lab" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Période de grâce" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Vue des clefs et index (%s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Contenu du message" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Voir la requête" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "Envoyer comme PNG" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Consultés" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "Envoyer au format CSV" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, fuzzy, python-format -msgid "Viewed %s" -msgstr "Consultés %s" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "Envoyer comme texte" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 #, fuzzy -msgid "Viewport" -msgstr "rapport" +msgid "Ignore cache when generating report" +msgstr "" +"L'exécution de la planification de rapport a échoué à la génération de la" +" copie d'écran." -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -#, fuzzy -msgid "Virtual" -msgstr "virtuel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "SQL virtuel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Jeu de données virtuel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Méthode de notification" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "La requête du jeu de données virtuel ne peut pas être vide" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "rapport" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "" -"La requête du jeu de données virtuel ne peut pas comporter plusieurs " -"instructions" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "Dernière mise à jour %s" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "La requête du jeu de données virtuel doit être en lecture seule" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +#, fuzzy +msgid "CRON Schedule" +msgstr "Planification de rapport" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "Expression CRON" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Type de visualisation" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Rapport envoyé" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Type de visualisation" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Alerte déclenchée, notification envoyée" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Envoi d'un rapport" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Altere en cours" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Le rapport a échoué" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "L'alerte a échoué" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Rien déclenché" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Alerte déclenchée, -période de grâce" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "Méthode de livraison" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "Choisir la méthode de livraison" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Les destinataires sont séparés par \",\" ou \";\"" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +#, fuzzy +msgid "Queries" +msgstr "requêtes" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "annotation_layer" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#, fuzzy +msgid "Annotation template updated" +msgstr "Cette annotation a été modifiée" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#, fuzzy +msgid "Annotation template created" +msgstr "L'annotation n'a pas pu être créée." -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Couches d'annotation" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Nom de la couche d'annotations" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Viz est une source de données manquante" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Description (cela peut être vu dans la liste)" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "Type" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "annotation" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "MER" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "Cette annotation a été modifiée" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "Ajouter un nouvelle base de données ?" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "Cette annotation a été sauvegardée" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "Avertissement" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Modifier annotation" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Message d'avertissement" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Ajouter une annotation" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Attention !" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "date" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." -msgstr "" -"Attention ! Changer le jeu de données peut mettre en erreur le graphique " -"si la métadonnées n'existe pas." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Informations additionnelles" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -#, fuzzy -msgid "Was unable to check your query" -msgstr "Label pour votre requête" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Veuillez confirmer" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Etes-vous sûr de vouloir supprimer" -#: superset/db_engine_specs/bigquery.py:198 +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 #, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "" -"Nous ne pouvons résoudre la colonne \"%(column)s\" à la ligne " -"%(location)s." +msgid "Modified %s" +msgstr "%s modifié" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "Nous ne pouvons résoudre la colonne \"%(column_name)s\"" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css_template" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." -msgstr "" -"Nous ne pouvons résoudre la colonne \"%(column_name)s\" à la ligne " -"%(location)s." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Modifier les propriétés du template CSS" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" -msgstr "" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Templates CSS" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." -msgstr "Nous n'avons pas pu activer ou désactiver ce rapport." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." -msgstr "" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "publié" -#: superset/db_engine_specs/redshift.py:94 -#, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." -msgstr "" -"Nous n'avons pas pu nous connecter à votre base de données " -"\"%(database)s\". Veuillez vérfier le nom de la base et réessayez." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "brouillon" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Mercredi" - -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "Semaine" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "Exposer la base de données dans SQL Lab" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" -msgstr "Semaine terminant le samedi" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Autoriser cette base de données à être requêtées dans SQL Lab" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" -msgstr "Semaine débutant le lundi" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Autoriser la création de nouvelles tables basées sur des requêtes" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "Semaine débutant le dimanche" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Autoriser la création de nouvelles vues basées sur des requêtes" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" -msgstr "Semaine terminant le dimanche" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "SCHEMA CTAS & CVAS" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -#, fuzzy -msgid "Weekly Report" -msgstr "rapport" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Créer ou sélectionner schéma ..." -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +msgid "" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" +"Force la création des tables et des vues dans ce schéma quand on cliquer " +"sur CTAS or CVAS dans SQL Lab." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +msgid "" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" +"Permettre la manipulation de la base de données en utilisant des " +"instructionsnon SELECT comme UPDATE, DELETE, CREATE, etc." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" -msgstr "Semaines %s" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -#, fuzzy -msgid "Weight" -msgstr "Hauteur" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "Activer l'estimation du coût de la requête" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -"Erreur au chargement de ces résultats. Les requêtes s'interrompent au " -"bout de %s secondes." -msgstr[1] "" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." +msgstr "" +"Pour Presto et Postgres, affiche un bouton pour calculer le coût avant " +"d'exécuter une requête." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -"Erreur au chargement de cette visu. Les requêtes s'interrompent au bout " -"de %s secondes." -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "Autoriser cette base de données à être explorée" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" +"Quand activé, les utilisateurs peuvent visualiser les résulats de SQL Lab" +" dans Explorer." -#: superset/views/database/forms.py:175 -#, fuzzy -msgid "What should happen if the table already exists" -msgstr "Un ensemble de filtre avec ce nom existe déjà" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -"Lorsque `Type de calcul` vaut \"Pourcentage de changement\", le format de" -" l'axe Y est à forcé à `.1%`" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -"Quand l'option autoriser CREATE TABLE AS dans SQL Lab est cochée, force " -"la table a être créée dans le schéma" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -"Quand activé, les utilisateurs peuvent visualiser les résulats de SQL Lab" -" dans Explorer." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Timeout du cache du graphique" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "Entrer la durée en secondes" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#, fuzzy msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -"Quand on indique du SQL, la source de données se comporte comme une vue. " -"Superset utilisera ce paramètre comme une sous-requête lors du " -"regroupement et du filtrage sur la requête parent générée." +"Durée (en secondes) du timeout de cache pour les graphiques cette base de" +" données. Un timeout de 0 indique que le cache n'expire jamais. Noter que" +" s'il n'est pas défini, c'est le timeout global qui est pris en compte." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "Timeout du cache de schéma" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -"Quand vous utilisez les filtres de replissage automatique, cela peut être" -" utilisé pour améliorer la perfomance de chargement des valeurs. Utilisez" -" cette option pour appliquer un prédicat (clause WHERE) à la requête qui " -"sélectionne les valeurs. Typiquement, le but serait de limiter le " -"parcours en appliquant un filtre temporel sur un champ temporel " -"partitionné ou indexé." +"Durée (en seconds) du délai de mise en cache pour les schémas de base de " +"données. Si vide, le cache n'expire jamais." -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "Quand vous utilisez 'Grouper par' vous êtes limité à une seule métrique" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "Timeout du cache de table" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" +"Durée (en secondes) du délai de mise en cache pour les métadonnées des " +"tables de cette base de données. Si vide, le cache n'expire jamais. " -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" -msgstr "Quand l'option est utilisée, une valeur par defaut doit être indiquée" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Exécution de requête asynchrone" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "Annule la requête quand on quitte la fenêtre" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" +"Arrête les requêtes en cours quand la fenêtre du navigateur est fermée ou" +" quand change pour un autre page. Disponibles pour les bases de données " +"Presto, Hive, MySQL, Postgres et Snowflake." -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "Si la table a été générée par le flow 'Visualiser' dans SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +#, fuzzy +msgid "Add extra connection information." +msgstr "Information simple" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Sécurité" -#: superset/connectors/sqla/views.py:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -"Si cette colonne doit apparaître dans la section `Filtres` de la page " -"exploration." +"Chaîne JSON qui contient des informations de configuration de connexion " +"supplémentaires. Ceci est utilisé pour fournir des informations de " +"connexion pour des systèmes comme Hive, Presto et BigQuery qui ne se " +"conforment pas à la syntaxe utilisateur:mot_de_passe normalement utilisée" +" par SQLAlchemy." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "Entrer CA_BUNDLE" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" +"Contenu CA_BUNDLE optionnel pour valider les requêtes HTTPS. Disponible " +"seulent pour certains moteurs de base de données." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" +"Impersonnaliser l'utilisateur connecté (Presto, Trino, Drill, Hive, and " +"GSheets)" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" +"Si Presto ou Trino, toutes les requêtes dans SQL Lab sont en cours " +"d'exécution sous le compte de l'utilisateur actuellement connecté qui " +"doit avoir les permissions requises pour les exécuter. Si Hive et " +"hive.server2.enable.doAs est activé, les requêtes seront exécutées sous " +"le compte du service, mais en impersonnifiant l'utilisateur actuellement " +"connecté via la propriété hive.server2.proxy.user." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +#, fuzzy +msgid "Allow file uploads to database" +msgstr "Sélectionner un fichier Excel à charger dans une base de données." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +#, fuzzy +msgid "Schemas allowed for File upload" +msgstr "Schémas autorisés pour le chargement de CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +#, fuzzy +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" +"Une liste de schémas (séparés par des virgules) autorisés pour le " +"chargement de CSV." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "Informations additionnelles" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "Les paramètres de métadonnées" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" +"L'objet metadata_params contient les paramètres envoyés à " +"sqlalchemy.MetaData." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "Les paramètres du moteur" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" +"L'objet engine_params contient les paramètres envoyés à " +"sqlalchemy.create_engine." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "Version" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "Numéro de version" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +#, fuzzy +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" +"Spécifier la version de la base de données. Ceci doit être utilisé avec " +"Presto afin d'autoriser l'estimation du coût de requête." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +#, fuzzy +msgid "Enter Primary Credentials" +msgstr "Charger les informations de connexion" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "La base de données n'a pas pu être créée." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 #, fuzzy -msgid "Whether to display the stroke" -msgstr "Métrique servant à trier les résultats" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "" +msgid "Select a database to connect" +msgstr "Une connexion non sécurisée avec la base de données a été arrêtée" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 #, fuzzy -msgid "Whether to fill the objects" -msgstr "Métrique servant à trier les résultats" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" -msgstr "" +msgid "e.g. Analytics" +msgstr "Analyses avancées" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 #, fuzzy -msgid "Whether to include a client-side search box" -msgstr "S'il faut inclure un filtre de temps" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "S'il faut inclure un filtre de temps" +msgid "Login with" +msgstr "L'épaisseur de la ligne" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 #, fuzzy -msgid "Whether to include the percentage in the tooltip" -msgstr "S'il faut inclure un filtre de temps" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" +msgid "Private Key & Password" +msgstr "Réinitialiser mon mot de passe" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 #, fuzzy -msgid "Whether to make the grid 3D" -msgstr "Métrique servant à trier les résultats" +msgid "SSH Password" +msgstr "Mot de passe" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -"S'il faut que cette colonne soit accessible comme une option [Time " -"Granularity], elle doit être DATETIME ou d'un format équivalent" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "S'il faut remplir les options des filtres de saisie semi-automatique" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "Réinitialiser mon mot de passe" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -"Faut-il remplir à la volée les choix du filtre de la section filtre de la" -" page d'exploration avec la liste des valeurs distinctes répérées depuis " -"le backend" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Nom affiché" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "Donner un nom à la base de données" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "Choisissez un nom pour vous aider à identifier cette base de données." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "dialect+driver://username:password@host:port/database" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -#, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Trier par ordre décroissant ou croissant" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "Se référér à" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Trier par ordre décroissant ou croissant" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr "pour plus d'information sur comment strcuturer votre URI." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -#, fuzzy -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "Trier par ordre décroissant ou croissant" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Tester la connexion" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "base de données" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Veuillez entrer une URI SQLAlchemy pour tester" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 #, fuzzy -msgid "Whether to truncate metrics" -msgstr "Métrique servant à trier les résultats" +msgid "Database settings updated" +msgstr "La base de données n'a pas pu être mise à jour." -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des " +"informations de cette base de données : %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +#, fuzzy +msgid "Supported databases" +msgstr "Importer la base de données" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 #, fuzzy -msgid "White" -msgstr "Titre" +msgid "Choose a database..." +msgstr "Choisissez un jeu de donnée" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Largeur" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "Ajouter un nouvelle base de données ?" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -#, fuzzy -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "L'intervalle de confiance doit être entre 0 et 1 (exclusif)" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "La fenêtre doit être > 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "Connecter" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "Terminer" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 #, fuzzy -msgid "Word Rotation" -msgstr "Ajouter une annotation" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" +"Les mots de passe pour les bases de données ci-dessous sont nécessaires " +"pour les importer. Notez que les sections \"Securité Supplémentaire\" et " +"\"Certificat\" de la configuration de la base de données ne sont pas " +"présents dans les fichiers d'export et doivent être ajoutés manuellement " +"après l'import si nécessaire." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "Timeout d'exécution" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Carte du monde" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Vous importez une ou plusieurs bases de données qui existent déjà. " +"L'écrasement peut vous conduire à perdre une partie de votre travail. " +"Etes-vous sûr de vouloir ce remplacement ?" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Ecrire une description à votre requête" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#, fuzzy +msgid "Database Creation Error" +msgstr "Erreur de base de données" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/views/database/forms.py:229 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 #, fuzzy -msgid "Write dataframe index as a column" -msgstr "Ecrire l'index du tableau de données en colonne." - -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "Ecrire l'index du tableau de données en colonne." +msgid "CREATE DATASET" +msgstr "Changer de jeu de données" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "Axe X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "Connecter une base de données" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -#, fuzzy -msgid "X Axis Format" -msgstr "Format de l'axe Y" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Éditer la base de données" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -#, fuzzy -msgid "X Axis Title" -msgstr "Onglet titre" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" +"Cliquez sur ce lien pour basculer sur un autre formulaire qui ne montrera" +" que les champs nécessaires pour se connecter à cette base de données." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 #, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "Tri croissant" +msgid "Import database from file" +msgstr "Importer la base de données" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -#, fuzzy -msgid "X-axis" -msgstr "Axe Y" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -#, fuzzy -msgid "XScale Interval" -msgstr "Intervalle d'actualisation" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "" +"Cliquez sur ce lien pour basculer sur un autre formulaire qui vous " +"permettra d'entrer manuellement l'URL SQLAlchemy pour cette base de " +"données." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" +"Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine " +"(ex mydatabase.com)." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Axe Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +#, fuzzy +msgid "Port" +msgstr "rapport" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Format de l'axe Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +#, fuzzy +msgid "Copy the name of the database you are trying to connect to." +msgstr "" +"Copier le nom de la base de données à laquelle vous essayez de vous " +"connecter." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 #, fuzzy -msgid "Y Axis Title" -msgstr "Onglet titre" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +msgid "Pick a nickname for how the database will display in Superset." msgstr "" +"Choisissez un alias pour l'affichage de cette base de données dans " +"Superset." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 #, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "Tri croissant" +msgid "Additional Parameters" +msgstr "Paramètres supplémentaires" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "Ajouter des paramètres personnalisés supplémentaires" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -#, fuzzy -msgid "Y-axis" -msgstr "Axe Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "Le mode SSL \"require\" sera utilisé." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "Type de feuilles Google Sheets autorisées" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "Seulement les feuilles paratagées publiques" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "Feuilles partagées de manière publique ou privée" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" +"Comment voulez-vous entrer les informations de connexion du compte de " +"service ?" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "Charger un fichier JSON" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "Copier et coller les informations de connexion JSON" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "Compte de service" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 #, fuzzy -msgid "YScale Interval" -msgstr "Intervalle d'actualisation" +msgid "Paste content of service credentials JSON file here" +msgstr "Copier et coller ici le fichier de service .json en entier" -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "Année" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "Copier et coller ici le fichier de service .json en entier" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "Charger les informations de connexion" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" +"Utiliser le fichier JSON que vous avez téléchargé automatiquement lors de" +" la création de votre compte de service." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" +"Connecter à cette base de données les feuilles Google Sheet comme des " +"tables" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" -msgstr "Année %s" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Nom et URL de la feuille Google Sheet" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "Oui" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "Entrée un nom pour cette feuille" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "Oui, annuler" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "Coller ici l'URL partageable de Google Sheet" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "Ajouter une feuille" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +#, fuzzy +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" +"Copier le nom de la base de données à laquelle vous essayez de vous " +"connecter." -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -"Vous importez un ou plusieurs graphiques qui existent déjà. L'écrasement " -"peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de" -" vouloir ce remplacement ?" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" -"Vous importez un ou plusieurs tableaux de bord qui existent déjà. " -"L'écrasement peut vous conduire à perdre une partie de votre travail. " -"Etes-vous sûr de vouloir ce remplacement ?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" +msgstr "" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#, fuzzy +msgid "Duplicate dataset" +msgstr "Éditer le jeu de données" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +#, fuzzy +msgid "Duplicate" +msgstr "Dupliquer l'onglet" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "Nom du jeu de donnée" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/constants.ts:23 +#, fuzzy msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -"Vous importez une ou plusieurs bases de données qui existent déjà. " -"L'écrasement peut vous conduire à perdre une partie de votre travail. " -"Etes-vous sûr de vouloir ce remplacement ?" +"Les mots de passe pour les bases de données ci-dessous sont nécessaires " +"pour les importer en même temps que les graphiques. Notez que les " +"sections \"Securité Supplémentaire\" et \"Certificat\" de la " +"configuration de la base de données ne sont pas présents dans les " +"fichiers d'export et doivent être ajoutés manuellement après l'import si " +"nécessaire." #: superset-frontend/src/features/datasets/constants.ts:30 #, fuzzy @@ -19401,1606 +19120,1870 @@ msgstr "" "L'écrasement peut vous conduire à perdre une partie de votre travail. " "Etes-vous sûr de vouloir ce remplacement ?" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#, fuzzy +msgid "Refreshing columns" +msgstr "Colonnes des séries temporelles" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "Colonne de Titre" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#, fuzzy +msgid "Loading" +msgstr "Chargement ..." + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" +msgstr "" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "Éditer le jeu de données" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -"Vous importez une ou plusieurs requêtes sauvegardées qui existent déjà. " -"L'écrasement peut vous conduire à perdre une partie de votre travail. " -"Etes-vous sûr de vouloir ce remplacement ?" -#: superset/views/core.py:2213 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -"Vous n'avez pas le droit de voir cette requête. Contactez votre " -"administrateur si vous pensez que c'est une erreur." -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -#, fuzzy -msgid "You can" -msgstr "Carte de pays" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "Vous pouvez ajouter les composants via le" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 #, fuzzy -msgid "You can add the components in the edit mode." -msgstr "Vous pouvez ajouter les composants via mode edition" +msgid "Select dataset source" +msgstr "Utiliser l'ancien éditeur de source de données" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "Vous pouvez juste cliquer sur le graphique pour appliquer le filtre" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "Pas de colonne temporelle" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "Un erreur s'est produite" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -"Vous pouvez créer un nouveau graphique ou utililser ceux existants à " -"partir du panneau de droite" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." -msgstr "Vous ne pouvez pas ajouter de filtre sur ce point de donnée" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#, fuzzy +msgid "Usage" +msgstr "Gestion" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Propriétaire du graphique : %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "Dernière modification" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "Dernière modification par %s" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "tableaux de bord" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "graphique" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Aucun graphique" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -"Vous ne pouvez pas utiliser [Colonnes] en même temps que [Grouper " -"par]/[Métriques]/[Métriques de Pourcentages]. Veuillez choisir l'un ou " -"l'autre." -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "Vous n'avez pas les permission pour modifier ce graphique" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#, fuzzy +msgid "Select a database table." +msgstr "Supprimer une base de données" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "Vous n'avez pas les permission pour modifier ce graphique" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "Créer un nouveau graphique" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "Vous n'avez pas le droit de modifier ce tableau de bord" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#, fuzzy +msgid "New dataset" +msgstr "Changer de jeu de données" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "Vous n'avez pas les permissions pour accéder à(aux) source(s) : %(name)s." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +#, fuzzy +msgid "Select a database table and create dataset" +msgstr "Sélectionnez la base de données ou tapez le nom de la table" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "Vous n'avez pas les droits pour modifier ce tableau de bord." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +#, fuzzy +msgid "dataset name" +msgstr "Nom du jeu de donnée" -#: superset/charts/commands/exceptions.py:131 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 #, fuzzy -msgid "You don't have access to this chart." -msgstr "Vous n'avez pas accès à ce tableau de bord." +msgid "Not defined" +msgstr "Indéfini" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "Vous n'avez pas accès à ce tableau de bord." +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des " +"informations de cette base de données : %s" -#: superset/datasets/commands/exceptions.py:206 +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 #, fuzzy -msgid "You don't have access to this dataset." -msgstr "Vous n'avez pas accès à ce tableau de bord." +msgid "There was an error fetching dataset's related objects" +msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des " +"informations de cette base de données : %s" -#: superset/embedded_dashboard/commands/exceptions.py:34 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "Vous n'avez pas accès à ce tableau de bord." +msgid "There was an error loading the dataset metadata" +msgstr "Il y a eu une erreur au chargement des tables" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "Vous n'avez pas encore de favoris !" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Sans titre]" + +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Erreur inconnue" + +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, fuzzy, python-format +msgid "Viewed %s" +msgstr "Consultés %s" + +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Édité" + +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Créé le" + +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Consultés" + +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Favoris" + +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Personnel" + +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "Tout voir »" + +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 +#: superset-frontend/src/features/home/EmptyState.tsx:28 #, fuzzy -msgid "You don't have permission to modify the value." -msgstr "Vous n'avez pas les permission pour modifier ce graphique" +msgid "charts" +msgstr "graphiques" -#: superset/security/manager.py:2262 -#, fuzzy, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Vous n'avez pas les droits pour modifier ce titre." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +#, fuzzy +msgid "dashboards" +msgstr "tableaux de bord" -#: superset/views/core.py:945 +#: superset-frontend/src/features/home/EmptyState.tsx:30 #, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "Vous n'avez pas les droits pour modifier ce titre." +msgid "recents" +msgstr "récents" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/home/EmptyState.tsx:31 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "Vous n'avez pas les droits pour modifier ce titre." +msgid "saved queries" +msgstr "requêtes sauvegardées" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Vous n'avez pas les droits pour modifier ce titre." +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "Aucun graphique" -#: superset/views/core.py:951 +#: superset-frontend/src/features/home/EmptyState.tsx:36 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "Vous n'avez pas les droits pour " +msgid "No dashboards yet" +msgstr "Aucun tableau de bord" -#: superset/views/core.py:1135 +#: superset-frontend/src/features/home/EmptyState.tsx:37 #, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "Vous n'avez pas les droits pour " +msgid "No recents yet" +msgstr "récents" -#: superset/views/core.py:649 +#: superset-frontend/src/features/home/EmptyState.tsx:38 #, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "Vous n'avez pas les droits pour " +msgid "No saved queries yet" +msgstr "requêtes sauvegardées" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "Vous n'avez pas les permission pour approuver cette requête" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, fuzzy, python-format +msgid "%(other)s charts will appear here" +msgstr "Les ${tableName.toLowerCase()} d'exemple apparaîtront ici" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Vous avez supprimé ce filtre." +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, fuzzy, python-format +msgid "%(other)s dashboards will appear here" +msgstr "Les ${tableName.toLowerCase()} d'exemple apparaîtront ici" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "Vous avez des modifications non sauvegardées." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, fuzzy, python-format +msgid "%(other)s recents will appear here" +msgstr "Les ${tableName.toLowerCase()} d'exemple apparaîtront ici" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, fuzzy, python-format +msgid "%(other)s saved queries will appear here" msgstr "" +"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " +"récemment consultés apparaîtront ici" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" +"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " +"récemment consultés apparaîtront ici" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Vous devez entrer un nom pour le nouveau Tableau de Bord" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "Vous devez d'abord exécuter la requête avec succès" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" +"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " +"récemment créés apparaîtront ici" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" +"Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " +"récemment modifiés apparaîtront ici" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "requête SQL" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "Vous n'avez pas encore de favoris !" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, fuzzy, python-format +msgid "See all %(tableName)s" +msgstr "Explorer - %(tableName)s" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "" -"Votre tableau de bord est trop gros.Merci de réduire sa taille avant de " -"sauvegarder." +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "Connexion à la base de données" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Votre requête n'a pas pu être enregistrée" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +#, fuzzy +msgid "Create dataset" +msgstr "Changer de jeu de données" -#: 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" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Votre requête n'a pas pu être mise à jour" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "Importer des fichiers CSV vers la base de données" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" -msgstr "" -"Votre requête a été planifiée. Pour voir les détails de votre requête, " -"naviguer vers Requêtes sauvegardées" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "Importer des colonnes vers la base de données" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -#, fuzzy -msgid "Your query was not properly saved" -msgstr "Votre requête a été enregistrée" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "Importer des fichiers Excel vers la base de données" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "Votre requête a été enregistrée" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +#, fuzzy +msgid "Enable 'Allow file uploads to database' in any database's settings" +msgstr "" +"Activez l'option 'Autoriser le chargement de données' dans les paramètres" +" de la base de données" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "Votre requête a été mise à jour" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Info" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" -msgstr "Votre rapport n'a pas pu être supprimé" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Déconnexion" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -#, fuzzy -msgid "Zero imputation" -msgstr "description" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "A propos" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "Propulsé par Apache Superset" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 +#: superset-frontend/src/features/home/RightMenu.tsx:507 #, fuzzy -msgid "[ untitled dashboard ]" -msgstr "Éditer le tableau de bord" +msgid "Build" +msgstr "Rebuild" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "" -"Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans " -"[Grouper par]" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "Documentation" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "Les colonnes [Longitude] et [Latitude] doivent êtres définies" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "Rapporter un BUG" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "[jeu de données manquant]" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Connexion" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] Accès à la source de données %(name)s accordé" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "requête" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "[Sans titre]" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Supprimé : %s" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -#, fuzzy -msgid "[asc]" -msgstr "Simple" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Il y a eu un problème lors de la suppression de %s: %s" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -#, fuzzy -msgid "[copy]" -msgstr "Copier" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Cette action va définitivement supprimer la requête sauvegardée." -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[nom du tableau de bord]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Supprimer la requête ?" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "A été exécuté %s" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Requêtes sauvegardées" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -#, fuzzy -msgid "[untitled]" -msgstr "[Sans titre]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Suivant" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "`compare_columns` doit être de même longueur que `source_columns`." +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Nom de l'onglet" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "`compare_type` doit être `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Requête utilisateur" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`confidence_interval` doit être entre 0 et 1 (exclusif)" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Lancer la requête sélectionnée" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." -msgstr "" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Nom de la requête" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "La propriété `operation` de l'objet de post-traitement est indéfinie" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL Copié !" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "`prophet` package non installé" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Désolé, votre navigateur ne doit pas supporter la copie." -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "`rename_columns` doit être de même longueur que `columns`." +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des rapports de" +" ce tableau de bord." -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "`row_limit` doit être plus grand ou égal à 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "Le rapport a été créé" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`row_offset` doit être plus grand ou égal à 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +#, fuzzy +msgid "Report updated" +msgstr "Le rapport a échoué" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "`width` doit être plus grand ou égal à 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "Nous n'avons pas pu activer ou désactiver ce rapport." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "agrégat" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "Votre rapport n'a pas pu être supprimé" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "alerte" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 #, fuzzy -msgid "alert dark" -msgstr "alerte" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "alertes" +msgid "Weekly Report" +msgstr "rapport" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" -msgstr "Tous" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "Modifier le rapport par e-mail" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "copier également les graphiques (dupliquer)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +#, fuzzy +msgid "Schedule a new email report" +msgstr "Planifier un rapport par e-mail" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "Text encapsulé dans l'e-mail" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "et" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "Image (PNG) encapsulée dans l'e-mail" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "annotation" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "CSV formatté attaché dans l'e-mail" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +#, fuzzy +msgid "Report Name" +msgstr "Nom du rapport" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "à" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 #, fuzzy -msgid "auto" -msgstr "à" +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "Les rapports planifiés seront envoyés à votre @ e-mail en PNG" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 #, fuzzy -msgid "basis" -msgstr "Simple" +msgid "Set up an email report" +msgstr "Supprimer le rapport par e-mail" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "Rapports par e-mail actifs" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "Supprimer le rapport par e-mail" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "Planifier un rapport par e-mail" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "boulon" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Cette action va supprimer définitivement %s." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "Supprimer le rapport ?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 #, fuzzy -msgid "bottom" -msgstr "dttm" +msgid "rowlevelsecurity" +msgstr "Sécurité de niveau ligne" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "mode edition" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 #, fuzzy -msgid "cannot be empty" -msgstr "La liste de valeurs du filtre ne peut pas être vide" +msgid "Add Rule" +msgstr "Format Date" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 #, fuzzy -msgid "cardinal" -msgstr "Spatial" +msgid "Rule Name" +msgstr "Nom de la requête" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 #, fuzzy -msgid "change" -msgstr "Gestion" +msgid "The name of the rule must be unique" +msgstr "Le nom doit être unique" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "graphique" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +#, fuzzy +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "" +"Les filtres réguliers ajoutent des clauses WHERE aux requêtes si un " +"utilisateur appartient à un profil référencé dans le filtre. Les filtres " +"de base appliquent les filtres à toutes les requêtes sauf pour les " +"profils définis dans le filtre, et peuvent être utilisés pour définir ce " +"que les utilisateurs peuvent voir si aucun filtre RLS au sein d'un groupe" +" de filtres ne s'appliquent à eux." -#: superset-frontend/src/features/home/EmptyState.tsx:27 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 #, fuzzy -msgid "charts" -msgstr "graphiques" +msgid "These are the datasets this filter will be applied to." +msgstr "Ce sont les tables sur lesquelles vont s'appliquer les filtres." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "choisir WHERE ou HAVING..." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "" +"Pour les filtres réguliers, ce sont les profils sur lesquels vont " +"s'appliquer les filtres. Pour les filtres de base, ce sont les profis sur" +" lesquels les filtres NE VONT PAS s'appliquer, par exemple Admin si " +"l'admin devrait voir toutes les données." -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 #, fuzzy -msgid "clear all filters" -msgstr "Rechercher toutes les options de filtrage" +msgid "Group Key" +msgstr "Grouper par" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" +"Les filtres d'un groupe qui ont la même clé vont se combiner avec des OU," +" alors que des filtres de groupes différents vont se combiner avec des " +"ET. Les groupes qui ont une clé indéfinie sont traités comme des groupes " +"uniques, c'est-à-dire qu'ils ne sont pas regroupés. Par exemple, si une " +"table a 3 filtres dont 2 sont pour les départements Finance et Marketing " +"(clé de groupe 'department', et 1 se réfère à la région Europe (clé de " +"groupe = 'region'), la clause du filtre qui s'appliquerait serait " +"(department = 'Finance' OR department = 'Marketing') AND (region = " +"'Europe')." + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Clause" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"Ceci est la condition qui sera ajoutée à la clause WHERE. Par exemple, " +"pour ne retourner que les lignes d'un client particulier, vous pouvez " +"définir un filtre régulier avec la clause `client_id = 9`. Pour " +"n'afficher aucune ligne sauf pour les utilisateurs qui appartiennent à un" +" role de filtre RLS, un filtre de base peut être créé avec la clause `1 " +"= 0` (toujours faux)." + +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" -msgstr "" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +#, fuzzy +msgid "Base" +msgstr "base de données" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "colonne" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Tout Dé-Sélectionner" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 #, python-format -msgid "connecting to %(dbModelName)s." +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "count" -msgstr "colonne" +msgid "tags" +msgstr "Tags" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 #, fuzzy -msgid "create" -msgstr "Créer" +msgid "Select Tags" +msgstr "Tout Dé-Sélectionner" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/tags/TagModal.tsx:237 #, fuzzy -msgid "create a new chart" -msgstr "Créer un nouveau graphique" +msgid "Tag updated" +msgstr "le trimestre dernier" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "a été créé" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Nom de l'onglet" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "css_template" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Donner un nom à la base de données" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Ecrire une description à votre requête" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#: superset-frontend/src/features/tags/TagModal.tsx:307 #, fuzzy -msgid "cumulative" -msgstr "Actif" +msgid "Select dashboards" +msgstr "Sélectionner un tableau de bord" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "tableau de bord" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Sélectionner les métriques sauvegardées" -#: superset-frontend/src/features/home/EmptyState.tsx:28 +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Colonne non numérique choisie" + +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 #, fuzzy -msgid "dashboards" -msgstr "tableaux de bord" +msgid "UI Configuration" +msgstr "Configuration du filtre" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "base de données" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" +msgstr "La valeur du filtre est requise" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "jeu de données" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +#, fuzzy +msgid "User must select a value before applying the filter" +msgstr "L'utilisateur doit sélectionner une valeur pour ce filtre" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 #, fuzzy -msgid "dataset name" -msgstr "Nom du jeu de donnée" +msgid "Single value" +msgstr "Valeur unique" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "date" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "jour" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "jour du mois" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "jour de la semaine" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s option(s)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -#, fuzzy -msgid "deck.gl 3D Hexagon" -msgstr "Deck.gl - Polygone" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Cocher pour trier par ordre croissant" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -#, fuzzy -msgid "deck.gl Arc" -msgstr "Deck.gl - Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "Peut selectionner plusieurs valeurs" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -#, fuzzy -msgid "deck.gl Geojson" -msgstr "Deck.gl - Polygone" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "Sélectionne la première valeur du filtre par défaut" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -#, fuzzy -msgid "deck.gl Grid" -msgstr "Deck.gl - Grille 3D" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" +msgstr "Quand l'option est utilisée, une valeur par defaut doit être indiquée" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 #, fuzzy -msgid "deck.gl Heatmap" -msgstr "Deck.gl - Chemins" +msgid "Inverse selection" +msgstr "Exécuter la sélection" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 #, fuzzy -msgid "deck.gl Multiple Layers" -msgstr "Deck.gl - Couches Multiples" +msgid "Exclude selected values" +msgstr "Limiter les valeurs" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -#, fuzzy -msgid "deck.gl Path" -msgstr "Deck.gl - Chemins" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "Charge dynamiquement les valeurs du filtre" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -#, fuzzy -msgid "deck.gl Polygon" -msgstr "Deck.gl - Polygone" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" +"Par défaut, chaque filtre charge au plus 1000 choix au chargement initial" +" de la page. Cocher cette case su vous avez plus de 1000 valeurs de " +"filtre et voulez permettre la recherche dynamique qui charge les valeurs " +"de filtre à mesure que le les utilisateurs tapent (peut surcharger la " +"base de données)." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -#, fuzzy -msgid "deck.gl Scatterplot" -msgstr "Deck.gl - Nuage de points" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -#, fuzzy -msgid "deck.gl Screen Grid" -msgstr "Deck.gl - Grille d'écran" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -#, fuzzy -msgid "deck.gl charts" -msgstr "Deck.gl - Chemins" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Pas de colonne temporelle" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 #, fuzzy -msgid "default" -msgstr "Par défaut" +msgid "Time grain filter plugin" +msgstr "Granularité de temps manquante" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "effacer" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 #, fuzzy -msgid "descendant" -msgstr "Tri décroissant" +msgid "Not triggered" +msgstr "Rien déclenché" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "description" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "description" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "rapports" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" -msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "alertes" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "brouillon" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Il y a eu un problème lors de la suppression des %s sélectionné(e)s :%s" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Dernière exécution" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Log d'exécution" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Sélectionner plusieurs" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Pas encore de %s" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Propriétaire" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Tous" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" msgstr "" +"Une erreur s'est produite durant la récupération des propriétaires du " +"graphique : %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -#, fuzzy -msgid "e.g. Analytics" -msgstr "Analyses avancées" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Statut" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" +"Une erreur s'est produite durant la récupération les sources de données " +"du jeu de données : %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Alertes et rapports" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Alertes" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Rapports" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -#, fuzzy -msgid "e.g., a \"user id\" column" -msgstr "Colonnes des séries temporelles" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Effacer %s ?" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" -msgstr "mode edition" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#: superset-frontend/src/pages/AllEntities/index.tsx:180 #, fuzzy -msgid "entries" -msgstr "Séries" +msgid "Error Fetching Tagged Objects" +msgstr "" +"Désolé, une erreur s'est produite lors de la récupération des " +"informations de cette base de données : %s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "error" -msgstr "Opérateur" +msgid "Edit Tag" +msgstr "Éditer le log" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Il y eu un problème lors de la suppression des couches sélectionnés : %s" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "Message d'erreur" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Modifier un template" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "chaque" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Supprimer un template" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "chaque jour du mois" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Modifié par" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "chaque jour de la semaine" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Pas encore de couches d'annotations" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "chaque heure" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Cette action va définitivement supprimer la couche." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" -msgstr "chaque minute" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Effacer couche ?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "chaque mois" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -#, fuzzy -msgid "expand" -msgstr "et" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "" +"Il y eu un problème lors de la suppression des annotations sélectionnés :" +" %s" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -#, fuzzy -msgid "explore" -msgstr "Explorer" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Supprimer annotation" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "Echec" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Annotation" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" -msgstr "récupération" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Pas encore d'annotations" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "Couches d'annotations" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -"filter_box sera déprécié dans une future version de Superset. Merci de " -"remplacer filter_box par des composants filtre de tableau de bord." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -#, fuzzy -msgid "flat" -msgstr "à" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, fuzzy, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Etes-vous sûr de vouloir supprimer" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "pour plus d'information sur comment strcuturer votre URI." +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Supprimer l'annotation ?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Etes-vous sûr de vouloir supprimer les annotations sélectionnées ?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 #, fuzzy -msgid "heatmap" -msgstr "Carte de chaleur" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "" +msgid "view instructions" +msgstr "Temps en secondes" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "here" -msgstr "Partage de requête" +msgid "Add a dataset" +msgstr "Ajouter un jeu de données" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +#, fuzzy +msgid "or" msgstr "heure" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -#, fuzzy -msgid "id" -msgstr "id:" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Choisissez un jeu de donnée" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" -msgstr "" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "Choisissez un type de graphique" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "dans" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "" +"Merci de sélectionner à la fois un Dataset et un type de graphique pour " +"continuer" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "en modal" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Les mots de passe pour les bases de données ci-dessous sont nécessaires " +"pour les importer en même temps que les graphiques. Notez que les " +"sections \"Securité Supplémentaire\" et \"Certificat\" de la " +"configuration de la base de données ne sont pas présents dans les " +"fichiers d'export et doivent être ajoutés manuellement après l'import si " +"nécessaire." -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" +"Vous importez un ou plusieurs graphiques qui existent déjà. L'écrasement " +"peut vous conduire à perdre une partie de votre travail. Etes-vous sûr de" +" vouloir ce remplacement ?" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +#, fuzzy +msgid "Chart imported" +msgstr "Onglet titre" + +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" +"Il y a eu un problème lors de la suppression des graphiques sélectionnés " +": %s" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "relié" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +#, fuzzy +msgid "An error occurred while fetching dashboards" +msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "le json n'est pas valide" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "Tous" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" +"Une erreur s'est produite durant la récupération des propriétaires du " +"graphique : %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 #, fuzzy -msgid "label" -msgstr "Label" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" -msgstr "hier" +msgid "Certified" +msgstr "Certifié" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" -msgstr "le mois dernier" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "Alphabétique" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "le trimestre dernier" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Dernière modification" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "la semaine dernière" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Dernière modification" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" -msgstr "l'année dernière" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Importer des graphiques" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "dernière partition :" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Etes-vous sûr de vouloir supprimer les graphiques sélectionnés ?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -#, fuzzy -msgid "left" -msgstr "alerte" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "Templates CSS" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" +"Il y a eu un problème lors de la suppression des templates sélectionnés :" +" %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -#, fuzzy -msgid "linear" -msgstr "Effacer" - -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "log" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "Templates CSS" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." -msgstr "" -"le percentile inférieur doit être plus grand que 0 et plus petit que 100 " -"et doit être plus petit que le percentile supérieur." +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Cette acion supprimera définitvement le template." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -#, fuzzy -msgid "max" -msgstr "Max" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Supprimer template ?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -#, fuzzy -msgid "mean" -msgstr "Comparaison" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Etes-vous sûr de vouloir supprimer les templates sélectionnés ?" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" +"Les mots de passe pour les bases de données ci-dessous sont nécessaires " +"pour les importer en même temps que les tableaux de bord. Notez que les " +"sections \"Securité Supplémentaire\" et \"Certificat\" de la " +"configuration de la base de données ne sont pas présents dans les " +"fichiers d'export et doivent être ajoutés manuellement après l'import si " +"nécessaire." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "métrique" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Vous importez un ou plusieurs tableaux de bord qui existent déjà. " +"L'écrasement peut vous conduire à perdre une partie de votre travail. " +"Etes-vous sûr de vouloir ce remplacement ?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "min" -msgstr "dans" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minute" +msgid "Dashboard imported" +msgstr "Propriétés du tableau de bord" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" -msgstr "minute(s)" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "" +"Une erreur s'est produite durant la sauvegarde du tableau de bord " +"sélectionné : " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "mois" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "" +"Une erreur s'est produite durant la récupération des propriétaires du " +"tableau de bord : %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "mois" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Etes-vous sûr de vouloir supprimer les tableaux de bord sélectionné ?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" msgstr "" +"Une erreur s'est produite lors de la récupération des données de la base " +": %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 #, fuzzy -msgid "must have a value" -msgstr "Renseigner une valeur" +msgid "Upload file to database" +msgstr "Importer des fichiers Excel vers la base de données" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 #, fuzzy -msgid "name" -msgstr "nom" +msgid "Upload CSV" +msgstr "télécharger en CSV" -#: superset/databases/commands/exceptions.py:147 +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 #, fuzzy -msgid "no SQL validator is configured" -msgstr "Erreur de configuration du validateur." +msgid "Upload columnar file" +msgstr "Téléverser un fichier en colonnes" -#: superset/databases/commands/validate_sql.py:101 +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 #, fuzzy -msgid "no SQL validator is configured for {}" -msgstr "Erreur de configuration du validateur." +msgid "Upload Excel file" +msgstr "Téléverser un fichier Excel" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Autoriser DML" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "Charger un CSV" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Supprimer une base de données" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" +"La base de données %s est liée à %s graphiques qui apparaissent sur %s " +"tableaux de bord et les utilisateurs ont des onglets %s SQL Lab ouverts " +"qui utilisent cette base de données . Êtes-vous sûr de vouloir continuer " +"? Supprimer la base de données cassera ces objets." -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Supprimer la base de données ?" + +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "offline" -msgstr "Hors ligne" +msgid "Dataset imported" +msgstr "Port de la base de données" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "sur" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "" +"Une erreur s'est produite lors de la récupération des données relatives " +"au jeu de données" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "heure" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "" +"Une erreur s'est produite lors de la récupération des données relatives " +"au jeu de données : %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Jeu de données physique" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Jeu de données virtuel" + +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 #, fuzzy -msgid "or use existing ones from the panel on the right" -msgstr "" -"Vous pouvez créer de nouveaux graphiques ou utililser ceux existants à " -"partir du panneau de droite" +msgid "Virtual" +msgstr "virtuel" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" -msgstr "la colonne de tri doit être remplie" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -#, fuzzy -msgid "overall" -msgstr "Effacer tout" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Une erreur s'est produit en récupérant les valeurs du schéma : %s" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" +"Une erreur s'est produite durant la récupération des valeurs du " +"propriétaire du jeu de données : %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Importer des jeux de données" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +#, fuzzy +msgid "There was an issue duplicating the dataset." +msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, fuzzy, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" +"La source de données %s est reliée à %s graphiques qui sont présents dans" +" %s tableaux de bord. Etes-vous sûr de vouloir continuer ? Supprimer le " +"jeu de données cassera ces objets." -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Supprimer le jeu de données ?" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -#, fuzzy -msgid "pending" -msgstr "Avertissement" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 sélectionné" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s Sélectionnée (Virtuelle)" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" -msgstr "" -"percentiles doit être une liste ou un couple de 2 valeurs dont le premier" -" est inférieur au second" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s Sélectionnée (Physique)" -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "Etat du programme de rapport introuvable" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s Sélectionnée (%s Physique, %s Virtuelle)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "log" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "mois calendaire précédent" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "ID d'exécution" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "semaine calendaire précédente" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Plannifié à (UTC)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "année calendaire précédente" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Début à (UTC)" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "publié" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Message d'erreur" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 #, fuzzy -msgid "quarter" -msgstr "Trimestre" +msgid "Alert" +msgstr "alerte" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "requêtes" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "" +"Une erreur s'est produite lors de la récupération de votre activité " +"récente : %s" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "requête" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, fuzzy, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "" +"Une erreur s'est produite lors de la récupération de votre tableau de " +"bord : %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -#, fuzzy -msgid "random" -msgstr "et" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Une erreur s'est produite lors de la récupération de votre graphique : %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "reboot" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, fuzzy, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "" +"Une erreur s'est produite lors de la récupération de vos requêtes " +"sauvegardées : %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -#, fuzzy -msgid "recent" -msgstr "date" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -#, fuzzy -msgid "recents" -msgstr "récents" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "Récents" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "rapport" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Il y a eu un problème de prévisualisation de la requête sélectionnée. %s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "rapports" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "TABLES" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Ouvrir requête dans SQL Lab" + +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" msgstr "" +"Une erreur s'est produite durant la récupération des valeurs de la base " +"de données : %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -#, fuzzy -msgid "right" -msgstr "Hauteur" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Une erreur s'est produit en récupérant les valeurs d'utilisateur : %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -#, fuzzy -msgid "rowlevelsecurity" -msgstr "Sécurité de niveau ligne" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Texte de recherche" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -#, fuzzy -msgid "running" -msgstr "En cours" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Supprimé : %s" -#: superset-frontend/src/features/home/EmptyState.tsx:30 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "saved queries" -msgstr "requêtes sauvegardées" +msgid "Deleted" +msgstr "effacer" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Il y a eu un problème lors de la suppression de %s: %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "seconds" -msgstr "30 secondes" +msgid "No Rules yet" +msgstr "récents" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 #, fuzzy -msgid "series" -msgstr "Séries" +msgid "Are you sure you want to delete the selected rules?" +msgstr "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." +msgstr "" +"Les mots de passe pour les bases de données ci-dessous sont nécessaires " +"pour les importer en même temps que les requêtes sauvegardées. Notez que " +"les sections \"Securité Supplémentaire\" et \"Certificat\" de la " +"configuration de la base de données ne sont pas présents dans les " +"fichiers d'export et doivent être ajoutés manuellement après l'import si " +"nécessaire." + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" +"Vous importez une ou plusieurs requêtes sauvegardées qui existent déjà. " +"L'écrasement peut vous conduire à perdre une partie de votre travail. " +"Etes-vous sûr de vouloir ce remplacement ?" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 #, fuzzy -msgid "square" -msgstr "le trimestre dernier" +msgid "Query imported" +msgstr "Nom de la requête" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -#, fuzzy -msgid "stack" -msgstr "Backend" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "" +"Il y a eu un problème lors de la prévisualisation de la requête " +"sélectionnée %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -#, fuzzy -msgid "staggered" -msgstr "Rien déclenché" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Importer des requêtes" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Lien copié !" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" +"Il y a eu un problème lors de la suppression de requêtes sélectionnées : " +"%s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -#, fuzzy -msgid "step-after" -msgstr "css_template" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Modifier la requête" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Copier l'URL de la requête" -#: superset-frontend/src/SqlLab/constants.ts:37 -#, fuzzy -msgid "stopped" -msgstr "Ajouter" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Exporter la requête" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -#, fuzzy -msgid "stream" -msgstr "Histogramme" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Effacer la requête" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "requêtes" + +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success" -msgstr "Succès" +msgid "No Tags created" +msgstr "a été créé" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:352 #, fuzzy -msgid "success dark" -msgstr "Succès" +msgid "Are you sure you want to delete the selected tags?" +msgstr "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -#, fuzzy -msgid "syntax." -msgstr "Syntaxe" - -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "zone de texte" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -#, fuzzy -msgid "to" -msgstr "Arrêt" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 +#: superset-frontend/src/utils/getClientErrorObject.ts:75 #, fuzzy -msgid "top" -msgstr "Arrêt" +msgid "Unexpected error: " +msgstr "Erreur inattendue" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -#, fuzzy -msgid "undo" -msgstr "Défaire?" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 +#: superset-frontend/src/utils/getClientErrorObject.ts:97 #, fuzzy -msgid "unknown type icon" -msgstr "Erreur inconnue" +msgid "Sorry, an unknown error occurred." +msgstr "Désolén une erreur s'est produite" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -"le percentile supérieur doit être plus grand que 0 et plus petit que 100 " -"et doit être supérieur au percentile inférieur." +"Désolé, une erreur s'est produite lors de la récupération des graphiques " +"sauvegardés : " -#: superset-frontend/src/explore/constants.ts:85 -#, fuzzy -msgid "use latest_partition template" -msgstr "dernière partition :" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "Vous n'avez pas les permission pour modifier ce graphique" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "value ascending" -msgstr "Tri croissant" +msgid "Network error" +msgstr "Erreur de paramètre" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +#: superset-frontend/src/utils/getClientErrorObject.ts:144 #, fuzzy -msgid "value descending" -msgstr "Tri décroissant" +msgid "Request timed out" +msgstr "La requête n'est pas JSON" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +#: superset-frontend/src/utils/getClientErrorObject.ts:153 #, fuzzy -msgid "var" -msgstr "Tabulaire" +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Source de données trop volumineuse pour être interrogée." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +#: superset-frontend/src/utils/getClientErrorObject.ts:157 #, fuzzy -msgid "variance" -msgstr "Avancé" +msgid "Issue 1001 - The database is under an unusual load." +msgstr "La base de données est soumise à une charge inhabituelle." -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "Temps en secondes" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, fuzzy, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "" +"Une erreur s'est produite durant la récupération des tableaux de bord %s " +": %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" -msgstr "virtuel" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, fuzzy, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "type de visualisation" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, fuzzy, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "" +"Une erreur s'est produite durant la récupération des jeux de données %ss:" +" %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "a été créé" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "semaine" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, fuzzy, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Une erreur s'est produite le traitement des logs " -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -#, fuzzy -msgid "week ending Saturday" -msgstr "Semaine terminant le samedi" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, fuzzy, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Erreur à la récupération du statut favori de ce Tableau de Bord." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -#, fuzzy -msgid "week starting Sunday" -msgstr "Semaine débutant le dimanche" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, fuzzy, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Il y a eu une erreur au chargement des tables" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" +"Une erreur s'est produite lors de lors de la récupération de votre " +"activité récente :" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Il y a eu un problème lors de la suppression de : %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "année" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" +"Lien template, il est possible d'inclure {{ metric }} or autres valeurs " +"provenant de ces contrôles." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:28 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" -msgstr "métrique" - -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "10 seconds" -msgstr "10 secondes" - -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "6 hours" -msgstr "6 heures" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Table de Séries temporelles" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "12 hours" -msgstr "12 heures" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" +"Comparer rapidement des graphiques de multiple séries temporelles et " +"leurs métriques." -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "24 hours" -msgstr "24 heures" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" +msgstr "" diff --git a/superset/translations/it/LC_MESSAGES/messages.json b/superset/translations/it/LC_MESSAGES/messages.json index faacdd2ed08b5..4d3e8d77d1166 100644 --- a/superset/translations/it/LC_MESSAGES/messages.json +++ b/superset/translations/it/LC_MESSAGES/messages.json @@ -8,4005 +8,3951 @@ "plural_forms": "nplurals=1; plural=0", "lang": "it" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "The database is under an unusual load.": [""], + "The database returned an unexpected error.": [""], + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "" ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "The column was deleted or renamed in the database.": [""], + "The table was deleted or renamed in the database.": [""], + "One or more parameters specified in the query are missing.": [""], + "The hostname provided can't be resolved.": [""], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "Superset encountered an error while running a command.": [""], + "Superset encountered an unexpected error.": [""], + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [""], + "Either the database is spelled incorrectly or does not exist.": [""], + "The schema was deleted or renamed in the database.": [""], + "User doesn't have the proper permissions.": [""], + "One or more parameters needed to configure a database are missing.": [ "" ], - " to edit or add columns and metrics.": [""], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": [""], - "%(dialect)s cannot be used as a data source for security reasons.": [""], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(other)s saved queries will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(rows)d rows returned": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - "%(user)s's profile": [""], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "%s Error": ["Errore..."], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": ["Seleziona data finale"], - "%s Selected (%s Physical, %s Virtual)": [""], - "%s Selected (Physical)": [""], - "%s Selected (Virtual)": [""], - "%s aggregates(s)": [""], - "%s column(s)": ["Visualizza colonne"], - "%s operator(s)": ["Seleziona operatore"], - "%s option(s)": [""], - "%s saved metric(s)": [""], - "%s%s": [""], - "%s-%s of %s": [""], - "(Removed)": [""], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "One or more parameters specified in the query are malformed.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "The port number is invalid.": [""], + "Failed to start remote query on a worker.": [""], + "The database was deleted.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": [""], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [""], + "Unsupported return value for method %(name)s": [""], + "Unsafe template value for key %(key)s: %(value_type)s": [""], + "Unsupported template value for key %(key)s": [""], + "Only SELECT statements are allowed against this database.": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - ".": [""], - "0 Selected": ["Seleziona data finale"], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["ora"], - "1 hourly frequency": [""], - "1 minute": [""], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year ago": [""], - "1 year end frequency": [""], - "1 year start frequency": [""], - "104 weeks ago": [""], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 years ago": [""], - "30 days": [""], - "30 days ago": [""], - "30 minutes": ["10 minuti"], - "30 second": [""], - "30 seconds": [""], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minutes": [""], - "5 second": [""], - "5 seconds": [""], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "60 days": [""], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": [""], - ":": [""], - "< (Smaller than)": [""], - "<= (Smaller or equal)": [""], - "": [""], - "": [""], - "== (Is equal)": [""], - "> (Larger than)": [""], - ">= (Larger or equal)": [""], - "A comma separated list of columns that should be parsed as dates": [""], - "A comma separated list of columns that should be parsed as dates.": [""], - "A comma-separated list of schemas that files are allowed to upload to.": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A database with the same name already exists.": [""], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": [ + "Datasource mancante per la visualizzazione" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": [""], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "From date cannot be larger than to date": [ + "La data di inizio non può essere dopo la data di fine" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Proprietari è una lista di utenti che può alterare la dashboard." + "Cached value not found": [""], + "Columns missing in datasource: %(invalid_columns)s": [""], + "Time Table View": [""], + "Pick at least one metric": ["Seleziona almeno una metrica"], + "When using 'Group By' you are limited to use a single metric": [""], + "Calendar Heatmap": ["Calendario di Intensità"], + "Bubble Chart": ["Grafico a Bolle"], + "Please use 3 different metric labels": [ + "Seleziona metriche differenti per gli assi destro e sinistro" ], - "A map of the world, that can indicate values in different countries.": [ - "" + "Pick a metric for x, y and size": [ + "Seleziona una metrica per x, y e grandezza" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Bullet Chart": ["Grafico a Proiettile"], + "Pick a metric to display": ["Seleziona una metrica da visualizzare"], + "Time Series - Line Chart": ["Serie Temporali - Grafico Lineare"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A metric to use for color": [""], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "" + "Time Series - Bar Chart": ["Serie Temporali - Grafico Barre"], + "Time Series - Period Pivot": [""], + "Time Series - Percent Change": [ + "Serie Temporali - Cambiamento Percentuale" ], - "A readable URL for your dashboard": [ - "ottenere una URL leggibile per la tua dashboard" + "Time Series - Stacked": ["Serie Temporali - Stacked"], + "Histogram": ["Istogramma"], + "Must have at least one numeric column specified": [ + "Devi specificare una colonna numerica" ], - "A reference to the [Time] configuration, taking granularity into account": [ + "Distribution - Bar Chart": ["Distribuzione - Grafico Barre"], + "Can't have overlap between Series and Breakdowns": [""], + "Pick at least one field for [Series]": [ + "Seleziona almeno un campo per [Series]" + ], + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Seleziona esattamente 2 colonne come [Sorgente / Destinazione]" + ], + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ "" ], - "A report named \"%(name)s\" already exists": [""], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ + "Directed Force Layout": ["Disposizione a Forza Diretta"], + "Country Map": ["Mappa della Nazione"], + "World Map": ["Mappa del Mondo"], + "Parallel Coordinates": ["Coordinate Parallele"], + "Heatmap": ["Mappa di Intensità"], + "Horizon Charts": ["Grafici d'orizzonte"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [""], + "Must have a [Group By] column to have 'count' as the [Label]": [""], + "Choice of [Label] must be present in [Group By]": [""], + "Choice of [Point Radius] must be present in [Group By]": [""], + "[Longitude] and [Latitude] columns must be present in [Group By]": [""], + "Deck.gl - Multiple Layers": [""], + "Bad spatial key": [""], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": [""], + "Time Series - Paired t-test": [""], + "Time Series - Nightingale Rose Chart": [""], + "Partition Diagram": [""], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [""], + "All Text": [""], + "Deleted %(num)d annotation": [""], + "Deleted %(num)d chart": [""], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [""], + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ "" ], - "A valid color scheme is required": [""], - "APPLY": [""], - "APR": [""], - "AQE": [""], - "AUG": [""], - "AXIS TITLE MARGIN": [""], - "About": [""], - "Access": ["Nessun Accesso!"], - "Access requests": [""], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": [""], - "Action": ["Azione"], - "Action Log": [""], - "Actions": ["Azione"], - "Active": ["Azione"], - "Actual time range": [""], - "Add": [""], - "Add CSS Template": ["Template CSS"], - "Add CSS template": ["Template CSS"], - "Add Chart": ["Aggiungi grafico"], - "Add Column": ["Aggiungi colonna"], - "Add Dashboard": [""], - "Add Database": ["Aggiungi Database"], - "Add Log": [""], - "Add Metric": ["Aggiungi metrica"], - "Add Saved Query": ["Aggiungi query salvata"], - "Add a Plugin": ["Aggiungi colonna"], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": [""], - "Add annotation": ["Azione"], - "Add annotation layer": ["Azione"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "Add custom scoping": [""], - "Add delivery method": [""], - "Add extra connection information.": [""], - "Add filter": ["Aggiungi filtro"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": [""], + "Request is not JSON": [""], + "Owners are invalid": [""], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": [""], + "Annotation layer could not be created.": [ + "La tua query non può essere salvata" ], - "Add filters and dividers": [""], - "Add item": ["Aggiungi filtro"], - "Add metric": ["Aggiungi metrica"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": [""], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add the name of the chart": [""], - "Add to dashboard": ["Aggiungi ad una nuova dashboard"], - "Added": [""], - "Additional fields may be required": [""], - "Additional information": [""], - "Additional metadata": [""], - "Additional padding for legend.": [""], - "Additional text to add before or after the value, e.g. unit": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": [""], - "Advanced analytics": ["Analytics avanzate"], - "Aesthetic": [""], - "Aggregate Mean": [""], - "Aggregate Sum": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "" + "Annotation layer could not be updated.": [ + "La tua query non può essere salvata" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "" + "Annotation layer not found.": [""], + "Annotation layer has associated annotations.": [""], + "Name must be unique": [""], + "End date must be after start date": [ + "La data di inizio non può essere dopo la data di fine" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Short description must be unique for this layer": [""], + "Annotation not found.": [""], + "Annotation parameters are invalid.": [""], + "Annotation could not be created.": [""], + "Annotation could not be updated.": [""], + "Annotations could not be deleted.": [""], + "There are associated alerts or reports: %(report_names)s": [""], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "Alert Triggered, In Grace Period": [""], - "Alert condition": ["Testa la Connessione"], - "Alert condition schedule": ["Testa la Connessione"], - "Alert ended grace period.": [""], - "Alert failed": ["Nome Completo"], - "Alert fired during grace period.": [""], - "Alert found an error while executing a query.": [""], - "Alert name": ["Nome Completo"], - "Alert on grace period": [""], - "Alert query returned a non-number value.": [""], - "Alert query returned more than one column.": [""], - "Alert query returned more than one column. %s columns returned": [""], - "Alert query returned more than one row.": [""], - "Alert query returned more than one row. %s rows returned": [""], - "Alert running": ["Testa la Connessione"], - "Alert triggered, notification sent": [""], - "Alert validator config error.": [""], - "Alerts": [""], - "Alerts & Reports": [""], - "Alerts & reports": ["Importa"], - "Align +/-": [""], - "All": [""], - "All Text": [""], - "All charts": ["Grafico a Proiettile"], - "All charts/global scoping": [""], - "All filters": ["Filtri"], - "All filters (%(filterCount)d)": [""], - "All panels": [""], - "All panels with this column will be affected by this filter": [""], - "Allow CREATE TABLE AS": ["Permetti CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Permetti l'opzione CREATE TABLE AS in SQL Lab" - ], - "Allow CREATE VIEW AS": ["Permetti CREATE TABLE AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Permetti l'opzione CREATE TABLE AS in SQL Lab" - ], - "Allow Csv Upload": [""], - "Allow DML": ["Permetti DML"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": [""], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "Allow file uploads to database": [""], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "" + "Database does not exist": [""], + "Dashboards do not exist": ["Elenco Dashboard"], + "Datasource type is required when datasource_id is given": [""], + "Chart parameters are invalid.": [""], + "Chart could not be created.": ["La tua query non può essere salvata"], + "Chart could not be updated.": ["La tua query non può essere salvata"], + "Charts could not be deleted.": ["La query non può essere caricata"], + "There are associated alerts or reports": [""], + "Changing this chart is forbidden": [""], + "Import chart failed for an unknown reason": [""], + "Changing one or more of these dashboards is forbidden": [""], + "Error: %(error)s": [""], + "CSS template not found.": ["Template CSS"], + "Must be unique": [""], + "Dashboard parameters are invalid.": [""], + "Dashboard could not be updated.": [ + "La tua query non può essere salvata" ], - "Allow multiple selections": [""], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Permetti agli utenti di eseguire dichiarazioni diverse da SELECT (UPDATE, DELETE, CREATE, ...) nel SQL Lab" + "Dashboard could not be deleted.": [ + "La tua query non può essere salvata" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": [""], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Changing this Dashboard is forbidden": [""], + "Import dashboard failed for an unknown reason": [""], + "No data in file": [""], + "Database parameters are invalid.": [""], + "A database with the same name already exists.": [""], + "Field is required": [""], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ "" ], - "Altered": [""], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Database not found.": [""], + "Database could not be created.": ["La tua query non può essere salvata"], + "Database could not be updated.": ["La tua query non può essere salvata"], + "Connection failed, please check your connection settings": [""], + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": [""], + "Stopped an unsafe database connection": [""], + "Could not load database driver": ["Non posso connettermi al server"], + "Unexpected error occurred, please check your logs for details": [""], + "no SQL validator is configured": [""], + "No validator found (configured for the engine)": [""], + "Was unable to check your query": [""], + "An unexpected error occurred": [""], + "Import database failed for an unknown reason": [""], + "Could not load database driver: {}": ["Non posso connettermi al server"], + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ "" ], - "An engine must be specified when passing individual parameters to a database.": [ + "no SQL validator is configured for %(engine)s": [""], + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "An error has occurred": [""], - "An error occurred": [""], - "An error occurred saving dataset": ["Errore nel creare il datasource"], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Errore nel creare il datasource" - ], - "An error occurred while creating the data source": [ - "Errore nel creare il datasource" + "SSH Tunnel parameters are invalid.": [""], + "Creating SSH Tunnel failed for an unknown reason": [""], + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "Dataset %(name)s already exists": [""], + "Database not allowed to change": [""], + "One or more columns do not exist": [""], + "One or more columns are duplicated": [""], + "One or more columns already exist": [""], + "One or more metrics do not exist": ["Una o più metriche da mostrare"], + "One or more metrics are duplicated": ["Una o più metriche da mostrare"], + "One or more metrics already exist": ["Una o più metriche da mostrare"], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "" ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Dataset does not exist": ["Sorgente dati e tipo di grafico"], + "Dataset parameters are invalid.": [""], + "Dataset could not be created.": ["La tua query non può essere salvata"], + "Dataset could not be updated.": ["La tua query non può essere salvata"], + "Changing this dataset is forbidden": [""], + "Import dataset failed for an unknown reason": [""], + "Data URI is not allowed.": [""], + "Changing this dataset is forbidden.": [""], + "Dataset metric delete failed.": [""], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "Saved queries could not be deleted.": [ + "La query non può essere caricata" ], - "An error occurred while fetching available CSS templates": [ - "Errore nel recupero dei metadati della tabella" + "Saved query not found.": [""], + "Import saved query failed for an unknown reason.": [""], + "Saved query parameters are invalid.": [""], + "Alert query returned more than one row. %(num_rows)s rows returned": [ + "" ], - "An error occurred while fetching chart created by values: %s": [ - "Errore nel creare il datasource" + "Alert query returned more than one column. %(num_columns)s columns returned": [ + "" ], - "An error occurred while fetching chart owners values: %s": [ - "Errore nel creare il datasource" + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": [""], + "Chart does not exist": [""], + "Database is required for alerts": [""], + "Type is required": [""], + "Choose a chart or dashboard not both": [ + "Rimuovi il grafico dalla dashboard" ], - "An error occurred while fetching created by values: %s": [ - "Errore nel rendering della visualizzazione: %s" + "Please save your chart first, then try creating a new email report.": [ + "" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Errore nel recupero dei metadati della tabella" + "Please save your dashboard first, then try creating a new email report.": [ + "" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Errore nel creare il datasource" + "Report Schedule parameters are invalid.": [""], + "Report Schedule could not be created.": [ + "La tua query non può essere salvata" ], - "An error occurred while fetching dashboards": [ - "Errore nel creare il datasource" + "Report Schedule could not be updated.": [ + "La tua query non può essere salvata" ], - "An error occurred while fetching dashboards: %s": [ - "Errore nel creare il datasource" - ], - "An error occurred while fetching database related data: %s": [ - "Errore nel recupero dei metadati della tabella" - ], - "An error occurred while fetching database values: %s": [ - "Errore nel creare il datasource" + "Report Schedule not found.": [""], + "Report Schedule delete failed.": [""], + "Report Schedule log prune failed.": [""], + "Report Schedule execution failed when generating a screenshot.": [""], + "Report Schedule execution failed when generating a csv.": [""], + "Report Schedule execution failed when generating a dataframe.": [""], + "Report Schedule execution got an unexpected error.": [""], + "Report Schedule is still working, refusing to re-compute.": [""], + "Report Schedule reached a working timeout.": [""], + "A report named \"%(name)s\" already exists": [""], + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [""], + "Alert validator config error.": [""], + "Alert query returned more than one column.": [""], + "Alert query returned a non-number value.": [""], + "Alert found an error while executing a query.": [""], + "Alert fired during grace period.": [""], + "Alert ended grace period.": [""], + "Alert on grace period": [""], + "Report Schedule state not found": [""], + "Report schedule unexpected error": [""], + "Changing this report is forbidden": [""], + "An error occurred while pruning logs ": [ + "Errore nel rendering della visualizzazione: %s" ], - "An error occurred while fetching dataset datasource values: %s": [ - "Errore nel creare il datasource" + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "" ], - "An error occurred while fetching dataset owner values: %s": [ - "Errore nel creare il datasource" + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "" ], - "An error occurred while fetching dataset related data": [ - "Errore nel recupero dei metadati della tabella" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "" ], - "An error occurred while fetching dataset related data: %s": [ - "Errore nel recupero dei metadati della tabella" + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "" ], - "An error occurred while fetching datasets: %s": [ - "Errore nel creare il datasource" + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "" ], - "An error occurred while fetching schema values: %s": [ - "Errore nel rendering della visualizzazione: %s" + "Tag parameters are invalid.": [""], + "Invalid result type: %(result_type)s": [""], + "Columns missing in dataset: %(invalid_columns)s": [""], + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "" ], - "An error occurred while fetching tab state": [ - "Errore nel recupero dei metadati della tabella" + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "" ], - "An error occurred while fetching table metadata": [ - "Errore nel recupero dei metadati della tabella" + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [""], + "[asc]": [""], + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [""], + "Virtual dataset query must be read-only": [""], + "Virtual dataset query cannot be empty": [""], + "Virtual dataset query cannot consist of multiple statements": [""], + "Error in jinja expression in RLS filters: %(msg)s": [""], + "Metric '%(metric)s' does not exist": [""], + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [""], + "Only single queries supported": [""], + "Columns": [""], + "Show Column": ["Mostra colonna"], + "Add Column": ["Aggiungi colonna"], + "Edit Column": ["Edita colonna"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Se rendere disponibile questa colonna come opzione [Time Granularity], la colonna deve essere di tipo DATETIME o simile" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Errore nel recupero dei metadati della tabella" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Se questa colonna è esposta nella sezione `Filtri` della vista esplorazione." ], - "An error occurred while loading the SQL": [ - "Errore nel creare il datasource" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Il tipo di dato è dedotto dal database. In alcuni casi potrebbe essere necessario inserire manualmente un tipo di colonna definito dall'espressione. Nella maggior parte dei casi gli utenti non hanno bisogno di fare questa modifica." ], - "An error occurred while pruning logs ": [ - "Errore nel rendering della visualizzazione: %s" + "Column": ["Colonna"], + "Verbose Name": ["Nome Completo"], + "Description": ["Descrizione"], + "Groupable": ["Raggruppabile"], + "Filterable": ["Filtrabile"], + "Table": ["Tabella"], + "Expression": ["Espressione"], + "Is temporal": ["è temporale"], + "Datetime Format": ["Formato Datetime"], + "Type": ["Tipo"], + "Business Data Type": [""], + "Invalid date/timestamp format": [""], + "Metrics": ["Metriche"], + "Show Metric": ["Mostra metrica"], + "Add Metric": ["Aggiungi metrica"], + "Edit Metric": ["Modifica metrica"], + "Metric": ["Metrica"], + "SQL Expression": ["Espressione SQL"], + "D3 Format": ["Formato D3"], + "Extra": ["Extra"], + "Warning Message": [""], + "Tables": ["Tabelle"], + "Show Table": ["Mostra Tabelle"], + "Import a table definition": [""], + "Edit Table": ["Modifica Tabella"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Elenco delle slice associate a questa tabella. Modificando questa origine dati, è possibile modificare le modalità di comportamento delle slice associate. Inoltre, va tenuto presente che le slice devono indicare un'origine dati, pertanto questo modulo non registra le impostazioni qualora si modifica un'origine dati. Se vuoi modificare l'origine dati per una slide, devi sovrascriverla dal 'vista di esplorazione'" ], - "An error occurred while removing query. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Timezone offset (in hours) for this datasource": [ + "Timezone offset (in ore) per questa sorgente dati" ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Name of the table that exists in the source database": [ + "Nome delle tabella esistente nella sorgente del database" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Schema, va utilizzato soltanto in alcuni database come Postgres, Redshift e DB2" ], - "An error occurred while rendering the visualization: %s": [ - "Errore nel rendering della visualizzazione: %s" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Questo campo agisce come una vista Superset, il che vuol dire che Superset eseguirà una query su questa stringa come sotto-query." ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Predicato utilizzato quando si fornisce un valore univoco per popolare il componente di controllo del filtro. Supporta la sintassi del template jinja. È utilizzabile solo quando è abilitata l'opzione \"Abilita selezione filtro\"." ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Redirects to this endpoint when clicking on the table from the table list": [ + "Reinvia a questo endpoint al clic sulla tabella dall'elenco delle tabelle" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Usato per popolare la finestra a cascata dei filtri dall'elenco dei valori distinti prelevati dal backend al volo" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Errore nel creare il datasource" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "A set of parameters that become available in the query using Jinja templating syntax": [ "" ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "An unexpected error occurred": [""], - "An unknown error occurred. Please contact your Superset administrator": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Annotation": ["Azione"], - "Annotation Layers": [""], - "Annotation could not be created.": [""], - "Annotation could not be updated.": [""], - "Annotation delete failed.": [""], - "Annotation layer": ["Azione"], - "Annotation layer could not be created.": [ - "La tua query non può essere salvata" + "Associated Charts": [""], + "Changed By": ["Modificato da"], + "Database": ["Database"], + "Last Changed": ["Ultima Modifica"], + "Enable Filter Select": ["Abilita il filtro di Select"], + "Schema": ["Schema"], + "Default Endpoint": ["Endpoint predefinito"], + "Offset": ["Offset"], + "Cache Timeout": ["Cache Timeout"], + "Table Name": [""], + "Fetch Values Predicate": [""], + "Owners": ["Proprietari"], + "Main Datetime Column": [""], + "SQL Lab View": ["Vista Tabella"], + "Template parameters": ["Parametri"], + "Modified": ["Modificato"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Tabella creata. Come parte di questo processo di configurazione in due fasi, è necessario andare sul pulsante di modifica della nuova tabella per configurarla." ], - "Annotation layer could not be deleted.": [""], - "Annotation layer could not be updated.": [ - "La tua query non può essere salvata" + "Deleted %(num)d css template": [""], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": ["Seleziona una dashboard"], + "Title or Slug": [""], + "Invalid state.": [""], + "Table name undefined": [""], + "Upload Enabled": [""], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "" ], - "Annotation layer delete failed.": [""], - "Annotation layer has associated annotations.": [""], - "Annotation layer name": ["La tua query non può essere salvata"], - "Annotation layer not found.": [""], - "Annotation layer parameters are invalid.": [""], - "Annotation layer type": ["La tua query non può essere salvata"], - "Annotation layers": ["Azione"], - "Annotation layers are still loading.": [""], - "Annotation name": ["Azione"], - "Annotation not found.": [""], - "Annotation parameters are invalid.": [""], - "Annotations and layers": ["Azione"], - "Annotations could not be deleted.": [""], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Field cannot be decoded by JSON. %(msg)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "Append": [""], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Deleted %(num)d dataset": ["Seleziona data finale"], + "Null or Empty": [""], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Apply": ["Applica"], - "Apply conditional color formatting to metric": [""], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply to all panels": [""], - "Apply to specific panels": [""], - "April": [""], - "Are you sure you intend to overwrite the following values?": [""], - "Are you sure you want to cancel?": [""], - "Are you sure you want to delete": [""], - "Are you sure you want to delete %s?": [""], - "Are you sure you want to delete the selected %s?": [""], - "Are you sure you want to delete the selected annotations?": [""], - "Are you sure you want to delete the selected charts?": [""], - "Are you sure you want to delete the selected dashboards?": [""], - "Are you sure you want to delete the selected datasets?": [""], - "Are you sure you want to delete the selected layers?": [""], - "Are you sure you want to delete the selected queries?": [""], - "Are you sure you want to delete the selected rules?": [""], - "Are you sure you want to delete the selected tags?": [""], - "Are you sure you want to delete the selected templates?": [""], - "Are you sure you want to overwrite this dataset?": [""], - "Are you sure you want to proceed?": [""], - "Are you sure you want to save and apply changes?": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Second": [""], + "5 second": [""], + "30 second": [""], + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Hostname or IP address": [""], + "Database name": ["Database"], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "Arrow": [""], - "Assign a set of parameters as": [""], - "Associated Charts": [""], - "Async Execution": [""], - "Asynchronous query execution": [""], - "August": [""], - "Auto Zoom": [""], - "Autocomplete": [""], - "Autocomplete filters": [""], - "Autocomplete query predicate": [""], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Axis": [""], - "Axis ascending": [""], - "Axis descending": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": [""], - "Bad spatial key": [""], - "Bar": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Base layer map style": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": [""], - "Basic information": [""], - "Batch editing %d filters:": [""], - "Battery level over time": [""], - "Be careful.": [""], - "Before": [""], - "Big Number": ["Numero Grande"], - "Big Number Font Size": [""], - "Big Number with Trendline": ["Numero Grande con Linea del Trend"], - "Bottom Margin": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Box Plot": ["Box Plot"], - "Bubble Chart": ["Grafico a Bolle"], - "Bubble Color": [""], - "Bubble size": ["Grandezza della bolla"], - "Bucket break points": [""], - "Build": [""], - "Bulk select": ["Seleziona %s"], - "Bullet Chart": ["Grafico a Proiettile"], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Unknown Doris server host \"%(hostname)s\".": [""], + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [""], + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": [""], - "CREATE TABLE AS": ["Permetti CREATE TABLE AS"], - "CREATE VIEW AS": ["Permetti CREATE TABLE AS"], - "CREATE VIEW statement": [""], - "CRON expression": ["Espressione"], - "CSS": ["CSS"], - "CSS Styles": [""], - "CSS Templates": ["Template CSS"], - "CSS applied to the chart": [""], - "CSS template": ["Template CSS"], - "CSS template could not be deleted.": [""], - "CSS template name": ["Template CSS"], - "CSS template not found.": ["Template CSS"], - "CSS templates": ["Template CSS"], - "CSV Upload": [""], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "" ], - "CSV to Database configuration": [""], - "CSV upload": [""], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "CTAS Schema": ["Schema CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": ["Cache Timeout"], - "Cache Timeout (seconds)": [""], - "Cache timeout": ["Cache Timeout"], - "Cached": [""], - "Cached %s": [""], - "Cached value not found": [""], - "Calculate contribution per series or row": [""], - "Calculated column [%s] requires an expression": [""], - "Calculated columns": ["Visualizza colonne"], - "Calculation type": ["Seleziona un tipo di visualizzazione"], - "Calendar Heatmap": ["Calendario di Intensità"], - "Can not move top level tab into nested tabs": [""], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [""], - "Cancel": ["Annulla"], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ + "Unknown MySQL server host \"%(hostname)s\".": [""], + "The username \"%(username)s\" does not exist.": [""], + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categorical Color": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell content": [""], - "Cell limit": [""], - "Center": [""], - "Centroid (Longitude and Latitude): ": [""], - "Certification": [""], - "Certification details": [""], - "Certified by": ["Modificato"], - "Certified by %s": [""], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": ["Modificato da"], - "Changed on": ["Cambiato il"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Could not connect to database: \"%(database)s\"": [""], + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Changing this Dashboard is forbidden": [""], - "Changing this chart is forbidden": [""], - "Changing this control takes effect instantly": [""], - "Changing this dataset is forbidden": [""], - "Changing this dataset is forbidden.": [""], - "Changing this datasource is forbidden": [""], - "Changing this report is forbidden": [""], - "Character to interpret as decimal point": [""], - "Character to interpret as decimal point.": [""], - "Chart": [""], - "Chart %(id)s not found": [""], - "Chart Cache Timeout": ["Cache Timeout"], - "Chart ID": ["Grafici"], - "Chart [%s] has been overwritten": [""], - "Chart [%s] was added to dashboard [%s]": [""], - "Chart [{}] has been overwritten": [""], - "Chart [{}] has been saved": [""], - "Chart [{}] was added to dashboard [{}]": [""], - "Chart cache timeout": ["Cache Timeout"], - "Chart changes": ["Ultima Modifica"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Chart could not be created.": ["La tua query non può essere salvata"], - "Chart could not be deleted.": ["La query non può essere caricata"], - "Chart could not be updated.": ["La tua query non può essere salvata"], - "Chart does not exist": [""], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart name": ["Grafici"], - "Chart parameters are invalid.": [""], - "Chart type": ["Grafici"], - "Chart type requires a dataset": [""], - "Charts": ["Grafici"], - "Charts could not be deleted.": ["La query non può essere caricata"], - "Check for sorting ascending": [""], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "Users are not allowed to set a search path for security reasons.": [""], + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Check out this chart in dashboard:": [ - "Rimuovi il grafico dalla dashboard" + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "" ], - "Check out this dashboard: ": ["Guarda questa slice: %s"], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": [""], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [""], - "Check to include time grain dropdown": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [""], - "Choice of [Point Radius] must be present in [Group By]": [""], - "Choose File": ["Seleziona una sorgente"], - "Choose a chart or dashboard not both": [ - "Rimuovi il grafico dalla dashboard" + "%(object)s does not exist in this database.": [""], + "Changing this datasource is forbidden": [""], + "Home": [""], + "Data": ["Database"], + "Dashboards": ["Elenco Dashboard"], + "Charts": ["Grafici"], + "Datasets": ["Basi di dati"], + "Plugins": [""], + "Manage": ["Gestisci"], + "CSS Templates": ["Template CSS"], + "SQL Lab": [""], + "SQL": [""], + "Saved Queries": ["Query salvate"], + "Query History": [""], + "Tags": [""], + "Action Log": [""], + "Security": ["Sicurezza"], + "Alerts & Reports": [""], + "Annotation Layers": [""], + "Row Level Security": [""], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "la colonna Datetime è necessaria per questo tipo di grafico. Nella configurazione della tabella però non è stata definita" ], - "Choose a dataset": ["Seleziona una destinazione"], - "Choose a metric for right axis": [ - "Seleziona una metrica per l'asse destro" + "Empty query?": ["Query vuota?"], + "Unknown column used in orderby: %(col)s": [""], + "Time column \"%(col)s\" does not exist in dataset": [""], + "error_message": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [""], + "Error in jinja expression in HAVING clause: %(msg)s": [""], + "Deleted %(num)d saved query": [""], + "Deleted %(num)d report schedule": [""], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "" ], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": [""], - "Choose the position of the legend": [""], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [""], + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "The parameter %(parameters)s in your query is undefined.": [""], + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "Clause": [""], - "Clear": [""], - "Clear all": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Tag name is invalid (cannot contain ':')": [""], + "Is custom tag": [""], + "Scheduled task executor not found": [""], + "Record Count": [""], + "No records found": ["Nessun record trovato"], + "Filter List": ["Filtri"], + "Search": ["Cerca"], + "Refresh": [""], + "Import dashboards": ["Importa dashboard"], + "Import Dashboard(s)": ["Importa dashboard"], + "File": [""], + "Choose File": ["Seleziona una sorgente"], + "Upload": [""], + "Use the edit button to change this field": [""], + "Test Connection": ["Testa la Connessione"], + "Unsupported clause type: %(clause)s": [""], + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [""], + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], - "Click the lock to make changes.": [""], - "Click the lock to prevent further changes.": [""], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": [""], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": [""], + "Unsupported time grain: %(time_grain)s": [""], + "Periods must be a whole number": [""], + "Confidence interval must be between 0 and 1 (exclusive)": [""], + "DataFrame must include temporal column": [""], + "DataFrame include at least one series": ["Seleziona almeno una metrica"], + "Resample operation requires DatetimeIndex": [""], + "Resample method should in ": [""], + "Undefined window for rolling operation": [""], + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [""], + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [""], + "Operator undefined for aggregator: %(name)s": [""], + "Invalid numpy function: %(operator)s": [""], + "Unexpected time range: %(error)s": [""], + "json isn't valid": ["json non è valido"], + "Export to YAML": ["Esporta in YAML"], + "Export to YAML?": ["Esporta in YAML?"], + "Delete": ["Cancella"], + "Delete all Really?": [""], + "Is favorite": [""], + "Is tagged": [""], + "The data source seems to have been deleted": [""], + "The user seems to have been deleted": [""], + "Error: permalink state not found": [""], + "Error: %(msg)s": [""], + "Explore - %(table)s": [""], + "Explore": ["Esplora grafico"], + "Chart [{}] has been saved": [""], + "Chart [{}] has been overwritten": [""], + "Chart [{}] was added to dashboard [{}]": [""], + "Dashboard [{}] just got created and chart [{}] was added to it": [""], + "Malformed request. slice_id or table_name and db_name arguments are expected": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Chart %(id)s not found": [""], + "Table %(table)s wasn't found in the database %(db)s": [""], + "Show CSS Template": ["Template CSS"], + "Add CSS Template": ["Template CSS"], + "Edit CSS Template": ["Template CSS"], + "Template Name": [""], + "A human-friendly name": [""], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": [""], - "Click to edit %s.": [""], - "Click to edit chart.": [""], - "Click to edit label": [""], - "Click to favorite/unfavorite": [""], - "Click to force-refresh": [""], - "Click to see difference": [""], - "Close": [""], - "Close all other tabs": [""], - "Close tab": [""], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": [""], - "Collapse all": [""], - "Collapse data panel": [""], - "Collapse row": [""], - "Collapse tab content": [""], - "Collapse table preview": [""], - "Color": [""], - "Color +/-": [""], - "Color Scheme": [""], - "Color Steps": [""], - "Color bounds": [""], - "Color by": [""], - "Color metric": ["Seleziona la metrica"], - "Color of the target location": [""], - "Color scheme": [""], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], - "Colors": [""], - "Column": ["Colonna"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "" + "Custom Plugins": [""], + "Custom Plugin": [""], + "Add a Plugin": ["Aggiungi colonna"], + "Edit Plugin": ["Edita colonna"], + "The dataset associated with this chart no longer exists": [""], + "Could not determine datasource type": [""], + "Could not find viz object": [""], + "Show Chart": ["Mostra grafico"], + "Add Chart": ["Aggiungi grafico"], + "Edit Chart": ["Modifica grafico"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Questi parametri sono generati dinamicamente al clic su salva o con il bottone di sovrascrittura nella vista di esplorazione. Questo oggetto JSON è esposto qui per referenza e per utenti esperti che vogliono modificare parametri specifici." ], - "Column Label(s)": [""], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "" + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Durata (in secondi) per il timeout della cache per questa slice." ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Creator": ["Creatore"], + "Datasource": ["Sorgente Dati"], + "Last Modified": ["Ultima Modifica"], + "Parameters": ["Parametri"], + "Chart": [""], + "Name": ["Nome"], + "Visualization Type": ["Tipo di Visualizzazione"], + "Show Dashboard": [""], + "Add Dashboard": [""], + "Edit Dashboard": [""], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "L'oggetto JSON descrive la posizione dei vari widget nella dashboard. È generato automaticamente nel momento in cui se ne cambia la posizione e la dimensione usando la funzione di drag & drop nella vista della dashboard. " + ], + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Il CSS di ogni singola dashboard può essere modificato qui, oppure nella vista della dashboard dove i cambiamenti sono visibili immediatamente" + ], + "To get a readable URL for your dashboard": [ + "ottenere una URL leggibile per la tua dashboard" + ], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Questo oggetto JSON è generato in maniera dinamica al clic sul pulsante di salvataggio o sovrascrittura nella vista dashboard. Il JSON è esposto qui come riferimento e per gli utenti esperti che vogliono modificare parametri specifici." + ], + "Owners is a list of users who can alter the dashboard.": [ + "Proprietari è una lista di utenti che può alterare la dashboard." + ], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ "" ], - "Column name [%s] is duplicated": [""], - "Column referenced by aggregate is undefined: %(column)s": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Dashboard": ["Dashboard"], + "Title": ["Titolo"], + "Slug": ["Slug"], + "Roles": ["Ruoli"], + "Published": [""], + "Position JSON": ["Posizione del JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["Metadati JSON"], + "Export": [""], + "Export dashboards?": [""], + "CSV Upload": [""], + "Select a file to be uploaded to the database": [""], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Select a schema if the database supports this": [""], + "Delimiter": [""], + "Enter a delimiter for this data": [""], + ",": [""], + ".": [""], + "What should happen if the table already exists": [""], + "Fail": [""], + "Replace": [""], + "Append": [""], + "Skip Initial Space": [""], + "Skip spaces after delimiter": [""], + "Skip Blank Lines": [""], + "Skip blank lines rather than interpreting them as Not A Number values": [ "" ], - "Columns": [""], "Columns To Be Parsed as Dates": [""], - "Columns missing in dataset: %(invalid_columns)s": [""], - "Columns missing in datasource: %(invalid_columns)s": [""], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "A comma separated list of columns that should be parsed as dates": [""], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": [""], + "Character to interpret as decimal point": [""], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Index Column": [""], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Dataframe Index": [""], + "Write dataframe index as a column": [""], + "Column Label(s)": [""], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ "" ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Json list of the column names that should be read": [""], + "Overwrite Duplicate Columns": [""], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Header Row": [""], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "Rows to Read": [""], + "Number of rows of file to read": [""], + "Skip Rows": [""], + "Number of rows to skip at start of file": [""], + "Name of table to be created from excel data.": [ + "Nome delle tabella esistente nella sorgente del database" + ], + "Excel File": [""], + "Select a Excel file to be uploaded to a database.": [""], + "Sheet Name": ["Nome Completo"], + "Strings used for sheet names (default is the first sheet).": [""], + "Specify a schema (if database flavor supports this).": [""], + "Table Exists": [""], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Comparison Period Lag": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [""], - "Conditional formatting": [""], - "Confidence interval": [""], - "Confidence interval must be between 0 and 1 (exclusive)": [""], - "Configuration": [""], - "Configure Advanced Time Range ": [""], - "Configure Time Range: Last...": [""], - "Configure Time Range: Previous...": [""], - "Configure custom time range": [""], - "Configure filter scopes": [""], - "Configure the basics of your Annotation Layer.": [""], - "Configure this dashboard to embed it into an external web application.": [ + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm save": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": ["Testa la Connessione"], - "Connection failed, please check your connection settings": [""], - "Connection looks good!": [""], - "Continuous": [""], - "Contribution": [""], - "Contribution Mode": [""], - "Control labeled ": [""], - "Controls labeled ": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": ["copia URL in appunti"], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": [""], - "Copy message": [""], - "Copy of %s": ["Copia di %s"], - "Copy partition query to clipboard": [""], - "Copy query URL": ["Query vuota?"], - "Copy query link to your clipboard": ["copia URL in appunti"], - "Copy the account name of that database you are trying to connect to.": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to clipboard": [""], - "Cost estimate": [""], - "Could not connect to database: \"%(database)s\"": [""], - "Could not determine datasource type": [""], - "Could not fetch all saved charts": ["Non posso connettermi al server"], - "Could not find viz object": [""], - "Could not load database driver": ["Non posso connettermi al server"], - "Could not load database driver: %(driver_name)s": [""], - "Could not load database driver: {}": ["Non posso connettermi al server"], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country Color Scheme": [""], - "Country Field Type": [""], - "Country Map": ["Mappa della Nazione"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Number of rows to skip at start of file.": [""], + "Number of rows of file to read.": [""], + "Parse Dates": [""], + "A comma separated list of columns that should be parsed as dates.": [""], + "Character to interpret as decimal point.": [""], + "Write dataframe index as a column.": [""], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Create a new chart": [""], - "Create chart with dataset": [""], - "Create dataset and create chart": [""], - "Create new chart": ["Creato il"], - "Create or select schema...": [""], - "Created": ["Creato il"], - "Created On": ["Creato il"], - "Created by": ["Creato il"], - "Created content": ["Creato il"], - "Created on": ["Creato il"], - "Creating SSH Tunnel failed for an unknown reason": [""], - "Creating a data source and creating a new tab": [""], - "Creator": ["Creatore"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Null values": ["Valore del filtro"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "" ], - "Cross-filtering is not enabled for this dashboard.": [""], - "Currently rendered: %s": [""], - "Custom": [""], - "Custom Plugin": [""], - "Custom Plugins": [""], - "Custom SQL": [""], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": [""], - "Customize Metrics": [""], - "Cyclic dependency detected": [""], - "D3 Format": ["Formato D3"], - "D3 format": ["Formato D3"], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Select a Columnar file to be uploaded to a database.": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": [""], - "DELETE": [""], - "DML": [""], - "Daily seasonality": [""], - "Dark": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["Dashboard"], - "Dashboard [%s] just got created and chart [%s] was added to it": [""], - "Dashboard [{}] just got created and chart [{}] was added to it": [""], - "Dashboard could not be created.": [ - "La tua query non può essere salvata" - ], - "Dashboard could not be deleted.": [ - "La tua query non può essere salvata" - ], - "Dashboard could not be updated.": [ - "La tua query non può essere salvata" - ], - "Dashboard does not exist": [""], - "Dashboard parameters are invalid.": [""], - "Dashboard properties": ["Elenco Dashboard"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "Databases": ["Basi di dati"], + "Show Database": ["Mostra database"], + "Add Database": ["Aggiungi Database"], + "Edit Database": ["Mostra database"], + "Expose this DB in SQL Lab": ["Esponi questo DB in SQL Lab"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Dashboards": ["Elenco Dashboard"], - "Dashboards could not be deleted.": [""], - "Dashboards do not exist": ["Elenco Dashboard"], - "Data": ["Database"], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Permetti l'opzione CREATE TABLE AS in SQL Lab" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "" + "Allow CREATE VIEW AS option in SQL Lab": [ + "Permetti l'opzione CREATE TABLE AS in SQL Lab" ], - "Data has no time steps": [""], - "Data preview": [""], - "Data refreshed": [""], - "Data type": ["Tipo"], - "DataFrame include at least one series": ["Seleziona almeno una metrica"], - "DataFrame must include temporal column": [""], - "Database": ["Database"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Permetti agli utenti di eseguire dichiarazioni diverse da SELECT (UPDATE, DELETE, CREATE, ...) nel SQL Lab" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Se si abilita l'opzione CREATE TABLE AS in SQL Lab, verrà forzata la creazione della tabella con questo schema" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Database URL": ["URL del Database"], - "Database could not be created.": ["La tua query non può essere salvata"], - "Database could not be deleted.": [""], - "Database could not be updated.": ["La tua query non può essere salvata"], - "Database does not allow data manipulation.": [""], - "Database does not exist": [""], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "" ], - "Database error": ["Espressione del Database"], - "Database is required for alerts": [""], - "Database name": ["Database"], - "Database not allowed to change": [""], - "Database not found.": [""], - "Database parameters are invalid.": [""], - "Databases": ["Basi di dati"], - "Dataframe Index": [""], - "Dataset": ["Database"], - "Dataset %(name)s already exists": [""], - "Dataset could not be created.": ["La tua query non può essere salvata"], - "Dataset could not be deleted.": [""], - "Dataset could not be updated.": ["La tua query non può essere salvata"], - "Dataset does not exist": ["Sorgente dati e tipo di grafico"], - "Dataset metric delete failed.": [""], - "Dataset name": ["Database"], - "Dataset parameters are invalid.": [""], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [""], - "Datasets": ["Basi di dati"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "If selected, please set the schemas allowed for csv upload in Extra.": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": ["Sorgente Dati"], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [""], - "Date filter": ["Aggiungi filtro"], - "Date/Time": ["Tempo"], - "Datetime Format": ["Formato Datetime"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "la colonna Datetime è necessaria per questo tipo di grafico. Nella configurazione della tabella però non è stata definita" - ], - "Datetime format": ["Formato Datetime"], - "Day (freq=D)": [""], - "Db engine did not return all queried columns": [""], - "December": [""], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": [""], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Multiple Layers": [""], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": ["Endpoint predefinito"], - "Default Endpoint": ["Endpoint predefinito"], - "Default URL": ["URL del Database"], - "Default URL to redirect to when accessing from the dataset list page": [ + "Expose in SQL Lab": ["Esponi in SQL Lab"], + "Allow CREATE TABLE AS": ["Permetti CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Permetti CREATE TABLE AS"], + "Allow DML": ["Permetti DML"], + "CTAS Schema": ["Schema CTAS"], + "SQLAlchemy URI": ["URI SQLAlchemy"], + "Chart Cache Timeout": ["Cache Timeout"], + "Secure Extra": ["Sicurezza"], + "Root certificate": [""], + "Async Execution": [""], + "Impersonate the logged on user": [""], + "Allow Csv Upload": [""], + "Backend": [""], + "Extra field cannot be decoded by JSON. %(msg)s": [""], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ "" ], - "Default latitude": [""], - "Default longitude": [""], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "CSV to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Default value must be set when \"Filter has default value\" is checked": [ + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Excel to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": [""], + "Show Log": ["Mostra colonna"], + "Add Log": [""], + "Edit Log": ["Modifica"], + "User": ["Utente"], + "Action": ["Azione"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Time Range": [""], + "Time Grain": [""], + "Time Granularity": [""], + "Time": ["Tempo"], + "A reference to the [Time] configuration, taking granularity into account": [ "" ], - "Delete": ["Cancella"], - "Delete %s?": ["Cancella"], - "Delete Annotation?": [""], - "Delete Database?": ["Mostra database"], - "Delete Dataset?": [""], - "Delete Layer?": ["Cancella"], - "Delete Query?": ["Cancella"], - "Delete Template?": ["Template CSS"], - "Delete all Really?": [""], - "Delete annotation": ["Azione"], - "Delete dashboard tab?": ["Inserisci un nome per la dashboard"], - "Delete database": ["Database"], - "Delete query": ["Cancella"], - "Delete template": [""], - "Delete this container and save to remove this message.": [""], - "Deleted %(num)d annotation": [""], - "Deleted %(num)d annotation layer": [""], - "Deleted %(num)d chart": [""], - "Deleted %(num)d css template": [""], - "Deleted %(num)d dashboard": ["Seleziona una dashboard"], - "Deleted %(num)d dataset": ["Seleziona data finale"], - "Deleted %(num)d report schedule": [""], - "Deleted %(num)d saved query": [""], - "Deleted: %s": ["Cancella"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Raw records": [""], + "Certified by %s": [""], + "description": ["descrizione"], + "bolt": [""], + "Changing this control takes effect instantly": [""], + "Show info tooltip": [""], + "SQL expression": ["Espressione SQL"], + "Label": [""], + "unknown type icon": [""], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": ["Analytics avanzate"], + "This section contains options that allow for advanced analytical post processing of query results": [ "" ], - "Delimited long & lat single column": [""], - "Delimiter": [""], - "Demographics": [""], - "Density": [""], - "Dependent on": [""], - "Description": ["Descrizione"], - "Description (this can be seen in the list)": [""], - "Description text that shows up below your Big Number": [""], - "Deselect all": ["Seleziona data finale"], - "Details of the certification": [""], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Rolling window": [""], + "Rolling function": ["Testa la Connessione"], + "None": [""], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ "" ], - "Diamond": [""], - "Did you mean:": [""], - "Difference": [""], - "Dim Gray": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Dimensions": [""], - "Directed Force Layout": ["Disposizione a Forza Diretta"], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Periods": [""], + "Defines the size of the rolling window function, relative to the time granularity selected": [ "" ], - "Disable embedding?": [""], - "Discard": [""], - "Display column level total": [""], - "Display configuration": [""], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Min periods": [""], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ "" ], - "Display row level total": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Time comparison": ["Colonna del Tempo"], + "Time shift": ["Offset temporale"], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "30 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Distribute across": [""], - "Distribution - Bar Chart": ["Distribuzione - Grafico Barre"], - "Divider": [""], - "Do you want a donut or a pie?": [""], - "Domain": [""], - "Download": [""], - "Download as image": [""], - "Download to CSV": [""], - "Draft": [""], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "Calculation type": ["Seleziona un tipo di visualizzazione"], + "Difference": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Resample": [""], + "Rule": [""], + "1 minutely frequency": [""], + "1 hourly frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "1 year start frequency": [""], + "1 year end frequency": [""], + "Pandas resample rule": [""], + "Fill method": [""], + "Linear interpolation": [""], + "Pandas resample method": [""], + "Top": [""], + "X Axis": [""], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": [""], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Query": [""], + "Enable forecast": [""], + "Enable forecasting": [""], + "Forecast periods": [""], + "How many periods into the future do we want to predict": [""], + "Confidence interval": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "Yes": [""], + "No": [""], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Drill to detail: %s": [""], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Duplicate": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Duplicate tab": [""], - "Duration": ["Descrizione"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Time related form attributes": ["Attributi relativi al tempo"], + "Chart ID": ["Grafici"], + "The id of the active chart": [""], + "Cache Timeout (seconds)": [""], + "The number of seconds before expiring the cache": [""], + "Extra url parameters for use in Jinja templated queries": [""], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Durata (in secondi) per il timeout della cache per questa slice." + "Color Scheme": [""], + "Contribution Mode": [""], + "Row": [""], + "Series": [""], + "Calculate contribution per series or row": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Whether to sort ascending or descending on the base Axis.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Add dataset columns here to group the pivot table columns.": [""], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": [""], - "Dynamically search all filter values": [""], - "END (EXCLUSIVE)": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edit": ["Modifica"], - "Edit CSS": [""], - "Edit CSS Template": ["Template CSS"], - "Edit CSS template properties": ["Template CSS"], - "Edit Chart": ["Modifica grafico"], - "Edit Column": ["Edita colonna"], - "Edit Dashboard": [""], - "Edit Database": ["Mostra database"], - "Edit Dataset ": ["Mostra database"], - "Edit Log": ["Modifica"], - "Edit Metric": ["Modifica metrica"], - "Edit Plugin": ["Edita colonna"], - "Edit Saved Query": ["Modifica query salvata"], - "Edit Table": ["Modifica Tabella"], - "Edit annotation": ["Azione"], - "Edit annotation layer": [""], - "Edit annotation layer properties": ["Template CSS"], - "Edit chart properties": [""], - "Edit database": ["Mostra database"], - "Edit dataset": ["Mostra database"], - "Edit email report": [""], - "Edit properties": [""], - "Edit query": ["Query vuota?"], - "Edit template": ["Template CSS"], - "Edit template parameters": [""], - "Edit time range": [""], - "Edited": ["Modifica"], - "Editing 1 filter:": [""], - "Editing filter set:": [""], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ + "Entity": [""], + "This defines the element to be plotted on the chart": [""], + "Filters": ["Filtri"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Either the username or the password is wrong.": [""], - "Email reports active": [""], - "Embed": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty query?": ["Query vuota?"], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "Sort by": [""], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ "" ], - "Enable Filter Select": ["Abilita il filtro di Select"], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], - "Enable forecast": [""], - "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "End": [""], - "End (Longitude, Latitude): ": [""], - "End Longitude & Latitude": [""], - "End Time": [""], - "End angle": [""], - "End date excluded from time range": [""], - "End date must be after start date": [ - "La data di inizio non può essere dopo la data di fine" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "A metric to use for color": [""], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter Primary Credentials": [""], - "Enter a delimiter for this data": [""], - "Enter a name for this sheet": [""], - "Enter a new title for the tab": [""], - "Enter duration in seconds": [""], - "Enter fullscreen": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": [""], - "Entity ID": [""], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [""], - "Error in jinja expression in RLS filters: %(msg)s": [""], - "Error in jinja expression in WHERE clause: %(msg)s": [""], - "Error in jinja expression in fetch values predicate: %(msg)s": [""], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": [""], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Error: permalink state not found": [""], - "Estimate cost": [""], - "Estimate selected query cost": [""], - "Estimate the cost before running a query": [""], - "Event Flow": [""], - "Event definition": [""], - "Event flow": [""], - "Every": [""], - "Evolution": [""], - "Exact": [""], - "Example": [""], - "Examples": [""], - "Excel File": [""], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "" + "Drop a temporal column here or click": [""], + "Y-axis": [""], + "Dimension to use on y-axis.": [""], + "X-axis": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [ + "Il tipo di visualizzazione da mostrare" ], - "Excel to Database configuration": [""], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed query": ["query condivisa"], - "Execution ID": [""], - "Execution log": [""], - "Exit fullscreen": [""], - "Expand": [""], - "Expand all": [""], - "Expand data panel": [""], - "Expand row": [""], - "Expand table preview": [""], - "Expand tool bar": [""], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Fixed Color": [""], + "Use this to define a static color for all circles": [""], + "all": [""], + "5 seconds": [""], + "30 seconds": [""], + "1 minute": [""], + "5 minutes": [""], + "30 minutes": ["10 minuti"], + "1 hour": ["ora"], + "week": ["settimana"], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": ["mese"], + "year": ["anno"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "" ], - "Experimental": [""], - "Explore": ["Esplora grafico"], - "Explore - %(table)s": [""], - "Explore the result set in the data exploration view": [""], - "Export": [""], - "Export dashboards?": [""], - "Export to YAML": ["Esporta in YAML"], - "Export to YAML?": ["Esporta in YAML?"], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": ["Esponi in SQL Lab"], - "Expose this DB in SQL Lab": ["Esponi questo DB in SQL Lab"], - "Expression": ["Espressione"], - "Extra": ["Extra"], - "Extra Controls": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "Extra field cannot be decoded by JSON. %(msg)s": [""], - "Extra parameters for use in jinja templated queries": [""], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "FEB": [""], - "FRI": [""], - "Factor to multiply the metric by": [""], - "Fail": [""], - "Failed": [""], - "Failed at retrieving results": [ - "Errore nel recupero dei dati dal backend" + "Row limit": [""], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [""], - "Favorite": [""], - "Favorites": [""], - "February": [""], - "Fetch Values Predicate": [""], - "Fetch data preview": [""], - "Fetched %s": [""], - "Fetching": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [""], - "Field is required": [""], - "File": [""], - "Fill Color": [""], - "Fill all required fields to enable \"Default Value\"": [""], - "Fill method": [""], - "Filter List": ["Filtri"], - "Filter box (deprecated)": [""], - "Filter configuration": ["Controlli del filtro"], - "Filter configuration for the filter box": [""], - "Filter has default value": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter name": ["Valore del filtro"], - "Filter only displays values relevant to selections made in other filters.": [ + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "Filter results": ["Risultati della ricerca"], - "Filter set with this name already exists": [""], - "Filter sets (%(filterSetCount)d)": [""], - "Filter value (case sensitive)": [""], - "Filter value list cannot be empty": [""], - "Filter your charts": ["Controlli del filtro"], - "Filterable": ["Filtrabile"], - "Filters": ["Filtri"], - "Filters by columns": ["Controlli del filtro"], - "Filters by metrics": ["Lista Metriche"], - "Filters configuration": ["Controlli del filtro"], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Series limit": [""], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Y Axis Format": [""], + "The color scheme for rendering chart": [""], + "Whether to truncate metrics": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Original value": [""], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Oops! An error occurred!": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Fix to selected Time Range": [""], - "Fixed Color": [""], - "Fixed color": [""], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": ["ora"], + "day": ["giorno"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "Color Steps": [""], + "The number color \"steps\"": [""], + "Legend": [""], + "Whether to display the legend (toggles)": [""], + "Whether to display the numerical values within the cells": [""], + "Whether to display the metric name as a title": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Business": [""], + "Intensity": [""], + "Pattern": [""], + "Trend": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Source": ["Sorgente"], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "Force refresh": [""], - "Force refresh schema list": [""], - "Force refresh table list": [""], - "Forecast periods": [""], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formatted CSV attached in email": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Frequency": [""], - "Friction between nodes": [""], - "Friday": [""], - "From date cannot be larger than to date": [ - "La data di inizio non può essere dopo la data di fine" + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "" ], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "General": [""], - "Generating link, please wait..": [""], - "Geo": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": [""], - "Graph layout": [""], - "Gravity": [""], - "Greater or equal (>=)": [""], - "Greater than (>)": [""], - "Grid": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group by": ["Raggruppa per"], - "Groupable": ["Raggruppabile"], - "Handlebars": [""], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "Header": [""], - "Header Row": [""], - "Heatmap": ["Mappa di Intensità"], - "Heatmap Options": [""], - "Height": ["Altezza"], - "Height of the sparkline": [""], - "Hide Line": [""], - "Hide layer": [""], - "Hide tool bar": [""], - "Hides the Line for the time series": [""], - "Histogram": ["Istogramma"], - "Home": [""], - "Horizon Charts": ["Grafici d'orizzonte"], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": [""], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "2D": [""], + "Geo": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id": [""], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Additional metadata": [""], + "Select any columns for metadata inspection": [""], + "Entity ID": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "If a metric is specified, sorting will be done based on the metric value": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Event Flow": [""], + "Progressive": [""], + "Axis ascending": [""], + "Axis descending": [""], + "Heatmap Options": [""], + "XScale Interval": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "YScale Interval": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], + "Left Margin": [""], + "Left margin, in pixels, allowing for more room for axis labels": [""], + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "Ignore cache when generating screenshot": [""], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Whether to include the percentage in the tooltip": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "Impersonate the logged on user": [""], - "Import": ["Importa"], - "Import %s": ["Importa"], - "Import Dashboard(s)": ["Importa dashboard"], - "Import Dashboards": ["Importa dashboard"], - "Import a table definition": [""], - "Import chart failed for an unknown reason": [""], - "Import dashboard failed for an unknown reason": [""], - "Import dashboards": ["Importa dashboard"], - "Import database failed for an unknown reason": [""], - "Import dataset failed for an unknown reason": [""], - "Import saved query failed for an unknown reason.": [""], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Include time": [""], - "Index Column": [""], - "Info": [""], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": ["Cerca / Filtra"], - "Intensity": [""], - "Intensity Radius": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "Density": [""], + "to": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Whether to make the histogram cumulative": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "Interpret Datetime Format Automatically": [""], - "Interpret the datetime format automatically": [""], - "Interval colors": [""], - "Intesity": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Population age data": [""], + "Contribution": [""], + "Compute the contribution to the total": [""], + "Series Height": [""], + "Pixel height of each series": [""], + "Value Domain": [""], + "overall": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" ], - "Invalid JSON": [""], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": [""], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Dark Cyan": [""], + "Purple": [""], + "Gold": [""], + "Dim Gray": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "Invalid cron expression": [""], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": [""], - "Invalid filter configuration, please select a column": [""], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": [""], - "Invalid lat/long configuration.": [""], - "Invalid longitude/latitude": [""], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [""], - "Invalid options for %(rolling_type)s: %(options)s": [""], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid state.": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Is dimension": [""], - "Is favorite": [""], - "Is filterable": ["Filtrabile"], - "Is not null": [""], - "Is null": [""], - "Is tagged": [""], - "Is temporal": ["è temporale"], - "Is true": [""], - "Issue 1000 - The dataset is too large to query.": [""], - "Issue 1001 - The database is under an unusual load.": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": [""], - "JSON": ["JSON"], - "JSON Metadata": ["Metadati JSON"], - "JSON metadata": ["Metadati JSON"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "JUL": [""], - "JUN": [""], - "January": [""], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Map Style": [""], + "Streets": [""], + "Dark": [""], + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": [""], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "RGB Color": [""], + "The color for points and clusters in RGB": [""], + "Default longitude": [""], + "Longitude of default viewport": [""], + "Default latitude": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Light mode": [""], + "Dark mode": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "July": [""], - "June": [""], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": [""], - "Keys for table": [""], - "LIMIT": [""], - "Label": [""], - "Label Line": [""], - "Label for your query": [""], - "Label threshold": [""], - "Labelling": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Large": [""], - "Last": [""], - "Last Changed": ["Ultima Modifica"], - "Last Modified": ["Ultima Modifica"], - "Last Updated %s": [""], - "Last available value seen on %s": [""], - "Last modified": ["Ultima Modifica"], - "Last modified by %s": ["Ultima Modifica"], - "Last run": ["Ultima Modifica"], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": ["Controlli del filtro"], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "" - ], - "Left Axis Format": [""], - "Left Margin": [""], - "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Legacy": [""], - "Legend": [""], - "Legend type": [""], - "Less or equal (<=)": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light mode": [""], - "Like": [""], - "Like (case insensitive)": [""], - "Limit reached": [""], - "Limit selector values": [""], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Ranking": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "" ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Not Time Series": [""], + "Ignore time": [""], + "Standard time series": [""], + "Aggregate Mean": [""], + "Mean of values over specified period": [""], + "Aggregate Sum": [""], + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Metric percent change in value from `since` to `until`": [""], + "Metric factor change from `since` to `until`": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "Partition Limit": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ "" ], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": ["Larghezza"], - "Linear color scheme": [""], - "Linear interpolation": [""], - "Link Copied!": [""], - "List Saved Query": ["Visualizza query salvate"], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "List updated": [""], - "Live CSS editor": [""], - "Live render": [""], - "Load a CSS template": [""], - "Loaded data cached": [""], - "Loaded from cache": [""], - "Loading": [""], - "Loading...": [""], "Log Scale": [""], - "Log retention": [""], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["Login"], - "Logout": ["Logout"], - "Logs": [""], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": [""], - "Longitude and Latitude": [""], - "Longitude of default viewport": [""], - "MAR": [""], - "MAY": [""], - "MON": [""], - "Main Datetime Column": [""], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ - "" - ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ "" ], - "Manage": ["Gestisci"], - "Mandatory": [""], - "Manually set min/max values for the y-axis.": [""], - "Map Style": [""], - "Mapbox": ["Mapbox"], - "March": ["Cerca"], - "Margin": [""], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markers": [""], - "Markup type": [""], - "Max": ["Max"], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "cumsum": [""], + "Min Periods": [""], + "30 days": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Maximum value on the gauge axis": [""], - "May": ["giorno"], - "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": [""], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Categorical": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ "" ], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": [""], - "Metadata has been synced": [""], - "Method": [""], - "Metric": ["Metrica"], - "Metric '%(metric)s' does not exist": [""], - "Metric assigned to the [X] axis": [""], - "Metric assigned to the [Y] axis": [""], - "Metric change in value from `since` to `until`": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": [""], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to sort the results by": [""], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Multi-Layers": [""], + "Source / Target": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ "" ], - "Metrics": ["Metriche"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "Whether to display bubbles on top of countries": [""], + "Color by": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ "" ], - "Middle": [""], - "Midnight": [""], - "Min": ["Min"], - "Min Periods": [""], - "Min periods": [""], - "Min/max (no outliers)": [""], - "Mine": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Metric that defines the size of the bubble": [""], + "Bubble Color": [""], + "Country Color Scheme": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Mixed Time-Series": [""], - "Modified": ["Modificato"], - "Modified by": ["Modificato"], - "Modified columns: %s": [""], - "Monday": [""], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], "Multi-Dimensions": [""], - "Multi-Layers": [""], - "Multi-Levels": [""], "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Popular": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start (Longitude, Latitude): ": [""], + "End (Longitude, Latitude): ": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Target Color": [""], + "Color of the target location": [""], + "Categorical Color": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Advanced": [""], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Centroid (Longitude and Latitude): ": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "Must be unique": [""], - "Must have a [Group By] column to have 'count' as the [Label]": [""], - "Must have at least one numeric column specified": [ - "Devi specificare una colonna numerica" + "Spatial": [""], + "Experimental": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "" ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "My metric": ["Metrica"], - "N/A": [""], - "NOV": [""], - "NOW": [""], - "Name": ["Nome"], - "Name is required": [""], - "Name must be unique": [""], - "Name of table to be created from excel data.": [ - "Nome delle tabella esistente nella sorgente del database" + "deck.gl Geojson": [""], + "Longitude and Latitude": [""], + "Height": ["Altezza"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "" ], - "Name of the column containing the id of the parent node": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [ - "Nome delle tabella esistente nella sorgente del database" + "deck.gl Grid": [""], + "Intesity": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "Name of the target nodes": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error.": ["Errore di rete."], - "New chart": ["Grafico a torta"], - "New columns added: %s": [""], - "New tab": [""], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": [""], - "No": [""], - "No %s yet": [""], - "No Access!": ["Nessun Accesso!"], - "No annotation layers yet": [""], - "No annotation yet": [""], - "No charts": ["Grafici"], - "No compatible columns found": [""], - "No compatible datasets found": [""], - "No compatible schema found": [""], - "No dashboards": [""], - "No data": ["Metadati JSON"], - "No data after filtering or data is NULL for the latest time record": [ + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "variance": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "No data in file": [""], - "No databases match your search": [""], - "No favorite charts yet, go click on stars!": [""], - "No favorite dashboards yet, go click on stars!": [""], - "No filter is selected.": [""], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No recents yet": [""], - "No records found": ["Nessun record trovato"], - "No results found": ["Nessun record trovato"], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Opacity, expects values between 0 and 100": [""], + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Whether to apply filter when items are clicked": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No stored results found, you need to re-run your query": [""], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Unit": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "None": [""], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not Time Series": [""], - "Not equal to (≠)": [""], - "Not null": [""], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": [""], - "Notification method": [""], - "November": [""], - "Now": [""], - "Null or Empty": [""], - "Null values": ["Valore del filtro"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "" ], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read": [""], - "Number of rows of file to read.": [""], - "Number of rows to skip at start of file": [""], - "Number of rows to skip at start of file.": [""], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": [""], - "OCT": [""], - "OK": [""], - "OVERWRITE": [""], - "October": [""], - "Offline": [""], - "Offset": ["Offset"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Point Color": [""], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "deck.gl Scatterplot": [""], + "Grid": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], - "One or many columns to pivot as columns": [""], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ "" ], - "One or many controls to pivot as columns": [""], - "One or many metrics to display": ["Una o più metriche da mostrare"], - "One or more columns already exist": [""], - "One or more columns are duplicated": [""], - "One or more columns do not exist": [""], - "One or more metrics already exist": ["Una o più metriche da mostrare"], - "One or more metrics are duplicated": ["Una o più metriche da mostrare"], - "One or more metrics do not exist": ["Una o più metriche da mostrare"], - "One or more parameters needed to configure a database are missing.": [ + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ "" ], - "One or more parameters specified in the query are malformatted.": [""], - "One or more parameters specified in the query are missing.": [""], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "One ore more annotation layers failed loading.": [""], - "Only SELECT statements are allowed against this database.": [""], - "Only Total": [""], - "Only `SELECT` statements are allowed": [""], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [""], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "Only single queries supported": [""], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ "" ], - "Oops! An error occurred!": [""], - "Opacity": [""], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["Sorgente Dati"], - "Open in SQL Lab": ["Esponi in SQL Lab"], - "Open query in SQL Lab": ["Esponi in SQL Lab"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Choose the position of the legend": [""], + "The database columns that contains lines information": [""], + "Line width": ["Larghezza"], + "The width of the lines": [""], + "Fill Color": [""], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ "" ], - "Operator undefined for aggregator: %(name)s": [""], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Whether to fill the objects": [""], + "Whether to display the stroke": [""], + "Whether to make the grid 3D": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Factor to multiply the metric by": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "basis": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ "" ], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original table column order": [""], - "Original value": [""], - "Orthogonal": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Outer edge of Pie chart": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "X Tick Layout": [""], + "flat": [""], + "staggered": [""], + "The way the ticks are laid out on the X-axis": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "expand": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ "" ], - "Override time grain": [""], - "Override time range": [""], - "Overwrite": ["Sovrascrivi la slice %s"], - "Overwrite & Explore": ["Sovrascrivi la slice %s"], - "Overwrite Dashboard [%s]": [""], - "Overwrite Duplicate Columns": [""], - "Overwrite existing": [""], - "Overwrite text in the editor with a query on this table": [""], - "Owned Created or Favored": [""], - "Owner": ["Proprietario"], - "Owners": ["Proprietari"], - "Owners are invalid": [""], - "Owners is a list of users who can alter the dashboard.": [ - "Proprietari è una lista di utenti che può alterare la dashboard." + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Continuous": [""], + "nvd3": [""], + "Series Limit Sort By": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Proprietari è una lista di utenti che può alterare la dashboard." + "Whether to sort descending or ascending if a series limit is present": [ + "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": [""], - "Pandas resample rule": [""], - "Parallel Coordinates": ["Coordinate Parallele"], - "Parameter error": ["Parametri"], - "Parameters": ["Parametri"], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": [""], - "Part of a Whole": [""], - "Partition Diagram": [""], - "Partition Limit": [""], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ "" ], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": [""], - "Percentage threshold": [""], - "Percentages": [""], - "Performance": [""], - "Period average": [""], - "Periods": [""], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [""], - "Physical": [""], - "Physical (table or view)": [""], - "Physical dataset": ["Seleziona una destinazione"], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Seleziona una granularità nella sezione tempo e deseleziona 'Includi Tempo'" + "Bar": [""], + "Vertical": [""], + "Box Plot": ["Box Plot"], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "" ], - "Pick a metric for x, y and size": [ - "Seleziona una metrica per x, y e grandezza" + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "Markers": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "" ], - "Pick a metric to display": ["Seleziona una metrica da visualizzare"], - "Pick a metric!": ["Seleziona una metrica!"], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "Seleziona una granularità per la serie temporale" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "" ], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [ - "Seleziona almeno un campo per [Series]" + "Sort bars by x labels.": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "" ], - "Pick at least one metric": ["Seleziona almeno una metrica"], - "Pick exactly 2 columns as [Source / Target]": [ - "Seleziona esattamente 2 colonne come [Sorgente / Destinazione]" + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Value": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Do you want a donut or a pie?": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Frequency": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Pick your favorite markup language": [""], - "Pie shape": [""], - "Pivot Table": ["Vista Pivot"], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pixel height of each series": [""], - "Pixels": [""], + "Time-series Period Pivot": [""], + "Stack": [""], + "Expand": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Margin": [""], + "Additional padding for legend.": [""], + "Scroll": [""], "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Legend type": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Percentage threshold": [""], + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Please choose different metrics on left and right axis": [ - "Seleziona metriche differenti per gli assi destro e sinistro" + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": ["Metadati JSON"], + "No data after filtering or data is NULL for the latest time record": [ + "" ], - "Please confirm": [""], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [ - "Inserisci un nome per la slice" + "Try applying different filters or ensuring your datasource has data": [ + "" ], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [""], - "Please save your chart first, then try creating a new email report.": [ + "Big Number Font Size": [""], + "Small": [""], + "Normal": [""], + "Large": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Subheader": [""], + "Description text that shows up below your Big Number": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Apply conditional color formatting to metric": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "With a subheader": [""], + "Big Number": ["Numero Grande"], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [ - "Seleziona metriche differenti per gli assi destro e sinistro" + "Fix to selected Time Range": [""], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "" ], - "Plot the distance (like flight paths) between origin and destination.": [ + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Big Number with Trendline": ["Numero Grande con Linea del Trend"], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Distribute across": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Plugins": [""], - "Point Color": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polyline": [""], - "Pop Tab Link": [""], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": ["Posizione del JSON"], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter available values": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Predicato utilizzato quando si fornisce un valore univoco per popolare il componente di controllo del filtro. Supporta la sintassi del template jinja. È utilizzabile solo quando è abilitata l'opzione \"Abilita selezione filtro\"." + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "" ], - "Preview": [""], - "Preview: `%s`": [""], - "Previous": [""], - "Previous Line": [""], - "Primary": [""], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Profile": ["Profilo"], - "Profile picture provided by Gravatar": [""], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": [""], - "Purple": [""], - "Put labels outside": [""], - "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": [""], - "Python datetime string pattern": [""], - "QUERY DATA IN SQL LAB": [""], - "Query": [""], - "Query %s: %s": [""], - "Query History": [""], - "Query history": ["Ricerca Query"], - "Query in a new tab": ["Query in un nuovo tab"], - "Query is too complex and takes too long to run.": [""], - "Query name": ["Ricerca Query"], - "Query preview": [""], - "Query was stopped.": ["La query è stata fermata."], - "RANGE TYPE": [""], - "RGB Color": [""], - "Radar": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radial": [""], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Ranking": [""], - "Raw records": [""], - "Ready to review filters in this dashboard?": [""], - "Rebuild": [""], - "Recent activity": [""], - "Recently created charts, dashboards, and saved queries will appear here": [ + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "What should be shown as the label": [""], + "Tooltip Contents": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ "" ], - "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Sequential": [""], + "General": [""], + "Min": ["Min"], + "Minimum value on the gauge axis": [""], + "Max": ["Max"], + "Maximum value on the gauge axis": [""], + "Angle at which to start progress axis": [""], + "End angle": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Recents": [""], - "Recipients are separated by \",\" or \";\"": [""], - "Recommended tags": [""], - "Record Count": [""], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Reinvia a questo endpoint al clic sulla tabella dall'elenco delle tabelle" + "Axis": [""], + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Whether to show the progress of gauge chart": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Style the ends of the progress bar with a round cap": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ "" ], - "Referenced columns not available in DataFrame.": [""], - "Refetch results": ["Risultati della ricerca"], - "Refresh": [""], - "Refresh dashboard": ["Rimuovi il grafico dalla dashboard"], - "Refresh frequency": [""], - "Refresh interval": [""], - "Refresh interval saved": [""], - "Refresh table list": [""], - "Refresh the default values": [""], - "Regex": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Interval colors": [""], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative period": [""], - "Relative quantity": [""], - "Remind me in 24 hours": [""], - "Remove": [""], - "Remove invalid filters": [""], - "Remove item": [""], - "Remove query from log": [""], - "Remove table preview": [""], - "Removed columns: %s": [""], - "Rename tab": [""], - "Replace": [""], - "Report Schedule could not be created.": [ - "La tua query non può essere salvata" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "" ], - "Report Schedule could not be deleted.": [ - "La tua query non può essere salvata" + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "Source category": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "" ], - "Report Schedule could not be updated.": [ - "La tua query non può essere salvata" + "Target category": [""], + "Category of target nodes": [""], + "Layout": [""], + "Graph layout": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Single": [""], + "Multiple": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "" ], - "Report Schedule delete failed.": [""], - "Report Schedule execution failed when generating a csv.": [""], - "Report Schedule execution failed when generating a dataframe.": [""], - "Report Schedule execution failed when generating a screenshot.": [""], - "Report Schedule execution got an unexpected error.": [""], - "Report Schedule is still working, refusing to re-compute.": [""], - "Report Schedule log prune failed.": [""], - "Report Schedule not found.": [""], - "Report Schedule parameters are invalid.": [""], - "Report Schedule reached a working timeout.": [""], - "Report Schedule state not found": [""], - "Report failed": ["Nome Completo"], - "Report name": ["Nome Completo"], - "Report schedule": ["Importa"], - "Report schedule unexpected error": [""], - "Report sending": ["Importa"], - "Report sent": ["Importa"], - "Reports": ["Importa"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "" + ], + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], "Repulsion strength between nodes": [""], - "Request Permissions": ["Richiesta di Permessi"], - "Request is incorrect: %(error)s": [""], - "Request is not JSON": [""], - "Request missing data field.": [""], - "Required": [""], - "Required control values have been removed": [""], - "Resample": [""], - "Resample method should in ": [""], - "Resample operation requires DatetimeIndex": [""], - "Reset": [""], - "Reset state": [""], - "Resource already has an attached report.": [""], - "Results": [""], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": [""], - "Reverse lat/long ": [""], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right axis metric": ["Metrica asse destro"], - "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Structural": [""], + "Whether to sort descending or ascending": [""], + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Marker": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary": [""], + "Secondary": [""], + "Primary or secondary y-axis": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ "" ], - "Roles": ["Ruoli"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Pie shape": [""], + "Outer Radius": [""], + "Outer edge of Pie chart": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ "" ], - "Roles to grant": ["Ruoli per l'accesso"], - "Rolling function": ["Testa la Connessione"], - "Rolling window": [""], - "Root certificate": [""], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Row": [""], - "Row Level Security": [""], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Radar": [""], + "Customize Metrics": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "The primary metric is used to define the arc segment sizes": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ "" ], - "Row limit": [""], - "Rows": [""], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": [""], - "Rule": [""], - "Rule added": [""], - "Run": [""], - "Run a query to display query history": [""], - "Run a query to display results": [""], - "Run in SQL Lab": ["Esponi in SQL Lab"], - "Run query": ["condividi query"], - "Run query (Ctrl + Return)": [""], - "Run query in a new tab": [""], - "Run selection": ["Seleziona una colonna"], - "Running": [""], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": [""], - "SEP": [""], - "SHA": [""], - "SQL": [""], - "SQL Copied!": [""], - "SQL Expression": ["Espressione SQL"], - "SQL Lab": [""], - "SQL Lab View": ["Vista Tabella"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "When only a primary metric is provided, a categorical color scale is used.": [ "" ], - "SQL Query": [""], - "SQL expression": ["Espressione SQL"], - "SQL query": ["Query vuota?"], - "SQLAlchemy URI": ["URI SQLAlchemy"], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunnel parameters are invalid.": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "STRING": [""], - "SUN": [""], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Sankey": ["Sankey"], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite Streets": [""], - "Saturday": [""], - "Save": [""], - "Save & Explore": ["Salva una slice"], - "Save & go to dashboard": ["Salva e vai alla dashboard"], - "Save (Overwrite)": ["Query salvate"], - "Save as": ["Salva come"], - "Save as new": ["Salva una slice"], - "Save as new chart": [""], - "Save as:": [""], - "Save chart": ["Grafico a torta"], - "Save dashboard": ["Salva e vai alla dashboard"], - "Save for this session": [""], - "Save or Overwrite Dataset": [""], - "Save query": ["query condivisa"], - "Save the query to enable this feature": [""], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["Salva come"], - "Saved Queries": ["Query salvate"], - "Saved metric": ["Seleziona una metrica"], - "Saved queries": ["Query salvate"], - "Saved queries could not be deleted.": [ - "La query non può essere caricata" - ], - "Saved query not found.": [""], - "Saved query parameters are invalid.": [""], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "When a secondary metric is provided, a linear color scale is used.": [ "" ], - "Schedule": [""], - "Schedule email report": [""], - "Schedule query": ["Mostra query salvate"], - "Schedule settings": ["Mostra query salvate"], - "Schedule the query periodically": [""], - "Scheduled": [""], - "Scheduled at (UTC)": [""], - "Scheduled task executor not found": [""], - "Schema": ["Schema"], - "Schema undefined": [""], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Schema, va utilizzato soltanto in alcuni database come Postgres, Redshift e DB2" - ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": [""], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["Cerca"], - "Search / Filter": ["Cerca / Filtra"], - "Search Metrics & Columns": [""], - "Search all filter options": ["Cerca / Filtra"], - "Search by query text": [""], - "Search...": ["Cerca"], - "Second": [""], - "Secondary": [""], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Seconds %s": [""], - "Secure Extra": ["Sicurezza"], - "Secure extra": ["Sicurezza"], - "Security": ["Sicurezza"], - "Security & Access": [""], - "See all %(tableName)s": [""], - "See less": [""], - "See more": [""], - "See table schema": [""], - "Select ...": [""], - "Select Delivery Method": [""], - "Select a Columnar file to be uploaded to a database.": [""], - "Select a Excel file to be uploaded to a database.": [""], - "Select a database table and create dataset": [""], - "Select a database to upload the file to": [""], - "Select a database to write a query": [""], - "Select a file to be uploaded to the database": [""], - "Select a schema if the database supports this": [""], - "Select a visualization type": ["Seleziona un tipo di visualizzazione"], - "Select aggregate options": [""], - "Select any columns for metadata inspection": [""], - "Select database or type to search databases": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select or type a value": [""], - "Select or type dataset name": [""], - "Select schema or type to search schemas": [""], - "Select scheme": [""], - "Select start and end date": ["Seleziona data iniziale"], - "Select subject": [""], - "Select table or type to search tables": [""], - "Select the Annotation Layer you would like to use.": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" ], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "zoom area": [""], + "restore zoom": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": [""], - "Sequential": [""], - "Series": [""], - "Series Height": [""], - "Series Limit Sort By": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": [""], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": [""], - "Set filter mapping": [""], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "AXIS TITLE MARGIN": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Settings": [""], - "Settings for time series": [""], - "Share": [""], - "Shared query": ["query condivisa"], - "Sheet Name": ["Nome Completo"], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [""], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Bar Charts are used to show metrics as a series of bars.": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Show": [""], - "Show CREATE VIEW statement": [""], - "Show CSS Template": ["Template CSS"], - "Show Chart": ["Mostra grafico"], - "Show Column": ["Mostra colonna"], - "Show Dashboard": [""], - "Show Database": ["Mostra database"], - "Show Less...": [""], - "Show Log": ["Mostra colonna"], - "Show Markers": [""], - "Show Metric": ["Mostra metrica"], - "Show Saved Query": ["Mostra query salvate"], - "Show Table": ["Mostra Tabelle"], - "Show Timestamp": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Start": [""], + "Middle": [""], + "End": [""], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ "" ], - "Show info tooltip": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time grain dropdown": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Id": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Radial": [""], + "Layout type of tree": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "top": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], + "Symbol": [""], + "Empty circle": [""], + "Circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Arrow": [""], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Treemap": ["Treemap"], + "Total": [""], + "Assist": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "" - ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "Handlebars": [""], + "must have a value": [""], + "A handlebars template that is applied to the data": [""], + "Include time": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "Showing %s of %s": [""], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": [""], - "Skip Initial Space": [""], - "Skip Rows": [""], - "Skip blank lines rather than interpreting them as Not A Number values": [ + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "Skip spaces after delimiter": [""], - "Slug": ["Slug"], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "Solid": [""], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [""], - "Sorry there was an error fetching saved charts: ": [""], - "Sorry, An error occurred": [""], - "Sorry, an error occurred": [""], - "Sorry, an unknown error occurred": [""], - "Sorry, an unknown error occurred.": [""], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, there was an error saving this %s: %s": [""], - "Sorry, there was an error saving this dashboard: %s": [""], - "Sorry, your browser does not support copying.": [""], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": [""], - "Sort bars by x labels.": [""], - "Sort by": [""], - "Sort columns alphabetically": [""], + "Ordering": [""], + "Order results by selected columns": [""], "Sort descending": [""], - "Sort metric": ["Mostra metrica"], - "Sort rows by": [""], - "Sort series in ascending order": [""], - "Source": ["Sorgente"], - "Source / Target": [""], - "Source SQL": [""], - "Source category": [""], - "Sparkline": [""], - "Spatial": [""], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [""], - "Specify duplicate columns as \"X.0, X.1\".": [""], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "" - ], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": [""], - "Start (Longitude, Latitude): ": [""], - "Start Longitude & Latitude": [""], - "Start Review": [""], - "Start at (UTC)": [""], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "" - ], - "State": [""], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": [""], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": [""], + "Columns to group by on the rows": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Cell limit": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Stop": [""], - "Stop query": ["Query vuota?"], - "Stop running (Ctrl + e)": [""], - "Stop running (Ctrl + x)": [""], - "Stopped an unsafe database connection": [""], - "Streets": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [""], - "Structural": [""], - "Style": [""], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], - "Success": [""], - "Suffix to apply after the percentage display": [""], "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Maximum": [""], + "First": [""], + "Last": [""], "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": ["Sunburst"], - "Sunday": [""], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["Esplora grafico"], - "Superset dashboard": ["Importa dashboard"], - "Superset encountered an error while running a command.": [""], - "Superset encountered an unexpected error.": [""], - "Survey Responses": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ "" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Show rows total": [""], + "Display row level total": [""], + "Display row level subtotal": [""], + "Display column level total": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ "" ], - "Symbol": [""], - "Symbol of two ends of edge line": [""], - "Sync columns from source": [""], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "D3 time format for datetime columns": [""], + "Sort rows by": [""], + "key a-z": [""], + "key z-a": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Conditional formatting": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], - "TABLES": [""], - "THU": [""], - "TUE": [""], - "Tab name": ["Nome"], - "Tab title": [""], - "Table": ["Tabella"], - "Table %(table)s wasn't found in the database %(db)s": [""], - "Table Exists": [""], - "Table Name": [""], - "Table View": ["Vista Tabella"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Pivot Table": ["Vista Pivot"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": [""], + "Page length": [""], + "Whether to include a client-side search box": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "Table name cannot contain a schema": [""], - "Table name undefined": [""], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "Tables": ["Tabelle"], - "Tabs": [""], - "Tabular": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Tag parameters are invalid.": [""], - "Tags": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "Target Color": [""], - "Target category": [""], - "Target value": [""], - "Template Name": [""], - "Template parameters": ["Parametri"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Show": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "random": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "N/A": [""], + "offline": [""], + "fetching": [""], + "stopped": [""], + "The query couldn't be loaded": ["La query non può essere caricata"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "Test Connection": ["Testa la Connessione"], - "Test connection": ["Testa la Connessione"], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ - "" + "Your query could not be scheduled": [ + "La tua query non può essere salvata" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "Il CSS di ogni singola dashboard può essere modificato qui, oppure nella vista della dashboard dove i cambiamenti sono visibili immediatamente" + "Failed at retrieving results": [ + "Errore nel recupero dei dati dal backend" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Unknown error": [""], + "Query was stopped.": ["La query è stata fermata."], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The access requests seem to have been deleted": [""], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [""], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "" + "Copy of %s": ["Copia di %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Errore nel creare il datasource" ], - "The column header label": [""], - "The column was deleted or renamed in the database.": [""], - "The country code standard that Superset should expect to find in the [country] column": [ - "" + "An error occurred while fetching tab state": [ + "Errore nel recupero dei metadati della tabella" ], - "The dashboard has been saved": [""], - "The data source seems to have been deleted": [""], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "Il tipo di dato è dedotto dal database. In alcuni casi potrebbe essere necessario inserire manualmente un tipo di colonna definito dall'espressione. Nella maggior parte dei casi gli utenti non hanno bisogno di fare questa modifica." + "An error occurred while removing tab. Please contact your administrator.": [ + "Errore nel creare il datasource" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "" + "An error occurred while removing query. Please contact your administrator.": [ + "Errore nel creare il datasource" ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [""], - "The database is under an unusual load.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "" + "Your query could not be saved": ["La tua query non può essere salvata"], + "Your query was saved": ["La tua query è stata salvata"], + "Your query was updated": ["La tua query è stata salvata"], + "Your query could not be updated": [ + "La tua query non può essere salvata" ], - "The database returned an unexpected error.": [""], - "The database was deleted.": [""], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "" + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Errore nel recupero dei metadati della tabella" ], - "The dataset has been saved": [""], - "The dataset linked to this chart may have been deleted.": [""], - "The datasource couldn't be loaded": ["La query non può essere caricata"], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Errore nel creare il datasource" ], - "The distance between cells, in pixels": [""], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Errore nel creare il datasource" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Errore nel creare il datasource" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "" + "Shared query": ["query condivisa"], + "The datasource couldn't be loaded": ["La query non può essere caricata"], + "An error occurred while creating the data source": [ + "Errore nel creare il datasource" ], - "The host might be down, and can't be reached on the provided port.": [ + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The hostname provided can't be resolved.": [""], - "The id of the active chart": [""], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "Elenco delle slice associate a questa tabella. Modificando questa origine dati, è possibile modificare le modalità di comportamento delle slice associate. Inoltre, va tenuto presente che le slice devono indicare un'origine dati, pertanto questo modulo non registra le impostazioni qualora si modifica un'origine dati. Se vuoi modificare l'origine dati per una slide, devi sovrascriverla dal 'vista di esplorazione'" - ], - "The maximum number of events to return, equivalent to the number of rows": [ + "Foreign key": [""], + "Estimate selected query cost": [""], + "Estimate cost": [""], + "Cost estimate": [""], + "Creating a data source and creating a new tab": [""], + "An error occurred": [""], + "Explore the result set in the data exploration view": [""], + "Source SQL": [""], + "Run query": ["condividi query"], + "Stop query": ["Query vuota?"], + "New tab": [""], + "Previous Line": [""], + "Keyboard shortcuts": [""], + "Run a query to display query history": [""], + "LIMIT": [""], + "State": [""], + "Duration": ["Descrizione"], + "Results": [""], + "Actions": ["Azione"], + "Success": [""], + "Failed": [""], + "Running": [""], + "Fetching": [""], + "Offline": [""], + "Scheduled": [""], + "Unknown Status": [""], + "Edit": ["Modifica"], + "View": [""], + "Data preview": [""], + "Overwrite text in the editor with a query on this table": [""], + "Run query in a new tab": [""], + "Remove query from log": [""], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["Salva una slice"], + "Overwrite & Explore": ["Sovrascrivi la slice %s"], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], + "Filter results": ["Risultati della ricerca"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "The number of rows displayed is limited to %(rows)d by the query": [""], + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "%(rows)d rows returned": [""], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "" + "Track job": [""], + "Database error": ["Espressione del Database"], + "was created": ["è stata creata"], + "Query in a new tab": ["Query in un nuovo tab"], + "The query returned no data": [""], + "Fetch data preview": [""], + "Refetch results": ["Risultati della ricerca"], + "Stop": [""], + "Run selection": ["Seleziona una colonna"], + "Run": [""], + "Stop running (Ctrl + x)": [""], + "Stop running (Ctrl + e)": [""], + "Run query (Ctrl + Return)": [""], + "Save": [""], + "An error occurred saving dataset": ["Errore nel creare il datasource"], + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": ["Salva una slice"], + "Overwrite existing": [""], + "Select or type dataset name": [""], + "Are you sure you want to overwrite this dataset?": [""], + "Undefined": [""], + "Save as": ["Salva come"], + "Save query": ["query condivisa"], + "Cancel": ["Annulla"], + "Update": [""], + "Label for your query": [""], + "Write a description for your query": [""], + "Submit": [""], + "Schedule query": ["Mostra query salvate"], + "Schedule": [""], + "There was an error with your request": [""], + "Please save the query to enable sharing": [""], + "Copy query link to your clipboard": ["copia URL in appunti"], + "Save the query to enable this feature": [""], + "Copy link": [""], + "No stored results found, you need to re-run your query": [""], + "Run a query to display results": [""], + "Preview: `%s`": [""], + "Query history": ["Ricerca Query"], + "Schedule the query periodically": [""], + "You must run the query successfully first": [""], + "Autocomplete": [""], + "CREATE TABLE AS": ["Permetti CREATE TABLE AS"], + "CREATE VIEW AS": ["Permetti CREATE TABLE AS"], + "Estimate the cost before running a query": [""], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Collapse table preview": [""], + "Expand table preview": [""], + "Reset state": [""], + "Enter a new title for the tab": [""], + "Close tab": [""], + "Rename tab": [""], + "Expand tool bar": [""], + "Hide tool bar": [""], + "Close all other tabs": [""], + "Duplicate tab": [""], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "Errore nel recupero dei metadati della tabella" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Copy partition query to clipboard": [""], + "latest partition:": [""], + "Keys for table": [""], + "View keys & indexes (%s)": [""], + "Original table column order": [""], + "Sort columns alphabetically": [""], + "Copy SELECT statement to the clipboard": ["copia URL in appunti"], + "Show CREATE VIEW statement": [""], + "CREATE VIEW statement": [""], + "Remove table preview": [""], + "Assign a set of parameters as": [""], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "syntax.": [""], + "Edit template parameters": [""], + "Invalid JSON": [""], + "Untitled query": ["Query senza nome"], + "%s%s": [""], + "Before": [""], + "Click to see difference": [""], + "Altered": [""], + "Chart changes": ["Ultima Modifica"], + "Loaded data cached": [""], + "Loaded from cache": [""], + "Click to force-refresh": [""], + "Cached": [""], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "" + "An error occurred while loading the SQL": [ + "Errore nel creare il datasource" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "" + "Sorry, an error occurred": [""], + "Updating chart was stopped": [ + "L'aggiornamento del grafico è stato fermato" ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "" + "An error occurred while rendering the visualization: %s": [ + "Errore nel rendering della visualizzazione: %s" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Network error.": ["Errore di rete."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The number of seconds before expiring the cache": [""], - "The parameter %(parameters)s in your query is undefined.": [""], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "Cross-filtering is not enabled for this dashboard.": [""], + "This visualization type does not support cross-filtering.": [""], + "You can't apply cross-filter on this data point.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": [""], + "Failed to load chart data.": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Drill to detail: %s": [""], + "No rows were returned for this dataset": [""], + "Copy": [""], + "Copy to clipboard": [""], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], + "every": [""], + "every month": ["mese"], + "every day of the month": ["Codice a 3 lettere della nazione"], + "day of the month": [""], + "every day of the week": [""], + "day of the week": [""], + "every hour": [""], + "minute": ["minuto"], + "reboot": [""], + "Every": [""], + "in": ["Min"], + "on": [""], + "and": [""], + "at": [""], + ":": [""], + "Invalid cron expression": [""], + "Clear": [""], + "Sunday": [""], + "Monday": [""], + "Tuesday": [""], + "Wednesday": [""], + "Thursday": [""], + "Friday": [""], + "Saturday": [""], + "January": [""], + "February": [""], + "March": ["Cerca"], + "April": [""], + "May": ["giorno"], + "June": [""], + "July": [""], + "August": [""], + "September": [""], + "October": [""], + "November": [""], + "December": [""], + "SUN": [""], + "MON": [""], + "TUE": [""], + "WED": [""], + "THU": [""], + "FRI": [""], + "SAT": [""], + "JAN": [""], + "FEB": [""], + "MAR": [""], + "APR": [""], + "MAY": [""], + "JUN": [""], + "JUL": [""], + "AUG": [""], + "SEP": [""], + "OCT": [""], + "NOV": [""], + "DEC": [""], + "There was an error loading the schemas": [""], + "Select database or type to search databases": [""], + "Force refresh schema list": [""], + "Select schema or type to search schemas": [""], + "No compatible schema found": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ "" ], + "dataset": [""], + "Connection": ["Testa la Connessione"], + "Warning!": [""], + "Search / Filter": ["Cerca / Filtra"], + "Add item": ["Aggiungi filtro"], + "STRING": [""], + "BOOLEAN": [""], + "Physical (table or view)": [""], + "Virtual (SQL)": [""], + "Data type": ["Tipo"], + "Datetime format": ["Formato Datetime"], "The pattern of timestamp format. For strings use ": [""], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "" - ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "" - ], - "The port number is invalid.": [""], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "Python datetime string pattern": [""], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": ["La query non può essere caricata"], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Person or group that has certified this metric": [""], + "Certified by": ["Modificato"], + "Certification details": [""], + "Details of the certification": [""], + "Is dimension": [""], + "Is filterable": ["Filtrabile"], + "Modified columns: %s": [""], + "Removed columns: %s": [""], + "New columns added: %s": [""], + "Metadata has been synced": [""], + "An error has occurred": [""], + "Column name [%s] is duplicated": [""], + "Metric name [%s] is duplicated": [""], + "Calculated column [%s] requires an expression": [""], + "Invalid currency code in saved metrics": [""], + "Basic": [""], + "Default URL": ["URL del Database"], + "Default URL to redirect to when accessing from the dataset list page": [ "" ], - "The query has a syntax error.": [""], - "The query returned no data": [""], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Autocomplete filters": [""], + "Whether to populate autocomplete filters options": [""], + "Autocomplete query predicate": [""], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Cache timeout": ["Cache Timeout"], + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The report has been created": [""], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Always filter main datetime column": [""], + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The rich tooltip shows a list of all series for that point in time": [ + "": [""], + "Click the lock to make changes.": [""], + "Click the lock to prevent further changes.": [""], + "virtual": [""], + "Dataset name": ["Database"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Physical": [""], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The schema was deleted or renamed in the database.": [""], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "D3 format": ["Formato D3"], + "Metric currency": [""], + "Select or type currency symbol": [""], + "Warning": [""], + "Optional warning about use of this metric": [""], + "Be careful.": [""], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Sync columns from source": [""], + "Calculated columns": ["Visualizza colonne"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "": [""], + "Settings": [""], + "The dataset has been saved": [""], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "Tabella creata. Come parte di questo processo di configurazione in due fasi, è necessario andare sul pulsante di modifica della nuova tabella per configurarla." - ], - "The table was deleted or renamed in the database.": [""], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Are you sure you want to save and apply changes?": [""], + "Confirm save": [""], + "OK": [""], + "Edit Dataset ": ["Mostra database"], + "Use legacy datasource editor": [""], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "DELETE": [""], + "delete": ["Cancella"], + "Type \"%s\" to confirm": [""], + "Click to edit": [""], + "You don't have the rights to alter this title.": [""], + "No databases match your search": [""], + "There are no databases available": [""], + "here": [""], + "Unexpected error": [""], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": ["Errore..."], + "See more": [""], + "See less": [""], + "Copy message": [""], + "Details": [""], + "Did you mean:": [""], + "Parameter error": ["Parametri"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": [""], + "Click to favorite/unfavorite": [""], + "Cell content": [""], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "OVERWRITE": [""], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["Sovrascrivi la slice %s"], + "Import": ["Importa"], + "Import %s": ["Importa"], + "Last Updated %s": [""], + "+ %s more": [""], + "%s Selected": ["Seleziona data finale"], + "Deselect all": ["Seleziona data finale"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "%s-%s of %s": [""], + "Type a value": [""], + "Select or type a value": [""], + "Last modified": ["Ultima Modifica"], + "Modified by": ["Modificato"], + "Created by": ["Creato il"], + "Created on": ["Creato il"], + "Menu actions trigger": [""], + "Select ...": [""], + "Reset": [""], + "Expand row": [""], + "Collapse row": [""], + "Click to cancel sorting": [""], + "List updated": [""], + "There was an error loading the tables": [""], + "See table schema": [""], + "Select table or type to search tables": [""], + "Force refresh table list": [""], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ "" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Can not move top level tab into nested tabs": [""], + "This chart has been moved to a different filter scope.": [""], + "There was an issue fetching the favorite status of this dashboard.": [ "" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "" - ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "" - ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [ - "Il tipo di visualizzazione da mostrare" + "There was an issue favoriting this dashboard.": [""], + "This dashboard is now published": [""], + "This dashboard is now hidden": [""], + "You do not have permissions to edit this dashboard.": [ + "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." ], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [""], - "The user/password combination is not valid (Incorrect password for user).": [ - "" + "This dashboard was saved successfully.": [""], + "Sorry, an unknown error occurred": [""], + "Sorry, there was an error saving this dashboard: %s": [""], + "You do not have permission to edit this dashboard": [ + "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." ], - "The username \"%(username)s\" does not exist.": [""], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "The width of the lines": [""], - "There are associated alerts or reports": [""], - "There are associated alerts or reports: %s,": [""], - "There are no components added to this tab": [""], - "There are no databases available": [""], - "There are no filters in this dashboard.": [""], - "There are unsaved changes.": [""], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "There is no chart definition associated with this component, could it have been deleted?": [ + "Could not fetch all saved charts": ["Non posso connettermi al server"], + "Sorry there was an error fetching saved charts: ": [""], + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "You have unsaved changes.": [""], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "There was an error fetching tables": [""], - "There was an error fetching the favorite status: %s": [""], - "There was an error fetching your recent activity:": [""], - "There was an error loading the dataset metadata": [""], - "There was an error loading the schemas": [""], - "There was an error loading the tables": [""], - "There was an error saving the favorite status: %s": [""], - "There was an error with your request": [""], - "There was an issue deleting %s: %s": [""], - "There was an issue deleting the selected %s: %s": [""], - "There was an issue deleting the selected annotations: %s": [""], - "There was an issue deleting the selected charts: %s": [""], - "There was an issue deleting the selected dashboards: ": [""], - "There was an issue deleting the selected datasets: %s": [""], - "There was an issue deleting the selected layers: %s": [""], - "There was an issue deleting the selected queries: %s": [""], - "There was an issue deleting the selected templates: %s": [""], - "There was an issue deleting: %s": [""], - "There was an issue duplicating the dataset.": [""], - "There was an issue duplicating the selected datasets: %s": [""], - "There was an issue favoriting this dashboard.": [""], - "There was an issue fetching reports attached to this dashboard.": [""], - "There was an issue fetching the favorite status of this dashboard.": [ + "Create a new chart": [""], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "There was an issue fetching your dashboards: %s": [""], - "There was an issue fetching your recent activity: %s": [""], - "There was an issue fetching your saved queries: %s": [""], - "There was an issue previewing the selected query %s": [""], - "There was an issue previewing the selected query. %s": [""], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Delete this container and save to remove this message.": [""], + "Refresh interval saved": [""], + "Refresh interval": [""], + "Refresh frequency": [""], + "Are you sure you want to proceed?": [""], + "Save for this session": [""], + "You must pick a name for the new dashboard": [""], + "Save dashboard": ["Salva e vai alla dashboard"], + "Overwrite Dashboard [%s]": [""], + "Save as:": [""], + "[dashboard name]": [""], + "also copy (duplicate) charts": [""], + "recent": [""], + "Create new chart": ["Creato il"], + "Filter your charts": ["Controlli del filtro"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "These are the tables this filter will be applied to.": [""], - "These filters apply to the values available in the dropdowns": [""], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Questi parametri sono generati dinamicamente al clic su salva o con il bottone di sovrascrittura nella vista di esplorazione. Questo oggetto JSON è esposto qui per referenza e per utenti esperti che vogliono modificare parametri specifici." - ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Questo oggetto JSON è generato in maniera dinamica al clic sul pulsante di salvataggio o sovrascrittura nella vista dashboard. Il JSON è esposto qui come riferimento e per gli utenti esperti che vogliono modificare parametri specifici." + "Added": [""], + "Viz type": ["Tipo"], + "Dataset": ["Database"], + "Superset chart": ["Esplora grafico"], + "Check out this chart in dashboard:": [ + "Rimuovi il grafico dalla dashboard" ], - "This action will permanently delete %s.": [""], - "This action will permanently delete the layer.": [""], - "This action will permanently delete the saved query.": [""], - "This action will permanently delete the template.": [""], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Layout elements": [""], + "Load a CSS template": [""], + "Live CSS editor": [""], + "Collapse tab content": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "This chart has been moved to a different filter scope.": [""], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Enable embedding": [""], + "Embed": [""], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Your dashboard is too large. Please reduce its size before saving it.": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ - "" + "Redo the action": [""], + "Discard": [""], + "An error occurred while fetching available CSS templates": [ + "Errore nel recupero dei metadati della tabella" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ - "" + "Superset dashboard": ["Importa dashboard"], + "Check out this dashboard: ": ["Guarda questa slice: %s"], + "Refresh dashboard": ["Rimuovi il grafico dalla dashboard"], + "Exit fullscreen": [""], + "Enter fullscreen": [""], + "Edit properties": [""], + "Edit CSS": [""], + "Download": [""], + "Download as Image": [""], + "Share": [""], + "Set filter mapping": [""], + "Set auto-refresh interval": [""], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Are you sure you intend to overwrite the following values?": [""], + "Apply": ["Applica"], + "A valid color scheme is required": [""], + "The dashboard has been saved": [""], + "Access": ["Nessun Accesso!"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Proprietari è una lista di utenti che può alterare la dashboard." ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Colors": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], + "Dashboard properties": ["Elenco Dashboard"], "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "" + "Basic information": [""], + "URL slug": ["Slug"], + "A readable URL for your dashboard": [ + "ottenere una URL leggibile per la tua dashboard" ], + "Certification": [""], + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": ["Metadati JSON"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ "" ], - "This dashboard is now hidden": [""], - "This dashboard is now published": [""], - "This dashboard is published. Click to make it a draft.": [""], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "This dashboard is published. Click to make it a draft.": [""], + "Draft": [""], + "Annotation layers are still loading.": [""], + "One ore more annotation layers failed loading.": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], - "This dashboard was saved successfully.": [""], - "This database is managed externally, and can't be edited in Superset": [ + "Data refreshed": [""], + "Cached %s": [""], + "Fetched %s": [""], + "Query %s: %s": [""], + "Force refresh": [""], + "View query": ["condividi query"], + "View as table": [""], + "Export to full .CSV": [""], + "Download as image": [""], + "Something went wrong.": [""], + "Search...": ["Cerca"], + "No filter is selected.": [""], + "Editing 1 filter:": [""], + "Batch editing %d filters:": [""], + "Configure filter scopes": [""], + "There are no filters in this dashboard.": [""], + "Expand all": [""], + "Collapse all": [""], + "This markdown component has an error.": [""], + "This markdown component has an error. Please revert your recent changes.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "Empty row": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "Delete dashboard tab?": ["Inserisci un nome per la dashboard"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "undo": [""], + "button (cmd + z) until you save your changes.": [""], + "CANCEL": [""], + "Divider": [""], + "Header": [""], + "Tabs": [""], + "background": [""], + "Preview": [""], + "Sorry, something went wrong. Try again later.": [""], + "Unknown value": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [""], - "This defines the level of the hierarchy": [""], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Questo campo agisce come una vista Superset, il che vuol dire che Superset eseguirà una query su questa stringa come sotto-query." + "Clear all": [""], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "All charts": ["Grafico a Proiettile"], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "L'oggetto JSON descrive la posizione dei vari widget nella dashboard. È generato automaticamente nel momento in cui se ne cambia la posizione e la dimensione usando la funzione di drag & drop nella vista della dashboard. " - ], - "This markdown component has an error.": [""], - "This markdown component has an error. Please revert your recent changes.": [ - "" - ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ - "" - ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "" - ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ - "" - ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Scope": [""], + "(Removed)": [""], + "Undo?": [""], + "Add filters and dividers": [""], + "Cyclic dependency detected": [""], + "No compatible columns found": [""], + "No compatible datasets found": [""], + "(deleted or invalid type)": [""], + "Add filter": ["Aggiungi filtro"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type does not support cross-filtering.": [""], - "This visualization type is not supported.": [""], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": [""], - "Time": ["Tempo"], - "Time Grain": [""], - "Time Granularity": [""], - "Time Lag": [""], - "Time Range": [""], - "Time Series - Bar Chart": ["Serie Temporali - Grafico Barre"], - "Time Series - Line Chart": ["Serie Temporali - Grafico Lineare"], - "Time Series - Nightingale Rose Chart": [""], - "Time Series - Paired t-test": [""], - "Time Series - Percent Change": [ - "Serie Temporali - Cambiamento Percentuale" - ], - "Time Series - Period Pivot": [""], - "Time Series - Stacked": ["Serie Temporali - Stacked"], - "Time Table View": [""], + "Scoping": [""], + "Numerical range": [""], + "Time range": [""], "Time column": ["Colonna del Tempo"], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], + "Time grain": [""], + "Group by": ["Raggruppa per"], "Time column to apply dependent temporal filter to": [""], "Time column to apply time range to": [""], - "Time comparison": ["Colonna del Tempo"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Filter name": ["Valore del filtro"], + "Name is required": [""], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "Time grain": [""], - "Time grain filter plugin": [""], - "Time grain missing": [""], - "Time granularity": [""], - "Time in seconds": [""], - "Time lag": [""], - "Time range": [""], - "Time related form attributes": ["Attributi relativi al tempo"], - "Time series columns": ["Colonna del Tempo"], - "Time shift": ["Offset temporale"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Sort ascending": [""], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "Sort metric": ["Mostra metrica"], + "Single value type": [""], + "Exact": [""], + "Filter has default value": [""], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": [""], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ "" ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Default value must be set when \"Filter value is required\" is checked": [ "" ], - "Time-series Period Pivot": [""], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Apply to all panels": [""], + "Apply to specific panels": [""], + "Only selected panels will be affected by this filter": [""], + "All panels with this column will be affected by this filter": [""], + "All panels": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Keep editing": [""], + "Yes, cancel": [""], + "There are unsaved changes.": [""], + "Are you sure you want to cancel?": [""], + "Error loading chart datasources. Filters may not work correctly.": [""], + "Transparent": [""], + "All filters": ["Filtri"], + "Click to edit %s.": [""], + "Click to edit chart.": [""], + "Medium": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "Time-series Table": ["Serie Temporali - Stacked"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Equal to (=)": [""], + "Not equal to (≠)": [""], + "Less than (<)": [""], + "Less or equal (<=)": [""], + "Greater than (>)": [""], + "Greater or equal (>=)": [""], + "Like": [""], + "Like (case insensitive)": [""], + "Is not null": [""], + "Is null": [""], + "use latest_partition template": [""], + "Is true": [""], + "Time granularity": [""], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "Timeout error": [""], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [ - "Timezone offset (in ore) per questa sorgente dati" + "One or many metrics to display": ["Una o più metriche da mostrare"], + "Fixed color": [""], + "Right axis metric": ["Metrica asse destro"], + "Choose a metric for right axis": [ + "Seleziona una metrica per l'asse destro" ], - "Title": ["Titolo"], - "Title or Slug": [""], - "To filter on a metric, use Custom SQL tab.": [""], - "To get a readable URL for your dashboard": [ - "ottenere una URL leggibile per la tua dashboard" + "Linear color scheme": [""], + "Color metric": ["Seleziona la metrica"], + "One or many controls to pivot as columns": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "" ], - "Tooltip": [""], - "Top": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": [""], - "Totals": [""], - "Track job": [""], - "Transformable": [""], - "Transparent": [""], - "Transpose pivot": [""], - "Tree layout": [""], - "Treemap": ["Treemap"], - "Trend": [""], - "Triangle": [""], - "Trigger Alert If...": [""], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": [""], - "Type": ["Tipo"], - "Type \"%s\" to confirm": [""], - "Type a value": [""], - "Type a value here": [""], - "Type is required": [""], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["Seleziona %s"], - "URL": [""], - "URL parameters": ["Parametri"], - "URL slug": ["Slug"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ "" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [""], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Metric assigned to the [X] axis": [""], + "Metric assigned to the [Y] axis": [""], + "Bubble size": ["Grandezza della bolla"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "Color scheme": [""], + "Chart [%s] has been overwritten": [""], + "Dashboard [%s] just got created and chart [%s] was added to it": [""], + "Chart [%s] was added to dashboard [%s]": [""], + "Use this section if you want a query that aggregates": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], + "Customize": [""], + "Generating link, please wait..": [""], + "Save (Overwrite)": ["Query salvate"], + "Chart name": ["Grafici"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["Aggiungi ad una nuova dashboard"], + "Save & go to dashboard": ["Salva e vai alla dashboard"], + "Save chart": ["Grafico a torta"], + "Collapse data panel": [""], + "Expand data panel": [""], + "No samples were returned for this dataset": [""], + "Search Metrics & Columns": [""], + " to edit or add columns and metrics.": [""], + "Showing %s of %s": [""], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Add the name of the chart": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "Undefined": [""], - "Undefined window for rolling operation": [""], - "Undo?": [""], - "Unexpected error": [""], - "Unexpected error occurred, please check your logs for details": [""], - "Unexpected error: ": [""], - "Unexpected time range: %s": [""], - "Unknown": [""], - "Unknown MySQL server host \"%(hostname)s\".": [""], - "Unknown Presto Error": [""], - "Unknown Status": [""], - "Unknown column used in orderby: %(col)s": [""], - "Unknown error": [""], - "Unknown input format": [""], - "Unknown value": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [""], - "Unsafe template value for key %(key)s: %(value_type)s": [""], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [""], - "Unsupported return value for method %(name)s": [""], - "Unsupported template value for key %(key)s": [""], - "Unsupported time grain: %(time_grain)s": [""], - "Untitled query": ["Query senza nome"], - "Update": [""], - "Updating chart was stopped": [ - "L'aggiornamento del grafico è stato fermato" - ], - "Upload": [""], - "Upload CSV": [""], - "Upload Credentials": [""], - "Upload Enabled": [""], - "Upload Excel file": [""], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file to database": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" - ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [""], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "" - ], - "Use the edit button to change this field": [""], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [""], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "" - ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "" + "Controls labeled ": [""], + "Control labeled ": [""], + "Open Datasource tab": ["Sorgente Dati"], + "You do not have permission to edit this chart": [ + "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." ], - "User": ["Utente"], - "User Roles": ["Ruoli Utente"], - "User doesn't have the proper permissions.": [""], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [""], - "User query": ["condividi query"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "" + "Person or group that has certified this chart.": [""], + "Configuration": [""], + "A list of users who can alter the chart. Searchable by name or username.": [ + "Proprietari è una lista di utenti che può alterare la dashboard." ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Limit reached": [""], + "Invalid lat/long configuration.": [""], + "Reverse lat/long ": [""], + "Longitude & Latitude columns": [""], + "Delimited long & lat single column": [""], + "Multiple formats accepted, look the geopy.points Python library for more details": [ "" ], - "Value": [""], - "Value Domain": [""], - "Value bounds": [""], - "Values are dependent on other filters": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ + "Geohash": [""], + "textarea": ["textarea"], + "in modal": ["in modale"], + "Sorry, An error occurred": [""], + "Open in SQL Lab": ["Esponi in SQL Lab"], + "Failed to verify select options: %s": [""], + "Annotation layer": ["Azione"], + "Select the Annotation Layer you would like to use.": [""], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "Vehicle Types": [""], - "Verbose Name": ["Nome Completo"], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View": [""], - "View All »": [""], - "View as table": [""], - "View in SQL Lab": ["Esponi in SQL Lab"], - "View keys & indexes (%s)": [""], - "View query": ["condividi query"], - "Viewed": [""], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset": ["Mostra database"], - "Virtual dataset query cannot be empty": [""], - "Virtual dataset query cannot consist of multiple statements": [""], - "Virtual dataset query must be read-only": [""], - "Visual Tweaks": [""], - "Visualization Type": ["Tipo di Visualizzazione"], - "Visualization type": ["Tipo di Visualizzazione"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "This section allows you to configure how to use the slice\n to generate annotations.": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "This column must contain date/time information.": [""], + "Pick a title for you annotation.": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Override time range": [""], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Override time grain": [""], + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Display configuration": [""], + "Configure your how you overlay is displayed here.": [""], + "Style": [""], + "Solid": [""], + "Long dashed": [""], + "Color": [""], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hide Line": [""], + "Hides the Line for the time series": [""], + "Layer configuration": ["Controlli del filtro"], + "Configure the basics of your Annotation Layer.": [""], + "Mandatory": [""], + "Hide layer": [""], + "Whether to always show the annotation label": [""], + "Annotation layer type": ["La tua query non può essere salvata"], + "Choose the annotation layer type": [""], + "Choose the source of your annotations": [""], + "Remove": [""], + "Edit annotation layer": [""], + "Add annotation layer": ["Azione"], + "Remove item": [""], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "dashboard": [""], + "Select scheme": [""], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": [""], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": [""], + "Right value": [""], + "Target value": [""], + "Color: ": [""], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The width of the Isoline in pixels": [""], + "The color of the isoline": [""], + "Isoband": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Mostra database"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Viz is missing a datasource": [ - "Datasource mancante per la visualizzazione" - ], - "Viz type": ["Tipo"], - "WED": [""], - "Want to add a new database?": [""], - "Warning": [""], - "Warning Message": [""], - "Warning!": [""], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "View in SQL Lab": ["Esponi in SQL Lab"], + "Query preview": [""], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [""], + "RANGE TYPE": [""], + "Actual time range": [""], + "APPLY": [""], + "Edit time range": [""], + "Configure Advanced Time Range ": [""], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "End date excluded from time range": [""], + "Configure Time Range: Previous...": [""], + "Configure Time Range: Last...": [""], + "Configure custom time range": [""], + "Relative quantity": [""], + "Relative period": [""], + "Anchor to": [""], + "NOW": [""], + "Date/Time": ["Tempo"], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": [""], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "Was unable to check your query": [""], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": [""], + "Custom": [""], + "last day": [""], + "last quarter": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Seconds %s": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Now": [""], + "Midnight": [""], + "Saved": ["Salva come"], + "%s column(s)": ["Visualizza colonne"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Click to edit label": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ "" ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "%s option(s)": [""], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ "" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "To filter on a metric, use Custom SQL tab.": [""], + "%s operator(s)": ["Seleziona operatore"], + "Comparator option": [""], + "Type a value here": [""], + "Filter value (case sensitive)": [""], + "choose WHERE or HAVING...": [""], + "Filters by columns": ["Controlli del filtro"], + "Filters by metrics": ["Lista Metriche"], + "My metric": ["Metrica"], + "Add metric": ["Aggiungi metrica"], + "Select aggregate options": [""], + "%s aggregates(s)": [""], + "%s saved metric(s)": [""], + "Saved metric": ["Seleziona una metrica"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": ["Colonna"], + "aggregate": [""], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Time series columns": ["Colonna del Tempo"], + "Sparkline": [""], + "Period average": [""], + "The column header label": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["Larghezza"], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Time lag": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Time Lag": [""], + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "Web": [""], - "Wednesday": [""], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "What should be shown on the label?": [""], - "What should happen if the table already exists": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "When a secondary metric is provided, a linear color scale is used.": [ + "Currently rendered: %s": [""], + "Recommended tags": [""], + "Examples": [""], + "This visualization type is not supported.": [""], + "Select a visualization type": ["Seleziona un tipo di visualizzazione"], + "No results found": ["Nessun record trovato"], + "New chart": ["Grafico a torta"], + "Edit chart properties": [""], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["Esponi in SQL Lab"], + "Code": [""], + "Markup type": [""], + "Pick your favorite markup language": [""], + "Put your code here": [""], + "URL parameters": ["Parametri"], + "Extra parameters for use in jinja templated queries": [""], + "Annotations and layers": ["Azione"], + "Annotation layers": ["Azione"], + "My beautiful colors": [""], + "< (Smaller than)": [""], + "> (Larger than)": [""], + "<= (Smaller or equal)": [""], + ">= (Larger or equal)": [""], + "== (Is equal)": [""], + "!= (Is not equal)": [""], + "Not null": [""], + "60 days": [""], + "90 days": [""], + "Add notification method": [""], + "Add delivery method": [""], + "Add": [""], + "Report name": ["Nome Completo"], + "Alert name": ["Nome Completo"], + "Active": ["Azione"], + "Alert condition": ["Testa la Connessione"], + "SQL Query": [""], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": [""], + "Report schedule": ["Importa"], + "Alert condition schedule": ["Testa la Connessione"], + "Timezone": [""], + "Schedule settings": ["Mostra query salvate"], + "Log retention": [""], + "Working timeout": [""], + "Time in seconds": [""], + "seconds": [""], + "Grace period": [""], + "Message content": [""], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Ignore cache when generating report": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": [""], + "report": ["Importa"], + "CRON expression": ["Espressione"], + "Report sent": ["Importa"], + "Alert triggered, notification sent": [""], + "Report sending": ["Importa"], + "Alert running": ["Testa la Connessione"], + "Report failed": ["Nome Completo"], + "Alert failed": ["Nome Completo"], + "Nothing triggered": [""], + "Alert Triggered, In Grace Period": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [""], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": [""], + "Edit annotation layer properties": ["Template CSS"], + "Annotation layer name": ["La tua query non può essere salvata"], + "Description (this can be seen in the list)": [""], + "annotation": [""], + "Edit annotation": ["Azione"], + "Add annotation": ["Azione"], + "date": [""], + "Additional information": [""], + "Please confirm": [""], + "Are you sure you want to delete": [""], + "css_template": [""], + "Edit CSS template properties": ["Template CSS"], + "Add CSS template": ["Template CSS"], + "css": [""], + "published": [""], + "draft": [""], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Se si abilita l'opzione CREATE TABLE AS in SQL Lab, verrà forzata la creazione della tabella con questo schema" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "" ], - "When checked, the map will zoom to your data after each query": [""], + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "" + ], + "Allow this database to be explored": [""], "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["Cache Timeout"], + "Enter duration in seconds": [""], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "When using 'Group By' you are limited to use a single metric": [""], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ + "Asynchronous query execution": [""], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Add extra connection information.": [""], + "Secure extra": ["Sicurezza"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Se questa colonna è esposta nella sezione `Filtri` della vista esplorazione." + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "" ], - "Whether to align background charts with both positive and negative values at 0": [ + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "" ], - "Whether to align positive and negative values in cell bar chart at 0": [ + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "Allow file uploads to database": [""], + "Schemas allowed for File upload": [""], + "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a client-side search box": [""], - "Whether to include a time filter": [""], - "Whether to include the percentage in the tooltip": [""], - "Whether to include the time granularity as defined in the time section": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Enter Primary Credentials": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Se rendere disponibile questa colonna come opzione [Time Granularity], la colonna deve essere di tipo DATETIME o simile" + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "Private Key & Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "for more information on how to structure your URI.": [""], + "Test connection": ["Testa la Connessione"], + "database": ["Database"], + "Please enter a SQLAlchemy URI to test": [ + "Inserisci un nome per la slice" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [""], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Usato per popolare la finestra a cascata dei filtri dall'elenco dei valori distinti prelevati dal backend al volo" + "e.g. world_population": [""], + "Sorry there was an error fetching database information: %s": [""], + "Or choose from a list of other databases we support:": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort ascending or descending on the base Axis.": [""], - "Whether to sort descending or ascending": [""], - "Whether to sort descending or ascending if a series limit is present": [ + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "Whether to sort results by the selected metric in descending order.": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "Width": ["Larghezza"], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Working": [""], - "Working timeout": [""], - "World Map": ["Mappa del Mondo"], - "Write a description for your query": [""], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [""], - "Write dataframe index as a column.": [""], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": [""], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort By": [""], - "X-axis": [""], - "XScale Interval": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": [""], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": [""], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort By": [""], - "Y-axis": [""], - "Y-axis bounds": [""], - "YScale Interval": [""], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Yes": [""], - "Yes, cancel": [""], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "QUERY DATA IN SQL LAB": [""], + "Edit database": ["Mostra database"], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "Add additional custom parameters": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Upload Credentials": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ "" ], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Enter a name for this sheet": [""], + "Paste the shareable Google Sheet URL here": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "Duplicate": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Loading": [""], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "You do not have permission to edit this chart": [ - "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." - ], - "You do not have permission to edit this dashboard": [ - "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + "Unable to load columns for the selected table. Please select a different table.": [ + "" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + "The API response from %s does not match the IDatabaseTable interface.": [ + "" ], - "You do not have permissions to edit this dashboard.": [ - "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + "Create chart with dataset": [""], + "chart": [""], + "No charts": ["Grafici"], + "This dataset is not used to power any charts.": [""], + "Create dataset and create chart": [""], + "Select a database table and create dataset": [""], + "There was an error loading the dataset metadata": [""], + "Unknown": [""], + "Edited": ["Modifica"], + "Created": ["Creato il"], + "Viewed": [""], + "Favorite": [""], + "Mine": [""], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [ + "Errore nel creare il datasource" ], - "You don't have any favorites yet!": [""], - "You don't have the rights to alter %(resource)s": [""], - "You don't have the rights to alter this title.": [""], - "You have no permission to approve this request": [""], - "You have removed this filter.": [""], - "You have unsaved changes.": [""], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "recents": [""], + "No recents yet": [""], + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "%(other)s saved queries will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Recently created charts, dashboards, and saved queries will appear here": [ "" ], - "You must pick a name for the new dashboard": [""], - "You must run the query successfully first": [""], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Recently edited charts, dashboards, and saved queries will appear here": [ "" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "SQL query": ["Query vuota?"], + "You don't have any favorites yet!": [""], + "See all %(tableName)s": [""], + "Connect Google Sheet": [""], + "Upload columnar file to database": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ "" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ + "Info": [""], + "Logout": ["Logout"], + "About": [""], + "Powered by Apache Superset": [""], + "SHA": [""], + "Build": [""], + "Login": ["Login"], + "query": ["condividi query"], + "Deleted: %s": ["Cancella"], + "There was an issue deleting %s: %s": [""], + "This action will permanently delete the saved query.": [""], + "Delete Query?": ["Cancella"], + "Ran %s": [""], + "Saved queries": ["Query salvate"], + "Next": [""], + "Tab name": ["Nome"], + "User query": ["condividi query"], + "Executed query": ["query condivisa"], + "Query name": ["Ricerca Query"], + "SQL Copied!": [""], + "Sorry, your browser does not support copying.": [""], + "There was an issue fetching reports attached to this dashboard.": [""], + "The report has been created": [""], + "We were unable to active or deactivate this report.": [""], + "Weekly Report for %s": [""], + "Edit email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Email reports active": [""], + "Schedule email report": [""], + "This action will permanently delete %s.": [""], + "rowlevelsecurity": [""], + "Rule added": [""], + "The name of the rule must be unique": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], - "Your query could not be saved": ["La tua query non può essere salvata"], - "Your query could not be scheduled": [ - "La tua query non può essere salvata" - ], - "Your query could not be updated": [ - "La tua query non può essere salvata" - ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "These are the datasets this filter will be applied to.": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "" ], - "Your query was saved": ["La tua query è stata salvata"], - "Your query was updated": ["La tua query è stata salvata"], - "Zoom": [""], - "Zoom level of the map": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [""], - "[Longitude] and [Latitude] must be set": [""], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] Accesso al datasource $(name) concesso" + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "" ], - "[asc]": [""], - "[copy]": [""], - "[dashboard name]": [""], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "Clause": [""], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ "" ], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [""], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ "" ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": [""], - "alert": [""], - "alerts": [""], - "all": [""], - "also copy (duplicate) charts": [""], - "ancestor": [""], - "and": [""], - "annotation": [""], - "annotation_layer": [""], - "asfreq": [""], - "at": [""], - "auto (Smooth)": [""], - "background": [""], - "basis": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": [""], - "boolean type icon": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "chart": [""], - "choose WHERE or HAVING...": [""], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["Colonna"], - "connecting to %(dbModelName)s.": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "dashboard": [""], - "database": ["Database"], - "dataset": [""], - "date": [""], - "day": ["giorno"], - "day of the month": [""], - "day of the week": [""], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deckGL": [""], - "delete": ["Cancella"], - "descendant": [""], - "description": ["descrizione"], - "dialect+driver://username:password@host:port/database": [""], - "draft": [""], - "dttm": ["dttm"], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "error dark": [""], - "error_message": [""], - "every": [""], - "every day of the month": ["Codice a 3 lettere della nazione"], - "every day of the week": [""], - "every hour": [""], - "every month": ["mese"], - "expand": [""], - "fetching": [""], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Add description of your tag": [""], + "Chosen non-numeric column": [""], + "User must select a value before applying the filter": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [""], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ "" ], - "flat": [""], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "here": [""], - "hour": ["ora"], - "id": [""], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "Time column filter plugin": [""], + "Time grain filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], + "reports": ["Importa"], + "alerts": [""], + "There was an issue deleting the selected %s: %s": [""], + "Last run": ["Ultima Modifica"], + "Execution log": [""], + "Bulk select": ["Seleziona %s"], + "No %s yet": [""], + "Owner": ["Proprietario"], + "All": [""], + "Status": [""], + "An error occurred while fetching dataset datasource values: %s": [ + "Errore nel creare il datasource" + ], + "Alerts & reports": ["Importa"], + "Alerts": [""], + "Reports": ["Importa"], + "Delete %s?": ["Cancella"], + "Are you sure you want to delete the selected %s?": [""], + "There was an issue deleting the selected layers: %s": [""], + "Edit template": ["Template CSS"], + "Delete template": [""], + "No annotation layers yet": [""], + "This action will permanently delete the layer.": [""], + "Delete Layer?": ["Cancella"], + "Are you sure you want to delete the selected layers?": [""], + "There was an issue deleting the selected annotations: %s": [""], + "Delete annotation": ["Azione"], + "Annotation": ["Azione"], + "No annotation yet": [""], + "Back to all": [""], + "Are you sure you want to delete %s?": [""], + "Delete Annotation?": [""], + "Are you sure you want to delete the selected annotations?": [""], + "Failed to load chart data": [""], + "Choose a dataset": ["Seleziona una destinazione"], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "in": ["Min"], - "in modal": ["in modale"], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": [""], - "json isn't valid": ["json non è valido"], - "key a-z": [""], - "key z-a": [""], - "last day": [""], - "last quarter": [""], - "latest partition:": [""], - "less than {min} {name}": [""], - "log": [""], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "mean": [""], - "median": [""], - "minute": ["minuto"], - "month": ["mese"], - "more than {max} {name}": [""], - "must have a value": [""], - "no SQL validator is configured": [""], - "no SQL validator is configured for {}": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "offline": [""], - "on": [""], - "or use existing ones from the panel on the right": [""], - "overall": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "There was an issue deleting the selected charts: %s": [""], + "An error occurred while fetching dashboards": [ + "Errore nel creare il datasource" + ], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "Errore nel creare il datasource" + ], + "Alphabetical": [""], + "Are you sure you want to delete the selected charts?": [""], + "CSS templates": ["Template CSS"], + "There was an issue deleting the selected templates: %s": [""], + "CSS template": ["Template CSS"], + "This action will permanently delete the template.": [""], + "Delete Template?": ["Template CSS"], + "Are you sure you want to delete the selected templates?": [""], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": [""], - "query": ["condividi query"], - "random": [""], - "reboot": [""], - "recent": [""], - "recents": [""], - "report": ["Importa"], - "reports": ["Importa"], - "restore zoom": [""], - "rowlevelsecurity": [""], - "search by tags": [""], - "seconds": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "stack": [""], - "staggered": [""], - "std": [""], - "step-before": [""], - "stopped": [""], - "string type icon": [""], - "sum": [""], - "syntax.": [""], + "There was an issue deleting the selected dashboards: ": [""], + "An error occurred while fetching dashboard owner values: %s": [ + "Errore nel creare il datasource" + ], + "Are you sure you want to delete the selected dashboards?": [""], + "An error occurred while fetching database related data: %s": [ + "Errore nel recupero dei metadati della tabella" + ], + "Upload CSV": [""], + "Upload Excel file": [""], + "AQE": [""], + "Allow data manipulation language": [""], + "DML": [""], + "CSV upload": [""], + "Delete database": ["Database"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "" + ], + "Delete Database?": ["Mostra database"], + "An error occurred while fetching dataset related data": [ + "Errore nel recupero dei metadati della tabella" + ], + "An error occurred while fetching dataset related data: %s": [ + "Errore nel recupero dei metadati della tabella" + ], + "Physical dataset": ["Seleziona una destinazione"], + "Virtual dataset": ["Mostra database"], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [ + "Errore nel creare il datasource" + ], + "An error occurred while fetching schema values: %s": [ + "Errore nel rendering della visualizzazione: %s" + ], + "An error occurred while fetching dataset owner values: %s": [ + "Errore nel creare il datasource" + ], + "There was an issue deleting the selected datasets: %s": [""], + "There was an issue duplicating the dataset.": [""], + "There was an issue duplicating the selected datasets: %s": [""], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "" + ], + "Delete Dataset?": [""], + "Are you sure you want to delete the selected datasets?": [""], + "0 Selected": ["Seleziona data finale"], + "%s Selected (Virtual)": [""], + "%s Selected (Physical)": [""], + "%s Selected (%s Physical, %s Virtual)": [""], + "log": [""], + "Execution ID": [""], + "Scheduled at (UTC)": [""], + "Start at (UTC)": [""], + "Error message": [""], + "There was an issue fetching your recent activity: %s": [""], + "There was an issue fetching your dashboards: %s": [""], + "There was an issue fetching your saved queries: %s": [""], + "Thumbnails": [""], + "Recents": [""], + "There was an issue previewing the selected query. %s": [""], + "TABLES": [""], + "Open query in SQL Lab": ["Esponi in SQL Lab"], + "An error occurred while fetching database values: %s": [ + "Errore nel creare il datasource" + ], + "Search by query text": [""], + "Are you sure you want to delete the selected rules?": [""], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "There was an issue previewing the selected query %s": [""], + "Link Copied!": [""], + "There was an issue deleting the selected queries: %s": [""], + "Edit query": ["Query vuota?"], + "Copy query URL": ["Query vuota?"], + "Delete query": ["Cancella"], + "Are you sure you want to delete the selected queries?": [""], "tag": [""], - "temporal type icon": [""], - "textarea": ["textarea"], - "to": [""], - "top": [""], - "undo": [""], - "unknown type icon": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Are you sure you want to delete the selected tags?": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "use latest_partition template": [""], - "var": [""], - "variance": [""], - "virtual": [""], - "was created": ["è stata creata"], - "week": ["settimana"], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["anno"], - "zoom area": [""] + "Invalid input": [""], + "Unexpected error: ": [""], + "(no description, click to see stack trace)": [""], + "Sorry, an unknown error occurred.": [""], + "Sorry, there was an error saving this %s: %s": [""], + "Issue 1000 - The dataset is too large to query.": [""], + "Issue 1001 - The database is under an unusual load.": [""], + "Please re-export your file and try importing again": [""], + "There was an error fetching the favorite status: %s": [""], + "There was an error saving the favorite status: %s": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [""], + "There was an issue deleting: %s": [""], + "URL": [""], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "" + ], + "Time-series Table": ["Serie Temporali - Stacked"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/it/LC_MESSAGES/messages.po b/superset/translations/it/LC_MESSAGES/messages.po index 816904b50ccef..07a6e2a5e4dfd 100644 --- a/superset/translations/it/LC_MESSAGES/messages.po +++ b/superset/translations/it/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2018-02-11 22:26+0200\n" "Last-Translator: Raffaele Spangaro \n" "Language: it\n" @@ -28,20001 +28,20035 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" +#: superset/errors.py:101 +#, fuzzy +msgid "The datasource is too large to query." +msgstr "Sorgente Dati" -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." msgstr "" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "Salva e vai alla dashboard" - -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -#, fuzzy -msgid " a new one" -msgstr "Cambiato il" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -#, fuzzy -msgid " to add calculated columns" -msgstr "Visualizza colonne" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#: superset/errors.py:112 #, fuzzy -msgid " to add metrics" -msgstr "Aggiungi metrica" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." -msgstr "" +msgid "The port is closed." +msgstr "Nome Completo" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format +#: superset/errors.py:127 msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "Errore..." +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "Porta Broker" +#: superset/errors.py:137 +#, fuzzy +msgid "The object does not exist in the given database." +msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:138 +msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" -msgstr "Seleziona data finale" +#: superset/errors.py:141 +msgid "" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" +#: superset/errors.py:145 +msgid "The port number is invalid." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 -#, python-format -msgid "%s Selected (Physical)" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" +#: superset/errors.py:147 +msgid "The database was deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "Visualizza colonne" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "Seleziona operatore" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "Seleziona operatore" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#: superset/forms.py:72 #, python-format -msgid "%s option(s)" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "Errore..." - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#: superset/jinja_context.py:344 #, python-format -msgid "%s saved metric(s)" +msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "%s - senza nome" - -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/jinja_context.py:355 #, python-format -msgid "%s%s" +msgid "Unsupported return value for method %(name)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/jinja_context.py:371 #, python-format -msgid "%s-%s of %s" +msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" +#: superset/jinja_context.py:382 +#, python-format +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/sql_lab.py:302 +#, python-format +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format +#: superset/sql_lab.py:457 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset/reports/notifications/slack.py:82 +#: superset/sql_lab.py:488 #, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#: superset/sql_lab.py:510 #, python-format -msgid "+ %s more" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Datasource mancante per la visualizzazione" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/viz.py:237 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset/views/database/forms.py:164 -msgid "." +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "La data di inizio non può essere dopo la data di fine" + +#: superset/viz.py:562 +msgid "Cached value not found" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "Seleziona data finale" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" +#: superset/viz.py:706 +msgid "Time Table View" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "giorno" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Seleziona almeno una metrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "ora" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Calendario di Intensità" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Grafico a Bolle" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Seleziona metriche differenti per gli assi destro e sinistro" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Seleziona una metrica per x, y e grandezza" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Grafico a Proiettile" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Seleziona una metrica da visualizzare" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "settimana" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Serie Temporali - Grafico Lineare" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" -msgstr "" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Serie Temporali - Grafico Barre" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "anno" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Serie Temporali - Cambiamento Percentuale" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Serie Temporali - Stacked" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Istogramma" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Devi specificare una colonna numerica" + +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Distribuzione - Grafico Barre" + +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset/db_engine_specs/base.py:102 -#, fuzzy -msgid "10 minute" -msgstr "10 minuti" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Seleziona almeno un campo per [Series]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "settimana" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Seleziona esattamente 2 colonne come [Sorgente / Destinazione]" + +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -#: superset/db_engine_specs/base.py:103 -#, fuzzy -msgid "15 minute" -msgstr "minuto" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Disposizione a Forza Diretta" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "settimana" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Mappa della Nazione" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Mappa del Mondo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Coordinate Parallele" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Mappa di Intensità" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Grafici d'orizzonte" + +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" + +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -#, fuzzy -msgid "2 years" -msgstr "anno" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "giorno" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -#, fuzzy -msgid "3 letter code of the country" -msgstr "Codice a 3 lettere della nazione" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -#, fuzzy -msgid "3 years" -msgstr "anno" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/viz.py:2271 #, fuzzy -msgid "30 minute" -msgstr "10 minuti" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "10 minuti" +msgid "Deck.gl - Heatmap" +msgstr "Grafico a Proiettile" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" -msgstr "" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Grafico a Proiettile" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/viz.py:2369 +msgid "Event flow" msgstr "" -#: superset/db_engine_specs/base.py:101 -#, fuzzy -msgid "5 minute" -msgstr "minuto" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" msgstr "" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" +#: superset/viz.py:2511 +msgid "Partition Diagram" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 +#: superset/viz.py:2676 #, fuzzy -msgid "52 weeks" -msgstr "settimana" +msgid "Please choose at least one groupby" +msgstr "Seleziona almeno una metrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" + +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -#, fuzzy -msgid "6 hour" -msgstr "ora" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +#, fuzzy +msgid "Is certified" +msgstr "Modificato" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 #, fuzzy -msgid "7 days" -msgstr "giorno" +msgid "Has created by" +msgstr "è stata creata" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#, fuzzy +msgid "Created by me" +msgstr "Creato il" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "Colonna del Tempo" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "Seleziona una metrica" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/charts/schemas.py:1295 #, fuzzy -msgid "" -msgstr "Grafici" +msgid "orderby column must be populated" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 +#: superset/charts/data/api.py:369 #, fuzzy -msgid "A Big Number" -msgstr "Numero Grande" +msgid "Empty query result" +msgstr "Query vuota?" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "" +#: superset/commands/exceptions.py:119 +#, fuzzy +msgid "Some roles do not exist" +msgstr "Elenco Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "" +#: superset/commands/exceptions.py:135 +#, fuzzy +msgid "Datasource does not exist" +msgstr "Sorgente dati e tipo di grafico" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +#: superset/commands/exceptions.py:142 +#, fuzzy +msgid "Query does not exist" +msgstr "Sorgente dati e tipo di grafico" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "La tua query non può essere salvata" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "La tua query non può essere salvata" + +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "La tua query non può essere salvata" + +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." msgstr "" -#: 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." +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "Proprietari è una lista di utenti che può alterare la dashboard." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "La data di inizio non può essere dopo la data di fine" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: 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" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." msgstr "" -#: superset/reports/commands/exceptions.py:186 +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 #, python-format -msgid "A report named \"%(name)s\" already exists" +msgid "There are associated alerts or reports: %(report_names)s" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Elenco Dashboard" + +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset/reports/commands/exceptions.py:228 -#, fuzzy -msgid "A timeout occurred while executing the query." -msgstr "Errore nel creare il datasource" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "" -#: superset/reports/commands/exceptions.py:238 -#, fuzzy -msgid "A timeout occurred while generating a csv." -msgstr "Errore nel recupero dei metadati della tabella" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "La tua query non può essere salvata" -#: superset/reports/commands/exceptions.py:243 -#, fuzzy -msgid "A timeout occurred while generating a dataframe." -msgstr "Errore nel creare il datasource" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "La tua query non può essere salvata" + +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "La query non può essere caricata" + +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "" -#: superset/reports/commands/exceptions.py:233 +#: superset/commands/chart/exceptions.py:131 #, fuzzy -msgid "A timeout occurred while taking a screenshot." -msgstr "Errore nel recupero dei metadati della tabella" +msgid "You don't have access to this chart." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" +#: superset/commands/chart/exceptions.py:151 +msgid "Changing one or more of these dashboards is forbidden" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "Azione" + +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "La query non può essere caricata" + +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "Template CSS" + +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 +#: superset/commands/dashboard/exceptions.py:54 #, fuzzy -msgid "AXIS TITLE POSITION" -msgstr "Testa la Connessione" +msgid "Dashboards could not be created." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "La tua query non può essere salvata" -#: 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!" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "La tua query non può essere salvata" -#: superset/initialization/__init__.py:425 -msgid "Access requests" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" -msgstr "" +#: superset/commands/dashboard/exceptions.py:78 +#, fuzzy +msgid "You don't have access to this dashboard." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "" +#: superset/commands/dashboard/embedded/exceptions.py:34 +#, fuzzy +msgid "You don't have access to this embedded dashboard config." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Azione" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Azione" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Azione" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -#, fuzzy -msgid "Actual Values" -msgstr "Valore del filtro" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -#, fuzzy -msgid "Actual value" -msgstr "Valore del filtro" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -#, fuzzy -msgid "Actual values" -msgstr "Valore del filtro" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "La tua query non può essere salvata" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -#, fuzzy -msgid "Adaptive formatting" -msgstr "Formato Datetime" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -#, fuzzy -msgid "Add Alert" -msgstr "Aggiungi grafico" - -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Template CSS" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "Template CSS" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Aggiungi grafico" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Aggiungi colonna" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Non posso connettermi al server" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Aggiungi Database" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "" -#: superset/views/log/__init__.py:23 -msgid "Add Log" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Aggiungi metrica" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -#, fuzzy -msgid "Add Report" -msgstr "Importa" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Add Rule" -msgstr "Formato Datetime" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Aggiungi query salvata" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Non posso connettermi al server" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Aggiungi colonna" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 +#: superset/commands/database/validate.py:124 #, fuzzy -msgid "Add a dataset" -msgstr "Aggiungi Database" +msgid "Database is offline." +msgstr "Database" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -#, fuzzy -msgid "Add a new tab" -msgstr "Query in un nuovo tab" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/validate_sql.py:100 +#, python-format +msgid "no SQL validator is configured for %(engine)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 +#: superset/commands/database/ssh_tunnel/exceptions.py:29 #, fuzzy -msgid "Add an annotation layer" -msgstr "Azione" +msgid "SSH Tunnel could not be deleted." +msgstr "La query non può essere caricata" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#: superset/commands/database/ssh_tunnel/exceptions.py:34 #, fuzzy -msgid "Add an item" -msgstr "Aggiungi filtro" +msgid "SSH Tunnel not found." +msgstr "Template CSS" + +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 +#: superset/commands/database/ssh_tunnel/exceptions.py:42 #, fuzzy -msgid "Add and edit filters" -msgstr "Aggiungi filtro" +msgid "SSH Tunnel could not be updated." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Azione" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Azione" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 +#: superset/commands/dataset/duplicate.py:60 #, fuzzy -msgid "Add cross-filter" -msgstr "Aggiungi filtro" +msgid "The database was not found." +msgstr "Template CSS" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Aggiungi filtro" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" msgstr "" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Aggiungi filtro" - -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Aggiungi metrica" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Una o più metriche da mostrare" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Una o più metriche da mostrare" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Una o più metriche da mostrare" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Sorgente dati e tipo di grafico" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -#, fuzzy -msgid "Add sheet" -msgstr "Aggiungi Database" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" -msgstr "" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "Add the name of the dashboard" -msgstr "Salva e vai alla dashboard" - -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Aggiungi ad una nuova dashboard" +msgid "Datasets could not be deleted." +msgstr "La query non può essere caricata" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +#: superset/commands/dataset/exceptions.py:180 #, fuzzy -msgid "Add/Edit Filters" -msgstr "Aggiungi filtro" +msgid "Samples for dataset could not be retrieved." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Aggiungi ad una nuova dashboard" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 +#: superset/commands/dataset/exceptions.py:192 #, fuzzy -msgid "Additional Parameters" -msgstr "Parametri" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "" +msgid "You don't have access to this dataset." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "" +#: superset/commands/dataset/exceptions.py:196 +#, fuzzy +msgid "Dataset could not be duplicated." +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." -msgstr "" +#: superset/commands/dataset/exceptions.py:205 +#, fuzzy +msgid "The provided table was not found in the provided database" +msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 +#: superset/commands/dataset/columns/exceptions.py:23 #, fuzzy -msgid "Additional parameters" -msgstr "Parametri" +msgid "Dataset column not found." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset/commands/dataset/columns/exceptions.py:27 #, fuzzy -msgid "Additional settings." -msgstr "Parametri" +msgid "Dataset column delete failed." +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +#: superset/commands/dataset/metrics/exceptions.py:23 #, fuzzy -msgid "Additive" -msgstr "Aggiungi filtro" +msgid "Dataset metric not found." +msgstr "Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -#, fuzzy -msgid "Advanced Analytics" -msgstr "Analytics avanzate" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 +#: superset/commands/explore/get.py:118 superset/views/core.py:471 #, fuzzy -msgid "Advanced Data type" -msgstr "Analytics avanzate" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Analytics avanzate" +msgid "[Missing Dataset]" +msgstr "Seleziona una destinazione" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -#, fuzzy -msgid "Advanced analytics Query A" -msgstr "Analytics avanzate" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "La query non può essere caricata" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -#, fuzzy -msgid "Advanced analytics Query B" -msgstr "Analytics avanzate" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -#, fuzzy -msgid "Advanced data type" -msgstr "Analytics avanzate" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -#, fuzzy -msgid "Advanced-Analytics" -msgstr "Analytics avanzate" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/alert.py:98 +#, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -#, fuzzy -msgid "After" -msgstr "Aggiungi filtro" +#: superset/commands/report/alert.py:107 +#, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 +#: superset/commands/report/alert.py:178 #, fuzzy -msgid "Aggregate" -msgstr "Creato il" +msgid "An error occurred when running alert query" +msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "Creato il" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Rimuovi il grafico dalla dashboard" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#: superset/commands/report/exceptions.py:92 #, fuzzy -msgid "Aggregation function" -msgstr "Testa la Connessione" +msgid "Must choose either a chart or a dashboard" +msgstr "Rimuovi il grafico dalla dashboard" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "Cancella" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "Testa la Connessione" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "Testa la Connessione" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "La tua query non può essere salvata" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Nome Completo" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." msgstr "" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "Nome Completo" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." msgstr "" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." msgstr "" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." msgstr "" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." msgstr "" -#: superset/reports/commands/alert.py:100 +#: superset/commands/report/exceptions.py:180 #, python-format -msgid "Alert query returned more than one row. %s rows returned" +msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Testa la Connessione" +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Una o più metriche da mostrare" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "" + +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." msgstr "" -#: superset/reports/commands/exceptions.py:204 +#: superset/commands/report/exceptions.py:198 msgid "Alert validator config error." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." msgstr "" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Importa" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 +#: superset/commands/report/exceptions.py:222 #, fuzzy -msgid "All Entities" -msgstr "Filtri" - -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Grafico a Proiettile" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "" - -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Filtri" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Permetti CREATE TABLE AS" +msgid "A timeout occurred while executing the query." +msgstr "Errore nel creare il datasource" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab" +#: superset/commands/report/exceptions.py:227 +#, fuzzy +msgid "A timeout occurred while taking a screenshot." +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Permetti CREATE TABLE AS" +#: superset/commands/report/exceptions.py:232 +#, fuzzy +msgid "A timeout occurred while generating a csv." +msgstr "Errore nel recupero dei metadati della tabella" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab" +#: superset/commands/report/exceptions.py:237 +#, fuzzy +msgid "A timeout occurred while generating a dataframe." +msgstr "Errore nel creare il datasource" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Permetti DML" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "" +#: superset/commands/report/exceptions.py:261 +#, fuzzy +msgid "Report schedule system error" +msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" +#: superset/commands/report/exceptions.py:267 +#, fuzzy +msgid "Report schedule client error" +msgstr "Importa" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 +#: superset/commands/security/exceptions.py:25 #, fuzzy -msgid "Allow node selections" -msgstr "Seleziona una colonna" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "" +msgid "RLS Rule not found." +msgstr "Template CSS" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "La query non può essere caricata" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "" +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "Template CSS" -#: superset/views/database/mixins.py:114 +#: superset/commands/sql_lab/estimate.py:86 +#, python-format msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" -msgstr "" -"Permetti agli utenti di eseguire dichiarazioni diverse da SELECT (UPDATE," -" DELETE, CREATE, ...) nel SQL Lab" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -#, fuzzy -msgid "An Error Occurred" -msgstr "Errore nel creare il datasource" - -#: superset/reports/commands/exceptions.py:188 -#, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Una o più metriche da mostrare" - -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 +#: superset/commands/sql_lab/results.py:75 msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset/databases/schemas.py:289 +#: superset/commands/sql_lab/results.py:116 msgid "" -"An engine must be specified when passing individual parameters to a " -"database." -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 -#: superset-frontend/src/components/Tags/utils.tsx:67 -#: 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 -msgid "An error has occurred" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Errore nel creare il datasource" - -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 +#: superset/commands/tag/exceptions.py:36 #, fuzzy -msgid "An error occurred while accessing the value." -msgstr "Errore nel creare il datasource" +msgid "Tag could not be created." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, fuzzy, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Errore nel creare il datasource" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "La query non può essere caricata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Errore nel creare il datasource" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "La query non può essere caricata" +#: superset/commands/temporary_cache/exceptions.py:29 #: superset/dashboards/permalink/exceptions.py:27 #: superset/explore/permalink/exceptions.py:27 #: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 #, fuzzy msgid "An error occurred while creating the value." msgstr "Errore nel creare il datasource" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +#, fuzzy +msgid "An error occurred while accessing the value." +msgstr "Errore nel creare il datasource" + +#: superset/commands/temporary_cache/exceptions.py:37 #: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 #, fuzzy msgid "An error occurred while deleting the value." msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, fuzzy, python-format -msgid "An error occurred while fetching %s info: %s" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +#, fuzzy +msgid "An error occurred while updating the value." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, fuzzy, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Errore nel creare il datasource" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +#, fuzzy +msgid "You don't have permission to modify the value." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "Errore nel recupero dei metadati della tabella" +#: superset/commands/temporary_cache/exceptions.py:49 +#, fuzzy +msgid "Resource was not found." +msgstr "Template CSS" -#: superset-frontend/src/pages/ChartList/index.tsx:641 +#: superset/common/query_actions.py:227 #, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "Errore nel creare il datasource" +msgid "Invalid result type: %(result_type)s" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 +#: superset/common/query_context_processor.py:150 #, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "Errore nel creare il datasource" +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -#, fuzzy -msgid "An error occurred while fetching function names." -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "Errore nel recupero dei metadati della tabella" - -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, fuzzy, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -#, fuzzy -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, fuzzy, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -#, fuzzy -msgid "An error occurred while opening Explore" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset/key_value/exceptions.py:30 -#, fuzzy -msgid "An error occurred while parsing the key." -msgstr "Errore nel creare il datasource" - -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Errore nel rendering della visualizzazione: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." -msgstr "" - -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -#, fuzzy -msgid "An error occurred while starring this chart" -msgstr "Errore nel creare il datasource" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." -msgstr "" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "" - -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -#, fuzzy -msgid "An error occurred while updating the value." -msgstr "Errore nel creare il datasource" - -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "Errore nel creare il datasource" - -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" -msgstr "" - -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -#, fuzzy -msgid "Animation" -msgstr "Azione" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Azione" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "Azione" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -#, fuzzy -msgid "Annotation Slice Configuration" -msgstr "Controlli del filtro" - -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "" - -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "" - -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Azione" - -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "La tua query non può essere salvata" - -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "" - -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "La tua query non può essere salvata" - -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -#, fuzzy -msgid "Annotation layer description columns" -msgstr "La tua query non può essere salvata" - -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -#, fuzzy -msgid "Annotation layer interval end" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "La tua query non può essere salvata" - -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -#, fuzzy -msgid "Annotation layer opacity" -msgstr "La tua query non può essere salvata" - -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -#, fuzzy -msgid "Annotation layer stroke" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -#, fuzzy -msgid "Annotation layer value" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Azione" - -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "" - -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Azione" - -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "Azione" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -#, fuzzy -msgid "Annotation source type" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#: superset/common/query_context_processor.py:696 #, fuzzy -msgid "Annotation template updated" -msgstr "La tua query non può essere salvata" +msgid "The chart does not exist" +msgstr "Sorgente dati e tipo di grafico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 +#: superset/common/query_context_processor.py:702 #, fuzzy -msgid "Annotations and Layers" -msgstr "Azione" - -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Azione" - -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "" +msgid "The chart datasource does not exist" +msgstr "Sorgente dati e tipo di grafico" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 +#: superset/common/query_context_processor.py:719 #, fuzzy -msgid "Any" -msgstr "giorno" - -#: 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 "" +msgid "The chart query context does not exist" +msgstr "Sorgente dati e tipo di grafico" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/common/query_object.py:290 +#, python-format msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/common/query_object.py:312 +#, python-format msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "Aggiungi filtro" - -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "Aggiungi filtro" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "Aggiungi filtro" - -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Applica" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -msgid "Apply conditional color formatting to metric" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset/connectors/sqla/models.py:1394 +#, python-format +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -#, fuzzy -msgid "Apply filters" -msgstr "Filtri" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -#, fuzzy -msgid "Apply metrics on" -msgstr "Metrica" +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, fuzzy, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Errore nel recupero dati" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 +#, python-format +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -#, fuzzy -msgid "Arc" -msgstr "Cerca" - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, python-format -msgid "Are you sure you want to delete %s?" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 -#, python-format -msgid "Are you sure you want to delete the selected %s?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Mostra colonna" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Aggiungi colonna" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Edita colonna" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" +"Se rendere disponibile questa colonna come opzione [Time Granularity], la" +" colonna deve essere di tipo DATETIME o simile" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" +"Se questa colonna è esposta nella sezione `Filtri` della vista " +"esplorazione." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" +"Il tipo di dato è dedotto dal database. In alcuni casi potrebbe essere " +"necessario inserire manualmente un tipo di colonna definito " +"dall'espressione. Nella maggior parte dei casi gli utenti non hanno " +"bisogno di fare questa modifica." -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -msgid "Are you sure you want to delete the selected rules?" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Colonna" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" -msgstr "" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Nome Completo" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Descrizione" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" -msgstr "" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Raggruppabile" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filtrabile" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabella" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -#, fuzzy -msgid "Area Chart" -msgstr "Esplora grafico" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Espressione" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -#, fuzzy -msgid "Area Chart (legacy)" -msgstr "Esplora grafico" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "è temporale" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -#, fuzzy -msgid "Area chart" -msgstr "Esplora grafico" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Formato Datetime" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -#, fuzzy -msgid "Area chart opacity" -msgstr "Esplora grafico" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Tipo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Metriche" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Mostra metrica" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Aggiungi metrica" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Modifica metrica" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Metrica" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -#, fuzzy -msgid "Auto" -msgstr "Descrizione" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "Espressione SQL" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" -msgstr "" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Formato D3" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tabelle" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Mostra Tabelle" + +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Modifica Tabella" + +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" +"Elenco delle slice associate a questa tabella. Modificando questa origine" +" dati, è possibile modificare le modalità di comportamento delle slice " +"associate. Inoltre, va tenuto presente che le slice devono indicare " +"un'origine dati, pertanto questo modulo non registra le impostazioni " +"qualora si modifica un'origine dati. Se vuoi modificare l'origine dati " +"per una slide, devi sovrascriverla dal 'vista di esplorazione'" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "Database" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Timezone offset (in ore) per questa sorgente dati" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "Valore del filtro" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" +"Schema, va utilizzato soltanto in alcuni database come Postgres, Redshift" +" e DB2" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -#, fuzzy -msgid "Axis Bounds" -msgstr "Controlli del filtro" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." +msgstr "" +"Questo campo agisce come una vista Superset, il che vuol dire che " +"Superset eseguirà una query su questa stringa come sotto-query." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "Formato Datetime" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "" +"Predicato utilizzato quando si fornisce un valore univoco per popolare il" +" componente di controllo del filtro. Supporta la sintassi del template " +"jinja. È utilizzabile solo quando è abilitata l'opzione \"Abilita " +"selezione filtro\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -#, fuzzy -msgid "Axis Title" -msgstr "%s - senza nome" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "Reinvia a questo endpoint al clic sulla tabella dall'elenco delle tabelle" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" +"Usato per popolare la finestra a cascata dei filtri dall'elenco dei " +"valori distinti prelevati dal backend al volo" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -#, fuzzy -msgid "Backward values" -msgstr "Valore del filtro" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -#, fuzzy -msgid "Bad formula." -msgstr "Formato Datetime" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Modificato da" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -#, fuzzy -msgid "Bar Chart" -msgstr "Esplora grafico" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Abilita il filtro di Select" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#, fuzzy -msgid "Bar Chart (legacy)" -msgstr "Esplora grafico" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Schema" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Endpoint predefinito" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -#, fuzzy -msgid "Bar Values" -msgstr "Valore del filtro" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Offset" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -#, fuzzy -msgid "Bar orientation" -msgstr "Azione" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Cache Timeout" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "Database" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -#, fuzzy -msgid "Based on a metric" -msgstr "Seleziona una metrica" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Proprietari" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "Vista Tabella" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Parametri" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Modificato" + +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" +"Tabella creata. Come parte di questo processo di configurazione in due " +"fasi, è necessario andare sul pulsante di modifica della nuova tabella " +"per configurarla." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/dashboards/api.py:697 #, python-format -msgid "Batch editing %d filters:" -msgstr "" +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Seleziona una dashboard" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "" +#: superset/dashboards/filters.py:193 +#, fuzzy +msgid "Role" +msgstr "Profilo" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Numero Grande" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Numero Grande con Linea del Trend" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -#, fuzzy -msgid "Bottom" -msgstr "dttm" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -#, fuzzy -msgid "Bottom left" -msgstr "dttm" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -#, fuzzy -msgid "Bottom right" -msgstr "dttm" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Seleziona data finale" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +#: superset/db_engine_specs/base.py:98 +msgid "Second" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/db_engine_specs/base.py:99 +msgid "5 second" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +#: superset/db_engine_specs/base.py:100 +msgid "30 second" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" -msgstr "Box Plot" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 +#: superset/db_engine_specs/base.py:101 #, fuzzy -msgid "Breakdowns" -msgstr "Creato il" +msgid "Minute" +msgstr "minuto" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Grafico a Bolle" +#: superset/db_engine_specs/base.py:102 +#, fuzzy +msgid "5 minute" +msgstr "minuto" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" -msgstr "" +#: superset/db_engine_specs/base.py:103 +#, fuzzy +msgid "10 minute" +msgstr "10 minuti" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#: superset/db_engine_specs/base.py:104 #, fuzzy -msgid "Bubble Size" -msgstr "Grandezza della bolla" +msgid "15 minute" +msgstr "minuto" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Grandezza della bolla" +#: superset/db_engine_specs/base.py:105 +#, fuzzy +msgid "30 minute" +msgstr "10 minuti" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" -msgstr "" +#: superset/db_engine_specs/base.py:106 +#, fuzzy +msgid "Hour" +msgstr "ora" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +#, fuzzy +msgid "6 hour" +msgstr "ora" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Seleziona %s" +#: superset/db_engine_specs/base.py:108 +#, fuzzy +msgid "Day" +msgstr "giorno" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Grafico a Proiettile" +#: superset/db_engine_specs/base.py:109 +#, fuzzy +msgid "Week" +msgstr "settimana" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "" +#: superset/db_engine_specs/base.py:110 +#, fuzzy +msgid "Month" +msgstr "mese" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" -msgstr "" +#: superset/db_engine_specs/base.py:111 +#, fuzzy +msgid "Quarter" +msgstr "condividi query" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." -msgstr "" +#: superset/db_engine_specs/base.py:112 +#, fuzzy +msgid "Year" +msgstr "anno" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 #, fuzzy -msgid "CREATE DATASET" -msgstr "Seleziona una destinazione" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "Permetti CREATE TABLE AS" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "Permetti CREATE TABLE AS" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "" +msgid "Username" +msgstr "Ricerca Query" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 #, fuzzy -msgid "CRON Schedule" -msgstr "Importa" - -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "Espressione" - -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +msgid "Password" +msgstr "Porta Broker" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "Template CSS" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +#, fuzzy +msgid "Database port" +msgstr "Database" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Database" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "Template CSS" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +#, fuzzy +msgid "Additional parameters" +msgstr "Parametri" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "Template CSS" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" +msgstr "" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "Template CSS" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "Template CSS" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset/views/database/views.py:290 +#: superset/db_engine_specs/bigquery.py:204 #, python-format msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "Schema CTAS" - -#: superset/sql_lab.py:449 +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Cache Timeout" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Cache Timeout" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/db_engine_specs/mysql.py:162 #, python-format -msgid "Cached %s" +msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#: superset/db_engine_specs/ocient.py:256 #, python-format -msgid "Calculated column [%s] requires an expression" +msgid "Could not connect to database: \"%(database)s\"" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Visualizza colonne" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Seleziona un tipo di visualizzazione" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Calendario di Intensità" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Annulla" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Una o più metriche da mostrare" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" + +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." msgstr "" -#: superset/views/core.py:734 +#: superset/db_engine_specs/presto.py:664 #, python-format msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -#, fuzzy -msgid "Cannot load filter" -msgstr "Cerca / Filtra" - -#: superset/charts/commands/exceptions.py:51 +#: superset/db_engine_specs/presto.py:672 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset/explore/exceptions.py:45 #, fuzzy -msgid "Category Name" -msgstr "Ricerca Query" +msgid "Samples for datasource could not be retrieved." +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 +#: superset/initialization/__init__.py:242 #, fuzzy -msgid "Category name" -msgstr "Ricerca Query" +msgid "Database Connections" +msgstr "Testa la Connessione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Elenco Dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Grafici" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Basi di dati" + +#: superset/initialization/__init__.py:276 +msgid "Plugins" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -#, fuzzy -msgid "Cell Size" -msgstr "Grandezza della bolla" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Gestisci" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -#, fuzzy -msgid "Cell bars" -msgstr "Grafico a Proiettile" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "Template CSS" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Query salvate" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset/initialization/__init__.py:348 +msgid "Query History" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset/initialization/__init__.py:368 +msgid "Action Log" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -#, fuzzy -msgid "Certified" -msgstr "Modificato" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -#, fuzzy -msgid "Certified By" -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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Modificato" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Sicurezza" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 -#, python-format -msgid "Certified by %s" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Modificato da" - -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Cambiato il" +#: superset/key_value/exceptions.py:30 +#, fuzzy +msgid "An error occurred while parsing the key." +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "" +#: superset/key_value/exceptions.py:50 +#, fuzzy +msgid "An error occurred while upserting the value." +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" +"la colonna Datetime è necessaria per questo tipo di grafico. Nella " +"configurazione della tabella però non è stata definita" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Query vuota?" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" +#: superset/models/helpers.py:1821 +msgid "error_message" msgstr "" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/views/core.py:1762 +#: superset/models/helpers.py:1944 #, python-format -msgid "Chart %(id)s not found" +msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Cache Timeout" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "Opzioni del grafico" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "Grafici" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 +#: superset/models/helpers.py:2090 #, fuzzy -msgid "Chart Options" -msgstr "Azione" +msgid "Database does not support subqueries" +msgstr "Sorgente dati e tipo di grafico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -#, fuzzy -msgid "Chart Orientation" -msgstr "Azione" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Opzioni del grafico" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 #, fuzzy -msgid "Chart Source" -msgstr "Sorgente Dati" +msgid "Value must be greater than 0" +msgstr "La data di inizio non può essere dopo la data di fine" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -#, fuzzy -msgid "Chart Title" -msgstr "Grafici" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 #, python-format -msgid "Chart [%s] has been overwritten" +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/explore/actions/saveModalActions.js:139 +#: superset/reports/notifications/email.py:88 #, python-format -msgid "Chart [%s] was added to dashboard [%s]" +msgid "" +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "" +#: superset/reports/notifications/email.py:132 +#, fuzzy +msgid "EMAIL_REPORTS_CTA" +msgstr "Importa" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Cache Timeout" - -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Ultima Modifica" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/reports/notifications/slack.py:93 +#, python-format msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" +"*%(name)s*\n" +"\n" +"%(description)s\n" "\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"Error: %(text)s\n" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "La tua query non può essere salvata" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "La query non può essere caricata" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "La tua query non può essere salvata" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -#, fuzzy -msgid "Chart height" -msgstr "Grafici" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -#, fuzzy -msgid "Chart imported" -msgstr "Grafici" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "Ultima Modifica" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "Ultima Modifica" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Grafici" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +#: superset/tags/exceptions.py:39 #, fuzzy -msgid "Chart options" -msgstr "Azione" +msgid "Tag could not be found." +msgstr "Template CSS" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "Opzioni del grafico" +#: superset/tags/filters.py:31 +msgid "Is custom tag" +msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -#, fuzzy -msgid "Chart properties updated" -msgstr "Elenco Dashboard" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -#, fuzzy -msgid "Chart title" -msgstr "Grafici" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Nessun record trovato" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Grafici" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Filtri" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Cerca" + +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "Grafici" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Importa dashboard" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Grafici" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Importa dashboard" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "La query non può essere caricata" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -#, fuzzy -msgid "Check configuration" -msgstr "Controlli del filtro" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Seleziona una sorgente" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Rimuovi il grafico dalla dashboard" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Testa la Connessione" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -#, fuzzy -msgid "Check out this chart: " -msgstr "Guarda questa slice: %s" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "Guarda questa slice: %s" +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "" + +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "" + +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Seleziona una sorgente" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Rimuovi il grafico dalla dashboard" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -#, fuzzy -msgid "Choose a database..." -msgstr "Seleziona una destinazione" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Seleziona una destinazione" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Seleziona una metrica per l'asse destro" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -#, fuzzy -msgid "Choose a number format" -msgstr "Seleziona una metrica per l'asse destro" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -#, fuzzy -msgid "Choose a source" -msgstr "Seleziona una destinazione" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -#, fuzzy -msgid "Choose a source and a target" -msgstr "Seleziona una destinazione" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -#, fuzzy -msgid "Choose a target" -msgstr "Seleziona una destinazione" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "" + +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "Seleziona almeno una metrica" + +#: superset/utils/pandas_postprocessing/rename.py:53 #, fuzzy -msgid "Choose chart type" -msgstr "Grafici" +msgid "Label already exists" +msgstr "Una o più metriche da mostrare" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -#, fuzzy -msgid "Choose the format for legend values" -msgstr "Seleziona una metrica per l'asse destro" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/api.py:109 +#, python-format +msgid "Unexpected time range: %(error)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "json non è valido" + +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Esporta in YAML" + +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Esporta in YAML?" + +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Cancella" + +#: superset/views/base.py:648 +msgid "Delete all Really?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/base_api.py:149 +msgid "Is favorite" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/core.py:289 +#, fuzzy +msgid "You don't have the rights to download as csv" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset/views/core.py:420 +msgid "Error: permalink state not found" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset/views/core.py:509 #, fuzzy -msgid "Clear all data" -msgstr "Grafico a Proiettile" +msgid "You don't have the rights to alter this chart" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 +#: superset/views/core.py:515 #, fuzzy -msgid "Clear form" -msgstr "Formato D3" +msgid "You don't have the rights to create a chart" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Esplora grafico" + +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." +#: superset/views/core.py:645 +#, fuzzy +msgid "You don't have the rights to alter this dashboard" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +#: superset/views/core.py:661 +#, fuzzy +msgid "You don't have the rights to create a dashboard" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/core.py:716 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." +#: superset/views/core.py:836 +#, fuzzy +msgid "permalink state not found" +msgstr "Template CSS" + +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Template CSS" + +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Template CSS" + +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Template CSS" + +#: superset/views/css_templates.py:46 +msgid "Template Name" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:216 -#, fuzzy -msgid "Click to sort ascending" -msgstr "Importa" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Aggiungi colonna" -#: superset-frontend/src/components/Table/index.tsx:215 -#, fuzzy -msgid "Click to sort descending" -msgstr "Importa" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Edita colonna" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" +#: superset/views/utils.py:492 +msgid "Could not find viz object" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" -msgstr "" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Mostra grafico" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Aggiungi grafico" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Modifica grafico" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" +"Questi parametri sono generati dinamicamente al clic su salva o con il " +"bottone di sovrascrittura nella vista di esplorazione. Questo oggetto " +"JSON è esposto qui per referenza e per utenti esperti che vogliono " +"modificare parametri specifici." -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" -msgstr "" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" -msgstr "" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Creatore" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Sorgente Dati" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" -msgstr "" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Ultima Modifica" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parametri" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -#, fuzzy -msgid "Color Metric" -msgstr "Seleziona la metrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Nome" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Tipo di Visualizzazione" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" msgstr "" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Seleziona la metrica" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" +"L'oggetto JSON descrive la posizione dei vari widget nella dashboard. È " +"generato automaticamente nel momento in cui se ne cambia la posizione e " +"la dimensione usando la funzione di drag & drop nella vista della " +"dashboard. " -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" +"Il CSS di ogni singola dashboard può essere modificato qui, oppure nella " +"vista della dashboard dove i cambiamenti sono visibili immediatamente" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "ottenere una URL leggibile per la tua dashboard" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" +"Questo oggetto JSON è generato in maniera dinamica al clic sul pulsante " +"di salvataggio o sovrascrittura nella vista dashboard. Il JSON è esposto " +"qui come riferimento e per gli utenti esperti che vogliono modificare " +"parametri specifici." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "" +#: superset/views/dashboard/mixin.py:64 +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/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Colonna" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset/views/dashboard/mixin.py:70 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -#, fuzzy -msgid "Column Configuration" -msgstr "Controlli del filtro" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Dashboard" -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "Analytics avanzate" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Titolo" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -#, fuzzy -msgid "Column Formatting" -msgstr "Formato Datetime" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Ruoli" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Posizione del JSON" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "Colonna" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "Metadati JSON" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -#, fuzzy -msgid "Column is required" -msgstr "Sorgente Dati" - -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" msgstr "" -#: superset/views/database/forms.py:233 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "Colonna" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 #, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +#: superset/views/database/forms.py:130 #, fuzzy -msgid "Column select" -msgstr "Seleziona una colonna" +msgid "Name of table to be created with CSV file" +msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset/views/database/forms.py:221 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset/views/database/forms.py:352 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset/views/database/forms.py:424 +#: superset/views/database/forms.py:145 #, fuzzy -msgid "Columnar File" -msgstr "Colonna" +msgid "Column Data Types" +msgstr "Analytics avanzate" -#: superset/views/database/views.py:568 -#, python-format +#: superset/views/database/forms.py:146 msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "" - -#: superset/views/database/views.py:443 -#, fuzzy -msgid "Columnar to Database configuration" -msgstr "Controlli del filtro" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" msgstr "" -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "Mostra colonna" - -#: superset/common/query_context_processor.py:132 -#, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" +#: superset/views/database/forms.py:161 +msgid "Delimiter" msgstr "" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 #, fuzzy -msgid "Columns to display" -msgstr "Seleziona una metrica da visualizzare" +msgid "Other" +msgstr "mese" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 +#: superset/views/database/forms.py:175 #, fuzzy -msgid "Columns to group by" -msgstr "Uno o più controlli per 'Raggruppa per'" +msgid "If Table Already Exists" +msgstr "Una o più metriche da mostrare" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -#, fuzzy -msgid "Columns to show" -msgstr "Seleziona una metrica da visualizzare" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -#, fuzzy -msgid "Combine metrics" -msgstr "Mostra metrica" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -#, fuzzy -msgid "Comparison" -msgstr "Colonna del Tempo" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +#: superset/views/database/forms.py:212 #, fuzzy -msgid "Comparison suffix" -msgstr "Colonna del Tempo" +msgid "Null Values" +msgstr "Valore del filtro" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -#, fuzzy -msgid "Condition" -msgstr "Testa la Connessione" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Formato Datetime" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" +#: superset/views/database/forms.py:242 +#, fuzzy +msgid "Columns To Read" +msgstr "Mostra colonna" + +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -#, fuzzy -msgid "Confirm overwrite" -msgstr "Sovrascrivi la slice %s" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" +#: superset/views/database/forms.py:289 +msgid "Excel File" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -#, fuzzy -msgid "Connect" -msgstr "Testa la Connessione" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Nome Completo" + +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -#, fuzzy -msgid "Connect a database" -msgstr "Database" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -#, fuzzy -msgid "Connect database" -msgstr "Database" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Testa la Connessione" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -#, fuzzy -msgid "Continue" -msgstr "Colonna" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Valore del filtro" + +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" + +#: superset/views/database/forms.py:413 #, fuzzy -msgid "Control" +msgid "Name of table to be created from columnar data." +msgstr "Nome delle tabella esistente nella sorgente del database" + +#: superset/views/database/forms.py:421 +#, fuzzy +msgid "Columnar File" msgstr "Colonna" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset/views/database/forms.py:469 +#, fuzzy +msgid "Use Columns" +msgstr "Visualizza colonne" + +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -#, fuzzy -msgid "Coordinates" -msgstr "Coordinate Parallele" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Basi di dati" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -#, fuzzy -msgid "Copied to clipboard!" -msgstr "copia URL in appunti" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Mostra database" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Aggiungi Database" + +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Mostra database" + +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Esponi questo DB in SQL Lab" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "copia URL in appunti" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab" + +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "" +"Permetti agli utenti di eseguire dichiarazioni diverse da SELECT (UPDATE," +" DELETE, CREATE, ...) nel SQL Lab" + +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" +"Se si abilita l'opzione CREATE TABLE AS in SQL Lab, verrà forzata la " +"creazione della tabella con questo schema" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "" + +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Esponi in SQL Lab" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Permetti CREATE TABLE AS" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Permetti CREATE TABLE AS" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Copia di %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Permetti DML" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Schema CTAS" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -#, fuzzy -msgid "Copy permalink to clipboard" -msgstr "copia URL in appunti" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "URI SQLAlchemy" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Query vuota?" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Cache Timeout" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "copia URL in appunti" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Sicurezza" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset/views/database/mixins.py:196 +msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -#, fuzzy -msgid "Copy to Clipboard" -msgstr "copia URL in appunti" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -#, fuzzy -msgid "Correlation" -msgstr "Descrizione" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" msgstr "" -#: superset/db_engine_specs/ocient.py:259 +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 #, python-format -msgid "Could not connect to database: \"%(database)s\"" +msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Non posso connettermi al server" - -#: superset/views/utils.py:512 -msgid "Could not find viz object" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" msgstr "" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Non posso connettermi al server" - -#: superset/views/core.py:1454 +#: superset/views/database/views.py:180 #, python-format -msgid "Could not load database driver: %(driver_name)s" +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Non posso connettermi al server" - -#: superset/db_engine_specs/ocient.py:264 +#: superset/views/database/views.py:277 #, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -#, fuzzy -msgid "Count" -msgstr "Colonna" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -#, fuzzy -msgid "Count Unique Values" -msgstr "Filtrabile" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -#, fuzzy -msgid "Country" -msgstr "Mappa della Nazione" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 +#: superset/views/database/views.py:440 #, fuzzy -msgid "Country Column" +msgid "Columnar to Database configuration" msgstr "Controlli del filtro" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Mappa della Nazione" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -#, fuzzy -msgid "Create" -msgstr "Creato il" - -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "Esplora grafico" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" -msgstr "Mostra database" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset/views/database/views.py:566 +#, python-format msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -#, fuzzy -msgid "Create chart" -msgstr "Esplora grafico" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset/views/log/__init__.py:21 +msgid "Logs" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -#, fuzzy -msgid "Create dataset" -msgstr "Seleziona una destinazione" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Mostra colonna" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" +#: superset/views/log/__init__.py:23 +msgid "Add Log" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Creato il" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -#, fuzzy -msgid "Create new filter set" -msgstr "Creato il" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Modifica" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Utente" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Creato il" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Azione" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Creato il" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Creato il" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#: superset/views/sql_lab/views.py:93 #, fuzzy -msgid "Created by me" -msgstr "Creato il" +msgid "Untitled Query" +msgstr "Query senza nome" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Creato il" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Creato il" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +#, fuzzy +msgid "Time Column" +msgstr "Colonna del Tempo" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" msgstr "" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Creatore" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Tempo" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 #, fuzzy -msgid "Crimson" -msgstr "Azione" +msgid "Aggregate" +msgstr "Creato il" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#, fuzzy +msgid "Category name" +msgstr "Ricerca Query" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "Total value" +msgstr "Valore del filtro" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 #, fuzzy -msgid "Cross-filtering scoping" -msgstr "Cerca / Filtra" +msgid "Minimum value" +msgstr "Valore del filtro" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 #, fuzzy -msgid "Cross-filters" -msgstr "Cerca / Filtra" +msgid "Maximum value" +msgstr "Valore del filtro" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 #, fuzzy -msgid "Cumulative" -msgstr "Azione" +msgid "Average value" +msgstr "Valore del filtro" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 #, python-format -msgid "Currently rendered: %s" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +msgid "Certified by %s" msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "descrizione" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "Espressione SQL" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +#, fuzzy +msgid "Column datatype" +msgstr "Colonna" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +#, fuzzy +msgid "Column name" +msgstr "Colonna" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 #, fuzzy -msgid "Customize columns" -msgstr "Visualizza colonne" +msgid "Metric name" +msgstr "Ricerca Query" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "Formato D3" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "Formato D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -#, fuzzy -msgid "DATETIME" -msgstr "Tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Analytics avanzate" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Testa la Connessione" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Colonna del Tempo" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Offset temporale" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "La tua query non può essere salvata" - -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "La tua query non può essere salvata" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "La tua query non può essere salvata" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "Elenco Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Elenco Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -#, fuzzy -msgid "Dashboard properties updated" -msgstr "Elenco Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -#, fuzzy -msgid "Dashboard scheme" -msgstr "Elenco Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "Elenco Dashboard" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "Elenco Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Elenco Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Seleziona un tipo di visualizzazione" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 #, fuzzy -msgid "Dashboards added to" -msgstr "Elenco Dashboard" +msgid "Actual values" +msgstr "Valore del filtro" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Elenco Dashboard" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 #, fuzzy -msgid "Dashed" -msgstr "Elenco Dashboard" - -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Database" +msgid "Percentage change" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 #, fuzzy -msgid "Data Table" -msgstr "Modifica Tabella" +msgid "Ratio" +msgstr "Descrizione" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Tipo" - -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "Seleziona almeno una metrica" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" +msgstr "" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" msgstr "" -#: superset/views/database/views.py:321 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" msgstr "" -#: superset/initialization/__init__.py:243 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 #, fuzzy -msgid "Database Connections" -msgstr "Testa la Connessione" +msgid "Null imputation" +msgstr "Azione" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 #, fuzzy -msgid "Database Creation Error" -msgstr "Espressione del Database" +msgid "Zero imputation" +msgstr "descrizione" -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "URL del Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 #, fuzzy -msgid "Database connected" -msgstr "La tua query non può essere salvata" - -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "La tua query non può essere salvata" - -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "" +msgid "Forward values" +msgstr "Valore del filtro" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "La tua query non può essere salvata" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +#, fuzzy +msgid "Backward values" +msgstr "Valore del filtro" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +#, fuzzy +msgid "Median values" +msgstr "Valore del filtro" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +#, fuzzy +msgid "Mean values" +msgstr "Valore del filtro" -#: superset/models/helpers.py:2063 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 #, fuzzy -msgid "Database does not support subqueries" -msgstr "Sorgente dati e tipo di grafico" +msgid "Sum values" +msgstr "Valore del filtro" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Espressione del Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +#, fuzzy +msgid "Annotations and Layers" +msgstr "Azione" -#: superset/databases/commands/validate.py:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 #, fuzzy -msgid "Database is offline." -msgstr "Database" +msgid "Left" +msgstr "Cancella" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +#, fuzzy +msgid "Chart Title" +msgstr "Grafici" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "Template CSS" - -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -#, fuzzy -msgid "Database passwords" -msgstr "Database" - -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -#, fuzzy -msgid "Database port" -msgstr "Database" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -#, fuzzy -msgid "Database settings updated" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Basi di dati" - -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 #, fuzzy -msgid "Dataset Name" -msgstr "Database" +msgid "Y Axis Title Position" +msgstr "Testa la Connessione" -#: superset/datasets/columns/commands/exceptions.py:27 -#, fuzzy -msgid "Dataset column delete failed." -msgstr "La tua query non può essere salvata" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "" -#: superset/datasets/columns/commands/exceptions.py:23 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 #, fuzzy -msgid "Dataset column not found." -msgstr "La tua query non può essere salvata" - -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "La tua query non può essere salvata" +msgid "Predictive Analytics" +msgstr "Analytics avanzate" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset/datasets/commands/exceptions.py:210 -#, fuzzy -msgid "Dataset could not be duplicated." -msgstr "La tua query non può essere salvata" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "La tua query non può essere salvata" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Sorgente dati e tipo di grafico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -#, fuzzy -msgid "Dataset imported" -msgstr "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -#, fuzzy -msgid "Dataset is required" -msgstr "Sorgente Dati" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:23 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 #, fuzzy -msgid "Dataset metric not found." -msgstr "Dashboard" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Database" +msgid "default" +msgstr "Endpoint predefinito" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Basi di dati" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Sorgente Dati" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Attributi relativi al tempo" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 #, fuzzy msgid "Datasource & Chart Type" msgstr "Sorgente Dati" -#: superset/commands/exceptions.py:135 -#, fuzzy -msgid "Datasource does not exist" -msgstr "Sorgente dati e tipo di grafico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "Grafici" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -#, fuzzy -msgid "Date Time Format" -msgstr "Formato Datetime" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Aggiungi filtro" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -#, fuzzy -msgid "Date format" -msgstr "Formato Datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 #, fuzzy -msgid "Date format string" -msgstr "Formato Datetime" +msgid "URL Parameters" +msgstr "Parametri" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Formato Datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +#, fuzzy +msgid "Extra Parameters" +msgstr "Parametri" -#: superset/models/helpers.py:1502 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -"la colonna Datetime è necessaria per questo tipo di grafico. Nella " -"configurazione della tabella però non è stata definita" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Formato Datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "" -#: superset/db_engine_specs/base.py:107 -#, fuzzy -msgid "Day" -msgstr "giorno" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, fuzzy, python-format -msgid "Days %s" -msgstr "giorno" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -#, fuzzy -msgid "Deactivate" -msgstr "Azione" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +#, fuzzy +msgid "Y-Axis Sort Ascending" +msgstr "Importa" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +#, fuzzy +msgid "X-Axis Sort Ascending" +msgstr "Importa" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." msgstr "" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Formato Datetime" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset/viz.py:2848 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Grafico a Proiettile" +msgid "Dimension" +msgstr "descrizione" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" msgstr "" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filtri" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Endpoint predefinito" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Endpoint predefinito" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +#, fuzzy +msgid "Right Axis Metric" +msgstr "Metrica asse destro" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "URL del Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +#, fuzzy +msgid "Select a metric to display on the right axis" +msgstr "Seleziona una metrica per l'asse destro" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -#, fuzzy -msgid "Default Value" -msgstr "Valore del filtro" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 #, fuzzy -msgid "Default datetime" -msgstr "Valore del filtro" +msgid "Bubble Size" +msgstr "Grandezza della bolla" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 #, fuzzy -msgid "Default value is required" -msgstr "Sorgente Dati" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" +msgid "Color Metric" +msgstr "Seleziona la metrica" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Il tipo di visualizzazione da mostrare" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +#, fuzzy +msgid "Linear Color Scheme" +msgstr "Testa la Connessione" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Mostra database" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "10 minuti" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "ora" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 #, fuzzy -msgid "Delete Report?" -msgstr "Template CSS" +msgid "1 day" +msgstr "giorno" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Template CSS" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +#, fuzzy +msgid "7 days" +msgstr "giorno" -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "settimana" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Azione" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Inserisci un nome per la dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "mese" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 #, fuzzy -msgid "Delete email report" -msgstr "Importa" +msgid "quarter" +msgstr "condividi query" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "anno" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." +msgstr "" -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "" -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +#, fuzzy +msgid "Sort Descending" +msgstr "Importa" -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "Seleziona una dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "" -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Seleziona data finale" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "" -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +#, fuzzy +msgid "Currency format" +msgstr "Formato Datetime" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +#, fuzzy +msgid "Time format" +msgstr "Formato Datetime" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +#, fuzzy +msgid "Truncate Metric" +msgstr "Mostra metrica" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Cancella" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +#, fuzzy +msgid "Show empty columns" +msgstr "Colonna del Tempo" + +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 #, fuzzy -msgid "Delivery method" -msgstr "mese" +msgid "Adaptive formatting" +msgstr "Formato Datetime" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#, fuzzy -msgid "Deprecated" -msgstr "Creato il" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Descrizione" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "" + +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 #, fuzzy -msgid "Description Columns" -msgstr "descrizione" +msgid "No Results" +msgstr "visualizza risultati" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#, fuzzy +msgid "ERROR" +msgstr "Errore..." + +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "Seleziona data finale" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "ora" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "giorno" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 #, fuzzy -msgid "Dimension" -msgstr "descrizione" +msgid "min" +msgstr "Min" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +#, fuzzy +msgid "Chart Options" +msgstr "Azione" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +#, fuzzy +msgid "Cell Size" +msgstr "Grandezza della bolla" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Disposizione a Forza Diretta" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy -msgid "Directional" -msgstr "descrizione" +msgid "Time Format" +msgstr "Formato Datetime" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +#, fuzzy +msgid "Show Values" +msgstr "Mostra Tabelle" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy -msgid "Disabled" -msgstr "Modifica Tabella" +msgid "Show Metric Names" +msgstr "Mostra metrica" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 #, fuzzy -msgid "Discrete" -msgstr "è stata creata" +msgid "Number Format" +msgstr "Formato D3" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 #, fuzzy -msgid "Display Name" -msgstr "Valore del filtro" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "" +msgid "Correlation" +msgstr "Descrizione" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 #, fuzzy -msgid "Display settings" -msgstr "Mostra query salvate" +msgid "Comparison" +msgstr "Colonna del Tempo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 #, fuzzy -msgid "Distribution" -msgstr "descrizione" +msgid "Report" +msgstr "Importa" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Distribuzione - Grafico Barre" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 #, fuzzy -msgid "Documentation" -msgstr "Azione" +msgid "Sort by metric" +msgstr "Mostra metrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 #, fuzzy -msgid "Donut" -msgstr "mese" +msgid "Number format" +msgstr "Formato D3" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 #, fuzzy -msgid "Dotted" -msgstr "Modifica" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" -msgstr "" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "" +msgid "Choose a number format" +msgstr "Seleziona una metrica per l'asse destro" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Sorgente" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +#, fuzzy +msgid "Choose a source" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +#, fuzzy +msgid "Target" +msgstr "Database" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +#, fuzzy +msgid "Choose a target" +msgstr "Seleziona una destinazione" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "Importa" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +#, fuzzy +msgid "Relational" +msgstr "Descrizione" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +#, fuzzy +msgid "Country" +msgstr "Mappa della Nazione" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." -msgstr "" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 #, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" +msgid "Metric to display bottom title" +msgstr "Seleziona una metrica da visualizzare" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 #, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" +msgid "Map" +msgstr "Treemap" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 #, fuzzy -msgid "Dual Line Chart" -msgstr "Grafico a Proiettile" +msgid "Range" +msgstr "Gestisci" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 #, fuzzy -msgid "Duplicate dataset" -msgstr "Mostra database" +msgid "Event Names" +msgstr "Nome Completo" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +#, fuzzy +msgid "Columns to display" +msgstr "Seleziona una metrica da visualizzare" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Descrizione" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset/views/chart/mixin.py:69 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "Durata (in secondi) per il timeout della cache per questa slice." +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 #, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "Durata (in secondi) per il timeout della cache per questa slice." +msgid "Metadata" +msgstr "Metadati JSON" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -#, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "Durata (in secondi) per il timeout della cache per questa slice." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 #, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "Durata (in secondi) per il timeout della cache per questa slice." +msgid "e.g., a \"user id\" column" +msgstr "Colonna del Tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -#, fuzzy -msgid "Dynamic Aggregation Function" -msgstr "Testa la Connessione" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -#, fuzzy -msgid "ECharts" -msgstr "Grafici" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "" -#: superset/reports/notifications/email.py:133 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 #, fuzzy -msgid "EMAIL_REPORTS_CTA" +msgid "Metric ascending" msgstr "Importa" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "" - -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 #, fuzzy -msgid "ERROR" -msgstr "Errore..." +msgid "Metric descending" +msgstr "Importa" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -#, fuzzy -msgid "Edge width" -msgstr "Larghezza" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Modifica" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -#, fuzzy -msgid "Edit Alert" -msgstr "Modifica Tabella" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Template CSS" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "Template CSS" - -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Modifica grafico" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 #, fuzzy -msgid "Edit Chart Properties" -msgstr "Elenco Dashboard" - -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Edita colonna" +msgid "Rendering" +msgstr "Importa" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Mostra database" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Mostra database" - -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Modifica" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Modifica metrica" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Edita colonna" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 #, fuzzy -msgid "Edit Report" -msgstr "Importa" +msgid "heatmap" +msgstr "Mappa di Intensità" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Edit Rule" -msgstr "Ricerca Query" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Modifica query salvata" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Modifica Tabella" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Azione" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Template CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 #, fuzzy -msgid "Edit chart" -msgstr "Modifica grafico" +msgid "auto" +msgstr "Descrizione" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -#, fuzzy -msgid "Edit dashboard" -msgstr "Aggiungi ad una nuova dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Mostra database" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Mostra database" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -#, fuzzy -msgid "Edit formatter" -msgstr "Formato D3" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Query vuota?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Template CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 #, fuzzy -msgid "Edit the dashboard" -msgstr "Aggiungi ad una nuova dashboard" +msgid "Value Format" +msgstr "Formato Datetime" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Modifica" - -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +#, fuzzy +msgid "Predictive" +msgstr "Azione" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +#, fuzzy +msgid "Single Metric" +msgstr "Lista Metriche" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +#, fuzzy +msgid "count" +msgstr "Colonna" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#, fuzzy +msgid "cumulative" +msgstr "Azione" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 #, fuzzy -msgid "Elevation" -msgstr "Descrizione" +msgid "No of Bins" +msgstr "Copia di %s" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 #, fuzzy -msgid "Embed dashboard" -msgstr "Salva e vai alla dashboard" +msgid "Cumulative" +msgstr "Azione" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 #, fuzzy -msgid "Emit Filter Events" -msgstr "Filtrabile" +msgid "Distribution" +msgstr "descrizione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -#, fuzzy -msgid "Empty collection" -msgstr "Testa la Connessione" - -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -#, fuzzy -msgid "Empty column" -msgstr "Colonna" - -#: superset/charts/data/api.py:366 -#, fuzzy -msgid "Empty query result" -msgstr "Query vuota?" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Query vuota?" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Abilita il filtro di Select" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +#, fuzzy +msgid "series" +msgstr "Query salvate" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "Gestisci" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#, fuzzy +msgid "Horizon Chart" +msgstr "Grafici d'orizzonte" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +#, fuzzy +msgid "Crimson" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "Ruoli per l'accesso" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 #, fuzzy -msgid "End date" -msgstr "Aggiungi Database" +msgid "Points" +msgstr "Importa" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "La data di inizio non può essere dopo la data di fine" - -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 #, fuzzy -msgid "Engine Parameters" -msgstr "Parametri" +msgid "Auto" +msgstr "Descrizione" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +#, fuzzy +msgid "Miles" +msgstr "Filtri" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +#, fuzzy +msgid "Kilometers" +msgstr "Filtri" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +#, fuzzy +msgid "label" +msgstr "Tabella" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +#, fuzzy +msgid "max" +msgstr "Max" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -#, fuzzy -msgid "Error" -msgstr "Errore..." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." +msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 #, fuzzy -msgid "Error while fetching charts" -msgstr "Errore nel recupero dati" - -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, fuzzy, python-format -msgid "Error while fetching data: %s" -msgstr "Errore nel recupero dati" - -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, fuzzy, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Errore nel recupero dati" - -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" -msgstr "" +msgid "Light" +msgstr "Altezza" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +#, fuzzy +msgid "Satellite" +msgstr "Aggiungi filtro" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -#, fuzzy -msgid "Event" -msgstr "mese" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -#, fuzzy -msgid "Event Names" -msgstr "Nome Completo" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 #, fuzzy -msgid "Event time column" -msgstr "Colonna del Tempo" +msgid "Viewport" +msgstr "Importa" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset/views/database/views.py:427 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" -msgstr "" - -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 #, fuzzy -msgid "Executed SQL" -msgstr "query condivisa" - -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "query condivisa" +msgid "MapBox" +msgstr "Mapbox" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -#, fuzzy -msgid "Existing dataset" -msgstr "Seleziona una destinazione" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Esplora grafico" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +#, fuzzy +msgid "Options" +msgstr "Azione" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +#, fuzzy +msgid "Data Table" +msgstr "Modifica Tabella" + +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -#, fuzzy -msgid "Export query" -msgstr "condividi query" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 #, fuzzy -msgid "Export to .CSV" -msgstr "Esporta in YAML" +msgid "Coordinates" +msgstr "Coordinate Parallele" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 #, fuzzy -msgid "Export to .JSON" -msgstr "Esporta in YAML" +msgid "Directional" +msgstr "descrizione" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 #, fuzzy -msgid "Export to Excel" -msgstr "Esporta in YAML" - -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Esporta in YAML" +msgid "Time Series Options" +msgstr "Colonna del Tempo" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Esporta in YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#, fuzzy +msgid "Time Series" +msgstr "Colonna del Tempo" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Esponi in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Esponi questo DB in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Espressione" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +#, fuzzy +msgid "Percent Change" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 #, fuzzy -msgid "Extra Parameters" -msgstr "Parametri" +msgid "Factor" +msgstr "Creatore" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +#, fuzzy +msgid "Advanced Analytics" +msgstr "Analytics avanzate" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +#, fuzzy +msgid "Date Time Format" +msgstr "Formato Datetime" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -#, fuzzy -msgid "Extruded" -msgstr "textarea" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -#, fuzzy -msgid "Factor" -msgstr "Creatore" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Errore nel recupero dei dati dal backend" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +#, fuzzy +msgid "Rolling Window" +msgstr "Testa la Connessione" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +#, fuzzy +msgid "Rolling Function" +msgstr "Testa la Connessione" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +#, fuzzy +msgid "Time Comparison" +msgstr "Colonna del Tempo" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +#, fuzzy +msgid "Time Shift" +msgstr "Offset temporale" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +#, fuzzy +msgid "1 week" +msgstr "settimana" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "giorno" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +#, fuzzy +msgid "52 weeks" +msgstr "settimana" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +#, fuzzy +msgid "1 year" +msgstr "anno" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 #, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "Errore nel recupero dei dati dal backend" +msgid "104 weeks" +msgstr "settimana" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 #, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Cerca / Filtra" +msgid "2 years" +msgstr "anno" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +#, fuzzy +msgid "156 weeks" +msgstr "settimana" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +#, fuzzy +msgid "3 years" +msgstr "anno" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +#, fuzzy +msgid "Actual Values" +msgstr "Valore del filtro" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -#, fuzzy -msgid "Filled" -msgstr "Profilo" - -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -#, fuzzy -msgid "Filter" -msgstr "Filtri" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 #, fuzzy -msgid "Filter Configuration" -msgstr "Controlli del filtro" +msgid "Partition Chart" +msgstr "Esplora grafico" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Filtri" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 #, fuzzy -msgid "Filter Settings" -msgstr "Abilita il filtro di Select" +msgid "Use Area Proportions" +msgstr "Elenco Dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -#, fuzzy -msgid "Filter Type" -msgstr "Valore del filtro" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box (deprecated)" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 #, fuzzy -msgid "Filter charts" -msgstr "Controlli del filtro" +msgid "Nightingale Rose Chart" +msgstr "Esplora grafico" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Controlli del filtro" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "Advanced-Analytics" +msgstr "Analytics avanzate" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 #, fuzzy -msgid "Filter menu" -msgstr "Valore del filtro" +msgid "Choose a source and a target" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Valore del filtro" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "Risultati della ricerca" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -#, fuzzy -msgid "Filter set already exists" -msgstr "Una o più metriche da mostrare" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -#, fuzzy -msgid "Filter type" -msgstr "Valore del filtro" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -#, fuzzy -msgid "Filter value is required" -msgstr "Sorgente Dati" - -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Controlli del filtro" - -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filtrabile" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filtri" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, fuzzy, python-format -msgid "Filters (%d)" -msgstr "Aggiungi filtro" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Controlli del filtro" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Lista Metriche" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Controlli del filtro" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "Ricerca Query" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 #, fuzzy -msgid "Fixed" -msgstr "Modificato" +msgid "Show Bubbles" +msgstr "Mostra Tabelle" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +#, fuzzy +msgid "Max Bubble Size" +msgstr "Grandezza della bolla" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +#, fuzzy +msgid "Country Column" +msgstr "Controlli del filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#, fuzzy +msgid "3 letter code of the country" +msgstr "Codice a 3 lettere della nazione" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 #, fuzzy -msgid "Force" -msgstr "Sorgente" +msgid "deck.gl charts" +msgstr "Grafico a Proiettile" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 #, fuzzy -msgid "Force date format" -msgstr "Formato Datetime" +msgid "Select charts" +msgstr "Grafico a Proiettile" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +#, fuzzy +msgid "Error while fetching charts" +msgstr "Errore nel recupero dati" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -#, fuzzy -msgid "Forest Green" -msgstr "Ruoli per l'accesso" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 #, fuzzy -msgid "Formattable" -msgstr "Formato D3" +msgid "Arc" +msgstr "Cerca" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -#, fuzzy -msgid "Formatted date" -msgstr "Formato D3" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -#, fuzzy -msgid "Formatted value" -msgstr "Formato D3" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" +msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -#, fuzzy -msgid "Formatting" -msgstr "Formato Datetime" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -#, fuzzy -msgid "Formula" -msgstr "Formato D3" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 #, fuzzy -msgid "Forward values" -msgstr "Valore del filtro" +msgid "Stroke Width" +msgstr "Larghezza" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -#, fuzzy -msgid "Friction" -msgstr "Azione" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "La data di inizio non può essere dopo la data di fine" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -#, fuzzy -msgid "Full name" -msgstr "Ricerca Query" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 #, fuzzy -msgid "Funnel Chart" -msgstr "Grafico a torta" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" -msgstr "" +msgid "Aggregation" +msgstr "Creato il" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 #, fuzzy -msgid "GROUP BY" -msgstr "Raggruppa per" +msgid "Contours" +msgstr "Colonna" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 #, fuzzy -msgid "Gauge Chart" -msgstr "Grafico a torta" +msgid "Weight" +msgstr "Altezza" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 #, fuzzy -msgid "Generic Chart" +msgid "deck.gl Contour" msgstr "Grafico a Proiettile" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -#, fuzzy -msgid "GeoJson Column" -msgstr "Colonna" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 #, fuzzy msgid "GeoJson Settings" msgstr "Mostra query salvate" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Larghezza" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Parametri" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -#, fuzzy -msgid "Graph Chart" -msgstr "Grafico a torta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Altezza" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -#, fuzzy -msgid "Grid Size" -msgstr "Grandezza della bolla" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -#, fuzzy -msgid "Group By" -msgstr "Raggruppa per" - -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 #, fuzzy -msgid "Group Key" -msgstr "Raggruppa per" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Raggruppa per" - -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Raggruppabile" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" -msgstr "" +msgid "deck.gl Heatmap" +msgstr "Grafico a Proiettile" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 #, fuzzy -msgid "Handlebars Template" -msgstr "Template CSS" +msgid "Dynamic Aggregation Function" +msgstr "Testa la Connessione" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 #, fuzzy -msgid "Has created by" -msgstr "è stata creata" +msgid "deviation" +msgstr "descrizione" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Mappa di Intensità" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Altezza" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -#, fuzzy -msgid "Hide chart description" -msgstr "descrizione" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -#, fuzzy -msgid "Hide password." -msgstr "Porta Broker" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 #, fuzzy -msgid "Hierarchy" -msgstr "Cerca" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Istogramma" +msgid "name" +msgstr "Nome" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +#, fuzzy +msgid "Polygon Column" +msgstr "Colonna" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 #, fuzzy -msgid "Horizon Chart" -msgstr "Grafici d'orizzonte" +msgid "Polygon Encoding" +msgstr "Importa" -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Grafici d'orizzonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +#, fuzzy +msgid "Elevation" +msgstr "Descrizione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 #, fuzzy -msgid "Horizontal" -msgstr "Grafici d'orizzonte" +msgid "Polygon Settings" +msgstr "Mostra query salvate" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset/db_engine_specs/base.py:105 -#, fuzzy -msgid "Hour" -msgstr "ora" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, fuzzy, python-format -msgid "Hours %s" -msgstr "ora" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +#, fuzzy +msgid "Emit Filter Events" +msgstr "Filtrabile" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +#, fuzzy +msgid "Multiple filtering" +msgstr "Cerca / Filtra" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +#, fuzzy +msgid "Point Size" +msgstr "Grandezza della bolla" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +#, fuzzy +msgid "Square meters" +msgstr "Parametri" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +#, fuzzy +msgid "Square kilometers" +msgstr "Cerca / Filtra" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +#, fuzzy +msgid "Square miles" +msgstr "Query salvate" -#: superset/views/database/forms.py:174 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 #, fuzzy -msgid "If Table Already Exists" -msgstr "Una o più metriche da mostrare" +msgid "Radius in meters" +msgstr "Parametri" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Importa" - -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Importa" - -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Importa dashboard" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" +msgstr "" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Importa dashboard" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -#, fuzzy -msgid "Import charts" -msgstr "Grafici" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Importa dashboard" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 #, fuzzy -msgid "Import database from file" -msgstr "Mostra database" +msgid "Select a dimension" +msgstr "Importa dashboard" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -#, fuzzy -msgid "Import datasets" -msgstr "Mostra database" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -#, fuzzy -msgid "Import queries" -msgstr "Query vuota?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -#, fuzzy -msgid "In" -msgstr "Min" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 #, fuzzy -msgid "Index" -msgstr "Min" +msgid "Legend Format" +msgstr "Formato Datetime" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +#, fuzzy +msgid "Choose the format for legend values" +msgstr "Seleziona una metrica per l'asse destro" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +#, fuzzy +msgid "Legend Position" +msgstr "Testa la Connessione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#, fuzzy +msgid "Top left" +msgstr "Cancella" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +#, fuzzy +msgid "Top right" +msgstr "Altezza" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Cerca / Filtra" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +#, fuzzy +msgid "Bottom left" +msgstr "dttm" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +#, fuzzy +msgid "Bottom right" +msgstr "dttm" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +#, fuzzy +msgid "Lines column" +msgstr "Colonna del Tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Larghezza" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -#, fuzzy -msgid "Interval" -msgstr "Filtrabile" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 #, fuzzy -msgid "Interval End column" -msgstr "Controlli del filtro" +msgid "Stroke Color" +msgstr "Porta Broker" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 #, fuzzy -msgid "Interval bounds" -msgstr "Controlli del filtro" +msgid "Filled" +msgstr "Profilo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -#, fuzzy -msgid "Interval start column" -msgstr "Controlli del filtro" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 #, fuzzy -msgid "Intervals" -msgstr "Filtrabile" +msgid "Stroked" +msgstr "Creato il" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +#, fuzzy +msgid "Extruded" +msgstr "textarea" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +#, fuzzy +msgid "Grid Size" +msgstr "Grandezza della bolla" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +#, fuzzy +msgid "Multiplier" +msgstr "Azione" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +#, fuzzy +msgid "Lines encoding" +msgstr "Importa" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +#, fuzzy +msgid "GeoJson Column" +msgstr "Colonna" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +#, fuzzy +msgid "Select the geojson column" +msgstr "Seleziona data finale" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +#, fuzzy +msgid "Right Axis Format" +msgstr "Metrica asse destro" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#, fuzzy +msgid "linear" +msgstr "Grafico a torta" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#, fuzzy +msgid "cardinal" +msgstr "Login" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "mese" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +#, fuzzy +msgid "step-after" +msgstr "Cerca / Filtra" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +#, fuzzy +msgid "Show Range Filter" +msgstr "Cerca / Filtra" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -#, fuzzy -msgid "Invert current page" -msgstr "Ultima Modifica" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 #, fuzzy -msgid "Is certified" -msgstr "Modificato" +msgid "X Axis Format" +msgstr "Formato Datetime" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" msgstr "" -#: superset-frontend/src/explore/constants.ts:89 -#, fuzzy -msgid "Is false" -msgstr "Modifica Tabella" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "Filtrabile" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "è temporale" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +#, fuzzy +msgid "Bar Values" +msgstr "Valore del filtro" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" - -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "Metadati JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "" -#: 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/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 #, fuzzy -msgid "JSON metadata is invalid!" -msgstr "json non è valido" +msgid "stream" +msgstr "Istogramma" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 #, fuzzy -msgid "Jinja templating" -msgstr "Template CSS" +msgid "Area Chart (legacy)" +msgstr "Esplora grafico" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +#, fuzzy +msgid "Line" +msgstr "Min" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#, fuzzy +msgid "Deprecated" +msgstr "Creato il" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#, fuzzy +msgid "Series Limit Sort Descending" +msgstr "Importa" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 #, fuzzy -msgid "Key" -msgstr "Sankey" +msgid "Time-series Bar Chart (legacy)" +msgstr "Serie Temporali - Grafico Barre" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -#, fuzzy -msgid "Kilometers" -msgstr "Filtri" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Box Plot" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "Label Type" -msgstr "Tipo" +msgid "Bubble Chart (legacy)" +msgstr "Esplora grafico" -#: superset/utils/pandas_postprocessing/rename.py:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 #, fuzzy -msgid "Label already exists" -msgstr "Una o più metriche da mostrare" +msgid "Ranges" +msgstr "Gestisci" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -#, fuzzy -msgid "Label position" -msgstr "Testa la Connessione" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -#, fuzzy -msgid "Labels" -msgstr "Tabelle" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 msgid "Labels for the markers" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Ultima Modifica" - -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Ultima Modifica" - -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "Ultima Modifica" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Ultima Modifica" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Ultima Modifica" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Ultima Modifica" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Controlli del filtro" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +#, fuzzy +msgid "Time-series Percent Change" +msgstr "Serie Temporali - Cambiamento Percentuale" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +#, fuzzy +msgid "Sort Bars" +msgstr "Importa dashboard" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +#, fuzzy +msgid "Breakdowns" +msgstr "Creato il" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 #, fuzzy -msgid "Least recently modified" -msgstr "Ultima Modifica" +msgid "Bar Chart (legacy)" +msgstr "Esplora grafico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 #, fuzzy -msgid "Left" -msgstr "Cancella" +msgid "Additive" +msgstr "Aggiungi filtro" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +#, fuzzy +msgid "Discrete" +msgstr "è stata creata" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 #, fuzzy -msgid "Left value" -msgstr "Valore del filtro" +msgid "Label Type" +msgstr "Tipo" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +#, fuzzy +msgid "Category Name" +msgstr "Ricerca Query" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +#, fuzzy +msgid "Percentage" +msgstr "Ultima Modifica" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -#, fuzzy -msgid "Legend Format" -msgstr "Formato Datetime" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -#, fuzzy -msgid "Legend Orientation" -msgstr "Azione" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 #, fuzzy -msgid "Legend Position" -msgstr "Testa la Connessione" +msgid "Donut" +msgstr "mese" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +#, fuzzy +msgid "Show Labels" +msgstr "Mostra Tabelle" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 #, fuzzy -msgid "Light" -msgstr "Altezza" +msgid "Pie Chart (legacy)" +msgstr "Esplora grafico" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -#, fuzzy -msgid "Limit type" -msgstr "Tipo" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 #, fuzzy -msgid "Line" -msgstr "Min" +msgid "Formula" +msgstr "Formato D3" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 #, fuzzy -msgid "Line Chart" -msgstr "Grafico a torta" +msgid "Event" +msgstr "mese" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "Filtrabile" + +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#, fuzzy +msgid "Stream" +msgstr "Istogramma" + +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "Larghezza" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -#, fuzzy -msgid "Linear Color Scheme" -msgstr "Testa la Connessione" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #, fuzzy -msgid "Lines column" -msgstr "Colonna del Tempo" +msgid "Orientation" +msgstr "Azione" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 #, fuzzy -msgid "Lines encoding" -msgstr "Importa" +msgid "Bottom" +msgstr "dttm" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +#, fuzzy +msgid "Right" +msgstr "Altezza" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Visualizza query salvate" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +#, fuzzy +msgid "Legend Orientation" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 #, fuzzy -msgid "List Unique Values" -msgstr "Filtrabile" +msgid "Show Value" +msgstr "Mostra Tabelle" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +#, fuzzy +msgid "Tooltip time format" +msgstr "Formato Datetime" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +#, fuzzy +msgid "Tooltip sort by metric" +msgstr "Lista Metriche" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 #, fuzzy -msgid "Locate the chart" -msgstr "Creato il" +msgid "Sort Series By" +msgstr "Query vuota?" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +#, fuzzy +msgid "Sort Series Ascending" +msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +#, fuzzy +msgid "Series Order" +msgstr "Query salvate" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Mostra metrica" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Login" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 #, fuzzy -msgid "Login with" -msgstr "Larghezza" - -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Logout" +msgid "X Axis Bounds" +msgstr "Controlli del filtro" -#: superset/views/log/__init__.py:21 -msgid "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "Mostra metrica" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Metadati JSON" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +#, fuzzy +msgid "Tiny" +msgstr "Min" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" msgstr "" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Gestisci" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -#, fuzzy -msgid "Manage email report" -msgstr "Importa" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 #, fuzzy -msgid "Manage your databases" -msgstr "Database" +msgid "Display settings" +msgstr "Mostra query salvate" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 #, fuzzy -msgid "Map" -msgstr "Treemap" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" -msgstr "" +msgid "Date format" +msgstr "Formato Datetime" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy -msgid "MapBox" -msgstr "Mapbox" +msgid "Force date format" +msgstr "Formato Datetime" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Cerca" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Formato Datetime" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +#, fuzzy +msgid "A Big Number" +msgstr "Numero Grande" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Numero Grande" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +#, fuzzy +msgid "Comparison suffix" +msgstr "Colonna del Tempo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -#, fuzzy -msgid "Max Bubble Size" -msgstr "Grandezza della bolla" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 #, fuzzy -msgid "Maximum value" -msgstr "Valore del filtro" +msgid "TEMPORAL X-AXIS" +msgstr "è temporale" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "giorno" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Numero Grande con Linea del Trend" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Mean values" -msgstr "Valore del filtro" +msgid "Tukey" +msgstr "condividi query" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -#, fuzzy -msgid "Median values" -msgstr "Valore del filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "ECharts" +msgstr "Grafici" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 #, fuzzy -msgid "Metadata" -msgstr "Metadati JSON" +msgid "Bubble size number format" +msgstr "Seleziona una metrica per l'asse destro" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 #, fuzzy -msgid "Metadata Parameters" -msgstr "Parametri" +msgid "Bubble Opacity" +msgstr "Grafico a Bolle" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Metrica" - -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -#, fuzzy -msgid "Metric ascending" -msgstr "Importa" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -#, fuzzy -msgid "Metric descending" -msgstr "Importa" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -#, fuzzy -msgid "Metric name" -msgstr "Ricerca Query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Seleziona un tipo di visualizzazione" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 #, fuzzy -msgid "Metric to display bottom title" -msgstr "Seleziona una metrica da visualizzare" +msgid "Labels" +msgstr "Tabelle" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Creato il" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Importa" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "Mostra Tabelle" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Metriche" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "Seleziona una metrica da visualizzare" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +#, fuzzy +msgid "Funnel Chart" +msgstr "Grafico a torta" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 #, fuzzy -msgid "Miles" -msgstr "Filtri" +msgid "Columns to group by" +msgstr "Uno o più controlli per 'Raggruppa per'" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 #: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 msgid "Min" msgstr "Min" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -#, fuzzy -msgid "Min Width" -msgstr "Larghezza" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Max" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +#, fuzzy +msgid "Start angle" +msgstr "Ultima Modifica" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -#, fuzzy -msgid "Minimum" -msgstr "minuto" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +#, fuzzy +msgid "Value format" +msgstr "Formato Datetime" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 #, fuzzy -msgid "Minimum value" -msgstr "Valore del filtro" +msgid "Animation" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset/db_engine_specs/base.py:100 -#, fuzzy -msgid "Minute" -msgstr "minuto" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, fuzzy, python-format -msgid "Minutes %s" -msgstr "minuto" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -#, fuzzy -msgid "Missing URL parameters" -msgstr "Parametri" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -#, fuzzy -msgid "Missing dataset" -msgstr "Seleziona una destinazione" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 #, fuzzy -msgid "Mixed Chart" -msgstr "Grafico a torta" +msgid "Split number" +msgstr "Numero Grande" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Modificato" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, fuzzy, python-format -msgid "Modified %s" -msgstr "Ultima Modifica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Modificato" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +#, fuzzy +msgid "Show progress" +msgstr "Elenco Dashboard" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#, fuzzy +msgid "Overlap" +msgstr "Mappa del Mondo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 #, fuzzy -msgid "Month" -msgstr "mese" +msgid "Round cap" +msgstr "Mappa della Nazione" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, fuzzy, python-format -msgid "Months %s" -msgstr "mese" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 #, fuzzy -msgid "More" -msgstr "Sorgente" +msgid "Intervals" +msgstr "Filtrabile" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 #, fuzzy -msgid "More filters" -msgstr "Aggiungi filtro" +msgid "Interval bounds" +msgstr "Controlli del filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +#, fuzzy +msgid "Gauge Chart" +msgstr "Grafico a torta" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -#, fuzzy -msgid "Multiple Line Charts" -msgstr "Serie Temporali - Grafico Lineare" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "" -#: superset/views/database/views.py:468 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -#, fuzzy -msgid "Multiple filtering" -msgstr "Cerca / Filtra" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 #, fuzzy -msgid "Multiplier" +msgid "Chart options" msgstr "Azione" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset/reports/commands/exceptions.py:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 #, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "Rimuovi il grafico dalla dashboard" +msgid "Force" +msgstr "Sorgente" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Devi specificare una colonna numerica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -#, fuzzy -msgid "My column" -msgstr "Colonna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Metrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 #, fuzzy -msgid "NOT GROUPED BY" -msgstr "Uno o più controlli per 'Raggruppa per'" +msgid "Disabled" +msgstr "Modifica Tabella" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -#, fuzzy -msgid "NUMERIC" -msgstr "Metrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Nome" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +#, fuzzy +msgid "Node select mode" +msgstr "Seleziona una colonna" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" msgstr "" -#: superset/views/database/forms.py:416 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 #, fuzzy -msgid "Name of table to be created from columnar data." -msgstr "Nome delle tabella esistente nella sorgente del database" +msgid "Allow node selections" +msgstr "Seleziona una colonna" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Nome delle tabella esistente nella sorgente del database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "" -#: superset/views/database/forms.py:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 #, fuzzy -msgid "Name of table to be created with CSV file" -msgstr "Nome delle tabella esistente nella sorgente del database" +msgid "Node size" +msgstr "Grandezza della bolla" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 #, fuzzy -msgid "Name of the id column" -msgstr "Colonna del Tempo" +msgid "Edge width" +msgstr "Larghezza" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Nome delle tabella esistente nella sorgente del database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -#, fuzzy -msgid "Name your database" -msgstr "Database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +#, fuzzy +msgid "Repulsion" +msgstr "Espressione" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 #, fuzzy -msgid "Network error" -msgstr "Errore di rete." +msgid "Friction" +msgstr "Azione" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Errore di rete." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +#, fuzzy +msgid "Graph Chart" msgstr "Grafico a torta" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -#, fuzzy -msgid "New dataset" -msgstr "Seleziona una destinazione" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "New dataset name" -msgstr "Database" +msgid "Series type" +msgstr "Tipo" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -#, fuzzy -msgid "New filter set" -msgstr "Abilita il filtro di Select" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -#, fuzzy -msgid "New header" -msgstr "Grafico a torta" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 #, fuzzy -msgid "Nightingale Rose Chart" +msgid "Area chart" msgstr "Esplora grafico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Nessun Accesso!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -#, fuzzy -msgid "No Data" -msgstr "Metadati JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -#, fuzzy -msgid "No Results" -msgstr "visualizza risultati" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "Grafici" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -#, fuzzy -msgid "No annotation layers" -msgstr "Azione" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "No applied filters" -msgstr "Aggiungi filtro" +msgid "Shared query fields" +msgstr "Query salvate" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 #, fuzzy -msgid "No available filters." -msgstr "Filtri" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Grafici" +msgid "Query A" +msgstr "condividi query" -#: superset-frontend/src/features/home/EmptyState.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 #, fuzzy -msgid "No charts yet" -msgstr "Grafici" +msgid "Advanced analytics Query A" +msgstr "Analytics avanzate" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 #, fuzzy -msgid "No columns" -msgstr "Colonna" +msgid "Query B" +msgstr "condividi query" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 #, fuzzy -msgid "No columns found" -msgstr "Colonna del Tempo" +msgid "Advanced analytics Query B" +msgstr "Analytics avanzate" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "Elenco Dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Metadati JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -#, fuzzy -msgid "No database tables found" -msgstr "Template CSS" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -#, fuzzy -msgid "No description available." -msgstr "descrizione" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -#, fuzzy -msgid "No filter" -msgstr "Aggiungi filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 #, fuzzy -msgid "No filters" -msgstr "Aggiungi filtro" +msgid "Mixed Chart" +msgstr "Grafico a torta" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -#, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "No matching records found" -msgstr "Nessun record trovato" +msgid "Show Total" +msgstr "Mostra colonna" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 #, fuzzy -msgid "No of Bins" -msgstr "Copia di %s" +msgid "Pie Chart" +msgstr "Grafico a torta" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Nessun record trovato" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 #, fuzzy -msgid "No results" -msgstr "visualizza risultati" +msgid "Label position" +msgstr "Testa la Connessione" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Nessun record trovato" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 #, fuzzy -msgid "No saved expressions found" -msgstr "Espressione SQL" +msgid "Radar Chart" +msgstr "Esplora grafico" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 #, fuzzy -msgid "No saved metrics found" -msgstr "Seleziona una metrica" +msgid "Primary Metric" +msgstr "Metrica" -#: superset-frontend/src/features/home/EmptyState.tsx:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 #, fuzzy -msgid "No saved queries yet" -msgstr "Query salvate" +msgid "Secondary Metric" +msgstr "Mostra metrica" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -#, fuzzy -msgid "No table columns" -msgstr "Colonna del Tempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 #, fuzzy -msgid "No temporal columns found" -msgstr "Colonna del Tempo" +msgid "Hierarchy" +msgstr "Cerca" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -#, fuzzy -msgid "No time columns" -msgstr "Colonna del Tempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +#, fuzzy +msgid "Sunburst Chart" +msgstr "Esplora grafico" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -#, fuzzy -msgid "Node select mode" -msgstr "Seleziona una colonna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 #, fuzzy -msgid "Node size" -msgstr "Grandezza della bolla" +msgid "Generic Chart" +msgstr "Grafico a Proiettile" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +#, fuzzy +msgid "Series Style" +msgstr "Serie Temporali - Stacked" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +#, fuzzy +msgid "Area chart opacity" +msgstr "Esplora grafico" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 #, fuzzy -msgid "Not added to any dashboard" -msgstr "Aggiungi ad una nuova dashboard" +msgid "Area Chart" +msgstr "Esplora grafico" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 #, fuzzy -msgid "Not available" -msgstr "descrizione" +msgid "Axis Title" +msgstr "%s - senza nome" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 #, fuzzy -msgid "Not in" -msgstr "Azione" +msgid "AXIS TITLE POSITION" +msgstr "Testa la Connessione" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +#, fuzzy +msgid "Axis Format" +msgstr "Formato Datetime" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +#, fuzzy +msgid "Axis Bounds" +msgstr "Controlli del filtro" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset/views/database/forms.py:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 #, fuzzy -msgid "Null Values" -msgstr "Valore del filtro" +msgid "Chart Orientation" +msgstr "Azione" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 #, fuzzy -msgid "Null imputation" +msgid "Bar orientation" msgstr "Azione" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "" - -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Valore del filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +#, fuzzy +msgid "Horizontal" +msgstr "Grafici d'orizzonte" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 #, fuzzy -msgid "Number Format" -msgstr "Formato D3" +msgid "Orientation of bar chart" +msgstr "Distribuzione - Grafico Barre" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -#, fuzzy -msgid "Number format" -msgstr "Formato D3" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 #, fuzzy -msgid "Number format string" -msgstr "Formato D3" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" -msgstr "" +msgid "Bar Chart" +msgstr "Esplora grafico" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +#, fuzzy +msgid "Line Chart" +msgstr "Grafico a torta" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +#, fuzzy +msgid "Step type" +msgstr "Tipo" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +#, fuzzy +msgid "Stepped Line" +msgstr "Serie Temporali - Stacked" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +#, fuzzy +msgid "Name of the id column" +msgstr "Colonna del Tempo" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Offset" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Una o più metriche da mostrare" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +#, fuzzy +msgid "Tree orientation" +msgstr "Azione" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Una o più metriche da mostrare" - -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Una o più metriche da mostrare" - -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Una o più metriche da mostrare" - -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" msgstr "" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +#, fuzzy +msgid "left" +msgstr "Cancella" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" msgstr "" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +#, fuzzy +msgid "right" +msgstr "Altezza" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +#, fuzzy +msgid "bottom" +msgstr "dttm" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Sorgente Dati" - -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Esponi in SQL Lab" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Esponi in SQL Lab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +#, fuzzy +msgid "Pin" +msgstr "Min" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 #, fuzzy -msgid "Operator" -msgstr "Seleziona operatore" +msgid "Symbol size" +msgstr "Grandezza della bolla" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -#, fuzzy -msgid "Optional d3 date format string" -msgstr "Formato Datetime" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 #, fuzzy -msgid "Optional d3 number format string" -msgstr "Seleziona una metrica per l'asse destro" +msgid "Tree Chart" +msgstr "Esplora grafico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 #, fuzzy -msgid "Options" -msgstr "Azione" +msgid "Key" +msgstr "Sankey" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Treemap" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 #, fuzzy -msgid "Orientation" -msgstr "Azione" +msgid "Increase" +msgstr "Creato il" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 #, fuzzy -msgid "Orientation of bar chart" -msgstr "Distribuzione - Grafico Barre" +msgid "Decrease" +msgstr "Creato il" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Colonna del Tempo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Grafico a Proiettile" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -#, fuzzy -msgid "Original" -msgstr "Login" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 #, fuzzy -msgid "Other" -msgstr "mese" +msgid "Handlebars Template" +msgstr "Template CSS" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 #, fuzzy -msgid "Overlap" -msgstr "Mappa del Mondo" +msgid "Percentage metrics" +msgstr "Mostra metrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Sovrascrivi la slice %s" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Sovrascrivi la slice %s" - -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" msgstr "" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Proprietario" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Proprietari" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +#, fuzzy +msgid "Query mode" +msgstr "Ricerca Query" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset/views/dashboard/mixin.py:64 -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: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." -msgstr "Proprietari è una lista di utenti che può alterare la dashboard." - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Coordinate Parallele" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Parametri" - -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parametri" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +#, fuzzy +msgid "Range for Comparison" +msgstr "Colonna del Tempo" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 #, fuzzy -msgid "Parameters " -msgstr "Parametri" +msgid "Filters for Comparison" +msgstr "Colonna del Tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 #, fuzzy -msgid "Partition Chart" -msgstr "Esplora grafico" +msgid "Apply metrics on" +msgstr "Metrica" -#: superset/viz.py:3069 -msgid "Partition Diagram" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 #, fuzzy -msgid "Password" -msgstr "Porta Broker" +msgid "Aggregation function" +msgstr "Testa la Connessione" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +#, fuzzy +msgid "Count" +msgstr "Colonna" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +#, fuzzy +msgid "Count Unique Values" +msgstr "Filtrabile" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#, fuzzy +msgid "List Unique Values" +msgstr "Filtrabile" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 #, fuzzy -msgid "Percent Change" -msgstr "Ultima Modifica" +msgid "Average" +msgstr "Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -#, fuzzy -msgid "Percentage" -msgstr "Ultima Modifica" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -#, fuzzy -msgid "Percentage change" -msgstr "Ultima Modifica" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 #, fuzzy -msgid "Percentage metrics" -msgstr "Mostra metrica" +msgid "Minimum" +msgstr "minuto" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Seleziona una destinazione" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "Mostra colonna" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +#, fuzzy +msgid "Show columns total" +msgstr "Mostra colonna" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -"Seleziona una granularità nella sezione tempo e deseleziona 'Includi " -"Tempo'" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Seleziona una metrica per l'asse sinistro" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "Mostra colonna" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Seleziona una metrica per l'asse destro" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" +msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Seleziona una metrica per x, y e grandezza" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Seleziona una metrica da visualizzare" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Seleziona una metrica!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +#, fuzzy +msgid "Combine metrics" +msgstr "Mostra metrica" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Seleziona una granularità per la serie temporale" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Seleziona almeno un campo per [Series]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Seleziona almeno una metrica" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +#, fuzzy +msgid "value ascending" +msgstr "Importa" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Seleziona esattamente 2 colonne come [Sorgente / Destinazione]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +#, fuzzy +msgid "value descending" +msgstr "Importa" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -#, fuzzy -msgid "Pie Chart" -msgstr "Grafico a torta" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 #, fuzzy -msgid "Pin" -msgstr "Min" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Vista Pivot" +msgid "Sort columns by" +msgstr "Visualizza colonne" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -#, fuzzy -msgid "Pivoted" -msgstr "Modifica" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Vista Pivot" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset/viz.py:3234 -#, fuzzy -msgid "Please choose at least one groupby" -msgstr "Seleziona almeno una metrica" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" +msgstr "" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Seleziona metriche differenti per gli assi destro e sinistro" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#, fuzzy +msgid "No matching records found" +msgstr "Nessun record trovato" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Inserisci un nome per la slice" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 #, fuzzy -msgid "Please filter set name" -msgstr "Inserisci un nome per la dashboard" +msgid "Timestamp format" +msgstr "Formato Datetime" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +#, fuzzy +msgid "Search box" +msgstr "Cerca" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" +msgid "Cell bars" +msgstr "Grafico a Proiettile" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Seleziona metriche differenti per gli assi destro e sinistro" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +#, fuzzy +msgid "Customize columns" +msgstr "Visualizza colonne" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 #, fuzzy -msgid "Point Size" -msgstr "Grandezza della bolla" +msgid "entries" +msgstr "Query salvate" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -#, fuzzy -msgid "Points" -msgstr "Importa" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -#, fuzzy -msgid "Polygon Column" -msgstr "Colonna" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 #, fuzzy -msgid "Polygon Encoding" -msgstr "Importa" +msgid "Word Rotation" +msgstr "Azione" + +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 #, fuzzy -msgid "Polygon Settings" -msgstr "Mostra query salvate" +msgid "square" +msgstr "condividi query" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +#, fuzzy +msgid "failed" +msgstr "Nome Completo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 #, fuzzy -msgid "Port" +msgid "pending" msgstr "Importa" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "running" +msgstr "Testa la Connessione" + +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "Posizione del JSON" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "Nessun Accesso!" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "La query non può essere caricata" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Errore nel recupero dei dati dal backend" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -#, fuzzy -msgid "Pre-filter" -msgstr "Cerca / Filtra" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "La query è stata fermata." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -#, fuzzy -msgid "Pre-filter is required" -msgstr "Sorgente Dati" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -"Predicato utilizzato quando si fornisce un valore univoco per popolare il" -" componente di controllo del filtro. Supporta la sintassi del template " -"jinja. È utilizzabile solo quando è abilitata l'opzione \"Abilita " -"selezione filtro\"." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -#, fuzzy -msgid "Predictive" -msgstr "Azione" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -#, fuzzy -msgid "Predictive Analytics" -msgstr "Analytics avanzate" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 #, python-format -msgid "Preview: `%s`" -msgstr "" +msgid "Copy of %s" +msgstr "Copia di %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -#, fuzzy -msgid "Primary Metric" -msgstr "Metrica" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -#, fuzzy -msgid "Primary key" -msgstr "Metrica" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +#, fuzzy +msgid "Your query was not properly saved" +msgstr "La tua query è stata salvata" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "La tua query è stata salvata" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "La tua query è stata salvata" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -#, fuzzy -msgid "Private Key Password" -msgstr "Porta Broker" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -#, fuzzy -msgid "Proceed" -msgstr "Creato il" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Profilo" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "query condivisa" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "La query non può essere caricata" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +#, fuzzy +msgid "An error occurred while fetching function names." +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +#, fuzzy +msgid "Primary key" +msgstr "Metrica" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" -msgstr "" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#, fuzzy +msgid "Index" +msgstr "Min" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 #, fuzzy -msgid "Quarter" -msgstr "condividi query" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, fuzzy, python-format -msgid "Quarters %s" -msgstr "Opzioni del grafico" +msgid "explore" +msgstr "Esplora grafico" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 #, fuzzy -msgid "Queries" -msgstr "Query salvate" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "" +msgid "Create Chart" +msgstr "Esplora grafico" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy -msgid "Query A" -msgstr "condividi query" +msgid "Executed SQL" +msgstr "query condivisa" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -#, fuzzy -msgid "Query B" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" msgstr "condividi query" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "" - -#: superset/commands/exceptions.py:142 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 #, fuzzy -msgid "Query does not exist" -msgstr "Sorgente dati e tipo di grafico" - -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "Ricerca Query" +msgid "Run current query" +msgstr "condividi query" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -#, fuzzy -msgid "Query imported" -msgstr "Ricerca Query" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Query vuota?" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Query in un nuovo tab" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 #, fuzzy -msgid "Query mode" -msgstr "Ricerca Query" +msgid "Format SQL" +msgstr "Formato D3" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Ricerca Query" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "Min" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -#, fuzzy -msgid "Query was stopped" -msgstr "La query è stata fermata." - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "La query è stata fermata." +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" msgstr "" -#: superset/row_level_security/commands/exceptions.py:29 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 #, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "La query non può essere caricata" +msgid "Started" +msgstr "Creato il" -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "Template CSS" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Descrizione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -#, fuzzy -msgid "Radar Chart" -msgstr "Esplora grafico" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -#, fuzzy -msgid "Radius in meters" -msgstr "Parametri" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#, fuzzy -msgid "Range" -msgstr "Gestisci" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -#, fuzzy -msgid "Range filter" -msgstr "Aggiungi filtro" - -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -#, fuzzy -msgid "Ranges" -msgstr "Gestisci" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Modifica" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -#, fuzzy -msgid "Ratio" -msgstr "Descrizione" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Salva una slice" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Sovrascrivi la slice %s" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 #, fuzzy -msgid "Recently modified" -msgstr "Ultima Modifica" +msgid "Copy to Clipboard" +msgstr "copia URL in appunti" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Risultati della ricerca" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "Reinvia a questo endpoint al clic sulla tabella dall'elenco delle tabelle" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "Errore..." + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 #, fuzzy -msgid "Refer to the" -msgstr "mese" +msgid "See query details" +msgstr "Query salvate" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +#, fuzzy +msgid "Query was stopped" +msgstr "La query è stata fermata." + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Espressione del Database" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "è stata creata" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Query in un nuovo tab" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 msgid "Refetch results" msgstr "Risultati della ricerca" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Rimuovi il grafico dalla dashboard" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Seleziona una colonna" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -#, fuzzy -msgid "Refresh tables" -msgstr "Serie Temporali - Stacked" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -#, fuzzy -msgid "Refreshing charts" -msgstr "Errore nel recupero dati" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 #, fuzzy -msgid "Refreshing columns" -msgstr "Colonna del Tempo" +msgid "Untitled Dataset" +msgstr "Mostra database" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -#, fuzzy -msgid "Relational" -msgstr "Descrizione" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Salva una slice" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +#, fuzzy +msgid "Existing dataset" +msgstr "Seleziona una destinazione" + +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 #, fuzzy -msgid "Reload" -msgstr "Creato il" +msgid "Save dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Salva come" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "query condivisa" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Annulla" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -#, fuzzy -msgid "Remove cross-filter" -msgstr "Cerca / Filtra" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Mostra query salvate" + +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "copia URL in appunti" + +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -#, fuzzy -msgid "Rendering" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -#, fuzzy -msgid "Report" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -#, fuzzy -msgid "Report Name" -msgstr "Nome Completo" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Ricerca Query" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" msgstr "" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "Permetti CREATE TABLE AS" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "Permetti CREATE TABLE AS" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" msgstr "" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +#, fuzzy +msgid "Create" +msgstr "Creato il" + +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -#, fuzzy -msgid "Report a bug" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Nome Completo" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "Nome Completo" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "" -#: superset/reports/commands/exceptions.py:273 -#, fuzzy -msgid "Report schedule client error" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "" -#: superset/reports/commands/exceptions.py:267 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 #, fuzzy -msgid "Report schedule system error" -msgstr "Importa" +msgid "Add a new tab" +msgstr "Query in un nuovo tab" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Importa" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "" -#: superset-frontend/src/reports/actions/reports.js:121 -#, fuzzy -msgid "Report updated" -msgstr "Nome Completo" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Importa" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -#, fuzzy -msgid "Repulsion" -msgstr "Espressione" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Richiesta di Permessi" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 #, python-format -msgid "Request is incorrect: %(error)s" +msgid "View keys & indexes (%s)" msgstr "" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" msgstr "" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -#, fuzzy -msgid "Request timed out" -msgstr "Cache Timeout" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "copia URL in appunti" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 #, fuzzy -msgid "Resource was not found." +msgid "Jinja templating" msgstr "Template CSS" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -#, fuzzy -msgid "Restore Filter" -msgstr "Cerca / Filtra" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, fuzzy, python-format -msgid "Results %s" -msgstr "visualizza risultati" - -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" msgstr "" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#, fuzzy +msgid "Parameters " +msgstr "Parametri" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" -msgstr "" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Query senza nome" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#, fuzzy +msgid "Control" +msgstr "Colonna" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 #, fuzzy -msgid "Right" -msgstr "Altezza" +msgid "After" +msgstr "Aggiungi filtro" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -#, fuzzy -msgid "Right Axis Format" -msgstr "Metrica asse destro" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -#, fuzzy -msgid "Right Axis Metric" -msgstr "Metrica asse destro" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Metrica asse destro" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Ultima Modifica" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" msgstr "" -#: superset/dashboards/filters.py:200 -#, fuzzy -msgid "Role" -msgstr "Profilo" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" +msgstr "" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Ruoli" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#: superset-frontend/src/components/Chart/Chart.jsx:274 msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset/views/dashboard/mixin.py:65 +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "" + +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "" + +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Ruoli per l'accesso" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -#, fuzzy -msgid "Rolling Function" -msgstr "Testa la Connessione" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -#, fuzzy -msgid "Rolling Window" -msgstr "Testa la Connessione" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "L'aggiornamento del grafico è stato fermato" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Testa la Connessione" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Errore di rete." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 #, fuzzy -msgid "Round cap" -msgstr "Mappa della Nazione" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "" +msgid "Remove cross-filter" +msgstr "Cerca / Filtra" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +#, fuzzy +msgid "Add cross-filter" +msgstr "Aggiungi filtro" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "Visualizza colonne" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#, fuzzy +msgid "No columns found" +msgstr "Colonna del Tempo" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy -msgid "Rule Name" -msgstr "Ricerca Query" +msgid "Edit chart" +msgstr "Modifica grafico" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "Importa" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Esponi in SQL Lab" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, fuzzy, python-format +msgid "Results %s" +msgstr "visualizza risultati" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "condividi query" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Seleziona una colonna" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset/sql_lab.py:480 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 #, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#, fuzzy +msgid "Formatting" +msgstr "Formato Datetime" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#, fuzzy +msgid "Formatted value" +msgstr "Formato D3" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +#, fuzzy +msgid "Reload" +msgstr "Creato il" + +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +#, fuzzy +msgid "Copied to clipboard!" +msgstr "copia URL in appunti" + +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" msgstr "" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "Espressione SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "mese" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "Codice a 3 lettere della nazione" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "Vista Tabella" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "Espressione SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +#, fuzzy +msgid "every minute" +msgstr "mese" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "Query vuota?" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minuto" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "URI SQLAlchemy" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -#, fuzzy -msgid "SSH Password" -msgstr "Porta Broker" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "Min" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -#, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "La query non può essere caricata" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 #, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "La tua query non può essere salvata" +msgid "minute(s)" +msgstr "minuto" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -#, fuzzy -msgid "SSH Tunnel not found." -msgstr "Template CSS" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "Tabelle" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Cerca" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "giorno" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -#, fuzzy -msgid "Satellite" -msgstr "Aggiungi filtro" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Salva una slice" - -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Salva e vai alla dashboard" - -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -#, fuzzy -msgid "Save & go to new dashboard" -msgstr "Salva e vai alla dashboard" - -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Query salvate" - -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Salva come" - -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -#, fuzzy -msgid "Save as Dataset" -msgstr "Seleziona una destinazione" - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -#, fuzzy -msgid "Save as dataset" -msgstr "Seleziona una destinazione" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Salva una slice" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "Salva come" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -#, fuzzy -msgid "Save changes" -msgstr "Ultima Modifica" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Grafico a torta" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Salva e vai alla dashboard" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -#, fuzzy -msgid "Save dataset" -msgstr "Seleziona una destinazione" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "query condivisa" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -#, fuzzy -msgid "Save to new dashboard" -msgstr "Salva e vai alla dashboard" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Salva come" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Query salvate" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -#, fuzzy -msgid "Saved expressions" -msgstr "Espressione SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Seleziona una metrica" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Query salvate" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "La query non può essere caricata" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy -msgid "Schedule a new email report" -msgstr "Importa" +msgid "Successfully changed dataset!" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Testa la Connessione" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Mostra query salvate" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +#, fuzzy +msgid "Swap dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Mostra query salvate" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#, fuzzy +msgid "Proceed" +msgstr "Creato il" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Cerca / Filtra" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Aggiungi filtro" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Schema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +#, fuzzy +msgid "NUMERIC" +msgstr "Metrica" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 #, fuzzy -msgid "Schema cache timeout" -msgstr "Cache Timeout" +msgid "DATETIME" +msgstr "Tempo" -#: superset/views/core.py:1186 -msgid "Schema undefined" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -"Schema, va utilizzato soltanto in alcuni database come Postgres, Redshift" -" e DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Tipo" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +#, fuzzy +msgid "Advanced data type" +msgstr "Analytics avanzate" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +#, fuzzy +msgid "Advanced Data type" +msgstr "Analytics avanzate" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Formato Datetime" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Cerca" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Cerca / Filtra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +#, fuzzy +msgid "Certified By" +msgstr "Modificato" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -#, fuzzy -msgid "Search all charts" -msgstr "Grafico a Proiettile" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Modificato" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Cerca / Filtra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -#, fuzzy -msgid "Search box" -msgstr "Cerca" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 #, fuzzy -msgid "Search columns" -msgstr "Visualizza colonne" +msgid "Default datetime" +msgstr "Valore del filtro" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Filtrabile" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 #, fuzzy -msgid "Search in filters" -msgstr "Cerca / Filtra" +msgid "" +msgstr "Colonna del Tempo" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #, fuzzy -msgid "Search tables" -msgstr "Ruoli Utente" +msgid "Select owners" +msgstr "Seleziona una colonna" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Cerca" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "" -#: superset/db_engine_specs/base.py:97 -msgid "Second" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -#, fuzzy -msgid "Secondary Metric" -msgstr "Mostra metrica" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 #, python-format -msgid "Seconds %s" +msgid "Calculated column [%s] requires an expression" msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Sicurezza" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Sicurezza" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Sicurezza" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "URL del Database" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -#, fuzzy -msgid "See query details" -msgstr "Query salvate" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Cache Timeout" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 #, fuzzy -msgid "Select" -msgstr "Seleziona %s" +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Select Viz Type" -msgstr "Seleziona un tipo di visualizzazione" +msgid "Normalize column names" +msgstr "Visualizza colonne" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -#, fuzzy -msgid "Select a column" -msgstr "Seleziona data finale" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 #, fuzzy -msgid "Select a dashboard" -msgstr "Importa dashboard" +msgid "" +msgstr "Grafici" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -#, fuzzy -msgid "Select a database table." -msgstr "Database" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -#, fuzzy -msgid "Select a database to connect" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" msgstr "Database" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 #, fuzzy -msgid "Select a dimension" -msgstr "Importa dashboard" +msgid "Metric Key" +msgstr "Metrica" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "Formato D3" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Seleziona un tipo di visualizzazione" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "Seleziona data finale" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Select all items" -msgstr "Seleziona data finale" +msgid "" +msgstr "Seleziona una metrica" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "Grafico a Proiettile" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#, fuzzy -msgid "Select charts" -msgstr "Grafico a Proiettile" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -#, fuzzy -msgid "Select color scheme" -msgstr "Testa la Connessione" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Visualizza colonne" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -#, fuzzy -msgid "Select column" -msgstr "Colonna del Tempo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 -#, fuzzy -msgid "Select current page" -msgstr "Seleziona data finale" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -#, fuzzy -msgid "Select database & schema" -msgstr "Database" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Select database table" -msgstr "Database" +msgid "Error saving dataset" +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "Sorgente Dati" - -#: superset-frontend/src/components/ImportModal/index.tsx:445 -#, fuzzy -msgid "Select file" -msgstr "Seleziona data finale" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -#, fuzzy -msgid "Select filter" -msgstr "Seleziona data finale" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Mostra database" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -#, fuzzy -msgid "Select operator" -msgstr "Seleziona operatore" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "Cancella" + +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 #, fuzzy -msgid "Select owners" -msgstr "Seleziona una colonna" +msgid "More" +msgstr "Sorgente" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -#, fuzzy -msgid "Select saved metrics" -msgstr "Seleziona una metrica" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Seleziona data iniziale" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +#, fuzzy +msgid "Manage your databases" +msgstr "Database" + +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Opzioni del grafico" + +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "Errore..." + +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 #, fuzzy -msgid "Select the geojson column" -msgstr "Seleziona data finale" +msgid "Missing dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Parametri" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -#, fuzzy -msgid "Series Limit Sort Descending" -msgstr "Importa" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Series Order" -msgstr "Query salvate" +msgid "Hide password." +msgstr "Porta Broker" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 #, fuzzy -msgid "Series Style" -msgstr "Serie Temporali - Stacked" +msgid "Show password." +msgstr "Porta Broker" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 +#: superset-frontend/src/components/ImportModal/index.tsx:291 #, fuzzy -msgid "Series type" -msgstr "Tipo" +msgid "Database passwords" +msgstr "Database" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "Porta Broker" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Sovrascrivi la slice %s" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -#, fuzzy -msgid "Set up an email report" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Importa" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +#, fuzzy +msgid "Select file" +msgstr "Seleziona data finale" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -#, fuzzy -msgid "Share chart by email" -msgstr "Esplora grafico" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 #, fuzzy -msgid "Share permalink by email" -msgstr "Esplora grafico" +msgid "Sort" +msgstr "Importa" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "query condivisa" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -#, fuzzy -msgid "Shared query fields" -msgstr "Query salvate" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "Seleziona data finale" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Nome Completo" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Seleziona data finale" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +#, fuzzy +msgid "clear all filters" +msgstr "Cerca / Filtra" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/ListView/ListView.tsx:455 +#, fuzzy +msgid "No Data" +msgstr "Metadati JSON" + +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "Start date" +msgstr "Ultima Modifica" + +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "End date" +msgstr "Aggiungi Database" + +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 #, fuzzy -msgid "Show Bubbles" -msgstr "Mostra Tabelle" +msgid "Filter" +msgstr "Filtri" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Template CSS" - -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Mostra grafico" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Ultima Modifica" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Mostra colonna" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Modificato" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Creato il" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Mostra database" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Creato il" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -#, fuzzy -msgid "Show Labels" -msgstr "Mostra Tabelle" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Mostra colonna" +#: superset-frontend/src/components/Table/index.tsx:216 +#, fuzzy +msgid "Filter menu" +msgstr "Valore del filtro" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Mostra metrica" +#: superset-frontend/src/components/Table/index.tsx:219 +#, fuzzy +msgid "No filters" +msgstr "Aggiungi filtro" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#: superset-frontend/src/components/Table/index.tsx:220 #, fuzzy -msgid "Show Metric Names" -msgstr "Mostra metrica" +msgid "Select all items" +msgstr "Seleziona data finale" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 +#: superset-frontend/src/components/Table/index.tsx:221 #, fuzzy -msgid "Show Range Filter" +msgid "Search in filters" msgstr "Cerca / Filtra" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Mostra query salvate" +#: superset-frontend/src/components/Table/index.tsx:223 +#, fuzzy +msgid "Select current page" +msgstr "Seleziona data finale" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Mostra Tabelle" +#: superset-frontend/src/components/Table/index.tsx:224 +#, fuzzy +msgid "Invert current page" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:225 +#, fuzzy +msgid "Clear all data" +msgstr "Grafico a Proiettile" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 +#: superset-frontend/src/components/Table/index.tsx:226 #, fuzzy -msgid "Show Total" -msgstr "Mostra colonna" +msgid "Select all data" +msgstr "Seleziona data finale" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 +#: superset-frontend/src/components/Table/index.tsx:230 #, fuzzy -msgid "Show Value" -msgstr "Mostra Tabelle" +msgid "Click to sort descending" +msgstr "Importa" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 +#: superset-frontend/src/components/Table/index.tsx:231 #, fuzzy -msgid "Show Values" -msgstr "Mostra Tabelle" +msgid "Click to sort ascending" +msgstr "Importa" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -#, fuzzy -msgid "Show all columns" -msgstr "Mostra colonna" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +#: superset-frontend/src/components/Tags/utils.tsx:72 #, fuzzy -msgid "Show chart description" -msgstr "descrizione" +msgid "You do not have permission to read tags" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 #, fuzzy -msgid "Show columns total" -msgstr "Mostra colonna" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "" +msgid "Timezone selector" +msgstr "Seleziona una colonna" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 #, fuzzy -msgid "Show empty columns" -msgstr "Colonna del Tempo" +msgid "Failed to save cross-filter scoping" +msgstr "Cerca / Filtra" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -#, fuzzy -msgid "Show label" -msgstr "Mostra Tabelle" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -#, fuzzy -msgid "Show less columns" -msgstr "Colonna del Tempo" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 #, fuzzy -msgid "Show password." -msgstr "Porta Broker" +msgid "[ untitled dashboard ]" +msgstr "Aggiungi ad una nuova dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -#, fuzzy -msgid "Show progress" -msgstr "Elenco Dashboard" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Non posso connettermi al server" + +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -#, fuzzy -msgid "Show time column" -msgstr "Colonna del Tempo" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +#, fuzzy +msgid "Edit the dashboard" +msgstr "Aggiungi ad una nuova dashboard" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "" + +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" +msgstr "" + +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Salva e vai alla dashboard" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 #, fuzzy -msgid "Single Metric" -msgstr "Lista Metriche" +msgid "viz type" +msgstr "Tipo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -#, fuzzy -msgid "Single Value" -msgstr "Valore del filtro" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -#, fuzzy -msgid "Single value" -msgstr "Valore del filtro" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Creato il" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Controlli del filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +#, fuzzy +msgid "Filter charts" +msgstr "Controlli del filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, fuzzy, python-format +msgid "Sort by %s" +msgstr "Importa" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "Grafici" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Tipo" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Database" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Esplora grafico" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Rimuovi il grafico dalla dashboard" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" msgstr "" -#: superset/commands/exceptions.py:119 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 #, fuzzy -msgid "Some roles do not exist" -msgstr "Elenco Dashboard" - -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "" +msgid "There are no charts added to this dashboard" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -#, fuzzy -msgid "Sort" -msgstr "Importa" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -#, fuzzy -msgid "Sort Bars" -msgstr "Importa dashboard" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -#, fuzzy -msgid "Sort Descending" -msgstr "Importa" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -#, fuzzy -msgid "Sort Metric" -msgstr "Mostra metrica" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 #, fuzzy -msgid "Sort Series Ascending" -msgstr "Importa" +msgid "Deactivate" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 #, fuzzy -msgid "Sort Series By" -msgstr "Query vuota?" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" -msgstr "" +msgid "Save changes" +msgstr "Ultima Modifica" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "Aggiungi filtro" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 #, fuzzy, python-format -msgid "Sort by %s" -msgstr "Importa" +msgid "Applied filters (%d)" +msgstr "Aggiungi filtro" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -#, fuzzy -msgid "Sort by metric" -msgstr "Mostra metrica" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 #, fuzzy -msgid "Sort columns by" -msgstr "Visualizza colonne" +msgid "Add the name of the dashboard" +msgstr "Salva e vai alla dashboard" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "Elenco Dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 #, fuzzy -msgid "Sort filter values" -msgstr "Filtrabile" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Mostra metrica" +msgid "Undo the action" +msgstr "Seleziona una colonna" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 #, fuzzy -msgid "Sort type" -msgstr "Grafici" +msgid "Edit dashboard" +msgstr "Aggiungi ad una nuova dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Sorgente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +#, fuzzy +msgid "Refreshing charts" +msgstr "Errore nel recupero dati" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Importa dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Guarda questa slice: %s" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Rimuovi il grafico dalla dashboard" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" msgstr "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "Esporta in YAML" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 #, fuzzy -msgid "Split number" -msgstr "Numero Grande" +msgid "Copy permalink to clipboard" +msgstr "copia URL in appunti" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 #, fuzzy -msgid "Square kilometers" -msgstr "Cerca / Filtra" +msgid "Share permalink by email" +msgstr "Esplora grafico" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 #, fuzzy -msgid "Square meters" -msgstr "Parametri" +msgid "Embed dashboard" +msgstr "Salva e vai alla dashboard" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 #, fuzzy -msgid "Square miles" -msgstr "Query salvate" +msgid "Manage email report" +msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#, fuzzy +msgid "Confirm overwrite" +msgstr "Sovrascrivi la slice %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, fuzzy, python-format +msgid "Last Updated %s by %s" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Applica" + +#: 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:66 +#, fuzzy +msgid "Error" +msgstr "Errore..." + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#, fuzzy +msgid "JSON metadata is invalid!" +msgstr "json non è valido" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +#, fuzzy +msgid "Dashboard properties updated" +msgstr "Elenco Dashboard" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" +#: 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!" + +#: 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." +msgstr "Proprietari è una lista di utenti che può alterare la dashboard." + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " +#: 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 " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Elenco Dashboard" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -#, fuzzy -msgid "Start angle" -msgstr "Ultima Modifica" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "Slug" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "" +#: 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" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "Start date" -msgstr "Ultima Modifica" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" +#: 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 "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -#, fuzzy -msgid "Started" -msgstr "Creato il" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "Metadati JSON" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset/sql_lab.py:503 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 #, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -#, fuzzy -msgid "Step type" -msgstr "Tipo" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -#, fuzzy -msgid "Stepped Line" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Query vuota?" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 #, fuzzy -msgid "Stream" -msgstr "Istogramma" +msgid "Hide chart description" +msgstr "descrizione" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +#, fuzzy +msgid "Show chart description" +msgstr "descrizione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Cerca / Filtra" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "condividi query" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "Opzioni del grafico" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 #, fuzzy -msgid "Stroke Color" -msgstr "Porta Broker" +msgid "Share chart by email" +msgstr "Esplora grafico" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 #, fuzzy -msgid "Stroke Width" -msgstr "Larghezza" +msgid "Check out this chart: " +msgstr "Guarda questa slice: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 #, fuzzy -msgid "Stroked" -msgstr "Creato il" +msgid "Export to .CSV" +msgstr "Esporta in YAML" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +#, fuzzy +msgid "Export to Excel" +msgstr "Esporta in YAML" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Esporta in YAML" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Cerca" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -#, fuzzy -msgid "Successfully changed dataset!" -msgstr "Seleziona una destinazione" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +#, fuzzy +msgid "An error occurred while opening Explore" +msgstr "Errore nel rendering della visualizzazione: %s" + +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#, fuzzy +msgid "Empty column" +msgstr "Colonna" + +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 #, fuzzy -msgid "Sum values" -msgstr "Valore del filtro" - -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Sunburst" +msgid "You can" +msgstr "Mappa della Nazione" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 #, fuzzy -msgid "Sunburst Chart" -msgstr "Esplora grafico" +msgid "create a new chart" +msgstr "Creato il" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -#, fuzzy -msgid "Sunburst Chart v2" -msgstr "Esplora grafico" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 #, fuzzy -msgid "Superset Chart" -msgstr "Esplora grafico" +msgid "edit mode" +msgstr "Ricerca Query" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Inserisci un nome per la dashboard" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Esplora grafico" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Importa dashboard" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#, fuzzy -msgid "Supported databases" -msgstr "Database" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 #, fuzzy -msgid "Swap dataset" -msgstr "Seleziona una destinazione" +msgid "Text" +msgstr "textarea" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 #, fuzzy -msgid "Symbol size" -msgstr "Grandezza della bolla" +msgid "Add/Edit Filters" +msgstr "Aggiungi filtro" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#, fuzzy +msgid "No filters are currently added to this dashboard." +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +#, fuzzy +msgid "Apply filters" +msgstr "Filtri" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 #, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "è temporale" +msgid "Locate the chart" +msgstr "Creato il" -#: superset-frontend/src/explore/constants.ts:91 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "è temporale" +msgid "Cross-filters" +msgstr "Cerca / Filtra" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Nome" - -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Grafico a Proiettile" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabella" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Grafico a Proiettile" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Vista Tabella" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" +msgstr "" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 #, fuzzy -msgid "Table cache timeout" -msgstr "Cache Timeout" +msgid "More filters" +msgstr "Aggiungi filtro" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 #, fuzzy -msgid "Table columns" -msgstr "Colonna del Tempo" +msgid "No applied filters" +msgstr "Aggiungi filtro" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -#, fuzzy -msgid "Table loading" -msgstr "Importa" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "Aggiungi filtro" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +#, fuzzy +msgid "Cannot load filter" +msgstr "Cerca / Filtra" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "Una o più metriche da mostrare" - -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tabelle" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset/tags/commands/exceptions.py:34 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 #, fuzzy -msgid "Tag could not be created." -msgstr "La tua query non può essere salvata" +msgid "Filter type" +msgstr "Valore del filtro" -#: superset/tags/commands/exceptions.py:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 #, fuzzy -msgid "Tag could not be deleted." -msgstr "La query non può essere caricata" - -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "" +msgid "Title is required" +msgstr "Sorgente Dati" -#: superset/tags/commands/exceptions.py:30 -msgid "Tag parameters are invalid." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" msgstr "" -#: superset/tags/commands/exceptions.py:42 -#, fuzzy -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:733 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:430 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 #, fuzzy -msgid "Target" -msgstr "Database" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" -msgstr "" +msgid "[untitled]" +msgstr "%s - senza nome" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +#, fuzzy +msgid "Add and edit filters" +msgstr "Aggiungi filtro" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +#, fuzzy +msgid "Column select" +msgstr "Seleziona una colonna" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Parametri" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +#, fuzzy +msgid "Select a column" +msgstr "Seleziona data finale" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Testa la Connessione" - -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Testa la Connessione" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Seleziona data finale" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 #, fuzzy -msgid "Text" -msgstr "textarea" +msgid "Value is required" +msgstr "Sorgente Dati" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#, fuzzy +msgid "Limit type" +msgstr "Tipo" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "Filtri" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" -msgstr "" -"Il CSS di ogni singola dashboard può essere modificato qui, oppure nella " -"vista della dashboard dove i cambiamenti sono visibili immediatamente" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Aggiungi filtro" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +#, fuzzy +msgid "Values dependent on" +msgstr "Importa" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +#, fuzzy +msgid "Filter Configuration" +msgstr "Controlli del filtro" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +#, fuzzy +msgid "Filter Settings" +msgstr "Abilita il filtro di Select" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 #, fuzzy -msgid "The annotation has been saved" -msgstr "La tua query non può essere salvata" +msgid "Select filter" +msgstr "Seleziona data finale" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 #, fuzzy -msgid "The annotation has been updated" -msgstr "La tua query non può essere salvata" +msgid "Range filter" +msgstr "Aggiungi filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" msgstr "" -#: superset/common/query_context_processor.py:585 -#, fuzzy -msgid "The chart datasource does not exist" -msgstr "Sorgente dati e tipo di grafico" - -#: superset/common/query_context_processor.py:583 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 #, fuzzy -msgid "The chart does not exist" -msgstr "Sorgente dati e tipo di grafico" +msgid "Time filter" +msgstr "Aggiungi filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Colonna del Tempo" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +#, fuzzy +msgid "Group By" +msgstr "Raggruppa per" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Raggruppa per" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +#, fuzzy +msgid "Pre-filter is required" +msgstr "Sorgente Dati" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Valore del filtro" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" msgstr "" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +#, fuzzy +msgid "Filter Type" +msgstr "Valore del filtro" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +#, fuzzy +msgid "Dataset is required" +msgstr "Sorgente Dati" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset/connectors/sqla/views.py:114 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -"Il tipo di dato è dedotto dal database. In alcuni casi potrebbe essere " -"necessario inserire manualmente un tipo di colonna definito " -"dall'espressione. Nella maggior parte dei casi gli utenti non hanno " -"bisogno di fare questa modifica." -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +#, fuzzy +msgid "Pre-filter" +msgstr "Cerca / Filtra" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +#, fuzzy +msgid "No filter" +msgstr "Aggiungi filtro" -#: superset/sqllab/commands/estimate.py:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 #, fuzzy -msgid "The database could not be found" -msgstr "Template CSS" +msgid "Sort filter values" +msgstr "Filtrabile" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +#, fuzzy +msgid "Sort type" +msgstr "Grafici" -#: superset/errors.py:99 -msgid "The database is under an unusual load." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" msgstr "" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +#, fuzzy +msgid "Sort Metric" +msgstr "Mostra metrica" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Mostra metrica" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 #, fuzzy -msgid "The database was not found." -msgstr "Template CSS" +msgid "Single Value" +msgstr "Valore del filtro" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +#, fuzzy +msgid "Default Value" +msgstr "Valore del filtro" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +#, fuzzy +msgid "Default value is required" +msgstr "Sorgente Dati" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "La query non può essere caricata" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "" -#: superset/errors.py:98 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 #, fuzzy -msgid "The datasource is too large to query." -msgstr "Sorgente Dati" +msgid "Restore Filter" +msgstr "Cerca / Filtra" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +#, fuzzy +msgid "Column is required" +msgstr "Sorgente Dati" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -#, fuzzy +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "Durata (in secondi) per il timeout della cache per questa slice." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" msgstr "" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" msgstr "" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." msgstr "" -"Elenco delle slice associate a questa tabella. Modificando questa origine" -" dati, è possibile modificare le modalità di comportamento delle slice " -"associate. Inoltre, va tenuto presente che le slice devono indicare " -"un'origine dati, pertanto questo modulo non registra le impostazioni " -"qualora si modifica un'origine dati. Se vuoi modificare l'origine dati " -"per una slide, devi sovrascriverla dal 'vista di esplorazione'" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -#: superset/databases/schemas.py:222 +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#, fuzzy +msgid "White" +msgstr "Titolo" + +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Filtri" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +msgid "Click to edit %s." msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "Query in un nuovo tab" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "Grafico a torta" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" msgstr "" -#: superset/errors.py:134 +#: superset-frontend/src/explore/constants.ts:70 #, fuzzy -msgid "The object does not exist in the given database." -msgstr "Nome delle tabella esistente nella sorgente del database" +msgid "In" +msgstr "Min" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "Azione" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." -msgstr "" +#: superset-frontend/src/explore/constants.ts:87 +#, fuzzy +msgid "Is false" +msgstr "Modifica Tabella" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "" +#: superset-frontend/src/explore/constants.ts:89 +#, fuzzy +msgid "TEMPORAL_RANGE" +msgstr "è temporale" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset/errors.py:109 -#, fuzzy -msgid "The port is closed." -msgstr "Nome Completo" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Una o più metriche da mostrare" -#: superset/errors.py:142 -msgid "The port number is invalid." +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Metrica asse destro" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Seleziona una metrica per l'asse destro" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Seleziona la metrica" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "La query non può essere caricata" - -#: superset/sqllab/commands/estimate.py:86 -#, python-format +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/controls.jsx:310 +msgid "" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" +#: superset-frontend/src/explore/controls.jsx:327 +msgid "" +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" msgstr "" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" msgstr "" -#: superset/errors.py:138 +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Grandezza della bolla" + +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" msgstr "" -#: superset/db_engine_specs/bigquery.py:203 +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +#, fuzzy +msgid "An error occurred while starring this chart" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/actions/saveModalActions.js:145 #, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +msgid "Chart [%s] has been overwritten" msgstr "" -#: superset/db_engine_specs/presto.py:673 +#: superset-frontend/src/explore/actions/saveModalActions.js:153 #, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#, fuzzy +msgid "GROUP BY" +msgstr "Raggruppa per" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#, fuzzy +msgid "NOT GROUPED BY" +msgstr "Uno o più controlli per 'Raggruppa per'" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -"Tabella creata. Come parte di questo processo di configurazione in due " -"fasi, è necessario andare sul pulsante di modifica della nuova tabella " -"per configurarla." -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#, fuzzy +msgid "Continue" +msgstr "Colonna" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +#, fuzzy +msgid "Clear form" +msgstr "Formato D3" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset-frontend/src/explore/controls.jsx:271 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "" + +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +#, fuzzy +msgid "Chart height" +msgstr "Grafici" + +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#, fuzzy +msgid "Chart width" +msgstr "Grafici" + +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Query salvate" + +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "Salva come" + +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Grafici" + +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "Database" + +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Aggiungi ad una nuova dashboard" + +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +#, fuzzy +msgid "Select a dashboard" +msgstr "Importa dashboard" + +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#, fuzzy +msgid "Select" +msgstr "Seleziona %s" + +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "Salva e vai alla dashboard" + +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "Creato il" + +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#, fuzzy +msgid " a new one" +msgstr "Cambiato il" + +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Salva e vai alla dashboard" + +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Grafico a torta" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +#, fuzzy +msgid "Formatted date" +msgstr "Formato D3" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +#, fuzzy +msgid "Column Formatting" +msgstr "Formato Datetime" + +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "Il tipo di visualizzazione da mostrare" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "Tabelle" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +#, fuzzy +msgid "No results" +msgstr "visualizza risultati" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "Mostra database" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "The username \"%(username)s\" does not exist." +msgid "Showing %s of %s" msgstr "" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Aggiungi ad una nuova dashboard" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 #, fuzzy -msgid "There are no charts added to this dashboard" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "Not added to any dashboard" +msgstr "Aggiungi ad una nuova dashboard" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#, fuzzy +msgid "Not available" +msgstr "descrizione" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "Grafici" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -#, fuzzy -msgid "There was an error fetching dataset" -msgstr "Errore nel creare il datasource" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -#, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "Errore nel recupero dei metadati della tabella" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 +msgid "" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "Errore nel creare il datasource" +msgid "Chart Source" +msgstr "Sorgente Dati" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" -msgstr "" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Sorgente Dati" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#, fuzzy +msgid "Original" +msgstr "Login" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#, fuzzy +msgid "Pivoted" +msgstr "Modifica" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +#, fuzzy +msgid "Chart properties updated" +msgstr "Elenco Dashboard" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#, fuzzy +msgid "Edit Chart Properties" +msgstr "Elenco Dashboard" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Errore nel recupero dati" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#, fuzzy +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "Proprietari è una lista di utenti che può alterare la dashboard." -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#, fuzzy +msgid "Create chart" +msgstr "Esplora grafico" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#, fuzzy +msgid "Update chart" +msgstr "Grafico a torta" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "textarea" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "in modale" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +#, fuzzy +msgid "Save as Dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Errore nel recupero dati" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Esponi in SQL Lab" -#: superset-frontend/src/pages/Home/index.tsx:270 +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "There was an issue fetching your dashboards: %s" +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +#, fuzzy +msgid "No annotation layers" +msgstr "Azione" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" +msgstr "Azione" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Azione" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 #, python-format -msgid "There was an issue previewing the selected query. %s" +msgid "" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +#, fuzzy +msgid "Annotation layer value" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +#, fuzzy +msgid "Bad formula." +msgstr "Formato Datetime" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" -"Questi parametri sono generati dinamicamente al clic su salva o con il " -"bottone di sovrascrittura nella vista di esplorazione. Questo oggetto " -"JSON è esposto qui per referenza e per utenti esperti che vogliono " -"modificare parametri specifici." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +#, fuzzy +msgid "Annotation Slice Configuration" +msgstr "Controlli del filtro" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -"Questo oggetto JSON è generato in maniera dinamica al clic sul pulsante " -"di salvataggio o sovrascrittura nella vista dashboard. Il JSON è esposto " -"qui come riferimento e per gli utenti esperti che vogliono modificare " -"parametri specifici." -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +#, fuzzy +msgid "Interval start column" +msgstr "Controlli del filtro" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +#, fuzzy +msgid "Event time column" +msgstr "Colonna del Tempo" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +#, fuzzy +msgid "Annotation layer interval end" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +#, fuzzy +msgid "Interval End column" +msgstr "Controlli del filtro" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +#, fuzzy +msgid "Title Column" +msgstr "Colonna del Tempo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +#, fuzzy +msgid "Annotation layer description columns" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +#, fuzzy +msgid "Description Columns" +msgstr "descrizione" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" "This controls whether the \"time_range\" field from the current\n" " view should be passed down to the chart containing the " "annotation data." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" "This controls whether the time grain field from the current\n" " view should be passed down to the chart containing the " "annotation data." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +#, fuzzy +msgid "Annotation layer stroke" +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#, fuzzy +msgid "Dashed" +msgstr "Elenco Dashboard" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +#, fuzzy +msgid "Dotted" +msgstr "Modifica" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +#, fuzzy +msgid "Annotation layer opacity" +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Controlli del filtro" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +#, fuzzy +msgid "Show label" +msgstr "Mostra Tabelle" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +#, fuzzy +msgid "Annotation source type" +msgstr "La tua query non può essere salvata" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "Azione" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +#, fuzzy +msgid "Time series" +msgstr "Colonna del Tempo" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" msgstr "" -"Questo campo agisce come una vista Superset, il che vuol dire che " -"Superset eseguirà una query su questa stringa come sotto-query." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Azione" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +#, fuzzy +msgid "Empty collection" +msgstr "Testa la Connessione" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#, fuzzy +msgid "Add an item" +msgstr "Aggiungi filtro" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset/views/dashboard/mixin.py:46 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -"L'oggetto JSON descrive la posizione dei vari widget nella dashboard. È " -"generato automaticamente nel momento in cui se ne cambia la posizione e " -"la dimensione usando la funzione di drag & drop nella vista della " -"dashboard. " -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#, fuzzy +msgid "Dashboard scheme" +msgstr "Elenco Dashboard" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +#, fuzzy +msgid "Select color scheme" +msgstr "Testa la Connessione" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +#, fuzzy +msgid "Show less columns" +msgstr "Colonna del Tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +#, fuzzy +msgid "Show all columns" +msgstr "Mostra colonna" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +#, fuzzy +msgid "Min Width" +msgstr "Larghezza" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -#, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Tempo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 #, fuzzy -msgid "Time Column" -msgstr "Colonna del Tempo" +msgid "Display" +msgstr "Valore del filtro" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 #, fuzzy -msgid "Time Comparison" -msgstr "Colonna del Tempo" +msgid "Number formatting" +msgstr "Formato D3" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 #, fuzzy -msgid "Time Format" -msgstr "Formato Datetime" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" -msgstr "" +msgid "Edit formatter" +msgstr "Formato D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 #, fuzzy -msgid "Time Ratio" -msgstr "Formato Datetime" +msgid "error" +msgstr "Errore..." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 #, fuzzy -msgid "Time Series" -msgstr "Colonna del Tempo" - -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Serie Temporali - Grafico Barre" - -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Serie Temporali - Grafico Lineare ad Assi Duali" - -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Serie Temporali - Grafico Lineare" +msgid "success dark" +msgstr "Nessun Accesso!" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Serie Temporali - Grafico Lineare" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Ultima Modifica" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Serie Temporali - Cambiamento Percentuale" - -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy -msgid "Time Series Options" -msgstr "Colonna del Tempo" +msgid "Operator" +msgstr "Seleziona operatore" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy -msgid "Time Shift" -msgstr "Offset temporale" +msgid "Left value" +msgstr "Valore del filtro" -#: superset/viz.py:878 -msgid "Time Table View" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +#, fuzzy +msgid "Select column" msgstr "Colonna del Tempo" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +msgid "Color: " msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" -msgstr "" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "Grafico a torta" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Colonna del Tempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -#, fuzzy -msgid "Time filter" -msgstr "Aggiungi filtro" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -#, fuzzy -msgid "Time format" -msgstr "Formato Datetime" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -#, fuzzy -msgid "Time ratio" -msgstr "Formato Datetime" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Attributi relativi al tempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -#, fuzzy -msgid "Time series" -msgstr "Colonna del Tempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Colonna del Tempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Offset temporale" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Mostra database" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -#, fuzzy -msgid "Time-series Area Chart" -msgstr "Serie Temporali - Grafico Barre" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Esponi in SQL Lab" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Time-series Bar Chart" -msgstr "Serie Temporali - Grafico Barre" +msgid "Save as dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 #, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "Serie Temporali - Grafico Barre" +msgid "Missing URL parameters" +msgstr "Parametri" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Time-series Chart" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -#, fuzzy -msgid "Time-series Line Chart" -msgstr "Serie Temporali - Grafico Lineare" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -#, fuzzy -msgid "Time-series Percent Change" -msgstr "Serie Temporali - Cambiamento Percentuale" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -#, fuzzy -msgid "Time-series Scatter Plot" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -#, fuzzy -msgid "Time-series Smooth Line" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -#, fuzzy -msgid "Time-series Stepped Line" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Serie Temporali - Stacked" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -#, fuzzy -msgid "Timestamp format" -msgstr "Formato Datetime" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Timezone offset (in ore) per questa sorgente dati" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -#, fuzzy -msgid "Timezone selector" -msgstr "Seleziona una colonna" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -#, fuzzy -msgid "Tiny" -msgstr "Min" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Tempo" -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:186 -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:207 -#: 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 -msgid "Title" -msgstr "Titolo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -#, fuzzy -msgid "Title Column" -msgstr "Colonna del Tempo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -#, fuzzy -msgid "Title is required" -msgstr "Sorgente Dati" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "ottenere una URL leggibile per la tua dashboard" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -#, fuzzy -msgid "Tools" -msgstr "Ruoli" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -#, fuzzy -msgid "Tooltip sort by metric" -msgstr "Lista Metriche" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +#, fuzzy +msgid "last week" +msgstr "settimana" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 #, fuzzy -msgid "Tooltip time format" -msgstr "Formato Datetime" +msgid "last month" +msgstr "mese" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -#, fuzzy -msgid "Top left" -msgstr "Cancella" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 #, fuzzy -msgid "Top right" -msgstr "Altezza" +msgid "last year" +msgstr "Cluster" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 #, python-format -msgid "Total (%(aggregatorName)s)" +msgid "Seconds %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "Valore del filtro" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, fuzzy, python-format +msgid "Minutes %s" +msgstr "minuto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, fuzzy, python-format +msgid "Hours %s" +msgstr "ora" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, fuzzy, python-format +msgid "Days %s" +msgstr "giorno" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, fuzzy, python-format +msgid "Weeks %s" +msgstr "settimana" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, fuzzy, python-format +msgid "Months %s" +msgstr "mese" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, fuzzy, python-format +msgid "Quarters %s" +msgstr "Opzioni del grafico" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, fuzzy, python-format +msgid "Years %s" +msgstr "anno" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 #, fuzzy -msgid "Tree Chart" -msgstr "Esplora grafico" +msgid "Saved expressions" +msgstr "Espressione SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Salva come" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" +msgstr "Visualizza colonne" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 #, fuzzy -msgid "Tree orientation" -msgstr "Azione" +msgid "No temporal columns found" +msgstr "Colonna del Tempo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Treemap" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#, fuzzy +msgid "No saved expressions found" +msgstr "Espressione SQL" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#, fuzzy +msgid " to add calculated columns" +msgstr "Visualizza colonne" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -#, fuzzy -msgid "Truncate Metric" -msgstr "Mostra metrica" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#, fuzzy +msgid "My column" +msgstr "Colonna" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 #, fuzzy -msgid "Tukey" -msgstr "condividi query" +msgid "Drop a column/metric here or click" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Tipo" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " +msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 #, python-format -msgid "Type \"%s\" to confirm" +msgid "%s option(s)" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" +msgstr "Seleziona operatore" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +#, fuzzy +msgid "Select operator" +msgstr "Seleziona operatore" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Seleziona %s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy -msgid "UI Configuration" -msgstr "Controlli del filtro" +msgid "Failed to retrieve advanced type" +msgstr "Errore nel recupero dei dati dal backend" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Controlli del filtro" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Lista Metriche" + +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +#, fuzzy +msgid "metric" +msgstr "Metrica" + +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 #, fuzzy -msgid "URL Parameters" -msgstr "Parametri" +msgid "Fixed" +msgstr "Modificato" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "Parametri" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +#, fuzzy +msgid "Based on a metric" +msgstr "Seleziona una metrica" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "Slug" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Metrica" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Aggiungi metrica" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "" - -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." -msgstr "" - -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +msgid "%s aggregates(s)" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +#, fuzzy +msgid "Select saved metrics" +msgstr "Seleziona una metrica" -#: superset/utils/date_parser.py:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Seleziona una metrica" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#, fuzzy +msgid "No saved metrics found" +msgstr "Seleziona una metrica" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "Aggiungi metrica" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "Colonna" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, fuzzy, python-format +msgid "Error while fetching data: %s" +msgstr "Errore nel recupero dati" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Colonna del Tempo" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 #, fuzzy -msgid "Undo the action" -msgstr "Seleziona una colonna" +msgid "Actual value" +msgstr "Valore del filtro" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Larghezza" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" msgstr "" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +#, fuzzy +msgid "Time ratio" +msgstr "Formato Datetime" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 #, fuzzy -msgid "Unknown type" -msgstr "Grafici" +msgid "Time Ratio" +msgstr "Formato Datetime" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +#, fuzzy +msgid "Optional d3 number format string" +msgstr "Seleziona una metrica per l'asse destro" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +#, fuzzy +msgid "Number format string" +msgstr "Formato D3" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 #, fuzzy -msgid "Untitled Dataset" -msgstr "Mostra database" +msgid "Optional d3 date format string" +msgstr "Formato Datetime" -#: superset/views/sql_lab/views.py:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 #, fuzzy -msgid "Untitled Query" -msgstr "Query senza nome" +msgid "Date format string" +msgstr "Formato Datetime" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Query senza nome" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +#, fuzzy +msgid "Column Configuration" +msgstr "Controlli del filtro" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#, fuzzy +msgid "Select Viz Type" +msgstr "Seleziona un tipo di visualizzazione" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 #, fuzzy -msgid "Update chart" -msgstr "Grafico a torta" +msgid "Search all charts" +msgstr "Grafico a Proiettile" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "L'aggiornamento del grafico è stato fermato" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +#, fuzzy +msgid "No description available." +msgstr "descrizione" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 #, fuzzy -msgid "Upload CSV to database" -msgstr "Database" +msgid "View all charts" +msgstr "Grafico a Proiettile" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Seleziona un tipo di visualizzazione" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Nessun record trovato" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +#, fuzzy +msgid "Superset Chart" +msgstr "Esplora grafico" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Grafico a torta" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 #, fuzzy -msgid "Upload columnar file" -msgstr "Colonna" +msgid "Dashboards added to" +msgstr "Elenco Dashboard" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -#, fuzzy -msgid "Upload file to database" -msgstr "Mostra database" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 #, fuzzy -msgid "Usage" -msgstr "Gestisci" +msgid "Export to .JSON" +msgstr "Esporta in YAML" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "Query in un nuovo tab" - -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -#, fuzzy -msgid "Use Area Proportions" -msgstr "Elenco Dashboard" - -#: superset/views/database/forms.py:472 -#, fuzzy -msgid "Use Columns" -msgstr "Visualizza colonne" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Esponi in SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Parametri" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Azione" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Utente" - -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Ruoli Utente" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "condividi query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +#, fuzzy +msgid "Edit Report" +msgstr "Importa" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 #, fuzzy -msgid "Username" -msgstr "Ricerca Query" +msgid "Edit Alert" +msgstr "Modifica Tabella" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#, fuzzy +msgid "Add Report" +msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#, fuzzy +msgid "Add Alert" +msgstr "Aggiungi grafico" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Nome Completo" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Nome Completo" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Azione" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Testa la Connessione" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 #, fuzzy -msgid "Value Format" -msgstr "Formato Datetime" +msgid "Condition" +msgstr "Testa la Connessione" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -#, fuzzy -msgid "Value format" -msgstr "Formato Datetime" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Testa la Connessione" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -#, fuzzy -msgid "Value is required" -msgstr "Sorgente Dati" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -#, fuzzy -msgid "Value must be greater than 0" -msgstr "La data di inizio non può essere dopo la data di fine" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Mostra query salvate" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -#, fuzzy -msgid "Values dependent on" -msgstr "Importa" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Nome Completo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "Mostra database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "Importa" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "%s - senza nome" + +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 #, fuzzy -msgid "View all charts" -msgstr "Grafico a Proiettile" +msgid "CRON Schedule" +msgstr "Importa" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "Espressione" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Esponi in SQL Lab" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Importa" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "condividi query" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Importa" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Testa la Connessione" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Nome Completo" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Nome Completo" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, fuzzy, python-format -msgid "Viewed %s" -msgstr "Cancella" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 #, fuzzy -msgid "Viewport" -msgstr "Importa" +msgid "Delivery method" +msgstr "mese" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Mostra database" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +#, fuzzy +msgid "Queries" +msgstr "Query salvate" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#, fuzzy +msgid "Annotation template updated" +msgstr "La tua query non può essere salvata" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Tipo di Visualizzazione" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#, fuzzy +msgid "Annotation template created" +msgstr "La tua query non può essere salvata" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Tipo di Visualizzazione" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Template CSS" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#, fuzzy +msgid "The annotation has been updated" +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#, fuzzy +msgid "The annotation has been saved" +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Azione" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Azione" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, fuzzy, python-format +msgid "Modified %s" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Template CSS" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Template CSS" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Datasource mancante per la visualizzazione" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "Tipo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +msgid "" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +msgid "" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset/db_engine_specs/base.py:108 -#, fuzzy -msgid "Week" -msgstr "settimana" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Cache Timeout" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +#, fuzzy +msgid "Schema cache timeout" +msgstr "Cache Timeout" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +#, fuzzy +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 #, fuzzy -msgid "Weekly Report" -msgstr "Importa" +msgid "Table cache timeout" +msgstr "Cache Timeout" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +#, fuzzy +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "Durata (in secondi) per il timeout della cache per questa slice." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, fuzzy, python-format -msgid "Weeks %s" -msgstr "settimana" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -#, fuzzy -msgid "Weight" -msgstr "Altezza" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Sicurezza" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -"Se si abilita l'opzione CREATE TABLE AS in SQL Lab, verrà forzata la " -"creazione della tabella con questo schema" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "Parametri" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +#, fuzzy +msgid "Metadata Parameters" +msgstr "Parametri" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +#, fuzzy +msgid "Engine Parameters" +msgstr "Parametri" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" msgstr "" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -"Se questa colonna è esposta nella sezione `Filtri` della vista " -"esplorazione." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "La tua query non può essere salvata" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#, fuzzy +msgid "Select a database to connect" +msgstr "Database" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +#, fuzzy +msgid "e.g. Analytics" +msgstr "Analytics avanzate" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#, fuzzy +msgid "Login with" +msgstr "Larghezza" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#, fuzzy +msgid "SSH Password" +msgstr "Porta Broker" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "Porta Broker" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +#, fuzzy +msgid "Display Name" +msgstr "Valore del filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +#, fuzzy +msgid "Name your database" +msgstr "Database" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +#, fuzzy +msgid "Refer to the" +msgstr "mese" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Testa la Connessione" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "Database" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Inserisci un nome per la slice" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +#, fuzzy +msgid "Database settings updated" +msgstr "La tua query non può essere salvata" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" -msgstr "" -"Se rendere disponibile questa colonna come opzione [Time Granularity], la" -" colonna deve essere di tipo DATETIME o simile" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +#, fuzzy +msgid "Supported databases" +msgstr "Database" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +#, fuzzy +msgid "Choose a database..." +msgstr "Seleziona una destinazione" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -"Usato per popolare la finestra a cascata dei filtri dall'elenco dei " -"valori distinti prelevati dal backend al volo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +#, fuzzy +msgid "Connect" +msgstr "Testa la Connessione" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#, fuzzy +msgid "Database Creation Error" +msgstr "Espressione del Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +#, fuzzy +msgid "CREATE DATASET" +msgstr "Seleziona una destinazione" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +#, fuzzy +msgid "Connect a database" +msgstr "Database" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Mostra database" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 #, fuzzy -msgid "White" -msgstr "Titolo" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Larghezza" +msgid "Import database from file" +msgstr "Mostra database" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 #, fuzzy -msgid "Word Rotation" -msgstr "Azione" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Mappa del Mondo" +msgid "Port" +msgstr "Importa" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 #, fuzzy -msgid "X Axis Format" -msgstr "Formato Datetime" +msgid "Additional Parameters" +msgstr "Parametri" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -#, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "Importa" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +#, fuzzy +msgid "Add sheet" +msgstr "Aggiungi Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -#, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "Importa" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#, fuzzy +msgid "Duplicate dataset" +msgstr "Mostra database" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 #, fuzzy -msgid "Year" -msgstr "anno" +msgid "New dataset name" +msgstr "Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, fuzzy, python-format -msgid "Years %s" -msgstr "anno" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#, fuzzy +msgid "Refreshing columns" +msgstr "Colonna del Tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "Colonna del Tempo" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "Mostra database" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 -msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +#, fuzzy +msgid "Select dataset source" +msgstr "Sorgente Dati" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "Colonna del Tempo" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 #, fuzzy -msgid "You can" -msgstr "Mappa della Nazione" +msgid "Usage" +msgstr "Gestisci" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Opzioni del grafico" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "Ultima Modifica" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "Ultima Modifica" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "Elenco Dashboard" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Grafici" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#, fuzzy +msgid "Select a database table." +msgstr "Database" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#, fuzzy +msgid "New dataset" +msgstr "Seleziona una destinazione" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +#, fuzzy +msgid "dataset name" +msgstr "Database" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "Modificato" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "Errore nel creare il datasource" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#, fuzzy +msgid "There was an error fetching dataset's related objects" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" +msgstr "" -#: superset/charts/commands/exceptions.py:131 +#: superset-frontend/src/features/home/ActivityTable.tsx:85 #, fuzzy -msgid "You don't have access to this chart." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "[Untitled]" +msgstr "%s - senza nome" -#: superset/dashboards/commands/exceptions.py:86 -#, fuzzy -msgid "You don't have access to this dashboard." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "" -#: superset/datasets/commands/exceptions.py:206 -#, fuzzy -msgid "You don't have access to this dataset." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, fuzzy, python-format +msgid "Viewed %s" +msgstr "Cancella" -#: superset/embedded_dashboard/commands/exceptions.py:34 -#, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Modifica" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Creato il" + +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" msgstr "" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -#, fuzzy -msgid "You don't have permission to modify the value." -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "" -#: superset/security/manager.py:2262 -#, python-format -msgid "You don't have the rights to alter %(resource)s" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "" + +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset/views/core.py:945 +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/features/home/EmptyState.tsx:28 #, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "charts" +msgstr "Grafici" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/home/EmptyState.tsx:29 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "dashboards" +msgstr "Elenco Dashboard" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" msgstr "" -#: superset/views/core.py:951 +#: superset-frontend/src/features/home/EmptyState.tsx:31 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "saved queries" +msgstr "Query salvate" -#: superset/views/core.py:1135 +#: superset-frontend/src/features/home/EmptyState.tsx:35 #, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." +msgid "No charts yet" +msgstr "Grafici" -#: superset/views/core.py:649 +#: superset-frontend/src/features/home/EmptyState.tsx:36 #, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." - -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "" +msgid "No dashboards yet" +msgstr "Elenco Dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" msgstr "" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "Query salvate" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#: superset-frontend/src/features/home/EmptyState.tsx:44 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +msgid "%(other)s charts will appear here" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "Query vuota?" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "La tua query non può essere salvata" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +#, fuzzy +msgid "Connect database" +msgstr "Database" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +#, fuzzy +msgid "Create dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +#: superset-frontend/src/features/home/RightMenu.tsx:190 #, fuzzy -msgid "Your query was not properly saved" -msgstr "La tua query è stata salvata" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "La tua query è stata salvata" +msgid "Upload CSV to database" +msgstr "Database" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "La tua query è stata salvata" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 -#, fuzzy -msgid "Your report could not be deleted" -msgstr "La query non può essere caricata" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -#, fuzzy -msgid "Zero imputation" -msgstr "descrizione" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Logout" + +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -#, fuzzy -msgid "[ untitled dashboard ]" -msgstr "Aggiungi ad una nuova dashboard" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 +#: superset-frontend/src/features/home/RightMenu.tsx:527 #, fuzzy -msgid "[Missing Dataset]" -msgstr "Seleziona una destinazione" - -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] Accesso al datasource $(name) concesso" +msgid "Documentation" +msgstr "Azione" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 +#: superset-frontend/src/features/home/RightMenu.tsx:544 #, fuzzy -msgid "[Untitled]" -msgstr "%s - senza nome" +msgid "Report a bug" +msgstr "Importa" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Login" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "condividi query" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Cancella" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -#, fuzzy -msgid "[untitled]" -msgstr "%s - senza nome" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Cancella" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Query salvate" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Nome" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "condividi query" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "query condivisa" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Ricerca Query" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" msgstr "" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +#, fuzzy +msgid "Report updated" +msgstr "Nome Completo" + +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 #, fuzzy -msgid "alert dark" -msgstr "Ultima Modifica" +msgid "Your report could not be deleted" +msgstr "La query non può essere caricata" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +#, fuzzy +msgid "Weekly Report" +msgstr "Importa" + +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +#, fuzzy +msgid "Schedule a new email report" +msgstr "Importa" + +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +#, fuzzy +msgid "Report Name" +msgstr "Nome Completo" + +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 #, fuzzy -msgid "auto" -msgstr "Descrizione" +msgid "Set up an email report" +msgstr "Importa" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +#, fuzzy +msgid "Delete email report" +msgstr "Importa" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +#, fuzzy +msgid "Delete Report?" +msgstr "Template CSS" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +msgid "rowlevelsecurity" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "Ricerca Query" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 #, fuzzy -msgid "bottom" -msgstr "dttm" +msgid "Add Rule" +msgstr "Formato Datetime" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Ricerca Query" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +msgid "The name of the rule must be unique" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -#, fuzzy -msgid "cardinal" -msgstr "Login" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 #, fuzzy -msgid "change" -msgstr "Gestisci" +msgid "Group Key" +msgstr "Raggruppa per" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:27 -#, fuzzy -msgid "charts" -msgstr "Grafici" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" + +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 #, fuzzy -msgid "clear all filters" -msgstr "Cerca / Filtra" +msgid "Base" +msgstr "Database" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Seleziona data finale" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "Colonna" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 #, python-format -msgid "connecting to %(dbModelName)s." +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "count" -msgstr "Colonna" +msgid "tags" +msgstr "Gestisci" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 #, fuzzy -msgid "create" -msgstr "Creato il" +msgid "Select Tags" +msgstr "Seleziona data finale" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/tags/TagModal.tsx:237 #, fuzzy -msgid "create a new chart" -msgstr "Creato il" +msgid "Tag updated" +msgstr "%s - senza nome" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "è stata creata" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Nome" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Database" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#: superset-frontend/src/features/tags/TagModal.tsx:307 #, fuzzy -msgid "cumulative" -msgstr "Azione" +msgid "Select dashboards" +msgstr "Importa dashboard" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Seleziona una metrica" + +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 #, fuzzy -msgid "dashboards" -msgstr "Elenco Dashboard" +msgid "UI Configuration" +msgstr "Controlli del filtro" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "Database" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#, fuzzy +msgid "Filter value is required" +msgstr "Sorgente Dati" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 #, fuzzy -msgid "dataset name" -msgstr "Database" +msgid "Single value" +msgstr "Valore del filtro" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "giorno" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "Seleziona operatore" + +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "Grafico a Proiettile" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 #, fuzzy -msgid "deck.gl charts" -msgstr "Grafico a Proiettile" +msgid "No time columns" +msgstr "Colonna del Tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -#, fuzzy -msgid "default" -msgstr "Endpoint predefinito" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "Cancella" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "descrizione" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "descrizione" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "Importa" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Ultima Modifica" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Seleziona %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Proprietario" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -#, fuzzy -msgid "e.g. Analytics" -msgstr "Analytics avanzate" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Importa" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Importa" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -#, fuzzy -msgid "e.g., a \"user id\" column" -msgstr "Colonna del Tempo" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Cancella" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -#, fuzzy -msgid "edit mode" -msgstr "Ricerca Query" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#: superset-frontend/src/pages/AllEntities/index.tsx:180 #, fuzzy -msgid "entries" -msgstr "Query salvate" +msgid "Error Fetching Tagged Objects" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "error" -msgstr "Errore..." +msgid "Edit Tag" +msgstr "Modifica" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" msgstr "" -#: superset/models/helpers.py:1803 -msgid "error_message" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Template CSS" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "Codice a 3 lettere della nazione" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Modificato da" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -#, fuzzy -msgid "every minute" -msgstr "mese" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Cancella" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "mese" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -#, fuzzy -msgid "explore" -msgstr "Esplora grafico" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Azione" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "Nome Completo" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Azione" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "Azione" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 #, fuzzy -msgid "heatmap" -msgstr "Mappa di Intensità" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "" +msgid "view instructions" +msgstr "descrizione" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" -msgstr "" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +#, fuzzy +msgid "Add a dataset" +msgstr "Aggiungi Database" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +#, fuzzy +msgid "or" msgstr "ora" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" -msgstr "" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "Min" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "in modale" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +#, fuzzy +msgid "Choose chart type" +msgstr "Grafici" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "json non è valido" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +#, fuzzy +msgid "Chart imported" +msgstr "Grafici" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 #, fuzzy -msgid "label" -msgstr "Tabella" +msgid "Any" +msgstr "giorno" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 #, fuzzy -msgid "last month" -msgstr "mese" +msgid "Certified" +msgstr "Modificato" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 #, fuzzy -msgid "last week" -msgstr "settimana" +msgid "Recently modified" +msgstr "Ultima Modifica" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 #, fuzzy -msgid "last year" -msgstr "Cluster" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "" +msgid "Least recently modified" +msgstr "Ultima Modifica" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +#: superset-frontend/src/pages/ChartList/index.tsx:783 #, fuzzy -msgid "left" -msgstr "Cancella" +msgid "Import charts" +msgstr "Grafici" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -#, fuzzy -msgid "linear" -msgstr "Grafico a torta" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "Template CSS" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "Template CSS" + +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -#, fuzzy -msgid "max" -msgstr "Max" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Template CSS" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "" + +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "Metrica" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "min" -msgstr "Min" +msgid "Dashboard imported" +msgstr "Elenco Dashboard" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minuto" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -#, fuzzy -msgid "minute(s)" -msgstr "minuto" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "mese" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "mese" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +#, fuzzy +msgid "Upload file to database" +msgstr "Mostra database" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 #, fuzzy -msgid "name" -msgstr "Nome" +msgid "Upload columnar file" +msgstr "Colonna" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" msgstr "" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Database" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "offline" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Mostra database" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "or" -msgstr "ora" +msgid "Dataset imported" +msgstr "Database" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset/charts/schemas.py:1313 -#, fuzzy -msgid "orderby column must be populated" -msgstr "La tua query non può essere salvata" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Seleziona una destinazione" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Mostra database" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Errore nel rendering della visualizzazione: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +#, fuzzy +msgid "Import datasets" +msgstr "Mostra database" + +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -#, fuzzy -msgid "pending" -msgstr "Importa" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "Seleziona data finale" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "Template CSS" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 #, fuzzy -msgid "quarter" -msgstr "condividi query" +msgid "Alert" +msgstr "Cancella" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -#, fuzzy -msgid "queries" -msgstr "Query salvate" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "condividi query" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Errore nel recupero dati" + +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "Importa" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "Importa" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Esponi in SQL Lab" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Errore nel creare il datasource" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -#, fuzzy -msgid "right" -msgstr "Altezza" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, fuzzy, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -msgid "rowlevelsecurity" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Cancella" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "running" -msgstr "Testa la Connessione" +msgid "Deleted" +msgstr "Cancella" -#: superset-frontend/src/features/home/EmptyState.tsx:30 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Errore nel recupero dati" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "saved queries" -msgstr "Query salvate" +msgid "No Rules yet" +msgstr "Grafici" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "seconds" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -#, fuzzy -msgid "series" -msgstr "Query salvate" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 #, fuzzy -msgid "square" -msgstr "condividi query" +msgid "Query imported" +msgstr "Ricerca Query" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +#, fuzzy +msgid "Import queries" +msgstr "Query vuota?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Query vuota?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Query vuota?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 #, fuzzy -msgid "step-after" -msgstr "Cerca / Filtra" +msgid "Export query" +msgstr "condividi query" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Cancella" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 #, fuzzy -msgid "stream" -msgstr "Istogramma" +msgid "queries" +msgstr "Query salvate" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -#, fuzzy -msgid "success" -msgstr "Nessun Accesso!" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success dark" -msgstr "Nessun Accesso!" +msgid "No Tags created" +msgstr "è stata creata" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "textarea" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." msgstr "" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "value ascending" -msgstr "Importa" +msgid "Network error" +msgstr "Errore di rete." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +#: superset-frontend/src/utils/getClientErrorObject.ts:144 #, fuzzy -msgid "value descending" -msgstr "Importa" +msgid "Request timed out" +msgstr "Cache Timeout" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "descrizione" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, fuzzy, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Errore nel creare il datasource" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, fuzzy, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, fuzzy, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Errore nel creare il datasource" + +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "Tipo" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, fuzzy, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "è stata creata" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "settimana" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "anno" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Serie Temporali - Stacked" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/ja/LC_MESSAGES/messages.json b/superset/translations/ja/LC_MESSAGES/messages.json index dbec51427641f..a845cfc2548bf 100644 --- a/superset/translations/ja/LC_MESSAGES/messages.json +++ b/superset/translations/ja/LC_MESSAGES/messages.json @@ -8,4047 +8,3970 @@ "plural_forms": "nplurals=1; plural=0", "lang": "ja" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "The object does not exist in the given database.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - " to edit or add columns and metrics.": [""], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": [""], - "%(dialect)s cannot be used as a data source for security reasons.": [""], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "" + "Failed to start remote query on a worker.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": ["無効な証明書"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "関数 %(func)s の安全でない戻り値の型: %(value_type)s" ], - "%(user)s's profile": ["%(user)s' のプロファイル"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "" + "Unsupported return value for method %(name)s": [ + "メソッド %(name)s のサポートされていない戻り値" ], - "%s Error": [""], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": [""], - "%s Selected (%s Physical, %s Virtual)": [""], - "%s Selected (Physical)": [""], - "%s Selected (Virtual)": [""], - "%s aggregates(s)": [""], - "%s column(s)": [""], - "%s operator(s)": [""], - "%s option(s)": [""], - "%s saved metric(s)": [""], - "%s%s": [""], - "%s-%s of %s": [""], - "(Removed)": ["(削除)"], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "" + "Unsafe template value for key %(key)s: %(value_type)s": [ + "キー %(key)s の安全でないテンプレート値: %(value_type)s" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "Unsupported template value for key %(key)s": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - ".": [""], - "0 Selected": [""], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["1時間"], - "1 minute": ["1分"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year ago": [""], - "10 minute": ["10分"], - "104 weeks ago": [""], - "15 minute": ["15分"], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 letter code of the country": [""], - "3 years ago": [""], - "30 days": ["30日"], - "30 minutes": ["30分"], - "30 seconds": ["30秒"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": ["5分"], - "5 minutes": ["5分"], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "60 days": ["60日"], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": ["90日"], - ":": [""], - "< (Smaller than)": [""], - "<= (Smaller or equal)": [""], - "": [""], - "": [""], - "== (Is equal)": [""], - "> (Larger than)": [""], - ">= (Larger or equal)": [""], - "A comma separated list of columns that should be parsed as dates": [""], - "A comma separated list of columns that should be parsed as dates.": [""], - "A comma-separated list of schemas that files are allowed to upload to.": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A database with the same name already exists.": [""], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": ["Viz はデータソースがありません"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "" + "From date cannot be larger than to date": [ + "開始日は終了日を超えてはいけません" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": [""], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "Cached value not found": ["キャッシュされた値が見つかりません"], + "Columns missing in datasource: %(invalid_columns)s": [""], + "Time Table View": [""], + "Pick at least one metric": ["少なくとも1つの指標を選択してください"], + "When using 'Group By' you are limited to use a single metric": [ + "‘Group By’ を使用する場合、指標は1つに制限されます。" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ - "" + "Calendar Heatmap": [""], + "Bubble Chart": ["バブルチャート"], + "Please use 3 different metric labels": [ + "3つの異なる指標ラベルを使用してください" ], - "A map of the world, that can indicate values in different countries.": [ + "Pick a metric for x, y and size": [""], + "Bullet Chart": [""], + "Pick a metric to display": ["表示する指標を選択"], + "Time Series - Line Chart": ["時系列 - 折れ線グラフ"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" + ], + "Time Series - Bar Chart": ["時系列 - 棒グラフ"], + "Time Series - Period Pivot": ["時系列 - 期間ピボット"], + "Time Series - Percent Change": ["時系列 - 変化率"], + "Time Series - Stacked": ["時系列 - 積み上げ"], + "Histogram": ["ヒストグラム"], + "Must have at least one numeric column specified": [ + "少なくとも 1 つの数値列を指定する必要があります。" + ], + "Distribution - Bar Chart": ["棒グラフ"], + "Can't have overlap between Series and Breakdowns": [""], + "Pick at least one field for [Series]": [""], + "Sankey": ["サンキー"], + "Pick exactly 2 columns as [Source / Target]": [""], + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ "" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Directed Force Layout": [""], + "Country Map": ["国別地図"], + "World Map": ["世界地図"], + "Parallel Coordinates": [""], + "Heatmap": ["ヒートマップ"], + "Horizon Charts": [""], + "Mapbox": [""], + "[Longitude] and [Latitude] must be set": [""], + "Must have a [Group By] column to have 'count' as the [Label]": [ + "[Label] として ’count’ を持つには、[Group By] 列が必要です" + ], + "Choice of [Label] must be present in [Group By]": [""], + "Choice of [Point Radius] must be present in [Group By]": [""], + "[Longitude] and [Latitude] columns must be present in [Group By]": [""], + "Deck.gl - Multiple Layers": [""], + "Bad spatial key": [""], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "A metric to use for color": ["色に使用する指標"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": [""], + "Time Series - Paired t-test": [""], + "Time Series - Nightingale Rose Chart": [""], + "Partition Diagram": [""], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [""], + "All Text": [""], + "Deleted %(num)d annotation": [""], + "Deleted %(num)d chart": [""], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [""], + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ "" ], - "A readable URL for your dashboard": ["ダッシュボード用の読みやすいURL"], - "A reference to the [Time] configuration, taking granularity into account": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "A report named \"%(name)s\" already exists": [""], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": [""], + "Request is not JSON": [""], + "Owners are invalid": [""], + "Some roles do not exist": ["一部のロールが存在しません"], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": [""], + "Annotation layer could not be created.": [""], + "Annotation layer could not be updated.": [""], + "Annotation layer not found.": [""], + "Annotation layer has associated annotations.": [""], + "Name must be unique": [""], + "End date must be after start date": [ + "開始日は終了日を超えてはいけません" + ], + "Short description must be unique for this layer": [""], + "Annotation not found.": [""], + "Annotation parameters are invalid.": [""], + "Annotation could not be created.": [""], + "Annotation could not be updated.": [""], + "Annotations could not be deleted.": [""], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "A timeout occurred while executing the query.": [ - "クエリの実行中にタイムアウトが発生しました。" - ], - "A timeout occurred while generating a csv.": [ - "csv の生成中にタイムアウトが発生しました。" - ], - "A timeout occurred while taking a screenshot.": [ - "スクリーンショットの撮影中にタイムアウトが発生しました。" - ], - "A valid color scheme is required": ["有効な配色が必要です"], - "APPLY": ["適用"], - "APR": ["4月"], - "AQE": [""], - "AUG": ["8月"], - "AXIS TITLE MARGIN": [""], - "About": [""], - "Access": ["アクセス"], - "Access requests": ["アクセス要求"], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": [""], - "Action": ["アクション"], - "Action Log": ["操作履歴"], - "Actions": ["アクション"], - "Active": ["アクティブ"], - "Actual time range": ["実際の期間"], - "Add": ["追加"], - "Add CSS Template": ["CSSテンプレートを追加"], - "Add CSS template": ["CSSテンプレートを追加する"], - "Add Chart": ["チャートを追加"], - "Add Column": [""], - "Add Dashboard": ["ダッシュボードを追加"], - "Add Database": ["データベースを追加"], - "Add Log": ["ログを追加"], - "Add Metric": ["指標を追加"], - "Add Saved Query": ["保存したクエリを追加"], - "Add a Plugin": [""], - "Add a new tab to create SQL Query": [""], - "Add an item": ["アイテムを追加"], - "Add annotation": ["注釈を追加"], - "Add annotation layer": ["注釈レイヤーを追加"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "" + "Database does not exist": [""], + "Dashboards do not exist": ["ダッシュボードは存在しません"], + "Datasource type is required when datasource_id is given": [""], + "Chart parameters are invalid.": [""], + "Chart could not be created.": ["チャートを作成できませんでした。"], + "Chart could not be updated.": [ + "チャートをアップロードできませんでした。" ], - "Add custom scoping": [""], - "Add delivery method": [""], - "Add filter": ["フィルタを追加"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "Charts could not be deleted.": ["チャートを削除できませんでした。"], + "There are associated alerts or reports": [ + "関連するアラートまたはレポートがあります" ], - "Add filters and dividers": [""], - "Add item": [""], - "Add metric": [""], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": [""], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add to dashboard": ["新しいダッシュボードに追加"], - "Added": ["追加済み"], - "Additional fields may be required": [""], - "Additional information": ["追加情報"], - "Additional text to add before or after the value, e.g. unit": [""], - "Additive": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": [""], - "Advanced Analytics": [""], - "Advanced Data type": [""], - "Advanced analytics": [""], - "Advanced analytics Query A": [""], - "Advanced analytics Query B": [""], - "Advanced data type": [""], - "Advanced-Analytics": [""], - "Aesthetic": [""], - "Aggregate Sum": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "" + "Changing this chart is forbidden": [ + "このチャートの変更は禁止されています" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "" + "Import chart failed for an unknown reason": [""], + "Error: %(error)s": [""], + "CSS template not found.": [""], + "Must be unique": ["一意である必要があります"], + "Dashboard parameters are invalid.": [ + "ダッシュボードパラメータが無効です。" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "" + "Dashboard could not be updated.": [ + "ダッシュボードを更新できませんでした。" ], - "Aggregation function": [""], - "Alert Triggered, In Grace Period": ["アラート発動、猶予期間中"], - "Alert condition": ["アラート状態"], - "Alert condition schedule": ["アラート状態スケジュール"], - "Alert ended grace period.": ["アラートは猶予期間を終了しました。"], - "Alert failed": ["アラートに失敗しました"], - "Alert fired during grace period.": [ - "猶予期間中にアラートが発生しました。" + "Dashboard could not be deleted.": [ + "ダッシュボードを削除できませんでした。" ], - "Alert found an error while executing a query.": [ - "クエリの実行中にアラートがエラーを検出しました。" + "Changing this Dashboard is forbidden": [ + "このダッシュボードの変更は禁止されています" ], - "Alert name": ["アラート名"], - "Alert on grace period": ["猶予期間に関するアラート"], - "Alert query returned a non-number value.": [ - "アラートクエリが数値以外の値を返しました。" + "Import dashboard failed for an unknown reason": [ + "不明な理由でダッシュボードのインポートに失敗しました" ], - "Alert query returned more than one column.": [ - "アラートクエリが複数の列を返しました。" + "You don't have access to this dashboard.": [ + "このダッシュボードにアクセスできません。" ], - "Alert query returned more than one column. %s columns returned": [ - "アラートクエリが複数の列を返しました。%s 列が返されました" + "No data in file": ["ファイルにデータがありません"], + "Database parameters are invalid.": [ + "データベース パラメータが無効です。" ], - "Alert query returned more than one row.": [ - "アラートクエリが複数の行を返しました。" + "A database with the same name already exists.": [""], + "Field is required": [""], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "" ], - "Alert query returned more than one row. %s rows returned": [ - "アラートクエリが複数の行を返しました。 %s 行が返されました" + "Database not found.": ["データベースが見つかりません。"], + "Database could not be created.": [ + "データベースを作成できませんでした。" ], - "Alert running": ["アラート発動中"], - "Alert triggered, notification sent": [ - "アラートが発動し、通知が送信されました" + "Database could not be updated.": [ + "データベースを更新できませんでした。" ], - "Alert validator config error.": ["アラートバリデーター設定エラー。"], - "Alerts": ["アラート"], - "Alerts & Reports": ["アラートとレポート"], - "Alerts & reports": ["アラートとレポート"], - "Align +/-": [""], - "All": [""], - "All Text": [""], - "All charts": ["すべてのチャート"], - "All charts/global scoping": [""], - "All filters": ["すべてのフィルタ"], - "All filters (%(filterCount)d)": [""], - "All panels with this column will be affected by this filter": [ - "この列のすべてのパネルは、このフィルターの影響を受けます" + "Connection failed, please check your connection settings": [""], + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": [ + "データベースを削除できませんでした。" ], - "Allow CREATE TABLE AS": [""], - "Allow CREATE TABLE AS option in SQL Lab": [""], - "Allow CREATE VIEW AS": [""], - "Allow CREATE VIEW AS option in SQL Lab": [""], - "Allow Csv Upload": [""], - "Allow DML": [""], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": [""], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Stopped an unsafe database connection": [""], + "Could not load database driver": [""], + "Unexpected error occurred, please check your logs for details": [""], + "No validator found (configured for the engine)": [""], + "Was unable to check your query": [""], + "Import database failed for an unknown reason": [""], + "Could not load database driver: {}": [""], + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ "" ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "Allow multiple selections": ["複数の選択を許可する"], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "Dataset %(name)s already exists": [""], + "Database not allowed to change": [""], + "One or more columns do not exist": [""], + "One or more columns are duplicated": [""], + "One or more columns already exist": [""], + "One or more metrics do not exist": [""], + "One or more metrics are duplicated": [""], + "One or more metrics already exist": [""], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ "" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": ["ABC順"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "" + "Dataset does not exist": ["データセットが存在しません"], + "Dataset parameters are invalid.": [""], + "Dataset could not be created.": [""], + "Dataset could not be updated.": [""], + "Changing this dataset is forbidden": [""], + "Import dataset failed for an unknown reason": [""], + "Data URI is not allowed.": [""], + "Dataset column not found.": ["データセット列が見つかりません。"], + "Dataset column delete failed.": ["データセット列の削除に失敗しました。"], + "Changing this dataset is forbidden.": [ + "このデータセットの変更は禁止されています。" ], - "Altered": ["変更"], - "An alert named \"%(name)s\" already exists": [""], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" + "Dataset metric not found.": ["データセットの指標が見つかりません。"], + "Dataset metric delete failed.": [ + "データセット指標の削除に失敗しました。" ], - "An engine must be specified when passing individual parameters to a database.": [ - "" + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": ["[データセットが見つかりません]"], + "Saved queries could not be deleted.": [""], + "Saved query not found.": [""], + "Import saved query failed for an unknown reason.": [ + "不明な理由により、保存したクエリをインポートできませんでした。" ], - "An error has occurred": ["エラーが発生しました"], - "An error occurred": ["エラーが発生しました"], - "An error occurred saving dataset": [""], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "" + "Saved query parameters are invalid.": [ + "保存したクエリ パラメーターが無効です。" ], - "An error occurred while creating the data source": [ - "データ ソースの作成中にエラーが発生しました" + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["ダッシュボードが存在しません"], + "Chart does not exist": ["チャートが存在しません"], + "Database is required for alerts": ["アラートにはデータベースが必要です"], + "Type is required": ["タイプが必要です"], + "Choose a chart or dashboard not both": [ + "両方ではなくチャートまたはダッシュボードを選択してください" ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Please save your chart first, then try creating a new email report.": [ "" ], - "An error occurred while fetching available CSS templates": [ - "利用可能なCSSテンプレートの取得中にエラーが発生しました" - ], - "An error occurred while fetching chart created by values: %s": [""], - "An error occurred while fetching chart owners values: %s": [""], - "An error occurred while fetching created by values: %s": [""], - "An error occurred while fetching dashboard created by values: %s": [ - "作成したダッシュボードの取得中にエラーが発生しました: %s" + "Please save your dashboard first, then try creating a new email report.": [ + "" ], - "An error occurred while fetching dashboard owner values: %s": [ - "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" + "Report Schedule parameters are invalid.": [ + "レポートスケジュールパラメータが無効です。" ], - "An error occurred while fetching dashboards: %s": [ - "ダッシュボードの取得中にエラーが発生しました: %s" + "Report Schedule could not be created.": [ + "レポートスケジュールを作成できませんでした。" ], - "An error occurred while fetching database related data: %s": [""], - "An error occurred while fetching database values: %s": [""], - "An error occurred while fetching dataset datasource values: %s": [ - "データセット・データソース値の取得中にエラーが発生しました: %s" + "Report Schedule could not be updated.": [ + "レポートスケジュールを更新できませんでした。" ], - "An error occurred while fetching dataset owner values: %s": [""], - "An error occurred while fetching dataset related data": [""], - "An error occurred while fetching dataset related data: %s": [""], - "An error occurred while fetching datasets: %s": [""], - "An error occurred while fetching function names.": [ - "関数名の取得中にエラーが発生しました。" + "Report Schedule not found.": ["レポートスケジュールが見つかりません。"], + "Report Schedule delete failed.": [ + "レポートスケジュールの削除に失敗しました。" ], - "An error occurred while fetching schema values: %s": [""], - "An error occurred while fetching tab state": [""], - "An error occurred while fetching table metadata": [""], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "" + "Report Schedule log prune failed.": [ + "レポートスケジュールログの整理に失敗しました。" ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "" + "Report Schedule execution failed when generating a screenshot.": [ + "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" ], - "An error occurred while loading the SQL": [ - "SQL のロード中にエラーが発生しました" + "Report Schedule execution failed when generating a csv.": [ + "csv の生成中にレポートスケジュールの実行に失敗しました。" + ], + "Report Schedule execution got an unexpected error.": [ + "レポートスケジュールの実行で予期しないエラーが発生しました。" + ], + "Report Schedule is still working, refusing to re-compute.": [ + "レポートスケジュールはまだ機能しており、再計算を拒否しています。" + ], + "Report Schedule reached a working timeout.": [ + "レポートスケジュールが作業タイムアウトに達しました。" + ], + "A report named \"%(name)s\" already exists": [""], + "An alert named \"%(name)s\" already exists": [""], + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [ + "アラートクエリが複数の行を返しました。" + ], + "Alert validator config error.": ["アラートバリデーター設定エラー。"], + "Alert query returned more than one column.": [ + "アラートクエリが複数の列を返しました。" + ], + "Alert query returned a non-number value.": [ + "アラートクエリが数値以外の値を返しました。" + ], + "Alert found an error while executing a query.": [ + "クエリの実行中にアラートがエラーを検出しました。" + ], + "A timeout occurred while executing the query.": [ + "クエリの実行中にタイムアウトが発生しました。" + ], + "A timeout occurred while taking a screenshot.": [ + "スクリーンショットの撮影中にタイムアウトが発生しました。" + ], + "A timeout occurred while generating a csv.": [ + "csv の生成中にタイムアウトが発生しました。" + ], + "Alert fired during grace period.": [ + "猶予期間中にアラートが発生しました。" + ], + "Alert ended grace period.": ["アラートは猶予期間を終了しました。"], + "Alert on grace period": ["猶予期間に関するアラート"], + "Report Schedule state not found": [ + "レポートスケジュールの状態が見つかりません" + ], + "Report schedule unexpected error": [ + "レポートスケジュールの予期せぬエラー" + ], + "Changing this report is forbidden": [ + "このレポートの変更は禁止されています" ], "An error occurred while pruning logs ": [ "ログのプルーニング中にエラーが発生しました " ], - "An error occurred while removing query. Please contact your administrator.": [ + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "An error occurred while removing tab. Please contact your administrator.": [ + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ + "The query associated with these results could not be found. You need to re-run the original query.": [ "" ], - "An error occurred while setting the active tab. Please contact your administrator.": [ + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ "" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ + "Invalid result type: %(result_type)s": [""], + "Columns missing in dataset: %(invalid_columns)s": [""], + "The chart does not exist": ["チャートが存在しません"], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [""], + "[asc]": [""], + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [""], + "Virtual dataset query must be read-only": [""], + "Error while rendering virtual dataset query: %(msg)s": [""], + "Virtual dataset query cannot be empty": [""], + "Virtual dataset query cannot consist of multiple statements": [""], + "Error in jinja expression in RLS filters: %(msg)s": [""], + "Metric '%(metric)s' does not exist": [""], + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [ + "'SELECT' 操作のみが許可されます" + ], + "Only single queries supported": [ + "単一のクエリのみがサポートされています" + ], + "Columns": ["列"], + "Show Column": [""], + "Add Column": [""], + "Edit Column": [""], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ "" ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Whether this column is exposed in the `Filters` section of the explore view.": [ "" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ "" ], - "An unknown error occurred. Please contact your Superset administrator": [ + "Column": ["列"], + "Verbose Name": [""], + "Description": [""], + "Groupable": ["グループ分け可能"], + "Filterable": ["フィルタ可能"], + "Table": ["テーブル"], + "Expression": ["式"], + "Is temporal": [""], + "Datetime Format": ["日時フォーマット"], + "Type": ["タイプ"], + "Business Data Type": [""], + "Invalid date/timestamp format": [ + "無効な日付/タイムスタンプのフォーマット" + ], + "Metrics": ["指標"], + "Show Metric": ["指標を表示"], + "Add Metric": ["指標を追加"], + "Edit Metric": ["指標を編集"], + "Metric": ["指標"], + "SQL Expression": ["SQL 式"], + "D3 Format": [""], + "Extra": [""], + "Warning Message": ["警告メッセージ"], + "Tables": ["テーブル"], + "Show Table": ["テーブルを表示"], + "Import a table definition": ["テーブル定義のインポート"], + "Edit Table": ["テーブルを編集"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ "" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Annotation": ["注釈"], - "Annotation Layers": ["注釈レイヤー"], - "Annotation Slice Configuration": ["注釈スライスの構成"], - "Annotation could not be created.": [""], - "Annotation could not be updated.": [""], - "Annotation delete failed.": [""], - "Annotation layer": ["注釈レイヤー"], - "Annotation layer could not be created.": [""], - "Annotation layer could not be deleted.": [""], - "Annotation layer could not be updated.": [""], - "Annotation layer delete failed.": [""], - "Annotation layer has associated annotations.": [""], - "Annotation layer name": ["注釈レイヤー名"], - "Annotation layer not found.": [""], - "Annotation layer parameters are invalid.": [""], - "Annotation layer type": ["注釈レイヤーのタイプ"], - "Annotation layers": ["注釈レイヤー"], - "Annotation layers are still loading.": [ - "注釈レイヤーはまだ読み込み中です。" + "Timezone offset (in hours) for this datasource": [""], + "Name of the table that exists in the source database": [""], + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "" ], - "Annotation name": ["注釈名"], - "Annotation not found.": [""], - "Annotation parameters are invalid.": [""], - "Annotations and layers": [""], - "Annotations could not be deleted.": [""], - "Any": ["任意"], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "ここで選択したカラーパレットは、このダッシュボードの個々のグラフに適用される色を上書きします" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Redirects to this endpoint when clicking on the table from the table list": [ "" ], - "Append": [""], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ "" ], - "Apply": ["適用"], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply metrics on": [""], - "Apply to all panels": ["すべてのパネルに適用"], - "Apply to specific panels": ["特定のパネルに適用"], - "April": ["4月"], - "Are you sure you want to cancel?": ["キャンセルしてもよろしいですか?"], - "Are you sure you want to delete": ["削除してもよろしいですか"], - "Are you sure you want to delete the selected %s?": [""], - "Are you sure you want to delete the selected annotations?": [ - "選択した注釈を削除してもよろしいですか?" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "" ], - "Are you sure you want to delete the selected charts?": [ - "選択したチャートを削除してもよろしいですか?" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "" ], - "Are you sure you want to delete the selected dashboards?": [ - "選択したダッシュボードを削除してもよろしいですか?" + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "" ], - "Are you sure you want to delete the selected datasets?": [ - "選択したデータセットを削除しますか?" + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "" ], - "Are you sure you want to delete the selected layers?": [ - "選択したレイヤーを削除してもよろしいですか?" + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "" ], - "Are you sure you want to delete the selected queries?": [ - "選択したクエリを削除しますか?" + "Associated Charts": [""], + "Changed By": ["更新者"], + "Database": ["データベース"], + "Last Changed": ["最終更新"], + "Enable Filter Select": [""], + "Schema": ["スキーマ"], + "Default Endpoint": [""], + "Offset": ["オフセット"], + "Cache Timeout": [""], + "Table Name": ["テーブル名"], + "Fetch Values Predicate": [""], + "Owners": ["所有者"], + "Main Datetime Column": [""], + "SQL Lab View": ["SQL Lab ビュー"], + "Template parameters": ["テンプレートパラメータ"], + "Modified": ["最終更新"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "" ], - "Are you sure you want to delete the selected templates?": [ - "選択したテンプレートを削除してもよろしいですか?" + "Deleted %(num)d css template": [""], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": [ + " %(num)d 件のダッシュボードを削除しました" ], - "Are you sure you want to proceed?": ["続行してもよろしいですか?"], - "Are you sure you want to save and apply changes?": [""], - "Area chart opacity": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Title or Slug": ["タイトルまたはスラッグ"], + "Role": [""], + "Table name undefined": [""], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ "" ], - "Assign a set of parameters as": [""], - "Associated Charts": [""], - "Async Execution": [""], - "Asynchronous query execution": ["非同期でのクエリ実行"], - "August": ["8月"], - "Auto Zoom": [""], - "Autocomplete": [""], - "Autocomplete filters": [""], - "Autocomplete query predicate": [""], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Axis Bounds": [""], - "Axis Title": [""], - "Axis ascending": [""], - "Axis descending": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": [""], - "Backward values": [""], - "Bad spatial key": [""], - "Bar": [""], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Bar Values": [""], - "Base layer map style": [""], - "Based on a metric": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": [""], - "Basic information": ["基本情報"], - "Batch editing %d filters:": [" %d フィルタのバッチ編集:"], - "Battery level over time": [""], - "Be careful.": [""], - "Big Number": ["数値"], - "Big Number Font Size": [""], - "Big Number with Trendline": [""], - "Bottom": [""], - "Bottom Margin": [""], - "Bottom left": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom right": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Field cannot be decoded by JSON. %(msg)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Deleted %(num)d dataset": [" %(num)d 件のデータセットを削除しました"], + "Null or Empty": [""], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Box Plot": [""], - "Bubble Chart": ["バブルチャート"], - "Bubble Size": [""], - "Bubble size": [""], - "Bucket break points": [""], - "Build": [""], - "Bulk select": ["一括選択"], - "Bullet Chart": [""], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Second": ["秒"], + "Minute": ["分"], + "5 minute": ["5分"], + "10 minute": ["10分"], + "15 minute": ["15分"], + "Hour": ["時間"], + "Day": ["日"], + "Week": ["週"], + "Month": ["月"], + "Quarter": ["四半期"], + "Year": ["年"], + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Username": ["ユーザー名"], + "Password": ["パスワード"], + "Hostname or IP address": ["ホスト名またはIPアドレス"], + "Database port": ["DBポート番号"], + "Database name": ["データベース名"], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": ["キャンセル"], - "CREATE TABLE AS": [""], - "CREATE VIEW AS": [""], - "CREATE VIEW statement": ["CREATE VIEW文"], - "CRON expression": [""], - "CSS": [""], - "CSS Styles": [""], - "CSS Templates": ["CSSテンプレート"], - "CSS applied to the chart": [""], - "CSS template": ["CSSテンプレート"], - "CSS template could not be deleted.": [""], - "CSS template name": ["CSSテンプレート名"], - "CSS template not found.": [""], - "CSS templates": ["CSSテンプレート"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "CSV to Database configuration": [""], - "CSV upload": [""], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "CTAS Schema": [""], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": [""], - "Cache Timeout (seconds)": ["キャッシュタイムアウト (秒)"], - "Cache timeout": [""], - "Cached": [""], - "Cached %s": [""], - "Cached value not found": ["キャッシュされた値が見つかりません"], - "Calculated column [%s] requires an expression": [""], - "Calculated columns": [""], - "Calculation type": [""], - "Calendar Heatmap": [""], - "Can not move top level tab into nested tabs": [ - "トップレベルのタブをネストされたタブに移動できません" - ], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [""], - "Cancel": ["キャンセル"], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Cannot load filter": ["フィルタを読み込めません"], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell Size": [""], - "Cell content": [""], - "Centroid (Longitude and Latitude): ": [""], - "Certification details": [""], - "Certified by": [""], - "Certified by %s": [""], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": ["更新者"], - "Changed on": ["変更日"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "データセットを変更すると、ターゲットのデータセットに存在しないカラムやメタデータに依存しているチャートが壊れることがあります" + "Unknown Doris server host \"%(hostname)s\".": [""], + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [ + "“%(database)s” に接続できません。" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "Changing this Dashboard is forbidden": [ - "このダッシュボードの変更は禁止されています" - ], - "Changing this chart is forbidden": [ - "このチャートの変更は禁止されています" - ], - "Changing this control takes effect instantly": [ - "この変更は即座に反映されます" - ], - "Changing this dataset is forbidden": [""], - "Changing this dataset is forbidden.": [ - "このデータセットの変更は禁止されています。" - ], - "Changing this report is forbidden": [ - "このレポートの変更は禁止されています" - ], - "Character to interpret as decimal point": [""], - "Character to interpret as decimal point.": [""], - "Chart": ["チャート"], - "Chart %(id)s not found": ["チャート %(id)s が見つかりません"], - "Chart Cache Timeout": [""], - "Chart ID": ["チャートID"], - "Chart [{}] has been overwritten": ["チャート [{}] が上書きされました"], - "Chart [{}] has been saved": ["チャート [{}] が保存されました"], - "Chart [{}] was added to dashboard [{}]": [ - "チャート [{}] はダッシュボード [{}] に追加されました" - ], - "Chart cache timeout": [""], - "Chart changes": ["チャートの変更点"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "" ], - "Chart could not be created.": ["チャートを作成できませんでした。"], - "Chart could not be deleted.": ["チャートを削除できませんでした。"], - "Chart could not be updated.": [ - "チャートをアップロードできませんでした。" - ], - "Chart does not exist": ["チャートが存在しません"], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart name": ["チャート名"], - "Chart parameters are invalid.": [""], - "Chart type": ["チャートタイプ"], - "Chart type requires a dataset": [""], - "Charts": ["チャート"], - "Charts could not be deleted.": ["チャートを削除できませんでした。"], - "Check configuration": ["設定を確認"], - "Check for sorting ascending": [""], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "Check out this chart in dashboard:": [""], - "Check out this dashboard: ": ["このダッシュボードを確認してください: "], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [""], - "Check to include time grain dropdown": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [""], - "Choice of [Point Radius] must be present in [Group By]": [""], - "Choose File": ["ファイルを選択"], - "Choose a chart or dashboard not both": [ - "両方ではなくチャートまたはダッシュボードを選択してください" - ], - "Choose a dataset": ["データセットを選択"], - "Choose a metric for right axis": ["右軸の指標を選択"], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": [ - "注釈レイヤーのタイプを選んでください" + "Unknown MySQL server host \"%(hostname)s\".": [""], + "The username \"%(username)s\" does not exist.": [""], + "The user/password combination is not valid (Incorrect password for user).": [ + "" ], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Clause": [""], - "Clear": [""], - "Clear all": ["すべてクリア"], - "Clear form": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Table or View \"%(table)s\" does not exist.": [""], + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Users are not allowed to set a search path for security reasons.": [""], + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Click the lock to make changes.": [""], - "Click the lock to prevent further changes.": [""], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": [""], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": [""], - "Click to edit %s.": [""], - "Click to edit chart.": [""], - "Click to edit label": [""], - "Click to favorite/unfavorite": ["クリックしてお気に入りに追加/解除"], - "Click to force-refresh": [""], - "Click to see difference": ["クリックして差分を確認"], - "Close": ["閉じる"], - "Close all other tabs": [""], - "Close tab": [""], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": [""], - "Collapse all": ["すべて折りたたむ"], - "Collapse tab content": [""], - "Color": [""], - "Color +/-": [""], - "Color bounds": [""], - "Color metric": ["色の指標"], - "Color of the target location": [""], - "Color scheme": ["配色"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "%(object)s does not exist in this database.": [""], + "Home": ["ホーム"], + "Data": ["データ"], + "Dashboards": ["ダッシュボード"], + "Charts": ["チャート"], + "Datasets": ["データセット"], + "Plugins": ["プラグイン"], + "Manage": ["管理"], + "CSS Templates": ["CSSテンプレート"], + "SQL Lab": ["SQL Lab"], + "SQL": [""], + "Saved Queries": ["保存したクエリ"], + "Query History": ["クエリ履歴"], + "Action Log": ["操作履歴"], + "Security": ["セキュリティ"], + "Alerts & Reports": ["アラートとレポート"], + "Annotation Layers": ["注釈レイヤー"], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ "" ], - "Colors": ["色"], - "Column": ["列"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "" + "Empty query?": [""], + "Unknown column used in orderby: %(col)s": [""], + "Time column \"%(col)s\" does not exist in dataset": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [""], + "Error in jinja expression in HAVING clause: %(msg)s": [""], + "Database does not support subqueries": [ + "データベースはサブクエリをサポートしていません" ], - "Column Data Types": [""], - "Column Label(s)": [""], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "" + "Deleted %(num)d saved query": [ + " %(num)d 件の保存したクエリを削除しました" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "" + "Deleted %(num)d report schedule": [ + " %(num)d 件のレポートスケジュールを削除しました" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Value must be greater than 0": ["値は 0 より大きくする必要があります"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Column name [%s] is duplicated": [""], - "Column referenced by aggregate is undefined: %(column)s": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [""], + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "The parameter %(parameters)s in your query is undefined.": [""], + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "Columnar File": [""], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Tag name is invalid (cannot contain ':')": [""], + "Is custom tag": [""], + "Record Count": ["レコード数"], + "No records found": ["レコードが見つかりません"], + "Filter List": ["フィルタリスト"], + "Search": ["検索"], + "Refresh": ["更新"], + "Import dashboards": ["ダッシュボードをインポート"], + "Import Dashboard(s)": ["ダッシュボードをインポート"], + "File": ["ファイル"], + "Choose File": ["ファイルを選択"], + "Upload": ["アップロード"], + "Test Connection": ["接続のテスト"], + "Unsupported clause type: %(clause)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [""], + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Columns": ["列"], - "Columns To Be Parsed as Dates": [""], - "Columns missing in dataset: %(invalid_columns)s": [""], - "Columns missing in datasource: %(invalid_columns)s": [""], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to group by": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "" + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": [""], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": [""], + "Unsupported time grain: %(time_grain)s": [""], + "Periods must be a whole number": [""], + "Confidence interval must be between 0 and 1 (exclusive)": [""], + "DataFrame must include temporal column": [""], + "DataFrame include at least one series": [ + "少なくとも1つの指標を選択してください" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Label already exists": [""], + "Resample operation requires DatetimeIndex": [""], + "Resample method should in ": [""], + "Undefined window for rolling operation": [""], + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [""], + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [""], + "Operator undefined for aggregator: %(name)s": [""], + "Invalid numpy function: %(operator)s": [""], + "json isn't valid": [""], + "Export to YAML": ["YAMLで出力"], + "Export to YAML?": ["YAMLで出力しますか?"], + "Delete": ["削除"], + "Delete all Really?": ["本当に全部削除しますか?"], + "Is favorite": ["お気に入り"], + "Is tagged": [""], + "The data source seems to have been deleted": [""], + "The user seems to have been deleted": [""], + "Error: %(msg)s": [""], + "Explore - %(table)s": [""], + "Explore": [""], + "Chart [{}] has been saved": ["チャート [{}] が保存されました"], + "Chart [{}] has been overwritten": ["チャート [{}] が上書きされました"], + "Chart [{}] was added to dashboard [{}]": [ + "チャート [{}] はダッシュボード [{}] に追加されました" + ], + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "ダッシュボード [{}] が作成されチャート [{}] が追加されました" + ], + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "不正なリクエスト。 slice_idまたはtable_nameおよびdb_name引数が必要です" + ], + "Chart %(id)s not found": ["チャート %(id)s が見つかりません"], + "Table %(table)s wasn't found in the database %(db)s": [ + "テーブル %(table)s はデータベース %(db)s にありません" + ], + "Show CSS Template": ["CSSテンプレートを表示"], + "Add CSS Template": ["CSSテンプレートを追加"], + "Edit CSS Template": ["CSSテンプレートを編集"], + "Template Name": ["テンプレート名"], + "A human-friendly name": [""], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Custom Plugins": [""], + "Custom Plugin": [""], + "Add a Plugin": [""], + "Edit Plugin": [""], + "The dataset associated with this chart no longer exists": [""], + "Could not determine datasource type": [""], + "Could not find viz object": [""], + "Show Chart": ["チャートを表示"], + "Add Chart": ["チャートを追加"], + "Edit Chart": ["チャートを編集"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ "" ], - "Comparison": [""], - "Comparison Period Lag": [""], - "Comparison suffix": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": ["全体への寄与度を算出"], - "Confidence interval must be between 0 and 1 (exclusive)": [""], - "Configuration": [""], - "Configure Advanced Time Range ": [""], - "Configure Time Range: Last...": [""], - "Configure Time Range: Previous...": [""], - "Configure custom time range": [""], - "Configure filter scopes": ["フィルタスコープを構成する"], - "Configure the basics of your Annotation Layer.": [""], - "Configure this dashboard to embed it into an external web application.": [ + "Creator": ["作成者"], + "Datasource": ["データソース"], + "Last Modified": ["最終更新"], + "Parameters": ["パラメータ"], + "Chart": ["チャート"], + "Name": ["名前"], + "Visualization Type": ["可視化方式"], + "Show Dashboard": ["ダッシュボードを表示"], + "Add Dashboard": ["ダッシュボードを追加"], + "Edit Dashboard": ["ダッシュボードを編集"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ "" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm save": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection failed, please check your connection settings": [""], - "Connection looks good!": [""], - "Continuous": [""], - "Contribution": [""], - "Contribution Mode": [""], - "Control labeled ": [""], - "Controls labeled ": [""], - "Copied to clipboard!": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": [ - "SELECT文をクリップボードにコピー" + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "個々のダッシュボードのCSSは、ここもしくは変更がすぐに表示されるダッシュボードビューで変更できます" ], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": [""], - "Copy message": [""], - "Copy of %s": [""], - "Copy partition query to clipboard": [""], - "Copy query URL": ["クエリ URL のコピー"], - "Copy query link to your clipboard": [ - "クエリのlinkをクリップボードにコピー" + "To get a readable URL for your dashboard": [ + "ダッシュボードの読み取り可能なURLを取得するには" ], - "Copy the account name of that database you are trying to connect to.": [ - "" + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "この JSON オブジェクトは、ダッシュボード ビューの [保存] または [上書き] ボタンをクリックすると動的に生成されます。これは、参照用と特定のパラメータを変更する可能性のあるパワーユーザーのために公開されています。" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to Clipboard": [""], - "Copy to clipboard": [""], - "Cost estimate": ["コストの見積もり"], - "Could not determine datasource type": [""], - "Could not fetch all saved charts": [ - "保存したすべてのチャートを取得できませんでした" - ], - "Could not find viz object": [""], - "Could not load database driver": [""], - "Could not load database driver: %(driver_name)s": [ - "データベースドライバ: %(driver_name)s 読み込めませんでした" + "Owners is a list of users who can alter the dashboard.": [ + "所有者は、ダッシュボードを変更できるユーザーのリストです。" ], - "Could not load database driver: {}": [""], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count Unique Values": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country Field Type": [""], - "Country Map": ["国別地図"], - "Create": ["作成"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Create a new chart": ["新しいチャートを作成"], - "Create chart with dataset": [""], - "Create new chart": ["新しいチャートを作成"], - "Create new filter set": ["新しいフィルタ セットの作成"], - "Create or select schema...": [""], - "Created": ["作成した項目"], - "Created On": ["作成日"], - "Created by": ["作成者"], - "Created content": ["作成したコンテンツ"], - "Created on": ["作成日"], - "Creating a data source and creating a new tab": [""], - "Creator": ["作成者"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "このダッシュボードがすべてのダッシュボードのリストに表示されるかどうかを決定します" + ], + "Dashboard": ["ダッシュボード"], + "Title": ["タイトル"], + "Slug": ["スラッグ"], + "Roles": [""], + "Published": ["公開"], + "Position JSON": [""], + "CSS": [""], + "JSON Metadata": ["JSONメタデータ"], + "Export": ["エクスポート"], + "Export dashboards?": ["ダッシュボードをエクスポートしますか?"], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "次のファイル拡張子のみが許可されます: %(allowed_extensions)s" + ], + "Name of table to be created with CSV file": [""], + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "Column Data Types": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Currently rendered: %s": [""], - "Custom Plugin": [""], - "Custom Plugins": [""], - "Custom SQL": [""], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": ["カスタマイズ"], - "Cyclic dependency detected": [""], - "D3 Format": [""], - "D3 format": [""], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Select a schema if the database supports this": [""], + "Delimiter": ["区切り文字"], + "Enter a delimiter for this data": [""], + ",": [""], + ".": [""], + "If Table Already Exists": [""], + "What should happen if the table already exists": [""], + "Fail": [""], + "Replace": [""], + "Append": [""], + "Skip Initial Space": [""], + "Skip spaces after delimiter": [""], + "Skip Blank Lines": [""], + "Skip blank lines rather than interpreting them as Not A Number values": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": ["12月"], - "DELETE": ["削除"], - "DML": [""], - "Daily seasonality": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["ダッシュボード"], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "ダッシュボード [{}] が作成されチャート [{}] が追加されました" + "Columns To Be Parsed as Dates": [""], + "A comma separated list of columns that should be parsed as dates": [""], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": [""], + "Character to interpret as decimal point": [""], + "Null Values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "" ], - "Dashboard could not be created.": [ - "ダッシュボードを作成できませんでした。" + "Index Column": [""], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "" ], - "Dashboard could not be deleted.": [ - "ダッシュボードを削除できませんでした。" + "Dataframe Index": [""], + "Write dataframe index as a column": [""], + "Column Label(s)": [""], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "" ], - "Dashboard could not be updated.": [ - "ダッシュボードを更新できませんでした。" + "Json list of the column names that should be read": [""], + "Overwrite Duplicate Columns": [""], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "" ], - "Dashboard does not exist": ["ダッシュボードが存在しません"], - "Dashboard parameters are invalid.": [ - "ダッシュボードパラメータが無効です。" + "Header Row": [""], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "" ], - "Dashboard properties": ["ダッシュボードのプロパティ"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "Rows to Read": [""], + "Number of rows of file to read": [""], + "Skip Rows": [""], + "Number of rows to skip at start of file": [""], + "Name of table to be created from excel data.": [""], + "Excel File": [""], + "Select a Excel file to be uploaded to a database.": [""], + "Sheet Name": [""], + "Strings used for sheet names (default is the first sheet).": [""], + "Specify a schema (if database flavor supports this).": [""], + "Table Exists": [""], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Dashboards": ["ダッシュボード"], - "Dashboards could not be deleted.": [ - "ダッシュボードを削除できませんでした。" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "" ], - "Dashboards do not exist": ["ダッシュボードは存在しません"], - "Data": ["データ"], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Number of rows to skip at start of file.": [""], + "Number of rows of file to read.": [""], + "Parse Dates": [""], + "A comma separated list of columns that should be parsed as dates.": [""], + "Character to interpret as decimal point.": [""], + "Write dataframe index as a column.": [""], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Data has no time steps": [""], - "Data preview": ["データプレビュー"], - "Data type": [""], - "DataFrame include at least one series": [ - "少なくとも1つの指標を選択してください" + "Null values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "" ], - "DataFrame must include temporal column": [""], - "Database": ["データベース"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Name of table to be created from columnar data.": [""], + "Columnar File": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Databases": ["データベース"], + "Show Database": ["データベースを表示"], + "Add Database": ["データベースを追加"], + "Edit Database": ["データベースを編集"], + "Expose this DB in SQL Lab": [""], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "データベースを非同期モードで動作させます。Webサーバー自体ではなくリモートワーカーでクエリを実行します。この機能はCeleryワーカーと結果バックエンドがセットアップされていることを前提としています。詳細についてはインストールドキュメントを参照してください。" + ], + "Allow CREATE TABLE AS option in SQL Lab": [""], + "Allow CREATE VIEW AS option in SQL Lab": [""], + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ "" ], - "Database URL": ["データベースURL"], - "Database could not be created.": [ - "データベースを作成できませんでした。" + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "" ], - "Database could not be deleted.": [ - "データベースを削除できませんでした。" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" ], - "Database could not be updated.": [ - "データベースを更新できませんでした。" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "" ], - "Database does not allow data manipulation.": [""], - "Database does not exist": [""], - "Database does not support subqueries": [ - "データベースはサブクエリをサポートしていません" + "Expose in SQL Lab": [""], + "Allow CREATE TABLE AS": [""], + "Allow CREATE VIEW AS": [""], + "Allow DML": [""], + "CTAS Schema": [""], + "SQLAlchemy URI": [""], + "Chart Cache Timeout": [""], + "Secure Extra": [""], + "Root certificate": [""], + "Async Execution": [""], + "Impersonate the logged on user": [""], + "Allow Csv Upload": [""], + "Backend": [""], + "Extra field cannot be decoded by JSON. %(msg)s": [""], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "" ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "CSV to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Database error": ["データベースエラー"], - "Database is required for alerts": ["アラートにはデータベースが必要です"], - "Database name": ["データベース名"], - "Database not allowed to change": [""], - "Database not found.": ["データベースが見つかりません。"], - "Database parameters are invalid.": [ - "データベース パラメータが無効です。" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Database port": ["DBポート番号"], - "Databases": ["データベース"], - "Dataframe Index": [""], - "Dataset": ["データセット"], - "Dataset %(name)s already exists": [""], - "Dataset column delete failed.": ["データセット列の削除に失敗しました。"], - "Dataset column not found.": ["データセット列が見つかりません。"], - "Dataset could not be created.": [""], - "Dataset could not be deleted.": [""], - "Dataset could not be updated.": [""], - "Dataset does not exist": ["データセットが存在しません"], - "Dataset is required": ["データセットが必要です"], - "Dataset metric delete failed.": [ - "データセット指標の削除に失敗しました。" + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "" ], - "Dataset metric not found.": ["データセットの指標が見つかりません。"], - "Dataset name": [""], - "Dataset parameters are invalid.": [""], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [""], - "Datasets": ["データセット"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Excel to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": ["データソース"], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [""], - "Date filter": [""], - "Date/Time": [""], - "Datetime Format": ["日時フォーマット"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Datetime format": ["日時フォーマット"], - "Day": ["日"], - "Day (freq=D)": [""], - "Db engine did not return all queried columns": [""], - "December": ["12月"], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": [""], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Multiple Layers": [""], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": [""], - "Default Endpoint": [""], - "Default URL": [""], - "Default URL to redirect to when accessing from the dataset list page": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Default Value": ["デフォルト値"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Default value must be set when \"Filter has default value\" is checked": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": ["ログ"], + "Show Log": ["ログを表示"], + "Add Log": ["ログを追加"], + "Edit Log": ["ログを編集"], + "User": ["ユーザー"], + "Action": ["アクション"], + "dttm": [""], + "JSON": [""], + "Time Granularity": [""], + "Time": ["時間"], + "A reference to the [Time] configuration, taking granularity into account": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ - "" + "Raw records": [""], + "Certified by %s": [""], + "description": [""], + "bolt": [""], + "Changing this control takes effect instantly": [ + "この変更は即座に反映されます" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Show info tooltip": [""], + "SQL expression": ["SQL 式"], + "Label": ["ラベル"], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": [""], + "This section contains options that allow for advanced analytical post processing of query results": [ "" ], + "Rolling window": [""], + "Rolling function": [""], + "None": ["なし"], "Defines a rolling window function to apply, works along with the [Periods] text box": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "" - ], + "Periods": [""], "Defines the size of the rolling window function, relative to the time granularity selected": [ "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Min periods": [""], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ "" ], - "Delete": ["削除"], - "Delete %s?": ["%s を削除しますか?"], - "Delete Annotation?": ["注釈を削除しますか?"], - "Delete Database?": ["データベースを削除しますか?"], - "Delete Dataset?": ["データセットを削除しますか?"], - "Delete Layer?": ["本当にレイヤーを削除しますか?"], - "Delete Query?": ["クエリを削除しますか?"], - "Delete Template?": ["テンプレートを削除しますか?"], - "Delete all Really?": ["本当に全部削除しますか?"], - "Delete annotation": ["注釈を削除する"], - "Delete dashboard tab?": ["ダッシュボードタブを削除しますか?"], - "Delete database": ["データベースを削除"], - "Delete query": ["クエリを削除"], - "Delete template": ["テンプレートを削除"], - "Delete this container and save to remove this message.": [ - "このコンテナを削除し、保存してこのメ​​ッセージを削除します。" + "Time comparison": [""], + "Time shift": [""], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "" ], - "Deleted %(num)d annotation": [""], - "Deleted %(num)d annotation layer": [""], - "Deleted %(num)d chart": [""], - "Deleted %(num)d css template": [""], - "Deleted %(num)d dashboard": [ - " %(num)d 件のダッシュボードを削除しました" + "Calculation type": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "" ], - "Deleted %(num)d dataset": [" %(num)d 件のデータセットを削除しました"], - "Deleted %(num)d report schedule": [ - " %(num)d 件のレポートスケジュールを削除しました" + "Rule": [""], + "1 minutely frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "Pandas resample rule": [""], + "Fill method": [""], + "Zero imputation": [""], + "Linear interpolation": [""], + "Backward values": [""], + "Pandas resample method": [""], + "X Axis": ["X軸"], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": ["Y軸"], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Query": ["クエリ"], + "Predictive Analytics": [""], + "Enable forecast": [""], + "Enable forecasting": [""], + "How many periods into the future do we want to predict": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "Yes": [""], + "No": [""], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Deleted %(num)d saved query": [ - " %(num)d 件の保存したクエリを削除しました" + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Deleted: %s": ["削除しました: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Delimited long & lat single column": [""], - "Delimiter": ["区切り文字"], - "Delivery method": [""], - "Demographics": [""], - "Density": [""], - "Dependent on": [""], - "Description": [""], - "Description (this can be seen in the list)": [ - "説明(これはリストで見ることができます)" + "Time related form attributes": [""], + "Chart ID": ["チャートID"], + "The id of the active chart": ["アクティブなチャートのID"], + "Cache Timeout (seconds)": ["キャッシュタイムアウト (秒)"], + "The number of seconds before expiring the cache": [ + "キャッシュを期限切れにするまでの秒数" ], - "Description text that shows up below your Big Number": [""], - "Deselect all": ["すべての選択を解除"], - "Details of the certification": [""], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "このダッシュボードがすべてのダッシュボードのリストに表示されるかどうかを決定します" + "Extra url parameters for use in Jinja templated queries": [""], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "" ], - "Diamond": [""], - "Did you mean:": ["もしかして:"], - "Dimension": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], + "Contribution Mode": [""], + "Row": ["行"], + "Series": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], "Dimensions": [""], - "Directed Force Layout": [""], - "Directional": [""], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Disable embedding?": [""], - "Display Name": ["表示名"], - "Display column level total": [""], - "Display configuration": [""], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Add dataset columns here to group the pivot table columns.": [""], + "Dimension": [""], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ "" ], - "Display row level total": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Entity": [""], + "This defines the element to be plotted on the chart": [""], + "Filters": ["フィルタ"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Distribution - Bar Chart": ["棒グラフ"], - "Divider": ["区切り線"], - "Do you want a donut or a pie?": [""], - "Domain": [""], - "Download as image": ["画像としてダウンロード"], - "Download to CSV": [""], - "Draft": ["下書き"], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Sort by": ["並び替え"], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ "" ], - "Drill to detail: %s": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Bubble Size": [""], + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "Duplicate tab": [""], - "Duration": ["期限"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" - ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "The dataset column/metric that returns the values on your chart's y-axis.": [ "" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "" + "A metric to use for color": ["色に使用する指標"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "可視化のための時間カラム。テーブルのDATETIME列を返す任意の式を定義することができます。この列または式に対して以下のフィルターが適用されることに注意してください" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": [""], - "Dynamic Aggregation Function": [""], - "Dynamically search all filter values": [""], - "END (EXCLUSIVE)": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edit": ["編集"], - "Edit CSS": ["CSSを編集"], - "Edit CSS Template": ["CSSテンプレートを編集"], - "Edit CSS template properties": ["CSSテンプレートのプロパティを編集する"], - "Edit Chart": ["チャートを編集"], - "Edit Column": [""], - "Edit Dashboard": ["ダッシュボードを編集"], - "Edit Database": ["データベースを編集"], - "Edit Dataset ": [""], - "Edit Log": ["ログを編集"], - "Edit Metric": ["指標を編集"], - "Edit Plugin": [""], - "Edit Saved Query": ["保存したクエリの編集"], - "Edit Table": ["テーブルを編集"], - "Edit annotation": ["注釈を編集する"], - "Edit annotation layer": ["注釈レイヤーを編集"], - "Edit annotation layer properties": ["注釈レイヤーのプロパティを編集"], - "Edit chart properties": ["チャートのプロパティを編集"], - "Edit dashboard": ["ダッシュボードを編集"], - "Edit database": ["データベースを編集"], - "Edit dataset": ["データセットを編集"], - "Edit email report": [""], - "Edit formatter": [""], - "Edit properties": [""], - "Edit query": ["クエリを編集"], - "Edit template": ["テンプレートを編集"], - "Edit template parameters": [""], - "Edit time range": ["期間を編集"], - "Edited": ["編集した項目"], - "Editing 1 filter:": ["1つのフィルタを編集する:"], - "Editing filter set:": ["フィルタセットを編集:"], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "" - ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "" + "Dimension to use on y-axis.": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": ["表示する可視化のタイプ"], + "Use this to define a static color for all circles": [ + "これを使用して、すべての円の静的な色を定義します" ], - "Email reports active": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty collection": ["空のコレクション"], - "Empty query?": [""], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "all": [""], + "30 seconds": ["30秒"], + "1 minute": ["1分"], + "5 minutes": ["5分"], + "30 minutes": ["30分"], + "1 hour": ["1時間"], + "week": ["週"], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": ["月"], + "year": ["年"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "" ], - "Enable Filter Select": [""], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], - "Enable forecast": [""], - "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "End": ["終了時間"], - "End (Longitude, Latitude): ": [""], - "End Longitude & Latitude": [""], - "End Time": ["終了時間"], - "End date excluded from time range": [""], - "End date must be after start date": [ - "開始日は終了日を超えてはいけません" - ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter a delimiter for this data": [""], - "Enter a name for this sheet": [""], - "Enter a new title for the tab": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": [""], - "Entity ID": [""], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [""], - "Error in jinja expression in RLS filters: %(msg)s": [""], - "Error in jinja expression in WHERE clause: %(msg)s": [""], - "Error in jinja expression in fetch values predicate: %(msg)s": [""], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": ["エラーメッセージ"], - "Error while rendering virtual dataset query: %(msg)s": [""], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Estimate cost": ["見積コスト"], - "Estimate selected query cost": ["選択したクエリコストの見積"], - "Estimate the cost before running a query": [""], - "Event Flow": [""], - "Event definition": [""], - "Event flow": [""], - "Event time column": [""], - "Every": [""], - "Evolution": [""], - "Example": ["例"], - "Examples": ["例"], - "Excel File": [""], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Row limit": [""], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "Excel to Database configuration": [""], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed query": ["実行したクエリ"], - "Execution ID": ["実行 ID"], - "Execution log": ["実行ログ"], - "Expand all": ["すべて展開"], - "Expand data panel": [""], - "Expand tool bar": [""], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "Experimental": [""], - "Explore": [""], - "Explore - %(table)s": [""], - "Explore the result set in the data exploration view": [""], - "Export": ["エクスポート"], - "Export dashboards?": ["ダッシュボードをエクスポートしますか?"], - "Export query": ["クエリのエクスポート"], - "Export to YAML": ["YAMLで出力"], - "Export to YAML?": ["YAMLで出力しますか?"], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": [""], - "Expose this DB in SQL Lab": [""], - "Expression": ["式"], - "Extra": [""], - "Extra Controls": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Series limit": [""], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "Extra field cannot be decoded by JSON. %(msg)s": [""], - "Extra parameters for use in jinja templated queries": [""], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Y Axis Format": [""], + "The color scheme for rendering chart": [""], + "Whether to truncate metrics": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Original value": [""], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "Extruded": [""], - "FEB": ["2月"], - "FRI": ["金"], - "Factor to multiply the metric by": [""], - "Fail": [""], - "Failed": ["失敗"], - "Failed at retrieving results": [""], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to retrieve advanced type": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [""], - "Favorite": ["お気に入り"], - "Favorites": ["お気に入り"], - "February": ["2月"], - "Fetch Values Predicate": [""], - "Fetch data preview": ["データプレビューを読み込み"], - "Fetched %s": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [""], - "Field is required": [""], - "File": ["ファイル"], - "Fill all required fields to enable \"Default Value\"": [""], - "Fill method": [""], - "Filter List": ["フィルタリスト"], - "Filter Type": ["フィルタタイプ"], - "Filter configuration": ["フィルタ構成"], - "Filter configuration for the filter box": [""], - "Filter has default value": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter name": ["フィルタ名"], - "Filter only displays values relevant to selections made in other filters.": [ + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": ["時間"], + "day": ["日"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "Filter results": [""], - "Filter set already exists": [""], - "Filter set with this name already exists": [""], - "Filter sets (%(filterSetCount)d)": [""], - "Filter value (case sensitive)": [""], - "Filter value list cannot be empty": [""], - "Filter your charts": ["チャートを検索"], - "Filterable": ["フィルタ可能"], - "Filters": ["フィルタ"], - "Filters (%d)": ["フィルター (%d)"], - "Filters by columns": [""], - "Filters by metrics": [""], - "Filters configuration": ["フィルタ構成"], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Cell Size": [""], + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "The number color \"steps\"": [""], + "Whether to display the legend (toggles)": [""], + "Whether to display the numerical values within the cells": [""], + "Whether to display the metric name as a title": [""], + "Number Format": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Business": [""], + "Comparison": [""], + "Intensity": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "Fixed": [""], - "Fixed color": ["固定の色"], - "Fixed point radius": [""], + "Number format": [""], + "Source": [""], "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "Force": [""], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "2D": [""], + "Geo": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "Force refresh": ["強制更新"], - "Force refresh schema list": [""], - "Force refresh table list": ["テーブルリストを強制更新"], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formattable": [""], - "Formatted CSV attached in email": [""], - "Formatted value": [""], - "Formula": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Friction between nodes": [""], - "Friday": ["金曜日"], - "From date cannot be larger than to date": [ - "開始日は終了日を超えてはいけません" - ], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "GROUP BY": [""], - "General": [""], - "Generating link, please wait..": [""], - "Geo": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": ["猶予期間"], - "Graph layout": [""], - "Gravity": [""], - "Greater or equal (>=)": [""], - "Grid Size": [""], - "Group By": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group Key": [""], - "Group by": [""], - "Groupable": ["グループ分け可能"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "Header": ["見出し"], - "Header Row": [""], - "Heatmap": ["ヒートマップ"], - "Heatmap Options": [""], - "Height": ["高さ"], - "Height of the sparkline": [""], - "Hide layer": ["レイヤーを隠す"], - "Hide tool bar": [""], - "Hides the Line for the time series": [""], - "Histogram": ["ヒストグラム"], - "Home": ["ホーム"], - "Horizon Charts": [""], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": ["ホスト名またはIPアドレス"], - "Hour": ["時間"], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Select any columns for metadata inspection": [""], + "Entity ID": [""], + "e.g., a \"user id\" column": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id": [""], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Event Flow": [""], + "Progressive": [""], + "Axis ascending": [""], + "Axis descending": [""], + "Heatmap Options": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "If Table Already Exists": [""], - "If a metric is specified, sorting will be done based on the metric value": [ + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], + "Left Margin": [""], + "Left margin, in pixels, allowing for more room for axis labels": [""], + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Whether to include the percentage in the tooltip": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "Density": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "No of Bins": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Whether to make the histogram cumulative": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "Impersonate the logged on user": [""], - "Import": ["インポート"], - "Import %s": ["インポート %s"], - "Import Dashboard(s)": ["ダッシュボードをインポート"], - "Import Dashboards": ["ダッシュボードをインポート"], - "Import a table definition": ["テーブル定義のインポート"], - "Import chart failed for an unknown reason": [""], - "Import charts": ["チャートのインポート"], - "Import dashboard failed for an unknown reason": [ - "不明な理由でダッシュボードのインポートに失敗しました" + "Population age data": [""], + "Contribution": [""], + "Compute the contribution to the total": ["全体への寄与度を算出"], + "Series Height": [""], + "Pixel height of each series": [""], + "Value Domain": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "" ], - "Import dashboards": ["ダッシュボードをインポート"], - "Import database failed for an unknown reason": [""], - "Import dataset failed for an unknown reason": [""], - "Import datasets": ["データセットのインポート"], - "Import queries": ["クエリのインポート"], - "Import saved query failed for an unknown reason.": [ - "不明な理由により、保存したクエリをインポートできませんでした。" + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "" ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Dark Cyan": [""], + "Purple": [""], + "Gold": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Index Column": [""], - "Info": ["情報"], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": [""], - "Intensity": [""], - "Intensity Radius": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "Interpret Datetime Format Automatically": [""], - "Interpret the datetime format automatically": [""], - "Interval End column": [""], - "Interval bounds": [""], - "Interval start column": [""], - "Intesity": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "Invalid JSON": [""], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": ["無効な証明書"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Map Style": [""], + "Satellite Streets": [""], + "Satellite": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": [""], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "The color for points and clusters in RGB": [""], + "Longitude of default viewport": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Light mode": [""], + "Dark mode": [""], + "MapBox": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "Invalid cron expression": [""], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": [ - "無効な日付/タイムスタンプのフォーマット" + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "" ], - "Invalid filter configuration, please select a column": [""], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": [""], - "Invalid lat/long configuration.": [""], - "Invalid longitude/latitude": [""], - "Invalid numpy function: %(operator)s": [""], - "Invalid options for %(rolling_type)s: %(options)s": [""], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Is dimension": [""], - "Is favorite": ["お気に入り"], - "Is filterable": [""], - "Is not null": [""], - "Is null": [""], - "Is tagged": [""], - "Is temporal": [""], - "Is true": [""], - "Issue 1001 - The database is under an unusual load.": [ - "Issue 1001 - データベースに異常な負荷がかかっています。" + "Directional": [""], + "Time Series Options": [""], + "Ignore time": [""], + "Standard time series": [""], + "Mean of values over specified period": [""], + "Aggregate Sum": [""], + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Metric percent change in value from `since` to `until`": [""], + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "Partition Limit": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "" ], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": ["1月"], - "JSON": [""], - "JSON Metadata": ["JSONメタデータ"], - "JSON metadata": [""], - "JSON metadata is invalid!": [""], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "JUL": ["7月"], - "JUN": ["6月"], - "January": ["1月"], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Rolling Window": [""], + "Rolling Function": [""], + "cumsum": [""], + "Time Comparison": [""], + "30 days": ["30日"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": [""], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Categorical": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ "" ], - "July": ["7月"], - "June": ["6月"], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": ["編集を続ける"], - "Keys for table": [""], - "Label": ["ラベル"], - "Label Line": [""], - "Label already exists": [""], - "Label for your query": [""], - "Label threshold": [""], - "Labelling": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Last": [""], - "Last Changed": ["最終更新"], - "Last Modified": ["最終更新"], - "Last Updated %s": ["最終更新 %s"], - "Last available value seen on %s": [""], - "Last modified": ["最終更新"], - "Last modified by %s": ["最終更新者 %s"], - "Last run": ["前回の実行"], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": ["レイヤー構成"], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ "" ], - "Least recently modified": ["最終更新"], - "Left Axis Format": [""], - "Left Margin": [""], - "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Legacy": [""], - "Legend type": [""], - "Less or equal (<=)": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light mode": [""], - "Like": [""], - "Like (case insensitive)": [""], - "Limit reached": [""], - "Limit selector values": [""], + "Nightingale Rose Chart": [""], + "Advanced-Analytics": [""], + "Multi-Layers": [""], "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ "" ], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": ["線の幅"], - "Linear color scheme": ["線形配色"], - "Linear interpolation": [""], - "Link Copied!": ["リンクをコピーしました!"], - "List Saved Query": ["保存したクエリのリスト"], - "List Unique Values": [""], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "Live CSS editor": [""], - "Live render": [""], - "Load a CSS template": ["CSSテンプレートの読み込み"], - "Loaded data cached": [""], - "Loaded from cache": [""], - "Loading...": [""], - "Log Scale": [""], - "Log retention": ["ログの保持"], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["ログイン"], - "Logout": ["ログアウト"], - "Logs": ["ログ"], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": [""], - "Longitude and Latitude": [""], - "Longitude of default viewport": [""], - "MAR": ["3月"], - "MAY": ["5月"], - "MON": ["月"], - "Main Datetime Column": [""], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Whether to display bubbles on top of countries": [""], + "Max Bubble Size": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "不正なリクエスト。 slice_idまたはtable_nameおよびdb_name引数が必要です" - ], - "Manage": ["管理"], - "Mandatory": [""], - "Manually set min/max values for the y-axis.": [""], - "Map Style": [""], - "MapBox": [""], - "Mapbox": [""], - "March": ["3月"], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markup type": [""], - "Max": ["最大値"], - "Max Bubble Size": [""], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "3 letter code of the country": [""], + "Metric that defines the size of the bubble": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "Maximum value on the gauge axis": [""], - "May": ["5月"], - "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Multi-Dimensions": [""], + "Multi-Variables": [""], + "Popular": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start (Longitude, Latitude): ": [""], + "End (Longitude, Latitude): ": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Color of the target location": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Advanced": [""], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Centroid (Longitude and Latitude): ": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": ["メッセージ内容"], - "Metadata has been synced": [""], - "Method": [""], - "Metric": ["指標"], - "Metric '%(metric)s' does not exist": [""], - "Metric assigned to the [X] axis": ["[X] 軸に割り当てられた指標"], - "Metric assigned to the [Y] axis": ["[Y] 軸に割り当てられた指標"], - "Metric change in value from `since` to `until`": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": [""], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to sort the results by": [""], "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "" - ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Spatial": [""], + "Experimental": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "Metrics": ["指標"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "deck.gl Geojson": [""], + "Longitude and Latitude": [""], + "Height": ["高さ"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ "" ], - "Midnight": [""], - "Min": ["最小値"], - "Min periods": [""], - "Min/max (no outliers)": [""], - "Mine": ["個人用"], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "deck.gl Grid": [""], + "Intesity": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Minute": ["分"], - "Missing dataset": ["データセットが見つかりません"], - "Mixed Time-Series": [""], - "Modified": ["最終更新"], - "Modified by": ["更新者"], - "Modified columns: %s": [""], - "Monday": ["月曜日"], - "Month": ["月"], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], - "Multi-Dimensions": [""], - "Multi-Layers": [""], - "Multi-Levels": [""], - "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": [""], + "variance": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Opacity, expects values between 0 and 100": [""], + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Whether to apply filter when items are clicked": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Unit": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "Must be unique": ["一意である必要があります"], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "[Label] として ’count’ を持つには、[Group By] 列が必要です" - ], - "Must have at least one numeric column specified": [ - "少なくとも 1 つの数値列を指定する必要があります。" + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "" ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "My metric": [""], - "N/A": [""], - "NOV": ["11月"], - "NOW": [""], - "Name": ["名前"], - "Name is required": ["名前が必要です"], - "Name must be unique": [""], - "Name of table to be created from columnar data.": [""], - "Name of table to be created from excel data.": [""], - "Name of table to be created with CSV file": [""], - "Name of the column containing the id of the parent node": [""], - "Name of the id column": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [""], - "Name of the target nodes": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "New chart": ["新しいチャート"], - "New columns added: %s": [""], - "New filter set": ["新しいフィルタ セット"], - "New tab": [""], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": ["次"], - "Nightingale Rose Chart": [""], - "No": [""], - "No %s yet": [""], - "No Access!": ["アクセスがありません!"], - "No Data": [""], - "No annotation layers yet": ["注釈レイヤーはまだありません"], - "No annotation yet": ["注釈はまだありません"], - "No charts": ["チャートなし"], - "No columns": [""], - "No dashboards": ["ダッシュボードなし"], - "No data": [""], - "No data after filtering or data is NULL for the latest time record": [ + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "No data in file": ["ファイルにデータがありません"], - "No databases match your search": [""], - "No description available.": [""], - "No favorite charts yet, go click on stars!": [ - "お気に入りのチャートはまだありません。星をクリックしてください!" + "deck.gl Scatterplot": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "" ], - "No favorite dashboards yet, go click on stars!": [ - "お気に入りのダッシュボードはまだありません。星をクリックしてください!" + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ + "" ], - "No filter is selected.": ["フィルタは選択されていません。"], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No of Bins": [""], - "No records found": ["レコードが見つかりません"], - "No results found": [""], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No stored results found, you need to re-run your query": [""], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "No time columns": [""], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "Node select mode": [""], - "Node size": [""], - "None": ["なし"], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not available": [""], - "Not equal to (≠)": [""], - "Not null": [""], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": [""], - "Notification method": [""], - "November": ["11月"], - "Null Values": [""], - "Null or Empty": [""], - "Null values": [""], - "Number Format": [""], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "Number format": [""], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read": [""], - "Number of rows of file to read.": [""], - "Number of rows to skip at start of file": [""], - "Number of rows to skip at start of file.": [""], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "OCT": ["10月"], - "OK": [""], - "OVERWRITE": ["上書き"], - "October": ["10月"], - "Offline": ["オフライン"], - "Offset": ["オフセット"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "Bottom left": [""], + "Bottom right": [""], + "The database columns that contains lines information": [""], + "Line width": ["線の幅"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ "" ], - "One or many columns to pivot as columns": [""], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Whether to fill the objects": [""], + "Whether to display the stroke": [""], + "Extruded": [""], + "Whether to make the grid 3D": [""], + "Grid Size": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Factor to multiply the metric by": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "basis": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ "" ], - "One or many controls to pivot as columns": [""], - "One or many metrics to display": [""], - "One or more columns already exist": [""], - "One or more columns are duplicated": [""], - "One or more columns do not exist": [""], - "One or more metrics already exist": [""], - "One or more metrics are duplicated": [""], - "One or more metrics do not exist": [""], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "X Tick Layout": [""], + "flat": [""], + "The way the ticks are laid out on the X-axis": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "One ore more annotation layers failed loading.": [ - "1つ以上の注釈レイヤーの読み込みに失敗しました。" + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Bar Values": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "" ], - "Only Total": [""], - "Only `SELECT` statements are allowed": [ - "'SELECT' 操作のみが許可されます" - ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [ - "選択したパネルのみがこのフィルターの影響を受けます" - ], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ "" ], - "Only single queries supported": [ - "単一のクエリのみがサポートされています" - ], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "次のファイル拡張子のみが許可されます: %(allowed_extensions)s" + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Continuous": [""], + "nvd3": [""], + "Series Limit Sort By": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "" ], - "Opacity": [""], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["データソースタブを開く"], - "Open in SQL Lab": ["SQL Labで開く"], - "Open query in SQL Lab": ["SQL Labでクエリを開く"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "データベースを非同期モードで動作させます。Webサーバー自体ではなくリモートワーカーでクエリを実行します。この機能はCeleryワーカーと結果バックエンドがセットアップされていることを前提としています。詳細についてはインストールドキュメントを参照してください。" + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "" ], - "Operator undefined for aggregator: %(name)s": [""], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Bar": [""], + "Box Plot": [""], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ "" ], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original table column order": ["元のテーブル列順で表示"], - "Original value": [""], - "Orthogonal": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ "" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Sort bars by x labels.": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ "" ], - "Overwrite": ["上書き"], - "Overwrite & Explore": [""], - "Overwrite Dashboard [%s]": ["ダッシュボード [%s] を上書き"], - "Overwrite Duplicate Columns": [""], - "Overwrite text in the editor with a query on this table": [""], - "Owned Created or Favored": [""], - "Owner": ["所有者"], - "Owners": ["所有者"], - "Owners are invalid": [""], - "Owners is a list of users who can alter the dashboard.": [ - "所有者は、ダッシュボードを変更できるユーザーのリストです。" + "Bar Chart (legacy)": [""], + "Additive": [""], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Value": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Do you want a donut or a pie?": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "所有者は、ダッシュボードを変更できるユーザーのリストです。名前またはユーザー名で検索できます。" + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": [""], - "Pandas resample rule": [""], - "Parallel Coordinates": [""], - "Parameter error": ["パラメータエラー"], - "Parameters": ["パラメータ"], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": [""], - "Part of a Whole": [""], - "Partition Diagram": [""], - "Partition Limit": [""], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "Formula": [""], + "Stack": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Bottom": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Password": ["パスワード"], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], "Percentage threshold": [""], - "Performance": [""], - "Period average": [""], - "Periods": [""], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this metric": [""], - "Physical": [""], - "Physical (table or view)": [""], - "Physical dataset": [""], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [""], - "Pick a metric for x, y and size": [""], - "Pick a metric to display": ["表示する指標を選択"], - "Pick a metric!": ["指標を選んでください!"], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "時系列の時間粒度を選択" + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ + "" ], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [""], - "Pick at least one metric": ["少なくとも1つの指標を選択してください"], - "Pick exactly 2 columns as [Source / Target]": [""], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ "" ], - "Pick your favorite markup language": [ - "お気に入りのマークアップ言語を選択" + "X Axis Bounds": [""], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Pivot Table": ["ピボットテーブル"], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": [""], + "No data after filtering or data is NULL for the latest time record": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Try applying different filters or ensuring your datasource has data": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Big Number Font Size": [""], + "Small": [""], + "Normal": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Description text that shows up below your Big Number": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "With a subheader": [""], + "Big Number": ["数値"], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Comparison suffix": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Please choose different metrics on left and right axis": [""], - "Please confirm": ["確認してください"], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [""], - "Please filter set name": [""], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [ - "共有を有効にするにはクエリを保存して下さい" + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "" ], - "Please save your chart first, then try creating a new email report.": [ + "TEMPORAL X-AXIS": [""], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Big Number with Trendline": [""], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [ - "3つの異なる指標ラベルを使用してください" + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ + "" ], - "Plot the distance (like flight paths) between origin and destination.": [ + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "% calculation": [""], + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Plugins": ["プラグイン"], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polyline": [""], - "Pop Tab Link": [""], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "What should be shown as the label": [""], + "Tooltip Contents": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": [""], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter available values": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Sequential": [""], + "Columns to group by": [""], + "General": [""], + "Min": ["最小値"], + "Minimum value on the gauge axis": [""], + "Max": ["最大値"], + "Maximum value on the gauge axis": [""], + "Angle at which to start progress axis": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Predictive Analytics": [""], - "Preview": ["プレビュー"], - "Preview: `%s`": [""], - "Previous": ["前"], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Private Key Password": [""], - "Profile": ["プロファイル"], - "Profile picture provided by Gravatar": [ - "Gravatarが提供するプロフィール写真" - ], + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Number of split segments on the axis": [""], "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": ["公開"], - "Purple": [""], - "Put labels outside": [""], - "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": [""], - "Python datetime string pattern": [""], - "QUERY DATA IN SQL LAB": [""], - "Quarter": ["四半期"], - "Query": ["クエリ"], - "Query %s: %s": [""], - "Query History": ["クエリ履歴"], - "Query history": ["クエリ履歴"], - "Query in a new tab": [""], - "Query is too complex and takes too long to run.": [""], - "Query name": ["クエリ名"], - "Query preview": ["クエリプレビュー"], - "Query was stopped": [""], - "Query was stopped.": [""], - "RANGE TYPE": ["範囲のタイプ"], - "Radar": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radial": [""], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Raw records": [""], - "Rebuild": [""], - "Recent activity": ["最近のアクティビティ"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "最近作成したグラフ、ダッシュボード、保存したクエリがここに表示されます" - ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "最近編集したグラフ、ダッシュボード、保存したクエリがここに表示されます" + "Whether to show the progress of gauge chart": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "" ], - "Recently modified": ["更新"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" + "Style the ends of the progress bar with a round cap": [""], + "Interval bounds": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "" ], - "Recents": ["最近"], - "Recipients are separated by \",\" or \";\"": [""], - "Recommended tags": [""], - "Record Count": ["レコード数"], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "Refer to the": [""], - "Referenced columns not available in DataFrame.": [""], - "Refetch results": [""], - "Refresh": ["更新"], - "Refresh dashboard": ["ダッシュボードを更新"], - "Refresh frequency": ["更新頻度"], - "Refresh interval": ["更新間隔"], - "Refresh the default values": [""], - "Refreshing columns": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ "" ], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative quantity": [""], - "Remind me in 24 hours": [""], - "Remove": ["削除"], - "Remove invalid filters": [""], - "Remove item": ["アイテムを削除"], - "Remove query from log": ["ログからクエリを削除"], - "Remove table preview": [""], - "Removed columns: %s": [""], - "Rename tab": [""], - "Replace": [""], - "Report Schedule could not be created.": [ - "レポートスケジュールを作成できませんでした。" + "Target category": [""], + "Category of target nodes": [""], + "Layout": [""], + "Graph layout": [""], + "Force": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": [""], + "Multiple": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Node size": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "" ], - "Report Schedule could not be deleted.": [ - "レポートスケジュールを削除できませんでした。" + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "" ], - "Report Schedule could not be updated.": [ - "レポートスケジュールを更新できませんでした。" + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion strength between nodes": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "" ], - "Report Schedule delete failed.": [ - "レポートスケジュールの削除に失敗しました。" + "Structural": [""], + "Whether to sort descending or ascending": [ + "降順または昇順でソートするかどうか" ], - "Report Schedule execution failed when generating a csv.": [ - "csv の生成中にレポートスケジュールの実行に失敗しました。" + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary or secondary y-axis": [""], + "Advanced analytics Query A": [""], + "Advanced analytics Query B": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Report Schedule execution failed when generating a screenshot.": [ - "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" ], - "Report Schedule execution got an unexpected error.": [ - "レポートスケジュールの実行で予期しないエラーが発生しました。" + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "" ], - "Report Schedule is still working, refusing to re-compute.": [ - "レポートスケジュールはまだ機能しており、再計算を拒否しています。" + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Outer Radius": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "" ], - "Report Schedule log prune failed.": [ - "レポートスケジュールログの整理に失敗しました。" + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Radar": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "" ], - "Report Schedule not found.": ["レポートスケジュールが見つかりません。"], - "Report Schedule parameters are invalid.": [ - "レポートスケジュールパラメータが無効です。" + "The primary metric is used to define the arc segment sizes": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "" ], - "Report Schedule reached a working timeout.": [ - "レポートスケジュールが作業タイムアウトに達しました。" + "When only a primary metric is provided, a categorical color scale is used.": [ + "" ], - "Report Schedule state not found": [ - "レポートスケジュールの状態が見つかりません" + "When a secondary metric is provided, a linear color scale is used.": [ + "" ], - "Report failed": ["レポートに失敗しました"], - "Report name": ["レポート名"], - "Report schedule": ["レポートスケジュール"], - "Report schedule unexpected error": [ - "レポートスケジュールの予期せぬエラー" + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "" ], - "Report sending": ["レポート送信"], - "Report sent": ["レポートが送信されました"], - "Reports": ["レポート"], - "Repulsion strength between nodes": [""], - "Request Permissions": ["権限のリクエスト"], - "Request is incorrect: %(error)s": [""], - "Request is not JSON": [""], - "Request missing data field.": [""], - "Request timed out": [""], - "Required": ["必須"], - "Required control values have been removed": [""], - "Resample method should in ": [""], - "Resample operation requires DatetimeIndex": [""], - "Reset state": [""], - "Resource already has an attached report.": [""], - "Restore Filter": ["フィルタを復元"], - "Results": ["結果"], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": [""], - "Reverse lat/long ": [""], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right axis metric": ["右軸の指標"], - "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Sunburst Chart": [""], + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" ], - "Role": [""], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ + "zoom area": [""], + "restore zoom": [""], + "Area chart opacity": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Roles": [""], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Axis Title": [""], + "AXIS TITLE MARGIN": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Axis Bounds": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "Bar Charts are used to show metrics as a series of bars.": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ "" ], - "Roles to grant": ["付与する役割"], - "Rolling Function": [""], - "Rolling Window": [""], - "Rolling function": [""], - "Rolling window": [""], - "Root certificate": [""], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Row": ["行"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Row limit": [""], - "Rows": [""], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": [""], - "Rule": [""], - "Rule added": [""], - "Run": ["実行"], - "Run in SQL Lab": ["SQL Labで実行"], - "Run query": ["クエリ実行"], - "Run query (Ctrl + Return)": ["クエリを実行 (Ctrl + Return)"], - "Run query in a new tab": ["新しいタブでクエリを実行"], - "Run selection": [""], - "Running": ["実行中"], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": ["土"], - "SEP": ["9月"], - "SHA": [""], - "SQL": [""], - "SQL Copied!": [""], - "SQL Expression": ["SQL 式"], - "SQL Lab": ["SQL Lab"], - "SQL Lab View": ["SQL Lab ビュー"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "Start": ["開始時間"], + "End": ["終了時間"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "SQL Query": ["SQLクエリ"], - "SQL expression": ["SQL 式"], - "SQL query": ["SQLクエリ"], - "SQLAlchemy URI": [""], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "SUN": ["日"], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Sankey": ["サンキー"], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite": [""], - "Satellite Streets": [""], - "Saturday": ["土曜日"], - "Save": ["保存"], - "Save & Explore": [""], - "Save & go to dashboard": ["保存してダッシュボードに移動"], - "Save (Overwrite)": ["上書き保存"], - "Save as": ["別名で保存"], - "Save as new": ["新規保存"], - "Save as new chart": ["新しいチャートとして保存"], - "Save as:": ["別名で保存:"], - "Save chart": ["チャートを保存"], - "Save dashboard": ["ダッシュボードを保存"], - "Save for this session": ["このセッションのために保存"], - "Save or Overwrite Dataset": [""], - "Save query": ["クエリを保存"], - "Save the query to enable this feature": [ - "この機能を有効にするためクエリを保存する" + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "" ], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": [""], - "Saved Queries": ["保存したクエリ"], - "Saved metric": ["保存した指標"], - "Saved queries": ["保存したクエリ"], - "Saved queries could not be deleted.": [""], - "Saved query not found.": [""], - "Saved query parameters are invalid.": [ - "保存したクエリ パラメーターが無効です。" + "Id": [""], + "Name of the id column": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Radial": [""], + "Layout type of tree": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "bottom": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], + "Symbol": [""], + "Empty circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Symbol size": [""], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "" ], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ "" ], - "Schedule": [""], - "Schedule query": [""], - "Schedule settings": ["スケジュール設定"], - "Schedule the query periodically": [""], - "Scheduled": [""], - "Scheduled at (UTC)": ["スケジュール設定時刻 (UTC)"], - "Schema": ["スキーマ"], - "Schema cache timeout": [""], - "Schema undefined": [""], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Treemap": ["ツリーマップ"], + "Total": [""], + "Assist": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": ["スコープ"], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["検索"], - "Search / Filter": [""], - "Search Metrics & Columns": [""], - "Search all filter options": [""], - "Search by query text": [""], - "Search...": ["検索…"], - "Second": ["秒"], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Secure Extra": [""], - "Secure extra": [""], - "Security": ["セキュリティ"], - "Security & Access": ["セキュリティとアクセス"], - "See all %(tableName)s": [""], - "See less": [""], - "See more": [""], - "See table schema": ["テーブルスキーマを参照"], - "Select ...": [""], - "Select Delivery Method": [""], - "Select a Excel file to be uploaded to a database.": [""], - "Select a database table and create dataset": [""], - "Select a database to upload the file to": [""], - "Select a database to write a query": [""], - "Select a schema if the database supports this": [""], - "Select a visualization type": ["可視化方式を選んでください"], - "Select aggregate options": [""], - "Select any columns for metadata inspection": [""], - "Select database or type to search databases": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select operator": [""], - "Select or type a value": [""], - "Select or type dataset name": [""], - "Select owners": [""], - "Select schema or type to search schemas": [""], - "Select start and end date": ["開始日と終了日を選択"], - "Select subject": [""], - "Select table or type to search tables": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "must have a value": [""], + "A handlebars template that is applied to the data": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": ["9月"], - "Sequential": [""], - "Series": [""], - "Series Height": [""], - "Series Limit Sort By": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": [""], - "Server Page Length": [""], + "Ordering": [""], + "Order results by selected columns": [""], + "Sort descending": [""], "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": ["自動更新間隔を設定"], - "Set filter mapping": ["フィルタマッピングを設定"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Range for Comparison": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": [""], + "Columns to group by on the rows": [""], + "Apply metrics on": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Settings": ["設定"], - "Settings for time series": [""], - "Share": ["共有"], - "Share chart by email": ["チャートをメールで共有"], - "Shared query": ["クエリを共有"], - "Sheet Name": [""], + "Aggregation function": [""], + "Count Unique Values": [""], + "List Unique Values": [""], + "Sum": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Maximum": [""], + "First": [""], + "Last": [""], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "" + ], + "Show rows total": [""], + "Display row level total": [""], + "Display row level subtotal": [""], + "Display column level total": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "" + ], + "D3 time format for datetime columns": [""], + "key a-z": [""], + "key z-a": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "" + ], + "Pivot Table": ["ピボットテーブル"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [""], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Totals": [""], + "Page length": [""], + "Whether to include a client-side search box": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "" + ], + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], "Show": [""], - "Show CREATE VIEW statement": ["CREATE VIEW文を表示"], - "Show CSS Template": ["CSSテンプレートを表示"], - "Show Chart": ["チャートを表示"], - "Show Column": [""], - "Show Dashboard": ["ダッシュボードを表示"], - "Show Database": ["データベースを表示"], - "Show Less...": [""], - "Show Log": ["ログを表示"], - "Show Markers": [""], - "Show Metric": ["指標を表示"], - "Show Saved Query": ["保存したクエリを表示"], - "Show Table": ["テーブルを表示"], - "Show Timestamp": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "random": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "N/A": [""], + "The query couldn't be loaded": [""], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "Show info tooltip": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time column": [""], - "Show time grain dropdown": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Your query could not be scheduled": [""], + "Failed at retrieving results": [""], + "Unknown error": ["不明なエラー"], + "Query was stopped.": [""], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Copy of %s": [""], + "An error occurred while setting the active tab. Please contact your administrator.": [ "" ], - "Showing %s of %s": ["Showing %s of %s"], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single Value": [""], - "Single value": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": [""], - "Skip Initial Space": [""], - "Skip Rows": [""], - "Skip blank lines rather than interpreting them as Not A Number values": [ + "An error occurred while fetching tab state": [""], + "An error occurred while removing tab. Please contact your administrator.": [ "" ], - "Skip spaces after delimiter": [""], - "Slug": ["スラッグ"], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "An error occurred while removing query. Please contact your administrator.": [ "" ], - "Solid": [""], - "Some roles do not exist": ["一部のロールが存在しません"], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [""], - "Sorry there was an error fetching saved charts: ": [ - "保存したグラフの取得中にエラーが発生しました: " + "Your query could not be saved": ["クエリを保存できませんでした"], + "Your query was saved": ["クエリが保存されました"], + "Your query was updated": ["クエリが更新されました"], + "Your query could not be updated": ["クエリを更新できませんでした"], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "" ], - "Sorry, An error occurred": ["エラーが発生しました"], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, your browser does not support copying.": [""], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": [""], - "Sort bars by x labels.": [""], - "Sort by": ["並び替え"], - "Sort columns alphabetically": ["列をアルファベット順に並び替え"], - "Sort descending": [""], - "Sort filter values": [""], - "Sort metric": [""], - "Sort series in ascending order": [""], - "Source": [""], - "Source SQL": [""], - "Sparkline": [""], - "Spatial": [""], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [""], - "Specify duplicate columns as \"X.0, X.1\".": [""], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ + "An error occurred while fetching table metadata. Please contact your administrator.": [ "" ], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["開始時間"], - "Start (Longitude, Latitude): ": [""], - "Start Longitude & Latitude": [""], - "Start at (UTC)": ["開始時刻 (UTC)"], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "An error occurred while expanding the table schema. Please contact your administrator.": [ "" ], - "State": ["状態"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": ["状態"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "An error occurred while collapsing the table schema. Please contact your administrator.": [ "" ], - "Stop": ["中止"], - "Stop query": ["クエリを中止"], - "Stop running (Ctrl + x)": ["実行を停止 (Ctrl + x)"], - "Stopped an unsafe database connection": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [""], - "Structural": [""], - "Style": [""], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], - "Success": ["成功"], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": [""], - "Sunburst Chart": [""], - "Sunburst Chart v2": [""], - "Sunday": ["日曜日"], - "Superset Chart": [""], - "Superset Embedded SDK documentation.": [""], - "Superset chart": [""], - "Superset dashboard": ["Supersetダッシュボード"], - "Survey Responses": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" - ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" - ], - "Symbol": [""], - "Symbol of two ends of edge line": [""], - "Symbol size": [""], - "Sync columns from source": [""], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "An error occurred while removing the table schema. Please contact your administrator.": [ "" ], - "TABLES": [""], - "TEMPORAL X-AXIS": [""], - "THU": ["木"], - "TUE": ["火"], - "Tab name": ["タブ名"], - "Tab title": [""], - "Table": ["テーブル"], - "Table %(table)s wasn't found in the database %(db)s": [ - "テーブル %(table)s はデータベース %(db)s にありません" + "Shared query": ["クエリを共有"], + "The datasource couldn't be loaded": [ + "データ ソースを読み込めませんでした" ], - "Table Exists": [""], - "Table Name": ["テーブル名"], - "Table View": [""], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "" + "An error occurred while creating the data source": [ + "データ ソースの作成中にエラーが発生しました" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "" + "An error occurred while fetching function names.": [ + "関数名の取得中にエラーが発生しました。" ], - "Table cache timeout": [""], - "Table name cannot contain a schema": [""], - "Table name undefined": [""], - "Table or View \"%(table)s\" does not exist.": [""], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "Tables": ["テーブル"], - "Tabs": ["タブ"], - "Tabular": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Foreign key": [""], + "Estimate selected query cost": ["選択したクエリコストの見積"], + "Estimate cost": ["見積コスト"], + "Cost estimate": ["コストの見積もり"], + "Creating a data source and creating a new tab": [""], + "An error occurred": ["エラーが発生しました"], + "Explore the result set in the data exploration view": [""], + "Source SQL": [""], + "Run query": ["クエリ実行"], + "Stop query": ["クエリを中止"], + "New tab": [""], + "Format SQL": [""], + "Keyboard shortcuts": [""], + "State": ["状態"], + "Duration": ["期限"], + "Results": ["結果"], + "Actions": ["アクション"], + "Success": ["成功"], + "Failed": ["失敗"], + "Running": ["実行中"], + "Offline": ["オフライン"], + "Scheduled": [""], + "Unknown Status": [""], + "Edit": ["編集"], + "Data preview": ["データプレビュー"], + "Overwrite text in the editor with a query on this table": [""], + "Run query in a new tab": ["新しいタブでクエリを実行"], + "Remove query from log": ["ログからクエリを削除"], + "Unable to create chart without a query id.": [""], + "Save & Explore": [""], + "Overwrite & Explore": [""], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], + "Copy to Clipboard": [""], + "Filter results": [""], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], - "Target category": [""], - "Target value": [""], - "Template Name": ["テンプレート名"], - "Template parameters": ["テンプレートパラメータ"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "The number of rows displayed is limited to %(rows)d by the query": [""], + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "Test Connection": ["接続のテスト"], - "Test connection": ["接続のテスト"], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "個々のダッシュボードのCSSは、ここもしくは変更がすぐに表示されるダッシュボードビューで変更できます" - ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" + "Track job": ["ジョブ履歴"], + "Query was stopped": [""], + "Database error": ["データベースエラー"], + "was created": ["作成されました"], + "Query in a new tab": [""], + "The query returned no data": [""], + "Fetch data preview": ["データプレビューを読み込み"], + "Refetch results": [""], + "Stop": ["中止"], + "Run selection": [""], + "Run": ["実行"], + "Stop running (Ctrl + x)": ["実行を停止 (Ctrl + x)"], + "Run query (Ctrl + Return)": ["クエリを実行 (Ctrl + Return)"], + "Save": ["保存"], + "An error occurred saving dataset": [""], + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": ["新規保存"], + "Select or type dataset name": [""], + "Undefined": [""], + "Save as": ["別名で保存"], + "Save query": ["クエリを保存"], + "Cancel": ["キャンセル"], + "Update": ["更新"], + "Label for your query": [""], + "Write a description for your query": [""], + "Submit": [""], + "Schedule query": [""], + "Schedule": [""], + "There was an error with your request": [""], + "Please save the query to enable sharing": [ + "共有を有効にするにはクエリを保存して下さい" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" + "Copy query link to your clipboard": [ + "クエリのlinkをクリップボードにコピー" ], - "The access requests seem to have been deleted": [""], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "" + "Save the query to enable this feature": [ + "この機能を有効にするためクエリを保存する" ], - "The chart does not exist": ["チャートが存在しません"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "" + "Copy link": [""], + "No stored results found, you need to re-run your query": [""], + "Preview: `%s`": [""], + "Query history": ["クエリ履歴"], + "Schedule the query periodically": [""], + "You must run the query successfully first": [""], + "Autocomplete": [""], + "CREATE TABLE AS": [""], + "CREATE VIEW AS": [""], + "Estimate the cost before running a query": [""], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Create": ["作成"], + "Reset state": [""], + "Enter a new title for the tab": [""], + "Close tab": [""], + "Rename tab": [""], + "Expand tool bar": [""], + "Hide tool bar": [""], + "Close all other tabs": [""], + "Duplicate tab": [""], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [""], + "Copy partition query to clipboard": [""], + "latest partition:": [""], + "Keys for table": [""], + "View keys & indexes (%s)": [""], + "Original table column order": ["元のテーブル列順で表示"], + "Sort columns alphabetically": ["列をアルファベット順に並び替え"], + "Copy SELECT statement to the clipboard": [ + "SELECT文をクリップボードにコピー" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [""], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Show CREATE VIEW statement": ["CREATE VIEW文を表示"], + "CREATE VIEW statement": ["CREATE VIEW文"], + "Remove table preview": [""], + "Assign a set of parameters as": [""], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "syntax.": [""], + "Edit template parameters": [""], + "Invalid JSON": [""], + "Untitled query": [""], + "%s%s": [""], + "Click to see difference": ["クリックして差分を確認"], + "Altered": ["変更"], + "Chart changes": ["チャートの変更点"], + "Loaded data cached": [""], + "Loaded from cache": [""], + "Click to force-refresh": [""], + "Cached": [""], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The country code standard that Superset should expect to find in the [country] column": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The dashboard has been saved": ["ダッシュボードが保存されました"], - "The data source seems to have been deleted": [""], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "" + "An error occurred while loading the SQL": [ + "SQL のロード中にエラーが発生しました" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "Updating chart was stopped": [""], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "You can't apply cross-filter on this data point.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": ["閉じる"], + "Failed to load chart data.": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The dataset has been saved": [""], - "The dataset linked to this chart may have been deleted.": [""], - "The datasource couldn't be loaded": [ - "データ ソースを読み込めませんでした" - ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Drill to detail: %s": [""], + "Formatted value": [""], + "No rows were returned for this dataset": [""], + "Copy": [""], + "Copy to clipboard": [""], + "Copied to clipboard!": [""], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], + "every": [""], + "every month": [""], + "every day of the month": [""], + "day of the month": [""], + "every day of the week": [""], + "day of the week": [""], + "every hour": [""], + "minute": ["分"], + "reboot": [""], + "Every": [""], + "in": [""], + "on": [""], + "and": [""], + "at": [""], + ":": [""], + "Invalid cron expression": [""], + "Clear": [""], + "Sunday": ["日曜日"], + "Monday": ["月曜日"], + "Tuesday": ["火曜日"], + "Wednesday": ["水曜日"], + "Thursday": ["木曜日"], + "Friday": ["金曜日"], + "Saturday": ["土曜日"], + "January": ["1月"], + "February": ["2月"], + "March": ["3月"], + "April": ["4月"], + "May": ["5月"], + "June": ["6月"], + "July": ["7月"], + "August": ["8月"], + "September": ["9月"], + "October": ["10月"], + "November": ["11月"], + "December": ["12月"], + "SUN": ["日"], + "MON": ["月"], + "TUE": ["火"], + "WED": ["水"], + "THU": ["木"], + "FRI": ["金"], + "SAT": ["土"], + "JAN": ["1月"], + "FEB": ["2月"], + "MAR": ["3月"], + "APR": ["4月"], + "MAY": ["5月"], + "JUN": ["6月"], + "JUL": ["7月"], + "AUG": ["8月"], + "SEP": ["9月"], + "OCT": ["10月"], + "NOV": ["11月"], + "DEC": ["12月"], + "Select database or type to search databases": [""], + "Force refresh schema list": [""], + "Select schema or type to search schemas": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The distance between cells, in pixels": [""], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ - "" + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "データセットを変更すると、ターゲットのデータセットに存在しないカラムやメタデータに依存しているチャートが壊れることがあります" ], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "dataset": ["データセット"], + "Warning!": ["警告!"], + "Search / Filter": [""], + "Add item": [""], + "BOOLEAN": [""], + "Physical (table or view)": [""], + "Virtual (SQL)": [""], + "Data type": [""], + "Advanced data type": [""], + "Advanced Data type": [""], + "Datetime format": ["日時フォーマット"], + "The pattern of timestamp format. For strings use ": [""], + "Python datetime string pattern": [""], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Person or group that has certified this metric": [""], + "Certified by": [""], + "Certification details": [""], + "Details of the certification": [""], + "Is dimension": [""], + "Is filterable": [""], + "Select owners": [""], + "Modified columns: %s": [""], + "Removed columns: %s": [""], + "New columns added: %s": [""], + "Metadata has been synced": [""], + "An error has occurred": ["エラーが発生しました"], + "Column name [%s] is duplicated": [""], + "Metric name [%s] is duplicated": [""], + "Calculated column [%s] requires an expression": [""], + "Invalid currency code in saved metrics": [""], + "Basic": [""], + "Default URL": [""], + "Default URL to redirect to when accessing from the dataset list page": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Autocomplete filters": [""], + "Whether to populate autocomplete filters options": [""], + "Autocomplete query predicate": [""], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The id of the active chart": ["アクティブなチャートのID"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ + "Cache timeout": [""], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Always filter main datetime column": [""], + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "": [""], + "Click the lock to make changes.": [""], + "Click the lock to prevent further changes.": [""], + "virtual": [""], + "Dataset name": [""], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Physical": [""], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "D3 format": [""], + "Metric currency": [""], + "Select or type currency symbol": [""], + "Warning": ["警告"], + "Optional warning about use of this metric": [""], + "Be careful.": [""], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "Sync columns from source": [""], + "Calculated columns": [""], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "": [""], + "Settings": ["設定"], + "The dataset has been saved": [""], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "Are you sure you want to save and apply changes?": [""], + "Confirm save": [""], + "OK": [""], + "Edit Dataset ": [""], + "Use legacy datasource editor": [""], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "DELETE": ["削除"], + "delete": ["削除"], + "Type \"%s\" to confirm": [""], + "Click to edit": [""], + "You don't have the rights to alter this title.": [""], + "No databases match your search": [""], + "There are no databases available": [""], + "Unexpected error": [""], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": [""], + "Missing dataset": ["データセットが見つかりません"], + "See more": [""], + "See less": [""], + "Copy message": [""], + "Details": [""], + "Did you mean:": ["もしかして:"], + "Parameter error": ["パラメータエラー"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": ["タイムアウトエラー"], + "Click to favorite/unfavorite": ["クリックしてお気に入りに追加/解除"], + "Cell content": [""], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "" + "OVERWRITE": ["上書き"], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["上書き"], + "Import": ["インポート"], + "Import %s": ["インポート %s"], + "Last Updated %s": ["最終更新 %s"], + "+ %s more": [""], + "%s Selected": [""], + "Deselect all": ["すべての選択を解除"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "No Data": [""], + "%s-%s of %s": [""], + "Type a value": [""], + "Select or type a value": [""], + "Last modified": ["最終更新"], + "Modified by": ["更新者"], + "Created by": ["作成者"], + "Created on": ["作成日"], + "Menu actions trigger": [""], + "Select ...": [""], + "Click to cancel sorting": [""], + "There was an error loading the tables": [""], + "See table schema": ["テーブルスキーマを参照"], + "Select table or type to search tables": [""], + "Force refresh table list": ["テーブルリストを強制更新"], + "Timezone selector": [""], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "このコンポーネント用の十分なスペースがありません。幅を狭くするか、移動先の幅を大きくしてみてください。" ], - "The number of seconds before expiring the cache": [ - "キャッシュを期限切れにするまでの秒数" + "Can not move top level tab into nested tabs": [ + "トップレベルのタブをネストされたタブに移動できません" ], - "The object does not exist in the given database.": [""], - "The parameter %(parameters)s in your query is undefined.": [""], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "This chart has been moved to a different filter scope.": [ + "このチャートは別のフィルタスコープに移動されました。" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "There was an issue fetching the favorite status of this dashboard.": [ + "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "There was an issue favoriting this dashboard.": [ + "このダッシュボードのお気に入りする際に問題が発生しました。" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "保存したクエリと一緒にインポートするには、以下のデータベースのパスワードが必要です。データベース構成の ”Secure Extra” と ”Certificate” セクションはエクスポートファイルに存在せず、必要に応じてインポート後に手動で追加する必要がある点に注意してください。" + "You do not have permissions to edit this dashboard.": [ + "このダッシュボードを編集する権限がありません。" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "" + "This dashboard was saved successfully.": [ + "このダッシュボードは正常に保存されました。" ], - "The pattern of timestamp format. For strings use ": [""], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "" + "You do not have permission to edit this dashboard": [ + "このダッシュボードを編集する権限がありません" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "" - ], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": [""], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "" + "Could not fetch all saved charts": [ + "保存したすべてのチャートを取得できませんでした" ], - "The query has a syntax error.": [""], - "The query returned no data": [""], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "" + "Sorry there was an error fetching saved charts: ": [ + "保存したグラフの取得中にエラーが発生しました: " ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "ここで選択したカラーパレットは、このダッシュボードの個々のグラフに適用される色を上書きします" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "You have unsaved changes.": ["未保存の変更があります。"], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "" + "Create a new chart": ["新しいチャートを作成"], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ + "このコンポーネントに関連付けられているチャート定義はありません。削除されたのでしょうか?" ], - "The rich tooltip shows a list of all series for that point in time": [ - "" + "Delete this container and save to remove this message.": [ + "このコンテナを削除し、保存してこのメ​​ッセージを削除します。" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "" + "Refresh interval": ["更新間隔"], + "Refresh frequency": ["更新頻度"], + "Are you sure you want to proceed?": ["続行してもよろしいですか?"], + "Save for this session": ["このセッションのために保存"], + "You must pick a name for the new dashboard": [ + "新しいダッシュボードの名前を選択する必要があります" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Save dashboard": ["ダッシュボードを保存"], + "Overwrite Dashboard [%s]": ["ダッシュボード [%s] を上書き"], + "Save as:": ["別名で保存:"], + "[dashboard name]": ["[ダッシュボード名]"], + "also copy (duplicate) charts": ["チャートも複製する"], + "Create new chart": ["新しいチャートを作成"], + "Filter your charts": ["チャートを検索"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Added": ["追加済み"], + "Viz type": ["可視化タイプ"], + "Dataset": ["データセット"], + "Superset chart": [""], + "Check out this chart in dashboard:": [""], + "Layout elements": [""], + "Load a CSS template": ["CSSテンプレートの読み込み"], + "Live CSS editor": [""], + "Collapse tab content": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "" + "Enable embedding": [""], + "Redo the action": [""], + "Edit dashboard": ["ダッシュボードを編集"], + "An error occurred while fetching available CSS templates": [ + "利用可能なCSSテンプレートの取得中にエラーが発生しました" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "可視化のための時間カラム。テーブルのDATETIME列を返す任意の式を定義することができます。この列または式に対して以下のフィルターが適用されることに注意してください" + "Superset dashboard": ["Supersetダッシュボード"], + "Check out this dashboard: ": ["このダッシュボードを確認してください: "], + "Refresh dashboard": ["ダッシュボードを更新"], + "Edit properties": [""], + "Edit CSS": ["CSSを編集"], + "Share": ["共有"], + "Set filter mapping": ["フィルタマッピングを設定"], + "Set auto-refresh interval": ["自動更新間隔を設定"], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Apply": ["適用"], + "Error": [""], + "A valid color scheme is required": ["有効な配色が必要です"], + "JSON metadata is invalid!": [""], + "The dashboard has been saved": ["ダッシュボードが保存されました"], + "Access": ["アクセス"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "所有者は、ダッシュボードを変更できるユーザーのリストです。名前またはユーザー名で検索できます。" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Colors": ["色"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Dashboard properties": ["ダッシュボードのプロパティ"], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "" + "Basic information": ["基本情報"], + "URL slug": ["URLスラッグ"], + "A readable URL for your dashboard": ["ダッシュボード用の読みやすいURL"], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": [""], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。このダッシュボードを公開するには、ここをクリックしてください。" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "可視化の期間。すべての相対時間( e.g. “Last month”, “Last 7 days”, “now”, etc )はサーバーのローカル時間(sans timezone)を使用して評価されます。すべてのツールヒントとプレースホルダー時間は UTC (sans timezone) で表されます。タイムスタンプは、エンジンのローカルタイムゾーンを使用してデータベースによって評価されます。開始時刻や終了時刻を指定する場合は ISO 8601 形式に従ってタイムゾーンを明示的に設定できます。" + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。お気に入りに追加して表示するか、URLを直接使用してアクセスします。" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "" + "This dashboard is published. Click to make it a draft.": [ + "このダッシュボードは公開されています。クリックして下書きにします。" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": ["表示する可視化のタイプ"], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [""], - "The user/password combination is not valid (Incorrect password for user).": [ - "" + "Draft": ["下書き"], + "Annotation layers are still loading.": [ + "注釈レイヤーはまだ読み込み中です。" ], - "The username \"%(username)s\" does not exist.": [""], - "The way the ticks are laid out on the X-axis": [""], - "There are associated alerts or reports": [ - "関連するアラートまたはレポートがあります" + "One ore more annotation layers failed loading.": [ + "1つ以上の注釈レイヤーの読み込みに失敗しました。" ], - "There are associated alerts or reports: %s,": [""], - "There are no components added to this tab": [""], - "There are no databases available": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "" + ], + "Cached %s": [""], + "Fetched %s": [""], + "Query %s: %s": [""], + "Force refresh": ["強制更新"], + "View query": ["クエリを見る"], + "Share chart by email": ["チャートをメールで共有"], + "Export to full .CSV": [""], + "Download as image": ["画像としてダウンロード"], + "Something went wrong.": [""], + "Search...": ["検索…"], + "No filter is selected.": ["フィルタは選択されていません。"], + "Editing 1 filter:": ["1つのフィルタを編集する:"], + "Batch editing %d filters:": [" %d フィルタのバッチ編集:"], + "Configure filter scopes": ["フィルタスコープを構成する"], "There are no filters in this dashboard.": [ "このダッシュボードにはフィルターはありません。" ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "このコンポーネントに関連付けられているチャート定義はありません。削除されたのでしょうか?" - ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "このコンポーネント用の十分なスペースがありません。幅を狭くするか、移動先の幅を大きくしてみてください。" - ], - "There was an error fetching your recent activity:": [ - "最近のアクティビティの取得中にエラーが発生しました:" - ], - "There was an error loading the tables": [""], - "There was an error with your request": [""], - "There was an issue deleting %s: %s": [ - "%s の削除中に問題が発生しました: %s" - ], - "There was an issue deleting the selected %s: %s": [""], - "There was an issue deleting the selected annotations: %s": [ - "選択した注釈の削除で問題が発生しました: %s" - ], - "There was an issue deleting the selected charts: %s": [""], - "There was an issue deleting the selected dashboards: ": [ - "選択したダッシュボードの削除で問題が発生しました。: " - ], - "There was an issue deleting the selected datasets: %s": [ - "選択したデータセットの削除に問題が発生しました: %s" - ], - "There was an issue deleting the selected layers: %s": [ - "選択したレイヤーの削除で問題が発生しました: %s" - ], - "There was an issue deleting the selected queries: %s": [ - "選択したクエリの削除に問題が発生しました: %s" - ], - "There was an issue deleting the selected templates: %s": [ - "選択したテンプレートの削除で問題が発生しました: %s" - ], - "There was an issue deleting: %s": ["削除中に問題が発生しました: %s"], - "There was an issue favoriting this dashboard.": [ - "このダッシュボードのお気に入りする際に問題が発生しました。" + "Expand all": ["すべて展開"], + "Collapse all": ["すべて折りたたむ"], + "This markdown component has an error.": [ + "このマークダウンコンポーネントにエラーがあります。" ], - "There was an issue fetching the favorite status of this dashboard.": [ - "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" + "This markdown component has an error. Please revert your recent changes.": [ + "このマークダウンコンポーネントにエラーがあります。最近の変更を元に戻してください。" ], - "There was an issue fetching your recent activity: %s": [ - "最近のアクティビティの取得中に問題が発生しました: %s" + "Empty row": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "Delete dashboard tab?": ["ダッシュボードタブを削除しますか?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "" ], - "There was an issue previewing the selected query %s": [ - "選択したクエリのプレビュー中に問題が発生しました %s" + "button (cmd + z) until you save your changes.": [""], + "CANCEL": ["キャンセル"], + "Divider": ["区切り線"], + "Header": ["見出し"], + "Tabs": ["タブ"], + "background": [""], + "Preview": ["プレビュー"], + "Sorry, something went wrong. Try again later.": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "" ], - "There was an issue previewing the selected query. %s": [ - "選択したクエリのプレビュー中に問題が発生しました。 %s" + "Clear all": ["すべてクリア"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "These are the tables this filter will be applied to.": [""], - "These filters apply to the values available in the dropdowns": [""], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "All charts": ["すべてのチャート"], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Horizontal (Top)": [""], + "Cannot load filter": ["フィルタを読み込めません"], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ "" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "この JSON オブジェクトは、ダッシュボード ビューの [保存] または [上書き] ボタンをクリックすると動的に生成されます。これは、参照用と特定のパラメータを変更する可能性のあるパワーユーザーのために公開されています。" - ], - "This action will permanently delete %s.": [""], - "This action will permanently delete the layer.": [ - "このアクションにより、レイヤーが完全に削除されます。" - ], - "This action will permanently delete the saved query.": [ - "この操作を実行すると、保存したクエリは完全に削除されます。" - ], - "This action will permanently delete the template.": [ - "このアクションにより、テンプレートが完全に削除されます。" - ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "" - ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Scope": [""], + "(Removed)": ["(削除)"], + "Undo?": ["元に戻しますか?"], + "Add filters and dividers": [""], + "[untitled]": [""], + "Cyclic dependency detected": [""], + "(deleted or invalid type)": [""], + "Add filter": ["フィルタを追加"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ "" ], - "This chart has been moved to a different filter scope.": [ - "このチャートは別のフィルタスコープに移動されました。" - ], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "Scoping": ["スコープ"], + "Time range": ["期間"], + "Group By": [""], + "Group by": [""], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["フィルタ名"], + "Name is required": ["名前が必要です"], + "Filter Type": ["フィルタタイプ"], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Dataset is required": ["データセットが必要です"], + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Sort filter values": [""], + "Sort ascending": [""], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Sort metric": [""], + "Single Value": [""], + "Single value type": [""], + "Filter has default value": [""], + "Default Value": ["デフォルト値"], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": ["このフィルタを削除しました。"], + "Restore Filter": ["フィルタを復元"], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Default value must be set when \"Filter value is required\" is checked": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。お気に入りに追加して表示するか、URLを直接使用してアクセスします。" - ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。このダッシュボードを公開するには、ここをクリックしてください。" + "Apply to all panels": ["すべてのパネルに適用"], + "Apply to specific panels": ["特定のパネルに適用"], + "Only selected panels will be affected by this filter": [ + "選択したパネルのみがこのフィルターの影響を受けます" ], - "This dashboard is published. Click to make it a draft.": [ - "このダッシュボードは公開されています。クリックして下書きにします。" + "All panels with this column will be affected by this filter": [ + "この列のすべてのパネルは、このフィルターの影響を受けます" ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "このダッシュボードは最近変更されました。最新の情報を入手するにはダッシュボードをリロードしてください。" - ], - "This dashboard was saved successfully.": [ - "このダッシュボードは正常に保存されました。" - ], - "This database is managed externally, and can't be edited in Superset": [ + "Keep editing": ["編集を続ける"], + "Yes, cancel": ["はい、キャンセルします"], + "Are you sure you want to cancel?": ["キャンセルしてもよろしいですか?"], + "Error loading chart datasources. Filters may not work correctly.": [""], + "Transparent": [""], + "All filters": ["すべてのフィルタ"], + "Click to edit %s.": [""], + "Click to edit chart.": [""], + "Medium": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "Equal to (=)": [""], + "Not equal to (≠)": [""], + "Less than (<)": [""], + "Less or equal (<=)": [""], + "Greater or equal (>=)": [""], + "Like": [""], + "Like (case insensitive)": [""], + "Is not null": [""], + "Is null": [""], + "use latest_partition template": [""], + "Is true": [""], + "Time granularity": [""], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "One or many metrics to display": [""], + "Fixed color": ["固定の色"], + "Right axis metric": ["右軸の指標"], + "Choose a metric for right axis": ["右軸の指標を選択"], + "Linear color scheme": ["線形配色"], + "Color metric": ["色の指標"], + "One or many controls to pivot as columns": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [""], - "This defines the level of the hierarchy": [""], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ - "" + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "可視化の期間。すべての相対時間( e.g. “Last month”, “Last 7 days”, “now”, etc )はサーバーのローカル時間(sans timezone)を使用して評価されます。すべてのツールヒントとプレースホルダー時間は UTC (sans timezone) で表されます。タイムスタンプは、エンジンのローカルタイムゾーンを使用してデータベースによって評価されます。開始時刻や終了時刻を指定する場合は ISO 8601 形式に従ってタイムゾーンを明示的に設定できます。" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ "" ], - "This markdown component has an error.": [ - "このマークダウンコンポーネントにエラーがあります。" - ], - "This markdown component has an error. Please revert your recent changes.": [ - "このマークダウンコンポーネントにエラーがあります。最近の変更を元に戻してください。" + "Metric assigned to the [X] axis": ["[X] 軸に割り当てられた指標"], + "Metric assigned to the [Y] axis": ["[Y] 軸に割り当てられた指標"], + "Bubble size": [""], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "" ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ + "Color scheme": ["配色"], + "GROUP BY": [""], + "Use this section if you want a query that aggregates": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "This section contains options that allow for advanced analytical post processing of query results": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Clear form": [""], + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type is not supported.": [ - "この可視化方式はサポートされていません。" - ], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": ["木曜日"], - "Time": ["時間"], - "Time Comparison": [""], - "Time Granularity": [""], - "Time Series - Bar Chart": ["時系列 - 棒グラフ"], - "Time Series - Line Chart": ["時系列 - 折れ線グラフ"], - "Time Series - Nightingale Rose Chart": [""], - "Time Series - Paired t-test": [""], - "Time Series - Percent Change": ["時系列 - 変化率"], - "Time Series - Period Pivot": ["時系列 - 期間ピボット"], - "Time Series - Stacked": ["時系列 - 積み上げ"], - "Time Series Options": [""], - "Time Table View": [""], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": [""], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Customize": ["カスタマイズ"], + "Generating link, please wait..": [""], + "Save (Overwrite)": ["上書き保存"], + "Chart name": ["チャート名"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["新しいダッシュボードに追加"], + "Save & go to dashboard": ["保存してダッシュボードに移動"], + "Save chart": ["チャートを保存"], + "Expand data panel": [""], + "No samples were returned for this dataset": [""], + "Search Metrics & Columns": [""], + " to edit or add columns and metrics.": [""], + "Showing %s of %s": ["Showing %s of %s"], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], + "Unable to retrieve dashboard colors": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Not available": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Time grain filter plugin": [""], - "Time grain missing": [""], - "Time granularity": [""], - "Time in seconds": ["秒単位の時間"], - "Time range": ["期間"], - "Time related form attributes": [""], - "Time series columns": [""], - "Time shift": [""], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "Controls labeled ": [""], + "Control labeled ": [""], + "Open Datasource tab": ["データソースタブを開く"], + "You do not have permission to edit this chart": [ + "このチャートを編集する権限がありません" + ], + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Person or group that has certified this chart.": [""], + "Configuration": [""], + "A list of users who can alter the chart. Searchable by name or username.": [ "" ], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Limit reached": [""], + "Invalid lat/long configuration.": [""], + "Reverse lat/long ": [""], + "Longitude & Latitude columns": [""], + "Delimited long & lat single column": [""], + "Multiple formats accepted, look the geopy.points Python library for more details": [ "" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Geohash": [""], + "textarea": [""], + "in modal": [""], + "Sorry, An error occurred": ["エラーが発生しました"], + "Open in SQL Lab": ["SQL Labで開く"], + "Failed to verify select options: %s": [""], + "Annotation layer": ["注釈レイヤー"], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "Time-series Table": ["時系列 - 表"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Annotation Slice Configuration": ["注釈スライスの構成"], + "This section allows you to configure how to use the slice\n to generate annotations.": [ "" ], - "Timeout error": ["タイムアウトエラー"], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [""], - "Timezone selector": [""], - "Title": ["タイトル"], - "Title or Slug": ["タイトルまたはスラッグ"], - "To filter on a metric, use Custom SQL tab.": [""], - "To get a readable URL for your dashboard": [ - "ダッシュボードの読み取り可能なURLを取得するには" - ], - "Tools": [""], - "Tooltip": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": [""], - "Totals": [""], - "Track job": ["ジョブ履歴"], - "Transformable": [""], - "Transparent": [""], - "Transpose pivot": [""], - "Tree layout": [""], - "Treemap": ["ツリーマップ"], - "Triangle": [""], - "Trigger Alert If...": [""], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Interval start column": [""], + "Event time column": [""], + "This column must contain date/time information.": [""], + "Interval End column": [""], + "Pick a title for you annotation.": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": ["火曜日"], - "Type": ["タイプ"], - "Type \"%s\" to confirm": [""], - "Type a value": [""], - "Type a value here": [""], - "Type is required": ["タイプが必要です"], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["入力または選択 [%s]"], - "URL": [""], - "URL parameters": ["URLパラメータ"], - "URL slug": ["URLスラッグ"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [ - "“%(database)s” に接続できません。" + "Display configuration": [""], + "Configure your how you overlay is displayed here.": [""], + "Style": [""], + "Solid": [""], + "Long dashed": [""], + "Color": [""], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hides the Line for the time series": [""], + "Layer configuration": ["レイヤー構成"], + "Configure the basics of your Annotation Layer.": [""], + "Mandatory": [""], + "Hide layer": ["レイヤーを隠す"], + "Whether to always show the annotation label": [""], + "Annotation layer type": ["注釈レイヤーのタイプ"], + "Choose the annotation layer type": [ + "注釈レイヤーのタイプを選んでください" ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Choose the source of your annotations": [""], + "Remove": ["削除"], + "Edit annotation layer": ["注釈レイヤーを編集"], + "Add annotation layer": ["注釈レイヤーを追加"], + "Empty collection": ["空のコレクション"], + "Add an item": ["アイテムを追加"], + "Remove item": ["アイテムを削除"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "dashboard": ["ダッシュボード"], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Edit formatter": [""], + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": ["アラート"], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": ["必須"], + "Right value": [""], + "Target value": [""], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "Isoband": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["データセットを編集"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Undefined": [""], - "Undefined window for rolling operation": [""], - "Undo?": ["元に戻しますか?"], - "Unexpected error": [""], - "Unexpected error occurred, please check your logs for details": [""], - "Unknown": ["不明"], - "Unknown MySQL server host \"%(hostname)s\".": [""], - "Unknown Presto Error": [""], - "Unknown Status": [""], - "Unknown column used in orderby: %(col)s": [""], - "Unknown error": ["不明なエラー"], - "Unknown input format": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "関数 %(func)s の安全でない戻り値の型: %(value_type)s" - ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "キー %(key)s の安全でないテンプレート値: %(value_type)s" - ], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [""], - "Unsupported return value for method %(name)s": [ - "メソッド %(name)s のサポートされていない戻り値" - ], - "Unsupported template value for key %(key)s": [""], - "Unsupported time grain: %(time_grain)s": [""], - "Untitled query": [""], - "Update": ["更新"], - "Updating chart was stopped": [""], - "Upload": ["アップロード"], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "View in SQL Lab": ["SQL Labで表示"], + "Query preview": ["クエリプレビュー"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [""], + "RANGE TYPE": ["範囲のタイプ"], + "Actual time range": ["実際の期間"], + "APPLY": ["適用"], + "Edit time range": ["期間を編集"], + "Configure Advanced Time Range ": [""], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "End date excluded from time range": [""], + "Configure Time Range: Previous...": [""], + "Configure Time Range: Last...": [""], + "Configure custom time range": [""], + "Relative quantity": [""], + "Anchor to": [""], + "NOW": [""], + "Date/Time": [""], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": ["例"], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [""], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": ["前"], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Midnight": [""], + "Saved": [""], + "%s column(s)": [""], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [ - "これを使用して、すべての円の静的な色を定義します" + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Click to edit label": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "" ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "%s option(s)": [""], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "To filter on a metric, use Custom SQL tab.": [""], + "%s operator(s)": [""], + "Select operator": [""], + "Comparator option": [""], + "Type a value here": [""], + "Filter value (case sensitive)": [""], + "Failed to retrieve advanced type": [""], + "choose WHERE or HAVING...": [""], + "Filters by columns": [""], + "Filters by metrics": [""], + "Fixed": [""], + "Based on a metric": [""], + "My metric": [""], + "Add metric": [""], + "Select aggregate options": [""], + "%s aggregates(s)": [""], + "%s saved metric(s)": [""], + "Saved metric": ["保存した指標"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": [""], + "aggregate": [""], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Time series columns": [""], + "Sparkline": [""], + "Period average": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["幅"], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "User": ["ユーザー"], - "User Roles": ["ユーザーの役割"], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [""], - "User query": ["ユーザークエリ"], - "Username": ["ユーザー名"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "" + "Currently rendered: %s": [""], + "Recommended tags": [""], + "No description available.": [""], + "Examples": ["例"], + "This visualization type is not supported.": [ + "この可視化方式はサポートされていません。" ], - "Value": [""], - "Value Domain": [""], - "Value bounds": [""], - "Value must be greater than 0": ["値は 0 より大きくする必要があります"], - "Values are dependent on other filters": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "" + "Select a visualization type": ["可視化方式を選んでください"], + "No results found": [""], + "Superset Chart": [""], + "New chart": ["新しいチャート"], + "Edit chart properties": ["チャートのプロパティを編集"], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["SQL Labで実行"], + "Code": [""], + "Markup type": [""], + "Pick your favorite markup language": [ + "お気に入りのマークアップ言語を選択" ], - "Vehicle Types": [""], - "Verbose Name": [""], - "Version": [""], - "Version number": [""], - "Video game consoles": [""], - "View All »": [""], - "View in SQL Lab": ["SQL Labで表示"], - "View keys & indexes (%s)": [""], - "View query": ["クエリを見る"], - "Viewed": ["表示した項目"], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset": [""], - "Virtual dataset query cannot be empty": [""], - "Virtual dataset query cannot consist of multiple statements": [""], - "Virtual dataset query must be read-only": [""], - "Visual Tweaks": [""], - "Visualization Type": ["可視化方式"], - "Visualization type": ["可視化方式"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "" + "Put your code here": [""], + "URL parameters": ["URLパラメータ"], + "Extra parameters for use in jinja templated queries": [""], + "Annotations and layers": [""], + "Annotation layers": ["注釈レイヤー"], + "My beautiful colors": [""], + "< (Smaller than)": [""], + "> (Larger than)": [""], + "<= (Smaller or equal)": [""], + ">= (Larger or equal)": [""], + "== (Is equal)": [""], + "!= (Is not equal)": [""], + "Not null": [""], + "60 days": ["60日"], + "90 days": ["90日"], + "Add notification method": [""], + "Add delivery method": [""], + "Add": ["追加"], + "Report name": ["レポート名"], + "Alert name": ["アラート名"], + "Active": ["アクティブ"], + "Alert condition": ["アラート状態"], + "SQL Query": ["SQLクエリ"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": [""], + "Report schedule": ["レポートスケジュール"], + "Alert condition schedule": ["アラート状態スケジュール"], + "Timezone": [""], + "Schedule settings": ["スケジュール設定"], + "Log retention": ["ログの保持"], + "Working timeout": ["作業タイムアウト"], + "Time in seconds": ["秒単位の時間"], + "Grace period": ["猶予期間"], + "Message content": ["メッセージ内容"], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": [""], + "report": ["レポート"], + "CRON expression": [""], + "Report sent": ["レポートが送信されました"], + "Alert triggered, notification sent": [ + "アラートが発動し、通知が送信されました" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Report sending": ["レポート送信"], + "Alert running": ["アラート発動中"], + "Report failed": ["レポートに失敗しました"], + "Alert failed": ["アラートに失敗しました"], + "Nothing triggered": [""], + "Alert Triggered, In Grace Period": ["アラート発動、猶予期間中"], + "Delivery method": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [""], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": [""], + "Edit annotation layer properties": ["注釈レイヤーのプロパティを編集"], + "Annotation layer name": ["注釈レイヤー名"], + "Description (this can be seen in the list)": [ + "説明(これはリストで見ることができます)" + ], + "annotation": ["注釈"], + "Edit annotation": ["注釈を編集する"], + "Add annotation": ["注釈を追加"], + "date": ["日付"], + "Additional information": ["追加情報"], + "Please confirm": ["確認してください"], + "Are you sure you want to delete": ["削除してもよろしいですか"], + "css_template": [""], + "Edit CSS template properties": ["CSSテンプレートのプロパティを編集する"], + "Add CSS template": ["CSSテンプレートを追加する"], + "css": [""], + "published": ["公開"], + "draft": ["下書き"], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": [""], + "Schema cache timeout": [""], + "Table cache timeout": [""], + "Asynchronous query execution": ["非同期でのクエリ実行"], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Secure extra": [""], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Schemas allowed for File upload": [""], + "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Viz is missing a datasource": ["Viz はデータソースがありません"], - "Viz type": ["可視化タイプ"], - "WED": ["水"], - "Want to add a new database?": [""], - "Warning": ["警告"], - "Warning Message": ["警告メッセージ"], - "Warning!": ["警告!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "Was unable to check your query": [""], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "e.g. Analytics": [""], + "Private Key & Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "Private Key Password": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Display Name": ["表示名"], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "Refer to the": [""], + "for more information on how to structure your URI.": [""], + "Test connection": ["接続のテスト"], + "database": ["データベース"], + "Please enter a SQLAlchemy URI to test": [""], + "e.g. world_population": [""], + "Sorry there was an error fetching database information: %s": [""], + "Or choose from a list of other databases we support:": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "Web": [""], - "Wednesday": ["水曜日"], - "Week": ["週"], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "What should be shown on the label?": [""], - "What should happen if the table already exists": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "When a secondary metric is provided, a linear color scale is used.": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "QUERY DATA IN SQL LAB": [""], + "Edit database": ["データベースを編集"], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "" - ], - "When using 'Group By' you are limited to use a single metric": [ - "‘Group By’ を使用する場合、指標は1つに制限されます。" - ], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "" - ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "" - ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "" - ], - "Whether to align background charts with both positive and negative values at 0": [ + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "Whether to align positive and negative values in cell bar chart at 0": [ + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ "" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Enter a name for this sheet": [""], + "Paste the shareable Google Sheet URL here": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "Refreshing columns": [""], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a client-side search box": [""], - "Whether to include a time filter": [""], - "Whether to include the percentage in the tooltip": [""], - "Whether to include the time granularity as defined in the time section": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Unable to load columns for the selected table. Please select a different table.": [ "" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [""], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "" + "Create chart with dataset": [""], + "chart": ["チャート"], + "No charts": ["チャートなし"], + "This dataset is not used to power any charts.": [""], + "Select a database table and create dataset": [""], + "[Untitled]": [""], + "Unknown": ["不明"], + "Edited": ["編集した項目"], + "Created": ["作成した項目"], + "Viewed": ["表示した項目"], + "Favorite": ["お気に入り"], + "Mine": ["個人用"], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [ + "ダッシュボードの取得中にエラーが発生しました: %s" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort descending or ascending": [ - "降順または昇順でソートするかどうか" + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" ], - "Whether to sort results by the selected metric in descending order.": [ - "" + "Recently created charts, dashboards, and saved queries will appear here": [ + "最近作成したグラフ、ダッシュボード、保存したクエリがここに表示されます" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "最近編集したグラフ、ダッシュボード、保存したクエリがここに表示されます" ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "Width": ["幅"], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Working": [""], - "Working timeout": ["作業タイムアウト"], - "World Map": ["世界地図"], - "Write a description for your query": [""], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [""], - "Write dataframe index as a column.": [""], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": ["X軸"], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort By": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": ["Y軸"], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": [""], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort By": [""], - "Y-axis bounds": [""], - "Year": ["年"], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Yes": [""], - "Yes, cancel": ["はい、キャンセルします"], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "SQL query": ["SQLクエリ"], + "You don't have any favorites yet!": ["まだお気に入りはありません!"], + "See all %(tableName)s": [""], + "Connect Google Sheet": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "" + "Info": ["情報"], + "Logout": ["ログアウト"], + "About": [""], + "Powered by Apache Superset": [""], + "SHA": [""], + "Build": [""], + "Login": ["ログイン"], + "query": ["クエリ"], + "Deleted: %s": ["削除しました: %s"], + "There was an issue deleting %s: %s": [ + "%s の削除中に問題が発生しました: %s" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "" + "This action will permanently delete the saved query.": [ + "この操作を実行すると、保存したクエリは完全に削除されます。" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Delete Query?": ["クエリを削除しますか?"], + "Ran %s": [""], + "Saved queries": ["保存したクエリ"], + "Next": ["次"], + "Tab name": ["タブ名"], + "User query": ["ユーザークエリ"], + "Executed query": ["実行したクエリ"], + "Query name": ["クエリ名"], + "SQL Copied!": [""], + "Sorry, your browser does not support copying.": [""], + "We were unable to active or deactivate this report.": [""], + "Weekly Report for %s": [""], + "Edit email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Email reports active": [""], + "This action will permanently delete %s.": [""], + "Rule added": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "既に存在する 1 つ以上の保存済みクエリをインポートしています。上書きすると、作業の一部が失われる可能性があります。上書きしますか?" - ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "These are the datasets this filter will be applied to.": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "" ], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Group Key": [""], + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ + "Clause": [""], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ "" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Add description of your tag": [""], + "Chosen non-numeric column": [""], + "User must select a value before applying the filter": [""], + "Single value": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [""], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "[Columns] を [Group By]/[Metrics]/[Percentage Metrics] と組み合わせて使用することはできません。どちらか一方を選択してください。" - ], - "You do not have permission to edit this chart": [ - "このチャートを編集する権限がありません" - ], - "You do not have permission to edit this dashboard": [ - "このダッシュボードを編集する権限がありません" + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "No time columns": [""], + "Time column filter plugin": [""], + "Time grain filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], + "reports": ["レポート"], + "alerts": ["アラート"], + "There was an issue deleting the selected %s: %s": [""], + "Last run": ["前回の実行"], + "Execution log": ["実行ログ"], + "Bulk select": ["一括選択"], + "No %s yet": [""], + "Owner": ["所有者"], + "All": [""], + "Status": ["状態"], + "An error occurred while fetching dataset datasource values: %s": [ + "データセット・データソース値の取得中にエラーが発生しました: %s" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "データソースにアクセスするためのアクセス許可がありません: %(name)s." + "Alerts & reports": ["アラートとレポート"], + "Alerts": ["アラート"], + "Reports": ["レポート"], + "Delete %s?": ["%s を削除しますか?"], + "Are you sure you want to delete the selected %s?": [""], + "There was an issue deleting the selected layers: %s": [ + "選択したレイヤーの削除で問題が発生しました: %s" ], - "You do not have permissions to edit this dashboard.": [ - "このダッシュボードを編集する権限がありません。" + "Edit template": ["テンプレートを編集"], + "Delete template": ["テンプレートを削除"], + "No annotation layers yet": ["注釈レイヤーはまだありません"], + "This action will permanently delete the layer.": [ + "このアクションにより、レイヤーが完全に削除されます。" ], - "You don't have access to this dashboard.": [ - "このダッシュボードにアクセスできません。" + "Delete Layer?": ["本当にレイヤーを削除しますか?"], + "Are you sure you want to delete the selected layers?": [ + "選択したレイヤーを削除してもよろしいですか?" ], - "You don't have any favorites yet!": ["まだお気に入りはありません!"], - "You don't have the rights to alter %(resource)s": [""], - "You don't have the rights to alter this title.": [""], - "You have no permission to approve this request": [""], - "You have removed this filter.": ["このフィルタを削除しました。"], - "You have unsaved changes.": ["未保存の変更があります。"], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "There was an issue deleting the selected annotations: %s": [ + "選択した注釈の削除で問題が発生しました: %s" + ], + "Delete annotation": ["注釈を削除する"], + "Annotation": ["注釈"], + "No annotation yet": ["注釈はまだありません"], + "Back to all": [""], + "Delete Annotation?": ["注釈を削除しますか?"], + "Are you sure you want to delete the selected annotations?": [ + "選択した注釈を削除してもよろしいですか?" + ], + "Failed to load chart data": [""], + "Choose a dataset": ["データセットを選択"], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You must pick a name for the new dashboard": [ - "新しいダッシュボードの名前を選択する必要があります" + "There was an issue deleting the selected charts: %s": [""], + "Any": ["任意"], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [""], + "Alphabetical": ["ABC順"], + "Recently modified": ["更新"], + "Least recently modified": ["最終更新"], + "Import charts": ["チャートのインポート"], + "Are you sure you want to delete the selected charts?": [ + "選択したチャートを削除してもよろしいですか?" ], - "You must run the query successfully first": [""], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "" + "CSS templates": ["CSSテンプレート"], + "There was an issue deleting the selected templates: %s": [ + "選択したテンプレートの削除で問題が発生しました: %s" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "CSS template": ["CSSテンプレート"], + "This action will permanently delete the template.": [ + "このアクションにより、テンプレートが完全に削除されます。" + ], + "Delete Template?": ["テンプレートを削除しますか?"], + "Are you sure you want to delete the selected templates?": [ + "選択したテンプレートを削除してもよろしいですか?" + ], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your query could not be saved": ["クエリを保存できませんでした"], - "Your query could not be scheduled": [""], - "Your query could not be updated": ["クエリを更新できませんでした"], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "Your query was saved": ["クエリが保存されました"], - "Your query was updated": ["クエリが更新されました"], - "Zero imputation": [""], - "Zoom": [""], - "Zoom level of the map": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [""], - "[Longitude] and [Latitude] must be set": [""], - "[Missing Dataset]": ["[データセットが見つかりません]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] データソース %(name)s へのアクセスは許可されました" + "There was an issue deleting the selected dashboards: ": [ + "選択したダッシュボードの削除で問題が発生しました。: " ], - "[Untitled]": [""], - "[asc]": [""], - "[copy]": [""], - "[dashboard name]": ["[ダッシュボード名]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "" + "An error occurred while fetching dashboard owner values: %s": [ + "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" ], - "[untitled]": [""], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [""], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "" + "Are you sure you want to delete the selected dashboards?": [ + "選択したダッシュボードを削除してもよろしいですか?" ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": [""], - "alert": ["アラート"], - "alerts": ["アラート"], - "all": [""], - "also copy (duplicate) charts": ["チャートも複製する"], - "ancestor": [""], - "and": [""], - "annotation": ["注釈"], - "annotation_layer": [""], - "asfreq": [""], - "at": [""], - "auto (Smooth)": [""], - "background": [""], - "basis": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": [""], - "boolean type icon": [""], - "bottom": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "chart": ["チャート"], - "choose WHERE or HAVING...": [""], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": [""], - "connecting to %(dbModelName)s.": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "dashboard": ["ダッシュボード"], - "database": ["データベース"], - "dataset": ["データセット"], - "date": ["日付"], - "day": ["日"], - "day of the month": [""], - "day of the week": [""], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deckGL": [""], - "delete": ["削除"], - "descendant": [""], - "description": [""], - "dialect+driver://username:password@host:port/database": [""], - "draft": ["下書き"], - "dttm": [""], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. Analytics": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": [""], - "error dark": [""], - "every": [""], - "every day of the month": [""], - "every day of the week": [""], - "every hour": [""], - "every month": [""], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "An error occurred while fetching database related data: %s": [""], + "Upload columnar file": [""], + "AQE": [""], + "Allow data manipulation language": [""], + "DML": [""], + "CSV upload": [""], + "Delete database": ["データベースを削除"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ "" ], - "flat": [""], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "hour": ["時間"], - "id": [""], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "Delete Database?": ["データベースを削除しますか?"], + "An error occurred while fetching dataset related data": [""], + "An error occurred while fetching dataset related data: %s": [""], + "Physical dataset": [""], + "Virtual dataset": [""], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [""], + "An error occurred while fetching schema values: %s": [""], + "An error occurred while fetching dataset owner values: %s": [""], + "Import datasets": ["データセットのインポート"], + "There was an issue deleting the selected datasets: %s": [ + "選択したデータセットの削除に問題が発生しました: %s" + ], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ "" ], - "in": [""], - "in modal": [""], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": ["参加"], - "json isn't valid": [""], - "key a-z": [""], - "key z-a": [""], - "latest partition:": [""], - "less than {min} {name}": [""], + "Delete Dataset?": ["データセットを削除しますか?"], + "Are you sure you want to delete the selected datasets?": [ + "選択したデータセットを削除しますか?" + ], + "0 Selected": [""], + "%s Selected (Virtual)": [""], + "%s Selected (Physical)": [""], + "%s Selected (%s Physical, %s Virtual)": [""], "log": ["ログ"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "" + "Execution ID": ["実行 ID"], + "Scheduled at (UTC)": ["スケジュール設定時刻 (UTC)"], + "Start at (UTC)": ["開始時刻 (UTC)"], + "Error message": ["エラーメッセージ"], + "There was an issue fetching your recent activity: %s": [ + "最近のアクティビティの取得中に問題が発生しました: %s" ], - "mean": [""], - "median": [""], - "minute": ["分"], - "month": ["月"], - "more than {max} {name}": [""], - "must have a value": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "on": [""], - "or use existing ones from the panel on the right": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "" + "Thumbnails": [""], + "Recents": ["最近"], + "There was an issue previewing the selected query. %s": [ + "選択したクエリのプレビュー中に問題が発生しました。 %s" + ], + "TABLES": [""], + "Open query in SQL Lab": ["SQL Labでクエリを開く"], + "An error occurred while fetching database values: %s": [""], + "Search by query text": [""], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "保存したクエリと一緒にインポートするには、以下のデータベースのパスワードが必要です。データベース構成の ”Secure Extra” と ”Certificate” セクションはエクスポートファイルに存在せず、必要に応じてインポート後に手動で追加する必要がある点に注意してください。" + ], + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "既に存在する 1 つ以上の保存済みクエリをインポートしています。上書きすると、作業の一部が失われる可能性があります。上書きしますか?" + ], + "There was an issue previewing the selected query %s": [ + "選択したクエリのプレビュー中に問題が発生しました %s" + ], + "Import queries": ["クエリのインポート"], + "Link Copied!": ["リンクをコピーしました!"], + "There was an issue deleting the selected queries: %s": [ + "選択したクエリの削除に問題が発生しました: %s" + ], + "Edit query": ["クエリを編集"], + "Copy query URL": ["クエリ URL のコピー"], + "Export query": ["クエリのエクスポート"], + "Delete query": ["クエリを削除"], + "Are you sure you want to delete the selected queries?": [ + "選択したクエリを削除しますか?" ], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": ["公開"], "queries": ["クエリ"], - "query": ["クエリ"], - "random": [""], - "reboot": [""], - "report": ["レポート"], - "reports": ["レポート"], - "restore zoom": [""], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "tag": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "stack": [""], - "std": [""], - "step-before": [""], - "string type icon": [""], - "sum": [""], - "syntax.": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Invalid input": [""], + "(no description, click to see stack trace)": [""], + "Request timed out": [""], + "Issue 1001 - The database is under an unusual load.": [ + "Issue 1001 - データベースに異常な負荷がかかっています。" + ], + "Please re-export your file and try importing again": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [ + "最近のアクティビティの取得中にエラーが発生しました:" + ], + "There was an issue deleting: %s": ["削除中に問題が発生しました: %s"], + "URL": [""], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ "" ], - "use latest_partition template": [""], - "var": [""], - "variance": [""], - "virtual": [""], - "was created": ["作成されました"], - "week": ["週"], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["年"], - "zoom area": [""] + "Time-series Table": ["時系列 - 表"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/ja/LC_MESSAGES/messages.po b/superset/translations/ja/LC_MESSAGES/messages.po index a0522914322ce..e8f2d0dac1592 100644 --- a/superset/translations/ja/LC_MESSAGES/messages.po +++ b/superset/translations/ja/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2021-04-27 01:24+0900\n" "Last-Translator: Yuri Umezaki \n" "Language: ja\n" @@ -28,15653 +28,15373 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" +#: superset/errors.py:101 +#, fuzzy +msgid "The datasource is too large to query." +msgstr "Issue 1000 - データ ソースが大きすぎてクエリを実行できませんでした。" -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" +#: superset/errors.py:102 +#, fuzzy +msgid "The database is under an unusual load." +msgstr "Issue 1001 - データベースに異常な負荷がかかっています。" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" -msgstr "" +#: superset/errors.py:103 +#, fuzzy +msgid "The database returned an unexpected error." +msgstr "Issue 1002 - データベースが予期しないエラーを返しました。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 +#, fuzzy msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" -msgstr "" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." +msgstr "Issue 1003 - SQL クエリに構文エラーがあります。スペルミスやタイプミスがないか確認して下さい。" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 +#: superset/errors.py:108 #, fuzzy -msgid " a dashboard OR " -msgstr "ダッシュボードを保存" +msgid "The column was deleted or renamed in the database." +msgstr "Issue 1004 - データベースでカラムが削除または名前変更されました。" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 +#: superset/errors.py:109 #, fuzzy -msgid " a new one" -msgstr "変更日" +msgid "The table was deleted or renamed in the database." +msgstr "Issue 1005 - データベースでテーブルが削除または名前変更されました。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " -msgstr "" +#: superset/errors.py:110 +#, fuzzy +msgid "One or more parameters specified in the query are missing." +msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" -msgstr "" +#: superset/errors.py:111 +#, fuzzy +msgid "The hostname provided can't be resolved." +msgstr "Issue 1007 - 指定されたホスト名を解決できません。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." -msgstr "" +#: superset/errors.py:112 +#, fuzzy +msgid "The port is closed." +msgstr "Issue 1008 - ポートが閉じています。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 +#: superset/errors.py:113 #, fuzzy -msgid " to add calculated columns" -msgstr "列を削除する" +msgid "The host might be down, and can't be reached on the provided port." +msgstr "Issue 1009 - 指定されたポートに到達できません。ホストがダウンしている可能性があります。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#: superset/errors.py:114 #, fuzzy -msgid " to add metrics" -msgstr "保存した指標" +msgid "Superset encountered an error while running a command." +msgstr "Issue 1010 - コマンドの実行中にSuperset内でエラーが発生しました。" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." -msgstr "" +#: superset/errors.py:115 +#, fuzzy +msgid "Superset encountered an unexpected error." +msgstr "Issue 1011 - Supersetで予期しないエラーが発生しました。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" -msgstr "" +#: superset/errors.py:116 +#, fuzzy +msgid "The username provided when connecting to a database is not valid." +msgstr "Issue 1012 - データベース接続時に指定されたユーザー名が無効です。" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:117 +#, fuzzy +msgid "The password provided when connecting to a database is not valid." +msgstr "Issue 1013 - データベース接続時に指定されたパスワードが無効です。" + +#: superset/errors.py:118 +#, fuzzy +msgid "Either the username or the password is wrong." +msgstr "Issue 1014 - ユーザー名またはパスワードが間違っています。" + +#: superset/errors.py:119 +#, fuzzy +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Issue 1015 - データベース名が正しくないか、または存在しません。" + +#: superset/errors.py:120 +#, fuzzy +msgid "The schema was deleted or renamed in the database." +msgstr "Issue 1005 - データベースでスキーマが削除または名前変更されました。" + +#: superset/errors.py:121 +#, fuzzy +msgid "User doesn't have the proper permissions." +msgstr "Issue 1017 - ユーザーに適切なアクセス許可がありません。" + +#: superset/errors.py:122 +#, fuzzy +msgid "One or more parameters needed to configure a database are missing." +msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" + +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format +#: superset/errors.py:127 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" + +#: superset/errors.py:137 +msgid "The object does not exist in the given database." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, fuzzy, python-format -msgid "%(other)s saved queries will appear here" -msgstr "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, fuzzy, python-format -msgid "%(rows)d rows returned" -msgstr "行を取得" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format +#: superset/errors.py:141 msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" +#: superset/errors.py:145 +#, fuzzy +msgid "The port number is invalid." +msgstr "データベース パラメータが無効です。" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" -msgstr "%(user)s' のプロファイル" +#: superset/errors.py:147 +#, fuzzy +msgid "The database was deleted." +msgstr "データベースを削除できませんでした。" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "パスワード" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "無効な証明書" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 +#: superset/forms.py:72 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 +#: superset/jinja_context.py:344 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "関数 %(func)s の安全でない戻り値の型: %(value_type)s" -#: superset-frontend/src/components/ListView/ListView.tsx:245 +#: superset/jinja_context.py:355 #, python-format -msgid "%s Selected" -msgstr "" +msgid "Unsupported return value for method %(name)s" +msgstr "メソッド %(name)s のサポートされていない戻り値" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#: superset/jinja_context.py:371 #, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "キー %(key)s の安全でないテンプレート値: %(value_type)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/jinja_context.py:382 #, python-format -msgid "%s Selected (Physical)" +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "" +#: superset/sql_lab.py:236 +#, fuzzy +msgid "Only SELECT statements are allowed against this database." +msgstr "`SELECT` 操作のみがこのDBに対して許可されています" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/sql_lab.py:302 #, python-format -msgid "%s aggregates(s)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#: superset/sql_lab.py:488 #, python-format -msgid "%s option(s)" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "行" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#: superset/sql_lab.py:510 #, python-format -msgid "%s saved metric(s)" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "最終更新 %s" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Viz はデータソースがありません" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "開始日は終了日を超えてはいけません" + +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "キャッシュされた値が見つかりません" + +#: superset/viz.py:577 #, python-format -msgid "%s-%s of %s" +msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(削除)" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "少なくとも1つの指標を選択してください" + +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "‘Group By’ を使用する場合、指標は1つに制限されます。" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "バブルチャート" + +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "3つの異なる指標ラベルを使用してください" + +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "表示する指標を選択" + +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "時系列 - 折れ線グラフ" + +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" + +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "時系列 - 棒グラフ" + +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "時系列 - 期間ピボット" + +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "時系列 - 変化率" + +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "時系列 - 積み上げ" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "ヒストグラム" + +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "少なくとも 1 つの数値列を指定する必要があります。" + +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "棒グラフ" + +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "サンキー" + +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" -#: superset/reports/notifications/slack.py:82 -#, python-format +#: superset/viz.py:1421 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" +#: superset/viz.py:1434 +msgid "Directed Force Layout" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "国別地図" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "世界地図" + +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" msgstr "" -#: superset/views/database/forms.py:164 -msgid "." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "ヒートマップ" + +#: superset/viz.py:1674 +msgid "Horizon Charts" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" +#: superset/viz.py:1686 +msgid "Mapbox" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "日" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "[Label] として ’count’ を持つには、[Group By] 列が必要です" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1時間" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -#, fuzzy -msgid "1 hourly frequency" -msgstr "更新頻度" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1分" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "週" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "年" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +#: superset/viz.py:2271 #, fuzzy -msgid "1 year end frequency" -msgstr "更新頻度" +msgid "Deck.gl - Heatmap" +msgstr "すべてのチャート" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +#: superset/viz.py:2292 #, fuzzy -msgid "1 year start frequency" -msgstr "更新頻度" +msgid "Deck.gl - Contour" +msgstr "すべてのチャート" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10分" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "週" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset/viz.py:2369 +msgid "Event flow" msgstr "" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15分" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "週" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" +#: superset/viz.py:2511 +msgid "Partition Diagram" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "" +#: superset/viz.py:2676 +#, fuzzy +msgid "Please choose at least one groupby" +msgstr "少なくとも1つの[Group by]フィールドを選択してください " -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" + +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -#, fuzzy -msgid "2 years" -msgstr "年" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +#, fuzzy +msgid "Is certified" +msgstr "無効な証明書" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +#, fuzzy +msgid "Has created by" +msgstr "作成されました" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 #, fuzzy -msgid "28 days" -msgstr "90日" +msgid "Created by me" +msgstr "作成者" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -#, fuzzy -msgid "3 years" -msgstr "年" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30日" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -#, fuzzy -msgid "30 days ago" -msgstr "30日" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "" -#: superset/db_engine_specs/base.py:104 -#, fuzzy -msgid "30 minute" -msgstr "30分" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30分" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/charts/schemas.py:1295 #, fuzzy -msgid "30 second" -msgstr "30秒" +msgid "orderby column must be populated" +msgstr "クエリを更新できませんでした" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30秒" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" msgstr "" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5分" +#: superset/charts/data/api.py:369 +#, fuzzy +msgid "Empty query result" +msgstr "クエリのインポート" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5分" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "" -#: superset/db_engine_specs/base.py:98 -#, fuzzy -msgid "5 second" -msgstr "30秒" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "一部のロールが存在しません" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "" + +#: superset/commands/exceptions.py:135 #, fuzzy -msgid "5 seconds" -msgstr "30秒" +msgid "Datasource does not exist" +msgstr "データセットが存在しません" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 +#: superset/commands/exceptions.py:142 #, fuzzy -msgid "52 weeks" -msgstr "週" +msgid "Query does not exist" +msgstr "チャートが存在しません" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -#, fuzzy -msgid "6 hour" -msgstr "6時間" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60日" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 +#: superset/commands/annotation_layer/exceptions.py:45 #, fuzzy -msgid "7 days" -msgstr "90日" +msgid "Annotation layers could not be deleted." +msgstr "ダッシュボードを削除できませんでした。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90日" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "開始日は終了日を超えてはいけません" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "列を削除する" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "保存した指標" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -#, fuzzy -msgid "" -msgstr "チャートタイプ" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "関連するアラートまたはレポートがあります" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -#, fuzzy -msgid "A Big Number" -msgstr "数値" - -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "ダッシュボードは存在しません" + +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." msgstr "" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "チャートを作成できませんでした。" + +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "チャートをアップロードできませんでした。" + +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "チャートを削除できませんでした。" + +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "関連するアラートまたはレポートがあります" + +#: superset/commands/chart/exceptions.py:131 +#, fuzzy +msgid "You don't have access to this chart." +msgstr "このダッシュボードにアクセスできません。" + +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "このチャートの変更は禁止されています" + +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" msgstr "" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "このダッシュボードの変更は禁止されています" + +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "チャート %(id)s が見つかりません" + +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "チャートを削除できませんでした。" + +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "一意である必要があります" + +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "ダッシュボードパラメータが無効です。" + +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "ダッシュボードを作成できませんでした。" + +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "ダッシュボードを更新できませんでした。" + +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "ダッシュボードを削除できませんでした。" + +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "このダッシュボードの変更は禁止されています" + +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "不明な理由でダッシュボードのインポートに失敗しました" + +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "このダッシュボードにアクセスできません。" + +#: superset/commands/dashboard/embedded/exceptions.py:34 +#, fuzzy +msgid "You don't have access to this embedded dashboard config." +msgstr "このダッシュボードにアクセスできません。" + +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "ファイルにデータがありません" + +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "データベース パラメータが無効です。" + +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." msgstr "" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: 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." +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "データベースが見つかりません。" + +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "データベースを作成できませんでした。" + +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "データベースを更新できませんでした。" + +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "データベースを削除できませんでした。" + +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "色に使用する指標" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "ダッシュボード用の読みやすいURL" +#: superset/commands/database/exceptions.py:147 +#, fuzzy +msgid "no SQL validator is configured" +msgstr "アラートバリデーター設定エラー。" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset/reports/commands/exceptions.py:186 -#, python-format -msgid "A report named \"%(name)s\" already exists" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/database/exceptions.py:162 +#, fuzzy +msgid "An unexpected error occurred" +msgstr "エラーが発生しました" + +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset/common/query_context_processor.py:417 +#: superset/commands/database/validate.py:124 #, fuzzy -msgid "A time column must be specified when using a Time Comparison." -msgstr "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" +msgid "Database is offline." +msgstr "データベース名" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +#: superset/commands/database/validate_sql.py:73 +#, python-format msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "クエリの実行中にタイムアウトが発生しました。" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "アラートバリデーター設定エラー。" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "csv の生成中にタイムアウトが発生しました。" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "" -#: superset/reports/commands/exceptions.py:243 +#: superset/commands/database/ssh_tunnel/exceptions.py:29 #, fuzzy -msgid "A timeout occurred while generating a dataframe." -msgstr "csv の生成中にタイムアウトが発生しました。" +msgid "SSH Tunnel could not be deleted." +msgstr "チャートを削除できませんでした。" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." -msgstr "スクリーンショットの撮影中にタイムアウトが発生しました。" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +#, fuzzy +msgid "SSH Tunnel not found." +msgstr "データベースが見つかりません。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" -msgstr "有効な配色が必要です" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +#, fuzzy +msgid "SSH Tunnel parameters are invalid." +msgstr "データベース パラメータが無効です。" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "適用" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +#, fuzzy +msgid "SSH Tunnel could not be updated." +msgstr "チャートをアップロードできませんでした。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "4月" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +#, fuzzy +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "不明な理由でダッシュボードのインポートに失敗しました" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "8月" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 +#: superset/commands/dataset/duplicate.py:60 #, fuzzy -msgid "AXIS TITLE POSITION" -msgstr "アラート状態" +msgid "The database was not found." +msgstr "データベースが見つかりません。" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" msgstr "" -#: 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 "アクセス" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "" -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "アクセス要求" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" msgstr "" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "アクション" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "操作履歴" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "アクション" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "アクティブ" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "データセットが存在しません" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -#, fuzzy -msgid "Actual Values" -msgstr "デフォルト値" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "実際の期間" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -#, fuzzy -msgid "Actual value" -msgstr "デフォルト値" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -#, fuzzy -msgid "Actual values" -msgstr "デフォルト値" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -#, fuzzy -msgid "Adaptive formatting" -msgstr "日時フォーマット" - -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "追加" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -#, fuzzy -msgid "Add Alert" -msgstr "アラート" - -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "CSSテンプレートを追加" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "CSSテンプレートを追加する" - -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "チャートを追加" - -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." msgstr "" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "ダッシュボードを追加" - -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "データベースを追加" - -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "ログを追加" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "指標を追加" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "Add Report" -msgstr "レポート" +msgid "Datasets could not be deleted." +msgstr "データベースを削除できませんでした。" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset/commands/dataset/exceptions.py:180 #, fuzzy -msgid "Add Rule" -msgstr "日時フォーマット" +msgid "Samples for dataset could not be retrieved." +msgstr "データベースを作成できませんでした。" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "保存したクエリを追加" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 +#: superset/commands/dataset/exceptions.py:192 #, fuzzy -msgid "Add a dataset" -msgstr "データセットを追加" +msgid "You don't have access to this dataset." +msgstr "このダッシュボードにアクセスできません。" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 +#: superset/commands/dataset/exceptions.py:196 #, fuzzy -msgid "Add a new tab" -msgstr "新しいチャートとして保存" +msgid "Dataset could not be duplicated." +msgstr "データベースを更新できませんでした。" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +#: superset/commands/dataset/exceptions.py:205 #, fuzzy -msgid "Add additional custom parameters" -msgstr "追加パラメータ" +msgid "The provided table was not found in the provided database" +msgstr "Issue 1005 - データベースでテーブルが削除または名前変更されました。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" -msgstr "注釈レイヤーを追加" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "データセット列が見つかりません。" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "アイテムを追加" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "データセット列の削除に失敗しました。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -#, fuzzy -msgid "Add and edit filters" -msgstr "新しいフィルタ" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "このデータセットの変更は禁止されています。" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "注釈を追加" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "データセットの指標が見つかりません。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "注釈レイヤーを追加" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "データセット指標の削除に失敗しました。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -#, fuzzy -msgid "Add cross-filter" -msgstr "フィルタを追加" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[データセットが見つかりません]" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -#, fuzzy -msgid "Add extra connection information." -msgstr "基本情報" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "不明な理由により、保存したクエリをインポートできませんでした。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "フィルタを追加" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "保存したクエリ パラメーターが無効です。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "アラートクエリが複数の行を返しました。 %s 行が返されました" + +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "アラートクエリが複数の列を返しました。%s 列が返されました" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "" +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "ログのプルーニング中にエラーが発生しました " -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "ダッシュボードが存在しません" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "チャートが存在しません" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "アラートにはデータベースが必要です" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "タイプが必要です" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "両方ではなくチャートまたはダッシュボードを選択してください" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "" +#: superset/commands/report/exceptions.py:92 +#, fuzzy +msgid "Must choose either a chart or a dashboard" +msgstr "両方ではなくチャートまたはダッシュボードを選択してください" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -#, fuzzy -msgid "Add sheet" -msgstr "データセットを追加" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -#, fuzzy -msgid "Add the name of the chart" -msgstr "アクティブなチャートのID" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -#, fuzzy -msgid "Add the name of the dashboard" -msgstr "保存してダッシュボードに移動" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "レポートスケジュールパラメータが無効です。" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "新しいダッシュボードに追加" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "レポートスケジュールを作成できませんでした。" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -#, fuzzy -msgid "Add/Edit Filters" -msgstr "フィルタを追加" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "レポートスケジュールを更新できませんでした。" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "追加済み" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "レポートスケジュールが見つかりません。" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "新しいダッシュボードに追加" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "レポートスケジュールの削除に失敗しました。" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -#, fuzzy -msgid "Additional Parameters" -msgstr "追加パラメータ" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "レポートスケジュールログの整理に失敗しました。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "追加情報" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "csv の生成中にレポートスケジュールの実行に失敗しました。" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 +#: superset/commands/report/exceptions.py:157 #, fuzzy -msgid "Additional metadata" -msgstr "追加情報" +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "csv の生成中にレポートスケジュールの実行に失敗しました。" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -#, fuzzy -msgid "Additional padding for legend." -msgstr "追加情報" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "レポートスケジュールの実行で予期しないエラーが発生しました。" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -#, fuzzy -msgid "Additional parameters" -msgstr "追加パラメータ" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "レポートスケジュールはまだ機能しており、再計算を拒否しています。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -#, fuzzy -msgid "Additional settings." -msgstr "追加情報" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "レポートスケジュールが作業タイムアウトに達しました。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." -msgstr "" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "アラートクエリが複数の行を返しました。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "アラートバリデーター設定エラー。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "アラートクエリが複数の列を返しました。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" -msgstr "" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "アラートクエリが数値以外の値を返しました。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "クエリの実行中にアラートがエラーを検出しました。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" -msgstr "" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "クエリの実行中にタイムアウトが発生しました。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" -msgstr "" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "スクリーンショットの撮影中にタイムアウトが発生しました。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" -msgstr "" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "csv の生成中にタイムアウトが発生しました。" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "" +#: superset/commands/report/exceptions.py:237 +#, fuzzy +msgid "A timeout occurred while generating a dataframe." +msgstr "csv の生成中にタイムアウトが発生しました。" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" -msgstr "" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "猶予期間中にアラートが発生しました。" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "アラートは猶予期間を終了しました。" + +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "猶予期間に関するアラート" + +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "レポートスケジュールの状態が見つかりません" + +#: superset/commands/report/exceptions.py:261 #, fuzzy -msgid "After" -msgstr "日付" +msgid "Report schedule system error" +msgstr "レポートスケジュールの予期せぬエラー" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 +#: superset/commands/report/exceptions.py:267 #, fuzzy -msgid "Aggregate" -msgstr "作成" +msgid "Report schedule client error" +msgstr "レポートスケジュールの予期せぬエラー" + +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "レポートスケジュールの予期せぬエラー" + +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "このレポートの変更は禁止されています" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "ログのプルーニング中にエラーが発生しました " + +#: superset/commands/security/exceptions.py:25 #, fuzzy -msgid "Aggregate Mean" -msgstr "作成日 " +msgid "RLS Rule not found." +msgstr "レポートスケジュールが見つかりません。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" -msgstr "" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "チャートを削除できませんでした。" + +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "データベースが見つかりません。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 +#: superset/commands/sql_lab/estimate.py:86 +#, python-format msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 +#: superset/commands/sql_lab/execute.py:172 msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "作成" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" +#: superset/commands/sql_lab/results.py:75 +msgid "" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "アラート" +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "アラート発動、猶予期間中" +#: superset/commands/tag/exceptions.py:32 +#, fuzzy +msgid "Tag parameters are invalid." +msgstr "データベース パラメータが無効です。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "アラート状態" +#: superset/commands/tag/exceptions.py:36 +#, fuzzy +msgid "Tag could not be created." +msgstr "チャートを作成できませんでした。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "アラート状態スケジュール" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "チャートをアップロードできませんでした。" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "アラートは猶予期間を終了しました。" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "チャートを削除できませんでした。" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "アラートに失敗しました" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "データベースを削除できませんでした。" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "猶予期間中にアラートが発生しました。" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +#, fuzzy +msgid "An error occurred while creating the value." +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "クエリの実行中にアラートがエラーを検出しました。" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +#, fuzzy +msgid "An error occurred while accessing the value." +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "アラート名" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +#, fuzzy +msgid "An error occurred while deleting the value." +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "猶予期間に関するアラート" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +#, fuzzy +msgid "An error occurred while updating the value." +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "アラートクエリが数値以外の値を返しました。" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +#, fuzzy +msgid "You don't have permission to modify the value." +msgstr "このチャートを編集する権限がありません" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "アラートクエリが複数の列を返しました。" +#: superset/commands/temporary_cache/exceptions.py:49 +#, fuzzy +msgid "Resource was not found." +msgstr "データベースが見つかりません。" -#: superset/reports/commands/alert.py:109 +#: superset/common/query_actions.py:227 #, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "アラートクエリが複数の列を返しました。%s 列が返されました" - -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "アラートクエリが複数の行を返しました。" +msgid "Invalid result type: %(result_type)s" +msgstr "" -#: superset/reports/commands/alert.py:100 +#: superset/common/query_context_processor.py:150 #, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "アラートクエリが複数の行を返しました。 %s 行が返されました" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "アラート発動中" +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "アラートが発動し、通知が送信されました" +#: superset/common/query_context_processor.py:383 +#, fuzzy +msgid "Time Grain must be specified when using Time Shift." +msgstr "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "アラートバリデーター設定エラー。" +#: superset/common/query_context_processor.py:486 +#, fuzzy +msgid "A time column must be specified when using a Time Comparison." +msgstr "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "アラート" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "チャートが存在しません" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "アラートとレポート" +#: superset/common/query_context_processor.py:702 +#, fuzzy +msgid "The chart datasource does not exist" +msgstr "チャートが存在しません" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "アラートとレポート" +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "チャートが存在しません" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/common/query_object.py:290 +#, python-format +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "" - -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -#, fuzzy -msgid "All Entities" -msgstr "すべてのフィルタ" - -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" +#: superset/common/query_object.py:312 +#, python-format +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "すべてのチャート" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "すべてのフィルタ" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 +#: superset/common/query_object.py:439 #, python-format -msgid "All filters (%(filterCount)d)" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -#, fuzzy -msgid "All panels" -msgstr "すべてのパネルに適用" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "この列のすべてのパネルは、このフィルターの影響を受けます" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" +#: superset/connectors/sqla/models.py:1394 +#, python-format +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 +#, python-format +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -#, fuzzy -msgid "Allow file uploads to database" -msgstr "データベースにアップロードする CSV ファイルを選択します。" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "'SELECT' 操作のみが許可されます" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "複数の選択を許可する" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "単一のクエリのみがサポートされています" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -#, fuzzy -msgid "Allow node selections" -msgstr "複数の選択を許可する" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "列" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" msgstr "" -#: superset/views/database/mixins.py:114 +#: superset/connectors/sqla/views.py:104 msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "ABC順" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 +#: superset/connectors/sqla/views.py:113 msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "変更" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "列" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -#, fuzzy -msgid "An Error Occurred" -msgstr "エラーが発生しました" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "" -#: superset/reports/commands/exceptions.py:188 -#, python-format -msgid "An alert named \"%(name)s\" already exists" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." -msgstr "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "グループ分け可能" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." -msgstr "" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +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: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 -msgid "An error has occurred" -msgstr "エラーが発生しました" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "テーブル" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "エラーが発生しました" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "式" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" msgstr "" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -#, fuzzy -msgid "An error occurred while accessing the value." -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "日時フォーマット" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "タイプ" + +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, fuzzy, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "ダッシュボードの取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "無効な日付/タイムスタンプのフォーマット" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "指標" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -#, fuzzy -msgid "An error occurred while creating the value." -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "指標を表示" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -#, fuzzy -msgid "An error occurred while deleting the value." -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "指標を追加" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "" - -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, fuzzy, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "ダッシュボードの取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "指標を編集" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, fuzzy, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "ダッシュボードの取得中にエラーが発生しました: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "指標" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "利用可能なCSSテンプレートの取得中にエラーが発生しました" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL 式" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "警告メッセージ" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "作成したダッシュボードの取得中にエラーが発生しました: %s" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "テーブル" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "テーブルを表示" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -#, fuzzy -msgid "An error occurred while fetching dashboards" -msgstr "ダッシュボードの取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "テーブル定義のインポート" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "ダッシュボードの取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "テーブルを編集" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "データセット・データソース値の取得中にエラーが発生しました: %s" - -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "関数名の取得中にエラーが発生しました。" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" - -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "作成したダッシュボードの取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, fuzzy, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 +#: superset/connectors/sqla/views.py:387 msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, fuzzy, python-format -msgid "An error occurred while importing %s: %s" -msgstr "ログのプルーニング中にエラーが発生しました " +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "ダッシュボードの取得中にエラーが発生しました: %s" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "更新者" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "SQL のロード中にエラーが発生しました" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "データベース" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -#, fuzzy -msgid "An error occurred while opening Explore" -msgstr "ログのプルーニング中にエラーが発生しました " +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "最終更新" -#: superset/key_value/exceptions.py:30 -#, fuzzy -msgid "An error occurred while parsing the key." -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "ログのプルーニング中にエラーが発生しました " +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "スキーマ" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "オフセット" + +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "テーブル名" + +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, fuzzy, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "所有者" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "SQL Lab ビュー" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "テンプレートパラメータ" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "最終更新" + +#: superset/connectors/sqla/views.py:435 msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" + +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "データ ソースの作成中にエラーが発生しました" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] " %(num)d 件のダッシュボードを削除しました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "タイトルまたはスラッグ" + +#: superset/dashboards/filters.py:193 +msgid "Role" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +#, fuzzy +msgid "Invalid state." +msgstr "無効な証明書" + +#: superset/databases/decorators.py:47 +msgid "Table name undefined" msgstr "" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 +#: superset/databases/filters.py:79 #, fuzzy -msgid "An error occurred while starring this chart" -msgstr "SQL のロード中にエラーが発生しました" +msgid "Upload Enabled" +msgstr "Excelをアップロード" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 +#: superset/databases/schemas.py:175 msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "" - -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -#, fuzzy -msgid "An error occurred while updating the value." -msgstr "データ ソースの作成中にエラーが発生しました" - -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "データ ソースの作成中にエラーが発生しました" - -#: superset/databases/commands/exceptions.py:162 -#, fuzzy -msgid "An unexpected error occurred" -msgstr "エラーが発生しました" - -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -#, fuzzy -msgid "Animation" -msgstr "注釈" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "注釈" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "注釈レイヤー" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "注釈レイヤー" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "注釈スライスの構成" - -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "注釈レイヤー" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] " %(num)d 件のデータセットを削除しました" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." +#: superset/datasets/filters.py:26 +msgid "Null or Empty" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "秒" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "" +#: superset/db_engine_specs/base.py:99 +#, fuzzy +msgid "5 second" +msgstr "30秒" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 +#: superset/db_engine_specs/base.py:100 #, fuzzy -msgid "Annotation layer description columns" -msgstr "注釈レイヤー名" +msgid "30 second" +msgstr "30秒" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "分" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -#, fuzzy -msgid "Annotation layer interval end" -msgstr "注釈レイヤー名" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5分" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "注釈レイヤー名" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10分" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15分" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 +#: superset/db_engine_specs/base.py:105 #, fuzzy -msgid "Annotation layer opacity" -msgstr "注釈レイヤーのタイプ" +msgid "30 minute" +msgstr "30分" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "時間" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 #, fuzzy -msgid "Annotation layer stroke" -msgstr "注釈レイヤーのタイプ" +msgid "6 hour" +msgstr "6時間" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "注釈レイヤーのタイプ" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "日" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "注釈レイヤーのタイプ" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "週" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "注釈レイヤーのタイプ" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "月" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -#, fuzzy -msgid "Annotation layer value" -msgstr "注釈レイヤー名" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "四半期" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "注釈レイヤー" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "年" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "注釈レイヤーはまだ読み込み中です。" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "注釈名" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "注釈" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "ユーザー名" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -#, fuzzy -msgid "Annotation source type" -msgstr "注釈レイヤーのタイプ" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "パスワード" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "注釈レイヤーはまだありません" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "ホスト名またはIPアドレス" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "ダッシュボードが保存されました" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "DBポート番号" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "データベース名" + +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 #, fuzzy -msgid "Annotations and Layers" -msgstr "注釈レイヤー" +msgid "Additional parameters" +msgstr "追加パラメータ" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" -msgstr "任意" - -#: 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." +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/db_engine_specs/bigquery.py:191 +#, python-format msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "ここで選択したカラーパレットは、このダッシュボードの個々のグラフに適用される色を上書きします" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/db_engine_specs/bigquery.py:204 +#, python-format msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "適用したクロス フィルター (%d)" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "適用したフィルタ (%d)" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "適用したフィルタ (%d)" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "“%(database)s” に接続できません。" -#: superset/viz.py:250 +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "適用" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -#, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "追加情報" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -#, fuzzy -msgid "Apply filters" -msgstr "すべてのフィルタ" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "すべてのパネルに適用" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "特定のパネルに適用" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "4月" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -#, fuzzy -msgid "Arc" -msgstr "3月" - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -#, fuzzy -msgid "Are you sure you intend to overwrite the following values?" -msgstr "選択したクエリを削除しますか?" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "キャンセルしてもよろしいですか?" - -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "削除してもよろしいですか" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, fuzzy, python-format -msgid "Are you sure you want to delete %s?" -msgstr "削除してもよろしいですか" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 #, python-format -msgid "Are you sure you want to delete the selected %s?" +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "選択した注釈を削除してもよろしいですか?" - -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "選択したチャートを削除してもよろしいですか?" - -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "選択したダッシュボードを削除してもよろしいですか?" - -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "選択したデータセットを削除しますか?" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "選択したレイヤーを削除してもよろしいですか?" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "選択したクエリを削除しますか?" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -#, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "選択したレイヤーを削除してもよろしいですか?" - -#: superset-frontend/src/pages/Tags/index.tsx:282 -#, fuzzy -msgid "Are you sure you want to delete the selected tags?" -msgstr "選択したデータセットを削除しますか?" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "選択したテンプレートを削除してもよろしいですか?" - -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -#, fuzzy -msgid "Are you sure you want to overwrite this dataset?" -msgstr "選択したデータセットを削除しますか?" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "続行してもよろしいですか?" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -#, fuzzy -msgid "Area Chart" -msgstr "チャートを保存" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -#, fuzzy -msgid "Area Chart (legacy)" -msgstr "チャートを保存" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "“%(database)s” に接続できません。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -#, fuzzy -msgid "Area chart" -msgstr "チャートを保存" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 +#: superset/db_engine_specs/ocient.py:271 msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -#, fuzzy -msgid "Arrow" -msgstr "行" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" +#: superset/db_engine_specs/ocient.py:284 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "非同期でのクエリ実行" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "8月" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -#, fuzzy -msgid "Auto" -msgstr "期限" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "共有" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#: superset/explore/exceptions.py:45 #, fuzzy -msgid "Average value" -msgstr "デフォルト値" +msgid "Samples for datasource could not be retrieved." +msgstr "データ ソースを読み込めませんでした" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Axis" -msgstr "Y軸" +msgid "Changing this datasource is forbidden" +msgstr "このデータセットの変更は禁止されています。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "ホーム" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 +#: superset/initialization/__init__.py:242 #, fuzzy -msgid "Axis Format" -msgstr "日時フォーマット" +msgid "Database Connections" +msgstr "接続のテスト" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" -msgstr "" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "データ" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "ダッシュボード" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" -msgstr "" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "チャート" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "データセット" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" -msgstr "" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" -msgstr "" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "プラグイン" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "管理" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" -msgstr "" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSSテンプレート" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -#, fuzzy -msgid "Bad formula." -msgstr "日時フォーマット" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL Lab" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "保存したクエリ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "クエリ履歴" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 #, fuzzy -msgid "Bar Chart" -msgstr "チャートを保存" +msgid "Tags" +msgstr "状態" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" -msgstr "" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "操作履歴" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "セキュリティ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "アラートとレポート" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "注釈レイヤー" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 #, fuzzy -msgid "Bar orientation" -msgstr "注釈を削除する" +msgid "Row Level Security" +msgstr "行レベルセキュリティ" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#: superset/key_value/exceptions.py:30 #, fuzzy -msgid "Base" -msgstr "データベース" +msgid "An error occurred while parsing the key." +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "" +#: superset/key_value/exceptions.py:50 +#, fuzzy +msgid "An error occurred while upserting the value." +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "基本情報" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/models/helpers.py:1605 #, python-format -msgid "Batch editing %d filters:" -msgstr " %d フィルタのバッチ編集:" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +#: superset/models/helpers.py:1821 #, fuzzy -msgid "Before" -msgstr "更新" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "数値" +msgid "error_message" +msgstr "エラーメッセージ" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "データベースはサブクエリをサポートしていません" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] " %(num)d 件の保存したクエリを削除しました" + +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] " %(num)d 件のレポートスケジュールを削除しました" + +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "値は 0 より大きくする必要があります" + +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +#: superset/reports/notifications/email.py:132 +#, fuzzy +msgid "EMAIL_REPORTS_CTA" +msgstr "アラートとレポート" + +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#: superset/reports/notifications/slack.py:76 +#, python-format msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -#, fuzzy -msgid "Breakdowns" -msgstr "作成日" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "バブルチャート" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -#, fuzzy -msgid "Bubble Color" -msgstr "固定の色" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "一括選択" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "" - -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" -msgstr "" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset/sqllab/query_render.py:124 msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" -msgstr "" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "データベースが見つかりません。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/tags/filters.py:31 +msgid "Is custom tag" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "キャンセル" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 +#: superset/tasks/exceptions.py:24 #, fuzzy -msgid "CREATE DATASET" -msgstr "データセットを変更" +msgid "Scheduled task executor not found" +msgstr "レポートスケジュールの状態が見つかりません" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "レコード数" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "レコードが見つかりません" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "CREATE VIEW文" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "フィルタリスト" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -#, fuzzy -msgid "CRON Schedule" -msgstr "レポートスケジュール" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "検索" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "更新" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "ダッシュボードをインポート" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "ダッシュボードをインポート" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSSテンプレート" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "ファイル" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "ファイルを選択" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "CSSテンプレート" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "アップロード" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +#, fuzzy +msgid "Use the edit button to change this field" +msgstr "このフィールドを変更するには、編集ボタンを使用します" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "CSSテンプレート名" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "接続のテスト" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "CSSテンプレート" +#: superset/utils/core.py:1246 +#, fuzzy, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "無効な証明書" -#: superset/views/database/forms.py:109 -#, fuzzy -msgid "CSV Upload" -msgstr "アップロード" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "" -#: superset/views/database/views.py:290 +#: superset/utils/encrypt.py:121 #, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/sql_lab.py:432 +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "キャッシュタイムアウト (秒)" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "キャッシュされた値が見つかりません" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -#, fuzzy -msgid "Calculate contribution per series or row" -msgstr "全体への寄与度を算出" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "Calculated column [%s] requires an expression" +msgid "Unsupported time grain: %(time_grain)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "トップレベルのタブをネストされたタブに移動できません" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "少なくとも1つの指標を選択してください" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "キャンセル" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/rolling.py:90 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "フィルタを読み込めません" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "" -#: superset/charts/commands/exceptions.py:51 +#: superset/utils/pandas_postprocessing/utils.py:153 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -#, fuzzy -msgid "Categorical Color" -msgstr "線形配色" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "レポートスケジュールの予期せぬエラー" + +#: superset/views/base.py:579 +msgid "json isn't valid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "クエリ名" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "YAMLで出力" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" -msgstr "" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "YAMLで出力しますか?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "削除" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -#, fuzzy -msgid "Category name" -msgstr "クエリ名" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "本当に全部削除しますか?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "お気に入り" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" -msgstr "" +#: superset/views/core.py:289 +#, fuzzy +msgid "You don't have the rights to download as csv" +msgstr "このチャートを編集する権限がありません" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 +#: superset/views/core.py:420 #, fuzzy -msgid "Cell bars" -msgstr "すべてのチャート" +msgid "Error: permalink state not found" +msgstr "レポートスケジュールの状態が見つかりません" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 +#: superset/views/core.py:509 #, fuzzy -msgid "Cell limit" -msgstr "区切り文字" +msgid "You don't have the rights to alter this chart" +msgstr "このチャートを編集する権限がありません" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 +#: superset/views/core.py:515 #, fuzzy -msgid "Center" -msgstr "最近" +msgid "You don't have the rights to create a chart" +msgstr "このチャートを編集する権限がありません" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -#, fuzzy -msgid "Certification" -msgstr "無効な証明書" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "チャート [{}] が保存されました" + +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +msgstr "チャート [{}] が上書きされました" + +#: superset/views/core.py:645 #, fuzzy -msgid "Certified" -msgstr "アラートに失敗しました" +msgid "You don't have the rights to alter this dashboard" +msgstr "このダッシュボードにアクセスできません。" + +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "チャート [{}] はダッシュボード [{}] に追加されました" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 +#: superset/views/core.py:661 #, fuzzy -msgid "Certified By" -msgstr "更新者" +msgid "You don't have the rights to create a dashboard" +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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" +msgstr "不正なリクエスト。 slice_idまたはtable_nameおよびdb_name引数が必要です" + +#: superset/views/core.py:726 #, python-format -msgid "Certified by %s" -msgstr "" +msgid "Chart %(id)s not found" +msgstr "チャート %(id)s が見つかりません" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." -msgstr "" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "テーブル %(table)s はデータベース %(db)s にありません" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "" +#: superset/views/core.py:836 +#, fuzzy +msgid "permalink state not found" +msgstr "レポートスケジュールの状態が見つかりません" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "更新者" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "CSSテンプレートを表示" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "変更日" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "CSSテンプレートを追加" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "CSSテンプレートを編集" + +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "テンプレート名" + +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +#: superset/views/dynamic_plugins.py:48 msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" -msgstr "データセットを変更すると、ターゲットのデータセットに存在しないカラムやメタデータに依存しているチャートが壊れることがあります" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/views/dynamic_plugins.py:52 msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "このダッシュボードの変更は禁止されています" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "このチャートの変更は禁止されています" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "この変更は即座に反映されます" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "このデータセットの変更は禁止されています。" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "" -#: superset/explore/exceptions.py:49 -#, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "このデータセットの変更は禁止されています。" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "このレポートの変更は禁止されています" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "チャートを表示" + +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "チャートを追加" + +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "チャートを編集" + +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." msgstr "" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "作成者" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "データソース" + +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "最終更新" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +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:406 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 #: superset-frontend/src/features/home/ChartTable.tsx:191 -#: superset-frontend/src/features/home/RightMenu.tsx:219 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 +#: superset-frontend/src/features/home/RightMenu.tsx:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 #: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "チャート" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" -msgstr "チャート %(id)s が見つかりません" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "名前" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "可視化方式" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "最終更新 %s" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "ダッシュボードを表示" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "チャートID" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "ダッシュボードを追加" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -#, fuzzy -msgid "Chart Options" -msgstr "チャートのプロパティを編集" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "ダッシュボードを編集" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -#, fuzzy -msgid "Chart Orientation" -msgstr "注釈を削除する" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "個々のダッシュボードのCSSは、ここもしくは変更がすぐに表示されるダッシュボードビューで変更できます" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "データソース" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "ダッシュボードの読み取り可能なURLを取得するには" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -#, fuzzy -msgid "Chart Title" -msgstr "チャートタイプ" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "" +"この JSON オブジェクトは、ダッシュボード ビューの [保存] または [上書き] " +"ボタンをクリックすると動的に生成されます。これは、参照用と特定のパラメータを変更する可能性のあるパワーユーザーのために公開されています。" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, fuzzy, python-format -msgid "Chart [%s] has been overwritten" -msgstr "チャート [{}] が上書きされました" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "所有者は、ダッシュボードを変更できるユーザーのリストです。" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" -msgstr "チャート [{}] が保存されました" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, fuzzy, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "チャート [{}] はダッシュボード [{}] に追加されました" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "このダッシュボードがすべてのダッシュボードのリストに表示されるかどうかを決定します" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "チャート [{}] が上書きされました" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "ダッシュボード" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "チャート [{}] が保存されました" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "タイトル" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" -msgstr "チャート [{}] はダッシュボード [{}] に追加されました" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "スラッグ" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "チャートの変更点" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "公開" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 -msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "チャートを作成できませんでした。" - -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "チャートを削除できませんでした。" - -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "チャートをアップロードできませんでした。" - -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "チャートが存在しません" - -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -#, fuzzy -msgid "Chart height" -msgstr "チャートタイプ" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSONメタデータ" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -#, fuzzy -msgid "Chart imported" -msgstr "チャートタイプ" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "エクスポート" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "最終更新" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "ダッシュボードをエクスポートしますか?" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#: superset/views/database/forms.py:109 #, fuzzy -msgid "Chart last modified by" -msgstr "最終更新者 %s" - -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "チャート名" +msgid "CSV Upload" +msgstr "アップロード" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +#: superset/views/database/forms.py:110 #, fuzzy -msgid "Chart options" -msgstr "チャートのプロパティを編集" +msgid "Select a file to be uploaded to the database" +msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "チャート" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "次のファイル拡張子のみが許可されます: %(allowed_extensions)s" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -#, fuzzy -msgid "Chart properties updated" -msgstr "チャートのプロパティを編集" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -#, fuzzy -msgid "Chart title" -msgstr "チャートタイプ" - -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "チャートタイプ" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "チャートタイプ" +#: superset/views/database/forms.py:145 +msgid "Column Data Types" +msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "チャート" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "チャートを削除できませんでした。" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "設定を確認" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "区切り文字" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 #, fuzzy -msgid "Check out this chart: " -msgstr "このダッシュボードを確認してください: " +msgid "Other" +msgstr "月" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "このダッシュボードを確認してください: " +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "ファイルを選択" - -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "両方ではなくチャートまたはダッシュボードを選択してください" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -#, fuzzy -msgid "Choose a database..." -msgstr "データセットを選択" - -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "データセットを選択" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "右軸の指標を選択" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -#, fuzzy -msgid "Choose a number format" -msgstr "右軸の指標を選択" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -#, fuzzy -msgid "Choose a source" -msgstr "データセットを選択" +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -#, fuzzy -msgid "Choose a source and a target" -msgstr "データセットを選択" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -#, fuzzy -msgid "Choose a target" -msgstr "データセットを選択" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -#, fuzzy -msgid "Choose chart type" -msgstr "チャートタイプ" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/database/forms.py:212 +msgid "Null Values" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "注釈レイヤーのタイプを選んでください" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -#, fuzzy -msgid "Choose the format for legend values" -msgstr "右軸の指標を選択" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -#, fuzzy -msgid "Choose the position of the legend" -msgstr "全体への寄与度を算出" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 +#: superset/views/database/forms.py:242 #, fuzzy -msgid "Circle" -msgstr "ファイル" +msgid "Columns To Read" +msgstr "列を削除する" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "すべてクリア" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 -#, fuzzy -msgid "Clear all data" -msgstr "すべてクリア" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" +#: superset/views/database/forms.py:289 +msgid "Excel File" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "クリックしてお気に入りに追加/解除" - -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "クリックして差分を確認" - -#: superset-frontend/src/components/Table/index.tsx:216 -#, fuzzy -msgid "Click to sort ascending" -msgstr "レポート送信" - -#: superset-frontend/src/components/Table/index.tsx:215 -#, fuzzy -msgid "Click to sort descending" -msgstr "レポート送信" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "閉じる" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset/views/database/forms.py:399 +msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "すべて折りたたむ" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 +#: superset/views/database/forms.py:422 #, fuzzy -msgid "Collapse data panel" -msgstr "すべて折りたたむ" +msgid "Select a Columnar file to be uploaded to a database." +msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset-frontend/src/components/Table/index.tsx:214 +#: superset/views/database/forms.py:469 #, fuzzy -msgid "Collapse row" -msgstr "すべて折りたたむ" +msgid "Use Columns" +msgstr "列を削除する" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -#, fuzzy -msgid "Collapse table preview" -msgstr "データプレビュー" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "データベース" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "データベースを表示" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" -msgstr "" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "データベースを追加" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -#, fuzzy -msgid "Color Metric" -msgstr "色の指標" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "データベースを編集" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -#, fuzzy -msgid "Color Scheme" -msgstr "配色" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -#, fuzzy -msgid "Color Steps" -msgstr "配色" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." +msgstr "データベースを非同期モードで動作させます。Webサーバー自体ではなくリモートワーカーでクエリを実行します。この機能はCeleryワーカーと結果バックエンドがセットアップされていることを前提としています。詳細についてはインストールドキュメントを参照してください。" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -#, fuzzy -msgid "Color by" -msgstr "並び替え" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "色の指標" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "配色" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/mixins.py:172 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" + +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "色" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "列" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format -msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -#, fuzzy -msgid "Column Configuration" -msgstr "設定を確認" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "" -#: superset/views/database/forms.py:144 -msgid "Column Data Types" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -#, fuzzy -msgid "Column Formatting" -msgstr "追加情報" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "列を削除する" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -#, fuzzy -msgid "Column is required" -msgstr "名前が必要です" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset/views/database/forms.py:233 +#: superset/views/database/validators.py:40 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "列を削除する" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#: superset/views/database/views.py:180 #, python-format -msgid "Column name [%s] is duplicated" +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 +#: superset/views/database/views.py:277 #, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -#, fuzzy -msgid "Column select" -msgstr "一括選択" - -#: superset/views/database/forms.py:221 +#: superset/views/database/views.py:289 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset/views/database/forms.py:352 +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "" + +#: superset/views/database/views.py:319 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/forms.py:424 -msgid "Columnar File" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:568 +#: superset/views/database/views.py:424 #, python-format msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:443 +#: superset/views/database/views.py:440 #, fuzzy msgid "Columnar to Database configuration" msgstr "フィルタ構成" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "列" - -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "列を削除する" - -#: superset/common/query_context_processor.py:132 +#: superset/views/database/views.py:479 #, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/viz.py:593 +#: superset/views/database/views.py:554 #, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -#, fuzzy -msgid "Columns to display" -msgstr "表示する指標を選択" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "ログ" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "ログを表示" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -#, fuzzy -msgid "Columns to show" -msgstr "表示する指標を選択" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "ログを追加" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -#, fuzzy -msgid "Combine metrics" -msgstr "列または指標を削除する" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "ログを編集" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "ユーザー" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." -msgstr "" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "アクション" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset/views/log/__init__.py:32 +msgid "dttm" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "" +#: superset/views/sql_lab/views.py:93 +#, fuzzy +msgid "Untitled Query" +msgstr "実行したクエリ" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +#, fuzzy +msgid "Time Range" +msgstr "期間" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +#, fuzzy +msgid "Time Column" +msgstr "列を削除する" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +#, fuzzy +msgid "Time Grain" +msgstr "期間" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "時間" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +#, fuzzy +msgid "Aggregate" +msgstr "作成" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "全体への寄与度を算出" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy -msgid "Condition" -msgstr "アラート状態" +msgid "Category name" +msgstr "クエリ名" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy -msgid "Conditional Formatting" -msgstr "追加情報" +msgid "Total value" +msgstr "デフォルト値" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 #, fuzzy -msgid "Conditional formatting" -msgstr "追加情報" +msgid "Minimum value" +msgstr "デフォルト値" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 #, fuzzy -msgid "Confidence interval" -msgstr "更新間隔" - -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "" +msgid "Maximum value" +msgstr "デフォルト値" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "デフォルト値" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "フィルタスコープを構成する" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "この変更は即座に反映されます" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "SQL 式" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Confirm overwrite" -msgstr "上書き" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "" +msgid "Column datatype" +msgstr "列を削除する" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 #, fuzzy -msgid "Connect" -msgstr "接続のテスト" - -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" -msgstr "" +msgid "Column name" +msgstr "列を削除する" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "ラベル" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 #, fuzzy -msgid "Connect a database" -msgstr "データベースを削除" +msgid "Metric name" +msgstr "クエリ名" -#: superset-frontend/src/features/home/RightMenu.tsx:173 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 #, fuzzy -msgid "Connect database" -msgstr "データベースを削除" +msgid "unknown type icon" +msgstr "不明なエラー" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -#, fuzzy -msgid "Connection" -msgstr "接続のテスト" - -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -#, fuzzy -msgid "Continue" -msgstr "月" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -#, fuzzy -msgid "Control" -msgstr "月" - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -#, fuzzy -msgid "Coordinates" -msgstr "お気に入り" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "なし" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "SELECT文をクリップボードにコピー" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -#, fuzzy -msgid "Copy permalink to clipboard" -msgstr "クエリのlinkをクリップボードにコピー" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "クエリ URL のコピー" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +#, fuzzy +msgid "30 days ago" +msgstr "30日" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "クエリのlinkをクリップボードにコピー" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -#, fuzzy -msgid "Correlation" -msgstr "期限" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "コストの見積もり" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "“%(database)s” に接続できません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +#, fuzzy +msgid "Actual values" +msgstr "デフォルト値" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +#, fuzzy +msgid "Difference" +msgstr "クリックして差分を確認" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "保存したすべてのチャートを取得できませんでした" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +#, fuzzy +msgid "Percentage change" +msgstr "チャートの変更点" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +#, fuzzy +msgid "Ratio" +msgstr "期限" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "データベースドライバ: %(driver_name)s 読み込めませんでした" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +#, fuzzy +msgid "Resample" +msgstr "サンプルを表示" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 #, fuzzy -msgid "Count" -msgstr "月" +msgid "1 hourly frequency" +msgstr "更新頻度" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -#, fuzzy -msgid "Country" -msgstr "国別地図" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 #, fuzzy -msgid "Country Color Scheme" -msgstr "線形配色" +msgid "1 year start frequency" +msgstr "更新頻度" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 #, fuzzy -msgid "Country Column" -msgstr "列を削除する" +msgid "1 year end frequency" +msgstr "更新頻度" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "国別地図" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "作成" - -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "チャートを保存" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 #, fuzzy -msgid "Create a dataset" -msgstr "作成日 " +msgid "Null imputation" +msgstr "注釈" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "新しいチャートを作成" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 #, fuzzy -msgid "Create chart" -msgstr "チャートを保存" +msgid "Forward values" +msgstr "テーブルを表示" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 #, fuzzy -msgid "Create dataset" -msgstr "データセットを変更" +msgid "Median values" +msgstr "デフォルト値" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 #, fuzzy -msgid "Create dataset and create chart" -msgstr "新しいチャートを作成" - -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "新しいチャートを作成" +msgid "Mean values" +msgstr "デフォルト値" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "新しいフィルタ セットの作成" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +#, fuzzy +msgid "Sum values" +msgstr "デフォルト値" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "作成した項目" - -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "作成日" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "作成者" - -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 #, fuzzy -msgid "Created by me" -msgstr "作成者" - -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "作成したコンテンツ" +msgid "Annotations and Layers" +msgstr "注釈レイヤー" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "作成日" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +#, fuzzy +msgid "Left" +msgstr "アラート" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 #, fuzzy -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "不明な理由でダッシュボードのインポートに失敗しました" +msgid "Top" +msgstr "中止" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +#, fuzzy +msgid "Chart Title" +msgstr "チャートタイプ" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "作成者" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "X軸" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -#, fuzzy -msgid "Crimson" -msgstr "アクション" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -#, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "このダッシュボードにはフィルターはありません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Y軸" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "このダッシュボードにはフィルターはありません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "新しいフィルタ" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 #, fuzzy -msgid "Cross-filters" -msgstr "新しいフィルタ" +msgid "Y Axis Title Position" +msgstr "アラート状態" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -#, fuzzy -msgid "Cumulative" -msgstr "アクティブ" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "クエリ" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -#, fuzzy -msgid "Custom" -msgstr "カスタマイズ" - -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +#, fuzzy +msgid "Forecast periods" +msgstr "猶予期間" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +#, fuzzy +msgid "Confidence interval" +msgstr "更新間隔" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "カスタマイズ" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -#, fuzzy -msgid "Customize Metrics" -msgstr "カスタマイズ" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 #, fuzzy -msgid "Customize columns" -msgstr "列を削除する" +msgid "default" +msgstr "削除" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 #, fuzzy -msgid "DATETIME" -msgstr "日付" +msgid "Datasource & Chart Type" +msgstr "データソース名" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "チャートID" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "12月" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "アクティブなチャートのID" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "削除" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "キャッシュタイムアウト (秒)" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "キャッシュを期限切れにするまでの秒数" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +#, fuzzy +msgid "URL Parameters" +msgstr "URLパラメータ" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 #, fuzzy -msgid "Dark" -msgstr "四半期" +msgid "Extra Parameters" +msgstr "テンプレートパラメータ" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +#, fuzzy +msgid "Color Scheme" +msgstr "配色" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "ダッシュボード" - -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, fuzzy, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました" - -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました" - -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "ダッシュボードを作成できませんでした。" - -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "ダッシュボードを削除できませんでした。" - -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "ダッシュボードを更新できませんでした。" - -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "ダッシュボードが存在しません" - -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "ダッシュボードのプロパティ" - -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "ダッシュボードパラメータが無効です。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "行" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "ダッシュボードのプロパティ" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 #, fuzzy -msgid "Dashboard properties updated" -msgstr "ダッシュボードのプロパティ" +msgid "Calculate contribution per series or row" +msgstr "全体への寄与度を算出" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -#, fuzzy -msgid "Dashboard scheme" -msgstr "[ダッシュボード名]" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "ダッシュボード" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 #, fuzzy -msgid "Dashboard usage" -msgstr "ダッシュボード" - -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "ダッシュボード" +msgid "Y-Axis Sort Ascending" +msgstr "レポート送信" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 #, fuzzy -msgid "Dashboards added to" -msgstr "ダッシュボード" - -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "ダッシュボードを削除できませんでした。" - -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "ダッシュボードは存在しません" +msgid "X-Axis Sort Ascending" +msgstr "レポート送信" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 #, fuzzy -msgid "Dashed" -msgstr "ダッシュボード" - -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "データ" +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "降順または昇順でソートするかどうか" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 #, fuzzy -msgid "Data Table" -msgstr "テーブルを編集" +msgid "Force categorical" +msgstr "データソース名" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "データプレビュー" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -#, fuzzy -msgid "Data refreshed" -msgstr "更新しない" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "少なくとも1つの指標を選択してください" - -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "データベース" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" msgstr "" -#: superset/views/database/views.py:180 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "フィルタ" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -#: superset/initialization/__init__.py:243 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 #, fuzzy -msgid "Database Connections" -msgstr "接続のテスト" +msgid "Right Axis Metric" +msgstr "右軸の指標" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 #, fuzzy -msgid "Database Creation Error" -msgstr "データベースエラー" - -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "データベースURL" +msgid "Select a metric to display on the right axis" +msgstr "右軸の指標を選択" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -#, fuzzy -msgid "Database connected" -msgstr "データベースを作成できませんでした。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "並び替え" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "データベースを作成できませんでした。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "データベースを削除できませんでした。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "データベースを更新できませんでした。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "データベースはサブクエリをサポートしていません" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +#, fuzzy +msgid "Color Metric" +msgstr "色の指標" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "色に使用する指標" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "データベースエラー" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "可視化のための時間カラム。テーブルのDATETIME列を返す任意の式を定義することができます。この列または式に対して以下のフィルターが適用されることに注意してください" -#: superset/databases/commands/validate.py:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 #, fuzzy -msgid "Database is offline." -msgstr "データベース名" - -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "アラートにはデータベースが必要です" +msgid "Drop a temporal column here or click" +msgstr "列または指標を削除する" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "データベース名" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +#, fuzzy +msgid "Y-axis" +msgstr "Y軸" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "データベースが見つかりません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +#, fuzzy +msgid "X-axis" +msgstr "Y軸" -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "データセットの指標が見つかりません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "データベース パラメータが無効です。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "表示する可視化のタイプ" -#: superset-frontend/src/components/ImportModal/index.tsx:291 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 #, fuzzy -msgid "Database passwords" -msgstr "DBポート番号" +msgid "Fixed Color" +msgstr "固定の色" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "DBポート番号" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "これを使用して、すべての円の静的な色を定義します" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 #, fuzzy -msgid "Database settings updated" -msgstr "データベースを更新できませんでした。" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "データベース" +msgid "Linear Color Scheme" +msgstr "線形配色" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "データセット" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +#, fuzzy +msgid "5 seconds" +msgstr "30秒" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30秒" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -#, fuzzy -msgid "Dataset Name" -msgstr "データベース名" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1分" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "データセット列の削除に失敗しました。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5分" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "データセット列が見つかりません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30分" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1時間" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +#, fuzzy +msgid "1 day" +msgstr "日" -#: superset/datasets/commands/exceptions.py:210 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 #, fuzzy -msgid "Dataset could not be duplicated." -msgstr "データベースを更新できませんでした。" +msgid "7 days" +msgstr "90日" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "週" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "データセットが存在しません" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -#, fuzzy -msgid "Dataset imported" -msgstr "DBポート番号" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "データセットが必要です" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "月" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "データセット指標の削除に失敗しました。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +#, fuzzy +msgid "quarter" +msgstr "四半期" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "データセットの指標が見つかりません。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "年" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "データセット" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "データソース" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -#, fuzzy -msgid "Datasource & Chart Type" -msgstr "データソース名" - -#: superset/commands/exceptions.py:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 #, fuzzy -msgid "Datasource does not exist" -msgstr "データセットが存在しません" +msgid "Sort Descending" +msgstr "レポート送信" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -#, fuzzy -msgid "Date Time Format" -msgstr "日時フォーマット" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "Date format" -msgstr "日時フォーマット" +msgid "Currency format" +msgstr "メールフォーマット" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 #, fuzzy -msgid "Date format string" +msgid "Time format" msgstr "日時フォーマット" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" msgstr "" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "日時フォーマット" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +#, fuzzy +msgid "Truncate Metric" +msgstr "保存した指標" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "日時フォーマット" - -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "日" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +#, fuzzy +msgid "Show empty columns" +msgstr "列を削除する" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, fuzzy, python-format -msgid "Days %s" -msgstr "日" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." +msgstr "" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 #, fuzzy -msgid "Deactivate" -msgstr "アクティブ" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "12月" +msgid "Adaptive formatting" +msgstr "日時フォーマット" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#, fuzzy +msgid "Oops! An error occurred!" +msgstr "エラーが発生しました" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset/viz.py:2848 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "すべてのチャート" +msgid "No Results" +msgstr "結果を見る" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#, fuzzy +msgid "ERROR" +msgstr "作成者" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "時間" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "デフォルト値" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "日" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -#, fuzzy -msgid "Default datetime" -msgstr "デフォルト値" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -#, fuzzy -msgid "Default latitude" -msgstr "デフォルト値" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 #, fuzzy -msgid "Default longitude" -msgstr "デフォルト値" +msgid "min" +msgstr "分" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 #, fuzzy -msgid "Default value is required" -msgstr "データセットが必要です" +msgid "Chart Options" +msgstr "チャートのプロパティを編集" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +#, fuzzy +msgid "Color Steps" +msgstr "配色" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#, fuzzy +msgid "Time Format" +msgstr "日時フォーマット" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +#, fuzzy +msgid "Legend" +msgstr "変更" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +#, fuzzy +msgid "Show Values" +msgstr "テーブルを表示" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#, fuzzy +msgid "Show Metric Names" +msgstr "指標を表示" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "削除" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +#, fuzzy +msgid "Correlation" +msgstr "期限" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "%s を削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "注釈を削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "データベースを削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "データセットを削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "本当にレイヤーを削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +#, fuzzy +msgid "Pattern" +msgstr "更新" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "クエリを削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +#, fuzzy +msgid "Report" +msgstr "レポート" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 #, fuzzy -msgid "Delete Report?" -msgstr "テンプレートを削除しますか?" +msgid "Trend" +msgstr "変更" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "テンプレートを削除しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "" -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "本当に全部削除しますか?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "注釈を削除する" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "ダッシュボードタブを削除しますか?" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "データベースを削除" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -#, fuzzy -msgid "Delete email report" -msgstr "アラートとレポート" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "クエリを削除" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "テンプレートを削除" - -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "このコンテナを削除し、保存してこのメ​​ッセージを削除します。" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "削除" - -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] " %(num)d 件のダッシュボードを削除しました" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] " %(num)d 件のデータセットを削除しました" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] " %(num)d 件のレポートスケジュールを削除しました" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" - -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] " %(num)d 件の保存したクエリを削除しました" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "削除しました: %s" - -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "削除しました: %s" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" -msgstr "" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "" - -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "区切り文字" - -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#, fuzzy -msgid "Deprecated" -msgstr "作成した項目" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "説明(これはリストで見ることができます)" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -#, fuzzy -msgid "Description Columns" -msgstr "列を削除する" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "" - -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "すべての選択を解除" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." -msgstr "" - -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "このダッシュボードがすべてのダッシュボードのリストに表示されるかどうかを決定します" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" -msgstr "" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "もしかして:" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -#, fuzzy -msgid "Difference" -msgstr "クリックして差分を確認" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -#, fuzzy -msgid "Dim Gray" -msgstr "期間" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" -msgstr "" - -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." -msgstr "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -#, fuzzy -msgid "Disabled" -msgstr "テーブルを編集" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -#, fuzzy -msgid "Discard" -msgstr "ダッシュボード" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -#, fuzzy -msgid "Discrete" -msgstr "作成されました" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "表示名" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -#, fuzzy -msgid "Display settings" -msgstr "スケジュール設定" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -#, fuzzy -msgid "Distribute across" -msgstr "見積コスト" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -#, fuzzy -msgid "Distribution" -msgstr "棒グラフ" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "棒グラフ" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "区切り線" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" -msgstr "" - -#: superset-frontend/src/features/home/RightMenu.tsx:531 -#, fuzzy -msgid "Documentation" -msgstr "注釈" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -#, fuzzy -msgid "Donut" -msgstr "月" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -#, fuzzy -msgid "Dotted" -msgstr "編集した項目" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -#, fuzzy -msgid "Download" -msgstr "画像としてダウンロード" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "画像としてダウンロード" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "下書き" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +#, fuzzy +msgid "Sort by metric" +msgstr "色の指標" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +#, fuzzy +msgid "Choose a number format" +msgstr "右軸の指標を選択" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +#, fuzzy +msgid "Choose a source" +msgstr "データセットを選択" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +#, fuzzy +msgid "Target" +msgstr "開始時間" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "並び替え" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +#, fuzzy +msgid "Choose a target" +msgstr "データセットを選択" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "列または指標を削除する" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -#, fuzzy -msgid "Drop a temporal column here or click" -msgstr "列または指標を削除する" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 #, fuzzy -msgid "Drop columns/metrics here or click" -msgstr "列または指標を削除する" +msgid "Relational" +msgstr "期限" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 #, fuzzy -msgid "Dual Line Chart" -msgstr "新しいチャートを作成" +msgid "Country" +msgstr "国別地図" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -#, fuzzy -msgid "Duplicate" -msgstr "日付" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset/common/query_object.py:291 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 #, fuzzy -msgid "Duplicate dataset" -msgstr "データセットを編集" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "期限" +msgid "Metric to display bottom title" +msgstr "表示する指標を選択" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 #, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." -msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" - -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." -msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" +msgid "Map" +msgstr "ツリーマップ" -#: superset/views/chart/mixin.py:69 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -#, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 #, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" +msgid "Range" +msgstr "管理" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -#, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +#, fuzzy +msgid "Event Names" +msgstr "アラート名" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +#, fuzzy +msgid "Columns to display" +msgstr "表示する指標を選択" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 #, fuzzy -msgid "ECharts" -msgstr "チャート" +msgid "Additional metadata" +msgstr "追加情報" -#: superset/reports/notifications/email.py:133 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 #, fuzzy -msgid "EMAIL_REPORTS_CTA" -msgstr "アラートとレポート" +msgid "Metadata" +msgstr "JSONメタデータ" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -#, fuzzy -msgid "ERROR" -msgstr "作成者" - -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -#, fuzzy -msgid "Edge width" -msgstr "線の幅" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "編集" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -#, fuzzy -msgid "Edit Alert" -msgstr "テーブルを編集" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "CSSを編集" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "CSSテンプレートを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "CSSテンプレートのプロパティを編集する" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "チャートを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +#, fuzzy +msgid "Metric ascending" +msgstr "レポート送信" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 #, fuzzy -msgid "Edit Chart Properties" -msgstr "チャートのプロパティを編集" +msgid "Metric descending" +msgstr "レポート送信" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "ダッシュボードを編集" - -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "データベースを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +#, fuzzy +msgid "XScale Interval" +msgstr "更新間隔" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "ログを編集" - -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "指標を編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +#, fuzzy +msgid "YScale Interval" +msgstr "更新間隔" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -#, fuzzy -msgid "Edit Report" -msgstr "レポート" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 #, fuzzy -msgid "Edit Rule" -msgstr "クエリ名" - -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "保存したクエリの編集" +msgid "Rendering" +msgstr "警告" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "テーブルを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "注釈を編集する" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "注釈レイヤーを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "注釈レイヤーのプロパティを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 #, fuzzy -msgid "Edit chart" -msgstr "チャートを編集" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "チャートのプロパティを編集" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "ダッシュボードを編集" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "データベースを編集" +msgid "heatmap" +msgstr "ヒートマップ" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "データセットを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "クエリを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "テンプレートを編集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 #, fuzzy -msgid "Edit the dashboard" -msgstr "ダッシュボードを編集" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "期間を編集" - -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "編集した項目" +msgid "auto" +msgstr "期限" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "1つのフィルタを編集する:" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "フィルタセットを編集:" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset/errors.py:116 -#, fuzzy -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Issue 1015 - データベース名が正しくないか、または存在しません。" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset/errors.py:115 -#, fuzzy -msgid "Either the username or the password is wrong." -msgstr "Issue 1014 - ユーザー名またはパスワードが間違っています。" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -#, fuzzy -msgid "Elevation" -msgstr "期限" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -#, fuzzy -msgid "Embed" -msgstr "11月" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -#, fuzzy -msgid "Embed dashboard" -msgstr "ダッシュボードを保存" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 #, fuzzy -msgid "Emit Filter Events" -msgstr "新しいフィルタ セット" +msgid "Value Format" +msgstr "メールフォーマット" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 msgid "Employment and education" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "空のコレクション" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +#, fuzzy +msgid "Predictive" +msgstr "アクティブ" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 #, fuzzy -msgid "Empty column" -msgstr "列を削除する" +msgid "Single Metric" +msgstr "保存した指標" -#: superset/charts/data/api.py:366 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 #, fuzzy -msgid "Empty query result" -msgstr "クエリのインポート" +msgid "to" +msgstr "中止" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +#, fuzzy +msgid "count" +msgstr "月" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#, fuzzy +msgid "cumulative" +msgstr "アクティブ" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +#, fuzzy +msgid "Cumulative" +msgstr "アクティブ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +#, fuzzy +msgid "Distribution" +msgstr "棒グラフ" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "終了時間" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "全体への寄与度を算出" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "終了時間" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 #, fuzzy -msgid "End angle" -msgstr "期間" +msgid "series" +msgstr "クエリ" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 #, fuzzy -msgid "End date" -msgstr "日付" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "" - -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "開始日は終了日を超えてはいけません" - -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "" +msgid "overall" +msgstr "すべてクリア" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 #, fuzzy -msgid "Engine Parameters" -msgstr "テンプレートパラメータ" +msgid "change" +msgstr "管理" -#: superset/databases/schemas.py:302 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 #, fuzzy -msgid "Enter Primary Credentials" -msgstr "Excelをアップロード" +msgid "Horizon Chart" +msgstr "チャートなし" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 #, fuzzy -msgid "Enter duration in seconds" -msgstr "秒単位の時間" +msgid "Dim Gray" +msgstr "期間" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 #, fuzzy -msgid "Enter fullscreen" -msgstr "フルスクリーン切り替え" +msgid "Crimson" +msgstr "アクション" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "更新頻度" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +#, fuzzy +msgid "Points" +msgstr "構成要素" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +#, fuzzy +msgid "Auto" +msgstr "期限" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +#, fuzzy +msgid "Miles" +msgstr "フィルタ" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +#, fuzzy +msgid "Kilometers" +msgstr "フィルタ" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "エラーメッセージ" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 #, fuzzy -msgid "Error while fetching charts" -msgstr "データの取得中にエラーが発生しました" - -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, fuzzy, python-format -msgid "Error while fetching data: %s" -msgstr "データの取得中にエラーが発生しました" +msgid "label" +msgstr "ラベル" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset/views/core.py:839 -#, fuzzy -msgid "Error: permalink state not found" -msgstr "レポートスケジュールの状態が見つかりません" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "見積コスト" - -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "選択したクエリコストの見積" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #, fuzzy -msgid "Event" -msgstr "最近" +msgid "max" +msgstr "最大値" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -#, fuzzy -msgid "Event Names" -msgstr "アラート名" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 #, fuzzy -msgid "Exact" -msgstr "次" +msgid "Streets" +msgstr "最近" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "例" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +#, fuzzy +msgid "Dark" +msgstr "四半期" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "例" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +#, fuzzy +msgid "Light" +msgstr "高さ" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -#, fuzzy -msgid "Executed SQL" -msgstr "実行したクエリ" - -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "実行したクエリ" - -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "実行 ID" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "実行ログ" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 #, fuzzy -msgid "Existing dataset" -msgstr "データセットが見つかりません" +msgid "RGB Color" +msgstr "固定の色" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -#, fuzzy -msgid "Exit fullscreen" -msgstr "フルスクリーン切り替え" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 #, fuzzy -msgid "Expand" -msgstr "すべて展開" +msgid "Viewport" +msgstr "レポート" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "すべて展開" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +#, fuzzy +msgid "Default longitude" +msgstr "デフォルト値" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -#, fuzzy -msgid "Expand row" -msgstr "すべて展開" - -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 #, fuzzy -msgid "Expand table preview" -msgstr "データプレビュー" +msgid "Default latitude" +msgstr "デフォルト値" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." msgstr "" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "エクスポート" - -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "ダッシュボードをエクスポートしますか?" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "クエリのエクスポート" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -#, fuzzy -msgid "Export to .CSV" -msgstr "YAMLで出力" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -#, fuzzy -msgid "Export to .JSON" -msgstr "YAMLで出力" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -#, fuzzy -msgid "Export to Excel" -msgstr "YAMLで出力" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "YAMLで出力" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "YAMLで出力しますか?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "式" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 #, fuzzy -msgid "Extra Parameters" -msgstr "テンプレートパラメータ" +msgid "Options" +msgstr "アクション" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +#, fuzzy +msgid "Data Table" +msgstr "テーブルを編集" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +#, fuzzy +msgid "Ranking" +msgstr "警告" + +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +#, fuzzy +msgid "Coordinates" +msgstr "お気に入り" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "2月" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "金" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 #, fuzzy -msgid "Factor" -msgstr "10月" +msgid "Not Time Series" +msgstr "期間を編集" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#, fuzzy +msgid "Time Series" +msgstr "時系列 - 表" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "失敗" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +#, fuzzy +msgid "Aggregate Mean" +msgstr "作成日 " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +#, fuzzy +msgid "Percent Change" +msgstr "チャートの変更点" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +#, fuzzy +msgid "Factor" +msgstr "10月" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 #, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "新しいフィルタ" +msgid "Date Time Format" +msgstr "日時フォーマット" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "お気に入り" - -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "お気に入り" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "2月" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "データプレビューを読み込み" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -#, fuzzy -msgid "Fetching" -msgstr "設定" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "ファイル" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 #, fuzzy -msgid "Fill Color" -msgstr "固定の色" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "" +msgid "Min Periods" +msgstr "秒単位の時間" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 #, fuzzy -msgid "Filled" -msgstr "失敗" +msgid "Time Shift" +msgstr "見積コスト" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 #, fuzzy -msgid "Filter" -msgstr "フィルタ" +msgid "1 week" +msgstr "週" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 #, fuzzy -msgid "Filter Configuration" -msgstr "フィルタ構成" +msgid "28 days" +msgstr "90日" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "フィルタリスト" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30日" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 #, fuzzy -msgid "Filter Settings" -msgstr "新しいフィルタ セット" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "フィルタタイプ" +msgid "52 weeks" +msgstr "週" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 #, fuzzy -msgid "Filter box (deprecated)" -msgstr "フィルタは選択されていません。" +msgid "1 year" +msgstr "年" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 #, fuzzy -msgid "Filter charts" -msgstr "チャートを検索" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "フィルタ構成" +msgid "104 weeks" +msgstr "週" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "年" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +#, fuzzy +msgid "156 weeks" +msgstr "週" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 #, fuzzy -msgid "Filter menu" -msgstr "フィルタ名" +msgid "3 years" +msgstr "年" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "フィルタ名" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +#, fuzzy +msgid "Actual Values" +msgstr "デフォルト値" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -#, fuzzy -msgid "Filter type" -msgstr "フィルタタイプ" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -#, fuzzy -msgid "Filter value is required" -msgstr "データセットが必要です" - -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "チャートを検索" - -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "フィルタ可能" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "フィルタ" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "フィルター (%d)" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "フィルタ構成" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 #, fuzzy -msgid "Fix to selected Time Range" -msgstr "実際の期間" +msgid "Partition Chart" +msgstr "チャートのインポート" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 #, fuzzy -msgid "Fixed Color" -msgstr "固定の色" - -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "固定の色" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" -msgstr "" +msgid "Use Area Proportions" +msgstr "ダッシュボードのプロパティ" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +#, fuzzy +msgid "Source / Target" +msgstr "データソース名" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +#, fuzzy +msgid "Choose a source and a target" +msgstr "データセットを選択" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -#, fuzzy -msgid "Force date format" -msgstr "日時フォーマット" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "強制更新" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "テーブルリストを強制更新" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 #, fuzzy -msgid "Forecast periods" -msgstr "猶予期間" +msgid "Percentages" +msgstr "最近" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -#, fuzzy -msgid "Forest Green" -msgstr "更新頻度" - -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "クエリ名" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -#, fuzzy -msgid "Formatted date" -msgstr "データベースのインポート" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -#, fuzzy -msgid "Formatting" -msgstr "日時フォーマット" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 #, fuzzy -msgid "Forward values" +msgid "Show Bubbles" msgstr "テーブルを表示" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 #, fuzzy -msgid "Frequency" -msgstr "更新頻度" +msgid "Color by" +msgstr "並び替え" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 #, fuzzy -msgid "Friction" -msgstr "アクション" +msgid "Country Column" +msgstr "列を削除する" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "金曜日" - -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "開始日は終了日を超えてはいけません" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 #, fuzzy -msgid "Full name" -msgstr "クエリ名" +msgid "Bubble Color" +msgstr "固定の色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 #, fuzzy -msgid "Funnel Chart" -msgstr "新しいチャート" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" -msgstr "" +msgid "Country Color Scheme" +msgstr "線形配色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -#, fuzzy -msgid "Gauge Chart" -msgstr "チャートを保存" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 #, fuzzy -msgid "Generic Chart" +msgid "deck.gl charts" msgstr "すべてのチャート" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 #, fuzzy -msgid "GeoJson Column" -msgstr "列を削除する" +msgid "Select charts" +msgstr "すべてのチャート" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 #, fuzzy -msgid "GeoJson Settings" -msgstr "スケジュール設定" +msgid "Error while fetching charts" +msgstr "データの取得中にエラーが発生しました" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "猶予期間" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 #, fuzzy -msgid "Graph Chart" -msgstr "チャートを保存" +msgid "Arc" +msgstr "3月" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +#, fuzzy +msgid "Target Color" +msgstr "固定の色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +#, fuzzy +msgid "Categorical Color" +msgstr "線形配色" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 #, fuzzy -msgid "Greater than (>)" -msgstr "作成日 " +msgid "Stroke Width" +msgstr "線の幅" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -#, fuzzy -msgid "Grid" -msgstr "金曜日" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -msgid "Group Key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "グループ分け可能" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 #, fuzzy -msgid "Handlebars" -msgstr "アラート" +msgid "Aggregation" +msgstr "作成" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 #, fuzzy -msgid "Handlebars Template" -msgstr "テンプレートを削除" +msgid "Contours" +msgstr "月" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 #, fuzzy -msgid "Has created by" -msgstr "作成されました" +msgid "Weight" +msgstr "高さ" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "見出し" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "ヒートマップ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "すべてのチャート" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "高さ" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 #, fuzzy -msgid "Hide Line" -msgstr "レイヤーを隠す" +msgid "GeoJson Settings" +msgstr "スケジュール設定" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 #, fuzzy -msgid "Hide chart description" -msgstr "チャートの説明を切り替え" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "レイヤーを隠す" +msgid "Line width unit" +msgstr "線の幅" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 #, fuzzy -msgid "Hide password." -msgstr "パスワード" +msgid "meters" +msgstr "パラメータ" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -#, fuzzy -msgid "Hierarchy" -msgstr "検索" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "ヒストグラム" - -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "ホーム" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -#, fuzzy -msgid "Horizon Chart" -msgstr "チャートなし" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -#, fuzzy -msgid "Horizontal" -msgstr "チャートなし" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "高さ" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "ホスト名またはIPアドレス" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" +msgstr "" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "時間" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, fuzzy, python-format -msgid "Hours %s" -msgstr "時間" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "すべてのチャート" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#, fuzzy +msgid "deviation" +msgstr "アラート状態" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "名前" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +#, fuzzy +msgid "Polygon Column" +msgstr "列を削除する" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +#, fuzzy +msgid "Polygon Encoding" +msgstr "レポート送信" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +#, fuzzy +msgid "Elevation" +msgstr "期限" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +#, fuzzy +msgid "Polygon Settings" +msgstr "スケジュール設定" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 #, fuzzy -msgid "Ignore cache when generating screenshot" -msgstr "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" +msgid "Emit Filter Events" +msgstr "新しいフィルタ セット" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +#, fuzzy +msgid "Multiple filtering" +msgstr "新しいフィルタ" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +#, fuzzy +msgid "Point Size" +msgstr "構成要素" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "インポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +#, fuzzy +msgid "Square meters" +msgstr "パラメータ" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "インポート %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +#, fuzzy +msgid "Square kilometers" +msgstr "親フィルタ" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "ダッシュボードをインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +#, fuzzy +msgid "Square miles" +msgstr "クエリ" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "ダッシュボードをインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +#, fuzzy +msgid "Radius in meters" +msgstr "パラメータ" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "テーブル定義のインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "チャートのインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "不明な理由でダッシュボードのインポートに失敗しました" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "ダッシュボードをインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 #, fuzzy -msgid "Import database from file" -msgstr "データベースのインポート" +msgid "Point Color" +msgstr "固定の色" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "データセットのインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "クエリのインポート" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +#, fuzzy +msgid "Grid" +msgstr "金曜日" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "不明な理由により、保存したクエリをインポートできませんでした。" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"For more information about objects are in context in the scope of this " +"function, refer to the" msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -#, fuzzy -msgid "In" -msgstr "最小値" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -#, fuzzy -msgid "Include time" -msgstr "終了時間" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 #, fuzzy -msgid "Index" -msgstr "個人用" +msgid "Select a dimension" +msgstr "Supersetダッシュボード" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "情報" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +#, fuzzy +msgid "Legend Format" +msgstr "メールフォーマット" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +#, fuzzy +msgid "Choose the format for legend values" +msgstr "右軸の指標を選択" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +#, fuzzy +msgid "Legend Position" +msgstr "アラート状態" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +#, fuzzy +msgid "Choose the position of the legend" +msgstr "全体への寄与度を算出" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#, fuzzy +msgid "Top left" +msgstr "アラート" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +#, fuzzy +msgid "Top right" +msgstr "高さ" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 #, fuzzy -msgid "Interval" -msgstr "更新間隔" +msgid "Lines column" +msgstr "列を削除する" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "線の幅" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +#, fuzzy +msgid "The width of the lines" +msgstr "アクティブなチャートのID" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +#, fuzzy +msgid "Fill Color" +msgstr "固定の色" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 #, fuzzy -msgid "Interval colors" -msgstr "線形配色" +msgid "Stroke Color" +msgstr "固定の色" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +#, fuzzy +msgid "Filled" +msgstr "失敗" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 #, fuzzy -msgid "Intervals" -msgstr "更新間隔" +msgid "Stroked" +msgstr "作成した項目" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "無効な証明書" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +#, fuzzy +msgid "Multiplier" +msgstr "アクティブ" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +#, fuzzy +msgid "Lines encoding" +msgstr "レポート送信" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "無効な日付/タイムスタンプのフォーマット" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +#, fuzzy +msgid "GeoJson Column" +msgstr "列を削除する" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +#, fuzzy +msgid "Select the geojson column" +msgstr "すべての選択を解除" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +#, fuzzy +msgid "Right Axis Format" +msgstr "右軸の指標" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset/utils/core.py:1373 -#, fuzzy, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "無効な証明書" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#, fuzzy +msgid "linear" +msgstr "チャートを最小化" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#, fuzzy +msgid "cardinal" +msgstr "ログイン" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "月" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +#, fuzzy +msgid "step-after" +msgstr "新しいフィルタ" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +#, fuzzy +msgid "Show Range Filter" +msgstr "フィルタを復元" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -#, fuzzy -msgid "Invalid state." -msgstr "無効な証明書" - -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +#, fuzzy +msgid "staggered" +msgstr "変更" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 #, fuzzy -msgid "Invert current page" -msgstr "チャートの変更点" +msgid "X Axis Format" +msgstr "日時フォーマット" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -#, fuzzy -msgid "Is certified" -msgstr "無効な証明書" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" msgstr "" -#: superset-frontend/src/explore/constants.ts:89 -#, fuzzy -msgid "Is false" -msgstr "テーブルを編集" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "お気に入り" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -#, fuzzy -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Issue 1000 - データ ソースが大きすぎてクエリを実行できませんでした。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Issue 1001 - データベースに異常な負荷がかかっています。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "1月" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSONメタデータ" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +#, fuzzy +msgid "stream" +msgstr "ヒストグラム" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +#, fuzzy +msgid "expand" +msgstr "すべて展開" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "7月" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "6月" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "1月" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 #, fuzzy -msgid "Jinja templating" -msgstr "テンプレートを編集" +msgid "Area Chart (legacy)" +msgstr "チャートを保存" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +#, fuzzy +msgid "Line" +msgstr "個人用" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#, fuzzy +msgid "Deprecated" +msgstr "作成した項目" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" msgstr "" -#: superset/views/database/forms.py:404 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "7月" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "6月" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#, fuzzy +msgid "Series Limit Sort Descending" +msgstr "レポート送信" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +#, fuzzy +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "降順または昇順でソートするかどうか" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "編集を続ける" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 #, fuzzy -msgid "Key" -msgstr "サンキー" +msgid "Time-series Bar Chart (legacy)" +msgstr "時系列 - 棒グラフ" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 #, fuzzy -msgid "Kilometers" -msgstr "フィルタ" +msgid "Vertical" +msgstr "ABC順" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -#, fuzzy -msgid "LIMIT" -msgstr "区切り文字" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "ラベル" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +#, fuzzy +msgid "Bubble Chart (legacy)" +msgstr "チャートを保存" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 #, fuzzy -msgid "Label Type" -msgstr "チャートタイプ" +msgid "Ranges" +msgstr "管理" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 #, fuzzy -msgid "Label position" -msgstr "アラート状態" +msgid "Markers" +msgstr "アラート" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -#, fuzzy -msgid "Labels" -msgstr "ラベル" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -#, fuzzy -msgid "Large" -msgstr "共有" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "最終更新" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "最終更新" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "最終更新 %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +#, fuzzy +msgid "Time-series Percent Change" +msgstr "時系列 - 変化率" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "最終更新 %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +#, fuzzy +msgid "Sort Bars" +msgstr "チャートのインポート" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "最終更新" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +#, fuzzy +msgid "Breakdowns" +msgstr "作成日" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "最終更新者 %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "前回の実行" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "レイヤー構成" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +#, fuzzy +msgid "Discrete" +msgstr "作成されました" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "最終更新" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +#, fuzzy +msgid "Label Type" +msgstr "チャートタイプ" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 #, fuzzy -msgid "Left" -msgstr "アラート" +msgid "Category Name" +msgstr "クエリ名" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +#, fuzzy +msgid "Percentage" +msgstr "最近" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -#, fuzzy -msgid "Left value" -msgstr "デフォルト値" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -#, fuzzy -msgid "Legend" -msgstr "変更" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 #, fuzzy -msgid "Legend Format" -msgstr "メールフォーマット" +msgid "Donut" +msgstr "月" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -#, fuzzy -msgid "Legend Orientation" -msgstr "注釈を削除する" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 #, fuzzy -msgid "Legend Position" -msgstr "アラート状態" +msgid "Show Labels" +msgstr "テーブルを表示" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +#, fuzzy +msgid "Pie Chart (legacy)" +msgstr "チャートを保存" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 #, fuzzy -msgid "Light" -msgstr "高さ" +msgid "Frequency" +msgstr "更新頻度" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 #, fuzzy -msgid "Limit type" -msgstr "可視化タイプ" +msgid "Time-series Period Pivot" +msgstr "時系列 - 期間ピボット" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +#, fuzzy +msgid "Event" +msgstr "最近" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "更新間隔" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy -msgid "Line" -msgstr "個人用" +msgid "Stream" +msgstr "ヒストグラム" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy -msgid "Line Chart" -msgstr "チャートを最小化" +msgid "Expand" +msgstr "すべて展開" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +#, fuzzy +msgid "Margin" +msgstr "警告" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +#, fuzzy +msgid "Additional padding for legend." +msgstr "追加情報" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "線の幅" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #, fuzzy -msgid "Linear Color Scheme" -msgstr "線形配色" - -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "線形配色" +msgid "Orientation" +msgstr "注釈を削除する" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 #, fuzzy -msgid "Lines column" -msgstr "列を削除する" +msgid "Right" +msgstr "高さ" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 #, fuzzy -msgid "Lines encoding" -msgstr "レポート送信" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "リンクをコピーしました!" +msgid "Legend Orientation" +msgstr "注釈を削除する" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "保存したクエリのリスト" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +#, fuzzy +msgid "Show Value" +msgstr "テーブルを表示" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -#, fuzzy -msgid "List updated" -msgstr "四半期" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "CSSテンプレートの読み込み" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +#, fuzzy +msgid "Tooltip time format" +msgstr "日時フォーマット" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +#, fuzzy +msgid "Tooltip sort by metric" +msgstr "色の指標" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 #, fuzzy -msgid "Loading" -msgstr "アップロード" +msgid "Sort Series By" +msgstr "並び替え" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 #, fuzzy -msgid "Locate the chart" -msgstr "新しいチャートを作成" +msgid "Sort Series Ascending" +msgstr "レポート送信" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "ログの保持" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +#, fuzzy +msgid "Series Order" +msgstr "クエリ" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "保存した指標" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "ログイン" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 #, fuzzy -msgid "Login with" -msgstr "線の幅" - -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "ログアウト" - -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "ログ" +msgid "Minor ticks" +msgstr "列または指標を削除する" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "3月" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "5月" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "月" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +#, fuzzy +msgid "Tiny" +msgstr "アクション" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" -msgstr "不正なリクエスト。 slice_idまたはtable_nameおよびdb_name引数が必要です" - -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "管理" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -#, fuzzy -msgid "Manage email report" -msgstr "アラートとレポート" - -#: superset-frontend/src/components/EmptyState/index.tsx:230 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 #, fuzzy -msgid "Manage your databases" -msgstr "データベースのインポート" +msgid "Large" +msgstr "共有" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 #, fuzzy -msgid "Map" -msgstr "ツリーマップ" +msgid "Display settings" +msgstr "スケジュール設定" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +#, fuzzy +msgid "Subheader" +msgstr "見出し" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +#, fuzzy +msgid "Date format" +msgstr "日時フォーマット" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#, fuzzy +msgid "Force date format" +msgstr "日時フォーマット" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "3月" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "追加情報" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 #, fuzzy -msgid "Margin" -msgstr "警告" +msgid "Apply conditional color formatting to metric" +msgstr "追加情報" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 #, fuzzy -msgid "Marker" -msgstr "四半期" +msgid "A Big Number" +msgstr "数値" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "数値" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -#, fuzzy -msgid "Markers" -msgstr "アラート" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "最大値" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +#, fuzzy +msgid "Fix to selected Time Range" +msgstr "実際の期間" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -#, fuzzy -msgid "Maximum value" -msgstr "デフォルト値" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "5月" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Mean values" -msgstr "デフォルト値" +msgid "Tukey" +msgstr "クエリ" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 #, fuzzy -msgid "Median values" -msgstr "デフォルト値" +msgid "Distribute across" +msgstr "見積コスト" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "メッセージ内容" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "ECharts" +msgstr "チャート" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 #, fuzzy -msgid "Metadata" -msgstr "JSONメタデータ" +msgid "Bubble size number format" +msgstr "右軸の指標を選択" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 #, fuzzy -msgid "Metadata Parameters" -msgstr "テンプレートパラメータ" +msgid "Bubble Opacity" +msgstr "バブルチャート" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "指標" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" +msgstr "" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -#, fuzzy -msgid "Metric ascending" -msgstr "レポート送信" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "[X] 軸に割り当てられた指標" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "[Y] 軸に割り当てられた指標" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -#, fuzzy -msgid "Metric descending" -msgstr "レポート送信" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, python-format +msgid "% calculation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -#, fuzzy -msgid "Metric name" -msgstr "クエリ名" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 #, fuzzy -msgid "Metric to display bottom title" -msgstr "表示する指標を選択" +msgid "Labels" +msgstr "ラベル" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "メッセージ内容" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "レポート送信" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "テーブルを表示" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "指標" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "表示する指標を選択" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 #, fuzzy -msgid "Middle" -msgstr "ファイル" +msgid "Funnel Chart" +msgstr "新しいチャート" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -#, fuzzy -msgid "Miles" -msgstr "フィルタ" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 #: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 msgid "Min" msgstr "最小値" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -#, fuzzy -msgid "Min Periods" -msgstr "秒単位の時間" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -#, fuzzy -msgid "Min Width" -msgstr "線の幅" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "最大値" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "個人用" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 #, fuzzy -msgid "Minimum" -msgstr "分" +msgid "Start angle" +msgstr "チャートの変更点" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +#, fuzzy +msgid "End angle" +msgstr "期間" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 #, fuzzy -msgid "Minimum value" -msgstr "デフォルト値" +msgid "Value format" +msgstr "メールフォーマット" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "分" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, fuzzy, python-format -msgid "Minutes %s" -msgstr "分" - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 #, fuzzy -msgid "Missing URL parameters" -msgstr "追加パラメータ" +msgid "Animation" +msgstr "注釈" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "データセットが見つかりません" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 #, fuzzy -msgid "Mixed Chart" -msgstr "チャートを最小化" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "最終更新" - -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, fuzzy, python-format -msgid "Modified %s" -msgstr "最終更新 %s" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "更新者" +msgid "Axis" +msgstr "Y軸" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "月曜日" - -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, fuzzy, python-format -msgid "Months %s" -msgstr "月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -#, fuzzy -msgid "More" -msgstr "削除" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 #, fuzzy -msgid "More filters" -msgstr "新しいフィルタ" +msgid "Split number" +msgstr "数値" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +#, fuzzy +msgid "Show progress" +msgstr "ダッシュボードのプロパティ" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#, fuzzy +msgid "Overlap" +msgstr "世界地図" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +#, fuzzy +msgid "Round cap" +msgstr "国別地図" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 #, fuzzy -msgid "Multiple Line Charts" -msgstr "時系列 - 複数の折れ線グラフ" +msgid "Intervals" +msgstr "更新間隔" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "" -#: superset/views/database/views.py:468 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 #, fuzzy -msgid "Multiple filtering" -msgstr "新しいフィルタ" +msgid "Interval colors" +msgstr "線形配色" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 #, fuzzy -msgid "Multiplier" -msgstr "アクティブ" - -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "一意である必要があります" +msgid "Gauge Chart" +msgstr "チャートを保存" -#: superset/reports/commands/exceptions.py:94 -#, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "両方ではなくチャートまたはダッシュボードを選択してください" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "[Label] として ’count’ を持つには、[Group By] 列が必要です" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "少なくとも 1 つの数値列を指定する必要があります。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +#, fuzzy +msgid "Source category" +msgstr "データソース名" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 #, fuzzy -msgid "My column" -msgstr "列を削除する" +msgid "Chart options" +msgstr "チャートのプロパティを編集" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -#, fuzzy -msgid "NOT GROUPED BY" -msgstr "並び替え" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "11月" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -#, fuzzy -msgid "NUMERIC" -msgstr "指標" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "名前" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "名前が必要です" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" msgstr "" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" msgstr "" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 #, fuzzy -msgid "Name your database" -msgstr "データベースのインポート" +msgid "Disabled" +msgstr "テーブルを編集" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -#, fuzzy -msgid "Network error" -msgstr "パラメータエラー" - -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -#, fuzzy -msgid "Network error." -msgstr "パラメータエラー" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "新しいチャート" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -#, fuzzy -msgid "New dataset" -msgstr "データセットを変更" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 #, fuzzy -msgid "New dataset name" -msgstr "データベース名" +msgid "Single" +msgstr "個人用" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "新しいフィルタ セット" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 #, fuzzy -msgid "New header" -msgstr "見出し" +msgid "Allow node selections" +msgstr "複数の選択を許可する" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "次" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +#, fuzzy +msgid "Edge width" +msgstr "線の幅" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "アクセスがありません!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 #, fuzzy -msgid "No Results" -msgstr "結果を見る" +msgid "Repulsion" +msgstr "式" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "最近" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 #, fuzzy -msgid "No annotation layers" -msgstr "注釈レイヤー" +msgid "Friction" +msgstr "アクション" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "注釈レイヤーはまだありません" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "注釈はまだありません" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 #, fuzzy -msgid "No applied filters" -msgstr "適用したフィルタ (%d)" +msgid "Graph Chart" +msgstr "チャートを保存" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -#, fuzzy -msgid "No available filters." -msgstr "すべてのフィルタ" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "チャートなし" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "降順または昇順でソートするかどうか" -#: superset-frontend/src/features/home/EmptyState.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "No charts yet" -msgstr "チャートなし" +msgid "Series type" +msgstr "可視化タイプ" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -#, fuzzy -msgid "No columns found" -msgstr "互換性のないフィルタ (%d)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -#, fuzzy -msgid "No compatible columns found" -msgstr "互換性のないフィルタ (%d)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -#, fuzzy -msgid "No compatible datasets found" -msgstr "互換性のないフィルタ (%d)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -#, fuzzy -msgid "No compatible schema found" -msgstr "互換性のないフィルタ (%d)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "ダッシュボードなし" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 #, fuzzy -msgid "No dashboards yet" -msgstr "ダッシュボードなし" +msgid "Area chart" +msgstr "チャートを保存" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "ファイルにデータがありません" - -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 #, fuzzy -msgid "No database tables found" -msgstr "データベースが見つかりません。" +msgid "Marker" +msgstr "四半期" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "お気に入りのチャートはまだありません。星をクリックしてください!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "お気に入りのダッシュボードはまだありません。星をクリックしてください!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +#, fuzzy +msgid "Primary" +msgstr "金曜日" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 #, fuzzy -msgid "No filter" -msgstr "新しいフィルタ" +msgid "Secondary" +msgstr "秒" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "フィルタは選択されていません。" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "No filters" -msgstr "新しいフィルタ" +msgid "Shared query fields" +msgstr "保存したクエリ" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 #, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "このダッシュボードにはフィルターはありません。" +msgid "Query A" +msgstr "クエリ" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +#, fuzzy +msgid "Query B" +msgstr "クエリ" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#, fuzzy -msgid "No matching records found" -msgstr "レコードが見つかりません" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -#, fuzzy -msgid "No recents yet" -msgstr "最近" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "レコードが見つかりません" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -#, fuzzy -msgid "No results" -msgstr "結果を見る" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -#, fuzzy -msgid "No saved expressions found" -msgstr "SQL 式" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -#, fuzzy -msgid "No saved metrics found" -msgstr "保存した指標" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 #, fuzzy -msgid "No saved queries yet" -msgstr "保存したクエリ" +msgid "Mixed Chart" +msgstr "チャートを最小化" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "No table columns" +msgid "Show Total" msgstr "列を削除する" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 #, fuzzy -msgid "No temporal columns found" -msgstr "互換性のないフィルタ (%d)" +msgid "Pie shape" +msgstr "サンプルを表示" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +#, fuzzy +msgid "Outer edge of Pie chart" +msgstr "アクティブなチャートのID" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +#, fuzzy +msgid "Pie Chart" +msgstr "新しいチャート" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" -msgstr "なし" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +#, fuzzy +msgid "Label position" +msgstr "アラート状態" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +#, fuzzy +msgid "Customize Metrics" +msgstr "カスタマイズ" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 #, fuzzy -msgid "Not Time Series" -msgstr "期間を編集" +msgid "Radar Chart" +msgstr "チャートを保存" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 #, fuzzy -msgid "Not added to any dashboard" -msgstr "新しいダッシュボードに追加" +msgid "Primary Metric" +msgstr "指標を選んでください!" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +#, fuzzy +msgid "Secondary Metric" +msgstr "色の指標" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 #, fuzzy -msgid "Not in" -msgstr "注釈" +msgid "Hierarchy" +msgstr "検索" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "11月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 #, fuzzy -msgid "Now" -msgstr "行" +msgid "Generic Chart" +msgstr "すべてのチャート" -#: superset/views/database/forms.py:211 -msgid "Null Values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 #, fuzzy -msgid "Null imputation" -msgstr "注釈" +msgid "Series Style" +msgstr "時系列 - 表" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 #, fuzzy -msgid "Number format string" -msgstr "右軸の指標を選択" +msgid "Area Chart" +msgstr "チャートを保存" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +#, fuzzy +msgid "AXIS TITLE POSITION" +msgstr "アラート状態" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +#, fuzzy +msgid "Axis Format" +msgstr "日時フォーマット" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +#, fuzzy +msgid "Chart Orientation" +msgstr "注釈を削除する" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +#, fuzzy +msgid "Bar orientation" +msgstr "注釈を削除する" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +#, fuzzy +msgid "Horizontal" +msgstr "チャートなし" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#, fuzzy +msgid "Orientation of bar chart" +msgstr "棒グラフ" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +#, fuzzy +msgid "Bar Chart" +msgstr "チャートを保存" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 #, fuzzy -msgid "Numerical range" -msgstr "期間" +msgid "Line Chart" +msgstr "チャートを最小化" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "10月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "上書き" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "10月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +#, fuzzy +msgid "Step type" +msgstr "チャートタイプ" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "オフライン" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "開始時間" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "オフセット" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +#, fuzzy +msgid "Middle" +msgstr "ファイル" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "終了時間" -#: superset-frontend/src/explore/controls.jsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +#, fuzzy +msgid "Stepped Line" +msgstr "時系列 - 表" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset/errors.py:119 -#, fuzzy -msgid "One or more parameters needed to configure a database are missing." -msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" - -#: superset/errors.py:133 -#, fuzzy -msgid "One or more parameters specified in the query are malformatted." -msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" - -#: superset/errors.py:107 -#, fuzzy -msgid "One or more parameters specified in the query are missing." -msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "1つ以上の注釈レイヤーの読み込みに失敗しました。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "" -#: superset/sql_lab.py:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 #, fuzzy -msgid "Only SELECT statements are allowed against this database." -msgstr "`SELECT` 操作のみがこのDBに対して許可されています" +msgid "Tree orientation" +msgstr "注釈を削除する" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "'SELECT' 操作のみが許可されます" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "選択したパネルのみがこのフィルターの影響を受けます" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "単一のクエリのみがサポートされています" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +#, fuzzy +msgid "left" +msgstr "アラート" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "次のファイル拡張子のみが許可されます: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +#, fuzzy +msgid "top" +msgstr "中止" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 #, fuzzy -msgid "Oops! An error occurred!" -msgstr "エラーが発生しました" +msgid "right" +msgstr "高さ" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "データソースタブを開く" - -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "SQL Labで開く" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "SQL Labでクエリを開く" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." -msgstr "データベースを非同期モードで動作させます。Webサーバー自体ではなくリモートワーカーでクエリを実行します。この機能はCeleryワーカーと結果バックエンドがセットアップされていることを前提としています。詳細についてはインストールドキュメントを参照してください。" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -#, fuzzy -msgid "Operator" -msgstr "作成者" - -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -#, fuzzy -msgid "Optional d3 date format string" -msgstr "追加情報" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -#, fuzzy -msgid "Optional d3 number format string" -msgstr "追加情報" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 #, fuzzy -msgid "Options" -msgstr "アクション" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" -msgstr "" +msgid "Circle" +msgstr "ファイル" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 #, fuzzy -msgid "Orientation" -msgstr "注釈を削除する" +msgid "Pin" +msgstr "最小値" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 #, fuzzy -msgid "Orientation of bar chart" -msgstr "棒グラフ" +msgid "Arrow" +msgstr "行" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -#, fuzzy -msgid "Original" -msgstr "ログイン" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "元のテーブル列順で表示" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +#, fuzzy +msgid "Tree Chart" +msgstr "新しいチャート" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 #, fuzzy -msgid "Other" -msgstr "月" +msgid "Key" +msgstr "サンキー" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "ツリーマップ" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -#, fuzzy -msgid "Outer edge of Pie chart" -msgstr "アクティブなチャートのID" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 #, fuzzy -msgid "Overlap" -msgstr "世界地図" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "" +msgid "Increase" +msgstr "作成" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "作成" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "固定の色" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 #, fuzzy -msgid "Override time grain" -msgstr "期間" +msgid "Waterfall Chart" +msgstr "すべてのチャート" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -#, fuzzy -msgid "Override time range" -msgstr "期間を編集" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "上書き" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "ダッシュボード [%s] を上書き" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +#, fuzzy +msgid "Handlebars" +msgstr "アラート" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 #, fuzzy -msgid "Overwrite existing" -msgstr "編集を続ける" +msgid "Handlebars Template" +msgstr "テンプレートを削除" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +#, fuzzy +msgid "Include time" +msgstr "終了時間" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "所有者" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "所有者" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +#, fuzzy +msgid "Percentage metrics" +msgstr "保存した指標" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." -msgstr "所有者は、ダッシュボードを変更できるユーザーのリストです。" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name" -" or username." -msgstr "所有者は、ダッシュボードを変更できるユーザーのリストです。名前またはユーザー名で検索できます。" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "パラメータエラー" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "パラメータ" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 #, fuzzy -msgid "Parameters " -msgstr "パラメータ" +msgid "Query mode" +msgstr "クエリ名" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -#, fuzzy -msgid "Partition Chart" -msgstr "チャートのインポート" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -#: superset/viz.py:3069 -msgid "Partition Diagram" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +msgid "Range for Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "チャートを検索" + +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "パスワード" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 #, fuzzy -msgid "Pattern" -msgstr "更新" +msgid "Cell limit" +msgstr "区切り文字" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -#, fuzzy -msgid "Percent Change" -msgstr "チャートの変更点" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -#, fuzzy -msgid "Percentage" -msgstr "最近" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -#, fuzzy -msgid "Percentage change" -msgstr "チャートの変更点" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 #, fuzzy -msgid "Percentage metrics" -msgstr "保存した指標" +msgid "Count" +msgstr "月" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -#, fuzzy -msgid "Percentages" -msgstr "最近" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "共有" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 #, fuzzy -msgid "Person or group that has certified this dashboard." -msgstr "このダッシュボードにアクセスできません。" +msgid "Minimum" +msgstr "分" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "表示する指標を選択" - -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "指標を選んでください!" - -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "時系列の時間粒度を選択" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "列を削除する" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +#, fuzzy +msgid "Show columns total" +msgstr "列を削除する" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "少なくとも1つの指標を選択してください" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "列を削除する" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "お気に入りのマークアップ言語を選択" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -#, fuzzy -msgid "Pie Chart" -msgstr "新しいチャート" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 #, fuzzy -msgid "Pie shape" -msgstr "サンプルを表示" +msgid "Swap rows and columns" +msgstr "列を削除する" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 #, fuzzy -msgid "Pin" -msgstr "最小値" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "ピボットテーブル" +msgid "Combine metrics" +msgstr "列または指標を削除する" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 #, fuzzy -msgid "Pivoted" -msgstr "編集した項目" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "" +msgid "Sort rows by" +msgstr "並び替え" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +#, fuzzy +msgid "value ascending" +msgstr "レポート送信" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +#, fuzzy +msgid "value descending" +msgstr "レポート送信" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset/viz.py:3234 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "少なくとも1つの[Group by]フィールドを選択してください " +msgid "Sort columns by" +msgstr "列をアルファベット順に並び替え" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "確認してください" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "共有を有効にするにはクエリを保存して下さい" - -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." -msgstr "" +msgid "Conditional formatting" +msgstr "追加情報" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "3つの異なる指標ラベルを使用してください" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "ピボットテーブル" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "プラグイン" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -#, fuzzy -msgid "Point Color" -msgstr "固定の色" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 #, fuzzy -msgid "Point Size" -msgstr "構成要素" +msgid "No matching records found" +msgstr "レコードが見つかりません" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 #, fuzzy -msgid "Points" -msgstr "構成要素" +msgid "Timestamp format" +msgstr "無効な日付/タイムスタンプのフォーマット" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 #, fuzzy -msgid "Polygon Column" -msgstr "列を削除する" +msgid "Search box" +msgstr "検索" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -#, fuzzy -msgid "Polygon Encoding" -msgstr "レポート送信" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 #, fuzzy -msgid "Polygon Settings" -msgstr "スケジュール設定" +msgid "Cell bars" +msgstr "すべてのチャート" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 #, fuzzy -msgid "Port" -msgstr "レポート" +msgid "Customize columns" +msgstr "列を削除する" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#, fuzzy +msgid "entries" +msgstr "クエリ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -#, fuzzy -msgid "Pre-filter" -msgstr "新しいフィルタ" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 #, fuzzy -msgid "Pre-filter is required" -msgstr "タイプが必要です" +msgid "Word Rotation" +msgstr "注釈を追加" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 #, fuzzy -msgid "Predictive" -msgstr "アクティブ" +msgid "square" +msgstr "四半期" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "プレビュー" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." +msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "前" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +#, fuzzy +msgid "offline" +msgstr "オフライン" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy -msgid "Previous Line" -msgstr "前" +msgid "failed" +msgstr "失敗" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 #, fuzzy -msgid "Primary" -msgstr "金曜日" +msgid "pending" +msgstr "警告" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +#: superset-frontend/src/SqlLab/constants.ts:36 #, fuzzy -msgid "Primary Metric" -msgstr "指標を選んでください!" +msgid "fetching" +msgstr "設定" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 #, fuzzy -msgid "Primary key" -msgstr "金曜日" +msgid "running" +msgstr "実行中" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "中止" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "成功" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -#, fuzzy -msgid "Proceed" -msgstr "作成した項目" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "不明なエラー" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "プロファイル" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Gravatarが提供するプロフィール写真" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "公開" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "クエリを保存できませんでした" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +#, fuzzy +msgid "Your query was not properly saved" +msgstr "クエリが保存されました" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "クエリが保存されました" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "クエリが更新されました" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "クエリを更新できませんでした" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." msgstr "" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "四半期" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "クエリを共有" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, fuzzy, python-format -msgid "Quarters %s" -msgstr "四半期" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "データ ソースを読み込めませんでした" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "クエリ" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "クエリ" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "関数名の取得中にエラーが発生しました。" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 #, python-format -msgid "Query %s: %s" +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -#, fuzzy -msgid "Query A" -msgstr "クエリ" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 #, fuzzy -msgid "Query B" -msgstr "クエリ" +msgid "Primary key" +msgstr "金曜日" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "クエリ履歴" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" +msgstr "" -#: superset/commands/exceptions.py:142 +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 #, fuzzy -msgid "Query does not exist" -msgstr "チャートが存在しません" +msgid "Index" +msgstr "個人用" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "クエリ履歴" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "選択したクエリコストの見積" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -#, fuzzy -msgid "Query imported" -msgstr "クエリ名" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "見積コスト" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "コストの見積もり" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -#, fuzzy -msgid "Query mode" -msgstr "クエリ名" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "エラーが発生しました" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "クエリ名" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "クエリプレビュー" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +#, fuzzy +msgid "explore" +msgstr "レポート" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +#, fuzzy +msgid "Create Chart" +msgstr "チャートを保存" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "範囲のタイプ" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy -msgid "RGB Color" -msgstr "固定の色" +msgid "Executed SQL" +msgstr "実行したクエリ" -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "チャートを削除できませんでした。" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "クエリ実行" -#: superset/row_level_security/commands/exceptions.py:25 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 #, fuzzy -msgid "RLS Rule not found." -msgstr "レポートスケジュールが見つかりません。" +msgid "Run current query" +msgstr "クエリ実行" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "クエリを中止" + +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 #, fuzzy -msgid "Radar Chart" -msgstr "チャートを保存" +msgid "Previous Line" +msgstr "前" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +msgid "Format SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "参加" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 #, fuzzy -msgid "Radius in meters" -msgstr "パラメータ" +msgid "Run a query to display query history" +msgstr "クエリを実行すると結果がここに表示されます" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +#, fuzzy +msgid "LIMIT" +msgstr "区切り文字" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "状態" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 #, fuzzy -msgid "Range" -msgstr "管理" +msgid "Started" +msgstr "状態" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -#, fuzzy -msgid "Range filter" -msgstr "新しいフィルタ" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "期限" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "結果" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "アクション" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -#, fuzzy -msgid "Ranges" -msgstr "管理" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "成功" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "失敗" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -#, fuzzy -msgid "Ranking" -msgstr "警告" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "実行中" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 #, fuzzy -msgid "Ratio" -msgstr "期限" +msgid "Fetching" +msgstr "設定" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "オフライン" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -#, fuzzy -msgid "Ready to review filters in this dashboard?" -msgstr "このダッシュボードにはフィルターはありません。" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "最近のアクティビティ" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "編集" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "最近作成したグラフ、ダッシュボード、保存したクエリがここに表示されます" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#, fuzzy +msgid "View" +msgstr "プレビュー" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "最近編集したグラフ、ダッシュボード、保存したクエリがここに表示されます" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "データプレビュー" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "更新" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "新しいタブでクエリを実行" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "最近" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "ログからクエリを削除" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "レコード数" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "更新" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, fuzzy, python-format +msgid "%(rows)d rows returned" +msgstr "行を取得" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "ダッシュボードを更新" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "更新頻度" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "行" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "更新間隔" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "ジョブ履歴" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 #, fuzzy -msgid "Refresh interval saved" -msgstr "更新間隔" +msgid "See query details" +msgstr "保存したクエリ" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -#, fuzzy -msgid "Refresh table list" -msgstr "テーブルリストを強制更新" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -#, fuzzy -msgid "Refresh tables" -msgstr "テーブルリストを強制更新" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "データベースエラー" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "作成されました" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -#, fuzzy -msgid "Refreshing charts" -msgstr "データの取得中にエラーが発生しました" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/src/explore/constants.ts:78 -#, fuzzy -msgid "Regex" -msgstr "共有" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "データプレビューを読み込み" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "中止" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "実行" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "実行を停止 (Ctrl + x)" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 #, fuzzy -msgid "Relational" -msgstr "期限" +msgid "Stop running (Ctrl + e)" +msgstr "実行を停止 (Ctrl + x)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "クエリを実行 (Ctrl + Return)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "保存" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 #, fuzzy -msgid "Relative period" -msgstr "猶予期間" +msgid "Untitled Dataset" +msgstr "データセットを編集" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -#, fuzzy -msgid "Reload" -msgstr "作成した項目" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "削除" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "新規保存" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 #, fuzzy -msgid "Remove cross-filter" -msgstr "新しいフィルタ" +msgid "Overwrite existing" +msgstr "編集を続ける" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "アイテムを削除" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +#, fuzzy +msgid "Existing dataset" +msgstr "データセットが見つかりません" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "ログからクエリを削除" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +#, fuzzy +msgid "Are you sure you want to overwrite this dataset?" +msgstr "選択したデータセットを削除しますか?" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +#, fuzzy +msgid "Save dataset" +msgstr "データセットを変更" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "別名で保存" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "クエリを保存" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "キャンセル" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "更新" + +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -#, fuzzy -msgid "Rendering" -msgstr "警告" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -#, fuzzy -msgid "Report" -msgstr "レポート" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -#, fuzzy -msgid "Report Name" -msgstr "レポート名" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "レポートスケジュールを作成できませんでした。" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "共有を有効にするにはクエリを保存して下さい" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "レポートスケジュールを削除できませんでした。" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "クエリのlinkをクリップボードにコピー" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "レポートスケジュールを更新できませんでした。" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "この機能を有効にするためクエリを保存する" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "レポートスケジュールの削除に失敗しました。" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "csv の生成中にレポートスケジュールの実行に失敗しました。" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "" -#: superset/reports/commands/exceptions.py:163 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 #, fuzzy -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "csv の生成中にレポートスケジュールの実行に失敗しました。" +msgid "Run a query to display results" +msgstr "クエリを実行すると結果がここに表示されます" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "レポートスケジュールの実行で予期しないエラーが発生しました。" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "クエリ履歴" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "レポートスケジュールはまだ機能しており、再計算を拒否しています。" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "レポートスケジュールログの整理に失敗しました。" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "レポートスケジュールが見つかりません。" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "レポートスケジュールパラメータが無効です。" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "レポートスケジュールが作業タイムアウトに達しました。" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "レポートスケジュールの状態が見つかりません" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -#, fuzzy -msgid "Report a bug" -msgstr "レポート" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "レポートに失敗しました" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "レポート名" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "レポートスケジュール" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "" -#: superset/reports/commands/exceptions.py:273 -#, fuzzy -msgid "Report schedule client error" -msgstr "レポートスケジュールの予期せぬエラー" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "作成" -#: superset/reports/commands/exceptions.py:267 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Report schedule system error" -msgstr "レポートスケジュールの予期せぬエラー" - -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "レポートスケジュールの予期せぬエラー" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "レポート送信" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "レポートが送信されました" +msgid "Collapse table preview" +msgstr "データプレビュー" -#: superset-frontend/src/reports/actions/reports.js:121 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Report updated" -msgstr "レポートに失敗しました" +msgid "Expand table preview" +msgstr "データプレビュー" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "レポート" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -#, fuzzy -msgid "Repulsion" -msgstr "式" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "権限のリクエスト" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" msgstr "" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" msgstr "" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "必須" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +#, fuzzy +msgid "Add a new tab" +msgstr "新しいチャートとして保存" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -#, fuzzy -msgid "Resample" -msgstr "サンプルを表示" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -#, fuzzy -msgid "Reset" -msgstr "最近" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" msgstr "" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "データベースが見つかりません。" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "フィルタを復元" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "元のテーブル列順で表示" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "結果" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "列をアルファベット順に並び替え" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, fuzzy, python-format -msgid "Results %s" -msgstr "結果" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "SELECT文をクリップボードにコピー" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "CREATE VIEW文を表示" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "CREATE VIEW文" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" msgstr "" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#, fuzzy +msgid "Jinja templating" +msgstr "テンプレートを編集" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 #, fuzzy -msgid "Right" -msgstr "高さ" +msgid "Parameters " +msgstr "パラメータ" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "" + +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "" + +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#, fuzzy +msgid "Control" +msgstr "月" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +#, fuzzy +msgid "Before" +msgstr "更新" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +#, fuzzy +msgid "After" +msgstr "日付" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "クリックして差分を確認" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -#, fuzzy -msgid "Right Axis Format" -msgstr "右軸の指標" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "変更" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -#, fuzzy -msgid "Right Axis Metric" -msgstr "右軸の指標" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "チャートの変更点" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "右軸の指標" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "最終更新者 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" msgstr "" -#: superset/dashboards/filters.py:200 -msgid "Role" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" msgstr "" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#: superset-frontend/src/components/Chart/Chart.jsx:274 msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "付与する役割" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "SQL のロード中にエラーが発生しました" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +#, fuzzy +msgid "Sorry, an error occurred" +msgstr "エラーが発生しました" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, fuzzy, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" -msgstr "" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +#, fuzzy +msgid "Network error." +msgstr "パラメータエラー" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 #, fuzzy -msgid "Round cap" -msgstr "国別地図" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "行" +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "このダッシュボードにはフィルターはありません。" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 #, fuzzy -msgid "Row Level Security" -msgstr "行レベルセキュリティ" +msgid "This visualization type does not support cross-filtering." +msgstr "この可視化方式はサポートされていません。" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." -msgstr "" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +#, fuzzy +msgid "Remove cross-filter" +msgstr "新しいフィルタ" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +#, fuzzy +msgid "Add cross-filter" +msgstr "フィルタを追加" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "列を削除する" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy -msgid "Rule Name" -msgstr "クエリ名" +msgid "No columns found" +msgstr "互換性のないフィルタ (%d)" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "実行" - -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 #, fuzzy -msgid "Run a query to display query history" -msgstr "クエリを実行すると結果がここに表示されます" +msgid "You do not have sufficient permissions to edit the chart" +msgstr "このチャートを編集する権限がありません" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy -msgid "Run a query to display results" -msgstr "クエリを実行すると結果がここに表示されます" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "SQL Labで実行" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "クエリ実行" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "クエリを実行 (Ctrl + Return)" +msgid "Edit chart" +msgstr "チャートを編集" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "新しいタブでクエリを実行" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "閉じる" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "実行中" - -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "並び替え" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "土" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "9月" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, fuzzy, python-format +msgid "Results %s" +msgstr "結果" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL 式" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "SQL Lab ビュー" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 #, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "SQLクエリ" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "SQL 式" - -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "SQLクエリ" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#, fuzzy +msgid "Formatting" +msgstr "日時フォーマット" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 #, fuzzy -msgid "SSH Password" -msgstr "パスワード" +msgid "Reload" +msgstr "作成した項目" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -#, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "チャートを削除できませんでした。" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -#, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "チャートをアップロードできませんでした。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -#, fuzzy -msgid "SSH Tunnel not found." -msgstr "データベースが見つかりません。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -#, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "データベース パラメータが無効です。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 #, fuzzy -msgid "STRING" -msgstr "警告" +msgid "every minute" +msgstr "5分" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "日" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "分" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "サンプルを表示" - -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "データベースを作成できませんでした。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "データ ソースを読み込めませんでした" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "サンキー" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +#, fuzzy +msgid "minute(s)" +msgstr "分" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "日曜日" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "月曜日" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "火曜日" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "水曜日" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "木曜日" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "金曜日" + #: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 msgid "Saturday" msgstr "土曜日" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "1月" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "2月" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "保存してダッシュボードに移動" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "3月" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -#, fuzzy -msgid "Save & go to new dashboard" -msgstr "保存してダッシュボードに移動" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "4月" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "上書き保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "5月" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "別名で保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "6月" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -#, fuzzy -msgid "Save as Dataset" -msgstr "データセットを選択" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "7月" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -#, fuzzy -msgid "Save as dataset" -msgstr "データセットを選択" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "8月" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "新規保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "9月" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "新しいチャートとして保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "10月" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "別名で保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "11月" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "別名で保存:" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "12月" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -#, fuzzy -msgid "Save changes" -msgstr "変更を破棄" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "日" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "月" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "火" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "チャートを保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "水" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "ダッシュボードを保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "木" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -#, fuzzy -msgid "Save dataset" -msgstr "データセットを変更" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "金" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "このセッションのために保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "土" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "1月" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "クエリを保存" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "2月" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "この機能を有効にするためクエリを保存する" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "3月" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "4月" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -#, fuzzy -msgid "Save to new dashboard" -msgstr "保存してダッシュボードに移動" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "5月" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "6月" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "保存したクエリ" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "7月" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -#, fuzzy -msgid "Saved expressions" -msgstr "SQL 式" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "8月" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "保存した指標" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "9月" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "保存したクエリ" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "10月" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "11月" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "12月" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "保存したクエリ パラメーターが無効です。" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +#, fuzzy +msgid "There was an error loading the schemas" +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +#, fuzzy +msgid "No compatible schema found" +msgstr "互換性のないフィルタ (%d)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "データセットを変更すると、ターゲットのデータセットに存在しないカラムやメタデータに依存しているチャートが壊れることがあります" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "データセット" -#: superset-frontend/src/components/ReportModal/index.tsx:211 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy -msgid "Schedule a new email report" -msgstr "チャートのメールレポートのスケジュール" +msgid "Successfully changed dataset!" +msgstr "データセットを変更" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 #, fuzzy -msgid "Schedule email report" -msgstr "チャートのメールレポートのスケジュール" +msgid "Connection" +msgstr "接続のテスト" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +#, fuzzy +msgid "Swap dataset" +msgstr "データセット" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "スケジュール設定" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#, fuzzy +msgid "Proceed" +msgstr "作成した項目" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "警告!" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "スケジュール設定時刻 (UTC)" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "" -#: superset/tasks/exceptions.py:24 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 #, fuzzy -msgid "Scheduled task executor not found" -msgstr "レポートスケジュールの状態が見つかりません" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "スキーマ" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" -msgstr "" +msgid "STRING" +msgstr "警告" -#: superset/views/core.py:1186 -msgid "Schema undefined" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +#, fuzzy +msgid "NUMERIC" +msgstr "指標" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +#, fuzzy +msgid "DATETIME" +msgstr "日付" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "スコープ" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "検索" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -#, fuzzy -msgid "Search all charts" -msgstr "すべてのチャート" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "日時フォーマット" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -#, fuzzy -msgid "Search box" -msgstr "検索" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -#, fuzzy -msgid "Search columns" -msgstr "列を削除する" - -#: superset-frontend/src/components/Table/index.tsx:206 -#, fuzzy -msgid "Search in filters" -msgstr "親フィルタ" - -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -#, fuzzy -msgid "Search tables" -msgstr "ユーザーの役割" - -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "検索…" - -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "秒" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -#, fuzzy -msgid "Secondary" -msgstr "秒" - -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -#, fuzzy -msgid "Secondary Metric" -msgstr "色の指標" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, fuzzy, python-format -msgid "Seconds %s" -msgstr "30秒" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +#, fuzzy +msgid "Certified By" +msgstr "更新者" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "セキュリティ" - -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "セキュリティとアクセス" - -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 #, fuzzy -msgid "See query details" -msgstr "保存したクエリ" +msgid "Default datetime" +msgstr "デフォルト値" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "テーブルスキーマを参照" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 #, fuzzy -msgid "Select" -msgstr "一括選択" +msgid "" +msgstr "列を削除する" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -#, fuzzy -msgid "Select Viz Type" -msgstr "可視化方式を選んでください" - -#: superset/views/database/forms.py:425 -#, fuzzy -msgid "Select a Columnar file to be uploaded to a database." -msgstr "データベースにアップロードする CSV ファイルを選択します。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -#, fuzzy -msgid "Select a column" -msgstr "すべての選択を解除" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -#, fuzzy -msgid "Select a dashboard" -msgstr "Supersetダッシュボード" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "エラーが発生しました" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -#, fuzzy -msgid "Select a database table." -msgstr "データベースを削除" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -#, fuzzy -msgid "Select a database to connect" -msgstr "データベースを削除" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -#, fuzzy -msgid "Select a dimension" -msgstr "Supersetダッシュボード" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "" -#: superset/views/database/forms.py:110 -#, fuzzy -msgid "Select a file to be uploaded to the database" -msgstr "データベースにアップロードする CSV ファイルを選択します。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "可視化方式を選んでください" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "すべての選択を解除" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 -#, fuzzy -msgid "Select all items" -msgstr "すべての選択を解除" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "すべてのチャート" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#, fuzzy -msgid "Select charts" -msgstr "すべてのチャート" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -#, fuzzy -msgid "Select color scheme" -msgstr "線形配色" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Select column" -msgstr "すべての選択を解除" +msgid "Normalize column names" +msgstr "列を削除する" -#: superset-frontend/src/components/Table/index.tsx:208 -#, fuzzy -msgid "Select current page" -msgstr "親フィルタを選択する" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -#, fuzzy -msgid "Select database & schema" -msgstr "テーブルスキーマを参照" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 #, fuzzy -msgid "Select database table" -msgstr "データベースを削除" +msgid "" +msgstr "チャートタイプ" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "データソース" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -#, fuzzy -msgid "Select file" -msgstr "親フィルタを選択する" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -#, fuzzy -msgid "Select filter" -msgstr "親フィルタを選択する" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +#, fuzzy +msgid "Metric Key" +msgstr "指標" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -#, fuzzy -msgid "Select saved metrics" -msgstr "保存した指標" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "警告" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Select scheme" -msgstr "配色" +msgid "" +msgstr "保存した指標" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "開始日と終了日を選択" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -#, fuzzy -msgid "Select the Annotation Layer you would like to use." -msgstr "注釈レイヤーのタイプを選んでください" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "設定" + +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Select the geojson column" -msgstr "すべての選択を解除" +msgid "Error saving dataset" +msgstr "データセットが見つかりません" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "9月" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "削除" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "削除" + +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +#, fuzzy +msgid "More" +msgstr "削除" + +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -#, fuzzy -msgid "Series Limit Sort Descending" -msgstr "レポート送信" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 +#: superset-frontend/src/components/EmptyState/index.tsx:230 #, fuzzy -msgid "Series Order" -msgstr "クエリ" +msgid "Manage your databases" +msgstr "データベースのインポート" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 #, fuzzy -msgid "Series Style" -msgstr "時系列 - 表" +msgid "here" +msgstr "共有" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 #, fuzzy -msgid "Series type" -msgstr "可視化タイプ" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +msgid "Please reach out to the Chart Owner for assistance." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "自動更新間隔を設定" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "フィルタマッピングを設定" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -#, fuzzy -msgid "Set up an email report" -msgstr "アラートとレポート" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "設定" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "データセットが見つかりません" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "共有" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "チャートをメールで共有" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -#, fuzzy -msgid "Share permalink by email" -msgstr "チャートをメールで共有" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "クエリを共有" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Shared query fields" -msgstr "保存したクエリ" - -#: superset/views/database/forms.py:308 -msgid "Sheet Name" +msgid "This was triggered by:" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "もしかして:" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "パラメータエラー" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "タイムアウトエラー" + +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "クリックしてお気に入りに追加/解除" + +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Show Bubbles" -msgstr "テーブルを表示" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "CREATE VIEW文を表示" - -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "CSSテンプレートを表示" +msgid "Hide password." +msgstr "パスワード" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "チャートを表示" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +#, fuzzy +msgid "Show password." +msgstr "ダッシュボードを表示" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "ダッシュボードを表示" - -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "データベースを表示" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "上書き" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 +#: superset-frontend/src/components/ImportModal/index.tsx:291 #, fuzzy -msgid "Show Labels" -msgstr "テーブルを表示" +msgid "Database passwords" +msgstr "DBポート番号" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "パスワード" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "ログを表示" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "指標を表示" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -#, fuzzy -msgid "Show Metric Names" -msgstr "指標を表示" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "上書き" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -#, fuzzy -msgid "Show Range Filter" -msgstr "フィルタを復元" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "インポート" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "保存したクエリを表示" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "インポート %s" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "テーブルを表示" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +#, fuzzy +msgid "Select file" +msgstr "親フィルタを選択する" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "最終更新 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 #, fuzzy -msgid "Show Total" -msgstr "列を削除する" +msgid "Sort" +msgstr "レポート" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -#, fuzzy -msgid "Show Value" -msgstr "テーブルを表示" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "すべての選択を解除" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -#, fuzzy -msgid "Show Values" -msgstr "テーブルを表示" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 +#: superset-frontend/src/components/ListView/ListView.tsx:450 #, fuzzy -msgid "Show all columns" -msgstr "列を削除する" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." -msgstr "" +msgid "clear all filters" +msgstr "すべてのフィルタ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Show chart description" -msgstr "チャートの説明を切り替え" +msgid "Start date" +msgstr "チャートの変更点" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Show columns total" -msgstr "列を削除する" +msgid "End date" +msgstr "日付" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 #, fuzzy -msgid "Show empty columns" -msgstr "列を削除する" +msgid "Filter" +msgstr "フィルタ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "最終更新" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -#, fuzzy -msgid "Show label" -msgstr "テーブルを表示" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "更新者" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "作成者" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "作成日" + +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy -msgid "Show less columns" -msgstr "列を削除する" +msgid "Filter menu" +msgstr "フィルタ名" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:218 +#, fuzzy +msgid "Reset" +msgstr "最近" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:219 +#, fuzzy +msgid "No filters" +msgstr "新しいフィルタ" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 +#: superset-frontend/src/components/Table/index.tsx:220 #, fuzzy -msgid "Show password." -msgstr "ダッシュボードを表示" +msgid "Select all items" +msgstr "すべての選択を解除" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:221 +#, fuzzy +msgid "Search in filters" +msgstr "親フィルタ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:223 +#, fuzzy +msgid "Select current page" +msgstr "親フィルタを選択する" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +#: superset-frontend/src/components/Table/index.tsx:224 #, fuzzy -msgid "Show progress" -msgstr "ダッシュボードのプロパティ" +msgid "Invert current page" +msgstr "チャートの変更点" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:225 +#, fuzzy +msgid "Clear all data" +msgstr "すべてクリア" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:226 +#, fuzzy +msgid "Select all data" +msgstr "すべての選択を解除" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:228 +#, fuzzy +msgid "Expand row" +msgstr "すべて展開" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:229 +#, fuzzy +msgid "Collapse row" +msgstr "すべて折りたたむ" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:230 +#, fuzzy +msgid "Click to sort descending" +msgstr "レポート送信" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:231 +#, fuzzy +msgid "Click to sort ascending" +msgstr "レポート送信" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +#, fuzzy +msgid "List updated" +msgstr "四半期" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "テーブルスキーマを参照" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "テーブルリストを強制更新" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "このチャートを編集する権限がありません" + +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "Showing %s of %s" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "新しいフィルタ" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "このコンポーネント用の十分なスペースがありません。幅を狭くするか、移動先の幅を大きくしてみてください。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "トップレベルのタブをネストされたタブに移動できません" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "このチャートは別のフィルタスコープに移動されました。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "このダッシュボードのお気に入りする際に問題が発生しました。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 #, fuzzy -msgid "Single" -msgstr "個人用" +msgid "This dashboard is now published" +msgstr "このダッシュボードは現在 ${nowPublished}" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 #, fuzzy -msgid "Single Metric" -msgstr "保存した指標" +msgid "This dashboard is now hidden" +msgstr "このダッシュボードの変更は禁止されています" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "このダッシュボードを編集する権限がありません。" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +#, fuzzy +msgid "[ untitled dashboard ]" +msgstr "ダッシュボードを編集" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "このダッシュボードは正常に保存されました。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +#, fuzzy +msgid "Sorry, an unknown error occurred" +msgstr "エラーが発生しました" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "このダッシュボードを編集する権限がありません" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "保存したすべてのチャートを取得できませんでした" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" -msgstr "" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" +msgstr "ここで選択したカラーパレットは、このダッシュボードの個々のグラフに適用される色を上書きします" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "スラッグ" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "未保存の変更があります。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "新しいチャートを作成" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "一部のロールが存在しません" - -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +#, fuzzy +msgid "Edit the dashboard" +msgstr "ダッシュボードを編集" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "保存したグラフの取得中にエラーが発生しました: " +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "このコンポーネントに関連付けられているチャート定義はありません。削除されたのでしょうか?" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "エラーが発生しました" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "このコンテナを削除し、保存してこのメ​​ッセージを削除します。" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 #, fuzzy -msgid "Sorry, an error occurred" -msgstr "エラーが発生しました" +msgid "Refresh interval saved" +msgstr "更新間隔" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -#, fuzzy -msgid "Sorry, an unknown error occurred" -msgstr "エラーが発生しました" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "更新間隔" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -#, fuzzy -msgid "Sorry, an unknown error occurred." -msgstr "エラーが発生しました" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "更新頻度" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "続行してもよろしいですか?" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "このセッションのために保存" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "新しいダッシュボードの名前を選択する必要があります" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "保存したグラフの取得中にエラーが発生しました: " +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "ダッシュボードを保存" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "ダッシュボード [%s] を上書き" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "保存したグラフの取得中にエラーが発生しました: " +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "別名で保存:" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[ダッシュボード名]" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "チャートも複製する" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 #, fuzzy -msgid "Sort" -msgstr "レポート" +msgid "viz type" +msgstr "可視化タイプ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 #, fuzzy -msgid "Sort Bars" -msgstr "チャートのインポート" +msgid "recent" +msgstr "最近" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -#, fuzzy -msgid "Sort Descending" -msgstr "レポート送信" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "新しいチャートを作成" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -#, fuzzy -msgid "Sort Metric" -msgstr "色の指標" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "チャートを検索" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 #, fuzzy -msgid "Sort Series Ascending" -msgstr "レポート送信" +msgid "Filter charts" +msgstr "チャートを検索" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -#, fuzzy -msgid "Sort Series By" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, fuzzy, python-format +msgid "Sort by %s" msgstr "並び替え" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "並び替え" - -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, fuzzy, python-format -msgid "Sort by %s" -msgstr "並び替え" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "追加済み" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 #, fuzzy -msgid "Sort by metric" -msgstr "色の指標" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "列をアルファベット順に並び替え" +msgid "Unknown type" +msgstr "不明なエラー" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -#, fuzzy -msgid "Sort columns by" -msgstr "列をアルファベット順に並び替え" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "可視化タイプ" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "データセット" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -#, fuzzy -msgid "Sort rows by" -msgstr "並び替え" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -#, fuzzy -msgid "Sort type" -msgstr "チャートタイプ" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "CSSテンプレートの読み込み" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -#, fuzzy -msgid "Source / Target" -msgstr "データソース名" - -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 #, fuzzy -msgid "Source category" -msgstr "データソース名" +msgid "There are no charts added to this dashboard" +msgstr "このダッシュボードにはフィルターはありません。" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -#, fuzzy -msgid "Split number" -msgstr "数値" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -#, fuzzy -msgid "Square kilometers" -msgstr "親フィルタ" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -#, fuzzy -msgid "Square meters" -msgstr "パラメータ" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -#, fuzzy -msgid "Square miles" -msgstr "クエリ" - -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +#, fuzzy +msgid "Deactivate" +msgstr "アクティブ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +#, fuzzy +msgid "Save changes" +msgstr "変更を破棄" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +#, fuzzy +msgid "Embed" +msgstr "11月" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "開始時間" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "適用したクロス フィルター (%d)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, fuzzy, python-format +msgid "Applied filters (%d)" +msgstr "適用したフィルタ (%d)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, fuzzy, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "このダッシュボードは現在強制的に更新されています。次の強制更新は %s。" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 #, fuzzy -msgid "Start Review" -msgstr "データプレビュー" +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "ダッシュボードが大きすぎます。保存する前にサイズを小さくしてください。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 #, fuzzy -msgid "Start angle" -msgstr "チャートの変更点" +msgid "Add the name of the dashboard" +msgstr "保存してダッシュボードに移動" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "ダッシュボード" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#, fuzzy +msgid "Undo the action" +msgstr "注釈" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +#, fuzzy +msgid "Discard" +msgstr "ダッシュボード" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "開始時刻 (UTC)" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "ダッシュボードを編集" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "利用可能なCSSテンプレートの取得中にエラーが発生しました" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 #, fuzzy -msgid "Start date" -msgstr "チャートの変更点" +msgid "Refreshing charts" +msgstr "データの取得中にエラーが発生しました" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Supersetダッシュボード" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "このダッシュボードを確認してください: " -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "ダッシュボードを更新" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy -msgid "Started" -msgstr "状態" +msgid "Exit fullscreen" +msgstr "フルスクリーン切り替え" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "状態" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +#, fuzzy +msgid "Enter fullscreen" +msgstr "フルスクリーン切り替え" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "CSSを編集" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "状態" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#, fuzzy +msgid "Download" +msgstr "画像としてダウンロード" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "YAMLで出力" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +#, fuzzy +msgid "Download as Image" +msgstr "画像としてダウンロード" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "共有" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 #, fuzzy -msgid "Step type" -msgstr "チャートタイプ" +msgid "Copy permalink to clipboard" +msgstr "クエリのlinkをクリップボードにコピー" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 #, fuzzy -msgid "Stepped Line" -msgstr "時系列 - 表" +msgid "Share permalink by email" +msgstr "チャートをメールで共有" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" +msgstr "ダッシュボードを保存" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "中止" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +#, fuzzy +msgid "Manage email report" +msgstr "アラートとレポート" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "クエリを中止" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "フィルタマッピングを設定" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "自動更新間隔を設定" + +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 #, fuzzy -msgid "Stop running (Ctrl + e)" -msgstr "実行を停止 (Ctrl + x)" +msgid "Confirm overwrite" +msgstr "上書き" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "実行を停止 (Ctrl + x)" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " +msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 #, fuzzy -msgid "Stream" -msgstr "ヒストグラム" +msgid "Are you sure you intend to overwrite the following values?" +msgstr "選択したクエリを削除しますか?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -#, fuzzy -msgid "Streets" -msgstr "最近" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, fuzzy, python-format +msgid "Last Updated %s by %s" +msgstr "最終更新 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "適用" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: 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:66 +msgid "Error" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "有効な配色が必要です" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -#, fuzzy -msgid "Stroke Color" -msgstr "固定の色" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy -msgid "Stroke Width" -msgstr "線の幅" +msgid "Dashboard properties updated" +msgstr "ダッシュボードのプロパティ" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -#, fuzzy -msgid "Stroked" -msgstr "作成した項目" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "ダッシュボードが保存されました" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" -msgstr "" +#: 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 "アクセス" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "" +#: 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." +msgstr "所有者は、ダッシュボードを変更できるユーザーのリストです。名前またはユーザー名で検索できます。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "色" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: 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 " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -#, fuzzy -msgid "Subheader" -msgstr "見出し" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "ダッシュボードのプロパティ" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" -msgstr "" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "基本情報" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "URLスラッグ" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "成功" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "ダッシュボード用の読みやすいURL" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy -msgid "Successfully changed dataset!" -msgstr "データセットを変更" +msgid "Certification" +msgstr "無効な証明書" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +#, fuzzy +msgid "Person or group that has certified this dashboard." +msgstr "このダッシュボードにアクセスできません。" + +#: 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 "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" -msgstr "" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." +msgstr "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。このダッシュボードを公開するには、ここをクリックしてください。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -#, fuzzy -msgid "Sum values" -msgstr "デフォルト値" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。お気に入りに追加して表示するか、URLを直接使用してアクセスします。" -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "このダッシュボードは公開されています。クリックして下書きにします。" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "下書き" + +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "注釈レイヤーはまだ読み込み中です。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -msgid "Sunburst Chart v2" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "1つ以上の注釈レイヤーの読み込みに失敗しました。" + +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "日曜日" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +#, fuzzy +msgid "Data refreshed" +msgstr "更新しない" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Supersetダッシュボード" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "強制更新" -#: superset/errors.py:111 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 #, fuzzy -msgid "Superset encountered an error while running a command." -msgstr "Issue 1010 - コマンドの実行中にSuperset内でエラーが発生しました。" +msgid "Hide chart description" +msgstr "チャートの説明を切り替え" -#: superset/errors.py:112 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 #, fuzzy -msgid "Superset encountered an unexpected error." -msgstr "Issue 1011 - Supersetで予期しないエラーが発生しました。" +msgid "Show chart description" +msgstr "チャートの説明を切り替え" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Supported databases" -msgstr "データベースのインポート" +msgid "Cross-filtering scoping" +msgstr "新しいフィルタ" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "クエリを見る" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 #, fuzzy -msgid "Swap dataset" -msgstr "データセット" +msgid "View as table" +msgstr "サンプルを表示" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "最終更新 %s" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "チャートをメールで共有" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 #, fuzzy -msgid "Swap rows and columns" -msgstr "列を削除する" +msgid "Check out this chart: " +msgstr "このダッシュボードを確認してください: " -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +#, fuzzy +msgid "Export to .CSV" +msgstr "YAMLで出力" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +#, fuzzy +msgid "Export to Excel" +msgstr "YAMLで出力" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "YAMLで出力" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "画像としてダウンロード" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "検索…" -#: superset/db_engine_specs/ocient.py:282 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "フィルタは選択されていません。" + +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "1つのフィルタを編集する:" + +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 #, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" -msgstr "" +msgid "Batch editing %d filters:" +msgstr " %d フィルタのバッチ編集:" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "フィルタスコープを構成する" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "このダッシュボードにはフィルターはありません。" + +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "すべて展開" + +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "すべて折りたたむ" -#: superset-frontend/src/explore/constants.ts:91 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 #, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "期間" +msgid "An error occurred while opening Explore" +msgstr "ログのプルーニング中にエラーが発生しました " -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "木" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#, fuzzy +msgid "Empty column" +msgstr "列を削除する" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "火" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "このマークダウンコンポーネントにエラーがあります。" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "タブ名" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "このマークダウンコンポーネントにエラーがあります。最近の変更を元に戻してください。" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "テーブル" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +#, fuzzy +msgid "You can" +msgstr "国別地図" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "テーブル %(table)s はデータベース %(db)s にありません" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +#, fuzzy +msgid "create a new chart" +msgstr "新しいチャートを作成" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "テーブル名" - -#: superset/viz.py:722 -msgid "Table View" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +#, fuzzy +msgid "edit mode" +msgstr "クエリ名" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "ダッシュボードタブを削除しますか?" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -#, fuzzy -msgid "Table columns" -msgstr "タイトルまたはスラッグ" - -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 #, fuzzy -msgid "Table loading" -msgstr "レポート送信" +msgid "undo" +msgstr "元に戻しますか?" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "キャンセル" -#: superset/db_engine_specs/ocient.py:287 -#, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "区切り線" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "見出し" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "テーブル" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#, fuzzy +msgid "Text" +msgstr "次" #: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 msgid "Tabs" msgstr "タブ" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset/tags/commands/exceptions.py:34 -#, fuzzy -msgid "Tag could not be created." -msgstr "チャートを作成できませんでした。" - -#: superset/tags/commands/exceptions.py:38 -#, fuzzy -msgid "Tag could not be deleted." -msgstr "チャートを削除できませんでした。" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "プレビュー" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset/tags/commands/exceptions.py:30 -#, fuzzy -msgid "Tag parameters are invalid." -msgstr "データベース パラメータが無効です。" - -#: superset/tags/commands/exceptions.py:42 -#, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "データベースを削除できませんでした。" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 #, fuzzy -msgid "Tags" -msgstr "状態" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" -msgstr "" +msgid "Unknown value" +msgstr "不明なエラー" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 #, fuzzy -msgid "Target" -msgstr "開始時間" +msgid "Add/Edit Filters" +msgstr "フィルタを追加" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 #, fuzzy -msgid "Target Color" -msgstr "固定の色" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" -msgstr "" +msgid "No filters are currently added to this dashboard." +msgstr "このダッシュボードにはフィルターはありません。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "テンプレート名" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "テンプレートパラメータ" - -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +#, fuzzy +msgid "Apply filters" +msgstr "すべてのフィルタ" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "接続のテスト" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "すべてクリア" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "接続のテスト" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#, fuzzy +msgid "Locate the chart" +msgstr "新しいチャートを作成" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy -msgid "Text" -msgstr "次" +msgid "Cross-filters" +msgstr "新しいフィルタ" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "すべてのチャート" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" -msgstr "個々のダッシュボードのCSSは、ここもしくは変更がすぐに表示されるダッシュボードビューで変更できます" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "このダッシュボードにはフィルターはありません。" -#: superset/errors.py:124 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "すべてのチャート" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +#, fuzzy +msgid "Vertical (Left)" +msgstr "ABC順" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 #, fuzzy -msgid "The annotation has been saved" -msgstr "ダッシュボードが保存されました" +msgid "More filters" +msgstr "新しいフィルタ" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 #, fuzzy -msgid "The annotation has been updated" -msgstr "ダッシュボードが保存されました" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." -msgstr "" +msgid "No applied filters" +msgstr "適用したフィルタ (%d)" -#: superset/common/query_context_processor.py:585 -#, fuzzy -msgid "The chart datasource does not exist" -msgstr "チャートが存在しません" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "適用したフィルタ (%d)" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "チャートが存在しません" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "フィルタを読み込めません" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 #, fuzzy -msgid "The column header label" -msgstr "列を削除する" +msgid "Filter type" +msgstr "フィルタタイプ" -#: superset/errors.py:105 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 #, fuzzy -msgid "The column was deleted or renamed in the database." -msgstr "Issue 1004 - データベースでカラムが削除または名前変更されました。" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" -msgstr "" - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "ダッシュボードが保存されました" +msgid "Title is required" +msgstr "タイプが必要です" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(削除)" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "元に戻しますか?" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset/sqllab/commands/estimate.py:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 #, fuzzy -msgid "The database could not be found" -msgstr "データベースが見つかりません。" +msgid "Add and edit filters" +msgstr "新しいフィルタ" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +#, fuzzy +msgid "Column select" +msgstr "一括選択" -#: superset/errors.py:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 #, fuzzy -msgid "The database is under an unusual load." -msgstr "Issue 1001 - データベースに異常な負荷がかかっています。" +msgid "Select a column" +msgstr "すべての選択を解除" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +#, fuzzy +msgid "No compatible columns found" +msgstr "互換性のないフィルタ (%d)" -#: superset/errors.py:100 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 #, fuzzy -msgid "The database returned an unexpected error." -msgstr "Issue 1002 - データベースが予期しないエラーを返しました。" +msgid "No compatible datasets found" +msgstr "互換性のないフィルタ (%d)" -#: superset/errors.py:144 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 #, fuzzy -msgid "The database was deleted." -msgstr "データベースを削除できませんでした。" +msgid "Select a dataset" +msgstr "すべての選択を解除" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 #, fuzzy -msgid "The database was not found." -msgstr "データベースが見つかりません。" +msgid "Value is required" +msgstr "名前が必要です" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#, fuzzy +msgid "Limit type" +msgstr "可視化タイプ" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "すべてのフィルタ" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "フィルタを追加" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +#, fuzzy +msgid "Values dependent on" +msgstr "レポート送信" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "スコープ" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "データ ソースを読み込めませんでした" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +#, fuzzy +msgid "Filter Configuration" +msgstr "フィルタ構成" -#: superset/errors.py:98 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 #, fuzzy -msgid "The datasource is too large to query." -msgstr "Issue 1000 - データ ソースが大きすぎてクエリを実行できませんでした。" +msgid "Filter Settings" +msgstr "新しいフィルタ セット" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +#, fuzzy +msgid "Select filter" +msgstr "親フィルタを選択する" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +#, fuzzy +msgid "Range filter" +msgstr "新しいフィルタ" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#, fuzzy +msgid "Numerical range" +msgstr "期間" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +#, fuzzy +msgid "Time filter" +msgstr "新しいフィルタ" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "期間" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +#, fuzzy +msgid "Time column" +msgstr "列を削除する" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +#, fuzzy +msgid "Time grain" +msgstr "期間" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" msgstr "" -#: superset/errors.py:110 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 #, fuzzy -msgid "The host might be down, and can't be reached on the provided port." -msgstr "Issue 1009 - 指定されたポートに到達できません。ホストがダウンしている可能性があります。" +msgid "Pre-filter is required" +msgstr "タイプが必要です" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset/errors.py:108 -#, fuzzy -msgid "The hostname provided can't be resolved." -msgstr "Issue 1007 - 指定されたホスト名を解決できません。" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "アクティブなチャートのID" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "フィルタ名" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "名前が必要です" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "フィルタタイプ" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "データセットが必要です" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +#, fuzzy +msgid "Pre-filter" +msgstr "新しいフィルタ" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +#, fuzzy +msgid "No filter" +msgstr "新しいフィルタ" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +#, fuzzy +msgid "Sort type" +msgstr "チャートタイプ" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +#, fuzzy +msgid "Sort Metric" +msgstr "色の指標" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +#, fuzzy +msgid "Exact" +msgstr "次" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "キャッシュを期限切れにするまでの秒数" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "デフォルト値" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +#, fuzzy +msgid "Default value is required" +msgstr "データセットが必要です" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset/errors.py:114 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "このフィルタを削除しました。" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "フィルタを復元" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 #, fuzzy -msgid "The password provided when connecting to a database is not valid." -msgstr "Issue 1013 - データベース接続時に指定されたパスワードが無効です。" +msgid "Column is required" +msgstr "名前が必要です" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"保存したクエリと一緒にインポートするには、以下のデータベースのパスワードが必要です。データベース構成の ”Secure Extra” と " -"”Certificate” セクションはエクスポートファイルに存在せず、必要に応じてインポート後に手動で追加する必要がある点に注意してください。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "すべてのパネルに適用" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "特定のパネルに適用" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "選択したパネルのみがこのフィルターの影響を受けます" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "この列のすべてのパネルは、このフィルターの影響を受けます" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +#, fuzzy +msgid "All panels" +msgstr "すべてのパネルに適用" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset/errors.py:109 -#, fuzzy -msgid "The port is closed." -msgstr "Issue 1008 - ポートが閉じています。" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "編集を続ける" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "はい、キャンセルします" -#: superset/errors.py:142 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 #, fuzzy -msgid "The port number is invalid." -msgstr "データベース パラメータが無効です。" +msgid "There are unsaved changes." +msgstr "未保存の変更があります。" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "キャンセルしてもよろしいですか?" + +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#, fuzzy +msgid "White" +msgstr "タイトル" + +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "すべてのフィルタ" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, python-format +msgid "Click to edit %s." msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." msgstr "" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "新しいタブでクエリを実行" + +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "見出し" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -#: superset/sqllab/commands/estimate.py:86 -#, python-format +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/constants.ts:65 +#, fuzzy +msgid "Greater than (>)" +msgstr "作成日 " + +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" +msgstr "" + +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "最小値" + +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "注釈" + +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -#, fuzzy -msgid "The report has been created" -msgstr "ダッシュボードが保存されました" - -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset/errors.py:117 +#: superset-frontend/src/explore/constants.ts:87 #, fuzzy -msgid "The schema was deleted or renamed in the database." -msgstr "Issue 1005 - データベースでスキーマが削除または名前変更されました。" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "" +msgid "Is false" +msgstr "テーブルを編集" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" +#: superset-frontend/src/explore/constants.ts:89 +#, fuzzy +msgid "TEMPORAL_RANGE" +msgstr "期間" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "固定の色" -#: superset/errors.py:106 -#, fuzzy -msgid "The table was deleted or renamed in the database." -msgstr "Issue 1005 - データベースでテーブルが削除または名前変更されました。" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "右軸の指標" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "可視化のための時間カラム。テーブルのDATETIME列を返す任意の式を定義することができます。この列または式に対して以下のフィルターが適用されることに注意してください" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "右軸の指標を選択" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "線形配色" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "色の指標" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" msgstr "" #: superset-frontend/src/explore/controls.jsx:271 @@ -15683,7 +15403,6 @@ msgid "" "use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 #: superset-frontend/src/explore/controls.jsx:310 msgid "" "The time granularity for the visualization. This applies a date " @@ -15692,7 +15411,6 @@ msgid "" "in the Superset source code." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 #: superset-frontend/src/explore/controls.jsx:327 msgid "" "The time range for the visualization. All relative times, e.g. \"Last " @@ -15709,2816 +15427,2945 @@ msgstr "" "で表されます。タイムスタンプは、エンジンのローカルタイムゾーンを使用してデータベースによって評価されます。開始時刻や終了時刻を指定する場合は " "ISO 8601 形式に従ってタイムゾーンを明示的に設定できます。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "" + +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/controls.jsx:383 +msgid "" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "表示する可視化のタイプ" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "[X] 軸に割り当てられた指標" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "[Y] 軸に割り当てられた指標" + +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" +#: superset-frontend/src/explore/controls.jsx:434 +msgid "" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "配色" + +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +#, fuzzy +msgid "An error occurred while starring this chart" +msgstr "SQL のロード中にエラーが発生しました" + +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "チャート [{}] が保存されました" + +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, fuzzy, python-format +msgid "Chart [%s] has been overwritten" +msgstr "チャート [{}] が上書きされました" + +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, fuzzy, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました" + +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, fuzzy, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "チャート [{}] はダッシュボード [{}] に追加されました" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset/errors.py:113 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 #, fuzzy -msgid "The username provided when connecting to a database is not valid." -msgstr "Issue 1012 - データベース接続時に指定されたユーザー名が無効です。" +msgid "NOT GROUPED BY" +msgstr "並び替え" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 +msgid "" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 +msgid "" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 +msgid "" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 #, fuzzy -msgid "The width of the lines" -msgstr "アクティブなチャートのID" +msgid "Continue" +msgstr "月" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "関連するアラートまたはレポートがあります" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" +msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 +msgid "" +"We were unable to carry over any controls when switching to this new " +"dataset." +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "カスタマイズ" + +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 #, fuzzy -msgid "There are no charts added to this dashboard" -msgstr "このダッシュボードにはフィルターはありません。" +msgid "Chart height" +msgstr "チャートタイプ" + +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#, fuzzy +msgid "Chart width" +msgstr "チャートタイプ" + +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" + +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "上書き保存" + +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "別名で保存" + +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "チャート名" + +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "データベース名" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "新しいダッシュボードに追加" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "このダッシュボードにはフィルターはありません。" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +#, fuzzy +msgid "Select a dashboard" +msgstr "Supersetダッシュボード" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 #, fuzzy -msgid "There are unsaved changes." -msgstr "未保存の変更があります。" +msgid "Select" +msgstr "一括選択" -#: superset/errors.py:101 +#: superset-frontend/src/explore/components/SaveModal.tsx:396 #, fuzzy -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." -msgstr "Issue 1003 - SQL クエリに構文エラーがあります。スペルミスやタイプミスがないか確認して下さい。" +msgid " a dashboard OR " +msgstr "ダッシュボードを保存" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" -msgstr "このコンポーネントに関連付けられているチャート定義はありません。削除されたのでしょうか?" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "作成" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." -msgstr "このコンポーネント用の十分なスペースがありません。幅を狭くするか、移動先の幅を大きくしてみてください。" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#, fuzzy +msgid " a new one" +msgstr "変更日" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#: superset-frontend/src/explore/components/SaveModal.tsx:426 #, fuzzy -msgid "There was an error fetching dataset" -msgstr "保存したグラフの取得中にエラーが発生しました: " +msgid "A new chart and dashboard will be created." +msgstr "ダッシュボードを作成できませんでした。" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "保存したグラフの取得中にエラーが発生しました: " +msgid "A new chart will be created." +msgstr "チャートを作成できませんでした。" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 +#: superset-frontend/src/explore/components/SaveModal.tsx:432 #, fuzzy -msgid "There was an error fetching tables" -msgstr "保存したグラフの取得中にエラーが発生しました: " +msgid "A new dashboard will be created." +msgstr "ダッシュボードを作成できませんでした。" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, fuzzy, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "保存してダッシュボードに移動" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "最近のアクティビティの取得中にエラーが発生しました:" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "チャートを保存" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "保存したグラフの取得中にエラーが発生しました: " +msgid "Formatted date" +msgstr "データベースのインポート" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 #, fuzzy -msgid "There was an error loading the dataset metadata" -msgstr "保存したグラフの取得中にエラーが発生しました: " +msgid "Column Formatting" +msgstr "追加情報" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 #, fuzzy -msgid "There was an error loading the schemas" -msgstr "保存したグラフの取得中にエラーが発生しました: " +msgid "Collapse data panel" +msgstr "すべて折りたたむ" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, fuzzy, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "サンプルを表示" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "%s の削除中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +#, fuzzy +msgid "No results" +msgstr "結果を見る" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "%s の削除中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "作成日 " + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "選択した注釈の削除で問題が発生しました: %s" +msgid "Showing %s of %s" +msgstr "Showing %s of %s" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "選択したダッシュボードの削除で問題が発生しました。: " +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "選択したデータセットの削除に問題が発生しました: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "選択したレイヤーの削除で問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "選択したクエリの削除に問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "新しいダッシュボードに追加" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "選択したテンプレートの削除で問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "新しいダッシュボードに追加" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "削除中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 #, fuzzy -msgid "There was an issue duplicating the dataset." -msgstr "選択したデータセットの削除に問題が発生しました: %s" +msgid "Add the name of the chart" +msgstr "アクティブなチャートのID" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, fuzzy, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "選択したデータセットの削除に問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "チャートタイプ" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "このダッシュボードのお気に入りする際に問題が発生しました。" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 +msgid "" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" +msgstr "" -#: superset-frontend/src/reports/actions/reports.js:68 +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "" + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "" + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 #, fuzzy -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" +msgid "Chart Source" +msgstr "データソース" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "データソースタブを開く" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "チャートの取得中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#, fuzzy +msgid "Original" +msgstr "ログイン" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, fuzzy, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "ダッシュボードの取得中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#, fuzzy +msgid "Pivoted" +msgstr "編集した項目" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "最近のアクティビティの取得中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "このチャートを編集する権限がありません" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, fuzzy, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "保存したクエリの取得中に問題が発生しました: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +#, fuzzy +msgid "Chart properties updated" +msgstr "チャートのプロパティを編集" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "選択したクエリのプレビュー中に問題が発生しました %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#, fuzzy +msgid "Edit Chart Properties" +msgstr "チャートのプロパティを編集" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "選択したクエリのプレビュー中に問題が発生しました。 %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" msgstr "" -#: superset/views/chart/mixin.py:63 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#, fuzzy msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: 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 " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -"この JSON オブジェクトは、ダッシュボード ビューの [保存] または [上書き] " -"ボタンをクリックすると動的に生成されます。これは、参照用と特定のパラメータを変更する可能性のあるパワーユーザーのために公開されています。" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "このアクションにより、レイヤーが完全に削除されます。" - -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "この操作を実行すると、保存したクエリは完全に削除されます。" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#, fuzzy +msgid "Create chart" +msgstr "チャートを保存" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "このアクションにより、テンプレートが完全に削除されます。" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#, fuzzy +msgid "Update chart" +msgstr "チャートを保存" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "このチャートは別のフィルタスコープに移動されました。" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "エラーが発生しました" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +#, fuzzy +msgid "Save as Dataset" +msgstr "データセットを選択" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, fuzzy, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." -msgstr "このダッシュボードは現在強制的に更新されています。次の強制更新は %s。" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "SQL Labで開く" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。お気に入りに追加して表示するか、URLを直接使用してアクセスします。" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." -msgstr "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。このダッシュボードを公開するには、ここをクリックしてください。" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 #, fuzzy -msgid "This dashboard is now hidden" -msgstr "このダッシュボードの変更は禁止されています" +msgid "No annotation layers" +msgstr "注釈レイヤー" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 #, fuzzy -msgid "This dashboard is now published" -msgstr "このダッシュボードは現在 ${nowPublished}" +msgid "Add an annotation layer" +msgstr "注釈レイヤーを追加" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "このダッシュボードは公開されています。クリックして下書きにします。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "注釈レイヤー" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#, fuzzy +msgid "Select the Annotation Layer you would like to use." +msgstr "注釈レイヤーのタイプを選んでください" -#: superset/views/core.py:1353 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." -msgstr "このダッシュボードは最近変更されました。最新の情報を入手するにはダッシュボードをリロードしてください。" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "このダッシュボードは正常に保存されました。" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"This database table does not contain any data. Please select a different " -"table." -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +#, fuzzy +msgid "Annotation layer value" +msgstr "注釈レイヤー名" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +#, fuzzy +msgid "Bad formula." +msgstr "日時フォーマット" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "注釈スライスの構成" -#: superset/connectors/sqla/views.py:343 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "注釈レイヤーのタイプ" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +#, fuzzy +msgid "Annotation layer interval end" +msgstr "注釈レイヤー名" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "このマークダウンコンポーネントにエラーがあります。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "注釈レイヤーのタイプ" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "このマークダウンコンポーネントにエラーがあります。最近の変更を元に戻してください。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +#, fuzzy +msgid "Title Column" +msgstr "タイトルまたはスラッグ" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +#, fuzzy +msgid "Annotation layer description columns" +msgstr "注釈レイヤー名" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +#, fuzzy +msgid "Description Columns" +msgstr "列を削除する" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +#, fuzzy +msgid "Override time range" +msgstr "期間を編集" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "期間" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +#, fuzzy +msgid "Annotation layer stroke" +msgstr "注釈レイヤーのタイプ" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 #, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "この可視化方式はサポートされていません。" +msgid "Dashed" +msgstr "ダッシュボード" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "この可視化方式はサポートされていません。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 #, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" +msgid "Dotted" +msgstr "編集した項目" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +#, fuzzy +msgid "Annotation layer opacity" +msgstr "注釈レイヤーのタイプ" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "木曜日" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +#, fuzzy +msgid "Hide Line" +msgstr "レイヤーを隠す" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "時間" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -#, fuzzy -msgid "Time Column" -msgstr "列を削除する" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "レイヤー構成" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -#, fuzzy -msgid "Time Format" -msgstr "日時フォーマット" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "レイヤーを隠す" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 #, fuzzy -msgid "Time Grain" -msgstr "期間" +msgid "Show label" +msgstr "テーブルを表示" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -#, fuzzy -msgid "Time Lag" -msgstr "期間" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "注釈レイヤーのタイプ" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "注釈レイヤーのタイプを選んでください" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 #, fuzzy -msgid "Time Range" -msgstr "期間" +msgid "Annotation source type" +msgstr "注釈レイヤーのタイプ" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 #, fuzzy -msgid "Time Ratio" -msgstr "期間" +msgid "Annotation source" +msgstr "注釈" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "削除" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 #, fuzzy -msgid "Time Series" +msgid "Time series" msgstr "時系列 - 表" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "時系列 - 棒グラフ" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "注釈レイヤーを編集" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "時系列 - 二重軸折れ線グラフ" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "注釈レイヤーを追加" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "時系列 - 折れ線グラフ" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "空のコレクション" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "時系列 - 複数の折れ線グラフ" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "アイテムを追加" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "アイテムを削除" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +msgid "" +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "時系列 - 変化率" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "ダッシュボード" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "時系列 - 期間ピボット" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#, fuzzy +msgid "Dashboard scheme" +msgstr "[ダッシュボード名]" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "時系列 - 積み上げ" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +#, fuzzy +msgid "Select color scheme" +msgstr "線形配色" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#, fuzzy +msgid "Select scheme" +msgstr "配色" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 #, fuzzy -msgid "Time Shift" -msgstr "見積コスト" +msgid "Show less columns" +msgstr "列を削除する" -#: superset/viz.py:878 -msgid "Time Table View" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +#, fuzzy +msgid "Show all columns" +msgstr "列を削除する" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 #, fuzzy -msgid "Time column" -msgstr "列を削除する" +msgid "Min Width" +msgstr "線の幅" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -#, fuzzy -msgid "Time filter" -msgstr "新しいフィルタ" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 #, fuzzy -msgid "Time format" -msgstr "日時フォーマット" +msgid "Display" +msgstr "表示名" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 #, fuzzy -msgid "Time grain" -msgstr "期間" +msgid "Number formatting" +msgstr "右軸の指標を選択" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "秒単位の時間" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "アラート" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 #, fuzzy -msgid "Time lag" -msgstr "期間" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "期間" +msgid "error" +msgstr "作成者" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 #, fuzzy -msgid "Time ratio" -msgstr "期間" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "" +msgid "success dark" +msgstr "成功" -#: superset-frontend/src/modules/AnnotationTypes.js:46 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 #, fuzzy -msgid "Time series" -msgstr "時系列 - 表" +msgid "alert dark" +msgstr "アラート" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "必須" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy -msgid "Time-series Area Chart" -msgstr "時系列 - 棒グラフ" +msgid "Operator" +msgstr "作成者" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +#, fuzzy +msgid "Left value" +msgstr "デフォルト値" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy -msgid "Time-series Bar Chart" -msgstr "時系列 - 棒グラフ" +msgid "Select column" +msgstr "すべての選択を解除" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 #, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "時系列 - 棒グラフ" +msgid "Color: " +msgstr "色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Time-series Chart" -msgstr "時系列 - 表" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 #, fuzzy -msgid "Time-series Line Chart" -msgstr "時系列 - 折れ線グラフ" +msgid "Isoline" +msgstr "オフライン" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -#, fuzzy -msgid "Time-series Percent Change" -msgstr "時系列 - 変化率" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " +msgstr "" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 #, fuzzy -msgid "Time-series Period Pivot" -msgstr "時系列 - 期間ピボット" +msgid "The width of the Isoline in pixels" +msgstr "アクティブなチャートのID" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 #, fuzzy -msgid "Time-series Scatter Plot" -msgstr "時系列 - 表" +msgid "The color of the isoline" +msgstr "アクティブなチャートのID" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -#, fuzzy -msgid "Time-series Smooth Line" -msgstr "時系列 - 表" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -#, fuzzy -msgid "Time-series Stepped Line" -msgstr "時系列 - 表" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "時系列 - 表" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "タイムアウトエラー" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -#, fuzzy -msgid "Timestamp format" -msgstr "無効な日付/タイムスタンプのフォーマット" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -#, fuzzy -msgid "Tiny" -msgstr "アクション" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +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: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 -msgid "Title" -msgstr "タイトル" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "データセットを編集" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +msgstr "" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "SQL Labで表示" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "クエリプレビュー" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Title Column" -msgstr "タイトルまたはスラッグ" +msgid "Save as dataset" +msgstr "データセットを選択" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 #, fuzzy -msgid "Title is required" -msgstr "タイプが必要です" +msgid "Missing URL parameters" +msgstr "追加パラメータ" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "タイトルまたはスラッグ" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "ダッシュボードの読み取り可能なURLを取得するには" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "範囲のタイプ" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "実際の期間" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "適用" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -#, fuzzy -msgid "Tooltip sort by metric" -msgstr "色の指標" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "期間を編集" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -#, fuzzy -msgid "Tooltip time format" -msgstr "日時フォーマット" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -#, fuzzy -msgid "Top" -msgstr "中止" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -#, fuzzy -msgid "Top left" -msgstr "アラート" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -#, fuzzy -msgid "Top right" -msgstr "高さ" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 #, fuzzy -msgid "Total value" -msgstr "デフォルト値" +msgid "Relative period" +msgstr "猶予期間" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "ジョブ履歴" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "例" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -#, fuzzy -msgid "Tree Chart" -msgstr "新しいチャート" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -#, fuzzy -msgid "Tree orientation" -msgstr "注釈を削除する" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "ツリーマップ" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "前" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 #, fuzzy -msgid "Trend" -msgstr "変更" +msgid "Custom" +msgstr "カスタマイズ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +#, fuzzy +msgid "last day" +msgstr "土曜日" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +#, fuzzy +msgid "last week" +msgstr "先週" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +#, fuzzy +msgid "last month" +msgstr "月" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +#, fuzzy +msgid "last quarter" +msgstr "四半期" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 #, fuzzy -msgid "Truncate Metric" -msgstr "保存した指標" +msgid "last year" +msgstr "年" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, fuzzy, python-format +msgid "Seconds %s" +msgstr "30秒" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, fuzzy, python-format +msgid "Minutes %s" +msgstr "分" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, fuzzy, python-format +msgid "Hours %s" +msgstr "時間" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, fuzzy, python-format +msgid "Days %s" +msgstr "日" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "火曜日" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, fuzzy, python-format +msgid "Weeks %s" +msgstr "週" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#, fuzzy -msgid "Tukey" -msgstr "クエリ" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, fuzzy, python-format +msgid "Months %s" +msgstr "月" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "タイプ" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, fuzzy, python-format +msgid "Quarters %s" +msgstr "四半期" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 -#, python-format -msgid "Type \"%s\" to confirm" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, fuzzy, python-format +msgid "Years %s" +msgstr "年" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "タイプが必要です" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +#, fuzzy +msgid "Now" +msgstr "行" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +#, fuzzy +msgid "Saved expressions" +msgstr "SQL 式" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Type or Select [%s]" -msgstr "入力または選択 [%s]" +msgid "%s column(s)" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 #, fuzzy -msgid "UI Configuration" -msgstr "フィルタ構成" +msgid "No temporal columns found" +msgstr "互換性のないフィルタ (%d)" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#, fuzzy +msgid "No saved expressions found" +msgstr "SQL 式" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -#, fuzzy -msgid "URL Parameters" -msgstr "URLパラメータ" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" +msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "URLパラメータ" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#, fuzzy +msgid " to add calculated columns" +msgstr "列を削除する" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "URLスラッグ" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "“%(database)s” に接続できません。" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#, fuzzy +msgid "My column" +msgstr "列を削除する" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "列または指標を削除する" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#, fuzzy +msgid "Drop columns/metrics here or click" +msgstr "列または指標を削除する" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset/views/database/views.py:278 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +msgid "%s operator(s)" msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -#, fuzzy -msgid "Undo the action" -msgstr "注釈" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "元に戻しますか?" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy -msgid "Unexpected error: " -msgstr "レポートスケジュールの予期せぬエラー" - -#: superset/views/api.py:108 -#, fuzzy, python-format -msgid "Unexpected time range: %s" -msgstr "レポートスケジュールの予期せぬエラー" - -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "不明" +msgid "metric" +msgstr "指標" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" msgstr "" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "不明なエラー" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -#, fuzzy -msgid "Unknown type" -msgstr "不明なエラー" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 #, fuzzy -msgid "Unknown value" -msgstr "不明なエラー" +msgid "Select saved metrics" +msgstr "保存した指標" -#: superset/jinja_context.py:353 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "関数 %(func)s の安全でない戻り値の型: %(value_type)s" +msgid "%s saved metric(s)" +msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "キー %(key)s の安全でないテンプレート値: %(value_type)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "保存した指標" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#, fuzzy +msgid "No saved metrics found" +msgstr "保存した指標" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "メソッド %(name)s のサポートされていない戻り値" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "保存した指標" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -#, fuzzy -msgid "Untitled Dataset" -msgstr "データセットを編集" - -#: superset/views/sql_lab/views.py:148 -#, fuzzy -msgid "Untitled Query" -msgstr "実行したクエリ" - -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "更新" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -#, fuzzy -msgid "Update chart" -msgstr "チャートを保存" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, fuzzy, python-format +msgid "Error while fetching data: %s" +msgstr "データの取得中にエラーが発生しました" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "アップロード" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 #, fuzzy -msgid "Upload CSV" -msgstr "画像としてダウンロード" +msgid "Actual value" +msgstr "デフォルト値" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -#, fuzzy -msgid "Upload CSV to database" -msgstr "データベースのインポート" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -#, fuzzy -msgid "Upload Credentials" -msgstr "Excelをアップロード" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "" -#: superset/databases/filters.py:66 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 #, fuzzy -msgid "Upload Enabled" -msgstr "Excelをアップロード" +msgid "The column header label" +msgstr "列を削除する" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -#, fuzzy -msgid "Upload Excel file" -msgstr "Excelをアップロード" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "幅" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 #, fuzzy -msgid "Upload columnar file to database" -msgstr "データベースにアップロードする CSV ファイルを選択します。" +msgid "Time lag" +msgstr "期間" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 #, fuzzy -msgid "Upload file to database" -msgstr "データベースを編集" +msgid "Time Lag" +msgstr "期間" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 #, fuzzy -msgid "Usage" -msgstr "管理" +msgid "Time ratio" +msgstr "期間" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "新しいタブでクエリを実行" - -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 #, fuzzy -msgid "Use Area Proportions" -msgstr "ダッシュボードのプロパティ" +msgid "Time Ratio" +msgstr "期間" -#: superset/views/database/forms.py:472 -#, fuzzy -msgid "Use Columns" -msgstr "列を削除する" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +#, fuzzy +msgid "Optional d3 number format string" +msgstr "追加情報" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +#, fuzzy +msgid "Number format string" +msgstr "右軸の指標を選択" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +#, fuzzy +msgid "Optional d3 date format string" +msgstr "追加情報" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +#, fuzzy +msgid "Date format string" +msgstr "日時フォーマット" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +#, fuzzy +msgid "Column Configuration" +msgstr "設定を確認" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#, fuzzy +msgid "Select Viz Type" +msgstr "可視化方式を選んでください" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 #, fuzzy -msgid "Use the edit button to change this field" -msgstr "このフィールドを変更するには、編集ボタンを使用します" +msgid "Search all charts" +msgstr "すべてのチャート" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "例" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "これを使用して、すべての円の静的な色を定義します" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "この可視化方式はサポートされていません。" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#, fuzzy +msgid "View all charts" +msgstr "すべてのチャート" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "可視化方式を選んでください" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "ユーザー" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "新しいチャート" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "ユーザーの役割" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "チャートのプロパティを編集" -#: superset/errors.py:118 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 #, fuzzy -msgid "User doesn't have the proper permissions." -msgstr "Issue 1017 - ユーザーに適切なアクセス許可がありません。" +msgid "Dashboards added to" +msgstr "ダッシュボード" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "ユーザークエリ" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "ユーザー名" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +#, fuzzy +msgid "Export to .JSON" +msgstr "YAMLで出力" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "SQL Labで実行" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "お気に入りのマークアップ言語を選択" + +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -#, fuzzy -msgid "Value Format" -msgstr "メールフォーマット" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "URLパラメータ" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -#, fuzzy -msgid "Value format" -msgstr "メールフォーマット" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "注釈レイヤー" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -#, fuzzy -msgid "Value is required" -msgstr "名前が必要です" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "値は 0 より大きくする必要があります" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -#, fuzzy -msgid "Values dependent on" -msgstr "レポート送信" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60日" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90日" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "追加" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy -msgid "Vertical" -msgstr "ABC順" +msgid "Edit Report" +msgstr "レポート" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 #, fuzzy -msgid "Vertical (Left)" -msgstr "ABC順" +msgid "Edit Alert" +msgstr "テーブルを編集" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#, fuzzy +msgid "Add Report" +msgstr "レポート" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 #, fuzzy -msgid "View" -msgstr "プレビュー" +msgid "Add Alert" +msgstr "アラート" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "レポート名" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "アラート名" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "アクティブ" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "アラート状態" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQLクエリ" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "データセットを編集" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 #, fuzzy -msgid "View all charts" -msgstr "すべてのチャート" +msgid "Condition" +msgstr "アラート状態" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -#, fuzzy -msgid "View as table" -msgstr "サンプルを表示" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "レポートスケジュール" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "SQL Labで表示" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "アラート状態スケジュール" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "クエリを見る" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "スケジュール設定" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "表示した項目" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "ログの保持" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, fuzzy, python-format -msgid "Viewed %s" -msgstr "表示した項目" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "作業タイムアウト" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "秒単位の時間" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 #, fuzzy -msgid "Viewport" -msgstr "レポート" +msgid "seconds" +msgstr "30秒" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "猶予期間" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "メッセージ内容" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +#, fuzzy +msgid "Ignore cache when generating report" +msgstr "スクリーンショットの生成時にレポートスケジュールの実行に失敗しました。" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "可視化方式" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "レポート" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "可視化方式" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "最終更新 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +#, fuzzy +msgid "CRON Schedule" +msgstr "レポートスケジュール" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "レポートが送信されました" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "アラートが発動し、通知が送信されました" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "レポート送信" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "アラート発動中" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "レポートに失敗しました" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "アラートに失敗しました" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "アラート発動、猶予期間中" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +#, fuzzy +msgid "Queries" +msgstr "クエリ" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#, fuzzy +msgid "Annotation template updated" +msgstr "ダッシュボードが保存されました" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#, fuzzy +msgid "Annotation template created" +msgstr "注釈レイヤーはまだありません" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "注釈レイヤーのプロパティを編集" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "注釈レイヤー名" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Viz はデータソースがありません" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "説明(これはリストで見ることができます)" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "可視化タイプ" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "注釈" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "水" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#, fuzzy +msgid "The annotation has been updated" +msgstr "ダッシュボードが保存されました" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#, fuzzy +msgid "The annotation has been saved" +msgstr "ダッシュボードが保存されました" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "警告" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "注釈を編集する" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "警告メッセージ" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "注釈を追加" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "警告!" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "日付" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "追加情報" + +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "確認してください" + +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "削除してもよろしいですか" + +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, fuzzy, python-format +msgid "Modified %s" +msgstr "最終更新 %s" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "CSSテンプレートのプロパティを編集する" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "CSSテンプレートを追加する" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "公開" + +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "下書き" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +msgid "" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "水曜日" - -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "週" - -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +msgid "" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -#, fuzzy -msgid "Weekly Report" -msgstr "レポート" - -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +msgid "" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, fuzzy, python-format -msgid "Weeks %s" -msgstr "週" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -#, fuzzy -msgid "Weight" -msgstr "高さ" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +#, fuzzy +msgid "Enter duration in seconds" +msgstr "秒単位の時間" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#, fuzzy msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" -msgstr "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." +msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" msgstr "" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +#, fuzzy msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" -msgstr "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +#, fuzzy +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "非同期でのクエリ実行" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 -msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "‘Group By’ を使用する場合、指標は1つに制限されます。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +#, fuzzy +msgid "Add extra connection information." +msgstr "基本情報" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 +msgid "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +#, fuzzy +msgid "Allow file uploads to database" +msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "追加情報" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +#, fuzzy +msgid "Metadata Parameters" +msgstr "テンプレートパラメータ" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +#, fuzzy +msgid "Engine Parameters" +msgstr "テンプレートパラメータ" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +#, fuzzy +msgid "Enter Primary Credentials" +msgstr "Excelをアップロード" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "データベースを作成できませんでした。" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#, fuzzy +msgid "Select a database to connect" +msgstr "データベースを削除" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#, fuzzy +msgid "Login with" +msgstr "線の幅" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#, fuzzy +msgid "SSH Password" +msgstr "パスワード" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "表示名" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +#, fuzzy +msgid "Name your database" +msgstr "データベースのインポート" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "接続のテスト" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "データベース" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +#, fuzzy +msgid "Database settings updated" +msgstr "データベースを更新できませんでした。" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 #, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "降順または昇順でソートするかどうか" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "降順または昇順でソートするかどうか" +msgid "Supported databases" +msgstr "データベースのインポート" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 #, fuzzy -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "降順または昇順でソートするかどうか" +msgid "Choose a database..." +msgstr "データセットを選択" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +#, fuzzy +msgid "Connect" +msgstr "接続のテスト" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -#, fuzzy -msgid "White" -msgstr "タイトル" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "幅" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#, fuzzy +msgid "Database Creation Error" +msgstr "データベースエラー" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +#, fuzzy +msgid "CREATE DATASET" +msgstr "データセットを変更" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 #, fuzzy -msgid "Word Rotation" -msgstr "注釈を追加" +msgid "Connect a database" +msgstr "データベースを削除" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "データベースを編集" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "作業タイムアウト" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "世界地図" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +#, fuzzy +msgid "Import database from file" +msgstr "データベースのインポート" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "X軸" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 #, fuzzy -msgid "X Axis Format" -msgstr "日時フォーマット" +msgid "Port" +msgstr "レポート" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -#, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "レポート送信" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 #, fuzzy -msgid "X-axis" -msgstr "Y軸" +msgid "Additional Parameters" +msgstr "追加パラメータ" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 #, fuzzy -msgid "XScale Interval" -msgstr "更新間隔" +msgid "Add additional custom parameters" +msgstr "追加パラメータ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Y軸" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 #, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "レポート送信" +msgid "Upload Credentials" +msgstr "Excelをアップロード" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -#, fuzzy -msgid "Y-axis" -msgstr "Y軸" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -#, fuzzy -msgid "YScale Interval" -msgstr "更新間隔" - -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "年" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, fuzzy, python-format -msgid "Years %s" -msgstr "年" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "はい、キャンセルします" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +#, fuzzy +msgid "Add sheet" +msgstr "データセットを追加" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#, fuzzy +msgid "Duplicate dataset" +msgstr "データセットを編集" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +#, fuzzy +msgid "Duplicate" +msgstr "日付" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "データベース名" + +#: superset-frontend/src/features/datasets/constants.ts:23 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" #: superset-frontend/src/features/datasets/constants.ts:30 @@ -18528,1540 +18375,1734 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" -msgstr "既に存在する 1 つ以上の保存済みクエリをインポートしています。上書きすると、作業の一部が失われる可能性があります。上書きしますか?" - -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 #, fuzzy -msgid "You can" -msgstr "国別地図" +msgid "Table columns" +msgstr "タイトルまたはスラッグ" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#, fuzzy +msgid "Loading" +msgstr "アップロード" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "データセットを編集" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +#, fuzzy +msgid "Select dataset source" +msgstr "データソース" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "列を削除する" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "エラーが発生しました" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#, fuzzy +msgid "Usage" +msgstr "管理" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "チャート" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "最終更新" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "最終更新者 %s" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "ダッシュボード" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -"[Columns] を [Group By]/[Metrics]/[Percentage Metrics] " -"と組み合わせて使用することはできません。どちらか一方を選択してください。" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "このチャートを編集する権限がありません" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "チャート" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "このチャートを編集する権限がありません" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "チャートなし" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "このダッシュボードを編集する権限がありません" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "データソースにアクセスするためのアクセス許可がありません: %(name)s." +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#, fuzzy +msgid "Select a database table." +msgstr "データベースを削除" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "このダッシュボードを編集する権限がありません。" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "新しいチャートを作成" -#: superset/charts/commands/exceptions.py:131 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 #, fuzzy -msgid "You don't have access to this chart." -msgstr "このダッシュボードにアクセスできません。" +msgid "New dataset" +msgstr "データセットを変更" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "このダッシュボードにアクセスできません。" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "" -#: superset/datasets/commands/exceptions.py:206 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 #, fuzzy -msgid "You don't have access to this dataset." -msgstr "このダッシュボードにアクセスできません。" +msgid "dataset name" +msgstr "データベース名" -#: superset/embedded_dashboard/commands/exceptions.py:34 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 #, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "このダッシュボードにアクセスできません。" +msgid "Not defined" +msgstr "最終更新" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "まだお気に入りはありません!" +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 #, fuzzy -msgid "You don't have permission to modify the value." -msgstr "このチャートを編集する権限がありません" +msgid "There was an error fetching dataset's related objects" +msgstr "保存したグラフの取得中にエラーが発生しました: " + +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#, fuzzy +msgid "There was an error loading the dataset metadata" +msgstr "保存したグラフの取得中にエラーが発生しました: " + +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "" + +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "不明" + +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, fuzzy, python-format +msgid "Viewed %s" +msgstr "表示した項目" + +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "編集した項目" + +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "作成した項目" + +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "表示した項目" -#: superset/security/manager.py:2262 +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "お気に入り" + +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "個人用" + +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "" + +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 #, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "" +msgid "An error occurred while fetching dashboards: %s" +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset/views/core.py:945 +#: superset-frontend/src/features/home/EmptyState.tsx:28 #, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "このチャートを編集する権限がありません" +msgid "charts" +msgstr "チャート" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/home/EmptyState.tsx:29 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "このダッシュボードにアクセスできません。" +msgid "dashboards" +msgstr "ダッシュボード" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:30 +#, fuzzy +msgid "recents" +msgstr "最近" -#: superset/views/core.py:951 +#: superset-frontend/src/features/home/EmptyState.tsx:31 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "このチャートを編集する権限がありません" +msgid "saved queries" +msgstr "保存したクエリ" -#: superset/views/core.py:1135 +#: superset-frontend/src/features/home/EmptyState.tsx:35 #, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "このダッシュボードにアクセスできません。" +msgid "No charts yet" +msgstr "チャートなし" -#: superset/views/core.py:649 +#: superset-frontend/src/features/home/EmptyState.tsx:36 #, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "このチャートを編集する権限がありません" +msgid "No dashboards yet" +msgstr "ダッシュボードなし" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:37 +#, fuzzy +msgid "No recents yet" +msgstr "最近" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "このフィルタを削除しました。" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "保存したクエリ" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "未保存の変更があります。" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#: superset-frontend/src/features/home/EmptyState.tsx:46 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "新しいダッシュボードの名前を選択する必要があります" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, fuzzy, python-format +msgid "%(other)s saved queries will appear here" +msgstr "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" +msgstr "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" +msgstr "最近作成したグラフ、ダッシュボード、保存したクエリがここに表示されます" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "最近編集したグラフ、ダッシュボード、保存したクエリがここに表示されます" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQLクエリ" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "まだお気に入りはありません!" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +#: superset-frontend/src/features/home/RightMenu.tsx:174 #, fuzzy -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "ダッシュボードが大きすぎます。保存する前にサイズを小さくしてください。" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "クエリを保存できませんでした" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "" +msgid "Connect database" +msgstr "データベースを削除" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "クエリを更新できませんでした" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +#, fuzzy +msgid "Create dataset" +msgstr "データセットを変更" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +#: superset-frontend/src/features/home/RightMenu.tsx:190 #, fuzzy -msgid "Your query was not properly saved" -msgstr "クエリが保存されました" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "クエリが保存されました" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "クエリが更新されました" +msgid "Upload CSV to database" +msgstr "データベースのインポート" -#: superset-frontend/src/reports/actions/reports.js:154 +#: superset-frontend/src/features/home/RightMenu.tsx:197 #, fuzzy -msgid "Your report could not be deleted" -msgstr "チャートを削除できませんでした。" +msgid "Upload columnar file to database" +msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "情報" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -#, fuzzy -msgid "[ untitled dashboard ]" -msgstr "ダッシュボードを編集" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "ログアウト" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "[データセットが見つかりません]" - -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] データソース %(name)s へのアクセスは許可されました" - -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +#, fuzzy +msgid "Documentation" +msgstr "注釈" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[ダッシュボード名]" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +#, fuzzy +msgid "Report a bug" +msgstr "レポート" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "ログイン" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "クエリ" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "削除しました: %s" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "%s の削除中に問題が発生しました: %s" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "この操作を実行すると、保存したクエリは完全に削除されます。" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "クエリを削除しますか?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "保存したクエリ" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "次" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "タブ名" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "ユーザークエリ" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "実行したクエリ" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "クエリ名" + +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "アラート" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +#, fuzzy +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 #, fuzzy -msgid "alert dark" -msgstr "アラート" +msgid "The report has been created" +msgstr "ダッシュボードが保存されました" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "アラート" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +#, fuzzy +msgid "Report updated" +msgstr "レポートに失敗しました" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "チャートも複製する" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +#, fuzzy +msgid "Your report could not be deleted" +msgstr "チャートを削除できませんでした。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +#, fuzzy +msgid "Weekly Report" +msgstr "レポート" + +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "注釈" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +#, fuzzy +msgid "Schedule a new email report" +msgstr "チャートのメールレポートのスケジュール" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 #, fuzzy -msgid "auto" -msgstr "期限" +msgid "Report Name" +msgstr "レポート名" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +#, fuzzy +msgid "Set up an email report" +msgstr "アラートとレポート" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +#, fuzzy +msgid "Delete email report" +msgstr "アラートとレポート" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +#, fuzzy +msgid "Schedule email report" +msgstr "チャートのメールレポートのスケジュール" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +#, fuzzy +msgid "Delete Report?" +msgstr "テンプレートを削除しますか?" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "行レベルセキュリティ" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 #, fuzzy -msgid "cardinal" -msgstr "ログイン" +msgid "Edit Rule" +msgstr "クエリ名" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 #, fuzzy -msgid "change" -msgstr "管理" +msgid "Add Rule" +msgstr "日時フォーマット" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "チャート" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "クエリ名" -#: superset-frontend/src/features/home/EmptyState.tsx:27 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 #, fuzzy -msgid "charts" -msgstr "チャート" +msgid "The name of the rule must be unique" +msgstr "アクティブなチャートのID" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -#, fuzzy -msgid "clear all filters" -msgstr "すべてのフィルタ" - -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -#, fuzzy -msgid "count" -msgstr "月" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -#, fuzzy -msgid "create" -msgstr "作成" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 #, fuzzy -msgid "create a new chart" -msgstr "新しいチャートを作成" +msgid "Base" +msgstr "データベース" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "すべての選択を解除" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "cumulative" -msgstr "アクティブ" - -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "ダッシュボード" +msgid "tags" +msgstr "状態" -#: superset-frontend/src/features/home/EmptyState.tsx:28 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 #, fuzzy -msgid "dashboards" -msgstr "ダッシュボード" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "データベース" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "データセット" +msgid "Select Tags" +msgstr "すべての選択を解除" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/features/tags/TagModal.tsx:237 #, fuzzy -msgid "dataset name" -msgstr "データベース名" +msgid "Tag updated" +msgstr "四半期" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "日付" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "作成されました" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "日" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "タブ名" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "データベースのインポート" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Supersetダッシュボード" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "保存した指標" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" -msgstr "" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +#, fuzzy +msgid "UI Configuration" +msgstr "フィルタ構成" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 #, fuzzy -msgid "deck.gl Heatmap" -msgstr "すべてのチャート" +msgid "Filter value is required" +msgstr "データセットが必要です" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -#, fuzzy -msgid "deck.gl charts" -msgstr "すべてのチャート" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -#, fuzzy -msgid "default" -msgstr "削除" - -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "削除" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "アラート状態" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "下書き" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "" -#: superset/views/log/__init__.py:32 -msgid "dttm" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "レポート" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "アラート" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -#, fuzzy -msgid "edit mode" -msgstr "クエリ名" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "前回の実行" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -#, fuzzy -msgid "entries" -msgstr "クエリ" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "実行ログ" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "error" -msgstr "作成者" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "一括選択" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "エラーメッセージ" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "所有者" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "状態" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "データセット・データソース値の取得中にエラーが発生しました: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -#, fuzzy -msgid "every minute" -msgstr "5分" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "アラートとレポート" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "アラート" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "レポート" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "%s を削除しますか?" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 +#: superset-frontend/src/pages/AllEntities/index.tsx:180 #, fuzzy -msgid "expand" -msgstr "すべて展開" +msgid "Error Fetching Tagged Objects" +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "explore" -msgstr "レポート" +msgid "Edit Tag" +msgstr "ログを編集" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "選択したレイヤーの削除で問題が発生しました: %s" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "テンプレートを編集" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "テンプレートを削除" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "更新者" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "注釈レイヤーはまだありません" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "このアクションにより、レイヤーが完全に削除されます。" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "本当にレイヤーを削除しますか?" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "選択したレイヤーを削除してもよろしいですか?" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "選択した注釈の削除で問題が発生しました: %s" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "注釈を削除する" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "失敗" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "注釈" -#: superset-frontend/src/SqlLab/constants.ts:35 -#, fuzzy -msgid "fetching" -msgstr "設定" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "注釈はまだありません" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "注釈レイヤー" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, fuzzy, python-format +msgid "Are you sure you want to delete %s?" +msgstr "削除してもよろしいですか" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "注釈を削除しますか?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "選択した注釈を削除してもよろしいですか?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 #, fuzzy -msgid "heatmap" -msgstr "ヒートマップ" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "" +msgid "view instructions" +msgstr "秒単位の時間" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "here" -msgstr "共有" +msgid "Add a dataset" +msgstr "データセットを追加" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +#, fuzzy +msgid "or" msgstr "時間" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" -msgstr "" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "データセットを選択" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" -msgstr "" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +#, fuzzy +msgid "Choose chart type" +msgstr "チャートタイプ" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +#, fuzzy +msgid "Chart imported" +msgstr "チャートタイプ" + +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "参加" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +#, fuzzy +msgid "An error occurred while fetching dashboards" +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "任意" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -#, fuzzy -msgid "label" -msgstr "ラベル" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 #, fuzzy -msgid "last day" -msgstr "土曜日" +msgid "Certified" +msgstr "アラートに失敗しました" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -#, fuzzy -msgid "last month" -msgstr "月" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "ABC順" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -#, fuzzy -msgid "last quarter" -msgstr "四半期" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "更新" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -#, fuzzy -msgid "last week" -msgstr "先週" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "最終更新" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -#, fuzzy -msgid "last year" -msgstr "年" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "チャートのインポート" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "選択したチャートを削除してもよろしいですか?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -#, fuzzy -msgid "left" -msgstr "アラート" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSSテンプレート" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "選択したテンプレートの削除で問題が発生しました: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -#, fuzzy -msgid "linear" -msgstr "チャートを最小化" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSSテンプレート" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "ログ" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "このアクションにより、テンプレートが完全に削除されます。" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "テンプレートを削除しますか?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -#, fuzzy -msgid "max" -msgstr "最大値" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "選択したテンプレートを削除してもよろしいですか?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "指標" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -#, fuzzy -msgid "min" -msgstr "分" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "分" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -#, fuzzy -msgid "minute(s)" -msgstr "分" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "monotone" -msgstr "月" +msgid "Dashboard imported" +msgstr "ダッシュボードのプロパティ" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "月" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "選択したダッシュボードの削除で問題が発生しました。: " -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "選択したダッシュボードを削除してもよろしいですか?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "名前" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "" -#: superset/databases/commands/exceptions.py:147 +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 #, fuzzy -msgid "no SQL validator is configured" -msgstr "アラートバリデーター設定エラー。" +msgid "Upload file to database" +msgstr "データベースを編集" -#: superset/databases/commands/validate_sql.py:101 +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 #, fuzzy -msgid "no SQL validator is configured for {}" -msgstr "アラートバリデーター設定エラー。" +msgid "Upload CSV" +msgstr "画像としてダウンロード" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +#, fuzzy +msgid "Upload Excel file" +msgstr "Excelをアップロード" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -#, fuzzy -msgid "offline" -msgstr "オフライン" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "時間" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "データベースを削除" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -#: superset/charts/schemas.py:1313 -#, fuzzy -msgid "orderby column must be populated" -msgstr "クエリを更新できませんでした" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "データベースを削除しますか?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "overall" -msgstr "すべてクリア" +msgid "Dataset imported" +msgstr "DBポート番号" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "データセットのインポート" + +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "選択したデータセットの削除に問題が発生しました: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:720 #, fuzzy -msgid "pending" -msgstr "警告" +msgid "There was an issue duplicating the dataset." +msgstr "選択したデータセットの削除に問題が発生しました: %s" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, fuzzy, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "選択したデータセットの削除に問題が発生しました: %s" -#: superset/utils/pandas_postprocessing/boxplot.py:88 +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "レポートスケジュールの状態が見つかりません" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "データセットを削除しますか?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "選択したデータセットを削除しますか?" + +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "公開" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "ログ" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "実行 ID" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "スケジュール設定時刻 (UTC)" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "開始時刻 (UTC)" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "エラーメッセージ" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 #, fuzzy -msgid "quarter" -msgstr "四半期" +msgid "Alert" +msgstr "アラート" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "クエリ" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "最近のアクティビティの取得中に問題が発生しました: %s" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "クエリ" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, fuzzy, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "ダッシュボードの取得中に問題が発生しました: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "チャートの取得中に問題が発生しました: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, fuzzy, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "保存したクエリの取得中に問題が発生しました: %s" + +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -#, fuzzy -msgid "recent" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "最近" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -#, fuzzy -msgid "recents" -msgstr "最近" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "選択したクエリのプレビュー中に問題が発生しました。 %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "レポート" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "レポート" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "SQL Labでクエリを開く" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -#, fuzzy -msgid "right" -msgstr "高さ" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, fuzzy, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" + +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "削除しました: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "rowlevelsecurity" -msgstr "行レベルセキュリティ" +msgid "Deleted" +msgstr "削除" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "%s の削除中に問題が発生しました: %s" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "running" -msgstr "実行中" +msgid "No Rules yet" +msgstr "最近" -#: superset-frontend/src/features/home/EmptyState.tsx:30 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 #, fuzzy -msgid "saved queries" -msgstr "保存したクエリ" +msgid "Are you sure you want to delete the selected rules?" +msgstr "選択したレイヤーを削除してもよろしいですか?" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" +"保存したクエリと一緒にインポートするには、以下のデータベースのパスワードが必要です。データベース構成の ”Secure Extra” と " +"”Certificate” セクションはエクスポートファイルに存在せず、必要に応じてインポート後に手動で追加する必要がある点に注意してください。" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "既に存在する 1 つ以上の保存済みクエリをインポートしています。上書きすると、作業の一部が失われる可能性があります。上書きしますか?" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 #, fuzzy -msgid "seconds" -msgstr "30秒" +msgid "Query imported" +msgstr "クエリ名" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -#, fuzzy -msgid "series" -msgstr "クエリ" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "選択したクエリのプレビュー中に問題が発生しました %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "クエリのインポート" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -#, fuzzy -msgid "square" -msgstr "四半期" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "リンクをコピーしました!" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "選択したクエリの削除に問題が発生しました: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -#, fuzzy -msgid "staggered" -msgstr "変更" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "クエリを編集" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "クエリ URL のコピー" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -#, fuzzy -msgid "step-after" -msgstr "新しいフィルタ" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "クエリのエクスポート" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "クエリを削除" -#: superset-frontend/src/SqlLab/constants.ts:37 -#, fuzzy -msgid "stopped" -msgstr "中止" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "選択したクエリを削除しますか?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -#, fuzzy -msgid "stream" -msgstr "ヒストグラム" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "クエリ" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success" -msgstr "成功" +msgid "No Tags created" +msgstr "作成されました" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:352 #, fuzzy -msgid "success dark" -msgstr "成功" +msgid "Are you sure you want to delete the selected tags?" +msgstr "選択したデータセットを削除しますか?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#, fuzzy +msgid "Unexpected error: " +msgstr "レポートスケジュールの予期せぬエラー" + +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +#: superset-frontend/src/utils/getClientErrorObject.ts:97 #, fuzzy -msgid "to" -msgstr "中止" +msgid "Sorry, an unknown error occurred." +msgstr "エラーが発生しました" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -#, fuzzy -msgid "top" -msgstr "中止" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -#, fuzzy -msgid "undo" -msgstr "元に戻しますか?" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "このチャートを編集する権限がありません" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "unknown type icon" -msgstr "不明なエラー" - -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." -msgstr "" +msgid "Network error" +msgstr "パラメータエラー" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 +#: superset-frontend/src/utils/getClientErrorObject.ts:153 #, fuzzy -msgid "value ascending" -msgstr "レポート送信" +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Issue 1000 - データ ソースが大きすぎてクエリを実行できませんでした。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -#, fuzzy -msgid "value descending" -msgstr "レポート送信" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Issue 1001 - データベースに異常な負荷がかかっています。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" -msgstr "" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, fuzzy, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" -msgstr "" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, fuzzy, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "秒単位の時間" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, fuzzy, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "可視化タイプ" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, fuzzy, python-format +msgid "An error occurred while importing %s: %s" +msgstr "ログのプルーニング中にエラーが発生しました " -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "作成されました" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, fuzzy, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "週" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, fuzzy, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "最近のアクティビティの取得中にエラーが発生しました:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "削除中に問題が発生しました: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "年" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "時系列 - 表" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/ko/LC_MESSAGES/messages.json b/superset/translations/ko/LC_MESSAGES/messages.json index 58cbd4bccd979..5189860cc53d4 100644 --- a/superset/translations/ko/LC_MESSAGES/messages.json +++ b/superset/translations/ko/LC_MESSAGES/messages.json @@ -8,4081 +8,4040 @@ "plural_forms": "nplurals=1; plural=0", "lang": "ko" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "" - ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - "" - ], - " a new one": [""], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "The database is under an unusual load.": [""], + "The column was deleted or renamed in the database.": [""], + "The table was deleted or renamed in the database.": [""], + "One or more parameters specified in the query are missing.": [""], + "The hostname provided can't be resolved.": [""], + "The port is closed.": [""], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " to edit or add columns and metrics.": [""], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": [""], - "%(dialect)s cannot be used as a data source for security reasons.": [""], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(other)s saved queries will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(rows)d rows returned": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ + "Superset encountered an error while running a command.": [""], + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [""], + "Either the database is spelled incorrectly or does not exist.": [""], + "The schema was deleted or renamed in the database.": [""], + "User doesn't have the proper permissions.": [""], + "One or more parameters needed to configure a database are missing.": [ "" ], - "%(user)s's profile": [""], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - "%s Error": ["%s 에러"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": [""], - "%s Selected (%s Physical, %s Virtual)": [""], - "%s Selected (Physical)": [""], - "%s Selected (Virtual)": [""], - "%s aggregates(s)": [""], - "%s column(s)": [""], - "%s operator(s)": [""], - "%s option(s)": [""], - "%s saved metric(s)": [""], - "%s updated": [""], - "%s%s": [""], - "%s-%s of %s": [""], - "(Removed)": [""], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "One or more parameters specified in the query are malformed.": [""], + "The object does not exist in the given database.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "Failed to start remote query on a worker.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": [""], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [""], + "Unsupported return value for method %(name)s": [""], + "Unsafe template value for key %(key)s: %(value_type)s": [""], + "Unsupported template value for key %(key)s": [""], + "Only SELECT statements are allowed against this database.": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - ".": [""], - "0 Selected": ["테이블 선택"], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["1시간"], - "1 hourly frequency": [""], - "1 minute": ["1분"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year ago": [""], - "1 year end frequency": [""], - "1 year start frequency": [""], - "10 minute": ["10분"], - "104 weeks ago": [""], - "15 minute": ["15분"], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 letter code of the country": [""], - "3 years ago": [""], - "30 days": [""], - "30 days ago": [""], - "30 minutes": ["30분"], - "30 seconds": ["30초"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": ["5분"], - "5 minutes": ["5분"], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "60 days": [""], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": [""], - ":": [""], - "< (Smaller than)": [""], - "<= (Smaller or equal)": [""], - "": [""], - "": [""], - "== (Is equal)": [""], - "> (Larger than)": [""], - ">= (Larger or equal)": [""], - "A comma separated list of columns that should be parsed as dates": [""], - "A comma separated list of columns that should be parsed as dates.": [""], - "A comma-separated list of schemas that files are allowed to upload to.": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": [""], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": [""], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "From date cannot be larger than to date": [ + "시작 날짜가 끝 날짜보다 클 수 없습니다" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ - "" + "Cached value not found": ["캐시된 값을 찾을 수 없습니다."], + "Columns missing in datasource: %(invalid_columns)s": [ + "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" ], - "A map of the world, that can indicate values in different countries.": [ - "" + "Time Table View": ["시간 테이블 뷰"], + "Pick at least one metric": ["적어도 하나의 메트릭을 선택하세요"], + "When using 'Group By' you are limited to use a single metric": [ + "'Group By'를 사용 할 때 오직 하나의 메트릭만 사용 가능합니다" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Calendar Heatmap": ["달력 히트캡"], + "Bubble Chart": ["버블 차트"], + "Please use 3 different metric labels": [""], + "Pick a metric for x, y and size": [""], + "Bullet Chart": [""], + "Pick a metric to display": [""], + "Time Series - Line Chart": [""], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A metric to use for color": [""], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Time Series - Bar Chart": [""], + "Time Series - Period Pivot": [""], + "Time Series - Percent Change": [""], + "Time Series - Stacked": [""], + "Histogram": [""], + "Must have at least one numeric column specified": [""], + "Distribution - Bar Chart": [""], + "Can't have overlap between Series and Breakdowns": [""], + "Pick at least one field for [Series]": [""], + "Sankey": [""], + "Pick exactly 2 columns as [Source / Target]": [""], + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ "" ], - "A readable URL for your dashboard": [""], - "A reference to the [Time] configuration, taking granularity into account": [ + "Directed Force Layout": [""], + "Country Map": [""], + "World Map": [""], + "Parallel Coordinates": [""], + "Heatmap": [""], + "Horizon Charts": [""], + "Mapbox": [""], + "[Longitude] and [Latitude] must be set": [""], + "Must have a [Group By] column to have 'count' as the [Label]": [""], + "Choice of [Label] must be present in [Group By]": [""], + "Choice of [Point Radius] must be present in [Group By]": [""], + "[Longitude] and [Latitude] columns must be present in [Group By]": [""], + "Deck.gl - Multiple Layers": [""], + "Bad spatial key": [""], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": [""], + "Time Series - Paired t-test": [""], + "Time Series - Nightingale Rose Chart": [""], + "Partition Diagram": [""], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [""], + "All Text": [""], + "Deleted %(num)d annotation": [""], + "Deleted %(num)d chart": [""], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [""], + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ "" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "A timeout occurred while executing the query.": [""], - "A timeout occurred while taking a screenshot.": [""], - "A valid color scheme is required": [""], - "APPLY": [""], - "APR": [""], - "AQE": [""], - "AUG": [""], - "AXIS TITLE MARGIN": [""], - "AXIS TITLE POSITION": [""], - "About": [""], - "Access": [""], - "Access requests": [""], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": [""], - "Action": ["활동"], - "Action Log": ["활동 기록"], - "Actions": ["주석"], - "Active": [""], - "Actual time range": [""], - "Adaptive formatting": [""], - "Add": [""], - "Add CSS Template": ["CSS 템플릿 추가"], - "Add CSS template": ["CSS 템플릿"], - "Add Chart": ["차트 추가"], - "Add Column": ["컬럼 추가"], - "Add Dashboard": ["대시보드 추가"], - "Add Database": ["데이터베이스 추가"], - "Add Log": ["로그 추가"], - "Add Metric": ["메트릭 추가"], - "Add Report": [""], - "Add Saved Query": ["저장된 Query 추가"], - "Add a Plugin": ["플러그인 추가"], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": [""], - "Add annotation": ["주석"], - "Add annotation layer": ["주석 레이어"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "" - ], - "Add custom scoping": [""], - "Add delivery method": [""], - "Add filter": ["테이블 추가"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" - ], - "Add filters and dividers": [""], - "Add item": ["테이블 추가"], - "Add metric": ["메트릭"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": [""], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add to dashboard": ["대시보드 추가"], - "Added": [""], - "Additional fields may be required": [""], - "Additional information": ["주석"], - "Additional text to add before or after the value, e.g. unit": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": [""], - "Advanced Analytics": [""], - "Advanced Data type": [""], - "Advanced analytics": [""], - "Advanced analytics Query A": [""], - "Advanced analytics Query B": [""], - "Advanced data type": [""], - "Advanced-Analytics": [""], - "Aesthetic": [""], - "Aggregate Mean": [""], - "Aggregate Sum": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": ["부적절한 요청입니다 : %(error)s"], + "Request is not JSON": [""], + "Owners are invalid": ["소유자가 부적절합니다"], + "Some roles do not exist": ["몇몇 역할이 존재하지 않습니다"], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": [""], + "Annotation layer could not be created.": [""], + "Annotation layer could not be updated.": [""], + "Annotation layer not found.": ["주석 레이어"], + "Annotation layer has associated annotations.": [""], + "Name must be unique": [""], + "End date must be after start date": [""], + "Short description must be unique for this layer": [""], + "Annotation not found.": ["주석"], + "Annotation parameters are invalid.": [""], + "Annotation could not be created.": [""], + "Annotation could not be updated.": [""], + "Annotations could not be deleted.": [""], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "" + "Database does not exist": ["데이터베이스가 존재하지 않습니다"], + "Dashboards do not exist": ["대시보드가 존재하지 않습니다"], + "Datasource type is required when datasource_id is given": [""], + "Chart parameters are invalid.": ["차트의 파라미터가 부적절합니다."], + "Chart could not be created.": ["차트를 생성할 수 없습니다."], + "Chart could not be updated.": ["차트를 업데이트할 수 없습니다."], + "Charts could not be deleted.": ["차트를 삭제할 수 없습니다."], + "There are associated alerts or reports": [ + "관련된 알람이나 리포트가 있습니다" ], - "Aggregation function": [""], - "Alert Triggered, In Grace Period": [""], - "Alert condition": [""], - "Alert condition schedule": [""], - "Alert ended grace period.": [""], - "Alert failed": ["테이블 명"], - "Alert fired during grace period.": [""], - "Alert found an error while executing a query.": [""], - "Alert name": ["테이블 명"], - "Alert on grace period": [""], - "Alert query returned a non-number value.": [""], - "Alert query returned more than one column.": [""], - "Alert query returned more than one column. %s columns returned": [""], - "Alert query returned more than one row.": [""], - "Alert query returned more than one row. %s rows returned": [""], - "Alert running": [""], - "Alert triggered, notification sent": [""], - "Alert validator config error.": [""], - "Alerts": ["경고"], - "Alerts & Reports": ["경고 및 리포트"], - "Alerts & reports": [""], - "Align +/-": [""], - "All": [""], - "All Text": [""], - "All charts": ["차트 추가"], - "All charts/global scoping": [""], - "All filters": ["필터"], - "All filters (%(filterCount)d)": [""], - "All panels": [""], - "All panels with this column will be affected by this filter": [""], - "Allow CREATE TABLE AS": [""], - "Allow CREATE TABLE AS option in SQL Lab": [""], - "Allow CREATE VIEW AS": [""], - "Allow CREATE VIEW AS option in SQL Lab": [""], - "Allow Csv Upload": [""], - "Allow DML": ["DML 허용"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": [""], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "" + "You don't have access to this chart.": [""], + "Changing this chart is forbidden": [ + "이 차트를 변경하는 것은 불가능합니다" ], - "Allow file uploads to database": [""], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "" + "Import chart failed for an unknown reason": [ + "차트 불러오기는 알 수 없는 이유로 실패했습니다" ], - "Allow multiple selections": [""], - "Allow node selections": [""], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Error: %(error)s": [""], + "CSS template not found.": ["CSS 템플릿을 찾을수 없습니다."], + "Must be unique": [""], + "Dashboard parameters are invalid.": ["대시보드 인자가 부적절합니다."], + "Dashboard could not be updated.": ["대시보드를 업데이트할 수 없습니다."], + "Dashboard could not be deleted.": ["대시보드를 삭제할 수 없습니다."], + "Changing this Dashboard is forbidden": [""], + "Import dashboard failed for an unknown reason": [""], + "You don't have access to this dashboard.": [""], + "You don't have access to this embedded dashboard config.": [""], + "No data in file": ["파일에 데이터가 없습니다"], + "Database parameters are invalid.": [""], + "Field is required": [""], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ "" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": [""], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "" + "Database not found.": ["데이터베이스를 찾을 수 없습니다."], + "Database could not be created.": ["데이터베이스를 생성할 수 없습니다."], + "Database could not be updated.": [ + "데이터베이스를 업데이트할 수 없습니다." ], - "Altered": [""], - "An Error Occurred": [""], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "" + "Connection failed, please check your connection settings": [ + "연결하는데 실패했습니다. 커넥션 " ], - "An engine must be specified when passing individual parameters to a database.": [ - "" + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": ["데이터베이스를 삭제할 수 없습니다."], + "Stopped an unsafe database connection": [""], + "Could not load database driver": [ + "데이터베이스 드라이버를 로드할 수 없습니다" ], - "An error has occurred": [""], - "An error occurred": [""], - "An error occurred saving dataset": [""], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Unexpected error occurred, please check your logs for details": [""], + "no SQL validator is configured": [""], + "No validator found (configured for the engine)": [""], + "Was unable to check your query": [""], + "An unexpected error occurred": [""], + "Import database failed for an unknown reason": [""], + "Could not load database driver: {}": [""], + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ "" ], - "An error occurred while creating the data source": [""], - "An error occurred while expanding the table schema. Please contact your administrator.": [ + "no SQL validator is configured for %(engine)s": [""], + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "An error occurred while fetching available CSS templates": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - ], - "An error occurred while fetching chart created by values: %s": [""], - "An error occurred while fetching chart owners values: %s": [""], - "An error occurred while fetching created by values: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "Dataset %(name)s already exists": [ + "데이터셋 %(name)s 은 이미 존재합니다" ], - "An error occurred while fetching dashboard created by values: %s": [""], - "An error occurred while fetching dashboard owner values: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "Database not allowed to change": [""], + "One or more columns do not exist": [ + "하나 이상의 칼럼이 존재하지 않습니다" ], - "An error occurred while fetching dashboards: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "One or more columns are duplicated": ["하나 이상의 칼럼이 중복됩니다"], + "One or more columns already exist": [ + "하나 이상의 칼럼이 이미 존재합니다" ], - "An error occurred while fetching database related data: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "One or more metrics do not exist": [ + "하나 이상의 메트릭이 존재하지 않습니다" ], - "An error occurred while fetching database values: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "One or more metrics are duplicated": ["하나 이상의 메트릭이 중복됩니다"], + "One or more metrics already exist": [ + "하나 이상의 메트릭이 이미 존재합니다" ], - "An error occurred while fetching dataset datasource values: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "" ], - "An error occurred while fetching dataset owner values: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "Dataset does not exist": ["데이터소스가 존재하지 않습니다"], + "Dataset parameters are invalid.": [""], + "Dataset could not be created.": [""], + "Dataset could not be updated.": [""], + "Changing this dataset is forbidden": [""], + "Import dataset failed for an unknown reason": [""], + "You don't have access to this dataset.": [""], + "Data URI is not allowed.": [""], + "The provided table was not found in the provided database": [""], + "Dataset column not found.": [""], + "Dataset column delete failed.": [""], + "Changing this dataset is forbidden.": [""], + "Dataset metric not found.": [""], + "Dataset metric delete failed.": [""], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": [""], + "Saved queries could not be deleted.": [""], + "Saved query not found.": ["저장된 쿼리를 찾을 수 없습니다."], + "Alert query returned more than one row. %(num_rows)s rows returned": [ + "" ], - "An error occurred while fetching dataset related data": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + "Alert query returned more than one column. %(num_columns)s columns returned": [ + "" ], - "An error occurred while fetching dataset related data: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - ], - "An error occurred while fetching datasets: %s": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - ], - "An error occurred while fetching function names.": [""], - "An error occurred while fetching schema values: %s": [""], - "An error occurred while fetching tab state": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - ], - "An error occurred while fetching table metadata": [ - "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["대시보드가 존재하지 않습니다"], + "Chart does not exist": ["차트가 존재하지 않습니다"], + "Database is required for alerts": [""], + "Type is required": [""], + "Choose a chart or dashboard not both": [""], + "Must choose either a chart or a dashboard": [""], + "Please save your chart first, then try creating a new email report.": [ "" ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ + "Please save your dashboard first, then try creating a new email report.": [ "" ], - "An error occurred while loading the SQL": [""], + "Report Schedule parameters are invalid.": [""], + "Report Schedule could not be created.": [""], + "Report Schedule could not be updated.": [""], + "Report Schedule not found.": [""], + "Report Schedule delete failed.": [""], + "Report Schedule log prune failed.": [""], + "Report Schedule execution failed when generating a screenshot.": [""], + "Report Schedule execution failed when generating a csv.": [""], + "Report Schedule execution failed when generating a dataframe.": [""], + "Report Schedule execution got an unexpected error.": [""], + "Report Schedule is still working, refusing to re-compute.": [""], + "Report Schedule reached a working timeout.": [""], + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [""], + "Alert validator config error.": [""], + "Alert query returned more than one column.": [""], + "Alert query returned a non-number value.": [""], + "Alert found an error while executing a query.": [""], + "A timeout occurred while executing the query.": [""], + "A timeout occurred while taking a screenshot.": [""], + "Alert fired during grace period.": [""], + "Alert ended grace period.": [""], + "Alert on grace period": [""], + "Report Schedule state not found": [""], + "Report schedule system error": [""], + "Report schedule client error": [""], + "Report schedule unexpected error": [""], + "Changing this report is forbidden": [""], "An error occurred while pruning logs ": [""], - "An error occurred while removing query. Please contact your administrator.": [ + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "An error occurred while removing tab. Please contact your administrator.": [ + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ + "The query associated with these results could not be found. You need to re-run the original query.": [ "" ], - "An error occurred while setting the active tab. Please contact your administrator.": [ + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ "" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ + "You don't have permission to modify the value.": [""], + "Invalid result type: %(result_type)s": [""], + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "The chart does not exist": ["차트가 존재하지 않습니다"], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [""], + "[asc]": [""], + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [""], + "Virtual dataset query must be read-only": [ + "가상 데이터셋 쿼리는 읽기 전용이어야 합니다" + ], + "Error while rendering virtual dataset query: %(msg)s": [""], + "Virtual dataset query cannot be empty": [""], + "Virtual dataset query cannot consist of multiple statements": [""], + "Error in jinja expression in RLS filters: %(msg)s": [""], + "Metric '%(metric)s' does not exist": [ + "메트릭 '%(metric)s' 이 존재하지 않습니다." + ], + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [ + "오직 `SELECT` 구문만 허용됩니다." + ], + "Only single queries supported": ["오직 하나의 쿼리만 지원됩니다"], + "Columns": ["칼럼"], + "Show Column": ["컬럼 보기"], + "Add Column": ["컬럼 추가"], + "Edit Column": ["컬럼 수정"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ "" ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Whether this column is exposed in the `Filters` section of the explore view.": [ "" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ "" ], - "An unexpected error occurred": [""], - "An unknown error occurred. Please contact your Superset administrator": [ + "Column": ["칼럼"], + "Verbose Name": [""], + "Description": ["설명"], + "Groupable": [""], + "Filterable": [""], + "Table": ["테이블"], + "Expression": ["표현식"], + "Is temporal": [""], + "Datetime Format": [""], + "Type": ["타입"], + "Business Data Type": [""], + "Invalid date/timestamp format": [""], + "Metrics": ["메트릭"], + "Show Metric": ["메트릭 보기"], + "Add Metric": ["메트릭 추가"], + "Edit Metric": ["메트릭 편집"], + "Metric": ["메트릭"], + "SQL Expression": ["SQL 표현식"], + "D3 Format": ["D3 포멧"], + "Extra": [""], + "Warning Message": ["경고 메시지"], + "Tables": ["테이블"], + "Show Table": ["테이블 보기"], + "Import a table definition": [""], + "Edit Table": ["테이블 수정"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ "" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Annotation": ["주석"], - "Annotation Layers": ["주석 레이어"], - "Annotation Slice Configuration": [""], - "Annotation could not be created.": [""], - "Annotation could not be updated.": [""], - "Annotation delete failed.": ["주석 레이어"], - "Annotation layer": ["주석 레이어"], - "Annotation layer could not be created.": [""], - "Annotation layer could not be deleted.": [""], - "Annotation layer could not be updated.": [""], - "Annotation layer delete failed.": ["주석 레이어"], - "Annotation layer has associated annotations.": [""], - "Annotation layer name": ["주석 레이어"], - "Annotation layer not found.": ["주석 레이어"], - "Annotation layer parameters are invalid.": [""], - "Annotation layer type": ["주석 레이어"], - "Annotation layers": ["주석 레이어"], - "Annotation layers are still loading.": [""], - "Annotation name": ["주석 레이어"], - "Annotation not found.": ["주석"], - "Annotation parameters are invalid.": [""], - "Annotations and layers": ["주석 레이어"], - "Annotations could not be deleted.": [""], - "Any": [""], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Timezone offset (in hours) for this datasource": [""], + "Name of the table that exists in the source database": [""], + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ "" ], - "Append": [""], - "Applied cross-filters (%d)": [""], - "Applied filters (%d)": [""], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Redirects to this endpoint when clicking on the table from the table list": [ "" ], - "Apply": [""], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply to all panels": [""], - "Apply to specific panels": [""], - "April": [""], - "Are you sure you intend to overwrite the following values?": [""], - "Are you sure you want to cancel?": [""], - "Are you sure you want to delete": [""], - "Are you sure you want to delete %s?": [""], - "Are you sure you want to delete the selected %s?": [""], - "Are you sure you want to delete the selected annotations?": [""], - "Are you sure you want to delete the selected charts?": [""], - "Are you sure you want to delete the selected dashboards?": [""], - "Are you sure you want to delete the selected datasets?": [""], - "Are you sure you want to delete the selected layers?": [""], - "Are you sure you want to delete the selected queries?": [""], - "Are you sure you want to delete the selected rules?": [""], - "Are you sure you want to delete the selected tags?": [""], - "Are you sure you want to delete the selected templates?": [""], - "Are you sure you want to overwrite this dataset?": [""], - "Are you sure you want to proceed?": [""], - "Are you sure you want to save and apply changes?": [""], - "Area chart opacity": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ "" ], - "Arrow": [""], - "Assign a set of parameters as": [""], - "Associated Charts": [""], - "Async Execution": [""], - "Asynchronous query execution": [""], - "August": [""], - "Auto Zoom": [""], - "Autocomplete": [""], - "Autocomplete filters": [""], - "Autocomplete query predicate": [""], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Axis": [""], - "Axis Title": [""], - "Axis ascending": [""], - "Axis descending": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": [""], - "Backward values": [""], - "Bad spatial key": [""], - "Bar": [""], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Bar Values": [""], - "Base layer map style": [""], - "Based on a metric": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": [""], - "Basic information": [""], - "Batch editing %d filters:": [""], - "Battery level over time": [""], - "Be careful.": [""], - "Big Number": [""], - "Big Number Font Size": [""], - "Big Number with Trendline": [""], - "Bottom Margin": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ "" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "A set of parameters that become available in the query using Jinja templating syntax": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Box Plot": [""], - "Bubble Chart": ["버블 차트"], - "Bubble Color": [""], - "Bubble Size": [""], - "Bubble size": [""], - "Bucket break points": [""], - "Build": [""], - "Bulk select": [""], - "Bullet Chart": [""], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": [""], - "CREATE TABLE AS": [""], - "CREATE VIEW AS": [""], - "CREATE VIEW statement": [""], - "CRON Schedule": [""], - "CRON expression": [""], - "CSS": [""], - "CSS Styles": [""], - "CSS Templates": ["CSS 템플릿"], - "CSS applied to the chart": [""], - "CSS template": ["CSS 템플릿"], - "CSS template could not be deleted.": [ - "CSS 템플릿을 삭제할 수 없습니다." - ], - "CSS template name": ["CSS 템플릿"], - "CSS template not found.": ["CSS 템플릿을 찾을수 없습니다."], - "CSS templates": ["CSS 템플릿"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "" - ], - "CSV to Database configuration": [""], - "CSV upload": ["CSV 업로드"], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Associated Charts": [""], + "Changed By": [""], + "Database": ["데이터베이스"], + "Last Changed": [""], + "Enable Filter Select": [""], + "Schema": ["스키마"], + "Default Endpoint": [""], + "Offset": ["오프셋"], + "Cache Timeout": [""], + "Table Name": ["테이블 명"], + "Fetch Values Predicate": [""], + "Owners": [""], + "Main Datetime Column": [""], + "SQL Lab View": [""], + "Template parameters": [""], + "Modified": ["수정됨"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ "" ], - "CTAS Schema": [""], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "Deleted %(num)d css template": [""], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": [""], + "Title or Slug": [""], + "Role": ["역할"], + "Invalid state.": [""], + "Table name undefined": ["테이블 명이 정해지지 않았습니다"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": [""], - "Cache Timeout (seconds)": [""], - "Cache timeout": [""], - "Cached": [""], - "Cached %s": [""], - "Cached value not found": ["캐시된 값을 찾을 수 없습니다."], - "Calculate contribution per series or row": [""], - "Calculated column [%s] requires an expression": [""], - "Calculated columns": ["컬럼 목록"], - "Calculation type": ["시각화 유형 선택"], - "Calendar Heatmap": ["달력 히트캡"], - "Can not move top level tab into nested tabs": [""], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [""], - "Cancel": ["취소"], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ + "Field cannot be decoded by JSON. %(msg)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "" ], - "Cannot load filter": [""], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categorical Color": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell Size": [""], - "Cell content": [""], - "Center": [""], - "Centroid (Longitude and Latitude): ": [""], - "Certification details": [""], - "Certified by": ["수정됨"], - "Certified by %s": [""], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": [""], - "Changed on": [""], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "Changing this Dashboard is forbidden": [""], - "Changing this chart is forbidden": [ - "이 차트를 변경하는 것은 불가능합니다" - ], - "Changing this control takes effect instantly": [""], - "Changing this dataset is forbidden": [""], - "Changing this dataset is forbidden.": [""], - "Changing this report is forbidden": [""], - "Character to interpret as decimal point": [""], - "Character to interpret as decimal point.": [""], - "Chart": ["차트"], - "Chart %(id)s not found": [""], - "Chart Cache Timeout": [""], - "Chart ID": [""], - "Chart [%s] has been overwritten": [""], - "Chart [%s] was added to dashboard [%s]": [""], - "Chart [{}] has been overwritten": [""], - "Chart [{}] has been saved": [""], - "Chart [{}] was added to dashboard [{}]": [""], - "Chart cache timeout": ["차트 유형"], - "Chart changes": [""], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "Deleted %(num)d dataset": ["데이터베이스 선택"], + "Null or Empty": [""], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Chart could not be created.": ["차트를 생성할 수 없습니다."], - "Chart could not be deleted.": ["차트를 삭제할 수 없습니다."], - "Chart could not be updated.": ["차트를 업데이트할 수 없습니다."], - "Chart does not exist": ["차트가 존재하지 않습니다"], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart name": ["차트 유형"], - "Chart parameters are invalid.": ["차트의 파라미터가 부적절합니다."], - "Chart type": ["차트 유형"], - "Chart type requires a dataset": [""], - "Charts": ["차트"], - "Charts could not be deleted.": ["차트를 삭제할 수 없습니다."], - "Check configuration": [""], - "Check for sorting ascending": [""], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "Second": ["초"], + "Minute": ["분"], + "5 minute": ["5분"], + "10 minute": ["10분"], + "15 minute": ["15분"], + "Hour": ["시"], + "Day": ["일"], + "Week": ["주"], + "Month": ["달"], + "Quarter": ["분기"], + "Year": ["년"], + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Hostname or IP address": [""], + "Database name": ["데이터소스 명"], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "Check out this chart in dashboard:": [""], - "Check out this chart: ": [""], - "Check out this dashboard: ": [""], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [""], - "Check to include time grain dropdown": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [""], - "Choice of [Point Radius] must be present in [Group By]": [""], - "Choose File": ["CSV 파일"], - "Choose a chart or dashboard not both": [""], - "Choose a dataset": ["데이터소스 선택"], - "Choose a metric for right axis": [""], - "Choose a number format": [""], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": ["주석 레이어"], - "Choose the format for legend values": [""], - "Choose the position of the legend": [""], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Clause": [""], - "Clear": [""], - "Clear all": [""], - "Clear form": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Unknown Doris server host \"%(hostname)s\".": [""], + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [""], + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "Click the lock to make changes.": [""], - "Click the lock to prevent further changes.": [""], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": ["클릭하여 제목 수정하기"], - "Click to favorite/unfavorite": [""], - "Click to force-refresh": [""], - "Click to see difference": [""], - "Click to sort descending": [""], - "Close": [""], - "Close all other tabs": [""], - "Close tab": ["탭 닫기"], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": [""], - "Collapse all": [""], - "Collapse row": [""], - "Collapse tab content": [""], - "Color": [""], - "Color +/-": [""], - "Color Scheme": [""], - "Color Steps": [""], - "Color bounds": [""], - "Color by": [""], - "Color metric": [""], - "Color of the target location": [""], - "Color scheme": [""], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "Colors": [""], - "Column": ["칼럼"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Unknown MySQL server host \"%(hostname)s\".": [""], + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Column Configuration": [""], - "Column Label(s)": [""], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Could not connect to database: \"%(database)s\"": [""], + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Column name [%s] is duplicated": [""], - "Column referenced by aggregate is undefined: %(column)s": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Users are not allowed to set a search path for security reasons.": [""], + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": [""], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Columnar to Database configuration": [""], - "Columns": ["칼럼"], - "Columns To Be Parsed as Dates": [""], - "Columns missing in datasource: %(invalid_columns)s": [ - "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" - ], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to display": [""], - "Columns to group by": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "%(object)s does not exist in this database.": [""], + "Home": [""], + "Data": ["데이터베이스"], + "Dashboards": ["대시보드"], + "Charts": ["차트"], + "Datasets": ["데이터베이스"], + "Plugins": ["플러그인"], + "Manage": ["관리"], + "CSS Templates": ["CSS 템플릿"], + "SQL Lab": ["SQL Lab"], + "SQL": [""], + "Saved Queries": ["저장된 Query"], + "Query History": ["Query 실행 이력"], + "Action Log": ["활동 기록"], + "Security": ["보안"], + "Alerts & Reports": ["경고 및 리포트"], + "Annotation Layers": ["주석 레이어"], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Empty query?": [""], + "Time column \"%(col)s\" does not exist in dataset": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [""], + "Error in jinja expression in HAVING clause: %(msg)s": [""], + "Database does not support subqueries": [""], + "Deleted %(num)d saved query": [""], + "Deleted %(num)d report schedule": [""], + "Value must be greater than 0": ["값은 0보다 커야합니다"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "EMAIL_REPORTS_CTA": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [""], + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "The parameter %(parameters)s in your query is undefined.": [""], + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Tag name is invalid (cannot contain ':')": [""], + "Is custom tag": [""], + "Record Count": ["레코드 수"], + "No records found": [""], + "Filter List": ["필터"], + "Search": ["검색"], + "Refresh": ["새로고침 간격"], + "Import dashboards": ["대시보드 가져오기"], + "Import Dashboard(s)": ["대시보드 가져오기"], + "File": ["CSV 파일"], + "Choose File": ["CSV 파일"], + "Upload": ["CSV 업로드"], + "Use the edit button to change this field": [""], + "Test Connection": ["연결 테스트"], + "Unsupported clause type: %(clause)s": [""], + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [""], + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], - "Comparison Period Lag": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [""], + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": [""], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": [""], + "Unsupported time grain: %(time_grain)s": [""], + "Periods must be a whole number": [""], "Confidence interval must be between 0 and 1 (exclusive)": [""], - "Configuration": [""], - "Configure Advanced Time Range ": [""], - "Configure Time Range: Last...": [""], - "Configure Time Range: Previous...": [""], - "Configure custom time range": [""], - "Configure filter scopes": [""], - "Configure the basics of your Annotation Layer.": [""], - "Configure this dashboard to embed it into an external web application.": [ + "DataFrame must include temporal column": [""], + "DataFrame include at least one series": [""], + "Resample operation requires DatetimeIndex": [""], + "Resample method should in ": [""], + "Undefined window for rolling operation": [""], + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [""], + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [""], + "Operator undefined for aggregator: %(name)s": [""], + "Invalid numpy function: %(operator)s": [""], + "Unexpected time range: %(error)s": [""], + "json isn't valid": [""], + "Export to YAML": [""], + "Export to YAML?": [""], + "Delete": ["삭제"], + "Delete all Really?": [""], + "Is favorite": [""], + "Is tagged": [""], + "The data source seems to have been deleted": [""], + "The user seems to have been deleted": [""], + "You don't have the rights to download as csv": [""], + "Error: permalink state not found": [""], + "Error: %(msg)s": [""], + "You don't have the rights to alter this chart": [""], + "You don't have the rights to create a chart": [""], + "Explore - %(table)s": [""], + "Explore": [""], + "Chart [{}] has been saved": [""], + "Chart [{}] has been overwritten": [""], + "You don't have the rights to alter this dashboard": [""], + "Chart [{}] was added to dashboard [{}]": [""], + "You don't have the rights to create a dashboard": [""], + "Dashboard [{}] just got created and chart [{}] was added to it": [""], + "Malformed request. slice_id or table_name and db_name arguments are expected": [ "" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm overwrite": [""], - "Confirm save": [""], - "Connect": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": [""], - "Connection failed, please check your connection settings": [ - "연결하는데 실패했습니다. 커넥션 " + "Chart %(id)s not found": [""], + "Table %(table)s wasn't found in the database %(db)s": [""], + "Show CSS Template": ["CSS 템플릿 보기"], + "Add CSS Template": ["CSS 템플릿 추가"], + "Edit CSS Template": ["CSS 템플릿 편집"], + "Template Name": ["템플릿 명"], + "A human-friendly name": [""], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "" ], - "Connection looks good!": [""], - "Continuous": [""], - "Contribution": [""], - "Control labeled ": [""], - "Controls labeled ": [""], - "Coordinates": [""], - "Copied to clipboard!": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": ["클립보드에 복사하기"], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": [""], - "Copy message": [""], - "Copy of %s": [""], - "Copy partition query to clipboard": [""], - "Copy query URL": [""], - "Copy query link to your clipboard": ["클립보드에 복사하기"], - "Copy the account name of that database you are trying to connect to.": [ + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to Clipboard": [""], - "Copy to clipboard": ["클립보드에 복사하기"], - "Correlation": [""], - "Cost estimate": [""], - "Could not connect to database: \"%(database)s\"": [""], + "Custom Plugins": ["커스텀 플러그인"], + "Custom Plugin": ["커스텀 플러그인"], + "Add a Plugin": ["플러그인 추가"], + "Edit Plugin": ["플러그인 수정"], + "The dataset associated with this chart no longer exists": [""], "Could not determine datasource type": [""], - "Could not fetch all saved charts": [""], "Could not find viz object": [""], - "Could not load database driver": [ - "데이터베이스 드라이버를 로드할 수 없습니다" + "Show Chart": ["차트 보기"], + "Add Chart": ["차트 추가"], + "Edit Chart": ["차트 수정"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "" ], - "Could not load database driver: %(driver_name)s": [""], - "Could not load database driver: {}": [""], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country Color Scheme": [""], - "Country Field Type": [""], - "Country Map": [""], - "Create": [""], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ "" ], - "Create a new chart": ["새 차트 생성"], - "Create chart with dataset": [""], - "Create new chart": ["새 차트 생성"], - "Create new filter set": [""], - "Create or select schema...": [""], - "Created": ["생성자"], - "Created On": [""], - "Created by": ["생성자"], - "Created content": ["새 차트 생성"], - "Created on": ["생성자"], - "Creating a data source and creating a new tab": [""], "Creator": ["생성자"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Datasource": ["데이터소스"], + "Last Modified": ["마지막 수정"], + "Parameters": [""], + "Chart": ["차트"], + "Name": ["이름"], + "Visualization Type": ["시각화 유형"], + "Show Dashboard": ["대시보드 보기"], + "Add Dashboard": ["대시보드 추가"], + "Edit Dashboard": ["대시보드 수정"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ "" ], - "Cross-filtering is not enabled for this dashboard.": [""], - "Cross-filtering is not enabled in this dashboard": [""], - "Cumulative": [""], - "Currently rendered: %s": [""], - "Custom": [""], - "Custom Plugin": ["커스텀 플러그인"], - "Custom Plugins": ["커스텀 플러그인"], - "Custom SQL": [""], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": [""], - "Customize Metrics": [""], - "Cyclic dependency detected": [""], - "D3 Format": ["D3 포멧"], - "D3 format": [""], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": [""], - "DELETE": [""], - "DML": [""], - "Daily seasonality": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["대시보드"], - "Dashboard [%s] just got created and chart [%s] was added to it": [""], - "Dashboard [{}] just got created and chart [{}] was added to it": [""], - "Dashboard could not be created.": ["대시보드를 생성할 수 없습니다."], - "Dashboard could not be deleted.": ["대시보드를 삭제할 수 없습니다."], - "Dashboard could not be updated.": ["대시보드를 업데이트할 수 없습니다."], - "Dashboard does not exist": ["대시보드가 존재하지 않습니다"], - "Dashboard parameters are invalid.": ["대시보드 인자가 부적절합니다."], - "Dashboard properties": ["대시보드"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "To get a readable URL for your dashboard": [""], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Dashboards": ["대시보드"], - "Dashboards could not be deleted.": ["대시보드를 삭제할 수 없습니다."], - "Dashboards do not exist": ["대시보드가 존재하지 않습니다"], - "Data": ["데이터베이스"], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Owners is a list of users who can alter the dashboard.": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ "" ], - "Data has no time steps": [""], - "Data preview": ["데이터 미리보기"], - "Data refreshed": [""], - "Data type": ["차트 유형"], - "DataFrame include at least one series": [""], - "DataFrame must include temporal column": [""], - "Database": ["데이터베이스"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Dashboard": ["대시보드"], + "Title": ["제목"], + "Slug": [""], + "Roles": ["역할"], + "Published": [""], + "Position JSON": [""], + "CSS": [""], + "JSON Metadata": [""], + "Export": [""], + "Export dashboards?": [""], + "Select a file to be uploaded to the database": [""], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Name of table to be created with CSV file": [""], + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Select a schema if the database supports this": [""], + "Delimiter": ["구분자"], + "Enter a delimiter for this data": [""], + ",": [""], + ".": [""], + "Fail": ["실패"], + "Replace": ["바꾸기"], + "Append": [""], + "Skip Initial Space": [""], + "Skip spaces after delimiter": [""], + "Skip Blank Lines": [""], + "Skip blank lines rather than interpreting them as Not A Number values": [ "" ], - "Database URL": ["데이터베이스 URL"], - "Database could not be created.": ["데이터베이스를 생성할 수 없습니다."], - "Database could not be deleted.": ["데이터베이스를 삭제할 수 없습니다."], - "Database could not be updated.": [ - "데이터베이스를 업데이트할 수 없습니다." + "Columns To Be Parsed as Dates": [""], + "A comma separated list of columns that should be parsed as dates": [""], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": [""], + "Character to interpret as decimal point": [""], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "" ], - "Database does not allow data manipulation.": [""], - "Database does not exist": ["데이터베이스가 존재하지 않습니다"], - "Database does not support subqueries": [""], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Index Column": [""], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Database error": ["데이터베이스"], - "Database is required for alerts": [""], - "Database name": ["데이터소스 명"], - "Database not allowed to change": [""], - "Database not found.": ["데이터베이스를 찾을 수 없습니다."], - "Database parameters are invalid.": [""], - "Databases": ["데이터베이스"], "Dataframe Index": [""], - "Dataset": ["데이터베이스"], - "Dataset %(name)s already exists": [ - "데이터셋 %(name)s 은 이미 존재합니다" + "Write dataframe index as a column": [""], + "Column Label(s)": [""], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "" ], - "Dataset column delete failed.": [""], - "Dataset column not found.": [""], - "Dataset could not be created.": [""], - "Dataset could not be deleted.": [""], - "Dataset could not be updated.": [""], - "Dataset does not exist": ["데이터소스가 존재하지 않습니다"], - "Dataset metric delete failed.": [""], - "Dataset metric not found.": [""], - "Dataset name": ["데이터소스 명"], - "Dataset parameters are invalid.": [""], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [""], - "Datasets": ["데이터베이스"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Json list of the column names that should be read": [""], + "Overwrite Duplicate Columns": [""], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": ["데이터소스"], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [""], - "Date Time Format": [""], - "Date filter": ["테이블 추가"], - "Date/Time": ["시작 시간"], - "Datetime Format": [""], - "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Header Row": [""], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "" ], - "Datetime format": [""], - "Day": ["일"], - "Day (freq=D)": [""], - "Db engine did not return all queried columns": [""], - "Deactivate": [""], - "December": [""], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": [""], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Multiple Layers": [""], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": [""], - "Default Endpoint": [""], - "Default URL": [""], - "Default URL to redirect to when accessing from the dataset list page": [ + "Rows to Read": [""], + "Number of rows of file to read": [""], + "Skip Rows": [""], + "Number of rows to skip at start of file": [""], + "Name of table to be created from excel data.": [""], + "Excel File": [""], + "Select a Excel file to be uploaded to a database.": [""], + "Sheet Name": ["테이블 명"], + "Strings used for sheet names (default is the first sheet).": [""], + "Specify a schema (if database flavor supports this).": [""], + "Table Exists": ["테이블 존재"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Default Value": [""], - "Default datetime": [""], - "Default latitude": [""], - "Default longitude": [""], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Default value must be set when \"Filter has default value\" is checked": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "Number of rows to skip at start of file.": [""], + "Number of rows of file to read.": [""], + "Parse Dates": [""], + "A comma separated list of columns that should be parsed as dates.": [""], + "Character to interpret as decimal point.": [""], + "Write dataframe index as a column.": [""], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Null values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Name of table to be created from columnar data.": [""], + "Select a Columnar file to be uploaded to a database.": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Databases": ["데이터베이스"], + "Show Database": ["데이터베이스 보기"], + "Add Database": ["데이터베이스 추가"], + "Edit Database": ["데이터베이스 편집"], + "Expose this DB in SQL Lab": [""], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Allow CREATE TABLE AS option in SQL Lab": [""], + "Allow CREATE VIEW AS option in SQL Lab": [""], + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ "" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "If selected, please set the schemas allowed for csv upload in Extra.": [ "" ], - "Delete": ["삭제"], - "Delete %s?": ["삭제"], - "Delete Annotation?": ["주석"], - "Delete Database?": ["데이터베이스 선택"], - "Delete Dataset?": [""], - "Delete Layer?": ["삭제"], - "Delete Query?": ["삭제"], - "Delete Template?": ["CSS 템플릿"], - "Delete all Really?": [""], - "Delete annotation": ["주석"], - "Delete dashboard tab?": ["대시보드"], - "Delete database": ["데이터베이스 선택"], - "Delete email report": [""], - "Delete query": ["삭제"], - "Delete template": ["템플릿 불러오기"], - "Delete this container and save to remove this message.": [""], - "Deleted %(num)d annotation": [""], - "Deleted %(num)d annotation layer": [""], - "Deleted %(num)d chart": [""], - "Deleted %(num)d css template": [""], - "Deleted %(num)d dashboard": [""], - "Deleted %(num)d dataset": ["데이터베이스 선택"], - "Deleted %(num)d report schedule": [""], - "Deleted %(num)d saved query": [""], - "Deleted: %s": ["삭제"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Expose in SQL Lab": [""], + "Allow CREATE TABLE AS": [""], + "Allow CREATE VIEW AS": [""], + "Allow DML": ["DML 허용"], + "CTAS Schema": [""], + "SQLAlchemy URI": [""], + "Chart Cache Timeout": [""], + "Secure Extra": ["보안"], + "Root certificate": [""], + "Async Execution": [""], + "Impersonate the logged on user": [""], + "Allow Csv Upload": [""], + "Backend": [""], + "Extra field cannot be decoded by JSON. %(msg)s": [""], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ "" ], - "Delimited long & lat single column": [""], - "Delimiter": ["구분자"], - "Demographics": [""], - "Density": [""], - "Dependent on": [""], - "Description": ["설명"], - "Description (this can be seen in the list)": [""], - "Description text that shows up below your Big Number": [""], - "Deselect all": ["테이블 선택"], - "Details of the certification": [""], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "CSV to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Diamond": [""], - "Did you mean:": [""], - "Difference": [""], - "Dim Gray": [""], - "Dimension": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Dimensions": [""], - "Directed Force Layout": [""], - "Directional": [""], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Disable embedding?": [""], - "Discrete": [""], - "Display column level total": [""], - "Display configuration": [""], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Display row level total": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Excel to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ "" ], - "Distribute across": [""], - "Distribution - Bar Chart": [""], - "Divider": [""], - "Do you want a donut or a pie?": [""], - "Domain": [""], - "Download": [""], - "Download as image": [""], - "Download to CSV": [""], - "Draft": [""], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Drill to detail: %s": [""], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Duplicate": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Columnar to Database configuration": [""], + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Duplicate tab": [""], - "Duration": [""], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": ["로그"], + "Show Log": ["컬럼 보기"], + "Add Log": ["로그 추가"], + "Edit Log": ["로그 수정"], + "User": ["사용자"], + "Action": ["활동"], + "dttm": ["날짜/시간"], + "JSON": ["JSON"], + "Time Range": [""], + "Time Grain": [""], + "Time Granularity": [""], + "Time": [""], + "A reference to the [Time] configuration, taking granularity into account": [ "" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Raw records": [""], + "Certified by %s": [""], + "description": [""], + "bolt": [""], + "Changing this control takes effect instantly": [""], + "Show info tooltip": [""], + "SQL expression": [""], + "Label": ["레이블"], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": [""], + "This section contains options that allow for advanced analytical post processing of query results": [ "" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Rolling window": [""], + "Rolling function": [""], + "None": [""], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ "" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Periods": [""], + "Defines the size of the rolling window function, relative to the time granularity selected": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": [""], - "Dynamic Aggregation Function": [""], - "Dynamically search all filter values": [""], - "EMAIL_REPORTS_CTA": [""], - "END (EXCLUSIVE)": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edge width": [""], - "Edit": [""], - "Edit CSS": ["CSS 수정"], - "Edit CSS Template": ["CSS 템플릿 편집"], - "Edit CSS template properties": ["CSS 템플릿"], - "Edit Chart": ["차트 수정"], - "Edit Column": ["컬럼 수정"], - "Edit Dashboard": ["대시보드 수정"], - "Edit Database": ["데이터베이스 편집"], - "Edit Dataset ": ["차트 수정"], - "Edit Log": ["로그 수정"], - "Edit Metric": ["메트릭 편집"], - "Edit Plugin": ["플러그인 수정"], - "Edit Report": [""], - "Edit Saved Query": ["저장된 Query 수정"], - "Edit Table": ["테이블 수정"], - "Edit annotation": ["주석"], - "Edit annotation layer": ["주석 레이어"], - "Edit annotation layer properties": ["주석 레이어"], - "Edit chart properties": [""], - "Edit dashboard": [""], - "Edit database": ["차트 수정"], - "Edit dataset": ["차트 수정"], - "Edit email report": [""], - "Edit formatter": [""], - "Edit properties": [""], - "Edit query": ["저장된 Query 수정"], - "Edit template": ["템플릿 불러오기"], - "Edit template parameters": [""], - "Edit time range": [""], - "Edited": ["테이블 수정"], - "Editing 1 filter:": [""], - "Editing filter set:": [""], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ + "Min periods": [""], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ "" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Time comparison": ["컬럼 수정"], + "Time shift": [""], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "30 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Either the username or the password is wrong.": [""], - "Email reports active": [""], - "Embed": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty query?": [""], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "Calculation type": ["시각화 유형 선택"], + "Difference": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ "" ], - "Enable Filter Select": [""], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], + "Resample": [""], + "Rule": [""], + "1 minutely frequency": [""], + "1 hourly frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "1 year start frequency": [""], + "1 year end frequency": [""], + "Pandas resample rule": [""], + "Linear interpolation": [""], + "Backward values": [""], + "Pandas resample method": [""], + "X Axis": [""], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": [""], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Y Axis Title Position": [""], + "Query": [""], + "Predictive Analytics": [""], "Enable forecast": [""], "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Forecast periods": [""], + "How many periods into the future do we want to predict": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "Yes": [""], + "No": [""], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "End": ["끝 시간"], - "End (Longitude, Latitude): ": [""], - "End Longitude & Latitude": [""], - "End Time": ["종료 시간"], - "End angle": [""], - "End date excluded from time range": [""], - "End date must be after start date": [""], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine Parameters": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter a delimiter for this data": [""], - "Enter a name for this sheet": [""], - "Enter a new title for the tab": [""], - "Enter fullscreen": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": [""], - "Entity ID": [""], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [""], - "Error in jinja expression in RLS filters: %(msg)s": [""], - "Error in jinja expression in WHERE clause: %(msg)s": [""], - "Error in jinja expression in fetch values predicate: %(msg)s": [""], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": [""], - "Error while rendering virtual dataset query: %(msg)s": [""], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Error: permalink state not found": [""], - "Estimate cost": [""], - "Estimate selected query cost": [""], - "Estimate the cost before running a query": [""], - "Event Flow": [""], - "Event definition": [""], - "Event flow": [""], - "Every": [""], - "Evolution": [""], - "Exact": [""], - "Example": [""], - "Examples": [""], - "Excel File": [""], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Excel to Database configuration": [""], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed query": ["저장된 Query 수정"], - "Execution ID": [""], - "Execution log": [""], - "Exit fullscreen": [""], - "Expand": [""], - "Expand all": [""], - "Expand data panel": [""], - "Expand row": [""], - "Expand tool bar": [""], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "" - ], - "Experimental": [""], - "Explore": [""], - "Explore - %(table)s": [""], - "Explore the result set in the data exploration view": [""], - "Export": [""], - "Export dashboards?": [""], - "Export to .CSV": [""], - "Export to Excel": [""], - "Export to YAML": [""], - "Export to YAML?": [""], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": [""], - "Expose this DB in SQL Lab": [""], - "Expression": ["표현식"], - "Extra": [""], - "Extra Controls": [""], + "Time related form attributes": [""], + "Chart ID": [""], + "The id of the active chart": [""], + "Cache Timeout (seconds)": [""], + "The number of seconds before expiring the cache": [""], + "URL Parameters": [""], + "Extra url parameters for use in Jinja templated queries": [""], "Extra Parameters": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "" - ], - "Extra field cannot be decoded by JSON. %(msg)s": [""], - "Extra parameters for use in jinja templated queries": [""], "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "Extruded": [""], - "FEB": [""], - "FRI": [""], - "Factor to multiply the metric by": [""], - "Fail": ["실패"], - "Failed": ["실패"], - "Failed at retrieving results": [""], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to retrieve advanced type": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [""], - "Favorite": [""], - "Favorites": [""], - "February": [""], - "Fetch Values Predicate": [""], - "Fetch data preview": [""], - "Fetched %s": [""], - "Fetching": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [""], - "Field is required": [""], - "File": ["CSV 파일"], - "Fill Color": [""], - "Fill all required fields to enable \"Default Value\"": [""], - "Filter Configuration": [""], - "Filter List": ["필터"], - "Filter Type": [""], - "Filter box (deprecated)": [""], - "Filter configuration": [""], - "Filter configuration for the filter box": [""], - "Filter has default value": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter name": ["필터"], - "Filter only displays values relevant to selections made in other filters.": [ + "Color Scheme": [""], + "Row": [""], + "Series": [""], + "Calculate contribution per series or row": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Y-Axis Sort Ascending": [""], + "X-Axis Sort Ascending": [""], + "Whether to sort ascending or descending on the base Axis.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Filter results": ["검색 결과"], - "Filter set already exists": [""], - "Filter set with this name already exists": [""], - "Filter sets (%(filterSetCount)d)": [""], - "Filter value (case sensitive)": [""], - "Filter value list cannot be empty": [""], - "Filter your charts": [""], - "Filterable": [""], - "Filters": ["필터"], - "Filters (%d)": [""], - "Filters by columns": ["컬럼 목록"], - "Filters by metrics": ["필터"], - "Filters configuration": [""], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Add dataset columns here to group the pivot table columns.": [""], + "Dimension": [""], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Entity": [""], + "This defines the element to be plotted on the chart": [""], + "Filters": ["필터"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Fix to selected Time Range": [""], - "Fixed": [""], - "Fixed Color": [""], - "Fixed color": [""], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Select a metric to display on the right axis": [""], + "Sort by": [""], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Bubble Size": [""], + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "Force": [""], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "The dataset column/metric that returns the values on your chart's y-axis.": [ "" ], - "Force refresh": [""], - "Force refresh schema list": [""], - "Force refresh table list": [""], - "Forecast periods": [""], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formattable": [""], - "Formatted CSV attached in email": [""], - "Formula": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Frequency": [""], - "Friction between nodes": [""], - "Friday": [""], - "From date cannot be larger than to date": [ - "시작 날짜가 끝 날짜보다 클 수 없습니다" - ], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "GROUP BY": [""], - "General": [""], - "Generating link, please wait..": [""], - "Geo": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": [""], - "Graph layout": [""], - "Gravity": [""], - "Greater or equal (>=)": [""], - "Greater than (>)": [""], - "Grid": [""], - "Grid Size": [""], - "Group By": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group Key": [""], - "Group by": [""], - "Groupable": [""], - "Handlebars": [""], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "A metric to use for color": [""], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ "" ], - "Header": [""], - "Header Row": [""], - "Heatmap": [""], - "Heatmap Options": [""], - "Height": [""], - "Height of the sparkline": [""], - "Hide Line": [""], - "Hide layer": [""], - "Hide tool bar": [""], - "Hides the Line for the time series": [""], - "Histogram": [""], - "Home": [""], - "Horizon Charts": [""], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": [""], - "Hour": ["시"], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Drop a temporal column here or click": [""], + "Y-axis": [""], + "Dimension to use on y-axis.": [""], + "X-axis": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [""], + "Fixed Color": [""], + "Use this to define a static color for all circles": [""], + "Linear Color Scheme": [""], + "all": [""], + "30 seconds": ["30초"], + "1 minute": ["1분"], + "5 minutes": ["5분"], + "30 minutes": ["30분"], + "1 hour": ["1시간"], + "week": ["주"], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": ["월"], + "year": ["년"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id": [""], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "If a metric is specified, sorting will be done based on the metric value": [ + "Row limit": [""], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Sort Descending": [""], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Series limit": [""], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Y Axis Format": [""], + "The color scheme for rendering chart": [""], + "Whether to truncate metrics": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": [""], + "Original value": ["원본 값"], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Oops! An error occurred!": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Ignore cache when generating screenshot": [""], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": ["시간"], + "day": ["일"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "Impersonate the logged on user": [""], - "Import": [""], - "Import %s": ["대시보드 가져오기"], - "Import Dashboard(s)": ["대시보드 가져오기"], - "Import Dashboards": ["대시보드 가져오기"], - "Import a table definition": [""], - "Import chart failed for an unknown reason": [ - "차트 불러오기는 알 수 없는 이유로 실패했습니다" - ], - "Import dashboard failed for an unknown reason": [""], - "Import dashboards": ["대시보드 가져오기"], - "Import database failed for an unknown reason": [""], - "Import dataset failed for an unknown reason": [""], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Cell Size": [""], + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "Color Steps": [""], + "The number color \"steps\"": [""], + "Legend": [""], + "Whether to display the legend (toggles)": [""], + "Whether to display the numerical values within the cells": [""], + "Whether to display the metric name as a title": [""], + "Number Format": [""], + "Correlation": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Index Column": [""], - "Info": ["정보"], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": ["필터"], + "Business": [""], "Intensity": [""], - "Intensity Radius": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Pattern": [""], + "Trend": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "Interpret Datetime Format Automatically": [""], - "Interpret the datetime format automatically": [""], - "Interval colors": [""], - "Intesity": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Number format": [""], + "Choose a number format": [""], + "Source": [""], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "Invalid JSON": [""], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": [""], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Metric to display bottom title": [""], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "2D": [""], + "Geo": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Columns to display": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "Invalid cron expression": [""], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": [""], - "Invalid filter configuration, please select a column": [""], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": [""], - "Invalid lat/long configuration.": [""], - "Invalid longitude/latitude": [""], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [""], - "Invalid options for %(rolling_type)s: %(options)s": [""], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid state.": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Is dimension": [""], - "Is favorite": [""], - "Is filterable": ["필터"], - "Is not null": [""], - "Is null": [""], - "Is tagged": [""], - "Is temporal": [""], - "Is true": [""], - "Issue 1001 - The database is under an unusual load.": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": [""], - "JSON": ["JSON"], - "JSON Metadata": [""], - "JSON metadata": [""], - "JSON metadata is invalid!": [""], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "JUL": [""], - "JUN": [""], - "January": [""], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Metadata": [""], + "Select any columns for metadata inspection": [""], + "Entity ID": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Event Flow": [""], + "Progressive": [""], + "Axis ascending": [""], + "Axis descending": [""], + "Metric ascending": [""], + "Metric descending": [""], + "Heatmap Options": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "Rendering": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "July": [""], - "June": [""], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": [""], - "Key": [""], - "Keys for table": [""], - "Label": ["레이블"], - "Label Line": [""], - "Label for your query": [""], - "Label position": [""], - "Label threshold": [""], - "Labelling": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Last": [""], - "Last Changed": [""], - "Last Modified": ["마지막 수정"], - "Last Updated %s": [""], - "Last available value seen on %s": [""], - "Last modified": ["마지막 수정"], - "Last modified by %s": ["마지막 수정"], - "Last run": [""], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": [""], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "Least recently modified": [""], - "Left Axis Format": [""], - "Left Axis chart(s)": [""], + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], "Left Margin": [""], "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Legacy": [""], - "Legend": [""], - "Legend Position": [""], - "Legend type": [""], - "Less or equal (<=)": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light": [""], - "Light mode": [""], - "Like": [""], - "Like (case insensitive)": [""], - "Limit reached": [""], - "Limit selector values": [""], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "" - ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "" - ], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": [""], - "Linear Color Scheme": [""], - "Linear color scheme": [""], - "Linear interpolation": [""], - "Lines encoding": [""], - "Link Copied!": ["복사됨!"], - "List Saved Query": ["저장된 Query 목록"], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "Live CSS editor": [""], - "Live render": [""], - "Load a CSS template": ["CSS 템플릿 불러오기"], - "Loaded data cached": [""], - "Loaded from cache": [""], - "Loading...": [""], - "Log Scale": [""], - "Log retention": [""], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["로그인"], - "Login with": [""], - "Logout": ["로그아웃"], - "Logs": ["로그"], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": [""], - "Longitude and Latitude": [""], - "Longitude of default viewport": [""], - "MAR": [""], - "MAY": [""], - "MON": [""], - "Main Datetime Column": [""], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Whether to include the percentage in the tooltip": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Value Format": [""], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Manage": ["관리"], - "Mandatory": [""], - "Manually set min/max values for the y-axis.": [""], - "Map Style": [""], - "MapBox": [""], - "Mapbox": [""], - "March": ["검색"], - "Margin": [""], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markers": [""], - "Markup type": [""], - "Max": [""], - "Max Bubble Size": [""], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "Density": [""], + "Predictive": [""], + "cumulative": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "No of Bins": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Cumulative": [""], + "Whether to make the histogram cumulative": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "Maximum value on the gauge axis": [""], - "May": ["일"], - "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Population age data": [""], + "Contribution": [""], + "Compute the contribution to the total": [""], + "Series Height": [""], + "Pixel height of each series": [""], + "Value Domain": [""], + "overall": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": [""], - "Metadata": [""], - "Metadata Parameters": [""], - "Metadata has been synced": [""], - "Method": [""], - "Metric": ["메트릭"], - "Metric '%(metric)s' does not exist": [ - "메트릭 '%(metric)s' 이 존재하지 않습니다." + "Dark Cyan": [""], + "Purple": [""], + "Gold": [""], + "Dim Gray": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "" ], - "Metric ascending": [""], - "Metric assigned to the [X] axis": [""], - "Metric assigned to the [Y] axis": [""], + "Points": [""], + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "" + ], + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "" + ], + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "max": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "" + ], + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Map Style": [""], + "Streets": [""], + "Light": [""], + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": [""], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "RGB Color": [""], + "The color for points and clusters in RGB": [""], + "Viewport": [""], + "Default longitude": [""], + "Longitude of default viewport": [""], + "Default latitude": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "" + ], + "Light mode": [""], + "Dark mode": [""], + "MapBox": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "" + ], + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Ranking": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "" + ], + "Coordinates": [""], + "Directional": [""], + "Not Time Series": [""], + "Ignore time": [""], + "Standard time series": [""], + "Aggregate Mean": [""], + "Mean of values over specified period": [""], + "Aggregate Sum": [""], + "Sum of values over specified period": [""], "Metric change in value from `since` to `until`": [""], - "Metric descending": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": [""], "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to display bottom title": [""], - "Metric to sort the results by": [""], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "Date Time Format": [""], + "Partition Limit": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ "" ], - "Metrics": ["메트릭"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "Rolling Window": [""], + "Rolling Function": [""], + "cumsum": [""], + "Time Shift": [""], + "30 days": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Midnight": [""], - "Min": [""], - "Min Width": [""], - "Min periods": [""], - "Min/max (no outliers)": [""], - "Mine": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": [""], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Categorical": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Minute": ["분"], - "Missing dataset": [""], - "Mixed Time-Series": [""], - "Modified": ["수정됨"], - "Modified by": ["수정됨"], - "Modified columns: %s": [""], - "Monday": [""], - "Month": ["달"], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], - "Multi-Dimensions": [""], + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "" + ], + "Nightingale Rose Chart": [""], + "Advanced-Analytics": [""], "Multi-Layers": [""], - "Multi-Levels": [""], - "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ "" ], - "Multiplier": [""], - "Must be unique": [""], - "Must choose either a chart or a dashboard": [""], - "Must have a [Group By] column to have 'count' as the [Label]": [""], - "Must have at least one numeric column specified": [""], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "My metric": ["메트릭"], - "N/A": [""], - "NOT GROUPED BY": [""], - "NOV": [""], - "NOW": [""], - "Name": ["이름"], - "Name is required": [""], - "Name must be unique": [""], - "Name of table to be created from columnar data.": [""], - "Name of table to be created from excel data.": [""], - "Name of table to be created with CSV file": [""], - "Name of the column containing the id of the parent node": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [""], - "Name of the target nodes": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error.": [""], - "New chart": ["차트 이동"], - "New columns added: %s": [""], - "New filter set": [""], - "New tab": ["탭 닫기"], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": [""], - "Nightingale Rose Chart": [""], - "No": [""], - "No %s yet": [""], - "No Access!": [""], - "No Data": [""], - "No annotation layers yet": ["주석 레이어"], - "No annotation yet": ["주석 레이어"], - "No charts": [""], - "No compatible columns found": [""], - "No compatible datasets found": [""], - "No compatible schema found": [""], - "No dashboards": [""], - "No data": [""], - "No data after filtering or data is NULL for the latest time record": [ + "Whether to display bubbles on top of countries": [""], + "Max Bubble Size": [""], + "Color by": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ "" ], - "No data in file": ["파일에 데이터가 없습니다"], - "No databases match your search": [""], - "No description available.": [""], - "No favorite charts yet, go click on stars!": [""], - "No favorite dashboards yet, go click on stars!": [""], - "No filter is selected.": [""], - "No filters are currently added to this dashboard.": [""], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No matching records found": [""], - "No of Bins": [""], - "No recents yet": [""], - "No records found": [""], - "No results found": [""], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "3 letter code of the country": [""], + "Metric that defines the size of the bubble": [""], + "Bubble Color": [""], + "Country Color Scheme": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No stored results found, you need to re-run your query": [""], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Multi-Dimensions": [""], + "Multi-Variables": [""], + "Popular": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start (Longitude, Latitude): ": [""], + "End (Longitude, Latitude): ": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Color of the target location": [""], + "Categorical Color": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Stroke Width": [""], + "Advanced": [""], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "No temporal columns found": [""], - "No time columns": [""], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "Node select mode": [""], - "Node size": [""], - "None": [""], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not Time Series": [""], - "Not available": [""], - "Not equal to (≠)": [""], - "Not null": [""], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": [""], - "Notification method": ["주석 레이어"], - "November": [""], - "Now": [""], - "Null or Empty": [""], - "Null values": [""], - "Number Format": [""], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Centroid (Longitude and Latitude): ": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "Number format": [""], - "Number format string": [""], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read": [""], - "Number of rows of file to read.": [""], - "Number of rows to skip at start of file": [""], - "Number of rows to skip at start of file.": [""], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": [""], - "OCT": [""], - "OK": [""], - "OVERWRITE": [""], - "October": [""], - "Offline": [""], - "Offset": ["오프셋"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Weight": [""], + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "Spatial": [""], + "Experimental": [""], + "Line width unit": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "deck.gl Geojson": [""], + "Longitude and Latitude": [""], + "Height": [""], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ "" ], - "One or many controls to pivot as columns": [""], - "One or many metrics to display": [""], - "One or more columns already exist": [ - "하나 이상의 칼럼이 이미 존재합니다" - ], - "One or more columns are duplicated": ["하나 이상의 칼럼이 중복됩니다"], - "One or more columns do not exist": [ - "하나 이상의 칼럼이 존재하지 않습니다" - ], - "One or more metrics already exist": [ - "하나 이상의 메트릭이 이미 존재합니다" - ], - "One or more metrics are duplicated": ["하나 이상의 메트릭이 중복됩니다"], - "One or more metrics do not exist": [ - "하나 이상의 메트릭이 존재하지 않습니다" - ], - "One or more parameters needed to configure a database are missing.": [ + "deck.gl Grid": [""], + "Intesity": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ "" ], - "One or more parameters specified in the query are malformatted.": [""], - "One or more parameters specified in the query are missing.": [""], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": [""], + "variance": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "One ore more annotation layers failed loading.": [""], - "Only SELECT statements are allowed against this database.": [""], - "Only Total": [""], - "Only `SELECT` statements are allowed": [ - "오직 `SELECT` 구문만 허용됩니다." - ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [""], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Polygon Encoding": [""], + "Opacity, expects values between 0 and 100": [""], + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Whether to apply filter when items are clicked": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ "" ], - "Only single queries supported": ["오직 하나의 쿼리만 지원됩니다"], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Size": [""], + "Point Unit": [""], + "Radius in meters": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "Oops! An error occurred!": [""], - "Opacity": [""], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["데이터소스 명"], - "Open in SQL Lab": ["SQL Lab"], - "Open query in SQL Lab": ["새로운 탭에서 Query실행"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "" ], - "Operator undefined for aggregator: %(name)s": [""], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Point Color": [""], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation of bar chart": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original table column order": [""], - "Original value": ["원본 값"], - "Orthogonal": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Outer edge of Pie chart": [""], - "Overlap": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "deck.gl Scatterplot": [""], + "Grid": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ "" ], - "Override time grain": [""], - "Override time range": [""], - "Overwrite": [""], - "Overwrite & Explore": [""], - "Overwrite Dashboard [%s]": [""], - "Overwrite Duplicate Columns": [""], - "Overwrite existing": [""], - "Overwrite text in the editor with a query on this table": [""], - "Owned Created or Favored": [""], - "Owner": [""], - "Owners": [""], - "Owners are invalid": ["소유자가 부적절합니다"], - "Owners is a list of users who can alter the dashboard.": [""], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": [""], - "Pandas resample rule": [""], - "Parallel Coordinates": [""], - "Parameter error": [""], - "Parameters": [""], - "Parameters ": [""], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": [""], - "Part of a Whole": [""], - "Partition Diagram": [""], - "Partition Limit": [""], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": [""], - "Percentage threshold": [""], - "Percentages": [""], - "Performance": [""], - "Period average": [""], - "Periods": [""], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [""], - "Physical": [""], - "Physical (table or view)": [""], - "Physical dataset": ["데이터소스 선택"], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [""], - "Pick a metric for x, y and size": [""], - "Pick a metric to display": [""], - "Pick a metric!": [""], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [""], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [""], - "Pick at least one metric": ["적어도 하나의 메트릭을 선택하세요"], - "Pick exactly 2 columns as [Source / Target]": [""], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ "" ], - "Pick your favorite markup language": [""], - "Pie shape": [""], - "Pin": [""], - "Pivot Table": ["피봇 테이블"], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Choose the format for legend values": [""], + "Legend Position": [""], + "Choose the position of the legend": [""], + "Top right": [""], + "The database columns that contains lines information": [""], + "Line width": [""], + "The width of the lines": [""], + "Fill Color": [""], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Whether to fill the objects": [""], + "Whether to display the stroke": [""], + "Extruded": [""], + "Whether to make the grid 3D": [""], + "Grid Size": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Multiplier": [""], + "Factor to multiply the metric by": [""], + "Lines encoding": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "Right Axis Format": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "basis": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "X Tick Layout": [""], + "flat": [""], + "staggered": [""], + "The way the ticks are laid out on the X-axis": [""], + "X Axis Format": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Bar Values": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ "" ], - "Please choose different metrics on left and right axis": [""], - "Please confirm": [""], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [""], - "Please filter set name": [""], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [""], - "Please save your chart first, then try creating a new email report.": [ + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "stream": [""], + "expand": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Continuous": [""], + "nvd3": [""], + "Series Limit Sort By": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [""], - "Plot the distance (like flight paths) between origin and destination.": [ + "Series Limit Sort Descending": [""], + "Whether to sort descending or ascending if a series limit is present": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ "" ], - "Plugins": ["플러그인"], - "Point Color": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Size": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polygon Encoding": [""], - "Polyline": [""], - "Pop Tab Link": [""], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Bar": [""], + "Vertical": [""], + "Box Plot": [""], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": [""], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter available values": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "Markers": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ "" ], - "Predictive": [""], - "Predictive Analytics": [""], - "Preview": ["데이터 미리보기"], - "Preview: `%s`": [""], - "Previous": [""], - "Previous Line": [""], - "Primary": [""], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Profile": ["프로필"], - "Profile picture provided by Gravatar": [""], - "Progress": [""], - "Progressive": [""], + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "" + ], + "Sort bars by x labels.": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "" + ], + "Bar Chart (legacy)": [""], + "Discrete": [""], "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": [""], - "Purple": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Value": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Do you want a donut or a pie?": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "" + ], "Put labels outside": [""], - "Put the labels outside of the pie?": [""], "Put the labels outside the pie?": [""], - "Put your code here": [""], - "Python datetime string pattern": [""], - "QUERY DATA IN SQL LAB": [""], - "Quarter": ["분기"], - "Query": [""], - "Query %s: %s": [""], - "Query History": ["Query 실행 이력"], - "Query history": ["Query 실행 이력"], - "Query in a new tab": [""], - "Query is too complex and takes too long to run.": [""], - "Query name": ["Query 검색"], - "Query preview": ["데이터 미리보기"], - "Query was stopped": [""], - "Query was stopped.": [""], - "RANGE TYPE": [""], - "RGB Color": [""], - "Radar": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radius in kilometers": [""], - "Radius in meters": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Ranking": [""], - "Raw records": [""], - "Ready to review filters in this dashboard?": [""], - "Rebuild": [""], - "Recent activity": [""], - "Recently created charts, dashboards, and saved queries will appear here": [ + "Frequency": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ + "Time-series Period Pivot": [""], + "Formula": [""], + "Stack": [""], + "Stream": [""], + "Expand": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Margin": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Right": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Recently modified": [""], - "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Percentage threshold": [""], + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Tooltip time format": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ "" ], - "Recents": [""], - "Recipients are separated by \",\" or \";\"": [""], - "Recommended tags": [""], - "Record Count": ["레코드 수"], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Referenced columns not available in DataFrame.": [""], - "Refetch results": ["검색 결과"], - "Refresh": ["새로고침 간격"], - "Refresh dashboard": ["대시보드 가져오기"], - "Refresh frequency": [""], - "Refresh interval": ["새로고침 간격"], - "Refresh table list": [""], - "Refresh the default values": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": [""], + "No data after filtering or data is NULL for the latest time record": [ "" ], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative period": [""], - "Relative quantity": [""], - "Remind me in 24 hours": [""], - "Remove": [""], - "Remove invalid filters": [""], - "Remove item": [""], - "Remove query from log": ["Query 로그 삭제"], - "Remove table preview": [""], - "Removed columns: %s": [""], - "Rename tab": [""], - "Rendering": [""], - "Replace": ["바꾸기"], - "Report Schedule could not be created.": [""], - "Report Schedule could not be deleted.": [""], - "Report Schedule could not be updated.": [""], - "Report Schedule delete failed.": [""], - "Report Schedule execution failed when generating a csv.": [""], - "Report Schedule execution failed when generating a dataframe.": [""], - "Report Schedule execution failed when generating a screenshot.": [""], - "Report Schedule execution got an unexpected error.": [""], - "Report Schedule is still working, refusing to re-compute.": [""], - "Report Schedule log prune failed.": [""], - "Report Schedule not found.": [""], - "Report Schedule parameters are invalid.": [""], - "Report Schedule reached a working timeout.": [""], - "Report Schedule state not found": [""], - "Report failed": [""], - "Report name": ["차트 유형"], - "Report schedule": [""], - "Report schedule client error": [""], - "Report schedule system error": [""], - "Report schedule unexpected error": [""], - "Report sending": [""], - "Report sent": ["대시보드 가져오기"], - "Reports": [""], - "Repulsion strength between nodes": [""], - "Request Permissions": [""], - "Request is incorrect: %(error)s": ["부적절한 요청입니다 : %(error)s"], - "Request is not JSON": [""], - "Request missing data field.": [""], - "Request timed out": [""], - "Required": [""], - "Required control values have been removed": [""], - "Resample": [""], - "Resample method should in ": [""], - "Resample operation requires DatetimeIndex": [""], - "Reset": [""], - "Reset state": [""], - "Resource already has an attached report.": [""], - "Restore Filter": [""], - "Results": ["결과"], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Try applying different filters or ensuring your datasource has data": [ "" ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": [""], - "Reverse lat/long ": [""], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right": [""], - "Right Axis Format": [""], - "Right axis metric": [""], - "Right to Left": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Big Number Font Size": [""], + "Small": [""], + "Normal": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Subheader": [""], + "Description text that shows up below your Big Number": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "" ], - "Role": ["역할"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ + "With a subheader": [""], + "Big Number": [""], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Roles": ["역할"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Fix to selected Time Range": [""], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "TEMPORAL X-AXIS": [""], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Roles to grant": ["권한 부여"], - "Rolling Function": [""], - "Rolling Window": [""], - "Rolling function": [""], - "Rolling window": [""], - "Root certificate": [""], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Round cap": [""], - "Row": [""], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Big Number with Trendline": [""], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Distribute across": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Bubble size number format": [""], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Row limit": [""], - "Rows": [""], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": [""], - "Rule": [""], - "Rule added": [""], - "Run": [""], - "Run a query to display query history": [""], - "Run a query to display results": [""], - "Run in SQL Lab": ["SQL Lab"], - "Run query": ["Query 실행"], - "Run query (Ctrl + Return)": [""], - "Run query in a new tab": ["새로운 탭에서 Query실행"], - "Run selection": [""], - "Running": [""], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": [""], - "SEP": [""], - "SHA": [""], - "SQL": [""], - "SQL Copied!": ["복사됨!"], - "SQL Expression": ["SQL 표현식"], - "SQL Lab": ["SQL Lab"], - "SQL Lab View": [""], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ "" ], - "SQL Query": ["Query 저장"], - "SQL expression": [""], - "SQL query": ["Query 저장"], - "SQLAlchemy URI": [""], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "STRING": [""], - "SUN": [""], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Sankey": [""], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite Streets": [""], - "Saturday": [""], - "Save": ["저장"], - "Save & Explore": [""], - "Save & go to dashboard": [""], - "Save (Overwrite)": ["저장된 Query"], - "Save as": [""], - "Save as new": ["다른이름으로 저장"], - "Save as new chart": ["새 차트 생성"], - "Save as:": ["다른이름으로 저장"], - "Save chart": ["차트 보기"], - "Save dashboard": ["대시보드 저장"], - "Save for this session": [""], - "Save or Overwrite Dataset": [""], - "Save query": ["Query 저장"], - "Save the query to enable this feature": [""], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["저장"], - "Saved Queries": ["저장된 Query"], - "Saved metric": ["저장된 Query"], - "Saved queries": ["저장된 Query"], - "Saved queries could not be deleted.": [""], - "Saved query not found.": ["저장된 쿼리를 찾을 수 없습니다."], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Schedule": [""], - "Schedule query": ["Query 공유"], - "Schedule settings": ["Query 공유"], - "Schedule the query periodically": [""], - "Scheduled": [""], - "Scheduled at (UTC)": [""], - "Schema": ["스키마"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "What should be shown as the label": [""], + "Tooltip Contents": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Whether to display the tooltip labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ "" ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": [""], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["검색"], - "Search / Filter": [""], - "Search Metrics & Columns": [""], - "Search all filter options": [""], - "Search by query text": [""], - "Search...": ["검색"], - "Second": ["초"], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Secure Extra": ["보안"], - "Secure extra": ["보안"], - "Security": ["보안"], - "Security & Access": [""], - "See all %(tableName)s": [""], - "See less": [""], - "See more": [""], - "See table schema": ["테이블 선택"], - "Select ...": [""], - "Select Delivery Method": [""], - "Select a Columnar file to be uploaded to a database.": [""], - "Select a Excel file to be uploaded to a database.": [""], - "Select a database table and create dataset": [""], - "Select a database to upload the file to": [""], - "Select a database to write a query": [""], - "Select a file to be uploaded to the database": [""], - "Select a schema if the database supports this": [""], - "Select a visualization type": [""], - "Select aggregate options": [""], - "Select any columns for metadata inspection": [""], - "Select color scheme": [""], - "Select database or type to search databases": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Sequential": [""], + "Columns to group by": [""], + "General": [""], + "Min": [""], + "Minimum value on the gauge axis": [""], + "Max": [""], + "Maximum value on the gauge axis": [""], + "Angle at which to start progress axis": [""], + "End angle": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Value format": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select operator": [""], - "Select or type a value": [""], - "Select or type dataset name": [""], - "Select owners": [""], - "Select schema or type to search schemas": [""], - "Select start and end date": ["데이터베이스 선택"], - "Select subject": [""], - "Select table or type to search tables": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Axis": [""], + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Split number": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Whether to show the progress of gauge chart": [""], + "Overlap": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Round cap": [""], + "Style the ends of the progress bar with a round cap": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ "" ], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Interval colors": [""], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": [""], - "Sequential": [""], - "Series": [""], - "Series Height": [""], - "Series Limit Sort By": [""], - "Series Limit Sort Descending": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": [""], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": ["새로고침 간격"], - "Set filter mapping": [""], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "Settings": [""], - "Settings for time series": [""], - "Share": ["Query 공유"], - "Share chart by email": [""], - "Share permalink by email": [""], - "Shared query": ["Query 공유"], - "Sheet Name": ["테이블 명"], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [""], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Category of target nodes": [""], + "Layout": [""], + "Graph layout": [""], + "Force": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": [""], + "Multiple": [""], + "Allow node selections": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Node size": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Edge width": [""], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ "" ], - "Show": [""], - "Show CREATE VIEW statement": [""], - "Show CSS Template": ["CSS 템플릿 보기"], - "Show Chart": ["차트 보기"], - "Show Column": ["컬럼 보기"], - "Show Dashboard": ["대시보드 보기"], - "Show Database": ["데이터베이스 보기"], - "Show Less...": [""], - "Show Log": ["컬럼 보기"], - "Show Markers": [""], - "Show Metric": ["메트릭 보기"], - "Show Saved Query": ["저장된 Query 보기"], - "Show Table": ["테이블 보기"], - "Show Timestamp": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion strength between nodes": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Structural": [""], + "Whether to sort descending or ascending": [""], + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary": [""], + "Primary or secondary y-axis": [""], + "Advanced analytics Query A": [""], + "Advanced analytics Query B": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Show info tooltip": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time grain dropdown": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Pie shape": [""], + "Outer Radius": [""], + "Outer edge of Pie chart": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "" - ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "" - ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Label position": [""], + "Radar": [""], + "Customize Metrics": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ "" ], - "Showing %s of %s": [""], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": [""], - "Skip Initial Space": [""], - "Skip Rows": [""], - "Skip blank lines rather than interpreting them as Not A Number values": [ + "The primary metric is used to define the arc segment sizes": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ "" ], - "Skip spaces after delimiter": [""], - "Slug": [""], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "When only a primary metric is provided, a categorical color scale is used.": [ "" ], - "Solid": [""], - "Some roles do not exist": ["몇몇 역할이 존재하지 않습니다"], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [""], - "Sorry there was an error fetching saved charts: ": [""], - "Sorry, An error occurred": [""], - "Sorry, an error occurred": [""], - "Sorry, an unknown error occurred": [""], - "Sorry, an unknown error occurred.": [""], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, there was an error saving this %s: %s": [""], - "Sorry, there was an error saving this dashboard: %s": [""], - "Sorry, your browser does not support copying.": [""], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], - "Sort": [""], - "Sort Descending": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": [""], - "Sort bars by x labels.": [""], - "Sort by": [""], - "Sort columns alphabetically": [""], - "Sort columns by": [""], - "Sort descending": [""], - "Sort metric": ["메트릭"], - "Sort rows by": [""], - "Sort series in ascending order": [""], - "Source": [""], - "Source SQL": [""], - "Sparkline": [""], - "Spatial": [""], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [""], - "Specify duplicate columns as \"X.0, X.1\".": [""], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ + "When a secondary metric is provided, a linear color scale is used.": [ "" ], - "Split number": [""], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["시작 시간"], - "Start (Longitude, Latitude): ": [""], - "Start Longitude & Latitude": [""], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "State": ["상태"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": ["상태"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Stop": ["중지"], - "Stop query": ["Query 저장"], - "Stop running (Ctrl + e)": [""], - "Stop running (Ctrl + x)": [""], - "Stopped an unsafe database connection": [""], - "Stream": [""], - "Streets": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [""], - "Stroke Width": [""], - "Structural": [""], - "Style": [""], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], - "Success": [""], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": [""], - "Sunday": [""], - "Superset Chart": [""], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["Superset 튜토리얼"], - "Superset dashboard": ["대시보드 저장"], - "Superset encountered an error while running a command.": [""], - "Survey Responses": [""], - "Swap rows and columns": [""], + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "zoom area": [""], + "restore zoom": [""], + "Area chart opacity": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Symbol": [""], - "Symbol of two ends of edge line": [""], - "Symbol size": [""], - "Sync columns from source": [""], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Axis Title": [""], + "AXIS TITLE MARGIN": [""], + "AXIS TITLE POSITION": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "TABLES": [""], - "TEMPORAL X-AXIS": [""], - "TEMPORAL_RANGE": [""], - "THU": [""], - "TUE": [""], - "Tab name": ["테이블 명"], - "Tab title": [""], - "Table": ["테이블"], - "Table %(table)s wasn't found in the database %(db)s": [""], - "Table Exists": ["테이블 존재"], - "Table Name": ["테이블 명"], - "Table View": ["테이블 뷰"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Orientation of bar chart": [""], + "Bar Charts are used to show metrics as a series of bars.": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ "" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Table loading": [""], - "Table name cannot contain a schema": [""], - "Table name undefined": ["테이블 명이 정해지지 않았습니다"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Tables": ["테이블"], - "Tabs": [""], - "Tabular": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Start": ["시작 시간"], + "End": ["끝 시간"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Template Name": ["템플릿 명"], - "Template parameters": [""], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ "" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Id": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Layout type of tree": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "right": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], + "Symbol": [""], + "Empty circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Pin": [""], + "Arrow": [""], + "Symbol size": [""], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Test Connection": ["연결 테스트"], - "Test connection": [""], - "Text": [""], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Key": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ "" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Treemap": ["트리맵"], + "Total": [""], + "Assist": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "Handlebars": [""], + "must have a value": [""], + "A handlebars template that is applied to the data": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "The access requests seem to have been deleted": [""], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "The chart does not exist": ["차트가 존재하지 않습니다"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "" - ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [""], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "" - ], - "The column header label": [""], - "The column was deleted or renamed in the database.": [""], - "The country code standard that Superset should expect to find in the [country] column": [ - "" - ], - "The dashboard has been saved": [""], - "The data source seems to have been deleted": [""], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "" - ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "" - ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [""], - "The database is under an unusual load.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "" - ], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "" - ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Ordering": [""], + "Order results by selected columns": [""], + "Sort descending": [""], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": [""], + "Columns to group by on the rows": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "The dataset has been saved": [""], - "The dataset linked to this chart may have been deleted.": [""], - "The datasource couldn't be loaded": [""], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Aggregation function": [""], + "Sum": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Maximum": [""], + "First": [""], + "Last": [""], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ "" ], - "The distance between cells, in pixels": [""], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "Show rows total": [""], + "Display row level total": [""], + "Display row level subtotal": [""], + "Display column level total": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ "" ], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "D3 time format for datetime columns": [""], + "Sort rows by": [""], + "key a-z": [""], + "key z-a": [""], + "value ascending": [""], + "value descending": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Sort columns by": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Pivot Table": ["피봇 테이블"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "No matching records found": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": [""], + "Timestamp format": [""], + "Page length": [""], + "Whether to include a client-side search box": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "The host might be down, and can't be reached on the provided port.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The hostname provided can't be resolved.": [""], - "The id of the active chart": [""], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ + "Show": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "random": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ + "N/A": [""], + "offline": [""], + "pending": [""], + "fetching": [""], + "running": [""], + "success": [""], + "The query couldn't be loaded": [""], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Your query could not be scheduled": [""], + "Failed at retrieving results": [""], + "Unknown error": ["알 수 없는 에러"], + "Query was stopped.": [""], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "Copy of %s": [""], + "An error occurred while setting the active tab. Please contact your administrator.": [ "" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "" + "An error occurred while fetching tab state": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "An error occurred while removing tab. Please contact your administrator.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "An error occurred while removing query. Please contact your administrator.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Your query could not be saved": [""], + "Your query was not properly saved": [""], + "Your query was saved": [""], + "Your query was updated": [""], + "Your query could not be updated": [""], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "The number of seconds before expiring the cache": [""], - "The object does not exist in the given database.": [""], - "The parameter %(parameters)s in your query is undefined.": [""], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "An error occurred while fetching table metadata. Please contact your administrator.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "An error occurred while expanding the table schema. Please contact your administrator.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "An error occurred while collapsing the table schema. Please contact your administrator.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "An error occurred while removing the table schema. Please contact your administrator.": [ "" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Shared query": ["Query 공유"], + "The datasource couldn't be loaded": [""], + "An error occurred while creating the data source": [""], + "An error occurred while fetching function names.": [""], + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "The pattern of timestamp format. For strings use ": [""], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Foreign key": [""], + "Estimate selected query cost": [""], + "Estimate cost": [""], + "Cost estimate": [""], + "Creating a data source and creating a new tab": [""], + "An error occurred": [""], + "Explore the result set in the data exploration view": [""], + "Source SQL": [""], + "Run query": ["Query 실행"], + "Stop query": ["Query 저장"], + "New tab": ["탭 닫기"], + "Previous Line": [""], + "Format SQL": [""], + "Keyboard shortcuts": [""], + "Run a query to display query history": [""], + "State": ["상태"], + "Duration": [""], + "Results": ["결과"], + "Actions": ["주석"], + "Success": [""], + "Failed": ["실패"], + "Running": [""], + "Fetching": [""], + "Offline": [""], + "Scheduled": [""], + "Unknown Status": [""], + "Edit": [""], + "Data preview": ["데이터 미리보기"], + "Overwrite text in the editor with a query on this table": [""], + "Run query in a new tab": ["새로운 탭에서 Query실행"], + "Remove query from log": ["Query 로그 삭제"], + "Unable to create chart without a query id.": [""], + "Save & Explore": [""], + "Overwrite & Explore": [""], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], + "Copy to Clipboard": [""], + "Filter results": ["검색 결과"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "The port is closed.": [""], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "The number of rows displayed is limited to %(rows)d by the query": [""], + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": [""], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "The query has a syntax error.": [""], - "The query returned no data": [""], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "%(rows)d rows returned": [""], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" + "Track job": [""], + "Query was stopped": [""], + "Database error": ["데이터베이스"], + "was created": [""], + "Query in a new tab": [""], + "The query returned no data": [""], + "Fetch data preview": [""], + "Refetch results": ["검색 결과"], + "Stop": ["중지"], + "Run selection": [""], + "Run": [""], + "Stop running (Ctrl + x)": [""], + "Stop running (Ctrl + e)": [""], + "Run query (Ctrl + Return)": [""], + "Save": ["저장"], + "An error occurred saving dataset": [""], + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": ["다른이름으로 저장"], + "Overwrite existing": [""], + "Select or type dataset name": [""], + "Are you sure you want to overwrite this dataset?": [""], + "Undefined": [""], + "Save as": [""], + "Save query": ["Query 저장"], + "Cancel": ["취소"], + "Update": [""], + "Label for your query": [""], + "Write a description for your query": [""], + "Submit": [""], + "Schedule query": ["Query 공유"], + "Schedule": [""], + "There was an error with your request": [""], + "Please save the query to enable sharing": [""], + "Copy query link to your clipboard": ["클립보드에 복사하기"], + "Save the query to enable this feature": [""], + "Copy link": [""], + "No stored results found, you need to re-run your query": [""], + "Run a query to display results": [""], + "Preview: `%s`": [""], + "Query history": ["Query 실행 이력"], + "Schedule the query periodically": [""], + "You must run the query successfully first": [""], + "Autocomplete": [""], + "CREATE TABLE AS": [""], + "CREATE VIEW AS": [""], + "Estimate the cost before running a query": [""], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Create": [""], + "Reset state": [""], + "Enter a new title for the tab": [""], + "Close tab": ["탭 닫기"], + "Rename tab": [""], + "Expand tool bar": [""], + "Hide tool bar": [""], + "Close all other tabs": [""], + "Duplicate tab": [""], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Copy partition query to clipboard": [""], + "latest partition:": [""], + "Keys for table": [""], + "View keys & indexes (%s)": [""], + "Original table column order": [""], + "Sort columns alphabetically": [""], + "Copy SELECT statement to the clipboard": ["클립보드에 복사하기"], + "Show CREATE VIEW statement": [""], + "CREATE VIEW statement": [""], + "Remove table preview": [""], + "Assign a set of parameters as": [""], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "syntax.": [""], + "Edit template parameters": [""], + "Parameters ": [""], + "Invalid JSON": [""], + "Untitled query": ["Query 공유"], + "%s%s": [""], + "Click to see difference": [""], + "Altered": [""], + "Chart changes": [""], + "Loaded data cached": [""], + "Loaded from cache": [""], + "Click to force-refresh": [""], + "Cached": [""], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The report has been created": [""], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The rich tooltip shows a list of all series for that point in time": [ + "An error occurred while loading the SQL": [""], + "Sorry, an error occurred": [""], + "Updating chart was stopped": [""], + "Network error.": [""], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "Cross-filtering is not enabled for this dashboard.": [""], + "You can't apply cross-filter on this data point.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "You do not have sufficient permissions to edit the chart": [""], + "Close": [""], + "Failed to load chart data.": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The schema was deleted or renamed in the database.": [""], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Drill to detail: %s": [""], + "No rows were returned for this dataset": [""], + "Copy": [""], + "Copy to clipboard": ["클립보드에 복사하기"], + "Copied to clipboard!": [""], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], + "every": [""], + "every month": ["월"], + "every day of the month": [""], + "day of the month": [""], + "every day of the week": [""], + "day of the week": [""], + "every hour": ["1시간"], + "minute": ["분"], + "reboot": [""], + "Every": [""], + "in": [""], + "on": [""], + "and": [""], + "at": [""], + ":": [""], + "Invalid cron expression": [""], + "Clear": [""], + "Sunday": [""], + "Monday": [""], + "Tuesday": [""], + "Wednesday": [""], + "Thursday": [""], + "Friday": [""], + "Saturday": [""], + "January": [""], + "February": [""], + "March": ["검색"], + "April": [""], + "May": ["일"], + "June": [""], + "July": [""], + "August": [""], + "September": [""], + "October": [""], + "November": [""], + "December": [""], + "SUN": [""], + "MON": [""], + "TUE": [""], + "WED": [""], + "THU": [""], + "FRI": [""], + "SAT": [""], + "JAN": [""], + "FEB": [""], + "MAR": [""], + "APR": [""], + "MAY": [""], + "JUN": [""], + "JUL": [""], + "AUG": [""], + "SEP": [""], + "OCT": [""], + "NOV": [""], + "DEC": [""], + "There was an error loading the schemas": [""], + "Select database or type to search databases": [""], + "Force refresh schema list": [""], + "Select schema or type to search schemas": [""], + "No compatible schema found": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "dataset": [""], + "Connection": [""], + "Warning!": [""], + "Search / Filter": [""], + "Add item": ["테이블 추가"], + "STRING": [""], + "BOOLEAN": [""], + "Physical (table or view)": [""], + "Virtual (SQL)": [""], + "Data type": ["차트 유형"], + "Advanced data type": [""], + "Advanced Data type": [""], + "Datetime format": [""], + "The pattern of timestamp format. For strings use ": [""], + "Python datetime string pattern": [""], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The table was deleted or renamed in the database.": [""], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Person or group that has certified this metric": [""], + "Certified by": ["수정됨"], + "Certification details": [""], + "Details of the certification": [""], + "Is dimension": [""], + "Default datetime": [""], + "Is filterable": ["필터"], + "Select owners": [""], + "Modified columns: %s": [""], + "Removed columns: %s": [""], + "New columns added: %s": [""], + "Metadata has been synced": [""], + "An error has occurred": [""], + "Column name [%s] is duplicated": [""], + "Metric name [%s] is duplicated": [""], + "Calculated column [%s] requires an expression": [""], + "Invalid currency code in saved metrics": [""], + "Basic": [""], + "Default URL": [""], + "Default URL to redirect to when accessing from the dataset list page": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Autocomplete filters": [""], + "Whether to populate autocomplete filters options": [""], + "Autocomplete query predicate": [""], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Cache timeout": [""], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ "" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Always filter main datetime column": [""], + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [""], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [""], - "The user/password combination is not valid (Incorrect password for user).": [ + "": [""], + "Click the lock to make changes.": [""], + "Click the lock to prevent further changes.": [""], + "virtual": [""], + "Dataset name": ["데이터소스 명"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "The width of the lines": [""], - "There are associated alerts or reports": [ - "관련된 알람이나 리포트가 있습니다" - ], - "There are associated alerts or reports: %s,": [""], - "There are no charts added to this dashboard": [""], - "There are no components added to this tab": [""], - "There are no databases available": [""], - "There are no filters in this dashboard.": [""], - "There are unsaved changes.": [""], - "There is no chart definition associated with this component, could it have been deleted?": [ + "Physical": [""], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "There was an error fetching tables": [""], - "There was an error fetching the favorite status: %s": [""], - "There was an error fetching your recent activity:": [""], - "There was an error loading the dataset metadata": [""], - "There was an error loading the schemas": [""], - "There was an error loading the tables": [""], - "There was an error saving the favorite status: %s": [""], - "There was an error with your request": [""], - "There was an issue deleting %s: %s": [""], - "There was an issue deleting the selected %s: %s": [""], - "There was an issue deleting the selected annotations: %s": [""], - "There was an issue deleting the selected charts: %s": [""], - "There was an issue deleting the selected dashboards: ": [""], - "There was an issue deleting the selected datasets: %s": [""], - "There was an issue deleting the selected layers: %s": [""], - "There was an issue deleting the selected queries: %s": [""], - "There was an issue deleting the selected templates: %s": [""], - "There was an issue deleting: %s": [""], - "There was an issue duplicating the dataset.": [""], - "There was an issue duplicating the selected datasets: %s": [""], - "There was an issue favoriting this dashboard.": [""], - "There was an issue fetching reports attached to this dashboard.": [""], - "There was an issue fetching the favorite status of this dashboard.": [ + "D3 format": [""], + "Metric currency": [""], + "Select or type currency symbol": [""], + "Warning": [""], + "Optional warning about use of this metric": [""], + "Be careful.": [""], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "There was an issue fetching your dashboards: %s": [""], - "There was an issue fetching your recent activity: %s": [""], - "There was an issue fetching your saved queries: %s": [""], - "There was an issue previewing the selected query %s": [""], - "There was an issue previewing the selected query. %s": [""], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Sync columns from source": [""], + "Calculated columns": ["컬럼 목록"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "These are the tables this filter will be applied to.": [""], - "These filters apply to the values available in the dropdowns": [""], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "": [""], + "Settings": [""], + "The dataset has been saved": [""], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Are you sure you want to save and apply changes?": [""], + "Confirm save": [""], + "OK": [""], + "Edit Dataset ": ["차트 수정"], + "Use legacy datasource editor": [""], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "This action will permanently delete %s.": [""], - "This action will permanently delete the layer.": [""], - "This action will permanently delete the saved query.": [""], - "This action will permanently delete the template.": [""], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "DELETE": [""], + "delete": ["삭제"], + "Type \"%s\" to confirm": [""], + "Click to edit": ["클릭하여 제목 수정하기"], + "You don't have the rights to alter this title.": [""], + "No databases match your search": [""], + "There are no databases available": [""], + "Unexpected error": [""], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": ["%s 에러"], + "Missing dataset": [""], + "See more": [""], + "See less": [""], + "Copy message": [""], + "Details": [""], + "Did you mean:": [""], + "Parameter error": [""], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": [""], + "Click to favorite/unfavorite": [""], + "Cell content": [""], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "OVERWRITE": [""], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": [""], + "Import": [""], + "Import %s": ["대시보드 가져오기"], + "Last Updated %s": [""], + "Sort": [""], + "+ %s more": [""], + "%s Selected": [""], + "Deselect all": ["테이블 선택"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "No Data": [""], + "%s-%s of %s": [""], + "Type a value": [""], + "Select or type a value": [""], + "Last modified": ["마지막 수정"], + "Modified by": ["수정됨"], + "Created by": ["생성자"], + "Created on": ["생성자"], + "Menu actions trigger": [""], + "Select ...": [""], + "Reset": [""], + "Expand row": [""], + "Collapse row": [""], + "Click to sort descending": [""], + "Click to cancel sorting": [""], + "There was an error loading the tables": [""], + "See table schema": ["테이블 선택"], + "Select table or type to search tables": [""], + "Force refresh table list": [""], + "You do not have permission to read tags": [""], + "Timezone selector": [""], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ "" ], + "Can not move top level tab into nested tabs": [""], "This chart has been moved to a different filter scope.": [""], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "There was an issue fetching the favorite status of this dashboard.": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "There was an issue favoriting this dashboard.": [""], + "This dashboard is now published": [""], + "You do not have permissions to edit this dashboard.": [""], + "This dashboard was saved successfully.": [""], + "Sorry, an unknown error occurred": [""], + "Sorry, there was an error saving this dashboard: %s": [""], + "You do not have permission to edit this dashboard": [""], + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Could not fetch all saved charts": [""], + "Sorry there was an error fetching saved charts: ": [""], + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "You have unsaved changes.": [""], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Create a new chart": ["새 차트 생성"], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Delete this container and save to remove this message.": [""], + "Refresh interval": ["새로고침 간격"], + "Refresh frequency": [""], + "Are you sure you want to proceed?": [""], + "Save for this session": [""], + "You must pick a name for the new dashboard": [""], + "Save dashboard": ["대시보드 저장"], + "Overwrite Dashboard [%s]": [""], + "Save as:": ["다른이름으로 저장"], + "[dashboard name]": [""], + "also copy (duplicate) charts": [""], + "recent": [""], + "Create new chart": ["새 차트 생성"], + "Filter your charts": [""], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Added": [""], + "Viz type": ["시각화 유형"], + "Dataset": ["데이터베이스"], + "Superset chart": ["Superset 튜토리얼"], + "Check out this chart in dashboard:": [""], + "Layout elements": [""], + "Load a CSS template": ["CSS 템플릿 불러오기"], + "Live CSS editor": [""], + "Collapse tab content": [""], + "There are no charts added to this dashboard": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "This dashboard is now published": [""], - "This dashboard is published. Click to make it a draft.": [""], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Deactivate": [""], + "Enable embedding": [""], + "Embed": [""], + "Applied cross-filters (%d)": [""], + "Applied filters (%d)": [""], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "Your dashboard is too large. Please reduce its size before saving it.": [ "" ], - "This dashboard was saved successfully.": [""], - "This database is managed externally, and can't be edited in Superset": [ - "" + "Redo the action": [""], + "Edit dashboard": [""], + "An error occurred while fetching available CSS templates": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." ], - "This database table does not contain any data. Please select a different table.": [ + "Superset dashboard": ["대시보드 저장"], + "Check out this dashboard: ": [""], + "Refresh dashboard": ["대시보드 가져오기"], + "Exit fullscreen": [""], + "Enter fullscreen": [""], + "Edit properties": [""], + "Edit CSS": ["CSS 수정"], + "Download": [""], + "Download as Image": [""], + "Share": ["Query 공유"], + "Share permalink by email": [""], + "Set filter mapping": [""], + "Set auto-refresh interval": ["새로고침 간격"], + "Confirm overwrite": [""], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Are you sure you intend to overwrite the following values?": [""], + "Apply": [""], + "A valid color scheme is required": [""], + "JSON metadata is invalid!": [""], + "The dashboard has been saved": [""], + "Access": [""], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "Colors": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [""], - "This defines the level of the hierarchy": [""], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Dashboard properties": ["대시보드"], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ + "Basic information": [""], + "URL slug": [""], + "A readable URL for your dashboard": [""], + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": [""], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "This dashboard is published. Click to make it a draft.": [""], + "Draft": [""], + "Annotation layers are still loading.": [""], + "One ore more annotation layers failed loading.": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], + "Data refreshed": [""], + "Cached %s": [""], + "Fetched %s": [""], + "Query %s: %s": [""], + "Force refresh": [""], + "View query": ["Query 공유"], + "Share chart by email": [""], + "Check out this chart: ": [""], + "Export to .CSV": [""], + "Export to Excel": [""], + "Export to full .CSV": [""], + "Export to full Excel": [""], + "Download as image": [""], + "Something went wrong.": [""], + "Search...": ["검색"], + "No filter is selected.": [""], + "Editing 1 filter:": [""], + "Batch editing %d filters:": [""], + "Configure filter scopes": [""], + "There are no filters in this dashboard.": [""], + "Expand all": [""], + "Collapse all": [""], "This markdown component has an error.": [""], "This markdown component has an error. Please revert your recent changes.": [ "" ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ + "Empty row": [""], + "You can": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "Delete dashboard tab?": ["대시보드"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "This section contains options that allow for advanced analytical post processing of query results": [ + "undo": [""], + "button (cmd + z) until you save your changes.": [""], + "CANCEL": [""], + "Divider": [""], + "Header": [""], + "Text": [""], + "Tabs": [""], + "background": [""], + "Preview": ["데이터 미리보기"], + "Sorry, something went wrong. Try again later.": [""], + "No filters are currently added to this dashboard.": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Clear all": [""], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Cross-filtering is not enabled in this dashboard": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type is not supported.": ["시각화 유형 선택"], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": [""], - "Time": [""], - "Time Grain": [""], - "Time Granularity": [""], - "Time Lag": [""], - "Time Range": [""], - "Time Series - Bar Chart": [""], - "Time Series - Line Chart": [""], - "Time Series - Nightingale Rose Chart": [""], - "Time Series - Paired t-test": [""], - "Time Series - Percent Change": [""], - "Time Series - Period Pivot": [""], - "Time Series - Stacked": [""], - "Time Shift": [""], - "Time Table View": ["시간 테이블 뷰"], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": ["컬럼 수정"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "All charts": ["차트 추가"], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "Cannot load filter": [""], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Scope": [""], + "(Removed)": [""], + "Undo?": [""], + "Add filters and dividers": [""], + "[untitled]": [""], + "Cyclic dependency detected": [""], + "No compatible columns found": [""], + "No compatible datasets found": [""], + "(deleted or invalid type)": [""], + "Add filter": ["테이블 추가"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ "" ], - "Time grain": [""], - "Time grain filter plugin": [""], - "Time grain missing": [""], - "Time granularity": [""], - "Time in seconds": ["10초"], - "Time lag": [""], + "Values dependent on": [""], + "Scoping": [""], + "Filter Configuration": [""], + "Numerical range": [""], "Time range": [""], - "Time related form attributes": [""], - "Time series columns": ["컬럼 수정"], - "Time shift": [""], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Time grain": [""], + "Group By": [""], + "Group by": [""], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["필터"], + "Name is required": [""], + "Filter Type": [""], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Sort ascending": [""], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "Time-series Period Pivot": [""], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Sort metric": ["메트릭"], + "Single value type": [""], + "Exact": [""], + "Filter has default value": [""], + "Default Value": [""], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": [""], + "Restore Filter": [""], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ "" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Default value must be set when \"Filter value is required\" is checked": [ "" ], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "Time-series Table": ["시계열 테이블"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Apply to all panels": [""], + "Apply to specific panels": [""], + "Only selected panels will be affected by this filter": [""], + "All panels with this column will be affected by this filter": [""], + "All panels": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "Timeout error": [""], - "Timestamp format": [""], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [""], - "Timezone selector": [""], - "Title": ["제목"], - "Title or Slug": [""], - "To filter on a metric, use Custom SQL tab.": [""], - "To get a readable URL for your dashboard": [""], - "Tooltip": [""], - "Tooltip time format": [""], - "Top right": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": [""], - "Totals": [""], - "Track job": [""], - "Transformable": [""], + "Keep editing": [""], + "Yes, cancel": [""], + "There are unsaved changes.": [""], + "Are you sure you want to cancel?": [""], + "Error loading chart datasources. Filters may not work correctly.": [""], "Transparent": [""], - "Transpose pivot": [""], - "Tree layout": [""], - "Treemap": ["트리맵"], - "Trend": [""], - "Triangle": [""], - "Trigger Alert If...": [""], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "All filters": ["필터"], + "Medium": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ + "Equal to (=)": [""], + "Not equal to (≠)": [""], + "Less than (<)": [""], + "Less or equal (<=)": [""], + "Greater than (>)": [""], + "Greater or equal (>=)": [""], + "Like": [""], + "Like (case insensitive)": [""], + "Is not null": [""], + "Is null": [""], + "use latest_partition template": [""], + "Is true": [""], + "TEMPORAL_RANGE": [""], + "Time granularity": [""], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ + "One or many metrics to display": [""], + "Fixed color": [""], + "Right axis metric": [""], + "Choose a metric for right axis": [""], + "Linear color scheme": [""], + "Color metric": [""], + "One or many controls to pivot as columns": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": [""], - "Type": ["타입"], - "Type \"%s\" to confirm": [""], - "Type a value": [""], - "Type a value here": [""], - "Type is required": [""], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": [""], - "UI Configuration": [""], - "URL": [""], - "URL Parameters": [""], - "URL parameters": [""], - "URL slug": [""], - "Unable to add a new tab to the backend. Please contact your administrator.": [ + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [""], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "" - ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Metric assigned to the [X] axis": [""], + "Metric assigned to the [Y] axis": [""], + "Bubble size": [""], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Color scheme": [""], + "Chart [%s] has been overwritten": [""], + "Dashboard [%s] just got created and chart [%s] was added to it": [""], + "Chart [%s] was added to dashboard [%s]": [""], + "GROUP BY": [""], + "Use this section if you want a query that aggregates": [""], + "NOT GROUPED BY": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "Undefined": [""], - "Undefined window for rolling operation": [""], - "Undo?": [""], - "Unexpected error": [""], - "Unexpected error occurred, please check your logs for details": [""], - "Unexpected error: ": [""], - "Unexpected time range: %s": [""], - "Unknown": [""], - "Unknown MySQL server host \"%(hostname)s\".": [""], - "Unknown Presto Error": [""], - "Unknown Status": [""], - "Unknown error": ["알 수 없는 에러"], - "Unknown input format": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [""], - "Unsafe template value for key %(key)s: %(value_type)s": [""], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [""], - "Unsupported return value for method %(name)s": [""], - "Unsupported template value for key %(key)s": [""], - "Unsupported time grain: %(time_grain)s": [""], - "Untitled query": ["Query 공유"], - "Update": [""], - "Updating chart was stopped": [""], - "Upload": ["CSV 업로드"], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file to database": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "Clear form": [""], + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [""], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ + "Customize": [""], + "Generating link, please wait..": [""], + "Save (Overwrite)": ["저장된 Query"], + "Chart name": ["차트 유형"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["대시보드 추가"], + " a new one": [""], + "Save & go to dashboard": [""], + "Save chart": ["차트 보기"], + "Expand data panel": [""], + "No samples were returned for this dataset": [""], + "Search Metrics & Columns": [""], + " to edit or add columns and metrics.": [""], + "Showing %s of %s": [""], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], + "Unable to retrieve dashboard colors": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Use the edit button to change this field": [""], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [""], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Not available": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "User": ["사용자"], - "User Roles": ["사용자 권한"], - "User doesn't have the proper permissions.": [""], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [""], - "User query": ["Query 공유"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Controls labeled ": [""], + "Control labeled ": [""], + "Open Datasource tab": ["데이터소스 명"], + "You do not have permission to edit this chart": [""], + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Person or group that has certified this chart.": [""], + "Configuration": [""], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "A list of users who can alter the chart. Searchable by name or username.": [ "" ], - "Value": [""], - "Value Domain": [""], - "Value Format": [""], - "Value bounds": [""], - "Value format": [""], - "Value must be greater than 0": ["값은 0보다 커야합니다"], - "Values are dependent on other filters": [""], - "Values dependent on": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ + "Limit reached": [""], + "Invalid lat/long configuration.": [""], + "Reverse lat/long ": [""], + "Longitude & Latitude columns": [""], + "Delimited long & lat single column": [""], + "Multiple formats accepted, look the geopy.points Python library for more details": [ "" ], - "Vehicle Types": [""], - "Verbose Name": [""], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View All »": [""], - "View in SQL Lab": ["SQL Lab"], - "View keys & indexes (%s)": [""], - "View query": ["Query 공유"], - "Viewed": [""], - "Viewport": [""], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset": ["차트 수정"], - "Virtual dataset query cannot be empty": [""], - "Virtual dataset query cannot consist of multiple statements": [""], - "Virtual dataset query must be read-only": [ - "가상 데이터셋 쿼리는 읽기 전용이어야 합니다" - ], - "Visual Tweaks": [""], - "Visualization Type": ["시각화 유형"], - "Visualization type": ["시각화 유형"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Geohash": [""], + "textarea": [""], + "in modal": [""], + "Sorry, An error occurred": [""], + "Open in SQL Lab": ["SQL Lab"], + "Failed to verify select options: %s": [""], + "Annotation layer": ["주석 레이어"], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Annotation Slice Configuration": [""], + "This section allows you to configure how to use the slice\n to generate annotations.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "This column must contain date/time information.": [""], + "Pick a title for you annotation.": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Override time range": [""], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Override time grain": [""], + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Display configuration": [""], + "Configure your how you overlay is displayed here.": [""], + "Style": [""], + "Solid": [""], + "Long dashed": [""], + "Color": [""], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hide Line": [""], + "Hides the Line for the time series": [""], + "Layer configuration": [""], + "Configure the basics of your Annotation Layer.": [""], + "Mandatory": [""], + "Hide layer": [""], + "Whether to always show the annotation label": [""], + "Annotation layer type": ["주석 레이어"], + "Choose the annotation layer type": ["주석 레이어"], + "Choose the source of your annotations": [""], + "Remove": [""], + "Edit annotation layer": ["주석 레이어"], + "Add annotation layer": ["주석 레이어"], + "Remove item": [""], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "dashboard": ["대시보드"], + "Select color scheme": [""], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Min Width": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Viz is missing a datasource": [""], - "Viz type": ["시각화 유형"], - "WED": [""], - "Want to add a new database?": [""], - "Warning": [""], - "Warning Message": ["경고 메시지"], - "Warning!": [""], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Edit formatter": [""], + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": [""], + "success dark": [""], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": [""], + "Color: ": [""], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The width of the Isoline in pixels": [""], + "The color of the isoline": [""], + "Isoband": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["차트 수정"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Was unable to check your query": [""], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "View in SQL Lab": ["SQL Lab"], + "Query preview": ["데이터 미리보기"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [""], + "RANGE TYPE": [""], + "Actual time range": [""], + "APPLY": [""], + "Edit time range": [""], + "Configure Advanced Time Range ": [""], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "End date excluded from time range": [""], + "Configure Time Range: Previous...": [""], + "Configure Time Range: Last...": [""], + "Configure custom time range": [""], + "Relative quantity": [""], + "Relative period": [""], + "Anchor to": [""], + "NOW": [""], + "Date/Time": ["시작 시간"], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": [""], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": [""], + "Custom": [""], + "last day": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Now": [""], + "Midnight": [""], + "Saved": ["저장"], + "%s column(s)": [""], + "No temporal columns found": [""], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ "" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "%s option(s)": [""], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "To filter on a metric, use Custom SQL tab.": [""], + "%s operator(s)": [""], + "Select operator": [""], + "Comparator option": [""], + "Type a value here": [""], + "Filter value (case sensitive)": [""], + "Failed to retrieve advanced type": [""], + "choose WHERE or HAVING...": [""], + "Filters by columns": ["컬럼 목록"], + "Filters by metrics": ["필터"], + "Fixed": [""], + "Based on a metric": [""], + "My metric": ["메트릭"], + "Add metric": ["메트릭"], + "Select aggregate options": [""], + "%s aggregates(s)": [""], + "%s saved metric(s)": [""], + "Saved metric": ["저장된 Query"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": ["컬럼 추가"], + "aggregate": [""], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Time series columns": ["컬럼 수정"], + "Sparkline": [""], + "Period average": [""], + "The column header label": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": [""], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Time lag": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "Web": [""], - "Wednesday": [""], - "Week": ["주"], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "Weight": [""], - "What should be shown on the label?": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Time Lag": [""], + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "When a secondary metric is provided, a linear color scale is used.": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Number format string": [""], + "Column Configuration": [""], + "Currently rendered: %s": [""], + "Recommended tags": [""], + "No description available.": [""], + "Examples": [""], + "This visualization type is not supported.": ["시각화 유형 선택"], + "Select a visualization type": [""], + "No results found": [""], + "Superset Chart": [""], + "New chart": ["차트 이동"], + "Edit chart properties": [""], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["SQL Lab"], + "Code": [""], + "Markup type": [""], + "Pick your favorite markup language": [""], + "Put your code here": [""], + "URL parameters": [""], + "Extra parameters for use in jinja templated queries": [""], + "Annotations and layers": ["주석 레이어"], + "Annotation layers": ["주석 레이어"], + "My beautiful colors": [""], + "< (Smaller than)": [""], + "> (Larger than)": [""], + "<= (Smaller or equal)": [""], + ">= (Larger or equal)": [""], + "== (Is equal)": [""], + "!= (Is not equal)": [""], + "Not null": [""], + "60 days": [""], + "90 days": [""], + "Add notification method": [""], + "Add delivery method": [""], + "Add": [""], + "Edit Report": [""], + "Add Report": [""], + "Report name": ["차트 유형"], + "Alert name": ["테이블 명"], + "Active": [""], + "Alert condition": [""], + "SQL Query": ["Query 저장"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": [""], + "Report schedule": [""], + "Alert condition schedule": [""], + "Timezone": [""], + "Schedule settings": ["Query 공유"], + "Log retention": [""], + "Working timeout": [""], + "Time in seconds": ["10초"], + "Grace period": [""], + "Message content": [""], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Ignore cache when generating report": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["주석 레이어"], + "report": [""], + "%s updated": [""], + "CRON Schedule": [""], + "CRON expression": [""], + "Report sent": ["대시보드 가져오기"], + "Alert triggered, notification sent": [""], + "Report sending": [""], + "Alert running": [""], + "Report failed": [""], + "Alert failed": ["테이블 명"], + "Nothing triggered": [""], + "Alert Triggered, In Grace Period": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [""], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["주석 레이어"], + "Edit annotation layer properties": ["주석 레이어"], + "Annotation layer name": ["주석 레이어"], + "Description (this can be seen in the list)": [""], + "annotation": ["주석"], + "Edit annotation": ["주석"], + "Add annotation": ["주석"], + "date": [""], + "Additional information": ["주석"], + "Please confirm": [""], + "Are you sure you want to delete": [""], + "css_template": [""], + "Edit CSS template properties": ["CSS 템플릿"], + "Add CSS template": ["CSS 템플릿"], + "css": [""], + "published": [""], + "draft": [""], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ "" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "When using 'Group By' you are limited to use a single metric": [ - "'Group By'를 사용 할 때 오직 하나의 메트릭만 사용 가능합니다" - ], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["차트 유형"], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ "" ], - "Whether to align background charts with both positive and negative values at 0": [ + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ "" ], - "Whether to align positive and negative values in cell bar chart at 0": [ + "Asynchronous query execution": [""], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "Secure extra": ["보안"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ "" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a client-side search box": [""], - "Whether to include a time filter": [""], - "Whether to include the percentage in the tooltip": [""], - "Whether to include the time granularity as defined in the time section": [ + "Allow file uploads to database": [""], + "Schemas allowed for File upload": [""], + "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Metadata Parameters": [""], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [""], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Engine Parameters": [""], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort ascending or descending on the base Axis.": [""], - "Whether to sort descending or ascending": [""], - "Whether to sort descending or ascending if a series limit is present": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Whether to sort results by the selected metric in descending order.": [ + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "e.g. Analytics": [""], + "Login with": [""], + "Private Key & Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "for more information on how to structure your URI.": [""], + "Test connection": [""], + "database": ["데이터베이스"], + "Please enter a SQLAlchemy URI to test": [""], + "e.g. world_population": [""], + "Sorry there was an error fetching database information: %s": [""], + "Or choose from a list of other databases we support:": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "Width": [""], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Working": [""], - "Working timeout": [""], - "World Map": [""], - "Write a description for your query": [""], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [""], - "Write dataframe index as a column.": [""], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": [""], - "X Axis Format": [""], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort Ascending": [""], - "X-Axis Sort By": [""], - "X-axis": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": [""], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": [""], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort Ascending": [""], - "Y-Axis Sort By": [""], - "Y-axis": [""], - "Y-axis bounds": [""], - "Year": ["년"], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Yes": [""], - "Yes, cancel": [""], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Connect": [""], + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "QUERY DATA IN SQL LAB": [""], + "Edit database": ["차트 수정"], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "You can": [""], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "Add additional custom parameters": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Enter a name for this sheet": [""], + "Paste the shareable Google Sheet URL here": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "Duplicate": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You do not have permission to edit this %s": [""], - "You do not have permission to edit this chart": [""], - "You do not have permission to edit this dashboard": [""], - "You do not have permissions to access the datasource(s): %(name)s.": [ + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "You do not have permissions to edit this dashboard.": [""], - "You don't have access to this chart.": [""], - "You don't have access to this dashboard.": [""], - "You don't have access to this dataset.": [""], - "You don't have access to this embedded dashboard config.": [""], - "You don't have any favorites yet!": [""], - "You don't have permission to modify the value.": [""], - "You don't have the rights to alter %(resource)s": [""], - "You don't have the rights to alter this chart": [""], - "You don't have the rights to alter this dashboard": [""], - "You don't have the rights to alter this title.": [""], - "You don't have the rights to create a chart": [""], - "You don't have the rights to create a dashboard": [""], - "You don't have the rights to download as csv": [""], - "You have no permission to approve this request": [""], - "You have removed this filter.": [""], - "You have unsaved changes.": [""], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "You must pick a name for the new dashboard": [""], - "You must run the query successfully first": [""], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "An Error Occurred": [""], + "Unable to load columns for the selected table. Please select a different table.": [ "" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ + "Create chart with dataset": [""], + "chart": [""], + "No charts": [""], + "This dataset is not used to power any charts.": [""], + "Select a database table and create dataset": [""], + "There was an error loading the dataset metadata": [""], + "[Untitled]": [""], + "Unknown": [""], + "Edited": ["테이블 수정"], + "Created": ["생성자"], + "Viewed": [""], + "Favorite": [""], + "Mine": [""], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "recents": [""], + "No recents yet": [""], + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "%(other)s saved queries will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ "" ], - "Your query could not be saved": [""], - "Your query could not be scheduled": [""], - "Your query could not be updated": [""], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Recently created charts, dashboards, and saved queries will appear here": [ "" ], - "Your query was not properly saved": [""], - "Your query was saved": [""], - "Your query was updated": [""], - "Zoom": [""], - "Zoom level of the map": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [""], - "[Longitude] and [Latitude] must be set": [""], - "[Missing Dataset]": [""], - "[Superset] Access to the datasource %(name)s was granted": [""], - "[Untitled]": [""], - "[asc]": [""], - "[copy]": [""], - "[dashboard name]": [""], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "Recently edited charts, dashboards, and saved queries will appear here": [ "" ], - "[untitled]": [""], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [""], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "SQL query": ["Query 저장"], + "You don't have any favorites yet!": [""], + "See all %(tableName)s": [""], + "Connect Google Sheet": [""], + "Upload columnar file to database": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ "" ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": [""], - "alert": [""], - "alerts": [""], - "all": [""], - "also copy (duplicate) charts": [""], - "ancestor": [""], - "and": [""], - "annotation": ["주석"], - "annotation_layer": ["주석 레이어"], - "asfreq": [""], - "at": [""], - "auto (Smooth)": [""], - "background": [""], - "basis": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": [""], - "boolean type icon": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "chart": [""], - "choose WHERE or HAVING...": [""], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["컬럼 추가"], - "connecting to %(dbModelName)s.": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "cumulative": [""], - "dashboard": ["대시보드"], - "database": ["데이터베이스"], - "dataset": [""], - "date": [""], - "day": ["일"], - "day of the month": [""], - "day of the week": [""], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deckGL": [""], - "delete": ["삭제"], - "descendant": [""], - "description": [""], - "dialect+driver://username:password@host:port/database": [""], - "draft": [""], - "dttm": ["날짜/시간"], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. Analytics": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "error dark": [""], - "every": [""], - "every day of the month": [""], - "every day of the week": [""], - "every hour": ["1시간"], - "every month": ["월"], - "expand": [""], - "fetching": [""], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "Info": ["정보"], + "Logout": ["로그아웃"], + "About": [""], + "Powered by Apache Superset": [""], + "SHA": [""], + "Build": [""], + "Login": ["로그인"], + "query": ["Query 공유"], + "Deleted: %s": ["삭제"], + "There was an issue deleting %s: %s": [""], + "This action will permanently delete the saved query.": [""], + "Delete Query?": ["삭제"], + "Ran %s": [""], + "Saved queries": ["저장된 Query"], + "Next": [""], + "Tab name": ["테이블 명"], + "User query": ["Query 공유"], + "Executed query": ["저장된 Query 수정"], + "Query name": ["Query 검색"], + "SQL Copied!": ["복사됨!"], + "Sorry, your browser does not support copying.": [""], + "There was an issue fetching reports attached to this dashboard.": [""], + "The report has been created": [""], + "We were unable to active or deactivate this report.": [""], + "Weekly Report for %s": [""], + "Weekly Report": [""], + "Edit email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Email reports active": [""], + "Delete email report": [""], + "This action will permanently delete %s.": [""], + "Rule added": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], - "flat": [""], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "hour": ["시간"], - "id": [""], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "These are the datasets this filter will be applied to.": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "" ], - "in": [""], - "in modal": [""], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": [""], - "json isn't valid": [""], - "key a-z": [""], - "key z-a": [""], - "last day": [""], - "latest partition:": [""], - "less than {min} {name}": [""], - "log": [""], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "Group Key": [""], + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ "" ], - "max": [""], - "mean": [""], - "median": [""], - "minute": ["분"], - "month": ["월"], - "more than {max} {name}": [""], - "must have a value": [""], - "no SQL validator is configured": [""], - "no SQL validator is configured for {}": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "offline": [""], - "on": [""], - "or use existing ones from the panel on the right": [""], - "overall": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "pending": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "Clause": [""], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ "" ], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": [""], - "query": ["Query 공유"], - "random": [""], - "reboot": [""], - "recent": [""], - "recents": [""], - "report": [""], + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" + ], + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Add description of your tag": [""], + "Chosen non-numeric column": [""], + "UI Configuration": [""], + "User must select a value before applying the filter": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [""], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "" + ], + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "No time columns": [""], + "Time column filter plugin": [""], + "Time grain filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], "reports": [""], - "restore zoom": [""], - "right": [""], - "running": [""], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "alerts": [""], + "There was an issue deleting the selected %s: %s": [""], + "Last run": [""], + "Execution log": [""], + "Bulk select": [""], + "No %s yet": [""], + "Owner": [""], + "All": [""], + "Status": ["상태"], + "An error occurred while fetching dataset datasource values: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "Alerts & reports": [""], + "Alerts": ["경고"], + "Reports": [""], + "Delete %s?": ["삭제"], + "Are you sure you want to delete the selected %s?": [""], + "There was an issue deleting the selected layers: %s": [""], + "Edit template": ["템플릿 불러오기"], + "Delete template": ["템플릿 불러오기"], + "No annotation layers yet": ["주석 레이어"], + "This action will permanently delete the layer.": [""], + "Delete Layer?": ["삭제"], + "Are you sure you want to delete the selected layers?": [""], + "There was an issue deleting the selected annotations: %s": [""], + "Delete annotation": ["주석"], + "Annotation": ["주석"], + "No annotation yet": ["주석 레이어"], + "Back to all": [""], + "Are you sure you want to delete %s?": [""], + "Delete Annotation?": ["주석"], + "Are you sure you want to delete the selected annotations?": [""], + "Failed to load chart data": [""], + "Choose a dataset": ["데이터소스 선택"], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "stack": [""], - "staggered": [""], - "std": [""], - "step-before": [""], - "stream": [""], - "string type icon": [""], - "success": [""], - "success dark": [""], - "sum": [""], - "syntax.": [""], + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "There was an issue deleting the selected charts: %s": [""], + "Any": [""], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [""], + "Alphabetical": [""], + "Recently modified": [""], + "Least recently modified": [""], + "Are you sure you want to delete the selected charts?": [""], + "CSS templates": ["CSS 템플릿"], + "There was an issue deleting the selected templates: %s": [""], + "CSS template": ["CSS 템플릿"], + "This action will permanently delete the template.": [""], + "Delete Template?": ["CSS 템플릿"], + "Are you sure you want to delete the selected templates?": [""], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "There was an issue deleting the selected dashboards: ": [""], + "An error occurred while fetching dashboard owner values: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "Are you sure you want to delete the selected dashboards?": [""], + "An error occurred while fetching database related data: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "AQE": [""], + "Allow data manipulation language": [""], + "DML": [""], + "CSV upload": ["CSV 업로드"], + "Delete database": ["데이터베이스 선택"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "" + ], + "Delete Database?": ["데이터베이스 선택"], + "An error occurred while fetching dataset related data": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "An error occurred while fetching dataset related data: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "Physical dataset": ["데이터소스 선택"], + "Virtual dataset": ["차트 수정"], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "An error occurred while fetching schema values: %s": [""], + "An error occurred while fetching dataset owner values: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "There was an issue deleting the selected datasets: %s": [""], + "There was an issue duplicating the dataset.": [""], + "There was an issue duplicating the selected datasets: %s": [""], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "" + ], + "Delete Dataset?": [""], + "Are you sure you want to delete the selected datasets?": [""], + "0 Selected": ["테이블 선택"], + "%s Selected (Virtual)": [""], + "%s Selected (Physical)": [""], + "%s Selected (%s Physical, %s Virtual)": [""], + "log": [""], + "Execution ID": [""], + "Scheduled at (UTC)": [""], + "Error message": [""], + "There was an issue fetching your recent activity: %s": [""], + "There was an issue fetching your dashboards: %s": [""], + "There was an issue fetching your saved queries: %s": [""], + "Thumbnails": [""], + "Recents": [""], + "There was an issue previewing the selected query. %s": [""], + "TABLES": [""], + "Open query in SQL Lab": ["새로운 탭에서 Query실행"], + "An error occurred while fetching database values: %s": [ + "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + ], + "Search by query text": [""], + "Are you sure you want to delete the selected rules?": [""], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "There was an issue previewing the selected query %s": [""], + "Link Copied!": ["복사됨!"], + "There was an issue deleting the selected queries: %s": [""], + "Edit query": ["저장된 Query 수정"], + "Copy query URL": [""], + "Delete query": ["삭제"], + "Are you sure you want to delete the selected queries?": [""], "tag": [""], - "temporal type icon": [""], - "textarea": [""], - "undo": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Are you sure you want to delete the selected tags?": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "use latest_partition template": [""], - "value ascending": [""], - "value descending": [""], - "var": [""], - "variance": [""], - "virtual": [""], - "was created": [""], - "week": ["주"], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["년"], - "zoom area": [""] + "Invalid input": [""], + "Unexpected error: ": [""], + "(no description, click to see stack trace)": [""], + "Sorry, an unknown error occurred.": [""], + "Sorry, there was an error saving this %s: %s": [""], + "You do not have permission to edit this %s": [""], + "Request timed out": [""], + "Issue 1001 - The database is under an unusual load.": [""], + "Please re-export your file and try importing again": [""], + "There was an error fetching the favorite status: %s": [""], + "There was an error saving the favorite status: %s": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [""], + "There was an issue deleting: %s": [""], + "URL": [""], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "" + ], + "Time-series Table": ["시계열 테이블"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/ko/LC_MESSAGES/messages.po b/superset/translations/ko/LC_MESSAGES/messages.po index 16cb93d2956ea..20521a050145c 100644 --- a/superset/translations/ko/LC_MESSAGES/messages.po +++ b/superset/translations/ko/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2019-02-02 22:28+0900\n" "Last-Translator: \n" "Language: ko\n" @@ -28,19818 +28,19850 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " +#: superset/errors.py:101 +#, fuzzy +msgid "The datasource is too large to query." +msgstr "이슈 1000 - 데이터 소스가 쿼리하기에 너무 큽니다." + +#: superset/errors.py:102 +msgid "The database is under an unusual load." msgstr "" -#: superset/reports/notifications/email.py:89 -#, python-format +#: superset/errors.py:103 +#, fuzzy +msgid "The database returned an unexpected error." +msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했습니다." + +#: superset/errors.py:104 +#, fuzzy msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." +msgstr "이슈 1003 - SQL 쿼리에 문법 오류가 있습니다. 오탈자가 있는지 확인하세요." -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 -msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "대시보드 저장" +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -msgid " a new one" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:112 +msgid "The port is closed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 +#: superset/errors.py:115 #, fuzzy -msgid " to add calculated columns" -msgstr "컬럼 목록" +msgid "Superset encountered an unexpected error." +msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했습니다." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -#, fuzzy -msgid " to add metrics" -msgstr "메트릭" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:127 +msgid "" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +#: superset/errors.py:138 +msgid "The query has a syntax error." msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s 에러" +#: superset/errors.py:141 +msgid "" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "비밀번호" +#: superset/errors.py:145 +#, fuzzy +msgid "The port number is invalid." +msgstr "차트의 파라미터가 부적절합니다." -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/errors.py:147 +#, fuzzy +msgid "The database was deleted." +msgstr "데이터베이스를 삭제할 수 없습니다." + +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/forms.py:72 #, python-format -msgid "%s Selected (Physical)" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/jinja_context.py:344 #, python-format -msgid "%s Selected (Virtual)" +msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/jinja_context.py:355 #, python-format -msgid "%s aggregates(s)" +msgid "Unsupported return value for method %(name)s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#: superset/jinja_context.py:371 #, python-format -msgid "%s column(s)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#: superset/jinja_context.py:382 #, python-format -msgid "%s operator(s)" +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#: superset/sql_lab.py:302 #, python-format -msgid "%s option(s)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s 에러" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, python-format -msgid "%s updated" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/sql_lab.py:488 #, python-format -msgid "%s%s" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/sql_lab.py:510 #, python-format -msgid "%s-%s of %s" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "시작 날짜가 끝 날짜보다 클 수 없습니다" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "캐시된 값을 찾을 수 없습니다." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" + +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "시간 테이블 뷰" + +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "적어도 하나의 메트릭을 선택하세요" + +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "'Group By'를 사용 할 때 오직 하나의 메트릭만 사용 가능합니다" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "달력 히트캡" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "버블 차트" + +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" msgstr "" -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" +#: superset/viz.py:910 +msgid "Pick a metric to display" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," +#: superset/viz.py:929 +msgid "Time Series - Line Chart" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset/views/database/forms.py:164 -msgid "." +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "테이블 선택" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "일" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1시간" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1분" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" +#: superset/viz.py:1360 +msgid "Sankey" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "주" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/viz.py:1434 +msgid "Directed Force Layout" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "년" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" +#: superset/viz.py:1674 +msgid "Horizon Charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" +#: superset/viz.py:1686 +msgid "Mapbox" msgstr "" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10분" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "주" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15분" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "주" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -#, fuzzy -msgid "2 years" -msgstr "년" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 +#: superset/viz.py:2271 #, fuzzy -msgid "28 days" -msgstr "일" +msgid "Deck.gl - Heatmap" +msgstr "차트 추가" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "차트 추가" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -#, fuzzy -msgid "3 years" -msgstr "년" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" +#: superset/viz.py:2511 +msgid "Partition Diagram" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/viz.py:2676 #, fuzzy -msgid "30 minute" -msgstr "30분" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30분" +msgid "Please choose at least one groupby" +msgstr "적어도 하나의 'Group by'필드를 선택하세요" -#: superset/db_engine_specs/base.py:99 -#, fuzzy -msgid "30 second" -msgstr "30초" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30초" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5분" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5분" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" -#: superset/db_engine_specs/base.py:98 +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 #, fuzzy -msgid "5 second" -msgstr "30초" +msgid "Is certified" +msgstr "수정됨" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 #, fuzzy -msgid "5 seconds" -msgstr "30초" +msgid "Has created by" +msgstr "생성자" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 #, fuzzy -msgid "52 weeks" -msgstr "주" +msgid "Created by me" +msgstr "생성자" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -#, fuzzy -msgid "6 hour" -msgstr "6시간" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -#, fuzzy -msgid "7 days" -msgstr "일" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "" +#: superset/charts/schemas.py:1295 +#, fuzzy +msgid "orderby column must be populated" +msgstr "하나 이상의 칼럼이 중복됩니다" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "컬럼 수정" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "저장된 Query" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "부적절한 요청입니다 : %(error)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/charts/data/api.py:369 #, fuzzy -msgid "" -msgstr "차트 유형" +msgid "Empty query result" +msgstr "대시보드 가져오기" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "소유자가 부적절합니다" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "몇몇 역할이 존재하지 않습니다" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 +#: superset/commands/exceptions.py:135 #, fuzzy -msgid "A Big Number" -msgstr "테이블 명" +msgid "Datasource does not exist" +msgstr "데이터소스가 존재하지 않습니다" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/exceptions.py:142 +#, fuzzy +msgid "Query does not exist" +msgstr "차트가 존재하지 않습니다" + +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." msgstr "" -#: superset/databases/commands/exceptions.py:42 +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "주석 레이어" + +#: superset/commands/annotation_layer/exceptions.py:45 #, fuzzy -msgid "A database with the same name already exists." -msgstr "같은 이름의 데이터베이스가 이미 존재합니다" +msgid "Annotation layers could not be deleted." +msgstr "대시보드를 삭제할 수 없습니다." -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." msgstr "" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" msgstr "" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "주석" + +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: 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." +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "관련된 알람이나 리포트가 있습니다" + +#: superset/commands/chart/exceptions.py:38 +#, python-format msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "데이터베이스가 존재하지 않습니다" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "대시보드가 존재하지 않습니다" + +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset/reports/commands/exceptions.py:186 -#, fuzzy, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "데이터셋 %(name)s 은 이미 존재합니다" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "차트의 파라미터가 부적절합니다." -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "차트를 생성할 수 없습니다." -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "차트를 업데이트할 수 없습니다." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "차트를 삭제할 수 없습니다." -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." -msgstr "" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "관련된 알람이나 리포트가 있습니다" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." msgstr "" -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "이 차트를 변경하는 것은 불가능합니다" + +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" -#: superset/reports/commands/exceptions.py:238 +#: superset/commands/chart/exceptions.py:151 #, fuzzy -msgid "A timeout occurred while generating a csv." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +msgid "Changing one or more of these dashboards is forbidden" +msgstr "이 차트를 변경하는 것은 불가능합니다" -#: superset/reports/commands/exceptions.py:243 +#: superset/commands/chart/exceptions.py:156 #, fuzzy -msgid "A timeout occurred while generating a dataframe." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +msgid "Chart not found" +msgstr "데이터베이스를 찾을 수 없습니다." -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "CSS 템플릿을 삭제할 수 없습니다." + +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "CSS 템플릿을 찾을수 없습니다." + +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "대시보드 인자가 부적절합니다." + +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "대시보드를 생성할 수 없습니다." + +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "대시보드를 업데이트할 수 없습니다." + +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "대시보드를 삭제할 수 없습니다." + +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "파일에 데이터가 없습니다" + +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" +#: superset/commands/database/exceptions.py:42 +#, fuzzy +msgid "A database with the same name already exists." +msgstr "같은 이름의 데이터베이스가 이미 존재합니다" + +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: 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" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset/initialization/__init__.py:425 -msgid "Access requests" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "데이터베이스를 찾을 수 없습니다." + +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "데이터베이스를 생성할 수 없습니다." + +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "데이터베이스를 업데이트할 수 없습니다." + +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "연결하는데 실패했습니다. 커넥션 " + +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "데이터베이스를 삭제할 수 없습니다." + +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "데이터베이스 드라이버를 로드할 수 없습니다" + +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" msgstr "" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "활동" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "활동 기록" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "주석" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -#, fuzzy -msgid "Actual Values" -msgstr "원본 값" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#: superset/commands/database/validate.py:124 #, fuzzy -msgid "Actual value" -msgstr "원본 값" +msgid "Database is offline." +msgstr "데이터소스 명" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -#, fuzzy -msgid "Actual values" -msgstr "원본 값" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" +#: superset/commands/database/validate_sql.py:100 +#, python-format +msgid "no SQL validator is configured for %(engine)s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset/commands/database/ssh_tunnel/exceptions.py:29 #, fuzzy -msgid "Add Alert" -msgstr "차트 추가" +msgid "SSH Tunnel could not be deleted." +msgstr "차트를 삭제할 수 없습니다." -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "CSS 템플릿 추가" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +#, fuzzy +msgid "SSH Tunnel not found." +msgstr "CSS 템플릿을 찾을수 없습니다." -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "CSS 템플릿" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +#, fuzzy +msgid "SSH Tunnel parameters are invalid." +msgstr "차트의 파라미터가 부적절합니다." -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "차트 추가" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +#, fuzzy +msgid "SSH Tunnel could not be updated." +msgstr "차트를 업데이트할 수 없습니다." -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "컬럼 추가" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +#, fuzzy +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "대시보드 추가" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "데이터베이스 추가" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "" -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "로그 추가" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "메트릭 추가" +#: superset/commands/dataset/duplicate.py:60 +#, fuzzy +msgid "The database was not found." +msgstr "데이터베이스를 찾을 수 없습니다." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "데이터셋 %(name)s 은 이미 존재합니다" + +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Add Rule" -msgstr "D3 포멧" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "하나 이상의 칼럼이 존재하지 않습니다" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "저장된 Query 추가" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "하나 이상의 칼럼이 중복됩니다" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "플러그인 추가" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "하나 이상의 칼럼이 이미 존재합니다" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -#, fuzzy -msgid "Add a dataset" -msgstr "차트 추가" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "하나 이상의 메트릭이 존재하지 않습니다" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -#, fuzzy -msgid "Add a new tab" -msgstr "새 차트 생성" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "하나 이상의 메트릭이 중복됩니다" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "하나 이상의 메트릭이 이미 존재합니다" + +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "데이터소스가 존재하지 않습니다" + +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" -msgstr "주석 레이어" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -#, fuzzy -msgid "Add an item" -msgstr "테이블 추가" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "Add and edit filters" -msgstr "테이블 추가" +msgid "Datasets could not be deleted." +msgstr "데이터베이스를 삭제할 수 없습니다." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "주석" +#: superset/commands/dataset/exceptions.py:180 +#, fuzzy +msgid "Samples for dataset could not be retrieved." +msgstr "데이터베이스를 생성할 수 없습니다." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "주석 레이어" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 +#: superset/commands/dataset/exceptions.py:196 #, fuzzy -msgid "Add cross-filter" -msgstr "테이블 추가" +msgid "Dataset could not be duplicated." +msgstr "데이터베이스를 업데이트할 수 없습니다." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/dataset/exceptions.py:205 +msgid "The provided table was not found in the provided database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -#, fuzzy -msgid "Add extra connection information." -msgstr "주석" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "테이블 추가" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." msgstr "" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "테이블 추가" - -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "메트릭" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -#, fuzzy -msgid "Add sheet" -msgstr "차트 추가" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -#, fuzzy -msgid "Add the name of the chart" -msgstr "새 차트 생성" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "저장된 쿼리를 찾을 수 없습니다." -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#: superset/commands/query/exceptions.py:36 #, fuzzy -msgid "Add the name of the dashboard" -msgstr "대시보드 추가" - -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "대시보드 추가" +msgid "Import saved query failed for an unknown reason." +msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +#: superset/commands/query/exceptions.py:40 #, fuzzy -msgid "Add/Edit Filters" -msgstr "테이블 추가" +msgid "Saved query parameters are invalid." +msgstr "차트의 파라미터가 부적절합니다." -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" +#: superset/commands/report/alert.py:98 +#, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "대시보드 추가" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -#, fuzzy -msgid "Additional Parameters" -msgstr "주석" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/report/alert.py:107 +#, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "주석" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 +#: superset/commands/report/alert.py:178 #, fuzzy -msgid "Additional metadata" -msgstr "주석" +msgid "An error occurred when running alert query" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -#, fuzzy -msgid "Additional padding for legend." -msgstr "주석" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -#, fuzzy -msgid "Additional parameters" -msgstr "주석" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "대시보드가 존재하지 않습니다" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -#, fuzzy -msgid "Additional settings." -msgstr "주석" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "차트가 존재하지 않습니다" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -#, fuzzy -msgid "Additive" -msgstr "테이블 추가" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -#, fuzzy -msgid "After" -msgstr "분기" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -#, fuzzy -msgid "Aggregate" -msgstr "생성자" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "생성자" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "경고" +#: superset/commands/report/exceptions.py:180 +#, fuzzy, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "" +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." msgstr "" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "테이블 명" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." msgstr "" -#: superset/reports/commands/exceptions.py:223 +#: superset/commands/report/exceptions.py:217 msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "테이블 명" - -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." msgstr "" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "" +#: superset/commands/report/exceptions.py:232 +#, fuzzy +msgid "A timeout occurred while generating a csv." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "" +#: superset/commands/report/exceptions.py:237 +#, fuzzy +msgid "A timeout occurred while generating a dataframe." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." msgstr "" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" msgstr "" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "경고" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" +msgstr "" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "경고 및 리포트" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "" - -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 +#: superset/commands/security/exceptions.py:25 #, fuzzy -msgid "All Entities" -msgstr "필터" - -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "차트 추가" +msgid "RLS Rule not found." +msgstr "CSS 템플릿을 찾을수 없습니다." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "차트를 삭제할 수 없습니다." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "필터" +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "데이터베이스를 찾을 수 없습니다." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 +#: superset/commands/sql_lab/estimate.py:86 #, python-format -msgid "All filters (%(filterCount)d)" +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" +#: superset/commands/sql_lab/results.py:75 +msgid "" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "" +#: superset/commands/tag/exceptions.py:32 +#, fuzzy +msgid "Tag parameters are invalid." +msgstr "차트의 파라미터가 부적절합니다." -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "" +#: superset/commands/tag/exceptions.py:36 +#, fuzzy +msgid "Tag could not be created." +msgstr "차트를 생성할 수 없습니다." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "DML 허용" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "차트를 업데이트할 수 없습니다." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" -msgstr "" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "차트를 삭제할 수 없습니다." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "데이터베이스를 삭제할 수 없습니다." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +#, fuzzy +msgid "An error occurred while creating the value." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +#, fuzzy +msgid "An error occurred while accessing the value." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +#, fuzzy +msgid "An error occurred while deleting the value." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +#, fuzzy +msgid "An error occurred while updating the value." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:49 +#, fuzzy +msgid "Resource was not found." +msgstr "데이터베이스를 찾을 수 없습니다." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "" +#: superset/common/query_context_processor.py:150 +#, fuzzy, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -#: superset/views/database/mixins.py:114 +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "차트가 존재하지 않습니다" + +#: superset/common/query_context_processor.py:702 +#, fuzzy +msgid "The chart datasource does not exist" +msgstr "차트가 존재하지 않습니다" + +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "차트가 존재하지 않습니다" + +#: superset/common/query_object.py:290 +#, python-format msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/common/query_object.py:312 +#, python-format +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset/reports/commands/exceptions.py:188 -#, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "데이터셋 %(name)s 은 이미 존재합니다" - -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +#: superset/connectors/sqla/models.py:1394 +#, python-format +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "가상 데이터셋 쿼리는 읽기 전용이어야 합니다" + +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" 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: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 -msgid "An error has occurred" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 +#, python-format +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -#, fuzzy -msgid "An error occurred while accessing the value." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" +msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, fuzzy, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "오직 `SELECT` 구문만 허용됩니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "오직 하나의 쿼리만 지원됩니다" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -#, fuzzy -msgid "An error occurred while creating the value." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "칼럼" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -#, fuzzy -msgid "An error occurred while deleting the value." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "컬럼 보기" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "" - -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, fuzzy, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "컬럼 추가" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, fuzzy, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "컬럼 수정" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "칼럼" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset-frontend/src/pages/ChartList/index.tsx:299 -#, fuzzy -msgid "An error occurred while fetching dashboards" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "설명" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "테이블" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "표현식" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "타입" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" +msgstr "" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "메트릭" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "메트릭 보기" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "메트릭 추가" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "메트릭 편집" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "메트릭" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL 표현식" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, fuzzy, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "D3 포멧" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, fuzzy, python-format -msgid "An error occurred while importing %s: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "경고 메시지" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "테이블" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "테이블 보기" + +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -#, fuzzy -msgid "An error occurred while opening Explore" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "테이블 수정" -#: superset/key_value/exceptions.py:30 -#, fuzzy -msgid "An error occurred while parsing the key." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" +msgstr "" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 +#: superset/connectors/sqla/views.py:345 msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, fuzzy, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 +#: superset/connectors/sqla/views.py:349 msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "" + +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 +#: superset/connectors/sqla/views.py:359 msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "" + +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy +#: superset/connectors/sqla/views.py:371 msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 +#: superset/connectors/sqla/views.py:387 msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -#, fuzzy -msgid "An error occurred while starring this chart" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" msgstr "" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -#, fuzzy -msgid "An error occurred while updating the value." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "데이터베이스" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "스키마" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -#, fuzzy -msgid "Animation" -msgstr "주석" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "주석" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "주석 레이어" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "주석 레이어" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "오프셋" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "테이블 명" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "주석 레이어" - -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -#, fuzzy -msgid "Annotation layer description columns" -msgstr "주석 레이어" - -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -#, fuzzy -msgid "Annotation layer interval end" -msgstr "주석 레이어" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "주석 레이어" - -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -#, fuzzy -msgid "Annotation layer opacity" -msgstr "주석 레이어" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "수정됨" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -#, fuzzy -msgid "Annotation layer stroke" -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "주석 레이어" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -#, fuzzy -msgid "Annotation layer value" -msgstr "주석 레이어" - -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "주석 레이어" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "주석 레이어" - -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "주석" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "주석" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -#, fuzzy -msgid "Annotation source type" -msgstr "주석 레이어" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "역할" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "주석 레이어" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "주석 레이어" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "테이블 명이 정해지지 않았습니다" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 +#: superset/databases/filters.py:79 #, fuzzy -msgid "Annotations and Layers" -msgstr "주석 레이어" - -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "주석 레이어" - -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "" +msgid "Upload Enabled" +msgstr "엑셀 업로드" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -#: 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." +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/databases/schemas.py:233 +#, python-format msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/databases/schemas.py:300 msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#: superset/datasets/api.py:785 #, python-format -msgid "Applied cross-filters (%d)" -msgstr "" +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "데이터베이스 선택" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, python-format -msgid "Applied filters (%d)" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "테이블 추가" - -#: superset/viz.py:250 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "초" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#: superset/db_engine_specs/base.py:99 #, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "주석" +msgid "5 second" +msgstr "30초" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "" +#: superset/db_engine_specs/base.py:100 +#, fuzzy +msgid "30 second" +msgstr "30초" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "분" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5분" + +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10분" + +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15분" + +#: superset/db_engine_specs/base.py:105 #, fuzzy -msgid "Apply filters" -msgstr "필터" +msgid "30 minute" +msgstr "30분" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "시" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 #, fuzzy -msgid "Apply metrics on" -msgstr "메트릭" +msgid "6 hour" +msgstr "6시간" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "일" + +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "주" + +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "달" + +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "분기" + +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "년" + +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "" + +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 #, fuzzy -msgid "Arc" -msgstr "검색" +msgid "Username" +msgstr "Query 검색" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +#, fuzzy +msgid "Password" +msgstr "비밀번호" + +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +#, fuzzy +msgid "Database port" +msgstr "데이터베이스" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "데이터소스 명" + +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +#, fuzzy +msgid "Additional parameters" +msgstr "주석" + +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" + +#: superset/db_engine_specs/bigquery.py:191 #, python-format -msgid "Are you sure you want to delete %s?" +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/db_engine_specs/bigquery.py:199 #, python-format -msgid "Are you sure you want to delete the selected %s?" +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -msgid "Are you sure you want to delete the selected rules?" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -#, fuzzy -msgid "Area Chart" -msgstr "차트 보기" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, fuzzy, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -#, fuzzy -msgid "Area Chart (legacy)" -msgstr "차트 보기" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -#, fuzzy -msgid "Area chart" -msgstr "차트 보기" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." + +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -#, fuzzy -msgid "Auto" -msgstr "생성자" +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset/explore/exceptions.py:45 #, fuzzy -msgid "Average" -msgstr "Query 공유" +msgid "Samples for datasource could not be retrieved." +msgstr "데이터베이스를 생성할 수 없습니다." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Average value" -msgstr "원본 값" +msgid "Changing this datasource is forbidden" +msgstr "이 차트를 변경하는 것은 불가능합니다" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 +#: superset/initialization/__init__.py:242 #, fuzzy -msgid "Axis Bounds" -msgstr "컬럼 목록" +msgid "Database Connections" +msgstr "연결 테스트" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "D3 포멧" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "데이터베이스" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "대시보드" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" -msgstr "" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "차트" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "데이터베이스" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "플러그인" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" -msgstr "" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "관리" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" -msgstr "" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS 템플릿" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL Lab" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -#, fuzzy -msgid "Bad formula." -msgstr "D3 포멧" - -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "저장된 Query" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Query 실행 이력" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 #, fuzzy -msgid "Bar Chart" -msgstr "차트 보기" +msgid "Tags" +msgstr "상태" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" -msgstr "" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "활동 기록" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "보안" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "경고 및 리포트" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "주석 레이어" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 #, fuzzy -msgid "Bar orientation" -msgstr "주석" +msgid "Row Level Security" +msgstr "저수준 보안" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#: superset/key_value/exceptions.py:30 #, fuzzy -msgid "Base" -msgstr "데이터베이스" +msgid "An error occurred while parsing the key." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "" +#: superset/key_value/exceptions.py:50 +#, fuzzy +msgid "An error occurred while upserting the value." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" +#: superset/models/helpers.py:1531 +msgid "Empty query?" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/models/helpers.py:1605 +#, fuzzy, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "알 수 없는 칼럼이 orderby에 사용되었습니다: %(col)" + +#: superset/models/helpers.py:1682 #, python-format -msgid "Batch editing %d filters:" +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "" +#: superset/models/helpers.py:1821 +#, fuzzy +msgid "error_message" +msgstr "에러 메시지" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -#, fuzzy -msgid "Before" -msgstr "새로고침 간격" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -#, fuzzy -msgid "Bottom" -msgstr "날짜/시간" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -#, fuzzy -msgid "Bottom left" -msgstr "날짜/시간" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -#, fuzzy -msgid "Bottom right" -msgstr "날짜/시간" +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "값은 0보다 커야합니다" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -#, fuzzy -msgid "Breakdowns" -msgstr "생성자" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "버블 차트" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" -msgstr "" - -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" -msgstr "" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 +#: superset/tags/exceptions.py:39 #, fuzzy -msgid "CREATE DATASET" -msgstr "데이터소스 선택" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "" +msgid "Tag could not be found." +msgstr "데이터베이스를 찾을 수 없습니다." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" +#: superset/tags/filters.py:31 +msgid "Is custom tag" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "" +#: superset/tasks/exceptions.py:24 +#, fuzzy +msgid "Scheduled task executor not found" +msgstr "캐시된 값을 찾을 수 없습니다." -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" -msgstr "" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "레코드 수" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "필터" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "검색" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS 템플릿" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "새로고침 간격" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "대시보드 가져오기" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "CSS 템플릿" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "대시보드 가져오기" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "CSS 템플릿을 삭제할 수 없습니다." +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "CSV 파일" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "CSS 템플릿" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "CSV 파일" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "CSS 템플릿을 찾을수 없습니다." +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "CSV 업로드" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "CSS 템플릿" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "" -#: superset/views/database/forms.py:109 -#, fuzzy -msgid "CSV Upload" -msgstr "CSV 업로드" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "연결 테스트" -#: superset/views/database/views.py:290 +#: superset/utils/core.py:993 #, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "CSV 업로드" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset/sql_lab.py:432 +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset/sql_lab.py:449 +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "" + +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "캐시된 값을 찾을 수 없습니다." +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "Calculated column [%s] requires an expression" +msgid "Unsupported time grain: %(time_grain)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "컬럼 목록" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "시각화 유형 선택" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "달력 히트캡" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "취소" +#: superset/utils/pandas_postprocessing/rename.py:53 +#, fuzzy +msgid "Label already exists" +msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/rolling.py:84 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/views/api.py:109 +#, python-format +msgid "Unexpected time range: %(error)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "Query 검색" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset/views/base.py:591 +msgid "Export to YAML" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" +#: superset/views/base.py:591 +msgid "Export to YAML?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -#, fuzzy -msgid "Category name" -msgstr "Query 검색" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "삭제" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/views/base.py:648 +msgid "Delete all Really?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/views/base_api.py:149 +msgid "Is favorite" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -#, fuzzy -msgid "Cell bars" -msgstr "차트 추가" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" +msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -#, fuzzy -msgid "Cell limit" -msgstr "구분자" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -#, fuzzy -msgid "Certification" -msgstr "주석 레이어" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -#, fuzzy -msgid "Certified" -msgstr "수정됨" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -#, fuzzy -msgid "Certified By" -msgstr "수정됨" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "수정됨" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 -#, python-format -msgid "Certified by %s" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +#: superset/views/core.py:836 +#, fuzzy +msgid "permalink state not found" +msgstr "CSS 템플릿을 찾을수 없습니다." + +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "CSS 템플릿 보기" + +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "CSS 템플릿 추가" + +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "CSS 템플릿 편집" + +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "템플릿 명" + +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/views/dynamic_plugins.py:48 msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "이 차트를 변경하는 것은 불가능합니다" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "커스텀 플러그인" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "커스텀 플러그인" + +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "플러그인 추가" + +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "플러그인 수정" + +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." +#: superset/views/utils.py:492 +msgid "Could not find viz object" msgstr "" -#: superset/explore/exceptions.py:49 -#, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "이 차트를 변경하는 것은 불가능합니다" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "차트 보기" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "차트 추가" + +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "차트 수정" + +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "생성자" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "데이터소스" + +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "마지막 수정" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" 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:406 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 #: superset-frontend/src/features/home/ChartTable.tsx:191 -#: superset-frontend/src/features/home/RightMenu.tsx:219 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 +#: superset-frontend/src/features/home/RightMenu.tsx:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 #: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "차트" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "이름" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "시각화 유형" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "차트" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "대시보드 보기" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "대시보드 추가" + +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "대시보드 수정" + +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -#, fuzzy -msgid "Chart Options" -msgstr "주석" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -#, fuzzy -msgid "Chart Orientation" -msgstr "주석" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "데이터소스" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -#, fuzzy -msgid "Chart Title" -msgstr "차트 유형" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" -msgstr "주석 레이어" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "대시보드" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "제목" + +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" msgstr "" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "역할" + +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" msgstr "" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" msgstr "" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "차트 유형" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 -msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "차트를 생성할 수 없습니다." +#: superset/views/database/forms.py:109 +#, fuzzy +msgid "CSV Upload" +msgstr "CSV 업로드" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "차트를 삭제할 수 없습니다." +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "차트를 업데이트할 수 없습니다." +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "차트가 존재하지 않습니다" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" +msgstr "" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -#, fuzzy -msgid "Chart height" -msgstr "차트 유형" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:228 +#: superset/views/database/forms.py:145 #, fuzzy -msgid "Chart imported" +msgid "Column Data Types" msgstr "차트 유형" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "마지막 수정" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "마지막 수정" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "차트 유형" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "구분자" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -#, fuzzy -msgid "Chart options" -msgstr "주석" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "차트" +#: superset/views/database/forms.py:164 +msgid "," +msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "차트의 파라미터가 부적절합니다." +#: superset/views/database/forms.py:165 +msgid "." +msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 #, fuzzy -msgid "Chart properties updated" -msgstr "대시보드" +msgid "Other" +msgstr "월" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 +#: superset/views/database/forms.py:175 #, fuzzy -msgid "Chart title" -msgstr "차트 유형" - -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "차트 유형" - -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "" +msgid "If Table Already Exists" +msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#: superset/views/database/forms.py:176 #, fuzzy -msgid "Chart width" -msgstr "차트 유형" +msgid "What should happen if the table already exists" +msgstr "같은 이름의 데이터베이스가 이미 존재합니다" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "차트" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "실패" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "차트를 삭제할 수 없습니다." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "바꾸기" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "" +#: superset/views/database/forms.py:212 +#, fuzzy +msgid "Null Values" +msgstr "원본 값" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "CSV 파일" - -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -#, fuzzy -msgid "Choose a database..." -msgstr "데이터소스 선택" - -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "데이터소스 선택" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -#, fuzzy -msgid "Choose a source" -msgstr "데이터소스 선택" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -#, fuzzy -msgid "Choose a source and a target" -msgstr "데이터소스 선택" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -#, fuzzy -msgid "Choose a target" -msgstr "데이터소스 선택" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 +#: superset/views/database/forms.py:242 #, fuzzy -msgid "Choose chart type" -msgstr "차트 유형" +msgid "Columns To Read" +msgstr "컬럼 보기" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "주석 레이어" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 +#: superset/views/database/forms.py:256 msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -#, fuzzy -msgid "Circle" -msgstr "CSV 파일" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:289 +msgid "Excel File" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "테이블 명" + +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "테이블 존재" + +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 -#, fuzzy -msgid "Clear all data" -msgstr "차트 추가" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." +msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +#: superset/views/database/forms.py:399 +msgid "Null values" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "클릭하여 제목 수정하기" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, fuzzy, python-format -msgid "Click to edit %s." -msgstr "클릭하여 제목 수정하기" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#: superset/views/database/forms.py:421 #, fuzzy -msgid "Click to edit chart." -msgstr "클릭하여 제목 수정하기" +msgid "Columnar File" +msgstr "컬럼 추가" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "" + +#: superset/views/database/forms.py:469 #, fuzzy -msgid "Click to edit label" -msgstr "클릭하여 제목 수정하기" +msgid "Use Columns" +msgstr "컬럼 추가" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "데이터베이스" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "데이터베이스 보기" -#: superset-frontend/src/components/Table/index.tsx:216 -#, fuzzy -msgid "Click to sort ascending" -msgstr "클릭하여 제목 수정하기" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "데이터베이스 추가" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" -msgstr "" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "데이터베이스 편집" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "탭 닫기" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -#, fuzzy -msgid "Collapse data panel" -msgstr "데이터 미리보기" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -#, fuzzy -msgid "Collapse table preview" -msgstr "데이터 미리보기" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -#, fuzzy -msgid "Color Metric" -msgstr "메트릭" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "DML 허용" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" -msgstr "" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "보안" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 -msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "칼럼" - -#: superset/utils/pandas_postprocessing/contribution.py:59 +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 #, python-format -msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "차트 유형" - -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -#, fuzzy -msgid "Column Formatting" -msgstr "주석" - -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/database/views.py:180 +#, python-format msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "컬럼 추가" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -#, fuzzy -msgid "Column is required" -msgstr "데이터소스" - -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset/views/database/views.py:319 +#, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/forms.py:233 +#: superset/views/database/views.py:412 +#, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "컬럼 추가" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#: superset/views/database/views.py:424 #, python-format -msgid "Column name [%s] is duplicated" +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -#, fuzzy -msgid "Column select" -msgstr "컬럼 추가" - -#: superset/views/database/forms.py:221 +#: superset/views/database/views.py:466 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset/views/database/forms.py:352 +#: superset/views/database/views.py:479 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/forms.py:424 -#, fuzzy -msgid "Columnar File" -msgstr "컬럼 추가" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" -#: superset/views/database/views.py:568 +#: superset/views/database/views.py:566 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "칼럼" - -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" msgstr "" -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "로그" + +#: superset/views/log/__init__.py:22 +msgid "Show Log" msgstr "컬럼 보기" -#: superset/common/query_context_processor.py:132 -#, fuzzy, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "로그 추가" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "로그 수정" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "사용자" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "활동" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" -msgstr "" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "날짜/시간" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "" +#: superset/views/sql_lab/views.py:93 +#, fuzzy +msgid "Untitled Query" +msgstr "Query 공유" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 #, fuzzy -msgid "Columns to show" -msgstr "컬럼 보기" +msgid "Time Column" +msgstr "컬럼 수정" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -#, fuzzy -msgid "Combine metrics" -msgstr "메트릭" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +#, fuzzy +msgid "Aggregate" +msgstr "생성자" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#, fuzzy +msgid "Category name" +msgstr "Query 검색" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#, fuzzy +msgid "Total value" +msgstr "원본 값" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +#, fuzzy +msgid "Minimum value" +msgstr "테이블 명" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 #, fuzzy -msgid "Comparison" -msgstr "컬럼 수정" +msgid "Maximum value" +msgstr "테이블 명" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "원본 값" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -#, fuzzy -msgid "Comparison suffix" -msgstr "컬럼 수정" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Condition" -msgstr "활동" +msgid "Column datatype" +msgstr "컬럼 추가" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 #, fuzzy -msgid "Conditional Formatting" -msgstr "주석" +msgid "Column name" +msgstr "컬럼 추가" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "레이블" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 #, fuzzy -msgid "Conditional formatting" -msgstr "주석" +msgid "Metric name" +msgstr "Query 검색" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 #, fuzzy -msgid "Confidence interval" -msgstr "새로고침 간격" +msgid "unknown type icon" +msgstr "알 수 없는 에러" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -#, fuzzy -msgid "Connect a database" -msgstr "데이터베이스 선택" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "컬럼 수정" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -#, fuzzy -msgid "Connect database" -msgstr "데이터베이스 선택" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" msgstr "" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "연결하는데 실패했습니다. 커넥션 " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" +msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -#, fuzzy -msgid "Continue" -msgstr "컬럼 추가" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -#, fuzzy -msgid "Contribution Mode" -msgstr "주석 레이어" - -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -#, fuzzy -msgid "Control" -msgstr "컬럼 추가" - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "시각화 유형 선택" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +#, fuzzy +msgid "Actual values" +msgstr "원본 값" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "클립보드에 복사하기" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +#, fuzzy +msgid "Percentage change" +msgstr "Superset 튜토리얼" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +#, fuzzy +msgid "Ratio" +msgstr "생성자" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -#, fuzzy -msgid "Copy permalink to clipboard" -msgstr "클립보드에 복사하기" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "클립보드에 복사하기" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "클립보드에 복사하기" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +#, fuzzy +msgid "Fill method" +msgstr "주석 레이어" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +#, fuzzy +msgid "Null imputation" +msgstr "주석" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#, fuzzy +msgid "Zero imputation" +msgstr "설명" -#: superset/db_engine_specs/ocient.py:259 -#, python-format -msgid "Could not connect to database: \"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#, fuzzy +msgid "Forward values" +msgstr "테이블 보기" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +#, fuzzy +msgid "Median values" +msgstr "원본 값" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "데이터베이스 드라이버를 로드할 수 없습니다" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +#, fuzzy +msgid "Mean values" +msgstr "테이블 명" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +#, fuzzy +msgid "Sum values" +msgstr "테이블 명" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" msgstr "" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +#, fuzzy +msgid "Annotations and Layers" +msgstr "주석 레이어" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 #, fuzzy -msgid "Count" -msgstr "컬럼 추가" +msgid "Left" +msgstr "삭제" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 #, fuzzy -msgid "Count Unique Values" -msgstr "필터" +msgid "Top" +msgstr "중지" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +#, fuzzy +msgid "Chart Title" +msgstr "차트 유형" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -#, fuzzy -msgid "Country" -msgstr "컬럼 추가" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -#, fuzzy -msgid "Country Column" -msgstr "컬럼 목록" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +msgid "Y Axis Title Position" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "차트 보기" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" -msgstr "차트 수정" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "새 차트 생성" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 #, fuzzy -msgid "Create chart" -msgstr "차트 보기" +msgid "Confidence interval" +msgstr "새로고침 간격" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -#, fuzzy -msgid "Create dataset" -msgstr "데이터소스 선택" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 #, fuzzy -msgid "Create dataset and create chart" -msgstr "새 차트 생성" - -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "새 차트 생성" +msgid "default" +msgstr "삭제" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "생성자" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset/views/access_requests.py:49 -msgid "Created On" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "생성자" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -#, fuzzy -msgid "Created by me" -msgstr "생성자" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "새 차트 생성" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "생성자" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 #, fuzzy -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" +msgid "Datasource & Chart Type" +msgstr "데이터소스 명" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" msgstr "" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "생성자" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -#, fuzzy -msgid "Crimson" -msgstr "활동" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -msgid "Cross-filtering is not enabled in this dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "필터" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -#, fuzzy -msgid "Cross-filters" -msgstr "필터" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#, fuzzy +msgid "Contribution Mode" +msgstr "주석 레이어" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "커스텀 플러그인" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "커스텀 플러그인" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 #, fuzzy -msgid "Customize columns" -msgstr "컬럼 목록" +msgid "Force categorical" +msgstr "데이터소스 명" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "D3 포멧" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -#, fuzzy -msgid "DATETIME" -msgstr "시작 시간" - -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "필터" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 #, fuzzy -msgid "Dark" -msgstr "분기" +msgid "Right Axis Metric" +msgstr "메트릭" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +msgid "Select a metric to display on the right axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" msgstr "" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "대시보드를 생성할 수 없습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "대시보드를 삭제할 수 없습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "대시보드를 업데이트할 수 없습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +#, fuzzy +msgid "Color Metric" +msgstr "메트릭" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "대시보드가 존재하지 않습니다" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "대시보드 인자가 부적절합니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -#, fuzzy -msgid "Dashboard properties updated" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -#, fuzzy -msgid "Dashboard scheme" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 #, fuzzy -msgid "Dashboards added to" -msgstr "대시보드" +msgid "5 seconds" +msgstr "30초" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "대시보드를 삭제할 수 없습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30초" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "대시보드가 존재하지 않습니다" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1분" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -#, fuzzy -msgid "Dashed" -msgstr "대시보드" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5분" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "데이터베이스" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30분" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1시간" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +#, fuzzy +msgid "1 day" +msgstr "일" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 #, fuzzy -msgid "Data Table" -msgstr "테이블 수정" +msgid "7 days" +msgstr "일" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "주" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "월" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +#, fuzzy +msgid "quarter" +msgstr "분기" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "년" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "데이터 미리보기" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "차트 유형" - -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "데이터베이스" - -#: superset/views/database/views.py:481 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" msgstr "" -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" msgstr "" -#: superset/initialization/__init__.py:243 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "Database Connections" -msgstr "연결 테스트" +msgid "Currency format" +msgstr "D3 포멧" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 #, fuzzy -msgid "Database Creation Error" -msgstr "데이터베이스" +msgid "Time format" +msgstr "D3 포멧" -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "데이터베이스 URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 #, fuzzy -msgid "Database connected" -msgstr "데이터베이스를 생성할 수 없습니다." - -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "데이터베이스를 생성할 수 없습니다." +msgid "Truncate Metric" +msgstr "메트릭" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "데이터베이스를 삭제할 수 없습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "데이터베이스를 업데이트할 수 없습니다." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +#, fuzzy +msgid "Show empty columns" +msgstr "컬럼 수정" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "데이터베이스가 존재하지 않습니다" - -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " -msgstr "" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "데이터베이스" - -#: superset/databases/commands/validate.py:124 -#, fuzzy -msgid "Database is offline." -msgstr "데이터소스 명" - -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "데이터소스 명" - -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "" - -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "데이터베이스를 찾을 수 없습니다." - -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "데이터베이스를 찾을 수 없습니다." - -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "" - -#: superset-frontend/src/components/ImportModal/index.tsx:291 -#, fuzzy -msgid "Database passwords" -msgstr "데이터베이스" - -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -#, fuzzy -msgid "Database port" -msgstr "데이터베이스" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -#, fuzzy -msgid "Database settings updated" -msgstr "데이터베이스를 업데이트할 수 없습니다." - -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "데이터베이스" - -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "데이터베이스" - -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "데이터셋 %(name)s 은 이미 존재합니다" - -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -#, fuzzy -msgid "Dataset Name" -msgstr "데이터소스 명" - -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "" - -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "" - -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "" - -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "" - -#: superset/datasets/commands/exceptions.py:210 -#, fuzzy -msgid "Dataset could not be duplicated." -msgstr "데이터베이스를 업데이트할 수 없습니다." - -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "" - -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "데이터소스가 존재하지 않습니다" - -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -#, fuzzy -msgid "Dataset imported" -msgstr "데이터베이스" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -#, fuzzy -msgid "Dataset is required" -msgstr "데이터소스" - -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "" - -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "데이터소스 명" - -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "" - -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" -msgstr "" - -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "" - -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "데이터베이스" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "데이터소스" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -#, fuzzy -msgid "Datasource & Chart Type" -msgstr "데이터소스 명" - -#: superset/commands/exceptions.py:135 -#, fuzzy -msgid "Datasource does not exist" -msgstr "데이터소스가 존재하지 않습니다" - -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "" - -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" -msgstr "" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "테이블 추가" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -#, fuzzy -msgid "Date format" -msgstr "D3 포멧" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -#, fuzzy -msgid "Date format string" -msgstr "D3 포멧" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "시작 시간" - -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "" - -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "" - -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "일" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, fuzzy, python-format -msgid "Days %s" -msgstr "일" - -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" -msgstr "" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" - -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "" - -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "" - -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "" - -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "" - -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "" - -#: superset/viz.py:2848 -#, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "차트 추가" - -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "" - -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "" - -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "" - -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "" - -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" -msgstr "" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "" - -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -#, fuzzy -msgid "Default value is required" -msgstr "데이터소스" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "삭제" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "삭제" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "주석" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "데이터베이스 선택" - -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "삭제" - -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "삭제" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -#, fuzzy -msgid "Delete Report?" -msgstr "CSS 템플릿" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "CSS 템플릿" - -#: superset/views/base.py:664 -msgid "Delete all Really?" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "주석" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "대시보드" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "데이터베이스 선택" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "삭제" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "템플릿 불러오기" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "원본 값" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "삭제" - -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "" -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "데이터베이스 선택" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "" -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "" -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "삭제" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +#, fuzzy +msgid "No Results" +msgstr "결과" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "삭제" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#, fuzzy +msgid "ERROR" +msgstr "%s 에러" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "구분자" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -#, fuzzy -msgid "Delivery method" -msgstr "월" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#, fuzzy -msgid "Deprecated" -msgstr "생성자" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "시간" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "설명" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "일" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 #, fuzzy -msgid "Description Columns" -msgstr "설명" +msgid "min" +msgstr "분" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "테이블 선택" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +#, fuzzy +msgid "Chart Options" +msgstr "주석" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#, fuzzy +msgid "Time Format" +msgstr "D3 포멧" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +#, fuzzy +msgid "Show Values" +msgstr "테이블 보기" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#, fuzzy +msgid "Show Metric Names" +msgstr "메트릭 보기" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 #, fuzzy -msgid "Disabled" -msgstr "테이블 수정" +msgid "Comparison" +msgstr "컬럼 수정" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -#, fuzzy -msgid "Discard" -msgstr "대시보드" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 #, fuzzy -msgid "Display Name" -msgstr "필터" +msgid "Report" +msgstr "생성자" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 #, fuzzy -msgid "Display settings" -msgstr "Query 공유" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "" +msgid "Sort by metric" +msgstr "메트릭" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -#, fuzzy -msgid "Distribution" -msgstr "설명" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 #, fuzzy -msgid "Documentation" -msgstr "주석" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "" +msgid "Choose a source" +msgstr "데이터소스 선택" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 #, fuzzy -msgid "Donut" -msgstr "월" +msgid "Target" +msgstr "시작 시간" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 #, fuzzy -msgid "Dotted" -msgstr "테이블 수정" +msgid "Choose a target" +msgstr "데이터소스 선택" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +#, fuzzy +msgid "Relational" +msgstr "생성자" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +#, fuzzy +msgid "Country" +msgstr "컬럼 추가" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "대시보드 가져오기" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +#, fuzzy +msgid "Map" +msgstr "트리맵" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#, fuzzy +msgid "Range" +msgstr "관리" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 #, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" +msgid "Event Names" +msgstr "테이블 명" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -#, fuzzy -msgid "Dual Line Chart" -msgstr "새 차트 생성" - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset/common/query_object.py:291 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 #, fuzzy -msgid "Duplicate dataset" -msgstr "차트 수정" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "" +msgid "Additional metadata" +msgstr "주석" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" msgstr "" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +#, fuzzy +msgid "e.g., a \"user id\" column" +msgstr "컬럼 수정" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 #, fuzzy -msgid "ECharts" -msgstr "차트" - -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" -msgstr "" +msgid "XScale Interval" +msgstr "새로고침 간격" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 #, fuzzy -msgid "ERROR" -msgstr "%s 에러" +msgid "YScale Interval" +msgstr "새로고침 간격" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -#, fuzzy -msgid "Edit Alert" -msgstr "테이블 수정" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "CSS 수정" - -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "CSS 템플릿 편집" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "CSS 템플릿" - -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "차트 수정" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 #, fuzzy -msgid "Edit Chart Properties" -msgstr "대시보드 수정" - -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "컬럼 수정" +msgid "heatmap" +msgstr "스키마" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "대시보드 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "데이터베이스 편집" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "차트 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "로그 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "메트릭 편집" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "플러그인 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 #, fuzzy -msgid "Edit Rule" -msgstr "Query 검색" +msgid "auto" +msgstr "생성자" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "저장된 Query 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "테이블 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "주석" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "주석 레이어" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "주석 레이어" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -#, fuzzy -msgid "Edit chart" -msgstr "차트 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "차트 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "차트 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "저장된 Query 수정" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "템플릿 불러오기" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 #, fuzzy -msgid "Edit the dashboard" -msgstr "대시보드 추가" +msgid "Single Metric" +msgstr "필터" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +#, fuzzy +msgid "to" +msgstr "중지" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "테이블 수정" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +#, fuzzy +msgid "count" +msgstr "컬럼 추가" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -#, fuzzy -msgid "Elevation" -msgstr "생성자" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 #, fuzzy -msgid "Embed dashboard" -msgstr "대시보드 저장" +msgid "Distribution" +msgstr "설명" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -#, fuzzy -msgid "Emit Filter Events" -msgstr "필터" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -#, fuzzy -msgid "Empty collection" -msgstr "연결 테스트" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -#, fuzzy -msgid "Empty column" -msgstr "컬럼 추가" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "" -#: superset/charts/data/api.py:366 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 #, fuzzy -msgid "Empty query result" -msgstr "대시보드 가져오기" +msgid "series" +msgstr "저장된 Query" -#: superset/models/helpers.py:1508 -msgid "Empty query?" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "관리" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#, fuzzy +msgid "Horizon Chart" +msgstr "차트 보기" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +#, fuzzy +msgid "Crimson" +msgstr "활동" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "권한 부여" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" msgstr "" -#: superset/viz.py:2514 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "끝 시간" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "종료 시간" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 #, fuzzy -msgid "End date" -msgstr "차트 추가" +msgid "Auto" +msgstr "생성자" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +#, fuzzy +msgid "Miles" +msgstr "필터" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +#, fuzzy +msgid "Kilometers" +msgstr "필터" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset/databases/schemas.py:302 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +#, fuzzy +msgid "label" +msgstr "레이블" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -#, fuzzy -msgid "Enter Primary Credentials" -msgstr "엑셀 업로드" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -#, fuzzy -msgid "Enter duration in seconds" -msgstr "10초" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 #, fuzzy -msgid "Error" -msgstr "%s 에러" +msgid "Dark" +msgstr "분기" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +#, fuzzy +msgid "Satellite" +msgstr "테이블 추가" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset/connectors/sqla/models.py:789 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 #, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -#, fuzzy -msgid "Error while fetching charts" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, fuzzy, python-format -msgid "Error while fetching data: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -#, fuzzy -msgid "Event" -msgstr "월" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -#, fuzzy -msgid "Event Names" -msgstr "테이블 명" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -#, fuzzy -msgid "Event time column" -msgstr "컬럼 수정" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" msgstr "" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset/views/database/views.py:427 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 #, fuzzy -msgid "Executed SQL" -msgstr "저장된 Query 수정" +msgid "Options" +msgstr "주석" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "저장된 Query 수정" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +#, fuzzy +msgid "Data Table" +msgstr "테이블 수정" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -#, fuzzy -msgid "Existing dataset" -msgstr "차트 수정" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 #, fuzzy -msgid "Expand table preview" -msgstr "데이터 미리보기" +msgid "Time Series Options" +msgstr "컬럼 수정" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#, fuzzy +msgid "Time Series" +msgstr "컬럼 수정" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" msgstr "" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 #, fuzzy -msgid "Export query" -msgstr "Query 공유" +msgid "Percent Change" +msgstr "Superset 튜토리얼" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 #, fuzzy -msgid "Export to .JSON" -msgstr "대시보드 가져오기" +msgid "Factor" +msgstr "생성자" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "표현식" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 -msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +#, fuzzy +msgid "Min Periods" +msgstr "10초" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +#, fuzzy +msgid "Time Comparison" +msgstr "컬럼 수정" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +#, fuzzy +msgid "1 week" +msgstr "주" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "일" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +#, fuzzy +msgid "52 weeks" +msgstr "주" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +#, fuzzy +msgid "1 year" +msgstr "년" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +#, fuzzy +msgid "104 weeks" +msgstr "주" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "년" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +#, fuzzy +msgid "156 weeks" +msgstr "주" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +#, fuzzy +msgid "3 years" +msgstr "년" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 #, fuzzy -msgid "Factor" -msgstr "생성자" +msgid "Actual Values" +msgstr "원본 값" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "실패" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "실패" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 #, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "필터" +msgid "Partition Chart" +msgstr "Superset 튜토리얼" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +#, fuzzy +msgid "Use Area Proportions" +msgstr "대시보드" + +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +#, fuzzy +msgid "Source / Target" +msgstr "데이터소스 명" + +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +#, fuzzy +msgid "Choose a source and a target" +msgstr "데이터소스 선택" + +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "CSV 파일" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "Query 검색" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -#, fuzzy -msgid "Fill method" -msgstr "주석 레이어" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -#, fuzzy -msgid "Filled" -msgstr "실패" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 #, fuzzy -msgid "Filter" -msgstr "필터" +msgid "Show Bubbles" +msgstr "테이블 보기" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "필터" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -#, fuzzy -msgid "Filter Settings" -msgstr "Query 공유" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box (deprecated)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 #, fuzzy -msgid "Filter charts" -msgstr "차트 수정" +msgid "Country Column" +msgstr "컬럼 목록" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -#, fuzzy -msgid "Filter menu" -msgstr "필터" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "필터" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "검색 결과" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 #, fuzzy -msgid "Filter type" -msgstr "필터" +msgid "deck.gl charts" +msgstr "차트 추가" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 #, fuzzy -msgid "Filter value is required" -msgstr "데이터소스" +msgid "Select charts" +msgstr "차트 추가" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +#, fuzzy +msgid "Error while fetching charts" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "필터" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "컬럼 목록" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "필터" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +#, fuzzy +msgid "Arc" +msgstr "검색" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +#, fuzzy +msgid "Target Color" +msgstr "시작 시간" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" msgstr "" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +#, fuzzy +msgid "Aggregation" +msgstr "생성자" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +#, fuzzy +msgid "Contours" +msgstr "컬럼 추가" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "차트 추가" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 #, fuzzy -msgid "Force date format" -msgstr "D3 포멧" +msgid "GeoJson Settings" +msgstr "Query 공유" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +msgid "Line width unit" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "필터" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -#, fuzzy -msgid "Forest Green" -msgstr "권한 부여" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" +msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -#, fuzzy -msgid "Formatted date" -msgstr "데이터베이스 선택" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" +msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -#, fuzzy -msgid "Formatted value" -msgstr "필터" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -#, fuzzy -msgid "Formatting" -msgstr "주석" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 #, fuzzy -msgid "Forward values" -msgstr "테이블 보기" - -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" -msgstr "" +msgid "deck.gl Heatmap" +msgstr "차트 추가" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 #, fuzzy -msgid "Friction" +msgid "deviation" msgstr "활동" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "시작 날짜가 끝 날짜보다 클 수 없습니다" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -#, fuzzy -msgid "Full name" -msgstr "Query 검색" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -#, fuzzy -msgid "Funnel Chart" -msgstr "차트 이동" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -#, fuzzy -msgid "Gauge Chart" -msgstr "차트 보기" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "이름" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 #, fuzzy -msgid "Generic Chart" -msgstr "차트 추가" +msgid "Polygon Column" +msgstr "컬럼 추가" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 #, fuzzy -msgid "GeoJson Column" -msgstr "컬럼 추가" +msgid "Elevation" +msgstr "생성자" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 #, fuzzy -msgid "GeoJson Settings" +msgid "Polygon Settings" msgstr "Query 공유" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +#, fuzzy +msgid "Emit Filter Events" +msgstr "필터" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 #, fuzzy -msgid "Graph Chart" -msgstr "차트 보기" +msgid "Multiple filtering" +msgstr "필터" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +#, fuzzy +msgid "Square meters" +msgstr "분기" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +#, fuzzy +msgid "Square kilometers" +msgstr "필터" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +#, fuzzy +msgid "Square miles" +msgstr "저장된 Query" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -msgid "Group Key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -#, fuzzy -msgid "Handlebars Template" -msgstr "템플릿 불러오기" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -#, fuzzy -msgid "Has created by" -msgstr "생성자" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -#, fuzzy -msgid "Hide chart description" -msgstr "설명" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -#, fuzzy -msgid "Hide password." -msgstr "비밀번호" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 #, fuzzy -msgid "Hierarchy" -msgstr "검색" +msgid "Select a dimension" +msgstr "대시보드 저장" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -#, fuzzy -msgid "Horizon Chart" -msgstr "차트 보기" - -#: superset/viz.py:2246 -msgid "Horizon Charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -#, fuzzy -msgid "Horizontal" -msgstr "차트 보기" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "시" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, fuzzy, python-format -msgid "Hours %s" -msgstr "시간" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +#, fuzzy +msgid "Legend Format" +msgstr "D3 포멧" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#, fuzzy +msgid "Top left" +msgstr "삭제" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +#, fuzzy +msgid "Bottom left" +msgstr "날짜/시간" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +#, fuzzy +msgid "Bottom right" +msgstr "날짜/시간" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +#, fuzzy +msgid "Lines column" +msgstr "컬럼 수정" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" msgstr "" -#: superset/views/database/mixins.py:165 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset/views/database/forms.py:174 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 #, fuzzy -msgid "If Table Already Exists" -msgstr "데이터셋 %(name)s 은 이미 존재합니다" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "" +msgid "Stroke Color" +msgstr "포트" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +#, fuzzy +msgid "Filled" +msgstr "실패" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +#, fuzzy +msgid "Stroked" +msgstr "생성자" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "대시보드 가져오기" - -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "대시보드 가져오기" - -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "대시보드 가져오기" - -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" - -#: superset-frontend/src/pages/ChartList/index.tsx:813 -#, fuzzy -msgid "Import charts" -msgstr "Superset 튜토리얼" - -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "대시보드 가져오기" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -#, fuzzy -msgid "Import database from file" -msgstr "차트 수정" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 #, fuzzy -msgid "Import datasets" -msgstr "차트 수정" +msgid "GeoJson Column" +msgstr "컬럼 추가" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 #, fuzzy -msgid "Import queries" -msgstr "대시보드 가져오기" +msgid "Select the geojson column" +msgstr "테이블 선택" -#: superset/queries/saved_queries/commands/exceptions.py:36 -#, fuzzy -msgid "Import saved query failed for an unknown reason." -msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -#, fuzzy -msgid "In" -msgstr "활동" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -#, fuzzy -msgid "Include time" -msgstr "종료 시간" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 #, fuzzy -msgid "Index" -msgstr "분" +msgid "linear" +msgstr "차트 이동" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "정보" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#, fuzzy +msgid "cardinal" +msgstr "실패" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "월" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +#, fuzzy +msgid "step-after" msgstr "필터" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +#, fuzzy +msgid "Show Range Filter" +msgstr "테이블 추가" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -#, fuzzy -msgid "Interval" -msgstr "새로고침 간격" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -#, fuzzy -msgid "Interval End column" -msgstr "컬럼 목록" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -#, fuzzy -msgid "Interval bounds" -msgstr "컬럼 목록" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -#, fuzzy -msgid "Interval start column" -msgstr "컬럼 목록" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -#, fuzzy -msgid "Intervals" -msgstr "새로고침 간격" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" msgstr "" -#: superset/db_engine_specs/ocient.py:274 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" msgstr "" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +#, fuzzy +msgid "Area Chart (legacy)" +msgstr "차트 보기" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +#, fuzzy +msgid "Line" +msgstr "분" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#, fuzzy +msgid "Deprecated" +msgstr "생성자" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" msgstr "" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -#, fuzzy -msgid "Invert current page" -msgstr "Superset 튜토리얼" - -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -#, fuzzy -msgid "Is certified" -msgstr "수정됨" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset-frontend/src/explore/constants.ts:89 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 #, fuzzy -msgid "Is false" -msgstr "테이블 수정" +msgid "Time-series Bar Chart (legacy)" +msgstr "시계열 테이블" -#: superset/views/base_api.py:149 -msgid "Is favorite" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "필터" - -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "Issue 1000 - The dataset is too large to query." -msgstr "이슈 1000 - 데이터 소스가 쿼리하기에 너무 큽니다." +msgid "Bubble Chart (legacy)" +msgstr "차트 보기" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +#, fuzzy +msgid "Ranges" +msgstr "관리" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 #, fuzzy -msgid "Jinja templating" -msgstr "템플릿 불러오기" +msgid "Time-series Percent Change" +msgstr "시계열 테이블" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +#, fuzzy +msgid "Sort Bars" +msgstr "대시보드 가져오기" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +#, fuzzy +msgid "Breakdowns" +msgstr "생성자" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset/views/database/forms.py:404 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +#, fuzzy +msgid "Additive" +msgstr "테이블 추가" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 #, fuzzy -msgid "Kilometers" -msgstr "필터" +msgid "Label Type" +msgstr "차트 유형" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 #, fuzzy -msgid "LIMIT" -msgstr "구분자" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "레이블" +msgid "Category Name" +msgstr "Query 검색" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 #, fuzzy -msgid "Label Type" -msgstr "차트 유형" +msgid "Percentage" +msgstr "Superset 튜토리얼" -#: superset/utils/pandas_postprocessing/rename.py:53 -#, fuzzy -msgid "Label already exists" -msgstr "데이터셋 %(name)s 은 이미 존재합니다" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +#, fuzzy +msgid "Donut" +msgstr "월" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 #, fuzzy -msgid "Labels" -msgstr "레이블" +msgid "Show Labels" +msgstr "테이블 보기" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 #, fuzzy -msgid "Large" -msgstr "Query 공유" +msgid "Pie Chart (legacy)" +msgstr "차트 보기" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "마지막 수정" - -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "마지막 수정" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "마지막 수정" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "마지막 수정" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +#, fuzzy +msgid "Event" +msgstr "월" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "새로고침 간격" + +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -#, fuzzy -msgid "Left" -msgstr "삭제" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +#, fuzzy +msgid "Additional padding for legend." +msgstr "주석" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #, fuzzy -msgid "Left value" -msgstr "테이블 명" +msgid "Orientation" +msgstr "주석" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +#, fuzzy +msgid "Bottom" +msgstr "날짜/시간" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -#, fuzzy -msgid "Legend Format" -msgstr "D3 포멧" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 #, fuzzy msgid "Legend Orientation" msgstr "주석" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +#, fuzzy +msgid "Show Value" +msgstr "테이블 보기" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +#, fuzzy +msgid "Tooltip sort by metric" +msgstr "필터" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 #, fuzzy -msgid "Limit type" -msgstr "시각화 유형" +msgid "Sort Series By" +msgstr "대시보드 가져오기" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +#, fuzzy +msgid "Sort Series Ascending" +msgstr "클릭하여 제목 수정하기" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 #, fuzzy -msgid "Line" -msgstr "분" +msgid "Series Order" +msgstr "저장된 Query" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 #, fuzzy -msgid "Line Chart" -msgstr "차트 이동" +msgid "Truncate X Axis" +msgstr "메트릭" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "컬럼 목록" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "메트릭" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" msgstr "" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -#, fuzzy -msgid "Lines column" -msgstr "컬럼 수정" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "복사됨!" - -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "저장된 Query 목록" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 #, fuzzy -msgid "List Unique Values" -msgstr "필터" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." -msgstr "" +msgid "Tiny" +msgstr "활동" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 #, fuzzy -msgid "List updated" -msgstr "분기" +msgid "Large" +msgstr "Query 공유" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "CSS 템플릿 불러오기" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +#, fuzzy +msgid "Display settings" +msgstr "Query 공유" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 #, fuzzy -msgid "Loading" -msgstr "CSV 업로드" +msgid "Date format" +msgstr "D3 포멧" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#, fuzzy +msgid "Force date format" +msgstr "D3 포멧" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 #, fuzzy -msgid "Locate the chart" -msgstr "새 차트 생성" +msgid "Conditional Formatting" +msgstr "주석" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "주석" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +#, fuzzy +msgid "A Big Number" +msgstr "테이블 명" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "로그인" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "로그아웃" - -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "로그" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +#, fuzzy +msgid "Comparison suffix" +msgstr "컬럼 수정" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" msgstr "" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "관리" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -#, fuzzy -msgid "Manage email report" -msgstr "대시보드에 차트 추가" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Manage your databases" -msgstr "데이터베이스 선택" +msgid "Tukey" +msgstr "Query 공유" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -#, fuzzy -msgid "Map" -msgstr "트리맵" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "검색" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "ECharts" +msgstr "차트" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +msgid "Bubble size number format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 #, fuzzy -msgid "Marker" -msgstr "분기" +msgid "Bubble Opacity" +msgstr "버블 차트" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "시각화 유형 선택" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +#, fuzzy +msgid "Labels" +msgstr "레이블" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 #, fuzzy -msgid "Maximum value" -msgstr "테이블 명" +msgid "Label Contents" +msgstr "새 차트 생성" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Superset 튜토리얼" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "일" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -#, fuzzy -msgid "Mean values" -msgstr "테이블 명" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "테이블 보기" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +msgid "Whether to display the tooltip labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 #, fuzzy -msgid "Median values" -msgstr "원본 값" +msgid "Funnel Chart" +msgstr "차트 이동" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "메트릭" - -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +#, fuzzy +msgid "Start angle" +msgstr "시작 시간" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -#, fuzzy -msgid "Metric name" -msgstr "Query 검색" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +#, fuzzy +msgid "Animation" +msgstr "주석" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "메트릭" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -#, fuzzy -msgid "Middle" -msgstr "CSV 파일" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 #, fuzzy -msgid "Miles" -msgstr "필터" +msgid "Show progress" +msgstr "대시보드" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -#, fuzzy -msgid "Min Periods" -msgstr "10초" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 #, fuzzy -msgid "Minimum" -msgstr "분" - -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" -msgstr "" +msgid "Intervals" +msgstr "새로고침 간격" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +#, fuzzy +msgid "Interval bounds" +msgstr "컬럼 목록" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 #, fuzzy -msgid "Minimum value" -msgstr "테이블 명" +msgid "Gauge Chart" +msgstr "차트 보기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +#, fuzzy +msgid "Source category" +msgstr "데이터소스 명" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "분" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +#, fuzzy +msgid "Target category" +msgstr "시작 시간" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, fuzzy, python-format -msgid "Minutes %s" -msgstr "분" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 #, fuzzy -msgid "Missing URL parameters" +msgid "Chart options" msgstr "주석" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -#, fuzzy -msgid "Mixed Chart" -msgstr "차트 이동" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "수정됨" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, fuzzy, python-format -msgid "Modified %s" -msgstr "마지막 수정" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "수정됨" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" msgstr "" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "달" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, fuzzy, python-format -msgid "Months %s" -msgstr "월" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -#, fuzzy -msgid "More" -msgstr "새로고침 간격" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -#, fuzzy -msgid "More filters" -msgstr "테이블 추가" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +#, fuzzy +msgid "Disabled" +msgstr "테이블 수정" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 #, fuzzy -msgid "Multiple Line Charts" -msgstr "새 차트 생성" +msgid "Single" +msgstr "CSV 파일" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -#, fuzzy -msgid "Multiple filtering" -msgstr "필터" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" msgstr "" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 #, fuzzy -msgid "My column" -msgstr "컬럼 추가" +msgid "Repulsion" +msgstr "표현식" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "메트릭" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +#, fuzzy +msgid "Friction" +msgstr "활동" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +#, fuzzy +msgid "Graph Chart" +msgstr "차트 보기" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "NUMERIC" -msgstr "메트릭" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "이름" +msgid "Series type" +msgstr "시각화 유형" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" msgstr "" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" msgstr "" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 #, fuzzy -msgid "Name of the id column" -msgstr "컬럼 수정" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" -msgstr "" +msgid "Area chart" +msgstr "차트 보기" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 #, fuzzy -msgid "Name your database" -msgstr "데이터베이스 선택" +msgid "Marker" +msgstr "분기" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -#, fuzzy -msgid "Network error" -msgstr "알 수 없는 에러" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "차트 이동" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +#, fuzzy +msgid "Secondary" +msgstr "초" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "New dataset" -msgstr "데이터소스 선택" +msgid "Shared query fields" +msgstr "저장된 Query" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 #, fuzzy -msgid "New dataset name" -msgstr "데이터소스 명" +msgid "Query A" +msgstr "Query 공유" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 #, fuzzy -msgid "New header" -msgstr "차트 이동" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "탭 닫기" +msgid "Query B" +msgstr "Query 공유" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -#, fuzzy -msgid "No Results" -msgstr "결과" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "차트" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -#, fuzzy -msgid "No annotation layers" -msgstr "주석 레이어" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "주석 레이어" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "주석 레이어" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -#, fuzzy -msgid "No applied filters" -msgstr "테이블 추가" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -#, fuzzy -msgid "No available filters." -msgstr "필터" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -#, fuzzy -msgid "No charts yet" -msgstr "차트" - -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -#, fuzzy -msgid "No columns" -msgstr "컬럼 추가" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -#, fuzzy -msgid "No columns found" -msgstr "컬럼 추가" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "대시보드" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "파일에 데이터가 없습니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 #, fuzzy -msgid "No database tables found" -msgstr "데이터베이스를 찾을 수 없습니다." - -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "" +msgid "Mixed Chart" +msgstr "차트 이동" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "No filter" -msgstr "테이블 추가" +msgid "Show Total" +msgstr "컬럼 보기" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 -#, fuzzy -msgid "No filters" -msgstr "테이블 추가" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +#, fuzzy +msgid "Pie Chart" +msgstr "차트 이동" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -#, fuzzy -msgid "No results" -msgstr "결과" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 #, fuzzy -msgid "No saved expressions found" -msgstr "표현식" +msgid "Radar Chart" +msgstr "차트 보기" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 #, fuzzy -msgid "No saved metrics found" -msgstr "저장된 Query" +msgid "Primary Metric" +msgstr "메트릭" -#: superset-frontend/src/features/home/EmptyState.tsx:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 #, fuzzy -msgid "No saved queries yet" -msgstr "저장된 Query" +msgid "Secondary Metric" +msgstr "메트릭" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 #, fuzzy -msgid "No table columns" -msgstr "컬럼 보기" +msgid "Hierarchy" +msgstr "검색" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +#, fuzzy +msgid "Sunburst Chart" +msgstr "Superset 튜토리얼" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +#, fuzzy +msgid "Generic Chart" +msgstr "차트 추가" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +#, fuzzy +msgid "Series Style" +msgstr "시계열 테이블" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 #, fuzzy -msgid "Not added to any dashboard" -msgstr "대시보드 추가" +msgid "Area Chart" +msgstr "차트 보기" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 #, fuzzy -msgid "Not in" -msgstr "주석" +msgid "Axis Format" +msgstr "D3 포멧" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "주석 레이어" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +#, fuzzy +msgid "Axis Bounds" +msgstr "컬럼 목록" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset/views/database/forms.py:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 #, fuzzy -msgid "Null Values" -msgstr "원본 값" +msgid "Chart Orientation" +msgstr "주석" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 #, fuzzy -msgid "Null imputation" +msgid "Bar orientation" msgstr "주석" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +#, fuzzy +msgid "Horizontal" +msgstr "차트 보기" -#: superset/views/database/forms.py:402 -msgid "Null values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +#, fuzzy +msgid "Bar Chart" +msgstr "차트 보기" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +#, fuzzy +msgid "Line Chart" +msgstr "차트 이동" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +#, fuzzy +msgid "Step type" +msgstr "차트 유형" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "시작 시간" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +#, fuzzy +msgid "Middle" +msgstr "CSV 파일" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "끝 시간" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +#, fuzzy +msgid "Stepped Line" +msgstr "시계열 테이블" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +#, fuzzy +msgid "Name of the id column" +msgstr "컬럼 수정" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "오프셋" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +#, fuzzy +msgid "Radial" +msgstr "실패" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 #, fuzzy -msgid "One or many columns to pivot as columns" -msgstr "하나 이상의 칼럼이 존재하지 않습니다" +msgid "Tree orientation" +msgstr "주석" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "하나 이상의 칼럼이 이미 존재합니다" - -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "하나 이상의 칼럼이 중복됩니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "하나 이상의 칼럼이 존재하지 않습니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "하나 이상의 메트릭이 이미 존재합니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "하나 이상의 메트릭이 중복됩니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +#, fuzzy +msgid "left" +msgstr "삭제" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "하나 이상의 메트릭이 존재하지 않습니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +#, fuzzy +msgid "top" +msgstr "중지" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +#, fuzzy +msgid "bottom" +msgstr "날짜/시간" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "오직 `SELECT` 구문만 허용됩니다." - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "오직 하나의 쿼리만 지원됩니다" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +#, fuzzy +msgid "Circle" +msgstr "CSV 파일" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "데이터소스 명" - -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "SQL Lab" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "새로운 탭에서 Query실행" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 #, fuzzy -msgid "Operator" -msgstr "생성자" +msgid "Tree Chart" +msgstr "차트 이동" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -#, fuzzy -msgid "Optional d3 date format string" -msgstr "주석" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -#, fuzzy -msgid "Optional d3 number format string" -msgstr "주석" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "트리맵" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 #, fuzzy -msgid "Options" -msgstr "주석" +msgid "Increase" +msgstr "생성자" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "생성자" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "컬럼 수정" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 #, fuzzy -msgid "Orientation" -msgstr "주석" +msgid "Waterfall Chart" +msgstr "차트 추가" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -#, fuzzy -msgid "Original" -msgstr "원본 값" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "원본 값" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#, fuzzy +msgid "Handlebars Template" +msgstr "템플릿 불러오기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 #, fuzzy -msgid "Other" -msgstr "월" +msgid "Include time" +msgstr "종료 시간" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +#, fuzzy +msgid "Percentage metrics" +msgstr "메트릭" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +#, fuzzy +msgid "Query mode" +msgstr "Query 검색" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "소유자가 부적절합니다" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +#, fuzzy +msgid "Range for Comparison" +msgstr "컬럼 수정" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." -msgstr "" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "컬럼 수정" -#: 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." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +#, fuzzy +msgid "Apply metrics on" +msgstr "메트릭" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +#, fuzzy +msgid "Cell limit" +msgstr "구분자" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +#, fuzzy +msgid "Count" +msgstr "컬럼 추가" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +#, fuzzy +msgid "Count Unique Values" +msgstr "필터" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#, fuzzy +msgid "List Unique Values" +msgstr "필터" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "Query 공유" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 #, fuzzy -msgid "Partition Chart" -msgstr "Superset 튜토리얼" +msgid "Minimum" +msgstr "분" -#: superset/viz.py:3069 -msgid "Partition Diagram" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -#, fuzzy -msgid "Password" -msgstr "비밀번호" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -#, fuzzy -msgid "Percent Change" -msgstr "Superset 튜토리얼" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -#, fuzzy -msgid "Percentage" -msgstr "Superset 튜토리얼" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -#, fuzzy -msgid "Percentage change" -msgstr "Superset 튜토리얼" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 #, fuzzy -msgid "Percentage metrics" -msgstr "메트릭" +msgid "Show rows subtotal" +msgstr "컬럼 보기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +#, fuzzy +msgid "Show columns total" +msgstr "컬럼 보기" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "컬럼 보기" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +#, fuzzy +msgid "Combine metrics" +msgstr "메트릭" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "데이터소스 선택" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +#, fuzzy +msgid "Conditional formatting" +msgstr "주석" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "적어도 하나의 메트릭을 선택하세요" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "피봇 테이블" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -#, fuzzy -msgid "Pie Chart" -msgstr "차트 이동" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "피봇 테이블" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 #, fuzzy -msgid "Pivoted" -msgstr "테이블 수정" +msgid "Search box" +msgstr "검색" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +#, fuzzy +msgid "Cell bars" +msgstr "차트 추가" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset/sqllab/query_render.py:118 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +#, fuzzy +msgid "Customize columns" +msgstr "컬럼 목록" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset/viz.py:3234 +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "적어도 하나의 'Group by'필드를 선택하세요" +msgid "entries" +msgstr "저장된 Query" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +#, fuzzy +msgid "Word Rotation" +msgstr "주석" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" +msgid "square" +msgstr "분기" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +#, fuzzy +msgid "failed" +msgstr "실패" + +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "플러그인" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "중지" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "알 수 없는 에러" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -#, fuzzy -msgid "Polygon Column" -msgstr "컬럼 추가" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -#, fuzzy -msgid "Polygon Settings" -msgstr "Query 공유" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -#, fuzzy -msgid "Port" -msgstr "생성자" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -#, fuzzy -msgid "Pre-filter" -msgstr "필터" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -#, fuzzy -msgid "Pre-filter is required" -msgstr "데이터소스" - -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "데이터 미리보기" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Query 공유" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -#, fuzzy -msgid "Primary Metric" -msgstr "메트릭" - #: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 #, fuzzy msgid "Primary key" msgstr "메트릭" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#, fuzzy +msgid "Index" +msgstr "분" + +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -#, fuzzy -msgid "Private Key Password" -msgstr "비밀번호" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "" + +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 #, fuzzy -msgid "Proceed" +msgid "explore" msgstr "생성자" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "프로필" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +#, fuzzy +msgid "Create Chart" +msgstr "차트 보기" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +#, fuzzy +msgid "Executed SQL" +msgstr "저장된 Query 수정" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Query 실행" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Query 실행" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Query 저장" + +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "탭 닫기" + +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +msgid "Format SQL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "실패" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +#, fuzzy +msgid "LIMIT" +msgstr "구분자" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "상태" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#, fuzzy +msgid "Started" +msgstr "상태" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "결과" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "주석" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "실패" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" msgstr "" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "분기" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, fuzzy, python-format -msgid "Quarters %s" -msgstr "분기" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 #, fuzzy -msgid "Queries" -msgstr "저장된 Query" +msgid "View" +msgstr "데이터 미리보기" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "데이터 미리보기" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -#, fuzzy -msgid "Query A" -msgstr "Query 공유" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "새로운 탭에서 Query실행" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -#, fuzzy -msgid "Query B" -msgstr "Query 공유" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Query 로그 삭제" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Query 실행 이력" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "" -#: superset/commands/exceptions.py:142 -#, fuzzy -msgid "Query does not exist" -msgstr "차트가 존재하지 않습니다" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "Query 실행 이력" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -#, fuzzy -msgid "Query imported" -msgstr "Query 검색" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -#, fuzzy -msgid "Query mode" -msgstr "Query 검색" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "검색 결과" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Query 검색" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "데이터 미리보기" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" msgstr "" -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "차트를 삭제할 수 없습니다." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "" -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "CSS 템플릿을 찾을수 없습니다." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s 에러" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 #, fuzzy -msgid "Radar Chart" -msgstr "차트 보기" +msgid "See query details" +msgstr "저장된 Query" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -#, fuzzy -msgid "Radial" -msgstr "실패" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "데이터베이스" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#, fuzzy -msgid "Range" -msgstr "관리" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "검색 결과" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -#, fuzzy -msgid "Range filter" -msgstr "테이블 추가" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "중지" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -#, fuzzy -msgid "Ranges" -msgstr "관리" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "저장" + +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 #, fuzzy -msgid "Ratio" -msgstr "생성자" +msgid "Untitled Dataset" +msgstr "차트 수정" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "다른이름으로 저장" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +#, fuzzy +msgid "Existing dataset" +msgstr "차트 수정" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +#, fuzzy +msgid "Save dataset" +msgstr "데이터소스 선택" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "레코드 수" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Query 저장" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "취소" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -#, fuzzy -msgid "Refer to the" -msgstr "월" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Query 공유" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "검색 결과" - -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "새로고침 간격" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "대시보드 가져오기" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "새로고침 간격" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "클립보드에 복사하기" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -#, fuzzy -msgid "Refresh interval saved" -msgstr "새로고침 간격" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -#, fuzzy -msgid "Refresh tables" -msgstr "시계열 테이블" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -#, fuzzy -msgid "Refreshing charts" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -#, fuzzy -msgid "Refreshing columns" -msgstr "컬럼 수정" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Query 실행 이력" -#: superset-frontend/src/explore/constants.ts:78 -#, fuzzy -msgid "Regex" -msgstr "Query 공유" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -#, fuzzy -msgid "Relational" -msgstr "생성자" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -#, fuzzy -msgid "Reload" -msgstr "생성자" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Remove cross-filter" -msgstr "필터" +msgid "Collapse table preview" +msgstr "데이터 미리보기" + +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +#, fuzzy +msgid "Expand table preview" +msgstr "데이터 미리보기" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Query 로그 삭제" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "탭 닫기" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "바꾸기" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 #, fuzzy -msgid "Report" -msgstr "생성자" +msgid "Add a new tab" +msgstr "새 차트 생성" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -#, fuzzy -msgid "Report Name" -msgstr "차트 유형" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" msgstr "" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" msgstr "" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" msgstr "" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" msgstr "" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" msgstr "" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" msgstr "" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "클립보드에 복사하기" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 #, fuzzy -msgid "Report a bug" -msgstr "차트 유형" +msgid "Jinja templating" +msgstr "템플릿 불러오기" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "차트 유형" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" msgstr "" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " msgstr "" -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" msgstr "" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Query 공유" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "대시보드 가져오기" - -#: superset-frontend/src/reports/actions/reports.js:121 +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 #, fuzzy -msgid "Report updated" -msgstr "차트 유형" +msgid "Control" +msgstr "컬럼 추가" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +#, fuzzy +msgid "Before" +msgstr "새로고침 간격" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 #, fuzzy -msgid "Repulsion" -msgstr "표현식" +msgid "After" +msgstr "분기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "부적절한 요청입니다 : %(error)s" - -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" msgstr "" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "마지막 수정" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "데이터베이스를 찾을 수 없습니다." +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "결과" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#: superset-frontend/src/components/Chart/chartReducer.ts:96 #, fuzzy, python-format -msgid "Results %s" -msgstr "결과" +msgid "An error occurred while rendering the visualization: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." msgstr "" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +#, fuzzy +msgid "This visualization type does not support cross-filtering." +msgstr "시각화 유형 선택" + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +#, fuzzy +msgid "Remove cross-filter" +msgstr "필터" + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +#, fuzzy +msgid "Add cross-filter" +msgstr "테이블 추가" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy -msgid "Right Axis Metric" -msgstr "메트릭" +msgid "Search columns" +msgstr "컬럼 추가" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#, fuzzy +msgid "No columns found" +msgstr "컬럼 추가" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +msgid "You do not have sufficient permissions to edit the chart" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy -msgid "Right value" -msgstr "원본 값" +msgid "Edit chart" +msgstr "차트 수정" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" msgstr "" -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "역할" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "대시보드 가져오기" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, fuzzy, python-format +msgid "Results %s" +msgstr "결과" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "역할" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "권한 부여" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#, fuzzy +msgid "Formatting" +msgstr "주석" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" -msgstr "" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#, fuzzy +msgid "Formatted value" +msgstr "필터" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +#, fuzzy +msgid "Reload" +msgstr "생성자" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "클립보드에 복사하기" + +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "월" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "1시간" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 #, fuzzy -msgid "Row Level Security" -msgstr "저수준 보안" +msgid "every minute" +msgstr "월" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "분" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 #, fuzzy -msgid "Rule Name" -msgstr "Query 검색" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" -msgstr "" +msgid "minute(s)" +msgstr "5분" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "SQL Lab" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Query 실행" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "새로운 탭에서 Query실행" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" msgstr "" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "복사됨!" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "검색" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL 표현식" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "일" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" msgstr "" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "Query 저장" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "Query 저장" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -#, fuzzy -msgid "SSH Password" -msgstr "비밀번호" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -#, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "차트를 삭제할 수 없습니다." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -#, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "차트를 업데이트할 수 없습니다." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -#, fuzzy -msgid "SSH Tunnel not found." -msgstr "CSS 템플릿을 찾을수 없습니다." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -#, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "차트의 파라미터가 부적절합니다." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "테이블" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "데이터베이스를 생성할 수 없습니다." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "데이터베이스를 생성할 수 없습니다." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -#, fuzzy -msgid "Satellite" -msgstr "테이블 추가" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "저장" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy -msgid "Save & go to new dashboard" -msgstr "대시보드 저장" - -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "저장된 Query" +msgid "Successfully changed dataset!" +msgstr "데이터소스 선택" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 #, fuzzy -msgid "Save as Dataset" +msgid "Swap dataset" msgstr "데이터소스 선택" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy -msgid "Save as dataset" -msgstr "데이터소스 선택" +msgid "Proceed" +msgstr "생성자" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "다른이름으로 저장" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "새 차트 생성" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "다른이름으로 저장" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "테이블 추가" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "다른이름으로 저장" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 #, fuzzy -msgid "Save changes" -msgstr "차트 보기" - -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "차트 보기" - -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "대시보드 저장" +msgid "NUMERIC" +msgstr "메트릭" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 #, fuzzy -msgid "Save dataset" -msgstr "데이터소스 선택" +msgid "DATETIME" +msgstr "시작 시간" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Query 저장" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "차트 유형" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -#, fuzzy -msgid "Save to new dashboard" -msgstr "대시보드 저장" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "저장" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" +msgstr "" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "저장된 Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -#, fuzzy -msgid "Saved expressions" -msgstr "표현식" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "저장된 Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "저장된 Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "저장된 쿼리를 찾을 수 없습니다." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 #, fuzzy -msgid "Saved query parameters are invalid." -msgstr "차트의 파라미터가 부적절합니다." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "" +msgid "Certified By" +msgstr "수정됨" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "수정됨" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -#, fuzzy -msgid "Schedule a new email report" -msgstr "대시보드에 차트 추가" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "필터" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 #, fuzzy -msgid "Schedule email report" -msgstr "대시보드에 차트 추가" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Query 공유" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Query 공유" +msgid "" +msgstr "컬럼 수정" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" msgstr "" -#: superset/tasks/exceptions.py:24 -#, fuzzy -msgid "Scheduled task executor not found" -msgstr "캐시된 값을 찾을 수 없습니다." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "스키마" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -#, fuzzy -msgid "Schema cache timeout" -msgstr "차트 유형" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "" -#: superset/views/core.py:1186 -#, fuzzy -msgid "Schema undefined" -msgstr "테이블 명이 정해지지 않았습니다" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "검색" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -#, fuzzy -msgid "Search all charts" -msgstr "차트 추가" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -#, fuzzy -msgid "Search box" -msgstr "검색" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -#, fuzzy -msgid "Search columns" -msgstr "컬럼 추가" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 -#, fuzzy -msgid "Search in filters" -msgstr "필터" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Search tables" -msgstr "사용자 권한" +msgid "Normalize column names" +msgstr "컬럼 목록" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "검색" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" +msgstr "" -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "초" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -#, fuzzy -msgid "Secondary" -msgstr "초" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 #, fuzzy -msgid "Secondary Metric" -msgstr "메트릭" +msgid "" +msgstr "차트 유형" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, fuzzy, python-format -msgid "Seconds %s" -msgstr "30초" - -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "보안" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "보안" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "보안" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "데이터소스 명" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +#, fuzzy +msgid "Metric Key" +msgstr "메트릭" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -#, fuzzy -msgid "See query details" -msgstr "저장된 Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "테이블 선택" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -#, fuzzy -msgid "Select" -msgstr "삭제" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" +msgstr "" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Select Viz Type" -msgstr "시각화 유형" +msgid "" +msgstr "저장된 Query" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -#, fuzzy -msgid "Select a column" -msgstr "테이블 선택" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -#, fuzzy -msgid "Select a dashboard" -msgstr "대시보드 저장" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "컬럼 목록" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -#, fuzzy -msgid "Select a database table." -msgstr "데이터베이스 선택" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -#, fuzzy -msgid "Select a database to connect" -msgstr "데이터베이스 선택" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Select a dimension" -msgstr "대시보드 저장" +msgid "Error saving dataset" +msgstr "차트 수정" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "테이블 선택" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "차트 수정" -#: superset-frontend/src/components/Table/index.tsx:205 -#, fuzzy -msgid "Select all items" -msgstr "테이블 선택" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "차트 추가" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#, fuzzy -msgid "Select charts" -msgstr "차트 추가" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "삭제" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 #, fuzzy -msgid "Select column" -msgstr "컬럼 목록" +msgid "More" +msgstr "새로고침 간격" -#: superset-frontend/src/components/Table/index.tsx:208 -#, fuzzy -msgid "Select current page" -msgstr "필터" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "클릭하여 제목 수정하기" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -#, fuzzy -msgid "Select database & schema" -msgstr "테이블 선택" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "" + +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/EmptyState/index.tsx:230 #, fuzzy -msgid "Select database table" +msgid "Manage your databases" msgstr "데이터베이스 선택" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +#, fuzzy +msgid "here" +msgstr "Query 공유" + +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "데이터소스" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:445 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 #, fuzzy -msgid "Select file" -msgstr "필터" +msgid "Please reach out to the Chart Owner for assistance." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -#, fuzzy -msgid "Select filter" -msgstr "필터" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s 에러" + +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Select saved metrics" -msgstr "저장된 Query" +msgid "This was triggered by:" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -#, fuzzy -msgid "Select scheme" -msgstr "테이블 선택" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "데이터베이스 선택" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgstr "" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "" + +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "" + +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Select the Annotation Layer you would like to use." -msgstr "주석 레이어" +msgid "Hide password." +msgstr "비밀번호" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +#, fuzzy +msgid "Show password." +msgstr "대시보드 보기" + +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 +#: superset-frontend/src/components/ImportModal/index.tsx:291 #, fuzzy -msgid "Select the geojson column" -msgstr "테이블 선택" +msgid "Database passwords" +msgstr "데이터베이스" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "비밀번호" + +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 #, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "" + +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "대시보드 가져오기" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +#, fuzzy +msgid "Select file" +msgstr "필터" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "테이블 선택" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -#, fuzzy -msgid "Series Order" -msgstr "저장된 Query" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +#: superset-frontend/src/components/ListView/ListView.tsx:450 #, fuzzy -msgid "Series Style" -msgstr "시계열 테이블" +msgid "clear all filters" +msgstr "필터" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Series type" -msgstr "시각화 유형" +msgid "Start date" +msgstr "시작 시간" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "End date" +msgstr "차트 추가" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +#, fuzzy +msgid "Filter" +msgstr "필터" + +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "새로고침 간격" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "마지막 수정" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "수정됨" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -#, fuzzy -msgid "Set up an email report" -msgstr "대시보드에 차트 추가" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "생성자" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "생성자" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Query 공유" +#: superset-frontend/src/components/Table/index.tsx:216 +#, fuzzy +msgid "Filter menu" +msgstr "필터" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:219 +#, fuzzy +msgid "No filters" +msgstr "테이블 추가" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Query 공유" +#: superset-frontend/src/components/Table/index.tsx:220 +#, fuzzy +msgid "Select all items" +msgstr "테이블 선택" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 +#: superset-frontend/src/components/Table/index.tsx:221 #, fuzzy -msgid "Shared query fields" -msgstr "저장된 Query" +msgid "Search in filters" +msgstr "필터" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "테이블 명" +#: superset-frontend/src/components/Table/index.tsx:223 +#, fuzzy +msgid "Select current page" +msgstr "필터" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:224 +#, fuzzy +msgid "Invert current page" +msgstr "Superset 튜토리얼" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:225 +#, fuzzy +msgid "Clear all data" +msgstr "차트 추가" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:226 +#, fuzzy +msgid "Select all data" +msgstr "테이블 선택" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 +#: superset-frontend/src/components/Table/index.tsx:231 #, fuzzy -msgid "Show Bubbles" -msgstr "테이블 보기" +msgid "Click to sort ascending" +msgstr "클릭하여 제목 수정하기" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "CSS 템플릿 보기" - -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "차트 보기" - -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "컬럼 보기" - -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "대시보드 보기" - -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "데이터베이스 보기" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 +#: superset-frontend/src/components/TableSelector/index.tsx:187 #, fuzzy -msgid "Show Labels" -msgstr "테이블 보기" +msgid "List updated" +msgstr "분기" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "컬럼 보기" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "테이블 선택" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "메트릭 보기" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -#, fuzzy -msgid "Show Metric Names" -msgstr "메트릭 보기" +#: superset-frontend/src/components/Tags/utils.tsx:72 +msgid "You do not have permission to read tags" +msgstr "" + +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 #, fuzzy -msgid "Show Range Filter" -msgstr "테이블 추가" +msgid "Failed to save cross-filter scoping" +msgstr "필터" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "저장된 Query 보기" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "테이블 보기" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -#, fuzzy -msgid "Show Total" -msgstr "컬럼 보기" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 #, fuzzy -msgid "Show Value" -msgstr "테이블 보기" +msgid "This dashboard is now hidden" +msgstr "이 차트를 변경하는 것은 불가능합니다" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 #, fuzzy -msgid "Show Values" -msgstr "테이블 보기" +msgid "[ untitled dashboard ]" +msgstr "대시보드 저장" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -#, fuzzy -msgid "Show all columns" -msgstr "컬럼 보기" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -#, fuzzy -msgid "Show chart description" -msgstr "설명" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -#, fuzzy -msgid "Show columns total" -msgstr "컬럼 보기" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -#, fuzzy -msgid "Show empty columns" -msgstr "컬럼 수정" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -#, fuzzy -msgid "Show label" -msgstr "테이블 보기" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -#, fuzzy -msgid "Show less columns" -msgstr "컬럼 수정" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "새 차트 생성" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "" + +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 #, fuzzy -msgid "Show password." -msgstr "대시보드 보기" +msgid "Edit the dashboard" +msgstr "대시보드 추가" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 #, fuzzy -msgid "Show progress" -msgstr "대시보드" +msgid "Refresh interval saved" +msgstr "새로고침 간격" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "새로고침 간격" + +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -#, fuzzy -msgid "Show time column" -msgstr "컬럼 수정" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "대시보드 저장" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "다른이름으로 저장" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +#, fuzzy +msgid "viz type" +msgstr "시각화 유형" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "새 차트 생성" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +#, fuzzy +msgid "Filter charts" +msgstr "차트 수정" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, fuzzy, python-format +msgid "Sort by %s" +msgstr "대시보드 가져오기" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "알 수 없는 에러" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "시각화 유형" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "데이터베이스" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Superset 튜토리얼" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -#, fuzzy -msgid "Single" -msgstr "CSV 파일" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -#, fuzzy -msgid "Single Metric" -msgstr "필터" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "CSS 템플릿 불러오기" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -#, fuzzy -msgid "Single Value" -msgstr "원본 값" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -#, fuzzy -msgid "Single value" -msgstr "원본 값" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" msgstr "" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "몇몇 역할이 존재하지 않습니다" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +#, fuzzy +msgid "Save changes" +msgstr "차트 보기" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#, fuzzy +msgid "Add the name of the dashboard" +msgstr "대시보드 추가" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "대시보드" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#, fuzzy +msgid "Undo the action" +msgstr "주석" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +#, fuzzy +msgid "Discard" +msgstr "대시보드" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +#, fuzzy +msgid "Refreshing charts" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "대시보드 저장" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "대시보드 가져오기" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" msgstr "" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "CSS 수정" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 #, fuzzy -msgid "Sort Bars" +msgid "Export to PDF" msgstr "대시보드 가져오기" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Query 공유" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 #, fuzzy -msgid "Sort Metric" -msgstr "메트릭" +msgid "Copy permalink to clipboard" +msgstr "클립보드에 복사하기" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 #, fuzzy -msgid "Sort Series Ascending" -msgstr "클릭하여 제목 수정하기" +msgid "Embed dashboard" +msgstr "대시보드 저장" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 #, fuzzy -msgid "Sort Series By" -msgstr "대시보드 가져오기" +msgid "Manage email report" +msgstr "대시보드에 차트 추가" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "새로고침 간격" + +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 #, fuzzy, python-format -msgid "Sort by %s" -msgstr "대시보드 가져오기" +msgid "Last Updated %s by %s" +msgstr "마지막 수정" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "" + +#: 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:66 #, fuzzy -msgid "Sort by metric" -msgstr "메트릭" +msgid "Error" +msgstr "%s 에러" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +#, fuzzy +msgid "Dashboard properties updated" +msgstr "대시보드" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "" + +#: 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 "" + +#: 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." +msgstr "" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "" + +#: 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 " +"defined, regular access permissions apply." +msgstr "" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "대시보드" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 #, fuzzy -msgid "Sort filter values" -msgstr "필터" +msgid "Certification" +msgstr "주석 레이어" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "메트릭" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" +#: 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 "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -#, fuzzy -msgid "Sort type" -msgstr "차트 유형" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -#, fuzzy -msgid "Source / Target" -msgstr "데이터소스 명" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -#, fuzzy -msgid "Source category" -msgstr "데이터소스 명" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." msgstr "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 #, fuzzy -msgid "Square kilometers" -msgstr "필터" +msgid "Hide chart description" +msgstr "설명" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 #, fuzzy -msgid "Square meters" -msgstr "분기" +msgid "Show chart description" +msgstr "설명" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Square miles" -msgstr "저장된 Query" +msgid "Cross-filtering scoping" +msgstr "필터" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Query 공유" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +#, fuzzy +msgid "View as table" +msgstr "탭 닫기" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "차트" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +msgid "Export to full Excel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "시작 시간" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "검색" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -#, fuzzy -msgid "Start Review" -msgstr "데이터 미리보기" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -#, fuzzy -msgid "Start angle" -msgstr "시작 시간" - -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -#, fuzzy -msgid "Start at (UTC)" -msgstr "시작 시간" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "Start date" -msgstr "시작 시간" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 #, fuzzy -msgid "Started" -msgstr "상태" +msgid "An error occurred while opening Explore" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "상태" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#, fuzzy +msgid "Empty column" +msgstr "컬럼 추가" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "상태" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +#, fuzzy +msgid "create a new chart" +msgstr "새 차트 생성" + +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 #, fuzzy -msgid "Step type" -msgstr "차트 유형" +msgid "edit mode" +msgstr "Query 검색" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -#, fuzzy -msgid "Stepped Line" -msgstr "시계열 테이블" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "대시보드" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "중지" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Query 저장" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "데이터 미리보기" + +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +#, fuzzy +msgid "Unknown value" +msgstr "알 수 없는 에러" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +#, fuzzy +msgid "Add/Edit Filters" +msgstr "테이블 추가" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #, fuzzy -msgid "Stroke Color" -msgstr "포트" +msgid "Apply filters" +msgstr "필터" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 #, fuzzy -msgid "Stroked" -msgstr "생성자" +msgid "Locate the chart" +msgstr "새 차트 생성" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#, fuzzy +msgid "Cross-filters" +msgstr "필터" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "차트 추가" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "차트 추가" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 #, fuzzy -msgid "Successfully changed dataset!" -msgstr "데이터소스 선택" +msgid "More filters" +msgstr "테이블 추가" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#, fuzzy +msgid "No applied filters" +msgstr "테이블 추가" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "테이블 추가" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -#, fuzzy -msgid "Sum values" -msgstr "테이블 명" - -#: superset/viz.py:1805 -msgid "Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 #, fuzzy -msgid "Sunburst Chart" -msgstr "Superset 튜토리얼" +msgid "Filter type" +msgstr "필터" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 #, fuzzy -msgid "Sunburst Chart v2" -msgstr "Superset 튜토리얼" +msgid "Title is required" +msgstr "데이터소스" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Superset 튜토리얼" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "대시보드 저장" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" +msgstr "" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset/errors.py:112 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 #, fuzzy -msgid "Superset encountered an unexpected error." -msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했습니다." +msgid "Add and edit filters" +msgstr "테이블 추가" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 #, fuzzy -msgid "Supported databases" -msgstr "데이터베이스 선택" +msgid "Column select" +msgstr "컬럼 추가" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +#, fuzzy +msgid "Select a column" +msgstr "테이블 선택" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 #, fuzzy -msgid "Swap dataset" -msgstr "데이터소스 선택" +msgid "Select a dataset" +msgstr "테이블 선택" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +#, fuzzy +msgid "Value is required" +msgstr "데이터소스" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#, fuzzy +msgid "Limit type" +msgstr "시각화 유형" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "필터" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "테이블 추가" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +#, fuzzy +msgid "Filter Settings" +msgstr "Query 공유" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +#, fuzzy +msgid "Select filter" +msgstr "필터" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +#, fuzzy +msgid "Range filter" +msgstr "테이블 추가" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +#, fuzzy +msgid "Time filter" +msgstr "테이블 추가" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" msgstr "" -#: superset-frontend/src/explore/constants.ts:91 -msgid "TEMPORAL_RANGE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +#, fuzzy +msgid "Time column" +msgstr "컬럼 수정" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "테이블 명" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +#, fuzzy +msgid "Pre-filter is required" +msgstr "데이터소스" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "테이블" - -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "테이블 존재" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "필터" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "테이블 명" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "" -#: superset/viz.py:722 -msgid "Table View" -msgstr "테이블 뷰" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset/views/base.py:303 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -#, fuzzy -msgid "Table cache timeout" -msgstr "차트 유형" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 #, fuzzy -msgid "Table columns" -msgstr "컬럼 수정" +msgid "Dataset is required" +msgstr "데이터소스" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "테이블 명이 정해지지 않았습니다" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +#, fuzzy +msgid "Pre-filter" +msgstr "필터" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +#, fuzzy +msgid "No filter" +msgstr "테이블 추가" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +#, fuzzy +msgid "Sort filter values" +msgstr "필터" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "테이블" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +#, fuzzy +msgid "Sort type" +msgstr "차트 유형" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +#, fuzzy +msgid "Sort Metric" +msgstr "메트릭" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/tags/commands/exceptions.py:34 -#, fuzzy -msgid "Tag could not be created." -msgstr "차트를 생성할 수 없습니다." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "메트릭" -#: superset/tags/commands/exceptions.py:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 #, fuzzy -msgid "Tag could not be deleted." -msgstr "차트를 삭제할 수 없습니다." +msgid "Single Value" +msgstr "원본 값" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset/tags/commands/exceptions.py:30 -#, fuzzy -msgid "Tag parameters are invalid." -msgstr "차트의 파라미터가 부적절합니다." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "" -#: superset/tags/commands/exceptions.py:42 -#, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "데이터베이스를 삭제할 수 없습니다." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 #, fuzzy -msgid "Tags" -msgstr "상태" +msgid "Default value is required" +msgstr "데이터소스" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -#, fuzzy -msgid "Target" -msgstr "시작 시간" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -#, fuzzy -msgid "Target Color" -msgstr "시작 시간" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -#, fuzzy -msgid "Target category" -msgstr "시작 시간" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 #, fuzzy -msgid "Target value" -msgstr "원본 값" - -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "템플릿 명" +msgid "Column is required" +msgstr "데이터소스" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "연결 테스트" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" msgstr "" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 #, fuzzy -msgid "The annotation has been saved" -msgstr "주석 레이어" +msgid "White" +msgstr "제목" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "필터" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, fuzzy, python-format +msgid "Click to edit %s." +msgstr "클릭하여 제목 수정하기" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 #, fuzzy -msgid "The annotation has been updated" -msgstr "주석 레이어" +msgid "Click to edit chart." +msgstr "클릭하여 제목 수정하기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "새로운 탭에서 Query실행" + +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset/common/query_context_processor.py:585 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 #, fuzzy -msgid "The chart datasource does not exist" -msgstr "차트가 존재하지 않습니다" +msgid "New header" +msgstr "차트 이동" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "차트가 존재하지 않습니다" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "활동" + +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "주석" + +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" msgstr "" -#: superset/sqllab/commands/estimate.py:58 +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" +msgstr "" + +#: superset-frontend/src/explore/constants.ts:87 #, fuzzy -msgid "The database could not be found" -msgstr "데이터베이스를 찾을 수 없습니다." +msgid "Is false" +msgstr "테이블 수정" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" msgstr "" -#: superset/errors.py:99 -msgid "The database is under an unusual load." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "" + +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset/sqllab/commands/execute.py:172 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset/errors.py:100 -#, fuzzy -msgid "The database returned an unexpected error." -msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했습니다." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "" -#: superset/errors.py:144 -#, fuzzy -msgid "The database was deleted." -msgstr "데이터베이스를 삭제할 수 없습니다." +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -#, fuzzy -msgid "The database was not found." -msgstr "데이터베이스를 찾을 수 없습니다." +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" +#: superset-frontend/src/explore/controls.jsx:310 +msgid "" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." +#: superset-frontend/src/explore/controls.jsx:327 +msgid "" +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset/errors.py:98 -#, fuzzy -msgid "The datasource is too large to query." -msgstr "이슈 1000 - 데이터 소스가 쿼리하기에 너무 큽니다." +#: superset-frontend/src/explore/controls.jsx:367 +msgid "" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +#, fuzzy +msgid "An error occurred while starring this chart" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "주석 레이어" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 +#: superset-frontend/src/explore/actions/saveModalActions.js:145 #, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +msgid "Chart [%s] has been overwritten" msgstr "" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 +#: superset-frontend/src/explore/actions/saveModalActions.js:163 #, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 +msgid "" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset/databases/schemas.py:222 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#, fuzzy +msgid "Continue" +msgstr "컬럼 추가" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +#, fuzzy +msgid "Chart height" +msgstr "차트 유형" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." -msgstr "" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#, fuzzy +msgid "Chart width" +msgstr "차트 유형" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "저장된 Query" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "다른이름으로 저장" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "차트 유형" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "데이터소스 명" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "대시보드 추가" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +#, fuzzy +msgid "Select a dashboard" +msgstr "대시보드 저장" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#, fuzzy +msgid "Select" +msgstr "삭제" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "대시보드 저장" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "생성자" + +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "대시보드를 생성할 수 없습니다." + +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "차트를 생성할 수 없습니다." + +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "대시보드를 생성할 수 없습니다." + +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "차트 보기" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +#, fuzzy +msgid "Formatted date" +msgstr "데이터베이스 선택" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +#, fuzzy +msgid "Column Formatting" +msgstr "주석" + +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +#, fuzzy +msgid "Collapse data panel" +msgstr "데이터 미리보기" + +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "테이블" -#: superset/errors.py:109 -msgid "The port is closed." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset/errors.py:142 +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 #, fuzzy -msgid "The port number is invalid." -msgstr "차트의 파라미터가 부적절합니다." +msgid "No results" +msgstr "결과" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" msgstr "" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "차트 수정" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" msgstr "" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "대시보드 추가" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "대시보드 추가" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +#, fuzzy +msgid "Add the name of the chart" +msgstr "새 차트 생성" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "차트 유형" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" msgstr "" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" msgstr "" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" - -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." -msgstr "" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#, fuzzy +msgid "Chart Source" +msgstr "데이터소스" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "데이터소스 명" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#, fuzzy +msgid "Original" +msgstr "원본 값" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#, fuzzy +msgid "Pivoted" +msgstr "테이블 수정" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" msgstr "" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +#, fuzzy +msgid "Chart properties updated" +msgstr "대시보드" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." -msgstr "" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#, fuzzy +msgid "Edit Chart Properties" +msgstr "대시보드 수정" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, fuzzy, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#, fuzzy +msgid "Create chart" +msgstr "차트 보기" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#, fuzzy +msgid "Update chart" +msgstr "차트 보기" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "관련된 알람이나 리포트가 있습니다" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" msgstr "" -#: superset/errors.py:101 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 #, fuzzy -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." -msgstr "이슈 1003 - SQL 쿼리에 문법 오류가 있습니다. 오탈자가 있는지 확인하세요." +msgid "Save as Dataset" +msgstr "데이터소스 선택" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" -msgstr "" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "SQL Lab" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 #, fuzzy -msgid "There was an error fetching dataset" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +msgid "No annotation layers" +msgstr "주석 레이어" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 #, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +msgid "Add an annotation layer" +msgstr "주석 레이어" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "주석 레이어" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#, fuzzy +msgid "Select the Annotation Layer you would like to use." +msgstr "주석 레이어" -#: superset-frontend/src/views/CRUD/hooks.ts:593 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 #, python-format -msgid "There was an error fetching the favorite status: %s" +msgid "" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +msgid "" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" -msgstr "" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "" +msgid "Annotation layer value" +msgstr "주석 레이어" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +#, fuzzy +msgid "Bad formula." +msgstr "D3 포멧" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "주석 레이어" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +#, fuzzy +msgid "Interval start column" +msgstr "컬럼 목록" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +#, fuzzy +msgid "Event time column" +msgstr "컬럼 수정" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +#, fuzzy +msgid "Annotation layer interval end" +msgstr "주석 레이어" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +#, fuzzy +msgid "Interval End column" +msgstr "컬럼 목록" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "주석 레이어" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +#, fuzzy +msgid "Title Column" +msgstr "컬럼 수정" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +#, fuzzy +msgid "Annotation layer description columns" +msgstr "주석 레이어" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +#, fuzzy +msgid "Description Columns" +msgstr "설명" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." - -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +msgid "" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +#, fuzzy +msgid "Annotation layer stroke" +msgstr "주석 레이어" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" msgstr "" -#: superset/viz.py:1915 -msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#, fuzzy +msgid "Dashed" +msgstr "대시보드" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +#, fuzzy +msgid "Dotted" +msgstr "테이블 수정" -#: 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 " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +#, fuzzy +msgid "Annotation layer opacity" +msgstr "주석 레이어" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +#, fuzzy +msgid "Show label" +msgstr "테이블 보기" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "주석 레이어" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "주석 레이어" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +#, fuzzy +msgid "Annotation source type" +msgstr "주석 레이어" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "주석" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +#, fuzzy +msgid "Time series" +msgstr "컬럼 수정" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "주석 레이어" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "주석 레이어" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 #, fuzzy -msgid "This dashboard is now hidden" -msgstr "이 차트를 변경하는 것은 불가능합니다" +msgid "Empty collection" +msgstr "연결 테스트" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" -msgstr "" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#, fuzzy +msgid "Add an item" +msgstr "테이블 추가" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset/views/core.py:1353 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "대시보드" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#, fuzzy +msgid "Dashboard scheme" +msgstr "대시보드" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#, fuzzy +msgid "Select scheme" +msgstr "테이블 선택" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +#, fuzzy +msgid "Show less columns" +msgstr "컬럼 수정" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +#, fuzzy +msgid "Show all columns" +msgstr "컬럼 보기" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "필터" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +#, fuzzy +msgid "Number formatting" +msgstr "주석" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 #, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "시각화 유형 선택" +msgid "error" +msgstr "%s 에러" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "시각화 유형 선택" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 #, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." -msgstr "" +msgid "alert dark" +msgstr "시작 시간" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +#, fuzzy +msgid "Operator" +msgstr "생성자" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy -msgid "Time Column" -msgstr "컬럼 수정" +msgid "Left value" +msgstr "테이블 명" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 #, fuzzy -msgid "Time Comparison" -msgstr "컬럼 수정" +msgid "Right value" +msgstr "원본 값" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 #, fuzzy -msgid "Time Format" -msgstr "D3 포멧" +msgid "Target value" +msgstr "원본 값" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +#, fuzzy +msgid "Select column" +msgstr "컬럼 목록" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +msgid "Color: " msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 #, fuzzy -msgid "Time Ratio" -msgstr "D3 포멧" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -#, fuzzy -msgid "Time Series" -msgstr "컬럼 수정" +msgid "Isoline" +msgstr "차트 이동" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" msgstr "" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" msgstr "" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -#, fuzzy -msgid "Time Series Options" -msgstr "컬럼 수정" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "시간 테이블 뷰" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -#, fuzzy -msgid "Time column" -msgstr "컬럼 수정" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "컬럼 수정" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "차트 수정" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." -msgstr "" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "SQL Lab" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "데이터 미리보기" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Time filter" -msgstr "테이블 추가" +msgid "Save as dataset" +msgstr "데이터소스 선택" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 #, fuzzy -msgid "Time format" -msgstr "D3 포멧" +msgid "Missing URL parameters" +msgstr "주석" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "10초" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -#, fuzzy -msgid "Time ratio" -msgstr "D3 포멧" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -#, fuzzy -msgid "Time series" -msgstr "컬럼 수정" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "컬럼 수정" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -#, fuzzy -msgid "Time-series Area Chart" -msgstr "시계열 테이블" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -#, fuzzy -msgid "Time-series Bar Chart" -msgstr "시계열 테이블" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -#, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Time-series Chart" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -#, fuzzy -msgid "Time-series Line Chart" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -#, fuzzy -msgid "Time-series Percent Change" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -#, fuzzy -msgid "Time-series Scatter Plot" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -#, fuzzy -msgid "Time-series Smooth Line" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "시작 시간" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -#, fuzzy -msgid "Time-series Stepped Line" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "시계열 테이블" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 #, fuzzy -msgid "Tiny" -msgstr "활동" +msgid "last week" +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: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 -msgid "Title" -msgstr "제목" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +#, fuzzy +msgid "last month" +msgstr "월" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 #, fuzzy -msgid "Title Column" -msgstr "컬럼 수정" +msgid "last quarter" +msgstr "분기" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 #, fuzzy -msgid "Title is required" -msgstr "데이터소스" +msgid "last year" +msgstr "년" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -#, fuzzy -msgid "Tools" -msgstr "역할" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, fuzzy, python-format +msgid "Seconds %s" +msgstr "30초" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, fuzzy, python-format +msgid "Minutes %s" +msgstr "분" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -#, fuzzy -msgid "Tooltip sort by metric" -msgstr "필터" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, fuzzy, python-format +msgid "Hours %s" +msgstr "시간" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, fuzzy, python-format +msgid "Days %s" +msgstr "일" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -#, fuzzy -msgid "Top" -msgstr "중지" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, fuzzy, python-format +msgid "Weeks %s" +msgstr "주" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -#, fuzzy -msgid "Top left" -msgstr "삭제" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, fuzzy, python-format +msgid "Months %s" +msgstr "월" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, fuzzy, python-format +msgid "Quarters %s" +msgstr "분기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, fuzzy, python-format +msgid "Years %s" +msgstr "년" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 #, fuzzy -msgid "Total value" -msgstr "원본 값" +msgid "Saved expressions" +msgstr "표현식" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "저장" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Total: %s" +msgid "%s column(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#, fuzzy +msgid "No saved expressions found" +msgstr "표현식" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 #, fuzzy -msgid "Tree Chart" -msgstr "차트 이동" +msgid " to add calculated columns" +msgstr "컬럼 목록" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -#, fuzzy -msgid "Tree orientation" -msgstr "주석" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "트리맵" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#, fuzzy +msgid "My column" +msgstr "컬럼 추가" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 #, fuzzy -msgid "Truncate Metric" -msgstr "메트릭" +msgid "Click to edit label" +msgstr "클릭하여 제목 수정하기" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#, fuzzy -msgid "Tukey" -msgstr "Query 공유" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "타입" - -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "Type \"%s\" to confirm" +msgid "%s operator(s)" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "컬럼 목록" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "필터" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +#, fuzzy +msgid "metric" +msgstr "메트릭" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "메트릭" + +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "메트릭" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset/db_engine_specs/presto.py:704 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgid "%s aggregates(s)" msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +#, fuzzy +msgid "Select saved metrics" +msgstr "저장된 Query" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unable to connect to database \"%(database)s\"." +msgid "%s saved metric(s)" msgstr "" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "저장된 Query" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#, fuzzy +msgid "No saved metrics found" +msgstr "저장된 Query" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "메트릭" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "컬럼 추가" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, fuzzy, python-format +msgid "Error while fetching data: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "컬럼 수정" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#, fuzzy +msgid "Actual value" +msgstr "원본 값" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" msgstr "" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 #, fuzzy -msgid "Undo the action" -msgstr "주석" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "" +msgid "Time ratio" +msgstr "D3 포멧" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +#, fuzzy +msgid "Time Ratio" +msgstr "D3 포멧" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset/models/helpers.py:1582 -#, fuzzy, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "알 수 없는 칼럼이 orderby에 사용되었습니다: %(col)" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "알 수 없는 에러" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +#, fuzzy +msgid "Optional d3 number format string" +msgstr "주석" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 #, fuzzy -msgid "Unknown type" -msgstr "알 수 없는 에러" +msgid "Optional d3 date format string" +msgstr "주석" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 #, fuzzy -msgid "Unknown value" -msgstr "알 수 없는 에러" +msgid "Date format string" +msgstr "D3 포멧" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#, fuzzy +msgid "Select Viz Type" +msgstr "시각화 유형" -#: superset/utils/core.py:1104 +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 #, python-format -msgid "Unsupported clause type: %(clause)s" +msgid "Currently rendered: %s" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +#, fuzzy +msgid "Search all charts" +msgstr "차트 추가" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -#, fuzzy -msgid "Untitled Dataset" -msgstr "차트 수정" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "시각화 유형 선택" -#: superset/views/sql_lab/views.py:148 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 #, fuzzy -msgid "Untitled Query" -msgstr "Query 공유" - -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Query 공유" +msgid "View all charts" +msgstr "차트 추가" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -#, fuzzy -msgid "Update chart" -msgstr "차트 보기" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "CSV 업로드" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "차트 이동" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -#, fuzzy -msgid "Upload CSV" -msgstr "엑셀 업로드" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 #, fuzzy -msgid "Upload CSV to database" -msgstr "데이터베이스 선택" +msgid "Dashboards added to" +msgstr "대시보드" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -#, fuzzy -msgid "Upload Credentials" -msgstr "엑셀 업로드" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" +msgstr "" -#: superset/databases/filters.py:66 -#, fuzzy -msgid "Upload Enabled" -msgstr "엑셀 업로드" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 #, fuzzy -msgid "Upload Excel file" -msgstr "엑셀 업로드" +msgid "Export to .JSON" +msgstr "대시보드 가져오기" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "SQL Lab" + +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -#, fuzzy -msgid "Upload columnar file" -msgstr "컬럼 추가" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -#, fuzzy -msgid "Upload file to database" -msgstr "차트 수정" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -#, fuzzy -msgid "Usage" -msgstr "관리" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "새로운 탭에서 Query실행" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "주석 레이어" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -#, fuzzy -msgid "Use Area Proportions" -msgstr "대시보드" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "주석 레이어" -#: superset/views/database/forms.py:472 -#, fuzzy -msgid "Use Columns" -msgstr "컬럼 추가" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#, fuzzy +msgid "Edit Alert" +msgstr "테이블 수정" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#, fuzzy +msgid "Add Alert" +msgstr "차트 추가" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "차트 유형" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "테이블 명" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" msgstr "" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "Query 저장" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "사용자" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "사용자 권한" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#, fuzzy +msgid "Condition" +msgstr "활동" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" msgstr "Query 공유" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -#, fuzzy -msgid "Username" -msgstr "Query 검색" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "10초" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +#, fuzzy +msgid "seconds" +msgstr "30초" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -#, fuzzy -msgid "Value is required" -msgstr "데이터소스" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" +msgstr "" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "값은 0보다 커야합니다" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "주석 레이어" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "대시보드 가져오기" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "테이블 명" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 #, fuzzy -msgid "View" -msgstr "데이터 미리보기" +msgid "Delivery method" +msgstr "월" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 #, fuzzy -msgid "View Dataset" -msgstr "차트 수정" +msgid "Queries" +msgstr "저장된 Query" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" +msgstr "" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "주석 레이어" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 #, fuzzy -msgid "View all charts" -msgstr "차트 추가" +msgid "Annotation template updated" +msgstr "주석 레이어" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 #, fuzzy -msgid "View as table" -msgstr "탭 닫기" +msgid "Annotation template created" +msgstr "주석 레이어" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "주석 레이어" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "주석 레이어" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Query 공유" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "주석" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#, fuzzy +msgid "The annotation has been updated" +msgstr "주석 레이어" + +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#, fuzzy +msgid "The annotation has been saved" +msgstr "주석 레이어" + +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "주석" + +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "주석" + +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, fuzzy, python-format -msgid "Viewed %s" -msgstr "삭제" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "주석" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, fuzzy, python-format +msgid "Modified %s" +msgstr "마지막 수정" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "차트 수정" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "CSS 템플릿" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "CSS 템플릿" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "가상 데이터셋 쿼리는 읽기 전용이어야 합니다" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "시각화 유형" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "시각화 유형" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "차트 유형" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "시각화 유형" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +#, fuzzy +msgid "Enter duration in seconds" +msgstr "10초" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +#, fuzzy +msgid "Schema cache timeout" +msgstr "차트 유형" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "경고 메시지" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +#, fuzzy +msgid "Table cache timeout" +msgstr "차트 유형" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +#, fuzzy +msgid "Add extra connection information." +msgstr "주석" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "보안" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 +msgid "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "주" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." +msgstr "" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "주석" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, fuzzy, python-format -msgid "Weeks %s" -msgstr "주" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +#, fuzzy +msgid "Enter Primary Credentials" +msgstr "엑셀 업로드" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "데이터베이스를 생성할 수 없습니다." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset/views/database/forms.py:175 -#, fuzzy -msgid "What should happen if the table already exists" -msgstr "같은 이름의 데이터베이스가 이미 존재합니다" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 -msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#, fuzzy +msgid "Select a database to connect" +msgstr "데이터베이스 선택" + +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset/views/database/mixins.py:119 -msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 -msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 -msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "'Group By'를 사용 할 때 오직 하나의 메트릭만 사용 가능합니다" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#, fuzzy +msgid "SSH Password" +msgstr "비밀번호" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "비밀번호" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +#, fuzzy +msgid "Display Name" +msgstr "필터" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +#, fuzzy +msgid "Name your database" +msgstr "데이터베이스 선택" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +#, fuzzy +msgid "Refer to the" +msgstr "월" + +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "데이터베이스" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +#, fuzzy +msgid "Database settings updated" +msgstr "데이터베이스를 업데이트할 수 없습니다." + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +#, fuzzy +msgid "Supported databases" +msgstr "데이터베이스 선택" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +#, fuzzy +msgid "Choose a database..." +msgstr "데이터소스 선택" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#, fuzzy +msgid "Database Creation Error" +msgstr "데이터베이스" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +#, fuzzy +msgid "CREATE DATASET" +msgstr "데이터소스 선택" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +#, fuzzy +msgid "Connect a database" +msgstr "데이터베이스 선택" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "차트 수정" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +#, fuzzy +msgid "Import database from file" +msgstr "차트 수정" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +#, fuzzy +msgid "Port" +msgstr "생성자" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +#, fuzzy +msgid "Additional Parameters" +msgstr "주석" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 #, fuzzy -msgid "White" -msgstr "제목" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "" +msgid "Upload Credentials" +msgstr "엑셀 업로드" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 #, fuzzy -msgid "Word Rotation" -msgstr "주석" +msgid "Add sheet" +msgstr "차트 추가" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" -msgstr "" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#, fuzzy +msgid "Duplicate dataset" +msgstr "차트 수정" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "데이터소스 명" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#, fuzzy +msgid "Refreshing columns" +msgstr "컬럼 수정" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "컬럼 수정" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#, fuzzy +msgid "Loading" +msgstr "CSV 업로드" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "차트 수정" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 #, fuzzy -msgid "XScale Interval" -msgstr "새로고침 간격" +msgid "Select dataset source" +msgstr "데이터소스" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "컬럼 보기" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#, fuzzy +msgid "Usage" +msgstr "관리" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "차트" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "마지막 수정" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "마지막 수정" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "대시보드" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#, fuzzy +msgid "Select a database table." +msgstr "데이터베이스 선택" + +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "새 차트 생성" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#, fuzzy +msgid "New dataset" +msgstr "데이터소스 선택" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 #, fuzzy -msgid "YScale Interval" -msgstr "새로고침 간격" +msgid "dataset name" +msgstr "데이터소스 명" -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "년" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "수정됨" + +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#, fuzzy +msgid "There was an error fetching dataset's related objects" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, fuzzy, python-format -msgid "Years %s" -msgstr "년" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, fuzzy, python-format +msgid "Viewed %s" +msgstr "삭제" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "테이블 수정" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "생성자" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 -msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." -msgstr "" +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +#, fuzzy +msgid "charts" +msgstr "차트" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:29 +#, fuzzy +msgid "dashboards" +msgstr "대시보드" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +#, fuzzy +msgid "saved queries" +msgstr "저장된 Query" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "차트" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +#, fuzzy +msgid "No dashboards yet" +msgstr "대시보드" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "저장된 Query" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#: superset-frontend/src/features/home/EmptyState.tsx:50 #, python-format -msgid "You do not have permission to edit this %s" +msgid "%(other)s saved queries will appear here" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "Query 저장" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" msgstr "" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +#, fuzzy +msgid "Connect database" +msgstr "데이터베이스 선택" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +#, fuzzy +msgid "Create dataset" +msgstr "데이터소스 선택" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +#, fuzzy +msgid "Upload CSV to database" +msgstr "데이터베이스 선택" -#: superset/security/manager.py:2262 -#, python-format -msgid "You don't have the rights to alter %(resource)s" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" msgstr "" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "정보" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "로그아웃" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as csv" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +#, fuzzy +msgid "Documentation" +msgstr "주석" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +#, fuzzy +msgid "Report a bug" +msgstr "차트 유형" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "로그인" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "Query 공유" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "삭제" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "삭제" + +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "저장된 Query" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "테이블 명" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Query 공유" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "저장된 Query 수정" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Query 검색" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" -msgstr "" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "복사됨!" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 -#, fuzzy -msgid "Your report could not be deleted" -msgstr "차트를 삭제할 수 없습니다." - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 #, fuzzy -msgid "Zero imputation" -msgstr "설명" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "" +msgid "Report updated" +msgstr "차트 유형" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 #, fuzzy -msgid "[ untitled dashboard ]" -msgstr "대시보드 저장" +msgid "Your report could not be deleted" +msgstr "차트를 삭제할 수 없습니다." -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +#, fuzzy +msgid "Schedule a new email report" +msgstr "대시보드에 차트 추가" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +#, fuzzy +msgid "Report Name" +msgstr "차트 유형" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +#, fuzzy +msgid "Set up an email report" +msgstr "대시보드에 차트 추가" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +#, fuzzy +msgid "Schedule email report" +msgstr "대시보드에 차트 추가" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +#, fuzzy +msgid "Delete Report?" +msgstr "CSS 템플릿" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "저수준 보안" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "Query 검색" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Add Rule" +msgstr "D3 포멧" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Query 검색" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 #, fuzzy -msgid "alert dark" -msgstr "시작 시간" +msgid "The name of the rule must be unique" +msgstr "새 차트 생성" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "주석" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "주석 레이어" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 #, fuzzy -msgid "auto" -msgstr "생성자" +msgid "Base" +msgstr "데이터베이스" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" -msgstr "" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "테이블 선택" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +#, fuzzy +msgid "tags" +msgstr "상태" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "테이블 선택" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "분기" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 +#: superset-frontend/src/features/tags/TagModal.tsx:255 #, fuzzy -msgid "bottom" -msgstr "날짜/시간" +msgid "Tag created" +msgstr "생성자" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "테이블 명" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "데이터베이스 선택" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#: superset-frontend/src/features/tags/TagModal.tsx:307 #, fuzzy -msgid "cardinal" -msgstr "실패" +msgid "Select dashboards" +msgstr "대시보드 저장" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/tags/TagModal.tsx:333 #, fuzzy -msgid "change" -msgstr "관리" +msgid "Select saved queries" +msgstr "저장된 Query" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "" + +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:27 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 #, fuzzy -msgid "charts" -msgstr "차트" +msgid "Filter value is required" +msgstr "데이터소스" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 #, fuzzy -msgid "clear all filters" -msgstr "필터" +msgid "Single value" +msgstr "원본 값" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "컬럼 추가" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -#, fuzzy -msgid "count" -msgstr "컬럼 추가" - -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -#, fuzzy -msgid "create" -msgstr "생성자" - -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -#, fuzzy -msgid "create a new chart" -msgstr "새 차트 생성" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "대시보드" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -#, fuzzy -msgid "dashboards" -msgstr "대시보드" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "데이터베이스" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -#, fuzzy -msgid "dataset name" -msgstr "데이터소스 명" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "일" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "차트 추가" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -#, fuzzy -msgid "deck.gl charts" -msgstr "차트 추가" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "상태" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -#, fuzzy -msgid "default" -msgstr "삭제" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "경고" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" msgstr "삭제" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +#, fuzzy +msgid "Error Fetching Tagged Objects" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "deviation" -msgstr "활동" +msgid "Edit Tag" +msgstr "로그 수정" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "템플릿 불러오기" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "날짜/시간" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "템플릿 불러오기" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "관리" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "주석 레이어" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "삭제" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "주석" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "주석" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "주석 레이어" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "주석 레이어" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "주석" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -#, fuzzy -msgid "e.g., a \"user id\" column" -msgstr "컬럼 수정" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 #, fuzzy -msgid "edit mode" -msgstr "Query 검색" +msgid "view instructions" +msgstr "10초" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "entries" -msgstr "저장된 Query" +msgid "Add a dataset" +msgstr "차트 추가" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 #, fuzzy -msgid "error" -msgstr "%s 에러" +msgid "or" +msgstr "시간" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "데이터소스 선택" -#: superset/models/helpers.py:1803 +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 #, fuzzy -msgid "error_message" -msgstr "에러 메시지" +msgid "Choose chart type" +msgstr "차트 유형" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "1시간" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +#: superset-frontend/src/pages/ChartList/index.tsx:231 #, fuzzy -msgid "every minute" -msgstr "월" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "월" +msgid "Chart imported" +msgstr "차트 유형" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -#, fuzzy -msgid "explore" -msgstr "생성자" - -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/pages/ChartList/index.tsx:293 #, fuzzy -msgid "failed" -msgstr "실패" - -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" -msgstr "" +msgid "An error occurred while fetching dashboards" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +#, fuzzy +msgid "Certified" +msgstr "수정됨" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -#, fuzzy -msgid "heatmap" -msgstr "스키마" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 +#: superset-frontend/src/pages/ChartList/index.tsx:783 #, fuzzy -msgid "here" -msgstr "Query 공유" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "시간" - -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" -msgstr "" +msgid "Import charts" +msgstr "Superset 튜토리얼" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSS 템플릿" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSS 템플릿" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "CSS 템플릿" -#: superset/views/base.py:596 -msgid "json isn't valid" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "label" -msgstr "레이블" +msgid "Dashboard imported" +msgstr "대시보드" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -#, fuzzy -msgid "last month" -msgstr "월" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -#, fuzzy -msgid "last quarter" -msgstr "분기" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -#, fuzzy -msgid "last week" -msgstr "주" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 #, fuzzy -msgid "last year" -msgstr "년" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "" +msgid "Upload file to database" +msgstr "차트 수정" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 #, fuzzy -msgid "left" -msgstr "삭제" +msgid "Upload CSV" +msgstr "엑셀 업로드" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +#, fuzzy +msgid "Upload columnar file" +msgstr "컬럼 추가" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 #, fuzzy -msgid "linear" -msgstr "차트 이동" +msgid "Upload Excel file" +msgstr "엑셀 업로드" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "CSV 업로드" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "데이터베이스 선택" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "메트릭" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "데이터베이스 선택" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "min" -msgstr "분" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "분" +msgid "Dataset imported" +msgstr "데이터베이스" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -#, fuzzy -msgid "minute(s)" -msgstr "5분" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "월" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "월" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "데이터소스 선택" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "차트 수정" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "이름" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +#, fuzzy +msgid "Import datasets" +msgstr "차트 수정" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "시간" - -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" msgstr "" -#: superset/charts/schemas.py:1313 -#, fuzzy -msgid "orderby column must be populated" -msgstr "하나 이상의 칼럼이 중복됩니다" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "테이블 선택" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +#, fuzzy +msgid "Start at (UTC)" +msgstr "시작 시간" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "pending" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +#, fuzzy +msgid "Alert" +msgstr "경고" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" msgstr "" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" msgstr "" -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "CSS 템플릿을 찾을수 없습니다." +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -#, fuzzy -msgid "quarter" -msgstr "분기" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -#, fuzzy -msgid "queries" -msgstr "저장된 Query" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "새로운 탭에서 Query실행" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "Query 공유" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, fuzzy, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "삭제" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +#, fuzzy +msgid "Deleted" +msgstr "삭제" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +#, fuzzy +msgid "No Rules yet" +msgstr "차트" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -#, fuzzy -msgid "rowlevelsecurity" -msgstr "저수준 보안" - -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "running" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:30 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 #, fuzzy -msgid "saved queries" -msgstr "저장된 Query" +msgid "Query imported" +msgstr "Query 검색" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 #, fuzzy -msgid "seconds" -msgstr "30초" +msgid "Import queries" +msgstr "대시보드 가져오기" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -#, fuzzy -msgid "series" -msgstr "저장된 Query" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "복사됨!" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -#, fuzzy -msgid "square" -msgstr "분기" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "저장된 Query 수정" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +#, fuzzy +msgid "Export query" +msgstr "Query 공유" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "삭제" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 #, fuzzy -msgid "step-after" -msgstr "필터" +msgid "queries" +msgstr "저장된 Query" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "stopped" -msgstr "중지" +msgid "No Tags created" +msgstr "생성자" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 -msgid "success dark" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -#, fuzzy -msgid "to" -msgstr "중지" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -#, fuzzy -msgid "top" -msgstr "중지" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "unknown type icon" +msgid "Network error" msgstr "알 수 없는 에러" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." -msgstr "" - -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +#, fuzzy +msgid "Issue 1000 - The dataset is too large to query." +msgstr "이슈 1000 - 데이터 소스가 쿼리하기에 너무 큽니다." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" -msgstr "" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, fuzzy, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" -msgstr "" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, fuzzy, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "10초" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, fuzzy, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "시각화 유형" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, fuzzy, python-format +msgid "An error occurred while importing %s: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "주" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "년" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "시계열 테이블" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/messages.pot b/superset/translations/messages.pot index 01b684883eae8..c31b654e72ad0 100644 --- a/superset/translations/messages.pot +++ b/superset/translations/messages.pot @@ -16,16 +16,15 @@ # under the License. # Translations template for Superset. -# Copyright (C) 2023 Superset +# Copyright (C) 2024 Superset # This file is distributed under the same license as the Superset project. -# FIRST AUTHOR , 2023. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Superset VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,19194 +33,19159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." msgstr "" -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." msgstr "" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -msgid " a dashboard OR " +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -msgid " a new one" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:112 +msgid "The port is closed." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -msgid " to add calculated columns" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -msgid " to add metrics" +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:127 +msgid "" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" -msgstr[1] "" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "" + +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "" + +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "" + +#: superset/errors.py:141 msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" +#: superset/errors.py:145 +msgid "The port number is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, python-format -msgid "%s PASSWORD" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:147 +msgid "The database was deleted." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/forms.py:72 #, python-format -msgid "%s Selected (Physical)" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/jinja_context.py:344 #, python-format -msgid "%s Selected (Virtual)" +msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/jinja_context.py:355 #, python-format -msgid "%s aggregates(s)" +msgid "Unsupported return value for method %(name)s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#: superset/jinja_context.py:371 #, python-format -msgid "%s column(s)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#: superset/jinja_context.py:382 #, python-format -msgid "%s operator(s)" +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "" -msgstr[1] "" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#: superset/sql_lab.py:302 #, python-format -msgid "%s option(s)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "" -msgstr[1] "" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, python-format -msgid "%s updated" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/sql_lab.py:488 #, python-format -msgid "%s%s" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/sql_lab.py:510 #, python-format -msgid "%s-%s of %s" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +#: superset/viz.py:562 +msgid "Cached value not found" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +#: superset/viz.py:706 +msgid "Time Table View" msgstr "" -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" msgstr "" -#: superset/views/database/forms.py:164 -msgid "." +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" +#: superset/viz.py:910 +msgid "Pick a metric to display" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -msgid "1 week" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -msgid "1 year" +#: superset/viz.py:1360 +msgid "Sankey" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" +#: superset/viz.py:1434 +msgid "Directed Force Layout" msgstr "" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -msgid "104 weeks" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" msgstr "" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -msgid "156 weeks" +#: superset/viz.py:1674 +msgid "Horizon Charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:1686 +msgid "Mapbox" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -msgid "2 years" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -msgid "28 days" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -msgid "3 years" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" +#: superset/viz.py:2271 +msgid "Deck.gl - Heatmap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" +#: superset/viz.py:2292 +msgid "Deck.gl - Contour" msgstr "" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" msgstr "" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" +#: superset/viz.py:2369 +msgid "Event flow" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/viz.py:2511 +msgid "Partition Diagram" msgstr "" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -msgid "52 weeks" -msgstr "" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -msgid "" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -msgid "" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" +#: superset/charts/data/api.py:369 +msgid "Empty query result" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" msgstr "" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" msgstr "" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." msgstr "" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." msgstr "" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." msgstr "" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" +#: superset/commands/annotation_layer/exceptions.py:45 +msgid "Annotation layers could not be deleted." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." msgstr "" -#: 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." +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." msgstr "" -#: superset/reports/commands/exceptions.py:186 +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 #, python-format -msgid "A report named \"%(name)s\" already exists" +msgid "There are associated alerts or reports: %(report_names)s" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" msgstr "" -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." msgstr "" -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." msgstr "" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/chart/exceptions.py:151 +msgid "Changing one or more of these dashboards is forbidden" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" +#: superset/commands/chart/exceptions.py:156 +msgid "Chart not found" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: 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" +#: superset/commands/css/exceptions.py:23 +msgid "CSS templates could not be deleted." msgstr "" -#: superset/initialization/__init__.py:425 -msgid "Access requests" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" +#: superset/commands/dashboard/exceptions.py:54 +msgid "Dashboards could not be created." msgstr "" -#: superset/views/log/__init__.py:31 -msgid "Action" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -msgid "Actual Values" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -msgid "Actual values" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." msgstr "" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." msgstr "" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." msgstr "" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -#: superset/views/database/mixins.py:35 -msgid "Add Database" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset/views/log/__init__.py:23 -msgid "Add Log" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." msgstr "" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Add Rule" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" msgstr "" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -msgid "Add a dataset" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -msgid "Add an annotation layer" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" +#: superset/commands/database/validate_sql.py:100 +#, python-format +msgid "no SQL validator is configured for %(engine)s" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." msgstr "" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" +#: superset/commands/dataset/exceptions.py:172 +msgid "Datasets could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "" -msgstr[1] "" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" +#: superset/commands/dataset/exceptions.py:205 +msgid "The provided table was not found in the provided database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" +#: superset/commands/report/alert.py:98 +#, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/alert.py:107 +#, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" +#: superset/commands/report/alert.py:178 +msgid "An error occurred when running alert query" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -msgid "Aggregation" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -msgid "Alert" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." msgstr "" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." msgstr "" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." msgstr "" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." msgstr "" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." msgstr "" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." msgstr "" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset/reports/commands/alert.py:100 +#: superset/commands/report/exceptions.py:182 #, python-format -msgid "Alert query returned more than one row. %s rows returned" +msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." msgstr "" -#: superset/reports/commands/exceptions.py:204 +#: superset/commands/report/exceptions.py:198 msgid "Alert validator config error." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." msgstr "" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -msgid "All Entities" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." msgstr "" -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." msgstr "" -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" msgstr "" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " msgstr "" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" +#: superset/commands/security/exceptions.py:25 +msgid "RLS Rule not found." msgstr "" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" +#: superset/commands/security/exceptions.py:29 +msgid "RLS rules could not be deleted." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 +#: superset/commands/sql_lab/results.py:75 msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +#: superset/commands/sql_lab/results.py:116 msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +msgid "Tag could not be updated." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." msgstr "" -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." msgstr "" -#: superset/reports/commands/exceptions.py:188 +#: superset/common/query_actions.py:227 #, python-format -msgid "An alert named \"%(name)s\" already exists" +msgid "Invalid result type: %(result_type)s" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." 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: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 -msgid "An error has occurred" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" msgstr "" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." +#: superset/common/query_context_processor.py:719 +msgid "The chart query context does not exist" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 +#: superset/common/query_object.py:290 +#, python-format msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while creating %ss: %s" +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -msgid "An error occurred while creating the value." +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -msgid "An error occurred while deleting the value." +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:106 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching %s info: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, python-format -msgid "An error occurred while fetching %ss: %s" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching created by values: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +msgid "Metric '%(metric)s' does not exist" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, python-format -msgid "An error occurred while fetching owners values: %s" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, python-format -msgid "An error occurred while fetching tag created by values: %s" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -msgid "An error occurred while loading dashboard information." +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" msgstr "" -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" msgstr "" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 +#: superset/connectors/sqla/views.py:327 msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" msgstr "" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" msgstr "" -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, python-format -msgid "Annotation Layer %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." +#: superset/connectors/sqla/views.py:404 +msgid "Offset" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" -msgstr "" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" +#: superset/dashboards/filters.py:193 +msgid "Role" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." +#: superset/databases/filters.py:79 +msgid "Upload Enabled" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -msgid "Annotation source" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "" +msgstr[1] "" + +#: superset/datasets/filters.py:26 +msgid "Null or Empty" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." +#: superset/db_engine_specs/base.py:98 +msgid "Second" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" msgstr "" -#: 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." +#: superset/db_engine_specs/base.py:100 +msgid "30 second" msgstr "" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, python-format -msgid "Applied cross-filters (%d)" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, python-format -msgid "Applied filters (%d)" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, python-format -msgid "Applied filters: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" msgstr "" -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +#: superset/db_engine_specs/base.py:108 +msgid "Day" msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" +#: superset/db_engine_specs/base.py:109 +msgid "Week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -msgid "Apply conditional color formatting to metric" +#: superset/db_engine_specs/base.py:110 +msgid "Month" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset/db_engine_specs/base.py:112 +msgid "Year" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, python-format -msgid "Are you sure you want to delete %s?" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 -#, python-format -msgid "Are you sure you want to delete the selected %s?" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -msgid "Are you sure you want to delete the selected rules?" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" +#: superset/db_engine_specs/ocient.py:284 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -msgid "Average" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -msgid "Average value" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -msgid "Axis Format" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." +#: superset/initialization/__init__.py:276 +msgid "Plugins" msgstr "" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" +#: superset/initialization/__init__.py:348 +msgid "Query History" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -msgid "Bar orientation" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" msgstr "" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -msgid "Base" +#: superset/initialization/__init__.py:368 +msgid "Action Log" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." msgstr "" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" +#: superset/models/helpers.py:1531 +msgid "Empty query?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" +#: superset/models/helpers.py:1821 +msgid "error_message" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." -msgstr "" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" +#: superset/reports/notifications/email.py:88 +#, python-format +msgid "" +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" +#: superset/row_level_security/api.py:355 +#, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" + +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -msgid "CREATE DATASET" +#: superset/tags/exceptions.py:39 +msgid "Tag could not be found." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" +#: superset/tags/filters.py:31 +msgid "Is custom tag" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" msgstr "" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" msgstr "" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" msgstr "" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" msgstr "" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset/views/database/views.py:290 +#: superset/utils/core.py:1246 #, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +msgid "Invalid metric object: %(metric)s" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/sql_lab.py:449 +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" +msgid "Unsupported time grain: %(time_grain)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/rolling.py:90 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset/charts/commands/exceptions.py:51 +#: superset/utils/pandas_postprocessing/utils.py:153 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset/views/api.py:109 +#, python-format +msgid "Unexpected time range: %(error)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/views/base.py:579 +msgid "json isn't valid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -msgid "Category Name" +#: superset/views/base.py:591 +msgid "Export to YAML" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset/views/base.py:591 +msgid "Export to YAML?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -msgid "Category name" +#: superset/views/base.py:648 +msgid "Delete all Really?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/views/base_api.py:149 +msgid "Is favorite" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 -#, python-format -msgid "Certified by %s" +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" msgstr "" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/views/core.py:836 +msgid "permalink state not found" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" +#: superset/views/css_templates.py:46 +msgid "Template Name" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" msgstr "" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" msgstr "" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" +#: superset/views/utils.py:492 +msgid "Could not find viz object" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, python-format -msgid "Chart Data: %s" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "" -msgstr[1] "" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -msgid "Chart Source" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, python-format -msgid "Chart [%s] has been saved" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" msgstr "" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" msgstr "" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" msgstr "" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/dashboard/mixin.py:46 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" msgstr "" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -msgid "Chart last modified" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -msgid "Chart last modified by" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -msgid "Chart owners" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -msgid "Chart title" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +#: superset/views/database/forms.py:145 +msgid "Column Data Types" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " +#: superset/views/database/forms.py:161 +msgid "Delimiter" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" msgstr "" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" msgstr "" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" +#: superset/views/database/forms.py:212 +msgid "Null Values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 +#: superset/views/database/forms.py:222 msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/views/database/forms.py:249 msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." -msgstr "" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." +#: superset/views/database/forms.py:289 +msgid "Excel File" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +#: superset/views/database/forms.py:309 +msgid "Sheet Name" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Click to sort ascending" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset/views/database/forms.py:399 +msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" +#: superset/views/database/forms.py:421 +msgid "Columnar File" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" +#: superset/views/database/forms.py:469 +msgid "Use Columns" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" +#: superset/views/database/mixins.py:34 +msgid "Show Database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset/views/database/mixins.py:35 +msgid "Add Database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" msgstr "" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/mixins.py:172 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format -msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" msgstr "" -#: superset/views/database/forms.py:144 -msgid "Column Data Types" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" msgstr "" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -msgid "Column datatype" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" msgstr "" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "" + +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset/views/database/forms.py:233 +#: superset/views/database/validators.py:40 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -msgid "Column name" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#: superset/views/database/views.py:180 #, python-format -msgid "Column name [%s] is duplicated" +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 +#: superset/views/database/views.py:277 #, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset/views/database/forms.py:221 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" msgstr "" -#: superset/views/database/forms.py:352 +#: superset/views/database/views.py:319 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/forms.py:424 -msgid "Columnar File" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:568 +#: superset/views/database/views.py:424 #, python-format msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:443 +#: superset/views/database/views.py:440 msgid "Columnar to Database configuration" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "" - -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset/views/database/forms.py:241 -msgid "Columns To Read" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/common/query_context_processor.py:132 +#: superset/views/database/views.py:554 #, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset/viz.py:593 +#: superset/views/database/views.py:566 #, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" +#: superset/views/log/__init__.py:21 +msgid "Logs" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" +#: superset/views/log/__init__.py:22 +msgid "Show Log" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" +#: superset/views/log/__init__.py:23 +msgid "Add Log" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" +#: superset/views/log/__init__.py:31 +msgid "Action" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +#: superset/views/log/__init__.py:32 +msgid "dttm" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +msgid "Category name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +msgid "Total value" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -msgid "Conditional Formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +msgid "Column datatype" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset/db_engine_specs/ocient.py:259 -#, python-format -msgid "Could not connect to database: \"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset/views/utils.py:512 -msgid "Could not find viz object" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" msgstr "" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" msgstr "" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" msgstr "" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" msgstr "" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -msgid "Create a dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -msgid "Create dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +msgid "Y Axis Title Position" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" msgstr "" -#: superset/views/access_requests.py:49 -msgid "Created On" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -msgid "Crimson" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -msgid "Cross-filtering is not enabled in this dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -msgid "Cross-filtering scoping" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -msgid "Cross-filters" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -msgid "DATETIME" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." msgstr "" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +msgid "Force categorical" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" msgstr "" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" msgstr "" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" msgstr "" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +msgid "Select a metric to display on the right axis" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -msgid "Dashboard imported" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" msgstr "" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -msgid "Dashboard title" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -msgid "Dashboard usage" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -msgid "Dashboards added to" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" msgstr "" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" msgstr "" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -msgid "Dashed" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" msgstr "" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" msgstr "" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" msgstr "" -#: superset/views/database/views.py:321 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" msgstr "" -#: superset/initialization/__init__.py:243 -msgid "Database Connections" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" msgstr "" -#: superset/views/access_requests.py:46 -msgid "Database URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" msgstr "" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" msgstr "" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " -msgstr "" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" msgstr "" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" msgstr "" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +msgid "Currency format" msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" msgstr "" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" msgstr "" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" msgstr "" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -msgid "Dataset Name" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" msgstr "" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset/datasets/commands/exceptions.py:210 -msgid "Dataset could not be duplicated." +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" msgstr "" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" -msgstr "" - -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" msgstr "" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" msgstr "" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" msgstr "" -#: superset/db_engine_specs/base.py:107 -msgid "Day" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" msgstr "" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" msgstr "" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" msgstr "" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset/viz.py:2848 -msgid "Deck.gl - Heatmap" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" msgstr "" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" msgstr "" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" msgstr "" -#: superset/views/base.py:664 -msgid "Delete all Really?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -msgid "Deleted" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" msgstr "" -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" -msgstr[1] "" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" -msgstr[1] "" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" -msgstr[1] "" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" -msgstr[1] "" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "" -msgstr[1] "" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "" -msgstr[1] "" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" -msgstr[1] "" - -#: superset/row_level_security/api.py:349 -#, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, python-format -msgid "Deleted %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" msgstr "" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -msgid "Dotted" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "change" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" msgstr "" -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" msgstr "" -#: superset/views/database/mixins.py:172 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset/connectors/sqla/views.py:369 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" msgstr "" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Edit Rule" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" msgstr "" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -msgid "Edit chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -msgid "Edit the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -msgid "Embed dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -msgid "Empty column" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset/charts/data/api.py:366 -msgid "Empty query result" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" msgstr "" -#: superset/models/helpers.py:1508 -msgid "Empty query?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset/viz.py:2514 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "End date" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" msgstr "" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" msgstr "" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" msgstr "" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -msgid "Event" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 -msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +msgid "Aggregation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +msgid "Contours" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +msgid "deck.gl Contour" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +msgid "Line width unit" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +msgid "meters" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -msgid "Failed to save cross-filter scoping" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +msgid "deck.gl Heatmap" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box (deprecated)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 -msgid "Filter charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +msgid "name" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -msgid "Filter menu" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" msgstr "" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Forest Green" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -msgid "Group Key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" msgstr "" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -msgid "Has created by" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -msgid "Hide chart description" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" msgstr "" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" msgstr "" -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +msgid "Bubble Chart (legacy)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" msgstr "" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -msgid "In" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" msgstr "" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" msgstr "" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -msgid "Interval" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +msgid "Pie Chart (legacy)" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" msgstr "" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" msgstr "" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +msgid "Truncate X Axis" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +msgid "Minor ticks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Kilometers" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" msgstr "" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +msgid "Conditional Formatting" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +msgid "Bubble size number format" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +msgid "Bubble Opacity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -msgid "Legend Orientation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, python-format +msgid "% calculation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +msgid "Label Contents" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +msgid "Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +msgid "Show Tooltip Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +msgid "Whether to display the tooltip labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" msgstr "" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -msgid "Lines column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -msgid "Locate the chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset/views/log/__init__.py:21 -msgid "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Maximum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Mean values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" msgstr "" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" msgstr "" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -msgid "Metric name" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +msgid "Shared query fields" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -msgid "Miles" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Minimum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 #, python-format -msgid "Modified %s" +msgid "Total: %s" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" msgstr "" -#: superset/db_engine_specs/base.py:109 -msgid "Month" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -msgid "More" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -msgid "More filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" msgstr "" -#: superset/views/database/views.py:468 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -msgid "NUMERIC" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" msgstr "" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -msgid "New dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -msgid "New header" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -msgid "No Rules yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -msgid "No annotation layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -msgid "No applied filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -msgid "No charts yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -msgid "No columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -msgid "No dashboards yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 -msgid "No filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +msgid "Increase" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -msgid "No saved queries yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +msgid "Decrease" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +msgid "Series colors" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -msgid "No table columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +msgid "Waterfall Chart" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -msgid "Not added to any dashboard" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" msgstr "" -#: superset-frontend/src/explore/constants.ts:72 -msgid "Not in" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset/views/database/forms.py:211 -msgid "Null Values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +msgid "Range for Comparison" msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +msgid "Filters for Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" msgstr "" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" msgstr "" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +msgid "Show rows subtotal" msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +msgid "Show columns subtotal" msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformed." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" msgstr "" -#: superset/views/core.py:2029 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:158 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." -msgstr "" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" -msgstr "" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -msgid "Orientation" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: 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." +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." msgstr "" -#: superset/viz.py:3069 -msgid "Partition Diagram" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" msgstr "" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" msgstr "" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +msgid "Run current query" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +msgid "Format SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +msgid "Find" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset/viz.py:3234 -msgid "Please choose at least one groupby" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" msgstr "" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" msgstr "" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, python-format +msgid "%s row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "Port" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" msgstr "" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" msgstr "" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" msgstr "" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" msgstr "" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -msgid "Queries" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" msgstr "" -#: superset/initialization/__init__.py:360 -msgid "Query History" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" msgstr "" -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" msgstr "" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" msgstr "" -#: superset/row_level_security/commands/exceptions.py:29 -msgid "RLS Rule could not be deleted." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" msgstr "" -#: superset/row_level_security/commands/exceptions.py:25 -msgid "RLS Rule not found." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" msgstr "" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, python-format +msgid "Modified by: %s" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -msgid "Refresh tables" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +msgid "You do not have sufficient permissions to edit the chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +msgid "There was an error loading the chart data" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" msgstr "" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" msgstr "" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" msgstr "" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" msgstr "" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" msgstr "" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" msgstr "" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" msgstr "" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" msgstr "" -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:121 -msgid "Report updated" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" msgstr "" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" msgstr "" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" msgstr "" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -msgid "Resource was not found." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" msgstr "" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" msgstr "" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" msgstr "" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" msgstr "" -#: superset/dashboards/filters.py:200 -msgid "Role" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" msgstr "" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" msgstr "" -#: 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 " -"defined, regular access permissions apply." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" msgstr "" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" msgstr "" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" msgstr "" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 -msgid "Rule Name" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" msgstr "" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" msgstr "" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 #, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +msgid "New columns added: %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -msgid "SSH Tunnel could not be updated." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -msgid "SSH Tunnel not found." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +msgid "Normalize column names" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" msgstr "" -#: superset/datasets/commands/exceptions.py:194 -msgid "Samples for dataset could not be retrieved." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" msgstr "" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +msgid "Metric Key" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -msgid "Save & go to new dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -msgid "Save as Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -msgid "Save as dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -msgid "Save as..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -msgid "Save dataset" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +msgid "Error saving dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -msgid "Save to new dashboard" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" msgstr "" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" msgstr "" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +msgid "Please reach out to the Chart Owner for assistance." msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, python-format +msgid "Chart Owner: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" msgstr "" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +msgid "This was triggered by:" msgstr "" -#: superset/views/core.py:1186 -msgid "Schema undefined" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" msgstr "" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -msgid "Search columns" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 -msgid "Search in filters" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -msgid "Search tables" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" -#: superset/db_engine_specs/base.py:97 -msgid "Second" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 #, python-format -msgid "Seconds %s" +msgid "+ %s more" msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" msgstr "" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" msgstr "" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" msgstr "" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:226 msgid "Select all data" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 -msgid "Select all items" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -msgid "Select chart" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 -msgid "Select current page" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -msgid "Select database & schema" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -msgid "Select database table" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +#: superset-frontend/src/components/Tags/utils.tsx:72 +msgid "You do not have permission to read tags" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -msgid "Select dataset source" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" - -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -msgid "Series Order" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +msgid "Filter charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +msgid "Unknown type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -msgid "Shared query fields" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" msgstr "" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset/views/database/mixins.py:34 -msgid "Show Database" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -msgid "Show Total" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -msgid "Show chart description" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -msgid "Show empty columns" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +msgid "Export to PDF" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +msgid "Embed dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +#: 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:66 +msgid "Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" +#: 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 "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" +#: 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." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" +#: 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 " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." +#: 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 "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" msgstr "" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" msgstr "" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 #, python-format -msgid "Sorry there was an error fetching database information: %s" +msgid "Query %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, python-format +msgid "Chart Data: %s" msgstr "" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +msgid "Export to full Excel" msgstr "" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -msgid "Sort Series Ascending" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -msgid "Sort Series By" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" msgstr "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Square kilometers" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Square meters" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +msgid "Select chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "Start date" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -msgid "Started" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +msgid "Select a dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Sum values" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" msgstr "" -#: superset/viz.py:1805 -msgid "Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -msgid "Sunburst Chart v2" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 +msgid "" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" msgstr "" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" msgstr "" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -msgid "Swap dataset" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" msgstr "" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." msgstr "" -#: superset-frontend/src/explore/constants.ts:91 -msgid "TEMPORAL_RANGE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +msgid "" +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" msgstr "" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" msgstr "" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset/viz.py:722 -msgid "Table View" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" msgstr "" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset/db_engine_specs/ocient.py:287 -#, python-format -msgid "Table or View \"%(table)s\" does not exist." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, python-format +msgid "Click to edit %s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." msgstr "" -#: superset/tags/commands/exceptions.py:34 -msgid "Tag could not be created." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, python-format +msgid "Use %s to open in a new tab." msgstr "" -#: superset/tags/commands/exceptions.py:38 -msgid "Tag could not be deleted." +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" msgstr "" -#: superset/tags/commands/exceptions.py:30 -msgid "Tag parameters are invalid." +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -#: superset/tags/commands/exceptions.py:42 -msgid "Tagged Object could not be deleted." +#: superset-frontend/src/embedded/index.tsx:112 +msgid "" +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" msgstr "" -#: superset/views/css_templates.py:46 -msgid "Template Name" +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" msgstr "" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" msgstr "" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" msgstr "" -#: superset/common/query_context_processor.py:585 -msgid "The chart datasource does not exist" +#: superset-frontend/src/explore/controls.jsx:271 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" +#: superset-frontend/src/explore/controls.jsx:310 +msgid "" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" +#: superset-frontend/src/explore/controls.jsx:367 +msgid "" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" msgstr "" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "" + +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" msgstr "" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" msgstr "" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, python-format +msgid "Chart [%s] has been saved" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/explore/actions/saveModalActions.js:145 #, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/sqllab/commands/estimate.py:58 -msgid "The database could not be found" +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" msgstr "" -#: superset/errors.py:99 -msgid "The database is under an unusual load." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" msgstr "" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset/errors.py:144 -msgid "The database was deleted." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 +msgid "" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 +msgid "" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" msgstr "" -#: superset/errors.py:98 -msgid "The datasource is too large to query." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" msgstr "" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +msgid "An error occurred while loading dashboard information." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" msgstr "" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" msgstr "" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" msgstr "" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +msgid " a dashboard OR " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" msgstr "" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +msgid "A new chart and dashboard will be created." msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +msgid "A new chart will be created." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +msgid "A new dashboard will be created." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROWS. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" msgstr "" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +msgid "Create a dataset" msgstr "" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." +msgstr "" -#: superset/db_engine_specs/postgres.py:119 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." +msgid "Showing %s of %s" msgstr "" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +msgid "Added to 1 dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" msgstr "" -#: superset/errors.py:109 -msgid "The port is closed." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" msgstr "" -#: superset/errors.py:142 -msgid "The port number is invalid." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +msgid "Chart Source" msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" msgstr "" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" msgstr "" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset/errors.py:138 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." -msgstr "" - -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" msgstr "" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" msgstr "" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" msgstr "" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +msgid "No annotation layers" msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +msgid "Add an annotation layer" msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." msgstr "" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format +msgid "" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +msgid "" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -msgid "There was an error fetching dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" msgstr "" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -msgid "There was an error fetching dataset's related objects" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -msgid "There was an error loading the chart data" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" msgstr "" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +msgid "" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, python-format -msgid "There was an issue deleting rules: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" msgstr "" -#: superset/viz.py:1915 -msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" msgstr "" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" msgstr "" -#: 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 " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset/views/core.py:1353 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." -msgstr "" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 msgid "" -"This database table does not contain any data. Please select a different " -"table." +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +msgid "Display" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +msgid "Number formatting" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +msgid "Color: " msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +msgid "Isoline" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" msgstr "" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" msgstr "" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" msgstr "" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" msgstr "" -#: superset/viz.py:878 -msgid "Time Table View" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -msgid "Time series" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -msgid "Time-series Bar Chart (legacy)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" 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: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 -msgid "Title" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +msgid "Drop a column/metric here or click" msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 #, python-format -msgid "Total (%(aggregatorName)s)" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -msgid "Total value" +msgid "%s option(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -msgid "Truncate Metric" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -msgid "Tukey" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 -#, python-format -msgid "Type \"%s\" to confirm" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format +msgid "Error while fetching data: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" msgstr "" -#: superset/db_engine_specs/bigquery.py:178 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset/views/database/views.py:278 -#, python-format +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" msgstr "" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" msgstr "" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" msgstr "" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" msgstr "" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -msgid "Unknown type" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" msgstr "" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -msgid "Untitled Dataset" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" msgstr "" -#: superset/views/sql_lab/views.py:148 -msgid "Untitled Query" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" msgstr "" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" msgstr "" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" msgstr "" -#: superset/views/database/forms.py:472 -msgid "Use Columns" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" msgstr "" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset/views/access_requests.py:45 -msgid "User Roles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" msgstr "" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +msgid "Queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -msgid "View Dataset" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -msgid "View all charts" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, python-format +msgid "Modified %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 +msgid "" +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" msgstr "" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset/db_engine_specs/base.py:108 -msgid "Week" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" msgstr "" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -msgstr[1] "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 #, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 -msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" msgstr "" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 -msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 -msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset/connectors/sqla/views.py:357 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" msgstr "" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset/db_engine_specs/base.py:111 -msgid "Year" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +msgid "Chart owners" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 -msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" msgstr "" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +msgid "Not defined" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, python-format -msgid "You do not have permission to edit this %s" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" msgstr "" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset/templates/superset/request_access.html:25 +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 #, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." +msgid "An error occurred while fetching dashboards: %s" msgstr "" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" msgstr "" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" msgstr "" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" msgstr "" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" +#: superset-frontend/src/features/home/EmptyState.tsx:35 +msgid "No charts yet" msgstr "" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." +#: superset-frontend/src/features/home/EmptyState.tsx:36 +msgid "No dashboards yet" msgstr "" -#: superset/security/manager.py:2262 -#, python-format -msgid "You don't have the rights to alter %(resource)s" +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" msgstr "" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +msgid "No saved queries yet" msgstr "" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as csv" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." msgstr "" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" msgstr "" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" msgstr "" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" msgstr "" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" msgstr "" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" msgstr "" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" msgstr "" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -msgid "alert dark" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -msgid "auto" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +msgid "rowlevelsecurity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Edit Rule" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +msgid "Rule Name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +msgid "The name of the rule must be unique" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -msgid "change" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +msgid "Base" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -msgid "clear all filters" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +msgid "Failed to tag items" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +msgid "tags" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +msgid "Select Tags" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +msgid "Tag updated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." +#: superset-frontend/src/features/tags/TagModal.tsx:255 +msgid "Tag created" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +msgid "Tag name" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -msgid "create" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +msgid "Name of your tag" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +msgid "Select dashboards" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +msgid "Select saved queries" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -msgid "dataset name" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, python-format +msgid "%s option" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -msgid "deck.gl Heatmap" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -msgid "deck.gl charts" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -msgid "deviation" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" msgstr "" -#: superset/views/log/__init__.py:32 -msgid "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +msgid "Error Fetching Tagged Objects" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" +#: superset-frontend/src/pages/AllEntities/index.tsx:234 +msgid "Edit Tag" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -msgid "entries" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "error" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" msgstr "" -#: superset/models/helpers.py:1803 -msgid "error_message" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +msgid "Changed by" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -msgid "failed" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format +msgid "Annotation Layer %s" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -msgid "heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +#: superset-frontend/src/pages/ChartList/index.tsx:102 msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset/views/base.py:596 -msgid "json isn't valid" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -msgid "linear" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset/charts/schemas.py:735 +#: superset-frontend/src/pages/DashboardList/index.tsx:80 msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -msgid "min" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -msgid "monotone" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -msgid "name" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" msgstr "" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" msgstr "" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -msgid "or" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "pending" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset/views/core.py:1958 -msgid "permalink state not found" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -msgid "rowlevelsecurity" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "running" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, python-format +msgid "Deleted %s" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +msgid "Deleted" msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, python-format +msgid "There was an issue deleting rules: %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "seconds" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +msgid "No Rules yet" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -msgid "series" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-after" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 -msgid "success dark" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/pages/Tags/index.tsx:130 +msgid "No Tags created" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -msgid "view instructions" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:28 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "10 seconds" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "6 hours" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "12 hours" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:29 -msgid "24 hours" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/nl/LC_MESSAGES/messages.json b/superset/translations/nl/LC_MESSAGES/messages.json index e77f0459ee78a..4e55e3c19e9d4 100644 --- a/superset/translations/nl/LC_MESSAGES/messages.json +++ b/superset/translations/nl/LC_MESSAGES/messages.json @@ -8,4937 +8,4799 @@ "plural_forms": "nplurals=2; plural=(n != 1)", "lang": "nl" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\n Deze filter werd geërfd van de context van het dashboard.\n Dit wordt niet opgeslagen bij het opslaan van de grafiek.\n " + "The datasource is too large to query.": [ + "De gegevensbron is te groot om te bevragen." ], - "\n Error: %(text)s\n ": [ - "\n Fout: %(text)s\n " + "The database is under an unusual load.": [ + "De database wordt ongebruikelijk zwaar belast." ], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "The database returned an unexpected error.": [ + "De database gaf een onverwachte foutmelding." + ], + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "" ], - " expression which needs to adhere to the ": [ - " uitdrukking die moet voldoen aan de " + "The column was deleted or renamed in the database.": [ + "De kolom werd verwijderd of hernoemd in de database." ], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "The table was deleted or renamed in the database.": [ + "De tabel werd verwijderd of hernoemd in de database." + ], + "One or more parameters specified in the query are missing.": [ + "Een of meer in de query opgegeven parameters ontbreken." + ], + "The hostname provided can't be resolved.": [ + "De opgegeven hostnaam kan niet worden gevonden." + ], + "The port is closed.": ["De poort is gesloten."], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": ["!= (Is niet gelijk)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s kunnen om veiligheidsredenen niet als gegevensbron worden gebruikt." + "Superset encountered an error while running a command.": [ + "een fout is opgetreden in Superset tijdens het uitvoeren van een commando." ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": ["%(name)s.csv"], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s kreeg de rol %(role)s die toegang geeft tot de %(datasource)s" + "Superset encountered an unexpected error.": [ + "Er is een onverwachte fout opgetreden in Superset." ], - "%(user)s's profile": ["%(user)s’s profiel"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s was niet in staat om uw query te controleren.\nControleer uw query opnieuw.\nUitzondering: %(ex)s" + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [ + "Ofwel is de gebruikersnaam ofwel het wachtwoord verkeerd." ], - "%s Error": ["%s Fout"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": ["%s Geselecteerd"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s Geselecteerd (%s Fysiek, %s Virtueel)" + "Either the database is spelled incorrectly or does not exist.": [""], + "The schema was deleted or renamed in the database.": [ + "Het schema werd verwijderd of hernoemd in de database." ], - "%s Selected (Physical)": ["%s Geselecteerd (Fysiek)"], - "%s Selected (Virtual)": ["%s Geselecteerd (Virtueel)"], - "%s aggregates(s)": ["%s aggrega(a)t(en)"], - "%s column(s)": ["%s kolom(men)"], - "%s operator(s)": ["%s operator(s)"], - "%s option(s)": ["%s optie(s)"], - "%s saved metric(s)": ["%s opgeslagen meeteenhe(i)d(en)"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s van %s"], - "(Removed)": ["(Verwijderd)"], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "" + "User doesn't have the proper permissions.": [ + "Gebruiker heeft niet de juiste permissies." ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "One or more parameters needed to configure a database are missing.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - ".": [""], - "0 Selected": ["0 Geselecteerd"], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["1 uur"], - "1 minute": ["1 minuut"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 year ago": [""], - "10 minute": ["10 minuten"], - "104 weeks ago": [""], - "15 minute": ["15 minuten"], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 letter code of the country": [""], - "3 years ago": [""], - "30 days": ["30 dagen"], - "30 minute": [""], - "30 minutes": ["30 minuten"], - "30 second": [""], - "30 seconds": ["30 seconden"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": ["5 minuten"], - "5 minutes": ["5 minuten"], - "5 second": [""], - "52 weeks ago": [""], - "6 hour": [""], - "60 days": ["60 dagen"], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": ["90 dagen"], - ":": [":"], - "< (Smaller than)": ["< (Kleiner dan)"], - "<= (Smaller or equal)": ["<= (Kleiner of gelijk)"], - "": [""], - "": [""], - "== (Is equal)": ["== (Is gelijk)"], - "> (Larger than)": ["> (Groter dan)"], - ">= (Larger or equal)": [">= (Groter of gelijk)"], - "A Big Number": [""], - "A comma separated list of columns that should be parsed as dates.": [ - "Een door komma’s gescheiden lijst van kolommen die als datums moeten worden geparseerd." - ], - "A database with the same name already exists.": [""], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "The object does not exist in the given database.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": ["Een mensvriendelijke naam"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "The port number is invalid.": [""], + "Failed to start remote query on a worker.": [""], + "The database was deleted.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": ["Ongeldig certificaat"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Onveilig terugkeertype voor functie %(func)s: %(value_type)s" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ + "Unsupported return value for method %(name)s": [ + "Niet-ondersteunde terugkeer waarde voor methode %(name)s" + ], + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Onveilige sjabloonwaarde voor sleutel %(key)s: %(value_type)s" + ], + "Unsupported template value for key %(key)s": [ + "Niet-ondersteunde sjabloonwaarde voor sleutel %(key)s" + ], + "Only SELECT statements are allowed against this database.": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "A map of the world, that can indicate values in different countries.": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A metric to use for color": ["Een meeteenheid te gebruiken voor kleur"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": ["Viz mist een gegevensbron"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A readable URL for your dashboard": [ - "Een leesbare URL voor uw dashboard" + "From date cannot be larger than to date": [ + "Van datum kan niet groter zijn dan tot datum" ], - "A reference to the [Time] configuration, taking granularity into account": [ - "" + "Cached value not found": ["Cached waarde niet gevonden"], + "Columns missing in datasource: %(invalid_columns)s": [ + "Kolommen ontbreken in databron: %(invalid_columns)s" ], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Een set parameters die beschikbaar worden in de query met behulp van Jinja templating syntax" + "Time Table View": ["Tijd tabelweergave"], + "Pick at least one metric": ["Kies ten minste één meeteenheid"], + "When using 'Group By' you are limited to use a single metric": [ + "Bij gebruik van ‘Group By’ bent u beperkt tot het gebruik van één meeteenheid" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Calendar Heatmap": ["Kalender Heatmap"], + "Bubble Chart": ["Bubbelgrafiek"], + "Please use 3 different metric labels": [ + "Gelieve 3 verschillende meeteenheid labels te gebruiken" + ], + "Pick a metric for x, y and size": [ + "Kies een meeteenheid voor x, y en grootte" + ], + "Bullet Chart": ["Kogel diagram"], + "Pick a metric to display": ["Kies een meeteenheid om weer te geven"], + "Time Series - Line Chart": ["Tijdreeks - Lijngrafiek"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A timeout occurred while executing the query.": [ - "Er is een time-out opgetreden tijdens het uitvoeren van de query." + "Time Series - Bar Chart": ["Tijdreeks - Staafdiagram"], + "Time Series - Period Pivot": ["Tijdreeksen - Periode draaitabel"], + "Time Series - Percent Change": ["Tijdreeks - Procentuele verandering"], + "Time Series - Stacked": ["Tijdreeksen - Gestapeld"], + "Histogram": ["Histogram"], + "Must have at least one numeric column specified": [ + "Er moet minstens één numerieke kolom gespecificeerd zijn" ], - "A timeout occurred while generating a csv.": [ - "Er is een time-out opgetreden tijdens het genereren van een csv." + "Distribution - Bar Chart": ["Verdeling - Staafdiagram"], + "Can't have overlap between Series and Breakdowns": [ + "Overlapping tussen Series en Breakdowns is niet mogelijk" ], - "A timeout occurred while generating a dataframe.": [""], - "A timeout occurred while taking a screenshot.": [ - "Er is een time-out opgetreden tijdens het maken van een screenshot." + "Pick at least one field for [Series]": [ + "Kies minstens één veld voor [Series]" ], - "A valid color scheme is required": [ - "Een geldig kleurenschema is vereist" + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Kies precies 2 kolommen als [Bron / Doel]" ], - "APPLY": ["TOEPASSEN"], - "APR": ["APR"], - "AQE": ["AQE"], - "AUG": ["AUG"], - "AXIS TITLE MARGIN": [""], - "AXIS TITLE POSITION": [""], - "About": ["Over"], - "Access": ["Toegang"], - "Access requests": ["Toegangsverzoeken"], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": ["Toegang werd gevraagd"], - "Action": ["Actie"], - "Action Log": ["Actie Log"], - "Actions": ["Acties"], - "Active": ["Actief"], - "Actual time range": ["Reële tijdspanne"], - "Adaptive formatting": [""], - "Add": ["Voeg toe"], - "Add Alert": [""], - "Add CSS Template": ["Voeg CSS Template toe"], - "Add CSS template": ["Voeg CSS template toe"], - "Add Chart": ["Voeg grafiek toe"], - "Add Column": ["Kolom toevoegen"], - "Add Dashboard": ["Voeg Dashboard toe"], - "Add Database": ["Voeg Database toe"], - "Add Log": ["Voeg Log toe"], - "Add Metric": ["Voeg meeteenheid toe"], - "Add Report": [""], - "Add Rule": [""], - "Add Saved Query": ["Voeg Opgeslagen Query toe"], - "Add a Plugin": ["Voeg een Plugin toe"], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": [""], - "Add an item": ["Voeg een item toe"], - "Add and edit filters": [""], - "Add annotation": ["Aantekening toevoegen"], - "Add annotation layer": ["Aantekeningenlaag toevoegen"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ "" ], - "Add custom scoping": [""], - "Add delivery method": ["Leveringswijze toevoegen"], - "Add filter": ["Filter toevoegen"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "Directed Force Layout": ["Directed Force Layout"], + "Country Map": ["Landenkaart"], + "World Map": ["Wereld kaart"], + "Parallel Coordinates": ["Parallelle coördinaten"], + "Heatmap": ["Heatmap"], + "Horizon Charts": ["Horizon-grafieken"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "[Lengtegraad] en [Breedtegraad] moeten worden ingesteld" ], - "Add filters and dividers": [""], - "Add item": ["Voeg item toe"], - "Add metric": ["Meeteenheid toevoegen"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": ["Meldingsmethode toevoegen"], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add sheet": [""], - "Add to dashboard": ["Toevoegen aan het dashboard"], - "Add/Edit Filters": [""], - "Added": ["Toegevoegd"], - "Additional Parameters": [""], - "Additional fields may be required": [""], - "Additional information": ["Bijkomende informatie"], - "Additional metadata": [""], - "Additional padding for legend.": [""], - "Additional parameters": [""], - "Additional settings.": [""], - "Additional text to add before or after the value, e.g. unit": [""], - "Additive": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": ["Geavanceerd"], - "Advanced Analytics": [""], - "Advanced analytics": ["Geavanceerde analytics"], - "Advanced-Analytics": [""], - "Aesthetic": [""], - "After": [""], - "Aggregate": [""], - "Aggregate Mean": [""], - "Aggregate Sum": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Moet een [Group By] kolom hebben om ‘count’ als [Label] te hebben" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "" + "Choice of [Label] must be present in [Group By]": [ + "Keuze van [Label] moet aanwezig zijn in [Groep door]" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Choice of [Point Radius] must be present in [Group By]": [ + "Keuze van [Punt radius] moet aanwezig zijn in [Groep door]" + ], + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "Kolommen [Lengtegraad] en [Breedtegraad] moeten aanwezig zijn in [Groepen per]" + ], + "Deck.gl - Multiple Layers": ["Deck.gl - Meerdere Lagen"], + "Bad spatial key": ["Ongeldige ruimtelijke sleutel"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "Aggregation function": [""], - "Alert Triggered, In Grace Period": [ - "Waarschuwing geactiveerd, in grace periode" + "Deck.gl - Scatter plot": ["Deck.gl - Scatter plot"], + "Deck.gl - Screen Grid": ["Deck.gl - Screen Grid"], + "Deck.gl - 3D Grid": ["Deck.gl - 3D Grid"], + "Deck.gl - Paths": ["Deck.gl - Paths"], + "Deck.gl - Polygon": ["Deck.gl - Polygon"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], + "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], + "Deck.gl - Arc": ["Deck.gl - Arc"], + "Event flow": ["Event flow"], + "Time Series - Paired t-test": ["Tijdreeks - Paired t-test"], + "Time Series - Nightingale Rose Chart": [ + "Tijdreeks - Nightingale Rose grafiek" ], - "Alert condition": ["Naam waarschuwingsconditie"], - "Alert condition schedule": ["Waarschuwing conditie planning"], - "Alert ended grace period.": ["Waarschuwing beëindigd grace period."], - "Alert failed": ["Waarschuwing mislukt"], - "Alert fired during grace period.": [ - "Waarschuwing afgevuurd tijdens grace period." + "Partition Diagram": ["Partition Diagram"], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [ + "%(num)d Aantekeningenlaag verwijderd", + "%(num)d aantekeninglagen verwijderd" ], - "Alert found an error while executing a query.": [ - "Alert heeft een fout gevonden tijdens het uitvoeren van een query." + "All Text": ["Alle tekst"], + "Deleted %(num)d annotation": [ + "%(num)d aantekening verwijderd", + "%(num)d aantekeningen verwijderd" ], - "Alert name": ["Naam van de waarschuwing"], - "Alert on grace period": ["Waarschuwing tijdens grace period"], - "Alert query returned a non-number value.": [ - "Alert query heeft een waarde geretourneerd die geen getal is." + "Deleted %(num)d chart": [ + "Verwijderde %(num)d grafiek", + "Verwijderde %(num)d grafieken" ], - "Alert query returned more than one column.": [ - "Alert query heeft meer dan één kolom geretourneerd." + "Is certified": [""], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`confidence_interval` moet tussen 0 en 1 liggen (exclusief)" ], - "Alert query returned more than one column. %s columns returned": [ - "Alert query retourneerde meer dan één kolom. %s kolommen geretourneerd" + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "onderste percentiel moet groter zijn dan 0 en kleiner dan 100. Moet lager zijn dan het bovenste percentiel." ], - "Alert query returned more than one row.": [ - "Alert query retourneerde meer dan één rij." + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "" ], - "Alert query returned more than one row. %s rows returned": [ - "Alert query heeft meer dan één rij geretourneerd. %s rijen geretourneerd" + "`width` must be greater or equal to 0": [ + "`breedte` moet groter of gelijk zijn aan 0" ], - "Alert running": ["Alarm actief"], - "Alert triggered, notification sent": [ - "Alarm geactiveerd, kennisgeving verzonden" + "`row_limit` must be greater than or equal to 0": [ + "`rij_limiet` moet groter of gelijk aan 0 zijn" ], - "Alert validator config error.": [ - "Waarschuwing validator configuratiefout." + "`row_offset` must be greater than or equal to 0": [ + "`rij_offset` moet groter zijn dan of gelijk aan 0" ], - "Alerts": ["Waarschuwingen"], - "Alerts & Reports": ["Waarschuwingen en rapporten"], - "Alerts & reports": ["Waarschuwingen & rapporten"], - "Align +/-": [""], - "All": ["Alle"], - "All Text": ["Alle tekst"], - "All charts": ["Alle grafieken"], - "All charts/global scoping": [""], - "All filters": ["Alle filters"], - "All filters (%(filterCount)d)": [""], - "All panels": [""], - "All panels with this column will be affected by this filter": [ - "Alle panelen met deze kolom zullen door deze filter worden beïnvloed" + "orderby column must be populated": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": ["Verzoek is onjuist: %(error)s"], + "Request is not JSON": ["Verzoek is geen JSON"], + "Empty query result": [""], + "Owners are invalid": ["Eigenaren zijn ongeldig"], + "Some roles do not exist": ["Sommige rollen bestaan niet"], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": [ + "De parameters van de aantekeningenlaag zijn ongeldig." ], - "Allow CREATE TABLE AS": ["Sta CREATE TABLE AS toe"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Sta de CREATE TABLE AS optie toe in SQL Lab" + "Annotation layer could not be created.": [ + "Aantekeningenlaag kon niet worden aangemaakt." ], - "Allow CREATE VIEW AS": ["Sta CREATE VIEW AS toe"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Sta de CREATE VIEW AS optie toe in SQL Lab" + "Annotation layer could not be updated.": [ + "Aantekeningenlaag kon niet worden bijgewerkt." ], - "Allow Csv Upload": ["Csv upload toestaan"], - "Allow DML": ["DML toestaan"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [ - "Aanmaken van nieuwe tabellen op basis van query’s mogelijk maken" + "Annotation layer not found.": ["Aantekeningenlaag niet gevonden."], + "Annotation layer has associated annotations.": [ + "Aantekeningenlaag heeft bijbehorende aantekeningen." ], - "Allow creation of new views based on queries": [ - "Aanmaken van nieuwe views gebaseerd op queries toestaan" + "Name must be unique": ["De naam moet uniek zijn"], + "End date must be after start date": [ + "Einddatum moet na begindatum liggen" ], - "Allow data manipulation language": ["Sta data manipulatie taal toe"], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "" + "Short description must be unique for this layer": [ + "Korte beschrijving moet uniek zijn voor deze laag" ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Sta manipulatie van de database toe met niet-SELECT statements zoals UPDATE, DELETE, CREATE, enz." + "Annotation not found.": ["Aantekening niet gevonden."], + "Annotation parameters are invalid.": [ + "Aantekening parameters zijn ongeldig." ], - "Allow multiple selections": ["Meerdere selecties toestaan"], - "Allow node selections": [""], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [ - "Sta toe dat deze database wordt opgevraagd in SQL Lab" + "Annotation could not be created.": [ + "Aantekening kon niet worden aangemaakt." ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "" + "Annotation could not be updated.": [ + "Aantekening kon niet worden bijgewerkt." ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": ["Alfabetisch"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "" + "Annotations could not be deleted.": [ + "Aantekeningen konden niet worden verwijderd." ], - "Altered": ["Gewijzigd"], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "An engine must be specified when passing individual parameters to a database.": [ + "Cannot parse time string [%(human_readable)s]": [ + "Kan tijdstring [%(human_readable)s] niet parsen" + ], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "An error has occurred": ["Er is een fout opgetreden"], - "An error occurred": ["Er is een fout opgetreden"], - "An error occurred saving dataset": [ - "Er is een fout opgetreden bij het opslaan van dataset" + "Database does not exist": ["Database bestaat niet"], + "Dashboards do not exist": ["Dashboards bestaan niet"], + "Datasource type is required when datasource_id is given": [ + "Datasourcetype is vereist wanneer datasource_id is gegeven" ], - "An error occurred while accessing the value.": [""], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Er is een fout opgetreden tijdens het samenvouwen van het tabelschema. Neem contact op met uw beheerder." + "Chart parameters are invalid.": ["Grafiekparameters zijn ongeldig."], + "Chart could not be created.": ["Grafiek kon niet worden aangemaakt."], + "Chart could not be updated.": ["De grafiek kon niet worden bijgewerkt."], + "Charts could not be deleted.": [ + "Grafieken konden niet worden verwijderd." ], - "An error occurred while creating %ss: %s": [""], - "An error occurred while creating the data source": [ - "Er is een fout opgetreden bij het aanmaken van de gegevensbron" + "There are associated alerts or reports": [ + "Er zijn geassocieerde waarschuwingen of rapporten" ], - "An error occurred while creating the value.": [""], - "An error occurred while deleting the value.": [""], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Er is een fout opgetreden tijdens het uitbreiden van het tabelschema. Neem contact op met uw beheerder." + "You don't have access to this chart.": [""], + "Changing this chart is forbidden": [ + "Het is verboden deze grafiek te wijzigen" ], - "An error occurred while fetching %s info: %s": [""], - "An error occurred while fetching %ss: %s": [""], - "An error occurred while fetching available CSS templates": [ - "Er is een fout opgetreden tijdens het ophalen van beschikbare CSS templates" + "Import chart failed for an unknown reason": [ + "Import grafiek mislukt om een onbekende reden" ], - "An error occurred while fetching chart created by values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van de grafiek gemaakt door waarden: %s" + "Error: %(error)s": [""], + "CSS template not found.": ["CSS sjabloon niet gevonden."], + "Must be unique": ["Moet uniek zijn"], + "Dashboard parameters are invalid.": [ + "Dashboard parameters zijn ongeldig." ], - "An error occurred while fetching chart owners values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars waarden: %s" + "Dashboard could not be updated.": [ + "Dashboard kon niet worden bijgewerkt." ], - "An error occurred while fetching created by values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van gecreeerd door waarden: %s" + "Dashboard could not be deleted.": [ + "Dashboard kon niet worden verwijderd." ], - "An error occurred while fetching dashboard created by values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van dashboard gemaakt door waarden: %s" + "Changing this Dashboard is forbidden": [ + "Het is verboden dit dashboard te veranderen" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van dashboard eigenaar waarden: %s" + "Import dashboard failed for an unknown reason": [ + "Dashboard importeren mislukt om een onbekende reden" ], - "An error occurred while fetching dashboards": [""], - "An error occurred while fetching dashboards: %s": [ - "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" + "You don't have access to this dashboard.": [ + "Je hebt geen toegang tot dit dashboard." ], - "An error occurred while fetching database related data: %s": [ - "Er is een fout opgetreden tijdens het ophalen van databasegerelateerde gegevens: %s" + "No data in file": ["Geen gegevens in het bestand"], + "Database parameters are invalid.": [ + "Database parameters zijn ongeldig." ], - "An error occurred while fetching database values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van databasewaarden: %s" + "A database with the same name already exists.": [""], + "Field is required": ["Veld is verplicht"], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "De metadata_params in Extra veld is niet correct geconfigureerd. De sleutel %{key}s is ongeldig." ], - "An error occurred while fetching dataset datasource values: %s": [ - "Er is een fout opgetreden bij het ophalen van dataset datasource waarden: %s" + "Database not found.": ["Database niet gevonden."], + "Database could not be created.": [ + "Database kon niet worden aangemaakt." ], - "An error occurred while fetching dataset owner values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van de eigenaarswaarden van de dataset: %s" + "Database could not be updated.": [ + "De database kon niet worden bijgewerkt." ], - "An error occurred while fetching dataset related data": [ - "Er is een fout opgetreden tijdens het ophalen van dataset gerelateerde gegevens" + "Connection failed, please check your connection settings": [ + "Verbinding mislukt, controleer uw verbindingsinstellingen" ], - "An error occurred while fetching dataset related data: %s": [ - "Er is een fout opgetreden tijdens het ophalen van gegevens over de dataset: %s" + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": [ + "Database kon niet worden verwijderd." ], - "An error occurred while fetching datasets: %s": [ - "Er is een fout opgetreden bij het ophalen van datasets: %s" + "Stopped an unsafe database connection": [ + "Stopte een onveilige database connectie" ], - "An error occurred while fetching function names.": [ - "Er is een fout opgetreden bij het ophalen van functienamen." + "Could not load database driver": ["Kon het database driver niet laden"], + "Unexpected error occurred, please check your logs for details": [ + "Er is een onverwachte fout opgetreden, controleer uw logs voor details" ], - "An error occurred while fetching schema values: %s": [ - "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" + "No validator found (configured for the engine)": [""], + "Import database failed for an unknown reason": [ + "Import database mislukt om een onbekende reden" ], - "An error occurred while fetching tab state": [ - "Er is een fout opgetreden tijdens het ophalen van de tabbladstatus" + "Could not load database driver: {}": [ + "Kon het database driver niet laden: {}" ], - "An error occurred while fetching table metadata": [ - "Er is een fout opgetreden tijdens het ophalen van de metagegevens van de tabel" + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "Database is offline.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s was niet in staat om uw query te controleren.\nControleer uw query opnieuw.\nUitzondering: %(ex)s" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Er is een fout opgetreden tijdens het ophalen van de metagegevens van de tabel. Neem contact op met uw beheerder." + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ + "" ], - "An error occurred while fetching user values: %s": [""], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "Er is een fout opgetreden tijdens het verbergen van de linker balk. Neem contact op met uw beheerder." + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "The database was not found.": [""], + "Dataset %(name)s already exists": ["Dataset %(name)s bestaat al"], + "Database not allowed to change": ["Database mag niet wijzigen"], + "One or more columns do not exist": ["Een of meer kolommen bestaan niet"], + "One or more columns are duplicated": [ + "Een of meer kolommen zijn gedupliceerd" ], - "An error occurred while importing %s: %s": [""], - "An error occurred while loading the SQL": [ - "Er is een fout opgetreden bij het laden van de SQL" + "One or more columns already exist": ["Een of meer kolommen bestaan al"], + "One or more metrics do not exist": [ + "Een of meer meeteenheden bestaan niet" ], - "An error occurred while opening Explore": [""], - "An error occurred while pruning logs ": [ - "Er is een fout opgetreden tijdens opschonen van de logbestanden " + "One or more metrics are duplicated": [ + "Een of meer meetgegevens zijn gedupliceerd" ], - "An error occurred while removing query. Please contact your administrator.": [ - "" + "One or more metrics already exist": [ + "Een of meer meetgegevens bestaan al" ], - "An error occurred while removing tab. Please contact your administrator.": [ + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Er is een fout opgetreden tijdens het verwijderen van het tabelschema. Neem contact op met uw beheerder." + "Dataset does not exist": ["Dataset bestaat niet"], + "Dataset parameters are invalid.": ["Dataset parameters zijn ongeldig."], + "Dataset could not be created.": ["Dataset kon niet worden aangemaakt."], + "Dataset could not be updated.": ["Dataset kon niet worden bijgewerkt."], + "Changing this dataset is forbidden": [ + "Veranderen van deze dataset is verboden" ], - "An error occurred while rendering the visualization: %s": [""], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Er is een fout opgetreden bij het instellen van het actieve tabblad. Neem contact op met uw beheerder." + "Import dataset failed for an unknown reason": [ + "Import dataset mislukt om een onbekende reden" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Er is een fout opgetreden bij het instellen van het tabblad autorun. Neem contact op met uw beheerder." + "You don't have access to this dataset.": [""], + "Data URI is not allowed.": [""], + "Dataset column not found.": ["Dataset kolom niet gevonden."], + "Dataset column delete failed.": ["Dataset kolom verwijderen mislukt."], + "Changing this dataset is forbidden.": [ + "Het is verboden deze dataset te wijzigen." ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Er is een fout opgetreden bij het instellen van de database-ID van het tabblad. Neem contact op met uw beheerder." + "Dataset metric not found.": ["Dataset meeteenheid niet gevonden."], + "Dataset metric delete failed.": [ + "Dataset meetgegevens verwijderen mislukt." ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Er is een fout opgetreden bij het instellen van het tabblad schema. Neem contact op met uw beheerder." + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": ["[Missing Dataset]"], + "Saved queries could not be deleted.": [ + "Opgeslagen zoekopdrachten konden niet worden verwijderd." ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "" + "Saved query not found.": ["Opgeslagen query niet gevonden."], + "Import saved query failed for an unknown reason.": [ + "Import opgeslagen query mislukt om een onbekende reden." ], - "An error occurred while starring this chart": [""], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "" + "Saved query parameters are invalid.": [ + "Opgeslagen query parameters zijn ongeldig." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["Het dashboard bestaat niet"], + "Chart does not exist": ["Grafiek bestaat niet"], + "Database is required for alerts": [ + "Database is nodig voor waarschuwingen" + ], + "Type is required": ["Type is vereist"], + "Choose a chart or dashboard not both": [ + "Kies een grafiek of een dashboard, niet beide" + ], + "Please save your chart first, then try creating a new email report.": [ "" ], - "An error occurred while updating the value.": [""], - "An unknown error occurred. Please contact your Superset administrator": [ - "Er is een onbekende fout opgetreden. Neem contact op met uw Superset-beheerder" + "Please save your dashboard first, then try creating a new email report.": [ + "" ], - "Anchor to": ["Veranker naar"], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Animation": [""], - "Annotation": ["Aantekening"], - "Annotation Layers": ["Aantekeningen Lagen"], - "Annotation Slice Configuration": ["Configuratie van Aantekening sectie"], - "Annotation could not be created.": [ - "Aantekening kon niet worden aangemaakt." + "Report Schedule parameters are invalid.": [ + "De parameters van het rapportageplanning zijn ongeldig." ], - "Annotation could not be updated.": [ - "Aantekening kon niet worden bijgewerkt." + "Report Schedule could not be created.": [ + "Rapportage planning kon niet worden aangemaakt." ], - "Annotation delete failed.": ["Aantekening verwijderen mislukt."], - "Annotation layer": ["Aantekeningenlaag"], - "Annotation layer could not be created.": [ - "Aantekeningenlaag kon niet worden aangemaakt." + "Report Schedule could not be updated.": [ + "Rapportage planning kon niet worden bijgewerkt." ], - "Annotation layer could not be deleted.": [ - "Aantekeningenlaag kon niet worden verwijderd." + "Report Schedule not found.": ["Rapportage planning niet gevonden."], + "Report Schedule delete failed.": [ + "Rapportage planning verwijderen mislukt." ], - "Annotation layer could not be updated.": [ - "Aantekeningenlaag kon niet worden bijgewerkt." + "Report Schedule log prune failed.": [ + "Rapportage planning log prune mislukt." ], - "Annotation layer delete failed.": [ - "Het verwijderen van de Aantekeningenlaag is mislukt." + "Report Schedule execution failed when generating a screenshot.": [ + "Rapportage planning uitvoering mislukt bij het genereren van een screenshot." ], - "Annotation layer description columns": [""], - "Annotation layer has associated annotations.": [ - "Aantekeningenlaag heeft bijbehorende aantekeningen." + "Report Schedule execution failed when generating a csv.": [ + "Rapportage planning mislukt bij het genereren van een csv." ], - "Annotation layer interval end": [""], - "Annotation layer name": ["Naam aantekeningenlaag"], - "Annotation layer not found.": ["Aantekeningenlaag niet gevonden."], - "Annotation layer opacity": [""], - "Annotation layer parameters are invalid.": [ - "De parameters van de aantekeningenlaag zijn ongeldig." + "Report Schedule execution failed when generating a dataframe.": [""], + "Report Schedule execution got an unexpected error.": [ + "Rapportage planning uitvoering kreeg een onverwachte fout." ], - "Annotation layer stroke": [""], - "Annotation layer time column": [""], - "Annotation layer title column": [""], - "Annotation layer type": ["Type aantekeningenlaag"], - "Annotation layer value": [""], - "Annotation layers": ["Aantekeningenlagen"], - "Annotation layers are still loading.": [ - "Aantekening lagen worden nog steeds geladen." + "Report Schedule is still working, refusing to re-compute.": [ + "Rapportage planning werkt nog steeds, weigert om opnieuw te berekenen." ], - "Annotation name": ["Naam van de aantekening"], - "Annotation not found.": ["Aantekening niet gevonden."], - "Annotation parameters are invalid.": [ - "Aantekening parameters zijn ongeldig." + "Report Schedule reached a working timeout.": [ + "Rapportage planning heeft een werk time-out bereikt." ], - "Annotation source type": [""], - "Annotation template created": [""], - "Annotation template updated": [""], - "Annotations and Layers": [""], - "Annotations and layers": ["Aantekeningen en lagen"], - "Annotations could not be deleted.": [ - "Aantekeningen konden niet worden verwijderd." + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [ + "Alert query retourneerde meer dan één rij." ], - "Any": ["Elke"], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Elk kleurenpalet dat hier wordt geselecteerd zal de kleuren overschrijven die worden toegepast op de individuele grafieken van dit dashboard" + "Alert validator config error.": [ + "Waarschuwing validator configuratiefout." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "" + "Alert query returned more than one column.": [ + "Alert query heeft meer dan één kolom geretourneerd." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "" + "Alert query returned a non-number value.": [ + "Alert query heeft een waarde geretourneerd die geen getal is." ], - "Append": ["Voeg toe"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "" - ], - "Apply": ["Toepassen"], - "Apply conditional color formatting to metric": [""], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply filters": [""], - "Apply metrics on": [""], - "Apply to all panels": ["Toepassen op alle panelen"], - "Apply to specific panels": ["Toepassen op specifieke panelen"], - "April": ["April"], - "Arc": [""], - "Are you sure you want to cancel?": [ - "Weet je zeker dat je wilt annuleren?" - ], - "Are you sure you want to delete": [ - "Weet je zeker dat je wilt verwijderen" - ], - "Are you sure you want to delete the selected %s?": [ - "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" - ], - "Are you sure you want to delete the selected annotations?": [ - "Weet u zeker dat u de geselecteerde aantekeningen wilt verwijderen?" - ], - "Are you sure you want to delete the selected charts?": [ - "Weet je zeker dat je de geselecteerde grafieken wilt verwijderen?" - ], - "Are you sure you want to delete the selected dashboards?": [ - "Weet je zeker dat je de geselecteerde dashboards wilt verwijderen?" + "Alert found an error while executing a query.": [ + "Alert heeft een fout gevonden tijdens het uitvoeren van een query." ], - "Are you sure you want to delete the selected datasets?": [ - "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" + "A timeout occurred while executing the query.": [ + "Er is een time-out opgetreden tijdens het uitvoeren van de query." ], - "Are you sure you want to delete the selected layers?": [ - "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" + "A timeout occurred while taking a screenshot.": [ + "Er is een time-out opgetreden tijdens het maken van een screenshot." ], - "Are you sure you want to delete the selected queries?": [ - "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" + "A timeout occurred while generating a csv.": [ + "Er is een time-out opgetreden tijdens het genereren van een csv." ], - "Are you sure you want to delete the selected templates?": [ - "Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?" + "A timeout occurred while generating a dataframe.": [""], + "Alert fired during grace period.": [ + "Waarschuwing afgevuurd tijdens grace period." ], - "Are you sure you want to proceed?": [ - "Weet je zeker dat je door wilt gaan?" + "Alert ended grace period.": ["Waarschuwing beëindigd grace period."], + "Alert on grace period": ["Waarschuwing tijdens grace period"], + "Report Schedule state not found": [ + "Rapport Schedule state niet gevonden" ], - "Are you sure you want to save and apply changes?": [ - "Weet u zeker dat u de wijzigingen wilt opslaan en toepassen?" + "Report schedule unexpected error": ["Onverwachte fout in rapportschema"], + "Changing this report is forbidden": [ + "Het is verboden dit rapport te wijzigen" ], - "Area Chart": [""], - "Area Chart (legacy)": [""], - "Area chart": [""], - "Area chart opacity": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "" + "An error occurred while pruning logs ": [ + "Er is een fout opgetreden tijdens opschonen van de logbestanden " ], - "Arrow": [""], - "Associated Charts": ["Gerelateerde grafieken"], - "Async Execution": ["Async uitvoering"], - "Asynchronous query execution": ["Asynchrone uitvoering van query’s"], - "August": ["Augustus"], - "Auto Zoom": [""], - "Autocomplete": ["Autocomplete"], - "Autocomplete filters": ["Autocomplete filters"], - "Autocomplete query predicate": ["Autocomplete query predicaat"], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Axis": [""], - "Axis Bounds": [""], - "Axis ascending": [""], - "Axis descending": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": ["Backend"], - "Backward values": [""], - "Bad formula.": [""], - "Bad spatial key": ["Ongeldige ruimtelijke sleutel"], - "Bar": [""], - "Bar Chart": [""], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Bar Values": [""], - "Base layer map style": [""], - "Based on a metric": ["Gebaseerd op een meeteenheid"], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": ["Berekende kolom [%s] vereist een uitdrukking"], - "Basic information": ["Basis informatie"], - "Batch editing %d filters:": ["Batchbewerking %d filters:"], - "Battery level over time": [""], - "Be careful.": ["Pas op."], - "Before": [""], - "Big Number": ["Groot Getal"], - "Big Number Font Size": [""], - "Big Number with Trendline": ["Groot getal met trendlijn"], - "Bottom": [""], - "Bottom Margin": [""], - "Bottom left": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom right": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "The query associated with these results could not be found. You need to re-run the original query.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ "" ], - "Box Plot": [""], - "Breakdowns": [""], - "Bubble Chart": ["Bubbelgrafiek"], - "Bubble Color": [""], - "Bubble Size": [""], - "Bubble size": ["Bubbelgrootte"], - "Bucket break points": [""], - "Bulk select": ["Selecteer in bulk"], - "Bullet Chart": ["Kogel diagram"], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": ["ANNULEER"], - "CREATE TABLE AS": ["CREATE TABLE AS"], - "CREATE VIEW AS": ["CREATE VIEW AS"], - "CREATE VIEW statement": ["CREATE VIEW statement"], - "CRON expression": ["CRON expressie"], - "CSS": ["CSS"], - "CSS Styles": [""], - "CSS Templates": ["CSS-sjablonen"], - "CSS applied to the chart": [""], - "CSS template": ["CSS template"], - "CSS template could not be deleted.": [ - "CSS sjabloon kon niet worden verwijderd." - ], - "CSS template name": ["CSS template naam"], - "CSS template not found.": ["CSS sjabloon niet gevonden."], - "CSS templates": ["CSS templates"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "CSV-bestand “%(csv_filename)s” geüpload naar tabel “%(table_name)s” in database “%(db_name)s”" - ], - "CSV to Database configuration": ["CSV naar Database configuratie"], - "CSV upload": ["CSV upload"], - "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "An error occurred while creating the value.": [""], + "An error occurred while accessing the value.": [""], + "An error occurred while deleting the value.": [""], + "An error occurred while updating the value.": [""], + "You don't have permission to modify the value.": [""], + "Invalid result type: %(result_type)s": [""], + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "The chart does not exist": ["De grafiek bestaat niet"], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "CTAS Schema": ["CTAS Schema"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": ["Cache Timeout"], - "Cache Timeout (seconds)": ["Cache Timeout (seconden)"], - "Cache timeout": ["Cache timeout"], - "Cached %s": ["Cached %s"], - "Cached value not found": ["Cached waarde niet gevonden"], - "Calculate contribution per series or row": [""], - "Calculated column [%s] requires an expression": [ - "Berekende kolom [%s] vereist een uitdrukking" + "`operation` property of post processing object undefined": [ + "`operation` eigenschap van post processing object ongedefinieerd" ], - "Calculated columns": ["Berekende kolommen"], - "Calculation type": ["Soort berekening"], - "Calendar Heatmap": ["Kalender Heatmap"], - "Can not move top level tab into nested tabs": [ - "Kan bovenste tabblad niet in geneste tabbladen verplaatsen" + "Unsupported post processing operation: %(operation)s": [ + "Niet-ondersteunde nabewerking: %(operation)s" ], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [ - "Overlapping tussen Series en Breakdowns is niet mogelijk" + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Fout in jinja expressie in fetch values predicate: %(msg)s" ], - "Cancel": ["Annuleer"], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Kan dashboard niet importeren: %(db_error)s.\nZorg ervoor dat u de database aanmaakt voordat u het dashboard importeert." + "Virtual dataset query must be read-only": [ + "Query voor virtuele gegevensverzameling moet alleen-lezen zijn" ], - "Cannot load filter": ["Kan filter niet laden"], - "Cannot parse time string [%(human_readable)s]": [ - "Kan tijdstring [%(human_readable)s] niet parsen" + "Error while rendering virtual dataset query: %(msg)s": [ + "Fout bij het renderen van de query van de virtuele dataset: %(msg)s" ], - "Categorical": [""], - "Categorical Color": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell Size": [""], - "Cell bars": [""], - "Cell content": ["Cel inhoud"], - "Cell limit": [""], - "Center": [""], - "Certification": [""], - "Certification details": ["Details certificering"], - "Certified": [""], - "Certified By": [""], - "Certified by": ["Gecertificeerd door"], - "Certified by %s": ["Gecertificeerd door %s"], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": ["Gewijzigd door"], - "Changed on": ["Gewijzigd op"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Het wijzigen van de dataset kan de grafiek breken indien de grafiek steunt op kolommen of metadata die niet bestaan in de doel-dataset" + "Virtual dataset query cannot be empty": [ + "Query virtuele dataset kan niet leeg zijn" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "" + "Virtual dataset query cannot consist of multiple statements": [ + "Een query voor een virtuele dataset kan niet uit meerdere statements bestaan" ], - "Changing this Dashboard is forbidden": [ - "Het is verboden dit dashboard te veranderen" + "Error in jinja expression in RLS filters: %(msg)s": [ + "Fout in jinja expressie in RLS filters: %(msg)s" ], - "Changing this chart is forbidden": [ - "Het is verboden deze grafiek te wijzigen" + "Metric '%(metric)s' does not exist": [ + "Meeteenheid “%(metric)s” bestaat niet" ], - "Changing this control takes effect instantly": [ - "Het veranderen van deze controleknop heeft onmiddellijk effect" + "Db engine did not return all queried columns": [ + "Db engine retourneerde niet alle opgevraagde kolommen" ], - "Changing this dataset is forbidden": [ - "Veranderen van deze dataset is verboden" + "Only `SELECT` statements are allowed": [ + "Alleen `SELECT` statements zijn toegestaan" ], - "Changing this dataset is forbidden.": [ - "Het is verboden deze dataset te wijzigen." + "Only single queries supported": [ + "Alleen enkelvoudige query’s worden ondersteund" ], - "Changing this report is forbidden": [ - "Het is verboden dit rapport te wijzigen" + "Columns": ["Kolommen"], + "Show Column": ["Toon Kolom"], + "Add Column": ["Kolom toevoegen"], + "Edit Column": ["Kolom toevoegen"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "" ], - "Character to interpret as decimal point.": [ - "Teken te interpreteren als decimaalteken." + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "" ], - "Chart": ["Grafiek"], - "Chart %(id)s not found": ["Grafiek %(id)s niet gevonden"], - "Chart Cache Timeout": ["Cache time-out"], - "Chart ID": ["Grafiek ID"], - "Chart Options": [""], - "Chart Orientation": [""], - "Chart Title": [""], - "Chart [{}] has been overwritten": ["Grafiek [{}] is overschreven"], - "Chart [{}] has been saved": ["Grafiek [{}] is opgeslagen"], - "Chart [{}] was added to dashboard [{}]": [ - "Grafiek [{}] werd toegevoegd aan dashboard [{}]" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "" ], - "Chart cache timeout": ["Grafiek cache timeout"], - "Chart changes": ["Veranderingen in de grafiek"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "Column": ["Kolom"], + "Verbose Name": ["Verklarende naam"], + "Description": ["Omschrijving"], + "Groupable": ["Groepeerbaar"], + "Filterable": ["Filterbaar"], + "Table": ["Tabel"], + "Expression": ["Expressie"], + "Is temporal": ["Is tijdelijk"], + "Datetime Format": ["Datumtijd Formaat"], + "Type": ["Type"], + "Business Data Type": [""], + "Invalid date/timestamp format": ["Ongeldig datum/tijdstempel formaat"], + "Metrics": ["Meeteenheden"], + "Show Metric": ["Toon meeteenheid"], + "Add Metric": ["Voeg meeteenheid toe"], + "Edit Metric": ["Bewerk meeteenheid"], + "Metric": ["Meeteenheid"], + "SQL Expression": ["SQL Expressie"], + "D3 Format": ["D3 Formaat"], + "Extra": ["Extra"], + "Warning Message": ["Waarschuwing"], + "Tables": ["Tabellen"], + "Show Table": ["Toon tabel"], + "Import a table definition": ["Importeer een tabeldefinitie"], + "Edit Table": ["Bewerk tabel"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ "" ], - "Chart could not be created.": ["Grafiek kon niet worden aangemaakt."], - "Chart could not be deleted.": ["Grafiek kon niet worden verwijderd."], - "Chart could not be updated.": ["De grafiek kon niet worden bijgewerkt."], - "Chart does not exist": ["Grafiek bestaat niet"], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart height": [""], - "Chart imported": [""], - "Chart name": ["Grafiek naam"], - "Chart options": [""], - "Chart parameters are invalid.": ["Grafiekparameters zijn ongeldig."], - "Chart properties updated": [""], - "Chart type": ["Toe grafiek"], - "Chart type requires a dataset": [""], - "Charts": ["Grafieken"], - "Charts could not be deleted.": [ - "Grafieken konden niet worden verwijderd." + "Timezone offset (in hours) for this datasource": [ + "Tijdzone-offset (in uren) voor deze databron" ], - "Check configuration": ["Check configuratie"], - "Check for sorting ascending": ["Controle op oplopend sorteren"], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "" + "Name of the table that exists in the source database": [ + "Naam van de tabel die bestaat in de brondatabase" ], - "Check out this chart in dashboard:": [ - "Kijk naar deze grafiek in het dashboard:" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Schema, zoals alleen gebruikt in sommige databases zoals Postgres, Redshift en DB2" ], - "Check out this chart: ": [""], - "Check out this dashboard: ": ["Kijk naar dit dashboard:"], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Vink aan om filters onmiddellijk toe te passen als ze veranderen in plaats van de [Toepassen] knop weer te geven" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Dit veld werkt als een Superset view, wat betekent dat Superset een query zal uitvoeren tegen deze string als een subquery." ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [ - "Vink aan om tijdkolom dropdown op te nemen" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "" ], - "Check to include time grain dropdown": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [ - "Keuze van [Label] moet aanwezig zijn in [Groep door]" + "Redirects to this endpoint when clicking on the table from the table list": [ + "" ], - "Choice of [Point Radius] must be present in [Group By]": [ - "Keuze van [Punt radius] moet aanwezig zijn in [Groep door]" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "" ], - "Choose File": ["Kies Bestand"], - "Choose a chart or dashboard not both": [ - "Kies een grafiek of een dashboard, niet beide" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Geeft aan of de tabel werd gegenereerd door de “Visualize” stroom in SQL Lab" ], - "Choose a database...": [""], - "Choose a dataset": ["Kies een dataset"], - "Choose a metric for right axis": [ - "Kies een meeteenheid voor de rechteras" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Een set parameters die beschikbaar worden in de query met behulp van Jinja templating syntax" ], - "Choose a number format": [""], - "Choose a source": [""], - "Choose a source and a target": [""], - "Choose a target": [""], - "Choose chart type": [""], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": ["Kies het aantekeningenlaagtype"], - "Choose the format for legend values": [""], - "Choose the position of the legend": [""], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "Chord Diagram": [""], - "Chosen non-numeric column": ["Gekozen niet-numerieke kolom"], - "Circle": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Clause": ["Clausule"], - "Clear": ["Verwijder"], - "Clear all": ["Wis alles"], - "Clear form": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Associated Charts": ["Gerelateerde grafieken"], + "Changed By": ["Gewijzigd door"], + "Database": ["Database"], + "Last Changed": ["Laatste wijziging"], + "Enable Filter Select": ["Inschakelen Filter Keuze"], + "Schema": ["Schema"], + "Default Endpoint": ["Standaard eindpunt"], + "Offset": ["Offset"], + "Cache Timeout": ["Cache Timeout"], + "Table Name": ["Tabel Naam"], + "Fetch Values Predicate": ["Waarden ophalen Predicaat"], + "Owners": ["Eigenaars"], + "Main Datetime Column": ["Kolom Hoofd Datumtijd"], + "SQL Lab View": ["SQL Lab View"], + "Template parameters": ["Template parameters"], + "Modified": ["Gewijzigd"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ "" ], - "Click the lock to make changes.": [ - "Klik op het slotje om wijzigingen aan te brengen." + "Deleted %(num)d css template": [ + "Verwijderde %(num)d css sjabloon", + "Verwijderde %(num)d css sjablonen" ], - "Click the lock to prevent further changes.": [ - "Klik op het slotje om verdere wijzigingen te voorkomen." + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": [ + "Verwijderde %(num)d dashboard", + "Verwijderde %(num)d dashboards" ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Title or Slug": ["Titel of Slug"], + "Role": ["Rol"], + "Table name undefined": ["Tabelnaam niet gedefinieerd"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "" + "Field cannot be decoded by JSON. %(msg)s": [ + "Veld kan niet gedecodeerd worden door JSON. %(msg)s" ], - "Click to cancel sorting": [""], - "Click to edit": ["Klik om te bewerken"], - "Click to edit label": [""], - "Click to favorite/unfavorite": [ - "Klik om voorkeur aan te geven/voorkeur te verwijderen" + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "De metadata_params in Extra veld is niet correct geconfigureerd. De sleutel %(key)s is ongeldig." ], - "Click to force-refresh": ["Klik om te herladen"], - "Click to see difference": ["Klik om het verschil te zien"], - "Close": ["Sluit"], - "Close all other tabs": ["Sluit alle andere tabbladen"], - "Close tab": ["Tabblad sluiten"], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": ["Code"], - "Collapse all": ["Alles inklappen"], - "Collapse table preview": [""], - "Color": ["Kleur"], - "Color +/-": [""], - "Color Metric": [""], - "Color Scheme": [""], - "Color Steps": [""], - "Color bounds": [""], - "Color metric": ["Kleur meeteenheid"], - "Color of the target location": [""], - "Color scheme": ["Kleurenschema"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Colors": ["Kleuren"], - "Column": ["Kolom"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "Column Formatting": [""], - "Column Label(s)": ["Kolom Label(s)"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "" + "Deleted %(num)d dataset": [ + "Verwijderde %(num)d dataset", + "Verwijderde %(num)d datasets" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column is required": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Null or Empty": ["Nul of Leeg"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Second": ["Seconde"], + "5 second": [""], + "30 second": [""], + "Minute": ["Minuut"], + "5 minute": ["5 minuten"], + "10 minute": ["10 minuten"], + "15 minute": ["15 minuten"], + "30 minute": [""], + "Hour": ["Uur"], + "6 hour": [""], + "Day": ["Dag"], + "Week": ["Week"], + "Month": ["Maand"], + "Quarter": ["Kwartaal"], + "Year": ["Jaar"], + "Week starting Sunday": ["Week beginnend op zondag"], + "Week starting Monday": ["Week beginnend op maandag"], + "Week ending Saturday": ["Week beginnend op zaterdag"], + "Username": ["Gebruikersnaam"], + "Password": ["Wachtwoord"], + "Hostname or IP address": ["Hostnaam of IP-adres"], + "Database port": ["Database poort"], + "Database name": ["Database naam"], + "Additional parameters": [""], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "Column name [%s] is duplicated": ["Kolomnaam [%s] is gedupliceerd"], - "Column referenced by aggregate is undefined: %(column)s": [ - "Kolom waarnaar aggregaat verwijst is ongedefinieerd: %(column)s" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "" ], - "Column select": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Columnar File": [""], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ + "Either the username “%(username)s” or the password is incorrect." + ], + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "De host “%(hostname)s” is misschien down en kan niet worden bereikt." + ], + "Unable to connect to database \"%(database)s\".": [ + "Kan geen verbinding maken met database “%(database)s”." + ], + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "Columnar to Database configuration": [""], - "Columns": ["Kolommen"], - "Columns missing in datasource: %(invalid_columns)s": [ - "Kolommen ontbreken in databron: %(invalid_columns)s" + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Ofwel is de gebruikersnaam “%(username)s”, ofwel het wachtwoord, ofwel de databasenaam “%(database)s” niet correct." ], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to display": [""], - "Columns to group by": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Combine metrics": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "De hostnaam “%(hostname)s” kan niet worden opgelost." + ], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Poort %(port)s op hostnaam “%(hostname)s” weigerde de verbinding." + ], + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "De host “%(hostname)s” is misschien down, en kan niet bereikt worden op poort %(port)s." + ], + "Unknown MySQL server host \"%(hostname)s\".": [ + "Onbekende MySQL server host “%(hostname)s”." + ], + "The username \"%(username)s\" does not exist.": [ + "De gebruikersnaam “%(username)s” bestaat niet." + ], + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [ + "Het opgegeven wachtwoord voor gebruikersnaam “%(username)s” is onjuist." + ], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Comparison": [""], - "Comparison Period Lag": [""], - "Comparison suffix": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [ - "Bereken de bijdrage aan het totaal" + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "Kan geen verbinding maken met catalogus genaamd “%(catalog_name)s”." ], - "Condition": [""], - "Conditional formatting": [""], - "Confidence interval": [""], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "Confidence interval moet tussen 0 en 1 liggen (exclusief)" + "Unknown Presto Error": ["Onbekende Presto Fout"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "" ], - "Configuration": ["Configuratie"], - "Configure Advanced Time Range ": [ - "Geavanceerde tijdspanne configureren " + "%(object)s does not exist in this database.": [""], + "Home": ["Home"], + "Data": ["Gegevens"], + "Dashboards": ["Dashboards"], + "Charts": ["Grafieken"], + "Datasets": ["Datasets"], + "Plugins": ["Plugins"], + "Manage": ["Beheer"], + "CSS Templates": ["CSS-sjablonen"], + "SQL Lab": ["SQL-lab"], + "SQL": ["SQL"], + "Saved Queries": ["Opgeslagen Queries"], + "Query History": ["Query Geschiedenis"], + "Tags": [""], + "Action Log": ["Actie Log"], + "Security": ["Beveiliging"], + "Alerts & Reports": ["Waarschuwingen en rapporten"], + "Annotation Layers": ["Aantekeningen Lagen"], + "Row Level Security": [""], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "" ], - "Configure Time Range: Last...": ["Configureer Tijdspanne: Laatste…"], - "Configure Time Range: Previous...": ["Configureer Tijdspanne: Vorige…"], - "Configure custom time range": ["Configureer aangepaste tijdspanne"], - "Configure filter scopes": ["Filter scopes configureren"], - "Configure the basics of your Annotation Layer.": [ - "Configureer de basis van uw Aantekeningenlaag." + "Empty query?": ["Lege query?"], + "Unknown column used in orderby: %(col)s": [ + "Onbekende kolom gebruikt in orderby: %(col)s" ], - "Configure this dashboard to embed it into an external web application.": [ - "" + "Time column \"%(col)s\" does not exist in dataset": [ + "Tijdkolom “%(col)s” bestaat niet in dataset" ], - "Configure your how you overlay is displayed here.": [ - "Configureer hier hoe uw overlay wordt weergegeven." + "Filter value list cannot be empty": [ + "Filterwaardenlijst kan niet leeg zijn" ], - "Confirm save": ["Opslaan bevestigen"], - "Connect": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect a database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": [""], - "Connection failed, please check your connection settings": [ - "Verbinding mislukt, controleer uw verbindingsinstellingen" + "Must specify a value for filters with comparison operators": [ + "Een waarde voor filters met vergelijkingsoperatoren moet gespecificeerd" ], - "Connection looks good!": [""], - "Continue": [""], - "Continuous": [""], - "Contribution": ["Bijdrage"], - "Contribution Mode": [""], - "Control": [""], - "Control labeled ": ["Controle gelabeld "], - "Controls labeled ": [""], - "Coordinates": [""], - "Copied to clipboard!": ["Gekopieerd naar het klembord!"], - "Copy": [""], - "Copy SELECT statement to the clipboard": [ - "Kopieer SELECT-instructie naar het klembord" + "Invalid filter operation type: %(op)s": [ + "Ongeldig filterwerkingstype: %(op)s" ], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": ["Kopieer link"], - "Copy message": ["Kopieer bericht"], - "Copy of %s": ["Kopie van %s"], - "Copy partition query to clipboard": [ - "Kopieer partitie query naar klembord" + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Fout in jinja expressie in WHERE clause: %(msg)s" ], - "Copy query URL": ["Kopieer query URL"], - "Copy query link to your clipboard": [ - "Kopieer query link naar uw klembord" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Fout in jinja expressie in HAVING clausule: %(msg)s" ], - "Copy the account name of that database you are trying to connect to.": [ - "" + "Database does not support subqueries": [ + "Database ondersteunt geen subquery’s" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to Clipboard": ["Kopieer naar Klembord"], - "Copy to clipboard": ["Kopieer naar klembord"], - "Correlation": [""], - "Cost estimate": ["Kostenraming"], - "Could not determine datasource type": ["Kon type databron niet bepalen"], - "Could not fetch all saved charts": [ - "Kon niet alle opgeslagen grafieken ophalen" + "Deleted %(num)d saved query": [ + "%(num)d opgeslagen query verwijderd", + "%(num)d opgeslagen zoekopdrachten verwijderd" ], - "Could not find viz object": ["Kon het viz object niet vinden"], - "Could not load database driver": ["Kon het database driver niet laden"], - "Could not load database driver: %(driver_name)s": [ - "Kon database driver niet laden: %(driver_name)s" + "Deleted %(num)d report schedule": [ + "Verwijderde %(num)d rapport schema", + "Verwijderde %(num)d rapport schema’s" ], - "Could not load database driver: {}": [ - "Kon het database driver niet laden: {}" + "Value must be greater than 0": ["Waarde moet groter zijn dan 0"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [ + "\n Fout: %(text)s\n " ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count Unique Values": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country": [""], - "Country Color Scheme": [""], - "Country Column": [""], - "Country Field Type": [""], - "Country Map": ["Landenkaart"], - "Create": ["Maak"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "EMAIL_REPORTS_CTA": [""], + "%(name)s.csv": ["%(name)s.csv"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Create a new chart": ["Maak een nieuwe grafiek"], - "Create chart with dataset": [""], - "Create new chart": ["Maak een nieuwe grafiek"], - "Create new filter set": ["Maak een nieuwe filterset"], - "Create or select schema...": [""], - "Created": ["Aangemaakt"], - "Created On": ["Gecreëerd op"], - "Created by": ["Gecreëerd door"], - "Created content": ["Aangemaakte content"], - "Created on": ["Gemaakt op"], - "Creating a data source and creating a new tab": [ - "Een gegevensbron maken en een nieuw tabblad maken" + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s kunnen om veiligheidsredenen niet als gegevensbron worden gebruikt." ], - "Creator": ["Maker"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Guest user cannot modify chart payload": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Cumulative": [""], - "Currently rendered: %s": [""], - "Custom": [""], - "Custom Plugin": ["Custom Plugin"], - "Custom Plugins": ["Custom Plugins"], - "Custom SQL": ["Custom SQL"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": ["Pas aan"], - "Customize Metrics": [""], - "Customize columns": [""], - "Cyclic dependency detected": [""], - "D3 Format": ["D3 Formaat"], - "D3 format": ["D3 formaat"], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "The parameter %(parameters)s in your query is undefined.": [ + "", + "The following parameters in your query are undefined: %(parameters)s." + ], + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": ["DEC"], - "DELETE": ["VERWIJDER"], - "DML": ["DML"], - "Daily seasonality": [""], - "Dark": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["Dashboard"], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" + "Tag name is invalid (cannot contain ':')": [""], + "Record Count": ["Record Aantal"], + "No records found": ["Geen gegevens gevonden"], + "Filter List": ["Filter Lijst"], + "Search": ["Zoek"], + "Refresh": ["Vernieuwen"], + "Import dashboards": ["Importeer dashboards"], + "Import Dashboard(s)": ["Importeer Dashboard(s)"], + "File": ["Bestand"], + "Choose File": ["Kies Bestand"], + "Upload": ["Upload"], + "Use the edit button to change this field": [""], + "Test Connection": ["Test Connectie"], + "Unsupported clause type: %(clause)s": [""], + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [ + "Niet in staat om zo’n holiday te vinden: [%(holiday)s]" ], - "Dashboard could not be created.": [ - "Dashboard kon niet worden aangemaakt." + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "" ], - "Dashboard could not be deleted.": [ - "Dashboard kon niet worden verwijderd." + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "" ], - "Dashboard could not be updated.": [ - "Dashboard kon niet worden bijgewerkt." + "`rename_columns` must have the same length as `columns`.": [ + "`rename_columns` moet dezelfde lengte hebben als `columns`." ], - "Dashboard does not exist": ["Het dashboard bestaat niet"], - "Dashboard imported": [""], - "Dashboard parameters are invalid.": [ - "Dashboard parameters zijn ongeldig." + "Invalid cumulative operator: %(operator)s": [ + "Ongeldige cumulative operator: %(operator)s" ], - "Dashboard properties": ["Dashboard eigenschappen"], - "Dashboard properties updated": [""], - "Dashboard scheme": [""], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "" + "Invalid geohash string": ["Ongeldige geohash string"], + "Invalid longitude/latitude": ["Ongeldige longitude/latitude"], + "Invalid geodetic string": ["Ongeldige geodetic string"], + "Pivot operation requires at least one index": [ + "Pivot bewerking vereist ten minste één index" ], - "Dashboards": ["Dashboards"], - "Dashboards could not be deleted.": [ - "Dashboards konden niet worden verwijderd." + "Pivot operation must include at least one aggregate": [ + "De pivotbewerking moet ten minste één aggregaat omvatten" ], - "Dashboards do not exist": ["Dashboards bestaan niet"], - "Data": ["Gegevens"], - "Data Table": [""], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "" + "`prophet` package not installed": [ + "`prophet` package niet geïnstalleerd" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "" + "Time grain missing": ["Time grain ontbreekt"], + "Unsupported time grain: %(time_grain)s": [ + "Niet-ondersteunde time grain: %(time_grain)s" ], - "Data has no time steps": [""], - "Data preview": ["Data preview"], - "Data refreshed": [""], - "Data type": ["Data type"], - "DataFrame include at least one series": [ - "DataFrame bevat ten minste één reeks" + "Periods must be a whole number": [""], + "Confidence interval must be between 0 and 1 (exclusive)": [ + "Confidence interval moet tussen 0 en 1 liggen (exclusief)" ], "DataFrame must include temporal column": [ "DataFrame moet een temporele kolom bevatten" ], - "Database": ["Database"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "" - ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "" + "DataFrame include at least one series": [ + "DataFrame bevat ten minste één reeks" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "" + "Undefined window for rolling operation": [ + "Onbepaald venster voor rolling operation" ], - "Database Creation Error": [""], - "Database URL": ["Database URL"], - "Database connected": [""], - "Database could not be created.": [ - "Database kon niet worden aangemaakt." + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": ["Ongeldig rolling_type: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Ongeldige opties voor %(rolling_type)s: %(options)s" ], - "Database could not be deleted.": [ - "Database kon niet worden verwijderd." + "Referenced columns not available in DataFrame.": [ + "Kolommen waarnaar wordt verwezen zijn niet beschikbaar in DataFrame." ], - "Database could not be updated.": [ - "De database kon niet worden bijgewerkt." + "Column referenced by aggregate is undefined: %(column)s": [ + "Kolom waarnaar aggregaat verwijst is ongedefinieerd: %(column)s" ], - "Database does not allow data manipulation.": [""], - "Database does not exist": ["Database bestaat niet"], - "Database does not support subqueries": [ - "Database ondersteunt geen subquery’s" + "Operator undefined for aggregator: %(name)s": [ + "Operator ongedefinieerd voor aggregator: %(name)s" ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "" + "Invalid numpy function: %(operator)s": [ + "Ongeldige numpy functie: %(operator)s" ], - "Database error": ["Database fout"], - "Database is offline.": [""], - "Database is required for alerts": [ - "Database is nodig voor waarschuwingen" + "json isn't valid": ["json is ongeldig"], + "Export to YAML": ["Export naar YAML"], + "Export to YAML?": ["Export naar YAML?"], + "Delete": ["Verwijder"], + "Delete all Really?": ["Ben je zeker dat je alles wil verwijderen?"], + "Is favorite": ["Is favoriet"], + "Is tagged": [""], + "The data source seems to have been deleted": [ + "De gegevensbron lijkt te zijn verwijderd" ], - "Database name": ["Database naam"], - "Database not allowed to change": ["Database mag niet wijzigen"], - "Database not found.": ["Database niet gevonden."], - "Database parameters are invalid.": [ - "Database parameters zijn ongeldig." + "The user seems to have been deleted": [ + "De gebruiker lijkt te zijn verwijderd" ], - "Database port": ["Database poort"], - "Database settings updated": [""], - "Databases": ["Databases"], - "Dataframe Index": ["Dataframe Index"], - "Dataset": ["Dataset"], - "Dataset %(name)s already exists": ["Dataset %(name)s bestaat al"], - "Dataset column delete failed.": ["Dataset kolom verwijderen mislukt."], - "Dataset column not found.": ["Dataset kolom niet gevonden."], - "Dataset could not be created.": ["Dataset kon niet worden aangemaakt."], - "Dataset could not be deleted.": ["Dataset kon niet worden verwijderd."], - "Dataset could not be updated.": ["Dataset kon niet worden bijgewerkt."], - "Dataset does not exist": ["Dataset bestaat niet"], - "Dataset imported": [""], - "Dataset is required": ["Dataset is vereist"], - "Dataset metric delete failed.": [ - "Dataset meetgegevens verwijderen mislukt." + "Error: %(msg)s": [""], + "Explore - %(table)s": ["Verken - %(table)s"], + "Explore": ["Verken"], + "Chart [{}] has been saved": ["Grafiek [{}] is opgeslagen"], + "Chart [{}] has been overwritten": ["Grafiek [{}] is overschreven"], + "Chart [{}] was added to dashboard [{}]": [ + "Grafiek [{}] werd toegevoegd aan dashboard [{}]" ], - "Dataset metric not found.": ["Dataset meeteenheid niet gevonden."], - "Dataset name": ["Dataset naam"], - "Dataset parameters are invalid.": ["Dataset parameters zijn ongeldig."], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [ - "Dataset(s) konden niet in bulk worden verwijderd." + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" ], - "Datasets": ["Datasets"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Malformed request. slice_id or table_name and db_name arguments are expected": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": ["Gegevensbron"], - "Datasource & Chart Type": [""], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [ - "Datasourcetype is vereist wanneer datasource_id is gegeven" + "Chart %(id)s not found": ["Grafiek %(id)s niet gevonden"], + "Table %(table)s wasn't found in the database %(db)s": [ + "Tabwl %(table)s werd niet gevonden in de database %(db)s" ], - "Date Time Format": [""], - "Date filter": ["Datum filter"], - "Date format": [""], - "Date/Time": ["Datum/Tijd"], - "Datetime Format": ["Datumtijd Formaat"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Show CSS Template": ["Toon CSS Template"], + "Add CSS Template": ["Voeg CSS Template toe"], + "Edit CSS Template": ["Bewerk CSS Template"], + "Template Name": ["Template Naam"], + "A human-friendly name": ["Een mensvriendelijke naam"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Datetime format": ["Datetime formaat"], - "Day": ["Dag"], - "Day (freq=D)": [""], - "Days %s": [""], - "Db engine did not return all queried columns": [ - "Db engine retourneerde niet alle opgevraagde kolommen" + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "" ], - "December": ["December"], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": ["Decimaal teken"], - "Deck.gl - 3D Grid": ["Deck.gl - 3D Grid"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], - "Deck.gl - Arc": ["Deck.gl - Arc"], - "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], - "Deck.gl - Multiple Layers": ["Deck.gl - Meerdere Lagen"], - "Deck.gl - Paths": ["Deck.gl - Paths"], - "Deck.gl - Polygon": ["Deck.gl - Polygon"], - "Deck.gl - Scatter plot": ["Deck.gl - Scatter plot"], - "Deck.gl - Screen Grid": ["Deck.gl - Screen Grid"], - "Default": ["Standaard"], - "Default Endpoint": ["Standaard eindpunt"], - "Default URL": ["Standaard URL"], - "Default URL to redirect to when accessing from the dataset list page": [ - "Standaard URL om naar door te verwijzen bij toegang vanaf de dataset lijst pagina" + "Custom Plugins": ["Custom Plugins"], + "Custom Plugin": ["Custom Plugin"], + "Add a Plugin": ["Voeg een Plugin toe"], + "Edit Plugin": ["Bewerk Plugin"], + "The dataset associated with this chart no longer exists": [ + "De dataset die bij deze grafiek hoort bestaat niet meer" ], - "Default Value": ["Default Value"], - "Default datetime": [""], - "Default latitude": [""], - "Default longitude": [""], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Could not determine datasource type": ["Kon type databron niet bepalen"], + "Could not find viz object": ["Kon het viz object niet vinden"], + "Show Chart": ["Toon grafiek"], + "Add Chart": ["Voeg grafiek toe"], + "Edit Chart": ["Bewerk grafiek"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Default value is required": [""], - "Default value must be set when \"Filter has default value\" is checked": [ - "" + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat dit standaard de datasource/tabel timeout is indien ongedefinieerd." ], - "Default value must be set when \"Filter value is required\" is checked": [ + "Creator": ["Maker"], + "Datasource": ["Gegevensbron"], + "Last Modified": ["Laatst gewijzigd"], + "Parameters": ["Parameters"], + "Chart": ["Grafiek"], + "Name": ["Naam"], + "Visualization Type": ["Type visualisatie"], + "Show Dashboard": ["Toon Dashboard"], + "Add Dashboard": ["Voeg Dashboard toe"], + "Edit Dashboard": ["Bewerk Dashboard"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "" + "To get a readable URL for your dashboard": [ + "Om een leesbare URL voor uw dashboard te krijgen" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "" + "Owners is a list of users who can alter the dashboard.": [ + "Eigenaars is een lijst van gebruikers die het dashboard kunnen wijzigen." ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Bepaalt of dit dashboard al dan niet zichtbaar is in de lijst van alle dashboards" + ], + "Dashboard": ["Dashboard"], + "Title": ["Titel"], + "Slug": ["Slug"], + "Roles": ["Rollen"], + "Published": ["Gepubliceerd"], + "Position JSON": ["Positie JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["JSON Metadata"], + "Export": ["Export"], + "Export dashboards?": ["Export dashboards?"], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Alleen de volgende bestandsextensies zijn toegestaan: %(allowed_extensions)s" + ], + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Bepaalt de grootte van de rolvenster functie, ten opzichte van de geselecteerde tijdgranulariteit" + "Delimiter": ["Scheidingsteken"], + ",": [""], + ".": [""], + "Other": [""], + "Fail": ["Fout"], + "Replace": ["Vervang"], + "Append": ["Voeg toe"], + "Skip Initial Space": ["Eerste spatie overslaan"], + "Skip Blank Lines": ["Blanco regels overslaan"], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["Decimaal teken"], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Index Column": ["Index Kolom"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Delete": ["Verwijder"], - "Delete %s?": ["%s verwijderen?"], - "Delete Annotation?": ["Aantekening verwijderen?"], - "Delete Database?": ["Database verwijderen?"], - "Delete Dataset?": ["Dataset verwijderen?"], - "Delete Layer?": ["Laag verwijderen?"], - "Delete Query?": ["Verwijder Query?"], - "Delete Report?": [""], - "Delete Template?": ["Template verwijderen?"], - "Delete all Really?": ["Ben je zeker dat je alles wil verwijderen?"], - "Delete annotation": ["Aantekening verwijderen"], - "Delete dashboard tab?": ["Dashboard tabblad verwijderen?"], - "Delete database": ["Verwijder database"], - "Delete email report": [""], - "Delete query": ["Verwijder query"], - "Delete template": ["Verwijder template"], - "Delete this container and save to remove this message.": [ - "Verwijder deze container en sla op om dit bericht te verwijderen." + "Dataframe Index": ["Dataframe Index"], + "Column Label(s)": ["Kolom Label(s)"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "" ], - "Deleted %(num)d annotation": [ - "%(num)d aantekening verwijderd", - "%(num)d aantekeningen verwijderd" + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "" ], - "Deleted %(num)d annotation layer": [ - "%(num)d Aantekeningenlaag verwijderd", - "%(num)d aantekeninglagen verwijderd" + "Header Row": ["Koptekst rij"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "" ], - "Deleted %(num)d chart": [ - "Verwijderde %(num)d grafiek", - "Verwijderde %(num)d grafieken" + "Rows to Read": ["Te lezen rijen"], + "Skip Rows": ["Rijen overslaan"], + "Name of table to be created from excel data.": [ + "Naam van de tabel die moet worden aangemaakt op basis van excel-gegevens." ], - "Deleted %(num)d css template": [ - "Verwijderde %(num)d css sjabloon", - "Verwijderde %(num)d css sjablonen" + "Excel File": ["Excel bestand"], + "Select a Excel file to be uploaded to a database.": [ + "Selecteer een Excel-bestand dat moet worden geüpload naar een database." ], - "Deleted %(num)d dashboard": [ - "Verwijderde %(num)d dashboard", - "Verwijderde %(num)d dashboards" + "Sheet Name": ["Naam tabblad"], + "Strings used for sheet names (default is the first sheet).": [ + "Strings gebruikt voor bladnamen (standaard is het eerste blad)." ], - "Deleted %(num)d dataset": [ - "Verwijderde %(num)d dataset", - "Verwijderde %(num)d datasets" + "Specify a schema (if database flavor supports this).": [ + "Geef een schema op (als de databasesmaak dit ondersteunt)." ], - "Deleted %(num)d report schedule": [ - "Verwijderde %(num)d rapport schema", - "Verwijderde %(num)d rapport schema’s" + "Table Exists": ["De tabel bestaat reeds"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "" ], - "Deleted %(num)d saved query": [ - "%(num)d opgeslagen query verwijderd", - "%(num)d opgeslagen zoekopdrachten verwijderd" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "" ], - "Deleted: %s": ["Verwijderd: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Delimited long & lat single column": [ - "Afgebakende lengtegraad en breedtegraad in enkele kolom" + "Number of rows to skip at start of file.": [ + "Aantal rijen om over te slaan aan het begin van het bestand." ], - "Delimiter": ["Scheidingsteken"], - "Delivery method": [""], - "Demographics": [""], - "Density": [""], - "Dependent on": [""], - "Deprecated": [""], - "Description": ["Omschrijving"], - "Description (this can be seen in the list)": [ - "Omschrijving (dit is te zien in de lijst)" + "Number of rows of file to read.": [ + "Aantal rijen van het te lezen bestand." ], - "Description Columns": [""], - "Description text that shows up below your Big Number": [""], - "Deselect all": ["Alles deselecteren"], - "Details of the certification": ["Details van de certificering"], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Bepaalt of dit dashboard al dan niet zichtbaar is in de lijst van alle dashboards" + "Parse Dates": ["Bereken Data"], + "A comma separated list of columns that should be parsed as dates.": [ + "Een door komma’s gescheiden lijst van kolommen die als datums moeten worden geparseerd." ], - "Diamond": [""], - "Did you mean:": ["Bedoelde je:"], - "Difference": [""], - "Dim Gray": [""], - "Dimension": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Directed Force Layout": ["Directed Force Layout"], - "Directional": [""], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "" + "Character to interpret as decimal point.": [ + "Teken te interpreteren als decimaalteken." ], - "Disable embedding?": [""], - "Disabled": [""], - "Discrete": [""], - "Display Name": ["Toon naam"], - "Display column level total": [""], - "Display configuration": ["Weergave configuratie"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Write dataframe index as a column.": [ + "Schrijf dataframe index als een kolom." + ], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Display row level total": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Null values": ["Nul waarden"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "" ], - "Distribute across": [""], - "Distribution": [""], - "Distribution - Bar Chart": ["Verdeling - Staafdiagram"], - "Divider": ["Verdeler"], - "Do you want a donut or a pie?": [""], - "Documentation": [""], - "Domain": [""], - "Donut": [""], - "Download as image": ["Download als afbeelding"], - "Download to CSV": ["Download naar CSV"], - "Draft": ["Draft"], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill by: %s": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "Name of table to be created from columnar data.": [""], + "Columnar File": [""], + "Select a Columnar file to be uploaded to a database.": [""], + "Use Columns": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Databases": ["Databases"], + "Show Database": ["Toon Database"], + "Add Database": ["Voeg Database toe"], + "Edit Database": ["Bewerk Database"], + "Expose this DB in SQL Lab": ["Expose deze DB in SQL Lab"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Drill to detail: %s": [""], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Dual Line Chart": [""], - "Duplicate column name(s): %(columns)s": [ - "Dubbele kolomnaam (of -namen): %(columns)s" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Sta de CREATE TABLE AS optie toe in SQL Lab" ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Allow CREATE VIEW AS option in SQL Lab": [ + "Sta de CREATE VIEW AS optie toe in SQL Lab" + ], + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ "" ], - "Duplicate tab": ["Tabblad Dupliceren"], - "Duration": ["Duur"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Wanneer de CREATE TABLE AS optie in SQL Lab wordt toegestaan, dwingt deze optie de tabel om in dit schema aangemaakt te worden" + ], + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat dit standaard de datasource/tabel timeout is indien ongedefinieerd." + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Indien geselecteerd, gelieve de toegestane schema’s voor csv upload in Extra in te stellen." ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Expose in SQL Lab": ["Expose in SQL Lab"], + "Allow CREATE TABLE AS": ["Sta CREATE TABLE AS toe"], + "Allow CREATE VIEW AS": ["Sta CREATE VIEW AS toe"], + "Allow DML": ["DML toestaan"], + "CTAS Schema": ["CTAS Schema"], + "SQLAlchemy URI": ["SQLAlchemy URI"], + "Chart Cache Timeout": ["Cache time-out"], + "Secure Extra": ["Secure Extra"], + "Root certificate": ["Root certificaat"], + "Async Execution": ["Async uitvoering"], + "Impersonate the logged on user": ["De aangemelde gebruiker imiteren"], + "Allow Csv Upload": ["Csv upload toestaan"], + "Backend": ["Backend"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Extra veld kan niet gedecodeerd worden door JSON. %(msg)s" + ], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ "" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "CSV to Database configuration": ["CSV naar Database configuratie"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": ["Duur: %s"], - "Dynamic Aggregation Function": [""], - "Dynamically search all filter values": [""], - "ECharts": [""], - "EMAIL_REPORTS_CTA": [""], - "END (EXCLUSIVE)": ["EINDE (EXCLUSIEF)"], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edge width": [""], - "Edit": ["Bewerk"], - "Edit Alert": [""], - "Edit CSS": ["Bewerk CSS"], - "Edit CSS Template": ["Bewerk CSS Template"], - "Edit CSS template properties": ["Bewerk CSS template eigenschappen"], - "Edit Chart": ["Bewerk grafiek"], - "Edit Column": ["Kolom toevoegen"], - "Edit Dashboard": ["Bewerk Dashboard"], - "Edit Database": ["Bewerk Database"], - "Edit Dataset ": ["Bewerk Dataset "], - "Edit Log": ["Bewerk Log"], - "Edit Metric": ["Bewerk meeteenheid"], - "Edit Plugin": ["Bewerk Plugin"], - "Edit Report": [""], - "Edit Saved Query": ["Bewerk Opgeslagen Query"], - "Edit Table": ["Bewerk tabel"], - "Edit annotation": ["Bewerk aantekening"], - "Edit annotation layer": ["Bewerk de aantekeningenlaag"], - "Edit annotation layer properties": [ - "Eigenschappen aantekeningenlaag bewerken" - ], - "Edit chart properties": ["Grafiek eigenschappen bewerken"], - "Edit dashboard": ["Bewerk dashboard"], - "Edit database": ["Bewerk database"], - "Edit dataset": ["Bewerk de dataset"], - "Edit email report": [""], - "Edit formatter": [""], - "Edit properties": ["Eigenschappen bewerken"], - "Edit query": ["Bewerk query"], - "Edit template": ["Bewerk template"], - "Edit template parameters": ["Bewerk template parameters"], - "Edit time range": ["Bewerk tijdspanne"], - "Edited": ["Bewerkt"], - "Editing 1 filter:": ["Bewerk 1 filter:"], - "Editing filter set:": ["Filterset bewerken:"], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "Either the username “%(username)s” or the password is incorrect." + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "CSV-bestand “%(csv_filename)s” geüpload naar tabel “%(table_name)s” in database “%(db_name)s”" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "Ofwel is de gebruikersnaam “%(username)s”, ofwel het wachtwoord, ofwel de databasenaam “%(database)s” niet correct." + "Excel to Database configuration": ["Excel naar Database configuratie"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "" ], - "Either the username or the password is wrong.": [ - "Ofwel is de gebruikersnaam ofwel het wachtwoord verkeerd." + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Elevation": [""], - "Email reports active": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emit Filter Events": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty collection": ["Lege verzameling"], - "Empty query result": [""], - "Empty query?": ["Lege query?"], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Enable Filter Select": ["Inschakelen Filter Keuze"], - "Enable data zooming controls": [""], - "Enable embedding": [""], - "Enable forecast": [""], - "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Columnar to Database configuration": [""], + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "End": ["Einde"], - "End Longitude & Latitude": [""], - "End Time": ["Eindtijd"], - "End angle": [""], - "End date excluded from time range": [ - "Einddatum uitgesloten uit de tijdspanne" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "" ], - "End date must be after start date": [ - "Einddatum moet na begindatum liggen" + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine Parameters": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter Primary Credentials": [""], - "Enter a name for this sheet": [""], - "Enter a new title for the tab": [ - "Voer een nieuwe titel in voor het tabblad" + "Request missing data field.": ["Verzoek om ontbrekend data veld."], + "Duplicate column name(s): %(columns)s": [ + "Dubbele kolomnaam (of -namen): %(columns)s" ], - "Enter duration in seconds": [""], - "Enter fullscreen": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": ["Entiteit"], - "Entity ID": [""], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Fout in jinja expressie in HAVING clausule: %(msg)s" + "Logs": ["Logs"], + "Show Log": ["Toon Log"], + "Add Log": ["Voeg Log toe"], + "Edit Log": ["Bewerk Log"], + "User": ["Gebruiker"], + "Action": ["Actie"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Time Range": [""], + "Time Column": [""], + "Time Grain": [""], + "Time Granularity": [""], + "Time": ["Tijd"], + "A reference to the [Time] configuration, taking granularity into account": [ + "" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Fout in jinja expressie in RLS filters: %(msg)s" + "Aggregate": [""], + "Raw records": [""], + "Certified by %s": ["Gecertificeerd door %s"], + "description": ["omschrijving"], + "bolt": ["bolt"], + "Changing this control takes effect instantly": [ + "Het veranderen van deze controleknop heeft onmiddellijk effect" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Fout in jinja expressie in WHERE clause: %(msg)s" + "Show info tooltip": [""], + "SQL expression": ["SQL expressie"], + "Label": ["Label"], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": ["Geavanceerde analytics"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Dit onderdeel bevat opties die geavanceerde analytische nabewerking van queryresultaten mogelijk maken" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Fout in jinja expressie in fetch values predicate: %(msg)s" + "Rolling window": ["Rollend venster"], + "Rolling function": ["Rolfunctie"], + "None": ["Geen"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "" ], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": ["Foutmelding"], - "Error while fetching charts": [""], - "Error while fetching data: %s": [""], - "Error while rendering virtual dataset query: %(msg)s": [ - "Fout bij het renderen van de query van de virtuele dataset: %(msg)s" + "Periods": ["Periodes"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Bepaalt de grootte van de rolvenster functie, ten opzichte van de geselecteerde tijdgranulariteit" ], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Estimate cost": ["Kostenraming"], - "Estimate selected query cost": [ - "Kostenraming van de geselecteerde zoekopdracht" + "Min periods": ["Min periodes"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "" ], - "Estimate the cost before running a query": [ - "Kostenraming voordat een query wordt uitgevoerd" + "Time comparison": ["Tijdsvergelijking"], + "Time shift": ["Time shift"], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "" ], - "Event Flow": [""], - "Event Names": [""], - "Event definition": [""], - "Event flow": ["Event flow"], - "Event time column": [""], - "Every": ["Elke"], - "Evolution": [""], - "Exact": [""], - "Example": ["Voorbeeld"], - "Examples": ["Voorbeelden"], - "Excel File": ["Excel bestand"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Calculation type": ["Soort berekening"], + "Difference": [""], + "Percentage change": [""], + "Ratio": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ "" ], - "Excel to Database configuration": ["Excel naar Database configuratie"], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed SQL": [""], - "Executed query": ["Uitgevoerde query"], - "Execution ID": ["Uitvoerings ID"], - "Execution log": ["Uitvoeringslog"], - "Exit fullscreen": [""], - "Expand all": ["Alles uitklappen"], - "Expand data panel": [""], - "Expand table preview": [""], - "Expand tool bar": ["Werkbalk uitbreiden"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Resample": [""], + "Rule": ["Regel"], + "1 minutely frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "Pandas resample rule": ["Pandas resample regel"], + "Fill method": [""], + "Null imputation": [""], + "Linear interpolation": [""], + "Forward values": [""], + "Backward values": [""], + "Pandas resample method": ["Pandas resample methode"], + "Annotations and Layers": [""], + "Left": [""], + "Top": [""], + "Chart Title": [""], + "X Axis": ["X As"], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": ["Y As"], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Y Axis Title Position": [""], + "Query": ["Query"], + "Predictive Analytics": [""], + "Enable forecast": [""], + "Enable forecasting": [""], + "Forecast periods": [""], + "How many periods into the future do we want to predict": [""], + "Confidence interval": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "Yes": ["Ja"], + "No": ["Nee"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Experimental": [""], - "Explore": ["Verken"], - "Explore - %(table)s": ["Verken - %(table)s"], - "Explore the result set in the data exploration view": [ - "Verken de resultaten in de gegevensverkenningsweergave" + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Export": ["Export"], - "Export dashboards?": ["Export dashboards?"], - "Export query": ["Exporteer query"], - "Export to YAML": ["Export naar YAML"], - "Export to YAML?": ["Export naar YAML?"], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": ["Expose in SQL Lab"], - "Expose this DB in SQL Lab": ["Expose deze DB in SQL Lab"], - "Expression": ["Expressie"], - "Extra": ["Extra"], - "Extra Controls": [""], - "Extra Parameters": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Extra veld kan niet gedecodeerd worden door JSON. %(msg)s" - ], - "Extra parameters for use in jinja templated queries": [ - "Extra parameters voor gebruik in jinja templated queries" + "Time related form attributes": ["Tijdgerelateerde vormattributen"], + "Datasource & Chart Type": [""], + "Chart ID": ["Grafiek ID"], + "The id of the active chart": ["Het id van de actieve grafiek"], + "Cache Timeout (seconds)": ["Cache Timeout (seconden)"], + "The number of seconds before expiring the cache": [ + "Het aantal seconden voor het verstrijken van de cache" ], + "URL Parameters": [""], + "Extra url parameters for use in Jinja templated queries": [""], + "Extra Parameters": [""], "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "Extruded": [""], - "FEB": ["FEB"], - "FRI": ["VR"], - "Factor": [""], - "Factor to multiply the metric by": [""], - "Fail": ["Fout"], - "Failed": ["Mislukt"], - "Failed at retrieving results": ["Fout bij het ophalen van resultaten"], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [ - "Mislukt bij het verifiëren van geselecteerde opties: %s" - ], - "Favorite": ["Favoriet"], - "Favorites": ["Favorieten"], - "February": ["Februari"], - "Fetch Values Predicate": ["Waarden ophalen Predicaat"], - "Fetch data preview": ["Gegevens ophalen preview"], - "Fetched %s": ["Opgehaald %s"], - "Fetching": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [ - "Veld kan niet gedecodeerd worden door JSON. %(msg)s" - ], - "Field is required": ["Veld is verplicht"], - "File": ["Bestand"], - "Fill Color": [""], - "Fill all required fields to enable \"Default Value\"": [""], - "Fill method": [""], - "Filled": [""], - "Filter": [""], - "Filter Configuration": [""], - "Filter List": ["Filter Lijst"], - "Filter Settings": [""], - "Filter Type": ["Filter Type"], - "Filter configuration": ["Filter configuratie"], - "Filter configuration for the filter box": [ - "Filterconfiguratie voor de filterbox" - ], - "Filter has default value": [""], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Filter metadata veranderd in dashboard. Het zal niet worden toegepast." - ], - "Filter name": ["Filter naam"], - "Filter only displays values relevant to selections made in other filters.": [ + "Color Scheme": [""], + "Contribution Mode": [""], + "Row": ["Rij"], + "Series": ["Series"], + "Calculate contribution per series or row": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Force categorical": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Filter results": ["Filter resultaten"], - "Filter set already exists": ["Er bestaat al een filterset"], - "Filter set with this name already exists": [ - "Er bestaat al een filterset met deze naam" + "Add dataset columns here to group the pivot table columns.": [""], + "Dimension": [""], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ + "" ], - "Filter sets (%(filterSetCount)d)": [""], - "Filter type": [""], - "Filter value (case sensitive)": ["Filterwaarde (hoofdlettergevoelig)"], - "Filter value is required": [""], - "Filter value list cannot be empty": [ - "Filterwaardenlijst kan niet leeg zijn" + "Entity": ["Entiteit"], + "This defines the element to be plotted on the chart": [ + "Dit definieert het element dat op de grafiek moet worden uitgezet" ], - "Filter your charts": ["Filter je grafieken"], - "Filterable": ["Filterbaar"], "Filters": ["Filters"], - "Filters (%d)": ["Filters (%d)"], - "Filters by columns": ["Filter op kolommen"], - "Filters by metrics": ["Filter op meeteenheden"], - "Filters configuration": ["Filters configuratie"], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Fix to selected Time Range": [""], - "Fixed": ["Vast"], - "Fixed Color": [""], - "Fixed color": ["Vaste kleur"], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Right Axis Metric": [""], + "Sort by": ["Sorteer op"], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Bubble Size": [""], + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "The dataset column/metric that returns the values on your chart's y-axis.": [ "" ], - "Force": [""], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Color Metric": [""], + "A metric to use for color": ["Een meeteenheid te gebruiken voor kleur"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ "" ], - "Force date format": [""], - "Force refresh": ["Vernieuwen forceren"], - "Force refresh schema list": ["Forceer vernieuwen schema lijst"], - "Force refresh table list": ["Forceer vernieuwen tabel lijst"], - "Forecast periods": [""], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formattable": [""], - "Formatted CSV attached in email": [""], - "Formatted date": [""], - "Forward values": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Frequency": [""], - "Friction": [""], - "Friction between nodes": [""], - "Friday": ["Vrijdag"], - "From date cannot be larger than to date": [ - "Van datum kan niet groter zijn dan tot datum" - ], - "Funnel Chart": [""], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "GROUP BY": [""], - "Gauge Chart": [""], - "General": [""], - "Generating link, please wait..": [""], - "Generic Chart": [""], - "Geo": [""], - "GeoJson Column": [""], - "GeoJson Settings": [""], - "Geohash": ["Geohash"], - "Get the last date by the date unit.": [ - "Verkrijg de laatste datum door de datum eenheid." + "Drop a temporal column here or click": [""], + "Y-axis": [""], + "Dimension to use on y-axis.": [""], + "X-axis": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [ + "Het type visualisatie dat moet worden weergegeven" ], - "Get the specify date for the holiday": [ - "Zoek de specifieke datum voor de vakantie" + "Fixed Color": [""], + "Use this to define a static color for all circles": [ + "Gebruik dit om een statische kleur te definiëren voor alle cirkels" ], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": ["Grace periode"], - "Graph Chart": [""], - "Graph layout": [""], - "Gravity": [""], - "Grid": [""], - "Grid Size": [""], - "Group By": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group by": ["Groep per"], - "Groupable": ["Groepeerbaar"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Linear Color Scheme": [""], + "30 seconds": ["30 seconden"], + "1 minute": ["1 minuut"], + "5 minutes": ["5 minuten"], + "30 minutes": ["30 minuten"], + "1 hour": ["1 uur"], + "week": ["week"], + "month": ["maand"], + "year": ["jaar"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "" ], - "Header": ["Header"], - "Header Row": ["Koptekst rij"], - "Heatmap": ["Heatmap"], - "Heatmap Options": [""], - "Height": ["Hoogte"], - "Height of the sparkline": [""], - "Hide layer": ["Laag verbergen"], - "Hide tool bar": ["Verberg werkbalk"], - "Hides the Line for the time series": [""], - "Hierarchy": [""], - "Histogram": ["Histogram"], - "Home": ["Home"], - "Horizon Chart": [""], - "Horizon Charts": ["Horizon-grafieken"], - "Horizontal": [""], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": ["Hostnaam of IP-adres"], - "Hour": ["Uur"], - "Hours %s": [""], - "Hours offset": ["Uur offset"], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": ["ISO 8601"], - "Id": [""], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Row limit": ["Rij limiet"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "If a metric is specified, sorting will be done based on the metric value": [ + "Sort Descending": [""], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Series limit": ["Serie limiet"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Indien geselecteerd, gelieve de toegestane schema’s voor csv upload in Extra in te stellen." - ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "" + "Y Axis Format": ["Y-as Formaat"], + "Currency format": [""], + "Time format": [""], + "The color scheme for rendering chart": [ + "Het kleurenschema voor de rendering grafiek" ], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Whether to truncate metrics": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": [""], + "Original value": ["Originele waarde"], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Impersonate the logged on user": ["De aangemelde gebruiker imiteren"], - "Import": ["Importeer"], - "Import %s": ["Importeer %s"], - "Import Dashboard(s)": ["Importeer Dashboard(s)"], - "Import Dashboards": ["Dashboards importeren"], - "Import a table definition": ["Importeer een tabeldefinitie"], - "Import chart failed for an unknown reason": [ - "Import grafiek mislukt om een onbekende reden" - ], - "Import charts": ["Import grafieken "], - "Import dashboard failed for an unknown reason": [ - "Dashboard importeren mislukt om een onbekende reden" - ], - "Import dashboards": ["Importeer dashboards"], - "Import database failed for an unknown reason": [ - "Import database mislukt om een onbekende reden" - ], - "Import dataset failed for an unknown reason": [ - "Import dataset mislukt om een onbekende reden" - ], - "Import datasets": ["Importeer datasets"], - "Import queries": ["Importeer queries"], - "Import saved query failed for an unknown reason.": [ - "Import opgeslagen query mislukt om een onbekende reden." + "No Results": [""], + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": ["uur"], + "day": ["dag"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "" ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Chart Options": [""], + "Cell Size": [""], + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "Color Steps": [""], + "The number color \"steps\"": [""], + "Time Format": [""], + "Legend": [""], + "Whether to display the legend (toggles)": [""], + "Show Values": [""], + "Whether to display the numerical values within the cells": [""], + "Show Metric Names": [""], + "Whether to display the metric name as a title": [""], + "Number Format": [""], + "Correlation": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Include time": [""], - "Index Column": ["Index Kolom"], - "Info": ["Info"], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": ["Onmiddellijke filtering"], + "Business": [""], + "Comparison": [""], "Intensity": [""], - "Intensity Radius": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Pattern": [""], + "Report": [""], + "Trend": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Sort by metric": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "Interval End column": [""], - "Interval bounds": [""], - "Interval colors": [""], - "Interval start column": [""], - "Intervals": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Number format": [""], + "Choose a number format": [""], + "Source": ["Bron"], + "Choose a source": [""], + "Target": [""], + "Choose a target": [""], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "Invalid JSON": ["Ongeldige JSON"], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": ["Ongeldig certificaat"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "Ongeldige verbindings string, een geldige string volgt meestal:\n‘DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME’" - ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Relational": [""], + "Country": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Metric to display bottom title": [""], + "Map": [""], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "Invalid cron expression": ["Ongeldige cron expressie"], - "Invalid cumulative operator: %(operator)s": [ - "Ongeldige cumulative operator: %(operator)s" - ], - "Invalid date/timestamp format": ["Ongeldig datum/tijdstempel formaat"], - "Invalid filter configuration, please select a column": [ - "Ongeldige filterconfiguratie, selecteer een kolom" + "2D": [""], + "Geo": [""], + "Range": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Event Names": [""], + "Columns to display": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "" ], - "Invalid filter operation type: %(op)s": [ - "Ongeldig filterwerkingstype: %(op)s" + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "" ], - "Invalid geodetic string": ["Ongeldige geodetic string"], - "Invalid geohash string": ["Ongeldige geohash string"], - "Invalid input": [""], - "Invalid lat/long configuration.": [ - "Ongeldige breedtegraad/lengtegraad configuratie." + "Additional metadata": [""], + "Metadata": [""], + "Select any columns for metadata inspection": [""], + "Entity ID": [""], + "e.g., a \"user id\" column": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ + "" ], - "Invalid longitude/latitude": ["Ongeldige longitude/latitude"], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [ - "Ongeldige numpy functie: %(operator)s" + "Compares the lengths of time different activities take in a shared timeline view.": [ + "" ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Ongeldige opties voor %(rolling_type)s: %(options)s" + "Event Flow": [""], + "Progressive": [""], + "Axis ascending": [""], + "Axis descending": [""], + "Metric ascending": [""], + "Metric descending": [""], + "Heatmap Options": [""], + "XScale Interval": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "YScale Interval": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "Rendering": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "" ], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": ["Ongeldig rolling_type: %(type)s"], - "Invalid spatial point encountered: %s": [ - "Ongeldig ruimtelijk punt aangetroffen: %s" + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "" ], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Invert current page": [""], - "Is certified": [""], - "Is dimension": ["Is dimensie"], - "Is false": [""], - "Is favorite": ["Is favoriet"], - "Is filterable": ["Kan gefilterd worden"], - "Is tagged": [""], - "Is temporal": ["Is tijdelijk"], - "Is true": [""], - "Issue 1000 - The dataset is too large to query.": [""], - "Issue 1001 - The database is under an unusual load.": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": ["JAN"], - "JSON": ["JSON"], - "JSON Metadata": ["JSON Metadata"], - "JSON metadata": ["JSON metadata"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], + "Left Margin": [""], + "Left margin, in pixels, allowing for more room for axis labels": [""], + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "JUL": ["JUL"], - "JUN": ["JUN"], - "January": ["Januari"], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Whether to include the percentage in the tooltip": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Value Format": [""], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "Density": [""], + "Predictive": [""], + "Single Metric": [""], + "count": [""], + "cumulative": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "No of Bins": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Cumulative": [""], + "Whether to make the histogram cumulative": [""], + "Distribution": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "July": ["Juli"], - "June": ["Juni"], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": ["Blijf bewerken"], - "Keys for table": ["Sleutels voor tabel"], - "Label": ["Label"], - "Label Line": [""], - "Label Type": [""], - "Label for your query": ["Label voor uw zoekopdracht"], - "Label position": [""], - "Label threshold": [""], - "Labelling": [""], - "Labels": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Large": [""], - "Last": [""], - "Last Changed": ["Laatste wijziging"], - "Last Modified": ["Laatst gewijzigd"], - "Last Updated %s": ["Laatst bijgewerkt %s"], - "Last available value seen on %s": [""], - "Last modified": ["Laatst gewijzigd"], - "Last modified by %s": ["Laatst gewijzigd door %s"], - "Last run": ["Laatste run"], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": ["Laagconfiguratie"], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Population age data": [""], + "Contribution": ["Bijdrage"], + "Compute the contribution to the total": [ + "Bereken de bijdrage aan het totaal" + ], + "Series Height": [""], + "Pixel height of each series": [""], + "Value Domain": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" ], - "Least recently modified": ["Meest recente wijziging"], - "Left": [""], - "Left Axis Format": [""], - "Left Axis chart(s)": [""], - "Left Margin": [""], - "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Left value": [""], - "Legacy": [""], - "Legend": [""], - "Legend Format": [""], - "Legend Position": [""], - "Legend type": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light mode": [""], - "Like": [""], - "Limit reached": ["Limiet bereikt"], - "Limit selector values": ["Beperk selector waarden"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Horizon Chart": [""], + "Dark Cyan": [""], + "Gold": [""], + "Dim Gray": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Line": [""], - "Line Chart": [""], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Points": [""], + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": ["Lijndikte"], - "Linear Color Scheme": [""], - "Linear color scheme": ["Lineair kleurenpalet"], - "Linear interpolation": [""], - "Lines column": [""], - "Lines encoding": [""], - "Link Copied!": ["Link gekopieerd!"], - "List Saved Query": ["Lijst Opgeslagen Query"], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "Live CSS editor": ["Live CSS editor"], - "Live render": [""], - "Load a CSS template": ["Laad een CSS sjabloon"], - "Loaded data cached": ["Geladen gegevens in de cache"], - "Loaded from cache": ["Geladen uit de cache"], - "Loading...": ["Bezig met laden…"], - "Log Scale": [""], - "Log retention": ["Log retentie"], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["Aanmelden"], - "Logout": ["Afmelden"], - "Logs": ["Logs"], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": ["Kolommen lengtegraad en breedtegraad"], - "Longitude of default viewport": [""], - "MAR": ["MAA"], - "MAY": ["MEI"], - "MON": ["MA"], - "Main Datetime Column": ["Kolom Hoofd Datumtijd"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "label": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Manage": ["Beheer"], - "Mandatory": ["Verplicht"], - "Manually set min/max values for the y-axis.": [""], - "Map": [""], + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], "Map Style": [""], - "MapBox": [""], - "Mapbox": ["Mapbox"], - "March": ["Maart"], - "Margin": [""], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markers": [""], - "Markup type": ["Opmaaktype(Markup type)"], - "Max": ["Max"], - "Max Bubble Size": [""], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Streets": [""], + "Dark": [""], + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Opaciteit"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "RGB Color": [""], + "The color for points and clusters in RGB": [""], + "Viewport": [""], + "Default longitude": [""], + "Longitude of default viewport": [""], + "Default latitude": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Maximum value on the gauge axis": [""], - "May": ["Mei"], - "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Light mode": [""], + "Dark mode": [""], + "MapBox": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Options": [""], + "Data Table": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Ranking": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "" ], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": ["Inhoud van het bericht"], - "Metadata": [""], - "Metadata Parameters": [""], - "Metadata has been synced": ["Metadata zijn gesynchroniseerd"], - "Method": ["Methode"], - "Metric": ["Meeteenheid"], - "Metric '%(metric)s' does not exist": [ - "Meeteenheid “%(metric)s” bestaat niet" - ], - "Metric ascending": [""], - "Metric assigned to the [X] axis": [ - "Meeteenheid toegewezen aan de [X]-as" - ], - "Metric assigned to the [Y] axis": [ - "Meeteenheid toegewezen aan de [Y]-as" - ], + "Coordinates": [""], + "Directional": [""], + "Time Series Options": [""], + "Not Time Series": [""], + "Ignore time": [""], + "Time Series": [""], + "Standard time series": [""], + "Aggregate Mean": [""], + "Mean of values over specified period": [""], + "Aggregate Sum": [""], + "Sum of values over specified period": [""], "Metric change in value from `since` to `until`": [""], - "Metric descending": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": ["Meeteenheid naam [%s] is dubbel"], + "Percent Change": [""], "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to display bottom title": [""], - "Metric to sort the results by": [ - "Meeteenheid om de resultaten op te sorteren" + "Factor": [""], + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "Date Time Format": [""], + "Partition Limit": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "" ], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Rolling Window": [""], + "Rolling Function": [""], + "cumsum": [""], + "Min Periods": [""], + "Time Comparison": [""], + "Time Shift": [""], + "30 days": ["30 dagen"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Metrics": ["Meeteenheden"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": ["Methode"], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Partition Chart": [""], + "Categorical": [""], + "Use Area Proportions": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ "" ], - "Midnight": [""], - "Min": ["Min"], - "Min Periods": [""], - "Min Width": [""], - "Min periods": ["Min periodes"], - "Min/max (no outliers)": [""], - "Mine": ["Mijn"], - "Minimum": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Minute": ["Minuut"], - "Minutes %s": [""], - "Missing URL parameters": [""], - "Missing dataset": ["Ontbrekende dataset"], - "Mixed Time-Series": [""], - "Modified": ["Gewijzigd"], - "Modified %s": [""], - "Modified by": ["Gewijzigd door"], - "Modified columns: %s": ["Gewijzigde kolommen: %s"], - "Monday": ["Maandag"], - "Month": ["Maand"], - "Months %s": [""], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [ - "Verplaatst de gegeven reeks datums met een opgegeven interval." - ], - "Multi-Dimensions": [""], + "Nightingale Rose Chart": [""], + "Advanced-Analytics": [""], "Multi-Layers": [""], - "Multi-Levels": [""], - "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Source / Target": [""], + "Choose a source and a target": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Multiple filtering": [""], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "Meerdere formaten geaccepteerd, zie de geopy.points Python bibliotheek voor meer details" + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ "" ], - "Multiplier": [""], - "Must be unique": ["Moet uniek zijn"], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Moet een [Group By] kolom hebben om ‘count’ als [Label] te hebben" + "Show Bubbles": [""], + "Whether to display bubbles on top of countries": [""], + "Max Bubble Size": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "" ], - "Must have at least one numeric column specified": [ - "Er moet minstens één numerieke kolom gespecificeerd zijn" + "Country Column": [""], + "3 letter code of the country": [""], + "Metric that defines the size of the bubble": [""], + "Bubble Color": [""], + "Country Color Scheme": [""], + "A map of the world, that can indicate values in different countries.": [ + "" ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [ - "Een waarde voor filters met vergelijkingsoperatoren moet gespecificeerd" + "Multi-Dimensions": [""], + "Multi-Variables": [""], + "Popular": [""], + "deck.gl charts": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Select charts": [""], + "Error while fetching charts": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Arc": [""], + "Target Color": [""], + "Color of the target location": [""], + "Categorical Color": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Stroke Width": [""], + "Advanced": ["Geavanceerd"], + "Plot the distance (like flight paths) between origin and destination.": [ + "" ], - "My beautiful colors": [""], - "My column": [""], - "My metric": ["Mijn meeteenheid"], - "N/A": [""], - "NOT GROUPED BY": [""], - "NOV": ["NOV"], - "NOW": ["NU"], - "Name": ["Naam"], - "Name is required": ["Naam is vereist"], - "Name must be unique": ["De naam moet uniek zijn"], - "Name of table to be created from columnar data.": [""], - "Name of table to be created from excel data.": [ - "Naam van de tabel die moet worden aangemaakt op basis van excel-gegevens." + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Contours": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "Name of the column containing the id of the parent node": [""], - "Name of the id column": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [ - "Naam van de tabel die bestaat in de brondatabase" + "Weight": [""], + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" ], - "Name of the target nodes": [""], - "Name your database": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error.": [""], - "New chart": ["Nieuwe grafiek"], - "New columns added: %s": ["Nieuwe kolommen toegevoegd: %s"], - "New filter set": ["Nieuwe filterset"], - "New tab": ["Nieuw tabblad"], - "New tab (Ctrl + q)": ["Nieuw tabblad (Ctrl + q)"], - "New tab (Ctrl + t)": ["Nieuw tabblad (Ctrl + t)"], - "Next": ["Volgende"], - "Nightingale Rose Chart": [""], - "No": ["Nee"], - "No %s yet": ["Nog geen %s"], - "No Access!": ["Geen Toegang!"], - "No Data": ["Geen Data"], - "No Results": [""], - "No annotation layers yet": ["Nog geen aantekeningen lagen"], - "No annotation yet": ["Nog geen aantekeningen"], - "No charts": ["Geen grafieken"], - "No columns": ["Geen kolommen"], - "No compatible columns found": [""], - "No compatible schema found": [""], - "No dashboards": ["Geen dashboards"], - "No data": ["Geen data"], - "No data after filtering or data is NULL for the latest time record": [ + "Spatial": ["Ruimtelijk"], + "Experimental": [""], + "GeoJson Settings": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "No data in file": ["Geen gegevens in het bestand"], - "No databases match your search": [""], - "No description available.": [""], - "No favorite charts yet, go click on stars!": [ - "Nog geen favoriete grafieken, klik op sterren!" + "deck.gl Geojson": [""], + "Height": ["Hoogte"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "" ], - "No favorite dashboards yet, go click on stars!": [ - "Nog geen favoriete dashboards, klik op de sterren !" + "deck.gl Grid": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "No filter": [""], - "No filter is selected.": ["Er is geen filter geselecteerd."], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No of Bins": [""], - "No records found": ["Geen gegevens gevonden"], - "No results": [""], - "No results found": ["Geen resultaten gevonden"], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No saved expressions found": [""], - "No saved metrics found": [""], - "No stored results found, you need to re-run your query": [ - "Geen opgeslagen resultaten gevonden, u moet uw query opnieuw uitvoeren" + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Polygon Column": [""], + "Polygon Encoding": [""], + "Elevation": [""], + "Polygon Settings": [""], + "Opacity, expects values between 0 and 100": [""], + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Emit Filter Events": [""], + "Whether to apply filter when items are clicked": [""], + "Multiple filtering": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Geen dergelijke kolom gevonden. Om te filteren op een meeteenheid, probeer het Custom SQL tabblad." + "deck.gl Polygon": [""], + "Category": [""], + "Point Size": [""], + "Point Unit": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "" ], - "No temporal columns found": [""], - "No time columns": ["Geen tijdskolommen"], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "Node select mode": [""], - "Node size": [""], - "None": ["Geen"], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not Time Series": [""], - "Not available": [""], - "Not null": ["Not null"], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": ["Niets getriggerd"], - "Notification method": ["Methode voor kennisgeving"], - "November": ["November"], - "Now": [""], - "Null imputation": [""], - "Null or Empty": ["Nul of Leeg"], - "Null values": ["Nul waarden"], - "Number Format": [""], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "" ], - "Number format": [""], - "Number format string": [""], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read.": [ - "Aantal rijen van het te lezen bestand." - ], - "Number of rows to skip at start of file.": [ - "Aantal rijen om over te slaan aan het begin van het bestand." - ], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": [""], - "OCT": ["OKT"], - "OK": ["OK"], - "OVERWRITE": ["OVERSCHRIJVEN"], - "October": ["Oktober"], - "Offline": ["Offline"], - "Offset": ["Offset"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Point Color": [""], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "deck.gl Scatterplot": [""], + "Grid": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], - "One or many columns to pivot as columns": [""], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ "" ], - "One or many controls to pivot as columns": [ - "Een of meer bedieningsinstrumenten om als kolommen te pivoteren" - ], - "One or many metrics to display": [ - "Eén of vele meeteenheden om weer te geven" - ], - "One or more columns already exist": ["Een of meer kolommen bestaan al"], - "One or more columns are duplicated": [ - "Een of meer kolommen zijn gedupliceerd" - ], - "One or more columns do not exist": ["Een of meer kolommen bestaan niet"], - "One or more metrics already exist": [ - "Een of meer meetgegevens bestaan al" - ], - "One or more metrics are duplicated": [ - "Een of meer meetgegevens zijn gedupliceerd" - ], - "One or more metrics do not exist": [ - "Een of meer meeteenheden bestaan niet" - ], - "One or more parameters needed to configure a database are missing.": [ + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ "" ], - "One or more parameters specified in the query are malformatted.": [""], - "One or more parameters specified in the query are missing.": [ - "Een of meer in de query opgegeven parameters ontbreken." - ], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Select a dimension": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "One ore more annotation layers failed loading.": [ - "Aantekening lagen worden nog steeds geladen." + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ + "" ], - "Only SELECT statements are allowed against this database.": [""], - "Only Total": [""], - "Only `SELECT` statements are allowed": [ - "Alleen `SELECT` statements zijn toegestaan" + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ + "" ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [ - "Alleen geselecteerde panelen zullen door deze filter worden beïnvloed" + "Legend Format": [""], + "Choose the format for legend values": [""], + "Legend Position": [""], + "Choose the position of the legend": [""], + "Top right": [""], + "Bottom left": [""], + "Bottom right": [""], + "Lines column": [""], + "The database columns that contains lines information": [""], + "Line width": ["Lijndikte"], + "The width of the lines": [""], + "Fill Color": [""], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "Stroke Color": [""], + "Filled": [""], + "Whether to fill the objects": [""], + "Stroked": [""], + "Whether to display the stroke": [""], + "Extruded": [""], + "Whether to make the grid 3D": [""], + "Grid Size": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Multiplier": [""], + "Factor to multiply the metric by": [""], + "Lines encoding": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "GeoJson Column": [""], + "Select the geojson column": [""], + "Right Axis Format": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "cardinal": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Show Range Filter": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ "" ], - "Only single queries supported": [ - "Alleen enkelvoudige query’s worden ondersteund" + "X Tick Layout": [""], + "The way the ticks are laid out on the X-axis": [""], + "X Axis Format": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Alleen de volgende bestandsextensies zijn toegestaan: %(allowed_extensions)s" + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Bar Values": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "" ], - "Opacity": ["Opaciteit"], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["Open Datasource tab"], - "Open in SQL Lab": ["Open in SQL Lab"], - "Open query in SQL Lab": ["Open query in SQL Lab"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ "" ], - "Operator": [""], - "Operator undefined for aggregator: %(name)s": [ - "Operator ongedefinieerd voor aggregator: %(name)s" + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Area Chart (legacy)": [""], + "Continuous": [""], + "Line": [""], + "nvd3": [""], + "Deprecated": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "" ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ "" ], - "Optional d3 date format string": [""], - "Optional d3 number format string": [""], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [ - "Optionele waarschuwing voor het gebruik van deze meeteenheid" + "Bar": [""], + "Vertical": [""], + "Box Plot": [""], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "" ], - "Options": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original": [""], - "Original table column order": ["Originele tabel kolom volgorde"], - "Original value": ["Originele waarde"], - "Orthogonal": [""], - "Other": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Outer edge of Pie chart": [""], - "Overlap": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Ranges": [""], + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "Markers": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ "" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Time-series Percent Change": [""], + "Sort Bars": [""], + "Sort bars by x labels.": [""], + "Breakdowns": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ "" ], - "Overwrite": ["Overschrijven"], - "Overwrite & Explore": ["Overschrijven en verkennen"], - "Overwrite Dashboard [%s]": ["Dashboard overschrijven [%s]"], - "Overwrite text in the editor with a query on this table": [ - "Overschrijf tekst in de editor met een query op deze tabel" - ], - "Owned Created or Favored": [""], - "Owner": ["Eigenaar"], - "Owners": ["Eigenaars"], - "Owners are invalid": ["Eigenaren zijn ongeldig"], - "Owners is a list of users who can alter the dashboard.": [ - "Eigenaars is een lijst van gebruikers die het dashboard kunnen wijzigen." + "Bar Chart (legacy)": [""], + "Additive": [""], + "Discrete": [""], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Label Type": [""], + "Value": ["Waarde"], + "Percentage": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Donut": [""], + "Do you want a donut or a pie?": [""], + "Show Labels": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Frequency": [""], + "Year (freq=AS)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": ["Pandas resample methode"], - "Pandas resample rule": ["Pandas resample regel"], - "Parallel Coordinates": ["Parallelle coördinaten"], - "Parameter error": ["Parameter fout"], - "Parameters": ["Parameters"], - "Parameters ": [""], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": ["Bereken Data"], - "Part of a Whole": [""], - "Partition Chart": [""], - "Partition Diagram": ["Partition Diagram"], - "Partition Limit": [""], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "Time-series Period Pivot": [""], + "Stack": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Margin": [""], + "Additional padding for legend.": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Bottom": [""], + "Right": [""], + "Show Value": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Password": ["Wachtwoord"], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": [""], - "Percent Change": [""], - "Percentage": [""], - "Percentage change": [""], - "Percentage metrics": [""], "Percentage threshold": [""], - "Percentages": [""], - "Performance": [""], - "Period average": [""], - "Periods": ["Periodes"], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [ - "Persoon of groep die deze meetwaarde heeft gecertificeerd" - ], - "Physical": ["Fysiek"], - "Physical (table or view)": ["Fysiek (tabel of overzicht)"], - "Physical dataset": ["Fysieke dataset"], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Kies een granulariteit in de sectie Tijd of vink ‘Inclusief tijd’ uit" + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Tooltip time format": [""], + "Tooltip sort by metric": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ + "" ], - "Pick a metric for x, y and size": [ - "Kies een meeteenheid voor x, y en grootte" + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ + "" ], - "Pick a metric to display": ["Kies een meeteenheid om weer te geven"], - "Pick a metric!": ["Kies een meeteenheid!"], - "Pick a name to help you identify this database.": [ - "Kies een naam om je te helpen deze database te identificeren." + "X Axis Bounds": [""], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "Kies een tijdschaal voor uw tijdreeks" + "Minor ticks": [""], + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": ["Geen data"], + "No data after filtering or data is NULL for the latest time record": [ + "" ], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [ - "Kies minstens één veld voor [Series]" + "Try applying different filters or ensuring your datasource has data": [ + "" ], - "Pick at least one metric": ["Kies ten minste één meeteenheid"], - "Pick exactly 2 columns as [Source / Target]": [ - "Kies precies 2 kolommen als [Bron / Doel]" + "Big Number Font Size": [""], + "Tiny": [""], + "Small": [""], + "Normal": [""], + "Large": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Subheader": [""], + "Description text that shows up below your Big Number": [""], + "Date format": [""], + "Force date format": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Apply conditional color formatting to metric": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "A Big Number": [""], + "With a subheader": [""], + "Big Number": ["Groot Getal"], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Comparison suffix": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Pick your favorite markup language": [ - "Kies uw favoriete opmaaktaal (markup language)" + "Fix to selected Time Range": [""], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "" ], - "Pie Chart": [""], - "Pie shape": [""], - "Pin": [""], - "Pivot Table": ["Draaitabel"], - "Pivot operation must include at least one aggregate": [ - "De pivotbewerking moet ten minste één aggregaat omvatten" + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "" ], - "Pivot operation requires at least one index": [ - "Pivot bewerking vereist ten minste één index" + "Big Number with Trendline": ["Groot getal met trendlijn"], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Distribute across": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "" ], - "Pivoted": [""], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "ECharts": [""], + "Bubble size number format": [""], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "Labels": [""], + "Value and Percentage": [""], + "What should be shown as the label": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Show Tooltip Labels": [""], + "Whether to display the tooltip labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ "" ], - "Please choose different metrics on left and right axis": [ - "Kies verschillende meeteenheden op de linker- en rechteras" + "Funnel Chart": [""], + "Sequential": [""], + "Columns to group by": [""], + "General": [""], + "Min": ["Min"], + "Minimum value on the gauge axis": [""], + "Max": ["Max"], + "Maximum value on the gauge axis": [""], + "Start angle": [""], + "Angle at which to start progress axis": [""], + "End angle": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Value format": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Animation": [""], + "Whether to animate the progress and the value or just display them": [ + "" ], - "Please confirm": ["Gelieve te bevestigen"], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [ - "Voer een SQLAlchemy URI in om te testen" + "Axis": [""], + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Split number": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Show progress": [""], + "Whether to show the progress of gauge chart": [""], + "Overlap": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "" ], - "Please filter set name": ["Filter setnaam a.u.b."], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [ - "Sla de query op om te kunnen delen" + "Round cap": [""], + "Style the ends of the progress bar with a round cap": [""], + "Intervals": [""], + "Interval bounds": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "" ], - "Please save your chart first, then try creating a new email report.": [ + "Interval colors": [""], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [ - "Gelieve 3 verschillende meeteenheid labels te gebruiken" - ], - "Plot the distance (like flight paths) between origin and destination.": [ + "Gauge Chart": [""], + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "Source category": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Target category": [""], + "Category of target nodes": [""], + "Chart options": [""], + "Layout": [""], + "Graph layout": [""], + "Force": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Disabled": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": [""], + "Single": [""], + "Multiple": [""], + "Allow node selections": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Node size": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ "" ], - "Plugins": ["Plugins"], - "Point Color": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Size": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polygon Column": [""], - "Polygon Encoding": [""], - "Polygon Settings": [""], - "Polyline": [""], - "Pop Tab Link": ["Pop Tab Link"], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "Poort %(port)s op hostnaam “%(hostname)s” weigerde de verbinding." + "Edge width": [""], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "" ], - "Port out of range 0-65535": [""], - "Position JSON": ["Positie JSON"], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter": [""], - "Pre-filter available values": [""], - "Pre-filter is required": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion": [""], + "Repulsion strength between nodes": [""], + "Friction": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], - "Predictive": [""], - "Predictive Analytics": [""], - "Preview": ["Preview"], - "Preview: `%s`": ["Preview: `%s`"], - "Previous": ["Vorige"], + "Graph Chart": [""], + "Structural": [""], + "Whether to sort descending or ascending": [ + "Aflopend of oplopend sorteren" + ], + "Series type": [""], + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Area chart": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Marker": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], "Primary": [""], - "Primary Metric": [""], - "Primary key": [""], + "Secondary": [""], "Primary or secondary y-axis": [""], + "Query A": [""], + "Query B": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Proceed": [""], - "Profile": ["Profiel"], - "Profile picture provided by Gravatar": [ - "Profielfoto geleverd door Gravatar" + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "" ], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": ["Gepubliceerd"], - "Put labels outside": [""], "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": ["Plaats je code hier"], - "Python datetime string pattern": ["Python datetime string patroon"], - "QUERY DATA IN SQL LAB": [""], - "Quarter": ["Kwartaal"], - "Quarters %s": [""], - "Query": ["Query"], - "Query %s: %s": [""], - "Query A": [""], - "Query B": [""], - "Query History": ["Query Geschiedenis"], - "Query history": ["Geschiedenis van de opzoeking"], - "Query imported": [""], - "Query in a new tab": ["Zoekopdracht in een nieuw tabblad"], - "Query is too complex and takes too long to run.": [""], - "Query mode": [""], - "Query name": ["Query naam"], - "Query preview": ["Query preview"], - "Query was stopped": ["Query is gestopt"], - "Query was stopped.": ["Query is gestopt."], - "RANGE TYPE": ["BEREIK TYPE"], - "RGB Color": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Pie shape": [""], + "Outer Radius": [""], + "Outer edge of Pie chart": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "" + ], + "Pie Chart": [""], + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Label position": [""], "Radar": [""], - "Radar Chart": [""], + "Customize Metrics": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], "Radar render type, whether to display 'circle' shape.": [""], - "Radial": [""], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range": [""], - "Range filter": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges": [""], - "Ranges to highlight with shading": [""], - "Ranking": [""], - "Ratio": [""], - "Raw records": [""], - "Ready to review filters in this dashboard?": [""], - "Rebuild": ["Herbouw"], - "Recent activity": ["Recente activiteit"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Recent gemaakte grafieken, dashboards en opgeslagen queries verschijnen hier" + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Recent bewerkte grafieken, dashboards en opgeslagen queries verschijnen hier" + "Radar Chart": [""], + "Primary Metric": [""], + "The primary metric is used to define the arc segment sizes": [""], + "Secondary Metric": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "" ], - "Recently modified": ["Recent gewijzigd"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier verschijnen" + "When only a primary metric is provided, a categorical color scale is used.": [ + "" ], - "Recents": ["Recente"], - "Recipients are separated by \",\" or \";\"": [ - "Ontvangers worden gescheiden door “,” of “;”" + "When a secondary metric is provided, a linear color scale is used.": [ + "" ], - "Recommended tags": [""], - "Record Count": ["Record Aantal"], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ + "Hierarchy": [""], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Refer to the": [""], - "Referenced columns not available in DataFrame.": [ - "Kolommen waarnaar wordt verwezen zijn niet beschikbaar in DataFrame." + "Sunburst Chart": [""], + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "" ], - "Refetch results": ["Resultaten opnieuw ophalen"], - "Refresh": ["Vernieuwen"], - "Refresh dashboard": ["Vernieuw dashboard"], - "Refresh frequency": ["Frequentie vernieuwen"], - "Refresh interval": ["Interval vernieuwen"], - "Refresh interval saved": [""], - "Refresh the default values": [""], - "Regex": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Generic Chart": [""], + "zoom area": [""], + "restore zoom": [""], + "Series Style": [""], + "Area chart opacity": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Relational": [""], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative period": [""], - "Relative quantity": ["Relatieve hoeveelheid"], - "Remind me in 24 hours": [""], - "Remove": ["Verwijder"], - "Remove invalid filters": ["Verwijder ongeldige filters"], - "Remove item": ["Item verwijderen"], - "Remove query from log": ["Verwijder de query uit de log"], - "Remove table preview": ["Verwijder tabel preview"], - "Removed columns: %s": ["Verwijderde kolommen: %s"], - "Rename tab": ["Tabblad hernoemen"], - "Rendering": [""], - "Replace": ["Vervang"], - "Report": [""], - "Report Schedule could not be created.": [ - "Rapportage planning kon niet worden aangemaakt." - ], - "Report Schedule could not be deleted.": [ - "Rapportage planning kon niet worden verwijderd." - ], - "Report Schedule could not be updated.": [ - "Rapportage planning kon niet worden bijgewerkt." - ], - "Report Schedule delete failed.": [ - "Rapportage planning verwijderen mislukt." - ], - "Report Schedule execution failed when generating a csv.": [ - "Rapportage planning mislukt bij het genereren van een csv." - ], - "Report Schedule execution failed when generating a dataframe.": [""], - "Report Schedule execution failed when generating a screenshot.": [ - "Rapportage planning uitvoering mislukt bij het genereren van een screenshot." - ], - "Report Schedule execution got an unexpected error.": [ - "Rapportage planning uitvoering kreeg een onverwachte fout." - ], - "Report Schedule is still working, refusing to re-compute.": [ - "Rapportage planning werkt nog steeds, weigert om opnieuw te berekenen." - ], - "Report Schedule log prune failed.": [ - "Rapportage planning log prune mislukt." + "Area Chart": [""], + "AXIS TITLE MARGIN": [""], + "AXIS TITLE POSITION": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Axis Bounds": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Report Schedule not found.": ["Rapportage planning niet gevonden."], - "Report Schedule parameters are invalid.": [ - "De parameters van het rapportageplanning zijn ongeldig." + "Chart Orientation": [""], + "Horizontal": [""], + "Bar Charts are used to show metrics as a series of bars.": [""], + "Bar Chart": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "" ], - "Report Schedule reached a working timeout.": [ - "Rapportage planning heeft een werk time-out bereikt." + "Line Chart": [""], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "" ], - "Report Schedule state not found": [ - "Rapport Schedule state niet gevonden" + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "" ], - "Report a bug": [""], - "Report failed": ["Rapport mislukt"], - "Report name": ["Naam rapport"], - "Report schedule": ["Rapportageplanning"], - "Report schedule unexpected error": ["Onverwachte fout in rapportschema"], - "Report sending": ["Rapport verzenden"], - "Report sent": ["Rapport verzonden"], - "Reports": ["Rapporten"], - "Repulsion": [""], - "Repulsion strength between nodes": [""], - "Request Permissions": ["Permissies aanvragen"], - "Request is incorrect: %(error)s": ["Verzoek is onjuist: %(error)s"], - "Request is not JSON": ["Verzoek is geen JSON"], - "Request missing data field.": ["Verzoek om ontbrekend data veld."], - "Required": ["Vereist"], - "Required control values have been removed": [""], - "Resample": [""], - "Reset": [""], - "Reset state": ["Reset status"], - "Resource already has an attached report.": [""], - "Restore Filter": ["Herstel Filter"], - "Results": ["Resultaten"], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Step type": [""], + "Start": ["Start"], + "End": ["Einde"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Return to specific datetime.": [ - "Terugkeren naar specifieke datum/tijd." + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "" ], - "Reverse Lat & Long": [""], - "Reverse lat/long ": ["Omgekeerde breedtegraad/lengtegraad "], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right": [""], - "Right Axis Format": [""], - "Right Axis Metric": [""], - "Right axis metric": ["Meeteenheid rechteras"], + "Stepped Line": [""], + "Id": [""], + "Name of the id column": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Radial": [""], + "Layout type of tree": [""], + "Tree orientation": [""], + "Left to Right": [""], "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "left": [""], + "top": [""], + "right": [""], + "bottom": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], + "Symbol": [""], + "Empty circle": [""], + "Circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Pin": [""], + "Arrow": [""], + "Symbol size": [""], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Role": ["Rol"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "Rol %(r)s werd uitgebreid om toegang te verschaffen tot de gegevensbron %(ds)s" + "Tree Chart": [""], + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "" ], - "Roles": ["Rollen"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Treemap": ["Treemap"], + "Total": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "Roles to grant": ["Toe te kennen rollen"], - "Rolling Function": [""], - "Rolling Window": [""], - "Rolling function": ["Rolfunctie"], - "Rolling window": ["Rollend venster"], - "Root certificate": ["Root certificaat"], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Round cap": [""], - "Row": ["Rij"], - "Row Level Security": [""], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "page_size.all": [""], + "Loading...": ["Bezig met laden…"], + "Write a handlebars template to render the data": [""], + "must have a value": [""], + "A handlebars template that is applied to the data": [""], + "Include time": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Percentage metrics": [""], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "Row limit": ["Rij limiet"], - "Rows": ["Rijen"], + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "" + ], + "Ordering": [""], + "Order results by selected columns": [""], + "Sort descending": ["Sorteer aflopend"], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": ["Te lezen rijen"], - "Rule": ["Regel"], - "Rule added": [""], - "Run": ["Uitvoeren"], - "Run a query to display results": [""], - "Run in SQL Lab": ["Uitvoeren in SQL Lab"], - "Run query": ["Zoekopdracht uitvoeren"], - "Run query (Ctrl + Return)": ["Query uitvoeren (Ctrl + Return)"], - "Run query in a new tab": ["Query uitvoeren in een nieuw tabblad"], - "Run selection": ["Selectie uitvoeren"], - "Running": ["Running"], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": ["ZA"], - "SEP": ["SEP"], - "SHA": [""], - "SQL": ["SQL"], - "SQL Copied!": ["SQL gekopieerd!"], - "SQL Expression": ["SQL Expressie"], - "SQL Lab": ["SQL-lab"], - "SQL Lab View": ["SQL Lab View"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "Query mode": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": ["Rijen"], + "Columns to group by on the rows": [""], + "Apply metrics on": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Cell limit": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "SQL Query": ["SQL Query"], - "SQL expression": ["SQL expressie"], - "SQL query": ["SQL query"], - "SQLAlchemy URI": ["SQLAlchemy URI"], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": ["START (INCLUSIEF)"], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "SUN": ["ZO"], - "Sample Standard Deviation": [""], + "Aggregation function": [""], + "Count Unique Values": [""], + "Sum": [""], + "Median": [""], "Sample Variance": [""], - "Sankey": ["Sankey"], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite Streets": [""], - "Saturday": ["Zaterdag"], - "Save": ["Opslaan"], - "Save & Explore": ["Opslaan en verkennen"], - "Save & go to dashboard": ["Opslaan en naar dashboard gaan"], - "Save (Overwrite)": ["Opslaan (overschrijven)"], - "Save as": ["Opslaan als"], - "Save as new": ["Opslaan als nieuw"], - "Save as new chart": ["Opslaan als nieuwe grafiek"], - "Save as:": ["Opslaan als:"], - "Save chart": ["Grafiek opslaan"], - "Save dashboard": ["Dashboard opslaan"], - "Save for this session": ["Opslaan voor deze sessie"], - "Save or Overwrite Dataset": [""], - "Save query": ["Zoekopdracht opslaan"], - "Save the query to enable this feature": [ - "Sla de query op om deze functie in te schakelen" - ], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["Opgeslagen"], - "Saved Queries": ["Opgeslagen Queries"], - "Saved expressions": [""], - "Saved metric": ["Opgeslagen meeteenheid"], - "Saved queries": ["Opgeslagen queries"], - "Saved queries could not be deleted.": [ - "Opgeslagen zoekopdrachten konden niet worden verwijderd." - ], - "Saved query not found.": ["Opgeslagen query niet gevonden."], - "Saved query parameters are invalid.": [ - "Opgeslagen query parameters zijn ongeldig." + "Sample Standard Deviation": [""], + "Minimum": [""], + "Maximum": [""], + "First": [""], + "Last": [""], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "" ], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Show rows total": [""], + "Display row level total": [""], + "Show rows subtotal": [""], + "Display row level subtotal": [""], + "Show columns total": [""], + "Display column level total": [""], + "Show columns subtotal": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Combine metrics": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ "" ], - "Schedule": ["Planning"], - "Schedule email report": [""], - "Schedule query": ["Query planning"], - "Schedule settings": ["Planning instellingen"], - "Schedule the query periodically": ["Plan de zoekopdracht periodiek"], - "Scheduled": ["Gepland"], - "Scheduled at (UTC)": ["Gepland om (UTC)"], - "Schema": ["Schema"], - "Schema cache timeout": [""], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Schema, zoals alleen gebruikt in sommige databases zoals Postgres, Redshift en DB2" + "D3 time format for datetime columns": [""], + "Sort rows by": [""], + "key a-z": [""], + "key z-a": [""], + "value ascending": [""], + "value descending": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Sort columns by": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Conditional formatting": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "" ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": ["Scoping"], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["Zoek"], - "Search / Filter": ["Zoek / Filter"], - "Search Metrics & Columns": ["Zoek meeteenheden & kolommen"], - "Search all charts": [""], - "Search all filter options": ["Zoek in alle filteropties"], + "Pivot Table": ["Draaitabel"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": [""], + "Timestamp format": [""], + "Page length": [""], "Search box": [""], - "Search by query text": ["Zoek op querytekst"], - "Search...": ["Zoek…"], - "Second": ["Seconde"], - "Secondary": [""], - "Secondary Metric": [""], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Seconds %s": [""], - "Secure Extra": ["Secure Extra"], - "Secure extra": ["Secure extra"], - "Security": ["Beveiliging"], - "Security & Access": ["Veiligheid & toegang"], - "See all %(tableName)s": [""], - "See less": ["Zie minder"], - "See more": ["Zie meer"], - "See query details": [""], - "See table schema": ["Zie tabel schema"], - "Select": [""], - "Select ...": ["Selecteer …"], - "Select Delivery Method": [""], - "Select Viz Type": [""], - "Select a Columnar file to be uploaded to a database.": [""], - "Select a Excel file to be uploaded to a database.": [ - "Selecteer een Excel-bestand dat moet worden geüpload naar een database." + "Whether to include a client-side search box": [""], + "Cell bars": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ + "" ], - "Select a column": [""], - "Select a dashboard": [""], - "Select a database table and create dataset": [""], - "Select a database to upload the file to": [""], - "Select a database to write a query": [""], - "Select a dimension": [""], - "Select a visualization type": ["Selecteer een visualisatie type"], - "Select aggregate options": [""], - "Select any columns for metadata inspection": [""], - "Select charts": [""], - "Select color scheme": [""], - "Select column": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "Select filter": [""], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select operator": [""], - "Select or type a value": [""], - "Select owners": [""], - "Select saved metrics": [""], - "Select schema or type to search schemas": [""], - "Select scheme": [""], - "Select start and end date": ["Selecteer begin- en einddatum"], - "Select subject": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Customize columns": [""], + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "Select the geojson column": [""], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Show": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "Word Rotation": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": ["September"], - "Sequential": [""], - "Series": ["Series"], - "Series Height": [""], - "Series Style": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": ["Serie limiet"], - "Series type": [""], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": ["Stel auto-refresh in"], - "Set filter mapping": ["Filter toewijzing instellen"], - "Set up an email report": [""], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "N/A": [""], + "The query couldn't be loaded": ["De query kon niet geladen worden"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Uw zoekopdracht is ingepland. Om de details van uw zoekopdracht te zien, navigeert u naar Opgeslagen zoekopdrachten" + ], + "Your query could not be scheduled": ["Uw vraag kon niet worden gepland"], + "Failed at retrieving results": ["Fout bij het ophalen van resultaten"], + "Unknown error": ["Onbekende fout"], + "Query was stopped.": ["Query is gestopt."], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Settings": ["Instellingen"], - "Settings for time series": [""], - "Share": ["Deel"], - "Share chart by email": ["Deel grafiek per e-mail"], - "Shared query": ["Gedeelde zoekopdracht"], - "Sheet Name": ["Naam tabblad"], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [ - "Korte beschrijving moet uniek zijn voor deze laag" + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "" ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "Show": [""], - "Show Bubbles": [""], - "Show CREATE VIEW statement": ["Toon CREATE VIEW statement"], - "Show CSS Template": ["Toon CSS Template"], - "Show Chart": ["Toon grafiek"], - "Show Column": ["Toon Kolom"], - "Show Dashboard": ["Toon Dashboard"], - "Show Database": ["Toon Database"], - "Show Labels": [""], - "Show Less...": [""], - "Show Log": ["Toon Log"], - "Show Markers": [""], - "Show Metric": ["Toon meeteenheid"], - "Show Metric Names": [""], - "Show Range Filter": [""], - "Show Saved Query": ["Toon Opgeslagen Query"], - "Show Table": ["Toon tabel"], - "Show Timestamp": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Value": [""], - "Show Values": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Copy of %s": ["Kopie van %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Er is een fout opgetreden bij het instellen van het actieve tabblad. Neem contact op met uw beheerder." + ], + "An error occurred while fetching tab state": [ + "Er is een fout opgetreden tijdens het ophalen van de tabbladstatus" + ], + "An error occurred while removing tab. Please contact your administrator.": [ "" ], - "Show all columns": [""], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show columns total": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "An error occurred while removing query. Please contact your administrator.": [ "" ], - "Show info tooltip": [""], - "Show label": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less columns": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show progress": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time column": [""], - "Show time grain dropdown": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "" + "Your query could not be saved": [ + "Uw zoekopdracht kon niet worden opgeslagen" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "" + "Your query was not properly saved": [""], + "Your query was saved": ["Uw zoekopdracht werd opgeslagen"], + "Your query was updated": ["Uw zoekopdracht werd bijgewerkt"], + "Your query could not be updated": [ + "Uw zoekopdracht kon niet worden bijgewerkt" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "" + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Er is een fout opgetreden tijdens het ophalen van de metagegevens van de tabel. Neem contact op met uw beheerder." ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Er is een fout opgetreden tijdens het uitbreiden van het tabelschema. Neem contact op met uw beheerder." ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Er is een fout opgetreden tijdens het samenvouwen van het tabelschema. Neem contact op met uw beheerder." ], - "Showing %s of %s": ["Weergave %s van %s"], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": ["Eenvoudig"], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single": [""], - "Single Metric": [""], - "Single Value": [""], - "Single value": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": ["Blanco regels overslaan"], - "Skip Initial Space": ["Eerste spatie overslaan"], - "Skip Rows": ["Rijen overslaan"], - "Slug": ["Slug"], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Er is een fout opgetreden tijdens het verwijderen van het tabelschema. Neem contact op met uw beheerder." ], - "Solid": [""], - "Some roles do not exist": ["Sommige rollen bestaan niet"], - "Sorry there was an error fetching database information: %s": [ - "Sorry er is een fout opgetreden bij het ophalen van database informatie: %s" + "Shared query": ["Gedeelde zoekopdracht"], + "The datasource couldn't be loaded": [ + "De datasource kon niet geladen worden" ], - "Sorry there was an error fetching saved charts: ": [ - "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " + "An error occurred while creating the data source": [ + "Er is een fout opgetreden bij het aanmaken van de gegevensbron" ], - "Sorry, An error occurred": ["Sorry, er is een fout opgetreden"], - "Sorry, an error occurred": [""], - "Sorry, something went wrong. Try again later.": [ - "Sorry, er ging iets mis. Probeer het later nog eens." + "An error occurred while fetching function names.": [ + "Er is een fout opgetreden bij het ophalen van functienamen." ], - "Sorry, there appears to be no data": [""], - "Sorry, there was an error saving this dashboard: %s": [""], - "Sorry, your browser does not support copying.": [ - "Sorry, uw browser ondersteunt het kopiëren niet." + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "" ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "Sorry, uw browser ondersteunt het kopiëren niet. Gebruik Ctrl / Cmd + C!" + "Primary key": [""], + "Foreign key": [""], + "Estimate selected query cost": [ + "Kostenraming van de geselecteerde zoekopdracht" + ], + "Estimate cost": ["Kostenraming"], + "Cost estimate": ["Kostenraming"], + "Creating a data source and creating a new tab": [ + "Een gegevensbron maken en een nieuw tabblad maken" + ], + "An error occurred": ["Er is een fout opgetreden"], + "Explore the result set in the data exploration view": [ + "Verken de resultaten in de gegevensverkenningsweergave" ], - "Sort": [""], - "Sort Bars": [""], - "Sort Descending": [""], - "Sort Metric": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": ["Sorteer oplopend"], - "Sort bars by x labels.": [""], - "Sort by": ["Sorteer op"], - "Sort by %s": [""], - "Sort by metric": [""], - "Sort columns alphabetically": ["Sorteer kolommen alfabetisch"], - "Sort columns by": [""], - "Sort descending": ["Sorteer aflopend"], - "Sort filter values": [""], - "Sort metric": ["Sorteer meeteenheid"], - "Sort rows by": [""], - "Sort series in ascending order": [""], - "Sort type": [""], - "Source": ["Bron"], - "Source / Target": [""], "Source SQL": ["Bron SQL"], - "Source category": [""], - "Sparkline": [""], - "Spatial": ["Ruimtelijk"], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [ - "Geef een schema op (als de databasesmaak dit ondersteunt)." + "Executed SQL": [""], + "Run query": ["Zoekopdracht uitvoeren"], + "Stop query": ["Query stoppen"], + "New tab": ["Nieuw tabblad"], + "Keyboard shortcuts": [""], + "State": ["Status"], + "Duration": ["Duur"], + "Results": ["Resultaten"], + "Actions": ["Acties"], + "Success": ["Succes"], + "Failed": ["Mislukt"], + "Running": ["Running"], + "Fetching": [""], + "Offline": ["Offline"], + "Scheduled": ["Gepland"], + "Unknown Status": [""], + "Edit": ["Bewerk"], + "Data preview": ["Data preview"], + "Overwrite text in the editor with a query on this table": [ + "Overschrijf tekst in de editor met een query op deze tabel" ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Specificeer dubbele kolommen als “X.0, X.1”." + "Run query in a new tab": ["Query uitvoeren in een nieuw tabblad"], + "Remove query from log": ["Verwijder de query uit de log"], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["Opslaan en verkennen"], + "Overwrite & Explore": ["Overschrijven en verkennen"], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": ["Download naar CSV"], + "Copy to Clipboard": ["Kopieer naar Klembord"], + "Filter results": ["Filter resultaten"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "" ], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "Split number": [""], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["Start"], - "Start Longitude & Latitude": [""], - "Start Review": [""], - "Start angle": [""], - "Start at (UTC)": ["Start op (UTC)"], - "Start date included in time range": [ - "Begindatum opgenomen in de tijdspanne" + "The number of rows displayed is limited to %(rows)d by the query": [""], + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "" ], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "State": ["Status"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": ["Status"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Step type": [""], - "Stepped Line": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "%(rows)d rows returned": [""], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], + "Track job": ["Track job"], + "See query details": [""], + "Query was stopped": ["Query is gestopt"], + "Database error": ["Database fout"], + "was created": ["werd gecreëerd"], + "Query in a new tab": ["Zoekopdracht in een nieuw tabblad"], + "The query returned no data": ["De query leverde geen gegevens op"], + "Fetch data preview": ["Gegevens ophalen preview"], + "Refetch results": ["Resultaten opnieuw ophalen"], "Stop": ["Stop"], - "Stop query": ["Query stoppen"], + "Run selection": ["Selectie uitvoeren"], + "Run": ["Uitvoeren"], "Stop running (Ctrl + x)": ["Stop de uitvoering (Ctrl + x)"], - "Stopped an unsafe database connection": [ - "Stopte een onveilige database connectie" + "Run query (Ctrl + Return)": ["Query uitvoeren (Ctrl + Return)"], + "Save": ["Opslaan"], + "An error occurred saving dataset": [ + "Er is een fout opgetreden bij het opslaan van dataset" ], - "Streets": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [ - "Strings gebruikt voor bladnamen (standaard is het eerste blad)." + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": ["Opslaan als nieuw"], + "Undefined": ["Ongedefinieerd"], + "Save as": ["Opslaan als"], + "Save query": ["Zoekopdracht opslaan"], + "Cancel": ["Annuleer"], + "Update": ["Update"], + "Label for your query": ["Label voor uw zoekopdracht"], + "Write a description for your query": [ + "Schrijf een omschrijving voor uw zoekopdracht." ], - "Stroke Color": [""], - "Stroke Width": [""], - "Stroked": [""], - "Structural": [""], - "Style": ["Stijl"], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader": [""], - "Subheader Font Size": [""], "Submit": [""], - "Subtotal": [""], - "Success": ["Succes"], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": ["Sunburst"], - "Sunburst Chart": [""], - "Sunday": ["Zondag"], - "Superset Chart": ["Superset Grafiek"], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["Superset grafiek"], - "Superset dashboard": ["Superset dashboard"], - "Superset encountered an error while running a command.": [ - "een fout is opgetreden in Superset tijdens het uitvoeren van een commando." + "Schedule query": ["Query planning"], + "Schedule": ["Planning"], + "There was an error with your request": [ + "Er is een fout opgetreden in uw verzoek." ], - "Superset encountered an unexpected error.": [ - "Er is een onverwachte fout opgetreden in Superset." - ], - "Supported databases": [""], - "Survey Responses": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" - ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" + "Please save the query to enable sharing": [ + "Sla de query op om te kunnen delen" ], - "Symbol": [""], - "Symbol of two ends of edge line": [""], - "Symbol size": [""], - "Sync columns from source": ["Synchroniseer kolommen van bron"], - "Syntax": ["Syntax"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ - "" + "Copy query link to your clipboard": [ + "Kopieer query link naar uw klembord" ], - "TABLES": ["TABLES"], - "THU": ["DO"], - "TUE": ["DI"], - "Tab name": ["Tab naam"], - "Tab title": ["Titel tabblad"], - "Table": ["Tabel"], - "Table %(table)s wasn't found in the database %(db)s": [ - "Tabwl %(table)s werd niet gevonden in de database %(db)s" + "Save the query to enable this feature": [ + "Sla de query op om deze functie in te schakelen" ], - "Table Exists": ["De tabel bestaat reeds"], - "Table Name": ["Tabel Naam"], - "Table View": ["Tabel Weergave"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "" + "Copy link": ["Kopieer link"], + "No stored results found, you need to re-run your query": [ + "Geen opgeslagen resultaten gevonden, u moet uw query opnieuw uitvoeren" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "De tabel [%{table}s] kon niet worden gevonden, controleer uw databaseverbinding, schema en tabelnaam, fout: {}" + "Run a query to display results": [""], + "Preview: `%s`": ["Preview: `%s`"], + "Query history": ["Geschiedenis van de opzoeking"], + "Schedule the query periodically": ["Plan de zoekopdracht periodiek"], + "You must run the query successfully first": [ + "U moet de query eerst succesvol uitvoeren" ], - "Table cache timeout": [""], - "Table loading": [""], - "Table name cannot contain a schema": [""], - "Table name undefined": ["Tabelnaam niet gedefinieerd"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "" + "Autocomplete": ["Autocomplete"], + "CREATE TABLE AS": ["CREATE TABLE AS"], + "CREATE VIEW AS": ["CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "Kostenraming voordat een query wordt uitgevoerd" ], - "Tables": ["Tabellen"], - "Tabs": ["Tabs"], - "Tabular": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Tags": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "" + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Create": ["Maak"], + "Collapse table preview": [""], + "Expand table preview": [""], + "Reset state": ["Reset status"], + "Enter a new title for the tab": [ + "Voer een nieuwe titel in voor het tabblad" ], - "Target": [""], - "Target Color": [""], - "Target category": [""], - "Target value": [""], - "Template Name": ["Template Naam"], - "Template parameters": ["Template parameters"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "" + "Close tab": ["Tabblad sluiten"], + "Rename tab": ["Tabblad hernoemen"], + "Expand tool bar": ["Werkbalk uitbreiden"], + "Hide tool bar": ["Verberg werkbalk"], + "Close all other tabs": ["Sluit alle andere tabbladen"], + "Duplicate tab": ["Tabblad Dupliceren"], + "New tab (Ctrl + q)": ["Nieuw tabblad (Ctrl + q)"], + "New tab (Ctrl + t)": ["Nieuw tabblad (Ctrl + t)"], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "Er is een fout opgetreden tijdens het ophalen van de metagegevens van de tabel" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "" + "Copy partition query to clipboard": [ + "Kopieer partitie query naar klembord" ], - "Test Connection": ["Test Connectie"], - "Test connection": ["Test connectie"], - "Text": [""], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ - "" + "latest partition:": ["laatste partitie:"], + "Keys for table": ["Sleutels voor tabel"], + "View keys & indexes (%s)": ["Bekijk sleutels & indexen (%s)"], + "Original table column order": ["Originele tabel kolom volgorde"], + "Sort columns alphabetically": ["Sorteer kolommen alfabetisch"], + "Copy SELECT statement to the clipboard": [ + "Kopieer SELECT-instructie naar het klembord" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Show CREATE VIEW statement": ["Toon CREATE VIEW statement"], + "CREATE VIEW statement": ["CREATE VIEW statement"], + "Remove table preview": ["Verwijder tabel preview"], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "Edit template parameters": ["Bewerk template parameters"], + "Parameters ": [""], + "Invalid JSON": ["Ongeldige JSON"], + "Untitled query": ["Naamloze zoekopdracht"], + "%s%s": ["%s%s"], + "Control": [""], + "Before": [""], + "After": [""], + "Click to see difference": ["Klik om het verschil te zien"], + "Altered": ["Gewijzigd"], + "Chart changes": ["Veranderingen in de grafiek"], + "Loaded data cached": ["Geladen gegevens in de cache"], + "Loaded from cache": ["Geladen uit de cache"], + "Click to force-refresh": ["Klik om te herladen"], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" + "An error occurred while loading the SQL": [ + "Er is een fout opgetreden bij het laden van de SQL" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "Sorry, an error occurred": [""], + "Updating chart was stopped": [""], + "An error occurred while rendering the visualization: %s": [""], + "Network error.": [""], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The access requests seem to have been deleted": [ - "De toegangsverzoeken lijken te zijn gewist" - ], - "The annotation has been saved": [""], - "The annotation has been updated": [""], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "You can't apply cross-filter on this data point.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": ["Sluit"], + "Failed to load chart data.": [""], + "Drill by: %s": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The chart does not exist": ["De grafiek bestaat niet"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [ - "Het kleurenschema voor de rendering grafiek" - ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The column was deleted or renamed in the database.": [ - "De kolom werd verwijderd of hernoemd in de database." - ], - "The country code standard that Superset should expect to find in the [country] column": [ - "" + "Drill to detail: %s": [""], + "No rows were returned for this dataset": [""], + "Copy": [""], + "Copy to clipboard": ["Kopieer naar klembord"], + "Copied to clipboard!": ["Gekopieerd naar het klembord!"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "Sorry, uw browser ondersteunt het kopiëren niet. Gebruik Ctrl / Cmd + C!" ], - "The dashboard has been saved": ["Het dashboard is opgeslagen"], - "The data source seems to have been deleted": [ - "De gegevensbron lijkt te zijn verwijderd" + "every": ["elke"], + "every month": ["elke maand"], + "every day of the month": ["elke dag van de maand"], + "day of the month": ["dag van de maand"], + "every day of the week": ["elke dag van de week"], + "day of the week": ["dag van de week"], + "every hour": ["elk uur"], + "every minute": [""], + "minute": ["minuut"], + "reboot": ["herstart"], + "Every": ["Elke"], + "in": ["in"], + "on": ["op"], + "and": ["en"], + "at": ["op"], + ":": [":"], + "minute(s)": [""], + "Invalid cron expression": ["Ongeldige cron expressie"], + "Clear": ["Verwijder"], + "Sunday": ["Zondag"], + "Monday": ["Maandag"], + "Tuesday": ["Dinsdag"], + "Wednesday": ["Woensdag"], + "Thursday": ["Donderdag"], + "Friday": ["Vrijdag"], + "Saturday": ["Zaterdag"], + "January": ["Januari"], + "February": ["Februari"], + "March": ["Maart"], + "April": ["April"], + "May": ["Mei"], + "June": ["Juni"], + "July": ["Juli"], + "August": ["Augustus"], + "September": ["September"], + "October": ["Oktober"], + "November": ["November"], + "December": ["December"], + "SUN": ["ZO"], + "MON": ["MA"], + "TUE": ["DI"], + "WED": ["WO"], + "THU": ["DO"], + "FRI": ["VR"], + "SAT": ["ZA"], + "JAN": ["JAN"], + "FEB": ["FEB"], + "MAR": ["MAA"], + "APR": ["APR"], + "MAY": ["MEI"], + "JUN": ["JUN"], + "JUL": ["JUL"], + "AUG": ["AUG"], + "SEP": ["SEP"], + "OCT": ["OKT"], + "NOV": ["NOV"], + "DEC": ["DEC"], + "There was an error loading the schemas": [""], + "Force refresh schema list": ["Forceer vernieuwen schema lijst"], + "Select schema or type to search schemas": [""], + "No compatible schema found": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Waarschuwing! Het veranderen van de dataset kan de grafiek breken als de metadata niet bestaat." ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "" + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Het wijzigen van de dataset kan de grafiek breken indien de grafiek steunt op kolommen of metadata die niet bestaan in de doel-dataset" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "" - ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [""], - "The database is under an unusual load.": [ - "De database wordt ongebruikelijk zwaar belast." - ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "" + "dataset": ["dataset"], + "Connection": [""], + "Proceed": [""], + "Warning!": ["Waarschuwing!"], + "Search / Filter": ["Zoek / Filter"], + "Add item": ["Voeg item toe"], + "BOOLEAN": [""], + "Physical (table or view)": ["Fysiek (tabel of overzicht)"], + "Virtual (SQL)": ["Virtueel (SQL)"], + "Data type": ["Data type"], + "Datetime format": ["Datetime formaat"], + "The pattern of timestamp format. For strings use ": [ + "Het patroon van het timestamp formaat. Voor tekenreeksen gebruik je " ], - "The database returned an unexpected error.": [ - "De database gaf een onverwachte foutmelding." + "Python datetime string pattern": ["Python datetime string patroon"], + " expression which needs to adhere to the ": [ + " uitdrukking die moet voldoen aan de " ], - "The database was deleted.": [""], - "The database was not found.": [""], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The dataset associated with this chart no longer exists": [ - "De dataset die bij deze grafiek hoort bestaat niet meer" - ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "De dataset configuratie die hier wordt getoond\n heeft invloed op alle grafieken die deze dataset gebruiken.\n Wees je ervan bewust dat het veranderen van instellingen\n hier invloed kan hebben op andere grafieken\n op ongewenste manieren." + "Certified By": [""], + "Person or group that has certified this metric": [ + "Persoon of groep die deze meetwaarde heeft gecertificeerd" ], - "The dataset has been saved": ["De dataset is opgeslagen"], - "The dataset linked to this chart may have been deleted.": [ - "De aan deze grafiek gekoppelde dataset is mogelijk verwijderd." + "Certified by": ["Gecertificeerd door"], + "Certification details": ["Details certificering"], + "Details of the certification": ["Details van de certificering"], + "Is dimension": ["Is dimensie"], + "Default datetime": [""], + "Is filterable": ["Kan gefilterd worden"], + "Select owners": [""], + "Modified columns: %s": ["Gewijzigde kolommen: %s"], + "Removed columns: %s": ["Verwijderde kolommen: %s"], + "New columns added: %s": ["Nieuwe kolommen toegevoegd: %s"], + "Metadata has been synced": ["Metadata zijn gesynchroniseerd"], + "An error has occurred": ["Er is een fout opgetreden"], + "Column name [%s] is duplicated": ["Kolomnaam [%s] is gedupliceerd"], + "Metric name [%s] is duplicated": ["Meeteenheid naam [%s] is dubbel"], + "Calculated column [%s] requires an expression": [ + "Berekende kolom [%s] vereist een uitdrukking" ], - "The datasource couldn't be loaded": [ - "De datasource kon niet geladen worden" + "Invalid currency code in saved metrics": [""], + "Basic": ["Berekende kolom [%s] vereist een uitdrukking"], + "Default URL": ["Standaard URL"], + "Default URL to redirect to when accessing from the dataset list page": [ + "Standaard URL om naar door te verwijzen bij toegang vanaf de dataset lijst pagina" ], - "The datasource is too large to query.": [ - "De gegevensbron is te groot om te bevragen." + "Autocomplete filters": ["Autocomplete filters"], + "Whether to populate autocomplete filters options": [ + "Geef aan of de autoaanvulfilteropties moeten worden ingevuld" ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Autocomplete query predicate": ["Autocomplete query predicaat"], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The distance between cells, in pixels": [""], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Cache timeout": ["Cache timeout"], + "Hours offset": ["Uur offset"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "De host “%(hostname)s” is misschien down en kan niet worden bereikt." - ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "De host “%(hostname)s” is misschien down, en kan niet bereikt worden op poort %(port)s." - ], - "The host might be down, and can't be reached on the provided port.": [ + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "De hostnaam “%(hostname)s” kan niet worden opgelost." + "": [""], + "Click the lock to make changes.": [ + "Klik op het slotje om wijzigingen aan te brengen." ], - "The hostname provided can't be resolved.": [ - "De opgegeven hostnaam kan niet worden gevonden." + "Click the lock to prevent further changes.": [ + "Klik op het slotje om verdere wijzigingen te voorkomen." ], - "The id of the active chart": ["Het id van de actieve grafiek"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "virtual": ["virtueel"], + "Dataset name": ["Dataset naam"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ + "Physical": ["Fysiek"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "De metadata_params in Extra veld is niet correct geconfigureerd. De sleutel %(key)s is ongeldig." - ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "De metadata_params in Extra veld is niet correct geconfigureerd. De sleutel %{key}s is ongeldig." + "D3 format": ["D3 formaat"], + "Metric currency": [""], + "Select or type currency symbol": [""], + "Warning": ["Waarschuwing"], + "Optional warning about use of this metric": [ + "Optionele waarschuwing voor het gebruik van deze meeteenheid" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Be careful.": ["Pas op."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Sync columns from source": ["Synchroniseer kolommen van bron"], + "Calculated columns": ["Berekende kolommen"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "" + "": [""], + "Settings": ["Instellingen"], + "The dataset has been saved": ["De dataset is opgeslagen"], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "De dataset configuratie die hier wordt getoond\n heeft invloed op alle grafieken die deze dataset gebruiken.\n Wees je ervan bewust dat het veranderen van instellingen\n hier invloed kan hebben op andere grafieken\n op ongewenste manieren." ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "" + "Are you sure you want to save and apply changes?": [ + "Weet u zeker dat u de wijzigingen wilt opslaan en toepassen?" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Confirm save": ["Opslaan bevestigen"], + "OK": ["OK"], + "Edit Dataset ": ["Bewerk Dataset "], + "Use legacy datasource editor": ["Gebruik de legacy datasource editor"], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "" + "DELETE": ["VERWIJDER"], + "delete": ["verwijder"], + "Type \"%s\" to confirm": ["Type “%s” om te bevestigen"], + "Click to edit": ["Klik om te bewerken"], + "You don't have the rights to alter this title.": [ + "Je hebt niet de rechten om deze titel te veranderen." ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "No databases match your search": [""], + "There are no databases available": [""], + "here": [""], + "Unexpected error": ["Onverwachte fout"], + "This may be triggered by:": ["Dit kan veroorzaakt worden door:"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": ["%s Fout"], + "Missing dataset": ["Ontbrekende dataset"], + "See more": ["Zie meer"], + "See less": ["Zie minder"], + "Copy message": ["Kopieer bericht"], + "Details": [""], + "Did you mean:": ["Bedoelde je:"], + "Parameter error": ["Parameter fout"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": ["Timeout fout"], + "Click to favorite/unfavorite": [ + "Klik om voorkeur aan te geven/voorkeur te verwijderen" + ], + "Cell content": ["Cel inhoud"], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "OVERWRITE": ["OVERSCHRIJVEN"], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["Overschrijven"], + "Import": ["Importeer"], + "Import %s": ["Importeer %s"], + "Last Updated %s": ["Laatst bijgewerkt %s"], + "Sort": [""], + "+ %s more": [""], + "%s Selected": ["%s Geselecteerd"], + "Deselect all": ["Alles deselecteren"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "No Data": ["Geen Data"], + "%s-%s of %s": ["%s-%s van %s"], + "Type a value": [""], + "Filter": [""], + "Select or type a value": [""], + "Last modified": ["Laatst gewijzigd"], + "Modified by": ["Gewijzigd door"], + "Created by": ["Gecreëerd door"], + "Created on": ["Gemaakt op"], + "Menu actions trigger": [""], + "Select ...": ["Selecteer …"], + "Reset": [""], + "Invert current page": [""], + "Click to cancel sorting": [""], + "There was an error loading the tables": [""], + "See table schema": ["Zie tabel schema"], + "Force refresh table list": ["Forceer vernieuwen tabel lijst"], + "Timezone selector": [""], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ "" ], - "The number of seconds before expiring the cache": [ - "Het aantal seconden voor het verstrijken van de cache" + "Can not move top level tab into nested tabs": [ + "Kan bovenste tabblad niet in geneste tabbladen verplaatsen" ], - "The object does not exist in the given database.": [""], - "The parameter %(parameters)s in your query is undefined.": [ - "", - "The following parameters in your query are undefined: %(parameters)s." + "This chart has been moved to a different filter scope.": [ + "Deze grafiek is verplaatst naar een ander filterbereik." ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "Het opgegeven wachtwoord voor gebruikersnaam “%(username)s” is onjuist." + "There was an issue fetching the favorite status of this dashboard.": [ + "Er was een probleem met het ophalen van de voorkeur status van dit dashboard." ], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "There was an issue favoriting this dashboard.": [ + "Er was een probleem met het promoten van dit dashboard." ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "This dashboard is now published": [""], + "This dashboard is now hidden": [""], + "You do not have permissions to edit this dashboard.": [ + "U hebt geen rechten om dit dashboard te bewerken." ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "[ untitled dashboard ]": [""], + "This dashboard was saved successfully.": [ + "Dit dashboard is succesvol opgeslagen." ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "Sorry, there was an error saving this dashboard: %s": [""], + "You do not have permission to edit this dashboard": [ + "U hebt geen toestemming om dit dashboard te bewerken" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "The pattern of timestamp format. For strings use ": [ - "Het patroon van het timestamp formaat. Voor tekenreeksen gebruik je " - ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "" + "Could not fetch all saved charts": [ + "Kon niet alle opgeslagen grafieken ophalen" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "" + "Sorry there was an error fetching saved charts: ": [ + "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " ], - "The port is closed.": ["De poort is gesloten."], - "The port number is invalid.": [""], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "" - ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": ["De query kon niet geladen worden"], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "" - ], - "The query has a syntax error.": [""], - "The query returned no data": ["De query leverde geen gegevens op"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "" + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Elk kleurenpalet dat hier wordt geselecteerd zal de kleuren overschrijven die worden toegepast op de individuele grafieken van dit dashboard" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "You have unsaved changes.": ["Je hebt niet opgeslagen wijzigingen."], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Create a new chart": ["Maak een nieuwe grafiek"], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "The report has been created": [""], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "" + "Delete this container and save to remove this message.": [ + "Verwijder deze container en sla op om dit bericht te verwijderen." ], - "The rich tooltip shows a list of all series for that point in time": [ - "" + "Refresh interval saved": [""], + "Refresh interval": ["Interval vernieuwen"], + "Refresh frequency": ["Frequentie vernieuwen"], + "Are you sure you want to proceed?": [ + "Weet je zeker dat je door wilt gaan?" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "" + "Save for this session": ["Opslaan voor deze sessie"], + "You must pick a name for the new dashboard": [ + "U moet een naam kiezen voor het nieuwe dashboard" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Save dashboard": ["Dashboard opslaan"], + "Overwrite Dashboard [%s]": ["Dashboard overschrijven [%s]"], + "Save as:": ["Opslaan als:"], + "[dashboard name]": ["[dashboard naam]"], + "also copy (duplicate) charts": ["kopieer ook (duplicate) grafieken"], + "Create new chart": ["Maak een nieuwe grafiek"], + "Filter your charts": ["Filter je grafieken"], + "Sort by %s": [""], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "The schema was deleted or renamed in the database.": [ - "Het schema werd verwijderd of hernoemd in de database." + "Added": ["Toegevoegd"], + "Viz type": ["Viz type"], + "Dataset": ["Dataset"], + "Superset chart": ["Superset grafiek"], + "Check out this chart in dashboard:": [ + "Kijk naar deze grafiek in het dashboard:" ], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Layout elements": [""], + "Load a CSS template": ["Laad een CSS sjabloon"], + "Live CSS editor": ["Live CSS editor"], + "There are no charts added to this dashboard": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Enable embedding": [""], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ "" ], - "The table was deleted or renamed in the database.": [ - "De tabel werd verwijderd of hernoemd in de database." - ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Your dashboard is too large. Please reduce its size before saving it.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "" + "Redo the action": [""], + "Edit dashboard": ["Bewerk dashboard"], + "An error occurred while fetching available CSS templates": [ + "Er is een fout opgetreden tijdens het ophalen van beschikbare CSS templates" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ - "" + "Superset dashboard": ["Superset dashboard"], + "Check out this dashboard: ": ["Kijk naar dit dashboard:"], + "Refresh dashboard": ["Vernieuw dashboard"], + "Exit fullscreen": [""], + "Enter fullscreen": [""], + "Edit properties": ["Eigenschappen bewerken"], + "Edit CSS": ["Bewerk CSS"], + "Share": ["Deel"], + "Set filter mapping": ["Filter toewijzing instellen"], + "Set auto-refresh interval": ["Stel auto-refresh in"], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Apply": ["Toepassen"], + "Error": [""], + "A valid color scheme is required": [ + "Een geldig kleurenschema is vereist" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Dashboard properties updated": [""], + "The dashboard has been saved": ["Het dashboard is opgeslagen"], + "Access": ["Toegang"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ "" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Colors": ["Kleuren"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Dashboard properties": ["Dashboard eigenschappen"], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [ - "Het type visualisatie dat moet worden weergegeven" + "Basic information": ["Basis informatie"], + "URL slug": ["URL slag"], + "A readable URL for your dashboard": [ + "Een leesbare URL voor uw dashboard" ], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [ - "De gebruiker lijkt te zijn verwijderd" + "Certification": [""], + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": ["JSON metadata"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Dit dashboard is niet gepubliceerd, het verschijnt niet in de lijst van dashboards. Klik hier om dit dashboard te publiceren." ], - "The user/password combination is not valid (Incorrect password for user).": [ + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ "" ], - "The username \"%(username)s\" does not exist.": [ - "De gebruikersnaam “%(username)s” bestaat niet." + "This dashboard is published. Click to make it a draft.": [ + "Dit dashboard is gepubliceerd. Klik op om er een ontwerp van te maken." ], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "The width of the lines": [""], - "There are associated alerts or reports": [ - "Er zijn geassocieerde waarschuwingen of rapporten" + "Draft": ["Draft"], + "Annotation layers are still loading.": [ + "Aantekening lagen worden nog steeds geladen." ], - "There are associated alerts or reports: %s,": [ - "Er zijn gerelateerde waarschuwingen of rapporten: %s," + "One ore more annotation layers failed loading.": [ + "Aantekening lagen worden nog steeds geladen." ], - "There are no charts added to this dashboard": [""], - "There are no components added to this tab": [""], - "There are no databases available": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "" + ], + "Data refreshed": [""], + "Cached %s": ["Cached %s"], + "Fetched %s": ["Opgehaald %s"], + "Query %s: %s": [""], + "Force refresh": ["Vernieuwen forceren"], + "View query": ["Bekijk zoekopdracht"], + "Share chart by email": ["Deel grafiek per e-mail"], + "Check out this chart: ": [""], + "Export to full .CSV": [""], + "Download as image": ["Download als afbeelding"], + "Search...": ["Zoek…"], + "No filter is selected.": ["Er is geen filter geselecteerd."], + "Editing 1 filter:": ["Bewerk 1 filter:"], + "Batch editing %d filters:": ["Batchbewerking %d filters:"], + "Configure filter scopes": ["Filter scopes configureren"], "There are no filters in this dashboard.": [ "Er zijn geen filters in dit dashboard." ], - "There are unsaved changes.": [""], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "" + "Expand all": ["Alles uitklappen"], + "Collapse all": ["Alles inklappen"], + "An error occurred while opening Explore": [""], + "This markdown component has an error.": [ + "Deze markdown component heeft een fout." ], - "There is no chart definition associated with this component, could it have been deleted?": [ + "This markdown component has an error. Please revert your recent changes.": [ "" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Empty row": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "edit mode": [""], + "Delete dashboard tab?": ["Dashboard tabblad verwijderen?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "There was an error fetching the favorite status: %s": [""], - "There was an error fetching your recent activity:": [ - "Er is een fout opgetreden bij het ophalen van uw recente activiteit:" - ], - "There was an error loading the schemas": [""], - "There was an error loading the tables": [""], - "There was an error saving the favorite status: %s": [""], - "There was an error with your request": [ - "Er is een fout opgetreden in uw verzoek." - ], - "There was an issue deleting %s: %s": [ - "Er was een probleem met het verwijderen van %s: %s" - ], - "There was an issue deleting the selected %s: %s": [ - "Er was een probleem met het verwijderen van de geselecteerde %s: %s" + "button (cmd + z) until you save your changes.": [""], + "CANCEL": ["ANNULEER"], + "Divider": ["Verdeler"], + "Header": ["Header"], + "Text": [""], + "Tabs": ["Tabs"], + "background": [""], + "Preview": ["Preview"], + "Sorry, something went wrong. Try again later.": [ + "Sorry, er ging iets mis. Probeer het later nog eens." ], - "There was an issue deleting the selected annotations: %s": [ - "Er was een probleem met het verwijderen van de geselecteerde aantekeningen: %s" + "Unknown value": [""], + "Add/Edit Filters": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "" ], - "There was an issue deleting the selected charts: %s": [ - "Er was een probleem met het verwijderen van de geselecteerde grafieken: %s" + "Apply filters": [""], + "Clear all": ["Wis alles"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "There was an issue deleting the selected dashboards: ": [ - "Er was een probleem met het verwijderen van de geselecteerde dashboards: " + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "There was an issue deleting the selected datasets: %s": [ - "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" + "All charts": ["Alle grafieken"], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "Cannot load filter": ["Kan filter niet laden"], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ + "" ], - "There was an issue deleting the selected layers: %s": [ - "Er was een probleem met het verwijderen van de geselecteerde lagen: %s" + "Scope": [""], + "Filter type": [""], + "Title is required": [""], + "(Removed)": ["(Verwijderd)"], + "Undo?": ["Ongedaan maken?"], + "Add filters and dividers": [""], + "Cyclic dependency detected": [""], + "Add and edit filters": [""], + "Column select": [""], + "Select a column": [""], + "No compatible columns found": [""], + "Value is required": [""], + "(deleted or invalid type)": [""], + "Add filter": ["Filter toevoegen"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ + "" ], - "There was an issue deleting the selected queries: %s": [ - "Er was een probleem bij het verwijderen van de geselecteerde query’s: %s" + "Values dependent on": [""], + "Scoping": ["Scoping"], + "Filter Configuration": [""], + "Filter Settings": [""], + "Select filter": [""], + "Range filter": [""], + "Numerical range": [""], + "Time filter": [""], + "Time range": ["Tijdsspanne"], + "Time column": [""], + "Time grain": [""], + "Group By": [""], + "Group by": ["Groep per"], + "Pre-filter is required": [""], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["Filter naam"], + "Name is required": ["Naam is vereist"], + "Filter Type": ["Filter Type"], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "" ], - "There was an issue deleting the selected templates: %s": [ - "Er was een probleem met het verwijderen van de geselecteerde templates: %s" + "Dataset is required": ["Dataset is vereist"], + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "" ], - "There was an issue deleting: %s": [ - "Er was een probleem bij het verwijderen van: %s" + "Pre-filter": [""], + "No filter": [""], + "Sort filter values": [""], + "Sort type": [""], + "Sort ascending": ["Sorteer oplopend"], + "Sort Metric": [""], + "If a metric is specified, sorting will be done based on the metric value": [ + "" ], - "There was an issue favoriting this dashboard.": [ - "Er was een probleem met het promoten van dit dashboard." + "Sort metric": ["Sorteer meeteenheid"], + "Single Value": [""], + "Single value type": [""], + "Exact": [""], + "Filter has default value": [""], + "Default Value": ["Default Value"], + "Default value is required": [""], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": ["Je hebt deze filter verwijderd."], + "Restore Filter": ["Herstel Filter"], + "Column is required": [""], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "" ], - "There was an issue fetching reports attached to this dashboard.": [""], - "There was an issue fetching the favorite status of this dashboard.": [ - "Er was een probleem met het ophalen van de voorkeur status van dit dashboard." + "Default value must be set when \"Filter value is required\" is checked": [ + "" ], - "There was an issue fetching your recent activity: %s": [ - "Er was een probleem bij het ophalen van uw recente activiteit: %s" + "Default value must be set when \"Filter has default value\" is checked": [ + "" ], - "There was an issue previewing the selected query %s": [ - "Er was een probleem met het bekijken van de geselecteerde query %s" + "Apply to all panels": ["Toepassen op alle panelen"], + "Apply to specific panels": ["Toepassen op specifieke panelen"], + "Only selected panels will be affected by this filter": [ + "Alleen geselecteerde panelen zullen door deze filter worden beïnvloed" ], - "There was an issue previewing the selected query. %s": [ - "Er was een probleem met het bekijken van de geselecteerde query. %s" + "All panels with this column will be affected by this filter": [ + "Alle panelen met deze kolom zullen door deze filter worden beïnvloed" ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "All panels": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "These are the tables this filter will be applied to.": [ - "Dit zijn de tabellen waarop dit filter zal worden toegepast." - ], - "These filters apply to the values available in the dropdowns": [ - "Deze filters zijn van toepassing op de waarden die beschikbaar zijn in de dropdowns" + "Keep editing": ["Blijf bewerken"], + "Yes, cancel": ["Ja, annuleer"], + "There are unsaved changes.": [""], + "Are you sure you want to cancel?": [ + "Weet je zeker dat je wilt annuleren?" ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Error loading chart datasources. Filters may not work correctly.": [""], + "Transparent": [""], + "White": [""], + "All filters": ["Alle filters"], + "Medium": [""], + "Tab title": ["Titel tabblad"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Equal to (=)": [""], + "Less than (<)": [""], + "Like": [""], + "Is true": [""], + "Is false": [""], + "Time granularity": [""], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "This action will permanently delete %s.": [ - "Deze actie zal %s permanent verwijderen." - ], - "This action will permanently delete the layer.": [ - "Deze actie zal de laag permanent verwijderen." + "One or many metrics to display": [ + "Eén of vele meeteenheden om weer te geven" ], - "This action will permanently delete the saved query.": [ - "Deze actie zal de opgeslagen query permanent verwijderen." + "Fixed color": ["Vaste kleur"], + "Right axis metric": ["Meeteenheid rechteras"], + "Choose a metric for right axis": [ + "Kies een meeteenheid voor de rechteras" ], - "This action will permanently delete the template.": [ - "Deze actie zal de template permanent verwijderen." + "Linear color scheme": ["Lineair kleurenpalet"], + "Color metric": ["Kleur meeteenheid"], + "One or many controls to pivot as columns": [ + "Een of meer bedieningsinstrumenten om als kolommen te pivoteren" ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ "" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "" ], - "This chart has been moved to a different filter scope.": [ - "Deze grafiek is verplaatst naar een ander filterbereik." - ], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ - "" + "Metric assigned to the [X] axis": [ + "Meeteenheid toegewezen aan de [X]-as" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ - "" + "Metric assigned to the [Y] axis": [ + "Meeteenheid toegewezen aan de [Y]-as" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Bubble size": ["Bubbelgrootte"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Color scheme": ["Kleurenschema"], + "An error occurred while starring this chart": [""], + "GROUP BY": [""], + "Use this section if you want a query that aggregates": [""], + "NOT GROUPED BY": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Dit dashboard is niet gepubliceerd, het verschijnt niet in de lijst van dashboards. Klik hier om dit dashboard te publiceren." - ], - "This dashboard is now hidden": [""], - "This dashboard is now published": [""], - "This dashboard is published. Click to make it a draft.": [ - "Dit dashboard is gepubliceerd. Klik op om er een ontwerp van te maken." - ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "Continue": [""], + "Clear form": [""], + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "This dashboard was saved successfully.": [ - "Dit dashboard is succesvol opgeslagen." - ], - "This database is managed externally, and can't be edited in Superset": [ + "Customize": ["Pas aan"], + "Generating link, please wait..": [""], + "Chart height": [""], + "Save (Overwrite)": ["Opslaan (overschrijven)"], + "Chart name": ["Grafiek naam"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["Toevoegen aan het dashboard"], + "Select a dashboard": [""], + "Select": [""], + "Save & go to dashboard": ["Opslaan en naar dashboard gaan"], + "Save chart": ["Grafiek opslaan"], + "Formatted date": [""], + "Column Formatting": [""], + "Expand data panel": [""], + "No samples were returned for this dataset": [""], + "No results": [""], + "Search Metrics & Columns": ["Zoek meeteenheden & kolommen"], + "Showing %s of %s": ["Weergave %s van %s"], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], + "Unable to retrieve dashboard colors": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "Not available": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [ - "Dit definieert het element dat op de grafiek moet worden uitgezet" - ], - "This defines the level of the hierarchy": [""], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Dit veld werkt als een Superset view, wat betekent dat Superset een query zal uitvoeren tegen deze string als een subquery." - ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Deze filter bestaat niet in het dashboard. Het zal niet worden toegepast." - ], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [ - "Deze filterset is identiek aan: “%s”" + "Controls labeled ": [""], + "Control labeled ": ["Controle gelabeld "], + "Open Datasource tab": ["Open Datasource tab"], + "Original": [""], + "Pivoted": [""], + "You do not have permission to edit this chart": [ + "U heeft geen toestemming om deze grafiek te bewerken" ], - "This functionality is disabled in your environment for security reasons.": [ + "Chart properties updated": [""], + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Person or group that has certified this chart.": [""], + "Configuration": ["Configuratie"], + "A list of users who can alter the chart. Searchable by name or username.": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "" + "Limit reached": ["Limiet bereikt"], + "Invalid lat/long configuration.": [ + "Ongeldige breedtegraad/lengtegraad configuratie." ], - "This markdown component has an error.": [ - "Deze markdown component heeft een fout." + "Reverse lat/long ": ["Omgekeerde breedtegraad/lengtegraad "], + "Longitude & Latitude columns": ["Kolommen lengtegraad en breedtegraad"], + "Delimited long & lat single column": [ + "Afgebakende lengtegraad en breedtegraad in enkele kolom" ], - "This markdown component has an error. Please revert your recent changes.": [ - "" + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Meerdere formaten geaccepteerd, zie de geopy.points Python bibliotheek voor meer details" ], - "This may be triggered by:": ["Dit kan veroorzaakt worden door:"], - "This metric might be incompatible with current dataset": [""], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Dit onderdeel bevat opties die geavanceerde analytische nabewerking van queryresultaten mogelijk maken" + "Geohash": ["Geohash"], + "textarea": ["tekstveld"], + "in modal": ["in modal"], + "Sorry, An error occurred": ["Sorry, er is een fout opgetreden"], + "Open in SQL Lab": ["Open in SQL Lab"], + "Failed to verify select options: %s": [ + "Mislukt bij het verifiëren van geselecteerde opties: %s" ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Annotation layer": ["Aantekeningenlaag"], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type is not supported.": [ - "Dit visualisatietype wordt niet ondersteund." + "Annotation layer value": [""], + "Bad formula.": [""], + "Annotation Slice Configuration": ["Configuratie van Aantekening sectie"], + "Annotation layer time column": [""], + "Interval start column": [""], + "Event time column": [""], + "This column must contain date/time information.": [""], + "Annotation layer interval end": [""], + "Interval End column": [""], + "Annotation layer title column": [""], + "Title Column": [""], + "Pick a title for you annotation.": [""], + "Annotation layer description columns": [""], + "Description Columns": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "" ], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": ["Donderdag"], - "Time": ["Tijd"], - "Time Column": [""], - "Time Comparison": [""], - "Time Format": [""], - "Time Grain": [""], - "Time Granularity": [""], - "Time Range": [""], - "Time Series": [""], - "Time Series - Bar Chart": ["Tijdreeks - Staafdiagram"], - "Time Series - Line Chart": ["Tijdreeks - Lijngrafiek"], - "Time Series - Nightingale Rose Chart": [ - "Tijdreeks - Nightingale Rose grafiek" + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "" ], - "Time Series - Paired t-test": ["Tijdreeks - Paired t-test"], - "Time Series - Percent Change": ["Tijdreeks - Procentuele verandering"], - "Time Series - Period Pivot": ["Tijdreeksen - Periode draaitabel"], - "Time Series - Stacked": ["Tijdreeksen - Gestapeld"], - "Time Series Options": [""], - "Time Shift": [""], - "Time Table View": ["Tijd tabelweergave"], - "Time column": [""], - "Time column \"%(col)s\" does not exist in dataset": [ - "Tijdkolom “%(col)s” bestaat niet in dataset" + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "" ], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": ["Tijdsvergelijking"], "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Display configuration": ["Weergave configuratie"], + "Configure your how you overlay is displayed here.": [ + "Configureer hier hoe uw overlay wordt weergegeven." + ], + "Annotation layer stroke": [""], + "Style": ["Stijl"], + "Solid": [""], + "Long dashed": [""], + "Annotation layer opacity": [""], + "Color": ["Kleur"], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hides the Line for the time series": [""], + "Layer configuration": ["Laagconfiguratie"], + "Configure the basics of your Annotation Layer.": [ + "Configureer de basis van uw Aantekeningenlaag." + ], + "Mandatory": ["Verplicht"], + "Hide layer": ["Laag verbergen"], + "Show label": [""], + "Whether to always show the annotation label": [""], + "Annotation layer type": ["Type aantekeningenlaag"], + "Choose the annotation layer type": ["Kies het aantekeningenlaagtype"], + "Annotation source type": [""], + "Choose the source of your annotations": [""], + "Remove": ["Verwijder"], + "Edit annotation layer": ["Bewerk de aantekeningenlaag"], + "Add annotation layer": ["Aantekeningenlaag toevoegen"], + "Empty collection": ["Lege verzameling"], + "Add an item": ["Voeg een item toe"], + "Remove item": ["Item verwijderen"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Time filter": [""], - "Time format": [""], - "Time grain": [""], - "Time grain filter plugin": [""], - "Time grain missing": ["Time grain ontbreekt"], - "Time granularity": [""], - "Time in seconds": ["Tijd in seconden"], - "Time range": ["Tijdsspanne"], - "Time related form attributes": ["Tijdgerelateerde vormattributen"], - "Time series columns": ["Time series kolommen"], - "Time shift": ["Time shift"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Time-series Area Chart": [""], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "dashboard": ["dashboard"], + "Dashboard scheme": [""], + "Select color scheme": [""], + "Select scheme": [""], + "Show less columns": [""], + "Show all columns": [""], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Min Width": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Time-series Bar Chart": [""], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Time-series Chart": [""], - "Time-series Line Chart": [""], - "Time-series Percent Change": [""], - "Time-series Period Pivot": [""], - "Time-series Scatter Plot": [""], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Time-series Smooth Line": [""], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Time-series Stepped Line": [""], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Time-series Table": ["Time-series Table"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Edit formatter": [""], + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": ["Waarschuwing"], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": ["Vereist"], + "Operator": [""], + "Left value": [""], + "Right value": [""], + "Target value": [""], + "Select column": [""], + "Lower threshold must be lower than upper threshold": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The width of the Isoline in pixels": [""], + "The color of the isoline": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Bewerk de dataset"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Timeout error": ["Timeout fout"], - "Timestamp format": [""], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [ - "Tijdzone-offset (in uren) voor deze databron" + "View in SQL Lab": ["Bekijk in SQL Lab"], + "Query preview": ["Query preview"], + "Missing URL parameters": [""], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [ + "De aan deze grafiek gekoppelde dataset is mogelijk verwijderd." ], - "Timezone selector": [""], - "Tiny": [""], - "Title": ["Titel"], - "Title Column": [""], - "Title is required": [""], - "Title or Slug": ["Titel of Slug"], - "To filter on a metric, use Custom SQL tab.": [ - "Om te filteren op een meeteenheid, gebruikt u het tabblad Aangepaste SQL." + "RANGE TYPE": ["BEREIK TYPE"], + "Actual time range": ["Reële tijdspanne"], + "APPLY": ["TOEPASSEN"], + "Edit time range": ["Bewerk tijdspanne"], + "Configure Advanced Time Range ": [ + "Geavanceerde tijdspanne configureren " ], - "To get a readable URL for your dashboard": [ - "Om een leesbare URL voor uw dashboard te krijgen" + "START (INCLUSIVE)": ["START (INCLUSIEF)"], + "Start date included in time range": [ + "Begindatum opgenomen in de tijdspanne" ], - "Tools": [""], - "Tooltip": [""], - "Tooltip sort by metric": [""], - "Tooltip time format": [""], - "Top": [""], - "Top right": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": [""], - "Totals": [""], - "Track job": ["Track job"], - "Transformable": [""], - "Transparent": [""], - "Transpose pivot": [""], - "Tree Chart": [""], - "Tree layout": [""], - "Tree orientation": [""], - "Treemap": ["Treemap"], - "Trend": [""], - "Triangle": [""], - "Trigger Alert If...": ["Trigger waarschuwing als…"], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "" + "END (EXCLUSIVE)": ["EINDE (EXCLUSIEF)"], + "End date excluded from time range": [ + "Einddatum uitgesloten uit de tijdspanne" + ], + "Configure Time Range: Previous...": ["Configureer Tijdspanne: Vorige…"], + "Configure Time Range: Last...": ["Configureer Tijdspanne: Laatste…"], + "Configure custom time range": ["Configureer aangepaste tijdspanne"], + "Relative quantity": ["Relatieve hoeveelheid"], + "Relative period": [""], + "Anchor to": ["Veranker naar"], + "NOW": ["NU"], + "Date/Time": ["Datum/Tijd"], + "Return to specific datetime.": [ + "Terugkeren naar specifieke datum/tijd." + ], + "Syntax": ["Syntax"], + "Example": ["Voorbeeld"], + "Moves the given set of dates by a specified interval.": [ + "Verplaatst de gegeven reeks datums met een opgegeven interval." ], - "Truncate long cells to the \"min width\" set above": [""], "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ - "" + "Get the last date by the date unit.": [ + "Verkrijg de laatste datum door de datum eenheid." ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": ["Dinsdag"], - "Type": ["Type"], - "Type \"%s\" to confirm": ["Type “%s” om te bevestigen"], - "Type a value": [""], - "Type a value here": ["Geef hier een waarde op"], - "Type is required": ["Type is vereist"], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["Type of selecteer [%s]"], - "UI Configuration": [""], - "URL": ["URL"], - "URL Parameters": [""], - "URL parameters": ["URL parameters"], - "URL slug": ["URL slag"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "" - ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "Kan geen verbinding maken met catalogus genaamd “%(catalog_name)s”." - ], - "Unable to connect to database \"%(database)s\".": [ - "Kan geen verbinding maken met database “%(database)s”." - ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "" - ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [ - "Niet in staat om zo’n holiday te vinden: [%(holiday)s]" + "Get the specify date for the holiday": [ + "Zoek de specifieke datum voor de vakantie" ], - "Unable to load columns for the selected table. Please select a different table.": [ + "Previous": ["Vorige"], + "Custom": [""], + "last day": [""], + "last week": [""], + "last month": [""], + "last quarter": [""], + "last year": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Seconds %s": [""], + "Minutes %s": [""], + "Hours %s": [""], + "Days %s": [""], + "Weeks %s": [""], + "Months %s": [""], + "Quarters %s": [""], + "Years %s": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Now": [""], + "Midnight": [""], + "Saved expressions": [""], + "Saved": ["Opgeslagen"], + "%s column(s)": ["%s kolom(men)"], + "No temporal columns found": [""], + "No saved expressions found": [""], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "" + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": ["Eenvoudig"], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": ["Custom SQL"], + "My column": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Click to edit label": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "\n Deze filter werd geërfd van de context van het dashboard.\n Dit wordt niet opgeslagen bij het opslaan van de grafiek.\n " ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "" + "%s option(s)": ["%s optie(s)"], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Geen dergelijke kolom gevonden. Om te filteren op een meeteenheid, probeer het Custom SQL tabblad." ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "" + "To filter on a metric, use Custom SQL tab.": [ + "Om te filteren op een meeteenheid, gebruikt u het tabblad Aangepaste SQL." ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "%s operator(s)": ["%s operator(s)"], + "Select operator": [""], + "Comparator option": [""], + "Type a value here": ["Geef hier een waarde op"], + "Filter value (case sensitive)": ["Filterwaarde (hoofdlettergevoelig)"], + "choose WHERE or HAVING...": ["kies WHERE of HAVING…"], + "Filters by columns": ["Filter op kolommen"], + "Filters by metrics": ["Filter op meeteenheden"], + "Fixed": ["Vast"], + "Based on a metric": ["Gebaseerd op een meeteenheid"], + "My metric": ["Mijn meeteenheid"], + "Add metric": ["Meeteenheid toevoegen"], + "Select aggregate options": [""], + "%s aggregates(s)": ["%s aggrega(a)t(en)"], + "Select saved metrics": [""], + "%s saved metric(s)": ["%s opgeslagen meeteenhe(i)d(en)"], + "Saved metric": ["Opgeslagen meeteenheid"], + "No saved metrics found": [""], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": ["kolom"], + "aggregate": ["aggregaat"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Error while fetching data: %s": [""], + "Time series columns": ["Time series kolommen"], + "Sparkline": [""], + "Period average": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["Breedte"], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "Undefined": ["Ongedefinieerd"], - "Undefined window for rolling operation": [ - "Onbepaald venster voor rolling operation" + "Optional d3 number format string": [""], + "Number format string": [""], + "Optional d3 date format string": [""], + "Select Viz Type": [""], + "Currently rendered: %s": [""], + "Recommended tags": [""], + "Search all charts": [""], + "No description available.": [""], + "Examples": ["Voorbeelden"], + "This visualization type is not supported.": [ + "Dit visualisatietype wordt niet ondersteund." ], - "Undo?": ["Ongedaan maken?"], - "Unexpected error": ["Onverwachte fout"], - "Unexpected error occurred, please check your logs for details": [ - "Er is een onverwachte fout opgetreden, controleer uw logs voor details" + "Select a visualization type": ["Selecteer een visualisatie type"], + "No results found": ["Geen resultaten gevonden"], + "Superset Chart": ["Superset Grafiek"], + "New chart": ["Nieuwe grafiek"], + "Edit chart properties": ["Grafiek eigenschappen bewerken"], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["Uitvoeren in SQL Lab"], + "Code": ["Code"], + "Markup type": ["Opmaaktype(Markup type)"], + "Pick your favorite markup language": [ + "Kies uw favoriete opmaaktaal (markup language)" ], - "Unexpected error: ": [""], - "Unknown": ["Onbekend"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Onbekende MySQL server host “%(hostname)s”." + "Put your code here": ["Plaats je code hier"], + "URL parameters": ["URL parameters"], + "Extra parameters for use in jinja templated queries": [ + "Extra parameters voor gebruik in jinja templated queries" ], - "Unknown Presto Error": ["Onbekende Presto Fout"], - "Unknown Status": [""], - "Unknown column used in orderby: %(col)s": [ - "Onbekende kolom gebruikt in orderby: %(col)s" + "Annotations and layers": ["Aantekeningen en lagen"], + "Annotation layers": ["Aantekeningenlagen"], + "My beautiful colors": [""], + "< (Smaller than)": ["< (Kleiner dan)"], + "> (Larger than)": ["> (Groter dan)"], + "<= (Smaller or equal)": ["<= (Kleiner of gelijk)"], + ">= (Larger or equal)": [">= (Groter of gelijk)"], + "== (Is equal)": ["== (Is gelijk)"], + "!= (Is not equal)": ["!= (Is niet gelijk)"], + "Not null": ["Not null"], + "60 days": ["60 dagen"], + "90 days": ["90 dagen"], + "Add notification method": ["Meldingsmethode toevoegen"], + "Add delivery method": ["Leveringswijze toevoegen"], + "Add": ["Voeg toe"], + "Edit Report": [""], + "Edit Alert": [""], + "Add Report": [""], + "Add Alert": [""], + "Report name": ["Naam rapport"], + "Alert name": ["Naam van de waarschuwing"], + "Active": ["Actief"], + "Alert condition": ["Naam waarschuwingsconditie"], + "SQL Query": ["SQL Query"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Trigger waarschuwing als…"], + "Condition": [""], + "Report schedule": ["Rapportageplanning"], + "Alert condition schedule": ["Waarschuwing conditie planning"], + "Timezone": [""], + "Schedule settings": ["Planning instellingen"], + "Log retention": ["Log retentie"], + "Working timeout": ["Time-out"], + "Time in seconds": ["Tijd in seconden"], + "Grace period": ["Grace periode"], + "Message content": ["Inhoud van het bericht"], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Methode voor kennisgeving"], + "report": ["rapport"], + "CRON expression": ["CRON expressie"], + "Report sent": ["Rapport verzonden"], + "Alert triggered, notification sent": [ + "Alarm geactiveerd, kennisgeving verzonden" ], - "Unknown error": ["Onbekende fout"], - "Unknown input format": [""], - "Unknown value": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Onveilig terugkeertype voor functie %(func)s: %(value_type)s" + "Report sending": ["Rapport verzenden"], + "Alert running": ["Alarm actief"], + "Report failed": ["Rapport mislukt"], + "Alert failed": ["Waarschuwing mislukt"], + "Nothing triggered": ["Niets getriggerd"], + "Alert Triggered, In Grace Period": [ + "Waarschuwing geactiveerd, in grace periode" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Onveilige sjabloonwaarde voor sleutel %(key)s: %(value_type)s" + "Delivery method": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [ + "Ontvangers worden gescheiden door “,” of “;”" ], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [ - "Niet-ondersteunde nabewerking: %(operation)s" + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["annotation_layer"], + "Annotation template updated": [""], + "Annotation template created": [""], + "Edit annotation layer properties": [ + "Eigenschappen aantekeningenlaag bewerken" ], - "Unsupported return value for method %(name)s": [ - "Niet-ondersteunde terugkeer waarde voor methode %(name)s" + "Annotation layer name": ["Naam aantekeningenlaag"], + "Description (this can be seen in the list)": [ + "Omschrijving (dit is te zien in de lijst)" ], - "Unsupported template value for key %(key)s": [ - "Niet-ondersteunde sjabloonwaarde voor sleutel %(key)s" + "annotation": ["aantekening"], + "The annotation has been updated": [""], + "The annotation has been saved": [""], + "Edit annotation": ["Bewerk aantekening"], + "Add annotation": ["Aantekening toevoegen"], + "date": ["datum"], + "Additional information": ["Bijkomende informatie"], + "Please confirm": ["Gelieve te bevestigen"], + "Are you sure you want to delete": [ + "Weet je zeker dat je wilt verwijderen" ], - "Unsupported time grain: %(time_grain)s": [ - "Niet-ondersteunde time grain: %(time_grain)s" - ], - "Untitled query": ["Naamloze zoekopdracht"], - "Update": ["Update"], - "Updating chart was stopped": [""], - "Upload": ["Upload"], - "Upload Credentials": [""], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file": [""], - "Upload columnar file to database": [""], - "Usage": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use Area Proportions": [""], - "Use Columns": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" - ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": ["Gebruik de legacy datasource editor"], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "" + "Modified %s": [""], + "css_template": ["css_template"], + "Edit CSS template properties": ["Bewerk CSS template eigenschappen"], + "Add CSS template": ["Voeg CSS template toe"], + "css": ["css"], + "published": ["gepubliceerd"], + "draft": ["draft"], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [ + "Sta toe dat deze database wordt opgevraagd in SQL Lab" ], - "Use the edit button to change this field": [""], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [ - "Gebruik dit om een statische kleur te definiëren voor alle cirkels" + "Allow creation of new tables based on queries": [ + "Aanmaken van nieuwe tabellen op basis van query’s mogelijk maken" ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "" + "Allow creation of new views based on queries": [ + "Aanmaken van nieuwe views gebaseerd op queries toestaan" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "User": ["Gebruiker"], - "User Roles": ["Gebruikersrollen"], - "User doesn't have the proper permissions.": [ - "Gebruiker heeft niet de juiste permissies." - ], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [ - "De gebruiker moet een waarde voor deze filter kiezen" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Sta manipulatie van de database toe met niet-SELECT statements zoals UPDATE, DELETE, CREATE, enz." ], - "User query": ["User query"], - "Username": ["Gebruikersnaam"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ "" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "Value": ["Waarde"], - "Value Domain": [""], - "Value Format": [""], - "Value bounds": [""], - "Value format": [""], - "Value is required": [""], - "Value must be greater than 0": ["Waarde moet groter zijn dan 0"], - "Values are dependent on other filters": [""], - "Values dependent on": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Vehicle Types": [""], - "Verbose Name": ["Verklarende naam"], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View All »": [""], - "View in SQL Lab": ["Bekijk in SQL Lab"], - "View keys & indexes (%s)": ["Bekijk sleutels & indexen (%s)"], - "View query": ["Bekijk zoekopdracht"], - "Viewed": ["Bekeken"], - "Viewed %s": [""], - "Viewport": [""], - "Virtual (SQL)": ["Virtueel (SQL)"], - "Virtual dataset": ["Virtuele dataset"], - "Virtual dataset query cannot be empty": [ - "Query virtuele dataset kan niet leeg zijn" - ], - "Virtual dataset query cannot consist of multiple statements": [ - "Een query voor een virtuele dataset kan niet uit meerdere statements bestaan" - ], - "Virtual dataset query must be read-only": [ - "Query voor virtuele gegevensverzameling moet alleen-lezen zijn" - ], - "Visual Tweaks": [""], - "Visualization Type": ["Type visualisatie"], - "Visualization type": ["Type visualisatie"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["Grafiek cache timeout"], + "Enter duration in seconds": [""], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Schema cache timeout": [""], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Table cache timeout": [""], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Asynchronous query execution": ["Asynchrone uitvoering van query’s"], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Secure extra": ["Secure extra"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Schemas allowed for File upload": [""], + "Additional settings.": [""], + "Metadata Parameters": [""], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Engine Parameters": [""], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Enter Primary Credentials": [""], + "Need help? Learn how to connect your database": [""], + "Database connected": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "" + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "e.g. Analytics": [""], + "Private Key & Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Display Name": ["Toon naam"], + "Name your database": [""], + "Pick a name to help you identify this database.": [ + "Kies een naam om je te helpen deze database te identificeren." ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "" + "dialect+driver://username:password@host:port/database": [ + "dialect+driver://username:password@host:port/database" ], - "Viz is missing a datasource": ["Viz mist een gegevensbron"], - "Viz type": ["Viz type"], - "WED": ["WO"], - "Want to add a new database?": [""], - "Warning": ["Waarschuwing"], - "Warning Message": ["Waarschuwing"], - "Warning!": ["Waarschuwing!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Waarschuwing! Het veranderen van de dataset kan de grafiek breken als de metadata niet bestaat." + "Refer to the": [""], + "for more information on how to structure your URI.": [""], + "Test connection": ["Test connectie"], + "database": ["database"], + "Please enter a SQLAlchemy URI to test": [ + "Voer een SQLAlchemy URI in om te testen" ], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "" + "e.g. world_population": [""], + "Database settings updated": [""], + "Sorry there was an error fetching database information: %s": [ + "Sorry er is een fout opgetreden bij het ophalen van database informatie: %s" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Or choose from a list of other databases we support:": [""], + "Supported databases": [""], + "Choose a database...": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "Connect": [""], + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "Web": [""], - "Wednesday": ["Woensdag"], - "Week": ["Week"], - "Week ending Saturday": ["Week beginnend op zaterdag"], - "Week starting Monday": ["Week beginnend op maandag"], - "Week starting Sunday": ["Week beginnend op zondag"], - "Week_ending Sunday": [""], - "Weekly Report": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "Weeks %s": [""], - "Weight": [""], - "What should be shown on the label?": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "" + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Je importeert een of meer databases die al bestaan. Overschrijven kan ertoe leiden dat een deel van je werk verloren gaat. Weet je zeker dat je wilt overschrijven?" ], - "When a secondary metric is provided, a linear color scale is used.": [ + "Database Creation Error": [""], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Wanneer de CREATE TABLE AS optie in SQL Lab wordt toegestaan, dwingt deze optie de tabel om in dit schema aangemaakt te worden" - ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "QUERY DATA IN SQL LAB": [""], + "Connect a database": [""], + "Edit database": ["Bewerk database"], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "When using 'Group By' you are limited to use a single metric": [ - "Bij gebruik van ‘Group By’ bent u beperkt tot het gebruik van één meeteenheid" - ], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "Additional Parameters": [""], + "Add additional custom parameters": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Upload Credentials": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ "" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "Geeft aan of de tabel werd gegenereerd door de “Visualize” stroom in SQL Lab" - ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Enter a name for this sheet": [""], + "Paste the shareable Google Sheet URL here": [""], + "Add sheet": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "Whether to align background charts with both positive and negative values at 0": [ + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "Whether to align positive and negative values in cell bar chart at 0": [ + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "Unable to load columns for the selected table. Please select a different table.": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a client-side search box": [""], - "Whether to include a time filter": [ - "Geef aan of een tijdfilter moet worden opgenomen" - ], - "Whether to include the percentage in the tooltip": [""], - "Whether to include the time granularity as defined in the time section": [ - "" + "Usage": [""], + "Create chart with dataset": [""], + "chart": ["grafiek"], + "No charts": ["Geen grafieken"], + "This dataset is not used to power any charts.": [""], + "Select a database table and create dataset": [""], + "[Untitled]": ["[Untitled]"], + "Unknown": ["Onbekend"], + "Viewed %s": [""], + "Edited": ["Bewerkt"], + "Created": ["Aangemaakt"], + "Viewed": ["Bekeken"], + "Favorite": ["Favoriet"], + "Mine": ["Mijn"], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [ + "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "" + "charts": [""], + "dashboards": [""], + "recents": [""], + "saved queries": [""], + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier verschijnen" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [ - "Geef aan of de autoaanvulfilteropties moeten worden ingevuld" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Recent gemaakte grafieken, dashboards en opgeslagen queries verschijnen hier" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Recent bewerkte grafieken, dashboards en opgeslagen queries verschijnen hier" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "SQL query": ["SQL query"], + "You don't have any favorites yet!": ["Je hebt nog geen favorieten!"], + "See all %(tableName)s": [""], + "Connect Google Sheet": [""], + "Upload columnar file to database": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ "" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort descending or ascending": [ - "Aflopend of oplopend sorteren" - ], - "Whether to sort results by the selected metric in descending order.": [ - "" + "Info": ["Info"], + "Logout": ["Afmelden"], + "About": ["Over"], + "Powered by Apache Superset": [""], + "SHA": [""], + "Documentation": [""], + "Report a bug": [""], + "Login": ["Aanmelden"], + "query": ["query"], + "Deleted: %s": ["Verwijderd: %s"], + "There was an issue deleting %s: %s": [ + "Er was een probleem met het verwijderen van %s: %s" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "" + "This action will permanently delete the saved query.": [ + "Deze actie zal de opgeslagen query permanent verwijderen." ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "White": [""], - "Width": ["Breedte"], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Word Rotation": [""], - "Working": [""], - "Working timeout": ["Time-out"], - "World Map": ["Wereld kaart"], - "Write a description for your query": [ - "Schrijf een omschrijving voor uw zoekopdracht." + "Delete Query?": ["Verwijder Query?"], + "Ran %s": [""], + "Saved queries": ["Opgeslagen queries"], + "Next": ["Volgende"], + "Tab name": ["Tab naam"], + "User query": ["User query"], + "Executed query": ["Uitgevoerde query"], + "Query name": ["Query naam"], + "SQL Copied!": ["SQL gekopieerd!"], + "Sorry, your browser does not support copying.": [ + "Sorry, uw browser ondersteunt het kopiëren niet." ], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column.": [ - "Schrijf dataframe index als een kolom." + "There was an issue fetching reports attached to this dashboard.": [""], + "The report has been created": [""], + "We were unable to active or deactivate this report.": [""], + "Your report could not be deleted": [""], + "Weekly Report for %s": [""], + "Weekly Report": [""], + "Edit email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Set up an email report": [""], + "Email reports active": [""], + "Delete email report": [""], + "Schedule email report": [""], + "This action will permanently delete %s.": [ + "Deze actie zal %s permanent verwijderen." ], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": ["X As"], - "X Axis Format": [""], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort By": [""], - "X-axis": [""], - "XScale Interval": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": ["Y As"], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": ["Y-as Formaat"], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort By": [""], - "Y-axis": [""], - "Y-axis bounds": [""], - "YScale Interval": [""], - "Year": ["Jaar"], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Years %s": [""], - "Yes": ["Ja"], - "Yes, cancel": ["Ja, annuleer"], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Delete Report?": [""], + "Rule added": [""], + "Add Rule": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Je importeert een of meer dashboards die al bestaan. Overschrijven kan ertoe leiden dat je een deel van je werk verloren gaat. Weet je zeker dat je wilt overschrijven?" - ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Je importeert een of meer databases die al bestaan. Overschrijven kan ertoe leiden dat een deel van je werk verloren gaat. Weet je zeker dat je wilt overschrijven?" - ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ "" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "Clause": ["Clausule"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ "" ], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "" - ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "" - ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Name of your tag": [""], + "Chosen non-numeric column": ["Gekozen niet-numerieke kolom"], + "UI Configuration": [""], + "Filter value is required": [""], + "User must select a value before applying the filter": [""], + "Single value": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": ["Controle op oplopend sorteren"], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "" + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "No time columns": ["Geen tijdskolommen"], + "Time column filter plugin": [""], + "Time grain filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], + "reports": ["rapporten"], + "alerts": ["waarschuwingen"], + "There was an issue deleting the selected %s: %s": [ + "Er was een probleem met het verwijderen van de geselecteerde %s: %s" ], - "You do not have permission to edit this chart": [ - "U heeft geen toestemming om deze grafiek te bewerken" + "Last run": ["Laatste run"], + "Execution log": ["Uitvoeringslog"], + "Bulk select": ["Selecteer in bulk"], + "No %s yet": ["Nog geen %s"], + "Owner": ["Eigenaar"], + "All": ["Alle"], + "Status": ["Status"], + "An error occurred while fetching dataset datasource values: %s": [ + "Er is een fout opgetreden bij het ophalen van dataset datasource waarden: %s" ], - "You do not have permission to edit this dashboard": [ - "U hebt geen toestemming om dit dashboard te bewerken" + "Alerts & reports": ["Waarschuwingen & rapporten"], + "Alerts": ["Waarschuwingen"], + "Reports": ["Rapporten"], + "Delete %s?": ["%s verwijderen?"], + "Are you sure you want to delete the selected %s?": [ + "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "U hebt geen rechten voor toegang tot de gegevensbron(nen): %(name)s." + "There was an issue deleting the selected layers: %s": [ + "Er was een probleem met het verwijderen van de geselecteerde lagen: %s" ], - "You do not have permissions to edit this dashboard.": [ - "U hebt geen rechten om dit dashboard te bewerken." + "Edit template": ["Bewerk template"], + "Delete template": ["Verwijder template"], + "No annotation layers yet": ["Nog geen aantekeningen lagen"], + "This action will permanently delete the layer.": [ + "Deze actie zal de laag permanent verwijderen." ], - "You don't have access to this chart.": [""], - "You don't have access to this dashboard.": [ - "Je hebt geen toegang tot dit dashboard." + "Delete Layer?": ["Laag verwijderen?"], + "Are you sure you want to delete the selected layers?": [ + "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" ], - "You don't have access to this dataset.": [""], - "You don't have any favorites yet!": ["Je hebt nog geen favorieten!"], - "You don't have permission to modify the value.": [""], - "You don't have the rights to alter this title.": [ - "Je hebt niet de rechten om deze titel te veranderen." + "There was an issue deleting the selected annotations: %s": [ + "Er was een probleem met het verwijderen van de geselecteerde aantekeningen: %s" ], - "You have no permission to approve this request": [ - "Je hebt geen toestemming om dit verzoek goed te keuren" + "Delete annotation": ["Aantekening verwijderen"], + "Annotation": ["Aantekening"], + "No annotation yet": ["Nog geen aantekeningen"], + "Back to all": [""], + "Delete Annotation?": ["Aantekening verwijderen?"], + "Are you sure you want to delete the selected annotations?": [ + "Weet u zeker dat u de geselecteerde aantekeningen wilt verwijderen?" ], - "You have removed this filter.": ["Je hebt deze filter verwijderd."], - "You have unsaved changes.": ["Je hebt niet opgeslagen wijzigingen."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Failed to load chart data": [""], + "Choose a dataset": ["Kies een dataset"], + "Choose chart type": [""], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You must pick a name for the new dashboard": [ - "U moet een naam kiezen voor het nieuwe dashboard" + "Chart imported": [""], + "There was an issue deleting the selected charts: %s": [ + "Er was een probleem met het verwijderen van de geselecteerde grafieken: %s" ], - "You must run the query successfully first": [ - "U moet de query eerst succesvol uitvoeren" + "An error occurred while fetching dashboards": [""], + "Any": ["Elke"], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars waarden: %s" ], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "" + "Certified": [""], + "Alphabetical": ["Alfabetisch"], + "Recently modified": ["Recent gewijzigd"], + "Least recently modified": ["Meest recente wijziging"], + "Import charts": ["Import grafieken "], + "Are you sure you want to delete the selected charts?": [ + "Weet je zeker dat je de geselecteerde grafieken wilt verwijderen?" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "" + "CSS templates": ["CSS templates"], + "There was an issue deleting the selected templates: %s": [ + "Er was een probleem met het verwijderen van de geselecteerde templates: %s" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "" + "CSS template": ["CSS template"], + "This action will permanently delete the template.": [ + "Deze actie zal de template permanent verwijderen." ], - "Your query could not be saved": [ - "Uw zoekopdracht kon niet worden opgeslagen" + "Delete Template?": ["Template verwijderen?"], + "Are you sure you want to delete the selected templates?": [ + "Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?" ], - "Your query could not be scheduled": ["Uw vraag kon niet worden gepland"], - "Your query could not be updated": [ - "Uw zoekopdracht kon niet worden bijgewerkt" + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Uw zoekopdracht is ingepland. Om de details van uw zoekopdracht te zien, navigeert u naar Opgeslagen zoekopdrachten" + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Je importeert een of meer dashboards die al bestaan. Overschrijven kan ertoe leiden dat je een deel van je werk verloren gaat. Weet je zeker dat je wilt overschrijven?" ], - "Your query was not properly saved": [""], - "Your query was saved": ["Uw zoekopdracht werd opgeslagen"], - "Your query was updated": ["Uw zoekopdracht werd bijgewerkt"], - "Your report could not be deleted": [""], - "Zoom": [""], - "Zoom level of the map": [""], - "[ untitled dashboard ]": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "Kolommen [Lengtegraad] en [Breedtegraad] moeten aanwezig zijn in [Groepen per]" + "Dashboard imported": [""], + "There was an issue deleting the selected dashboards: ": [ + "Er was een probleem met het verwijderen van de geselecteerde dashboards: " ], - "[Longitude] and [Latitude] must be set": [ - "[Lengtegraad] en [Breedtegraad] moeten worden ingesteld" + "An error occurred while fetching dashboard owner values: %s": [ + "Er is een fout opgetreden tijdens het ophalen van dashboard eigenaar waarden: %s" ], - "[Missing Dataset]": ["[Missing Dataset]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] Toegang tot de gegevensbron %(name)s werd verleend" + "Are you sure you want to delete the selected dashboards?": [ + "Weet je zeker dat je de geselecteerde dashboards wilt verwijderen?" ], - "[Untitled]": ["[Untitled]"], - "[copy]": [""], - "[dashboard name]": ["[dashboard naam]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "An error occurred while fetching database related data: %s": [ + "Er is een fout opgetreden tijdens het ophalen van databasegerelateerde gegevens: %s" + ], + "Upload columnar file": [""], + "AQE": ["AQE"], + "Allow data manipulation language": ["Sta data manipulatie taal toe"], + "DML": ["DML"], + "CSV upload": ["CSV upload"], + "Delete database": ["Verwijder database"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ "" ], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`confidence_interval` moet tussen 0 en 1 liggen (exclusief)" + "Delete Database?": ["Database verwijderen?"], + "Dataset imported": [""], + "An error occurred while fetching dataset related data": [ + "Er is een fout opgetreden tijdens het ophalen van dataset gerelateerde gegevens" ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "" + "An error occurred while fetching dataset related data: %s": [ + "Er is een fout opgetreden tijdens het ophalen van gegevens over de dataset: %s" ], - "`operation` property of post processing object undefined": [ - "`operation` eigenschap van post processing object ongedefinieerd" + "Physical dataset": ["Fysieke dataset"], + "Virtual dataset": ["Virtuele dataset"], + "An error occurred while fetching datasets: %s": [ + "Er is een fout opgetreden bij het ophalen van datasets: %s" ], - "`prophet` package not installed": [ - "`prophet` package niet geïnstalleerd" + "An error occurred while fetching schema values: %s": [ + "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" ], - "`rename_columns` must have the same length as `columns`.": [ - "`rename_columns` moet dezelfde lengte hebben als `columns`." + "An error occurred while fetching dataset owner values: %s": [ + "Er is een fout opgetreden tijdens het ophalen van de eigenaarswaarden van de dataset: %s" ], - "`row_limit` must be greater than or equal to 0": [ - "`rij_limiet` moet groter of gelijk aan 0 zijn" + "Import datasets": ["Importeer datasets"], + "There was an issue deleting the selected datasets: %s": [ + "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" ], - "`row_offset` must be greater than or equal to 0": [ - "`rij_offset` moet groter zijn dan of gelijk aan 0" + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "" ], - "`width` must be greater or equal to 0": [ - "`breedte` moet groter of gelijk zijn aan 0" + "Delete Dataset?": ["Dataset verwijderen?"], + "Are you sure you want to delete the selected datasets?": [ + "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" ], - "aggregate": ["aggregaat"], - "alert": ["Waarschuwing"], - "alerts": ["waarschuwingen"], - "also copy (duplicate) charts": ["kopieer ook (duplicate) grafieken"], - "ancestor": [""], - "and": ["en"], - "annotation": ["aantekening"], - "annotation_layer": ["annotation_layer"], - "asfreq": [""], - "at": ["op"], - "auto (Smooth)": [""], - "background": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": ["bolt"], - "boolean type icon": [""], - "bottom": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "cardinal": [""], - "chart": ["grafiek"], - "charts": [""], - "choose WHERE or HAVING...": ["kies WHERE of HAVING…"], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["kolom"], - "connecting to %(dbModelName)s.": [""], - "count": [""], - "create dataset from SQL query": [""], - "css": ["css"], - "css_template": ["css_template"], - "cumsum": [""], - "cumulative": [""], - "dashboard": ["dashboard"], - "dashboards": [""], - "database": ["database"], - "dataset": ["dataset"], - "date": ["datum"], - "day": ["dag"], - "day of the month": ["dag van de maand"], - "day of the week": ["dag van de week"], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deck.gl charts": [""], - "deckGL": [""], - "delete": ["verwijder"], - "descendant": [""], - "description": ["omschrijving"], - "dialect+driver://username:password@host:port/database": [ - "dialect+driver://username:password@host:port/database" + "0 Selected": ["0 Geselecteerd"], + "%s Selected (Virtual)": ["%s Geselecteerd (Virtueel)"], + "%s Selected (Physical)": ["%s Geselecteerd (Fysiek)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s Geselecteerd (%s Fysiek, %s Virtueel)" ], - "draft": ["draft"], - "dttm": ["dttm"], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. Analytics": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": [""], - "edit mode": [""], - "error dark": [""], - "every": ["elke"], - "every day of the month": ["elke dag van de maand"], - "every day of the week": ["elke dag van de week"], - "every hour": ["elk uur"], - "every minute": [""], - "every month": ["elke maand"], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "log": ["log"], + "Execution ID": ["Uitvoerings ID"], + "Scheduled at (UTC)": ["Gepland om (UTC)"], + "Start at (UTC)": ["Start op (UTC)"], + "Error message": ["Foutmelding"], + "There was an issue fetching your recent activity: %s": [ + "Er was een probleem bij het ophalen van uw recente activiteit: %s" + ], + "Thumbnails": [""], + "Recents": ["Recente"], + "There was an issue previewing the selected query. %s": [ + "Er was een probleem met het bekijken van de geselecteerde query. %s" + ], + "TABLES": ["TABLES"], + "Open query in SQL Lab": ["Open query in SQL Lab"], + "An error occurred while fetching database values: %s": [ + "Er is een fout opgetreden tijdens het ophalen van databasewaarden: %s" + ], + "An error occurred while fetching user values: %s": [""], + "Search by query text": ["Zoek op querytekst"], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "here": [""], - "hour": ["uur"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "in": ["in"], - "in modal": ["in modal"], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": ["joined"], - "json isn't valid": ["json is ongeldig"], - "key a-z": [""], - "key z-a": [""], - "label": [""], - "last day": [""], - "last month": [""], - "last quarter": [""], - "last week": [""], - "last year": [""], - "latest partition:": ["laatste partitie:"], - "left": [""], - "less than {min} {name}": [""], - "log": ["log"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "onderste percentiel moet groter zijn dan 0 en kleiner dan 100. Moet lager zijn dan het bovenste percentiel." + "Query imported": [""], + "There was an issue previewing the selected query %s": [ + "Er was een probleem met het bekijken van de geselecteerde query %s" ], - "mean": [""], - "median": [""], - "minute": ["minuut"], - "minute(s)": [""], - "month": ["maand"], - "more than {max} {name}": [""], - "must have a value": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "on": ["op"], - "or use existing ones from the panel on the right": [""], - "orderby column must be populated": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "" + "Import queries": ["Importeer queries"], + "Link Copied!": ["Link gekopieerd!"], + "There was an issue deleting the selected queries: %s": [ + "Er was een probleem bij het verwijderen van de geselecteerde query’s: %s" + ], + "Edit query": ["Bewerk query"], + "Copy query URL": ["Kopieer query URL"], + "Export query": ["Exporteer query"], + "Delete query": ["Verwijder query"], + "Are you sure you want to delete the selected queries?": [ + "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" ], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": ["gepubliceerd"], "queries": ["queries"], - "query": ["query"], - "reboot": ["herstart"], - "recents": [""], - "report": ["rapport"], - "reports": ["rapporten"], - "restore zoom": [""], - "right": [""], - "saved queries": [""], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "tag": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "stack": [""], - "std": [""], - "step-before": [""], - "string type icon": [""], - "sum": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": ["tekstveld"], - "top": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Invalid input": [""], + "Unexpected error: ": [""], + "(no description, click to see stack trace)": [""], + "Issue 1000 - The dataset is too large to query.": [""], + "Issue 1001 - The database is under an unusual load.": [""], + "An error occurred while fetching %s info: %s": [""], + "An error occurred while fetching %ss: %s": [""], + "An error occurred while creating %ss: %s": [""], + "Please re-export your file and try importing again": [""], + "An error occurred while importing %s: %s": [""], + "There was an error fetching the favorite status: %s": [""], + "There was an error saving the favorite status: %s": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [ + "Er is een fout opgetreden bij het ophalen van uw recente activiteit:" + ], + "There was an issue deleting: %s": [ + "Er was een probleem bij het verwijderen van: %s" + ], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ "" ], - "value ascending": [""], - "value descending": [""], - "var": [""], - "virtual": ["virtueel"], - "was created": ["werd gecreëerd"], - "week": ["week"], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["jaar"], - "zoom area": [""] + "Time-series Table": ["Time-series Table"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/nl/LC_MESSAGES/messages.po b/superset/translations/nl/LC_MESSAGES/messages.po index 6a6578d70590d..20480134c6bc6 100644 --- a/superset/translations/nl/LC_MESSAGES/messages.po +++ b/superset/translations/nl/LC_MESSAGES/messages.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Superset VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2022-02-25 11:59+0100\n" "Last-Translator: FULL NAME \n" "Language: nl\n" @@ -32,18300 +32,18091 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" -"\n" -" Deze filter werd geërfd van de context van het dashboard." -"\n" -" Dit wordt niet opgeslagen bij het opslaan van de grafiek." -"\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "De gegevensbron is te groot om te bevragen." -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" -"\n" -" Fout: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "De database wordt ongebruikelijk zwaar belast." -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" -msgstr "" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "De database gaf een onverwachte foutmelding." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "Dashboard opslaan" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "De kolom werd verwijderd of hernoemd in de database." -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -#, fuzzy -msgid " a new one" -msgstr "Gewijzigd op" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "De tabel werd verwijderd of hernoemd in de database." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " -msgstr " uitdrukking die moet voldoen aan de " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "Een of meer in de query opgegeven parameters ontbreken." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "De opgegeven hostnaam kan niet worden gevonden." + +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "De poort is gesloten." + +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "een fout is opgetreden in Superset tijdens het uitvoeren van een commando." + +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "Er is een onverwachte fout opgetreden in Superset." + +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -#, fuzzy -msgid " to add calculated columns" -msgstr "Berekende kolommen" +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -#, fuzzy -msgid " to add metrics" -msgstr "Meeteenheid toevoegen" +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Ofwel is de gebruikersnaam ofwel het wachtwoord verkeerd." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -#, fuzzy -msgid " to edit or add columns and metrics." -msgstr "%s kolom(men) en meeteenhe(i)d(en)" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "Het schema werd verwijderd of hernoemd in de database." + +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "Gebruiker heeft niet de juiste permissies." + +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" -msgstr "!= (Is niet gelijk)" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." +msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -"%(dialect)s kunnen om veiligheidsredenen niet als gegevensbron worden " -"gebruikt." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format +#: superset/errors.py:127 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" -msgstr "%(name)s.csv" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "Een of meer in de query opgegeven parameters ontbreken." + +#: superset/errors.py:137 +msgid "The object does not exist in the given database." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, fuzzy, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:138 +msgid "The query has a syntax error." msgstr "" -"Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier " -"verschijnen" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format +#: superset/errors.py:141 msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "%(suggestion)s in plaats van “%(undefinedParameter)s?”" -msgstr[1] "" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" -msgstr "%(user)s kreeg de rol %(role)s die toegang geeft tot de %(datasource)s" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" -msgstr "%(user)s’s profiel" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -"%(validator)s was niet in staat om uw query te controleren.\n" -"Controleer uw query opnieuw.\n" -"Uitzondering: %(ex)s" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s Fout" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "Wachtwoord" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Ongeldig certificaat" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 +#: superset/forms.py:72 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 +#: superset/jinja_context.py:344 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Onveilig terugkeertype voor functie %(func)s: %(value_type)s" -#: superset-frontend/src/components/ListView/ListView.tsx:245 +#: superset/jinja_context.py:355 #, python-format -msgid "%s Selected" -msgstr "%s Geselecteerd" +msgid "Unsupported return value for method %(name)s" +msgstr "Niet-ondersteunde terugkeer waarde voor methode %(name)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#: superset/jinja_context.py:371 #, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s Geselecteerd (%s Fysiek, %s Virtueel)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Onveilige sjabloonwaarde voor sleutel %(key)s: %(value_type)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/jinja_context.py:382 #, python-format -msgid "%s Selected (Physical)" -msgstr "%s Geselecteerd (Fysiek)" +msgid "Unsupported template value for key %(key)s" +msgstr "Niet-ondersteunde sjabloonwaarde voor sleutel %(key)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "" + +#: superset/sql_lab.py:302 #, python-format -msgid "%s Selected (Virtual)" -msgstr "%s Geselecteerd (Virtueel)" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "%s aggrega(a)t(en)" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "%s kolom(men)" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "%s operator(s)" - -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s optie" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s optie(s)" - -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s Fout" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "%s opgeslagen meeteenhe(i)d(en)" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "Laatst bijgewerkt %s" - -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" -msgstr "%s%s" - -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "%s-%s van %s" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(Verwijderd)" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 +#: superset/sql_lab.py:440 msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset/reports/notifications/slack.py:65 -#, python-format +#: superset/sql_lab.py:457 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset/reports/notifications/slack.py:82 +#: superset/sql_lab.py:488 #, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#: superset/sql_lab.py:510 #, python-format -msgid "+ %s more" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Viz mist een gegevensbron" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/viz.py:237 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset/views/database/forms.py:164 -msgid "." -msgstr "" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "Van datum kan niet groter zijn dan tot datum" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0 Geselecteerd" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Cached waarde niet gevonden" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "Kolommen ontbreken in databron: %(invalid_columns)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "dag" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Tijd tabelweergave" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Kies ten minste één meeteenheid" + +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" msgstr "" +"Bij gebruik van ‘Group By’ bent u beperkt tot het gebruik van één " +"meeteenheid" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 uur" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Kalender Heatmap" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -#, fuzzy -msgid "1 hourly frequency" -msgstr "Frequentie vernieuwen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Bubbelgrafiek" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 minuut" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Gelieve 3 verschillende meeteenheid labels te gebruiken" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Kies een meeteenheid voor x, y en grootte" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Kogel diagram" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Kies een meeteenheid om weer te geven" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "week" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Tijdreeks - Lijngrafiek" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -#, fuzzy -msgid "1 week starting Monday (freq=W-MON)" -msgstr "Week beginnend op maandag" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -#, fuzzy -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "Week beginnend op zondag" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Tijdreeks - Staafdiagram" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "jaar" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Tijdreeksen - Periode draaitabel" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Tijdreeks - Procentuele verandering" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -#, fuzzy -msgid "1 year end frequency" -msgstr "Frequentie vernieuwen" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Tijdreeksen - Gestapeld" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -#, fuzzy -msgid "1 year start frequency" -msgstr "Frequentie vernieuwen" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histogram" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10 minuten" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Er moet minstens één numerieke kolom gespecificeerd zijn" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "week" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Verdeling - Staafdiagram" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Overlapping tussen Series en Breakdowns is niet mogelijk" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15 minuten" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Kies minstens één veld voor [Series]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "week" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Kies precies 2 kolommen als [Bron / Doel]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Directed Force Layout" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Landenkaart" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -#, fuzzy -msgid "2 years" -msgstr "jaar" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Wereld kaart" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Parallelle coördinaten" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Heatmap" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Horizon-grafieken" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "90 dagen" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[Lengtegraad] en [Breedtegraad] moeten worden ingesteld" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Moet een [Group By] kolom hebben om ‘count’ als [Label] te hebben" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" -msgstr "" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "Keuze van [Label] moet aanwezig zijn in [Groep door]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -#, fuzzy -msgid "3 years" -msgstr "jaar" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "Keuze van [Punt radius] moet aanwezig zijn in [Groep door]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" +"Kolommen [Lengtegraad] en [Breedtegraad] moeten aanwezig zijn in [Groepen" +" per]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30 dagen" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -#, fuzzy -msgid "30 days ago" -msgstr "30 dagen" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - Meerdere Lagen" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" -msgstr "" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Ongeldige ruimtelijke sleutel" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 minuten" +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "Ongeldig ruimtelijk punt aangetroffen: %s" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 seconden" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - Scatter plot" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - Screen Grid" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - 3D Grid" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5 minuten" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - Paths" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 minuten" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - Polygon" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D HEX" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 +#: superset/viz.py:2271 #, fuzzy -msgid "5 seconds" -msgstr "30 seconden" +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Paths" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 +#: superset/viz.py:2292 #, fuzzy -msgid "52 weeks" -msgstr "week" +msgid "Deck.gl - Contour" +msgstr "Deck.gl - Arc" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - GeoJSON" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -#, fuzzy -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "Week beginnend op maandag" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - Arc" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" -msgstr "" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Event flow" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60 dagen" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Tijdreeks - Paired t-test" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Tijdreeks - Nightingale Rose grafiek" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -#, fuzzy -msgid "7 days" -msgstr "90 dagen" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Partition Diagram" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "" +#: superset/viz.py:2676 +#, fuzzy +msgid "Please choose at least one groupby" +msgstr "Kies ten minste één veld ‘Groeperen op’ " -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90 dagen" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "%(num)d Aantekeningenlaag verwijderd" +msgstr[1] "%(num)d aantekeninglagen verwijderd" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Alle tekst" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "< (Kleiner dan)" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "%(num)d aantekening verwijderd" +msgstr[1] "%(num)d aantekeningen verwijderd" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "<= (Kleiner of gelijk)" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "Verwijderde %(num)d grafiek" +msgstr[1] "Verwijderde %(num)d grafieken" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 #, fuzzy -msgid "" -msgstr "kolom" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "Opgeslagen meeteenheid" +msgid "Has created by" +msgstr "werd gecreëerd" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 #, fuzzy -msgid "" -msgstr "Ruimtelijk" +msgid "Created by me" +msgstr "Gecreëerd door" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "== (Is gelijk)" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "> (Groter dan)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" -msgstr ">= (Groter of gelijk)" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`confidence_interval` moet tussen 0 en 1 liggen (exclusief)" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" +"onderste percentiel moet groter zijn dan 0 en kleiner dan 100. Moet lager" +" zijn dan het bovenste percentiel." -#: superset/views/database/forms.py:194 -#, fuzzy -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -"Een door komma’s gescheiden lijst van kolommen die als datums moeten " -"worden geparseerd." -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "" -"Een door komma’s gescheiden lijst van kolommen die als datums moeten " -"worden geparseerd." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#, fuzzy -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "" -"Een door komma’s gescheiden lijst van kolommen die als datums moeten " -"worden geparseerd." - -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`breedte` moet groter of gelijk zijn aan 0" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "`rij_limiet` moet groter of gelijk aan 0 zijn" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" -msgstr "" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`rij_offset` moet groter zijn dan of gelijk aan 0" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" msgstr "" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Een mensvriendelijke naam" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: 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 "" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "Verzoek is onjuist: %(error)s" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "Verzoek is geen JSON" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/charts/data/api.py:369 +msgid "Empty query result" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" -msgstr "" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Eigenaren zijn ongeldig" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Een meeteenheid te gebruiken voor kleur" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Sommige rollen bestaan niet" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "Een leesbare URL voor uw dashboard" +#: superset/commands/exceptions.py:135 +#, fuzzy +msgid "Datasource does not exist" +msgstr "Dataset bestaat niet" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "" +#: superset/commands/exceptions.py:142 +#, fuzzy +msgid "Query does not exist" +msgstr "Grafiek bestaat niet" -#: superset/reports/commands/exceptions.py:186 -#, fuzzy, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Dataset %(name)s bestaat al" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "De parameters van de aantekeningenlaag zijn ongeldig." -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Aantekeningenlaag kon niet worden aangemaakt." -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Aantekeningenlaag kon niet worden bijgewerkt." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "" -"Een set parameters die beschikbaar worden in de query met behulp van " -"Jinja templating syntax" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Aantekeningenlaag niet gevonden." -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "Aantekeningenlaag kon niet worden verwijderd." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "Aantekeningenlaag heeft bijbehorende aantekeningen." -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "Er is een time-out opgetreden tijdens het uitvoeren van de query." +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "De naam moet uniek zijn" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "Er is een time-out opgetreden tijdens het genereren van een csv." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "Einddatum moet na begindatum liggen" -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "Korte beschrijving moet uniek zijn voor deze laag" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." -msgstr "Er is een time-out opgetreden tijdens het maken van een screenshot." +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Aantekening niet gevonden." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" -msgstr "Een geldig kleurenschema is vereist" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Aantekening parameters zijn ongeldig." -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "TOEPASSEN" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "Aantekening kon niet worden aangemaakt." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "APR" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "Aantekening kon niet worden bijgewerkt." -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "AQE" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Aantekeningen konden niet worden verwijderd." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "AUG" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Er zijn gerelateerde waarschuwingen of rapporten: %s," -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" -msgstr "" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Kan tijdstring [%(human_readable)s] niet parsen" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "Over" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" -#: 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" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "Database bestaat niet" -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Toegangsverzoeken" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Dashboards bestaan niet" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "Datasourcetype is vereist wanneer datasource_id is gegeven" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" -msgstr "" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Grafiekparameters zijn ongeldig." -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "Toegang werd gevraagd" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Grafiek kon niet worden aangemaakt." -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Actie" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "De grafiek kon niet worden bijgewerkt." -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Actie Log" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Grafieken konden niet worden verwijderd." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Acties" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Er zijn geassocieerde waarschuwingen of rapporten" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Actief" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -#, fuzzy -msgid "Actual Values" -msgstr "Nul waarden" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "Het is verboden deze grafiek te wijzigen" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Reële tijdspanne" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "Import grafiek mislukt om een onbekende reden" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#: superset/commands/chart/exceptions.py:151 #, fuzzy -msgid "Actual value" -msgstr "Nul waarden" +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Het is verboden dit dashboard te veranderen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 +#: superset/commands/chart/exceptions.py:156 #, fuzzy -msgid "Actual values" -msgstr "Nul waarden" +msgid "Chart not found" +msgstr "Grafiek %(id)s niet gevonden" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "Voeg toe" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "CSS sjabloon kon niet worden verwijderd." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" -msgstr "" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "CSS sjabloon niet gevonden." -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Voeg CSS Template toe" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Moet uniek zijn" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "Voeg CSS template toe" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Dashboard parameters zijn ongeldig." -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Voeg grafiek toe" - -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Kolom toevoegen" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "Dashboard kon niet worden aangemaakt." -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Voeg Dashboard toe" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Dashboard kon niet worden bijgewerkt." -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Voeg Database toe" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Dashboard kon niet worden verwijderd." -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Voeg Log toe" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Het is verboden dit dashboard te veranderen" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Voeg meeteenheid toe" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "Dashboard importeren mislukt om een onbekende reden" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" -msgstr "" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "Je hebt geen toegang tot dit dashboard." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Add Rule" -msgstr "" +#: superset/commands/dashboard/embedded/exceptions.py:34 +#, fuzzy +msgid "You don't have access to this embedded dashboard config." +msgstr "Je hebt geen toegang tot dit dashboard." -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Voeg Opgeslagen Query toe" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "Geen gegevens in het bestand" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Voeg een Plugin toe" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Database parameters zijn ongeldig." -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -#, fuzzy -msgid "Add a dataset" -msgstr "Voeg dataset toe" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -#, fuzzy -msgid "Add a new tab" -msgstr "Zoekopdracht in een nieuw tabblad" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Veld is verplicht" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" +"De metadata_params in Extra veld is niet correct geconfigureerd. De " +"sleutel %{key}s is ongeldig." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" -msgstr "Aantekeningenlaag toevoegen" - -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "Voeg een item toe" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "Database niet gevonden." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" -msgstr "" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "Database kon niet worden aangemaakt." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Aantekening toevoegen" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "De database kon niet worden bijgewerkt." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Aantekeningenlaag toevoegen" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "Verbinding mislukt, controleer uw verbindingsinstellingen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "Database kon niet worden verwijderd." -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -#, fuzzy -msgid "Add cross-filter" -msgstr "Filter toevoegen" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Stopte een onveilige database connectie" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Kon het database driver niet laden" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "Leveringswijze toevoegen" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "Er is een onverwachte fout opgetreden, controleer uw logs voor details" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +#: superset/commands/database/exceptions.py:147 #, fuzzy -msgid "Add extra connection information." -msgstr "Bijkomende informatie" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Filter toevoegen" +msgid "no SQL validator is configured" +msgstr "Waarschuwing validator configuratiefout." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +#, fuzzy +msgid "Was unable to check your query" +msgstr "Label voor uw zoekopdracht" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Voeg item toe" +#: superset/commands/database/exceptions.py:162 +#, fuzzy +msgid "An unexpected error occurred" +msgstr "Er is een fout opgetreden" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Meeteenheid toevoegen" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "Import database mislukt om een onbekende reden" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Kon het database driver niet laden: {}" + +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" +"%(validator)s was niet in staat om uw query te controleren.\n" +"Controleer uw query opnieuw.\n" +"Uitzondering: %(ex)s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "Meldingsmethode toevoegen" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "Waarschuwing validator configuratiefout." -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" -msgstr "" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +#, fuzzy +msgid "SSH Tunnel could not be deleted." +msgstr "Grafiek kon niet worden verwijderd." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +#, fuzzy +msgid "SSH Tunnel not found." +msgstr "CSS sjabloon niet gevonden." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 +#: superset/commands/database/ssh_tunnel/exceptions.py:38 #, fuzzy -msgid "Add the name of the chart" -msgstr "Het id van de actieve grafiek" +msgid "SSH Tunnel parameters are invalid." +msgstr "Grafiekparameters zijn ongeldig." -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#: superset/commands/database/ssh_tunnel/exceptions.py:42 #, fuzzy -msgid "Add the name of the dashboard" -msgstr "Opslaan en naar dashboard gaan" +msgid "SSH Tunnel could not be updated." +msgstr "De grafiek kon niet worden bijgewerkt." -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Toevoegen aan het dashboard" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +#, fuzzy +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "Import grafiek mislukt om een onbekende reden" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "Toegevoegd" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Toevoegen aan het dashboard" -msgstr[1] "" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "Bijkomende informatie" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "Dataset %(name)s bestaat al" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" -msgstr "" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "Database mag niet wijzigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." -msgstr "" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Een of meer kolommen bestaan niet" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" -msgstr "" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Een of meer kolommen zijn gedupliceerd" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." -msgstr "" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Een of meer kolommen bestaan al" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Een of meer meeteenheden bestaan niet" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" -msgstr "" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Een of meer meetgegevens zijn gedupliceerd" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Een of meer meetgegevens bestaan al" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Geavanceerd" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Dataset bestaat niet" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Dataset parameters zijn ongeldig." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -#, fuzzy -msgid "Advanced Data type" -msgstr "Geladen gegevens in de cache" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Dataset kon niet worden aangemaakt." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Geavanceerde analytics" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Dataset kon niet worden bijgewerkt." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "Advanced analytics Query A" -msgstr "Geavanceerde analytics" +msgid "Datasets could not be deleted." +msgstr "Dataset kon niet worden verwijderd." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 +#: superset/commands/dataset/exceptions.py:180 #, fuzzy -msgid "Advanced analytics Query B" -msgstr "Geavanceerde analytics" +msgid "Samples for dataset could not be retrieved." +msgstr "Dataset kon niet worden aangemaakt." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -#, fuzzy -msgid "Advanced data type" -msgstr "Geladen gegevens in de cache" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "Veranderen van deze dataset is verboden" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "Import dataset mislukt om een onbekende reden" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" -msgstr "" +#: superset/commands/dataset/exceptions.py:196 +#, fuzzy +msgid "Dataset could not be duplicated." +msgstr "Dataset kon niet worden bijgewerkt." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" -msgstr "" +#: superset/commands/dataset/exceptions.py:205 +#, fuzzy +msgid "The provided table was not found in the provided database" +msgstr "De tabel werd verwijderd of hernoemd in de database." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" -msgstr "" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Dataset kolom niet gevonden." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." -msgstr "" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Dataset kolom verwijderen mislukt." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "Het is verboden deze dataset te wijzigen." + +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "Dataset meeteenheid niet gevonden." + +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "Dataset meetgegevens verwijderen mislukt." + +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "aggregaat" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[Missing Dataset]" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" -msgstr "" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Opgeslagen zoekopdrachten konden niet worden verwijderd." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "Waarschuwing" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Opgeslagen query niet gevonden." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Waarschuwing geactiveerd, in grace periode" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "Import opgeslagen query mislukt om een onbekende reden." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "Naam waarschuwingsconditie" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Opgeslagen query parameters zijn ongeldig." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "Waarschuwing conditie planning" +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "Alert query heeft meer dan één rij geretourneerd. %s rijen geretourneerd" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "Waarschuwing beëindigd grace period." +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "Alert query retourneerde meer dan één kolom. %s kolommen geretourneerd" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Waarschuwing mislukt" +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "Er is een fout opgetreden tijdens opschonen van de logbestanden " -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "Waarschuwing afgevuurd tijdens grace period." +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "Alert heeft een fout gevonden tijdens het uitvoeren van een query." +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Het dashboard bestaat niet" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "Naam van de waarschuwing" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "Grafiek bestaat niet" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "Waarschuwing tijdens grace period" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "Database is nodig voor waarschuwingen" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "Alert query heeft een waarde geretourneerd die geen getal is." +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "Type is vereist" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "Alert query heeft meer dan één kolom geretourneerd." +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Kies een grafiek of een dashboard, niet beide" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "Alert query retourneerde meer dan één kolom. %s kolommen geretourneerd" +#: superset/commands/report/exceptions.py:92 +#, fuzzy +msgid "Must choose either a chart or a dashboard" +msgstr "Kies een grafiek of een dashboard, niet beide" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "Alert query retourneerde meer dan één rij." +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "Alert query heeft meer dan één rij geretourneerd. %s rijen geretourneerd" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Alarm actief" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "De parameters van het rapportageplanning zijn ongeldig." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Alarm geactiveerd, kennisgeving verzonden" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Rapportage planning kon niet worden aangemaakt." -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "Waarschuwing validator configuratiefout." +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "Rapportage planning kon niet worden bijgewerkt." -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Waarschuwingen" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Rapportage planning niet gevonden." -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "Waarschuwingen en rapporten" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "Rapportage planning verwijderen mislukt." -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Waarschuwingen & rapporten" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Rapportage planning log prune mislukt." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." msgstr "" +"Rapportage planning uitvoering mislukt bij het genereren van een " +"screenshot." -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "Alle" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "Rapportage planning mislukt bij het genereren van een csv." -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -#, fuzzy -msgid "All Entities" -msgstr "Alle filters" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "" -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "Alle tekst" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "Rapportage planning uitvoering kreeg een onverwachte fout." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Alle grafieken" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "Rapportage planning werkt nog steeds, weigert om opnieuw te berekenen." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "Rapportage planning heeft een werk time-out bereikt." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Alle filters" +#: superset/commands/report/exceptions.py:180 +#, fuzzy, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Dataset %(name)s bestaat al" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "" +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Dataset %(name)s bestaat al" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "Alle panelen met deze kolom zullen door deze filter worden beïnvloed" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "Alert query retourneerde meer dan één rij." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Sta CREATE TABLE AS toe" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "Waarschuwing validator configuratiefout." -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Sta de CREATE TABLE AS optie toe in SQL Lab" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "Alert query heeft meer dan één kolom geretourneerd." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Sta CREATE VIEW AS toe" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "Alert query heeft een waarde geretourneerd die geen getal is." -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Sta de CREATE VIEW AS optie toe in SQL Lab" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "Alert heeft een fout gevonden tijdens het uitvoeren van een query." -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "Csv upload toestaan" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Er is een time-out opgetreden tijdens het uitvoeren van de query." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "DML toestaan" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Er is een time-out opgetreden tijdens het maken van een screenshot." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Er is een time-out opgetreden tijdens het genereren van een csv." + +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "Aanmaken van nieuwe tabellen op basis van query’s mogelijk maken" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "Waarschuwing afgevuurd tijdens grace period." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "Aanmaken van nieuwe views gebaseerd op queries toestaan" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "Waarschuwing beëindigd grace period." -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "Sta data manipulatie taal toe" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Waarschuwing tijdens grace period" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Rapport Schedule state niet gevonden" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 +#: superset/commands/report/exceptions.py:261 #, fuzzy -msgid "Allow file uploads to database" -msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database." +msgid "Report schedule system error" +msgstr "Onverwachte fout in rapportschema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" -"Sta manipulatie van de database toe met niet-SELECT statements zoals " -"UPDATE, DELETE, CREATE, enz." +#: superset/commands/report/exceptions.py:267 +#, fuzzy +msgid "Report schedule client error" +msgstr "Onverwachte fout in rapportschema" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Meerdere selecties toestaan" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Onverwachte fout in rapportschema" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" -msgstr "" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "Het is verboden dit rapport te wijzigen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Er is een fout opgetreden tijdens opschonen van de logbestanden " -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "" +#: superset/commands/security/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Rapportage planning niet gevonden." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "Sta toe dat deze database wordt opgevraagd in SQL Lab" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "Grafieken konden niet worden verwijderd." -#: superset/views/database/mixins.py:114 +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "De database kon niet worden bijgewerkt." + +#: superset/commands/sql_lab/estimate.py:86 +#, python-format msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "Alfabetisch" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Gewijzigd" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -#, fuzzy -msgid "An Error Occurred" -msgstr "Er is een fout opgetreden" - -#: superset/reports/commands/exceptions.py:188 -#, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Dataset %(name)s bestaat al" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 +#: superset/commands/sql_lab/results.py:75 msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset/databases/schemas.py:289 +#: superset/commands/sql_lab/results.py:116 msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -#: superset-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: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 -msgid "An error has occurred" -msgstr "Er is een fout opgetreden" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Er is een fout opgetreden" - -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Er is een fout opgetreden bij het opslaan van dataset" +#: superset/commands/tag/exceptions.py:32 +#, fuzzy +msgid "Tag parameters are invalid." +msgstr "Dataset parameters zijn ongeldig." -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." -msgstr "" +#: superset/commands/tag/exceptions.py:36 +#, fuzzy +msgid "Tag could not be created." +msgstr "Dataset kon niet worden aangemaakt." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden tijdens het samenvouwen van het tabelschema. " -"Neem contact op met uw beheerder." +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "Dataset kon niet worden bijgewerkt." -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "Dataset kon niet worden verwijderd." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Er is een fout opgetreden bij het aanmaken van de gegevensbron" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "Dataset kon niet worden verwijderd." +#: superset/commands/temporary_cache/exceptions.py:29 #: superset/dashboards/permalink/exceptions.py:27 #: superset/explore/permalink/exceptions.py:27 #: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 msgid "An error occurred while creating the value." msgstr "" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "" + +#: superset/commands/temporary_cache/exceptions.py:37 #: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." msgstr "" -"Er is een fout opgetreden tijdens het uitbreiden van het tabelschema. " -"Neem contact op met uw beheerder." -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, python-format -msgid "An error occurred while fetching %s info: %s" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/commands/temporary_cache/exceptions.py:49 +#, fuzzy +msgid "Resource was not found." +msgstr "Rapport Schedule state niet gevonden" + +#: superset/common/query_actions.py:227 #, python-format -msgid "An error occurred while fetching %ss: %s" +msgid "Invalid result type: %(result_type)s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van beschikbare CSS " -"templates" +#: superset/common/query_context_processor.py:150 +#, fuzzy, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "Kolommen ontbreken in databron: %(invalid_columns)s" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." msgstr "" -"Er is een fout opgetreden tijdens het ophalen van de grafiek gemaakt door" -" waarden: %s" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -"Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars " -"waarden: %s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "De grafiek bestaat niet" + +#: superset/common/query_context_processor.py:702 +#, fuzzy +msgid "The chart datasource does not exist" +msgstr "De grafiek bestaat niet" + +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "De grafiek bestaat niet" + +#: superset/common/query_object.py:290 #, python-format -msgid "An error occurred while fetching created by values: %s" +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Er is een fout opgetreden tijdens het ophalen van gecreeerd door waarden:" -" %s" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -"Er is een fout opgetreden tijdens het ophalen van dashboard gemaakt door " -"waarden: %s" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "`operation` eigenschap van post processing object ongedefinieerd" + +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van dashboard eigenaar " -"waarden: %s" +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Niet-ondersteunde nabewerking: %(operation)s" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +#, fuzzy +msgid "[asc]" +msgstr "Berekende kolom [%s] vereist een uitdrukking" + +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van databasegerelateerde " -"gegevens: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Fout in jinja expressie in fetch values predicate: %(msg)s" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Er is een fout opgetreden tijdens het ophalen van databasewaarden: %s" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "Query voor virtuele gegevensverzameling moet alleen-lezen zijn" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "" -"Er is een fout opgetreden bij het ophalen van dataset datasource waarden:" -" %s" +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Fout bij het renderen van de query van de virtuele dataset: %(msg)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van de eigenaarswaarden van" -" de dataset: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "Query virtuele dataset kan niet leeg zijn" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -"Er is een fout opgetreden tijdens het ophalen van dataset gerelateerde " -"gegevens" +"Een query voor een virtuele dataset kan niet uit meerdere statements " +"bestaan" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van gegevens over de " -"dataset: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Fout in jinja expressie in RLS filters: %(msg)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Er is een fout opgetreden bij het ophalen van datasets: %s" +msgid "Metric '%(metric)s' does not exist" +msgstr "Meeteenheid “%(metric)s” bestaat niet" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "Er is een fout opgetreden bij het ophalen van functienamen." +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "Db engine retourneerde niet alle opgevraagde kolommen" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars " -"waarden: %s" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Alleen `SELECT` statements zijn toegestaan" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Alleen enkelvoudige query’s worden ondersteund" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Er is een fout opgetreden tijdens het ophalen van de tabbladstatus" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Kolommen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van de metagegevens van de " -"tabel" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Toon Kolom" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van de metagegevens van de " -"tabel. Neem contact op met uw beheerder." +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Kolom toevoegen" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "" -"Er is een fout opgetreden tijdens het ophalen van gecreeerd door waarden:" -" %s" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Kolom toevoegen" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 +#: superset/connectors/sqla/views.py:109 msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -"Er is een fout opgetreden tijdens het verbergen van de linker balk. Neem " -"contact op met uw beheerder." -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Kolom" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Er is een fout opgetreden bij het laden van de SQL" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Verklarende naam" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Omschrijving" -#: superset/key_value/exceptions.py:30 -#, fuzzy -msgid "An error occurred while parsing the key." -msgstr "Er is een fout opgetreden bij het laden van de SQL" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Groepeerbaar" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Er is een fout opgetreden tijdens opschonen van de logbestanden " +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filterbaar" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabel" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Expressie" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden tijdens het verwijderen van het tabelschema. " -"Neem contact op met uw beheerder." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Is tijdelijk" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Datumtijd Formaat" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden bij het instellen van het actieve tabblad. Neem" -" contact op met uw beheerder." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Type" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -"Er is een fout opgetreden bij het instellen van het tabblad autorun. Neem" -" contact op met uw beheerder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden bij het instellen van de database-ID van het " -"tabblad. Neem contact op met uw beheerder." +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Ongeldig datum/tijdstempel formaat" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden bij het instellen van de tabbladtitel. Neem " -"contact op met uw beheerder." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Meeteenheden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." -msgstr "" -"Er is een fout opgetreden bij het instellen van het tabblad schema. Neem " -"contact op met uw beheerder." +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Toon meeteenheid" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." -msgstr "" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Voeg meeteenheid toe" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" -msgstr "" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Bewerk meeteenheid" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Meeteenheid" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL Expressie" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." -msgstr "" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "D3 Formaat" -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" -#: superset/databases/commands/exceptions.py:162 -#, fuzzy -msgid "An unexpected error occurred" -msgstr "Er is een fout opgetreden" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Waarschuwing" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tabellen" + +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Toon tabel" + +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Importeer een tabeldefinitie" + +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Bewerk tabel" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -"Er is een onbekende fout opgetreden. Neem contact op met uw Superset-" -"beheerder" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "Veranker naar" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Tijdzone-offset (in uren) voor deze databron" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Naam van de tabel die bestaat in de brondatabase" + +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" +"Schema, zoals alleen gebruikt in sommige databases zoals Postgres, " +"Redshift en DB2" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" +"Dit veld werkt als een Superset view, wat betekent dat Superset een query" +" zal uitvoeren tegen deze string als een subquery." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Aantekening" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "Aantekeningenlagen" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Aantekeningen Lagen" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "" +"Geeft aan of de tabel werd gegenereerd door de “Visualize” stroom in SQL " +"Lab" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "Configuratie van Aantekening sectie" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" +msgstr "" +"Een set parameters die beschikbaar worden in de query met behulp van " +"Jinja templating syntax" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "Aantekening kon niet worden aangemaakt." +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "Aantekening kon niet worden bijgewerkt." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "Aantekening verwijderen mislukt." +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Aantekeningenlaag" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Gerelateerde grafieken" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "Aantekeningenlaag kon niet worden aangemaakt." +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Gewijzigd door" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "Aantekeningenlaag kon niet worden verwijderd." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Database" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "Aantekeningenlaag kon niet worden bijgewerkt." +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Laatste wijziging" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "Het verwijderen van de Aantekeningenlaag is mislukt." +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Inschakelen Filter Keuze" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Schema" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "Aantekeningenlaag heeft bijbehorende aantekeningen." +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Standaard eindpunt" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" -msgstr "" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Offset" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "Naam aantekeningenlaag" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Cache Timeout" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Aantekeningenlaag niet gevonden." +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Tabel Naam" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" -msgstr "" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Waarden ophalen Predicaat" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "De parameters van de aantekeningenlaag zijn ongeldig." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Eigenaars" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" -msgstr "" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Kolom Hoofd Datumtijd" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" -msgstr "" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "SQL Lab View" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Template parameters" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Gewijzigd" + +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "Type aantekeningenlaag" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Verwijderde %(num)d css sjabloon" +msgstr[1] "Verwijderde %(num)d css sjablonen" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Aantekeningenlagen" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Verwijderde %(num)d dashboard" +msgstr[1] "Verwijderde %(num)d dashboards" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "Aantekening lagen worden nog steeds geladen." +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Titel of Slug" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Naam van de aantekening" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Rol" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Aantekening niet gevonden." +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +#, fuzzy +msgid "Invalid state." +msgstr "Ongeldig certificaat" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "Aantekening parameters zijn ongeldig." +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Tabelnaam niet gedefinieerd" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 +#: superset/databases/filters.py:79 #, fuzzy -msgid "Annotation source" -msgstr "aantekening" +msgid "Upload Enabled" +msgstr "Upload Excel" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Veld kan niet gedecodeerd worden door JSON. %(msg)s" + +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" +"De metadata_params in Extra veld is niet correct geconfigureerd. De " +"sleutel %(key)s is ongeldig." -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Aantekeningen en lagen" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Verwijderde %(num)d dataset" +msgstr[1] "Verwijderde %(num)d datasets" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "Aantekeningen konden niet worden verwijderd." +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Nul of Leeg" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" -msgstr "Elke" - -#: 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 "" - -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -"Elk kleurenpalet dat hier wordt geselecteerd zal de kleuren overschrijven" -" die worden toegepast op de individuele grafieken van dit dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Seconde" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +#: superset/db_engine_specs/base.py:99 +msgid "5 second" msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "Voeg toe" - -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "Toegepaste dwarsfilters (%d)" - -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "Toegepaste filters (%d)" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "Toegepaste filters (%d)" - -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." +#: superset/db_engine_specs/base.py:100 +msgid "30 second" msgstr "" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Toepassen" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -msgid "Apply conditional color formatting to metric" -msgstr "" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Minuut" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 minuten" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 minuten" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" -msgstr "" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 minuten" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Toepassen op alle panelen" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Toepassen op specifieke panelen" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "April" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Uur" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -#, fuzzy -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "Weet je zeker dat je wilt annuleren?" - -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "Weet je zeker dat je wilt verwijderen" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, fuzzy, python-format -msgid "Are you sure you want to delete %s?" -msgstr "Weet je zeker dat je wilt verwijderen" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "Dag" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 -#, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Week" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Weet u zeker dat u de geselecteerde aantekeningen wilt verwijderen?" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Maand" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "Weet je zeker dat je de geselecteerde grafieken wilt verwijderen?" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Kwartaal" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Weet je zeker dat je de geselecteerde dashboards wilt verwijderen?" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Jaar" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Week beginnend op zondag" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Week beginnend op maandag" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Week beginnend op zaterdag" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#: superset/db_engine_specs/base.py:116 #, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" +msgid "Week ending Sunday" +msgstr "Week beginnend op zaterdag" -#: superset-frontend/src/pages/Tags/index.tsx:282 -#, fuzzy -msgid "Are you sure you want to delete the selected tags?" -msgstr "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Gebruikersnaam" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Wachtwoord" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -#, fuzzy -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Hostnaam of IP-adres" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "Weet je zeker dat je door wilt gaan?" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Database poort" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "Weet u zeker dat u de wijzigingen wilt opslaan en toepassen?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Database naam" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 +#: superset/db_engine_specs/bigquery.py:191 +#, python-format msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -#, fuzzy -msgid "Assign a set of parameters as" -msgstr "Dataset parameters zijn ongeldig." - -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Gerelateerde grafieken" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Async uitvoering" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "Either the username “%(username)s” or the password is incorrect." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "Asynchrone uitvoering van query’s" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Onbekende MySQL server host “%(hostname)s”." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "Augustus" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "De host “%(hostname)s” is misschien down en kan niet worden bereikt." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -#, fuzzy -msgid "Auto" -msgstr "op" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Kan geen verbinding maken met database “%(database)s”." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "Autocomplete" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "Autocomplete filters" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"Ofwel is de gebruikersnaam “%(username)s”, ofwel het wachtwoord, ofwel de" +" databasenaam “%(database)s” niet correct." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "Autocomplete query predicaat" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "De hostnaam “%(hostname)s” kan niet worden opgelost." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" -msgstr "" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Poort %(port)s op hostnaam “%(hostname)s” weigerde de verbinding." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" +"De host “%(hostname)s” is misschien down, en kan niet bereikt worden op " +"poort %(port)s." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "Beheer" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "Uitgestuurde waarden" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Onbekende MySQL server host “%(hostname)s”." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" -msgstr "" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "De gebruikersnaam “%(username)s” bestaat niet." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "Y-as Formaat" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -#, fuzzy -msgid "Axis Title" -msgstr "Titel tabblad" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Kan geen verbinding maken met database “%(database)s”." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "De gebruikersnaam “%(username)s” bestaat niet." + +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Backend" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "Het opgegeven wachtwoord voor gebruikersnaam “%(username)s” is onjuist." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "Ongeldige ruimtelijke sleutel" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" +#: superset/db_engine_specs/postgres.py:289 +#, fuzzy +msgid "Users are not allowed to set a search path for security reasons." msgstr "" +"%(dialect)s kunnen om veiligheidsredenen niet als gegevensbron worden " +"gebruikt." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "Kan geen verbinding maken met catalogus genaamd “%(catalog_name)s”." + +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Onbekende Presto Fout" + +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#: superset/explore/exceptions.py:45 #, fuzzy -msgid "Bar orientation" -msgstr "aantekening" +msgid "Samples for datasource could not be retrieved." +msgstr "Dataset kon niet worden aangemaakt." -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Base" -msgstr "database" +msgid "Changing this datasource is forbidden" +msgstr "Veranderen van deze dataset is verboden" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Home" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "Gebaseerd op een meeteenheid" +#: superset/initialization/__init__.py:242 +#, fuzzy +msgid "Database Connections" +msgstr "Test connectie" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" -msgstr "" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Gegevens" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Dashboards" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Berekende kolom [%s] vereist een uitdrukking" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Grafieken" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "Basis informatie" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Datasets" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" -msgstr "Batchbewerking %d filters:" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Plugins" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Beheer" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "Pas op." +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS-sjablonen" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL-lab" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Groot Getal" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Opgeslagen Queries" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Groot getal met trendlijn" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Query Geschiedenis" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Actie Log" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Beveiliging" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Waarschuwingen en rapporten" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Aantekeningen Lagen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." -msgstr "" +#: superset/key_value/exceptions.py:30 +#, fuzzy +msgid "An error occurred while parsing the key." +msgstr "Er is een fout opgetreden bij het laden van de SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "" +#: superset/key_value/exceptions.py:50 +#, fuzzy +msgid "An error occurred while upserting the value." +msgstr "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Bubbelgrafiek" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Lege query?" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" -msgstr "" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Onbekende kolom gebruikt in orderby: %(col)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" -msgstr "" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "Tijdkolom “%(col)s” bestaat niet in dataset" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Bubbelgrootte" +#: superset/models/helpers.py:1821 +#, fuzzy +msgid "error_message" +msgstr "Foutmelding" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" -msgstr "" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "Filterwaardenlijst kan niet leeg zijn" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -#, fuzzy -msgid "Build" -msgstr "Herbouw" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "Een waarde voor filters met vergelijkingsoperatoren moet gespecificeerd" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Selecteer in bulk" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Ongeldig filterwerkingstype: %(op)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Kogel diagram" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Fout in jinja expressie in WHERE clause: %(msg)s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Fout in jinja expressie in HAVING clausule: %(msg)s" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" -msgstr "" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "Database ondersteunt geen subquery’s" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "%(num)d opgeslagen query verwijderd" +msgstr[1] "%(num)d opgeslagen zoekopdrachten verwijderd" + +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "Verwijderde %(num)d rapport schema" +msgstr[1] "Verwijderde %(num)d rapport schema’s" + +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "Waarde moet groter zijn dan 0" + +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/reports/notifications/email.py:88 +#, python-format +msgid "" +"\n" +" Error: %(text)s\n" +" " msgstr "" +"\n" +" Fout: %(text)s\n" +" " -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "ANNULEER" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -#, fuzzy -msgid "CREATE DATASET" -msgstr "Wijzig dataset" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "CREATE TABLE AS" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "CREATE VIEW AS" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "CREATE VIEW statement" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Verwijderde %(num)d grafiek" +msgstr[1] "Verwijderde %(num)d grafieken" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -#, fuzzy -msgid "CRON Schedule" -msgstr "Rapportageplanning" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" +"%(dialect)s kunnen om veiligheidsredenen niet als gegevensbron worden " +"gebruikt." -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "CRON expressie" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset/security/manager.py:2394 +#, fuzzy, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS-sjablonen" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "CSS template" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" +msgstr[1] "" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "CSS sjabloon kon niet worden verwijderd." +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "CSS template naam" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "CSS sjabloon niet gevonden." +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "CSS templates" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "De database kon niet worden bijgewerkt." -#: superset/views/database/forms.py:109 +#: superset/tags/filters.py:31 #, fuzzy -msgid "CSV Upload" -msgstr "CSV upload" +msgid "Is custom tag" +msgstr "Configureer aangepaste tijdspanne" -#: superset/views/database/views.py:290 -#, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" -msgstr "" -"CSV-bestand “%(csv_filename)s” geüpload naar tabel “%(table_name)s” in " -"database “%(db_name)s”" +#: superset/tasks/exceptions.py:24 +#, fuzzy +msgid "Scheduled task executor not found" +msgstr "Rapport Schedule state niet gevonden" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "CSV naar Database configuratie" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Record Aantal" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "CSV upload" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Geen gegevens gevonden" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "CTAS & CVAS SCHEMA" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Filter Lijst" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Zoek" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "CTAS Schema" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Vernieuwen" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." -msgstr "" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Importeer dashboards" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Importeer Dashboard(s)" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Bestand" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Cache Timeout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Kies Bestand" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Cache Timeout (seconden)" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Upload" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Cache timeout" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -#, fuzzy -msgid "Cached" -msgstr "cached" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Test Connectie" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/utils/core.py:993 #, python-format -msgid "Cached %s" -msgstr "Cached %s" - -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "Cached waarde niet gevonden" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#: superset/utils/core.py:1246 #, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "Berekende kolom [%s] vereist een uitdrukking" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Berekende kolommen" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Soort berekening" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Kalender Heatmap" - -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "Kan bovenste tabblad niet in geneste tabbladen verplaatsen" - -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +msgid "Invalid metric object: %(metric)s" msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Overlapping tussen Series en Breakdowns is niet mogelijk" - -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Annuleer" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Niet in staat om zo’n holiday te vinden: [%(holiday)s]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/contribution.py:59 #, python-format msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -"Kan dashboard niet importeren: %(db_error)s.\n" -"Zorg ervoor dat u de database aanmaakt voordat u het dashboard importeert." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "Kan filter niet laden" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "`rename_columns` moet dezelfde lengte hebben als `columns`." -#: superset/charts/commands/exceptions.py:51 +#: superset/utils/pandas_postprocessing/cum.py:55 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Kan tijdstring [%(human_readable)s] niet parsen" +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Ongeldige cumulative operator: %(operator)s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Ongeldige geohash string" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" -msgstr "" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Ongeldige longitude/latitude" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Ongeldige geodetic string" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" -msgstr "" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "Pivot bewerking vereist ten minste één index" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "Query naam" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "De pivotbewerking moet ten minste één aggregaat omvatten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "`prophet` package niet geïnstalleerd" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Time grain ontbreekt" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -#, fuzzy -msgid "Category name" -msgstr "Query naam" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Niet-ondersteunde time grain: %(time_grain)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "Confidence interval moet tussen 0 en 1 liggen (exclusief)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "DataFrame moet een temporele kolom bevatten" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "DataFrame bevat ten minste één reeks" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" -msgstr "" +#: superset/utils/pandas_postprocessing/rename.py:53 +#, fuzzy +msgid "Label already exists" +msgstr "Er bestaat al een filterset" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" -msgstr "" +#: superset/utils/pandas_postprocessing/resample.py:43 +#, fuzzy +msgid "Resample operation requires DatetimeIndex" +msgstr "Pivot bewerking vereist ten minste één index" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "Cel inhoud" +#: superset/utils/pandas_postprocessing/resample.py:46 +#, fuzzy +msgid "Resample method should in " +msgstr "Pandas resample methode" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" -msgstr "" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Onbepaald venster voor rolling operation" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -#, fuzzy -msgid "Centroid (Longitude and Latitude): " -msgstr "Ongeldige longitude/latitude" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "Ongeldig rolling_type: %(type)s" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" -msgstr "" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Ongeldige opties voor %(rolling_type)s: %(options)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" -msgstr "Details certificering" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "Kolommen waarnaar wordt verwezen zijn niet beschikbaar in DataFrame." -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" -msgstr "" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "Kolom waarnaar aggregaat verwijst is ongedefinieerd: %(column)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" -msgstr "" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Operator ongedefinieerd voor aggregator: %(name)s" -#: 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Gecertificeerd door" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/utils/pandas_postprocessing/utils.py:172 #, python-format -msgid "Certified by %s" -msgstr "Gecertificeerd door %s" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "" +msgid "Invalid numpy function: %(operator)s" +msgstr "Ongeldige numpy functie: %(operator)s" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Gewijzigd door" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Reële tijdspanne" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Gewijzigd op" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "json is ongeldig" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Export naar YAML" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" -msgstr "" -"Het wijzigen van de dataset kan de grafiek breken indien de grafiek " -"steunt op kolommen of metadata die niet bestaan in de doel-dataset" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Export naar YAML?" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Verwijder" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "Het is verboden dit dashboard te veranderen" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Ben je zeker dat je alles wil verwijderen?" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "Het is verboden deze grafiek te wijzigen" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Is favoriet" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "Het veranderen van deze controleknop heeft onmiddellijk effect" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "Veranderen van deze dataset is verboden" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "De gegevensbron lijkt te zijn verwijderd" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "Het is verboden deze dataset te wijzigen." +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "De gebruiker lijkt te zijn verwijderd" -#: superset/explore/exceptions.py:49 +#: superset/views/core.py:289 #, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "Veranderen van deze dataset is verboden" - -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "Het is verboden dit rapport te wijzigen" +msgid "You don't have the rights to download as csv" +msgstr "Je hebt niet de rechten om " -#: superset/views/database/forms.py:206 +#: superset/views/core.py:420 #, fuzzy -msgid "Character to interpret as decimal point" -msgstr "Teken te interpreteren als decimaalteken." - -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "Teken te interpreteren als decimaalteken." - -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "Grafiek" +msgid "Error: permalink state not found" +msgstr "Rapport Schedule state niet gevonden" -#: superset/views/core.py:1762 +#: superset/views/core.py:423 superset/views/core.py:833 #, python-format -msgid "Chart %(id)s not found" -msgstr "Grafiek %(id)s niet gevonden" - -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Cache time-out" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "Laatst bijgewerkt %s" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "Grafiek ID" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Eigenaar grafiek: %s" -msgstr[1] "" +#: superset/views/core.py:509 +#, fuzzy +msgid "You don't have the rights to alter this chart" +msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#: superset/views/core.py:515 #, fuzzy -msgid "Chart Source" -msgstr "Data bron" +msgid "You don't have the rights to create a chart" +msgstr "Je hebt niet de rechten om " -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" -msgstr "" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "Verken - %(table)s" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, fuzzy, python-format -msgid "Chart [%s] has been overwritten" -msgstr "Grafiek [{}] is overschreven" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Verken" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "Grafiek [{}] is opgeslagen" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, fuzzy, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "Grafiek [{}] werd toegevoegd aan dashboard [{}]" - -#: superset/views/core.py:1099 +#: superset/views/core.py:625 msgid "Chart [{}] has been overwritten" msgstr "Grafiek [{}] is overschreven" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "Grafiek [{}] is opgeslagen" +#: superset/views/core.py:645 +#, fuzzy +msgid "You don't have the rights to alter this dashboard" +msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset/views/core.py:1124 +#: superset/views/core.py:650 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Grafiek [{}] werd toegevoegd aan dashboard [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Grafiek cache timeout" +#: superset/views/core.py:661 +#, fuzzy +msgid "You don't have the rights to create a dashboard" +msgstr "Je hebt niet de rechten om " -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Veranderingen in de grafiek" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/core.py:716 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Grafiek kon niet worden aangemaakt." - -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "Grafiek kon niet worden verwijderd." +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Grafiek %(id)s niet gevonden" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "De grafiek kon niet worden bijgewerkt." +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "Tabwl %(table)s werd niet gevonden in de database %(db)s" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "Grafiek bestaat niet" +#: superset/views/core.py:836 +#, fuzzy +msgid "permalink state not found" +msgstr "Rapport Schedule state niet gevonden" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Toon CSS Template" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" -msgstr "" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Voeg CSS Template toe" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" -msgstr "" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Bewerk CSS Template" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "Laatst gewijzigd" +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Template Naam" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "Laatst gewijzigd door %s" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Een mensvriendelijke naam" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Grafiek naam" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "Eigenaar grafiek: %s" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Custom Plugins" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Grafiekparameters zijn ongeldig." +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Custom Plugin" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" -msgstr "" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Voeg een Plugin toe" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -#, fuzzy -msgid "Chart title" -msgstr "Titel tabblad" - -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Toe grafiek" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Bewerk Plugin" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "De dataset die bij deze grafiek hoort bestaat niet meer" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "grafiek" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Kon type databron niet bepalen" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Grafieken" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Kon het viz object niet vinden" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Grafieken konden niet worden verwijderd." +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Toon grafiek" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "Check configuratie" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Voeg grafiek toe" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Controle op oplopend sorteren" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Bewerk grafiek" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 +#: superset/views/chart/mixin.py:63 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Kijk naar deze grafiek in het dashboard:" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." msgstr "" +"Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat " +"dit standaard de datasource/tabel timeout is indien ongedefinieerd." -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "Kijk naar dit dashboard:" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Maker" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" -msgstr "" -"Vink aan om filters onmiddellijk toe te passen als ze veranderen in " -"plaats van de [Toepassen] knop weer te geven" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Gegevensbron" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" -msgstr "" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Laatst gewijzigd" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "Vink aan om tijdkolom dropdown op te nemen" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parameters" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Grafiek" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Naam" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "Keuze van [Label] moet aanwezig zijn in [Groep door]" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Type visualisatie" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "Keuze van [Punt radius] moet aanwezig zijn in [Groep door]" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Toon Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Kies Bestand" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Voeg Dashboard toe" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Kies een grafiek of een dashboard, niet beide" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Bewerk Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Kies een dataset" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Kies een meeteenheid voor de rechteras" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Om een leesbare URL voor uw dashboard te krijgen" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" -msgstr "" +#: superset/views/dashboard/mixin.py:64 +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/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" +"Bepaalt of dit dashboard al dan niet zichtbaar is in de lijst van alle " +"dashboards" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Dashboard" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." -msgstr "" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Titel" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "Kies het aantekeningenlaagtype" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Rollen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" -msgstr "" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Gepubliceerd" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" -msgstr "" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Positie JSON" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSON Metadata" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "Gekozen niet-numerieke kolom" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Export" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" -msgstr "" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Export dashboards?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "" +#: superset/views/database/forms.py:109 +#, fuzzy +msgid "CSV Upload" +msgstr "CSV upload" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/forms.py:110 +#, fuzzy +msgid "Select a file to be uploaded to the database" +msgstr "Selecteer een CSV-bestand dat moet worden geüpload naar een database." + +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" +"Alleen de volgende bestandsextensies zijn toegestaan: " +"%(allowed_extensions)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:130 +#, fuzzy +msgid "Name of table to be created with CSV file" +msgstr "Naam van de tabel die op basis van csv-gegevens moet worden gemaakt." + +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." -msgstr "" +#: superset/views/database/forms.py:145 +#, fuzzy +msgid "Column Data Types" +msgstr "Geladen gegevens in de cache" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/views/database/forms.py:146 msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "Clausule" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Verwijder" +#: superset/views/database/forms.py:156 +#, fuzzy +msgid "Select a schema if the database supports this" +msgstr "Geef een schema op (als de databasesmaak dit ondersteunt)." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "Wis alles" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Scheidingsteken" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset/views/database/forms.py:162 #, fuzzy -msgid "Clear all data" -msgstr "Wis alles" +msgid "Enter a delimiter for this data" +msgstr "Voer een nieuwe titel in voor het tabblad" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "Klik op het slotje om wijzigingen aan te brengen." - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "Klik op het slotje om verdere wijzigingen te voorkomen." +#: superset/views/database/forms.py:175 +#, fuzzy +msgid "If Table Already Exists" +msgstr "Er bestaat al een filterset" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." -msgstr "" +#: superset/views/database/forms.py:176 +#, fuzzy +msgid "What should happen if the table already exists" +msgstr "Er bestaat al een filterset met deze naam" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Fout" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Vervang" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Klik om te bewerken" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Voeg toe" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, fuzzy, python-format -msgid "Click to edit %s." -msgstr "Klik om te bewerken" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Eerste spatie overslaan" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#: superset/views/database/forms.py:185 #, fuzzy -msgid "Click to edit chart." -msgstr "Klik om te bewerken" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "" - -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Klik om voorkeur aan te geven/voorkeur te verwijderen" - -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Klik om te herladen" +msgid "Skip spaces after delimiter" +msgstr "Spaties overslaan na het scheidingsteken." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Klik om het verschil te zien" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Blanco regels overslaan" -#: superset-frontend/src/components/Table/index.tsx:216 +#: superset/views/database/forms.py:189 #, fuzzy -msgid "Click to sort ascending" -msgstr "Controle op oplopend sorteren" +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "Sla lege regels over in plaats van ze te interpreteren als NaN waarden." -#: superset-frontend/src/components/Table/index.tsx:215 +#: superset/views/database/forms.py:194 #, fuzzy -msgid "Click to sort descending" -msgstr "Sorteer aflopend" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "Sluit" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Sluit alle andere tabbladen" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Tabblad sluiten" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +msgid "Columns To Be Parsed as Dates" msgstr "" +"Een door komma’s gescheiden lijst van kolommen die als datums moeten " +"worden geparseerd." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset/views/database/forms.py:195 +#, fuzzy +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" +"Een door komma’s gescheiden lijst van kolommen die als datums moeten " +"worden geparseerd." -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Code" +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Alles inklappen" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -#, fuzzy -msgid "Collapse data panel" -msgstr "Alles inklappen" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Decimaal teken" -#: superset-frontend/src/components/Table/index.tsx:214 +#: superset/views/database/forms.py:207 #, fuzzy -msgid "Collapse row" -msgstr "Alles inklappen" +msgid "Character to interpret as decimal point" +msgstr "Teken te interpreteren als decimaalteken." -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 +#: superset/views/database/forms.py:212 #, fuzzy -msgid "Collapse tab content" -msgstr "Cel inhoud" +msgid "Null Values" +msgstr "Nul waarden" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Kleur" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Index Kolom" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" -msgstr "" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Dataframe Index" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "" +#: superset/views/database/forms.py:230 +#, fuzzy +msgid "Write dataframe index as a column" +msgstr "Schrijf dataframe index als een kolom." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" -msgstr "" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Kolom Label(s)" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 +#: superset/views/database/forms.py:242 #, fuzzy -msgid "Color by" -msgstr "Sorteer op" - -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Kleur meeteenheid" +msgid "Columns To Read" +msgstr "Te lezen rijen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset/views/database/forms.py:244 +#, fuzzy +msgid "Json list of the column names that should be read" msgstr "" +"Een door komma’s gescheiden lijst van kolommen die als datums moeten " +"worden geparseerd." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Kleurenschema" +#: superset/views/database/forms.py:248 +#, fuzzy +msgid "Overwrite Duplicate Columns" +msgstr "Dubbele kolommen verwijderen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/forms.py:249 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Kleuren" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Kolom" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Koptekst rij" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset/views/database/forms.py:256 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -#, fuzzy -msgid "Column Configuration" -msgstr "Check configuratie" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Te lezen rijen" -#: superset/views/database/forms.py:144 +#: superset/views/database/forms.py:266 #, fuzzy -msgid "Column Data Types" -msgstr "Geladen gegevens in de cache" - -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" -msgstr "" +msgid "Number of rows of file to read" +msgstr "Aantal rijen van het te lezen bestand." -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Kolom Label(s)" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Rijen overslaan" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#: superset/views/database/forms.py:272 #, fuzzy -msgid "Column datatype" -msgstr "kolom" +msgid "Number of rows to skip at start of file" +msgstr "Aantal rijen om over te slaan aan het begin van het bestand." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Naam van de tabel die moet worden aangemaakt op basis van excel-gegevens." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Excel bestand" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." -msgstr "" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database." -#: superset/views/database/forms.py:233 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" -msgstr "" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Naam tabblad" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "kolom" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "Strings gebruikt voor bladnamen (standaard is het eerste blad)." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" -msgstr "Kolomnaam [%s] is gedupliceerd" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Geef een schema op (als de databasesmaak dit ondersteunt)." -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "Kolom waarnaar aggregaat verwijst is ongedefinieerd: %(column)s" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "De tabel bestaat reeds" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset/views/database/forms.py:221 +#: superset/views/database/forms.py:343 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset/views/database/forms.py:352 +#: superset/views/database/forms.py:353 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:424 -msgid "Columnar File" -msgstr "" - -#: superset/views/database/views.py:568 -#, python-format -msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Aantal rijen om over te slaan aan het begin van het bestand." -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" -msgstr "" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Aantal rijen van het te lezen bestand." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Kolommen" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Bereken Data" -#: superset/views/database/forms.py:193 -#, fuzzy -msgid "Columns To Be Parsed as Dates" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Een door komma’s gescheiden lijst van kolommen die als datums moeten " "worden geparseerd." -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "Te lezen rijen" - -#: superset/common/query_context_processor.py:132 -#, fuzzy, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "Kolommen ontbreken in databron: %(invalid_columns)s" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Teken te interpreteren als decimaalteken." -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "Kolommen ontbreken in databron: %(invalid_columns)s" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Schrijf dataframe index als een kolom." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Nul waarden" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" +#: superset/views/database/forms.py:421 +msgid "Columnar File" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -#, fuzzy -msgid "Columns to show" -msgstr "Synchroniseer kolommen van bron" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" +#: superset/views/database/forms.py:469 +msgid "Use Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +#: superset/views/database/forms.py:471 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Databases" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" -msgstr "" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Toon Database" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Voeg Database toe" + +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Bewerk Database" + +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Expose deze DB in SQL Lab" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Sta de CREATE TABLE AS optie toe in SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Sta de CREATE VIEW AS optie toe in SQL Lab" + +#: superset/views/database/mixins.py:114 msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 +#: superset/views/database/mixins.py:119 msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" +"Wanneer de CREATE TABLE AS optie in SQL Lab wordt toegestaan, dwingt deze" +" optie de tabel om in dit schema aangemaakt te worden" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +#: superset/views/database/mixins.py:165 msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" +"Indien geselecteerd, gelieve de toegestane schema’s voor csv upload in " +"Extra in te stellen." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Expose in SQL Lab" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Sta CREATE TABLE AS toe" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Bereken de bijdrage aan het totaal" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Sta CREATE VIEW AS toe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "DML toestaan" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Bijkomende informatie" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" -msgstr "" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "CTAS Schema" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "SQLAlchemy URI" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "Confidence interval moet tussen 0 en 1 liggen (exclusief)" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Cache time-out" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Configuratie" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Secure Extra" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "Geavanceerde tijdspanne configureren " +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Root certificaat" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Configureer Tijdspanne: Laatste…" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Async uitvoering" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Configureer Tijdspanne: Vorige…" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "De aangemelde gebruiker imiteren" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Configureer aangepaste tijdspanne" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Csv upload toestaan" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Filter scopes configureren" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Backend" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "Configureer de basis van uw Aantekeningenlaag." +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Extra veld kan niet gedecodeerd worden door JSON. %(msg)s" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "Configureer hier hoe uw overlay wordt weergegeven." - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -#, fuzzy -msgid "Confirm overwrite" -msgstr "Opslaan bevestigen" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "Opslaan bevestigen" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "CSV naar Database configuratie" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" +"CSV-bestand “%(csv_filename)s” geüpload naar tabel “%(table_name)s” in " +"database “%(db_name)s”" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -#, fuzzy -msgid "Connect database" -msgstr "Verwijder database" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" -msgstr "" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Excel naar Database configuratie" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "Verbinding mislukt, controleer uw verbindingsinstellingen" - -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Bijdrage" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "Controle gelabeld " - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" -msgstr "" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "Verzoek om ontbrekend data veld." -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "Gekopieerd naar het klembord!" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "Dubbele kolomnaam (of -namen): %(columns)s" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" -msgstr "" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Logs" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "Kopieer SELECT-instructie naar het klembord" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Toon Log" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Voeg Log toe" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Bewerk Log" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "Kopieer link" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Gebruiker" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "Kopieer bericht" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Actie" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Kopie van %s" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Kopieer partitie query naar klembord" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 +#: superset/views/sql_lab/views.py:93 #, fuzzy -msgid "Copy permalink to clipboard" -msgstr "Kopieer query link naar uw klembord" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Kopieer query URL" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Kopieer query link naar uw klembord" +msgid "Untitled Query" +msgstr "Naamloze zoekopdracht" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" -msgstr "Kopieer naar Klembord" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Kopieer naar klembord" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Tijd" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Kostenraming" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "Kan geen verbinding maken met database “%(database)s”." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "Kon type databron niet bepalen" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#, fuzzy +msgid "Category name" +msgstr "Query naam" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Kon niet alle opgeslagen grafieken ophalen" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#, fuzzy +msgid "Total value" +msgstr "Nul waarden" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "Kon het viz object niet vinden" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +#, fuzzy +msgid "Minimum value" +msgstr "Nul waarden" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Kon het database driver niet laden" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +#, fuzzy +msgid "Maximum value" +msgstr "Nul waarden" -#: superset/views/core.py:1454 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "Uitgestuurde waarden" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 #, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "Kon database driver niet laden: %(driver_name)s" +msgid "Certified by %s" +msgstr "Gecertificeerd door %s" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Kon het database driver niet laden: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "omschrijving" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "bolt" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Het veranderen van deze controleknop heeft onmiddellijk effect" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "SQL expressie" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Count" +msgid "Column datatype" msgstr "kolom" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +#, fuzzy +msgid "Column name" +msgstr "kolom" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Label" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +#, fuzzy +msgid "Metric name" +msgstr "Query naam" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +#, fuzzy +msgid "unknown type icon" +msgstr "Onbekende fout" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Landenkaart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Geavanceerde analytics" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "Maak" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"Dit onderdeel bevat opties die geavanceerde analytische nabewerking van " +"queryresultaten mogelijk maken" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "Maak een nieuwe grafiek" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Rollend venster" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" -msgstr "maak een " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Rolfunctie" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Geen" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Maak een nieuwe grafiek" - -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -#, fuzzy -msgid "Create chart" -msgstr "Maak een nieuwe grafiek" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Periodes" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" +"Bepaalt de grootte van de rolvenster functie, ten opzichte van de " +"geselecteerde tijdgranulariteit" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -#, fuzzy -msgid "Create dataset" -msgstr "Wijzig dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Min periodes" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -#, fuzzy -msgid "Create dataset and create chart" -msgstr "Maak een nieuwe grafiek" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Maak een nieuwe grafiek" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Tijdsvergelijking" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "Maak een nieuwe filterset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Time shift" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Aangemaakt" - -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Gecreëerd op" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Gecreëerd door" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 #, fuzzy -msgid "Created by me" -msgstr "Gecreëerd door" - -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Aangemaakte content" +msgid "30 days ago" +msgstr "30 dagen" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Gemaakt op" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -#, fuzzy -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "Import grafiek mislukt om een onbekende reden" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Een gegevensbron maken en een nieuw tabblad maken" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Maker" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -#, fuzzy -msgid "Crimson" -msgstr "Actie" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -#, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Er zijn geen filters in dit dashboard." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Er zijn geen filters in dit dashboard." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "Cross-filter scoping" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Soort berekening" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 #, fuzzy -msgid "Cross-filters" -msgstr "Cross-filter scoping" +msgid "Actual values" +msgstr "Nul waarden" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Custom Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Custom Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Regel" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +#, fuzzy +msgid "1 hourly frequency" +msgstr "Frequentie vernieuwen" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "Pas aan" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "D3 Formaat" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +#, fuzzy +msgid "1 year start frequency" +msgstr "Frequentie vernieuwen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "D3 formaat" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +#, fuzzy +msgid "1 year end frequency" +msgstr "Frequentie vernieuwen" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Pandas resample regel" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#, fuzzy +msgid "Zero imputation" +msgstr "omschrijving" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -#, fuzzy -msgid "DATETIME" -msgstr "Datum/Tijd" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" +msgstr "" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +#, fuzzy +msgid "Median values" +msgstr "Uitgestuurde waarden" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "VERWIJDER" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +#, fuzzy +msgid "Mean values" +msgstr "Uitgestuurde waarden" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +#, fuzzy +msgid "Sum values" +msgstr "Nul waarden" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Pandas resample methode" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Dashboard" - -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, fuzzy, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" - -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" - -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "Dashboard kon niet worden aangemaakt." - -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "Dashboard kon niet worden verwijderd." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "Dashboard kon niet worden bijgewerkt." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "X As" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "Het dashboard bestaat niet" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -msgid "Dashboard imported" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Dashboard parameters zijn ongeldig." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Y As" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Dashboard eigenschappen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +msgid "Y Axis Title Position" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Query" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "[dashboard naam]" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -#, fuzzy -msgid "Dashboards added to" -msgstr "[dashboard naam]" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "Dashboards konden niet worden verwijderd." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Dashboards bestaan niet" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 #, fuzzy -msgid "Dashed" -msgstr "dashboard" +msgid "default" +msgstr "Standaard" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Gegevens" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Ja" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Nee" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Data preview" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Tijdgerelateerde vormattributen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Data type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "Grafiek ID" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "DataFrame bevat ten minste één reeks" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "Het id van de actieve grafiek" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "DataFrame moet een temporele kolom bevatten" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Cache Timeout (seconden)" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "Het aantal seconden voor het verstrijken van de cache" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" msgstr "" -#: superset/views/database/views.py:321 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" msgstr "" -#: superset/initialization/__init__.py:243 -#, fuzzy -msgid "Database Connections" -msgstr "Test connectie" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "Database URL" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" msgstr "" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "Database kon niet worden aangemaakt." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "Database kon niet worden verwijderd." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Rij" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "De database kon niet worden bijgewerkt." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Series" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "Database bestaat niet" - -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "Database ondersteunt geen subquery’s" - -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Database fout" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "Database is nodig voor waarschuwingen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +#, fuzzy +msgid "Y-Axis Sort Ascending" +msgstr "Sorteer oplopend" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Database naam" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +#, fuzzy +msgid "X-Axis Sort Ascending" +msgstr "Sorteer oplopend" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "Database mag niet wijzigen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +#, fuzzy +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Aflopend of oplopend sorteren" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "Database niet gevonden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +msgid "Force categorical" +msgstr "" -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "Database niet gevonden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." +msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Database parameters zijn ongeldig." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 #, fuzzy -msgid "Database passwords" -msgstr "Database poort" +msgid "Dimensions" +msgstr "Is dimensie" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "Database poort" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Databases" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" +msgstr "" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Dataframe Index" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." +msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Entiteit" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "Dataset %(name)s bestaat al" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Dit definieert het element dat op de grafiek moet worden uitgezet" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -#, fuzzy -msgid "Dataset Name" -msgstr "Dataset naam" - -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "Dataset kolom verwijderen mislukt." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filters" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "Dataset kolom niet gevonden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "Dataset kon niet worden aangemaakt." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "Dataset kon niet worden verwijderd." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "" -#: superset/datasets/commands/exceptions.py:210 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 #, fuzzy -msgid "Dataset could not be duplicated." -msgstr "Dataset kon niet worden bijgewerkt." - -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "Dataset kon niet worden bijgewerkt." +msgid "Select a metric to display on the right axis" +msgstr "Kies een meeteenheid voor de rechteras" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Dataset bestaat niet" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Sorteer op" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "Dataset is vereist" - -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "Dataset meetgegevens verwijderen mislukt." - -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "Dataset meeteenheid niet gevonden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Dataset naam" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "Dataset parameters zijn ongeldig." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "Dataset(s) konden niet in bulk worden verwijderd." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Datasets" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Een meeteenheid te gebruiken voor kleur" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Gegevensbron" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset/commands/exceptions.py:135 -#, fuzzy -msgid "Datasource does not exist" -msgstr "Dataset bestaat niet" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "Datasourcetype is vereist wanneer datasource_id is gegeven" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Het type visualisatie dat moet worden weergegeven" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Datum filter" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "Gebruik dit om een statische kleur te definiëren voor alle cirkels" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 #, fuzzy -msgid "Date format string" -msgstr "Datetime formaat" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Datum/Tijd" +msgid "all" +msgstr "Alle" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Datumtijd Formaat" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +#, fuzzy +msgid "5 seconds" +msgstr "30 seconden" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 seconden" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Datetime formaat" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 minuut" -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "Dag" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 minuten" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 minuten" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 uur" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "Db engine retourneerde niet alle opgevraagde kolommen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +#, fuzzy +msgid "1 day" +msgstr "dag" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 #, fuzzy -msgid "Deactivate" -msgstr "Actief" +msgid "7 days" +msgstr "90 dagen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "December" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "week" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +#, fuzzy +msgid "week starting Sunday" +msgstr "Week beginnend op zondag" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +#, fuzzy +msgid "week ending Saturday" +msgstr "Week beginnend op zaterdag" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "Decimaal teken" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "maand" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - 3D Grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +#, fuzzy +msgid "quarter" +msgstr "Kwartaal" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "jaar" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - Arc" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" -#: superset/viz.py:2848 -#, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Deck.gl - Paths" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." +msgstr "" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - Meerdere Lagen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Rij limiet" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "Deck.gl - Paths" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - Polygon" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - Scatter plot" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - Screen Grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Serie limiet" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Standaard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Standaard eindpunt" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Y-as Formaat" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "Standaard URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +msgid "Currency format" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" msgstr "" -"Standaard URL om naar door te verwijzen bij toegang vanaf de dataset " -"lijst pagina" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "Default Value" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "Het kleurenschema voor de rendering grafiek" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +#, fuzzy +msgid "Truncate Metric" +msgstr "Sorteer meeteenheid" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +#, fuzzy +msgid "Show empty columns" +msgstr "Geen tijdskolommen" + +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Originele waarde" + +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#, fuzzy +msgid "Oops! An error occurred!" +msgstr "Er is een fout opgetreden" + +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#, fuzzy +msgid "ERROR" +msgstr "%s Fout" + +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -"Bepaalt de grootte van de rolvenster functie, ten opzichte van de " -"geselecteerde tijdgranulariteit" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Verwijder" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "%s verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Aantekening verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "uur" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Database verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "dag" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "Dataset verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Laag verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Verwijder Query?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +#, fuzzy +msgid "min" +msgstr "in" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Template verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "" -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "Ben je zeker dat je alles wil verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Aantekening verwijderen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Dashboard tabblad verwijderen?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Verwijder database" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Verwijder query" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Verwijder template" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "Verwijder deze container en sla op om dit bericht te verwijderen." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "verwijder" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "" -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "%(num)d aantekening verwijderd" -msgstr[1] "%(num)d aantekeningen verwijderd" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "%(num)d Aantekeningenlaag verwijderd" -msgstr[1] "%(num)d aantekeninglagen verwijderd" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "Verwijderde %(num)d grafiek" -msgstr[1] "Verwijderde %(num)d grafieken" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "Verwijderde %(num)d css sjabloon" -msgstr[1] "Verwijderde %(num)d css sjablonen" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "" -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "Verwijderde %(num)d dashboard" -msgstr[1] "Verwijderde %(num)d dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "" -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Verwijderde %(num)d dataset" -msgstr[1] "Verwijderde %(num)d datasets" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "" -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "Verwijderde %(num)d rapport schema" -msgstr[1] "Verwijderde %(num)d rapport schema’s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "" -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "Verwijderde %(num)d grafiek" -msgstr[1] "Verwijderde %(num)d grafieken" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "%(num)d opgeslagen query verwijderd" -msgstr[1] "%(num)d opgeslagen zoekopdrachten verwijderd" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Verwijderd: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Verwijderd: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "Afgebakende lengtegraad en breedtegraad in enkele kolom" - -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "Scheidingsteken" - -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Omschrijving" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "Omschrijving (dit is te zien in de lijst)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "Alles deselecteren" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "Details van de certificering" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -"Bepaalt of dit dashboard al dan niet zichtbaar is in de lijst van alle " -"dashboards" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Bedoelde je:" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Bron" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -#, fuzzy -msgid "Dimensions" -msgstr "Is dimensie" - -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -#, fuzzy -msgid "Discard" -msgstr "dashboard" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "Toon naam" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "Weergave configuratie" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -#, fuzzy -msgid "Display settings" -msgstr "Planning instellingen" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Verdeling - Staafdiagram" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "Verdeler" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -#, fuzzy -msgid "Dotted" -msgstr "Bewerkt" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -#, fuzzy -msgid "Download" -msgstr "Download naar CSV" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "Download als afbeelding" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "Download naar CSV" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "Draft" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 #, fuzzy -msgid "Duplicate" -msgstr "Tabblad Dupliceren" +msgid "heatmap" +msgstr "Heatmap" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "Dubbele kolomnaam (of -namen): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "" -#: superset/common/query_object.py:291 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 #, fuzzy -msgid "Duplicate dataset" -msgstr "Bewerk de dataset" +msgid "auto" +msgstr "op" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Tabblad Dupliceren" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Duur" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" msgstr "" -#: superset/views/chart/mixin.py:69 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -"Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat " -"dit standaard de datasource/tabel timeout is indien ongedefinieerd." -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -#, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" msgstr "" -"Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat " -"dit standaard de timeout van de dataset is indien ongedefinieerd." -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "Duur: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" msgstr "" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "EINDE (EXCLUSIEF)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 #, fuzzy -msgid "ERROR" -msgstr "%s Fout" +msgid "to" +msgstr "Stop" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Bewerk" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "Bewerk CSS" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Bewerk CSS Template" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "Bewerk CSS template eigenschappen" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Bewerk grafiek" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -#, fuzzy -msgid "Edit Chart Properties" -msgstr "Grafiek eigenschappen bewerken" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Kolom toevoegen" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Bewerk Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" +msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Bewerk Database" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Bewerk Dataset " +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Bijdrage" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Bewerk Log" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Bereken de bijdrage aan het totaal" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Bewerk meeteenheid" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Bewerk Plugin" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 #, fuzzy -msgid "Edit Rule" -msgstr "Bewerk query" - -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Bewerk Opgeslagen Query" +msgid "series" +msgstr "Series" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Bewerk tabel" - -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Bewerk aantekening" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Bewerk de aantekeningenlaag" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Eigenschappen aantekeningenlaag bewerken" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 #, fuzzy -msgid "Edit chart" -msgstr "Bewerk grafiek" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Grafiek eigenschappen bewerken" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "Bewerk dashboard" +msgid "overall" +msgstr "Wis alles" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Bewerk database" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "Beheer" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Bewerk de dataset" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Eigenschappen bewerken" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Bewerk query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +#, fuzzy +msgid "Purple" +msgstr "Regel" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Bewerk template" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Bewerk template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 #, fuzzy -msgid "Edit the dashboard" -msgstr "Bewerk dashboard" +msgid "Crimson" +msgstr "Actie" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "Bewerk tijdspanne" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "Frequentie vernieuwen" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Bewerkt" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Bewerk 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "Filterset bewerken:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "Either the username “%(username)s” or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -"Ofwel is de gebruikersnaam “%(username)s”, ofwel het wachtwoord, ofwel de" -" databasenaam “%(database)s” niet correct." -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." -msgstr "Ofwel is de gebruikersnaam ofwel het wachtwoord verkeerd." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 #, fuzzy -msgid "Embed" -msgstr "November" +msgid "Auto" +msgstr "op" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 #, fuzzy -msgid "Embed dashboard" -msgstr "Dashboard opslaan" +msgid "Miles" +msgstr "Filters" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +#, fuzzy +msgid "Kilometers" +msgstr "Filters" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "Lege verzameling" - -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -#, fuzzy -msgid "Empty column" -msgstr "kolom" - -#: superset/charts/data/api.py:366 -msgid "Empty query result" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Lege query?" - -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Inschakelen Filter Keuze" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #, fuzzy -msgid "Enable cross-filtering" -msgstr "Cross-filter scoping" +msgid "max" +msgstr "Max" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" msgstr "" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "Einde" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 #, fuzzy -msgid "End (Longitude, Latitude): " -msgstr "Ongeldige longitude/latitude" +msgid "Light" +msgstr "Hoogte" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Eindtijd" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +#, fuzzy +msgid "Satellite" +msgstr "Datum filter" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "End date" -msgstr "datum" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "Einddatum uitgesloten uit de tijdspanne" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "Einddatum moet na begindatum liggen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Opaciteit" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" msgstr "" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" msgstr "" -#: superset/views/database/forms.py:161 -#, fuzzy -msgid "Enter a delimiter for this data" -msgstr "Voer een nieuwe titel in voor het tabblad" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Voer een nieuwe titel in voor het tabblad" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Entiteit" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Fout in jinja expressie in HAVING clausule: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Fout in jinja expressie in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Fout in jinja expressie in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Fout in jinja expressie in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "Foutmelding" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Fout bij het renderen van de query van de virtuele dataset: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset/views/core.py:839 -#, fuzzy -msgid "Error: permalink state not found" -msgstr "Rapport Schedule state niet gevonden" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Kostenraming" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Kostenraming van de geselecteerde zoekopdracht" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "Kostenraming voordat een query wordt uitgevoerd" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -#, fuzzy -msgid "Event" -msgstr "Recente" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Elke" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "Voorbeeld" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Voorbeelden" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Excel bestand" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Excel naar Database configuratie" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Uitgevoerde query" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "Uitvoerings ID" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "Uitvoeringslog" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -#, fuzzy -msgid "Existing dataset" -msgstr "Ontbrekende dataset" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -#, fuzzy -msgid "Expand" -msgstr "en" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Alles uitklappen" - -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -#, fuzzy -msgid "Expand row" -msgstr "Koptekst rij" - -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Werkbalk uitbreiden" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Verken" - -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "Verken - %(table)s" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Verken de resultaten in de gegevensverkenningsweergave" - -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Export" - -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "Export dashboards?" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "Exporteer query" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -#, fuzzy -msgid "Export to .CSV" -msgstr "Export naar YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -#, fuzzy -msgid "Export to .JSON" -msgstr "Export naar YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -#, fuzzy -msgid "Export to Excel" -msgstr "Export naar YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Export naar YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Export naar YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Expose in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Expose deze DB in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +#, fuzzy +msgid "1 week" +msgstr "week" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Expressie" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "90 dagen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 dagen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +#, fuzzy +msgid "52 weeks" +msgstr "week" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +#, fuzzy +msgid "1 year" +msgstr "jaar" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +#, fuzzy +msgid "104 weeks" +msgstr "week" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "jaar" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Extra veld kan niet gedecodeerd worden door JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +#, fuzzy +msgid "156 weeks" +msgstr "week" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Extra parameters voor gebruik in jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +#, fuzzy +msgid "3 years" +msgstr "jaar" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +#, fuzzy +msgid "Actual Values" +msgstr "Nul waarden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "FEB" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "VR" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "Fout" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "Mislukt" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Fout bij het ophalen van resultaten" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Methode" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -#, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "Fout bij het ophalen van resultaten" - -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -#, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Cross-filter scoping" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Mislukt bij het verifiëren van geselecteerde opties: %s" - -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Favoriet" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Favorieten" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Februari" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "Waarden ophalen Predicaat" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Gegevens ophalen preview" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "Opgehaald %s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Veld kan niet gedecodeerd worden door JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "Veld is verplicht" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Bestand" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "Query naam" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Filter Lijst" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "Filter Type" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -#, fuzzy -msgid "Filter box (deprecated)" -msgstr "Er is geen filter geselecteerd." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 #, fuzzy -msgid "Filter charts" -msgstr "Filter je grafieken" +msgid "Color by" +msgstr "Sorteer op" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Filter configuratie" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Filterconfiguratie voor de filterbox" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -#, fuzzy -msgid "Filter menu" -msgstr "Filter naam" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "Filter metadata veranderd in dashboard. Het zal niet worden toegepast." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Filter naam" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "Filter resultaten" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "Er bestaat al een filterset" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "Er bestaat al een filterset met deze naam" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Filterwaarde (hoofdlettergevoelig)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" msgstr "" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "Filterwaardenlijst kan niet leeg zijn" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Filter je grafieken" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filterbaar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filters" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +#, fuzzy +msgid "Start (Longitude, Latitude): " +msgstr "Ongeldige longitude/latitude" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "Filters (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +#, fuzzy +msgid "End (Longitude, Latitude): " +msgstr "Ongeldige longitude/latitude" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Filter op kolommen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Filter op meeteenheden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Filters configuratie" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "Vast" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Geavanceerd" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Vaste kleur" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +#, fuzzy +msgid "Centroid (Longitude and Latitude): " +msgstr "Ongeldige longitude/latitude" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +#, fuzzy +msgid "Aggregation" +msgstr "aggregaat" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +msgid "Contours" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "Heatmap" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Ruimtelijk" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Vernieuwen forceren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Lijndikte" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "Forceer vernieuwen schema lijst" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Parameters" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "Forceer vernieuwen tabel lijst" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 #, fuzzy -msgid "Forest Green" -msgstr "Frequentie vernieuwen" +msgid "Longitude and Latitude" +msgstr "Ongeldige longitude/latitude" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Hoogte" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +#, fuzzy +msgid "Intesity" +msgstr "Entiteit" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 #, fuzzy -msgid "Formatted value" -msgstr "Uitgestuurde waarden" +msgid "deck.gl Heatmap" +msgstr "Heatmap" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 #, fuzzy -msgid "Formatting" -msgstr "D3 formaat" +msgid "variance" +msgstr "Geavanceerd" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 #, fuzzy -msgid "Formula" -msgstr "D3 formaat" +msgid "deviation" +msgstr "omschrijving" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Vrijdag" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "Van datum kan niet groter zijn dan tot datum" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 #, fuzzy -msgid "Full name" -msgstr "Query naam" +msgid "name" +msgstr "Naam" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geohash" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "Verkrijg de laatste datum door de datum eenheid." - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" -msgstr "Zoek de specifieke datum voor de vakantie" - -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "Grace periode" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/src/explore/constants.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 #, fuzzy -msgid "Greater or equal (>=)" -msgstr ">= (Groter of gelijk)" +msgid "Square meters" +msgstr "Parameters" -#: superset-frontend/src/explore/constants.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 #, fuzzy -msgid "Greater than (>)" -msgstr "maak een " +msgid "Square kilometers" +msgstr "Parent filter" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +#, fuzzy +msgid "Square miles" +msgstr "queries" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +#, fuzzy +msgid "Radius in meters" +msgstr "Parameters" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -#, fuzzy -msgid "Group Key" -msgstr "Groep per" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Groep per" - -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Groepeerbaar" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -#, fuzzy -msgid "Handlebars" -msgstr "waarschuwingen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -#, fuzzy -msgid "Handlebars Template" -msgstr "Verwijder template" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -#, fuzzy -msgid "Has created by" -msgstr "werd gecreëerd" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Header" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "Koptekst rij" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Heatmap" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Hoogte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -#, fuzzy -msgid "Hide Line" -msgstr "Laag verbergen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -#, fuzzy -msgid "Hide chart description" -msgstr "Toggle grafiek omschrijving" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "Laag verbergen" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -#, fuzzy -msgid "Hide password." -msgstr "Wachtwoord" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Verberg werkbalk" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Histogram" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Home" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Horizon-grafieken" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "Hostnaam of IP-adres" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "Uur" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "Uur offset" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#, fuzzy +msgid "Top left" +msgstr "Autocomplete" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Lijndikte" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" msgstr "" -#: superset/views/database/forms.py:174 -#, fuzzy -msgid "If Table Already Exists" -msgstr "Er bestaat al een filterset" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -"Indien geselecteerd, gelieve de toegestane schema’s voor csv upload in " -"Extra in te stellen." -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -#, fuzzy -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -"Rapportage planning uitvoering mislukt bij het genereren van een " -"screenshot." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "De aangemelde gebruiker imiteren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Importeer" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Importeer %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Importeer Dashboard(s)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" +msgstr "" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Dashboards importeren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "Importeer een tabeldefinitie" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" +msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "Import grafiek mislukt om een onbekende reden" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "Import grafieken " +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "Dashboard importeren mislukt om een onbekende reden" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Importeer dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "Import database mislukt om een onbekende reden" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -#, fuzzy -msgid "Import database from file" -msgstr "Importeer databases" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "Import dataset mislukt om een onbekende reden" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "Importeer datasets" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "Importeer queries" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "Import opgeslagen query mislukt om een onbekende reden." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#, fuzzy +msgid "linear" +msgstr "Verwijder" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#, fuzzy +msgid "basis" +msgstr "Berekende kolom [%s] vereist een uitdrukking" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" msgstr "" -#: superset-frontend/src/explore/constants.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 #, fuzzy -msgid "In" -msgstr "in" +msgid "monotone" +msgstr "maand" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +#, fuzzy +msgid "step-after" +msgstr "css_template" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 #, fuzzy -msgid "Index" -msgstr "Mijn" +msgid "flat" +msgstr "op" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Index Kolom" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +#, fuzzy +msgid "staggered" +msgstr "Gewijzigd" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "Info" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Onmiddellijke filtering" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset/views/database/forms.py:200 -#, fuzzy -msgid "Interpret Datetime Format Automatically" -msgstr "Gebruik Pandas om het datetime formaat automatisch te interpreteren." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "" -#: superset/views/database/forms.py:201 -#, fuzzy -msgid "Interpret the datetime format automatically" -msgstr "Gebruik Pandas om het datetime formaat automatisch te interpreteren." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -#, fuzzy -msgid "Interval" -msgstr "Interval vernieuwen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +#, fuzzy +msgid "stream" +msgstr "Histogram" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 #, fuzzy -msgid "Intesity" -msgstr "Entiteit" +msgid "expand" +msgstr "en" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "" -#: superset/db_engine_specs/ocient.py:274 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "Ongeldige JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Ongeldig certificaat" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -"Ongeldige verbindings string, een geldige string volgt meestal:\n" -"‘DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME’" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Ongeldige cron expressie" - -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Ongeldige cumulative operator: %(operator)s" - -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Ongeldig datum/tijdstempel formaat" - -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "Ongeldige filterconfiguratie, selecteer een kolom" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" +msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "Ongeldig filterwerkingstype: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "Ongeldige geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "Ongeldige geohash string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#, fuzzy +msgid "Series Limit Sort By" +msgstr "Serie limiet" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Ongeldige breedtegraad/lengtegraad configuratie." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#, fuzzy +msgid "Series Limit Sort Descending" +msgstr "Sorteer aflopend" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Ongeldige longitude/latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +#, fuzzy +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "Aflopend of oplopend sorteren" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Ongeldige numpy functie: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +#, fuzzy +msgid "Time-series Bar Chart (legacy)" +msgstr "Tijdreeks - Staafdiagram" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Ongeldige opties voor %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "Ongeldig rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "Ongeldig ruimtelijk punt aangetroffen: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "Invalid state." -msgstr "Ongeldig certificaat" +msgid "Bubble Chart (legacy)" +msgstr "Bubbelgrafiek" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "Is dimensie" - -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "Is favoriet" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "Kan gefilterd worden" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -#, fuzzy -msgid "Is not null" -msgstr "Not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -#, fuzzy -msgid "Is null" -msgstr "Not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "Is tijdelijk" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSON Metadata" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "" -#: 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/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -#, fuzzy -msgid "JSON metadata is invalid!" -msgstr "json is ongeldig" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "JUL" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "JUN" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Januari" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -#, fuzzy -msgid "Jinja templating" -msgstr "Bewerk template" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "" -#: superset/views/database/forms.py:243 -#, fuzzy -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -"Een door komma’s gescheiden lijst van kolommen die als datums moeten " -"worden geparseerd." -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Juli" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +#, fuzzy +msgid "Category Name" +msgstr "Query naam" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Juni" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Waarde" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "Blijf bewerken" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -#, fuzzy -msgid "Key" -msgstr "Sankey" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "Sleutels voor tabel" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -#, fuzzy -msgid "Kilometers" -msgstr "Filters" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -#, fuzzy -msgid "LIMIT" -msgstr "Rij limiet" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Label" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset/utils/pandas_postprocessing/rename.py:53 -#, fuzzy -msgid "Label already exists" -msgstr "Er bestaat al een filterset" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Label voor uw zoekopdracht" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +#, fuzzy +msgid "Pie Chart (legacy)" +msgstr "Tijdreeks - Staafdiagram" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +#, fuzzy +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "Week beginnend op maandag" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +#, fuzzy +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "Week beginnend op zondag" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +#, fuzzy +msgid "1 week starting Monday (freq=W-MON)" +msgstr "Week beginnend op maandag" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Laatste wijziging" - -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Laatst gewijzigd" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +#, fuzzy +msgid "Formula" +msgstr "D3 formaat" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Laatst bijgewerkt %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +#, fuzzy +msgid "Event" +msgstr "Recente" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "Laatst bijgewerkt %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "Interval vernieuwen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Laatst gewijzigd" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#, fuzzy +msgid "Stream" +msgstr "Histogram" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Laatst gewijzigd door %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +#, fuzzy +msgid "Expand" +msgstr "en" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Laatste run" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Laagconfiguratie" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +#, fuzzy +msgid "Orientation" +msgstr "aantekening" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "Meest recente wijziging" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +#, fuzzy +msgid "Legend Orientation" +msgstr "Aantekening verwijderen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -#, fuzzy -msgid "Legend Orientation" -msgstr "Aantekening verwijderen" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/explore/constants.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 #, fuzzy -msgid "Less or equal (<=)" -msgstr "<= (Kleiner of gelijk)" - -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" -msgstr "" +msgid "Sort Series By" +msgstr "Importeer queries" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 #, fuzzy -msgid "Light" -msgstr "Hoogte" +msgid "Sort Series Ascending" +msgstr "Sorteer oplopend" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -#, fuzzy -msgid "Like (case insensitive)" -msgstr "Filterwaarde (hoofdlettergevoelig)" - -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Limiet bereikt" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "Beperk selector waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +#, fuzzy +msgid "Series Order" +msgstr "Series" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 #, fuzzy -msgid "Limit type" -msgstr "Viz type" +msgid "Truncate X Axis" +msgstr "Sorteer meeteenheid" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +msgid "Minor ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Geen data" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "Lijndikte" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Lineair kleurenpalet" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -msgid "Lines column" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Link gekopieerd!" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Lijst Opgeslagen Query" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 #, fuzzy -msgid "List Unique Values" -msgstr "Uitgestuurde waarden" +msgid "Display settings" +msgstr "Planning instellingen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 #, fuzzy -msgid "List updated" -msgstr "Laatst bijgewerkt %s" +msgid "Conditional Formatting" +msgstr "Bijkomende informatie" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Laad een CSS sjabloon" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Geladen gegevens in de cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Geladen uit de cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Groot Getal" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -#, fuzzy -msgid "Loading" -msgstr "Bezig met laden…" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "Bezig met laden…" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -#, fuzzy -msgid "Locate the chart" -msgstr "Maak een nieuwe grafiek" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "Log retentie" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Aanmelden" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -#, fuzzy -msgid "Login with" -msgstr "Lijndikte" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Afmelden" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +#, fuzzy +msgid "TEMPORAL X-AXIS" +msgstr "Is tijdelijk" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Groot getal met trendlijn" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Kolommen lengtegraad en breedtegraad" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Longitude and Latitude" -msgstr "Ongeldige longitude/latitude" +msgid "Tukey" +msgstr "query" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "MAA" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "MEI" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "MA" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Kolom Hoofd Datumtijd" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" +msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset/views/core.py:1752 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Beheer" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -#, fuzzy -msgid "Manage email report" -msgstr "Beheer e-mailrapporten voor grafieken" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +msgid "Bubble size number format" +msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 #, fuzzy -msgid "Manage your databases" -msgstr "Importeer databases" +msgid "Bubble Opacity" +msgstr "Bubbelgrafiek" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "Verplicht" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Maart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Soort berekening" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Cel inhoud" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +msgid "Value and Percentage" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Cel inhoud" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Opmaaktype(Markup type)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +msgid "Show Tooltip Labels" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +msgid "Whether to display the tooltip labels." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -#, fuzzy -msgid "Maximum value" -msgstr "Nul waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Min" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Max" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 msgid "Maximum value on the gauge axis" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Mei" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -#, fuzzy -msgid "Mean values" -msgstr "Uitgestuurde waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -#, fuzzy -msgid "Median values" -msgstr "Uitgestuurde waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "Inhoud van het bericht" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "Metadata zijn gesynchroniseerd" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "Methode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Meeteenheid" - -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "Meeteenheid “%(metric)s” bestaat niet" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Meeteenheid toegewezen aan de [X]-as" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Meeteenheid toegewezen aan de [Y]-as" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -#, fuzzy -msgid "Metric name" -msgstr "Query naam" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "Meeteenheid naam [%s] is dubbel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Meeteenheid om de resultaten op te sorteren" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Meeteenheden" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -#, fuzzy -msgid "Middle" -msgstr "Bestand" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -#, fuzzy -msgid "Miles" -msgstr "Filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "Min periodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "Mijn" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -#, fuzzy -msgid "Minimum value" -msgstr "Nul waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "Minuut" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "Ontbrekende dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -#, fuzzy -msgid "Mixed Chart" -msgstr "Grafiek verkleinen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Gewijzigd" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Gewijzigd door" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "Gewijzigde kolommen: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Maandag" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "Maand" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -#, fuzzy -msgid "More" -msgstr "Zie meer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -#, fuzzy -msgid "More filters" -msgstr "Parent filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "Verplaatst de gegeven reeks datums met een opgegeven interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" msgstr "" -"Meerdere formaten geaccepteerd, zie de geopy.points Python bibliotheek " -"voor meer details" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "Moet uniek zijn" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "" -#: superset/reports/commands/exceptions.py:94 -#, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "Kies een grafiek of een dashboard, niet beide" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Moet een [Group By] kolom hebben om ‘count’ als [Label] te hebben" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Aflopend of oplopend sorteren" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Er moet minstens één numerieke kolom gespecificeerd zijn" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" -msgstr "Een waarde voor filters met vergelijkingsoperatoren moet gespecificeerd" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Mijn meeteenheid" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "NU" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -#, fuzzy -msgid "NUMERIC" -msgstr "Mijn meeteenheid" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Naam" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "Naam is vereist" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "De naam moet uniek zijn" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Naam van de tabel die moet worden aangemaakt op basis van excel-gegevens." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "" -#: superset/views/database/forms.py:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "Name of table to be created with CSV file" -msgstr "Naam van de tabel die op basis van csv-gegevens moet worden gemaakt." +msgid "Shared query fields" +msgstr "Gedeelde zoekopdracht" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +#, fuzzy +msgid "Advanced analytics Query A" +msgstr "Geavanceerde analytics" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Naam van de tabel die bestaat in de brondatabase" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +#, fuzzy +msgid "Advanced analytics Query B" +msgstr "Geavanceerde analytics" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -#, fuzzy -msgid "Network error" -msgstr "Parameter fout" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Nieuwe grafiek" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "Nieuwe kolommen toegevoegd: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -#, fuzzy -msgid "New dataset" -msgstr "Wijzig dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -#, fuzzy -msgid "New dataset name" -msgstr "Dataset naam" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "Nieuwe filterset" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -#, fuzzy -msgid "New header" -msgstr "Nieuwe grafiek" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "Nieuw tabblad" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" -msgstr "Nieuw tabblad (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" -msgstr "Nieuw tabblad (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Volgende" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +#, fuzzy +msgid "Mixed Chart" +msgstr "Grafiek verkleinen" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "Nee" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "Nog geen %s" - -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Geen Toegang!" - -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" -msgstr "Geen Data" - -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "Nog geen %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "No annotation layers" -msgstr "Aantekeningenlagen" +msgid "Show Total" +msgstr "Toon tabel" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Nog geen aantekeningen lagen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Nog geen aantekeningen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -#, fuzzy -msgid "No applied filters" -msgstr "Verwijder ongeldige filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -#, fuzzy -msgid "No available filters." -msgstr "Alle filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Geen grafieken" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -#, fuzzy -msgid "No charts yet" -msgstr "Geen grafieken" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "Geen kolommen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -#, fuzzy -msgid "No columns found" -msgstr "Geen kolommen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -#, fuzzy -msgid "No compatible datasets found" -msgstr "Onverenigbare filters (%d)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Geen dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "Geen dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Geen data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "Geen gegevens in het bestand" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -#, fuzzy -msgid "No database tables found" -msgstr "Database niet gevonden." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "Nog geen favoriete grafieken, klik op sterren!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Nog geen favoriete dashboards, klik op de sterren !" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Er is geen filter geselecteerd." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 -#, fuzzy -msgid "No filters" -msgstr "Alle filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -#, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "Er zijn geen filters in dit dashboard." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#, fuzzy -msgid "No matching records found" -msgstr "Geen gegevens gevonden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -#, fuzzy -msgid "No recents yet" -msgstr "Nog geen %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Geen gegevens gevonden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Geen resultaten gevonden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 #, fuzzy -msgid "No saved queries yet" -msgstr "Opgeslagen queries" +msgid "Axis Title" +msgstr "Titel tabblad" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" -msgstr "Geen opgeslagen resultaten gevonden, u moet uw query opnieuw uitvoeren" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" msgstr "" -"Geen dergelijke kolom gevonden. Om te filteren op een meeteenheid, " -"probeer het Custom SQL tabblad." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 #, fuzzy -msgid "No table columns" -msgstr "Geen tijdskolommen" +msgid "Axis Format" +msgstr "Y-as Formaat" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "Geen tijdskolommen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" -msgstr "Geen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +#, fuzzy +msgid "Bar orientation" +msgstr "aantekening" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#, fuzzy +msgid "Orientation of bar chart" +msgstr "Verdeling - Staafdiagram" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -#, fuzzy -msgid "Not added to any dashboard" -msgstr "Toevoegen aan het dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -#, fuzzy -msgid "Not equal to (≠)" -msgstr "!= (Is niet gelijk)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Start" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 #, fuzzy -msgid "Not in" -msgstr "aantekening" +msgid "Middle" +msgstr "Bestand" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "Not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Einde" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Niets getriggerd" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "Methode voor kennisgeving" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "November" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset/views/database/forms.py:211 -#, fuzzy -msgid "Null Values" -msgstr "Nul waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Nul of Leeg" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Nul waarden" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset/views/database/forms.py:265 -#, fuzzy -msgid "Number of rows of file to read" -msgstr "Aantal rijen van het te lezen bestand." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "Aantal rijen van het te lezen bestand." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "" -#: superset/views/database/forms.py:271 -#, fuzzy -msgid "Number of rows to skip at start of file" -msgstr "Aantal rijen om over te slaan aan het begin van het bestand." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "Aantal rijen om over te slaan aan het begin van het bestand." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "OKT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "OVERSCHRIJVEN" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Oktober" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Offset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "Een of meer bedieningsinstrumenten om als kolommen te pivoteren" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Eén of vele meeteenheden om weer te geven" - -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "Een of meer kolommen bestaan al" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "Een of meer kolommen zijn gedupliceerd" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "Een of meer kolommen bestaan niet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" +msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Een of meer meetgegevens bestaan al" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Een of meer meetgegevens zijn gedupliceerd" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Een of meer meeteenheden bestaan niet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." -msgstr "Een of meer in de query opgegeven parameters ontbreken." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +#, fuzzy +msgid "Key" +msgstr "Sankey" -#: superset/views/core.py:2029 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "Aantekening lagen worden nog steeds geladen." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Treemap" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +#, fuzzy +msgid "Assist" +msgstr "Berekende kolom [%s] vereist een uitdrukking" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Alleen `SELECT` statements zijn toegestaan" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "Maak" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "Maak" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Time series kolommen" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "Alleen geselecteerde panelen zullen door deze filter worden beïnvloed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Alle grafieken" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "Alleen enkelvoudige query’s worden ondersteund" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Bezig met laden…" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -"Alleen de volgende bestandsextensies zijn toegestaan: " -"%(allowed_extensions)s" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 #, fuzzy -msgid "Oops! An error occurred!" -msgstr "Er is een fout opgetreden" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Opaciteit" +msgid "Handlebars" +msgstr "waarschuwingen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#, fuzzy +msgid "Handlebars Template" +msgstr "Verwijder template" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Open Datasource tab" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Open in SQL Lab" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Open query in SQL Lab" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Operator ongedefinieerd voor aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Sorteer aflopend" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" -msgstr "Optionele waarschuwing voor het gebruik van deze meeteenheid" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 #, fuzzy -msgid "Orientation" -msgstr "aantekening" +msgid "Range for Comparison" +msgstr "Tijdsvergelijking" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 #, fuzzy -msgid "Orientation of bar chart" -msgstr "Verdeling - Staafdiagram" +msgid "Filters for Comparison" +msgstr "Tijdsvergelijking" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Originele tabel kolom volgorde" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "Originele waarde" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Rijen" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -#, fuzzy -msgid "Override time grain" -msgstr "Toon Druid time origin" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 #, fuzzy -msgid "Override time range" -msgstr "Bewerk tijdspanne" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Overschrijven" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Overschrijven en verkennen" +msgid "Count" +msgstr "kolom" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Dashboard overschrijven [%s]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "" -#: superset/views/database/forms.py:247 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 #, fuzzy -msgid "Overwrite Duplicate Columns" -msgstr "Dubbele kolommen verwijderen" +msgid "List Unique Values" +msgstr "Uitgestuurde waarden" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -#, fuzzy -msgid "Overwrite existing" -msgstr "Blijf bewerken" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Overschrijf tekst in de editor met een query op deze tabel" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "Beheer" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Eigenaar" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Eigenaars" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "Eigenaren zijn ongeldig" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "" -#: superset/views/dashboard/mixin.py:64 -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/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "" -#: 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." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Pandas resample methode" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Pandas resample regel" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Parallelle coördinaten" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Parameter fout" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parameters" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "Bereken Data" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +msgid "Show rows subtotal" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "Partition Diagram" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +msgid "Show columns subtotal" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "Wachtwoord" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Periodes" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "Persoon of groep die deze meetwaarde heeft gecertificeerd" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "Fysiek" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "Fysiek (tabel of overzicht)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Fysieke dataset" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "Kies een granulariteit in de sectie Tijd of vink ‘Inclusief tijd’ uit" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Kies een meeteenheid voor de linkeras!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." +msgstr "" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Kies een meeteenheid voor de rechteras!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Draaitabel" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Kies een meeteenheid voor x, y en grootte" - -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Kies een meeteenheid om weer te geven" - -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Kies een meeteenheid!" - -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." -msgstr "Kies een naam om je te helpen deze database te identificeren." - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Kies een tijdschaal voor uw tijdreeks" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Kies minstens één veld voor [Series]" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" +msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Kies ten minste één meeteenheid" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#, fuzzy +msgid "No matching records found" +msgstr "Geen gegevens gevonden" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Kies precies 2 kolommen als [Bron / Doel]" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Kies uw favoriete opmaaktaal (markup language)" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Draaitabel" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "De pivotbewerking moet ten minste één aggregaat omvatten" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "Pivot bewerking vereist ten minste één index" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset/viz.py:3234 +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "Kies ten minste één veld ‘Groeperen op’ " - -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Kies verschillende meeteenheden op de linker- en rechteras" +msgid "entries" +msgstr "Series" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "Gelieve te bevestigen" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Voer een SQLAlchemy URI in om te testen" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "Filter setnaam a.u.b." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "Neem contact op met de eigenaar van de grafiek voor hulp." -msgstr[1] "" +msgid "random" +msgstr "en" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "Sla de query op om te kunnen delen" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +#, fuzzy +msgid "square" +msgstr "Kwartaal" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Gelieve 3 verschillende meeteenheid labels te gebruiken" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +#, fuzzy +msgid "offline" +msgstr "Offline" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +#, fuzzy +msgid "failed" +msgstr "Mislukt" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +#, fuzzy +msgid "pending" +msgstr "Rapport verzenden" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "Plugins" +#: superset-frontend/src/SqlLab/constants.ts:36 +#, fuzzy +msgid "fetching" +msgstr "Instellingen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "running" +msgstr "Running" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "Voeg toe" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "Succes" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "De query kon niet geladen worden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" +"Uw zoekopdracht is ingepland. Om de details van uw zoekopdracht te zien, " +"navigeert u naar Opgeslagen zoekopdrachten" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Uw vraag kon niet worden gepland" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Fout bij het ophalen van resultaten" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Onbekende fout" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "Query is gestopt." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "Pop Tab Link" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -#, fuzzy -msgid "Port" -msgstr "rapport" - -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 #, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "Poort %(port)s op hostnaam “%(hostname)s” weigerde de verbinding." +msgid "Copy of %s" +msgstr "Kopie van %s" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." msgstr "" +"Er is een fout opgetreden bij het instellen van het actieve tabblad. Neem" +" contact op met uw beheerder." -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "Positie JSON" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Er is een fout opgetreden tijdens het ophalen van de tabbladstatus" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Uw zoekopdracht kon niet worden opgeslagen" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Uw zoekopdracht werd opgeslagen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Uw zoekopdracht werd bijgewerkt" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Uw zoekopdracht kon niet worden bijgewerkt" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" +"Er is een fout opgetreden tijdens het ophalen van de metagegevens van de " +"tabel. Neem contact op met uw beheerder." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" +"Er is een fout opgetreden tijdens het uitbreiden van het tabelschema. " +"Neem contact op met uw beheerder." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" +"Er is een fout opgetreden tijdens het samenvouwen van het tabelschema. " +"Neem contact op met uw beheerder." -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Preview" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Er is een fout opgetreden tijdens het verwijderen van het tabelschema. " +"Neem contact op met uw beheerder." -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Preview: `%s`" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Gedeelde zoekopdracht" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Vorige" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "De datasource kon niet geladen worden" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -#, fuzzy -msgid "Previous Line" -msgstr "Vorige" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Er is een fout opgetreden bij het aanmaken van de gegevensbron" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Er is een fout opgetreden bij het ophalen van functienamen." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" #: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 msgid "Primary key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" -msgstr "" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#, fuzzy +msgid "Index" +msgstr "Mijn" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Kostenraming van de geselecteerde zoekopdracht" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Kostenraming" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Kostenraming" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -#, fuzzy -msgid "Private Key Password" -msgstr "Broker Wachtwoord" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Een gegevensbron maken en een nieuw tabblad maken" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Er is een fout opgetreden" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Profiel" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Verken de resultaten in de gegevensverkenningsweergave" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Profielfoto geleverd door Gravatar" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +#, fuzzy +msgid "explore" +msgstr "Verken" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +#, fuzzy +msgid "Create Chart" +msgstr "Maak een nieuwe grafiek" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Bron SQL" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Zoekopdracht uitvoeren" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Zoekopdracht uitvoeren" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Query stoppen" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Gepubliceerd" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Nieuw tabblad" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 #, fuzzy -msgid "Purple" -msgstr "Regel" +msgid "Previous Line" +msgstr "Vorige" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +#, fuzzy +msgid "Format SQL" +msgstr "D3 formaat" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "in" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Plaats je code hier" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Python datetime string patroon" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#, fuzzy +msgid "Run a query to display query history" +msgstr "Voer een query uit om de resultaten hier weer te geven" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" -msgstr "" - -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "Kwartaal" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +#, fuzzy +msgid "LIMIT" +msgstr "Rij limiet" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Status" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 #, fuzzy -msgid "Queries" -msgstr "queries" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Query" +msgid "Started" +msgstr "Status" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Duur" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Resultaten" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Acties" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Query Geschiedenis" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Succes" -#: superset/commands/exceptions.py:142 -#, fuzzy -msgid "Query does not exist" -msgstr "Grafiek bestaat niet" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Mislukt" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "Geschiedenis van de opzoeking" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "Running" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Zoekopdracht in een nieuw tabblad" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Offline" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Gepland" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Query naam" - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Query preview" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "Query is gestopt" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Bewerk" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "Query is gestopt." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#, fuzzy +msgid "View" +msgstr "Preview" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "BEREIK TYPE" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Data preview" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Overschrijf tekst in de editor met een query op deze tabel" -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Grafieken konden niet worden verwijderd." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Query uitvoeren in een nieuw tabblad" -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "Rapportage planning niet gevonden." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Verwijder de query uit de log" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Opslaan en verkennen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Overschrijven en verkennen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Download naar CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -#, fuzzy -msgid "Radius in meters" -msgstr "Parameters" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "Kopieer naar Klembord" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Filter resultaten" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format -msgid "Ran %s" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s Fout" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Track job" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" -msgstr "Herbouw" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "Query is gestopt" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "Recente activiteit" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Database fout" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "" -"Recent gemaakte grafieken, dashboards en opgeslagen queries verschijnen " -"hier" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "werd gecreëerd" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "" -"Recent bewerkte grafieken, dashboards en opgeslagen queries verschijnen " -"hier" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Zoekopdracht in een nieuw tabblad" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "Recent gewijzigd" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "De query leverde geen gegevens op" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "" -"Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier " -"verschijnen" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Gegevens ophalen preview" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Recente" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Resultaten opnieuw ophalen" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Ontvangers worden gescheiden door “,” of “;”" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Stop" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Selectie uitvoeren" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Record Aantal" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Uitvoeren" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Stop de uitvoering (Ctrl + x)" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#, fuzzy +msgid "Stop running (Ctrl + e)" +msgstr "Stop de uitvoering (Ctrl + x)" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" -msgstr "" - -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." -msgstr "Kolommen waarnaar wordt verwezen zijn niet beschikbaar in DataFrame." - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "Resultaten opnieuw ophalen" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Query uitvoeren (Ctrl + Return)" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Vernieuwen" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Opslaan" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Vernieuw dashboard" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +#, fuzzy +msgid "Untitled Dataset" +msgstr "Bewerk de dataset" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Frequentie vernieuwen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Er is een fout opgetreden bij het opslaan van dataset" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Interval vernieuwen" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -#, fuzzy -msgid "Refresh table list" -msgstr "Forceer vernieuwen tabel lijst" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Opslaan als nieuw" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 #, fuzzy -msgid "Refresh tables" -msgstr "Forceer vernieuwen tabel lijst" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "" +msgid "Overwrite existing" +msgstr "Blijf bewerken" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 #, fuzzy -msgid "Refreshing charts" -msgstr "Maak een nieuwe grafiek" +msgid "Select or type dataset name" +msgstr "Selecteer tabel of type tabelnaam" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 #, fuzzy -msgid "Refreshing columns" -msgstr "Time series kolommen" +msgid "Existing dataset" +msgstr "Ontbrekende dataset" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +#, fuzzy +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Ongedefinieerd" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +#, fuzzy +msgid "Save dataset" +msgstr "Wijzig dataset" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Opslaan als" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Zoekopdracht opslaan" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Annuleer" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Update" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Relatieve hoeveelheid" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Label voor uw zoekopdracht" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -#, fuzzy -msgid "Reload" -msgstr "Upload" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Schrijf een omschrijving voor uw zoekopdracht." -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "Verwijder" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Query planning" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -#, fuzzy -msgid "Remove cross-filter" -msgstr "Item verwijderen" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Planning" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "Verwijder ongeldige filters" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Er is een fout opgetreden in uw verzoek." -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "Item verwijderen" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Sla de query op om te kunnen delen" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Verwijder de query uit de log" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Kopieer query link naar uw klembord" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Verwijder tabel preview" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Sla de query op om deze functie in te schakelen" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "Verwijderde kolommen: %s" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Kopieer link" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Tabblad hernoemen" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "Geen opgeslagen resultaten gevonden, u moet uw query opnieuw uitvoeren" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "Vervang" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Preview: `%s`" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" -msgstr "" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Geschiedenis van de opzoeking" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -#, fuzzy -msgid "Report Name" -msgstr "Naam rapport" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Plan de zoekopdracht periodiek" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "Rapportage planning kon niet worden aangemaakt." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "U moet de query eerst succesvol uitvoeren" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "Rapportage planning kon niet worden verwijderd." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Autocomplete" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "Rapportage planning kon niet worden bijgewerkt." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "CREATE TABLE AS" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "Rapportage planning verwijderen mislukt." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "CREATE VIEW AS" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "Rapportage planning mislukt bij het genereren van een csv." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Kostenraming voordat een query wordt uitgevoerd" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -"Rapportage planning uitvoering mislukt bij het genereren van een " -"screenshot." - -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "Rapportage planning uitvoering kreeg een onverwachte fout." -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "Rapportage planning werkt nog steeds, weigert om opnieuw te berekenen." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "Rapportage planning log prune mislukt." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "Rapportage planning niet gevonden." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Maak" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "De parameters van het rapportageplanning zijn ongeldig." - -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "Rapportage planning heeft een werk time-out bereikt." - -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "Rapport Schedule state niet gevonden" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Rapport mislukt" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Reset status" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "Naam rapport" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Voer een nieuwe titel in voor het tabblad" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "Rapportageplanning" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Tabblad sluiten" -#: superset/reports/commands/exceptions.py:273 -#, fuzzy -msgid "Report schedule client error" -msgstr "Onverwachte fout in rapportschema" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Tabblad hernoemen" -#: superset/reports/commands/exceptions.py:267 -#, fuzzy -msgid "Report schedule system error" -msgstr "Onverwachte fout in rapportschema" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Werkbalk uitbreiden" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "Onverwachte fout in rapportschema" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Verberg werkbalk" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Rapport verzenden" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Sluit alle andere tabbladen" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Rapport verzonden" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Tabblad Dupliceren" -#: superset-frontend/src/reports/actions/reports.js:121 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 #, fuzzy -msgid "Report updated" -msgstr "Rapport mislukt" +msgid "Add a new tab" +msgstr "Zoekopdracht in een nieuw tabblad" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Rapporten" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Nieuw tabblad (Ctrl + q)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Nieuw tabblad (Ctrl + t)" + +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van de metagegevens van de " +"tabel" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Kopieer partitie query naar klembord" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "laatste partitie:" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Permissies aanvragen" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Sleutels voor tabel" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 #, python-format -msgid "Request is incorrect: %(error)s" -msgstr "Verzoek is onjuist: %(error)s" +msgid "View keys & indexes (%s)" +msgstr "Bekijk sleutels & indexen (%s)" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "Verzoek is geen JSON" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Originele tabel kolom volgorde" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "Verzoek om ontbrekend data veld." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Sorteer kolommen alfabetisch" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Kopieer SELECT-instructie naar het klembord" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Toon CREATE VIEW statement" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "CREATE VIEW statement" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Verwijder tabel preview" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 #, fuzzy -msgid "Request timed out" -msgstr "Verzoek is geen JSON" +msgid "Assign a set of parameters as" +msgstr "Dataset parameters zijn ongeldig." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Vereist" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 #, fuzzy -msgid "Resample method should in " -msgstr "Pandas resample methode" +msgid "Jinja templating" +msgstr "Bewerk template" -#: superset/utils/pandas_postprocessing/resample.py:43 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 #, fuzzy -msgid "Resample operation requires DatetimeIndex" -msgstr "Pivot bewerking vereist ten minste één index" +msgid "syntax." +msgstr "Syntax" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Bewerk template parameters" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" -msgstr "Reset status" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "Ongeldige JSON" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Naamloze zoekopdracht" + +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "Rapport Schedule state niet gevonden" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Herstel Filter" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Resultaten" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Klik om het verschil te zien" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Gewijzigd" + +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Veranderingen in de grafiek" + +#: superset-frontend/src/components/AuditInfo/index.tsx:40 #, fuzzy, python-format -msgid "Results %s" -msgstr "Resultaten" +msgid "Modified by: %s" +msgstr "Laatst gewijzigd door %s" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Geladen gegevens in de cache" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Geladen uit de cache" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "Terugkeren naar specifieke datum/tijd." +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Klik om te herladen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" -msgstr "" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +#, fuzzy +msgid "Cached" +msgstr "cached" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "Omgekeerde breedtegraad/lengtegraad " +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Meeteenheid rechteras" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Er is een fout opgetreden bij het laden van de SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "Rol" - -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." msgstr "" -"Rol %(r)s werd uitgebreid om toegang te verschaffen tot de gegevensbron " -"%(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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Rollen" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" -#: 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 " -"defined, regular access permissions apply." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +#, fuzzy +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Er zijn geen filters in dit dashboard." + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +#, fuzzy +msgid "This visualization type does not support cross-filtering." +msgstr "Dit visualisatietype wordt niet ondersteund." + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Toe te kennen rollen" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +#, fuzzy +msgid "Remove cross-filter" +msgstr "Item verwijderen" + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +#, fuzzy +msgid "Add cross-filter" +msgstr "Filter toevoegen" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Rolfunctie" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "Rollend venster" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Root certificaat" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "%s kolom(men)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#, fuzzy +msgid "No columns found" +msgstr "Geen kolommen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "U heeft geen toestemming om deze grafiek te bewerken" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#, fuzzy +msgid "Edit chart" +msgstr "Bewerk grafiek" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Sluit" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Rij" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, fuzzy, python-format +msgid "Results %s" +msgstr "Resultaten" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset/views/database/forms.py:342 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Rij limiet" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "Rijen" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Te lezen rijen" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "Regel" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#, fuzzy +msgid "Formatting" +msgstr "D3 formaat" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 #, fuzzy -msgid "Rule Name" -msgstr "Query naam" +msgid "Formatted value" +msgstr "Uitgestuurde waarden" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "Uitvoeren" - -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 #, fuzzy -msgid "Run a query to display query history" -msgstr "Voer een query uit om de resultaten hier weer te geven" +msgid "Reload" +msgstr "Upload" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Uitvoeren in SQL Lab" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Kopieer naar klembord" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Zoekopdracht uitvoeren" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "Gekopieerd naar het klembord!" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "Query uitvoeren (Ctrl + Return)" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "Sorry, uw browser ondersteunt het kopiëren niet. Gebruik Ctrl / Cmd + C!" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Query uitvoeren in een nieuw tabblad" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "elke" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Selectie uitvoeren" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "elke maand" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "Running" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "elke dag van de maand" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "dag van de maand" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "ZA" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "elke dag van de week" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "SEP" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "dag van de week" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "elk uur" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minuut" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL gekopieerd!" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "herstart" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL Expressie" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Elke" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL-lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "in" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "SQL Lab View" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "op" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "en" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "op" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "SQL Query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Ongeldige cron expressie" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "SQL expressie" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Verwijder" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "SQL query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Zondag" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "SQLAlchemy URI" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Maandag" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Dinsdag" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -#, fuzzy -msgid "SSH Password" -msgstr "Wachtwoord" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Woensdag" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Donderdag" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Vrijdag" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "Zaterdag" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -#, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "Grafiek kon niet worden verwijderd." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Januari" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -#, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "De grafiek kon niet worden bijgewerkt." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Februari" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -#, fuzzy -msgid "SSH Tunnel not found." -msgstr "CSS sjabloon niet gevonden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Maart" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -#, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "Grafiekparameters zijn ongeldig." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "April" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Mei" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Juni" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "START (INCLUSIEF)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Juli" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Augustus" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -#, fuzzy -msgid "STRING" -msgstr "Waarschuwing" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "September" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Oktober" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "November" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "December" #: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 msgid "SUN" msgstr "ZO" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "" - -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "Voorbeelden" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "MA" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "Dataset kon niet worden aangemaakt." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "DI" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "Dataset kon niet worden aangemaakt." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "WO" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "DO" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "VR" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "ZA" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -#, fuzzy -msgid "Satellite" -msgstr "Datum filter" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "JAN" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "FEB" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "Zaterdag" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "MAA" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Opslaan" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "APR" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Opslaan en verkennen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "MEI" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Opslaan en naar dashboard gaan" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "JUN" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -#, fuzzy -msgid "Save & go to new dashboard" -msgstr "Opslaan en naar dashboard gaan" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "JUL" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Opslaan (overschrijven)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "AUG" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Opslaan als" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "SEP" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -#, fuzzy -msgid "Save as Dataset" -msgstr "Kies een dataset" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "OKT" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -#, fuzzy -msgid "Save as dataset" -msgstr "Kies een dataset" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Opslaan als nieuw" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "DEC" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Opslaan als nieuwe grafiek" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 #, fuzzy -msgid "Save as..." -msgstr "Opslaan als …" +msgid "Select database or type to search databases" +msgstr "Selecteer tabel of type tabelnaam" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Opslaan als:" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Forceer vernieuwen schema lijst" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -#, fuzzy -msgid "Save changes" -msgstr "Wijzigingen weggooien" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Grafiek opslaan" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Dashboard opslaan" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" +"Waarschuwing! Het veranderen van de dataset kan de grafiek breken als de " +"metadata niet bestaat." + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" +"Het wijzigen van de dataset kan de grafiek breken indien de grafiek " +"steunt op kolommen of metadata die niet bestaan in de doel-dataset" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "dataset" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy -msgid "Save dataset" +msgid "Successfully changed dataset!" msgstr "Wijzig dataset" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Opslaan voor deze sessie" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +#, fuzzy +msgid "Swap dataset" +msgstr "dataset" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Zoekopdracht opslaan" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Waarschuwing!" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "Sla de query op om deze functie in te schakelen" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Zoek / Filter" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Voeg item toe" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 #, fuzzy -msgid "Save to new dashboard" -msgstr "Opslaan en naar dashboard gaan" +msgid "STRING" +msgstr "Waarschuwing" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Opgeslagen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +#, fuzzy +msgid "NUMERIC" +msgstr "Mijn meeteenheid" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Opgeslagen Queries" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +#, fuzzy +msgid "DATETIME" +msgstr "Datum/Tijd" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Opgeslagen meeteenheid" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Fysiek (tabel of overzicht)" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Opgeslagen queries" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "Virtueel (SQL)" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Opgeslagen zoekopdrachten konden niet worden verwijderd." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Data type" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "Opgeslagen query niet gevonden." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +#, fuzzy +msgid "Advanced data type" +msgstr "Geladen gegevens in de cache" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "Opgeslagen query parameters zijn ongeldig." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +#, fuzzy +msgid "Advanced Data type" +msgstr "Geladen gegevens in de cache" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Datetime formaat" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Het patroon van het timestamp formaat. Voor tekenreeksen gebruik je " -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Python datetime string patroon" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr " uitdrukking die moet voldoen aan de " + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "Planning" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -#, fuzzy -msgid "Schedule a new email report" -msgstr "E-mailrapporten voor grafieken plannen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Persoon of groep die deze meetwaarde heeft gecertificeerd" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Gecertificeerd door" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Query planning" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Details certificering" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Planning instellingen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Details van de certificering" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "Plan de zoekopdracht periodiek" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Is dimensie" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "Gepland" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "Gepland om (UTC)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Kan gefilterd worden" -#: superset/tasks/exceptions.py:24 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 #, fuzzy -msgid "Scheduled task executor not found" -msgstr "Rapport Schedule state niet gevonden" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Schema" +msgid "" +msgstr "kolom" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset/views/core.py:1186 -#, fuzzy -msgid "Schema undefined" -msgstr "Ongedefinieerd" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Gewijzigde kolommen: %s" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "" -"Schema, zoals alleen gebruikt in sommige databases zoals Postgres, " -"Redshift en DB2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Verwijderde kolommen: %s" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "Nieuwe kolommen toegevoegd: %s" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Metadata zijn gesynchroniseerd" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Er is een fout opgetreden" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Kolomnaam [%s] is gedupliceerd" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Meeteenheid naam [%s] is dubbel" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "Berekende kolom [%s] vereist een uitdrukking" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "Scoping" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Berekende kolom [%s] vereist een uitdrukking" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "Standaard URL" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" +"Standaard URL om naar door te verwijzen bij toegang vanaf de dataset " +"lijst pagina" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Zoek" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Autocomplete filters" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Zoek / Filter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Geef aan of de autoaanvulfilteropties moeten worden ingevuld" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Zoek meeteenheden & kolommen" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Autocomplete query predicaat" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Zoek in alle filteropties" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "Zoek op querytekst" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Cache timeout" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 #, fuzzy -msgid "Search columns" -msgstr "%s kolom(men)" +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "De tijdsduur in seconden voordat de cache ongeldig wordt gemaakt" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Uur offset" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Search in filters" -msgstr "Zoek / Filter" +msgid "Normalize column names" +msgstr "Geen tijdskolommen" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 #, fuzzy -msgid "Search tables" -msgstr "Gebruikersrollen" +msgid "Always filter main datetime column" +msgstr "Kolom Hoofd Datumtijd" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Zoek…" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "Seconde" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +#, fuzzy +msgid "" +msgstr "Ruimtelijk" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Klik op het slotje om wijzigingen aan te brengen." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Klik op het slotje om verdere wijzigingen te voorkomen." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "virtueel" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Dataset naam" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, python-format -msgid "Seconds %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Secure Extra" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Secure extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Fysiek" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Beveiliging" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Veiligheid & toegang" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +#, fuzzy +msgid "Metric Key" +msgstr "Meeteenheid" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "Zie minder" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "D3 formaat" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "Zie meer" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Zie tabel schema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "Waarschuwing" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Optionele waarschuwing voor het gebruik van deze meeteenheid" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Selecteer …" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +#, fuzzy +msgid "" +msgstr "Opgeslagen meeteenheid" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Pas op." -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Synchroniseer kolommen van bron" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." -msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Berekende kolommen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Instellingen" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -#, fuzzy -msgid "Select a database table." -msgstr "Verwijder database" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "De dataset is opgeslagen" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Select a database to connect" -msgstr "Stopte een onveilige database connectie" +msgid "Error saving dataset" +msgstr "Er is een fout opgetreden bij het opslaan van dataset" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" +"De dataset configuratie die hier wordt getoond\n" +" heeft invloed op alle grafieken die deze dataset " +"gebruiken.\n" +" Wees je ervan bewust dat het veranderen van instellingen\n" +" hier invloed kan hebben op andere grafieken\n" +" op ongewenste manieren." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Weet u zeker dat u de wijzigingen wilt opslaan en toepassen?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Opslaan bevestigen" -#: superset/views/database/forms.py:110 -#, fuzzy -msgid "Select a file to be uploaded to the database" -msgstr "Selecteer een CSV-bestand dat moet worden geüpload naar een database." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "OK" -#: superset/views/database/forms.py:155 -#, fuzzy -msgid "Select a schema if the database supports this" -msgstr "Geef een schema op (als de databasesmaak dit ondersteunt)." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Bewerk Dataset " -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Selecteer een visualisatie type" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Gebruik de legacy datasource editor" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "Alles deselecteren" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "VERWIJDER" + +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "verwijder" + +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Type “%s” om te bevestigen" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 #, fuzzy -msgid "Select all items" -msgstr "Alles deselecteren" +msgid "More" +msgstr "Zie meer" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" -msgstr "" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Klik om te bewerken" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "Superset grafiek" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +#, fuzzy +msgid "Manage your databases" +msgstr "Importeer databases" + +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 -#, fuzzy -msgid "Select current page" -msgstr "Selecteer parent filters" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Onverwachte fout" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -#, fuzzy -msgid "Select database & schema" -msgstr "Zie tabel schema" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "Dit kan veroorzaakt worden door:" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 #, fuzzy -msgid "Select database or type to search databases" -msgstr "Selecteer tabel of type tabelnaam" +msgid "Please reach out to the Chart Owner for assistance." +msgstr "Neem contact op met de eigenaar van de grafiek voor hulp." -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -#, fuzzy -msgid "Select database table" -msgstr "Verwijder database" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Eigenaar grafiek: %s" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "Gebruik de legacy datasource editor" - -#: superset-frontend/src/components/ImportModal/index.tsx:445 -#, fuzzy -msgid "Select file" -msgstr "Alles deselecteren" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s Fout" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Ontbrekende dataset" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Zie meer" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Zie minder" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Kopieer bericht" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Select or type dataset name" -msgstr "Selecteer tabel of type tabelnaam" +msgid "This was triggered by:" +msgstr "Dit werd veroorzaakt door:" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Bedoelde je:" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s in plaats van “%(undefinedParameter)s?”" + +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Parameter fout" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Selecteer begin- en einddatum" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Timeout fout" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Klik om voorkeur aan te geven/voorkeur te verwijderen" + +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Cel inhoud" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Select table or type to search tables" -msgstr "Selecteer tabel of type tabelnaam" +msgid "Hide password." +msgstr "Wachtwoord" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 #, fuzzy -msgid "Select the Annotation Layer you would like to use." -msgstr "Kies het aantekeningenlaagtype" +msgid "Show password." +msgstr "Toon Dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "OVERSCHRIJVEN" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +#, fuzzy +msgid "Database passwords" +msgstr "Database poort" + +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "Wachtwoord" + +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Overschrijven" + +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Importeer" + +#: superset-frontend/src/components/ImportModal/index.tsx:430 #, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +msgid "Import %s" +msgstr "Importeer %s" + +#: superset-frontend/src/components/ImportModal/index.tsx:445 +#, fuzzy +msgid "Select file" +msgstr "Alles deselecteren" + +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Laatst bijgewerkt %s" + +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s Geselecteerd" + +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Alles deselecteren" + +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "September" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +#, fuzzy +msgid "clear all filters" +msgstr "Zoek in alle filteropties" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Series" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Geen Data" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s van %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Series Limit Sort By" -msgstr "Serie limiet" +msgid "Start date" +msgstr "Toe grafiek" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 #, fuzzy -msgid "Series Limit Sort Descending" -msgstr "Sorteer aflopend" +msgid "End date" +msgstr "datum" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -#, fuzzy -msgid "Series Order" -msgstr "Series" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Serie limiet" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Laatst gewijzigd" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Gewijzigd door" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Gecreëerd door" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Gemaakt op" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Stel auto-refresh in" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Selecteer …" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "Filter toewijzing instellen" +#: superset-frontend/src/components/Table/index.tsx:216 +#, fuzzy +msgid "Filter menu" +msgstr "Filter naam" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:219 +#, fuzzy +msgid "No filters" +msgstr "Alle filters" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "Instellingen" +#: superset-frontend/src/components/Table/index.tsx:220 +#, fuzzy +msgid "Select all items" +msgstr "Alles deselecteren" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/components/Table/index.tsx:221 +#, fuzzy +msgid "Search in filters" +msgstr "Zoek / Filter" + +#: superset-frontend/src/components/Table/index.tsx:223 +#, fuzzy +msgid "Select current page" +msgstr "Selecteer parent filters" + +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Deel" +#: superset-frontend/src/components/Table/index.tsx:225 +#, fuzzy +msgid "Clear all data" +msgstr "Wis alles" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "Deel grafiek per e-mail" +#: superset-frontend/src/components/Table/index.tsx:226 +#, fuzzy +msgid "Select all data" +msgstr "Alles deselecteren" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 +#: superset-frontend/src/components/Table/index.tsx:228 #, fuzzy -msgid "Share permalink by email" -msgstr "Deel grafiek per e-mail" +msgid "Expand row" +msgstr "Koptekst rij" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Gedeelde zoekopdracht" +#: superset-frontend/src/components/Table/index.tsx:229 +#, fuzzy +msgid "Collapse row" +msgstr "Alles inklappen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 +#: superset-frontend/src/components/Table/index.tsx:230 #, fuzzy -msgid "Shared query fields" -msgstr "Gedeelde zoekopdracht" +msgid "Click to sort descending" +msgstr "Sorteer aflopend" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Naam tabblad" +#: superset-frontend/src/components/Table/index.tsx:231 +#, fuzzy +msgid "Click to sort ascending" +msgstr "Controle op oplopend sorteren" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "Korte beschrijving moet uniek zijn voor deze laag" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +#, fuzzy +msgid "List updated" +msgstr "Laatst bijgewerkt %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Zie tabel schema" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +#, fuzzy +msgid "Select table or type to search tables" +msgstr "Selecteer tabel of type tabelnaam" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" -msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Forceer vernieuwen tabel lijst" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "U heeft geen toestemming om deze grafiek te bewerken" + +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "Toon CREATE VIEW statement" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Cross-filter scoping" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Toon CSS Template" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Toon grafiek" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "Kan bovenste tabblad niet in geneste tabbladen verplaatsen" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Toon Kolom" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Deze grafiek is verplaatst naar een ander filterbereik." -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Toon Dashboard" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "" +"Er was een probleem met het ophalen van de voorkeur status van dit " +"dashboard." -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Toon Database" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Er was een probleem met het promoten van dit dashboard." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Toon Log" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "U hebt geen rechten om dit dashboard te bewerken." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Toon meeteenheid" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Dit dashboard is succesvol opgeslagen." + +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +#, fuzzy +msgid "Sorry, an unknown error occurred" +msgstr "Sorry, er is een fout opgetreden" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "U hebt geen toestemming om dit dashboard te bewerken" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Toon Opgeslagen Query" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Kon niet alle opgeslagen grafieken ophalen" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Toon tabel" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" +"Elk kleurenpalet dat hier wordt geselecteerd zal de kleuren overschrijven" +" die worden toegepast op de individuele grafieken van dit dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -#, fuzzy -msgid "Show Total" -msgstr "Toon tabel" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Je hebt niet opgeslagen wijzigingen." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Maak een nieuwe grafiek" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +#, fuzzy +msgid "Edit the dashboard" +msgstr "Bewerk dashboard" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" -msgstr "" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "Verwijder deze container en sla op om dit bericht te verwijderen." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Interval vernieuwen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Frequentie vernieuwen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -#, fuzzy -msgid "Show chart description" -msgstr "Toggle grafiek omschrijving" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Weet je zeker dat je door wilt gaan?" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" -msgstr "" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Opslaan voor deze sessie" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "U moet een naam kiezen voor het nieuwe dashboard" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -#, fuzzy -msgid "Show empty columns" -msgstr "Geen tijdskolommen" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Dashboard opslaan" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Dashboard overschrijven [%s]" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Opslaan als:" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[dashboard naam]" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "kopieer ook (duplicate) grafieken" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +#, fuzzy +msgid "viz type" +msgstr "Viz type" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +#, fuzzy +msgid "recent" +msgstr "Recente" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Maak een nieuwe grafiek" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Filter je grafieken" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 #, fuzzy -msgid "Show password." -msgstr "Toon Dashboard" +msgid "Filter charts" +msgstr "Filter je grafieken" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Toegevoegd" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "Onbekende fout" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Viz type" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Dataset" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Superset grafiek" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Kijk naar deze grafiek in het dashboard:" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Laad een CSS sjabloon" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." -msgstr "" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Live CSS editor" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." -msgstr "" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +#, fuzzy +msgid "Collapse tab content" +msgstr "Cel inhoud" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "Weergave %s van %s" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "Eenvoudig" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +#, fuzzy +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "Sorry, er ging iets mis. Probeer het later nog eens." + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." +msgstr "Sorry, er ging iets mis. Probeer het later nog eens." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +#, fuzzy +msgid "Deactivate" +msgstr "Actief" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +#, fuzzy +msgid "Save changes" +msgstr "Wijzigingen weggooien" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "Blanco regels overslaan" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +#, fuzzy +msgid "Embed" +msgstr "November" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "Eerste spatie overslaan" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "Toegepaste dwarsfilters (%d)" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "Rijen overslaan" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, fuzzy, python-format +msgid "Applied filters (%d)" +msgstr "Toegepaste filters (%d)" -#: superset/views/database/forms.py:188 +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 #, fuzzy -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "Sla lege regels over in plaats van ze te interpreteren als NaN waarden." +msgid "Add the name of the dashboard" +msgstr "Opslaan en naar dashboard gaan" -#: superset/views/database/forms.py:184 +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 #, fuzzy -msgid "Skip spaces after delimiter" -msgstr "Spaties overslaan na het scheidingsteken." +msgid "Dashboard title" +msgstr "dashboard" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#, fuzzy +msgid "Undo the action" +msgstr "Selectie uitvoeren" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +#, fuzzy +msgid "Discard" +msgstr "dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Bewerk dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van beschikbare CSS " +"templates" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +#, fuzzy +msgid "Refreshing charts" +msgstr "Maak een nieuwe grafiek" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "Sommige rollen bestaan niet" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Superset dashboard" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -#, fuzzy -msgid "Something went wrong." -msgstr "Sorry, er ging iets mis. Probeer het later nog eens." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Kijk naar dit dashboard:" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Vernieuw dashboard" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" msgstr "" -"Sorry er is een fout opgetreden bij het ophalen van database informatie: " -"%s" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Sorry, er is een fout opgetreden" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Eigenschappen bewerken" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Bewerk CSS" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 #, fuzzy -msgid "Sorry, an unknown error occurred" -msgstr "Sorry, er is een fout opgetreden" +msgid "Download" +msgstr "Download naar CSV" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 #, fuzzy -msgid "Sorry, an unknown error occurred." -msgstr "Sorry, er is een fout opgetreden" +msgid "Export to PDF" +msgstr "Export naar YAML" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 #, fuzzy -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "Sorry, er ging iets mis. Probeer het later nog eens." +msgid "Download as Image" +msgstr "Download als afbeelding" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "Sorry, er ging iets mis. Probeer het later nog eens." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Deel" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +#, fuzzy +msgid "Copy permalink to clipboard" +msgstr "Kopieer query link naar uw klembord" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +#, fuzzy +msgid "Share permalink by email" +msgstr "Deel grafiek per e-mail" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" +msgstr "Dashboard opslaan" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "Sorry, uw browser ondersteunt het kopiëren niet." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +#, fuzzy +msgid "Manage email report" +msgstr "Beheer e-mailrapporten voor grafieken" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Sorry, uw browser ondersteunt het kopiëren niet. Gebruik Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Filter toewijzing instellen" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Stel auto-refresh in" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#, fuzzy +msgid "Confirm overwrite" +msgstr "Opslaan bevestigen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 #, fuzzy -msgid "Sort Series Ascending" -msgstr "Sorteer oplopend" +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -#, fuzzy -msgid "Sort Series By" -msgstr "Importeer queries" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, fuzzy, python-format +msgid "Last Updated %s by %s" +msgstr "Laatst bijgewerkt %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Toepassen" + +#: 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:66 +msgid "Error" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "Een geldig kleurenschema is vereist" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#, fuzzy +msgid "JSON metadata is invalid!" +msgstr "json is ongeldig" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Sorteer oplopend" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Het dashboard is opgeslagen" + +#: 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" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: 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." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Sorteer op" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Kleuren" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" +#: 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 " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Dashboard eigenschappen" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Sorteer kolommen alfabetisch" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Basis informatie" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "URL slag" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "Sorteer aflopend" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "Een leesbare URL voor uw dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Sorteer meeteenheid" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: 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 "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Bron" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "JSON metadata" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Bron SQL" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" +"Dit dashboard is niet gepubliceerd, het verschijnt niet in de lijst van " +"dashboards. Klik hier om dit dashboard te publiceren." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "Ruimtelijk" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Dit dashboard is gepubliceerd. Klik op om er een ontwerp van te maken." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Draft" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "Geef een schema op (als de databasesmaak dit ondersteunt)." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Aantekening lagen worden nog steeds geladen." -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Specificeer dubbele kolommen als “X.0, X.1”." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Aantekening lagen worden nog steeds geladen." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "Cached %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "Opgehaald %s" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Vernieuwen forceren" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 #, fuzzy -msgid "Square kilometers" -msgstr "Parent filter" +msgid "Hide chart description" +msgstr "Toggle grafiek omschrijving" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 #, fuzzy -msgid "Square meters" -msgstr "Parameters" +msgid "Show chart description" +msgstr "Toggle grafiek omschrijving" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Square miles" -msgstr "queries" +msgid "Cross-filtering scoping" +msgstr "Cross-filter scoping" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Bekijk zoekopdracht" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +#, fuzzy +msgid "View as table" +msgstr "Bekijk voorbeelden" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "Laatst bijgewerkt %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Deel grafiek per e-mail" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +#, fuzzy +msgid "Export to .CSV" +msgstr "Export naar YAML" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +#, fuzzy +msgid "Export to Excel" +msgstr "Export naar YAML" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Export naar YAML" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Start" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Download als afbeelding" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 #, fuzzy -msgid "Start (Longitude, Latitude): " -msgstr "Ongeldige longitude/latitude" +msgid "Something went wrong." +msgstr "Sorry, er ging iets mis. Probeer het later nog eens." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Zoek…" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Er is geen filter geselecteerd." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Bewerk 1 filter:" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "Start op (UTC)" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Batchbewerking %d filters:" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "Start date" -msgstr "Toe grafiek" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Filter scopes configureren" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "Begindatum opgenomen in de tijdspanne" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "Er zijn geen filters in dit dashboard." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Alles uitklappen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Alles inklappen" + +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 #, fuzzy -msgid "Started" -msgstr "Status" +msgid "Empty column" +msgstr "kolom" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Status" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Deze markdown component heeft een fout." -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Status" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +#, fuzzy +msgid "You can" +msgstr "Bedoelde je:" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +#, fuzzy +msgid "create a new chart" +msgstr "Maak een nieuwe grafiek" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Dashboard tabblad verwijderen?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Stop" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Query stoppen" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 #, fuzzy -msgid "Stop running (Ctrl + e)" -msgstr "Stop de uitvoering (Ctrl + x)" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "Stop de uitvoering (Ctrl + x)" +msgid "undo" +msgstr "Ongedaan maken?" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Stopte een onveilige database connectie" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -#, fuzzy -msgid "Stream" -msgstr "Histogram" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "ANNULEER" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Verdeler" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Header" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "Strings gebruikt voor bladnamen (standaard is het eerste blad)." +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Tabs" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" -msgstr "" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Preview" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Sorry, er ging iets mis. Probeer het later nog eens." + +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Stijl" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#, fuzzy +msgid "No filters are currently added to this dashboard." +msgstr "Er zijn geen filters in dit dashboard." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Wis alles" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#, fuzzy +msgid "Locate the chart" +msgstr "Maak een nieuwe grafiek" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#, fuzzy +msgid "Cross-filters" +msgstr "Cross-filter scoping" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "Succes" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Superset grafiek" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 #, fuzzy -msgid "Successfully changed dataset!" -msgstr "Wijzig dataset" +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Er zijn geen filters in dit dashboard." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Alle grafieken" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#, fuzzy +msgid "Enable cross-filtering" +msgstr "Cross-filter scoping" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 #, fuzzy -msgid "Sum values" -msgstr "Nul waarden" - -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Sunburst" - -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "" +msgid "More filters" +msgstr "Parent filter" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 #, fuzzy -msgid "Sunburst Chart v2" -msgstr "Superset grafiek" +msgid "No applied filters" +msgstr "Verwijder ongeldige filters" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Zondag" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "Toegepaste filters (%d)" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" -msgstr "Superset Grafiek" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Kan filter niet laden" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Superset grafiek" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Superset dashboard" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." -msgstr "een fout is opgetreden in Superset tijdens het uitvoeren van een commando." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." -msgstr "Er is een onverwachte fout opgetreden in Superset." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -#, fuzzy -msgid "Swap dataset" -msgstr "dataset" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Verwijderd)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Ongedaan maken?" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +#, fuzzy +msgid "[untitled]" +msgstr "[Untitled]" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "Synchroniseer kolommen van bron" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +#, fuzzy +msgid "No compatible datasets found" +msgstr "Onverenigbare filters (%d)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Alles deselecteren" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 #, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "Is tijdelijk" +msgid "Limit type" +msgstr "Viz type" -#: superset-frontend/src/explore/constants.ts:91 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 #, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "Is tijdelijk" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "DO" +msgid "No available filters." +msgstr "Alle filters" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "DI" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Filter toevoegen" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Tab naam" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "Titel tabblad" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabel" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "Tabwl %(table)s werd niet gevonden in de database %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Scoping" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "De tabel bestaat reeds" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Tabel Naam" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Tabel Weergave" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" msgstr "" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" msgstr "" -"De tabel [%{table}s] kon niet worden gevonden, controleer uw " -"databaseverbinding, schema en tabelnaam, fout: {}" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -#, fuzzy -msgid "Table columns" -msgstr "Geen tijdskolommen" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Tijdsspanne" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Tabelnaam niet gedefinieerd" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "De gebruikersnaam “%(username)s” bestaat niet." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Groep per" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tabellen" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "Tabs" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset/tags/commands/exceptions.py:34 -#, fuzzy -msgid "Tag could not be created." -msgstr "Dataset kon niet worden aangemaakt." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Filter naam" -#: superset/tags/commands/exceptions.py:38 -#, fuzzy -msgid "Tag could not be deleted." -msgstr "Dataset kon niet worden verwijderd." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Naam is vereist" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Filter Type" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset/tags/commands/exceptions.py:30 -#, fuzzy -msgid "Tag parameters are invalid." -msgstr "Dataset parameters zijn ongeldig." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 +msgid "" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." +msgstr "" -#: superset/tags/commands/exceptions.py:42 -#, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "Dataset kon niet worden verwijderd." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "Dataset is vereist" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Sorteer oplopend" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Template Naam" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Sorteer meeteenheid" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Template parameters" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Test Connectie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Test connectie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Default Value" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Je hebt deze filter verwijderd." -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Herstel Filter" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" msgstr "" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Toepassen op alle panelen" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "De toegangsverzoeken lijken te zijn gewist" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Toepassen op specifieke panelen" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "Alleen geselecteerde panelen zullen door deze filter worden beïnvloed" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "Alle panelen met deze kolom zullen door deze filter worden beïnvloed" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset/common/query_context_processor.py:585 -#, fuzzy -msgid "The chart datasource does not exist" -msgstr "De grafiek bestaat niet" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Blijf bewerken" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "De grafiek bestaat niet" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Ja, annuleer" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Weet je zeker dat je wilt annuleren?" + +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "Het kleurenschema voor de rendering grafiek" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Alle filters" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, fuzzy, python-format +msgid "Click to edit %s." +msgstr "Klik om te bewerken" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 #, fuzzy -msgid "The column header label" -msgstr "Sorteer kolommen alfabetisch" +msgid "Click to edit chart." +msgstr "Klik om te bewerken" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." -msgstr "De kolom werd verwijderd of hernoemd in de database." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "Zoekopdracht in een nieuw tabblad" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "Het dashboard is opgeslagen" - -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "De gegevensbron lijkt te zijn verwijderd" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "Nieuwe grafiek" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." -msgstr "" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Titel tabblad" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset/sqllab/commands/estimate.py:58 +#: superset-frontend/src/explore/constants.ts:59 #, fuzzy -msgid "The database could not be found" -msgstr "De database kon niet worden bijgewerkt." - -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "" - -#: superset/errors.py:99 -msgid "The database is under an unusual load." -msgstr "De database wordt ongebruikelijk zwaar belast." +msgid "Not equal to (≠)" +msgstr "!= (Is niet gelijk)" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." -msgstr "De database gaf een onverwachte foutmelding." +#: superset-frontend/src/explore/constants.ts:62 +#, fuzzy +msgid "Less or equal (<=)" +msgstr "<= (Kleiner of gelijk)" -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "" +#: superset-frontend/src/explore/constants.ts:65 +#, fuzzy +msgid "Greater than (>)" +msgstr "maak een " -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." -msgstr "" +#: superset-frontend/src/explore/constants.ts:67 +#, fuzzy +msgid "Greater or equal (>=)" +msgstr ">= (Groter of gelijk)" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." -msgstr "" +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "in" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "De dataset die bij deze grafiek hoort bestaat niet meer" +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "aantekening" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -"De dataset configuratie die hier wordt getoond\n" -" heeft invloed op alle grafieken die deze dataset " -"gebruiken.\n" -" Wees je ervan bewust dat het veranderen van instellingen\n" -" hier invloed kan hebben op andere grafieken\n" -" op ongewenste manieren." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "De dataset is opgeslagen" +#: superset-frontend/src/explore/constants.ts:74 +#, fuzzy +msgid "Like (case insensitive)" +msgstr "Filterwaarde (hoofdlettergevoelig)" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." -msgstr "De aan deze grafiek gekoppelde dataset is mogelijk verwijderd." +#: superset-frontend/src/explore/constants.ts:78 +#, fuzzy +msgid "Is not null" +msgstr "Not null" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "De datasource kon niet geladen worden" +#: superset-frontend/src/explore/constants.ts:81 +#, fuzzy +msgid "Is null" +msgstr "Not null" -#: superset/errors.py:98 -msgid "The datasource is too large to query." -msgstr "De gegevensbron is te groot om te bevragen." +#: superset-frontend/src/explore/constants.ts:83 +#, fuzzy +msgid "use latest_partition template" +msgstr "laatste partitie:" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 +#: superset-frontend/src/explore/constants.ts:89 #, fuzzy -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "De tijdsduur in seconden voordat de cache ongeldig wordt gemaakt" +msgid "TEMPORAL_RANGE" +msgstr "Is tijdelijk" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset/common/query_object.py:313 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Eén of vele meeteenheden om weer te geven" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "De host “%(hostname)s” is misschien down en kan niet worden bereikt." +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Vaste kleur" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." -msgstr "" -"De host “%(hostname)s” is misschien down, en kan niet bereikt worden op " -"poort %(port)s." +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Meeteenheid rechteras" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Kies een meeteenheid voor de rechteras" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "De hostnaam “%(hostname)s” kan niet worden opgelost." +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Lineair kleurenpalet" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." -msgstr "De opgegeven hostnaam kan niet worden gevonden." +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Kleur meeteenheid" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "Het id van de actieve grafiek" +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Een of meer bedieningsinstrumenten om als kolommen te pivoteren" -#: superset/connectors/sqla/views.py:325 +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -#: superset/databases/schemas.py:222 -#, python-format +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -"De metadata_params in Extra veld is niet correct geconfigureerd. De " -"sleutel %(key)s is ongeldig." -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -"De metadata_params in Extra veld is niet correct geconfigureerd. De " -"sleutel %{key}s is ongeldig." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Meeteenheid toegewezen aan de [X]-as" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Meeteenheid toegewezen aan de [Y]-as" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Bubbelgrootte" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." -msgstr "" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Kleurenschema" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "Het aantal seconden voor het verstrijken van de cache" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "Grafiek [{}] is opgeslagen" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "" +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, fuzzy, python-format +msgid "Chart [%s] has been overwritten" +msgstr "Grafiek [{}] is overschreven" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, fuzzy, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "Het opgegeven wachtwoord voor gebruikersnaam “%(username)s” is onjuist." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, fuzzy, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "Grafiek [{}] werd toegevoegd aan dashboard [{}]" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "Het patroon van het timestamp formaat. Voor tekenreeksen gebruik je " - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset/errors.py:109 -msgid "The port is closed." -msgstr "De poort is gesloten." - -#: superset/errors.py:142 -msgid "The port number is invalid." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 +msgid "" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" msgstr "" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" msgstr "" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." -msgstr "" - -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "De query kon niet geladen worden" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Pas aan" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "De query leverde geen gegevens op" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#, fuzzy +msgid "Chart width" +msgstr "grafiek" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Opslaan (overschrijven)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "Opslaan als …" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Grafiek naam" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "Dataset naam" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Toevoegen aan het dashboard" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" msgstr "" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." -msgstr "Het schema werd verwijderd of hernoemd in de database." +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "Dashboard opslaan" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "Maak" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#, fuzzy +msgid " a new one" +msgstr "Gewijzigd op" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Dashboard kon niet worden aangemaakt." -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Grafiek kon niet worden aangemaakt." -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Dashboard kon niet worden aangemaakt." -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Opslaan en naar dashboard gaan" + +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Grafiek opslaan" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" msgstr "" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "De tabel werd verwijderd of hernoemd in de database." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +#, fuzzy +msgid "Collapse data panel" +msgstr "Alles inklappen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "Voorbeelden" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." -msgstr "" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Zoek meeteenheden & kolommen" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "maak een " + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +#, fuzzy +msgid " to edit or add columns and metrics." +msgstr "%s kolom(men) en meeteenhe(i)d(en)" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" +msgstr "Weergave %s van %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "Het type visualisatie dat moet worden weergegeven" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "De gebruiker lijkt te zijn verwijderd" - -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "De gebruikersnaam “%(username)s” bestaat niet." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Toevoegen aan het dashboard" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "Toevoegen aan het dashboard" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Er zijn geassocieerde waarschuwingen of rapporten" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +#, fuzzy +msgid "Add the name of the chart" +msgstr "Het id van de actieve grafiek" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," -msgstr "Er zijn gerelateerde waarschuwingen of rapporten: %s," +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "Titel tabblad" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "Er zijn geen filters in dit dashboard." - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -#, fuzzy -msgid "There was an error fetching dataset" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -"Sorry er is een fout opgetreden bij het ophalen van database informatie: " -"%s" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -#, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "" -"Sorry er is een fout opgetreden bij het ophalen van database informatie: " -"%s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "Controle gelabeld " -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 #, fuzzy -msgid "There was an error fetching tables" -msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " +msgid "Chart Source" +msgstr "Data bron" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Open Datasource tab" + +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "Er is een fout opgetreden bij het ophalen van uw recente activiteit:" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -#, fuzzy -msgid "There was an error loading the chart data" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "U heeft geen toestemming om deze grafiek te bewerken" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" msgstr "" -"Sorry er is een fout opgetreden bij het ophalen van database informatie: " -"%s" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 #, fuzzy -msgid "There was an error loading the dataset metadata" -msgstr "" -"Sorry er is een fout opgetreden bij het ophalen van database informatie: " -"%s" +msgid "Edit Chart Properties" +msgstr "Grafiek eigenschappen bewerken" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "Er is een fout opgetreden in uw verzoek." - -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Er was een probleem met het verwijderen van %s: %s" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Er was een probleem met het verwijderen van %s: %s" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Er was een probleem met het verwijderen van de geselecteerde %s: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Configuratie" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#, fuzzy +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" -"Er was een probleem met het verwijderen van de geselecteerde " -"aantekeningen: %s" +"Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat " +"dit standaard de timeout van de dataset is indien ongedefinieerd." -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "Er was een probleem met het verwijderen van de geselecteerde grafieken: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "Er was een probleem met het verwijderen van de geselecteerde dashboards: " +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Limiet bereikt" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#, fuzzy +msgid "Create chart" +msgstr "Maak een nieuwe grafiek" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Er was een probleem met het verwijderen van de geselecteerde lagen: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#, fuzzy +msgid "Update chart" +msgstr "Grafiek opslaan" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "Er was een probleem bij het verwijderen van de geselecteerde query’s: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Ongeldige breedtegraad/lengtegraad configuratie." -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "Er was een probleem met het verwijderen van de geselecteerde templates: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "Omgekeerde breedtegraad/lengtegraad " -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "Er was een probleem bij het verwijderen van: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Kolommen lengtegraad en breedtegraad" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -#, fuzzy -msgid "There was an issue duplicating the dataset." -msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "Afgebakende lengtegraad en breedtegraad in enkele kolom" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, fuzzy, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "" +"Meerdere formaten geaccepteerd, zie de geopy.points Python bibliotheek " +"voor meer details" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Er was een probleem met het promoten van dit dashboard." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geohash" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "tekstveld" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "" -"Er was een probleem met het ophalen van de voorkeur status van dit " -"dashboard." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "in modal" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Er was een probleem met het ophalen van je grafiek: %s" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Sorry, er is een fout opgetreden" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, fuzzy, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Er was een probleem met het ophalen van uw dashboards: %s" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +#, fuzzy +msgid "Save as Dataset" +msgstr "Kies een dataset" -#: superset-frontend/src/pages/Home/index.tsx:248 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Open in SQL Lab" + +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Er was een probleem bij het ophalen van uw recente activiteit: %s" +msgid "Failed to verify select options: %s" +msgstr "Mislukt bij het verifiëren van geselecteerde opties: %s" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, fuzzy, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Er was een probleem met het ophalen van uw opgeslagen zoekopdrachten: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +#, fuzzy +msgid "No annotation layers" +msgstr "Aantekeningenlagen" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "Er was een probleem met het bekijken van de geselecteerde query %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" +msgstr "Aantekeningenlaag toevoegen" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Er was een probleem met het bekijken van de geselecteerde query. %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Aantekeningenlaag" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#, fuzzy +msgid "Select the Annotation Layer you would like to use." +msgstr "Kies het aantekeningenlaagtype" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "Dit zijn de tabellen waarop dit filter zal worden toegepast." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +msgid "" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" msgstr "" -"Deze filters zijn van toepassing op de waarden die beschikbaar zijn in de" -" dropdowns" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Configuratie van Aantekening sectie" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +#, fuzzy msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" +"In dit gedeelte kunt u configureren hoe u de slice gebruikt\n" +" om aantekeningen te genereren." -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." -msgstr "Deze actie zal %s permanent verwijderen." - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "Deze actie zal de laag permanent verwijderen." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "Deze actie zal de opgeslagen query permanent verwijderen." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "Deze actie zal de template permanent verwijderen." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "Deze grafiek is verplaatst naar een ander filterbereik." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +#, fuzzy +msgid "Override time range" +msgstr "Bewerk tijdspanne" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" "This controls whether the \"time_range\" field from the current\n" " view should be passed down to the chart containing the " "annotation data." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "Toon Druid time origin" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" "This controls whether the time grain field from the current\n" " view should be passed down to the chart containing the " "annotation data." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Weergave configuratie" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Configureer hier hoe uw overlay wordt weergegeven." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Stijl" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -"Dit dashboard is niet gepubliceerd, het verschijnt niet in de lijst van " -"dashboards. Klik hier om dit dashboard te publiceren." -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#, fuzzy +msgid "Dashed" +msgstr "dashboard" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +#, fuzzy +msgid "Dotted" +msgstr "Bewerkt" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "Dit dashboard is gepubliceerd. Klik op om er een ontwerp van te maken." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Kleur" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Dit dashboard is succesvol opgeslagen." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +#, fuzzy +msgid "Hide Line" +msgstr "Laag verbergen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Laagconfiguratie" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Configureer de basis van uw Aantekeningenlaag." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Verplicht" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Laag verbergen" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Type aantekeningenlaag" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Kies het aantekeningenlaagtype" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Dit definieert het element dat op de grafiek moet worden uitgezet" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "aantekening" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Verwijder" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "" -"Dit veld werkt als een Superset view, wat betekent dat Superset een query" -" zal uitvoeren tegen deze string als een subquery." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +#, fuzzy +msgid "Time series" +msgstr "Time series kolommen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Deze filter bestaat niet in het dashboard. Het zal niet worden toegepast." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Bewerk de aantekeningenlaag" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Aantekeningenlaag toevoegen" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "Deze filterset is identiek aan: “%s”" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Lege verzameling" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Voeg een item toe" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Item verwijderen" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset/views/dashboard/mixin.py:46 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Deze markdown component heeft een fout." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "dashboard" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "Dit kan veroorzaakt worden door:" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -#, fuzzy -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" msgstr "" -"In dit gedeelte kunt u configureren hoe u de slice gebruikt\n" -" om aantekeningen te genereren." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" msgstr "" -"Dit onderdeel bevat opties die geavanceerde analytische nabewerking van " -"queryresultaten mogelijk maken" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -#, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "Dit visualisatietype wordt niet ondersteund." - -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Dit visualisatietype wordt niet ondersteund." - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -#, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "Dit werd veroorzaakt door:" -msgstr[1] "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Donderdag" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Tijd" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 #, fuzzy -msgid "Time Lag" -msgstr "Tijdsspanne" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "" +msgid "Display" +msgstr "Toon naam" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 #, fuzzy -msgid "Time Ratio" +msgid "Number formatting" msgstr "Datetime formaat" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" -msgstr "" - -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Tijdreeks - Staafdiagram" - -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Tijdreeks - lijngrafiek met twee assen" - -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Tijdreeks - Lijngrafiek" - -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Tijdreeksen - Meervoudige lijndiagrammen" - -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Tijdreeks - Nightingale Rose grafiek" - -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Tijdreeks - Paired t-test" - -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Tijdreeks - Procentuele verandering" - -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "Tijdreeksen - Periode draaitabel" - -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Tijdreeksen - Gestapeld" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "Tijd tabelweergave" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "Tijdkolom “%(col)s” bestaat niet in dataset" - -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "Waarschuwing" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "%s Fout" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Succes" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Tijdsvergelijking" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Waarschuwing" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Vereist" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Time grain ontbreekt" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "Tijd in seconden" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 #, fuzzy -msgid "Time lag" -msgstr "Tijdsspanne" +msgid "Color: " +msgstr "Kleur" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Tijdsspanne" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 #, fuzzy -msgid "Time ratio" -msgstr "Datetime formaat" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Tijdgerelateerde vormattributen" +msgid "Upper threshold must be greater than lower threshold" +msgstr "`rij_limiet` moet groter of gelijk aan 0 zijn" -#: superset-frontend/src/modules/AnnotationTypes.js:46 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 #, fuzzy -msgid "Time series" -msgstr "Time series kolommen" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Time series kolommen" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Time shift" +msgid "Isoline" +msgstr "Offline" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 #, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "Tijdreeks - Staafdiagram" +msgid "Isoband" +msgstr "en" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Time-series Table" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Bewerk de dataset" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Timeout fout" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Bekijk in SQL Lab" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Query preview" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +#, fuzzy +msgid "Save as dataset" +msgstr "Kies een dataset" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Tijdzone-offset (in uren) voor deze databron" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "De aan deze grafiek gekoppelde dataset is mogelijk verwijderd." -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "BEREIK TYPE" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Reële tijdspanne" -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:186 -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:207 -#: 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 -msgid "Title" -msgstr "Titel" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "TOEPASSEN" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Bewerk tijdspanne" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "Geavanceerde tijdspanne configureren " + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "START (INCLUSIEF)" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Begindatum opgenomen in de tijdspanne" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "EINDE (EXCLUSIEF)" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Einddatum uitgesloten uit de tijdspanne" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Configureer Tijdspanne: Vorige…" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Configureer Tijdspanne: Laatste…" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Configureer aangepaste tijdspanne" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Relatieve hoeveelheid" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "Veranker naar" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "NU" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Datum/Tijd" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "Terugkeren naar specifieke datum/tijd." + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "Syntax" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Voorbeeld" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "Verplaatst de gegeven reeks datums met een opgegeven interval." + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Titel of Slug" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "Verkrijg de laatste datum door de datum eenheid." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Om te filteren op een meeteenheid, gebruikt u het tabblad Aangepaste SQL." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "Zoek de specifieke datum voor de vakantie" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Om een leesbare URL voor uw dashboard te krijgen" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Vorige" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -#, fuzzy -msgid "Top left" -msgstr "Autocomplete" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" msgstr "" -#: superset/charts/post_processing.py:73 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 #, python-format -msgid "Total (%(aggfunc)s)" +msgid "Minutes %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 #, python-format -msgid "Total (%(aggregatorName)s)" +msgid "Hours %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "Nul waarden" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 #, python-format -msgid "Total: %s" +msgid "Weeks %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "Track job" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Treemap" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Opgeslagen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" +msgstr "%s kolom(men)" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "Trigger waarschuwing als…" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 #, fuzzy -msgid "Truncate Metric" -msgstr "Sorteer meeteenheid" +msgid " to add calculated columns" +msgstr "Berekende kolommen" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Eenvoudig" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "Custom SQL" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Dinsdag" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 #, fuzzy -msgid "Tukey" -msgstr "query" +msgid "Drop a column/metric here or click" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Type" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " +msgstr "" +"\n" +" Deze filter werd geërfd van de context van het dashboard." +"\n" +" Dit wordt niet opgeslagen bij het opslaan van de grafiek." +"\n" +" " -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 #, python-format -msgid "Type \"%s\" to confirm" -msgstr "Type “%s” om te bevestigen" +msgid "%s option(s)" +msgstr "%s optie(s)" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "Geef hier een waarde op" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." +msgstr "" +"Geen dergelijke kolom gevonden. Om te filteren op een meeteenheid, " +"probeer het Custom SQL tabblad." -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "Type is vereist" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Om te filteren op een meeteenheid, gebruikt u het tabblad Aangepaste SQL." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" +msgstr "%s operator(s)" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Type of selecteer [%s]" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Geef hier een waarde op" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Filterwaarde (hoofdlettergevoelig)" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#, fuzzy +msgid "Failed to retrieve advanced type" +msgstr "Fout bij het ophalen van resultaten" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "kies WHERE of HAVING…" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "URL parameters" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Filter op kolommen" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "URL slag" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Filter op meeteenheden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +#, fuzzy +msgid "metric" +msgstr "Meeteenheid" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "Kan geen verbinding maken met catalogus genaamd “%(catalog_name)s”." +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Vast" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Kan geen verbinding maken met database “%(database)s”." +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "Gebaseerd op een meeteenheid" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Mijn meeteenheid" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Meeteenheid toevoegen" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" +msgstr "%s aggrega(a)t(en)" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" msgstr "" -#: superset/utils/date_parser.py:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Niet in staat om zo’n holiday te vinden: [%(holiday)s]" +msgid "%s saved metric(s)" +msgstr "%s opgeslagen meeteenhe(i)d(en)" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Opgeslagen meeteenheid" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "Meeteenheid toevoegen" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "kolom" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "aggregaat" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/views/database/views.py:415 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 #, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgid "Error while fetching data: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Ongedefinieerd" - -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Onbepaald venster voor rolling operation" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Time series kolommen" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 #, fuzzy -msgid "Undo the action" -msgstr "Selectie uitvoeren" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "Ongedaan maken?" - -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Onverwachte fout" - -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" -msgstr "Er is een onverwachte fout opgetreden, controleer uw logs voor details" +msgid "Actual value" +msgstr "Nul waarden" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset/views/api.py:108 -#, fuzzy, python-format -msgid "Unexpected time range: %s" -msgstr "Reële tijdspanne" - -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "Onbekend" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Onbekende MySQL server host “%(hostname)s”." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#, fuzzy +msgid "The column header label" +msgstr "Sorteer kolommen alfabetisch" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "Onbekende Presto Fout" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Onbekende kolom gebruikt in orderby: %(col)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Breedte" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "Onbekende fout" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 #, fuzzy -msgid "Unknown type" -msgstr "Onbekende fout" +msgid "Time lag" +msgstr "Tijdsspanne" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Onveilig terugkeertype voor functie %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +#, fuzzy +msgid "Time Lag" +msgstr "Tijdsspanne" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Onveilige sjabloonwaarde voor sleutel %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +#, fuzzy +msgid "Time ratio" +msgstr "Datetime formaat" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Niet-ondersteunde nabewerking: %(operation)s" - -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Niet-ondersteunde terugkeer waarde voor methode %(name)s" - -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Niet-ondersteunde sjabloonwaarde voor sleutel %(key)s" - -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Niet-ondersteunde time grain: %(time_grain)s" - -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 #, fuzzy -msgid "Untitled Dataset" -msgstr "Bewerk de dataset" +msgid "Time Ratio" +msgstr "Datetime formaat" -#: superset/views/sql_lab/views.py:148 -#, fuzzy -msgid "Untitled Query" -msgstr "Naamloze zoekopdracht" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Naamloze zoekopdracht" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "Update" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -#, fuzzy -msgid "Update chart" -msgstr "Grafiek opslaan" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Upload" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -#, fuzzy -msgid "Upload CSV" -msgstr "Upload Excel" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -#, fuzzy -msgid "Upload CSV to database" -msgstr "Importeer databases" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" msgstr "" -#: superset/databases/filters.py:66 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 #, fuzzy -msgid "Upload Enabled" -msgstr "Upload Excel" +msgid "Date format string" +msgstr "Datetime formaat" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 #, fuzzy -msgid "Upload Excel file" -msgstr "Upload Excel" +msgid "Column Configuration" +msgstr "Check configuratie" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Voorbeelden" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Dit visualisatietype wordt niet ondersteund." + +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 #, fuzzy -msgid "Upload file to database" -msgstr "Bewerk database" +msgid "View all charts" +msgstr "Alle grafieken" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Selecteer een visualisatie type" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Geen resultaten gevonden" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "Zoekopdracht in een nieuw tabblad" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "Superset Grafiek" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Nieuwe grafiek" -#: superset/views/database/forms.py:472 -msgid "Use Columns" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Grafiek eigenschappen bewerken" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +#, fuzzy +msgid "Dashboards added to" +msgstr "[dashboard naam]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +#, fuzzy +msgid "Export to .JSON" +msgstr "Export naar YAML" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Uitvoeren in SQL Lab" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "Gebruik de legacy datasource editor" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Code" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Opmaaktype(Markup type)" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Kies uw favoriete opmaaktaal (markup language)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Plaats je code hier" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "URL parameters" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Extra parameters voor gebruik in jinja templated queries" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Aantekeningen en lagen" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Aantekeningenlagen" + +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "Gebruik dit om een statische kleur te definiëren voor alle cirkels" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (Kleiner dan)" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (Groter dan)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (Kleiner of gelijk)" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Gebruiker" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (Groter of gelijk)" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Gebruikersrollen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (Is gelijk)" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." -msgstr "Gebruiker heeft niet de juiste permissies." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (Is niet gelijk)" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Not null" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "De gebruiker moet een waarde voor deze filter kiezen" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 dagen" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "User query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 dagen" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "Gebruikersnaam" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Meldingsmethode toevoegen" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Leveringswijze toevoegen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Voeg toe" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Waarde" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +msgid "Edit Alert" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Naam rapport" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Naam van de waarschuwing" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Actief" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Naam waarschuwingsconditie" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "Waarde moet groter zijn dan 0" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQL Query" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Trigger waarschuwing als…" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Rapportageplanning" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Verklarende naam" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Waarschuwing conditie planning" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Planning instellingen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Log retentie" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Time-out" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Tijd in seconden" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 #, fuzzy -msgid "View" -msgstr "Preview" +msgid "seconds" +msgstr "30 seconden" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Grace periode" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Inhoud van het bericht" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "Bewerk de dataset" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -#, fuzzy -msgid "View all charts" -msgstr "Alle grafieken" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 #, fuzzy -msgid "View as table" -msgstr "Bekijk voorbeelden" - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Bekijk in SQL Lab" +msgid "Ignore cache when generating report" +msgstr "" +"Rapportage planning uitvoering mislukt bij het genereren van een " +"screenshot." -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Bekijk sleutels & indexen (%s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Bekijk zoekopdracht" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Bekeken" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Methode voor kennisgeving" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "rapport" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "Laatst bijgewerkt %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 #, fuzzy -msgid "Virtual" -msgstr "virtueel" +msgid "CRON Schedule" +msgstr "Rapportageplanning" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "Virtueel (SQL)" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "CRON expressie" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Virtuele dataset" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Rapport verzonden" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "Query virtuele dataset kan niet leeg zijn" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Alarm geactiveerd, kennisgeving verzonden" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "" -"Een query voor een virtuele dataset kan niet uit meerdere statements " -"bestaan" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Rapport verzenden" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "Query voor virtuele gegevensverzameling moet alleen-lezen zijn" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Alarm actief" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Rapport mislukt" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Type visualisatie" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Waarschuwing mislukt" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Type visualisatie" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Niets getriggerd" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Waarschuwing geactiveerd, in grace periode" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Ontvangers worden gescheiden door “,” of “;”" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +#, fuzzy +msgid "Queries" +msgstr "queries" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "annotation_layer" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Eigenschappen aantekeningenlaag bewerken" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Naam aantekeningenlaag" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Omschrijving (dit is te zien in de lijst)" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "aantekening" + +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Viz mist een gegevensbron" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Bewerk aantekening" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "Viz type" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Aantekening toevoegen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "WO" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "datum" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Bijkomende informatie" + +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Gelieve te bevestigen" + +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Weet je zeker dat je wilt verwijderen" + +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, python-format +msgid "Modified %s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "Waarschuwing" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css_template" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Waarschuwing" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Bewerk CSS template eigenschappen" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Waarschuwing!" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Voeg CSS template toe" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." -msgstr "" -"Waarschuwing! Het veranderen van de dataset kan de grafiek breken als de " -"metadata niet bestaat." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -#, fuzzy -msgid "Was unable to check your query" -msgstr "Label voor uw zoekopdracht" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "gepubliceerd" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." -msgstr "" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "draft" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Sta toe dat deze database wordt opgevraagd in SQL Lab" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Aanmaken van nieuwe tabellen op basis van query’s mogelijk maken" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Aanmaken van nieuwe views gebaseerd op queries toestaan" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "CTAS & CVAS SCHEMA" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" +"Sta manipulatie van de database toe met niet-SELECT statements zoals " +"UPDATE, DELETE, CREATE, enz." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Woensdag" - -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "Week" - -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" -msgstr "Week beginnend op zaterdag" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +msgid "" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." +msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" -msgstr "Week beginnend op maandag" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "Week beginnend op zondag" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." +msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +msgid "" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 +msgid "" +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Grafiek cache timeout" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset/views/database/forms.py:175 -#, fuzzy -msgid "What should happen if the table already exists" -msgstr "Er bestaat al een filterset met deze naam" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" msgstr "" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -"Wanneer de CREATE TABLE AS optie in SQL Lab wordt toegestaan, dwingt deze" -" optie de tabel om in dit schema aangemaakt te worden" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Asynchrone uitvoering van query’s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +#, fuzzy +msgid "Add extra connection information." +msgstr "Bijkomende informatie" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Secure extra" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -"Bij gebruik van ‘Group By’ bent u beperkt tot het gebruik van één " -"meeteenheid" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +#, fuzzy +msgid "Allow file uploads to database" +msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +#, fuzzy +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" +"Een door komma’s gescheiden lijst van kolommen die als datums moeten " +"worden geparseerd." -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." msgstr "" -"Geeft aan of de tabel werd gegenereerd door de “Visualize” stroom in SQL " -"Lab" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#, fuzzy +msgid "Select a database to connect" +msgstr "Stopte een onveilige database connectie" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +#, fuzzy +msgid "Login with" +msgstr "Lijndikte" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#, fuzzy +msgid "SSH Password" +msgstr "Wachtwoord" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "Broker Wachtwoord" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Geef aan of een tijdfilter moet worden opgenomen" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Toon naam" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "Kies een naam om je te helpen deze database te identificeren." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "dialect+driver://username:password@host:port/database" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Test connectie" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "database" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Voer een SQLAlchemy URI in om te testen" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "Geef aan of de autoaanvulfilteropties moeten worden ingevuld" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" +msgstr "" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -#, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Aflopend of oplopend sorteren" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Aflopend of oplopend sorteren" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -#, fuzzy -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "Aflopend of oplopend sorteren" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" +"Je importeert een of meer databases die al bestaan. Overschrijven kan " +"ertoe leiden dat een deel van je werk verloren gaat. Weet je zeker dat je" +" wilt overschrijven?" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +#, fuzzy +msgid "CREATE DATASET" +msgstr "Wijzig dataset" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Breedte" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Bewerk database" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +#, fuzzy +msgid "Import database from file" +msgstr "Importeer databases" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "Time-out" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Wereld kaart" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Schrijf een omschrijving voor uw zoekopdracht." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset/views/database/forms.py:229 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 #, fuzzy -msgid "Write dataframe index as a column" -msgstr "Schrijf dataframe index als een kolom." - -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "Schrijf dataframe index als een kolom." +msgid "Port" +msgstr "rapport" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "X As" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -#, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "Sorteer oplopend" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Y As" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Y-as Formaat" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -#, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "Sorteer oplopend" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "Jaar" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "Ja" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "Ja, annuleer" - -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -"Je importeert een of meer dashboards die al bestaan. Overschrijven kan " -"ertoe leiden dat je een deel van je werk verloren gaat. Weet je zeker dat" -" je wilt overschrijven?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +#, fuzzy +msgid "Duplicate dataset" +msgstr "Bewerk de dataset" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +#, fuzzy +msgid "Duplicate" +msgstr "Tabblad Dupliceren" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "Dataset naam" + +#: superset-frontend/src/features/datasets/constants.ts:23 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -"Je importeert een of meer databases die al bestaan. Overschrijven kan " -"ertoe leiden dat een deel van je werk verloren gaat. Weet je zeker dat je" -" wilt overschrijven?" #: superset-frontend/src/features/datasets/constants.ts:30 msgid "" @@ -18334,1526 +18125,1747 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#, fuzzy +msgid "Refreshing columns" +msgstr "Time series kolommen" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "Geen tijdskolommen" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#, fuzzy +msgid "Loading" +msgstr "Bezig met laden…" -#: superset/views/core.py:2213 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 #, fuzzy -msgid "You can" -msgstr "Bedoelde je:" +msgid "View Dataset" +msgstr "Bewerk de dataset" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +#, fuzzy +msgid "Select dataset source" +msgstr "Gebruik de legacy datasource editor" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "Geen tijdskolommen" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "Er is een fout opgetreden" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "U heeft geen toestemming om deze grafiek te bewerken" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "U heeft geen toestemming om deze grafiek te bewerken" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Eigenaar grafiek: %s" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "U hebt geen toestemming om dit dashboard te bewerken" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "Laatst gewijzigd" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "U hebt geen rechten voor toegang tot de gegevensbron(nen): %(name)s." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "Laatst gewijzigd door %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "U hebt geen rechten om dit dashboard te bewerken." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "[dashboard naam]" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "Je hebt geen toegang tot dit dashboard." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "grafiek" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Geen grafieken" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset/embedded_dashboard/commands/exceptions.py:34 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 #, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "Je hebt geen toegang tot dit dashboard." +msgid "Select a database table." +msgstr "Verwijder database" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "Je hebt nog geen favorieten!" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "Maak een nieuwe grafiek" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#, fuzzy +msgid "New dataset" +msgstr "Wijzig dataset" -#: superset/security/manager.py:2262 -#, fuzzy, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Je hebt niet de rechten om deze titel te veranderen." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "" -#: superset/views/core.py:945 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 #, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "Je hebt niet de rechten om deze titel te veranderen." +msgid "dataset name" +msgstr "Dataset naam" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "Je hebt niet de rechten om deze titel te veranderen." - -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Je hebt niet de rechten om deze titel te veranderen." +msgid "Not defined" +msgstr "Ongedefinieerd" -#: superset/views/core.py:951 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "Je hebt niet de rechten om " +msgid "There was an error fetching dataset" +msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" -#: superset/views/core.py:1135 +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 #, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "Je hebt niet de rechten om " +msgid "There was an error fetching dataset's related objects" +msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" -#: superset/views/core.py:649 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "Je hebt niet de rechten om " +msgid "There was an error loading the dataset metadata" +msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "Je hebt geen toestemming om dit verzoek goed te keuren" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Untitled]" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Je hebt deze filter verwijderd." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Onbekend" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "Je hebt niet opgeslagen wijzigingen." +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" +msgstr "" + +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Bewerkt" + +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Aangemaakt" + +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Bekeken" + +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Favoriet" + +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Mijn" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "" + +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +msgid "An error occurred while fetching dashboards: %s" +msgstr "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" + +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "U moet een naam kiezen voor het nieuwe dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "U moet de query eerst succesvol uitvoeren" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "" + +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "Geen grafieken" + +#: superset-frontend/src/features/home/EmptyState.tsx:36 +#, fuzzy +msgid "No dashboards yet" +msgstr "Geen dashboards" + +#: superset-frontend/src/features/home/EmptyState.tsx:37 +#, fuzzy +msgid "No recents yet" +msgstr "Nog geen %s" + +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "Opgeslagen queries" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, fuzzy, python-format +msgid "%(other)s saved queries will appear here" msgstr "" +"Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier " +"verschijnen" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" +"Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier " +"verschijnen" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" +"Recent gemaakte grafieken, dashboards en opgeslagen queries verschijnen " +"hier" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Uw zoekopdracht kon niet worden opgeslagen" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "Uw vraag kon niet worden gepland" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "" +"Recent bewerkte grafieken, dashboards en opgeslagen queries verschijnen " +"hier" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Uw zoekopdracht kon niet worden bijgewerkt" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQL query" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" -msgstr "" -"Uw zoekopdracht is ingepland. Om de details van uw zoekopdracht te zien, " -"navigeert u naar Opgeslagen zoekopdrachten" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "Je hebt nog geen favorieten!" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "Uw zoekopdracht werd opgeslagen" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +#, fuzzy +msgid "Connect database" +msgstr "Verwijder database" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "Uw zoekopdracht werd bijgewerkt" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +#, fuzzy +msgid "Create dataset" +msgstr "Wijzig dataset" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +#: superset-frontend/src/features/home/RightMenu.tsx:190 #, fuzzy -msgid "Zero imputation" -msgstr "omschrijving" +msgid "Upload CSV to database" +msgstr "Importeer databases" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "" -"Kolommen [Lengtegraad] en [Breedtegraad] moeten aanwezig zijn in [Groepen" -" per]" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Info" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "[Lengtegraad] en [Breedtegraad] moeten worden ingesteld" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Afmelden" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "[Missing Dataset]" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "Over" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] Toegang tot de gegevensbron %(name)s werd verleend" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "[Untitled]" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" +msgstr "" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 +#: superset-frontend/src/features/home/RightMenu.tsx:507 #, fuzzy -msgid "[asc]" -msgstr "Berekende kolom [%s] vereist een uitdrukking" +msgid "Build" +msgstr "Herbouw" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[dashboard naam]" - -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Aanmelden" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -#, fuzzy -msgid "[untitled]" -msgstr "[Untitled]" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "query" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Verwijderd: %s" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Er was een probleem met het verwijderen van %s: %s" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`confidence_interval` moet tussen 0 en 1 liggen (exclusief)" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Deze actie zal de opgeslagen query permanent verwijderen." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Verwijder Query?" + +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "`operation` eigenschap van post processing object ongedefinieerd" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Opgeslagen queries" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "`prophet` package niet geïnstalleerd" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Volgende" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "`rename_columns` moet dezelfde lengte hebben als `columns`." +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Tab naam" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "`rij_limiet` moet groter of gelijk aan 0 zijn" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "User query" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`rij_offset` moet groter zijn dan of gelijk aan 0" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Uitgevoerde query" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "`breedte` moet groter of gelijk zijn aan 0" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Query naam" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "aggregaat" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL gekopieerd!" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "Waarschuwing" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Sorry, uw browser ondersteunt het kopiëren niet." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -#, fuzzy -msgid "alert dark" -msgstr "Waarschuwing" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "waarschuwingen" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 #, fuzzy -msgid "all" -msgstr "Alle" - -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "kopieer ook (duplicate) grafieken" +msgid "Report updated" +msgstr "Rapport mislukt" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "en" - -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "aantekening" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "op" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 #, fuzzy -msgid "auto" -msgstr "op" +msgid "Schedule a new email report" +msgstr "E-mailrapporten voor grafieken plannen" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "" + +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 #, fuzzy -msgid "basis" -msgstr "Berekende kolom [%s] vereist een uitdrukking" +msgid "Report Name" +msgstr "Naam rapport" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "bolt" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Deze actie zal %s permanent verwijderen." + +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 #, fuzzy -msgid "change" -msgstr "Beheer" +msgid "rowlevelsecurity" +msgstr "Beveiligingsfilter op rijniveau" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "grafiek" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "Bewerk query" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "kies WHERE of HAVING…" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Query naam" -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 #, fuzzy -msgid "clear all filters" -msgstr "Zoek in alle filteropties" +msgid "The name of the rule must be unique" +msgstr "De naam moet uniek zijn" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +#, fuzzy +msgid "These are the datasets this filter will be applied to." +msgstr "Dit zijn de tabellen waarop dit filter zal worden toegepast." + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +#, fuzzy +msgid "Group Key" +msgstr "Groep per" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "kolom" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Clausule" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" + +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +#, fuzzy +msgid "Base" +msgstr "database" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 #, python-format -msgid "connecting to %(dbModelName)s." +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 #, fuzzy -msgid "create" -msgstr "Maak" +msgid "Failed to tag items" +msgstr "Alles deselecteren" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" +msgstr "" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "create a new chart" -msgstr "Maak een nieuwe grafiek" +msgid "tags" +msgstr "Status" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "Alles deselecteren" + +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "Laatst bijgewerkt %s" + +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "werd gecreëerd" + +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Tab naam" + +#: superset-frontend/src/features/tags/TagModal.tsx:294 +msgid "Name of your tag" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Schrijf een omschrijving voor uw zoekopdracht." -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "css_template" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Superset dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Opgeslagen queries" + +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Gekozen niet-numerieke kolom" + +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "dashboard" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "database" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "dataset" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -#, fuzzy -msgid "dataset name" -msgstr "Dataset naam" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "datum" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s optie" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "dag" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Controle op oplopend sorteren" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "dag van de maand" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "dag van de week" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "Heatmap" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Geen tijdskolommen" + +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -msgid "deck.gl charts" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -#, fuzzy -msgid "default" -msgstr "Standaard" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "rapporten" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "verwijder" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "waarschuwingen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Er was een probleem met het verwijderen van de geselecteerde %s: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "omschrijving" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Laatste run" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "omschrijving" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Uitvoeringslog" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" -msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Selecteer in bulk" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "draft" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Nog geen %s" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Eigenaar" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Alle" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars " +"waarden: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Status" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" +"Er is een fout opgetreden bij het ophalen van dataset datasource waarden:" +" %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Waarschuwingen & rapporten" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Waarschuwingen" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Rapporten" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "%s verwijderen?" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +#, fuzzy +msgid "Error Fetching Tagged Objects" msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "" +#: superset-frontend/src/pages/AllEntities/index.tsx:234 +#, fuzzy +msgid "Edit Tag" +msgstr "Bewerk Log" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Er was een probleem met het verwijderen van de geselecteerde lagen: %s" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -#, fuzzy -msgid "entries" -msgstr "Series" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Bewerk template" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Verwijder template" + +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 #, fuzzy -msgid "error" -msgstr "%s Fout" +msgid "Changed by" +msgstr "Gewijzigd door" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Nog geen aantekeningen lagen" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "Foutmelding" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Deze actie zal de laag permanent verwijderen." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "elke" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Laag verwijderen?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "elke dag van de maand" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "elke dag van de week" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "" +"Er was een probleem met het verwijderen van de geselecteerde " +"aantekeningen: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "elk uur" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Aantekening verwijderen" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Aantekening" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Nog geen aantekeningen" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "Aantekeningenlagen" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "elke maand" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, fuzzy, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Weet je zeker dat je wilt verwijderen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -#, fuzzy -msgid "expand" -msgstr "en" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Aantekening verwijderen?" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -#, fuzzy -msgid "explore" -msgstr "Verken" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Weet u zeker dat u de geselecteerde aantekeningen wilt verwijderen?" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +#, fuzzy +msgid "view instructions" +msgstr "Tijd in seconden" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "failed" -msgstr "Mislukt" +msgid "Add a dataset" +msgstr "Voeg dataset toe" -#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 #, fuzzy -msgid "fetching" -msgstr "Instellingen" +msgid "or" +msgstr "uur" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Kies een dataset" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -#, fuzzy -msgid "flat" -msgstr "op" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Er was een probleem met het verwijderen van de geselecteerde grafieken: %s" + +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -#, fuzzy -msgid "heatmap" -msgstr "Heatmap" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "Elke" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars " +"waarden: %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "uur" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -#, fuzzy -msgid "id" -msgstr "id:" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "Alfabetisch" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Recent gewijzigd" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "in" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Meest recente wijziging" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "in modal" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Import grafieken " -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Weet je zeker dat je de geselecteerde grafieken wilt verwijderen?" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSS templates" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "joined" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Er was een probleem met het verwijderen van de geselecteerde templates: %s" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "json is ongeldig" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSS template" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Deze actie zal de template permanent verwijderen." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Template verwijderen?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" +"Je importeert een of meer dashboards die al bestaan. Overschrijven kan " +"ertoe leiden dat je een deel van je werk verloren gaat. Weet je zeker dat" +" je wilt overschrijven?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Er was een probleem met het verwijderen van de geselecteerde dashboards: " -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van dashboard eigenaar " +"waarden: %s" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "laatste partitie:" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Weet je zeker dat je de geselecteerde dashboards wilt verwijderen?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van databasegerelateerde " +"gegevens: %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +#, fuzzy +msgid "Upload file to database" +msgstr "Bewerk database" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +#, fuzzy +msgid "Upload CSV" +msgstr "Upload Excel" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 #, fuzzy -msgid "linear" -msgstr "Verwijder" +msgid "Upload Excel file" +msgstr "Upload Excel" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "log" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Sta data manipulatie taal toe" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" -#: superset/charts/schemas.py:735 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "CSV upload" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Verwijder database" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -"onderste percentiel moet groter zijn dan 0 en kleiner dan 100. Moet lager" -" zijn dan het bovenste percentiel." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -#, fuzzy -msgid "max" -msgstr "Max" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Database verwijderen?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "" +"Er is een fout opgetreden tijdens het ophalen van dataset gerelateerde " +"gegevens" + +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "" +"Er is een fout opgetreden tijdens het ophalen van gegevens over de " +"dataset: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Fysieke dataset" + +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Virtuele dataset" + +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +#, fuzzy +msgid "Virtual" +msgstr "virtueel" + +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Er is een fout opgetreden bij het ophalen van datasets: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" +"Er is een fout opgetreden tijdens het ophalen van de eigenaarswaarden van" +" de dataset: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Importeer datasets" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "Meeteenheid" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 +#: superset-frontend/src/pages/DatasetList/index.tsx:720 #, fuzzy -msgid "min" -msgstr "in" +msgid "There was an issue duplicating the dataset." +msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minuut" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, fuzzy, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "maand" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Dataset verwijderen?" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "maand" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 Geselecteerd" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s Geselecteerd (Virtueel)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "Naam" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s Geselecteerd (Fysiek)" -#: superset/databases/commands/exceptions.py:147 -#, fuzzy -msgid "no SQL validator is configured" -msgstr "Waarschuwing validator configuratiefout." +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s Geselecteerd (%s Fysiek, %s Virtueel)" -#: superset/databases/commands/validate_sql.py:101 -#, fuzzy -msgid "no SQL validator is configured for {}" -msgstr "Waarschuwing validator configuratiefout." +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "log" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "Uitvoerings ID" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Gepland om (UTC)" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Start op (UTC)" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Foutmelding" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 #, fuzzy -msgid "offline" -msgstr "Offline" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "op" +msgid "Alert" +msgstr "Waarschuwing" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "uur" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Er was een probleem bij het ophalen van uw recente activiteit: %s" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, fuzzy, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Er was een probleem met het ophalen van uw dashboards: %s" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Er was een probleem met het ophalen van je grafiek: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -#, fuzzy -msgid "overall" -msgstr "Wis alles" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, fuzzy, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Er was een probleem met het ophalen van uw opgeslagen zoekopdrachten: %s" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "Recente" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Er was een probleem met het bekijken van de geselecteerde query. %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "TABLES" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Open query in SQL Lab" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Er is een fout opgetreden tijdens het ophalen van databasewaarden: %s" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Zoek op querytekst" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -#, fuzzy -msgid "pending" -msgstr "Rapport verzenden" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Verwijderd: %s" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +#, fuzzy +msgid "Deleted" +msgstr "verwijder" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Er was een probleem met het verwijderen van %s: %s" -#: superset/views/core.py:1958 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "permalink state not found" -msgstr "Rapport Schedule state niet gevonden" +msgid "No Rules yet" +msgstr "Nog geen %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "gepubliceerd" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -#, fuzzy -msgid "quarter" -msgstr "Kwartaal" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Er was een probleem met het bekijken van de geselecteerde query %s" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "queries" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Importeer queries" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "query" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Link gekopieerd!" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -#, fuzzy -msgid "random" -msgstr "en" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Er was een probleem bij het verwijderen van de geselecteerde query’s: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "herstart" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Bewerk query" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -#, fuzzy -msgid "recent" -msgstr "Recente" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Kopieer query URL" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Exporteer query" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "rapport" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Verwijder query" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "rapporten" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "queries" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "rowlevelsecurity" -msgstr "Beveiligingsfilter op rijniveau" +msgid "No Tags created" +msgstr "werd gecreëerd" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 +#: superset-frontend/src/pages/Tags/index.tsx:352 #, fuzzy -msgid "running" -msgstr "Running" +msgid "Are you sure you want to delete the selected tags?" +msgstr "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -#, fuzzy -msgid "seconds" -msgstr "30 seconden" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -#, fuzzy -msgid "series" -msgstr "Series" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -#, fuzzy -msgid "square" -msgstr "Kwartaal" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -#, fuzzy -msgid "staggered" -msgstr "Gewijzigd" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -#, fuzzy -msgid "step-after" -msgstr "css_template" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/utils/getClientErrorObject.ts:97 #, fuzzy -msgid "stopped" -msgstr "Voeg toe" +msgid "Sorry, an unknown error occurred." +msgstr "Sorry, er is een fout opgetreden" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -#, fuzzy -msgid "stream" -msgstr "Histogram" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "U heeft geen toestemming om deze grafiek te bewerken" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "success" -msgstr "Succes" +msgid "Network error" +msgstr "Parameter fout" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/utils/getClientErrorObject.ts:144 #, fuzzy -msgid "success dark" -msgstr "Succes" +msgid "Request timed out" +msgstr "Verzoek is geen JSON" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -#, fuzzy -msgid "syntax." -msgstr "Syntax" - -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "tekstveld" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -#, fuzzy -msgid "to" -msgstr "Stop" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -#, fuzzy -msgid "undo" -msgstr "Ongedaan maken?" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -#, fuzzy -msgid "unknown type icon" -msgstr "Onbekende fout" - -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/explore/constants.ts:85 -#, fuzzy -msgid "use latest_partition template" -msgstr "laatste partitie:" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -#, fuzzy -msgid "variance" -msgstr "Geavanceerd" - -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "Tijd in seconden" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" -msgstr "virtueel" - -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "Viz type" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "werd gecreëerd" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "week" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -#, fuzzy -msgid "week ending Saturday" -msgstr "Week beginnend op zaterdag" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Er is een fout opgetreden bij het ophalen van uw recente activiteit:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -#, fuzzy -msgid "week starting Sunday" -msgstr "Week beginnend op zondag" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Er was een probleem bij het verwijderen van: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" -msgstr "" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Time-series Table" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "jaar" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/pt/LC_MESSAGES/messages.json b/superset/translations/pt/LC_MESSAGES/messages.json index 22cc78fa29b05..33eca2218109e 100644 --- a/superset/translations/pt/LC_MESSAGES/messages.json +++ b/superset/translations/pt/LC_MESSAGES/messages.json @@ -8,3983 +8,3923 @@ "plural_forms": "nplurals=2; plural=(n != 1)", "lang": "pt" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "The database is under an unusual load.": [""], + "The database returned an unexpected error.": [""], + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "" ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "The column was deleted or renamed in the database.": [""], + "The table was deleted or renamed in the database.": [""], + "One or more parameters specified in the query are missing.": [""], + "The hostname provided can't be resolved.": [""], + "The port is closed.": [""], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "Superset encountered an error while running a command.": [""], + "Superset encountered an unexpected error.": [""], + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [""], + "Either the database is spelled incorrectly or does not exist.": [""], + "The schema was deleted or renamed in the database.": [""], + "One or more parameters needed to configure a database are missing.": [ "" ], - " to edit or add columns and metrics.": [""], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": [""], - "%(dialect)s cannot be used as a data source for security reasons.": [""], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(other)s saved queries will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(rows)d rows returned": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "Ao utilizador %(user)s foi concedido o cargo %(role)s que dá acesso ao %(datasource)s" - ], - "%(user)s's profile": [""], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - "%s Error": ["Erro"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": ["Executar a query selecionada"], - "%s Selected (%s Physical, %s Virtual)": [""], - "%s Selected (Physical)": [""], - "%s Selected (Virtual)": [""], - "%s aggregates(s)": [""], - "%s column(s)": ["Lista de Colunas"], - "%s operator(s)": ["Selecione operador"], - "%s option(s)": ["Opções"], - "%s saved metric(s)": [""], - "%s%s": [""], - "%s-%s of %s": [""], - "(Removed)": [""], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "One or more parameters specified in the query are malformed.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "The port number is invalid.": [""], + "Failed to start remote query on a worker.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": [""], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [""], + "Unsupported return value for method %(name)s": [""], + "Unsafe template value for key %(key)s: %(value_type)s": [""], + "Unsupported template value for key %(key)s": [""], + "Only SELECT statements are allowed against this database.": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - ".": [""], - "0 Selected": ["Executar a query selecionada"], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["hora"], - "1 hourly frequency": [""], - "1 minute": ["1 minuto"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year ago": [""], - "1 year end frequency": [""], - "1 year start frequency": [""], - "104 weeks ago": [""], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": [""], - "3 years ago": [""], - "30 days": [""], - "30 days ago": [""], - "30 minutes": ["10 minutos"], - "30 seconds": ["30 segundos"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minutes": ["5 minutos"], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "60 days": [""], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": [""], - ":": [""], - "< (Smaller than)": [""], - "<= (Smaller or equal)": [""], - "": [""], - "": [""], - "": [""], - "== (Is equal)": [""], - "> (Larger than)": [""], - ">= (Larger or equal)": [""], - "A comma separated list of columns that should be parsed as dates": [""], - "A comma separated list of columns that should be parsed as dates.": [""], - "A comma-separated list of schemas that files are allowed to upload to.": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": ["Viz está sem origem de dados"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": [""], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "From date cannot be larger than to date": [ + "Data de inicio não pode ser posterior à data de fim" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Proprietários é uma lista de utilizadores que podem alterar o dashboard." + "Cached value not found": [""], + "Columns missing in datasource: %(invalid_columns)s": [""], + "Time Table View": ["Visualização da tabela de tempo"], + "Pick at least one metric": ["Selecione pelo menos uma métrica"], + "When using 'Group By' you are limited to use a single metric": [ + "Utilizando 'Agrupar por' só é possível utilizar uma única métrica" ], - "A map of the world, that can indicate values in different countries.": [ - "" + "Calendar Heatmap": ["Calendário com Mapa de Calor"], + "Bubble Chart": ["Gráfico de bolhas"], + "Please use 3 different metric labels": [ + "Selecione métricas diferentes para o eixo esquerdo e direito" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "" + "Pick a metric for x, y and size": [ + "Selecione uma métrica para x, y e tamanho" ], - "A metric to use for color": ["Uma métrica a utilizar para cor"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Bullet Chart": ["Gráfico de bala"], + "Pick a metric to display": ["Selecione uma métrica para visualizar"], + "Time Series - Line Chart": ["Série Temporal - Gráfico de linhas"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A readable URL for your dashboard": [ - "Obter um URL legível para o seu dashboard" + "Time Series - Bar Chart": ["Série Temporal - Gráfico de barras"], + "Time Series - Period Pivot": ["Série temporal - teste emparelhado T"], + "Time Series - Percent Change": ["Série Temporal - Variação Percentual"], + "Time Series - Stacked": ["Série Temporal - Barras Sobrepostas"], + "Histogram": ["Histograma"], + "Must have at least one numeric column specified": [ + "Deve ser especificada uma coluna númerica" ], - "A reference to the [Time] configuration, taking granularity into account": [ - "Uma referência à configuração [Time], levando em consideração a granularidade" + "Distribution - Bar Chart": ["Gráfico de barras"], + "Can't have overlap between Series and Breakdowns": [ + "Não pode haver sobreposição entre Séries e Desagregação" ], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "" + "Pick at least one field for [Series]": [ + "Escolha pelo menos um campo para [Séries]" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "" + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Selecione exatamente 2 colunas [Origem e Alvo]" ], - "A valid color scheme is required": [""], - "APPLY": [""], - "APR": [""], - "AQE": [""], - "AUG": [""], - "AXIS TITLE MARGIN": [""], - "AXIS TITLE POSITION": [""], - "About": [""], - "Access": ["Não há acesso!"], - "Access requests": ["Solicitações de acesso"], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": ["O acesso foi solicitado"], - "Action": ["Acção"], - "Action Log": ["Registo de Acções"], - "Actions": ["Acção"], - "Active": ["Acção"], - "Actual time range": [""], - "Adaptive formatting": [""], - "Add": [""], - "Add CSS Template": ["Modelos CSS"], - "Add Chart": ["Gráfico de Queijo"], - "Add Column": ["Adicionar Coluna"], - "Add Dashboard": ["Adicionar Dashboard"], - "Add Database": ["Adicionar Base de Dados"], - "Add Log": [""], - "Add Metric": ["Adicionar Métrica"], - "Add Rule": [""], - "Add Saved Query": ["Adicionar Query"], - "Add a Plugin": ["Adicionar Coluna"], - "Add a new tab to create SQL Query": [""], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "" + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Há um loop no gráfico Sankey, por favor, forneça uma ligação correta. Aqui está a conexão defeituosa: {}" ], - "Add custom scoping": [""], - "Add delivery method": [""], - "Add filter": ["Adicionar filtro"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "Directed Force Layout": ["Layout de Forças"], + "Country Map": ["Mapa de País"], + "World Map": ["Mapa Mundo"], + "Parallel Coordinates": ["Coordenadas paralelas"], + "Heatmap": ["Mapa de Calor"], + "Horizon Charts": ["Gráfico de Horizonte"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" ], - "Add filters and dividers": [""], - "Add metric": ["Adicionar Métrica"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": ["Metadados adicionais"], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add to dashboard": ["Adicionar ao novo dashboard"], - "Added": [""], - "Additional fields may be required": [""], - "Additional padding for legend.": [""], - "Additional text to add before or after the value, e.g. unit": [""], - "Additive": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": ["Análise Avançada"], - "Advanced Analytics": ["Análise Avançada"], - "Aesthetic": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "" - ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Deve ter uma coluna [Agrupar por] para ter 'count' como [Label]" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "" + "Choice of [Label] must be present in [Group By]": [ + "A escolha do [Rótulo] deve estar presente em [Agrupar por]" ], - "Alert Triggered, In Grace Period": [""], - "Alert ended grace period.": [""], - "Alert fired during grace period.": [""], - "Alert found an error while executing a query.": [""], - "Alert on grace period": [""], - "Alert query returned a non-number value.": [""], - "Alert query returned more than one column.": [""], - "Alert query returned more than one column. %s columns returned": [""], - "Alert query returned more than one row.": [""], - "Alert query returned more than one row. %s rows returned": [""], - "Alert running": [""], - "Alert triggered, notification sent": [""], - "Alert validator config error.": [""], - "Alerts": [""], - "Alerts & Reports": [""], - "Align +/-": [""], - "All": [""], - "All Text": [""], - "All charts": ["Gráfico de bala"], - "All charts/global scoping": [""], - "All filters": ["Filtros"], - "All filters (%(filterCount)d)": [""], - "All panels": [""], - "All panels with this column will be affected by this filter": [""], - "Allow CREATE TABLE AS": ["Permitir CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Permitir a opção CREATE TABLE AS no SQL Lab" + "Choice of [Point Radius] must be present in [Group By]": [ + "A escolha de [Ponto de Raio] deve estar presente em [Agrupar por]" ], - "Allow CREATE VIEW AS": ["Permitir CREATE TABLE AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Permitir a opção CREATE TABLE AS no SQL Lab" + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" ], - "Allow Csv Upload": [""], - "Allow DML": ["Permitir DML"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": [""], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Deck.gl - Multiple Layers": [""], + "Bad spatial key": [""], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "Allow file uploads to database": [""], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "" + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": ["Fluxo de eventos"], + "Time Series - Paired t-test": ["Série temporal - teste emparelhado T"], + "Time Series - Nightingale Rose Chart": [ + "Série Temporal - Gráfico de linhas" ], - "Allow multiple selections": [""], - "Allow node selections": [""], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Permitir que os usuários executem instruções non-SELECT (UPDATE, DELETE, CREATE, ...) no SQL Lab" + "Partition Diagram": ["Diagrama de Partição"], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [ + "Selecione uma camada de anotação", + "Selecione uma camada de anotação" ], - "Allowed Domains (comma separated)": [""], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "" + "All Text": [""], + "Deleted %(num)d annotation": [ + "Selecione uma camada de anotação", + "Selecione uma camada de anotação" ], - "Altered": [""], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Deleted %(num)d chart": ["", "Deleted %(num)d charts"], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [""], + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ "" ], - "An engine must be specified when passing individual parameters to a database.": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "An error has occurred": [""], - "An error occurred": [""], - "An error occurred saving dataset": [ - "Ocorreu um erro ao criar a origem dos dados" - ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" - ], - "An error occurred while creating the data source": [ - "Ocorreu um erro ao criar a origem dos dados" - ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" - ], - "An error occurred while fetching available CSS templates": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": [""], + "Owners are invalid": [""], + "Annotation layer parameters are invalid.": [ + "Camadas de anotação para sobreposição na visualização" ], - "An error occurred while fetching chart created by values: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Annotation layer could not be created.": [ + "Não foi possível gravar a sua query" ], - "An error occurred while fetching chart owners values: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Annotation layer could not be updated.": [ + "Não foi possível gravar a sua query" ], - "An error occurred while fetching created by values: %s": [ - "Ocorreu um erro ao renderizar a visualização: %s" + "Annotation layer not found.": ["Camadas de anotação"], + "Annotation layer has associated annotations.": [ + "Camadas de anotação para sobreposição na visualização" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "Name must be unique": [""], + "End date must be after start date": [ + "Data de inicio não pode ser posterior à data de fim" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Short description must be unique for this layer": [""], + "Annotation not found.": ["Anotações"], + "Annotation parameters are invalid.": [""], + "Annotation could not be created.": [""], + "Annotation could not be updated.": [""], + "Annotations could not be deleted.": [""], + "There are associated alerts or reports: %(report_names)s": [""], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "" ], - "An error occurred while fetching dashboards": [ - "Ocorreu um erro ao criar a origem dos dados" + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "" ], - "An error occurred while fetching dashboards: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Database does not exist": [""], + "Dashboards do not exist": ["Dashboards"], + "Datasource type is required when datasource_id is given": [""], + "Chart parameters are invalid.": [""], + "Chart could not be created.": ["Não foi possível gravar a sua query"], + "Chart could not be updated.": ["Não foi possível gravar a sua query"], + "Charts could not be deleted.": ["Não foi possível carregar a query"], + "There are associated alerts or reports": [""], + "Changing this chart is forbidden": [""], + "Import chart failed for an unknown reason": [""], + "Error: %(error)s": [""], + "CSS template not found.": ["Modelos CSS"], + "Must be unique": [""], + "Dashboard parameters are invalid.": [""], + "Dashboard could not be updated.": [ + "Não foi possível gravar a sua query" ], - "An error occurred while fetching database related data: %s": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "Dashboard could not be deleted.": [ + "Não foi possível gravar a sua query" ], - "An error occurred while fetching database values: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Changing this Dashboard is forbidden": [ + "Editar propriedades do dashboard" ], - "An error occurred while fetching dataset datasource values: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Import dashboard failed for an unknown reason": [""], + "No data in file": [""], + "Database parameters are invalid.": [""], + "Field is required": [""], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "" ], - "An error occurred while fetching dataset owner values: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "Database not found.": [""], + "Database could not be created.": ["Não foi possível gravar a sua query"], + "Database could not be updated.": ["Não foi possível gravar a sua query"], + "Connection failed, please check your connection settings": [""], + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": [""], + "Stopped an unsafe database connection": [ + "Selecione qualquer coluna para inspeção de metadados" ], - "An error occurred while fetching dataset related data": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "Could not load database driver": ["Não foi possível ligar ao servidor"], + "Unexpected error occurred, please check your logs for details": [""], + "no SQL validator is configured": [""], + "No validator found (configured for the engine)": [""], + "An unexpected error occurred": [""], + "Import database failed for an unknown reason": [""], + "Could not load database driver: {}": [ + "Não foi possível ligar ao servidor" ], - "An error occurred while fetching dataset related data: %s": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "Database is offline.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "" ], - "An error occurred while fetching datasets: %s": [ - "Ocorreu um erro ao criar a origem dos dados" + "no SQL validator is configured for %(engine)s": [""], + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ + "" ], - "An error occurred while fetching schema values: %s": [ - "Ocorreu um erro ao renderizar a visualização: %s" + "Creating SSH Tunnel failed for an unknown reason": [""], + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "Dataset %(name)s already exists": ["Origem de dados %(name)s já existe"], + "Database not allowed to change": [""], + "One or more columns do not exist": [""], + "One or more columns are duplicated": [""], + "One or more columns already exist": [""], + "One or more metrics do not exist": [ + "Uma ou várias métricas para exibir" ], - "An error occurred while fetching tab state": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "One or more metrics are duplicated": [ + "Uma ou várias métricas para exibir" ], - "An error occurred while fetching table metadata": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "One or more metrics already exist": [ + "Uma ou várias métricas para exibir" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Ocorreu um erro ao carregar os metadados da tabela" + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Tabela [{}] não encontrada, por favor verifique conexão à base de dados, esquema e nome da tabela" ], - "An error occurred while loading the SQL": [ - "Ocorreu um erro ao criar a origem dos dados" + "Dataset does not exist": ["Origem de dados %(name)s já existe"], + "Dataset parameters are invalid.": [""], + "Dataset could not be created.": ["Não foi possível gravar a sua query"], + "Dataset could not be updated.": ["Não foi possível gravar a sua query"], + "Changing this dataset is forbidden": [""], + "Import dataset failed for an unknown reason": [""], + "Data URI is not allowed.": [""], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "Saved queries could not be deleted.": [ + "Não foi possível carregar a query" ], - "An error occurred while pruning logs ": [ - "Ocorreu um erro ao renderizar a visualização: %s" + "Saved query not found.": [""], + "Import saved query failed for an unknown reason.": [""], + "Alert query returned more than one row. %(num_rows)s rows returned": [ + "" ], - "An error occurred while removing query. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "Alert query returned more than one column. %(num_columns)s columns returned": [ + "" ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": [""], + "Chart does not exist": [""], + "Database is required for alerts": [""], + "Type is required": [""], + "Choose a chart or dashboard not both": ["Remover gráfico do dashboard"], + "Please save your chart first, then try creating a new email report.": [ + "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "Please save your dashboard first, then try creating a new email report.": [ + "" ], - "An error occurred while rendering the visualization: %s": [ + "Report Schedule parameters are invalid.": [""], + "Report Schedule could not be created.": [ + "Não foi possível gravar a sua query" + ], + "Report Schedule could not be updated.": [ + "Não foi possível gravar a sua query" + ], + "Report Schedule not found.": [""], + "Report Schedule delete failed.": [""], + "Report Schedule log prune failed.": [""], + "Report Schedule execution failed when generating a screenshot.": [""], + "Report Schedule execution failed when generating a csv.": [""], + "Report Schedule execution failed when generating a dataframe.": [""], + "Report Schedule execution got an unexpected error.": [""], + "Report Schedule is still working, refusing to re-compute.": [""], + "Report Schedule reached a working timeout.": [""], + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [""], + "Alert validator config error.": [""], + "Alert query returned more than one column.": [""], + "Alert query returned a non-number value.": [""], + "Alert found an error while executing a query.": [""], + "Alert fired during grace period.": [""], + "Alert ended grace period.": [""], + "Alert on grace period": [""], + "Report Schedule state not found": [""], + "Report schedule system error": [""], + "Report schedule unexpected error": [""], + "Changing this report is forbidden": [""], + "An error occurred while pruning logs ": [ "Ocorreu um erro ao renderizar a visualização: %s" ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Ocorreu um erro ao criar a origem dos dados" + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Invalid result type: %(result_type)s": [""], + "Columns missing in dataset: %(invalid_columns)s": [""], + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "An unexpected error occurred": [""], - "An unknown error occurred. Please contact your Superset administrator": [ - "Ocorreu um erro desconhecido. (Estado: %s )" + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [""], + "[asc]": [""], + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [""], + "Virtual dataset query must be read-only": [""], + "Virtual dataset query cannot be empty": [""], + "Virtual dataset query cannot consist of multiple statements": [""], + "Error in jinja expression in RLS filters: %(msg)s": [""], + "Metric '%(metric)s' does not exist": [""], + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [ + "Copiar a instrução SELECT para a área de transferência" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Annotation": ["Anotações"], - "Annotation Layers": ["Camadas de anotação"], - "Annotation could not be created.": [""], - "Annotation could not be updated.": [""], - "Annotation delete failed.": ["Camadas de anotação"], - "Annotation layer could not be created.": [ - "Não foi possível gravar a sua query" + "Only single queries supported": [""], + "Columns": ["Colunas"], + "Show Column": ["Mostrar Coluna"], + "Add Column": ["Adicionar Coluna"], + "Edit Column": ["Editar Coluna"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Para se disponibilizar esta coluna como uma opção [Time Granularity], a coluna deve ser DATETIME ou DATETIME" ], - "Annotation layer could not be deleted.": [""], - "Annotation layer could not be updated.": [ - "Não foi possível gravar a sua query" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Se esta coluna está exposta na seção `Filtros` da vista de exploração." ], - "Annotation layer delete failed.": ["Camadas de anotação"], - "Annotation layer has associated annotations.": [ - "Camadas de anotação para sobreposição na visualização" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "O tipo de dados que foi inferido pela base de dados. Pode ser necessário inserir um tipo manualmente para colunas definidas por expressões em alguns casos. A maioria dos casos não requer alteração por parte do utilizador." ], - "Annotation layer not found.": ["Camadas de anotação"], - "Annotation layer parameters are invalid.": [ - "Camadas de anotação para sobreposição na visualização" + "Column": ["Coluna"], + "Verbose Name": ["Nome Detalhado"], + "Description": ["Descrição"], + "Groupable": ["Agrupável"], + "Filterable": ["Filtrável"], + "Table": ["Tabela"], + "Expression": ["Expressão"], + "Is temporal": ["É temporal"], + "Datetime Format": ["Formato de data e hora"], + "Type": ["Tipo"], + "Business Data Type": [""], + "Invalid date/timestamp format": ["Formato da Tabela Datahora"], + "Metrics": ["Métricas"], + "Show Metric": ["Mostrar Métrica"], + "Add Metric": ["Adicionar Métrica"], + "Edit Metric": ["Editar Métrica"], + "Metric": ["Métrica"], + "SQL Expression": ["Expressão SQL"], + "D3 Format": ["Formato D3"], + "Extra": ["Extra"], + "Warning Message": ["Mensagem de Aviso"], + "Tables": ["Tabelas"], + "Show Table": ["Mostrar Tabela"], + "Import a table definition": [""], + "Edit Table": ["Editar Tabela"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "A lista de visualizações associadas a esta tabela. Ao alterar a origem de dados, o comportamento das visualizações associadas poderá ser alterado. Observe também que as visualizações tem que apontar para uma origem de dados, este formulário falhará na poupança se forem removidas visualizações da origem de dados. Se quiser alterar a origem de dados de uma visualização, atualize a visualização na \"vista de exploração\"" ], - "Annotation layers are still loading.": [ - "Camadas de anotação para sobreposição na visualização" + "Timezone offset (in hours) for this datasource": [ + "Diferença do fuso horário (em horas) para esta fonte de dados" ], - "Annotation not found.": ["Anotações"], - "Annotation parameters are invalid.": [""], - "Annotations and Layers": ["Camadas de anotação"], - "Annotations could not be deleted.": [""], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "" + "Name of the table that exists in the source database": [ + "Nome da tabela que existe na base de dados de origem" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Esquema, como utilizado em algumas base de dados, como Postgres, Redshift e DB2" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Este campo atua como uma vista do Superset, o que significa que o Superset vai correr uma query desta string como uma subquery." ], - "Append": [""], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Predicado aplicado ao obter um valor distinto para preencher a componente de controlo de filtro. Suporta a sintaxe jinja standard. Apenas se aplica quando \"Ativar Filtro de Seleção\" está ativado." + ], + "Redirects to this endpoint when clicking on the table from the table list": [ + "Redireciona para este endpoint ao clicar na tabela da respetiva lista" + ], + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Preencher a lista de filtros, na vista de exploração, com valores distintos carregados em tempo real a partir do backend" + ], + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ "" ], - "Apply": [""], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply metrics on": [""], - "Apply to all panels": [""], - "Apply to specific panels": [""], - "April": [""], - "Are you sure you intend to overwrite the following values?": [""], - "Are you sure you want to cancel?": [""], - "Are you sure you want to delete": [""], - "Are you sure you want to delete %s?": [""], - "Are you sure you want to delete the selected %s?": [""], - "Are you sure you want to delete the selected annotations?": [""], - "Are you sure you want to delete the selected charts?": [""], - "Are you sure you want to delete the selected dashboards?": [""], - "Are you sure you want to delete the selected datasets?": [""], - "Are you sure you want to delete the selected layers?": [""], - "Are you sure you want to delete the selected queries?": [""], - "Are you sure you want to delete the selected rules?": [""], - "Are you sure you want to delete the selected tags?": [""], - "Are you sure you want to delete the selected templates?": [""], - "Are you sure you want to overwrite this dataset?": [""], - "Are you sure you want to proceed?": [""], - "Are you sure you want to save and apply changes?": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "A set of parameters that become available in the query using Jinja templating syntax": [ "" ], - "Arrow": [""], - "Assign a set of parameters as": [""], - "Associated Charts": ["Visualizações Associadas"], - "Async Execution": [""], - "Asynchronous query execution": [""], - "August": [""], - "Auto": [""], - "Auto Zoom": [""], - "Autocomplete": [""], - "Autocomplete filters": [""], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Average value": [""], - "Axis Bounds": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": [""], - "Backward values": [""], - "Bad formula.": [""], - "Bad spatial key": [""], - "Bar": [""], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Base layer map style": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": [""], - "Batch editing %d filters:": [""], - "Battery level over time": [""], - "Be careful.": [""], - "Big Number": ["Número grande"], - "Big Number Font Size": [""], - "Big Number with Trendline": ["Número grande com linha de tendência"], - "Bottom Margin": [""], - "Bottom left": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom right": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ - "" + "Associated Charts": ["Visualizações Associadas"], + "Changed By": ["Alterado por"], + "Database": ["Base de dados"], + "Last Changed": ["Modificado pela última vez"], + "Enable Filter Select": ["Ativar Filtro de Seleção"], + "Schema": ["Esquema"], + "Default Endpoint": ["Endpoint Padrão"], + "Offset": ["Offset"], + "Cache Timeout": ["Tempo limite para cache"], + "Table Name": ["Nome da Tabela"], + "Fetch Values Predicate": ["Carregar Valores de Predicado"], + "Owners": ["Proprietários"], + "Main Datetime Column": ["Coluna Datahora principal"], + "SQL Lab View": ["SQL Lab"], + "Template parameters": ["Nome do modelo"], + "Modified": ["Modificado"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "A tabela foi criada. Como parte deste processo de configuração de duas fases, deve agora clicar no botão Editar, na nova tabela, para configurá-lo." ], - "Box Plot": ["Box Plot"], - "Breakdowns": [""], - "Bubble Chart": ["Gráfico de bolhas"], - "Bubble size": ["Tamanho da bolha"], - "Bucket break points": [""], - "Build": [""], - "Bullet Chart": ["Gráfico de bala"], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "" + "Deleted %(num)d css template": ["", "Deleted %(num)d css templates"], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": [ + "Por favor selecione um dashboard", + "Por favor selecione um dashboard" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": [""], - "CREATE TABLE AS": ["Permitir CREATE TABLE AS"], - "CREATE VIEW AS": ["Permitir CREATE TABLE AS"], - "CREATE VIEW statement": [""], - "CRON Schedule": [""], - "CSS": ["CSS"], - "CSS Templates": ["Modelos CSS"], - "CSS applied to the chart": [""], - "CSS template could not be deleted.": [""], - "CSS template not found.": ["Modelos CSS"], - "CSV Upload": [""], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Title or Slug": [""], + "Invalid state.": [""], + "Table name undefined": ["Nome da Tabela"], + "Upload Enabled": [""], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ "" ], - "CSV to Database configuration": [ - "Edite a configuração da origem de dados" + "Field cannot be decoded by JSON. %(msg)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "" ], - "CSV upload": [""], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "CTAS Schema": ["Esquema CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": ["Tempo limite para cache"], - "Cache Timeout (seconds)": ["Cache atingiu tempo limite (segundos)"], - "Cached": [""], - "Cached %s": [""], - "Cached value not found": [""], - "Calculate contribution per series or row": [""], - "Calculated column [%s] requires an expression": [""], - "Calculation type": ["Escolha um tipo de visualização"], - "Calendar Heatmap": ["Calendário com Mapa de Calor"], - "Can not move top level tab into nested tabs": [""], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [ - "Não pode haver sobreposição entre Séries e Desagregação" + "Deleted %(num)d dataset": [ + "Selecione uma base de dados", + "Selecione uma base de dados" ], - "Cancel": ["Cancelar"], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ + "Null or Empty": [""], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "Cannot load filter": [""], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categorical Color": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Center": [""], - "Centroid (Longitude and Latitude): ": [""], - "Certification": [""], - "Certification details": [""], - "Certified": [""], - "Certified By": [""], - "Certified by %s": [""], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": ["Alterado por"], - "Changed on": ["Alterado em"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Hostname or IP address": [""], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Changing this Dashboard is forbidden": [ - "Editar propriedades do dashboard" - ], - "Changing this chart is forbidden": [""], - "Changing this control takes effect instantly": [ - "Esta edição tem efeito instantâneo" - ], - "Changing this dataset is forbidden": [""], - "Changing this report is forbidden": [""], - "Character to interpret as decimal point": [""], - "Character to interpret as decimal point.": [""], - "Chart": ["Carregar"], - "Chart %(id)s not found": ["Visualização %(id)s não encontrada"], - "Chart Cache Timeout": ["Tempo limite para cache"], - "Chart ID": ["Tipo de gráfico"], - "Chart Orientation": [""], - "Chart [%s] has been overwritten": [""], - "Chart [%s] was added to dashboard [%s]": [""], - "Chart [{}] has been overwritten": [""], - "Chart [{}] has been saved": [""], - "Chart [{}] was added to dashboard [{}]": [""], - "Chart changes": ["Modificado pela última vez"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "Chart could not be created.": ["Não foi possível gravar a sua query"], - "Chart could not be deleted.": ["Não foi possível carregar a query"], - "Chart could not be updated.": ["Não foi possível gravar a sua query"], - "Chart does not exist": [""], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart height": [""], - "Chart name": ["Tipo de gráfico"], - "Chart parameters are invalid.": [""], - "Chart type requires a dataset": [""], - "Charts": ["Gráfico de Queijo"], - "Charts could not be deleted.": ["Não foi possível carregar a query"], - "Check for sorting ascending": [ - "Ordenar de forma descendente ou ascendente" - ], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Check out this chart in dashboard:": ["Verificar dashboard: %s"], - "Check out this dashboard: ": ["Verificar dashboard: %s"], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Check to force date partitions to have the same height": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [ - "A escolha do [Rótulo] deve estar presente em [Agrupar por]" - ], - "Choice of [Point Radius] must be present in [Group By]": [ - "A escolha de [Ponto de Raio] deve estar presente em [Agrupar por]" + "Unknown Doris server host \"%(hostname)s\".": [""], + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [""], + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "" ], - "Choose File": ["Escolha uma fonte"], - "Choose a chart or dashboard not both": ["Remover gráfico do dashboard"], - "Choose a dataset": ["Escolha uma origem de dados"], - "Choose a metric for right axis": [ - "Escolha uma métrica para o eixo direito" + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "" ], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the format for legend values": [""], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "Clause": [""], - "Clear": [""], - "Clear all": [""], - "Clear all data": [""], - "Clear form": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Unknown MySQL server host \"%(hostname)s\".": [""], + "The username \"%(username)s\" does not exist.": [""], + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Could not connect to database: \"%(database)s\"": [""], + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Click the lock to make changes.": [""], - "Click the lock to prevent further changes.": [""], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": ["clique para editar o título"], - "Click to favorite/unfavorite": ["Clique para tornar favorito"], - "Click to force-refresh": ["Clique para forçar atualização"], - "Click to see difference": ["Clique para forçar atualização"], - "Close": [""], - "Close all other tabs": [""], - "Close tab": ["fechar aba"], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": ["Código"], - "Collapse all": [""], - "Collapse data panel": [""], - "Collapse row": [""], - "Collapse tab content": [""], - "Color": ["Cor"], - "Color +/-": [""], - "Color Scheme": ["Esquema de cores"], - "Color bounds": [""], - "Color metric": ["Métrica de cor"], - "Color of the target location": [""], - "Color scheme": ["Esquema de cores"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Users are not allowed to set a search path for security reasons.": [""], + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Colors": ["Cor"], - "Column": ["Coluna"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Column Formatting": [""], - "Column Label(s)": ["Colunas"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": [""], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column header tooltip": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "" - ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ - "" - ], - "Column name [%s] is duplicated": [""], - "Column referenced by aggregate is undefined: %(column)s": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ - "" + "%(object)s does not exist in this database.": [""], + "Home": [""], + "Data": ["Base de dados"], + "Dashboards": ["Dashboards"], + "Charts": ["Gráfico de Queijo"], + "Datasets": ["Bases de dados"], + "Plugins": [""], + "Manage": ["Gerir"], + "CSS Templates": ["Modelos CSS"], + "SQL Lab": ["SQL Lab"], + "SQL": ["SQL"], + "Saved Queries": ["Queries Gravadas"], + "Query History": ["Histórico de queries"], + "Action Log": ["Registo de Acções"], + "Security": ["Segurança"], + "Alerts & Reports": [""], + "Annotation Layers": ["Camadas de anotação"], + "Row Level Security": [""], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Coluna datahora não definida como parte da configuração da tabela e obrigatória para este tipo de gráfico" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "" + "Empty query?": ["Query vazia?"], + "Unknown column used in orderby: %(col)s": [""], + "Time column \"%(col)s\" does not exist in dataset": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [""], + "Error in jinja expression in HAVING clause: %(msg)s": [""], + "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], + "Deleted %(num)d report schedule": [ + "", + "Deleted %(num)d report schedules" ], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "EMAIL_REPORTS_CTA": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Columns": ["Colunas"], - "Columns To Be Parsed as Dates": [""], - "Columns missing in dataset: %(invalid_columns)s": [""], - "Columns missing in datasource: %(invalid_columns)s": [""], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Columns to show": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [""], + "Guest user cannot modify chart payload": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "" + "The parameter %(parameters)s in your query is undefined.": [ + "", + "The following parameters in your query are undefined: %(parameters)s." ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Tag name is invalid (cannot contain ':')": [""], + "Is custom tag": [""], + "Scheduled task executor not found": [""], + "Record Count": ["Número de Registos"], + "No records found": ["Nenhum registo encontrado"], + "Filter List": ["Filtros"], + "Search": ["Pesquisa"], + "Refresh": ["Intervalo de atualização"], + "Import dashboards": ["Importar Dashboards"], + "Import Dashboard(s)": ["Importar Dashboards"], + "File": [""], + "Choose File": ["Escolha uma fonte"], + "Upload": [""], + "Use the edit button to change this field": [""], + "Test Connection": ["Conexão de teste"], + "Unsupported clause type: %(clause)s": [""], + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [""], + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "" + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": [""], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": ["Granularidade Temporal"], + "Unsupported time grain: %(time_grain)s": [""], + "Periods must be a whole number": [""], + "Confidence interval must be between 0 and 1 (exclusive)": [""], + "DataFrame must include temporal column": [""], + "DataFrame include at least one series": [ + "Selecione pelo menos uma métrica" ], - "Comparison Period Lag": [""], - "Comparison suffix": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [ - "Calcular contribuição para o total" + "Resample operation requires DatetimeIndex": [""], + "Undefined window for rolling operation": [""], + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [""], + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [""], + "Operator undefined for aggregator: %(name)s": [""], + "Invalid numpy function: %(operator)s": [""], + "Unexpected time range: %(error)s": [""], + "json isn't valid": ["json não é válido"], + "Export to YAML": ["Exportar para .json"], + "Export to YAML?": ["Exportar para .json"], + "Delete": ["Eliminar"], + "Delete all Really?": ["Tem a certeza que pretende eliminar tudo?"], + "Is favorite": ["Favoritos"], + "Is tagged": [""], + "The data source seems to have been deleted": [ + "Esta origem de dados parece ter sido excluída" ], - "Confidence interval": [""], - "Confidence interval must be between 0 and 1 (exclusive)": [""], - "Configuration": ["Contribuição"], - "Configure Advanced Time Range ": [""], - "Configure Time Range: Last...": [""], - "Configure Time Range: Previous...": [""], - "Configure custom time range": [""], - "Configure filter scopes": [""], - "Configure the basics of your Annotation Layer.": [""], - "Configure this dashboard to embed it into an external web application.": [ - "" + "The user seems to have been deleted": [ + "O utilizador parece ter sido eliminado" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm save": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": ["Conexão de teste"], - "Connection failed, please check your connection settings": [""], - "Connection looks good!": [""], - "Continue": [""], - "Continuous": [""], - "Contribution": ["Contribuição"], - "Control": [""], - "Control labeled ": [""], - "Controls labeled ": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": [ - "Copiar a instrução SELECT para a área de transferência" + "Error: permalink state not found": [""], + "Error: %(msg)s": [""], + "Explore - %(table)s": [""], + "Explore": ["Explorar gráfico"], + "Chart [{}] has been saved": [""], + "Chart [{}] has been overwritten": [""], + "Chart [{}] was added to dashboard [{}]": [""], + "Dashboard [{}] just got created and chart [{}] was added to it": [""], + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Pedido mal formado. Os argumentos slice_id ou table_name e db_name não foram preenchidos" ], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": [""], - "Copy of %s": ["Cópia de %s"], - "Copy partition query to clipboard": [ - "Copiar query de partição para a área de transferência" + "Chart %(id)s not found": ["Visualização %(id)s não encontrada"], + "Table %(table)s wasn't found in the database %(db)s": [ + "A tabela %(t)s não foi encontrada na base de dados %(d)s" ], - "Copy query URL": ["Query vazia?"], - "Copy query link to your clipboard": [ - "Copiar query de partição para a área de transferência" + "Show CSS Template": ["Modelos CSS"], + "Add CSS Template": ["Modelos CSS"], + "Edit CSS Template": ["Modelos CSS"], + "Template Name": ["Nome do modelo"], + "A human-friendly name": [""], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "" ], - "Copy the account name of that database you are trying to connect to.": [ + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to clipboard": ["Copiar para área de transferência"], - "Could not connect to database: \"%(database)s\"": [""], + "Custom Plugins": ["Cláusula WHERE personalizada"], + "Custom Plugin": [""], + "Add a Plugin": ["Adicionar Coluna"], + "Edit Plugin": ["Editar Coluna"], + "The dataset associated with this chart no longer exists": [""], "Could not determine datasource type": [""], - "Could not fetch all saved charts": [ - "Não foi possível ligar ao servidor" - ], "Could not find viz object": [""], - "Could not load database driver": ["Não foi possível ligar ao servidor"], - "Could not load database driver: %(driver_name)s": [""], - "Could not load database driver: {}": [ - "Não foi possível ligar ao servidor" - ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count Unique Values": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country Field Type": [""], - "Country Map": ["Mapa de País"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "" + "Show Chart": ["Mostrar Dashboard"], + "Add Chart": ["Gráfico de Queijo"], + "Edit Chart": ["Editar gráfico"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Os parâmetros são gerados dinamicamente ao clicar no botão Guardar ou Substituir na vista de exibição. Este objeto JSON é exposto aqui para referência e para utilizadores avançados que desejam alterar parâmetros específicos." ], - "Create a new chart": ["Crie uma nova visualização"], - "Create chart with dataset": [""], - "Create new chart": ["Crie uma nova visualização"], - "Create or select schema...": [""], - "Created": ["Criado em"], - "Created On": ["Criado em"], - "Creating SSH Tunnel failed for an unknown reason": [""], - "Creating a data source and creating a new tab": [ - "A criar uma nova origem de dados, a exibir numa nova aba" + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Duração (em segundos) do tempo limite da cache para esta visualização." ], "Creator": ["Criador"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "" - ], - "Currently rendered: %s": [""], - "Custom": [""], - "Custom Plugin": [""], - "Custom Plugins": ["Cláusula WHERE personalizada"], - "Custom SQL": [""], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": [""], - "Customize Metrics": [""], - "Cyclic dependency detected": [""], - "D3 Format": ["Formato D3"], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ - "" + "Datasource": ["Fonte de dados"], + "Last Modified": ["Última Alteração"], + "Parameters": ["Parâmetros"], + "Chart": ["Carregar"], + "Name": ["Nome"], + "Visualization Type": ["Tipo de Visualização"], + "Show Dashboard": ["Mostrar Dashboard"], + "Add Dashboard": ["Adicionar Dashboard"], + "Edit Dashboard": ["Editar Dashboard"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Este objeto JSON descreve o posicionamento das visualizações no dashboard. É gerado dinamicamente quando se ajusta a dimensão e posicionamento de uma visualização utilizando o drag & drop na vista de dashboard" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": [""], - "DELETE": [""], - "DML": [""], - "Daily seasonality": [""], - "Dark": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": ["Dashboard"], - "Dashboard [%s] just got created and chart [%s] was added to it": [""], - "Dashboard [{}] just got created and chart [{}] was added to it": [""], - "Dashboard could not be created.": [ - "Não foi possível gravar a sua query" + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "O css para dashboards individuais pode ser alterado aqui ou na vista de dashboard, onde as mudanças são imediatamente visíveis" ], - "Dashboard could not be deleted.": [ - "Não foi possível gravar a sua query" + "To get a readable URL for your dashboard": [ + "Obter um URL legível para o seu dashboard" ], - "Dashboard could not be updated.": [ - "Não foi possível gravar a sua query" + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Este objeto JSON é gerado dinamicamente ao clicar no botão salvar ou substituir na exibição do painel. É exposto aqui para referência e para usuários avançados que desejam alterar parâmetros específicos." ], - "Dashboard does not exist": [""], - "Dashboard parameters are invalid.": [""], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "" + "Owners is a list of users who can alter the dashboard.": [ + "Proprietários é uma lista de utilizadores que podem alterar o dashboard." ], - "Dashboards": ["Dashboards"], - "Dashboards could not be deleted.": [""], - "Dashboards do not exist": ["Dashboards"], - "Data": ["Base de dados"], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ "" ], - "Data has no time steps": [""], - "Data preview": ["Pré-visualização de dados"], - "DataFrame include at least one series": [ - "Selecione pelo menos uma métrica" + "Dashboard": ["Dashboard"], + "Title": ["Título"], + "Slug": ["Slug"], + "Roles": ["Cargo"], + "Published": [""], + "Position JSON": ["Posição JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["Metadados JSON"], + "Export": ["Exportar"], + "Export dashboards?": ["Exportar dashboards?"], + "CSV Upload": [""], + "Select a file to be uploaded to the database": [""], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "" ], - "DataFrame must include temporal column": [""], - "Database": ["Base de dados"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Select a schema if the database supports this": [""], + "Delimiter": [""], + ",": [""], + ".": [""], + "Fail": [""], + "Replace": [""], + "Append": [""], + "Skip Initial Space": [""], + "Skip spaces after delimiter": [""], + "Skip Blank Lines": [""], + "Skip blank lines rather than interpreting them as Not A Number values": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Columns To Be Parsed as Dates": [""], + "A comma separated list of columns that should be parsed as dates": [""], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": [""], + "Character to interpret as decimal point": [""], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ "" ], - "Database URL": ["URL da Base de Dados"], - "Database could not be created.": ["Não foi possível gravar a sua query"], - "Database could not be deleted.": [""], - "Database could not be updated.": ["Não foi possível gravar a sua query"], - "Database does not allow data manipulation.": [""], - "Database does not exist": [""], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Index Column": ["Adicionar Coluna"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Database is offline.": [""], - "Database is required for alerts": [""], - "Database not allowed to change": [""], - "Database not found.": [""], - "Database not found: %(id)s": [""], - "Database parameters are invalid.": [""], - "Databases": ["Bases de dados"], "Dataframe Index": [""], - "Dataset": ["Base de dados"], - "Dataset %(name)s already exists": ["Origem de dados %(name)s já existe"], - "Dataset could not be created.": ["Não foi possível gravar a sua query"], - "Dataset could not be deleted.": [""], - "Dataset could not be updated.": ["Não foi possível gravar a sua query"], - "Dataset does not exist": ["Origem de dados %(name)s já existe"], - "Dataset parameters are invalid.": [""], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [""], - "Datasets": ["Bases de dados"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Write dataframe index as a column": [""], + "Column Label(s)": ["Colunas"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": ["Fonte de dados"], - "Datasource type is required when datasource_id is given": [""], - "Date format string": [""], - "Date/Time": ["Formato da datahora"], - "Datetime Format": ["Formato de data e hora"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "Coluna datahora não definida como parte da configuração da tabela e obrigatória para este tipo de gráfico" - ], - "Day (freq=D)": [""], - "Db engine did not return all queried columns": [""], - "December": [""], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": [""], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Multiple Layers": [""], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": ["Latitude padrão"], - "Default Endpoint": ["Endpoint Padrão"], - "Default URL": ["URL da Base de Dados"], - "Default URL to redirect to when accessing from the dataset list page": [ + "Json list of the column names that should be read": [""], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Default Value": ["Latitude padrão"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Header Row": [""], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "" ], - "Default value must be set when \"Filter has default value\" is checked": [ - "" + "Rows to Read": ["Cargos a permitir ao utilizador"], + "Number of rows of file to read": [""], + "Skip Rows": [""], + "Number of rows to skip at start of file": [""], + "Name of table to be created from excel data.": [ + "Nome da tabela que existe na base de dados de origem" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "Excel File": [""], + "Select a Excel file to be uploaded to a database.": [""], + "Sheet Name": ["Nome Detalhado"], + "Strings used for sheet names (default is the first sheet).": [""], + "Specify a schema (if database flavor supports this).": [""], + "Table Exists": ["Filtro de Tabela"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Number of rows to skip at start of file.": [""], + "Number of rows of file to read.": [""], + "Parse Dates": [""], + "A comma separated list of columns that should be parsed as dates.": [""], + "Character to interpret as decimal point.": [""], + "Write dataframe index as a column.": [""], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Null values": ["Valor de filtro"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Select a Columnar file to be uploaded to a database.": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Define o agrupamento de entidades. Cada série corresponde a uma cor específica no gráfico e tem uma alternância de legenda" - ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Databases": ["Bases de dados"], + "Show Database": ["Mostrar Base de Dados"], + "Add Database": ["Adicionar Base de Dados"], + "Edit Database": ["Editar Base de Dados"], + "Expose this DB in SQL Lab": ["Expor esta BD no SQL Lab"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Permitir a opção CREATE TABLE AS no SQL Lab" ], - "Delete": ["Eliminar"], - "Delete %s?": ["Eliminar"], - "Delete Annotation?": ["Anotações"], - "Delete Database?": ["Selecione uma base de dados"], - "Delete Dataset?": ["Tem a certeza que pretende eliminar tudo?"], - "Delete Layer?": ["Tem a certeza que pretende eliminar tudo?"], - "Delete Query?": ["Executar a query selecionada"], - "Delete Template?": ["Modelos CSS"], - "Delete all Really?": ["Tem a certeza que pretende eliminar tudo?"], - "Delete dashboard tab?": ["Por favor insira um nome para o dashboard"], - "Delete database": ["Selecione uma base de dados"], - "Delete email report": [""], - "Delete query": ["Eliminar"], - "Delete template": ["Carregue um modelo"], - "Delete this container and save to remove this message.": [""], - "Deleted %(num)d annotation": [ - "Selecione uma camada de anotação", - "Selecione uma camada de anotação" + "Allow CREATE VIEW AS option in SQL Lab": [ + "Permitir a opção CREATE TABLE AS no SQL Lab" ], - "Deleted %(num)d annotation layer": [ - "Selecione uma camada de anotação", - "Selecione uma camada de anotação" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Permitir que os usuários executem instruções non-SELECT (UPDATE, DELETE, CREATE, ...) no SQL Lab" ], - "Deleted %(num)d chart": ["", "Deleted %(num)d charts"], - "Deleted %(num)d css template": ["", "Deleted %(num)d css templates"], - "Deleted %(num)d dashboard": [ - "Por favor selecione um dashboard", - "Por favor selecione um dashboard" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Ao permitir a opção CREATE TABLE AS no SQL Lab, esta opção força a tabela a ser criada neste esquema" ], - "Deleted %(num)d dataset": [ - "Selecione uma base de dados", - "Selecione uma base de dados" + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Se Presto, todas as consultas no SQL Lab serão executadas como o utilizador atualmente conectado que deve ter permissão para as executar.
Se hive e hive.server2.enable.doAs estiver habilitado, serão executadas as queries como conta de serviço, mas deve personificar o utilizador atualmente conectado recorrendo à propriedade hive.server2.proxy.user." ], - "Deleted %(num)d report schedule": [ - "", - "Deleted %(num)d report schedules" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "" ], - "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], - "Deleted: %s": ["Eliminar"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "If selected, please set the schemas allowed for csv upload in Extra.": [ "" ], - "Delimited long & lat single column": [""], - "Delimiter": [""], - "Demographics": [""], - "Dependent on": [""], - "Description": ["Descrição"], - "Description (this can be seen in the list)": [""], - "Description text that shows up below your Big Number": [""], - "Details of the certification": [""], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Expose in SQL Lab": ["Expor no SQL Lab"], + "Allow CREATE TABLE AS": ["Permitir CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Permitir CREATE TABLE AS"], + "Allow DML": ["Permitir DML"], + "CTAS Schema": ["Esquema CTAS"], + "SQLAlchemy URI": ["URI SQLAlchemy"], + "Chart Cache Timeout": ["Tempo limite para cache"], + "Secure Extra": ["Segurança"], + "Root certificate": [""], + "Async Execution": [""], + "Impersonate the logged on user": ["Personificar o utilizador conectado"], + "Allow Csv Upload": [""], + "Backend": [""], + "Extra field cannot be decoded by JSON. %(msg)s": [""], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ "" ], - "Diamond": [""], - "Did you mean:": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Dimensions": [""], - "Directed Force Layout": ["Layout de Forças"], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "" + "CSV to Database configuration": [ + "Edite a configuração da origem de dados" ], - "Disable embedding?": [""], - "Display column level total": [""], - "Display configuration": [""], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ "" ], - "Display row level total": [""], - "Display settings": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "" ], - "Distribute across": [""], - "Distribution - Bar Chart": ["Gráfico de barras"], - "Divider": [""], - "Do you want a donut or a pie?": [""], - "Domain": [""], - "Download": [""], - "Download as image": [""], - "Download to CSV": [""], - "Draft": [""], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Excel to Database configuration": [ + "Edite a configuração da origem de dados" + ], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ "" ], - "Drill to detail: %s": [""], - "Drop a column here or click": ["", "Drop columns here or click"], - "Drop a column/metric here or click": [ - "", - "Drop columns/metrics here or click" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Duplicate": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duplicate tab": [""], - "Duration": ["Descrição"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Duração (em segundos) do tempo limite da cache para esta visualização." + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": [""], - "Dynamic Aggregation Function": [""], - "Dynamically search all filter values": [""], - "EMAIL_REPORTS_CTA": [""], - "END (EXCLUSIVE)": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edit": ["Editar"], - "Edit CSS": ["Editar Visualização"], - "Edit CSS Template": ["Modelos CSS"], - "Edit Chart": ["Editar gráfico"], - "Edit Column": ["Editar Coluna"], - "Edit Dashboard": ["Editar Dashboard"], - "Edit Database": ["Editar Base de Dados"], - "Edit Dataset ": ["Editar Base de Dados"], + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": [""], + "Show Log": ["Mostrar totais"], + "Add Log": [""], "Edit Log": ["Editar"], - "Edit Metric": ["Editar Métrica"], - "Edit Plugin": ["Editar Coluna"], - "Edit Saved Query": ["Editar Query"], - "Edit Table": ["Editar Tabela"], - "Edit chart properties": ["Editar propriedades da visualização"], - "Edit email report": [""], - "Edit formatter": [""], - "Edit properties": ["Editar propriedades da visualização"], - "Edit query": ["Query vazia?"], - "Edit template": ["Carregue um modelo"], - "Edit template parameters": ["Editar propriedades da visualização"], - "Edit time range": [""], - "Edited": ["Editar"], - "Editing 1 filter:": [""], - "Editing filter set:": [""], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ + "User": ["Utilizador"], + "Action": ["Acção"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Untitled Query": ["Query sem título"], + "Time Range": ["Granularidade Temporal"], + "Time": ["Tempo"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Uma referência à configuração [Time], levando em consideração a granularidade" + ], + "Raw records": [""], + "Minimum value": [""], + "Maximum value": [""], + "Average value": [""], + "Certified by %s": [""], + "description": ["descrição"], + "bolt": ["parafuso"], + "Changing this control takes effect instantly": [ + "Esta edição tem efeito instantâneo" + ], + "Show info tooltip": [""], + "Label": ["Rótulo"], + "unknown type icon": [""], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Esta seção contém opções que permitem o pós-processamento analítico avançado de resultados da query" + ], + "None": [""], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ "" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Periods": ["Períodos"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ "" ], - "Either the username or the password is wrong.": [""], - "Email reports active": [""], - "Embed": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emit Filter Events": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty query?": ["Query vazia?"], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "O número mínimo de períodos de rolamento necessários para mostrar um valor. Por exemplo, numa soma cumulativa de 7 dias é possível que o \"Período Mínimo\" seja 7, de forma a que todos os pontos de dados mostrados sejam o total de 7 períodos. Esta opção esconde a \"aceleração\" que ocorre nos primeiros 7 períodos" + ], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "30 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Sobrepor série temporal de um período de tempo relativo. Espera valor de variação temporal relativa em linguagem natural (exemplo: 24 horas, 7 dias, 56 semanas, 365 dias)" + ], + "Calculation type": ["Escolha um tipo de visualização"], + "Percentage change": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ "" ], - "Enable Filter Select": ["Ativar Filtro de Seleção"], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], + "Resample": [""], + "Rule": [""], + "1 minutely frequency": [""], + "1 hourly frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "1 year start frequency": [""], + "1 year end frequency": [""], + "Pandas resample rule": ["Regra de remistura de pandas"], + "Fill method": [""], + "Null imputation": [""], + "Linear interpolation": [""], + "Forward values": [""], + "Backward values": [""], + "Median values": [""], + "Pandas resample method": [ + "Método de preenchimento da remistura de pandas" + ], + "Annotations and Layers": ["Camadas de anotação"], + "X Axis": ["Eixo XX"], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": ["Eixo YY"], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Query": ["Query"], + "Predictive Analytics": [""], "Enable forecast": [""], "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Forecast periods": [""], + "How many periods into the future do we want to predict": [""], + "Confidence interval": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "Yes": [""], + "No": [""], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "End": [""], - "End (Longitude, Latitude): ": [""], - "End Longitude & Latitude": [""], - "End Time": ["Fim"], - "End date": [""], - "End date excluded from time range": [""], - "End date must be after start date": [ - "Data de inicio não pode ser posterior à data de fim" + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter Primary Credentials": [""], - "Enter a new title for the tab": ["Insira um novo título para a aba"], - "Enter fullscreen": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": ["Entidade"], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [""], - "Error in jinja expression in RLS filters: %(msg)s": [""], - "Error in jinja expression in WHERE clause: %(msg)s": [""], - "Error in jinja expression in fetch values predicate: %(msg)s": [""], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Error: permalink state not found": [""], - "Estimate cost": [""], - "Estimate the cost before running a query": [""], - "Event definition": [""], - "Event flow": ["Fluxo de eventos"], - "Every": [""], - "Evolution": [""], - "Exact": [""], - "Example": [""], - "Examples": [""], - "Excel File": [""], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "" - ], - "Excel to Database configuration": [ - "Edite a configuração da origem de dados" - ], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed query": ["Executar a query selecionada"], - "Existing dataset": [""], - "Exit fullscreen": [""], - "Expand": [""], - "Expand all": [""], - "Expand data panel": [""], - "Expand row": [""], - "Expand tool bar": ["expandir barra de ferramentas"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "" + "Time related form attributes": [ + "Atributos de formulário relacionados ao tempo" ], - "Experimental": [""], - "Explore": ["Explorar gráfico"], - "Explore - %(table)s": [""], - "Explore the result set in the data exploration view": [""], - "Export": ["Exportar"], - "Export dashboards?": ["Exportar dashboards?"], - "Export to YAML": ["Exportar para .json"], - "Export to YAML?": ["Exportar para .json"], - "Export to original .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": ["Expor no SQL Lab"], - "Expose this DB in SQL Lab": ["Expor esta BD no SQL Lab"], - "Expression": ["Expressão"], - "Extra": ["Extra"], - "Extra Controls": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "" + "Chart ID": ["Tipo de gráfico"], + "The id of the active chart": ["O id da visualização ativa"], + "Cache Timeout (seconds)": ["Cache atingiu tempo limite (segundos)"], + "The number of seconds before expiring the cache": [ + "O número de segundos antes de expirar a cache" ], - "Extra field cannot be decoded by JSON. %(msg)s": [""], - "Extra parameters for use in jinja templated queries": [""], + "URL Parameters": ["Parâmetros"], + "Extra url parameters for use in Jinja templated queries": [""], "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "FEB": [""], - "FRI": [""], - "Factor to multiply the metric by": [""], - "Fail": [""], - "Failed": [""], - "Failed at retrieving results": [ - "O carregamento dos resultados a partir do backend falhou" - ], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to save cross-filter scoping": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [""], - "Favorite": ["Favoritos"], - "Favorites": ["Favoritos"], - "February": [""], - "Fetch Values Predicate": ["Carregar Valores de Predicado"], - "Fetch data preview": ["Obter pré-visualização de dados"], - "Fetched %s": [""], - "Fetching": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [""], - "Field is required": [""], - "File": [""], - "Fill all required fields to enable \"Default Value\"": [""], - "Fill method": [""], - "Filter Configuration": ["Controlo de filtro"], - "Filter List": ["Filtros"], - "Filter box (deprecated)": [""], - "Filter configuration for the filter box": [""], - "Filter has default value": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter only displays values relevant to selections made in other filters.": [ + "Color Scheme": ["Esquema de cores"], + "Row": [""], + "Series": ["Séries"], + "Calculate contribution per series or row": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Filter sets (%(filterSetCount)d)": [""], - "Filter value (case sensitive)": [""], - "Filter value list cannot be empty": [""], - "Filter your charts": ["Controlo de filtro"], - "Filterable": ["Filtrável"], + "Add dataset columns here to group the pivot table columns.": [""], + "Entity": ["Entidade"], + "This defines the element to be plotted on the chart": [ + "Esta opção define o elemento a ser desenhado no gráfico" + ], "Filters": ["Filtros"], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Fix to selected Time Range": [""], - "Fixed color": ["Selecione uma cor"], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Sort by": ["Ordenar por"], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "The dataset column/metric that returns the values on your chart's y-axis.": [ "" ], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "" + "A metric to use for color": ["Uma métrica a utilizar para cor"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "A coluna de tempo para a visualização. Note que é possível definir uma expressão arbitrária que resolve uma coluna DATATEMPO na tabela ou. Observe também que o filtro em baixo é aplicado sobre esta coluna ou expressão" ], - "Force refresh": ["Forçar atualização de dados"], - "Force refresh schema list": ["Forçar atualização de dados"], - "Force refresh table list": ["Forçar atualização de dados"], - "Forecast periods": [""], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formatted CSV attached in email": [""], - "Formatted date": [""], - "Formatted value": [""], - "Formatting": [""], - "Formula": [""], - "Forward values": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Frequency": [""], - "Friction between nodes": [""], - "Friday": [""], - "From date cannot be larger than to date": [ - "Data de inicio não pode ser posterior à data de fim" + "Drop a temporal column here or click": [""], + "Y-axis": [""], + "Dimension to use on y-axis.": [""], + "X-axis": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [ + "O tipo de visualização a ser exibida" ], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "General": [""], - "Generating link, please wait..": [""], - "Geo": [""], - "GeoJson Settings": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Graph layout": [""], - "Gravity": [""], - "Greater or equal (>=)": [""], - "Grid": [""], - "Grid Size": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group by": ["Agrupar por"], - "Groupable": ["Agrupável"], - "Handlebars": [""], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ - "" + "Use this to define a static color for all circles": [""], + "all": [""], + "30 seconds": ["30 segundos"], + "1 minute": ["1 minuto"], + "5 minutes": ["5 minutos"], + "30 minutes": ["10 minutos"], + "1 hour": ["hora"], + "week": ["semana"], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": ["mês"], + "year": ["ano"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "O tempo de granularidade para a visualização. Observe que você pode digitar e usar linguagem natural simples, em inglês, como `10 seconds`, `1 day` ou `56 weeks`" ], - "Header": ["Subtítulo"], - "Header Row": [""], - "Heatmap": ["Mapa de Calor"], - "Heatmap Options": [""], - "Height": ["Altura"], - "Height of the sparkline": [""], - "Hide Line": [""], - "Hide tool bar": ["ocultar barra de ferramentas"], - "Histogram": ["Histograma"], - "Home": [""], - "Horizon Charts": ["Gráfico de Horizonte"], - "Horizontal": [""], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": [""], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id of root node of the tree.": [""], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Se Presto, todas as consultas no SQL Lab serão executadas como o utilizador atualmente conectado que deve ter permissão para as executar.
Se hive e hive.server2.enable.doAs estiver habilitado, serão executadas as queries como conta de serviço, mas deve personificar o utilizador atualmente conectado recorrendo à propriedade hive.server2.proxy.user." - ], - "If a metric is specified, sorting will be done based on the metric value": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Row limit": ["Limite de linha"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Sort Descending": ["Ordenar decrescente"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Series limit": ["Limite de série"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "Ignore cache when generating screenshot": [""], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate the logged on user": ["Personificar o utilizador conectado"], - "Import": ["Importar"], - "Import %s": ["Importar"], - "Import Dashboard(s)": ["Importar Dashboards"], - "Import Dashboards": ["Importar Dashboards"], - "Import a table definition": [""], - "Import chart failed for an unknown reason": [""], - "Import dashboard failed for an unknown reason": [""], - "Import dashboards": ["Importar Dashboards"], - "Import database failed for an unknown reason": [""], - "Import database from file": [""], - "Import dataset failed for an unknown reason": [""], - "Import saved query failed for an unknown reason.": [""], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Y Axis Format": ["Formato do Eixo YY"], + "The color scheme for rendering chart": [ + "O esquema de cores para o gráfico de renderização" + ], + "Whether to truncate metrics": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": [""], + "Original value": [""], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Oops! An error occurred!": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Index": [""], - "Index Column": ["Adicionar Coluna"], - "Info": [""], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": ["hora"], + "day": ["dia"], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "Interpret Datetime Format Automatically": [""], - "Interpret the datetime format automatically": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "The number color \"steps\"": [""], + "Legend": [""], + "Whether to display the legend (toggles)": [""], + "Whether to display the numerical values within the cells": [""], + "Whether to display the metric name as a title": [""], + "Number Format": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "Invalid JSON": [""], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": [""], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Business": [""], + "Pattern": [""], + "Trend": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Number format": [""], + "Source": ["Fonte"], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" ], - "Invalid cron expression": [""], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": ["Formato da Tabela Datahora"], - "Invalid filter configuration, please select a column": [""], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": [""], - "Invalid lat/long configuration.": [""], - "Invalid longitude/latitude": [""], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [""], - "Invalid options for %(rolling_type)s: %(options)s": [""], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid state.": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Invert current page": [""], - "Is dimension": [""], - "Is false": [""], - "Is favorite": ["Favoritos"], - "Is not null": [""], - "Is null": [""], - "Is tagged": [""], - "Is temporal": ["É temporal"], - "Is true": [""], - "Issue 1000 - The dataset is too large to query.": [""], - "Issue 1001 - The database is under an unusual load.": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": [""], - "JSON": ["JSON"], - "JSON Metadata": ["Metadados JSON"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "JUL": ["URL"], - "JUN": [""], - "January": [""], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "2D": [""], + "Geo": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Select any columns for metadata inspection": [""], + "e.g., a \"user id\" column": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "July": [""], - "June": [""], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": [""], - "Keys for table": ["Chaves para tabela"], - "Label": ["Rótulo"], - "Label Line": [""], - "Label Type": [""], - "Label for your query": ["Rótulo para a sua query"], - "Label threshold": [""], - "Labelling": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Large": [""], - "Last": [""], - "Last Changed": ["Modificado pela última vez"], - "Last Modified": ["Última Alteração"], - "Last Updated %s": [""], - "Last available value seen on %s": [""], - "Last modified by %s": ["Última Alteração"], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ + "" + ], + "Progressive": [""], + "Heatmap Options": [""], + "XScale Interval": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "YScale Interval": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "" + ], + "Normalize Across": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], "Left Margin": [""], + "auto": [""], "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Legacy": [""], - "Legend": [""], - "Legend Format": [""], - "Legend type": [""], - "Less or equal (<=)": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light mode": [""], - "Like": [""], - "Like (case insensitive)": [""], - "Limit reached": [""], - "Limit selector values": [""], - "Limit type": [""], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Linear color scheme": ["Esquema de cores lineares"], - "Linear interpolation": [""], - "Lines encoding": [""], - "Link Copied!": ["Copiado!"], - "List Saved Query": ["Lista de Queries Gravadas"], - "List Unique Values": [""], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "List updated": [""], - "Live render": [""], - "Load a CSS template": ["Carregue um modelo CSS"], - "Loaded data cached": ["Dados carregados em cache"], - "Loaded from cache": ["Carregado da cache"], - "Loading": [""], - "Loading...": [""], - "Log Scale": [""], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": ["Login"], - "Logout": ["Sair"], - "Logs": [""], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": [""], - "Longitude of default viewport": [""], - "MAR": [""], - "MAY": [""], - "MON": [""], - "Main Datetime Column": ["Coluna Datahora principal"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Whether to make the histogram cumulative": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Pedido mal formado. Os argumentos slice_id ou table_name e db_name não foram preenchidos" + "Population age data": [""], + "Contribution": ["Contribuição"], + "Compute the contribution to the total": [ + "Calcular contribuição para o total" ], - "Manage": ["Gerir"], - "Manage email report": [""], - "Manage your databases": [""], - "Mandatory": [""], - "Manually set min/max values for the y-axis.": [""], - "Map Style": [""], - "Mapbox": ["Mapbox"], - "March": ["Pesquisa"], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": [""], - "Marker Size": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markers": [""], - "Max": ["Máx"], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Pixel height of each series": [""], + "Value Domain": [""], + "overall": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" ], - "Maximum value": [""], - "Maximum value on the gauge axis": [""], - "May": ["dia"], - "Mean of values over specified period": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Dark Cyan": [""], + "Purple": [""], + "Gold": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Median values": [""], - "Medium": [""], - "Menu actions trigger": [""], - "Metadata has been synced": [""], - "Method": [""], - "Metric": ["Métrica"], - "Metric '%(metric)s' does not exist": [""], - "Metric assigned to the [X] axis": ["Métrica atribuída ao eixo [X]"], - "Metric assigned to the [Y] axis": ["Metrica atribuída ao eixo [Y]"], - "Metric change in value from `since` to `until`": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name [%s] is duplicated": [""], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to sort the results by": [""], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Auto": [""], + "Point Radius Unit": [""], + "Pixels": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Metrics": ["Métricas"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Map Style": [""], + "Streets": [""], + "Dark": [""], + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Opacidade"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "The color for points and clusters in RGB": [""], + "Longitude of default viewport": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Middle": [""], - "Midnight": [""], - "Min": ["Mín"], - "Min Periods": ["Período Mínimo"], - "Min/max (no outliers)": [""], - "Mine": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Light mode": [""], + "Dark mode": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Mixed Time-Series": [""], - "Modified": ["Modificado"], - "Modified columns: %s": [""], - "Monday": [""], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], - "Multi-Dimensions": [""], - "Multi-Layers": [""], - "Multi-Levels": [""], - "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "" ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Not Time Series": [""], + "Ignore time": [""], + "Standard time series": [""], + "Mean of values over specified period": [""], + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Metric percent change in value from `since` to `until`": [""], + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": ["Análise Avançada"], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "Multiplier": [""], - "Must be unique": [""], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Deve ter uma coluna [Agrupar por] para ter 'count' como [Label]" - ], - "Must have at least one numeric column specified": [ - "Deve ser especificada uma coluna númerica" - ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "N/A": [""], - "NOV": [""], - "NOW": [""], - "Name": ["Nome"], - "Name is required": [""], - "Name must be unique": [""], - "Name of table to be created from excel data.": [ - "Nome da tabela que existe na base de dados de origem" + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ + "" ], - "Name of the column containing the id of the parent node": [""], - "Name of the id column": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [ - "Nome da tabela que existe na base de dados de origem" + "Rolling Window": ["Rolling"], + "Rolling Function": ["Rolling"], + "cumsum": [""], + "Min Periods": ["Período Mínimo"], + "Time Comparison": ["Coluna de tempo"], + "Time Shift": ["Mudança de hora"], + "30 days": [""], + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": [""], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Categorical": [""], + "Use Area Proportions": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "" ], - "Name of the target nodes": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error.": ["Erro de rede."], - "New chart": ["Mover gráfico"], - "New columns added: %s": [""], - "New tab": ["fechar aba"], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": [""], - "No": [""], - "No %s yet": [""], - "No Access!": ["Não há acesso!"], - "No annotation layers yet": ["Camadas de anotação"], - "No annotation yet": ["Camadas de anotação"], - "No charts": ["Mover gráfico"], - "No compatible columns found": [""], - "No compatible datasets found": [""], - "No compatible schema found": [""], - "No dashboards": ["Sem dashboards"], - "No data": ["Metadados"], - "No data after filtering or data is NULL for the latest time record": [ + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ "" ], - "No data in file": [""], - "No database tables found": [""], - "No databases match your search": [""], - "No favorite charts yet, go click on stars!": [ - "Ainda não há dashboards favoritos, comece a clicar nas estrelas!" + "Multi-Layers": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "" ], - "No favorite dashboards yet, go click on stars!": [ - "Ainda não há dashboards favoritos, comece a clicar nas estrelas!" + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "" ], - "No filter is selected.": [""], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No recents yet": [""], - "No records found": ["Nenhum registo encontrado"], - "No results found": ["Nenhum registo encontrado"], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No saved expressions found": [""], - "No stored results found, you need to re-run your query": [""], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Whether to display bubbles on top of countries": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ "" ], - "No temporal columns found": [""], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "Node select mode": [""], - "None": [""], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not Time Series": [""], - "Not available": [""], - "Not equal to (≠)": [""], - "Not null": [""], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": [""], - "November": [""], - "Now": [""], - "Null imputation": [""], - "Null or Empty": [""], - "Null values": ["Valor de filtro"], - "Number Format": [""], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Metric that defines the size of the bubble": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "Number format": [""], - "Number format string": [""], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read": [""], - "Number of rows of file to read.": [""], - "Number of rows to skip at start of file": [""], - "Number of rows to skip at start of file.": [""], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "OCT": [""], - "OK": [""], - "OVERWRITE": [""], - "October": [""], - "Offline": [""], - "Offset": ["Offset"], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Multi-Dimensions": [""], + "Multi-Variables": [""], + "Popular": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start (Longitude, Latitude): ": [""], + "End (Longitude, Latitude): ": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Color of the target location": [""], + "Categorical Color": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Stroke Width": [""], + "Advanced": ["Análise Avançada"], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Centroid (Longitude and Latitude): ": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "One or many controls to pivot as columns": [ - "Um ou vários controles para pivotar como colunas" - ], - "One or many metrics to display": ["Uma ou várias métricas para exibir"], - "One or more columns already exist": [""], - "One or more columns are duplicated": [""], - "One or more columns do not exist": [""], - "One or more metrics already exist": [ - "Uma ou várias métricas para exibir" - ], - "One or more metrics are duplicated": [ - "Uma ou várias métricas para exibir" - ], - "One or more metrics do not exist": [ - "Uma ou várias métricas para exibir" - ], - "One or more parameters needed to configure a database are missing.": [ + "Spatial": [""], + "Experimental": [""], + "GeoJson Settings": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "One or more parameters specified in the query are malformatted.": [""], - "One or more parameters specified in the query are missing.": [""], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "deck.gl Geojson": [""], + "Height": ["Altura"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ "" ], - "One ore more annotation layers failed loading.": [""], - "Only SELECT statements are allowed against this database.": [""], - "Only Total": [""], - "Only `SELECT` statements are allowed": [ - "Copiar a instrução SELECT para a área de transferência" - ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [""], - "Only show the total value on the stacked chart, and not show on the selected category": [ + "deck.gl Grid": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ "" ], - "Only single queries supported": [""], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "Oops! An error occurred!": [""], - "Opacity": ["Opacidade"], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Polygon Settings": [""], "Opacity, expects values between 0 and 100": [""], - "Open in SQL Lab": ["Expor no SQL Lab"], - "Open query in SQL Lab": ["Expor no SQL Lab"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Emit Filter Events": [""], + "Whether to apply filter when items are clicked": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ "" ], - "Operator undefined for aggregator: %(name)s": [""], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Size": [""], + "Point Unit": [""], + "Square miles": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "Optional d3 date format string": [""], - "Optional d3 number format string": [""], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original table column order": ["Ordenação original das colunas"], - "Original value": [""], - "Orthogonal": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Sobrepor série temporal de um período de tempo relativo. Espera valor de variação temporal relativa em linguagem natural (exemplo: 24 horas, 7 dias, 56 semanas, 365 dias)" + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "Overwrite": ["Substitua a visualização %s"], - "Overwrite & Explore": ["Substitua a visualização %s"], - "Overwrite Dashboard [%s]": ["Substituir Dashboard [%s]"], - "Overwrite existing": [""], - "Overwrite text in the editor with a query on this table": [ - "Substitua texto no editor com uma query nesta tabela" + "deck.gl Scatterplot": [""], + "Grid": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "" ], - "Owned Created or Favored": [""], - "Owner": ["Proprietário"], - "Owners": ["Proprietários"], - "Owners are invalid": [""], - "Owners is a list of users who can alter the dashboard.": [ - "Proprietários é uma lista de utilizadores que podem alterar o dashboard." + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Proprietários é uma lista de utilizadores que podem alterar o dashboard." + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ + "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": [ - "Método de preenchimento da remistura de pandas" + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Select a dimension": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "" ], - "Pandas resample rule": ["Regra de remistura de pandas"], - "Parallel Coordinates": ["Coordenadas paralelas"], - "Parameters": ["Parâmetros"], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": [""], - "Part of a Whole": [""], - "Partition Diagram": ["Diagrama de Partição"], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": [""], - "Percentage": [""], - "Percentage change": [""], - "Percentage threshold": [""], - "Percentages": [""], - "Performance": [""], - "Period average": [""], - "Periods": ["Períodos"], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [""], - "Physical": [""], - "Physical (table or view)": [""], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Escolha uma granularidade na secção Tempo ou desmarque 'Incluir hora'" - ], - "Pick a metric for x, y and size": [ - "Selecione uma métrica para x, y e tamanho" + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ + "" ], - "Pick a metric to display": ["Selecione uma métrica para visualizar"], - "Pick a metric!": ["Selecione uma métrica!"], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "Selecione uma granularidade para as suas séries temporais" + "Legend Format": [""], + "Choose the format for legend values": [""], + "Top left": [""], + "Top right": [""], + "Bottom left": [""], + "Bottom right": [""], + "The database columns that contains lines information": [""], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "" ], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [ - "Escolha pelo menos um campo para [Séries]" + "Whether to fill the objects": [""], + "Stroked": [""], + "Whether to display the stroke": [""], + "Whether to make the grid 3D": [""], + "Grid Size": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Multiplier": [""], + "Factor to multiply the metric by": [""], + "Lines encoding": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "Select the geojson column": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "basis": [""], + "cardinal": [""], + "step-before": [""], + "Line interpolation as defined by d3.js": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "" ], - "Pick at least one metric": ["Selecione pelo menos uma métrica"], - "Pick exactly 2 columns as [Source / Target]": [ - "Selecione exatamente 2 colunas [Origem e Alvo]" + "X Tick Layout": [""], + "flat": [""], + "staggered": [""], + "The way the ticks are laid out on the X-axis": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ "" ], - "Pick your favorite markup language": [ - "Escolha a sua linguagem de marcação favorita" + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "expand": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "" ], - "Pie shape": [""], - "Pivot Table": ["Tabela Pivot"], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Continuous": [""], + "nvd3": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Bar": [""], + "Vertical": [""], + "Box Plot": ["Box Plot"], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "Markers": [""], + "List of values to mark with triangles": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ "" ], - "Please choose different metrics on left and right axis": [ - "Selecione métricas diferentes para o eixo esquerdo e direito" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "" ], - "Please confirm": [""], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [ - "Por favor insira um nome para a visualização" + "Sort bars by x labels.": [""], + "Breakdowns": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "" ], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [""], - "Please save your chart first, then try creating a new email report.": [ + "Bar Chart (legacy)": [""], + "Additive": [""], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Label Type": [""], + "Value": ["Mostrar valores das barras"], + "Percentage": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Do you want a donut or a pie?": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Frequency": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [ - "Selecione métricas diferentes para o eixo esquerdo e direito" + "Formula": [""], + "Stack": [""], + "Expand": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Additional padding for legend.": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "" ], - "Plot the distance (like flight paths) between origin and destination.": [ + "Percentage threshold": [""], + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Tooltip": [""], + "Sort Series By": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Series Order": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ "" ], - "Plugins": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Size": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polygon Settings": [""], - "Polyline": [""], - "Pop Tab Link": ["Ligação Abrir Aba"], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "X Axis Bounds": [""], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": ["Posição JSON"], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter available values": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Predicado aplicado ao obter um valor distinto para preencher a componente de controlo de filtro. Suporta a sintaxe jinja standard. Apenas se aplica quando \"Ativar Filtro de Seleção\" está ativado." + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": ["Metadados"], + "No data after filtering or data is NULL for the latest time record": [ + "" ], - "Predictive Analytics": [""], - "Preview": ["Pré-visualização para %s"], - "Preview: `%s`": ["Pré-visualização para %s"], - "Previous": ["Pré-visualização para %s"], - "Primary": [""], - "Primary key": [""], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Proceed": [""], - "Profile": ["Perfil"], - "Profile picture provided by Gravatar": [ - "Foto de perfil fornecida por Gravatar" + "Try applying different filters or ensuring your datasource has data": [ + "" ], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": [""], - "Purple": [""], - "Put labels outside": [""], - "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": ["Insira o seu código aqui"], - "Python datetime string pattern": [""], - "QUERY DATA IN SQL LAB": [""], - "Query": ["Query"], - "Query %s: %s": [""], - "Query History": ["Histórico de queries"], - "Query imported": [""], - "Query in a new tab": ["Query numa nova aba"], - "Query is too complex and takes too long to run.": [""], - "Query preview": ["Pré-visualização de dados"], - "Query was stopped.": ["A query foi interrompida."], - "RANGE TYPE": [""], - "Radar": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radial": [""], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Raw records": [""], - "Rebuild": [""], - "Recently created charts, dashboards, and saved queries will appear here": [ + "Big Number Font Size": [""], + "Small": [""], + "Normal": [""], + "Large": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Display settings": [""], + "Description text that shows up below your Big Number": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ + "With a subheader": [""], + "Big Number": ["Número grande"], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Comparison suffix": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Fix to selected Time Range": [""], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ "" ], - "Recents": [""], - "Recipients are separated by \",\" or \";\"": [""], - "Recommended tags": [""], - "Record Count": ["Número de Registos"], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Redireciona para este endpoint ao clicar na tabela da respetiva lista" + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Big Number with Trendline": ["Número grande com linha de tendência"], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Distribute across": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Referenced columns not available in DataFrame.": [""], - "Refresh": ["Intervalo de atualização"], - "Refresh dashboard": ["Sem dashboards"], - "Refresh frequency": [""], - "Refresh the default values": [""], - "Regex": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative quantity": [""], - "Remind me in 24 hours": [""], - "Remove": [""], - "Remove cross-filter": [""], - "Remove invalid filters": [""], - "Remove item": [""], - "Remove query from log": ["Remover query do histórico"], - "Remove table preview": ["Remover pré-visualização de tabela"], - "Removed columns: %s": [""], - "Rename tab": ["renomear aba"], - "Replace": [""], - "Report Name": ["Nome do modelo"], - "Report Schedule could not be created.": [ - "Não foi possível gravar a sua query" + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "" ], - "Report Schedule could not be deleted.": [ - "Não foi possível gravar a sua query" + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "" ], - "Report Schedule could not be updated.": [ - "Não foi possível gravar a sua query" + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "What should be shown as the label": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "" ], - "Report Schedule delete failed.": [""], - "Report Schedule execution failed when generating a csv.": [""], - "Report Schedule execution failed when generating a dataframe.": [""], - "Report Schedule execution failed when generating a screenshot.": [""], - "Report Schedule execution got an unexpected error.": [""], - "Report Schedule is still working, refusing to re-compute.": [""], - "Report Schedule log prune failed.": [""], - "Report Schedule not found.": [""], - "Report Schedule parameters are invalid.": [""], - "Report Schedule reached a working timeout.": [""], - "Report Schedule state not found": [""], - "Report schedule system error": [""], - "Report schedule unexpected error": [""], - "Reports": ["Janela de exibição"], - "Repulsion strength between nodes": [""], - "Request Permissions": ["Requisição de Permissão"], - "Request is incorrect: %(error)s": [""], - "Request missing data field.": [""], - "Request timed out": [""], - "Required": [""], - "Required control values have been removed": [""], - "Resample": [""], - "Resample operation requires DatetimeIndex": [""], - "Reset": [""], - "Resource already has an attached report.": [""], - "Restore Filter": ["Filtros de resultados"], - "Results": ["Resultados"], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "Sequential": [""], + "General": [""], + "Min": ["Mín"], + "Minimum value on the gauge axis": [""], + "Max": ["Máx"], + "Maximum value on the gauge axis": [""], + "Angle at which to start progress axis": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": [""], - "Reverse lat/long ": [""], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right axis metric": ["Metric do Eixo Direito"], - "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Show progress": [""], + "Whether to show the progress of gauge chart": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ "" ], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "O cargo %(r)s foi alargado para providenciar acesso à origem de dados %(ds)s" + "Style the ends of the progress bar with a round cap": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "" ], - "Roles": ["Cargo"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "Roles to grant": ["Cargos a permitir ao utilizador"], - "Rolling Function": ["Rolling"], - "Rolling Window": ["Rolling"], - "Root certificate": [""], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], - "Row": [""], - "Row Level Security": [""], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Target category": [""], + "Category of target nodes": [""], + "Layout": [""], + "Graph layout": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Scale only": [""], + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": [""], + "Single": [""], + "Multiple": [""], + "Allow node selections": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ "" ], - "Row limit": ["Limite de linha"], - "Rows": [""], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": ["Cargos a permitir ao utilizador"], - "Rule": [""], - "Rule added": [""], - "Run": [""], - "Run in SQL Lab": ["Expor no SQL Lab"], - "Run query": ["Executar query"], - "Run query (Ctrl + Return)": [""], - "Run query in a new tab": ["Executar a query em nova aba"], - "Running": [""], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": [""], - "SEP": [""], - "SQL": ["SQL"], - "SQL Copied!": ["Copiado!"], - "SQL Expression": ["Expressão SQL"], - "SQL Lab": ["SQL Lab"], - "SQL Lab View": ["SQL Lab"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ "" ], - "SQL Query": ["Gravar query"], - "SQLAlchemy URI": ["URI SQLAlchemy"], - "SSH Host": [""], - "SSH Password": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "STRING": [""], - "SUN": [""], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Sankey": ["Sankey"], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite Streets": [""], - "Saturday": [""], - "Save": ["Salvar"], - "Save & Explore": ["Grave uma visualização"], - "Save & go to dashboard": ["Gravar e ir para o dashboard"], - "Save (Overwrite)": ["Queries Gravadas"], - "Save as": ["Gravar como"], - "Save as new chart": ["Gravar Dashboard"], - "Save as:": ["Gravar como:"], - "Save for this session": [""], - "Save or Overwrite Dataset": [""], - "Save the query to enable this feature": [""], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["Salvar"], - "Saved Queries": ["Queries Gravadas"], - "Saved metric": ["Selecione métrica"], - "Saved queries could not be deleted.": [ - "Não foi possível carregar a query" - ], - "Saved query not found.": [""], - "Scale and Move": [""], - "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion strength between nodes": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], - "Schedule": [""], - "Schedule a new email report": [""], - "Schedule email report": [""], - "Schedule settings": [""], - "Schedule the query periodically": [""], - "Scheduled": [""], - "Scheduled at (UTC)": [""], - "Scheduled task executor not found": [""], - "Schema": ["Esquema"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Esquema, como utilizado em algumas base de dados, como Postgres, Redshift e DB2" + "Structural": [""], + "Whether to sort descending or ascending": [ + "Ordenar de forma descendente ou ascendente" ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": [""], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["Pesquisa"], - "Search / Filter": ["Pesquisa / Filtro"], - "Search Metrics & Columns": ["Colunas das séries temporais"], - "Search by query text": [""], - "Search...": ["Pesquisa"], + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Marker": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary": [""], + "Primary or secondary y-axis": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Secure Extra": ["Segurança"], - "Security": ["Segurança"], - "Security & Access": ["Segurança e Acesso"], - "See all %(tableName)s": [""], - "See more": [""], - "See query details": [""], - "See table schema": ["Selecione um esquema (%s)"], - "Select ...": ["Selecione ..."], - "Select Delivery Method": [""], - "Select a Columnar file to be uploaded to a database.": [""], - "Select a Excel file to be uploaded to a database.": [""], - "Select a database table and create dataset": [""], - "Select a database to upload the file to": [""], - "Select a dimension": [""], - "Select a file to be uploaded to the database": [""], - "Select a schema if the database supports this": [""], - "Select a visualization type": ["Selecione um tipo de visualização"], - "Select aggregate options": [""], - "Select any columns for metadata inspection": [""], - "Select database or type to search databases": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ "" ], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select or type a value": [""], - "Select owners": [""], - "Select schema or type to search schemas": [""], - "Select start and end date": ["Selecione uma base de dados"], - "Select subject": [""], - "Select table or type to search tables": [""], - "Select the Annotation Layer you would like to use.": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Whether to display the aggregate count": [""], + "Pie shape": [""], + "Outer Radius": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ "" ], - "Select the geojson column": [""], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Radar": [""], + "Customize Metrics": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": [""], - "Sequential": [""], - "Series": ["Séries"], - "Series Order": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": ["Limite de série"], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": ["Intervalo de atualização"], - "Set filter mapping": [""], - "Set up an email report": [""], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ "" ], - "Settings": [""], - "Settings for time series": [""], - "Share": [""], - "Share permalink by email": [""], - "Sheet Name": ["Nome Detalhado"], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [""], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "When only a primary metric is provided, a categorical color scale is used.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "When a secondary metric is provided, a linear color scale is used.": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "Show": [""], - "Show CREATE VIEW statement": [""], - "Show CSS Template": ["Modelos CSS"], - "Show Chart": ["Mostrar Dashboard"], - "Show Column": ["Mostrar Coluna"], - "Show Dashboard": ["Mostrar Dashboard"], - "Show Database": ["Mostrar Base de Dados"], - "Show Less...": [""], - "Show Log": ["Mostrar totais"], - "Show Markers": [""], - "Show Metric": ["Mostrar Métrica"], - "Show Saved Query": ["Mostrar Query"], - "Show Table": ["Mostrar Tabela"], - "Show Timestamp": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show data points as circle markers on the lines": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" ], - "Show info tooltip": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show progress": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "zoom area": [""], + "restore zoom": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "AXIS TITLE MARGIN": [""], + "AXIS TITLE POSITION": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Axis Bounds": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Chart Orientation": [""], + "Horizontal": [""], + "Bar Charts are used to show metrics as a series of bars.": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Scatter Plot": [""], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Step type": [""], + "Start": ["Início"], + "Middle": [""], + "End": [""], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Showing %s of %s": [""], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": [""], - "Skip Initial Space": [""], - "Skip Rows": [""], - "Skip blank lines rather than interpreting them as Not A Number values": [ + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ "" ], - "Skip spaces after delimiter": [""], - "Slug": ["Slug"], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Stepped Line": [""], + "Name of the id column": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Radial": [""], + "Layout type of tree": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], + "Empty circle": [""], + "Circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Arrow": [""], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Solid": [""], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [ - "Desculpe, houve um erro ao gravar este dashbard: " - ], - "Sorry there was an error fetching saved charts: ": [ - "Desculpe, houve um erro ao gravar este dashbard: " + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "" ], - "Sorry, An error occurred": [""], - "Sorry, an error occurred": [""], - "Sorry, an unknown error occurred": [""], - "Sorry, an unknown error occurred.": [""], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, your browser does not support copying.": [ - "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" + "Treemap": ["Treemap"], + "Total": [""], + "Assist": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "" ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "" ], - "Sort Descending": ["Ordenar decrescente"], - "Sort Metric": ["Mostrar Métrica"], - "Sort Series By": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort bars by x labels.": [""], - "Sort by": ["Ordenar por"], - "Sort columns alphabetically": ["Ordenar colunas por ordem alfabética"], - "Sort series in ascending order": [""], - "Source": ["Fonte"], - "Source SQL": ["Fonte SQL"], - "Sparkline": [""], - "Spatial": [""], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [""], - "Specify duplicate columns as \"X.0, X.1\".": [""], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "Handlebars": [""], + "must have a value": [""], + "A handlebars template that is applied to the data": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "Square miles": [""], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["Início"], - "Start (Longitude, Latitude): ": [""], - "Start Longitude & Latitude": [""], - "Start at (UTC)": [""], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "State": ["Estado"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": ["Estado"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Step type": [""], - "Stepped Line": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "Stop": ["Parar"], - "Stop query": ["Query vazia?"], - "Stop running (Ctrl + e)": [""], - "Stop running (Ctrl + x)": [""], - "Stopped an unsafe database connection": [ - "Selecione qualquer coluna para inspeção de metadados" + "Ordering": [""], + "Order results by selected columns": [""], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": [""], + "Columns to group by on the rows": [""], + "Apply metrics on": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "" ], - "Streets": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [""], - "Stroke Width": [""], - "Stroked": [""], - "Structural": [""], - "Style": ["Estilo do mapa"], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], - "Success": [""], - "Successfully changed dataset!": [""], - "Suffix to apply after the percentage display": [""], + "Count Unique Values": [""], + "List Unique Values": [""], "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Maximum": [""], + "First": [""], + "Last": [""], "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sunburst": ["Sunburst"], - "Sunday": [""], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["Explorar gráfico"], - "Superset encountered an error while running a command.": [""], - "Superset encountered an unexpected error.": [""], - "Survey Responses": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ "" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Show rows total": [""], + "Display row level total": [""], + "Display row level subtotal": [""], + "Display column level total": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ "" ], - "Symbol of two ends of edge line": [""], - "Sync columns from source": [""], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "D3 time format for datetime columns": [""], + "key a-z": [""], + "key z-a": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], - "TABLES": [""], - "THU": [""], - "TUE": [""], - "Tab title": [""], - "Table": ["Tabela"], - "Table %(table)s wasn't found in the database %(db)s": [ - "A tabela %(t)s não foi encontrada na base de dados %(d)s" - ], - "Table Exists": ["Filtro de Tabela"], - "Table Name": ["Nome da Tabela"], - "Table View": ["Vista de tabela"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "Tabela [{}] não encontrada, por favor verifique conexão à base de dados, esquema e nome da tabela" - ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "Tabela [{}] não encontrada, por favor verifique conexão à base de dados, esquema e nome da tabela" - ], - "Table loading": [""], - "Table name cannot contain a schema": [""], - "Table name undefined": ["Nome da Tabela"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Pivot Table": ["Tabela Pivot"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": [""], + "Page length": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "Tables": ["Tabelas"], - "Tabs": [""], - "Tabular": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "Target category": [""], - "Target value": [""], - "Template Name": ["Nome do modelo"], - "Template parameters": ["Nome do modelo"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Ligação predefinida, é possível incluir {{ metric }} ou outros valores provenientes dos controlos." - ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "Test Connection": ["Conexão de teste"], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "O css para dashboards individuais pode ser alterado aqui ou na vista de dashboard, onde as mudanças são imediatamente visíveis" - ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "" - ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" - ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" - ], - "The access requests seem to have been deleted": [ - "Os pedidos de acesso parecem ter sido eliminados" - ], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Show": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "random": [""], + "square": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "N/A": [""], + "fetching": [""], + "stopped": [""], + "The query couldn't be loaded": ["Não foi possível carregar a query"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [ - "O esquema de cores para o gráfico de renderização" + "Your query could not be scheduled": [ + "Não foi possível gravar a sua query" ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "" + "Failed at retrieving results": [ + "O carregamento dos resultados a partir do backend falhou" ], - "The column was deleted or renamed in the database.": [""], - "The country code standard that Superset should expect to find in the [country] column": [ + "Unknown error": [""], + "Query was stopped.": ["A query foi interrompida."], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The dashboard has been saved": ["Dashboard gravado com sucesso."], - "The data source seems to have been deleted": [ - "Esta origem de dados parece ter sido excluída" - ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "O tipo de dados que foi inferido pela base de dados. Pode ser necessário inserir um tipo manualmente para colunas definidas por expressões em alguns casos. A maioria dos casos não requer alteração por parte do utilizador." - ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [""], - "The database is under an unusual load.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The database returned an unexpected error.": [""], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "The dataset has been saved": [ - "Esta origem de dados parece ter sido excluída" + "Copy of %s": ["Cópia de %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The datasource couldn't be loaded": [ - "Não foi possível carregar a query" + "An error occurred while fetching tab state": [ + "Ocorreu um erro ao carregar os metadados da tabela" ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "" + "An error occurred while removing tab. Please contact your administrator.": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The distance between cells, in pixels": [""], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "" + "An error occurred while removing query. Please contact your administrator.": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "" + "Your query could not be saved": ["Não foi possível gravar a sua query"], + "Your query was saved": ["A sua query foi gravada"], + "Your query was updated": ["A sua query foi gravada"], + "Your query could not be updated": [ + "Não foi possível gravar a sua query" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "The host might be down, and can't be reached on the provided port.": [ - "" + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Ocorreu um erro ao carregar os metadados da tabela" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The hostname provided can't be resolved.": [""], - "The id of the active chart": ["O id da visualização ativa"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "A lista de visualizações associadas a esta tabela. Ao alterar a origem de dados, o comportamento das visualizações associadas poderá ser alterado. Observe também que as visualizações tem que apontar para uma origem de dados, este formulário falhará na poupança se forem removidas visualizações da origem de dados. Se quiser alterar a origem de dados de uma visualização, atualize a visualização na \"vista de exploração\"" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The maximum number of events to return, equivalent to the number of rows": [ - "" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "" + "The datasource couldn't be loaded": [ + "Não foi possível carregar a query" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "" + "An error occurred while creating the data source": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "O número mínimo de períodos de rolamento necessários para mostrar um valor. Por exemplo, numa soma cumulativa de 7 dias é possível que o \"Período Mínimo\" seja 7, de forma a que todos os pontos de dados mostrados sejam o total de 7 períodos. Esta opção esconde a \"aceleração\" que ocorre nos primeiros 7 períodos" + "Primary key": [""], + "Foreign key": [""], + "Index": [""], + "Estimate cost": [""], + "Creating a data source and creating a new tab": [ + "A criar uma nova origem de dados, a exibir numa nova aba" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "" + "An error occurred": [""], + "Explore the result set in the data exploration view": [""], + "Source SQL": ["Fonte SQL"], + "Run query": ["Executar query"], + "Stop query": ["Query vazia?"], + "New tab": ["fechar aba"], + "Keyboard shortcuts": [""], + "State": ["Estado"], + "Duration": ["Descrição"], + "Results": ["Resultados"], + "Actions": ["Acção"], + "Success": [""], + "Failed": [""], + "Running": [""], + "Fetching": [""], + "Offline": [""], + "Scheduled": [""], + "Unknown Status": [""], + "Edit": ["Editar"], + "Data preview": ["Pré-visualização de dados"], + "Overwrite text in the editor with a query on this table": [ + "Substitua texto no editor com uma query nesta tabela" ], + "Run query in a new tab": ["Executar a query em nova aba"], + "Remove query from log": ["Remover query do histórico"], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["Grave uma visualização"], + "Overwrite & Explore": ["Substitua a visualização %s"], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "" - ], + "The number of rows displayed is limited to %(rows)d by the query": [""], "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "The number of seconds before expiring the cache": [ - "O número de segundos antes de expirar a cache" - ], - "The parameter %(parameters)s in your query is undefined.": [ - "", - "The following parameters in your query are undefined: %(parameters)s." - ], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" - ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "%(rows)d rows returned": [""], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "See query details": [""], + "was created": ["foi criado"], + "Query in a new tab": ["Query numa nova aba"], + "The query returned no data": [""], + "Fetch data preview": ["Obter pré-visualização de dados"], + "Stop": ["Parar"], + "Run": [""], + "Stop running (Ctrl + x)": [""], + "Stop running (Ctrl + e)": [""], + "Run query (Ctrl + Return)": [""], + "Save": ["Salvar"], + "An error occurred saving dataset": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "" + "Save or Overwrite Dataset": [""], + "Back": [""], + "Overwrite existing": [""], + "Existing dataset": [""], + "Are you sure you want to overwrite this dataset?": [""], + "Undefined": ["Indefinido"], + "Save as": ["Gravar como"], + "Cancel": ["Cancelar"], + "Update": [""], + "Label for your query": ["Rótulo para a sua query"], + "Write a description for your query": [ + "Escreva uma descrição para sua consulta" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "" + "Submit": [""], + "Schedule": [""], + "There was an error with your request": [""], + "Please save the query to enable sharing": [""], + "Copy query link to your clipboard": [ + "Copiar query de partição para a área de transferência" ], - "The pattern of timestamp format. For strings use ": [""], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "" + "Save the query to enable this feature": [""], + "Copy link": [""], + "No stored results found, you need to re-run your query": [""], + "Preview: `%s`": ["Pré-visualização para %s"], + "Schedule the query periodically": [""], + "You must run the query successfully first": [""], + "Autocomplete": [""], + "CREATE TABLE AS": ["Permitir CREATE TABLE AS"], + "CREATE VIEW AS": ["Permitir CREATE TABLE AS"], + "Estimate the cost before running a query": [""], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Enter a new title for the tab": ["Insira um novo título para a aba"], + "Close tab": ["fechar aba"], + "Rename tab": ["renomear aba"], + "Expand tool bar": ["expandir barra de ferramentas"], + "Hide tool bar": ["ocultar barra de ferramentas"], + "Close all other tabs": [""], + "Duplicate tab": [""], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "Ocorreu um erro ao carregar os metadados da tabela" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "" + "Copy partition query to clipboard": [ + "Copiar query de partição para a área de transferência" ], - "The port is closed.": [""], - "The port number is invalid.": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "" + "latest partition:": ["última partição:"], + "Keys for table": ["Chaves para tabela"], + "View keys & indexes (%s)": ["Ver chaves e índices (%s)"], + "Original table column order": ["Ordenação original das colunas"], + "Sort columns alphabetically": ["Ordenar colunas por ordem alfabética"], + "Copy SELECT statement to the clipboard": [ + "Copiar a instrução SELECT para a área de transferência" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": ["Não foi possível carregar a query"], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Show CREATE VIEW statement": [""], + "CREATE VIEW statement": [""], + "Remove table preview": ["Remover pré-visualização de tabela"], + "Assign a set of parameters as": [""], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "syntax.": [""], + "Edit template parameters": ["Editar propriedades da visualização"], + "Invalid JSON": [""], + "%s%s": [""], + "Control": [""], + "Click to see difference": ["Clique para forçar atualização"], + "Altered": [""], + "Chart changes": ["Modificado pela última vez"], + "Loaded data cached": ["Dados carregados em cache"], + "Loaded from cache": ["Carregado da cache"], + "Click to force-refresh": ["Clique para forçar atualização"], + "Cached": [""], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The query has a syntax error.": [""], - "The query returned no data": [""], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" + "An error occurred while loading the SQL": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "" + "Sorry, an error occurred": [""], + "Updating chart was stopped": ["A atualização do gráfico parou"], + "An error occurred while rendering the visualization: %s": [ + "Ocorreu um erro ao renderizar a visualização: %s" ], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Network error.": ["Erro de rede."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The rich tooltip shows a list of all series for that point in time": [ + "You can also just click on the chart to apply cross-filter.": [""], + "You can't apply cross-filter on this data point.": [""], + "Remove cross-filter": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": [""], + "Failed to load chart data.": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The schema was deleted or renamed in the database.": [""], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Drill to detail: %s": [""], + "Formatting": [""], + "Formatted value": [""], + "No rows were returned for this dataset": [""], + "Copy": [""], + "Copy to clipboard": ["Copiar para área de transferência"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" + ], + "every": [""], + "every month": ["mês"], + "every day of the month": ["Código de 3 letras do país"], + "day of the month": [""], + "every day of the week": [""], + "day of the week": [""], + "every hour": [""], + "minute": ["minuto"], + "reboot": [""], + "Every": [""], + "in": ["Mín"], + "on": [""], + "and": [""], + "at": [""], + ":": [""], + "Invalid cron expression": [""], + "Clear": [""], + "Sunday": [""], + "Monday": [""], + "Tuesday": [""], + "Wednesday": [""], + "Thursday": [""], + "Friday": [""], + "Saturday": [""], + "January": [""], + "February": [""], + "March": ["Pesquisa"], + "April": [""], + "May": ["dia"], + "June": [""], + "July": [""], + "August": [""], + "September": [""], + "October": [""], + "November": [""], + "December": [""], + "SUN": [""], + "MON": [""], + "TUE": [""], + "WED": [""], + "THU": [""], + "FRI": [""], + "SAT": [""], + "JAN": [""], + "FEB": [""], + "MAR": [""], + "APR": [""], + "MAY": [""], + "JUN": [""], + "JUL": ["URL"], + "AUG": [""], + "SEP": [""], + "OCT": [""], + "NOV": [""], + "DEC": [""], + "Select database or type to search databases": [""], + "Force refresh schema list": ["Forçar atualização de dados"], + "Select schema or type to search schemas": [""], + "No compatible schema found": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "dataset": [""], + "Successfully changed dataset!": [""], + "Connection": ["Conexão de teste"], + "Proceed": [""], + "Warning!": ["Mensagem de Aviso"], + "Search / Filter": ["Pesquisa / Filtro"], + "STRING": [""], + "BOOLEAN": [""], + "Physical (table or view)": [""], + "Virtual (SQL)": [""], + "The pattern of timestamp format. For strings use ": [""], + "Python datetime string pattern": [""], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "A tabela foi criada. Como parte deste processo de configuração de duas fases, deve agora clicar no botão Editar, na nova tabela, para configurá-lo." + "Certified By": [""], + "Person or group that has certified this metric": [""], + "Certification details": [""], + "Details of the certification": [""], + "Is dimension": [""], + "Select owners": [""], + "Modified columns: %s": [""], + "Removed columns: %s": [""], + "New columns added: %s": [""], + "Metadata has been synced": [""], + "An error has occurred": [""], + "Column name [%s] is duplicated": [""], + "Metric name [%s] is duplicated": [""], + "Calculated column [%s] requires an expression": [""], + "Invalid currency code in saved metrics": [""], + "Basic": [""], + "Default URL": ["URL da Base de Dados"], + "Default URL to redirect to when accessing from the dataset list page": [ + "" ], - "The table was deleted or renamed in the database.": [""], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "A coluna de tempo para a visualização. Note que é possível definir uma expressão arbitrária que resolve uma coluna DATATEMPO na tabela ou. Observe também que o filtro em baixo é aplicado sobre esta coluna ou expressão" + "Autocomplete filters": [""], + "Whether to populate autocomplete filters options": [ + "Incluir um filtro temporal" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "O tempo de granularidade para a visualização. Observe que você pode digitar e usar linguagem natural simples, em inglês, como `10 seconds`, `1 day` ou `56 weeks`" + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "A granularidade temporal para a visualização. Aplica uma transformação de data para alterar a coluna de tempo e define uma nova granularidade temporal. As opções são definidas por base de dados no código-fonte do Superset." + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [ - "O tipo de visualização a ser exibida" + "": [""], + "": [""], + "Click the lock to make changes.": [""], + "Click the lock to prevent further changes.": [""], + "virtual": [""], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "" ], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [ - "O utilizador parece ter sido eliminado" + "Physical": [""], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "" ], - "The user/password combination is not valid (Incorrect password for user).": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The username \"%(username)s\" does not exist.": [""], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "There are associated alerts or reports": [""], - "There are associated alerts or reports: %s,": [""], - "There are no components added to this tab": [""], - "There are no databases available": [""], - "There are no filters in this dashboard.": [ - "Desculpe, houve um erro ao gravar este dashbard: " + "Metric currency": [""], + "Select or type currency symbol": [""], + "Optional warning about use of this metric": [""], + "Be careful.": [""], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "" ], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "Sync columns from source": [""], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "There is no chart definition associated with this component, could it have been deleted?": [ + "": [""], + "Settings": [""], + "The dataset has been saved": [ + "Esta origem de dados parece ter sido excluída" + ], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Are you sure you want to save and apply changes?": [""], + "Confirm save": [""], + "OK": [""], + "Edit Dataset ": ["Editar Base de Dados"], + "Use legacy datasource editor": [""], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "There was an error fetching your recent activity:": [""], - "There was an error loading the tables": [""], - "There was an error with your request": [""], - "There was an issue deleting %s: %s": [""], - "There was an issue deleting the selected %s: %s": [""], - "There was an issue deleting the selected annotations: %s": [""], - "There was an issue deleting the selected charts: %s": [""], - "There was an issue deleting the selected dashboards: ": [ - "Desculpe, houve um erro ao gravar este dashbard: " + "DELETE": [""], + "delete": ["Eliminar"], + "Type \"%s\" to confirm": [""], + "Click to edit": ["clique para editar o título"], + "You don't have the rights to alter this title.": [ + "Não tem direitos para alterar este título." ], - "There was an issue deleting the selected datasets: %s": [""], - "There was an issue deleting the selected layers: %s": [""], - "There was an issue deleting the selected queries: %s": [""], - "There was an issue deleting the selected templates: %s": [""], - "There was an issue deleting: %s": [""], - "There was an issue favoriting this dashboard.": [ - "Desculpe, houve um erro ao gravar este dashbard: " + "No databases match your search": [""], + "There are no databases available": [""], + "Manage your databases": [""], + "Unexpected error": [""], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": ["Erro"], + "See more": [""], + "Details": [""], + "Did you mean:": [""], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": [""], + "Click to favorite/unfavorite": ["Clique para tornar favorito"], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "" + ], + "OVERWRITE": [""], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["Substitua a visualização %s"], + "Import": ["Importar"], + "Import %s": ["Importar"], + "Last Updated %s": [""], + "+ %s more": [""], + "%s Selected": ["Executar a query selecionada"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "%s-%s of %s": [""], + "End date": [""], + "Type a value": [""], + "Select or type a value": [""], + "Menu actions trigger": [""], + "Select ...": ["Selecione ..."], + "Reset": [""], + "Invert current page": [""], + "Clear all data": [""], + "Expand row": [""], + "Collapse row": [""], + "Click to cancel sorting": [""], + "List updated": [""], + "There was an error loading the tables": [""], + "See table schema": ["Selecione um esquema (%s)"], + "Select table or type to search tables": [""], + "Force refresh table list": ["Forçar atualização de dados"], + "Timezone selector": [""], + "Failed to save cross-filter scoping": [""], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "" ], + "Can not move top level tab into nested tabs": [""], + "This chart has been moved to a different filter scope.": [""], "There was an issue fetching the favorite status of this dashboard.": [ "" ], - "There was an issue previewing the selected query %s": [""], - "There was an issue previewing the selected query. %s": [""], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "Há um loop no gráfico Sankey, por favor, forneça uma ligação correta. Aqui está a conexão defeituosa: {}" + "There was an issue favoriting this dashboard.": [ + "Desculpe, houve um erro ao gravar este dashbard: " ], - "These are the tables this filter will be applied to.": [""], - "These filters apply to the values available in the dropdowns": [""], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Os parâmetros são gerados dinamicamente ao clicar no botão Guardar ou Substituir na vista de exibição. Este objeto JSON é exposto aqui para referência e para utilizadores avançados que desejam alterar parâmetros específicos." + "You do not have permissions to edit this dashboard.": [ + "Não tem permissão para aceder à origem de dados: %(name)s." ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Este objeto JSON é gerado dinamicamente ao clicar no botão salvar ou substituir na exibição do painel. É exposto aqui para referência e para usuários avançados que desejam alterar parâmetros específicos." + "This dashboard was saved successfully.": [ + "Dashboard gravado com sucesso." ], - "This action will permanently delete %s.": [""], - "This action will permanently delete the layer.": [""], - "This action will permanently delete the saved query.": [""], - "This action will permanently delete the template.": [""], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "" + "Sorry, an unknown error occurred": [""], + "You do not have permission to edit this dashboard": [ + "Não tem acesso a esta origem de dados" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "This chart has been moved to a different filter scope.": [""], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ - "" + "Could not fetch all saved charts": [ + "Não foi possível ligar ao servidor" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "" + "Sorry there was an error fetching saved charts: ": [ + "Desculpe, houve um erro ao gravar este dashbard: " ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "You have unsaved changes.": ["Existem alterações por gravar."], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Create a new chart": ["Crie uma nova visualização"], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Delete this container and save to remove this message.": [""], + "Refresh frequency": [""], + "Are you sure you want to proceed?": [""], + "Save for this session": [""], + "You must pick a name for the new dashboard": [ + "Escolha um nome para o novo dashboard" + ], + "Overwrite Dashboard [%s]": ["Substituir Dashboard [%s]"], + "Save as:": ["Gravar como:"], + "[dashboard name]": ["[Nome do dashboard]"], + "also copy (duplicate) charts": [""], + "recent": [""], + "Create new chart": ["Crie uma nova visualização"], + "Filter your charts": ["Controlo de filtro"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Added": [""], + "Unknown type": [""], + "Dataset": ["Base de dados"], + "Superset chart": ["Explorar gráfico"], + "Check out this chart in dashboard:": ["Verificar dashboard: %s"], + "Layout elements": [""], + "Load a CSS template": ["Carregue um modelo CSS"], + "Collapse tab content": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "This dashboard is published. Click to make it a draft.": [""], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Enable embedding": [""], + "Embed": [""], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "Your dashboard is too large. Please reduce its size before saving it.": [ "" ], - "This dashboard was saved successfully.": [ - "Dashboard gravado com sucesso." + "Redo the action": [""], + "An error occurred while fetching available CSS templates": [ + "Ocorreu um erro ao carregar os metadados da tabela" ], - "This database is managed externally, and can't be edited in Superset": [ - "" + "Check out this dashboard: ": ["Verificar dashboard: %s"], + "Refresh dashboard": ["Sem dashboards"], + "Exit fullscreen": [""], + "Enter fullscreen": [""], + "Edit properties": ["Editar propriedades da visualização"], + "Edit CSS": ["Editar Visualização"], + "Download": [""], + "Download as Image": [""], + "Share": [""], + "Share permalink by email": [""], + "Manage email report": [""], + "Set filter mapping": [""], + "Set auto-refresh interval": ["Intervalo de atualização"], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Are you sure you intend to overwrite the following values?": [""], + "Apply": [""], + "A valid color scheme is required": [""], + "The dashboard has been saved": ["Dashboard gravado com sucesso."], + "Access": ["Não há acesso!"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Proprietários é uma lista de utilizadores que podem alterar o dashboard." ], - "This database table does not contain any data. Please select a different table.": [ + "Colors": ["Cor"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [ - "Esta opção define o elemento a ser desenhado no gráfico" + "URL slug": [""], + "A readable URL for your dashboard": [ + "Obter um URL legível para o seu dashboard" ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Este campo atua como uma vista do Superset, o que significa que o Superset vai correr uma query desta string como uma subquery." + "Certification": [""], + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "This dashboard is published. Click to make it a draft.": [""], + "Draft": [""], + "Annotation layers are still loading.": [ + "Camadas de anotação para sobreposição na visualização" + ], + "One ore more annotation layers failed loading.": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Este objeto JSON descreve o posicionamento das visualizações no dashboard. É gerado dinamicamente quando se ajusta a dimensão e posicionamento de uma visualização utilizando o drag & drop na vista de dashboard" + "Cached %s": [""], + "Fetched %s": [""], + "Query %s: %s": [""], + "Force refresh": ["Forçar atualização de dados"], + "View query": ["partilhar query"], + "Download as image": [""], + "Something went wrong.": [""], + "Search...": ["Pesquisa"], + "No filter is selected.": [""], + "Editing 1 filter:": [""], + "Batch editing %d filters:": [""], + "Configure filter scopes": [""], + "There are no filters in this dashboard.": [ + "Desculpe, houve um erro ao gravar este dashbard: " ], + "Expand all": [""], + "Collapse all": [""], "This markdown component has an error.": [""], "This markdown component has an error. Please revert your recent changes.": [ "" ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ - "" - ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Esta seção contém opções que permitem o pós-processamento analítico avançado de resultados da query" - ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Empty row": [""], + "You can": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "edit mode": [""], + "Delete dashboard tab?": ["Por favor insira um nome para o dashboard"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "undo": [""], + "button (cmd + z) until you save your changes.": [""], + "CANCEL": [""], + "Divider": [""], + "Header": ["Subtítulo"], + "Tabs": [""], + "background": [""], + "Preview": ["Pré-visualização para %s"], + "Sorry, something went wrong. Try again later.": [""], + "Unknown value": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type is not supported.": [ - "Escolha um tipo de visualização" + "Clear all": [""], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": [""], - "Time": ["Tempo"], - "Time Comparison": ["Coluna de tempo"], - "Time Range": ["Granularidade Temporal"], - "Time Series - Bar Chart": ["Série Temporal - Gráfico de barras"], - "Time Series - Line Chart": ["Série Temporal - Gráfico de linhas"], - "Time Series - Nightingale Rose Chart": [ - "Série Temporal - Gráfico de linhas" + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "Time Series - Paired t-test": ["Série temporal - teste emparelhado T"], - "Time Series - Percent Change": ["Série Temporal - Variação Percentual"], - "Time Series - Period Pivot": ["Série temporal - teste emparelhado T"], - "Time Series - Stacked": ["Série Temporal - Barras Sobrepostas"], - "Time Shift": ["Mudança de hora"], - "Time Table View": ["Visualização da tabela de tempo"], + "All charts": ["Gráfico de bala"], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "Cannot load filter": [""], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ + "" + ], + "Scope": [""], + "(Removed)": [""], + "Undo?": [""], + "Add filters and dividers": [""], + "Cyclic dependency detected": [""], + "No compatible columns found": [""], + "No compatible datasets found": [""], + "(deleted or invalid type)": [""], + "Limit type": [""], + "Add filter": ["Adicionar filtro"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ + "" + ], + "Values dependent on": [""], + "Scoping": [""], + "Filter Configuration": ["Controlo de filtro"], + "Time range": ["Granularidade Temporal"], "Time column": ["Coluna de tempo"], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], + "Time grain": ["Granularidade Temporal"], + "Group by": ["Agrupar por"], "Time column to apply dependent temporal filter to": [""], "Time column to apply time range to": [""], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Name is required": [""], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "Time grain": ["Granularidade Temporal"], - "Time grain missing": ["Granularidade Temporal"], - "Time granularity": ["Granularidade temporal"], - "Time in seconds": ["10 segundos"], - "Time range": ["Granularidade Temporal"], - "Time related form attributes": [ - "Atributos de formulário relacionados ao tempo" - ], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Sort Metric": ["Mostrar Métrica"], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "Single value type": [""], + "Exact": [""], + "Filter has default value": [""], + "Default Value": ["Latitude padrão"], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": [""], + "Restore Filter": ["Filtros de resultados"], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ "" ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Default value must be set when \"Filter value is required\" is checked": [ "" ], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Apply to all panels": [""], + "Apply to specific panels": [""], + "Only selected panels will be affected by this filter": [""], + "All panels with this column will be affected by this filter": [""], + "All panels": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Keep editing": [""], + "Yes, cancel": [""], + "Are you sure you want to cancel?": [""], + "Error loading chart datasources. Filters may not work correctly.": [""], + "Transparent": [""], + "All filters": ["Filtros"], + "Medium": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "Time-series Table": ["Tabela de séries temporais"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Equal to (=)": [""], + "Not equal to (≠)": [""], + "Less than (<)": [""], + "Less or equal (<=)": [""], + "Greater or equal (>=)": [""], + "Like": [""], + "Like (case insensitive)": [""], + "Is not null": [""], + "Is null": [""], + "Is true": [""], + "Is false": [""], + "Time granularity": ["Granularidade temporal"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "Timeout error": [""], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [ - "Diferença do fuso horário (em horas) para esta fonte de dados" + "One or many metrics to display": ["Uma ou várias métricas para exibir"], + "Fixed color": ["Selecione uma cor"], + "Right axis metric": ["Metric do Eixo Direito"], + "Choose a metric for right axis": [ + "Escolha uma métrica para o eixo direito" ], - "Timezone selector": [""], - "Title": ["Título"], - "Title or Slug": [""], - "To filter on a metric, use Custom SQL tab.": [""], - "To get a readable URL for your dashboard": [ - "Obter um URL legível para o seu dashboard" + "Linear color scheme": ["Esquema de cores lineares"], + "Color metric": ["Métrica de cor"], + "One or many controls to pivot as columns": [ + "Um ou vários controles para pivotar como colunas" ], - "Tooltip": [""], - "Top left": [""], - "Top right": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": [""], - "Totals": [""], - "Transformable": [""], - "Transparent": [""], - "Transpose pivot": [""], - "Tree layout": [""], - "Treemap": ["Treemap"], - "Trend": [""], - "Triangle": [""], - "Trigger Alert If...": [""], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "" + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "A granularidade temporal para a visualização. Aplica uma transformação de data para alterar a coluna de tempo e define uma nova granularidade temporal. As opções são definidas por base de dados no código-fonte do Superset." ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": [""], - "Type": ["Tipo"], - "Type \"%s\" to confirm": [""], - "Type a value": [""], - "Type a value here": [""], - "Type is required": [""], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["Selecionar [%s]"], - "URL": ["URL"], - "URL Parameters": ["Parâmetros"], - "URL slug": [""], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "" + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Define o agrupamento de entidades. Cada série corresponde a uma cor específica no gráfico e tem uma alternância de legenda" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [""], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Metric assigned to the [X] axis": ["Métrica atribuída ao eixo [X]"], + "Metric assigned to the [Y] axis": ["Metrica atribuída ao eixo [Y]"], + "Bubble size": ["Tamanho da bolha"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "Color scheme": ["Esquema de cores"], + "Chart [%s] has been overwritten": [""], + "Dashboard [%s] just got created and chart [%s] was added to it": [""], + "Chart [%s] was added to dashboard [%s]": [""], + "Use this section if you want a query that aggregates": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Continue": [""], + "Clear form": [""], + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], + "Customize": [""], + "Generating link, please wait..": [""], + "Chart height": [""], + "Save (Overwrite)": ["Queries Gravadas"], + "Chart name": ["Tipo de gráfico"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["Adicionar ao novo dashboard"], + "Save & go to dashboard": ["Gravar e ir para o dashboard"], + "Formatted date": [""], + "Column Formatting": [""], + "Collapse data panel": [""], + "Expand data panel": [""], + "No samples were returned for this dataset": [""], + "Search Metrics & Columns": ["Colunas das séries temporais"], + " to edit or add columns and metrics.": [""], + "Showing %s of %s": [""], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Not available": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "" - ], - "Undefined": ["Indefinido"], - "Undefined window for rolling operation": [""], - "Undo?": [""], - "Unexpected error": [""], - "Unexpected error occurred, please check your logs for details": [""], - "Unexpected error: ": [""], - "Unexpected time range: %s": [""], - "Unknown": [""], - "Unknown MySQL server host \"%(hostname)s\".": [""], - "Unknown Presto Error": [""], - "Unknown Status": [""], - "Unknown column used in orderby: %(col)s": [""], - "Unknown error": [""], - "Unknown input format": [""], - "Unknown type": [""], - "Unknown value": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [""], - "Unsafe template value for key %(key)s: %(value_type)s": [""], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [""], - "Unsupported return value for method %(name)s": [""], - "Unsupported template value for key %(key)s": [""], - "Unsupported time grain: %(time_grain)s": [""], - "Untitled Query": ["Query sem título"], - "Update": [""], - "Updating chart was stopped": ["A atualização do gráfico parou"], - "Upload": [""], - "Upload CSV": [""], - "Upload Credentials": [""], - "Upload Enabled": [""], - "Upload Excel file": [""], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file": [""], - "Upload columnar file to database": [""], - "Usage": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use Area Proportions": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" - ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [""], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "" - ], - "Use the edit button to change this field": [""], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [""], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "" - ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "User": ["Utilizador"], - "User Roles": ["Cargo do Utilizador"], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [""], - "User query": ["partilhar query"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "Controls labeled ": [""], + "Control labeled ": [""], + "You do not have permission to edit this chart": [ + "Não tem permissão para aprovar este pedido" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "" + "Person or group that has certified this chart.": [""], + "Configuration": ["Contribuição"], + "A list of users who can alter the chart. Searchable by name or username.": [ + "Proprietários é uma lista de utilizadores que podem alterar o dashboard." ], - "Value": ["Mostrar valores das barras"], - "Value Domain": [""], - "Value bounds": [""], - "Values are dependent on other filters": [""], - "Values dependent on": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ + "Limit reached": [""], + "Invalid lat/long configuration.": [""], + "Reverse lat/long ": [""], + "Longitude & Latitude columns": [""], + "Delimited long & lat single column": [""], + "Multiple formats accepted, look the geopy.points Python library for more details": [ "" ], - "Vehicle Types": [""], - "Verbose Name": ["Nome Detalhado"], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View All »": [""], - "View in SQL Lab": ["Expor no SQL Lab"], - "View keys & indexes (%s)": ["Ver chaves e índices (%s)"], - "View query": ["partilhar query"], - "Viewed": [""], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset query cannot be empty": [""], - "Virtual dataset query cannot consist of multiple statements": [""], - "Virtual dataset query must be read-only": [""], - "Visual Tweaks": [""], - "Visualization Type": ["Tipo de Visualização"], - "Visualization type": ["Tipo de Visualização"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Geohash": [""], + "textarea": ["textarea"], + "in modal": ["em modal"], + "Sorry, An error occurred": [""], + "Open in SQL Lab": ["Expor no SQL Lab"], + "Failed to verify select options: %s": [""], + "Select the Annotation Layer you would like to use.": [""], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Bad formula.": [""], + "This section allows you to configure how to use the slice\n to generate annotations.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "This column must contain date/time information.": [""], + "Pick a title for you annotation.": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Display configuration": [""], + "Configure your how you overlay is displayed here.": [""], + "Style": ["Estilo do mapa"], + "Solid": [""], + "Long dashed": [""], + "Color": ["Cor"], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hide Line": [""], + "Configure the basics of your Annotation Layer.": [""], + "Mandatory": [""], + "Whether to always show the annotation label": [""], + "Choose the source of your annotations": [""], + "Remove": [""], + "Remove item": [""], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "dashboard": ["Dashboard"], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Viz is missing a datasource": ["Viz está sem origem de dados"], - "WED": [""], - "Want to add a new database?": [""], - "Warning Message": ["Mensagem de Aviso"], - "Warning!": ["Mensagem de Aviso"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Edit formatter": [""], + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": [""], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": [""], + "Right value": [""], + "Target value": [""], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "Isoband": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "View in SQL Lab": ["Expor no SQL Lab"], + "Query preview": ["Pré-visualização de dados"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "RANGE TYPE": [""], + "Actual time range": [""], + "APPLY": [""], + "Edit time range": [""], + "Configure Advanced Time Range ": [""], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "End date excluded from time range": [""], + "Configure Time Range: Previous...": [""], + "Configure Time Range: Last...": [""], + "Configure custom time range": [""], + "Relative quantity": [""], + "Anchor to": [""], + "NOW": [""], + "Date/Time": ["Formato da datahora"], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": [""], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": ["Pré-visualização para %s"], + "Custom": [""], + "last day": [""], + "last quarter": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Now": [""], + "Midnight": [""], + "Saved": ["Salvar"], + "%s column(s)": ["Lista de Colunas"], + "No temporal columns found": [""], + "No saved expressions found": [""], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ "" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ + "%s option(s)": ["Opções"], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "To filter on a metric, use Custom SQL tab.": [""], + "%s operator(s)": ["Selecione operador"], + "Comparator option": [""], + "Type a value here": [""], + "Filter value (case sensitive)": [""], + "choose WHERE or HAVING...": [""], + "Add metric": ["Adicionar Métrica"], + "Select aggregate options": [""], + "%s aggregates(s)": [""], + "%s saved metric(s)": [""], + "Saved metric": ["Selecione métrica"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": ["Coluna"], + "aggregate": ["Soma Agregada"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Sparkline": [""], + "Period average": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["Largura"], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "Web": [""], - "Wednesday": [""], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "What should be shown on the label?": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Number of periods to ratio against": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "When a secondary metric is provided, a linear color scale is used.": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Ao permitir a opção CREATE TABLE AS no SQL Lab, esta opção força a tabela a ser criada neste esquema" + "Optional d3 number format string": [""], + "Number format string": [""], + "Optional d3 date format string": [""], + "Date format string": [""], + "Currently rendered: %s": [""], + "Recommended tags": [""], + "Examples": [""], + "This visualization type is not supported.": [ + "Escolha um tipo de visualização" ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Select a visualization type": ["Selecione um tipo de visualização"], + "No results found": ["Nenhum registo encontrado"], + "New chart": ["Mover gráfico"], + "Edit chart properties": ["Editar propriedades da visualização"], + "Export to original .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["Expor no SQL Lab"], + "Code": ["Código"], + "Pick your favorite markup language": [ + "Escolha a sua linguagem de marcação favorita" + ], + "Put your code here": ["Insira o seu código aqui"], + "Extra parameters for use in jinja templated queries": [""], + "My beautiful colors": [""], + "< (Smaller than)": [""], + "> (Larger than)": [""], + "<= (Smaller or equal)": [""], + ">= (Larger or equal)": [""], + "== (Is equal)": [""], + "!= (Is not equal)": [""], + "Not null": [""], + "60 days": [""], + "90 days": [""], + "Add notification method": ["Metadados adicionais"], + "Add delivery method": [""], + "Add": [""], + "Active": ["Acção"], + "SQL Query": ["Gravar query"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": [""], + "Timezone": [""], + "Schedule settings": [""], + "Working timeout": [""], + "Time in seconds": ["10 segundos"], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Ignore cache when generating report": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "report": ["Janela de exibição"], + "CRON Schedule": [""], + "Alert triggered, notification sent": [""], + "Alert running": [""], + "Nothing triggered": [""], + "Alert Triggered, In Grace Period": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [""], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["Camadas de anotação"], + "Description (this can be seen in the list)": [""], + "annotation": ["Anotações"], + "date": [""], + "Please confirm": [""], + "Are you sure you want to delete": [""], + "css_template": [""], + "css": [""], + "published": [""], + "draft": [""], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ "" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "When using 'Group By' you are limited to use a single metric": [ - "Utilizando 'Agrupar por' só é possível utilizar uma única métrica" + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "" ], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Se esta coluna está exposta na seção `Filtros` da vista de exploração." + "Asynchronous query execution": [""], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "" ], - "Whether to align background charts with both positive and negative values at 0": [ + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "Whether to align positive and negative values in cell bar chart at 0": [ + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ "" ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ + "Allow file uploads to database": [""], + "Schemas allowed for File upload": [""], + "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a time filter": ["Incluir um filtro temporal"], - "Whether to include the time granularity as defined in the time section": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Enter Primary Credentials": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Para se disponibilizar esta coluna como uma opção [Time Granularity], a coluna deve ser DATETIME ou DATETIME" + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "SSH Host": [""], + "e.g. 127.0.0.1": [""], + "SSH Port": [""], + "e.g. Analytics": [""], + "Private Key & Password": [""], + "SSH Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "for more information on how to structure your URI.": [""], + "database": ["Base de dados"], + "Please enter a SQLAlchemy URI to test": [ + "Por favor insira um nome para a visualização" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [ - "Incluir um filtro temporal" + "e.g. world_population": [""], + "Sorry there was an error fetching database information: %s": [ + "Desculpe, houve um erro ao gravar este dashbard: " ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Preencher a lista de filtros, na vista de exploração, com valores distintos carregados em tempo real a partir do backend" + "Or choose from a list of other databases we support:": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort descending or ascending": [ - "Ordenar de forma descendente ou ascendente" + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ + "" ], - "Whether to sort results by the selected metric in descending order.": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "Width": ["Largura"], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Working": [""], - "Working timeout": [""], - "World Map": ["Mapa Mundo"], - "Write a description for your query": [ - "Escreva uma descrição para sua consulta" + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "" ], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [""], - "Write dataframe index as a column.": [""], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": ["Eixo XX"], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort By": [""], - "X-axis": [""], - "XScale Interval": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": ["Eixo YY"], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": ["Formato do Eixo YY"], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort By": [""], - "Y-axis": [""], - "Y-axis bounds": [""], - "YScale Interval": [""], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Yes": [""], - "Yes, cancel": [""], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "QUERY DATA IN SQL LAB": [""], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ "" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Import database from file": [""], + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ "" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Host": [""], + "e.g. 5432": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Upload Credentials": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "" + ], + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Paste the shareable Google Sheet URL here": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "Duplicate": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "You can": [""], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Loading": [""], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ "" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Unable to load columns for the selected table. Please select a different table.": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "You do not have permission to edit this chart": [ - "Não tem permissão para aprovar este pedido" + "Usage": [""], + "Create chart with dataset": [""], + "chart": ["Mover gráfico"], + "No charts": ["Mover gráfico"], + "This dataset is not used to power any charts.": [""], + "Select a database table and create dataset": [""], + "dataset name": ["nome da origem de dados"], + "Unknown": [""], + "Edited": ["Editar"], + "Created": ["Criado em"], + "Viewed": [""], + "Favorite": ["Favoritos"], + "Mine": [""], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "You do not have permission to edit this dashboard": [ - "Não tem acesso a esta origem de dados" + "recents": [""], + "No recents yet": [""], + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "%(other)s saved queries will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "Não tem permissão para aceder à origem de dados: %(name)s." + "Recently created charts, dashboards, and saved queries will appear here": [ + "" ], - "You do not have permissions to edit this dashboard.": [ - "Não tem permissão para aceder à origem de dados: %(name)s." + "Recently edited charts, dashboards, and saved queries will appear here": [ + "" ], "You don't have any favorites yet!": [ "Não tem acesso a esta origem de dados" ], - "You don't have the rights to alter this title.": [ - "Não tem direitos para alterar este título." + "See all %(tableName)s": [""], + "Connect Google Sheet": [""], + "Upload columnar file to database": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ + "" ], - "You have no permission to approve this request": [ - "Não tem permissão para aprovar este pedido" + "Info": [""], + "Logout": ["Sair"], + "About": [""], + "Powered by Apache Superset": [""], + "Build": [""], + "Login": ["Login"], + "query": ["Query"], + "Deleted: %s": ["Eliminar"], + "There was an issue deleting %s: %s": [""], + "This action will permanently delete the saved query.": [""], + "Delete Query?": ["Executar a query selecionada"], + "Ran %s": [""], + "Next": [""], + "User query": ["partilhar query"], + "Executed query": ["Executar a query selecionada"], + "SQL Copied!": ["Copiado!"], + "Sorry, your browser does not support copying.": [ + "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" ], - "You have removed this filter.": [""], - "You have unsaved changes.": ["Existem alterações por gravar."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "We were unable to active or deactivate this report.": [""], + "Weekly Report for %s": [""], + "Edit email report": [""], + "Schedule a new email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Report Name": ["Nome do modelo"], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Set up an email report": [""], + "Email reports active": [""], + "Delete email report": [""], + "Schedule email report": [""], + "This action will permanently delete %s.": [""], + "rowlevelsecurity": [""], + "Rule added": [""], + "Add Rule": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "These are the datasets this filter will be applied to.": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "" ], - "You must pick a name for the new dashboard": [ - "Escolha um nome para o novo dashboard" + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "" ], - "You must run the query successfully first": [""], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Clause": [""], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ "" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ "" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": [""], + "User must select a value before applying the filter": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [ + "Ordenar de forma descendente ou ascendente" + ], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ "" ], - "Your query could not be saved": ["Não foi possível gravar a sua query"], - "Your query could not be scheduled": [ - "Não foi possível gravar a sua query" + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "Time column filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], + "reports": ["Janela de exibição"], + "alerts": [""], + "There was an issue deleting the selected %s: %s": [""], + "No %s yet": [""], + "Owner": ["Proprietário"], + "All": [""], + "Status": ["Estado"], + "An error occurred while fetching dataset datasource values: %s": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "Your query could not be updated": [ - "Não foi possível gravar a sua query" + "Alerts": [""], + "Reports": ["Janela de exibição"], + "Delete %s?": ["Eliminar"], + "Are you sure you want to delete the selected %s?": [""], + "There was an issue deleting the selected layers: %s": [""], + "Edit template": ["Carregue um modelo"], + "Delete template": ["Carregue um modelo"], + "No annotation layers yet": ["Camadas de anotação"], + "This action will permanently delete the layer.": [""], + "Delete Layer?": ["Tem a certeza que pretende eliminar tudo?"], + "Are you sure you want to delete the selected layers?": [""], + "There was an issue deleting the selected annotations: %s": [""], + "Annotation": ["Anotações"], + "No annotation yet": ["Camadas de anotação"], + "Back to all": [""], + "Are you sure you want to delete %s?": [""], + "Delete Annotation?": ["Anotações"], + "Are you sure you want to delete the selected annotations?": [""], + "Failed to load chart data": [""], + "Choose a dataset": ["Escolha uma origem de dados"], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "Your query was saved": ["A sua query foi gravada"], - "Your query was updated": ["A sua query foi gravada"], - "Zoom": [""], - "Zoom level of the map": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" - ], - "[Longitude] and [Latitude] must be set": [ - "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" + "There was an issue deleting the selected charts: %s": [""], + "An error occurred while fetching dashboards": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] O acesso à origem dos dados %(name)s foi concedido" + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "[asc]": [""], - "[copy]": [""], - "[dashboard name]": ["[Nome do dashboard]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "Certified": [""], + "Are you sure you want to delete the selected charts?": [""], + "There was an issue deleting the selected templates: %s": [""], + "This action will permanently delete the template.": [""], + "Delete Template?": ["Modelos CSS"], + "Are you sure you want to delete the selected templates?": [""], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [""], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": ["Soma Agregada"], - "alert": [""], - "alerts": [""], - "all": [""], - "also copy (duplicate) charts": [""], - "ancestor": [""], - "and": [""], - "annotation": ["Anotações"], - "annotation_layer": ["Camadas de anotação"], - "asfreq": [""], - "at": [""], - "auto": [""], - "auto (Smooth)": [""], - "background": [""], - "basis": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": ["parafuso"], - "boolean type icon": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "cardinal": [""], - "chart": ["Mover gráfico"], - "choose WHERE or HAVING...": [""], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["Coluna"], - "connecting to %(dbModelName)s.": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "dashboard": ["Dashboard"], - "database": ["Base de dados"], - "dataset": [""], - "dataset name": ["nome da origem de dados"], - "date": [""], - "day": ["dia"], - "day of the month": [""], - "day of the week": [""], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deckGL": [""], - "delete": ["Eliminar"], - "descendant": [""], - "description": ["descrição"], - "dialect+driver://username:password@host:port/database": [""], - "draft": [""], - "dttm": ["dttm"], - "e.g. ********": [""], - "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], - "e.g. Analytics": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": [""], - "edit mode": [""], - "error dark": [""], - "every": [""], - "every day of the month": ["Código de 3 letras do país"], - "every day of the week": [""], - "every hour": [""], - "every month": ["mês"], - "expand": [""], - "fetching": [""], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "There was an issue deleting the selected dashboards: ": [ + "Desculpe, houve um erro ao gravar este dashbard: " + ], + "An error occurred while fetching dashboard owner values: %s": [ + "Ocorreu um erro ao criar a origem dos dados" + ], + "Are you sure you want to delete the selected dashboards?": [""], + "An error occurred while fetching database related data: %s": [ + "Ocorreu um erro ao carregar os metadados da tabela" + ], + "Upload CSV": [""], + "Upload columnar file": [""], + "Upload Excel file": [""], + "AQE": [""], + "Allow data manipulation language": [""], + "DML": [""], + "CSV upload": [""], + "Delete database": ["Selecione uma base de dados"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ "" ], - "flat": [""], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "hour": ["hora"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "Delete Database?": ["Selecione uma base de dados"], + "An error occurred while fetching dataset related data": [ + "Ocorreu um erro ao carregar os metadados da tabela" + ], + "An error occurred while fetching dataset related data: %s": [ + "Ocorreu um erro ao carregar os metadados da tabela" + ], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [ + "Ocorreu um erro ao criar a origem dos dados" + ], + "An error occurred while fetching schema values: %s": [ + "Ocorreu um erro ao renderizar a visualização: %s" + ], + "An error occurred while fetching dataset owner values: %s": [ + "Ocorreu um erro ao criar a origem dos dados" + ], + "There was an issue deleting the selected datasets: %s": [""], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ "" ], - "in": ["Mín"], - "in modal": ["em modal"], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": ["agregado"], - "json isn't valid": ["json não é válido"], - "key a-z": [""], - "key z-a": [""], - "last day": [""], - "last quarter": [""], - "latest partition:": ["última partição:"], - "less than {min} {name}": [""], + "Delete Dataset?": ["Tem a certeza que pretende eliminar tudo?"], + "Are you sure you want to delete the selected datasets?": [""], + "0 Selected": ["Executar a query selecionada"], + "%s Selected (Virtual)": [""], + "%s Selected (Physical)": [""], + "%s Selected (%s Physical, %s Virtual)": [""], "log": [""], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "" + "Scheduled at (UTC)": [""], + "Start at (UTC)": [""], + "Thumbnails": [""], + "Recents": [""], + "There was an issue previewing the selected query. %s": [""], + "TABLES": [""], + "Open query in SQL Lab": ["Expor no SQL Lab"], + "An error occurred while fetching database values: %s": [ + "Ocorreu um erro ao criar a origem dos dados" ], - "mean": [""], - "median": [""], - "minute": ["minuto"], - "month": ["mês"], - "more than {max} {name}": [""], - "must have a value": [""], - "no SQL validator is configured": [""], - "no SQL validator is configured for {}": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "on": [""], - "or use existing ones from the panel on the right": [""], - "overall": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "Search by query text": [""], + "Are you sure you want to delete the selected rules?": [""], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "" ], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": [""], - "query": ["Query"], - "random": [""], - "reboot": [""], - "recent": [""], - "recents": [""], - "report": ["Janela de exibição"], - "reports": ["Janela de exibição"], - "restore zoom": [""], - "rowlevelsecurity": [""], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "square": [""], - "stack": [""], - "staggered": [""], - "std": [""], - "step-before": [""], - "stopped": [""], - "string type icon": [""], - "sum": [""], - "syntax.": [""], + "Query imported": [""], + "There was an issue previewing the selected query %s": [""], + "Link Copied!": ["Copiado!"], + "There was an issue deleting the selected queries: %s": [""], + "Edit query": ["Query vazia?"], + "Copy query URL": ["Query vazia?"], + "Delete query": ["Eliminar"], + "Are you sure you want to delete the selected queries?": [""], "tag": [""], - "temporal type icon": [""], - "textarea": ["textarea"], - "undo": [""], - "unknown type icon": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Are you sure you want to delete the selected tags?": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ "" ], - "var": [""], - "virtual": [""], - "was created": ["foi criado"], - "week": ["semana"], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["ano"], - "zoom area": [""] + "Invalid input": [""], + "Unexpected error: ": [""], + "(no description, click to see stack trace)": [""], + "Sorry, an unknown error occurred.": [""], + "Request timed out": [""], + "Issue 1000 - The dataset is too large to query.": [""], + "Issue 1001 - The database is under an unusual load.": [""], + "Please re-export your file and try importing again": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [""], + "There was an issue deleting: %s": [""], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Ligação predefinida, é possível incluir {{ metric }} ou outros valores provenientes dos controlos." + ], + "Time-series Table": ["Tabela de séries temporais"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/pt/LC_MESSAGES/messages.po b/superset/translations/pt/LC_MESSAGES/messages.po index 623233c405c0a..f8f1f2905b8d0 100644 --- a/superset/translations/pt/LC_MESSAGES/messages.po +++ b/superset/translations/pt/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2018-03-12 16:24+0000\n" "Last-Translator: Nuno Heli Beires \n" "Language: pt\n" @@ -28,20212 +28,20222 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " +#: superset/errors.py:101 +#, fuzzy +msgid "The datasource is too large to query." +msgstr "Origem de dados" + +#: superset/errors.py:102 +msgid "The database is under an unusual load." msgstr "" -#: superset/reports/notifications/email.py:89 -#, python-format +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "" + +#: superset/errors.py:104 msgid "" -"\n" -" Error: %(text)s\n" -" " +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 -msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "Dashboard" +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -#, fuzzy -msgid " a new one" -msgstr "Alterado em" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:112 +msgid "The port is closed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -#, fuzzy -msgid " to add calculated columns" -msgstr "Lista de Colunas" +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -#, fuzzy -msgid " to add metrics" -msgstr "Adicionar Métrica" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:121 +#, fuzzy +msgid "User doesn't have the proper permissions." +msgstr "Não tem direitos para alterar este título." + +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:127 +msgid "" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +#: superset/errors.py:137 +#, fuzzy +msgid "The object does not exist in the given database." +msgstr "Nome da tabela que existe na base de dados de origem" + +#: superset/errors.py:138 +msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" -msgstr[1] "" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "" -#: superset/views/core.py:385 -#, python-format +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "" + +#: superset/errors.py:141 msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -"Ao utilizador %(user)s foi concedido o cargo %(role)s que dá acesso ao " -"%(datasource)s" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" +#: superset/errors.py:145 +msgid "The port number is invalid." msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "Erro" +#: superset/errors.py:147 +#, fuzzy +msgid "The database was deleted." +msgstr "Esta origem de dados parece ter sido excluída" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "Broker Port" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 +#: superset/forms.py:72 #, python-format -msgid "%s Selected" -msgstr "Executar a query selecionada" +msgid "File size must be less than or equal to %(max_size)s bytes" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#: superset/jinja_context.py:344 #, python-format -msgid "%s Selected (%s Physical, %s Virtual)" +msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/jinja_context.py:355 #, python-format -msgid "%s Selected (Physical)" +msgid "Unsupported return value for method %(name)s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/jinja_context.py:371 #, python-format -msgid "%s Selected (Virtual)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/jinja_context.py:382 #, python-format -msgid "%s aggregates(s)" +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "Lista de Colunas" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#: superset/sql_lab.py:302 #, python-format -msgid "%s operator(s)" -msgstr "Selecione operador" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "Opções" -msgstr[1] "" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "Opções" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." +msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "Erro" -msgstr[1] "" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#: superset/sql_lab.py:488 #, python-format -msgid "%s saved metric(s)" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "%s - sem título" - -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/sql_lab.py:510 #, python-format -msgid "%s%s" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Viz está sem origem de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "Data de inicio não pode ser posterior à data de fim" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/viz.py:562 +msgid "Cached value not found" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Visualização da tabela de tempo" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" -msgstr "" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Selecione pelo menos uma métrica" -#: superset/reports/notifications/slack.py:82 -#, python-format +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "Utilizando 'Agrupar por' só é possível utilizar uma única métrica" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Calendário com Mapa de Calor" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Gráfico de bolhas" + +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Selecione métricas diferentes para o eixo esquerdo e direito" + +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Selecione uma métrica para x, y e tamanho" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Gráfico de bala" + +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Selecione uma métrica para visualizar" + +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Série Temporal - Gráfico de linhas" + +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" -msgstr "" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Série Temporal - Gráfico de barras" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Série temporal - teste emparelhado T" + +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Série Temporal - Variação Percentual" + +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Série Temporal - Barras Sobrepostas" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histograma" + +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Deve ser especificada uma coluna númerica" + +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Gráfico de barras" + +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Não pode haver sobreposição entre Séries e Desagregação" + +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Escolha pelo menos um campo para [Séries]" + +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Selecione exatamente 2 colunas [Origem e Alvo]" + +#: superset/viz.py:1421 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" +"Há um loop no gráfico Sankey, por favor, forneça uma ligação correta. " +"Aqui está a conexão defeituosa: {}" -#: superset/views/database/forms.py:164 -msgid "." -msgstr "" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Layout de Forças" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "Executar a query selecionada" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Mapa de País" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Mapa Mundo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "dia" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Coordenadas paralelas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Mapa de Calor" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "hora" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Gráfico de Horizonte" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" -msgstr "" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 minuto" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Deve ter uma coluna [Agrupar por] para ter 'count' como [Label]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "A escolha do [Rótulo] deve estar presente em [Agrupar por]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "A escolha de [Ponto de Raio] deve estar presente em [Agrupar por]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "semana" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "ano" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/db_engine_specs/base.py:102 -#, fuzzy -msgid "10 minute" -msgstr "1 minuto" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "semana" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/viz.py:2271 #, fuzzy -msgid "15 minute" -msgstr "1 minuto" +msgid "Deck.gl - Heatmap" +msgstr "Gráfico de bala" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 +#: superset/viz.py:2292 #, fuzzy -msgid "156 weeks" -msgstr "semana" +msgid "Deck.gl - Contour" +msgstr "Gráfico de bala" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Fluxo de eventos" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Série temporal - teste emparelhado T" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Série Temporal - Gráfico de linhas" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Diagrama de Partição" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 +#: superset/viz.py:2676 #, fuzzy -msgid "2 years" -msgstr "ano" +msgid "Please choose at least one groupby" +msgstr "Selecione pelo menos um campo \"Agrupar por\" " -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "Selecione uma camada de anotação" +msgstr[1] "Selecione uma camada de anotação" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "dia" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "Selecione uma camada de anotação" +msgstr[1] "Selecione uma camada de anotação" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +#, fuzzy +msgid "Is certified" +msgstr "foi criado" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 #, fuzzy -msgid "3 letter code of the country" -msgstr "Código de 3 letras do país" +msgid "Has created by" +msgstr "foi criado" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 #, fuzzy -msgid "3 years" -msgstr "ano" +msgid "Created by me" +msgstr "Criado em" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset/db_engine_specs/base.py:104 -#, fuzzy -msgid "30 minute" -msgstr "10 minutos" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "10 minutos" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." +msgstr "" -#: superset/db_engine_specs/base.py:99 -#, fuzzy -msgid "30 second" -msgstr "30 segundos" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 segundos" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/charts/schemas.py:1295 #, fuzzy -msgid "5 minute" -msgstr "5 minutos" +msgid "orderby column must be populated" +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 minutos" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "" -#: superset/db_engine_specs/base.py:98 -#, fuzzy -msgid "5 second" -msgstr "30 segundos" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 +#: superset/charts/data/api.py:236 #, fuzzy -msgid "5 seconds" -msgstr "30 segundos" +msgid "Request is not JSON" +msgstr "Requisição de Permissão" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 +#: superset/charts/data/api.py:369 #, fuzzy -msgid "52 weeks" -msgstr "semana" +msgid "Empty query result" +msgstr "Query vazia?" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "" +#: superset/commands/exceptions.py:119 +#, fuzzy +msgid "Some roles do not exist" +msgstr "Dashboards" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 +#: superset/commands/exceptions.py:127 #, fuzzy -msgid "6 hour" -msgstr "hora" +msgid "Datasource type is invalid" +msgstr "Origem de dados" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "" +#: superset/commands/exceptions.py:135 +#, fuzzy +msgid "Datasource does not exist" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "" +#: superset/commands/exceptions.py:142 +#, fuzzy +msgid "Query does not exist" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Camadas de anotação para sobreposição na visualização" + +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Camadas de anotação" + +#: superset/commands/annotation_layer/exceptions.py:45 #, fuzzy -msgid "7 days" -msgstr "dia" +msgid "Annotation layers could not be deleted." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "Camadas de anotação para sobreposição na visualização" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "Data de inicio não pode ser posterior à data de fim" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Anotações" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "Coluna de tempo" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -#, fuzzy -msgid "" -msgstr "Selecione métrica" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, python-format +msgid "There are associated alerts or reports: %(report_names)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -#, fuzzy -msgid "A Big Number" -msgstr "Número grande" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Dashboards" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Não foi possível carregar a query" + +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" msgstr "" -#: superset/databases/commands/exceptions.py:42 +#: superset/commands/chart/exceptions.py:131 #, fuzzy -msgid "A database with the same name already exists." -msgstr "Origem de dados %(name)s já existe" +msgid "You don't have access to this chart." +msgstr "Não tem permissão para aprovar este pedido" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" msgstr "" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Editar propriedades do dashboard" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "" +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "Visualização %(id)s não encontrada" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: 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 "" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "Não foi possível carregar a query" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "Proprietários é uma lista de utilizadores que podem alterar o dashboard." +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "Modelos CSS" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Uma métrica a utilizar para cor" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." -msgstr "" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Não foi possível gravar a sua query" -#: 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" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Editar propriedades do dashboard" + +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" msgstr "" -"Uma referência à configuração [Time], levando em consideração a " -"granularidade" -#: superset/reports/commands/exceptions.py:186 -#, fuzzy, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Origem de dados %(name)s já existe" +#: superset/commands/dashboard/exceptions.py:78 +#, fuzzy +msgid "You don't have access to this dashboard." +msgstr "Não tem permissão para aceder à origem de dados: %(name)s." -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/dashboard/embedded/exceptions.py:34 +#, fuzzy +msgid "You don't have access to this embedded dashboard config." +msgstr "Não tem permissão para aceder à origem de dados: %(name)s." + +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +#: superset/commands/database/exceptions.py:42 +#, fuzzy +msgid "A database with the same name already exists." +msgstr "Origem de dados %(name)s já existe" + +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" msgstr "" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset/reports/commands/exceptions.py:228 -#, fuzzy -msgid "A timeout occurred while executing the query." -msgstr "Ocorreu um erro ao criar a origem dos dados" - -#: superset/reports/commands/exceptions.py:238 -#, fuzzy -msgid "A timeout occurred while generating a csv." -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "" -#: superset/reports/commands/exceptions.py:243 -#, fuzzy -msgid "A timeout occurred while generating a dataframe." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "Não foi possível gravar a sua query" -#: superset/reports/commands/exceptions.py:233 -#, fuzzy -msgid "A timeout occurred while taking a screenshot." -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Selecione qualquer coluna para inspeção de metadados" + +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Não foi possível ligar ao servidor" + +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +#, fuzzy +msgid "Was unable to check your query" +msgstr "Rótulo para a sua query" + +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" msgstr "" -#: 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!" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Não foi possível ligar ao servidor" -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Solicitações de acesso" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "O acesso foi solicitado" +#: superset/commands/database/validate_sql.py:100 +#, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Acção" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Registo de Acções" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +#, fuzzy +msgid "SSH Tunnel could not be deleted." +msgstr "Não foi possível carregar a query" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Acção" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +#, fuzzy +msgid "SSH Tunnel not found." +msgstr "Modelos CSS" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Acção" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +#, fuzzy +msgid "SSH Tunnel parameters are invalid." +msgstr "Camadas de anotação para sobreposição na visualização" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 +#: superset/commands/database/ssh_tunnel/exceptions.py:42 #, fuzzy -msgid "Actual Values" -msgstr "Valor de filtro" +msgid "SSH Tunnel could not be updated." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -#, fuzzy -msgid "Actual value" -msgstr "Valor de filtro" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -#, fuzzy -msgid "Actual values" -msgstr "Valor de filtro" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +#: superset/commands/dataset/duplicate.py:60 #, fuzzy -msgid "Add Alert" -msgstr "Gráfico de Queijo" +msgid "The database was not found." +msgstr "Visualização %(id)s não encontrada" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Modelos CSS" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -#, fuzzy -msgid "Add CSS template" -msgstr "Modelos CSS" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Gráfico de Queijo" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Adicionar Coluna" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Adicionar Dashboard" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Adicionar Base de Dados" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Uma ou várias métricas para exibir" -#: superset/views/log/__init__.py:23 -msgid "Add Log" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Uma ou várias métricas para exibir" + +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Uma ou várias métricas para exibir" + +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" +"Tabela [{}] não encontrada, por favor verifique conexão à base de dados, " +"esquema e nome da tabela" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Adicionar Métrica" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Origem de dados %(name)s já existe" + +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/dataset/exceptions.py:172 #, fuzzy -msgid "Add Report" -msgstr "Janela de exibição" +msgid "Datasets could not be deleted." +msgstr "Não foi possível carregar a query" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Add Rule" -msgstr "" +#: superset/commands/dataset/exceptions.py:180 +#, fuzzy +msgid "Samples for dataset could not be retrieved." +msgstr "Não foi possível gravar a sua query" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Adicionar Query" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Adicionar Coluna" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 +#: superset/commands/dataset/exceptions.py:192 #, fuzzy -msgid "Add a dataset" -msgstr "Adicionar Base de Dados" +msgid "You don't have access to this dataset." +msgstr "Parece que não tem acesso a nenhuma base de dados" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 +#: superset/commands/dataset/exceptions.py:196 #, fuzzy -msgid "Add a new tab" -msgstr "Query numa nova aba" +msgid "Dataset could not be duplicated." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +#: superset/commands/dataset/exceptions.py:205 #, fuzzy -msgid "Add additional custom parameters" -msgstr "Editar propriedades da visualização" +msgid "The provided table was not found in the provided database" +msgstr "Nome da tabela que existe na base de dados de origem" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 +#: superset/commands/dataset/columns/exceptions.py:23 #, fuzzy -msgid "Add an annotation layer" -msgstr "Camadas de anotação" +msgid "Dataset column not found." +msgstr "Anotações" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#: superset/commands/dataset/columns/exceptions.py:27 #, fuzzy -msgid "Add an item" -msgstr "Adicionar filtro" +msgid "Dataset column delete failed." +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 #, fuzzy -msgid "Add and edit filters" -msgstr "Adicionar filtro" +msgid "Changing this dataset is forbidden." +msgstr "Editar propriedades do dashboard" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 +#: superset/commands/dataset/metrics/exceptions.py:23 #, fuzzy -msgid "Add annotation" +msgid "Dataset metric not found." msgstr "Anotações" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 +#: superset/commands/dataset/metrics/exceptions.py:27 #, fuzzy -msgid "Add annotation layer" +msgid "Dataset metric delete failed." msgstr "Camadas de anotação" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 +#: superset/commands/explore/get.py:118 superset/views/core.py:471 #, fuzzy -msgid "Add cross-filter" -msgstr "Adicionar filtro" +msgid "[Missing Dataset]" +msgstr "Viz está sem origem de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Não foi possível carregar a query" + +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +#: superset/commands/query/exceptions.py:40 #, fuzzy -msgid "Add extra connection information." -msgstr "Metadados adicionais" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Adicionar filtro" +msgid "Saved query parameters are invalid." +msgstr "Camadas de anotação para sobreposição na visualização" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +#: superset/commands/report/alert.py:98 +#, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" +#: superset/commands/report/alert.py:107 +#, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" msgstr "" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 +#: superset/commands/report/alert.py:178 #, fuzzy -msgid "Add item" -msgstr "Adicionar filtro" +msgid "An error occurred when running alert query" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Adicionar Métrica" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "Metadados adicionais" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Remover gráfico do dashboard" + +#: superset/commands/report/exceptions.py:92 +#, fuzzy +msgid "Must choose either a chart or a dashboard" +msgstr "Remover gráfico do dashboard" + +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -#, fuzzy -msgid "Add sheet" -msgstr "Adicionar Base de Dados" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -#, fuzzy -msgid "Add the name of the chart" -msgstr "O id da visualização ativa" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -#, fuzzy -msgid "Add the name of the dashboard" -msgstr "Gravar e ir para o dashboard" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Adicionar ao novo dashboard" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -#, fuzzy -msgid "Add/Edit Filters" -msgstr "Adicionar filtro" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Adicionar ao novo dashboard" -msgstr[1] "" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -#, fuzzy -msgid "Additional Parameters" -msgstr "Editar propriedades da visualização" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -#, fuzzy -msgid "Additional information" -msgstr "Metadados adicionais" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -#, fuzzy -msgid "Additional metadata" -msgstr "Atualizar coluna de metadados" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." msgstr "" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -#, fuzzy -msgid "Additional parameters" -msgstr "Editar propriedades da visualização" +#: superset/commands/report/exceptions.py:180 +#, fuzzy, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -#, fuzzy -msgid "Additional settings." -msgstr "Metadados adicionais" +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Análise Avançada" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "Análise Avançada" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 +#: superset/commands/report/exceptions.py:222 #, fuzzy -msgid "Advanced Data type" -msgstr "Dados carregados em cache" +msgid "A timeout occurred while executing the query." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 +#: superset/commands/report/exceptions.py:227 #, fuzzy -msgid "Advanced analytics" -msgstr "Análise Avançada" +msgid "A timeout occurred while taking a screenshot." +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 +#: superset/commands/report/exceptions.py:232 #, fuzzy -msgid "Advanced analytics Query A" -msgstr "Análise Avançada" +msgid "A timeout occurred while generating a csv." +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 +#: superset/commands/report/exceptions.py:237 #, fuzzy -msgid "Advanced analytics Query B" -msgstr "Análise Avançada" +msgid "A timeout occurred while generating a dataframe." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -#, fuzzy -msgid "Advanced data type" -msgstr "Dados carregados em cache" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -#, fuzzy -msgid "Advanced-Analytics" -msgstr "Análise Avançada" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "" + +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" +msgstr "" + +#: superset/commands/report/exceptions.py:267 #, fuzzy -msgid "After" -msgstr "Estado" +msgid "Report schedule client error" +msgstr "Não foi possível gravar a sua query" + +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "" + +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "" + +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 +#: superset/commands/security/exceptions.py:25 #, fuzzy -msgid "Aggregate" -msgstr "Soma Agregada" +msgid "RLS Rule not found." +msgstr "Modelos CSS" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 +#: superset/commands/security/exceptions.py:29 #, fuzzy -msgid "Aggregate Mean" -msgstr "Soma Agregada" +msgid "RLS rules could not be deleted." +msgstr "Não foi possível carregar a query" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 +#: superset/commands/sql_lab/estimate.py:58 #, fuzzy -msgid "Aggregate Sum" -msgstr "Soma Agregada" +msgid "The database could not be found" +msgstr "Visualização %(id)s não encontrada" + +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 +#: superset/commands/sql_lab/execute.py:172 msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "" + +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 +#: superset/commands/sql_lab/results.py:75 msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." +msgstr "" + +#: superset/commands/tag/exceptions.py:32 #, fuzzy -msgid "Aggregation" -msgstr "Soma Agregada" +msgid "Tag parameters are invalid." +msgstr "Camadas de anotação para sobreposição na visualização" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#: superset/commands/tag/exceptions.py:36 #, fuzzy -msgid "Aggregation function" -msgstr "Função de agregação" +msgid "Tag could not be created." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 #, fuzzy -msgid "Alert" -msgstr "Mover gráfico" +msgid "Tag could not be updated." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "Não foi possível carregar a query" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +#: superset/commands/tag/exceptions.py:48 #, fuzzy -msgid "Alert condition" -msgstr "Conexão de teste" +msgid "Tagged Object could not be deleted." +msgstr "Não foi possível carregar a query" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 #, fuzzy -msgid "Alert condition schedule" -msgstr "Conexão de teste" +msgid "An error occurred while creating the value." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +#, fuzzy +msgid "An error occurred while accessing the value." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 #, fuzzy -msgid "Alert failed" -msgstr "Nome da Tabela" +msgid "An error occurred while deleting the value." +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +#, fuzzy +msgid "An error occurred while updating the value." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +#, fuzzy +msgid "You don't have permission to modify the value." +msgstr "Não tem permissão para aprovar este pedido" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset/commands/temporary_cache/exceptions.py:49 #, fuzzy -msgid "Alert name" -msgstr "Tipo de gráfico" +msgid "Resource was not found." +msgstr "Dashboard" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" msgstr "" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." msgstr "" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "" +#: superset/common/query_context_processor.py:696 +#, fuzzy +msgid "The chart does not exist" +msgstr "Origem de dados %(name)s já existe" + +#: superset/common/query_context_processor.py:702 +#, fuzzy +msgid "The chart datasource does not exist" +msgstr "Origem de dados %(name)s já existe" + +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "Origem de dados %(name)s já existe" -#: superset/reports/commands/alert.py:100 +#: superset/common/query_object.py:290 #, python-format -msgid "Alert query returned more than one row. %s rows returned" +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" +#: superset/common/query_object.py:312 +#, python-format +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -#, fuzzy -msgid "Alerts & reports" -msgstr "Janela de exibição" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/connectors/sqla/models.py:1394 +#, python-format +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -#, fuzzy -msgid "All Entities" -msgstr "Filtros" +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, fuzzy, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Erro ao carregar a lista de base de dados" -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Gráfico de bala" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Filtros" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "All filters (%(filterCount)d)" +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Permitir CREATE TABLE AS" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Copiar a instrução SELECT para a área de transferência" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Permitir CREATE TABLE AS" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Colunas" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Mostrar Coluna" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Adicionar Coluna" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Permitir DML" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Editar Coluna" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" +"Para se disponibilizar esta coluna como uma opção [Time Granularity], a " +"coluna deve ser DATETIME ou DATETIME" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." +msgstr "Se esta coluna está exposta na seção `Filtros` da vista de exploração." + +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" +"O tipo de dados que foi inferido pela base de dados. Pode ser necessário " +"inserir um tipo manualmente para colunas definidas por expressões em " +"alguns casos. A maioria dos casos não requer alteração por parte do " +"utilizador." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Coluna" + +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Nome Detalhado" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Descrição" + +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Agrupável" + +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filtrável" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabela" + +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Expressão" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "É temporal" + +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Formato de data e hora" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Tipo" + +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Formato da Tabela Datahora" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Métricas" + +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Mostrar Métrica" + +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Adicionar Métrica" + +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Editar Métrica" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Métrica" + +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "Expressão SQL" + +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Formato D3" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" + +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Mensagem de Aviso" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tabelas" + +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Mostrar Tabela" + +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Editar Tabela" + +#: superset/connectors/sqla/views.py:327 msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" +"A lista de visualizações associadas a esta tabela. Ao alterar a origem de" +" dados, o comportamento das visualizações associadas poderá ser alterado." +" Observe também que as visualizações tem que apontar para uma origem de " +"dados, este formulário falhará na poupança se forem removidas " +"visualizações da origem de dados. Se quiser alterar a origem de dados de " +"uma visualização, atualize a visualização na \"vista de exploração\"" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Diferença do fuso horário (em horas) para esta fonte de dados" + +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Nome da tabela que existe na base de dados de origem" + +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" +"Esquema, como utilizado em algumas base de dados, como Postgres, Redshift" +" e DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +#: superset/connectors/sqla/views.py:345 msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" +"Este campo atua como uma vista do Superset, o que significa que o " +"Superset vai correr uma query desta string como uma subquery." -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" +"Predicado aplicado ao obter um valor distinto para preencher a componente" +" de controlo de filtro. Suporta a sintaxe jinja standard. Apenas se " +"aplica quando \"Ativar Filtro de Seleção\" está ativado." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" -msgstr "" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "Redireciona para este endpoint ao clicar na tabela da respetiva lista" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" +"Preencher a lista de filtros, na vista de exploração, com valores " +"distintos carregados em tempo real a partir do backend" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset/views/database/mixins.py:114 +#: superset/connectors/sqla/views.py:371 msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -"Permitir que os usuários executem instruções non-SELECT (UPDATE, DELETE, " -"CREATE, ...) no SQL Lab" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -#, fuzzy -msgid "Alphabetical" -msgstr "Ordenar colunas por ordem alfabética" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 +#: superset/connectors/sqla/views.py:387 msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Visualizações Associadas" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -#, fuzzy -msgid "An Error Occurred" -msgstr "Ocorreu um erro ao criar a origem dos dados" - -#: superset/reports/commands/exceptions.py:188 -#, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Origem de dados %(name)s já existe" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Alterado por" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Base de dados" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." -msgstr "" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Modificado pela última vez" -#: 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: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 -msgid "An error has occurred" -msgstr "" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Ativar Filtro de Seleção" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Esquema" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Endpoint Padrão" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -#, fuzzy -msgid "An error occurred while accessing the value." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Offset" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Tempo limite para cache" -#: superset-frontend/src/views/CRUD/hooks.ts:308 -#, fuzzy, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Nome da Tabela" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Carregar Valores de Predicado" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -#, fuzzy -msgid "An error occurred while creating the value." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Proprietários" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -#, fuzzy -msgid "An error occurred while deleting the value." -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Coluna Datahora principal" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "SQL Lab" -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, fuzzy, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Nome do modelo" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, fuzzy, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Modificado" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" +"A tabela foi criada. Como parte deste processo de configuração de duas " +"fases, deve agora clicar no botão Editar, na nova tabela, para " +"configurá-lo." -#: superset-frontend/src/pages/ChartList/index.tsx:641 +#: superset/css_templates/api.py:142 #, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 +#: superset/dashboards/api.py:390 #, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 +#: superset/dashboards/api.py:697 #, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Por favor selecione um dashboard" +msgstr[1] "Por favor selecione um dashboard" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/dashboards/filters.py:193 +#, fuzzy +msgid "Role" +msgstr "Perfil" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Nome da Tabela" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 #, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 +#: superset/databases/schemas.py:233 #, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 +#: superset/datasets/api.py:785 #, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" - -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -#, fuzzy -msgid "An error occurred while fetching function names." -msgstr "Ocorreu um erro ao carregar os metadados da tabela" +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Selecione uma base de dados" +msgstr[1] "Selecione uma base de dados" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 #, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "Ocorreu um erro ao carregar os metadados da tabela" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao carregar os metadados da tabela" - -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, fuzzy, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +#: superset/db_engine_specs/base.py:98 +#, fuzzy +msgid "Second" +msgstr "30 segundos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 +#: superset/db_engine_specs/base.py:99 #, fuzzy -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "5 second" +msgstr "30 segundos" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, fuzzy, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +#: superset/db_engine_specs/base.py:100 +#, fuzzy +msgid "30 second" +msgstr "30 segundos" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#: superset/db_engine_specs/base.py:101 #, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "Minute" +msgstr "minuto" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Ocorreu um erro ao criar a origem dos dados" - -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 +#: superset/db_engine_specs/base.py:102 #, fuzzy -msgid "An error occurred while opening Explore" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +msgid "5 minute" +msgstr "5 minutos" -#: superset/key_value/exceptions.py:30 +#: superset/db_engine_specs/base.py:103 #, fuzzy -msgid "An error occurred while parsing the key." -msgstr "Ocorreu um erro ao criar a origem dos dados" - -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +msgid "10 minute" +msgstr "1 minuto" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:104 +#, fuzzy +msgid "15 minute" +msgstr "1 minuto" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:105 +#, fuzzy +msgid "30 minute" +msgstr "10 minutos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:106 +#, fuzzy +msgid "Hour" +msgstr "hora" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +#, fuzzy +msgid "6 hour" +msgstr "hora" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:108 +#, fuzzy +msgid "Day" +msgstr "dia" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:109 +#, fuzzy +msgid "Week" +msgstr "semana" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:110 +#, fuzzy +msgid "Month" +msgstr "mês" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 +#: superset/db_engine_specs/base.py:111 #, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "Quarter" +msgstr "Query" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:112 +#, fuzzy +msgid "Year" +msgstr "ano" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" msgstr "" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -#, fuzzy -msgid "An error occurred while starring this chart" -msgstr "Ocorreu um erro ao criar a origem dos dados" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 #, fuzzy -msgid "An error occurred while updating the value." -msgstr "Ocorreu um erro ao criar a origem dos dados" +msgid "Username" +msgstr "Nome do país" -#: superset/key_value/exceptions.py:50 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 #, fuzzy -msgid "An error occurred while upserting the value." -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +msgid "Password" +msgstr "Broker Port" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "Ocorreu um erro desconhecido. (Estado: %s )" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +#, fuzzy +msgid "Database port" +msgstr "Base de dados" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +#, fuzzy +msgid "Database name" +msgstr "nome da origem de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +#, fuzzy +msgid "Additional parameters" +msgstr "Editar propriedades da visualização" + +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -#, fuzzy -msgid "Animation" -msgstr "Anotações" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Anotações" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -#, fuzzy -msgid "Annotation Slice Configuration" -msgstr "Edite a configuração da origem de dados" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "Camadas de anotação" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -#, fuzzy -msgid "Annotation layer" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "Não foi possível gravar a sua query" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "Não foi possível gravar a sua query" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "Camadas de anotação" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -#, fuzzy -msgid "Annotation layer description columns" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "Camadas de anotação para sobreposição na visualização" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -#, fuzzy -msgid "Annotation layer interval end" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -#, fuzzy -msgid "Annotation layer name" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -#, fuzzy -msgid "Annotation layer opacity" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Camadas de anotação para sobreposição na visualização" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -#, fuzzy -msgid "Annotation layer stroke" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Uma ou várias métricas para exibir" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -#, fuzzy -msgid "Annotation layer type" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -#, fuzzy -msgid "Annotation layer value" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -#, fuzzy -msgid "Annotation layers" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "Camadas de anotação para sobreposição na visualização" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -#, fuzzy -msgid "Annotation name" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Anotações" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -#, fuzzy -msgid "Annotation source type" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "Camadas de anotação" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" -msgstr "Camadas de anotação" +#: superset/explore/exceptions.py:45 +#, fuzzy +msgid "Samples for datasource could not be retrieved." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Annotations and layers" -msgstr "Camadas de anotação" +msgid "Changing this datasource is forbidden" +msgstr "Editar propriedades do dashboard" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 +#: superset/initialization/__init__.py:242 #, fuzzy -msgid "Any" -msgstr "dia" +msgid "Database Connections" +msgstr "Selecione qualquer coluna para inspeção de metadados" -#: 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 "" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Base de dados" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Dashboards" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Gráfico de Queijo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Bases de dados" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/initialization/__init__.py:276 +msgid "Plugins" msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "Adicionar filtro" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Gerir" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "Adicionar filtro" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "Modelos CSS" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "Adicionar filtro" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL Lab" -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Queries Gravadas" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Histórico de queries" + +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 #, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "Metadados adicionais" +msgid "Tags" +msgstr "Estado" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Registo de Acções" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Segurança" + +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Camadas de anotação" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +#: superset/key_value/exceptions.py:30 #, fuzzy -msgid "Apply filters" -msgstr "Filtros" +msgid "An error occurred while parsing the key." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" +#: superset/key_value/exceptions.py:50 +#, fuzzy +msgid "An error occurred while upserting the value." +msgstr "Ocorreu um erro ao renderizar a visualização: %s" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" +"Coluna datahora não definida como parte da configuração da tabela e " +"obrigatória para este tipo de gráfico" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -#, fuzzy -msgid "Arc" -msgstr "Pesquisa" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Query vazia?" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" +#: superset/models/helpers.py:1821 +#, fuzzy +msgid "error_message" +msgstr "Mensagem de Aviso" + +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, python-format -msgid "Are you sure you want to delete %s?" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/models/helpers.py:1916 #, python-format -msgid "Are you sure you want to delete the selected %s?" +msgid "Invalid filter operation type: %(op)s" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" +#: superset/models/helpers.py:2090 +#, fuzzy +msgid "Database does not support subqueries" +msgstr "Origem de dados %(name)s já existe" + +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" +msgstr[1] "" + +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" +msgstr[1] "" + +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +#, fuzzy +msgid "Value must be greater than 0" +msgstr "Data de inicio não pode ser posterior à data de fim" + +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" +#: superset/reports/notifications/email.py:88 +#, python-format +msgid "" +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -msgid "Are you sure you want to delete the selected rules?" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" + +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -#, fuzzy -msgid "Area Chart" -msgstr "Explorar gráfico" +#: superset/security/manager.py:2394 +#, fuzzy, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -#, fuzzy -msgid "Area Chart (legacy)" -msgstr "Explorar gráfico" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -#, fuzzy -msgid "Area chart" -msgstr "Explorar gráfico" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -#, fuzzy -msgid "Area chart opacity" -msgstr "Explorar gráfico" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Visualizações Associadas" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "Visualização %(id)s não encontrada" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" +#: superset/tags/filters.py:31 +msgid "Is custom tag" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Número de Registos" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Nenhum registo encontrado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" -msgstr "" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Filtros" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Pesquisa" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Intervalo de atualização" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -#, fuzzy -msgid "Autocomplete query predicate" -msgstr "Carregar Valores de Predicado" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Importar Dashboards" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" -msgstr "" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Importar Dashboards" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "Gerir" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Escolha uma fonte" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -msgid "Average value" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -#, fuzzy -msgid "Axis" -msgstr "Eixo YY" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "Formato do Eixo YY" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Conexão de teste" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -#, fuzzy -msgid "Axis Title" -msgstr "%s - sem título" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -#, fuzzy -msgid "Axis ascending" -msgstr "Ordenar decrescente" +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -#, fuzzy -msgid "Axis descending" -msgstr "Ordenar decrescente" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -#, fuzzy -msgid "Bar Chart" -msgstr "Explorar gráfico" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -#, fuzzy -msgid "Bar Values" -msgstr "Valor de filtro" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -#, fuzzy -msgid "Bar orientation" -msgstr "Anotações" - -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "Base de dados" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -#, fuzzy -msgid "Based on a metric" -msgstr "Selecione métrica" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Granularidade Temporal" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" msgstr "" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -#, fuzzy -msgid "Basic information" -msgstr "Metadados adicionais" - -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -#, fuzzy -msgid "Before" -msgstr "Intervalo de atualização" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "Selecione pelo menos uma métrica" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Número grande" +#: superset/utils/pandas_postprocessing/rename.py:53 +#, fuzzy +msgid "Label already exists" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Número grande com linha de tendência" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +#: superset/utils/pandas_postprocessing/resample.py:46 #, fuzzy -msgid "Bottom" -msgstr "dttm" +msgid "Resample method should in " +msgstr "Método de preenchimento da remistura de pandas" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +#: superset/views/api.py:109 +#, python-format +msgid "Unexpected time range: %(error)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" -msgstr "Box Plot" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "json não é válido" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" -msgstr "" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Exportar para .json" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Gráfico de bolhas" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Exportar para .json" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -#, fuzzy -msgid "Bubble Color" -msgstr "Selecione uma cor" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Eliminar" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -#, fuzzy -msgid "Bubble Size" -msgstr "Tamanho da bolha" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Tem a certeza que pretende eliminar tudo?" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Tamanho da bolha" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Favoritos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/views/base_api.py:177 +msgid "Is tagged" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" -msgstr "" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "Esta origem de dados parece ter sido excluída" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -#, fuzzy -msgid "Bulk select" -msgstr "Selecione %s" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "O utilizador parece ter sido eliminado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Gráfico de bala" +#: superset/views/core.py:289 +#, fuzzy +msgid "You don't have the rights to download as csv" +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" msgstr "" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." -msgstr "" +#: superset/views/core.py:509 +#, fuzzy +msgid "You don't have the rights to alter this chart" +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "" +#: superset/views/core.py:515 +#, fuzzy +msgid "You don't have the rights to create a chart" +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Explorar gráfico" + +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 +#: superset/views/core.py:645 #, fuzzy -msgid "CREATE DATASET" -msgstr "Criado em" +msgid "You don't have the rights to alter this dashboard" +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "Permitir CREATE TABLE AS" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "Permitir CREATE TABLE AS" +#: superset/views/core.py:661 +#, fuzzy +msgid "You don't have the rights to create a dashboard" +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" +"Pedido mal formado. Os argumentos slice_id ou table_name e db_name não " +"foram preenchidos" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -#, fuzzy -msgid "CRON expression" -msgstr "Expressão" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Visualização %(id)s não encontrada" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "A tabela %(t)s não foi encontrada na base de dados %(d)s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +#: superset/views/core.py:836 #, fuzzy -msgid "CSS Styles" +msgid "permalink state not found" msgstr "Modelos CSS" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" msgstr "Modelos CSS" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Modelos CSS" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -#, fuzzy -msgid "CSS template" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" msgstr "Modelos CSS" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -#, fuzzy -msgid "CSS template name" +#: superset/views/css_templates.py:46 +msgid "Template Name" msgstr "Nome do modelo" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "Modelos CSS" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -#, fuzzy -msgid "CSS templates" -msgstr "Modelos CSS" - -#: superset/views/database/forms.py:109 -msgid "CSV Upload" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset/views/database/views.py:290 -#, python-format +#: superset/views/dynamic_plugins.py:48 msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "Edite a configuração da origem de dados" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Cláusula WHERE personalizada" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "Esquema CTAS" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Adicionar Coluna" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Editar Coluna" + +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/views/utils.py:492 +msgid "Could not find viz object" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Tempo limite para cache" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Mostrar Dashboard" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Cache atingiu tempo limite (segundos)" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Gráfico de Queijo" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -#, fuzzy -msgid "Cache timeout" -msgstr "Tempo limite para cache" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Editar gráfico" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" +"Os parâmetros são gerados dinamicamente ao clicar no botão Guardar ou " +"Substituir na vista de exibição. Este objeto JSON é exposto aqui para " +"referência e para utilizadores avançados que desejam alterar parâmetros " +"específicos." -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" -msgstr "" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Criador" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Fonte de dados" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Última Alteração" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -#, fuzzy -msgid "Calculated columns" -msgstr "Lista de Colunas" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parâmetros" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Escolha um tipo de visualização" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Carregar" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Calendário com Mapa de Calor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Nome" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Tipo de Visualização" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" -msgstr "" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Mostrar Dashboard" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Não pode haver sobreposição entre Séries e Desagregação" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Adicionar Dashboard" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Cancelar" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Editar Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" +"Este objeto JSON descreve o posicionamento das visualizações no " +"dashboard. É gerado dinamicamente quando se ajusta a dimensão e " +"posicionamento de uma visualização utilizando o drag & drop na vista de " +"dashboard" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" +"O css para dashboards individuais pode ser alterado aqui ou na vista de " +"dashboard, onde as mudanças são imediatamente visíveis" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Obter um URL legível para o seu dashboard" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" +"Este objeto JSON é gerado dinamicamente ao clicar no botão salvar ou " +"substituir na exibição do painel. É exposto aqui para referência e para " +"usuários avançados que desejam alterar parâmetros específicos." -#: superset/views/core.py:734 -#, python-format +#: superset/views/dashboard/mixin.py:64 +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/views/dashboard/mixin.py:65 msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Título" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" -msgstr "" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Cargo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "nome da origem de dados" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Posição JSON" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" + +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "Metadados JSON" + +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Exportar" + +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Exportar dashboards?" + +#: superset/views/database/forms.py:109 +msgid "CSV Upload" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "" + +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 +#: superset/views/database/forms.py:130 #, fuzzy -msgid "Category name" -msgstr "nome da origem de dados" +msgid "Name of table to be created with CSV file" +msgstr "Nome da tabela que existe na base de dados de origem" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/views/database/forms.py:145 +#, fuzzy +msgid "Column Data Types" +msgstr "Dados carregados em cache" + +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "" + +#: superset/views/database/forms.py:162 #, fuzzy -msgid "Cell Size" -msgstr "Tamanho da bolha" +msgid "Enter a delimiter for this data" +msgstr "Insira um novo título para a aba" + +#: superset/views/database/forms.py:164 +msgid "," +msgstr "" + +#: superset/views/database/forms.py:165 +msgid "." +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 #, fuzzy -msgid "Cell bars" -msgstr "Gráfico de bala" +msgid "Other" +msgstr "mês" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 +#: superset/views/database/forms.py:175 #, fuzzy -msgid "Cell content" -msgstr "Conteúdo Criado" +msgid "If Table Already Exists" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 +#: superset/views/database/forms.py:176 #, fuzzy -msgid "Cell limit" -msgstr "Limite de série" +msgid "What should happen if the table already exists" +msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -#, fuzzy -msgid "Certified by" -msgstr "Modificado" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 -#, python-format -msgid "Certified by %s" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Alterado por" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Alterado em" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +#: superset/views/database/forms.py:212 +#, fuzzy +msgid "Null Values" +msgstr "Valor de filtro" + +#: superset/views/database/forms.py:214 msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Adicionar Coluna" + +#: superset/views/database/forms.py:222 msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "Editar propriedades do dashboard" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "Esta edição tem efeito instantâneo" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Colunas" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 +#: superset/views/database/forms.py:242 #, fuzzy -msgid "Changing this dataset is forbidden." -msgstr "Editar propriedades do dashboard" +msgid "Columns To Read" +msgstr "Cargos a permitir ao utilizador" -#: superset/explore/exceptions.py:49 +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" +msgstr "" + +#: superset/views/database/forms.py:248 #, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "Editar propriedades do dashboard" +msgid "Overwrite Duplicate Columns" +msgstr "Coluna Datahora principal" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "Carregar" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Cargos a permitir ao utilizador" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" -msgstr "Visualização %(id)s não encontrada" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" +msgstr "" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Tempo limite para cache" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "Opções do gráfico" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "Tipo de gráfico" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Nome da tabela que existe na base de dados de origem" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -#, fuzzy -msgid "Chart Options" -msgstr "Editar propriedades da visualização" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Opções do gráfico" -msgstr[1] "" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Nome Detalhado" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "Fonte de dados" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -#, fuzzy -msgid "Chart Title" -msgstr "Mover gráfico" - -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" -msgstr "Esta origem de dados parece ter sido excluída" - -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "Filtro de Tabela" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -#, fuzzy -msgid "Chart cache timeout" -msgstr "Tempo limite para cache" - -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Modificado pela última vez" - -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/database/forms.py:353 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Não foi possível gravar a sua query" - -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "Não foi possível carregar a query" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "Não foi possível gravar a sua query" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -#, fuzzy -msgid "Chart imported" -msgstr "Editar propriedades da visualização" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "Última Alteração" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "Última Alteração" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Valor de filtro" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Tipo de gráfico" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +#: superset/views/database/forms.py:413 #, fuzzy -msgid "Chart options" -msgstr "Editar propriedades da visualização" +msgid "Name of table to be created from columnar data." +msgstr "Nome da tabela que existe na base de dados de origem" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#: superset/views/database/forms.py:421 #, fuzzy -msgid "Chart owners" -msgstr "Opções do gráfico" +msgid "Columnar File" +msgstr "Coluna" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -#, fuzzy -msgid "Chart properties updated" -msgstr "Editar propriedades da visualização" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -#, fuzzy -msgid "Chart title" -msgstr "Mover gráfico" - -#: superset-frontend/src/pages/ChartList/index.tsx:652 +#: superset/views/database/forms.py:469 #, fuzzy -msgid "Chart type" -msgstr "Tipo de gráfico" +msgid "Use Columns" +msgstr "Lista de Colunas" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "Mover gráfico" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Bases de dados" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Gráfico de Queijo" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Mostrar Base de Dados" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Não foi possível carregar a query" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Adicionar Base de Dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -#, fuzzy -msgid "Check configuration" -msgstr "Contribuição" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Editar Base de Dados" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Ordenar de forma descendente ou ascendente" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Expor esta BD no SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Verificar dashboard: %s" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -#, fuzzy -msgid "Check out this chart: " -msgstr "Verificar dashboard: %s" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "Verificar dashboard: %s" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 +#: superset/views/database/mixins.py:114 msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" +"Permitir que os usuários executem instruções non-SELECT (UPDATE, DELETE, " +"CREATE, ...) no SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" +"Ao permitir a opção CREATE TABLE AS no SQL Lab, esta opção força a tabela" +" a ser criada neste esquema" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -#, fuzzy -msgid "Check to include time column dropdown" -msgstr "Selecione para incluir seleção da coluna temporal" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Se Presto, todas as consultas no SQL Lab serão executadas como o " +"utilizador atualmente conectado que deve ter permissão para as executar. " +"
Se hive e hive.server2.enable.doAs estiver habilitado, serão " +"executadas as queries como conta de serviço, mas deve personificar o " +"utilizador atualmente conectado recorrendo à propriedade " +"hive.server2.proxy.user." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -#, fuzzy -msgid "Check to include time grain dropdown" -msgstr "Selecione para incluir seleção da Origem do tempo" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "A escolha do [Rótulo] deve estar presente em [Agrupar por]" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Expor no SQL Lab" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "A escolha de [Ponto de Raio] deve estar presente em [Agrupar por]" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Permitir CREATE TABLE AS" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Escolha uma fonte" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Permitir CREATE TABLE AS" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Remover gráfico do dashboard" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Permitir DML" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -#, fuzzy -msgid "Choose a database..." -msgstr "Escolha uma origem de dados" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Esquema CTAS" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Escolha uma origem de dados" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "URI SQLAlchemy" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Escolha uma métrica para o eixo direito" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Tempo limite para cache" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -#, fuzzy -msgid "Choose a number format" -msgstr "Escolha uma métrica para o eixo direito" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Segurança" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -#, fuzzy -msgid "Choose a source" -msgstr "Escolha uma origem de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -#, fuzzy -msgid "Choose a source and a target" -msgstr "Escolha uma origem de dados" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -#, fuzzy -msgid "Choose a target" -msgstr "Escolha uma origem de dados" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Personificar o utilizador conectado" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -#, fuzzy -msgid "Choose chart type" -msgstr "Escolha uma origem de dados" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -#, fuzzy -msgid "Choose the annotation layer type" -msgstr "Camadas de anotação" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -#, fuzzy -msgid "Choose the position of the legend" -msgstr "Calcular contribuição para o total" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "Edite a configuração da origem de dados" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 +#: superset/views/database/views.py:277 +#, python-format msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Edite a configuração da origem de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" -msgstr "" +#: superset/views/database/views.py:440 +#, fuzzy +msgid "Columnar to Database configuration" +msgstr "Edite a configuração da origem de dados" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/views/database/views.py:554 +#, python-format msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" +#: superset/views/log/__init__.py:21 +msgid "Logs" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" -msgstr "" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Mostrar totais" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/log/__init__.py:23 +msgid "Add Log" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" -msgstr "" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Editar" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Utilizador" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Acção" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." -msgstr "" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" +msgstr "Query sem título" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "clique para editar o título" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "Granularidade Temporal" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, fuzzy, python-format -msgid "Click to edit %s." -msgstr "clique para editar o título" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +#, fuzzy +msgid "Time Column" +msgstr "Coluna de tempo" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 #, fuzzy -msgid "Click to edit chart." -msgstr "clique para editar o título" +msgid "Time Grain" +msgstr "Granularidade Temporal" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 #, fuzzy -msgid "Click to edit label" -msgstr "clique para editar o título" +msgid "Time Granularity" +msgstr "Granularidade temporal" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Clique para tornar favorito" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Tempo" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Clique para forçar atualização" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "" +"Uma referência à configuração [Time], levando em consideração a " +"granularidade" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Clique para forçar atualização" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +#, fuzzy +msgid "Aggregate" +msgstr "Soma Agregada" -#: superset-frontend/src/components/Table/index.tsx:216 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy -msgid "Click to sort ascending" -msgstr "Ordenar de forma descendente ou ascendente" +msgid "Category name" +msgstr "nome da origem de dados" -#: superset-frontend/src/components/Table/index.tsx:215 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy -msgid "Click to sort descending" -msgstr "Ordenar de forma descendente ou ascendente" +msgid "Total value" +msgstr "Valor de filtro" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "fechar aba" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Código" - -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "descrição" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "parafuso" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Esta edição tem efeito instantâneo" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 #, fuzzy -msgid "Collapse table preview" -msgstr "Remover pré-visualização de tabela" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Cor" +msgid "SQL expression" +msgstr "Expressão" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +#, fuzzy +msgid "Column datatype" +msgstr "Colunas" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 #, fuzzy -msgid "Color Metric" -msgstr "Métrica de cor" +msgid "Column name" +msgstr "Colunas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "Esquema de cores" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Rótulo" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 #, fuzzy -msgid "Color Steps" -msgstr "Esquema de cores" +msgid "Metric name" +msgstr "nome da origem de dados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -#, fuzzy -msgid "Color by" -msgstr "Ordenar por" - -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Métrica de cor" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Esquema de cores" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 -msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Cor" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Coluna" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +#, fuzzy +msgid "Advanced analytics" +msgstr "Análise Avançada" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" +"Esta seção contém opções que permitem o pós-processamento analítico " +"avançado de resultados da query" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 #, fuzzy -msgid "Column Configuration" -msgstr "Contribuição" +msgid "Rolling window" +msgstr "Rolling" -#: superset/views/database/forms.py:144 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 #, fuzzy -msgid "Column Data Types" -msgstr "Dados carregados em cache" +msgid "Rolling function" +msgstr "Rolling" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Colunas" - -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "Colunas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Períodos" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 #, fuzzy -msgid "Column is required" -msgstr "Origem de dados" +msgid "Min periods" +msgstr "Período Mínimo" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" +"O número mínimo de períodos de rolamento necessários para mostrar um " +"valor. Por exemplo, numa soma cumulativa de 7 dias é possível que o " +"\"Período Mínimo\" seja 7, de forma a que todos os pontos de dados " +"mostrados sejam o total de 7 períodos. Esta opção esconde a " +"\"aceleração\" que ocorre nos primeiros 7 períodos" -#: superset/views/database/forms.py:233 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +#, fuzzy +msgid "Time comparison" +msgstr "Coluna de tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 #, fuzzy -msgid "Column name" -msgstr "Colunas" +msgid "Time shift" +msgstr "Mudança de hora" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -#, fuzzy -msgid "Column select" -msgstr "Coluna" - -#: superset/views/database/forms.py:221 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" msgstr "" -#: superset/views/database/forms.py:352 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" msgstr "" -#: superset/views/database/forms.py:424 -#, fuzzy -msgid "Columnar File" -msgstr "Coluna" - -#: superset/views/database/views.py:568 -#, python-format -msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" msgstr "" -#: superset/views/database/views.py:443 -#, fuzzy -msgid "Columnar to Database configuration" -msgstr "Edite a configuração da origem de dados" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Colunas" - -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" msgstr "" -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "Cargos a permitir ao utilizador" - -#: superset/common/query_context_processor.py:132 -#, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -#, fuzzy -msgid "Columns to display" -msgstr "Selecione uma métrica para visualizar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Sobrepor série temporal de um período de tempo relativo. Espera valor de " +"variação temporal relativa em linguagem natural (exemplo: 24 horas, 7 " +"dias, 56 semanas, 365 dias)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -#, fuzzy -msgid "Columns to group by" -msgstr "Um ou vários controles para agrupar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Escolha um tipo de visualização" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +#, fuzzy +msgid "Actual values" +msgstr "Valor de filtro" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +#, fuzzy +msgid "Difference" +msgstr "Clique para forçar atualização" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 #, fuzzy -msgid "Combine metrics" -msgstr "Lista de Métricas" +msgid "Ratio" +msgstr "Descrição" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -#, fuzzy -msgid "Comparison" -msgstr "Coluna de tempo" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Calcular contribuição para o total" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -#, fuzzy -msgid "Condition" -msgstr "Contribuição" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Metadados adicionais" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -#, fuzzy -msgid "Conditional formatting" -msgstr "Metadados adicionais" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Regra de remistura de pandas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Contribuição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +#, fuzzy +msgid "Zero imputation" +msgstr "descrição" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +#, fuzzy +msgid "Mean values" +msgstr "Valor de filtro" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +#, fuzzy +msgid "Sum values" +msgstr "Valor de filtro" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Método de preenchimento da remistura de pandas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 #, fuzzy -msgid "Confirm overwrite" -msgstr "Substitua a visualização %s" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "" +msgid "Left" +msgstr "Eliminar" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 #, fuzzy -msgid "Connect" -msgstr "Conexão de teste" - -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "" +msgid "Top" +msgstr "Parar" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 #, fuzzy -msgid "Connect a database" -msgstr "Selecione uma base de dados" +msgid "Chart Title" +msgstr "Mover gráfico" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -#, fuzzy -msgid "Connect database" -msgstr "Selecione uma base de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "Eixo XX" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Conexão de teste" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Eixo YY" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +#, fuzzy +msgid "Y Axis Title Position" +msgstr "última partição:" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Query" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Contribuição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -#, fuzzy -msgid "Contribution Mode" -msgstr "Contribuição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -#, fuzzy -msgid "Coordinates" -msgstr "Coordenadas paralelas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 #, fuzzy -msgid "Copied to clipboard!" -msgstr "Copiar para área de transferência" +msgid "default" +msgstr "Latitude padrão" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "Copiar a instrução SELECT para a área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -#, fuzzy -msgid "Copy message" -msgstr "Mensagem de Aviso" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Cópia de %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Copiar query de partição para a área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Atributos de formulário relacionados ao tempo" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 #, fuzzy -msgid "Copy permalink to clipboard" -msgstr "Copiar query de partição para a área de transferência" +msgid "Datasource & Chart Type" +msgstr "Nome da origem de dados" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Query vazia?" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "Tipo de gráfico" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Copiar query de partição para a área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "O id da visualização ativa" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Cache atingiu tempo limite (segundos)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "O número de segundos antes de expirar a cache" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "Parâmetros" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 #, fuzzy -msgid "Copy to Clipboard" -msgstr "Copiar para área de transferência" +msgid "Extra Parameters" +msgstr "Nome do modelo" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Copiar para área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -#, fuzzy -msgid "Correlation" -msgstr "Descrição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "Esquema de cores" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 #, fuzzy -msgid "Cost estimate" -msgstr "Modelos CSS" +msgid "Contribution Mode" +msgstr "Contribuição" -#: superset/db_engine_specs/ocient.py:259 -#, python-format -msgid "Could not connect to database: \"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Séries" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Não foi possível ligar ao servidor" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "" -#: superset/views/utils.py:512 -msgid "Could not find viz object" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Não foi possível ligar ao servidor" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Não foi possível ligar ao servidor" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +#, fuzzy +msgid "Y-Axis Sort Ascending" +msgstr "Ordenar decrescente" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +#, fuzzy +msgid "X-Axis Sort Ascending" +msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 #, fuzzy -msgid "Count" -msgstr "Coluna" +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Ordenar de forma descendente ou ascendente" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Nome da origem de dados" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -#, fuzzy -msgid "Country" -msgstr "Mapa de País" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 #, fuzzy -msgid "Country Color Scheme" -msgstr "Esquema de cores lineares" +msgid "Dimension" +msgstr "descrição" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 #, fuzzy -msgid "Country Column" -msgstr "Controlo de filtro" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" +"Define o agrupamento de entidades. Cada série corresponde a uma cor " +"específica no gráfico e tem uma alternância de legenda" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Mapa de País" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Entidade" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -#, fuzzy -msgid "Create" -msgstr "Criado em" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Esta opção define o elemento a ser desenhado no gráfico" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "Crie uma nova visualização" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" -msgstr "Criado em" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filtros" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Crie uma nova visualização" - -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -#, fuzzy -msgid "Create chart" -msgstr "Crie uma nova visualização" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 #, fuzzy -msgid "Create dataset" -msgstr "Criado em" +msgid "Right Axis Metric" +msgstr "Metric do Eixo Direito" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 #, fuzzy -msgid "Create dataset and create chart" -msgstr "Crie uma nova visualização" - -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Crie uma nova visualização" +msgid "Select a metric to display on the right axis" +msgstr "Escolha uma métrica para o eixo direito" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -#, fuzzy -msgid "Create new filter set" -msgstr "Crie uma nova visualização" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Ordenar por" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Criado em" - -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Criado em" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -#, fuzzy -msgid "Created by" -msgstr "Criado em" - -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -#, fuzzy -msgid "Created by me" -msgstr "Criado em" - -#: superset-frontend/src/profile/components/App.tsx:62 -#, fuzzy -msgid "Created content" -msgstr "Conteúdo Criado" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 #, fuzzy -msgid "Created on" -msgstr "Criado em" +msgid "Bubble Size" +msgstr "Tamanho da bolha" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "A criar uma nova origem de dados, a exibir numa nova aba" - -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Criador" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -#, fuzzy -msgid "Crimson" -msgstr "Acção" - -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -#, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Desculpe, houve um erro ao gravar este dashbard: " - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "Perfil" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 #, fuzzy -msgid "Cross-filters" -msgstr "Perfil" +msgid "Color Metric" +msgstr "Métrica de cor" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -#, fuzzy -msgid "Cumulative" -msgstr "Acção" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Uma métrica a utilizar para cor" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" +"A coluna de tempo para a visualização. Note que é possível definir uma " +"expressão arbitrária que resolve uma coluna DATATEMPO na tabela ou. " +"Observe também que o filtro em baixo é aplicado sobre esta coluna ou " +"expressão" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Cláusula WHERE personalizada" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "O tipo de visualização a ser exibida" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +#, fuzzy +msgid "Fixed Color" +msgstr "Selecione uma cor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 #, fuzzy -msgid "Customize columns" -msgstr "Cláusula WHERE personalizada" +msgid "Linear Color Scheme" +msgstr "Esquema de cores lineares" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "Formato D3" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 #, fuzzy -msgid "D3 format" -msgstr "Formato D3" +msgid "5 seconds" +msgstr "30 segundos" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 segundos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 minuto" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 minutos" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "10 minutos" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "hora" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 #, fuzzy -msgid "DATETIME" -msgstr "Formato da datahora" +msgid "1 day" +msgstr "dia" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +#, fuzzy +msgid "7 days" +msgstr "dia" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "semana" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "mês" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +#, fuzzy +msgid "quarter" +msgstr "Query" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "ano" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" +"O tempo de granularidade para a visualização. Observe que você pode " +"digitar e usar linguagem natural simples, em inglês, como `10 seconds`, " +"`1 day` ou `56 weeks`" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Dashboard" - -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "Não foi possível gravar a sua query" - -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "Não foi possível gravar a sua query" - -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Limite de linha" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "[Nome do dashboard]" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "Ordenar decrescente" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: 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:444 -#, fuzzy -msgid "Dashboard properties updated" -msgstr "Editar propriedades do dashboard" - -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -#, fuzzy -msgid "Dashboard scheme" -msgstr "[Nome do dashboard]" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Limite de série" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Formato do Eixo YY" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "Dashboard usage" -msgstr "[Nome do dashboard]" - -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Dashboards" +msgid "Currency format" +msgstr "Formato de valor" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 #, fuzzy -msgid "Dashboards added to" -msgstr "[Nome do dashboard]" - -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "" +msgid "Time format" +msgstr "Formato de data e hora" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Dashboards" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "O esquema de cores para o gráfico de renderização" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 #, fuzzy -msgid "Dashed" -msgstr "Dashboard" +msgid "Truncate Metric" +msgstr "Selecione métrica" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Base de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 #, fuzzy -msgid "Data Table" -msgstr "Editar Tabela" +msgid "Show empty columns" +msgstr "Mostrar Coluna" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Pré-visualização de dados" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -#, fuzzy -msgid "Data refreshed" -msgstr "Não atualize" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -#, fuzzy -msgid "Data type" -msgstr "Tabela de dados" - -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "Selecione pelo menos uma métrica" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Base de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset/initialization/__init__.py:243 -#, fuzzy -msgid "Database Connections" -msgstr "Selecione qualquer coluna para inspeção de metadados" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 #, fuzzy -msgid "Database Creation Error" -msgstr "Expressão de base de dados" - -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "URL da Base de Dados" +msgid "No Results" +msgstr "ver resultados" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy -msgid "Database connected" -msgstr "Não foi possível gravar a sua query" - -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "Não foi possível gravar a sua query" +msgid "ERROR" +msgstr "Erro" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "Não foi possível gravar a sua query" - -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset/models/helpers.py:2063 -#, fuzzy -msgid "Database does not support subqueries" -msgstr "Origem de dados %(name)s já existe" - -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -#, fuzzy -msgid "Database error" -msgstr "Expressão de base de dados" - -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -#, fuzzy -msgid "Database name" -msgstr "nome da origem de dados" - -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "hora" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "dia" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 #, fuzzy -msgid "Database passwords" -msgstr "Expressão de base de dados" +msgid "min" +msgstr "Mín" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -#, fuzzy -msgid "Database port" -msgstr "Base de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 #, fuzzy -msgid "Database settings updated" -msgstr "Não foi possível gravar a sua query" +msgid "Chart Options" +msgstr "Editar propriedades da visualização" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Bases de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +#, fuzzy +msgid "Cell Size" +msgstr "Tamanho da bolha" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Base de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "Origem de dados %(name)s já existe" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -#, fuzzy -msgid "Dataset Name" -msgstr "nome da origem de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "" -#: superset/datasets/columns/commands/exceptions.py:27 -#, fuzzy -msgid "Dataset column delete failed." -msgstr "Camadas de anotação" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "" -#: superset/datasets/columns/commands/exceptions.py:23 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy -msgid "Dataset column not found." -msgstr "Anotações" - -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "Não foi possível gravar a sua query" +msgid "Color Steps" +msgstr "Esquema de cores" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" msgstr "" -#: superset/datasets/commands/exceptions.py:210 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy -msgid "Dataset could not be duplicated." -msgstr "Não foi possível gravar a sua query" - -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "Não foi possível gravar a sua query" - -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Origem de dados %(name)s já existe" +msgid "Time Format" +msgstr "Formato de data e hora" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -#, fuzzy -msgid "Dataset imported" -msgstr "nome da origem de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -#, fuzzy -msgid "Dataset is required" -msgstr "Origem de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 #, fuzzy -msgid "Dataset metric delete failed." -msgstr "Camadas de anotação" +msgid "Show Values" +msgstr "Mostrar Tabela" -#: superset/datasets/metrics/commands/exceptions.py:23 -#, fuzzy -msgid "Dataset metric not found." -msgstr "Anotações" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy -msgid "Dataset name" -msgstr "nome da origem de dados" - -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "" +msgid "Show Metric Names" +msgstr "Mostrar Métrica" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Bases de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +#, fuzzy +msgid "Correlation" +msgstr "Descrição" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Fonte de dados" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -#, fuzzy -msgid "Datasource & Chart Type" -msgstr "Nome da origem de dados" - -#: superset/commands/exceptions.py:135 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 #, fuzzy -msgid "Datasource does not exist" -msgstr "Origem de dados %(name)s já existe" +msgid "Comparison" +msgstr "Coluna de tempo" -#: superset/commands/exceptions.py:127 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 #, fuzzy -msgid "Datasource type is invalid" -msgstr "Origem de dados" +msgid "Intensity" +msgstr "Entidade" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 #, fuzzy -msgid "Date Time Format" -msgstr "Formato de data e hora" +msgid "Report" +msgstr "Janela de exibição" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -#, fuzzy -msgid "Date filter" -msgstr "Filtro de data" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -#, fuzzy -msgid "Date format" -msgstr "Formato de data e hora" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Formato da datahora" - -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Formato de data e hora" - -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "" -"Coluna datahora não definida como parte da configuração da tabela e " -"obrigatória para este tipo de gráfico" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -#, fuzzy -msgid "Datetime format" -msgstr "Formato de data e hora" - -#: superset/db_engine_specs/base.py:107 -#, fuzzy -msgid "Day" -msgstr "dia" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, fuzzy, python-format -msgid "Days %s" -msgstr "dia" - -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -#, fuzzy -msgid "Deactivate" -msgstr "Acção" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" - -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "" - -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "" - -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "" - -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "" - -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset/viz.py:2848 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Gráfico de bala" - -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "" - -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "" - -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "" - -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "" +msgid "Sort by metric" +msgstr "Mostrar Métrica" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Latitude padrão" - -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Endpoint Padrão" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "URL da Base de Dados" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "Latitude padrão" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 #, fuzzy -msgid "Default datetime" -msgstr "Latitude padrão" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -#, fuzzy -msgid "Default latitude" -msgstr "Latitude padrão" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -#, fuzzy -msgid "Default longitude" -msgstr "Latitude padrão" +msgid "Choose a number format" +msgstr "Escolha uma métrica para o eixo direito" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Fonte" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 #, fuzzy -msgid "Default value is required" -msgstr "Origem de dados" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" -msgstr "" -"Define o agrupamento de entidades. Cada série corresponde a uma cor " -"específica no gráfico e tem uma alternância de legenda" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Eliminar" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "Eliminar" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Anotações" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Selecione uma base de dados" - -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "Tem a certeza que pretende eliminar tudo?" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Tem a certeza que pretende eliminar tudo?" - -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Executar a query selecionada" +msgid "Choose a source" +msgstr "Escolha uma origem de dados" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 #, fuzzy -msgid "Delete Report?" -msgstr "Modelos CSS" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Modelos CSS" - -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "Tem a certeza que pretende eliminar tudo?" +msgid "Target" +msgstr "Início" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 #, fuzzy -msgid "Delete annotation" -msgstr "Anotações" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Por favor insira um nome para o dashboard" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Selecione uma base de dados" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" -msgstr "" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Eliminar" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Carregue um modelo" +msgid "Choose a target" +msgstr "Escolha uma origem de dados" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "Eliminar" - -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "Selecione uma camada de anotação" -msgstr[1] "Selecione uma camada de anotação" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "Selecione uma camada de anotação" -msgstr[1] "Selecione uma camada de anotação" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" -msgstr[1] "" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" -msgstr[1] "" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "Por favor selecione um dashboard" -msgstr[1] "Por favor selecione um dashboard" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Selecione uma base de dados" -msgstr[1] "Selecione uma base de dados" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" -msgstr[1] "" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" -msgstr[1] "" - -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Eliminar" - -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Eliminar" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -#, fuzzy -msgid "Delivery method" -msgstr "mês" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -#, fuzzy -msgid "Density" -msgstr "Entidade" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#, fuzzy -msgid "Deprecated" -msgstr "Criado em" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Descrição" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 #, fuzzy -msgid "Description Columns" -msgstr "descrição" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "" +msgid "Relational" +msgstr "Descrição" -#: superset-frontend/src/components/ListView/ListView.tsx:360 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 #, fuzzy -msgid "Deselect all" -msgstr "Repor Estado" +msgid "Country" +msgstr "Mapa de País" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset/views/dashboard/mixin.py:70 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" -msgstr "" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -#, fuzzy -msgid "Difference" -msgstr "Clique para forçar atualização" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 #, fuzzy -msgid "Dim Gray" -msgstr "Granularidade Temporal" +msgid "Metric to display bottom title" +msgstr "Selecione uma métrica para visualizar" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 #, fuzzy -msgid "Dimension" -msgstr "descrição" +msgid "Map" +msgstr "Treemap" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Layout de Forças" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 #, fuzzy -msgid "Directional" -msgstr "descrição" +msgid "Range" +msgstr "Gerir" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -#, fuzzy -msgid "Disabled" -msgstr "Editar Tabela" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -#, fuzzy -msgid "Discard" -msgstr "Dashboard" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 #, fuzzy -msgid "Discrete" -msgstr "foi criado" +msgid "Event Names" +msgstr "Nome Detalhado" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 #, fuzzy -msgid "Display Name" -msgstr "Nome do modelo" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "" +msgid "Columns to display" +msgstr "Selecione uma métrica para visualizar" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 #, fuzzy -msgid "Distribution" -msgstr "Contribuição" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Gráfico de barras" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" -msgstr "" +msgid "Additional metadata" +msgstr "Atualizar coluna de metadados" -#: superset-frontend/src/features/home/RightMenu.tsx:531 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 #, fuzzy -msgid "Documentation" -msgstr "Anotações" +msgid "Metadata" +msgstr "Atualizar coluna de metadados" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -#, fuzzy -msgid "Donut" -msgstr "mês" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 #, fuzzy -msgid "Dotted" -msgstr "Editar" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" -msgstr "" +msgid "Entity ID" +msgstr "Entidade" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +#, fuzzy +msgid "Event Flow" +msgstr "Fluxo de eventos" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +#, fuzzy +msgid "Axis ascending" +msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +#, fuzzy +msgid "Axis descending" +msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +#, fuzzy +msgid "Metric ascending" +msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +#, fuzzy +msgid "Metric descending" +msgstr "Ordenar decrescente" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "Ordenar por" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +#, fuzzy +msgid "Rendering" +msgstr "Ordenar decrescente" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 #, fuzzy -msgid "Dual Line Chart" -msgstr "Gráfico de bala" +msgid "heatmap" +msgstr "Mapa de Calor" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" msgstr "" -#: superset/common/query_object.py:291 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -#, fuzzy -msgid "Duplicate dataset" -msgstr "Editar Base de Dados" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Descrição" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" msgstr "" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -#, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -#, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -#, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #, fuzzy -msgid "ECharts" -msgstr "Mover gráfico" +msgid "Whether to include the percentage in the tooltip" +msgstr "Incluir um filtro temporal" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 #, fuzzy -msgid "ERROR" -msgstr "Erro" - -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" -msgstr "" +msgid "Value Format" +msgstr "Formato de valor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 #, fuzzy -msgid "Edge width" -msgstr "Largura" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Editar" +msgid "Density" +msgstr "Entidade" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 #, fuzzy -msgid "Edit Alert" -msgstr "Editar Tabela" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "Editar Visualização" - -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Modelos CSS" +msgid "Predictive" +msgstr "Acção" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 #, fuzzy -msgid "Edit CSS template properties" -msgstr "Editar propriedades da visualização" - -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Editar gráfico" +msgid "Single Metric" +msgstr "Lista de Métricas" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 #, fuzzy -msgid "Edit Chart Properties" -msgstr "Editar propriedades da visualização" - -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Editar Coluna" - -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Editar Dashboard" - -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Editar Base de Dados" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Editar Base de Dados" - -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Editar" - -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Editar Métrica" - -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Editar Coluna" +msgid "to" +msgstr "Parar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #, fuzzy -msgid "Edit Report" -msgstr "Janela de exibição" +msgid "count" +msgstr "Coluna" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 #, fuzzy -msgid "Edit Rule" -msgstr "Query vazia?" +msgid "cumulative" +msgstr "Acção" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Editar Query" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Editar Tabela" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 #, fuzzy -msgid "Edit annotation" -msgstr "Anotações" +msgid "No of Bins" +msgstr "Cópia de %s" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -#, fuzzy -msgid "Edit annotation layer" -msgstr "Camadas de anotação" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -#, fuzzy -msgid "Edit annotation layer properties" -msgstr "Camadas de anotação" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -#, fuzzy -msgid "Edit chart" -msgstr "Editar gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Editar propriedades da visualização" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 #, fuzzy -msgid "Edit dashboard" -msgstr "Editar Dashboard" +msgid "Cumulative" +msgstr "Acção" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#, fuzzy -msgid "Edit database" -msgstr "Editar Base de Dados" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 #, fuzzy -msgid "Edit dataset" -msgstr "Editar Base de Dados" +msgid "Distribution" +msgstr "Contribuição" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Editar propriedades da visualização" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Contribuição" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Query vazia?" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Calcular contribuição para o total" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Carregue um modelo" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +#, fuzzy +msgid "Series Height" +msgstr "Limite de série" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Editar propriedades da visualização" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 #, fuzzy -msgid "Edit the dashboard" -msgstr "Adicionar ao novo dashboard" +msgid "series" +msgstr "Séries" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Editar" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "Gerir" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +#, fuzzy +msgid "Horizon Chart" +msgstr "Gráfico de Horizonte" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" msgstr "" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 #, fuzzy -msgid "Elevation" -msgstr "Executar a query selecionada" +msgid "Dim Gray" +msgstr "Granularidade Temporal" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +#, fuzzy +msgid "Crimson" +msgstr "Acção" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "Cargos a permitir ao utilizador" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 #, fuzzy -msgid "Embed dashboard" -msgstr "Dashboard" +msgid "Points" +msgstr "Janela de exibição" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 #, fuzzy -msgid "Empty collection" -msgstr "Conexão de teste" +msgid "Miles" +msgstr "Filtros" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 #, fuzzy -msgid "Empty column" -msgstr "Coluna de tempo" +msgid "Kilometers" +msgstr "Filtros" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "" -#: superset/charts/data/api.py:366 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 #, fuzzy -msgid "Empty query result" -msgstr "Query vazia?" +msgid "label" +msgstr "Rótulo" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Query vazia?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Ativar Filtro de Seleção" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +#, fuzzy +msgid "max" +msgstr "Máx" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +#, fuzzy +msgid "Light" +msgstr "Altura" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +#, fuzzy +msgid "Satellite" +msgstr "Filtro de data" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Fim" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Opacidade" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 #, fuzzy -msgid "End angle" -msgstr "Granularidade Temporal" +msgid "RGB Color" +msgstr "Selecione uma cor" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "End date" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +#, fuzzy +msgid "Viewport" +msgstr "Janela de exibição" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "Data de inicio não pode ser posterior à data de fim" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +#, fuzzy +msgid "Default longitude" +msgstr "Latitude padrão" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 #, fuzzy -msgid "Engine Parameters" -msgstr "Nome do modelo" +msgid "Default latitude" +msgstr "Latitude padrão" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset/views/database/forms.py:161 -#, fuzzy -msgid "Enter a delimiter for this data" -msgstr "Insira um novo título para a aba" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -#, fuzzy -msgid "Enter a name for this sheet" -msgstr "Insira um novo título para a aba" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Insira um novo título para a aba" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 #, fuzzy -msgid "Enter duration in seconds" -msgstr "10 segundos" +msgid "MapBox" +msgstr "Mapbox" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Entidade" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -#, fuzzy -msgid "Entity ID" -msgstr "Entidade" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -#, fuzzy -msgid "Error" -msgstr "Erro" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 #, fuzzy -msgid "Error message" -msgstr "Mensagem de Aviso" +msgid "Options" +msgstr "Opções" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 #, fuzzy -msgid "Error while fetching charts" -msgstr "O carregamento de dados falhou" - -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, fuzzy, python-format -msgid "Error while fetching data: %s" -msgstr "O carregamento de dados falhou" - -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, fuzzy, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Erro ao carregar a lista de base de dados" - -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" -msgstr "" +msgid "Data Table" +msgstr "Editar Tabela" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 #, fuzzy -msgid "Estimate selected query cost" -msgstr "Executar a query selecionada" +msgid "Ranking" +msgstr "Mensagem de Aviso" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 #, fuzzy -msgid "Event" -msgstr "mês" +msgid "Coordinates" +msgstr "Coordenadas paralelas" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 #, fuzzy -msgid "Event Flow" -msgstr "Fluxo de eventos" +msgid "Directional" +msgstr "descrição" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 #, fuzzy -msgid "Event Names" -msgstr "Nome Detalhado" +msgid "Time Series Options" +msgstr "Colunas das séries temporais" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "Fluxo de eventos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#, fuzzy +msgid "Time Series" +msgstr "Tabela de séries temporais" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 #, fuzzy -msgid "Event time column" -msgstr "Coluna de tempo" +msgid "Aggregate Mean" +msgstr "Soma Agregada" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +#, fuzzy +msgid "Aggregate Sum" +msgstr "Soma Agregada" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +#, fuzzy +msgid "Percent Change" +msgstr "Modificado pela última vez" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +#, fuzzy +msgid "Factor" +msgstr "Criador" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Edite a configuração da origem de dados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "Análise Avançada" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -#, fuzzy -msgid "Executed SQL" -msgstr "Executar a query selecionada" - -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Executar a query selecionada" - -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 #, fuzzy -msgid "Execution ID" -msgstr "Registo de Acções" +msgid "Date Time Format" +msgstr "Formato de data e hora" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 #, fuzzy -msgid "Execution log" -msgstr "Registo de Acções" +msgid "Partition Limit" +msgstr "Diagrama de Partição" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -#, fuzzy -msgid "Expand table preview" -msgstr "Remover pré-visualização de tabela" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "expandir barra de ferramentas" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Explorar gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "Rolling" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "Rolling" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Exportar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "Período Mínimo" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "Exportar dashboards?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "Coluna de tempo" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "Mudança de hora" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 #, fuzzy -msgid "Export query" -msgstr "partilhar query" +msgid "1 week" +msgstr "semana" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 #, fuzzy -msgid "Export to .CSV" -msgstr "Exportar para .json" +msgid "28 days" +msgstr "dia" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 #, fuzzy -msgid "Export to .JSON" -msgstr "Exportar para .json" +msgid "52 weeks" +msgstr "semana" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 #, fuzzy -msgid "Export to Excel" -msgstr "Exportar para .json" +msgid "1 year" +msgstr "ano" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Exportar para .json" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +#, fuzzy +msgid "104 weeks" +msgstr "semana" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Exportar para .json" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "ano" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 #, fuzzy -msgid "Export to full .CSV" -msgstr "Exportar para o formato .csv" +msgid "156 weeks" +msgstr "semana" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +#, fuzzy +msgid "3 years" +msgstr "ano" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +#, fuzzy +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" +"Sobrepor série temporal de um período de tempo relativo. Espera valor de " +"variação temporal relativa em linguagem natural (exemplo: 24 horas, 7 " +"dias, 56 semanas, 365 dias)" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 #, fuzzy -msgid "Export to pivoted .CSV" -msgstr "Exportar para o formato .csv" +msgid "Actual Values" +msgstr "Valor de filtro" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Expor no SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Expor esta BD no SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Expressão" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -#, fuzzy -msgid "Extra Parameters" -msgstr "Nome do modelo" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#, fuzzy +msgid "Partition Chart" +msgstr "Diagrama de Partição" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 #, fuzzy -msgid "Extruded" -msgstr "textarea" +msgid "Nightingale Rose Chart" +msgstr "Série Temporal - Gráfico de linhas" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "Advanced-Analytics" +msgstr "Análise Avançada" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 #, fuzzy -msgid "Factor" -msgstr "Criador" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" -msgstr "" +msgid "Source / Target" +msgstr "Nome da origem de dados" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +#, fuzzy +msgid "Choose a source and a target" +msgstr "Escolha uma origem de dados" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "O carregamento dos resultados a partir do backend falhou" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 #, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "O carregamento dos resultados a partir do backend falhou" +msgid "Full name" +msgstr "Valor de filtro" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -msgid "Failed to save cross-filter scoping" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Favoritos" - -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Favoritos" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +#, fuzzy +msgid "Show Bubbles" +msgstr "Mostrar Tabela" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "Carregar Valores de Predicado" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +#, fuzzy +msgid "Max Bubble Size" +msgstr "Tamanho da bolha" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Obter pré-visualização de dados" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +#, fuzzy +msgid "Color by" +msgstr "Ordenar por" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +#, fuzzy +msgid "Country Column" +msgstr "Controlo de filtro" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#, fuzzy +msgid "3 letter code of the country" +msgstr "Código de 3 letras do país" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +#, fuzzy +msgid "Bubble Color" +msgstr "Selecione uma cor" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +#, fuzzy +msgid "Country Color Scheme" +msgstr "Esquema de cores lineares" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 #, fuzzy -msgid "Fill Color" -msgstr "Selecione uma cor" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "" +msgid "deck.gl charts" +msgstr "Gráfico de bala" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 #, fuzzy -msgid "Filled" -msgstr "Perfil" +msgid "Select charts" +msgstr "Gráfico de bala" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 #, fuzzy -msgid "Filter" -msgstr "Filtros" +msgid "Error while fetching charts" +msgstr "O carregamento de dados falhou" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" -msgstr "Controlo de filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Filtros" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -#, fuzzy -msgid "Filter Settings" -msgstr "Lista de Métricas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -#, fuzzy -msgid "Filter Type" -msgstr "Valor de filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box (deprecated)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 #, fuzzy -msgid "Filter charts" -msgstr "Controlo de filtro" +msgid "Arc" +msgstr "Pesquisa" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 #, fuzzy -msgid "Filter configuration" -msgstr "Controlo de filtro" +msgid "Target Color" +msgstr "Selecione uma cor" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -#, fuzzy -msgid "Filter menu" -msgstr "Valor de filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -#, fuzzy -msgid "Filter name" -msgstr "Valor de filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Análise Avançada" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -#, fuzzy -msgid "Filter results" -msgstr "Procurar Resultados" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -#, fuzzy -msgid "Filter set already exists" -msgstr "Origem de dados %(name)s já existe" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -#, fuzzy -msgid "Filter set with this name already exists" -msgstr "Origem de dados %(name)s já existe" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -#, fuzzy -msgid "Filter type" -msgstr "Valor de filtro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 #, fuzzy -msgid "Filter value is required" -msgstr "Origem de dados" +msgid "Aggregation" +msgstr "Soma Agregada" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Controlo de filtro" - -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filtrável" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filtros" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, fuzzy, python-format -msgid "Filters (%d)" -msgstr "Filtros de resultados" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 #, fuzzy -msgid "Filters by columns" -msgstr "Controlo de filtro" +msgid "Contours" +msgstr "Coluna" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -#, fuzzy -msgid "Filters by metrics" -msgstr "Lista de Métricas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 #, fuzzy -msgid "Filters configuration" -msgstr "Edite a configuração da origem de dados" +msgid "Weight" +msgstr "Altura" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "Gráfico de bala" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 #, fuzzy -msgid "Fixed" -msgstr "Modificado" +msgid "Line width unit" +msgstr "Largura" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 #, fuzzy -msgid "Fixed Color" -msgstr "Selecione uma cor" - -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Selecione uma cor" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" -msgstr "" +msgid "meters" +msgstr "Parâmetros" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +#, fuzzy +msgid "Longitude and Latitude" +msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Altura" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 #, fuzzy -msgid "Force" -msgstr "Fonte" +msgid "Intesity" +msgstr "Entidade" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 #, fuzzy -msgid "Force date format" -msgstr "Formato de data e hora" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Forçar atualização de dados" - -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "Forçar atualização de dados" - -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "Forçar atualização de dados" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" -msgstr "" +msgid "Intensity Radius" +msgstr "Entidade" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 #, fuzzy -msgid "Forest Green" -msgstr "Cargos a permitir ao utilizador" - -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "" +msgid "deck.gl Heatmap" +msgstr "Gráfico de bala" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 #, fuzzy -msgid "Formattable" -msgstr "Chaves para tabela" +msgid "variance" +msgstr "Análise Avançada" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#, fuzzy +msgid "deviation" +msgstr "descrição" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -#, fuzzy -msgid "Friction" -msgstr "Acção" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "Nome" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "Data de inicio não pode ser posterior à data de fim" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +#, fuzzy +msgid "Polygon Column" +msgstr "Coluna" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 #, fuzzy -msgid "Full name" -msgstr "Valor de filtro" +msgid "Polygon Encoding" +msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 #, fuzzy -msgid "Funnel Chart" -msgstr "Mover gráfico" +msgid "Elevation" +msgstr "Executar a query selecionada" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -#, fuzzy -msgid "GROUP BY" -msgstr "Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -#, fuzzy -msgid "Gauge Chart" -msgstr "Explorar gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Generic Chart" -msgstr "Mover gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 #, fuzzy -msgid "GeoJson Column" -msgstr "Coluna de tempo" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" -msgstr "" +msgid "Multiple filtering" +msgstr "Filtros" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 #, fuzzy -msgid "Grace period" -msgstr "Períodos" +msgid "Square meters" +msgstr "Parâmetros" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 #, fuzzy -msgid "Graph Chart" -msgstr "Explorar gráfico" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" -msgstr "" +msgid "Square kilometers" +msgstr "Filtro de data" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 #, fuzzy -msgid "Greater than (>)" -msgstr "Criado em" +msgid "Radius in meters" +msgstr "Parâmetros" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -#, fuzzy -msgid "Group By" -msgstr "Agrupar por" - -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -#, fuzzy -msgid "Group Key" -msgstr "Agrupar por" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Agrupar por" - -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Agrupável" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 #, fuzzy -msgid "Handlebars Template" -msgstr "Carregue um modelo" +msgid "Point Color" +msgstr "Selecione uma cor" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -#, fuzzy -msgid "Has created by" -msgstr "foi criado" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Subtítulo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Mapa de Calor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Altura" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -#, fuzzy -msgid "Hide chart description" -msgstr "Alternar descrição do gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -#, fuzzy -msgid "Hide layer" -msgstr "ocultar barra de ferramentas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -#, fuzzy -msgid "Hide password." -msgstr "Broker Port" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "ocultar barra de ferramentas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -#, fuzzy -msgid "Hides the Line for the time series" -msgstr "Métrica usada para definir a série superior" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -#, fuzzy -msgid "Hierarchy" -msgstr "Pesquisa" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Histograma" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -#, fuzzy -msgid "Horizon Chart" -msgstr "Gráfico de Horizonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." +msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Gráfico de Horizonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" msgstr "" -#: superset/db_engine_specs/base.py:105 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 #, fuzzy -msgid "Hour" -msgstr "hora" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, fuzzy, python-format -msgid "Hours %s" -msgstr "hora" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "" +msgid "Legend Position" +msgstr "Conexão de teste" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +#, fuzzy +msgid "Choose the position of the legend" +msgstr "Calcular contribuição para o total" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +#, fuzzy +msgid "Lines column" +msgstr "Coluna de tempo" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 #, fuzzy -msgid "Id" -msgstr "id:" +msgid "Line width" +msgstr "Largura" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +#, fuzzy +msgid "The width of the lines" +msgstr "O id da visualização ativa" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 #, fuzzy -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"Se Presto, todas as consultas no SQL Lab serão executadas como o " -"utilizador atualmente conectado que deve ter permissão para as executar. " -"
Se hive e hive.server2.enable.doAs estiver habilitado, serão " -"executadas as queries como conta de serviço, mas deve personificar o " -"utilizador atualmente conectado recorrendo à propriedade " -"hive.server2.proxy.user." +msgid "Fill Color" +msgstr "Selecione uma cor" -#: superset/views/database/mixins.py:165 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -"Se Presto, todas as consultas no SQL Lab serão executadas como o " -"utilizador atualmente conectado que deve ter permissão para as executar. " -"
Se hive e hive.server2.enable.doAs estiver habilitado, serão " -"executadas as queries como conta de serviço, mas deve personificar o " -"utilizador atualmente conectado recorrendo à propriedade " -"hive.server2.proxy.user." -#: superset/views/database/forms.py:174 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 #, fuzzy -msgid "If Table Already Exists" -msgstr "Origem de dados %(name)s já existe" +msgid "Stroke Color" +msgstr "Selecione uma cor" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +#, fuzzy +msgid "Filled" +msgstr "Perfil" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +#, fuzzy +msgid "Extruded" +msgstr "textarea" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -#, fuzzy -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "Personificar o utilizador conectado" - -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Personificar o utilizador conectado" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Importar" - -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Importar" - -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Importar Dashboards" - -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Importar Dashboards" - -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -#, fuzzy -msgid "Import charts" -msgstr "Mover gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Importar Dashboards" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 #, fuzzy -msgid "Import datasets" -msgstr "Editar Base de Dados" +msgid "GeoJson Column" +msgstr "Coluna de tempo" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 #, fuzzy -msgid "Import queries" -msgstr "Query vazia?" +msgid "Right Axis Format" +msgstr "Metric do Eixo Direito" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -#, fuzzy -msgid "In" -msgstr "Mín" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 #, fuzzy -msgid "Include time" -msgstr "Fim" +msgid "linear" +msgstr "ano" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Adicionar Coluna" - -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "mês" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +#, fuzzy +msgid "step-after" +msgstr "Modelos CSS" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 #, fuzzy -msgid "Instant filtering" -msgstr "Filtragem instantânea" +msgid "Show Range Filter" +msgstr "Filtros de resultados" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 #, fuzzy -msgid "Intensity" -msgstr "Entidade" +msgid "Whether to display the time range interactive selector" +msgstr "Mostrar opção de seleção do intervalo temporal" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -#, fuzzy -msgid "Intensity Radius" -msgstr "Entidade" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -#, fuzzy -msgid "Interval" -msgstr "Filtrável" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 #, fuzzy -msgid "Interval End column" -msgstr "Controlo de filtro" +msgid "X Axis Format" +msgstr "Formato do Eixo YY" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -#, fuzzy -msgid "Interval bounds" -msgstr "Controlo de filtro" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -#, fuzzy -msgid "Interval colors" -msgstr "Esquema de cores lineares" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -#, fuzzy -msgid "Interval start column" -msgstr "Controlo de filtro" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -#, fuzzy -msgid "Intervals" -msgstr "Filtrável" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -#, fuzzy -msgid "Intesity" -msgstr "Entidade" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +#, fuzzy +msgid "Bar Values" +msgstr "Valor de filtro" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset/databases/schemas.py:164 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Formato da Tabela Datahora" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +#, fuzzy +msgid "stream" +msgstr "Histograma" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +#, fuzzy +msgid "Area Chart (legacy)" +msgstr "Explorar gráfico" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +#, fuzzy +msgid "Line" +msgstr "Mín" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#, fuzzy +msgid "Deprecated" +msgstr "Criado em" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#, fuzzy +msgid "Series Limit Sort By" +msgstr "Limite de série" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#, fuzzy +msgid "Series Limit Sort Descending" +msgstr "Ordenar decrescente" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +#, fuzzy +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "Ordenar de forma descendente ou ascendente" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +#, fuzzy +msgid "Time-series Bar Chart (legacy)" +msgstr "Série Temporal - Gráfico de barras" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Box Plot" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "Is certified" -msgstr "foi criado" +msgid "Bubble Chart (legacy)" +msgstr "Explorar gráfico" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +#, fuzzy +msgid "Ranges" +msgstr "Gerir" -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "Favoritos" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -#, fuzzy -msgid "Is filterable" -msgstr "Filtrável" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "É temporal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +#, fuzzy +msgid "Marker labels" +msgstr "Etiquetas de marcadores" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" - -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "Metadados JSON" - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -#, fuzzy -msgid "JSON metadata" -msgstr "Atualizar coluna de metadados" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -#, fuzzy -msgid "JSON metadata is invalid!" -msgstr "Atualizar coluna de metadados" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "URL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +#, fuzzy +msgid "Time-series Percent Change" +msgstr "Série Temporal - Variação Percentual" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +#, fuzzy +msgid "Sort Bars" +msgstr "Ordenar por" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -#, fuzzy -msgid "Jinja templating" -msgstr "Carregue um modelo" - -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" msgstr "" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +#, fuzzy +msgid "Discrete" +msgstr "foi criado" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 #, fuzzy -msgid "Key" -msgstr "Sankey" +msgid "Category Name" +msgstr "nome da origem de dados" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "Chaves para tabela" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Mostrar valores das barras" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -#, fuzzy -msgid "Kilometers" -msgstr "Filtros" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -#, fuzzy -msgid "LIMIT" -msgstr "Limite de linha" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Rótulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset/utils/pandas_postprocessing/rename.py:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 #, fuzzy -msgid "Label already exists" -msgstr "Origem de dados %(name)s já existe" +msgid "Donut" +msgstr "mês" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Rótulo para a sua query" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 #, fuzzy -msgid "Label position" -msgstr "última partição:" +msgid "Show Labels" +msgstr "Mostrar Tabela" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 #, fuzzy -msgid "Labels" -msgstr "Rótulo" +msgid "Pie Chart (legacy)" +msgstr "Explorar gráfico" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Modificado pela última vez" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Última Alteração" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "Última Alteração" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +#, fuzzy +msgid "Time-series Period Pivot" +msgstr "Série temporal - teste emparelhado T" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 #, fuzzy -msgid "Last modified" -msgstr "Última Alteração" +msgid "Event" +msgstr "mês" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Última Alteração" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "Filtrável" + +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy -msgid "Last run" -msgstr "Modificado pela última vez" +msgid "Stream" +msgstr "Histograma" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 #, fuzzy -msgid "Layer configuration" -msgstr "Controlo de filtro" +msgid "Margin" +msgstr "Origem" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +#, fuzzy +msgid "Orientation" +msgstr "Anotações" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 #, fuzzy -msgid "Least recently modified" -msgstr "Última Alteração" +msgid "Bottom" +msgstr "dttm" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 #, fuzzy -msgid "Left" -msgstr "Eliminar" +msgid "Right" +msgstr "Altura" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 #, fuzzy -msgid "Left Axis Format" -msgstr "Formato do Eixo YY" +msgid "Legend Orientation" +msgstr "Anotações" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 #, fuzzy -msgid "Left Axis chart(s)" -msgstr "Selecione um esquema (%s)" +msgid "Show Value" +msgstr "Mostrar Tabela" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -#, fuzzy -msgid "Left value" -msgstr "Latitude padrão" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 #, fuzzy -msgid "Legend Orientation" -msgstr "Anotações" +msgid "Tooltip time format" +msgstr "Formato de data e hora" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 #, fuzzy -msgid "Legend Position" -msgstr "Conexão de teste" +msgid "Tooltip sort by metric" +msgstr "Lista de Métricas" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 #, fuzzy -msgid "Light" -msgstr "Altura" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" -msgstr "" +msgid "Sort Series Ascending" +msgstr "Ordenar decrescente" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Selecione métrica" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -#, fuzzy -msgid "Line" -msgstr "Mín" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 #, fuzzy -msgid "Line Chart" -msgstr "Mover gráfico" +msgid "Minor ticks" +msgstr "Lista de Métricas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -#, fuzzy -msgid "Line width" -msgstr "Largura" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -#, fuzzy -msgid "Linear Color Scheme" -msgstr "Esquema de cores lineares" - -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Esquema de cores lineares" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Metadados" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -#, fuzzy -msgid "Lines column" -msgstr "Coluna de tempo" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Copiado!" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Lista de Queries Gravadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +#, fuzzy +msgid "Tiny" +msgstr "Mín" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 #, fuzzy -msgid "Live CSS editor" -msgstr "Editor CSS em tempo real" +msgid "Subheader" +msgstr "Subtítulo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Carregue um modelo CSS" - -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Dados carregados em cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +#, fuzzy +msgid "Date format" +msgstr "Formato de data e hora" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Carregado da cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#, fuzzy +msgid "Force date format" +msgstr "Formato de data e hora" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Metadados adicionais" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 #, fuzzy -msgid "Locate the chart" -msgstr "Crie uma nova visualização" +msgid "Apply conditional color formatting to metric" +msgstr "Metadados adicionais" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 #, fuzzy -msgid "Log retention" -msgstr "Anotações" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" -msgstr "" +msgid "A Big Number" +msgstr "Número grande" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Número grande" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Login" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -#, fuzzy -msgid "Login with" -msgstr "Largura" - -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Sair" - -#: superset/views/log/__init__.py:21 -msgid "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -#, fuzzy -msgid "Longitude and Latitude" -msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Coluna Datahora principal" - -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" msgstr "" -#: superset/views/core.py:1752 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -"Pedido mal formado. Os argumentos slice_id ou table_name e db_name não " -"foram preenchidos" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Gerir" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +#, fuzzy +msgid "TEMPORAL X-AXIS" +msgstr "É temporal" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Número grande com linha de tendência" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "Map" -msgstr "Treemap" +msgid "Tukey" +msgstr "Query" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -#, fuzzy -msgid "MapBox" -msgstr "Mapbox" - -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Pesquisa" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -#, fuzzy -msgid "Margin" -msgstr "Origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 #, fuzzy -msgid "Marker labels" -msgstr "Etiquetas de marcadores" +msgid "ECharts" +msgstr "Mover gráfico" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +#, fuzzy +msgid "Bubble size number format" +msgstr "Escolha uma métrica para o eixo direito" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Gráfico de bolhas" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -#, fuzzy -msgid "Markup type" -msgstr "Tipo de marcação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Máx" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -#, fuzzy -msgid "Max Bubble Size" -msgstr "Tamanho da bolha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Escolha um tipo de visualização" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Maximum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "dia" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 #, fuzzy -msgid "Mean values" -msgstr "Valor de filtro" +msgid "Labels" +msgstr "Rótulo" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Conteúdo Criado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Conteúdo Criado" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 #, fuzzy -msgid "Message content" -msgstr "Conteúdo Criado" +msgid "Show Tooltip Labels" +msgstr "Mostrar Tabela" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 #, fuzzy -msgid "Metadata" -msgstr "Atualizar coluna de metadados" +msgid "Whether to display the tooltip labels." +msgstr "Selecione uma métrica para visualizar" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 #, fuzzy -msgid "Metadata Parameters" -msgstr "Nome do modelo" +msgid "Funnel Chart" +msgstr "Mover gráfico" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +#, fuzzy +msgid "Columns to group by" +msgstr "Um ou vários controles para agrupar" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Mín" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -#, fuzzy -msgid "Metric ascending" -msgstr "Ordenar decrescente" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Máx" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Métrica atribuída ao eixo [X]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Metrica atribuída ao eixo [Y]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +#, fuzzy +msgid "Start angle" +msgstr "Modificado pela última vez" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 #, fuzzy -msgid "Metric descending" -msgstr "Ordenar decrescente" +msgid "End angle" +msgstr "Granularidade Temporal" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 #, fuzzy -msgid "Metric name" -msgstr "nome da origem de dados" +msgid "Value format" +msgstr "Formato de valor" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 #, fuzzy -msgid "Metric to display bottom title" -msgstr "Selecione uma métrica para visualizar" +msgid "Animation" +msgstr "Anotações" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +#, fuzzy +msgid "Axis" +msgstr "Eixo YY" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +#, fuzzy +msgid "Split number" +msgstr "Número grande" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Métricas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +#, fuzzy +msgid "Overlap" +msgstr "Mapa Mundo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 #, fuzzy -msgid "Miles" -msgstr "Filtros" +msgid "Round cap" +msgstr "Mapa de País" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Mín" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" -msgstr "Período Mínimo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +#, fuzzy +msgid "Intervals" +msgstr "Filtrável" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 #, fuzzy -msgid "Min Width" -msgstr "Largura" +msgid "Interval bounds" +msgstr "Controlo de filtro" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 #, fuzzy -msgid "Min periods" -msgstr "Período Mínimo" +msgid "Interval colors" +msgstr "Esquema de cores lineares" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 #, fuzzy -msgid "Minimum" -msgstr "minuto" +msgid "Gauge Chart" +msgstr "Explorar gráfico" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +#, fuzzy +msgid "Source category" +msgstr "Nome da origem de dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Minimum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +#, fuzzy +msgid "Chart options" +msgstr "Editar propriedades da visualização" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 #, fuzzy -msgid "Minute" -msgstr "minuto" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, fuzzy, python-format -msgid "Minutes %s" -msgstr "minuto" +msgid "Force" +msgstr "Fonte" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -#, fuzzy -msgid "Missing URL parameters" -msgstr "Nome do modelo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -#, fuzzy -msgid "Missing dataset" -msgstr "Viz está sem origem de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -#, fuzzy -msgid "Mixed Chart" -msgstr "Mover gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Modificado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, fuzzy, python-format -msgid "Modified %s" -msgstr "Última Alteração" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -#, fuzzy -msgid "Modified by" -msgstr "Modificado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" msgstr "" -#: superset/db_engine_specs/base.py:109 -#, fuzzy -msgid "Month" -msgstr "mês" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, fuzzy, python-format -msgid "Months %s" -msgstr "mês" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 #, fuzzy -msgid "More" -msgstr "Fonte" +msgid "Disabled" +msgstr "Editar Tabela" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -#, fuzzy -msgid "More filters" -msgstr "Filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 #, fuzzy -msgid "Multiple Line Charts" -msgstr "Série Temporal - Gráfico de linhas" +msgid "Node size" +msgstr "Tamanho da bolha" -#: superset/views/database/views.py:468 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 #, fuzzy -msgid "Multiple filtering" -msgstr "Filtros" +msgid "Edge width" +msgstr "Largura" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset/reports/commands/exceptions.py:94 -#, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "Remover gráfico do dashboard" - -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Deve ter uma coluna [Agrupar por] para ter 'count' como [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Deve ser especificada uma coluna númerica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +#, fuzzy +msgid "Repulsion" +msgstr "Expressão" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +#, fuzzy +msgid "Friction" +msgstr "Acção" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -#, fuzzy -msgid "My column" -msgstr "Coluna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 #, fuzzy -msgid "My metric" -msgstr "Adicionar Métrica" +msgid "Graph Chart" +msgstr "Explorar gráfico" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Ordenar de forma descendente ou ascendente" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "NOT GROUPED BY" -msgstr "Agrupar por" +msgid "Series type" +msgstr "Limite de série" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -#, fuzzy -msgid "NUMERIC" -msgstr "Métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Nome" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset/views/database/forms.py:416 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 #, fuzzy -msgid "Name of table to be created from columnar data." -msgstr "Nome da tabela que existe na base de dados de origem" +msgid "Area chart" +msgstr "Explorar gráfico" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Nome da tabela que existe na base de dados de origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "" -#: superset/views/database/forms.py:129 -#, fuzzy -msgid "Name of table to be created with CSV file" -msgstr "Nome da tabela que existe na base de dados de origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Nome da tabela que existe na base de dados de origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 #, fuzzy -msgid "Name your database" -msgstr "Selecione uma base de dados" +msgid "Secondary" +msgstr "30 segundos" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +#, fuzzy +msgid "Shared query fields" +msgstr "query partilhada" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 #, fuzzy -msgid "Network error" -msgstr "Erro de rede." +msgid "Query A" +msgstr "Query" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Erro de rede." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +#, fuzzy +msgid "Advanced analytics Query A" +msgstr "Análise Avançada" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Mover gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +#, fuzzy +msgid "Query B" +msgstr "Query" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +#, fuzzy +msgid "Advanced analytics Query B" +msgstr "Análise Avançada" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -#, fuzzy -msgid "New dataset" -msgstr "Base de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -#, fuzzy -msgid "New dataset name" -msgstr "nome da origem de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -#, fuzzy -msgid "New filter set" -msgstr "Ativar Filtro de Seleção" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -#, fuzzy -msgid "New header" -msgstr "Mover gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "fechar aba" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -#, fuzzy -msgid "Nightingale Rose Chart" -msgstr "Série Temporal - Gráfico de linhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Não há acesso!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -#, fuzzy -msgid "No Data" -msgstr "Metadados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -#, fuzzy -msgid "No Results" -msgstr "ver resultados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 #, fuzzy -msgid "No Rules yet" +msgid "Mixed Chart" msgstr "Mover gráfico" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -#, fuzzy -msgid "No annotation layers" -msgstr "Camadas de anotação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Camadas de anotação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Camadas de anotação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 #, fuzzy -msgid "No applied filters" -msgstr "Adicionar filtro" +msgid "Show Total" +msgstr "Mostrar Tabela" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -#, fuzzy -msgid "No available filters." -msgstr "Filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Mover gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -#, fuzzy -msgid "No charts yet" -msgstr "Mover gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 #, fuzzy -msgid "No columns" -msgstr "Coluna" +msgid "Outer edge of Pie chart" +msgstr "O id da visualização ativa" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -#, fuzzy -msgid "No columns found" -msgstr "Coluna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +#, fuzzy +msgid "Pie Chart" +msgstr "Mover gráfico" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Sem dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 #, fuzzy -msgid "No dashboards yet" -msgstr "Sem dashboards" +msgid "Label position" +msgstr "última partição:" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Metadados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 #, fuzzy -msgid "No description available." -msgstr "descrição" - -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "Ainda não há dashboards favoritos, comece a clicar nas estrelas!" - -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Ainda não há dashboards favoritos, comece a clicar nas estrelas!" +msgid "Radar Chart" +msgstr "Explorar gráfico" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 #, fuzzy -msgid "No filter" -msgstr "Adicionar filtro" - -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "" +msgid "Primary Metric" +msgstr "Selecione uma métrica!" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 #, fuzzy -msgid "No filters" -msgstr "Filtros" +msgid "The primary metric is used to define the arc segment sizes" +msgstr "Métrica usada para definir a série superior" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 #, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "Secondary Metric" +msgstr "Métrica de cor" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#, fuzzy -msgid "No matching records found" -msgstr "Nenhum registo encontrado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 #, fuzzy -msgid "No of Bins" -msgstr "Cópia de %s" +msgid "Hierarchy" +msgstr "Pesquisa" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Nenhum registo encontrado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 #, fuzzy -msgid "No results" -msgstr "ver resultados" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Nenhum registo encontrado" +msgid "Sunburst Chart" +msgstr "Explorar gráfico" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +#, fuzzy +msgid "Generic Chart" +msgstr "Mover gráfico" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 #, fuzzy -msgid "No saved metrics found" -msgstr "Selecione métrica" +msgid "Series Style" +msgstr "Tabela de séries temporais" -#: superset-frontend/src/features/home/EmptyState.tsx:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 #, fuzzy -msgid "No saved queries yet" -msgstr "Queries Gravadas" +msgid "Area chart opacity" +msgstr "Explorar gráfico" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -#, fuzzy -msgid "No table columns" -msgstr "Ordenação original das colunas" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 #, fuzzy -msgid "No time columns" -msgstr "Coluna de tempo" - -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "" +msgid "Area Chart" +msgstr "Explorar gráfico" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +#, fuzzy +msgid "Axis Title" +msgstr "%s - sem título" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 #, fuzzy -msgid "Node size" -msgstr "Tamanho da bolha" +msgid "Axis Format" +msgstr "Formato do Eixo YY" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 #, fuzzy -msgid "Not added to any dashboard" -msgstr "Adicionar ao novo dashboard" +msgid "Bar orientation" +msgstr "Anotações" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +#, fuzzy +msgid "Orientation of bar chart" +msgstr "Gráfico de barras" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." msgstr "" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 #, fuzzy -msgid "Not in" -msgstr "Anotações" +msgid "Bar Chart" +msgstr "Explorar gráfico" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +#, fuzzy +msgid "Line Chart" +msgstr "Mover gráfico" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -#, fuzzy -msgid "Notification method" -msgstr "Metadados adicionais" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Início" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" msgstr "" -#: superset/views/database/forms.py:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 #, fuzzy -msgid "Null Values" -msgstr "Valor de filtro" +msgid "Id" +msgstr "id:" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" msgstr "" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Valor de filtro" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +#, fuzzy +msgid "Tree orientation" +msgstr "Anotações" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +#, fuzzy +msgid "left" +msgstr "Eliminar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 #, fuzzy -msgid "Numerical range" -msgstr "Granularidade Temporal" +msgid "top" +msgstr "Parar" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +#, fuzzy +msgid "right" +msgstr "Altura" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +#, fuzzy +msgid "bottom" +msgstr "dttm" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Offset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 #, fuzzy -msgid "One or many columns to pivot as columns" -msgstr "Um ou vários controles para pivotar como colunas" +msgid "Symbol" +msgstr "parafuso" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "Um ou vários controles para pivotar como colunas" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Uma ou várias métricas para exibir" - -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Uma ou várias métricas para exibir" - -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Uma ou várias métricas para exibir" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Uma ou várias métricas para exibir" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +#, fuzzy +msgid "Pin" +msgstr "Mín" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +#, fuzzy +msgid "Symbol size" +msgstr "Tamanho da bolha" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset/views/core.py:2029 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +#, fuzzy +msgid "Tree Chart" +msgstr "Explorar gráfico" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Copiar a instrução SELECT para a área de transferência" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +#, fuzzy +msgid "Key" +msgstr "Sankey" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Treemap" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "Criado em" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "Criado em" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Colunas das séries temporais" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Opacidade" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Gráfico de bala" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -#, fuzzy -msgid "Open Datasource tab" -msgstr "Nome da origem de dados" - -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Expor no SQL Lab" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Expor no SQL Lab" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#, fuzzy +msgid "Handlebars Template" +msgstr "Carregue um modelo" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 #, fuzzy -msgid "Operator" -msgstr "Selecione operador" +msgid "Include time" +msgstr "Fim" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +#, fuzzy +msgid "Percentage metrics" +msgstr "Selecione métrica" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 #, fuzzy -msgid "Options" -msgstr "Opções" +msgid "Sort descending" +msgstr "Ordenar decrescente" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 #, fuzzy -msgid "Orientation" -msgstr "Anotações" +msgid "Query mode" +msgstr "Nome do país" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 #, fuzzy -msgid "Orientation of bar chart" -msgstr "Gráfico de barras" +msgid "CSS Styles" +msgstr "Modelos CSS" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 #, fuzzy -msgid "Original" -msgstr "Origem" +msgid "Range for Comparison" +msgstr "Coluna de tempo" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Ordenação original das colunas" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "Coluna de tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -#, fuzzy -msgid "Other" -msgstr "mês" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -#, fuzzy -msgid "Outer edge of Pie chart" -msgstr "O id da visualização ativa" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -#, fuzzy -msgid "Overlap" -msgstr "Mapa Mundo" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -"Sobrepor série temporal de um período de tempo relativo. Espera valor de " -"variação temporal relativa em linguagem natural (exemplo: 24 horas, 7 " -"dias, 56 semanas, 365 dias)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 #, fuzzy -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +msgid "Cell limit" +msgstr "Limite de série" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -"Sobrepor série temporal de um período de tempo relativo. Espera valor de " -"variação temporal relativa em linguagem natural (exemplo: 24 horas, 7 " -"dias, 56 semanas, 365 dias)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 #, fuzzy -msgid "Override time grain" -msgstr "Granularidade Temporal" +msgid "Aggregation function" +msgstr "Função de agregação" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 #, fuzzy -msgid "Override time range" -msgstr "Granularidade Temporal" +msgid "Count" +msgstr "Coluna" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Substitua a visualização %s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Substitua a visualização %s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Substituir Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "" -#: superset/views/database/forms.py:247 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 #, fuzzy -msgid "Overwrite Duplicate Columns" -msgstr "Coluna Datahora principal" +msgid "Average" +msgstr "Gerir" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Substitua texto no editor com uma query nesta tabela" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Proprietário" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +#, fuzzy +msgid "Minimum" +msgstr "minuto" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Proprietários" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset/views/dashboard/mixin.py:64 -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/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "" -#: 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." -msgstr "Proprietários é uma lista de utilizadores que podem alterar o dashboard." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Método de preenchimento da remistura de pandas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Regra de remistura de pandas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Coordenadas paralelas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 #, fuzzy -msgid "Parameter error" -msgstr "Parâmetros" +msgid "Show rows subtotal" +msgstr "Mostrar Coluna" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parâmetros" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 #, fuzzy -msgid "Parameters " -msgstr "Parâmetros" +msgid "Show columns total" +msgstr "Mostrar Coluna" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "Mostrar Coluna" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 #, fuzzy -msgid "Partition Chart" -msgstr "Diagrama de Partição" +msgid "Combine metrics" +msgstr "Lista de Métricas" -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "Diagrama de Partição" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 #, fuzzy -msgid "Partition Limit" -msgstr "Diagrama de Partição" +msgid "Sort rows by" +msgstr "Ordenar por" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 #, fuzzy -msgid "Password" -msgstr "Broker Port" +msgid "value ascending" +msgstr "Ordenar decrescente" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +#, fuzzy +msgid "value descending" +msgstr "Ordenar decrescente" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 #, fuzzy -msgid "Percent Change" -msgstr "Modificado pela última vez" +msgid "Sort columns by" +msgstr "Ordenar colunas por ordem alfabética" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -#, fuzzy -msgid "Percentage metrics" -msgstr "Selecione métrica" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Períodos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +#, fuzzy +msgid "Conditional formatting" +msgstr "Metadados adicionais" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Tabela Pivot" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 #, fuzzy -msgid "Physical dataset" -msgstr "Escolha uma origem de dados" +msgid "No matching records found" +msgstr "Nenhum registo encontrado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "Escolha uma granularidade na secção Tempo ou desmarque 'Incluir hora'" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Selecione uma métrica para o eixo esquerdo!" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +#, fuzzy +msgid "Timestamp format" +msgstr "Formato da Tabela Datahora" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Selecione uma métrica para o eixo direito!" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Selecione uma métrica para x, y e tamanho" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +#, fuzzy +msgid "Search box" +msgstr "Pesquisa" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Selecione uma métrica para visualizar" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +#, fuzzy +msgid "Whether to include a client-side search box" +msgstr "Incluir um filtro temporal" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Selecione uma métrica!" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +#, fuzzy +msgid "Cell bars" +msgstr "Gráfico de bala" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Selecione uma granularidade para as suas séries temporais" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Escolha pelo menos um campo para [Séries]" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Selecione pelo menos uma métrica" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Selecione exatamente 2 colunas [Origem e Alvo]" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +#, fuzzy +msgid "Customize columns" +msgstr "Cláusula WHERE personalizada" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Escolha a sua linguagem de marcação favorita" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -#, fuzzy -msgid "Pie Chart" -msgstr "Mover gráfico" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 #, fuzzy -msgid "Pin" -msgstr "Mín" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Tabela Pivot" +msgid "entries" +msgstr "Séries" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -#, fuzzy -msgid "Pivoted" -msgstr "Editar" - -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." -msgstr "" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +#, fuzzy +msgid "Word Rotation" +msgstr "Anotações" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset/viz.py:3234 +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "Selecione pelo menos um campo \"Agrupar por\" " +msgid "offline" +msgstr "agregado" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Selecione métricas diferentes para o eixo esquerdo e direito" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +#, fuzzy +msgid "failed" +msgstr "Perfil" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +#, fuzzy +msgid "pending" +msgstr "Ordenar decrescente" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Por favor insira um nome para a visualização" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 #, fuzzy -msgid "Please filter set name" -msgstr "Por favor insira um nome para o dashboard" - -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "" +msgid "running" +msgstr "Mensagem de Aviso" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" -msgstr[1] "" +msgid "success" +msgstr "Não há acesso!" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "Não foi possível carregar a query" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "O carregamento dos resultados a partir do backend falhou" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Selecione métricas diferentes para o eixo esquerdo e direito" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "A query foi interrompida." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -#, fuzzy -msgid "Point Color" -msgstr "Selecione uma cor" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "Cópia de %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -#, fuzzy -msgid "Points" -msgstr "Janela de exibição" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -#, fuzzy -msgid "Polygon Column" -msgstr "Coluna" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 #, fuzzy -msgid "Polygon Encoding" -msgstr "Ordenar decrescente" +msgid "Your query was not properly saved" +msgstr "A sua query foi gravada" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "A sua query foi gravada" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "A sua query foi gravada" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "Ligação Abrir Aba" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "Ocorreu um erro ao criar a origem dos dados" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "Ocorreu um erro ao criar a origem dos dados" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 #, fuzzy -msgid "Port" -msgstr "Janela de exibição" +msgid "Shared query" +msgstr "query partilhada" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "Não foi possível carregar a query" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Ocorreu um erro ao criar a origem dos dados" + +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +#, fuzzy +msgid "An error occurred while fetching function names." +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 #, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" + +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" +msgstr "" + +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "Posição JSON" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +#, fuzzy +msgid "Estimate selected query cost" +msgstr "Executar a query selecionada" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" -msgstr "" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +#, fuzzy +msgid "Cost estimate" +msgstr "Modelos CSS" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" -msgstr "" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "A criar uma nova origem de dados, a exibir numa nova aba" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 #, fuzzy -msgid "Pre-filter" -msgstr "Filtro de data" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "" +msgid "explore" +msgstr "Explorar gráfico" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 #, fuzzy -msgid "Pre-filter is required" -msgstr "Origem de dados" +msgid "Create Chart" +msgstr "Crie uma nova visualização" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." -msgstr "" -"Predicado aplicado ao obter um valor distinto para preencher a componente" -" de controlo de filtro. Suporta a sintaxe jinja standard. Apenas se " -"aplica quando \"Ativar Filtro de Seleção\" está ativado." +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Fonte SQL" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy -msgid "Predictive" -msgstr "Acção" +msgid "Executed SQL" +msgstr "Executar a query selecionada" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Executar query" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Pré-visualização para %s" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Executar query" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Pré-visualização para %s" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Query vazia?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Pré-visualização para %s" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "fechar aba" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 #, fuzzy msgid "Previous Line" msgstr "Pré-visualização para %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 #, fuzzy -msgid "Primary Metric" -msgstr "Selecione uma métrica!" - -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" -msgstr "" +msgid "Format SQL" +msgstr "Formato D3" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "Mín" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +#, fuzzy +msgid "Run a query to display query history" +msgstr "Executar uma query para exibir resultados aqui" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +#, fuzzy +msgid "LIMIT" +msgstr "Limite de linha" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Estado" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 #, fuzzy -msgid "Private Key Password" -msgstr "Broker Port" +msgid "Started" +msgstr "Estado" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Descrição" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Perfil" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Resultados" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Foto de perfil fornecida por Gravatar" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Acção" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Editar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#, fuzzy +msgid "View" +msgstr "Pré-visualização para %s" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Pré-visualização de dados" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Substitua texto no editor com uma query nesta tabela" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Executar a query em nova aba" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Remover query do histórico" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Grave uma visualização" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Substitua a visualização %s" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Insira o seu código aqui" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +#, fuzzy +msgid "Copy to Clipboard" +msgstr "Copiar para área de transferência" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +#, fuzzy +msgid "Filter results" +msgstr "Procurar Resultados" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset/db_engine_specs/base.py:110 -#, fuzzy -msgid "Quarter" -msgstr "Query" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, fuzzy, python-format -msgid "Quarters %s" -msgstr "Opções do gráfico" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "Séries" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Query" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 #, python-format -msgid "Query %s: %s" +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -#, fuzzy -msgid "Query A" -msgstr "Query" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "Erro" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 #, fuzzy -msgid "Query B" -msgstr "Query" +msgid "Track job" +msgstr "Acompanhar trabalho" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Histórico de queries" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" +msgstr "" -#: superset/commands/exceptions.py:142 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 #, fuzzy -msgid "Query does not exist" -msgstr "Origem de dados %(name)s já existe" +msgid "Query was stopped" +msgstr "A query foi interrompida." -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 #, fuzzy -msgid "Query history" -msgstr "Histórico de queries" +msgid "Database error" +msgstr "Expressão de base de dados" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "foi criado" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 msgid "Query in a new tab" msgstr "Query numa nova aba" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -#, fuzzy -msgid "Query mode" -msgstr "Nome do país" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Obter pré-visualização de dados" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 #, fuzzy -msgid "Query name" -msgstr "Nome do país" +msgid "Refetch results" +msgstr "Procurar Resultados" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Pré-visualização de dados" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Parar" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 #, fuzzy -msgid "Query was stopped" -msgstr "A query foi interrompida." - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "A query foi interrompida." +msgid "Run selection" +msgstr "Executar a query selecionada" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -#, fuzzy -msgid "RGB Color" -msgstr "Selecione uma cor" - -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Não foi possível carregar a query" - -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "Modelos CSS" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -#, fuzzy -msgid "Radar Chart" -msgstr "Explorar gráfico" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Salvar" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 #, fuzzy -msgid "Radius in meters" -msgstr "Parâmetros" +msgid "Untitled Dataset" +msgstr "Editar Base de Dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Ocorreu um erro ao criar a origem dos dados" + +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 #, fuzzy -msgid "Range" -msgstr "Gerir" +msgid "Save as new" +msgstr "Grave uma visualização" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" +msgstr "" + +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 #, fuzzy -msgid "Range filter" -msgstr "Filtro de data" +msgid "Select or type dataset name" +msgstr "nome da origem de dados" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Indefinido" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 #, fuzzy -msgid "Ranges" -msgstr "Gerir" +msgid "Save dataset" +msgstr "Escolha uma origem de dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Gravar como" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 #, fuzzy -msgid "Ranking" -msgstr "Mensagem de Aviso" +msgid "Save query" +msgstr "partilhar query" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -#, fuzzy -msgid "Ratio" -msgstr "Descrição" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Cancelar" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -#, fuzzy -msgid "Ready to review filters in this dashboard?" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Rótulo para a sua query" + +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Escreva uma descrição para sua consulta" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 #, fuzzy -msgid "Recent activity" -msgstr "Atividade Recente" +msgid "Schedule query" +msgstr "Gravar query" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -#, fuzzy -msgid "Recently modified" -msgstr "Última Alteração" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Copiar query de partição para a área de transferência" + +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +#, fuzzy +msgid "Run a query to display results" +msgstr "Executar uma query para exibir resultados aqui" + +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Pré-visualização para %s" + +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +#, fuzzy +msgid "Query history" +msgstr "Histórico de queries" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Número de Registos" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "Redireciona para este endpoint ao clicar na tabela da respetiva lista" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "Permitir CREATE TABLE AS" + +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "Permitir CREATE TABLE AS" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 #, fuzzy -msgid "Refer to the" -msgstr "mês" +msgid "Select a database to write a query" +msgstr "Selecione uma base de dados" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 #, fuzzy -msgid "Refetch results" -msgstr "Procurar Resultados" - -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Intervalo de atualização" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Sem dashboards" - -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "" +msgid "Create" +msgstr "Criado em" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Refresh interval" -msgstr "Intervalo de atualização" +msgid "Collapse table preview" +msgstr "Remover pré-visualização de tabela" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 #, fuzzy -msgid "Refresh interval saved" -msgstr "Intervalo de atualização" +msgid "Expand table preview" +msgstr "Remover pré-visualização de tabela" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 #, fuzzy -msgid "Refresh table list" -msgstr "Forçar atualização de dados" +msgid "Reset state" +msgstr "Repor Estado" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -#, fuzzy -msgid "Refresh tables" -msgstr "Forçar atualização de dados" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Insira um novo título para a aba" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "fechar aba" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -#, fuzzy -msgid "Refreshing charts" -msgstr "Crie uma nova visualização" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "renomear aba" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -#, fuzzy -msgid "Refreshing columns" -msgstr "Atualizar coluna de metadados" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "expandir barra de ferramentas" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "ocultar barra de ferramentas" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 #, fuzzy -msgid "Relational" -msgstr "Descrição" +msgid "Add a new tab" +msgstr "Query numa nova aba" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -#, fuzzy -msgid "Relative period" -msgstr "Períodos" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -#, fuzzy -msgid "Reload" -msgstr "Criado em" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Ocorreu um erro ao carregar os metadados da tabela" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Copiar query de partição para a área de transferência" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "última partição:" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Chaves para tabela" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Ver chaves e índices (%s)" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Ordenação original das colunas" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Ordenar colunas por ordem alfabética" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Copiar a instrução SELECT para a área de transferência" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Remover pré-visualização de tabela" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Remover query do histórico" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Remover pré-visualização de tabela" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#, fuzzy +msgid "Jinja templating" +msgstr "Carregue um modelo" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "renomear aba" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Editar propriedades da visualização" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 #, fuzzy -msgid "Rendering" -msgstr "Ordenar decrescente" +msgid "Parameters " +msgstr "Parâmetros" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 #, fuzzy -msgid "Report" -msgstr "Janela de exibição" +msgid "Untitled query" +msgstr "Query sem título" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" -msgstr "Nome do modelo" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" +msgstr "" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +#, fuzzy +msgid "Before" +msgstr "Intervalo de atualização" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +#, fuzzy +msgid "After" +msgstr "Estado" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Clique para forçar atualização" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" msgstr "" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Modificado pela última vez" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Última Alteração" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Dados carregados em cache" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Carregado da cache" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Clique para forçar atualização" + +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -#, fuzzy -msgid "Report a bug" -msgstr "Janela de exibição" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -#, fuzzy -msgid "Report failed" -msgstr "Nome do modelo" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -#, fuzzy -msgid "Report name" -msgstr "Nome do modelo" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "A atualização do gráfico parou" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -#, fuzzy -msgid "Report schedule" -msgstr "" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset/reports/commands/exceptions.py:273 -#, fuzzy -msgid "Report schedule client error" -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Erro de rede." -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -#, fuzzy -msgid "Report sending" -msgstr "Ordenar decrescente" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -#, fuzzy -msgid "Report sent" -msgstr "Janela de exibição" - -#: superset-frontend/src/reports/actions/reports.js:121 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 #, fuzzy -msgid "Report updated" -msgstr "Nome do modelo" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Janela de exibição" +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 #, fuzzy -msgid "Repulsion" -msgstr "Expressão" +msgid "This visualization type does not support cross-filtering." +msgstr "Escolha um tipo de visualização" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Requisição de Permissão" - -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" msgstr "" -#: superset/charts/data/api.py:230 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 #, fuzzy -msgid "Request is not JSON" -msgstr "Requisição de Permissão" +msgid "Add cross-filter" +msgstr "Adicionar filtro" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "Lista de Colunas" -#: superset/utils/pandas_postprocessing/resample.py:46 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy -msgid "Resample method should in " -msgstr "Método de preenchimento da remistura de pandas" +msgid "No columns found" +msgstr "Coluna" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Não tem permissão para aprovar este pedido" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy -msgid "Reset state" -msgstr "Repor Estado" +msgid "Edit chart" +msgstr "Editar gráfico" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "Dashboard" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Filtros de resultados" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "Ordenar por" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Resultados" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " #: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "Resultados" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "" - -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -#, fuzzy -msgid "Right" -msgstr "Altura" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -#, fuzzy -msgid "Right Axis Format" -msgstr "Metric do Eixo Direito" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -#, fuzzy -msgid "Right Axis Metric" -msgstr "Metric do Eixo Direito" - -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Metric do Eixo Direito" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset/dashboards/filters.py:200 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 #, fuzzy -msgid "Role" -msgstr "Perfil" - -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "" -"O cargo %(r)s foi alargado para providenciar acesso à origem de dados " -"%(ds)s" - -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:375 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Cargo" - -#: 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 " -"defined, regular access permissions apply." -msgstr "" +msgid "Reload" +msgstr "Criado em" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Cargos a permitir ao utilizador" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" -msgstr "Rolling" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" -msgstr "Rolling" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Copiar para área de transferência" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 #, fuzzy -msgid "Rolling function" -msgstr "Rolling" +msgid "Copied to clipboard!" +msgstr "Copiar para área de transferência" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -#, fuzzy -msgid "Rolling window" -msgstr "Rolling" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "mês" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "Código de 3 letras do país" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 #, fuzzy -msgid "Round cap" -msgstr "Mapa de País" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "" +msgid "every minute" +msgstr "mês" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minuto" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" msgstr "" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Limite de linha" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "Mín" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Cargos a permitir ao utilizador" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 #, fuzzy -msgid "Rule Name" -msgstr "Valor de filtro" +msgid "minute(s)" +msgstr "5 minutos" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -#, fuzzy -msgid "Run a query to display query history" -msgstr "Executar uma query para exibir resultados aqui" - -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -#, fuzzy -msgid "Run a query to display results" -msgstr "Executar uma query para exibir resultados aqui" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Expor no SQL Lab" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Executar query" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Executar a query em nova aba" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -#, fuzzy -msgid "Run selection" -msgstr "Executar a query selecionada" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" msgstr "" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -#, fuzzy -msgid "SHA" -msgstr "Esquema" - -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "Copiado!" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "Expressão SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Pesquisa" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "Gravar query" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -#, fuzzy -msgid "SQL expression" -msgstr "Expressão" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "dia" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -#, fuzzy -msgid "SQL query" -msgstr "partilhar query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "URI SQLAlchemy" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -#, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "Não foi possível carregar a query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -#, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -#, fuzzy -msgid "SSH Tunnel not found." -msgstr "Modelos CSS" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -#, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "Camadas de anotação para sobreposição na visualização" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "Tabelas" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "URL" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "" -#: superset/explore/exceptions.py:45 -#, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 #, fuzzy -msgid "Satellite" -msgstr "Filtro de data" +msgid "There was an error loading the schemas" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Forçar atualização de dados" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Salvar" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Grave uma visualização" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Gravar e ir para o dashboard" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -#, fuzzy -msgid "Save & go to new dashboard" -msgstr "Gravar e ir para o dashboard" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Queries Gravadas" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Gravar como" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -#, fuzzy -msgid "Save as Dataset" -msgstr "Escolha uma origem de dados" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Conexão de teste" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 #, fuzzy -msgid "Save as dataset" +msgid "Swap dataset" msgstr "Escolha uma origem de dados" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#, fuzzy -msgid "Save as new" -msgstr "Grave uma visualização" - -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Gravar Dashboard" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "Gravar como" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Mensagem de Aviso" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Gravar como:" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Pesquisa / Filtro" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 #, fuzzy -msgid "Save changes" -msgstr "Modificado pela última vez" +msgid "Add item" +msgstr "Adicionar filtro" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -#, fuzzy -msgid "Save chart" -msgstr "Gráfico de Queijo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 #, fuzzy -msgid "Save dashboard" -msgstr "Gravar Dashboard" +msgid "NUMERIC" +msgstr "Métrica" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 #, fuzzy -msgid "Save dataset" -msgstr "Escolha uma origem de dados" - -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "" +msgid "DATETIME" +msgstr "Formato da datahora" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -#, fuzzy -msgid "Save query" -msgstr "partilhar query" - -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 #, fuzzy -msgid "Save to new dashboard" -msgstr "Gravar e ir para o dashboard" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Salvar" - -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Queries Gravadas" +msgid "Data type" +msgstr "Tabela de dados" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 #, fuzzy -msgid "Saved expressions" -msgstr "Expressão" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Selecione métrica" +msgid "Advanced data type" +msgstr "Dados carregados em cache" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 #, fuzzy -msgid "Saved queries" -msgstr "Queries Gravadas" - -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Não foi possível carregar a query" - -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "" +msgid "Advanced Data type" +msgstr "Dados carregados em cache" -#: superset/queries/saved_queries/commands/exceptions.py:40 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 #, fuzzy -msgid "Saved query parameters are invalid." -msgstr "Camadas de anotação para sobreposição na visualização" +msgid "Datetime format" +msgstr "Formato de data e hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." -msgstr "" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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 -msgid "Schedule query" -msgstr "Gravar query" +msgid "Certified by" +msgstr "Modificado" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +#, fuzzy +msgid "Default datetime" +msgstr "Latitude padrão" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +#, fuzzy +msgid "Is filterable" +msgstr "Filtrável" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +#, fuzzy +msgid "" +msgstr "Coluna de tempo" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Esquema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -#, fuzzy -msgid "Schema cache timeout" -msgstr "Tempo limite para cache" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "" -#: superset/views/core.py:1186 -#, fuzzy -msgid "Schema undefined" -msgstr "Indefinido" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" msgstr "" -"Esquema, como utilizado em algumas base de dados, como Postgres, Redshift" -" e DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Pesquisa" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "URL da Base de Dados" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Pesquisa / Filtro" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Colunas das séries temporais" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -#, fuzzy -msgid "Search all charts" -msgstr "Gráfico de bala" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Incluir um filtro temporal" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 #, fuzzy -msgid "Search all filter options" -msgstr "Pesquisa / Filtro" +msgid "Autocomplete query predicate" +msgstr "Carregar Valores de Predicado" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -#, fuzzy -msgid "Search box" -msgstr "Pesquisa" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 #, fuzzy -msgid "Search columns" -msgstr "Lista de Colunas" +msgid "Cache timeout" +msgstr "Tempo limite para cache" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 #, fuzzy -msgid "Search in filters" -msgstr "Pesquisa / Filtro" +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "O número de segundos antes de expirar a cache" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -#, fuzzy -msgid "Search tables" -msgstr "Selecione uma base de dados" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Pesquisa" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" -#: superset/db_engine_specs/base.py:97 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "Second" -msgstr "30 segundos" +msgid "Normalize column names" +msgstr "Cláusula WHERE personalizada" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 #, fuzzy -msgid "Secondary" -msgstr "30 segundos" +msgid "Always filter main datetime column" +msgstr "Coluna Datahora principal" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -#, fuzzy -msgid "Secondary Metric" -msgstr "Métrica de cor" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, fuzzy, python-format -msgid "Seconds %s" -msgstr "30 segundos" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Segurança" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 #, fuzzy -msgid "Secure extra" -msgstr "Segurança" +msgid "Dataset name" +msgstr "nome da origem de dados" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Segurança" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Segurança e Acesso" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 #, fuzzy -msgid "See less" -msgstr "Cargo do Utilizador" +msgid "Metric Key" +msgstr "Métrica" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +#, fuzzy +msgid "D3 format" +msgstr "Formato D3" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Selecione um esquema (%s)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 #, fuzzy -msgid "Select" -msgstr "Executar a query selecionada" - -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Selecione ..." +msgid "Warning" +msgstr "Mensagem de Aviso" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Select Viz Type" -msgstr "Selecione um tipo de visualização" +msgid "" +msgstr "Selecione métrica" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -#, fuzzy -msgid "Select a column" -msgstr "Coluna de tempo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 #, fuzzy -msgid "Select a dashboard" -msgstr "Por favor insira um nome para o dashboard" +msgid "Calculated columns" +msgstr "Lista de Colunas" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -#, fuzzy -msgid "Select a database table." -msgstr "Selecione uma base de dados" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "Esta origem de dados parece ter sido excluída" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Select a database to connect" -msgstr "Selecione uma base de dados" +msgid "Error saving dataset" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -#, fuzzy -msgid "Select a database to write a query" -msgstr "Selecione uma base de dados" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" msgstr "" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Selecione um tipo de visualização" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Editar Base de Dados" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -#, fuzzy -msgid "Select all data" -msgstr "Selecione uma base de dados" - -#: superset-frontend/src/components/Table/index.tsx:205 -#, fuzzy -msgid "Select all items" -msgstr "Filtros de resultados" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "Gráfico de bala" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "Eliminar" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#, fuzzy -msgid "Select charts" -msgstr "Gráfico de bala" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 #, fuzzy -msgid "Select color scheme" -msgstr "Esquema de cores lineares" +msgid "More" +msgstr "Fonte" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -#, fuzzy -msgid "Select column" -msgstr "Coluna de tempo" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "clique para editar o título" -#: superset-frontend/src/components/Table/index.tsx:208 -#, fuzzy -msgid "Select current page" -msgstr "Filtros de resultados" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Não tem direitos para alterar este título." -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -#, fuzzy -msgid "Select database & schema" -msgstr "Selecione um esquema (%s)" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "" + +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 #, fuzzy -msgid "Select database table" -msgstr "Selecione uma base de dados" +msgid "here" +msgstr "Séries" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "Fonte de dados" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:445 +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 #, fuzzy -msgid "Select file" -msgstr "Selecione uma base de dados" +msgid "Please reach out to the Chart Owner for assistance." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -#, fuzzy -msgid "Select filter" -msgstr "Filtros" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Opções do gráfico" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "Erro" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 #, fuzzy -msgid "Select operator" -msgstr "Selecione operador" +msgid "Missing dataset" +msgstr "Viz está sem origem de dados" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 #, fuzzy -msgid "Select or type dataset name" -msgstr "nome da origem de dados" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "" +msgid "See less" +msgstr "Cargo do Utilizador" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 #, fuzzy -msgid "Select saved metrics" -msgstr "Selecione métrica" +msgid "Copy message" +msgstr "Mensagem de Aviso" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Select scheme" -msgstr "Selecione um esquema (%s)" - -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Selecione uma base de dados" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +msgid "This was triggered by:" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +#, fuzzy +msgid "Parameter error" +msgstr "Parâmetros" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Clique para tornar favorito" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." -msgstr "" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +#, fuzzy +msgid "Cell content" +msgstr "Conteúdo Criado" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +#, fuzzy +msgid "Hide password." +msgstr "Broker Port" + +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +#, fuzzy +msgid "Show password." +msgstr "Mostrar Dashboard" + +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" -msgstr "" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +#, fuzzy +msgid "Database passwords" +msgstr "Expressão de base de dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "Broker Port" + +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Séries" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Substitua a visualização %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -#, fuzzy -msgid "Series Height" -msgstr "Limite de série" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Importar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -#, fuzzy -msgid "Series Limit Sort By" -msgstr "Limite de série" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Importar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +#: superset-frontend/src/components/ImportModal/index.tsx:445 #, fuzzy -msgid "Series Limit Sort Descending" -msgstr "Ordenar decrescente" +msgid "Select file" +msgstr "Selecione uma base de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -msgid "Series Order" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 #, fuzzy -msgid "Series Style" -msgstr "Tabela de séries temporais" +msgid "Sort" +msgstr "Janela de exibição" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Limite de série" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "Executar a query selecionada" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 +#: superset-frontend/src/components/ListView/ListView.tsx:384 #, fuzzy -msgid "Series type" -msgstr "Limite de série" +msgid "Deselect all" +msgstr "Repor Estado" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Intervalo de atualização" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +#, fuzzy +msgid "clear all filters" +msgstr "Filtros" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +#, fuzzy +msgid "No Data" +msgstr "Metadados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "Start date" +msgstr "Início" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 #, fuzzy -msgid "Share chart by email" -msgstr "Explorar gráfico" +msgid "Filter" +msgstr "Filtros" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 #, fuzzy -msgid "Shared query" -msgstr "query partilhada" +msgid "Last modified" +msgstr "Última Alteração" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 #, fuzzy -msgid "Shared query fields" -msgstr "query partilhada" - -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Nome Detalhado" +msgid "Modified by" +msgstr "Modificado" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +#, fuzzy +msgid "Created by" +msgstr "Criado em" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +#, fuzzy +msgid "Created on" +msgstr "Criado em" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Selecione ..." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:216 +#, fuzzy +msgid "Filter menu" +msgstr "Valor de filtro" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 +#: superset-frontend/src/components/Table/index.tsx:219 #, fuzzy -msgid "Show Bubbles" -msgstr "Mostrar Tabela" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "" +msgid "No filters" +msgstr "Filtros" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Modelos CSS" +#: superset-frontend/src/components/Table/index.tsx:220 +#, fuzzy +msgid "Select all items" +msgstr "Filtros de resultados" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Mostrar Dashboard" +#: superset-frontend/src/components/Table/index.tsx:221 +#, fuzzy +msgid "Search in filters" +msgstr "Pesquisa / Filtro" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Mostrar Coluna" +#: superset-frontend/src/components/Table/index.tsx:223 +#, fuzzy +msgid "Select current page" +msgstr "Filtros de resultados" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Mostrar Dashboard" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" +msgstr "" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Mostrar Base de Dados" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 +#: superset-frontend/src/components/Table/index.tsx:226 #, fuzzy -msgid "Show Labels" -msgstr "Mostrar Tabela" +msgid "Select all data" +msgstr "Selecione uma base de dados" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Mostrar totais" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Mostrar Métrica" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +#: superset-frontend/src/components/Table/index.tsx:230 #, fuzzy -msgid "Show Metric Names" -msgstr "Mostrar Métrica" +msgid "Click to sort descending" +msgstr "Ordenar de forma descendente ou ascendente" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 +#: superset-frontend/src/components/Table/index.tsx:231 #, fuzzy -msgid "Show Range Filter" -msgstr "Filtros de resultados" - -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Mostrar Query" - -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Mostrar Tabela" +msgid "Click to sort ascending" +msgstr "Ordenar de forma descendente ou ascendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -#, fuzzy -msgid "Show Total" -msgstr "Mostrar Tabela" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Selecione um esquema (%s)" + +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -#, fuzzy -msgid "Show Value" -msgstr "Mostrar Tabela" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Forçar atualização de dados" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 +#: superset-frontend/src/components/Tags/utils.tsx:72 #, fuzzy -msgid "Show Values" -msgstr "Mostrar Tabela" +msgid "You do not have permission to read tags" +msgstr "Não tem permissão para aprovar este pedido" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -#, fuzzy -msgid "Show all columns" -msgstr "Mostrar Coluna" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 #, fuzzy -msgid "Show chart description" -msgstr "Alternar descrição do gráfico" +msgid "This dashboard is now published" +msgstr "Editar propriedades do dashboard" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 #, fuzzy -msgid "Show columns total" -msgstr "Mostrar Coluna" +msgid "This dashboard is now hidden" +msgstr "Editar propriedades do dashboard" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "Não tem permissão para aceder à origem de dados: %(name)s." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 #, fuzzy -msgid "Show empty columns" -msgstr "Mostrar Coluna" +msgid "[ untitled dashboard ]" +msgstr "[Nome do dashboard]" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." -msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Dashboard gravado com sucesso." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -#, fuzzy -msgid "Show label" -msgstr "Mostrar Tabela" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "Não tem acesso a esta origem de dados" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -#, fuzzy -msgid "Show less columns" -msgstr "Mostrar Coluna" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Não foi possível ligar ao servidor" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -#, fuzzy -msgid "Show password." -msgstr "Mostrar Dashboard" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Existem alterações por gravar." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Crie uma nova visualização" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +#, fuzzy +msgid "Edit the dashboard" +msgstr "Adicionar ao novo dashboard" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 #, fuzzy -msgid "Show time column" -msgstr "Coluna de tempo" +msgid "Refresh interval saved" +msgstr "Intervalo de atualização" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 #, fuzzy -msgid "Show time grain dropdown" -msgstr "Selecione para incluir seleção da Origem do tempo" +msgid "Refresh interval" +msgstr "Intervalo de atualização" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Escolha um nome para o novo dashboard" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +#, fuzzy +msgid "Save dashboard" +msgstr "Gravar Dashboard" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Substituir Dashboard [%s]" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Gravar como:" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[Nome do dashboard]" + +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +#, fuzzy +msgid "viz type" +msgstr "Tipo" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Crie uma nova visualização" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Controlo de filtro" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +#, fuzzy +msgid "Filter charts" +msgstr "Controlo de filtro" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, fuzzy, python-format +msgid "Sort by %s" +msgstr "Ordenar por" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +msgid "Unknown type" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +#, fuzzy +msgid "Viz type" +msgstr "Tipo" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Base de dados" + +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Explorar gráfico" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Verificar dashboard: %s" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" -msgstr "" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Carregue um modelo CSS" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 #, fuzzy -msgid "Single Metric" -msgstr "Lista de Métricas" +msgid "Live CSS editor" +msgstr "Editor CSS em tempo real" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -#, fuzzy -msgid "Single Value" -msgstr "Valor de filtro" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 #, fuzzy -msgid "Single value" -msgstr "Valor de filtro" +msgid "There are no charts added to this dashboard" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +#, fuzzy +msgid "Deactivate" +msgstr "Acção" -#: superset/commands/exceptions.py:119 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 #, fuzzy -msgid "Some roles do not exist" -msgstr "Dashboards" +msgid "Save changes" +msgstr "Modificado pela última vez" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" +msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "Adicionar filtro" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, fuzzy, python-format +msgid "Applied filters (%d)" +msgstr "Adicionar filtro" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#, fuzzy +msgid "Add the name of the dashboard" +msgstr "Gravar e ir para o dashboard" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "Dashboard" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#, fuzzy +msgid "Undo the action" +msgstr "Executar a query selecionada" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +#, fuzzy +msgid "Discard" +msgstr "Dashboard" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +#, fuzzy +msgid "Edit dashboard" +msgstr "Editar Dashboard" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +#, fuzzy +msgid "Refreshing charts" +msgstr "Crie uma nova visualização" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 #, fuzzy -msgid "Sort" -msgstr "Janela de exibição" +msgid "Superset dashboard" +msgstr "Gravar Dashboard" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Verificar dashboard: %s" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Sem dashboards" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Editar propriedades da visualização" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Editar Visualização" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 #, fuzzy -msgid "Sort Bars" -msgstr "Ordenar por" +msgid "Export to PDF" +msgstr "Exportar para .json" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" -msgstr "Ordenar decrescente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" -msgstr "Mostrar Métrica" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 #, fuzzy -msgid "Sort Series Ascending" -msgstr "Ordenar decrescente" +msgid "Copy permalink to clipboard" +msgstr "Copiar query de partição para a área de transferência" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -msgid "Sort Series By" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" +msgstr "Dashboard" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Intervalo de atualização" + +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 #, fuzzy -msgid "Sort ascending" -msgstr "Ordenar decrescente" +msgid "Confirm overwrite" +msgstr "Substitua a visualização %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" +msgstr "" + +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 #, fuzzy, python-format -msgid "Sort by %s" -msgstr "Ordenar por" +msgid "Last Updated %s by %s" +msgstr "Última Alteração" + +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 +#: 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:66 #, fuzzy -msgid "Sort by metric" -msgstr "Mostrar Métrica" +msgid "Error" +msgstr "Erro" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Ordenar colunas por ordem alfabética" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 #, fuzzy -msgid "Sort columns by" -msgstr "Ordenar colunas por ordem alfabética" +msgid "JSON metadata is invalid!" +msgstr "Atualizar coluna de metadados" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 #, fuzzy -msgid "Sort descending" -msgstr "Ordenar decrescente" +msgid "Dashboard properties updated" +msgstr "Editar propriedades do dashboard" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -#, fuzzy -msgid "Sort filter values" -msgstr "Filtrável" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Dashboard gravado com sucesso." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -#, fuzzy -msgid "Sort metric" -msgstr "Mostrar Métrica" +#: 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!" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -#, fuzzy -msgid "Sort rows by" -msgstr "Ordenar por" +#: 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." +msgstr "Proprietários é uma lista de utilizadores que podem alterar o dashboard." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Cor" + +#: 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 " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 #, fuzzy -msgid "Sort type" -msgstr "Tipo de gráfico" +msgid "Dashboard properties" +msgstr "Editar propriedades do dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Fonte" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 #, fuzzy -msgid "Source / Target" -msgstr "Nome da origem de dados" +msgid "Basic information" +msgstr "Metadados adicionais" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Fonte SQL" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -#, fuzzy -msgid "Source category" -msgstr "Nome da origem de dados" +#: 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" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: 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 "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +#, fuzzy +msgid "JSON metadata" +msgstr "Atualizar coluna de metadados" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -#, fuzzy -msgid "Split number" -msgstr "Número grande" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -#, fuzzy -msgid "Square kilometers" -msgstr "Filtro de data" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -#, fuzzy -msgid "Square meters" -msgstr "Parâmetros" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Camadas de anotação para sobreposição na visualização" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +#, fuzzy +msgid "Data refreshed" +msgstr "Não atualize" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Início" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Forçar atualização de dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +#, fuzzy +msgid "Hide chart description" +msgstr "Alternar descrição do gráfico" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 #, fuzzy -msgid "Start Review" -msgstr "Pré-visualização de dados" +msgid "Show chart description" +msgstr "Alternar descrição do gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Start angle" -msgstr "Modificado pela última vez" +msgid "Cross-filtering scoping" +msgstr "Perfil" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "partilhar query" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 #, fuzzy -msgid "Start date" -msgstr "Início" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "" +msgid "View as table" +msgstr "fechar aba" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "Opções do gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +#, fuzzy +msgid "Share chart by email" +msgstr "Explorar gráfico" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 #, fuzzy -msgid "Started" -msgstr "Estado" +msgid "Check out this chart: " +msgstr "Verificar dashboard: %s" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Estado" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +#, fuzzy +msgid "Export to .CSV" +msgstr "Exportar para .json" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +#, fuzzy +msgid "Export to Excel" +msgstr "Exportar para .json" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +#, fuzzy +msgid "Export to full .CSV" +msgstr "Exportar para o formato .csv" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Estado" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Exportar para .json" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Pesquisa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Parar" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Query vazia?" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Selecione qualquer coluna para inspeção de metadados" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +#, fuzzy +msgid "An error occurred while opening Explore" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 #, fuzzy -msgid "Stream" -msgstr "Histograma" +msgid "Empty column" +msgstr "Coluna de tempo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 #, fuzzy -msgid "Stroke Color" -msgstr "Selecione uma cor" +msgid "create a new chart" +msgstr "Crie uma nova visualização" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Estilo do mapa" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Por favor insira um nome para o dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -#, fuzzy -msgid "Subheader" -msgstr "Subtítulo" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Subtítulo" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" -msgstr "" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#, fuzzy +msgid "Text" +msgstr "textarea" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Pré-visualização para %s" + +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +#, fuzzy +msgid "Add/Edit Filters" +msgstr "Adicionar filtro" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#, fuzzy +msgid "No filters are currently added to this dashboard." +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #, fuzzy -msgid "Sum values" -msgstr "Valor de filtro" +msgid "Apply filters" +msgstr "Filtros" -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 #, fuzzy -msgid "Sunburst Chart" -msgstr "Explorar gráfico" +msgid "Locate the chart" +msgstr "Crie uma nova visualização" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy -msgid "Sunburst Chart v2" -msgstr "Explorar gráfico" +msgid "Cross-filters" +msgstr "Perfil" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -#, fuzzy -msgid "Superset Chart" -msgstr "Explorar gráfico" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Explorar gráfico" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Gráfico de bala" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 #, fuzzy -msgid "Superset dashboard" -msgstr "Gravar Dashboard" +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#, fuzzy -msgid "Supported databases" -msgstr "Selecione uma base de dados" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Gráfico de bala" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -#, fuzzy -msgid "Swap dataset" -msgstr "Escolha uma origem de dados" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#, fuzzy +msgid "More filters" +msgstr "Filtros" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 #, fuzzy -msgid "Symbol" -msgstr "parafuso" +msgid "No applied filters" +msgstr "Adicionar filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "Adicionar filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -#, fuzzy -msgid "Symbol size" -msgstr "Tamanho da bolha" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 #, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "É temporal" +msgid "Filter type" +msgstr "Valor de filtro" -#: superset-frontend/src/explore/constants.ts:91 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 #, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "É temporal" +msgid "Title is required" +msgstr "Origem de dados" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -#, fuzzy -msgid "Tab name" -msgstr "Nome da Tabela" - -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +#, fuzzy +msgid "[untitled]" +msgstr "%s - sem título" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "A tabela %(t)s não foi encontrada na base de dados %(d)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "Filtro de Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +#, fuzzy +msgid "Add and edit filters" +msgstr "Adicionar filtro" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Nome da Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +#, fuzzy +msgid "Column select" +msgstr "Coluna" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Vista de tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +#, fuzzy +msgid "Select a column" +msgstr "Coluna de tempo" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -"Tabela [{}] não encontrada, por favor verifique conexão à base de dados, " -"esquema e nome da tabela" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" msgstr "" -"Tabela [{}] não encontrada, por favor verifique conexão à base de dados, " -"esquema e nome da tabela" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 #, fuzzy -msgid "Table cache timeout" -msgstr "Tempo limite para cache" +msgid "Select a dataset" +msgstr "Selecione uma base de dados" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 #, fuzzy -msgid "Table columns" -msgstr "Coluna de tempo" +msgid "Value is required" +msgstr "Origem de dados" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Nome da Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "Filtros" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "Uma ou várias métricas para exibir" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Adicionar filtro" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tabelas" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" msgstr "" -#: superset/tags/commands/exceptions.py:34 -#, fuzzy -msgid "Tag could not be created." -msgstr "Não foi possível gravar a sua query" - -#: superset/tags/commands/exceptions.py:38 -#, fuzzy -msgid "Tag could not be deleted." -msgstr "Não foi possível carregar a query" - -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset/tags/commands/exceptions.py:30 -#, fuzzy -msgid "Tag parameters are invalid." -msgstr "Camadas de anotação para sobreposição na visualização" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Controlo de filtro" -#: superset/tags/commands/exceptions.py:42 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 #, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "Não foi possível carregar a query" +msgid "Filter Settings" +msgstr "Lista de Métricas" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 #, fuzzy -msgid "Tags" -msgstr "Estado" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" -msgstr "" +msgid "Select filter" +msgstr "Filtros" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 #, fuzzy -msgid "Target" -msgstr "Início" +msgid "Range filter" +msgstr "Filtro de data" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 #, fuzzy -msgid "Target Color" -msgstr "Selecione uma cor" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" -msgstr "" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "" - -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Nome do modelo" +msgid "Numerical range" +msgstr "Granularidade Temporal" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Nome do modelo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +#, fuzzy +msgid "Time filter" +msgstr "Filtro de data" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." -msgstr "" -"Ligação predefinida, é possível incluir {{ metric }} ou outros valores " -"provenientes dos controlos." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Granularidade Temporal" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Coluna de tempo" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Conexão de teste" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Granularidade Temporal" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 #, fuzzy -msgid "Test connection" -msgstr "Conexão de teste" +msgid "Group By" +msgstr "Agrupar por" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Agrupar por" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 #, fuzzy -msgid "Text" -msgstr "textarea" +msgid "Pre-filter is required" +msgstr "Origem de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +#, fuzzy +msgid "Filter name" +msgstr "Valor de filtro" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" msgstr "" -"O css para dashboards individuais pode ser alterado aqui ou na vista de " -"dashboard, onde as mudanças são imediatamente visíveis" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +#, fuzzy +msgid "Filter Type" +msgstr "Valor de filtro" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +#, fuzzy +msgid "Dataset is required" +msgstr "Origem de dados" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "Os pedidos de acesso parecem ter sido eliminados" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +#, fuzzy +msgid "Pre-filter" +msgstr "Filtro de data" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 #, fuzzy -msgid "The annotation has been saved" -msgstr "Dashboard gravado com sucesso." +msgid "No filter" +msgstr "Adicionar filtro" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 #, fuzzy -msgid "The annotation has been updated" -msgstr "Dashboard gravado com sucesso." +msgid "Sort filter values" +msgstr "Filtrável" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +#, fuzzy +msgid "Sort type" +msgstr "Tipo de gráfico" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +#, fuzzy +msgid "Sort ascending" +msgstr "Ordenar decrescente" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Mostrar Métrica" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/common/query_context_processor.py:585 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 #, fuzzy -msgid "The chart datasource does not exist" -msgstr "Origem de dados %(name)s já existe" +msgid "Sort metric" +msgstr "Mostrar Métrica" -#: superset/common/query_context_processor.py:583 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 #, fuzzy -msgid "The chart does not exist" -msgstr "Origem de dados %(name)s já existe" +msgid "Single Value" +msgstr "Valor de filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "O esquema de cores para o gráfico de renderização" - -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Latitude padrão" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 #, fuzzy -msgid "The column header label" -msgstr "Ordenar colunas por ordem alfabética" +msgid "Default value is required" +msgstr "Origem de dados" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "Dashboard gravado com sucesso." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "Esta origem de dados parece ter sido excluída" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Filtros de resultados" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +#, fuzzy +msgid "Column is required" +msgstr "Origem de dados" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -"O tipo de dados que foi inferido pela base de dados. Pode ser necessário " -"inserir um tipo manualmente para colunas definidas por expressões em " -"alguns casos. A maioria dos casos não requer alteração por parte do " -"utilizador." -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset/sqllab/commands/estimate.py:58 -#, fuzzy -msgid "The database could not be found" -msgstr "Visualização %(id)s não encontrada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" +msgstr "" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" msgstr "" -#: superset/errors.py:99 -msgid "The database is under an unusual load." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" msgstr "" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset/errors.py:144 -#, fuzzy -msgid "The database was deleted." -msgstr "Esta origem de dados parece ter sido excluída" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -#, fuzzy -msgid "The database was not found." -msgstr "Visualização %(id)s não encontrada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +#, fuzzy +msgid "There are unsaved changes." +msgstr "Existem alterações por gravar." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "Esta origem de dados parece ter sido excluída" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." +msgstr "" + +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 #, fuzzy -msgid "The dataset linked to this chart may have been deleted." -msgstr "Esta origem de dados parece ter sido excluída" +msgid "White" +msgstr "Título" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "Não foi possível carregar a query" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Filtros" -#: superset/errors.py:98 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, fuzzy, python-format +msgid "Click to edit %s." +msgstr "clique para editar o título" + +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 #, fuzzy -msgid "The datasource is too large to query." -msgstr "Origem de dados" +msgid "Click to edit chart." +msgstr "clique para editar o título" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "Query numa nova aba" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 #, fuzzy -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "O número de segundos antes de expirar a cache" +msgid "New header" +msgstr "Mover gráfico" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." +#: superset-frontend/src/explore/constants.ts:65 +#, fuzzy +msgid "Greater than (>)" +msgstr "Criado em" + +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "Mín" + +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "Anotações" + +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "O id da visualização ativa" +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" +msgstr "" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -"A lista de visualizações associadas a esta tabela. Ao alterar a origem de" -" dados, o comportamento das visualizações associadas poderá ser alterado." -" Observe também que as visualizações tem que apontar para uma origem de " -"dados, este formulário falhará na poupança se forem removidas " -"visualizações da origem de dados. Se quiser alterar a origem de dados de " -"uma visualização, atualize a visualização na \"vista de exploração\"" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/explore/constants.ts:83 +#, fuzzy +msgid "use latest_partition template" +msgstr "última partição:" + +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +#: superset-frontend/src/explore/constants.ts:89 +#, fuzzy +msgid "TEMPORAL_RANGE" +msgstr "É temporal" + +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Granularidade temporal" + +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset/databases/schemas.py:222 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Uma ou várias métricas para exibir" + +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Selecione uma cor" + +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Metric do Eixo Direito" + +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Escolha uma métrica para o eixo direito" + +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Esquema de cores lineares" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Métrica de cor" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Um ou vários controles para pivotar como colunas" + +#: superset-frontend/src/explore/controls.jsx:271 +#, fuzzy msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" +"O tempo de granularidade para a visualização. Observe que você pode " +"digitar e usar linguagem natural simples, em inglês, como `10 seconds`, " +"`1 day` ou `56 weeks`" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" +"A granularidade temporal para a visualização. Aplica uma transformação de" +" data para alterar a coluna de tempo e define uma nova granularidade " +"temporal. As opções são definidas por base de dados no código-fonte do " +"Superset." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -"O número mínimo de períodos de rolamento necessários para mostrar um " -"valor. Por exemplo, numa soma cumulativa de 7 dias é possível que o " -"\"Período Mínimo\" seja 7, de forma a que todos os pontos de dados " -"mostrados sejam o total de 7 períodos. Esta opção esconde a " -"\"aceleração\" que ocorre nos primeiros 7 períodos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" +"Define o agrupamento de entidades. Cada série corresponde a uma cor " +"específica no gráfico e tem uma alternância de legenda" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Métrica atribuída ao eixo [X]" + +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Metrica atribuída ao eixo [Y]" + +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Tamanho da bolha" + +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Esquema de cores" + +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +#, fuzzy +msgid "An error occurred while starring this chart" +msgstr "Ocorreu um erro ao criar a origem dos dados" + +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "Esta origem de dados parece ter sido excluída" + +#: superset-frontend/src/explore/actions/saveModalActions.js:145 #, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#: superset-frontend/src/explore/actions/saveModalActions.js:153 #, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 +#: superset-frontend/src/explore/actions/saveModalActions.js:163 #, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" +msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#, fuzzy +msgid "GROUP BY" +msgstr "Agrupar por" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "O número de segundos antes de expirar a cache" - -#: superset/errors.py:134 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 #, fuzzy -msgid "The object does not exist in the given database." -msgstr "Nome da tabela que existe na base de dados de origem" - -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -msgstr[1] "" +msgid "NOT GROUPED BY" +msgstr "Agrupar por" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:93 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset/errors.py:109 -msgid "The port is closed." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" msgstr "" -#: superset/errors.py:142 -msgid "The port number is invalid." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "" + +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 #, fuzzy -msgid "The primary metric is used to define the arc segment sizes" -msgstr "Métrica usada para definir a série superior" +msgid "Chart width" +msgstr "Mover gráfico" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Queries Gravadas" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "Gravar como" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Tipo de gráfico" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "Não foi possível carregar a query" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "nome da origem de dados" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Adicionar ao novo dashboard" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +#, fuzzy +msgid "Select a dashboard" +msgstr "Por favor insira um nome para o dashboard" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +#, fuzzy +msgid "Select" +msgstr "Executar a query selecionada" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "Dashboard" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "Criado em" -#: superset-frontend/src/reports/actions/reports.js:110 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #, fuzzy -msgid "The report has been created" -msgstr "Esta origem de dados parece ter sido excluída" +msgid " a new one" +msgstr "Alterado em" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Não foi possível gravar a sua query" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Não foi possível gravar a sua query" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Não foi possível gravar a sua query" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Gravar e ir para o dashboard" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." -msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +#, fuzzy +msgid "Save chart" +msgstr "Gráfico de Queijo" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" msgstr "" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" msgstr "" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "Tabelas" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +#, fuzzy +msgid "No results" +msgstr "ver resultados" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" -"A tabela foi criada. Como parte deste processo de configuração de duas " -"fases, deve agora clicar no botão Editar, na nova tabela, para " -"configurá-lo." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Colunas das séries temporais" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "Criado em" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" msgstr "" -"A coluna de tempo para a visualização. Note que é possível definir uma " -"expressão arbitrária que resolve uma coluna DATATEMPO na tabela ou. " -"Observe também que o filtro em baixo é aplicado sobre esta coluna ou " -"expressão" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -"O tempo de granularidade para a visualização. Observe que você pode " -"digitar e usar linguagem natural simples, em inglês, como `10 seconds`, " -"`1 day` ou `56 weeks`" -#: superset-frontend/src/explore/controls.jsx:271 -#, fuzzy -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -"O tempo de granularidade para a visualização. Observe que você pode " -"digitar e usar linguagem natural simples, em inglês, como `10 seconds`, " -"`1 day` ou `56 weeks`" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -"A granularidade temporal para a visualização. Aplica uma transformação de" -" data para alterar a coluna de tempo e define uma nova granularidade " -"temporal. As opções são definidas por base de dados no código-fonte do " -"Superset." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Adicionar ao novo dashboard" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "Adicionar ao novo dashboard" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "O tipo de visualização a ser exibida" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +#, fuzzy +msgid "Add the name of the chart" +msgstr "O id da visualização ativa" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "Mover gráfico" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "O utilizador parece ter sido eliminado" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -#, fuzzy -msgid "The width of the lines" -msgstr "O id da visualização ativa" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 +msgid "" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" +msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 #, fuzzy -msgid "There are no charts added to this dashboard" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "Chart Source" +msgstr "Fonte de dados" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +#, fuzzy +msgid "Open Datasource tab" +msgstr "Nome da origem de dados" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +#, fuzzy +msgid "Original" +msgstr "Origem" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +#, fuzzy +msgid "Pivoted" +msgstr "Editar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Não tem permissão para aprovar este pedido" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 #, fuzzy -msgid "There are unsaved changes." -msgstr "Existem alterações por gravar." +msgid "Chart properties updated" +msgstr "Editar propriedades da visualização" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." -msgstr "" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#, fuzzy +msgid "Edit Chart Properties" +msgstr "Editar propriedades da visualização" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -#, fuzzy -msgid "There was an error fetching dataset" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -#, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Contribuição" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 #, fuzzy -msgid "There was an error fetching tables" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, fuzzy, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "Proprietários é uma lista de utilizadores que podem alterar o dashboard." -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "Create chart" +msgstr "Crie uma nova visualização" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 #, fuzzy -msgid "There was an error loading the dataset metadata" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "Update chart" +msgstr "Explorar gráfico" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -#, fuzzy -msgid "There was an error loading the schemas" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, fuzzy, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "" + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "" + +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "textarea" + +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "em modal" + +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +#, fuzzy +msgid "Save as Dataset" +msgstr "Escolha uma origem de dados" + +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Expor no SQL Lab" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "There was an issue deleting the selected %s: %s" +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +#, fuzzy +msgid "No annotation layers" +msgstr "Camadas de anotação" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" +msgstr "Camadas de anotação" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +#, fuzzy +msgid "Annotation layer" +msgstr "Camadas de anotação" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 #, python-format -msgid "There was an issue deleting the selected layers: %s" +msgid "" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +msgid "" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +#, fuzzy +msgid "Annotation layer value" +msgstr "Camadas de anotação" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 #, fuzzy -msgid "There was an issue duplicating the dataset." -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "Annotation Slice Configuration" +msgstr "Edite a configuração da origem de dados" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, fuzzy, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "Camadas de anotação" -#: superset-frontend/src/reports/actions/reports.js:68 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 #, fuzzy -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +msgid "Interval start column" +msgstr "Controlo de filtro" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +#, fuzzy +msgid "Event time column" +msgstr "Coluna de tempo" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +#, fuzzy +msgid "Annotation layer interval end" +msgstr "Camadas de anotação" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, fuzzy, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +#, fuzzy +msgid "Interval End column" +msgstr "Controlo de filtro" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, fuzzy, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "Camadas de anotação" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, fuzzy, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +#, fuzzy +msgid "Title Column" +msgstr "Coluna de tempo" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +#, fuzzy +msgid "Annotation layer description columns" +msgstr "Camadas de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +#, fuzzy +msgid "Description Columns" +msgstr "descrição" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -"Há um loop no gráfico Sankey, por favor, forneça uma ligação correta. " -"Aqui está a conexão defeituosa: {}" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +#, fuzzy +msgid "Override time range" +msgstr "Granularidade Temporal" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset/views/chart/mixin.py:63 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "Granularidade Temporal" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -"Os parâmetros são gerados dinamicamente ao clicar no botão Guardar ou " -"Substituir na vista de exibição. Este objeto JSON é exposto aqui para " -"referência e para utilizadores avançados que desejam alterar parâmetros " -"específicos." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -"Este objeto JSON é gerado dinamicamente ao clicar no botão salvar ou " -"substituir na exibição do painel. É exposto aqui para referência e para " -"usuários avançados que desejam alterar parâmetros específicos." -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +#, fuzzy +msgid "Annotation layer stroke" +msgstr "Camadas de anotação" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Estilo do mapa" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#, fuzzy +msgid "Dashed" +msgstr "Dashboard" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +#, fuzzy +msgid "Dotted" +msgstr "Editar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +#, fuzzy +msgid "Annotation layer opacity" +msgstr "Camadas de anotação" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Cor" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +#, fuzzy +msgid "Hides the Line for the time series" +msgstr "Métrica usada para definir a série superior" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +#, fuzzy +msgid "Layer configuration" +msgstr "Controlo de filtro" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +#, fuzzy +msgid "Hide layer" +msgstr "ocultar barra de ferramentas" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +#, fuzzy +msgid "Show label" +msgstr "Mostrar Tabela" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 #, fuzzy -msgid "This dashboard is now hidden" -msgstr "Editar propriedades do dashboard" +msgid "Annotation layer type" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 #, fuzzy -msgid "This dashboard is now published" -msgstr "Editar propriedades do dashboard" +msgid "Choose the annotation layer type" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +#, fuzzy +msgid "Annotation source type" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "Camadas de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Dashboard gravado com sucesso." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +#, fuzzy +msgid "Time series" +msgstr "Tabela de séries temporais" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +#, fuzzy +msgid "Edit annotation layer" +msgstr "Camadas de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +#, fuzzy +msgid "Add annotation layer" +msgstr "Camadas de anotação" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +#, fuzzy +msgid "Empty collection" +msgstr "Conexão de teste" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +#, fuzzy +msgid "Add an item" +msgstr "Adicionar filtro" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This database table does not contain any data. Please select a different " -"table." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "Dashboard" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Esta opção define o elemento a ser desenhado no gráfico" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +#, fuzzy +msgid "Dashboard scheme" +msgstr "[Nome do dashboard]" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 #, fuzzy -msgid "This defines the level of the hierarchy" -msgstr "Esta opção define o elemento a ser desenhado no gráfico" +msgid "Select color scheme" +msgstr "Esquema de cores lineares" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "" -"Este campo atua como uma vista do Superset, o que significa que o " -"Superset vai correr uma query desta string como uma subquery." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +#, fuzzy +msgid "Select scheme" +msgstr "Selecione um esquema (%s)" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +#, fuzzy +msgid "Show less columns" +msgstr "Mostrar Coluna" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +#, fuzzy +msgid "Show all columns" +msgstr "Mostrar Coluna" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +#, fuzzy +msgid "Min Width" +msgstr "Largura" -#: superset/views/dashboard/mixin.py:46 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -"Este objeto JSON descreve o posicionamento das visualizações no " -"dashboard. É gerado dinamicamente quando se ajusta a dimensão e " -"posicionamento de uma visualização utilizando o drag & drop na vista de " -"dashboard" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -"Esta seção contém opções que permitem o pós-processamento analítico " -"avançado de resultados da query" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" -msgstr "" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 #, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "Escolha um tipo de visualização" - -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Escolha um tipo de visualização" +msgid "Display" +msgstr "Nome do modelo" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 #, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" -msgstr[1] "" +msgid "Number formatting" +msgstr "Escolha uma métrica para o eixo direito" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Erro" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Não há acesso!" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 #, fuzzy -msgid "Time Column" -msgstr "Coluna de tempo" +msgid "alert dark" +msgstr "Início" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" -msgstr "Coluna de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -#, fuzzy -msgid "Time Format" -msgstr "Formato de data e hora" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -#, fuzzy -msgid "Time Grain" -msgstr "Granularidade Temporal" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy -msgid "Time Granularity" -msgstr "Granularidade temporal" +msgid "Operator" +msgstr "Selecione operador" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy -msgid "Time Lag" -msgstr "Granularidade Temporal" +msgid "Left value" +msgstr "Latitude padrão" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "Granularidade Temporal" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -#, fuzzy -msgid "Time Ratio" -msgstr "Granularidade Temporal" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy -msgid "Time Series" -msgstr "Tabela de séries temporais" - -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Série Temporal - Gráfico de barras" - -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Série Temporal - Gráfico de linha de dois eixos" +msgid "Select column" +msgstr "Coluna de tempo" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Série Temporal - Gráfico de linhas" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +#, fuzzy +msgid "Color: " +msgstr "Cor" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Série Temporal - Gráfico de linhas" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" +msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Série Temporal - Gráfico de linhas" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" +msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Série temporal - teste emparelhado T" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "agregado" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Série Temporal - Variação Percentual" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" +msgstr "" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "Série temporal - teste emparelhado T" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " +msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Série Temporal - Barras Sobrepostas" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +#, fuzzy +msgid "The width of the Isoline in pixels" +msgstr "O id da visualização ativa" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 #, fuzzy -msgid "Time Series Options" -msgstr "Colunas das séries temporais" +msgid "The color of the isoline" +msgstr "O id da visualização ativa" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" -msgstr "Mudança de hora" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" +msgstr "" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "Visualização da tabela de tempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "Coluna de tempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -#, fuzzy -msgid "Time comparison" -msgstr "Coluna de tempo" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -#, fuzzy -msgid "Time filter" -msgstr "Filtro de data" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -#, fuzzy -msgid "Time format" -msgstr "Formato de data e hora" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Granularidade Temporal" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 #, fuzzy -msgid "Time grain filter plugin" -msgstr "Granularidade Temporal" +msgid "Edit dataset" +msgstr "Editar Base de Dados" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Granularidade Temporal" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" -msgstr "Granularidade temporal" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Expor no SQL Lab" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "10 segundos" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Pré-visualização de dados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Time lag" -msgstr "Granularidade Temporal" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Granularidade Temporal" +msgid "Save as dataset" +msgstr "Escolha uma origem de dados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 #, fuzzy -msgid "Time ratio" -msgstr "Granularidade Temporal" +msgid "Missing URL parameters" +msgstr "Nome do modelo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Atributos de formulário relacionados ao tempo" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 #, fuzzy -msgid "Time series" -msgstr "Tabela de séries temporais" +msgid "The dataset linked to this chart may have been deleted." +msgstr "Esta origem de dados parece ter sido excluída" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -#, fuzzy -msgid "Time series columns" -msgstr "Colunas das séries temporais" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -#, fuzzy -msgid "Time shift" -msgstr "Mudança de hora" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -#, fuzzy -msgid "Time-series Area Chart" -msgstr "Série Temporal - Gráfico de barras" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -#, fuzzy -msgid "Time-series Bar Chart" -msgstr "Série Temporal - Gráfico de barras" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -#, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "Série Temporal - Gráfico de barras" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Time-series Chart" -msgstr "Tabela de séries temporais" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -#, fuzzy -msgid "Time-series Line Chart" -msgstr "Série Temporal - Gráfico de linhas" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -#, fuzzy -msgid "Time-series Percent Change" -msgstr "Série Temporal - Variação Percentual" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -#, fuzzy -msgid "Time-series Period Pivot" -msgstr "Série temporal - teste emparelhado T" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 #, fuzzy -msgid "Time-series Scatter Plot" -msgstr "Tabela de séries temporais" +msgid "Relative period" +msgstr "Períodos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -#, fuzzy -msgid "Time-series Smooth Line" -msgstr "Tabela de séries temporais" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Formato da datahora" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -#, fuzzy -msgid "Time-series Stepped Line" -msgstr "Tabela de séries temporais" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Tabela de séries temporais" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -#, fuzzy -msgid "Timestamp format" -msgstr "Formato da Tabela Datahora" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Diferença do fuso horário (em horas) para esta fonte de dados" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Pré-visualização para %s" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -#, fuzzy -msgid "Tiny" -msgstr "Mín" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +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: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 -msgid "Title" -msgstr "Título" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +#, fuzzy +msgid "last week" +msgstr "semana" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 #, fuzzy -msgid "Title Column" -msgstr "Coluna de tempo" +msgid "last month" +msgstr "mês" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 #, fuzzy -msgid "Title is required" -msgstr "Origem de dados" +msgid "last year" +msgstr "Cluster" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Obter um URL legível para o seu dashboard" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -#, fuzzy -msgid "Tools" -msgstr "Cargo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, fuzzy, python-format +msgid "Seconds %s" +msgstr "30 segundos" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, fuzzy, python-format +msgid "Minutes %s" +msgstr "minuto" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -#, fuzzy -msgid "Tooltip sort by metric" -msgstr "Lista de Métricas" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, fuzzy, python-format +msgid "Hours %s" +msgstr "hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -#, fuzzy -msgid "Tooltip time format" -msgstr "Formato de data e hora" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, fuzzy, python-format +msgid "Days %s" +msgstr "dia" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -#, fuzzy -msgid "Top" -msgstr "Parar" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, fuzzy, python-format +msgid "Weeks %s" +msgstr "semana" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, fuzzy, python-format +msgid "Months %s" +msgstr "mês" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, fuzzy, python-format +msgid "Quarters %s" +msgstr "Opções do gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, fuzzy, python-format +msgid "Years %s" +msgstr "ano" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 #, fuzzy -msgid "Total value" -msgstr "Valor de filtro" +msgid "Saved expressions" +msgstr "Expressão" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Salvar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Total: %s" -msgstr "" +msgid "%s column(s)" +msgstr "Lista de Colunas" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -#, fuzzy -msgid "Track job" -msgstr "Acompanhar trabalho" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -#, fuzzy -msgid "Tree Chart" -msgstr "Explorar gráfico" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 #, fuzzy -msgid "Tree orientation" -msgstr "Anotações" +msgid " to add calculated columns" +msgstr "Lista de Colunas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Treemap" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +#, fuzzy +msgid "My column" +msgstr "Coluna" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 #, fuzzy -msgid "Truncate Metric" -msgstr "Selecione métrica" +msgid "Click to edit label" +msgstr "clique para editar o título" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" +msgstr "Opções" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#, fuzzy -msgid "Tukey" -msgstr "Query" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Tipo" - -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "Type \"%s\" to confirm" -msgstr "" +msgid "%s operator(s)" +msgstr "Selecione operador" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +#, fuzzy +msgid "Select operator" +msgstr "Selecione operador" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 msgid "Type a value here" msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#, fuzzy +msgid "Failed to retrieve advanced type" +msgstr "O carregamento dos resultados a partir do backend falhou" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Selecionar [%s]" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +#, fuzzy +msgid "Filters by columns" +msgstr "Controlo de filtro" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 #, fuzzy -msgid "UI Configuration" -msgstr "Contribuição" +msgid "Filters by metrics" +msgstr "Lista de Métricas" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +#, fuzzy +msgid "metric" +msgstr "Métrica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "Parâmetros" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +#, fuzzy +msgid "Fixed" +msgstr "Modificado" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 #, fuzzy -msgid "URL parameters" -msgstr "Parâmetros" +msgid "Based on a metric" +msgstr "Selecione métrica" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +#, fuzzy +msgid "My metric" +msgstr "Adicionar Métrica" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Adicionar Métrica" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset/db_engine_specs/presto.py:704 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgid "%s aggregates(s)" msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +#, fuzzy +msgid "Select saved metrics" +msgstr "Selecione métrica" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unable to connect to database \"%(database)s\"." +msgid "%s saved metric(s)" msgstr "" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Selecione métrica" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#, fuzzy +msgid "No saved metrics found" +msgstr "Selecione métrica" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "Adicionar Métrica" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "Coluna" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "Soma Agregada" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, fuzzy, python-format +msgid "Error while fetching data: %s" +msgstr "O carregamento de dados falhou" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +#, fuzzy +msgid "Time series columns" +msgstr "Colunas das séries temporais" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#, fuzzy +msgid "Actual value" +msgstr "Valor de filtro" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#, fuzzy +msgid "The column header label" +msgstr "Ordenar colunas por ordem alfabética" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Largura" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset/views/database/views.py:415 -#, python-format +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#, fuzzy +msgid "Time lag" +msgstr "Granularidade Temporal" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Indefinido" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +#, fuzzy +msgid "Time Lag" +msgstr "Granularidade Temporal" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +#, fuzzy +msgid "Time ratio" +msgstr "Granularidade Temporal" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 #, fuzzy -msgid "Undo the action" -msgstr "Executar a query selecionada" +msgid "Time Ratio" +msgstr "Granularidade Temporal" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" msgstr "" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +#, fuzzy +msgid "Column Configuration" +msgstr "Contribuição" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +#, fuzzy +msgid "Select Viz Type" +msgstr "Selecione um tipo de visualização" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -msgid "Unknown type" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +#, fuzzy +msgid "Search all charts" +msgstr "Gráfico de bala" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +#, fuzzy +msgid "No description available." +msgstr "descrição" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Escolha um tipo de visualização" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#, fuzzy +msgid "View all charts" +msgstr "Gráfico de bala" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Selecione um tipo de visualização" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Nenhum registo encontrado" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +#, fuzzy +msgid "Superset Chart" +msgstr "Explorar gráfico" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Mover gráfico" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Editar propriedades da visualização" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +#, fuzzy +msgid "Dashboards added to" +msgstr "[Nome do dashboard]" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +#, fuzzy +msgid "Export to pivoted .CSV" +msgstr "Exportar para o formato .csv" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +#, fuzzy +msgid "Export to .JSON" +msgstr "Exportar para .json" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Expor no SQL Lab" + +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Código" + +#: superset-frontend/src/explore/controlPanels/Separator.js:32 #, fuzzy -msgid "Untitled Dataset" -msgstr "Editar Base de Dados" +msgid "Markup type" +msgstr "Tipo de marcação" -#: superset/views/sql_lab/views.py:148 -msgid "Untitled Query" -msgstr "Query sem título" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Escolha a sua linguagem de marcação favorita" + +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Insira o seu código aqui" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 #, fuzzy -msgid "Untitled query" -msgstr "Query sem título" +msgid "URL parameters" +msgstr "Parâmetros" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 #, fuzzy -msgid "Update chart" -msgstr "Explorar gráfico" +msgid "Annotations and layers" +msgstr "Camadas de anotação" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "A atualização do gráfico parou" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +#, fuzzy +msgid "Annotation layers" +msgstr "Camadas de anotação" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -#, fuzzy -msgid "Upload CSV to database" -msgstr "Selecione uma base de dados" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" msgstr "" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Metadados adicionais" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 #, fuzzy -msgid "Upload file to database" -msgstr "Selecione uma base de dados" +msgid "Edit Report" +msgstr "Janela de exibição" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +#, fuzzy +msgid "Edit Alert" +msgstr "Editar Tabela" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +#, fuzzy +msgid "Add Report" +msgstr "Janela de exibição" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +#, fuzzy +msgid "Add Alert" +msgstr "Gráfico de Queijo" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +#, fuzzy +msgid "Report name" +msgstr "Nome do modelo" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +#, fuzzy +msgid "Alert name" +msgstr "Tipo de gráfico" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Acção" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +#, fuzzy +msgid "Alert condition" +msgstr "Conexão de teste" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "Gravar query" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "Query numa nova aba" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +#, fuzzy +msgid "Condition" +msgstr "Contribuição" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#, fuzzy +msgid "Report schedule" msgstr "" -#: superset/views/database/forms.py:472 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 #, fuzzy -msgid "Use Columns" -msgstr "Lista de Colunas" +msgid "Alert condition schedule" +msgstr "Conexão de teste" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +#, fuzzy +msgid "Log retention" +msgstr "Anotações" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "10 segundos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +#, fuzzy +msgid "seconds" +msgstr "30 segundos" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +#, fuzzy +msgid "Grace period" +msgstr "Períodos" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +#, fuzzy +msgid "Message content" +msgstr "Conteúdo Criado" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +#, fuzzy +msgid "Notification method" +msgstr "Metadados adicionais" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "Janela de exibição" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "%s - sem título" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Utilizador" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" +msgstr "" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Cargo do Utilizador" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +#, fuzzy +msgid "CRON expression" +msgstr "Expressão" -#: superset/errors.py:118 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 #, fuzzy -msgid "User doesn't have the proper permissions." -msgstr "Não tem direitos para alterar este título." +msgid "Report sent" +msgstr "Janela de exibição" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +#, fuzzy +msgid "Report sending" +msgstr "Ordenar decrescente" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "partilhar query" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +#, fuzzy +msgid "Report failed" +msgstr "Nome do modelo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 #, fuzzy -msgid "Username" -msgstr "Nome do país" +msgid "Alert failed" +msgstr "Nome da Tabela" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +#, fuzzy +msgid "Delivery method" +msgstr "mês" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Mostrar valores das barras" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 #, fuzzy -msgid "Value Format" -msgstr "Formato de valor" +msgid "Queries" +msgstr "Séries" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "Camadas de anotação" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 #, fuzzy -msgid "Value format" -msgstr "Formato de valor" +msgid "Annotation template updated" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 #, fuzzy -msgid "Value is required" -msgstr "Origem de dados" +msgid "Annotation template created" +msgstr "Camadas de anotação" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 #, fuzzy -msgid "Value must be greater than 0" -msgstr "Data de inicio não pode ser posterior à data de fim" +msgid "Edit annotation layer properties" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +#, fuzzy +msgid "Annotation layer name" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "Anotações" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +#, fuzzy +msgid "The annotation has been updated" +msgstr "Dashboard gravado com sucesso." -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Nome Detalhado" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +#, fuzzy +msgid "The annotation has been saved" +msgstr "Dashboard gravado com sucesso." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +#, fuzzy +msgid "Edit annotation" +msgstr "Anotações" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#, fuzzy +msgid "Add annotation" +msgstr "Anotações" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +#, fuzzy +msgid "Additional information" +msgstr "Metadados adicionais" + +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#, fuzzy -msgid "View" -msgstr "Pré-visualização para %s" +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, fuzzy, python-format +msgid "Modified %s" +msgstr "Última Alteração" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 #, fuzzy -msgid "View Dataset" -msgstr "Escolha uma origem de dados" +msgid "Edit CSS template properties" +msgstr "Editar propriedades da visualização" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 #, fuzzy -msgid "View all charts" -msgstr "Gráfico de bala" +msgid "Add CSS template" +msgstr "Modelos CSS" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -#, fuzzy -msgid "View as table" -msgstr "fechar aba" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Expor no SQL Lab" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Ver chaves e índices (%s)" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "partilhar query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, fuzzy, python-format -msgid "Viewed %s" -msgstr "Pré-visualização para %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -#, fuzzy -msgid "Viewport" -msgstr "Janela de exibição" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -#, fuzzy -msgid "Virtual dataset" -msgstr "Editar Base de Dados" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +msgid "" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +msgid "" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +msgid "" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Tipo de Visualização" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Tipo de Visualização" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +#, fuzzy +msgid "Chart cache timeout" +msgstr "Tempo limite para cache" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +#, fuzzy +msgid "Enter duration in seconds" +msgstr "10 segundos" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +#, fuzzy +msgid "Schema cache timeout" +msgstr "Tempo limite para cache" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +#, fuzzy msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +#, fuzzy +msgid "Table cache timeout" +msgstr "Tempo limite para cache" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +#, fuzzy msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +#, fuzzy +msgid "Add extra connection information." +msgstr "Metadados adicionais" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +#, fuzzy +msgid "Secure extra" +msgstr "Segurança" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Viz está sem origem de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +#, fuzzy +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "Personificar o utilizador conectado" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 #, fuzzy -msgid "Viz type" -msgstr "Tipo" +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Se Presto, todas as consultas no SQL Lab serão executadas como o " +"utilizador atualmente conectado que deve ter permissão para as executar. " +"
Se hive e hive.server2.enable.doAs estiver habilitado, serão " +"executadas as queries como conta de serviço, mas deve personificar o " +"utilizador atualmente conectado recorrendo à propriedade " +"hive.server2.proxy.user." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -#, fuzzy -msgid "Warning" -msgstr "Mensagem de Aviso" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." +msgstr "" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Mensagem de Aviso" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "Metadados adicionais" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Mensagem de Aviso" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +#, fuzzy +msgid "Metadata Parameters" +msgstr "Nome do modelo" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 #, fuzzy -msgid "Was unable to check your query" -msgstr "Rótulo para a sua query" +msgid "Engine Parameters" +msgstr "Nome do modelo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 #, python-format -msgid "We have the following keys: %s" +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "Não foi possível gravar a sua query" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset/db_engine_specs/redshift.py:94 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 #, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 #, fuzzy -msgid "Week" -msgstr "semana" +msgid "Select a database to connect" +msgstr "Selecione uma base de dados" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 #, fuzzy -msgid "Weekly Report" -msgstr "Janela de exibição" +msgid "Login with" +msgstr "Largura" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, fuzzy, python-format -msgid "Weeks %s" -msgstr "semana" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -#, fuzzy -msgid "Weight" -msgstr "Altura" - -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset/views/database/forms.py:175 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 #, fuzzy -msgid "What should happen if the table already exists" -msgstr "Origem de dados %(name)s já existe" +msgid "Private Key Password" +msgstr "Broker Port" -#: superset-frontend/src/explore/controls.jsx:434 -msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset/views/database/mixins.py:119 -msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" -msgstr "" -"Ao permitir a opção CREATE TABLE AS no SQL Lab, esta opção força a tabela" -" a ser criada neste esquema" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +#, fuzzy +msgid "Display Name" +msgstr "Nome do modelo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +#, fuzzy +msgid "Name your database" +msgstr "Selecione uma base de dados" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 -msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +#, fuzzy +msgid "Refer to the" +msgstr "mês" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 -msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "Utilizando 'Agrupar por' só é possível utilizar uma única métrica" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +#, fuzzy +msgid "Test connection" +msgstr "Conexão de teste" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "Base de dados" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Por favor insira um nome para a visualização" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +#, fuzzy +msgid "Database settings updated" +msgstr "Não foi possível gravar a sua query" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +#, fuzzy +msgid "Supported databases" +msgstr "Selecione uma base de dados" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +#, fuzzy +msgid "Choose a database..." +msgstr "Escolha uma origem de dados" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset/connectors/sqla/views.py:110 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." -msgstr "Se esta coluna está exposta na seção `Filtros` da vista de exploração." +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +#, fuzzy +msgid "Connect" +msgstr "Conexão de teste" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#, fuzzy +msgid "Database Creation Error" +msgstr "Expressão de base de dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +#, fuzzy +msgid "CREATE DATASET" +msgstr "Criado em" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +#, fuzzy +msgid "Connect a database" +msgstr "Selecione uma base de dados" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#, fuzzy +msgid "Edit database" +msgstr "Editar Base de Dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 #, fuzzy -msgid "Whether to display the time range interactive selector" -msgstr "Mostrar opção de seleção do intervalo temporal" +msgid "Port" +msgstr "Janela de exibição" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 #, fuzzy -msgid "Whether to include a client-side search box" -msgstr "Incluir um filtro temporal" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Incluir um filtro temporal" +msgid "Additional Parameters" +msgstr "Editar propriedades da visualização" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 #, fuzzy -msgid "Whether to include the percentage in the tooltip" -msgstr "Incluir um filtro temporal" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" +msgid "Add additional custom parameters" +msgstr "Editar propriedades da visualização" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -"Para se disponibilizar esta coluna como uma opção [Time Granularity], a " -"coluna deve ser DATETIME ou DATETIME" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "Incluir um filtro temporal" - -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -"Preencher a lista de filtros, na vista de exploração, com valores " -"distintos carregados em tempo real a partir do backend" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -#, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Ordenar de forma descendente ou ascendente" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Ordenar de forma descendente ou ascendente" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -#, fuzzy -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "Ordenar de forma descendente ou ascendente" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +#, fuzzy +msgid "Enter a name for this sheet" +msgstr "Insira um novo título para a aba" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 #, fuzzy -msgid "White" -msgstr "Título" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Largura" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "" +msgid "Add sheet" +msgstr "Adicionar Base de Dados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 #, fuzzy -msgid "Word Rotation" -msgstr "Anotações" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" -msgstr "" +msgid "Duplicate dataset" +msgstr "Editar Base de Dados" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Mapa Mundo" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Escreva uma descrição para sua consulta" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "nome da origem de dados" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#, fuzzy +msgid "Refreshing columns" +msgstr "Atualizar coluna de metadados" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "Coluna de tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "Eixo XX" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 #, fuzzy -msgid "X Axis Format" -msgstr "Formato do Eixo YY" +msgid "View Dataset" +msgstr "Escolha uma origem de dados" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +#, fuzzy +msgid "Select dataset source" +msgstr "Fonte de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 #, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "Ordenar decrescente" +msgid "No table columns" +msgstr "Ordenação original das colunas" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Opções do gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Eixo YY" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "Última Alteração" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "Última Alteração" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "[Nome do dashboard]" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Formato do Eixo YY" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "Mover gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Mover gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#, fuzzy +msgid "Select a database table." +msgstr "Selecione uma base de dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "Crie uma nova visualização" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 #, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "Ordenar decrescente" +msgid "New dataset" +msgstr "Base de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" +msgstr "nome da origem de dados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" -msgstr "" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "Indefinido" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" -msgstr "" +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset/db_engine_specs/base.py:111 +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 #, fuzzy -msgid "Year" -msgstr "ano" +msgid "There was an error fetching dataset's related objects" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" -msgstr "" +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#, fuzzy +msgid "There was an error loading the dataset metadata" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +#, fuzzy +msgid "[Untitled]" +msgstr "%s - sem título" + +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#: superset-frontend/src/features/home/ActivityTable.tsx:115 #, fuzzy, python-format -msgid "Years %s" -msgstr "ano" +msgid "Viewed %s" +msgstr "Pré-visualização para %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Editar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Criado em" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Favoritos" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 -msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +#, fuzzy +msgid "charts" +msgstr "Mover gráfico" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +#, fuzzy +msgid "dashboards" +msgstr "Dashboard" + +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +#, fuzzy +msgid "saved queries" +msgstr "Queries Gravadas" + +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "Mover gráfico" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +#, fuzzy +msgid "No dashboards yet" +msgstr "Sem dashboards" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "Queries Gravadas" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "Não tem permissão para aprovar este pedido" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "Não tem permissão para aprovar este pedido" - -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "Não tem acesso a esta origem de dados" - -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "Não tem permissão para aceder à origem de dados: %(name)s." - -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "Não tem permissão para aceder à origem de dados: %(name)s." - -#: superset/charts/commands/exceptions.py:131 -#, fuzzy -msgid "You don't have access to this chart." -msgstr "Não tem permissão para aprovar este pedido" - -#: superset/dashboards/commands/exceptions.py:86 -#, fuzzy -msgid "You don't have access to this dashboard." -msgstr "Não tem permissão para aceder à origem de dados: %(name)s." - -#: superset/datasets/commands/exceptions.py:206 -#, fuzzy -msgid "You don't have access to this dataset." -msgstr "Parece que não tem acesso a nenhuma base de dados" - -#: superset/embedded_dashboard/commands/exceptions.py:34 +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 #, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "Não tem permissão para aceder à origem de dados: %(name)s." +msgid "SQL query" +msgstr "partilhar query" -#: superset-frontend/src/features/home/EmptyState.tsx:170 +#: superset-frontend/src/features/home/EmptyState.tsx:168 msgid "You don't have any favorites yet!" msgstr "Não tem acesso a esta origem de dados" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -#, fuzzy -msgid "You don't have permission to modify the value." -msgstr "Não tem permissão para aprovar este pedido" - -#: superset/security/manager.py:2262 -#, fuzzy, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Não tem direitos para alterar este título." - -#: superset/views/core.py:945 -#, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "Não tem direitos para alterar este título." +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" +msgstr "" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/home/RightMenu.tsx:174 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "Não tem direitos para alterar este título." - -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Não tem direitos para alterar este título." +msgid "Connect database" +msgstr "Selecione uma base de dados" -#: superset/views/core.py:951 +#: superset-frontend/src/features/home/RightMenu.tsx:179 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "Não tem direitos para alterar este título." +msgid "Create dataset" +msgstr "Criado em" -#: superset/views/core.py:1135 -#, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "Não tem direitos para alterar este título." +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "" -#: superset/views/core.py:649 +#: superset-frontend/src/features/home/RightMenu.tsx:190 #, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "Não tem direitos para alterar este título." - -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "Não tem permissão para aprovar este pedido" +msgid "Upload CSV to database" +msgstr "Selecione uma base de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "Existem alterações por gravar." - -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Escolha um nome para o novo dashboard" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Sair" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +#, fuzzy +msgid "SHA" +msgstr "Esquema" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +#, fuzzy +msgid "Documentation" +msgstr "Anotações" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +#, fuzzy +msgid "Report a bug" +msgstr "Janela de exibição" -#: 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" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Login" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Não foi possível gravar a sua query" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "Query" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Eliminar" + +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -#, fuzzy -msgid "Your query was not properly saved" -msgstr "A sua query foi gravada" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "A sua query foi gravada" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Executar a query selecionada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "A sua query foi gravada" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 #, fuzzy -msgid "Your report could not be deleted" -msgstr "Não foi possível carregar a query" +msgid "Saved queries" +msgstr "Queries Gravadas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "" + +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 #, fuzzy -msgid "Zero imputation" -msgstr "descrição" +msgid "Tab name" +msgstr "Nome da Tabela" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "partilhar query" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" -msgstr "" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Executar a query selecionada" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 #, fuzzy -msgid "[ untitled dashboard ]" -msgstr "[Nome do dashboard]" +msgid "Query name" +msgstr "Nome do país" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "Copiado!" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 #, fuzzy -msgid "[Missing Dataset]" -msgstr "Viz está sem origem de dados" - -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] O acesso à origem dos dados %(name)s foi concedido" +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/features/home/ActivityTable.tsx:85 +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 #, fuzzy -msgid "[Untitled]" -msgstr "%s - sem título" +msgid "The report has been created" +msgstr "Esta origem de dados parece ter sido excluída" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +#, fuzzy +msgid "Report updated" +msgstr "Nome do modelo" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[Nome do dashboard]" - -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +#, fuzzy +msgid "Your report could not be deleted" +msgstr "Não foi possível carregar a query" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 #, fuzzy -msgid "[untitled]" -msgstr "%s - sem título" - -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "" +msgid "Weekly Report" +msgstr "Janela de exibição" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" +msgstr "Nome do modelo" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "Soma Agregada" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -#, fuzzy -msgid "alert dark" -msgstr "Início" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "Anotações" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "Camadas de anotação" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +#, fuzzy +msgid "Delete Report?" +msgstr "Modelos CSS" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +msgid "rowlevelsecurity" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -msgid "auto" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "Query vazia?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Valor de filtro" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "O id da visualização ativa" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "parafuso" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 #, fuzzy -msgid "bottom" -msgstr "dttm" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "" +msgid "Group Key" +msgstr "Agrupar por" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -#, fuzzy -msgid "change" -msgstr "Gerir" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "Mover gráfico" - -#: superset-frontend/src/features/home/EmptyState.tsx:27 -#, fuzzy -msgid "charts" -msgstr "Mover gráfico" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 #, fuzzy -msgid "clear all filters" -msgstr "Filtros" +msgid "Base" +msgstr "Base de dados" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Filtros de resultados" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "Coluna" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 #, python-format -msgid "connecting to %(dbModelName)s." +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "count" -msgstr "Coluna" +msgid "tags" +msgstr "Estado" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 #, fuzzy -msgid "create" -msgstr "Criado em" +msgid "Select Tags" +msgstr "Repor Estado" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/tags/TagModal.tsx:237 #, fuzzy -msgid "create a new chart" -msgstr "Crie uma nova visualização" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "" +msgid "Tag updated" +msgstr "%s - sem título" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "foi criado" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Nome da Tabela" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +#: superset-frontend/src/features/tags/TagModal.tsx:294 #, fuzzy -msgid "cumulative" -msgstr "Acção" +msgid "Name of your tag" +msgstr "Selecione uma base de dados" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "Dashboard" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Escreva uma descrição para sua consulta" -#: superset-frontend/src/features/home/EmptyState.tsx:28 +#: superset-frontend/src/features/tags/TagModal.tsx:307 #, fuzzy -msgid "dashboards" -msgstr "Dashboard" +msgid "Select dashboards" +msgstr "Por favor insira um nome para o dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "Base de dados" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Selecione métrica" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -msgid "dataset name" -msgstr "nome da origem de dados" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +#, fuzzy +msgid "UI Configuration" +msgstr "Contribuição" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#, fuzzy +msgid "Filter value is required" +msgstr "Origem de dados" + +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "dia" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +#, fuzzy +msgid "Single value" +msgstr "Valor de filtro" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "Opções" + +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Ordenar de forma descendente ou ascendente" + +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "Gráfico de bala" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 #, fuzzy -msgid "deck.gl charts" -msgstr "Gráfico de bala" +msgid "No time columns" +msgstr "Coluna de tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 #, fuzzy -msgid "default" -msgstr "Latitude padrão" +msgid "Time grain filter plugin" +msgstr "Granularidade Temporal" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "Eliminar" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "descrição" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "descrição" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "Janela de exibição" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +#, fuzzy +msgid "Last run" +msgstr "Modificado pela última vez" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +#, fuzzy +msgid "Execution log" +msgstr "Registo de Acções" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +#, fuzzy +msgid "Bulk select" +msgstr "Selecione %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Proprietário" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Estado" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +#, fuzzy +msgid "Alerts & reports" +msgstr "Janela de exibição" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Janela de exibição" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Eliminar" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#: superset-frontend/src/pages/AllEntities/index.tsx:180 #, fuzzy -msgid "entries" -msgstr "Séries" +msgid "Error Fetching Tagged Objects" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "error" -msgstr "Erro" +msgid "Edit Tag" +msgstr "Editar" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" msgstr "" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "Mensagem de Aviso" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Carregue um modelo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Carregue um modelo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "Código de 3 letras do país" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Alterado por" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Camadas de anotação" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -#, fuzzy -msgid "every minute" -msgstr "mês" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Tem a certeza que pretende eliminar tudo?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "mês" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 #, fuzzy -msgid "explore" -msgstr "Explorar gráfico" +msgid "Delete annotation" +msgstr "Anotações" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "Perfil" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Anotações" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Camadas de anotação" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "Camadas de anotação" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Anotações" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 #, fuzzy -msgid "heatmap" -msgstr "Mapa de Calor" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "" +msgid "view instructions" +msgstr "10 segundos" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "here" -msgstr "Séries" +msgid "Add a dataset" +msgstr "Adicionar Base de Dados" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +#, fuzzy +msgid "or" msgstr "hora" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Escolha uma origem de dados" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 #, fuzzy -msgid "id" -msgstr "id:" +msgid "Choose chart type" +msgstr "Escolha uma origem de dados" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "Mín" - -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "em modal" - -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "agregado" - -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "json não é válido" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +#, fuzzy +msgid "Chart imported" +msgstr "Editar propriedades da visualização" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 #, fuzzy -msgid "label" -msgstr "Rótulo" +msgid "Any" +msgstr "dia" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -#, fuzzy -msgid "last month" -msgstr "mês" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 #, fuzzy -msgid "last week" -msgstr "semana" +msgid "Alphabetical" +msgstr "Ordenar colunas por ordem alfabética" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 #, fuzzy -msgid "last year" -msgstr "Cluster" +msgid "Recently modified" +msgstr "Última Alteração" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "última partição:" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +#, fuzzy +msgid "Least recently modified" +msgstr "Última Alteração" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +#: superset-frontend/src/pages/ChartList/index.tsx:783 #, fuzzy -msgid "left" -msgstr "Eliminar" +msgid "Import charts" +msgstr "Mover gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 #, fuzzy -msgid "linear" -msgstr "ano" - -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "" +msgid "CSS templates" +msgstr "Modelos CSS" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 #, fuzzy -msgid "max" -msgstr "Máx" +msgid "CSS template" +msgstr "Modelos CSS" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Modelos CSS" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "Métrica" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -#, fuzzy -msgid "min" -msgstr "Mín" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minuto" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "minute(s)" -msgstr "5 minutos" +msgid "Dashboard imported" +msgstr "[Nome do dashboard]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "mês" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "mês" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 #, fuzzy -msgid "name" -msgstr "Nome" +msgid "Upload file to database" +msgstr "Selecione uma base de dados" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" msgstr "" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -#, fuzzy -msgid "offline" -msgstr "agregado" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "hora" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Selecione uma base de dados" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" -#: superset/charts/schemas.py:1313 +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Selecione uma base de dados" + +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "orderby column must be populated" -msgstr "Não foi possível gravar a sua query" +msgid "Dataset imported" +msgstr "nome da origem de dados" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +#, fuzzy +msgid "Physical dataset" +msgstr "Escolha uma origem de dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +#, fuzzy +msgid "Virtual dataset" +msgstr "Editar Base de Dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +#, fuzzy +msgid "Import datasets" +msgstr "Editar Base de Dados" + +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 +#: superset-frontend/src/pages/DatasetList/index.tsx:720 #, fuzzy -msgid "pending" -msgstr "Ordenar decrescente" +msgid "There was an issue duplicating the dataset." +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, fuzzy, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset/utils/pandas_postprocessing/boxplot.py:88 +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "Modelos CSS" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Tem a certeza que pretende eliminar tudo?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "Executar a query selecionada" + +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 #, fuzzy -msgid "quarter" -msgstr "Query" +msgid "Execution ID" +msgstr "Registo de Acções" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 #, fuzzy -msgid "queries" -msgstr "Séries" +msgid "Error message" +msgstr "Mensagem de Aviso" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "Query" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +#, fuzzy +msgid "Alert" +msgstr "Mover gráfico" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, fuzzy, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, fuzzy, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/pages/Home/index.tsx:293 +#, fuzzy, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "Janela de exibição" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "Janela de exibição" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Expor no SQL Lab" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -#, fuzzy -msgid "right" -msgstr "Altura" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, fuzzy, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -msgid "rowlevelsecurity" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -#, fuzzy -msgid "running" -msgstr "Mensagem de Aviso" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Eliminar" -#: superset-frontend/src/features/home/EmptyState.tsx:30 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "saved queries" -msgstr "Queries Gravadas" - -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" -msgstr "" +msgid "Deleted" +msgstr "Eliminar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -#, fuzzy -msgid "seconds" -msgstr "30 segundos" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "series" -msgstr "Séries" +msgid "No Rules yet" +msgstr "Mover gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 #, fuzzy -msgid "step-after" -msgstr "Modelos CSS" +msgid "Import queries" +msgstr "Query vazia?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Copiado!" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Query vazia?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Query vazia?" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 #, fuzzy -msgid "stream" -msgstr "Histograma" +msgid "Export query" +msgstr "partilhar query" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Eliminar" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 #, fuzzy -msgid "success" -msgstr "Não há acesso!" +msgid "queries" +msgstr "Séries" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" +msgstr "" + +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success dark" -msgstr "Não há acesso!" +msgid "No Tags created" +msgstr "foi criado" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "textarea" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -#, fuzzy -msgid "to" -msgstr "Parar" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -#, fuzzy -msgid "top" -msgstr "Parar" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." msgstr "" -#: superset-frontend/src/explore/constants.ts:85 -#, fuzzy -msgid "use latest_partition template" -msgstr "última partição:" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -#, fuzzy -msgid "value ascending" -msgstr "Ordenar decrescente" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "Não tem permissão para aprovar este pedido" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +#: superset-frontend/src/utils/getClientErrorObject.ts:132 #, fuzzy -msgid "value descending" -msgstr "Ordenar decrescente" +msgid "Network error" +msgstr "Erro de rede." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -#, fuzzy -msgid "variance" -msgstr "Análise Avançada" - -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "10 segundos" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "Tipo" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, fuzzy, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "foi criado" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, fuzzy, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "semana" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, fuzzy, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, fuzzy, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" + +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, fuzzy, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, fuzzy, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" + +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" +"Ligação predefinida, é possível incluir {{ metric }} ou outros valores " +"provenientes dos controlos." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "ano" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Tabela de séries temporais" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/pt_BR/LC_MESSAGES/messages.json b/superset/translations/pt_BR/LC_MESSAGES/messages.json index 08c1b1f776db1..09bf1df7e6ad4 100644 --- a/superset/translations/pt_BR/LC_MESSAGES/messages.json +++ b/superset/translations/pt_BR/LC_MESSAGES/messages.json @@ -8,6261 +8,5980 @@ "plural_forms": "nplurals=2; plural=(n > 1)", "lang": "pt_BR" }, - "!= (Is not equal)": ["!= (diferente)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s não pode ser usado como uma fonte de dados por motivos de segurança." + "The datasource is too large to query.": [ + "A fonte de dados é muito grande para ser consultada." ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [ - "%(message)s\nIsso pode ser acionado por: \n%(issues)s" + "The database is under an unusual load.": [ + "O banco de dados está sob uma carga incomum." ], - "%(name)s.csv": ["%(name)s.csv"], - "%(object)s does not exist in this database.": [ - "%(object)s não existe neste banco de dados." + "The database returned an unexpected error.": [ + "O banco de dados retornou um erro inesperado." ], - "%(other)s charts will appear here": [ - "%(other)s gráficos irão aparecer aqui" + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de ortografia ou de digitação." ], - "%(other)s dashboards will appear here": [ - "%(other)s painéis irão aparecer aqui" + "The column was deleted or renamed in the database.": [ + "A coluna foi excluída ou renomeada no banco de dados." ], - "%(other)s recents will appear here": [ - "%(other)s recentes irão aparecer aqui" + "The table was deleted or renamed in the database.": [ + "A tabela foi excluída ou renomeada no banco de dados." ], - "%(other)s saved queries will appear here": [ - "%(other)s As consultas salvas aparecerão aqui" + "One or more parameters specified in the query are missing.": [ + "Um ou mais parâmetros especificados na consulta estão faltando." ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": ["%(rows)d linhas retornadas"], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ - "%(subtitle)s\nIsso pode ser acionado por:\n %(issue)s" + "The hostname provided can't be resolved.": [ + "O nome do host oferecido não pode ser resolvido." ], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s foi garantido a função %(role)s que dá acesso para a %(fonte de dados)s" + "The port is closed.": ["A porta está fechada."], + "The host might be down, and can't be reached on the provided port.": [ + "O host pode ter caído, e não pode ser alcançado na porta fornecida." ], - "%(user)s's profile": ["%(user) s's profile"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validador)es não conseguiu verificar sua consulta.\nPor favor revise sua consulta.\nExceção: %(ex)s" + "Superset encountered an error while running a command.": [ + "O Superset encontrou um erro ao executar um comando." ], - "%s Error": ["%s Erro"], - "%s PASSWORD": ["%s SENHA"], - "%s SSH TUNNEL PASSWORD": ["%s SENHA DO TÚNEL SSH"], - "%s SSH TUNNEL PRIVATE KEY": ["%s CHAVE PRIVADA DO TÚNEL SSH"], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [ - "%s SENHA DA CHAVE PRIVADA DO TÚNEL SSH" + "Superset encountered an unexpected error.": [ + "O Superset encontrou um erro inesperado." ], - "%s Selected": ["%s Selecionado"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s selecionado (%s Físico , %s Virtual)" + "The username provided when connecting to a database is not valid.": [ + "O nome de usuário fornecido ao se conectar ao banco de dados não é válido." ], - "%s Selected (Physical)": ["%s Selecionado (Físico)"], - "%s Selected (Virtual)": ["%s Selecionado (Virtual)"], - "%s aggregates(s)": ["%s agregado(s)"], - "%s column(s)": ["%s coluna(s)"], - "%s operator(s)": ["%s operador(es)"], - "%s option(s)": ["%s opção(ões)"], - "%s saved metric(s)": ["%s salvos métrica(s)"], - "%s updated": ["%s atualizado"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s de %s"], - "(Removed)": ["(Removido)"], - "(deleted or invalid type)": ["(excluído ou inválido digite)"], - "(no description, click to see stack trace)": [ - "(sem descrição , clique para ver rastreamento de pilha)" + "The password provided when connecting to a database is not valid.": [ + "A senha fornecida ao se conectar a um banco de dados não é válida." ], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "(opcional) valor padrão para o filtro, quando usar multiplas opções, você pode usar um ponto e vírgula delimitando a lista de opções." + "Either the username or the password is wrong.": [ + "Ou o nome de usuário ou a senha está incorreto." ], - "), and they become available in your SQL (example:": [ - "), e eles tornaram-se disponíveis no seu SQL (exemplo:" + "Either the database is spelled incorrectly or does not exist.": [ + "Ou o banco de dados está soletrado incorretamente ou não existe." ], - "+ %s more": ["+ %s mais"], - ",": [","], - ".": ["."], - "0 Selected": ["0 selecionado"], - "1 calendar day frequency": ["1 dia de calendário de frequência"], - "1 day": ["1 dia"], - "1 day ago": ["1 dia atrás"], - "1 hour": ["1 hora"], - "1 hourly frequency": ["frequência de 1 hora"], - "1 minute": ["1 minuto"], - "1 minutely frequency": ["frequência de 1 minuto"], - "1 month end frequency": ["1 mês de frequência final"], - "1 month start frequency": ["Frequência de início de 1 mês"], - "1 week": ["1 semana"], - "1 week ago": ["1 semana atrás"], - "1 week starting Monday (freq=W-MON)": [ - "1 semana com início na Segunda-feira (freq=S-SEG)" + "The schema was deleted or renamed in the database.": [ + "O esquema foi excluído ou renomeado no banco de dados." ], - "1 week starting Sunday (freq=W-SUN)": [ - "1 semana com início na Domingo (freq=S-DOM)" + "User doesn't have the proper permissions.": [ + "O usuário não tem as permissões adequadas." ], - "1 year": ["1 ano"], - "1 year ago": ["1 ano atrás"], - "1 year end frequency": ["Frequência de final de 1 ano"], - "1 year start frequency": ["Frequência de início de 1 ano"], - "10 minute": ["10 minutos"], - "104 weeks": ["104 semanas"], - "104 weeks ago": ["104 semanas atrás"], - "15 minute": ["15 minutos"], - "156 weeks": ["156 semanas"], - "156 weeks ago": ["156 semanas atrás"], - "1AS": ["1AS"], - "1D": ["1D"], - "1H": ["1H"], - "1M": ["1M"], - "1T": ["1T"], - "2 years": ["2 anos"], - "2 years ago": ["2 anos atrás"], - "2/98 percentiles": ["2/98 percentis"], - "28 days ago": ["28 dias atrás"], - "2D": ["2D"], - "3 years ago": ["3 anos atrás"], - "30 days": ["30 dias"], - "30 minutes": ["30 minutos"], - "30 seconds": ["30 segundos"], - "3D": ["3D"], - "4 weeks (freq=4W-MON)": ["4 semanas (freq=4S-SEG)"], - "5 minute": ["5 minutos"], - "5 minutes": ["5 minutos"], - "5 second": ["5 segundos"], - "5 seconds": ["5 segundos"], - "52 weeks": ["52 semanas"], - "52 weeks ago": ["52 semanas atrás"], - "52 weeks starting Monday (freq=52W-MON)": [ - "52 semanas iniciando Segunda-feira (freq=52S-SEG)" + "One or more parameters needed to configure a database are missing.": [ + "Um ou mais parâmetros necessários para configurar um banco de dados estão faltando." ], - "6 hour": ["6 horas"], - "60 days": ["60 dias"], - "7 calendar day frequency": ["Frequência de 7 dias de calendário"], - "7 days": ["7 dias"], - "7D": ["7D"], - "9/91 percentiles": ["9/91 percentis"], - "90 days": ["90 dias"], - ":": [":"], - "< (Smaller than)": ["< (menor que)"], - "<= (Smaller or equal)": ["<= (menor ou equal)"], - "": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "== (Is equal)": ["== (É igual)"], - "> (Larger than)": ["> (Maior que)"], - ">= (Larger or equal)": [">= (Maior ou equal)"], - "A Big Number": ["Um grande número"], - "A comma separated list of columns that should be parsed as dates": [ - "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas" + "The submitted payload has the incorrect format.": [ + "O payload enviado tem o formato incorreto." ], - "A comma separated list of columns that should be parsed as dates.": [ - "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas." + "The submitted payload has the incorrect schema.": [ + "O payload enviado tem o esquema incorreto." ], - "A comma-separated list of schemas that files are allowed to upload to.": [ - "Uma lista separada por vírgulas de esquemas para os quais os arquivos têm permissão para fazer upload." + "Results backend needed for asynchronous queries is not configured.": [ + "O backend de resultados necessário para as consultas assíncronas não está configurado." ], - "A database with the same name already exists.": [ - "Já existe um banco de dados com o mesmo nome." + "Database does not allow data manipulation.": [ + "Banco de dados não permite a manipulação de dados." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "O CTAS (create table as select) não tem uma instrução SELECT no final. Certifique-se de que sua consulta tenha um SELECT como última instrução. Em seguida, tente executar sua consulta novamente." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "CVAS (create view as select) query has more than one statement.": [ + "A consulta CVAS (create view as select) tem mais do que uma declaração." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "CVAS (create view as select) query is not a SELECT statement.": [ + "A consulta CVAS (create view as select) não é uma instrução SELECT." ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "Um URL completo apontando para o localização do plug-in construído (poderia ser hospedado em um CDN, por exemplo)" + "Query is too complex and takes too long to run.": [ + "A consulta é muito complexa e demora muito para executar." ], - "A handlebars template that is applied to the data": [ - "Um modelo de handlebars aplicado aos dados" + "The database is currently running too many queries.": [ + "O banco de dados está atualmente executando muitas consultas." ], - "A human-friendly name": ["Um nome amigável ao ser humano"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "Uma lista de nomes de domínio que podem incorporar este dashboard. Se deixar este campo vazio, permitirá a incorporação a partir de qualquer domínio." + "The object does not exist in the given database.": [ + "O objeto não existe no banco de dados fornecido." ], - "A list of tags that have been applied to this chart.": [ - "Uma lista de tags que foram aplicadas a esse gráfico." + "The query has a syntax error.": ["A consulta tem um erro de sintaxe."], + "The results backend no longer has the data from the query.": [ + "O backend de resultados não tem mais os dados da consulta." ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome ou nome de usuário." + "The query associated with the results was deleted.": [ + "A consulta associada aos resultados foi excluída." ], - "A map of the world, that can indicate values in different countries.": [ - "Um mapa do mundo, que pode indicar valores em diferentes países." + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Os resultados armazenados no backend foram armazenados em um formato diferente e não podem mais ser desserializados." ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "Um mapa que mostra círculos de renderização com um raio variável em coordenadas de latitude/longitude" + "The port number is invalid.": ["O número da porta é inválido."], + "Failed to start remote query on a worker.": [ + "Falha ao iniciar a consulta remota em um worker." ], - "A metric to use for color": ["Uma métrica para cor"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "Um gráfico de coordenadas polares em que o círculo é dividido em cunhas de igual ângulo e o valor representado por qualquer cunha é ilustrado pela sua área, em vez do seu raio ou ângulo de varrimento." + "The database was deleted.": ["O banco de dados foi excluído."], + "Custom SQL fields cannot contain sub-queries.": [ + "Os campos SQL personalizados não podem conter subconsultas." ], - "A readable URL for your dashboard": ["Uma URL legível para seu painel"], - "A reference to the [Time] configuration, taking granularity into account": [ - "Uma referência para a configuração [Time] , tomando granularidade em conta" + "Invalid certificate": ["Certificado inválido"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Tipo de retorno inseguro para a função %(func)s: %(value_ type)s" ], - "A report named \"%(name)s\" already exists": [ - "Já existe um relatório denominado \"%(name)s\"" + "Unsupported return value for method %(name)s": [ + "Valor de retorno não suportado para o método %(name)s" ], - "A reusable dataset will be saved with your chart.": [ - "Um conjunto de dados reutilizável vai ser salvo com seu gráfico." + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Valor de modelo não seguro para a chave %(key)s: %(value_ type)s" ], - "A screenshot of the dashboard will be sent to your email at": [ - "Uma captura de tela do painel vai ser enviado para seu e-mail em" + "Unsupported template value for key %(key)s": [ + "Valor de modelo não suportado para a chave %(key)s" ], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Um conjunto de parâmetros que tornar-se disponível na consulta usando a sintaxe de modelagem Jinja" + "Only SELECT statements are allowed against this database.": [ + "Somente comandos SELECT são permitidos nesse banco de dados." ], - "A time column must be specified when using a Time Comparison.": [ - "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "A consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser muito complexa ou o banco de dados pode estar sob carga pesada." ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "Um gráfico de séries temporais que visualiza como uma métrica relacionada de vários grupos varia ao longo do tempo. Cada grupo é visualizado usando uma cor diferente." + "Results backend is not configured.": [ + "O backend de resultados não está configurado." ], - "A timeout occurred while executing the query.": [ - "Ocorreu um tempo limite durante a execução da consulta." + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "O CTAS (criar tabela como select) só pode ser executado com uma consulta em que a última instrução seja um SELECT. Certifique-se de que a sua consulta tem um SELECT como última instrução. Depois, tente executar a consulta novamente." ], - "A timeout occurred while generating a csv.": [ - "Ocorreu um tempo limite ao gerar um arquivo csv." + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "O CVAS (create view as select) só pode ser executado com uma consulta com uma única instrução SELECT. Certifique-se de que a sua consulta tem apenas uma instrução SELECT. Em seguida, tente executar a consulta novamente." ], - "A timeout occurred while generating a dataframe.": [ - "Ocorreu um timeout durante a geração de um dataframe." + "Running statement %(statement_num)s out of %(statement_count)s": [ + "Executando instrução %(statement_num)s de % (statement_count)s" ], - "A timeout occurred while taking a screenshot.": [ - "Ocorreu um tempo limite ao fazer uma captura de tela." + "Statement %(statement_num)s out of %(statement_count)s": [ + "Instrução %(statement_ num)s de % (statement_count)s" ], - "A valid color scheme is required": [ - "Um esquema de cores válido é necessário" + "Viz is missing a datasource": ["O Viz não tem uma fonte de dados"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "A janela móvel aplicada não devolveu quaisquer dados. Certifique-se de que a consulta de origem satisfaz os períodos mínimos definidos na janela móvel." ], - "APPLY": ["APLICAR"], - "APR": ["ABR"], - "AQE": ["AQE"], - "AUG": ["AGO"], - "AXIS TITLE MARGIN": ["MARGEM DO TÍTULO DO EIXO"], - "AXIS TITLE POSITION": ["POSIÇÃO DO TÍTULO DO EIXO"], - "About": ["Sobre"], - "Access": ["Acessar"], - "Access requests": ["Pedidos de acesso"], - "Access to user activity data is restricted": [ - "O acesso aos dados de atividade dos usuários é restrito" + "From date cannot be larger than to date": [ + "A data de início não pode ser maior do que a data de fim" ], - "Access token": ["Token de acesso"], - "Access was requested": ["O acesso foi solicitado"], - "Action": ["Ação"], - "Action Log": ["Log de ação"], - "Actions": ["Ações"], - "Active": ["Ativo"], - "Actual Values": ["Valores reais"], - "Actual time range": ["Intervalo de tempo real"], - "Actual value": ["Valor real"], - "Actual values": ["Valores reais"], - "Adaptive formatting": ["Formatação adaptável"], - "Add": ["Adicionar"], - "Add Alert": ["Adicionar alerta"], - "Add CSS Template": ["Adicionar modelo CSS"], - "Add CSS template": ["Adicionar modelo CSS"], - "Add Chart": ["Adicionar gráfico"], - "Add Column": ["Adicionar coluna"], - "Add Dashboard": ["Adicionar painel"], - "Add Database": ["Adicionar Banco de dados"], - "Add Log": ["Adicionar Log"], - "Add Metric": ["Adicionar Métrica"], - "Add Report": ["Adicionar relatório"], - "Add Saved Query": ["Adicionar Consulta Salva"], - "Add a Plugin": ["Adicionar um Plugin"], - "Add a dataset": ["Adicionar um conjunto de dados"], - "Add a new tab": ["Adicionar uma nova aba"], - "Add a new tab to create SQL Query": [ - "Adicionar uma nova guia para criar Consulta SQL" + "Cached value not found": ["Valor em cache não encontrado"], + "Columns missing in datasource: %(invalid_columns)s": [ + "Colunas ausente na fonte de dados: %(invalid_columns)s" ], - "Add additional custom parameters": [ - "Adicionar parâmetros personalizados adicionais" + "Time Table View": ["Visualização da tabela de horários"], + "Pick at least one metric": ["Escolha ao menos uma métrica"], + "When using 'Group By' you are limited to use a single metric": [ + "Ao usar 'Agrupar Por' você é limitado usar uma única métrica" ], - "Add an annotation layer": ["Adicionar uma camada de anotação"], - "Add an item": ["Adicionar um item"], - "Add and edit filters": ["Adicionar e editar filtros"], - "Add annotation": ["Adicionar anotação"], - "Add annotation layer": ["Adicionar camada de anotação"], - "Add cross-filter": ["Adicionar filtro cruzado"], - "Add custom scoping": [""], - "Add delivery method": ["Adicionar método de entrega"], - "Add extra connection information.": [ - "Adicione informações adicionais sobre a conexão." + "Calendar Heatmap": ["Mapa de calor do calendário"], + "Bubble Chart": ["Gráfico de bolhas"], + "Please use 3 different metric labels": [ + "Por favor, use 3 diferentes rótulos de métrica" ], - "Add filter": ["Adicionar filtro"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "Adicionar cláusulas de filtro para controlar a consulta de origem do filtro, \n embora apenas no contexto do preenchimento automático, ou seja, esses condições \n não impactam como o filtro é aplicado para o painel. Isso é util \n quando você quiser melhorar o desempenho da consulta apenas analisando um subconjunto \n de dados subjacentes ou limitar os valores disponíveis apresentados no filtro." + "Pick a metric for x, y and size": [ + "Escolha uma métrica para x, y e tamanho" ], - "Add filters and dividers": ["Adicionar filtros e divisores"], - "Add item": ["Adicionar item"], - "Add metric": ["Adicionar métrica"], - "Add new color formatter": ["Adicionar novo formatador de cores"], - "Add new formatter": ["Adicionar novo formatador"], - "Add notification method": ["Adicionar método de notificação"], - "Add required control values to preview chart": [ - "Adicionar controle de valores obrigatórios para visualizar o gráfico" + "Bullet Chart": ["Gráfico de marcadores"], + "Pick a metric to display": ["Escolha uma métrica para exibir"], + "Time Series - Line Chart": ["Série temporal - Gráfico de linhas"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Deve ser especificado um intervalo de tempo fechado (início e fim) quando se utiliza uma comparação de tempo." ], - "Add required control values to save chart": [ - "Adicionar controle de valores obrigatórios para salvar gráfico" + "Time Series - Bar Chart": ["Série temporal - Gráfico de barras"], + "Time Series - Period Pivot": ["Série temporal - Pivô de período"], + "Time Series - Percent Change": [ + "Séries temporais - Variação percentual" ], - "Add sheet": ["Adicionar planilha"], - "Add the name of the chart": ["Adicione o nome do gráfico"], - "Add the name of the dashboard": ["Adicione o nome do painel"], - "Add to dashboard": ["Adicionar ao painel"], - "Add/Edit Filters": ["Adicionar/Editar filtros"], - "Added": ["Adicionado"], - "Additional Parameters": ["Parâmetros adicionais"], - "Additional fields may be required": [ - "Adicional campos que podem ser necessários" + "Time Series - Stacked": ["Séries temporais - empilhadas"], + "Histogram": ["Histograma"], + "Must have at least one numeric column specified": [ + "Deve ter pelo menos uma coluna numérica especificada" ], - "Additional information": ["Informação adicional"], - "Additional metadata": ["Metadados adicionais"], - "Additional padding for legend.": ["Preenchimento adicional da legenda."], - "Additional parameters": ["Parâmetros adicionais"], - "Additional settings.": ["Configurações adicionais."], - "Additional text to add before or after the value, e.g. unit": [ - "Texto adicional para adicionar antes ou depois o valor, por exemplo, unidade" + "Distribution - Bar Chart": ["Distribuição - Gráfico de barras"], + "Can't have overlap between Series and Breakdowns": [ + "Não pode haver sobreposição entre séries e avarias" ], - "Additive": ["Aditivo"], - "Adjust how this database will interact with SQL Lab.": [ - "Ajustar como esse banco de dados vai interagir com SQL Lab." + "Pick at least one field for [Series]": [ + "Escolha no ao menos um campo para [Série]" ], - "Adjust performance settings of this database.": [ - "Ajuste as configurações de desempenho desse banco de dados." + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Escolha exatamente 2 colunas como [Origem / Destino]" ], - "Advanced": ["Avançado"], - "Advanced Analytics": ["Análise avançada"], - "Advanced Data type": ["Tipo de dados avançado"], - "Advanced analytics": ["Analytics avançado"], - "Advanced analytics Query A": ["Análise avançada Consulta A"], - "Advanced analytics Query B": ["Análise avançada Consulta B"], - "Advanced data type": ["Tipo de dados avançado"], - "Advanced-Analytics": ["Análise avançada"], - "Aesthetic": ["Estética"], - "After": ["Depois de"], - "Aggregate": ["Agregado"], - "Aggregate Mean": ["Média agregada"], - "Aggregate Sum": ["Soma agregada"], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "Função agregada aplicada à lista de pontos em cada cluster para produzir o rótulo do cluster." + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "Há um loop em seu Sankey, forneça uma árvore. Aqui está um link defeituoso: {}" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "Função agregada a aplicar ao dinamizar e calcular o total de linhas e colunas" + "Directed Force Layout": ["Directed Force Layout"], + "Country Map": ["Mapa do País"], + "World Map": ["Mapa do Mundo"], + "Parallel Coordinates": ["Coordenadas paralelas"], + "Heatmap": ["Mapa de calor"], + "Horizon Charts": ["Gráficos do horizonte"], + "Mapbox": ["MapBox"], + "[Longitude] and [Latitude] must be set": [ + "[Longitude] e [Latitude] devem ser definidos" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "Agrega dados dentro dos limites das células do grid e mapeia os valores agregados para uma escala de cores dinâmica" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Deve ter uma coluna [Agrupar por] para ter 'count' como [Rótulo]" ], - "Aggregation function": ["Função de agregação"], - "Alert": ["Alerta"], - "Alert Triggered, In Grace Period": [ - "Alerta Acionado, em período de carência" + "Choice of [Label] must be present in [Group By]": [ + "Escolha do [Rótulo] deve estar em [Agrupar por]" ], - "Alert condition": ["Condição de alerta"], - "Alert condition schedule": ["Programação do estado de alerta"], - "Alert ended grace period.": ["O alerta terminou o período de carência."], - "Alert failed": ["Falha no alerta"], - "Alert fired during grace period.": [ - "Alerta disparado durante o período de carência." + "Choice of [Point Radius] must be present in [Group By]": [ + "A escolha de [Raio do ponto] deve estar presente em [Agrupar por]" ], - "Alert found an error while executing a query.": [ - "O alerta encontrou um erro durante a execução de uma consulta." + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "As colunas [Longitude] e [Latitude] devem estar presentes em [ Agrupar Por ]" ], - "Alert name": ["Nome do alerta"], - "Alert on grace period": ["Alerta em período de carência"], - "Alert query returned a non-number value.": [ - "A consulta do alerta retornou um valor não numérico." + "Deck.gl - Multiple Layers": ["Deck.gl - Camadas Múltiplas"], + "Bad spatial key": ["Bad spatial key"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Encontrou entrada espacial NULL inválida, por favor considere a possibilidade de a filtrar" ], - "Alert query returned more than one column.": [ - "A consulta do alerta retornou mais de uma coluna." + "Deck.gl - Scatter plot": ["Deck.gl - Gráfico de dispersão"], + "Deck.gl - Screen Grid": ["Deck.gl - Screen Grid"], + "Deck.gl - 3D Grid": ["Deck.gl - Grade 3D"], + "Deck.gl - Paths": ["Deck.gl - Caminhos"], + "Deck.gl - Polygon": ["Deck.gl - Polígono"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], + "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], + "Deck.gl - Arc": ["Deck.gl - Arc"], + "Event flow": ["Fluxo de eventos"], + "Time Series - Paired t-test": ["Séries temporais - Teste t pareado"], + "Time Series - Nightingale Rose Chart": [ + "Séries temporais - Gráfico Nightingale Rose" ], - "Alert query returned more than one column. %s columns returned": [ - "A consulta do alerta retornou mais de uma coluna. %s colunas retornadas" + "Partition Diagram": ["Diagrama de partição"], + "Please choose at least one groupby": [ + "Escolha pelo menos um agrupar por" ], - "Alert query returned more than one row.": [ - "A consulta do alerta retornou mais do que uma linha." + "Invalid advanced data type: %(advanced_data_type)s": [ + "Tipo de dados avançados inválido: %(advanced_data_type)s" ], - "Alert query returned more than one row. %s rows returned": [ - "A consulta do alerta retornou mais de uma linha. %s linhas retornadas" + "All Text": ["Todos os Textos"], + "Is certified": ["É certificado"], + "Has created by": ["Foi criado por"], + "Created by me": ["Criado por mim"], + "Owned Created or Favored": ["Próprio Criado ou Favorecido"], + "Total (%(aggfunc)s)": ["Total (%(aggfunc)s)"], + "Subtotal": ["Subtotal"], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`confidence_interval` deve estar entre 0 e 1 (exclusivo)" ], - "Alert running": ["Alerta em execução"], - "Alert triggered, notification sent": [ - "Alerta acionado , notificação enviada" + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor que o percentil superior." ], - "Alert validator config error.": [ - "Erro na configuração do validador do alerta." + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior que o percentil inferior." ], - "Alerts": ["Alertas"], - "Alerts & Reports": ["Alertas e Relatórios"], - "Alerts & reports": ["Alertas e relatórios"], - "Align +/-": ["Alinhar +/-"], - "All": ["Todos"], - "All Entities": ["Todas as entidades"], - "All Text": ["Todos os Textos"], - "All charts": ["Todos os gráficos"], - "All charts/global scoping": [""], - "All filters": ["Todos os filtros"], - "All filters (%(filterCount)d)": ["Todos os filtros (%(filterCount)d)"], - "All panels": ["Todos os painéis"], - "All panels with this column will be affected by this filter": [ - "Todos painéis com essa coluna vão ser afetados por esse filtro" + "`width` must be greater or equal to 0": [ + "`largura` deve ser maior ou igual a 0" ], - "Allow CREATE TABLE AS": ["Permitir CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Permitir a opção CREATE TABLE AS no SQL Lab" + "`row_limit` must be greater than or equal to 0": [ + "O `row_limit` deve ser maior ou igual a 0" ], - "Allow CREATE VIEW AS": ["Permitir CREATE VIEW AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Permitir a opção CREATE VIEW AS no SQL Lab" + "`row_offset` must be greater than or equal to 0": [ + "`row_offset` deve ser maior ou igual a 0" ], - "Allow Csv Upload": ["Permitir Csv Upload"], - "Allow DML": ["Permitir DML"], - "Allow columns to be rearranged": [ - "Permitir que as colunas sejam reorganizadas" + "orderby column must be populated": [ + "a coluna orderby deve ser preenchida" ], - "Allow creation of new tables based on queries": [ - "Permitir criação de novas tabelas baseadas em consultas" + "Chart has no query context saved. Please save the chart again.": [ + "O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico novamente." ], - "Allow creation of new views based on queries": [ - "Permitir criação de novas visualizações baseadas em consultas" + "Request is incorrect: %(error)s": ["O pedido está incorreto: %(error)s"], + "Request is not JSON": ["O Pedido não é JSON"], + "Empty query result": ["Resultado da consulta vazio"], + "Owners are invalid": ["Proprietários são inválidos"], + "Some roles do not exist": ["Algumas funções não existem"], + "Datasource type is invalid": ["O tipo de fonte de dados é inválido"], + "Datasource does not exist": ["A fonte de dados não existe"], + "Query does not exist": ["A consulta não existe"], + "Annotation layer parameters are invalid.": [ + "Os parâmetros da camada de anotação são inválidos." ], - "Allow data manipulation language": [ - "Permitir linguagem de manipulação de dados" + "Annotation layer could not be created.": [ + "Não foi possível criar uma camada de anotação." ], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "Permitir que o usuário final arraste e solte os cabeçalhos das colunas para os reorganizar. Note que as alterações não persistirão na próxima vez que o utilizador abrir o gráfico." + "Annotation layer could not be updated.": [ + "Não foi possível atualizar uma camada de anotação." ], - "Allow file uploads to database": [ - "Permitir uploads de arquivos para o banco de dados" + "Annotation layer not found.": ["Camada de anotação não encontrada."], + "Annotation layer has associated annotations.": [ + "A camada de anotação tem anotações associadas." ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Permitir manipulação do banco de dados usando instruções não SELECT como UPDATE, DELETE, CREATE, etc." + "Name must be unique": ["O nome deve ser único"], + "End date must be after start date": [ + "A data final deve ser após a data de início" ], - "Allow multiple selections": ["Permitir seleções múltiplas"], - "Allow node selections": ["Permitir seleções de nós"], - "Allow sending multiple polygons as a filter event": [ - "Permitir o envio de vários polígonos como um evento de filtro" + "Short description must be unique for this layer": [ + "Uma breve descrição deve ser única para essa camada" ], - "Allow this database to be explored": [ - "Permitir que esse banco de dados seja explorado" + "Annotation not found.": ["Anotação não encontrada."], + "Annotation parameters are invalid.": [ + "Parâmetros de anotação são inválidos." ], - "Allow this database to be queried in SQL Lab": [ - "Permitir que o banco de dados seja consultado no SQL Lab" + "Annotation could not be created.": [ + "Não foi possível criar uma anotação." ], - "Allowed Domains (comma separated)": [ - "Domínios permitidos (separados por vírgula)" + "Annotation could not be updated.": [ + "Não foi possível atualizar uma anotação." ], - "Alphabetical": ["Em ordem alfabética"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "Também conhecida como gráfico de caixa e bigode, esta visualização compara as distribuições de uma métrica relacionada em vários grupos. A caixa no meio enfatiza a média, a mediana e os dois quartis internos. Os bigodes em torno de cada caixa visualizam o mínimo, o máximo, o intervalo e os dois quartis externos." + "Annotations could not be deleted.": ["Anotações não foram excluídas."], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou [%(human_readable)s later]." ], - "Altered": ["Alterado"], - "An Error Occurred": ["Ocorreu um erro"], - "An alert named \"%(name)s\" already exists": [ - "Já existe um alerta chamado \"%(name)s\"" + "Cannot parse time string [%(human_readable)s]": [ + "Não é possível analisar a string de tempo [%(human_readable)s ]" ], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "Deve ser especificado um intervalo de tempo fechado (início e fim) quando se utiliza uma comparação de tempo." + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "O delta de tempo é ambíguo. Especifique [%(human_readable)s ago] ou [%(human_readable)s later]." ], - "An engine must be specified when passing individual parameters to a database.": [ - "Deve ser especificado um motor ao passar parâmetros individuais para uma base de dados." + "Database does not exist": ["Banco de dados não existe"], + "Dashboards do not exist": ["Os painéis não existem"], + "Datasource type is required when datasource_id is given": [ + "O tipo de fonte de dados é necessário quando datasource_id é fornecido" ], - "An error has occurred": ["Ocorreu um erro"], - "An error occurred": ["Ocorreu um erro"], - "An error occurred saving dataset": [ - "Ocorreu um erro ao salvar conjunto de dados" + "Chart parameters are invalid.": [ + "Os parâmetros do gráfico são inválidos." ], - "An error occurred while accessing the value.": [ - "Ocorreu um erro ao acessar o valor." + "Chart could not be created.": ["Não foi possível criar o gráfico."], + "Chart could not be updated.": ["Não foi possível atualizar o gráfico."], + "Charts could not be deleted.": ["Não foi possível remover o gráfico."], + "There are associated alerts or reports": [ + "Há alertas ou relatórios associados" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em contato com o seu administrador." + "You don't have access to this chart.": [ + "Você não tem acesso a esse gráfico." ], - "An error occurred while creating %ss: %s": [ - "Ocorreu um erro ao criar %ss: %s" + "Changing this chart is forbidden": ["É proibido alterar este gráfico"], + "Import chart failed for an unknown reason": [ + "A importação do gráfico falhou por um motivo desconhecido" ], - "An error occurred while creating the data source": [ - "Ocorreu um erro ao criar a fonte de dados" + "Error: %(error)s": ["Erro: %(error)s"], + "CSS template not found.": ["Modelo CSS não encontrado."], + "Must be unique": ["Deve ser único"], + "Dashboard parameters are invalid.": [ + "Os parâmetros do painel são inválidos." ], - "An error occurred while creating the value.": [ - "Ocorreu um erro ao criar o valor." + "Dashboard could not be updated.": [ + "Não foi possível atualizar o painel." ], - "An error occurred while deleting the value.": [ - "Ocorreu um erro ao excluir o valor." + "Dashboard could not be deleted.": ["Não foi possível remover o painel."], + "Changing this Dashboard is forbidden": [ + "É proibido alterar este painel" ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao expandir o esquema da tabela. Por favor entre em contato com o seu administrador." + "Import dashboard failed for an unknown reason": [ + "A importação do painel falhou por um motivo desconhecido" ], - "An error occurred while fetching %s info: %s": [ - "Ocorreu um erro ao buscar as informações de %s: %s" + "You don't have access to this dashboard.": [ + "Você não tem acesso a esse painel." ], - "An error occurred while fetching %ss: %s": [ - "Ocorreu um erro durante a busca de %ss: %s" + "You don't have access to this embedded dashboard config.": [ + "Você não tem acesso a essa configuração de painel incorporado." ], - "An error occurred while fetching available CSS templates": [ - "Ocorreu um erro ao buscar os modelos CSS disponíveis" + "No data in file": ["Não há dados no arquivo"], + "Database parameters are invalid.": [ + "Os parâmetros do banco de dados são inválidos." ], - "An error occurred while fetching chart created by values: %s": [ - "Ocorreu um erro ao buscar o gráfico criado por valores: %s" + "A database with the same name already exists.": [ + "Já existe um banco de dados com o mesmo nome." ], - "An error occurred while fetching chart owners values: %s": [ - "Ocorreu um erro ao obter os valores dos proprietários do gráfico: %s" + "Field is required": ["Campo é obrigatório"], + "Field cannot be decoded by JSON. %(json_error)s": [ + "O campo não pode ser decodificado por JSON. %(json_error)s" ], - "An error occurred while fetching created by values: %s": [ - "Ocorreu um erro durante a pesquisa de valores criados por: %s" + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "O metadata_params no campo Extra não está configurado corretamente. A chave %{key}s é inválida." ], - "An error occurred while fetching dashboard created by values: %s": [ - "Ocorreu um erro ao buscar o painel criado por valores: %s" + "Database not found.": ["Banco de dados não encontrado."], + "Database could not be created.": [ + "Não foi possível criar o banco de dados." ], - "An error occurred while fetching dashboard owner values: %s": [ - "Ocorreu um erro ao obter os valores do proprietário do painel: %s" + "Database could not be updated.": [ + "Não foi possível atualizar o banco de dados." ], - "An error occurred while fetching dashboards": [ - "Ocorreu um erro durante a pesquisa de painéis" + "Connection failed, please check your connection settings": [ + "Falha na conexão, por favor verificar suas configurações de conexão" ], - "An error occurred while fetching dashboards: %s": [ - "Ocorreu um erro durante a pesquisa de painéis: %s" + "Cannot delete a database that has datasets attached": [ + "Não é possível excluir um banco de dados que tenha conjuntos de dados anexados" ], - "An error occurred while fetching database related data: %s": [ - "Ocorreu um erro ao obter dados relacionados com a base de dados: %s" + "Database could not be deleted.": [ + "Não foi possível remover o banco de dados." ], - "An error occurred while fetching database values: %s": [ - "Ocorreu um erro durante a extração dos valores da base de dados: %s" + "Stopped an unsafe database connection": [ + "Parou uma conexão insegura ao banco de dados" ], - "An error occurred while fetching dataset datasource values: %s": [ - "Ocorreu um erro ao obter os valores da fonte de dados do conjunto de dados: %s" + "Could not load database driver": [ + "Não foi possível carregar o driver do banco de dados" ], - "An error occurred while fetching dataset owner values: %s": [ - "Ocorreu um erro ao obter os valores do proprietário do conjunto de dados: %s" + "Unexpected error occurred, please check your logs for details": [ + "Ocorreu um erro inesperado, verifique os registros(logs) para obter detalhes" ], - "An error occurred while fetching dataset related data": [ - "Ocorreu um erro ao obter dados relacionados com o conjunto de dados" + "no SQL validator is configured": [ + "nenhum validador SQL está configurado" ], - "An error occurred while fetching dataset related data: %s": [ - "Ocorreu um erro ao obter dados relacionados com o conjunto de dados: %s" + "No validator found (configured for the engine)": [ + "Sem validador encontrado (configurado para o motor)" ], - "An error occurred while fetching datasets: %s": [ - "Ocorreu um erro durante a pesquisa de conjuntos de dados: %s" + "Was unable to check your query": [ + "Não foi possível verificar sua consulta" ], - "An error occurred while fetching function names.": [ - "Ocorreu um erro durante a busca de nomes de funções." + "An unexpected error occurred": ["Ocorreu um erro inesperado"], + "Import database failed for an unknown reason": [ + "A importação do banco de dados falhou por um motivo desconhecido" ], - "An error occurred while fetching owners values: %s": [ - "Ocorreu um erro ao buscar os valores dos proprietários: %s" + "Could not load database driver: {}": [ + "Não foi possível carregar o driver de banco de dados: {}" ], - "An error occurred while fetching schema values: %s": [ - "Ocorreu um erro durante a extração dos valores do esquema: %s" + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." ], - "An error occurred while fetching tab state": [ - "Ocorreu um erro ao obter o estado da aba" + "Database is offline.": ["O banco de dados está off-line."], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validador)es não conseguiu verificar sua consulta.\nPor favor revise sua consulta.\nExceção: %(ex)s" ], - "An error occurred while fetching table metadata": [ - "Ocorreu um erro ao obter os metadados da tabela" + "SSH Tunnel could not be deleted.": [ + "Não foi possível excluir o túnel SSH." ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Ocorreu um erro ao obter os metadados da tabela. Por favor entre em contato com seu administrador." + "SSH Tunnel not found.": ["Túnel SSH não encontrado."], + "SSH Tunnel parameters are invalid.": [ + "Os parâmetros do túnel SSH são inválidos." ], - "An error occurred while fetching tag created by values: %s": [ - "Ocorreu um erro ao buscar a tag criada por valores: %s" + "SSH Tunnel could not be updated.": [ + "Não foi possível atualizar o túnel SSH." ], - "An error occurred while fetching user values: %s": [ - "Ocorreu um erro ao buscar os valores do usuário: %s" + "Creating SSH Tunnel failed for an unknown reason": [ + "A criação do túnel SSH falhou por um motivo desconhecido" ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "Ocorreu um erro ao ocultar a barra esquerda. Entre em contato com o administrador." + "SSH Tunneling is not enabled": ["Túnel SSH não está ativado"], + "Must provide credentials for the SSH Tunnel": [ + "Forneça credenciais para o Túnel SSH" ], - "An error occurred while importing %s: %s": [ - "Ocorreu um erro durante a importação de %s: %s" + "Cannot have multiple credentials for the SSH Tunnel": [ + "Não é possível ter múltiplas credenciais para o Túnel SSH" ], - "An error occurred while loading the SQL": [ - "Ocorreu um erro ao carregar o SQL" + "The database was not found.": ["O banco de dados não foi encontrado."], + "Dataset %(name)s already exists": [ + "%(nome)s do conjunto de dados já existe" ], - "An error occurred while opening Explore": [ - "Ocorreu um erro ao abrir o Explorador" + "Database not allowed to change": [ + "Banco de dados não pode ser alterado" ], - "An error occurred while parsing the key.": [ - "Ocorreu um erro ao analisar a chave." + "One or more columns do not exist": ["Um ou mais colunas não existem"], + "One or more columns are duplicated": [ + "Uma ou mais colunas estão duplicadas" ], - "An error occurred while removing query. Please contact your administrator.": [ - "Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu administrador." + "One or more columns already exist": ["Uma ou mais colunas já existem"], + "One or more metrics do not exist": ["Um ou mais métricas não existem"], + "One or more metrics are duplicated": [ + "Um ou mais métricas estão duplicadas" ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Ocorreu um erro ao remover a aba. Por favor entre em contato com seu administrador." + "One or more metrics already exist": ["Uma ou mais métricas já existem"], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Não foi possível encontrar a tabela [%(table_name)s], verifique novamente a conexão ao banco de dados, o esquema e o nome da tabela" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao remover o esquema da tabela. Por favor entre em contato com seu administrador." + "Dataset does not exist": ["Conjunto de dados não existe"], + "Dataset parameters are invalid.": [ + "Os parâmetros para o conjunto de dados são inválidos." ], - "An error occurred while rendering the visualization: %s": [ - "Ocorreu um erro ao renderizar a visualização: %s" + "Dataset could not be created.": [ + "Não foi possível criar o conjunto de dados." ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com seu administrador." + "Dataset could not be updated.": [ + "Não foi possível atualizar o conjunto de dados." ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Ocorreu um erro ao definir a aba. Por favor entre em contato com seu administrador." + "Samples for dataset could not be retrieved.": [ + "Não foi possível recuperar as amostras do conjunto de dados." ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Ocorreu um erro ao definir o ID da base de dados da aba. Por favor entre em contato com seu administrador." + "Changing this dataset is forbidden": [ + "É proibido alterar este conjunto de dados" ], - "An error occurred while setting the tab name. Please contact your administrator.": [ - "Ocorreu um erro ao definir o nome da guia. Entre em contato com o administrador." + "Import dataset failed for an unknown reason": [ + "A importação do conjunto de dados falhou por um motivo desconhecido" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Ocorreu um erro ao definir o esquema da aba. Por favor entre em contato com seu administrador." + "You don't have access to this dataset.": [ + "Você não tem acesso a esse conjunto de dados." ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "Ocorreu um erro ao definir os parâmetros do modelo da aba. Por favor entre em contato com seu administrador." + "Dataset could not be duplicated.": [ + "Não foi possível duplicar o conjunto de dados." ], - "An error occurred while starring this chart": [ - "Ocorreu um erro ao inserir esse gráfico" + "Data URI is not allowed.": ["URI de dados não são permitidos."], + "Dataset column not found.": [ + "Coluna do conjunto de dados não encontrada." ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "Ocorreu um erro ao armazenar o ID da consulta mais recente no backend. Por favor entre em contato com seu administrador se esse problema persist." + "Dataset column delete failed.": [ + "Falha na exclusão da coluna do conjunto de dados." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda de suas alterações, salve a consulta usando o botão \"Save Query\"." + "Dataset metric not found.": [ + "A métrica do conjunto de dados não foi encontrada." ], - "An error occurred while updating the value.": [ - "Ocorreu um erro ao atualizar o valor." + "Dataset metric delete failed.": [ + "Falha na exclusão da métrica do conjunto de dados." ], - "An error occurred while upserting the value.": [ - "Ocorreu um erro ao inserir o valor." + "Form data not found in cache, reverting to chart metadata.": [ + "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do gráfico." ], - "An unexpected error occurred": ["Ocorreu um erro inesperado"], - "An unknown error occurred. Please contact your Superset administrator": [ - "Ocorreu um erro desconhecido. Por favor entre em contato com seu administrador do Superset" + "Form data not found in cache, reverting to dataset metadata.": [ + "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do conjunto de dados." ], - "Anchor to": ["Âncora para"], - "Angle at which to end progress axis": [ - "Ângulo em que termina o eixo de progressão" + "[Missing Dataset]": ["[Conjunto de dados ausente]"], + "Saved queries could not be deleted.": [ + "Não foi possível eliminar as consultas salvas." ], - "Angle at which to start progress axis": [ - "Ângulo em que inicia o eixo de progressão" + "Saved query not found.": ["Consulta salva não encontrada."], + "Import saved query failed for an unknown reason.": [ + "A consulta salva de importação falhou por um motivo desconhecido." ], - "Animation": ["Animação"], - "Annotation": ["Anotação"], - "Annotation Layer %s": ["Camada de anotação %s"], - "Annotation Layers": ["Camadas de anotação"], - "Annotation Slice Configuration": ["Configuração de fatia de anotação"], - "Annotation could not be created.": [ - "Não foi possível criar uma anotação." + "Saved query parameters are invalid.": [ + "Os parâmetros de consulta salvos são inválidos." ], - "Annotation could not be updated.": [ - "Não foi possível atualizar uma anotação." + "Invalid tab ids: %s(tab_ids)": ["IDs das abas inválido: %s(tab_ids)"], + "Dashboard does not exist": ["Painel não existe"], + "Chart does not exist": ["O gráfico não existe"], + "Database is required for alerts": [ + "O banco de dados é necessário para os alertas" ], - "Annotation delete failed.": ["A eliminação da anotação falhou."], - "Annotation layer": ["Camada de anotação"], - "Annotation layer could not be created.": [ - "Não foi possível criar uma camada de anotação." + "Type is required": ["O tipo é obrigatório"], + "Choose a chart or dashboard not both": [ + "Escolha um gráfico ou painel, não ambos" ], - "Annotation layer could not be deleted.": [ - "Não foi possível remover uma camada de anotação." + "Must choose either a chart or a dashboard": [ + "Deve escolher um gráfico ou um painel" ], - "Annotation layer could not be updated.": [ - "Não foi possível atualizar uma camada de anotação." + "Please save your chart first, then try creating a new email report.": [ + "Por favor primeiramente salvar seu gráfico, então tentar crir um novo relatório de e-mail." ], - "Annotation layer delete failed.": [ - "Exclusão da camada de anotação falhou." + "Please save your dashboard first, then try creating a new email report.": [ + "Por favor, salve primeiro o seu painel e, em seguida, tente criar um novo relatório de e-mail." ], - "Annotation layer description columns": [ - "Colunas de descrição da camada de anotação" + "Report Schedule parameters are invalid.": [ + "Os parâmetros do agendamento de relatório são inválidos." ], - "Annotation layer has associated annotations.": [ - "A camada de anotação tem anotações associadas." + "Report Schedule could not be created.": [ + "Não foi possível criar um agendamento do relatório." ], - "Annotation layer interval end": [ - "Fim do intervalo da camada de anotação" + "Report Schedule could not be updated.": [ + "O agendamento do relatório pode não ser atualizado." ], - "Annotation layer name": ["Nome da camada de anotação"], - "Annotation layer not found.": ["Camada de anotação não encontrada."], - "Annotation layer opacity": ["Opacidade da camada de anotação"], - "Annotation layer parameters are invalid.": [ - "Os parâmetros da camada de anotação são inválidos." + "Report Schedule not found.": [ + "Agendamento de relatório não encontrado." ], - "Annotation layer stroke": ["Traço da camada de anotação"], - "Annotation layer time column": ["Coluna de tempo da camada de anotação"], - "Annotation layer title column": [ - "Coluna de título da camada de anotação" + "Report Schedule delete failed.": [ + "Falha na exclusão do agendamento do relatório." ], - "Annotation layer type": ["Tipo da camada de anotação"], - "Annotation layer value": ["Valor da camada de anotação"], - "Annotation layers": ["Camadas de anotação"], - "Annotation layers are still loading.": [ - "As camadas de anotação ainda estão carregando." + "Report Schedule log prune failed.": [ + "Falha na poda do registo do agendamento do relatório." ], - "Annotation name": ["Nome da anotação"], - "Annotation not found.": ["Anotação não encontrada."], - "Annotation parameters are invalid.": [ - "Parâmetros de anotação são inválidos." + "Report Schedule execution failed when generating a screenshot.": [ + "A execução do agendamento do relatório falhou ao gerar uma captura de tela." ], - "Annotation source": ["Fonte de anotação"], - "Annotation source type": ["Tipo de fonte de anotação"], - "Annotation template created": ["Modelo de anotação criado"], - "Annotation template updated": ["Modelo de anotação atualizado"], - "Annotations and Layers": ["Anotações e camadas"], - "Annotations and layers": ["Anotações e camadas"], - "Annotations could not be deleted.": ["Anotações não foram excluídas."], - "Any additional detail to show in the certification tooltip.": [ - "Qualquer detalhe adicional a mostrar na dica de ferramenta de certificação." + "Report Schedule execution failed when generating a csv.": [ + "A execução do Report Schedule falhou ao gerar um arquivo csv." ], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas aos gráficos individuais deste painel" + "Report Schedule execution failed when generating a dataframe.": [ + "A execução do Report Schedule falhou ao gerar um dataframe." ], - "Append": ["Anexar"], - "Applied cross-filters (%d)": ["Filtros cruzados aplicados (%d)"], - "Applied filters (%d)": ["Filtros aplicados (%d)"], - "Applied filters: %s": ["Filtros aplicados: %s"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "A janela móvel aplicada não devolveu quaisquer dados. Certifique-se de que a consulta de origem satisfaz os períodos mínimos definidos na janela móvel." + "Report Schedule execution got an unexpected error.": [ + "A execução do agendamento de relatório obteve um erro inesperado." ], - "Apply": ["Aplicar"], - "Apply conditional color formatting to metrics": [ - "Aplicar formatação de cor condicional a métricas" + "Report Schedule is still working, refusing to re-compute.": [ + "O agendamento de relatório ainda está funcionando, recusando-se a recalcular." ], - "Apply conditional color formatting to numeric columns": [ - "Aplicar formatação de cor condicional para colunas numéricas" + "Report Schedule reached a working timeout.": [ + "O agendamento do relatório atingiu o tempo limite de trabalho." ], - "Apply filters": ["Aplicar filtros"], - "Apply to all panels": ["Aplicar para todos painéis"], - "Apply to specific panels": ["Aplicar para painéis específicos"], - "April": ["Abril"], - "Arc": ["Arco"], - "Are you sure you intend to overwrite the following values?": [ - "Tem certeza de que pretende substituir os valores a seguir?" + "A report named \"%(name)s\" already exists": [ + "Já existe um relatório denominado \"%(name)s\"" ], - "Are you sure you want to cancel?": ["Tem certeza que deseja cancelar ?"], - "Are you sure you want to delete": ["Tem certeza que deseja remover"], - "Are you sure you want to delete %s?": [ - "Tem certeza de que deseja excluir %s?" + "An alert named \"%(name)s\" already exists": [ + "Já existe um alerta chamado \"%(name)s\"" ], - "Are you sure you want to delete the selected %s?": [ - "Tem certeza que deseja remover o %s selecionado ?" + "Resource already has an attached report.": [ + "Recurso já tem um relatório anexado." ], - "Are you sure you want to delete the selected annotations?": [ - "Tem certeza que deseja remover as anotações selecionadas?" + "Alert query returned more than one row.": [ + "A consulta do alerta retornou mais do que uma linha." ], - "Are you sure you want to delete the selected charts?": [ - "Tem certeza que deseja remover os gráficos selecionados?" + "Alert validator config error.": [ + "Erro na configuração do validador do alerta." ], - "Are you sure you want to delete the selected dashboards?": [ - "Tem certeza que deseja remover os painéis selecionados ?" + "Alert query returned more than one column.": [ + "A consulta do alerta retornou mais de uma coluna." ], - "Are you sure you want to delete the selected datasets?": [ - "Tem certeza que deseja remover os conjuntos de dados selecionados?" + "Alert query returned a non-number value.": [ + "A consulta do alerta retornou um valor não numérico." ], - "Are you sure you want to delete the selected layers?": [ - "Tem certeza que deseja remover as camadas selecionadas?" + "Alert found an error while executing a query.": [ + "O alerta encontrou um erro durante a execução de uma consulta." ], - "Are you sure you want to delete the selected queries?": [ - "Tem certeza que deseja remover as consultas selecionadas ?" + "A timeout occurred while executing the query.": [ + "Ocorreu um tempo limite durante a execução da consulta." ], - "Are you sure you want to delete the selected tags?": [ - "Tem certeza de que deseja excluir as tags selecionadas?" + "A timeout occurred while taking a screenshot.": [ + "Ocorreu um tempo limite ao fazer uma captura de tela." ], - "Are you sure you want to delete the selected templates?": [ - "Tem certeza que deseja remover os modelos selecionados ?" + "A timeout occurred while generating a csv.": [ + "Ocorreu um tempo limite ao gerar um arquivo csv." ], - "Are you sure you want to overwrite this dataset?": [ - "Tem certeza de que deseja substituir esse conjunto de dados?" + "A timeout occurred while generating a dataframe.": [ + "Ocorreu um timeout durante a geração de um dataframe." ], - "Are you sure you want to proceed?": [ - "Tem certeza que deseja continuar ?" + "Alert fired during grace period.": [ + "Alerta disparado durante o período de carência." ], - "Are you sure you want to save and apply changes?": [ - "Tem certeza que deseja salvar e aplicar mudanças ?" + "Alert ended grace period.": ["O alerta terminou o período de carência."], + "Alert on grace period": ["Alerta em período de carência"], + "Report Schedule state not found": [ + "Estado do agendamento do relatório não encontrado" ], - "Area Chart": ["Gráfico de área"], - "Area Chart (legacy)": ["Gráfico de área (legado)"], - "Area chart": ["Gráfico de área"], - "Area chart opacity": ["Opacidade do gráfico de área"], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "Os gráficos de área são semelhantes aos gráficos de linhas na medida em que representam variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras." + "Report schedule system error": [ + "Relatar erro do sistema de programação" ], - "Arrow": ["Seta"], - "Assign a set of parameters as": [ - "Atribuir um conjunto de parâmetros como" + "Report schedule client error": [ + "Relatar erro do cliente de programação" ], - "Associated Charts": ["Gráficos Associados"], - "Async Execution": ["Execução Assíncrona"], - "Asynchronous query execution": ["Execução de consulta assíncrona"], - "August": ["Agosto"], - "Auto": ["Auto"], - "Auto Zoom": ["Zoom automático"], - "Autocomplete": ["Autocompletar"], - "Autocomplete filters": ["Filtros de preenchimento automático"], - "Autocomplete query predicate": [ - "Predicado de consulta de preenchimento automático" + "Report schedule unexpected error": [ + "Erro inesperado no agendamento do relatório" ], - "Automatic Color": ["Cor Automática"], - "Available sorting modes:": ["Modos de ordenação disponíveis:"], - "Average": ["Média"], - "Average value": ["Valor médio"], - "Axis": ["Eixo"], - "Axis Bounds": ["Limites do eixo"], - "Axis Format": ["Formato do eixo"], - "Axis Title": ["Título do eixo"], - "Axis ascending": ["Eixo ascendente"], - "Axis descending": ["Eixo descendente"], - "BOOLEAN": ["BOLEANO"], - "Back": ["Voltar"], - "Back to all": ["Voltar para todos"], - "Backend": ["Backend"], - "Backward values": ["Valores retroativos"], - "Bad formula.": ["Fórmula ruim."], - "Bad spatial key": ["Bad spatial key"], - "Bar": ["Barra"], - "Bar Chart": ["Gráfico de barras"], - "Bar Chart (legacy)": ["Gráfico de barras (legado)"], - "Bar Charts are used to show metrics as a series of bars.": [ - "Os gráficos de barras são usados para mostrar as métricas como uma série de barras." + "Changing this report is forbidden": [ + "É proibido alterar este relatório" ], - "Bar Values": ["Valores de barra"], - "Bar orientation": ["Orientação da barra"], - "Base layer map style": ["Estilo do mapa da camada de base"], - "Based on a metric": ["Com base em uma métrica"], - "Based on granularity, number of time periods to compare against": [ - "Com base na granularidade, número de períodos de tempo para comparação" + "The database could not be found": [ + "Não foi possível encontrar o banco de dados" ], - "Based on what should series be ordered on the chart and legend": [ - "Com base no que as séries devem ser ordenadas no gráfico e na legenda" + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "A estimativa de consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser muito complexa ou o banco de dados pode estar sob carga pesada." ], - "Basic": ["Básico"], - "Basic information": ["Informações básicas"], - "Batch editing %d filters:": ["Batch editando %d filtros:"], - "Battery level over time": ["Nível da bateria ao longo do tempo"], - "Be careful.": ["Cuidado."], - "Before": ["Antes de"], - "Big Number": ["Número grande"], - "Big Number Font Size": ["Tamanho da Fonte do Número Grande"], - "Big Number with Trendline": ["Número grande com Trendline"], - "Bottom": ["Parte inferior"], - "Bottom Margin": ["Margem Inferior"], - "Bottom left": ["Parte inferior esquerda"], - "Bottom margin, in pixels, allowing for more room for axis labels": [ - "Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "O banco de dados referenciado nesta consulta não foi encontrado. Contate um administrador para obter mais assistência ou tente novamente." ], - "Bottom right": ["Parte inferior direita"], - "Bottom to Top": ["De baixo para cima"], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Limites para o eixo Y. Quando deixados em branco, os limites são definidos dinamicamente com base no mínimo/máximo dos dados. Observe que esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a extensão dos dados." + "The query associated with these results could not be found. You need to re-run the original query.": [ + "A consulta associada a esses resultados não pôde ser encontrada. Você precisa executar novamente a consulta original." ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Limites para o eixo. Quando deixados em branco, os limites são definidos dinamicamente com base no mínimo/máximo dos dados. Observe que esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a extensão dos dados." + "Cannot access the query": ["Não foi possível acessar a consulta"], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Os dados não puderam ser recuperados do backend de resultados. Você precisa executar novamente a consulta original." ], - "Box Plot": ["Gráfico de caixa"], - "Breakdowns": ["Desmembramentos"], - "Bubble Chart": ["Gráfico de bolhas"], - "Bubble Color": ["Cor da bolha"], - "Bubble Size": ["Tamanho da bolha"], - "Bubble size": ["Tamanho da bolha"], - "Bucket break points": ["Pontos de quebra de balde"], - "Build": ["Construir"], - "Bulk select": ["Seleção em bloco"], - "Bullet Chart": ["Gráfico de marcadores"], - "Business": ["Negócios"], - "Business Data Type": ["Tipo de dados comerciais"], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "Por padrão, cada filtro carrega, no máximo, 1000 opções no carregamento inicial da página. Marque esta caixa se tiver mais de 1000 valores de filtro e pretenda ativar a pesquisa dinâmica que carrega os valores de filtro à medida que os usuários escrevem (pode aumentar o stress da sua base de dados)." + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Os dados não puderam ser desserializados do backend de resultados. O formato de armazenamento pode ter mudado, tornando os dados antigos. É necessário executar novamente a consulta original." ], - "By key: use column names as sorting key": [ - "Por chave: utilizar os nomes das colunas como chave de ordenação" + "Tag parameters are invalid.": ["Os parâmetros da tag são inválidos."], + "Tag could not be created.": ["Não foi possível criar a tag."], + "Tag could not be deleted.": ["Não foi possível excluir a tag."], + "Tagged Object could not be deleted.": [ + "O objeto marcado não pôde ser excluído." ], - "By key: use row names as sorting key": [ - "Por chave: utilizar nomes de linhas como chave de ordenação" + "An error occurred while creating the value.": [ + "Ocorreu um erro ao criar o valor." ], - "By value: use metric values as sorting key": [ - "Por valor: utilizar valores métricos como chave de ordenação" + "An error occurred while accessing the value.": [ + "Ocorreu um erro ao acessar o valor." ], - "CANCEL": ["CANCELAR"], - "CREATE DATASET": ["CREATE DATASET"], - "CREATE TABLE AS": ["CREATE TABLE AS"], - "CREATE VIEW AS": ["CREATE VIEW AS"], - "CREATE VIEW statement": ["Declaração CREATE VIEW"], - "CRON Schedule": ["Cronograma do CRON"], - "CRON expression": ["Expressão CRON"], - "CSS": ["CSS"], - "CSS Styles": ["Estilos CSS"], - "CSS Templates": ["Modelos CSS"], - "CSS applied to the chart": ["CSS aplicado ao gráfico"], - "CSS template": ["Modelo CSS"], - "CSS template could not be deleted.": [ - "Modelo CSS não pôde ser deletado." + "An error occurred while deleting the value.": [ + "Ocorreu um erro ao excluir o valor." ], - "CSS template name": ["Nome do modelo CSS"], - "CSS template not found.": ["Modelo CSS não encontrado."], - "CSS templates": ["Modelos CSS"], - "CSV Upload": ["Upload de CSV"], - "CSV to Database configuration": ["Configuração CSV para Banco de dados"], - "CSV upload": ["Carregar CSV"], - "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "O CTAS (criar tabela como select) só pode ser executado com uma consulta em que a última instrução seja um SELECT. Certifique-se de que a sua consulta tem um SELECT como última instrução. Depois, tente executar a consulta novamente." + "An error occurred while updating the value.": [ + "Ocorreu um erro ao atualizar o valor." ], - "CTAS Schema": ["Esquema CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "O CVAS (create view as select) só pode ser executado com uma consulta com uma única instrução SELECT. Certifique-se de que a sua consulta tem apenas uma instrução SELECT. Em seguida, tente executar a consulta novamente." + "You don't have permission to modify the value.": [ + "Você não tem permissão para modificar o valor." ], - "CVAS (create view as select) query has more than one statement.": [ - "A consulta CVAS (create view as select) tem mais do que uma declaração." + "Resource was not found.": ["O recurso não foi encontrado."], + "Invalid result type: %(result_type)s": [ + "Tipo de resultado inválido: %(result_type)s" ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "A consulta CVAS (create view as select) não é uma instrução SELECT." + "Columns missing in dataset: %(invalid_columns)s": [ + "Faltam colunas no conjunto de dados: %(invalid_columns)s" ], - "Cache Timeout": ["Tempo limite da cache"], - "Cache Timeout (seconds)": ["Tempo limite da cache (seconds)"], - "Cache timeout": ["Tempo limite da cache"], - "Cached": ["Em cache"], - "Cached %s": ["Cached %s"], - "Cached value not found": ["Valor em cache não encontrado"], - "Calculate contribution per series or row": [ - "Calcular a contribuição por série ou linha" + "A time column must be specified when using a Time Comparison.": [ + "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." ], - "Calculated column [%s] requires an expression": [ - "A coluna calculada [%s] requer uma expressão" + "The chart does not exist": ["O gráfico não existe"], + "The chart datasource does not exist": [ + "A fonte de dados do gráfico não existe" ], - "Calculated columns": ["Colunas calculadas"], - "Calculation type": ["Tipo de cálculo"], - "Calendar Heatmap": ["Mapa de calor do calendário"], - "Can not move top level tab into nested tabs": [ - "Não é possível mover a aba de nível superior para abas aninhadas" + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Rótulos de coluna/métrica duplicados: %(labels)s. Por favor, certifique-se todas métricas e colunas tem um único rótulo." ], - "Can select multiple values": ["Pode selecionar vários valores"], - "Can't have overlap between Series and Breakdowns": [ - "Não pode haver sobreposição entre séries e avarias" + "`operation` property of post processing object undefined": [ + "Propriedade `operation` do objeto de pós-processamento indefinida" ], - "Cancel": ["Cancelar"], - "Cancel query on window unload event": [ - "Cancelar consulta no evento de descarregamento da janela" + "Unsupported post processing operation: %(operation)s": [ + "Operação de pós-processamento sem suporte: %(operation)s" ], - "Cannot access the query": ["Não foi possível acessar a consulta"], - "Cannot delete a database that has datasets attached": [ - "Não é possível excluir um banco de dados que tenha conjuntos de dados anexados" + "[asc]": ["[asc]"], + "[desc]": ["[desc]"], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Erro na expressão jinja no predicado para obter valores: %(msg)s" ], - "Cannot have multiple credentials for the SSH Tunnel": [ - "Não é possível ter múltiplas credenciais para o Túnel SSH" + "Virtual dataset query must be read-only": [ + "A consulta ao conjunto de dados virtual deve ser somente de leitura" ], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Não foi possível importar o painel: %(db_ error)s. \nNão esqueça de criar o banco de dados antes de importar o painel." + "Error while rendering virtual dataset query: %(msg)s": [ + "Erro ao renderizar consulta de conjunto de dados virtual: %(msg)s" ], - "Cannot load filter": ["Não é possível carregar o filtro"], - "Cannot parse time string [%(human_readable)s]": [ - "Não é possível analisar a string de tempo [%(human_readable)s ]" + "Virtual dataset query cannot be empty": [ + "A consulta do conjunto de dados virtual não pode estar vazia" ], - "Categorical": ["Categórico"], - "Categorical Color": ["Cor categórica"], - "Categories to group by on the x-axis.": [ - "Categorias para grupo por sobre o eixo x." + "Virtual dataset query cannot consist of multiple statements": [ + "A consulta de conjunto de dados virtual não pode consistir em várias instruções" ], - "Category": ["Categoria"], - "Category Name": ["Nome da categoria"], - "Category and Percentage": ["Categoria e Porcentagem"], - "Category and Value": ["Categoria e valor"], - "Category name": ["Nome da categoria"], - "Category of target nodes": ["Categoria dos nós de destino"], - "Category, Value and Percentage": ["Categoria, Valor e Porcentagem"], - "Cell Padding": ["Preenchimento de célula"], - "Cell Radius": ["Raio da Célula"], - "Cell Size": ["Tamanho da célula"], - "Cell bars": ["Barras celulares"], - "Cell content": ["Conteúdo da célula"], - "Cell limit": ["Limite de célula"], - "Center": ["Centro"], - "Certification": ["Certificação"], - "Certification details": ["Detalhes de certificação"], - "Certified": ["Certificado"], - "Certified By": ["Certificado Por"], - "Certified by": ["Certificado por"], - "Certified by %s": ["Certificado por %s"], - "Change order of columns.": ["Mudar ordem das colunas."], - "Change order of rows.": ["Mudar ordem das linhas."], - "Changed By": ["Alterado por"], - "Changed on": ["Alterado em"], - "Changes saved.": ["Alterações salvas."], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Alterar o conjunto de dados pode quebrar o gráfico se o gráfico depender de colunas ou metadados que não existem no conjunto de dados de destino" + "Error in jinja expression in RLS filters: %(msg)s": [ + "Erro na expressão jinja em filtros RLS: %(msg)s" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "A alteração destas definições afectará todos os gráficos que utilizem este conjunto de dados, incluindo os gráficos pertencentes a outras pessoas." + "Metric '%(metric)s' does not exist": ["Métrica '%(métric)s' não existe"], + "Db engine did not return all queried columns": [ + "O motor do banco de dados não retornou todas as colunas consultadas" ], - "Changing this Dashboard is forbidden": [ - "É proibido alterar este painel" + "Only `SELECT` statements are allowed": [ + "Apenas instruções `SELECT` são permitidas" ], - "Changing this chart is forbidden": ["É proibido alterar este gráfico"], - "Changing this control takes effect instantly": [ - "A alteração deste controle tem efeito imediato" + "Only single queries supported": ["Só são suportadas consultas únicas"], + "Columns": ["Colunas"], + "Show Column": ["Mostrar Coluna"], + "Add Column": ["Adicionar coluna"], + "Edit Column": ["Editar Coluna"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Para tornar essa coluna disponível como uma opção [Time Granularity], a coluna deve ser DATETIME ou semelhante a DATETIME" ], - "Changing this dataset is forbidden": [ - "É proibido alterar este conjunto de dados" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Se essa coluna está exposta na seção `Filtros` da visualização de exploração." ], - "Changing this datasource is forbidden": [ - "É proibido alterar essa fonte de dados" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "O tipo de dados que foi inferido pela base de dados. Em alguns casos, pode ser necessário introduzir manualmente um tipo para colunas definidas por expressões. Na maioria dos casos, os usuários não devem precisar de alterar isto." ], - "Changing this report is forbidden": [ - "É proibido alterar este relatório" + "Column": ["Coluna"], + "Verbose Name": ["Nome detalhado"], + "Description": ["Descrição"], + "Groupable": ["Agrupável"], + "Filterable": ["Filtrável"], + "Table": ["Tabela"], + "Expression": ["Expressão"], + "Is temporal": ["É temporal"], + "Datetime Format": ["Formato de data e hora"], + "Type": ["Tipo"], + "Business Data Type": ["Tipo de dados comerciais"], + "Invalid date/timestamp format": [ + "Formato de data/carimbo de data/hora inválido" ], - "Character to interpret as decimal point": [ - "Caractere a ser interpretado como ponto decimal" + "Metrics": ["Métricas"], + "Show Metric": ["Mostrar Métricas"], + "Add Metric": ["Adicionar Métrica"], + "Edit Metric": ["Editar Métrica"], + "Metric": ["Métrica"], + "SQL Expression": ["Expressão SQL"], + "D3 Format": ["Formato D3"], + "Extra": ["Extra"], + "Warning Message": ["Mensagem de aviso"], + "Tables": ["Tabelas"], + "Show Table": ["Mostrar Tabela"], + "Import a table definition": ["Importar uma definição de tabela"], + "Edit Table": ["Editar Tabela"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "A lista de gráficos associados a esta tabela. Ao alterar esta fonte de dados, pode alterar o comportamento dos gráficos associados. Tenha também em atenção que os gráficos têm de apontar para uma fonte de dados, pelo que este formulário falhará ao ser guardado se remover gráficos de uma fonte de dados. Se pretender alterar a fonte de dados de um gráfico, substitua o gráfico da 'visão de exploração'" ], - "Character to interpret as decimal point.": [ - "Caractere para interpretar como ponto decimal." + "Timezone offset (in hours) for this datasource": [ + "Deslocamento de fuso horário (em horas) para essa fonte de dados" ], - "Chart": ["Gráfico"], - "Chart %(id)s not found": ["Gráfico %(id)s não encontrado"], - "Chart Cache Timeout": ["Tempo limite da cache do gráfico"], - "Chart Data: %s": ["Dados do gráfico: %s"], - "Chart ID": ["ID do gráfico"], - "Chart Options": ["Opções do gráfico"], - "Chart Orientation": ["Orientação do gráfico"], - "Chart Source": ["Fonte do gráfico"], - "Chart Title": ["Título do gráfico"], - "Chart [%s] has been overwritten": ["O gráfico [%s] foi sobrescrito"], - "Chart [%s] has been saved": ["O gráfico [%s] foi salvo"], - "Chart [%s] was added to dashboard [%s]": [ - "O gráfico [%s] foi adicionado ao painel [%s]" + "Name of the table that exists in the source database": [ + "Nome da tabela que existe no banco de dados de origem" ], - "Chart [{}] has been overwritten": ["O gráfico [{}] foi substituído"], - "Chart [{}] has been saved": ["O gráfico [{}] foi salvo"], - "Chart [{}] was added to dashboard [{}]": [ - "Gráfico [{}] foi adicionado ao painel [{}]" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Esquema, como usado apenas em alguns bancos de dados como Postgres, Redshift e DB2" ], - "Chart cache timeout": ["Tempo limite da cache do gráfico"], - "Chart changes": ["Alterações no gráfico"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "Componente de gráfico que lhe permite adicionar uma UI de filtro personalizada ao seu painel. Quando adicionada ao painel, uma caixa de filtro permite que os utilizadores especifiquem valores ou intervalos específicos para filtrar os gráficos. Os gráficos aos quais cada caixa de filtro é aplicada também podem ser ajustados na exibição do painel.\n\n Observe que este plug-in está sendo substituído pelo novo recurso Filtros que fica na própria exibição do painel. É mais fácil de usar e tem mais recursos!" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Esses campos funcionam como uma visualização do Superset, o que significa que o Superset executará uma consulta com base nessa string como uma subconsulta." ], - "Chart could not be created.": ["Não foi possível criar o gráfico."], - "Chart could not be deleted.": ["Não foi possível remover o gráfico."], - "Chart could not be updated.": ["Não foi possível atualizar o gráfico."], - "Chart does not exist": ["O gráfico não existe"], - "Chart has no query context saved. Please save the chart again.": [ - "O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico novamente." + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Predicado aplicado quando se vai buscar um valor distinto para preencher o componente de controle do filtro. Suporta a sintaxe do modelo jinja. Aplica-se apenas quando `Ativar seleção de filtro` está ativado." ], - "Chart height": ["Altura do gráfico"], - "Chart imported": ["Gráfico importado"], - "Chart last modified": ["Última modificação do gráfico"], - "Chart last modified by": ["Gráfico modificado pela última vez por"], - "Chart name": ["Nome do gráfico"], - "Chart options": ["Opções do gráfico"], - "Chart owners": ["Proprietários do gráfico"], - "Chart parameters are invalid.": [ - "Os parâmetros do gráfico são inválidos." + "Redirects to this endpoint when clicking on the table from the table list": [ + "Redireciona para este endpoint quando se clica na tabela a partir da lista de tabelas" ], - "Chart properties updated": ["Propriedades do gráfico atualizadas"], - "Chart title": ["Título do gráfico"], - "Chart type": ["Tipo de gráfico"], - "Chart type requires a dataset": [ - "O tipo de gráfico requer um conjunto de dados" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Se deve preencher o menu suspenso do filtro na seção de filtro da exibição de exploração com uma lista de valores distintos obtidos do backend em tempo real" ], - "Chart width": ["Largura do gráfico"], - "Charts": ["Gráficos"], - "Charts could not be deleted.": ["Não foi possível remover o gráfico."], - "Check configuration": ["Verificar a configuração"], - "Check for sorting ascending": ["Verificar se a ordenação é crescente"], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "Verificar se o gráfico de rosáceas deve utilizar a área do segmento em vez do raio do segmento para o cálculo das proporções" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Se a tabela foi gerada pelo fluxo 'Visualizar' no SQL Lab" ], - "Check out this chart in dashboard:": ["Veja este gráfico no painel:"], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Marque para aplicar filtros instantaneamente à medida que são alterados, em vez de apresentar o botão [Aplicar]" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Um conjunto de parâmetros que tornar-se disponível na consulta usando a sintaxe de modelagem Jinja" ], - "Check to force date partitions to have the same height": [ - "Marcar para forçar as partições de data a terem a mesma altura" + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Duração (em segundos) do tempo limite de armazenamento em cache para esta tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que este tempo limite é predefinido para o tempo limite da base de dados se não for definido." ], - "Check to include time column dropdown": [ - "Marcar para incluir o menu suspenso da coluna de tempo" + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "" ], - "Check to include time grain dropdown": [ - "Marque para incluir o menu suspenso de grãos de tempo" + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "" ], - "Child label position": ["Posição do rótulo filho"], - "Choice of [Label] must be present in [Group By]": [ - "Escolha do [Rótulo] deve estar em [Agrupar por]" + "Associated Charts": ["Gráficos Associados"], + "Changed By": ["Alterado por"], + "Database": ["Banco de dados"], + "Last Changed": ["Última alteração"], + "Enable Filter Select": ["Ativar seleção de filtro"], + "Schema": ["Esquema"], + "Default Endpoint": ["Endpoint padrão"], + "Offset": ["Deslocamento"], + "Cache Timeout": ["Tempo limite da cache"], + "Table Name": ["Nome da Tabela"], + "Fetch Values Predicate": ["Predicado de obtenção de valores"], + "Owners": ["Proprietários"], + "Main Datetime Column": ["Coluna principal de data e hora"], + "SQL Lab View": ["Visão do SQL Lab"], + "Template parameters": ["Parâmetros do Modelo"], + "Modified": ["Modificado"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "A tabela foi criada. Como parte desse processo de configuração em duas fases, agora você deve clicar no botão de edição da nova tabela para configurá-la." ], - "Choice of [Point Radius] must be present in [Group By]": [ - "A escolha de [Raio do ponto] deve estar presente em [Agrupar por]" + "Dataset schema is invalid, caused by: %(error)s": [ + "Esquema do conjunto de dados inválido, causado por: %(error)s" ], - "Choose File": ["Escolher Arquivo"], - "Choose a chart or dashboard not both": [ - "Escolha um gráfico ou painel, não ambos" + "Title or Slug": ["Título ou Slug"], + "Role": ["Função"], + "Invalid state.": ["Estado inválido."], + "Table name undefined": ["Não da tabela indefinido"], + "Upload Enabled": ["Upload habilitado"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: backend+driver://user:password@database-host/database-name" ], - "Choose a database...": ["Escolha um banco de dados..."], - "Choose a dataset": ["Escolha um conjunto de dados"], - "Choose a metric for right axis": [ - "Escolha uma métrica para o eixo direito" + "Field cannot be decoded by JSON. %(msg)s": [ + "Campo não pode ser decodificado por JSON. %(msg)s" ], - "Choose a number format": ["Escolha um formato de número"], - "Choose a source": ["Escolha uma fonte"], - "Choose a source and a target": ["Escolha uma fonte e um alvo"], - "Choose a target": ["Escolha um alvo"], - "Choose chart type": ["Escolha o tipo de gráfico"], - "Choose one of the available databases from the panel on the left.": [ - "Escolha um dos bancos de dados disponíveis no painel na esquerda." + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "O metadata_params no campo Extra não está configurado corretamente. A chave %(key)s é inválida." ], - "Choose one or more charts for left axis": [ - "Escolha um ou mais gráficos para o eixo esquerdo" + "An engine must be specified when passing individual parameters to a database.": [ + "Deve ser especificado um motor ao passar parâmetros individuais para uma base de dados." ], - "Choose one or more charts for right axis": [ - "Escolha um ou mais gráficos para o eixo direito" + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "A especificação do mecanismo \"InvalidEngine\" não permite a configuração por meio de parâmetros individuais." ], - "Choose the annotation layer type": [ - "Escolha o tipo da camada de anotação" + "Null or Empty": ["Nulo ou Vazio"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Verifique se há erros de sintaxe na consulta ou perto de \"%(error_sintaxe)s \". Em seguida , tente executar sua consulta novamente." ], - "Choose the format for legend values": [ - "Escolha o formato dos valores de legenda" + "Second": ["Segundo"], + "5 second": ["5 segundos"], + "Minute": ["Minuto"], + "5 minute": ["5 minutos"], + "10 minute": ["10 minutos"], + "15 minute": ["15 minutos"], + "Hour": ["Hora"], + "6 hour": ["6 horas"], + "Day": ["Dia"], + "Week": ["Semana"], + "Month": ["Mês"], + "Quarter": ["Trimestre"], + "Year": ["Ano"], + "Week starting Sunday": ["Semana começando no domingo"], + "Week starting Monday": ["Semana começando na segunda-feira"], + "Week ending Saturday": ["Semana terminando no Sábado"], + "Username": ["Nome de usuário"], + "Password": ["Senha"], + "Hostname or IP address": ["Nome do host ou endereço IP"], + "Database port": ["Porta do banco de dados"], + "Database name": ["Nome do banco de dados"], + "Additional parameters": ["Parâmetros adicionais"], + "Use an encrypted connection to the database": [ + "Use uma conexão criptografada com o banco de dados" ], - "Choose the position of the legend": [ - "Choose the position of the legend" + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Não é possível se conectar. Verifique se as seguintes funções estão definidas na conta de serviço: \"Visualizador de dados do BigQuery\", \"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do BigQuery\" e as seguintes permissões estão definidas \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" ], - "Choose the source of your annotations": [ - "Choose the source of your annotations" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para executar essa consulta." ], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "Escolha se um país deve ser sombreado pela métrica ou se lhe deve ser atribuída uma cor com base numa paleta de cores categóricas" + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s." ], - "Chord Diagram": ["Diagrama de acordes"], - "Chosen non-numeric column": ["Coluna não-numérica escolhida"], - "Circle": ["Círculo"], - "Circle -> Arrow": ["Círculo -> Seta"], - "Circle -> Circle": ["Círculo -> Círculo"], - "Circle radar shape": ["Forma de radar circular"], - "Circular": ["Circular"], - "Classic chart that visualizes how metrics change over time.": [ - "Gráfico clássico que visualiza como as métricas mudam ao longo do tempo." + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado para executar essa consulta." ], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "Visão clássica de um conjunto de dados numa planilha de cálculo, linha a coluna. Utilize tabelas para apresentar uma visão dos dados subjacentes ou para mostrar métricas agregadas." + "Either the username \"%(username)s\" or the password is incorrect.": [ + "Ou o nome de usuário \"%(username)s\" ou a senha está incorreta." ], - "Clause": ["Cláusula"], - "Clear": ["Limpar"], - "Clear all": ["Limpar todos"], - "Clear all data": ["Limpar todos os dados"], - "Clear form": ["Limpar formulário"], - "Click the lock to make changes.": [ - "Clique no cadeado para fazer alterações." + "Unable to connect to database \"%(database)s\".": [ + "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." ], - "Click the lock to prevent further changes.": [ - "Clique no cadeado para evitar avançar mudanças." + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Verifique se há erros de sintaxe na sua consulta \"%(erro_servidor)s \". Em seguida , tente executar sua consulta novamente." ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "Clique neste link para mudar para um formulário alternativa que permite você inserir manualmente o URL do SQLAlchemy para esse banco de dados." + "We can't seem to resolve the column \"%(column_name)s\"": [ + "Parece que não conseguimos resolver a coluna \"%(column_name)s\"" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "Clique neste link para mudar para um formulário alternativo que expõe apenas os campos obrigatórios necessários para conectar esse banco de dados." + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "O nome de usuário \"%(username)s\", a senha ou o nome do banco de dados \"%(database)s\" estão incorretos." ], - "Click to cancel sorting": ["Clique para cancelar a ordenação"], - "Click to edit": ["Clique para editar"], - "Click to edit %s.": ["Clique para editar %s."], - "Click to edit chart.": ["Clique para editar o gráfico."], - "Click to edit label": ["Clique para editar o rótulo"], - "Click to favorite/unfavorite": ["Clique para favoritar/não favoritar"], - "Click to force-refresh": ["Clique para forçar a atualização"], - "Click to see difference": ["Clique para ver diferença"], - "Click to sort ascending": ["Clique para classificar em ordem crescente"], - "Click to sort descending": [ - "Clique para classificar em ordem decrescente" + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." ], - "Close": ["Fechar"], - "Close all other tabs": ["Fechar todas as outras abas"], - "Close tab": ["Fechar aba"], - "Cluster label aggregator": ["Agregador de rótulo de cluster"], - "Clustering Radius": ["Raio de agrupamento"], - "Code": ["Código"], - "Collapse all": ["Recolher tudo"], - "Collapse data panel": ["Recolher painel de dados"], - "Collapse row": ["Recolher linha"], - "Collapse tab content": ["Recolher o conteúdo da aba"], - "Collapse table preview": ["Recolher a visualização da tabela"], - "Color": ["Cor"], - "Color +/-": ["Cor +/-"], - "Color Metric": ["Métrica de cores"], - "Color Scheme": ["Esquema de cores"], - "Color Steps": ["Etapas de cores"], - "Color bounds": ["Limites de cor"], - "Color by": ["Cor por"], - "Color metric": ["Métrica de cor"], - "Color of the target location": ["Cor do local de destino"], - "Color scheme": ["Esquema de cores"], - "Colors": ["Cores"], - "Column": ["Coluna"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "A coluna \"%(column)s\" não é numérica ou não existe nos resultados da consulta." + "Unknown MySQL server host \"%(hostname)s\".": [ + "Host do servidor MySQL desconhecido \"%(hostname)s\"." ], - "Column Configuration": ["Configuração da coluna"], - "Column Formatting": ["Formatação de colunas"], - "Column Label(s)": ["Rótulo(s) da coluna"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "Coluna contendo códigos ISO 3166-2 da região/província/departamento em sua tabela." + "The username \"%(username)s\" does not exist.": [ + "O nome de usuário \"%(username)s\" não existe." ], - "Column containing latitude data": ["Coluna contendo dados de latitude"], - "Column containing longitude data": [ - "Coluna contendo dados de longitude" + "The user/password combination is not valid (Incorrect password for user).": [ + "" ], - "Column header tooltip": [ - "Dica de ferramenta para o cabeçalho da coluna" + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" ], - "Column is required": ["A coluna é necessária"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e Dataframe Index for True, são utilizados os nomes de índice." + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [ + "A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ - "Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for fornecido e Dataframe Index (Índice de quadro de dados) for verificado, os nomes de índice serão usados" + "Please re-enter the password.": ["Por favor digite a senha novamente."], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha %(location)s." ], - "Column name": ["Nome da coluna"], - "Column name [%s] is duplicated": ["Nome da coluna [%s] está duplicado"], - "Column referenced by aggregate is undefined: %(column)s": [ - "Coluna referenciado pelo agregado é indefinido: %(column)s" + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada para executar essa consulta." ], - "Column select": ["Seleção de coluna"], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ - "Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se não houver coluna de índice" + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "O esquema \"%(schema_name)s\" não existe. Um esquema válido deve ser usado para executar essa consulta." ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se não houver coluna de índice." + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "Não foi possível conectar-se ao catálogo chamado \"%(nome_do_catálogo)s \"." ], - "Columnar File": ["Arquivo colunar"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Arquivo colunar \"%(columnar_filename)s\" carregado para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\"" + "Unknown Presto Error": ["Erro desconhecido do Presto"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Não foi possível conectar-se ao seu banco de dados chamado \"%(database)s\". Verifique o nome do banco de dados e tente novamente." ], - "Columnar to Database configuration": [ - "Configuração de colunar para banco de dados" + "%(object)s does not exist in this database.": [ + "%(object)s não existe neste banco de dados." ], - "Columns": ["Colunas"], - "Columns To Be Parsed as Dates": [ - "Colunas a serem analisadas como datas" + "Samples for datasource could not be retrieved.": [ + "Não foi possível recuperar as amostras da fonte de dados." ], - "Columns To Read": ["Colunas a serem lidas"], - "Columns missing in dataset: %(invalid_columns)s": [ - "Faltam colunas no conjunto de dados: %(invalid_columns)s" + "Changing this datasource is forbidden": [ + "É proibido alterar essa fonte de dados" ], - "Columns missing in datasource: %(invalid_columns)s": [ - "Colunas ausente na fonte de dados: %(invalid_columns)s" + "Home": ["Início"], + "Database Connections": ["Conexões de banco de dados"], + "Data": ["Dados"], + "Dashboards": ["Painéis"], + "Charts": ["Gráficos"], + "Datasets": ["Conjuntos de dados"], + "Plugins": ["Plugins"], + "Manage": ["Gerenciar"], + "CSS Templates": ["Modelos CSS"], + "SQL Lab": ["SQL Lab"], + "SQL": ["SQL"], + "Saved Queries": ["Consultas salvas"], + "Query History": ["Histórico de consultas"], + "Tags": ["Tags"], + "Action Log": ["Log de ação"], + "Security": ["Segurança"], + "Alerts & Reports": ["Alertas e Relatórios"], + "Annotation Layers": ["Camadas de anotação"], + "Row Level Security": ["Segurança em nível de linha"], + "An error occurred while parsing the key.": [ + "Ocorreu um erro ao analisar a chave." ], - "Columns subtotal position": ["Posição do subtotal das colunas"], - "Columns to calculate distribution across.": [ - "Colunas para calcular a distribuição entre." + "An error occurred while upserting the value.": [ + "Ocorreu um erro ao inserir o valor." ], - "Columns to display": ["Colunas a serem exibidas"], - "Columns to group by": ["Colunas para agrupar por"], - "Columns to group by on the columns": [ - "Colunas para agrupar nas colunas" + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": ["Chave de permalink inválida"], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "A coluna Datetime não é fornecida como parte da configuração da tabela e é exigida por este tipo de gráfico" ], - "Columns to group by on the rows": ["Colunas para agrupar nas linhas"], - "Columns to show": ["Colunas a serem exibidas"], - "Combine metrics": ["Combinar Métricas"], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "Escolhas de cores separadas por vírgulas para os intervalos, por exemplo, 1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e são indexados a 1. O comprimento deve corresponder ao dos limites do intervalo." + "Empty query?": ["Consulta vazia?"], + "Unknown column used in orderby: %(col)s": [ + "Coluna desconhecida usada em orderby: %(col)s" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "Limites de intervalos separados por vírgulas, por exemplo, 2,4,5 para intervalos 0-2, 2-4 e 4-5. O último número deve corresponder ao valor fornecido para MAX." + "Time column \"%(col)s\" does not exist in dataset": [ + "A coluna de tempo \"%(col)s\" não existe no conjunto de dados" ], - "Comparator option": ["Opção de comparador"], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "Compare rapidamente vários gráficos de séries temporais (como sparklines) e métricas relacionadas." + "error_message": ["mensagem de erro"], + "Filter value list cannot be empty": [ + "A lista de valores do filtro não pode estar vazia" ], - "Compare the same summarized metric across multiple groups.": [ - "Comparar a mesma métrica resumida em vários grupos." + "Must specify a value for filters with comparison operators": [ + "Deve especificar um valor para filtros com operadores de comparação" ], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ - "Compara a forma como uma métrica muda ao longo do tempo entre diferentes grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do tempo é visualizada em comprimentos de barra e cores." + "Invalid filter operation type: %(op)s": [ + "Tipo de operação de filtragem inválido: %(op)s" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "Compara métricas de diferentes categorias usando barras. Os comprimentos das barras são utilizados para indicar a magnitude de cada valor e a cor é utilizada para diferenciar os grupos." + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Erro na expressão jinja na cláusula WHERE: %(msg)s" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "Compara os períodos de tempo de diferentes atividades numa visão de linha de tempo compartilhada." + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Erro na expressão jinja na cláusula HAVING: %(msg)s" ], - "Comparison": ["Comparação"], - "Comparison Period Lag": ["Lag do Período de comparação"], - "Comparison suffix": ["Sufixo de comparação"], - "Compose multiple layers together to form complex visuals.": [ - "Compor várias camadas para formar imagens complexas." + "Database does not support subqueries": [ + "O banco de dados não é compatível com subconsultas" ], - "Compute the contribution to the total": [ - "Calcular a contribuição para o total" + "Value must be greater than 0": ["O valor deve ser maior que 0"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "EMAIL_REPORTS_CTA": ["EMAIL_REPORTS_CTA"], + "%(name)s.csv": ["%(name)s.csv"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s não pode ser usado como uma fonte de dados por motivos de segurança." ], - "Condition": ["Condição"], - "Conditional formatting": ["Formatação condicional"], - "Confidence interval": ["Intervalo de confiança"], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "Intervalo de confiança deve ser entre 0 e 1 (exclusivo)" + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [ + "Você não tem o direito de alterar %(resource)s" ], - "Configuration": ["Configuração"], - "Configure Time Range: Last...": [ - "Configurar Intervalo de Tempo: Último..." + "Failed to execute %(query)s": ["Falha ao executar %(query)s"], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Verifique se existem erros de sintaxe nos parâmetros do modelo e certifique-se de que correspondem à consulta SQL e aos parâmetros de definição. Em seguida, tente executar a consulta novamente." ], - "Configure Time Range: Previous...": [ - "Configurar Intervalo de Tempo: Anterior..." + "The query contains one or more malformed template parameters.": [ + "A consulta contém um ou mais parâmetros de modelo malformados." ], - "Configure custom time range": [ - "Configurar intervalo de tempo personalizado" + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Verifique a sua consulta e confirme se todos os parâmetros do modelo estão entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , tente executar sua consulta novamente." ], - "Configure filter scopes": ["Configurar os âmbitos de filtragem"], - "Configure the basics of your Annotation Layer.": [ - "Configurar o fundamentos da sua camada de anotação." + "Tag name is invalid (cannot contain ':')": [ + "O nome do rótulo é inválido (não pode conter ':')" ], - "Configure this dashboard to embed it into an external web application.": [ - "Configurar este painel para incorporá-lo em um aplicativo web externo." + "Scheduled task executor not found": [ + "O executor da tarefa agendada não foi encontrado" ], - "Configure your how you overlay is displayed here.": [ - "Configure a forma como a sobreposição é apresentada aqui." + "Record Count": ["Contagem de registos"], + "No records found": ["Não foram encontrados registos"], + "Filter List": ["Lista de filtros"], + "Search": ["Pesquisar"], + "Refresh": ["Atualizar"], + "Import dashboards": ["Importar painéis"], + "Import Dashboard(s)": ["Importar Painel(eis)"], + "File": ["Arquivo"], + "Choose File": ["Escolher Arquivo"], + "Upload": ["Carregar"], + "Use the edit button to change this field": [ + "Use o botão de edição para alterar esse campo" ], - "Confirm overwrite": ["Confirmar a substituição"], - "Confirm save": ["Confirmar salvar"], - "Connect": ["Conectar"], - "Connect Google Sheet": ["Conectar Planilha Google"], - "Connect Google Sheets as tables to this database": [ - "Conectar Planilhas Google como tabelas para esse banco de dados" + "Test Connection": ["Testar Conexão"], + "Unsupported clause type: %(clause)s": [ + "Tipo de cláusula sem suporte: %(clause)s" ], - "Connect a database": ["Conectar um banco de dados"], - "Connect database": ["Conectar o banco de dados"], - "Connect this database using the dynamic form instead": [ - "Em vez disso, conecte esse banco de dados utilizando o formulário dinâmico" + "Invalid metric object: %(metric)s": [ + "Objeto de métrica inválido: %(metric)s" ], - "Connect this database with a SQLAlchemy URI string instead": [ - "Em vez disso, conecte esse banco de dados com uma cadeia de URI SQLAlchemy" + "Unable to find such a holiday: [%(holiday)s]": [ + "Não foi possível encontrar esse feriado: [%(holiday)s]" ], - "Connection": ["Conexão"], - "Connection failed, please check your connection settings": [ - "Falha na conexão, por favor verificar suas configurações de conexão" + "DB column %(col_name)s has unknown type: %(value_type)s": [ + "Coluna do banco de dados %(nome_da_coluna)s tem tipo desconhecido: %(value_type)s" ], - "Connection looks good!": ["A conexão parece boa !"], - "Continue": ["Continuar"], - "Continuous": ["Contínuo"], - "Contribution": ["Contribuição"], - "Contribution Mode": ["Modo de contribuição"], - "Control": ["Controle"], - "Coordinates": ["Coordenadas"], - "Copied to clipboard!": ["Copiado para a área de transferência!"], - "Copy": ["Copiar"], - "Copy SELECT statement to the clipboard": [ - "Copiar instrução SELECT para a área de transferência" + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "os percentis devem ser uma lista ou tupla com dois valores numéricos, dos quais o primeiro é menor que o segundo valor" ], - "Copy and Paste JSON credentials": ["Copiar e cole as credenciais JSON"], - "Copy and paste the entire service account .json file here": [ - "Copie e cole todo o ficheiro service account.json aqui" + "`compare_columns` must have the same length as `source_columns`.": [ + "` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." ], - "Copy link": ["Copiar link"], - "Copy message": ["Copiar mensagem"], - "Copy of %s": ["Copiar de %s"], - "Copy partition query to clipboard": [ - "Copiar consulta de partição para a área de transferência" + "`compare_type` must be `difference`, `percentage` or `ratio`": [ + "`compare_type` deve ser `difference`, `percentage` ou `ratio`" ], - "Copy permalink to clipboard": [ - "Copiar permalink para a área de transferência" + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "A coluna \"%(column)s\" não é numérica ou não existe nos resultados da consulta." ], - "Copy query URL": ["Copiar URL da consulta"], - "Copy query link to your clipboard": [ - "Copiar link de consulta para sua área de transferência" + "`rename_columns` must have the same length as `columns`.": [ + "`rename_columns` deve ter o mesmo comprimento que `columns`." ], - "Copy the account name of that database you are trying to connect to.": [ - "Copie o nome da conta do banco de dados à qual se está tentando conectar." + "Invalid cumulative operator: %(operator)s": [ + "Operador cumulativo inválido: %(operator)s" ], - "Copy the name of the HTTP Path of your cluster.": [ - "Copiar o nome do caminho HTTP de seu cluster." + "Invalid geohash string": ["Cadeia de caracteres geohash inválida"], + "Invalid longitude/latitude": ["Longitude/latitude inválida"], + "Invalid geodetic string": ["Cadeia geodésica inválida"], + "Pivot operation requires at least one index": [ + "A operação de pivotagem requer em ao menos um índice" ], - "Copy the name of the database you are trying to connect to.": [ - "Copiar o nome do banco de dados que você está tentando se conectar." + "Pivot operation must include at least one aggregate": [ + "A operação de pivotagem deve incluir pelo menos um agregado" ], - "Copy to Clipboard": ["Copiar para Área de transferência"], - "Copy to clipboard": ["Copiar para área de transferência"], - "Correlation": ["Correlação"], - "Cost estimate": ["Estimativa de custo"], - "Could not determine datasource type": [ - "Não foi possível determinar o tipo de fonte de dados" + "`prophet` package not installed": ["Pacote `prophet` não instalado"], + "Time grain missing": ["Grão do tempo ausente"], + "Unsupported time grain: %(time_grain)s": [ + "Grão de tempo não suportado: %(time_grain)s" ], - "Could not fetch all saved charts": [ - "Não foi possível obter todos os gráficos salvos" + "Periods must be a whole number": [ + "Os períodos devem ser um número inteiro" ], - "Could not find viz object": ["Não foi possível encontrar o objeto viz"], - "Could not load database driver": [ - "Não foi possível carregar o driver do banco de dados" + "Confidence interval must be between 0 and 1 (exclusive)": [ + "Intervalo de confiança deve ser entre 0 e 1 (exclusivo)" ], - "Could not load database driver: %(driver_name)s": [ - "Não foi possível carregar o driver do banco de dados: %(driver_name)s" + "DataFrame must include temporal column": [ + "DataFrame deve incluir uma coluna temporal" ], - "Could not load database driver: {}": [ - "Não foi possível carregar o driver de banco de dados: {}" + "DataFrame include at least one series": [ + "DataFrame inclui pelo menos uma série" ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count": ["Contar"], - "Count Unique Values": ["Contar valores únicos"], - "Count as Fraction of Columns": ["Contar como fração de Colunas"], - "Count as Fraction of Rows": ["Contar como fração de Linhas"], - "Count as Fraction of Total": ["Contar como fração do Total"], - "Country": ["País"], - "Country Color Scheme": ["Esquema de cores do país"], - "Country Column": ["Coluna do país"], - "Country Field Type": ["Tipo de campo País"], - "Country Map": ["Mapa do País"], - "Create": ["Criar"], - "Create Chart": ["Criar gráfico"], - "Create a dataset": ["Criar um conjunto de dados"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "Criar um conjunto de dados para começar a visualizar seus dados como um gráfico ou vá para\n SQL Lab para consultar seus dados." + "Label already exists": ["O rótulo já existe"], + "Resample operation requires DatetimeIndex": [ + "A operação de reamostragem requer DatetimeIndex" ], - "Create a new chart": ["Criar um novo gráfico"], - "Create chart": ["Criar gráfico"], - "Create chart with dataset": ["Criar gráfico com conjunto de dados"], - "Create dataset": ["Criar conjunto de dados"], - "Create dataset and create chart": [ - "Criar conjunto de dados e criar gráfico" + "Undefined window for rolling operation": [ + "Janela indefinida para operação de rolagem" ], - "Create new chart": ["Criar novo gráfico"], - "Create new filter set": ["Criar novo conjunto de filtros"], - "Create or select schema...": ["Criar ou selecionar esquema..."], - "Created": ["Criado"], - "Created On": ["Criado em"], - "Created by": ["Criado por"], - "Created by me": ["Criado por mim"], - "Created content": ["Conteúdo criado"], - "Created on": ["Criado em"], - "Creating SSH Tunnel failed for an unknown reason": [ - "A criação do túnel SSH falhou por um motivo desconhecido" + "Window must be > 0": ["A janela deve ser > 0"], + "Invalid rolling_type: %(type)s": ["Inválido rolling_type: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Opções inválidas para %(rolling_type)s: %(opções)s" ], - "Creating a data source and creating a new tab": [ - "Criando uma fonte de dados e criando uma nova guia" + "Referenced columns not available in DataFrame.": [ + "As colunas referenciadas não estão disponíveis no DataFrame." ], - "Creator": ["Criador"], - "Crimson": ["Carmesim"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "Filtro cruzado vai ser aplicado para todos os gráficos que utilizam esse conjunto de dados." + "Column referenced by aggregate is undefined: %(column)s": [ + "Coluna referenciado pelo agregado é indefinido: %(column)s" ], - "Cross-filtering is not enabled for this dashboard.": [ - "A filtragem cruzada não está ativada para esse painel." + "Operator undefined for aggregator: %(name)s": [ + "Operador indefinido para o agregador: %(name)s" ], - "Cross-filters": ["Filtros cruzados"], - "Cumulative": ["Acumulado"], - "Currently rendered: %s": ["Atualmente renderizado: %s"], - "Custom": ["Personalizado"], - "Custom Plugin": ["Plugin personalizado"], - "Custom Plugins": ["Plugins personalizados"], - "Custom SQL": ["SQL personalizado"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "As métricas ad-hoc de SQL personalizado não estão ativadas para este conjunto de dados" + "Invalid numpy function: %(operator)s": [ + "Função numpy inválida: %(operator)s" ], - "Custom SQL fields cannot contain sub-queries.": [ - "Os campos SQL personalizados não podem conter subconsultas." + "json isn't valid": ["json não é válido"], + "Export to YAML": ["Exportar para YAML"], + "Export to YAML?": ["Exportar para YAML?"], + "Delete": ["Excluir"], + "Delete all Really?": ["Realmente excluir tudo?"], + "Is favorite": ["É favorito"], + "Is tagged": ["É marcado"], + "The data source seems to have been deleted": [ + "A Fonte de dados parece ter sido excluída" ], - "Custom time filter plugin": ["Plugin de filtro de tempo personalizado"], - "Customize": ["Personalizar"], - "Customize Metrics": ["Personalizar métricas"], - "Customize columns": ["Personalizar colunas"], - "Cyclic dependency detected": ["Detectada dependência cíclica"], - "D3 Format": ["Formato D3"], - "D3 format": ["Formato D3"], - "D3 format syntax: https://github.com/d3/d3-format": [ - "formato D3 sintaxe: https://github.com/d3/d3-format" + "The user seems to have been deleted": [ + "O usuário parece ter sido excluído" ], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ - "Formato de número D3 para números entre -1,0 e 1,0, útil quando se pretende ter dígitos significativos diferentes para números pequenos e grandes" + "You don't have the rights to download as csv": [ + "Você não tem o direito de fazer o download como csv" ], - "D3 time format for datetime columns": [ - "Formato de hora D3 para colunas datetime" + "Error: permalink state not found": [ + "Erro: estado do link permanente não encontrado" ], - "D3 time format syntax: https://github.com/d3/d3-time-format": [ - "Formato de hora D3 sintaxe: https://github.com/d3/d3-time-format" + "Error: %(msg)s": ["Erro: %(msg)s"], + "You don't have the rights to alter this chart": [ + "Você não tem o direito de alterar esse gráfico" ], - "DATETIME": ["DATA"], - "DB column %(col_name)s has unknown type: %(value_type)s": [ - "Coluna do banco de dados %(nome_da_coluna)s tem tipo desconhecido: %(value_type)s" + "You don't have the rights to create a chart": [ + "Você não tem o direito de criar um gráfico" ], - "DEC": ["DEZ"], - "DELETE": ["APAGAR"], - "DML": ["DML"], - "Daily seasonality": ["Sazonalidade diária"], - "Dark": ["Escuro"], - "Dark Cyan": ["Escuro Ciano"], - "Dark mode": ["Modo escuro"], - "Dashboard": ["Painel"], - "Dashboard [%s] just got created and chart [%s] was added to it": [ - "O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a ele" + "Explore - %(table)s": ["Explorar - %(table)s"], + "Explore": ["Explorar"], + "Chart [{}] has been saved": ["O gráfico [{}] foi salvo"], + "Chart [{}] has been overwritten": ["O gráfico [{}] foi substituído"], + "You don't have the rights to alter this dashboard": [ + "Você não tem o direito de alterar esse painel de controle" + ], + "Chart [{}] was added to dashboard [{}]": [ + "Gráfico [{}] foi adicionado ao painel [{}]" + ], + "You don't have the rights to create a dashboard": [ + "Você não tem direitos para criar um painel" ], "Dashboard [{}] just got created and chart [{}] was added to it": [ "Painel [{}] acabou de ser criado e o gráfico [{}] foi adicionado a ele" ], - "Dashboard could not be created.": ["Não foi possível criar o painel."], - "Dashboard could not be deleted.": ["Não foi possível remover o painel."], - "Dashboard could not be updated.": [ - "Não foi possível atualizar o painel." - ], - "Dashboard does not exist": ["Painel não existe"], - "Dashboard imported": ["Painel importado"], - "Dashboard parameters are invalid.": [ - "Os parâmetros do painel são inválidos." + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Pedido malformado. Os argumentos slice_id ou table_name e db_name são esperados" ], - "Dashboard properties": ["Propriedades do painel"], - "Dashboard properties updated": ["Propriedades do painel atualizadas"], - "Dashboard scheme": ["Esquema do painel"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais definidas na \n seção de filtros de cada gráfico. Adicione colunas temporais aos filtros \n do gráfico para que esse filtro do painel afete esses gráficos." + "Chart %(id)s not found": ["Gráfico %(id)s não encontrado"], + "Table %(table)s wasn't found in the database %(db)s": [ + "Tabela %(table)s não foi encontrada no banco de dados %(db)s" ], - "Dashboard title": ["Título do painel"], - "Dashboard usage": ["Uso do painel"], - "Dashboards": ["Painéis"], - "Dashboards added to": ["Painéis adicionados a"], - "Dashboards could not be deleted.": [ - "Não foi possível apagar os painéis." + "permalink state not found": ["estado do permalink não encontrado"], + "Show CSS Template": ["Mostral modelo CSS"], + "Add CSS Template": ["Adicionar modelo CSS"], + "Edit CSS Template": ["Editar modelo CSS"], + "Template Name": ["Nome do Modelo"], + "A human-friendly name": ["Um nome amigável ao ser humano"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Usado internamente para identificar o plug-in. Deve ser definido com o nome do pacote do package.json do plugin" ], - "Dashboards do not exist": ["Os painéis não existem"], - "Dashed": ["Traço"], - "Data": ["Dados"], - "Data Table": ["Tabela de dados"], - "Data URI is not allowed.": ["URI de dados não são permitidos."], - "Data Zoom": ["Zoom de dados"], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "Os dados não puderam ser desserializados do backend de resultados. O formato de armazenamento pode ter mudado, tornando os dados antigos. É necessário executar novamente a consulta original." + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Um URL completo apontando para o localização do plug-in construído (poderia ser hospedado em um CDN, por exemplo)" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Os dados não puderam ser recuperados do backend de resultados. Você precisa executar novamente a consulta original." + "Custom Plugins": ["Plugins personalizados"], + "Custom Plugin": ["Plugin personalizado"], + "Add a Plugin": ["Adicionar um Plugin"], + "Edit Plugin": ["Editar Plugin"], + "The dataset associated with this chart no longer exists": [ + "O conjunto de dados associado a este gráfico já não existe" ], - "Data has no time steps": ["Os dados não têm intervalos de tempo"], - "Data preview": ["Pré-visualização de dados"], - "Data refreshed": ["Dados atualizados"], - "Data type": ["Tipo de dado"], - "DataFrame include at least one series": [ - "DataFrame inclui pelo menos uma série" + "Could not determine datasource type": [ + "Não foi possível determinar o tipo de fonte de dados" ], - "DataFrame must include temporal column": [ - "DataFrame deve incluir uma coluna temporal" + "Could not find viz object": ["Não foi possível encontrar o objeto viz"], + "Show Chart": ["Mostrar Gráfico"], + "Add Chart": ["Adicionar gráfico"], + "Edit Chart": ["Editar gráfico"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Esses parâmetros são gerados dinamicamente quando se clica no botão salvar ou sobrescrever na exibição de exploração. Esse objeto JSON é exposto aqui para referência e para usuários avançados que queiram alterar parâmetros específicos." ], - "Database": ["Banco de dados"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "O banco de dados \"%(database_name)s\" schema \"%(schema_name)s\" não é permitido para uploads de colunas. Entre em contato com o administrador do Superset." + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Duração (em segundos) do tempo limite de armazenamento em cache para este gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela se não for definido." ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "O banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é permitido para uploads de csv. Entre em contato com o administrador do Superset." + "Creator": ["Criador"], + "Datasource": ["Fonte de dados"], + "Last Modified": ["Última modificação"], + "Parameters": ["Parâmetros"], + "Chart": ["Gráfico"], + "Name": ["Nome"], + "Visualization Type": ["Tipo de visualização"], + "Show Dashboard": ["Mostrar Painel"], + "Add Dashboard": ["Adicionar painel"], + "Edit Dashboard": ["Editar Painel"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Esse objeto json descreve o posicionamento dos widgets no painel. Ele é gerado dinamicamente ao ajustar o tamanho e as posições dos widgets usando arrastar e soltar na exibição do painel" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "Banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é permitido para uploads do Excel. Entre em contato com o administrador do Superset." + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "O CSS para painéis individuais pode ser alterado aqui ou na visão do painel, onde as alterações são imediatamente visíveis" ], - "Database Connections": ["Conexões de banco de dados"], - "Database Creation Error": ["Erro na criação do banco de dados"], - "Database URL": ["URL do banco de dados"], - "Database connected": ["Banco de dados conectado"], - "Database could not be created.": [ - "Não foi possível criar o banco de dados." + "To get a readable URL for your dashboard": [ + "Para obter um URL legível para seu painel" ], - "Database could not be deleted.": [ - "Não foi possível remover o banco de dados." + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Esse objeto JSON é gerado dinamicamente quando se clica no botão salvar ou sobrescrever na exibição do painel. Ele é exposto aqui para referência e para usuários avançados que podem querer alterar parâmetros específicos." ], - "Database could not be updated.": [ - "Não foi possível atualizar o banco de dados." + "Owners is a list of users who can alter the dashboard.": [ + "Os proprietários são uma lista de usuários que podem alterar o painel." ], - "Database does not allow data manipulation.": [ - "Banco de dados não permite a manipulação de dados." + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "As funções são uma lista que define o acesso ao painel. Se não forem definidas funções, aplicam-se as permissões de acesso normais." ], - "Database does not exist": ["Banco de dados não existe"], - "Database does not support subqueries": [ - "O banco de dados não é compatível com subconsultas" + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Determina se esse painel é visível ou não na lista de todos os painéis" ], - "Database error": ["Erro no banco de dados"], - "Database is offline.": ["O banco de dados está off-line."], - "Database is required for alerts": [ - "O banco de dados é necessário para os alertas" - ], - "Database name": ["Nome do banco de dados"], - "Database not allowed to change": [ - "Banco de dados não pode ser alterado" + "Dashboard": ["Painel"], + "Title": ["Título"], + "Slug": ["Slug"], + "Roles": ["Funções"], + "Published": ["Publicado"], + "Position JSON": ["Posição JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["Metadados JSON"], + "Export": ["Exportar"], + "Export dashboards?": ["Exportar paineis?"], + "CSV Upload": ["Upload de CSV"], + "Select a file to be uploaded to the database": [ + "Selecione um arquivo a ser carregado no banco de dados" ], - "Database not found.": ["Banco de dados não encontrado."], - "Database not found: %(id)s": ["Banco de dados não encontrado: %(id)s"], - "Database parameters are invalid.": [ - "Os parâmetros do banco de dados são inválidos." + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Só as seguintes extensões de arquivo são permitidas: %(allowed_extensions)s" ], - "Database passwords": ["Senhas de banco de dados"], - "Database port": ["Porta do banco de dados"], - "Database settings updated": [ - "Configurações do banco de dados atualizadas" + "Name of table to be created with CSV file": [ + "Nome da tabela a ser criada com o arquivo CSV" ], - "Databases": ["Banco de dados"], - "Dataframe Index": ["Índice do dataframe"], - "Dataset": ["Conjunto de dados"], - "Dataset %(name)s already exists": [ - "%(nome)s do conjunto de dados já existe" + "Table name cannot contain a schema": [ + "O nome da tabela não pode conter um esquema" ], - "Dataset Name": ["Nome do conjunto de dados"], - "Dataset column delete failed.": [ - "Falha na exclusão da coluna do conjunto de dados." + "Select a database to upload the file to": [ + "Selecione um banco de dados para enviar o arquivo" ], - "Dataset column not found.": [ - "Coluna do conjunto de dados não encontrada." + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" ], - "Dataset could not be created.": [ - "Não foi possível criar o conjunto de dados." + "Select a schema if the database supports this": [ + "Selecione um esquema se o banco de dados for compatível com isso" ], - "Dataset could not be deleted.": [ - "Não foi possível remover o conjunto de dados." + "Delimiter": ["Delimitador"], + "Enter a delimiter for this data": [ + "Insira um delimitador para esses dados" ], - "Dataset could not be duplicated.": [ - "Não foi possível duplicar o conjunto de dados." + ",": [","], + ".": ["."], + "Other": ["Outro"], + "If Table Already Exists": ["Se a tabela já existir"], + "What should happen if the table already exists": [ + "O que deve acontecer se a tabela já existir" ], - "Dataset could not be updated.": [ - "Não foi possível atualizar o conjunto de dados." + "Fail": ["Falha"], + "Replace": ["Substituir"], + "Append": ["Anexar"], + "Skip Initial Space": ["Pular espaço inicial"], + "Skip spaces after delimiter": ["Ignorar espaços após o delimitador"], + "Skip Blank Lines": ["Pular Linhas em branco"], + "Skip blank lines rather than interpreting them as Not A Number values": [ + "Ignorar linhas em branco em vez de interpretá-las como valores não numéricos" ], - "Dataset does not exist": ["Conjunto de dados não existe"], - "Dataset imported": ["Conjunto de dados importado"], - "Dataset is required": ["O conjunto de dados é necessário"], - "Dataset metric delete failed.": [ - "Falha na exclusão da métrica do conjunto de dados." + "Columns To Be Parsed as Dates": [ + "Colunas a serem analisadas como datas" ], - "Dataset metric not found.": [ - "A métrica do conjunto de dados não foi encontrada." + "A comma separated list of columns that should be parsed as dates": [ + "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas" ], - "Dataset name": ["Nome do conjunto de dados"], - "Dataset parameters are invalid.": [ - "Os parâmetros para o conjunto de dados são inválidos." + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["Caractere decimal"], + "Character to interpret as decimal point": [ + "Caractere a ser interpretado como ponto decimal" ], - "Dataset schema is invalid, caused by: %(error)s": [ - "Esquema do conjunto de dados inválido, causado por: %(error)s" + "Null Values": ["Valores nulos"], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" ], - "Dataset(s) could not be bulk deleted.": [ - "Não foi possível eliminar o(s) conjunto(s) de dados em bloco." + "Index Column": ["Coluna de índice"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se não houver coluna de índice" ], - "Datasets": ["Conjuntos de dados"], - "Datasets do not contain a temporal column": [ - "Os conjuntos de dados não contêm uma coluna temporal" + "Dataframe Index": ["Índice do dataframe"], + "Write dataframe index as a column": [ + "Escreve o índice do dataframe como uma coluna" ], - "Datasource": ["Fonte de dados"], - "Datasource & Chart Type": ["Fonte de dados e tipo de gráfico"], - "Datasource does not exist": ["A fonte de dados não existe"], - "Datasource type is invalid": ["O tipo de fonte de dados é inválido"], - "Datasource type is required when datasource_id is given": [ - "O tipo de fonte de dados é necessário quando datasource_id é fornecido" + "Column Label(s)": ["Rótulo(s) da coluna"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for fornecido e Dataframe Index (Índice de quadro de dados) for verificado, os nomes de índice serão usados" ], - "Date Time Format": ["Formato de data e hora"], - "Date filter": ["Filtro de data"], - "Date format": ["Formato da data"], - "Date format string": ["String de formato de data"], - "Date/Time": ["Data/Hora"], - "Datetime Format": ["Formato de data e hora"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "A coluna Datetime não é fornecida como parte da configuração da tabela e é exigida por este tipo de gráfico" + "Columns To Read": ["Colunas a serem lidas"], + "Json list of the column names that should be read": [ + "Lista Json dos nomes das colunas que devem ser lidas" ], - "Datetime format": ["Formato de data e hora"], - "Day": ["Dia"], - "Day (freq=D)": ["Dia (freq=D)"], - "Days %s": ["Dias %s"], - "Db engine did not return all queried columns": [ - "O motor do banco de dados não retornou todas as colunas consultadas" + "Overwrite Duplicate Columns": ["Substituir colunas duplicadas"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Se as colunas duplicadas não forem substituídas, elas serão apresentadas como \"X.1, X.2 ...X.x\"" ], - "Deactivate": ["Desativar"], - "December": ["Dezembro"], - "Decides which column to sort the base axis by.": [ - "Decide por qual coluna ordenar o eixo base." + "Header Row": ["Linha do Cabeçalho"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a primeira linha de dados). Deixe em branco se não houver linha de cabeçalho" ], - "Decimal Character": ["Caractere decimal"], - "Deck.gl - 3D Grid": ["Deck.gl - Grade 3D"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], - "Deck.gl - Arc": ["Deck.gl - Arc"], - "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], - "Deck.gl - Multiple Layers": ["Deck.gl - Camadas Múltiplas"], - "Deck.gl - Paths": ["Deck.gl - Caminhos"], - "Deck.gl - Polygon": ["Deck.gl - Polígono"], - "Deck.gl - Scatter plot": ["Deck.gl - Gráfico de dispersão"], - "Deck.gl - Screen Grid": ["Deck.gl - Screen Grid"], - "Default": ["Padrão"], - "Default Endpoint": ["Endpoint padrão"], - "Default URL": ["URL padrão"], - "Default URL to redirect to when accessing from the dataset list page": [ - "URL padrão para o qual redirecionar quando acessar da página da lista de conjuntos de dados" + "Rows to Read": ["Linhas para Leitura"], + "Number of rows of file to read": [ + "Número de linhas do arquivo a ser lido" ], - "Default Value": ["Valor padrão"], - "Default datetime": ["Data/hora padrão"], - "Default latitude": ["Latitude padrão"], - "Default longitude": ["Longitude padrão"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "Largura mínima predefinida da coluna em pixels; a largura real pode ser superior a esta se as outras colunas não necessitarem de muito espaço" + "Skip Rows": ["Pular Linhas"], + "Number of rows to skip at start of file": [ + "Número de linhas a serem ignoradas no início do arquivo" ], - "Default value is required": ["O valor padrão é obrigatório"], - "Default value must be set when \"Filter has default value\" is checked": [ - "O valor padrão deve ser definido quando a opção \"Filter has default value\" estiver marcada" + "Name of table to be created from excel data.": [ + "Nome da tabela a ser criada a partir dos dados do Excel." ], - "Default value must be set when \"Filter value is required\" is checked": [ - "O valor padrão deve ser definido quando a opção \"Filter value is required\" estiver marcada" + "Excel File": ["Arquivo Excel"], + "Select a Excel file to be uploaded to a database.": [ + "Selecione um arquivo do Excel para ser carregado para um banco de dados." ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ - "O valor padrão é definido automaticamente quando a opção \"Select first filter value by default\" (Selecionar o primeiro valor do filtro por padrão) está marcada" + "Sheet Name": ["Nome da planilha"], + "Strings used for sheet names (default is the first sheet).": [ + "Cadeias de caracteres usadas para nomes de planilhas (o padrão é a primeira planilha)." ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "Definir uma função que receba a entrada e produza o conteúdo de uma dica de ferramenta" + "Specify a schema (if database flavor supports this).": [ + "Especificar um esquema (se o variante do banco de dados o suportar)." ], - "Define a function that returns a URL to navigate to when user clicks": [ - "Definir uma função que devolve um URL para onde navegar quando o usuário clicar" + "Table Exists": ["A Tabela existe"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "Defina uma função javascript que receba a matriz de dados utilizada na visualização e que deva devolver uma versão modificada dessa matriz. Esta pode ser utilizada para alterar as propriedades dos dados, filtrar ou enriquecer a matriz." + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a primeira linha de dados). Deixar em branco se não existir uma linha de cabeçalho." ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Define uma função de janela móvel a aplicar, funciona em conjunto com a caixa de texto [Períodos]" + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se não houver coluna de índice." ], - "Defines how each series is broken down": [ - "Define como cada série é decomposta" + "Number of rows to skip at start of file.": [ + "Número de linhas para pular no início do arquivo." ], - "Defines the grid size in pixels": ["Define o tamanho do grid em pixels"], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Define o agrupamento de entidades. Cada série é mostrado como uma cor específica no gráfico e tem uma legenda alternar" + "Number of rows of file to read.": [ + "Número de linhas do arquivo a ser lido." ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Define o tamanho da função de janela móvel, relativamente à granularidade temporal selecionada" + "Parse Dates": ["Analisar datas"], + "A comma separated list of columns that should be parsed as dates.": [ + "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas." ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "Define se o etapa deve aparecer no o começo , meio ou fim entre dois pontos de dados" + "Character to interpret as decimal point.": [ + "Caractere para interpretar como ponto decimal." ], - "Delete": ["Excluir"], - "Delete %s?": ["Excluir %s?"], - "Delete Annotation?": ["Excluir anotação?"], - "Delete Database?": ["Excluir Banco de Dados?"], - "Delete Dataset?": ["Excluir Conjunto de Dados?"], - "Delete Layer?": ["Excluir camada?"], - "Delete Query?": ["Excluir consulta?"], - "Delete Report?": ["Excluir relatório?"], - "Delete Template?": ["Excluir modelo?"], - "Delete all Really?": ["Realmente excluir tudo?"], - "Delete annotation": ["Excluir anotação"], - "Delete dashboard tab?": ["Excluir aba do painel?"], - "Delete database": ["Excluir banco de dados"], - "Delete email report": ["Excluir relatório de e-mail"], - "Delete query": ["Excluir consulta"], - "Delete template": ["Excluir modelo"], - "Delete this container and save to remove this message.": [ - "Excluir este contêiner e salvar para remover essa mensagem." + "Write dataframe index as a column.": [ + "Escreve o índice do dataframe como uma coluna." ], - "Deleted: %s": ["Excluído: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "Excluindo uma guia irá remover todo o conteúdo dela. Você ainda pode reverter isso com o" + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e Dataframe Index for True, são utilizados os nomes de índice." ], - "Delimited long & lat single column": [ - "Coluna única delimitada long & lat" + "Null values": ["Valores nulos"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados Hive suporta apenas um único valor. Utilize [\"\"] para uma cadeia de caracteres vazia." ], - "Delimiter": ["Delimitador"], - "Delivery method": ["Método de entrega"], - "Demographics": ["Demografia"], - "Density": ["Densidade"], - "Dependent on": ["Depende de"], - "Deprecated": ["Depreciado"], - "Description": ["Descrição"], - "Description (this can be seen in the list)": [ - "Descrição (esta pode ser vista na lista)" + "Name of table to be created from columnar data.": [ + "Nome da tabela a ser criada a partir de dados colunares." ], - "Description Columns": ["Colunas de descrição"], - "Description text that shows up below your Big Number": [ - "Texto descritivo que aparece abaixo do seu Número Grande" + "Columnar File": ["Arquivo colunar"], + "Select a Columnar file to be uploaded to a database.": [ + "Selecione um arquivo colunar a ser carregado em um banco de dados." ], - "Deselect all": ["Desmarcar tudo"], - "Details of the certification": ["Detalhes da certificação"], - "Determines how whiskers and outliers are calculated.": [ - "Determina como whiskers e outliers são calculados." + "Use Columns": ["Usar colunas"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Lista Json dos nomes das colunas que devem ser lidas. Se não for None, apenas estas colunas serão lidas do ficheiro." ], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Determina se esse painel é visível ou não na lista de todos os painéis" + "Databases": ["Banco de dados"], + "Show Database": ["Mostrar Banco de dados"], + "Add Database": ["Adicionar Banco de dados"], + "Edit Database": ["Editar Banco de Dados"], + "Expose this DB in SQL Lab": ["Expor este banco de dados no SQL Lab"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Operar o banco de dados em modo assíncrono, o que significa que as consultas são executadas em workers remotos e não no próprio servidor Web. Isso pressupõe que você tenha uma configuração do Celery worker, bem como um backend de resultados. Consulte os documentos de instalação para obter mais informações." ], - "Diamond": ["Diamante"], - "Did you mean:": ["Quis dizer:"], - "Difference": ["Diferença"], - "Dim Gray": ["Cinza escuro"], - "Dimension": ["Dimensão"], - "Dimension to use on x-axis.": ["Dimensão para usar no eixo x."], - "Dimension to use on y-axis.": ["Dimensão para usar no eixo y."], - "Dimensions": ["Dimensões"], - "Directed Force Layout": ["Directed Force Layout"], - "Directional": ["Direcional"], - "Disable SQL Lab data preview queries": [ - "Desativar as consultas de pré-visualização de dados do SQL Lab" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Permitir a opção CREATE TABLE AS no SQL Lab" ], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "Desativar a pré-visualização de dados ao obter metadados de tabelas no SQL Lab. Útil para evitar problemas de desempenho do navegador quando se utilizam bancos de dados com tabelas muito grandes." + "Allow CREATE VIEW AS option in SQL Lab": [ + "Permitir a opção CREATE VIEW AS no SQL Lab" ], - "Disable embedding?": ["Desativar incorporação?"], - "Disabled": ["Desativado"], - "Discard": ["Descartar"], - "Discrete": ["Discreto"], - "Display Name": ["Nome de exibição"], - "Display column level total": ["Mostrar total ao nível da coluna"], - "Display configuration": ["Mostrar configuração"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ - "Apresentar métricas lado a lado dentro de cada coluna, em vez de cada coluna ser apresentada lado a lado para cada métrica." + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Ao permitir a opção CREATE TABLE AS no SQL Lab, essa opção força a criação da tabela nesse esquema" ], - "Display row level total": ["Exibir total do nível de linha"], - "Display settings": ["Configurações de exibição"], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ - "Apresenta ligações entre entidades numa estrutura gráfica. Útil para mapear relações e mostrar quais os nós que são importantes numa rede. Os gráficos podem ser configurados para serem dirigidos à força ou circularem. Se os seus dados tiverem um componente geoespacial, experimente o gráfico de arco deck.gl." + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Se Presto, todas as consultas no SQL Lab serão executadas como o usuário atualmente conectado, que deve ter permissão para executá-las.
Se Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão executadas como conta de serviço, mas personificarão o usuário atualmente conectado por meio da propriedade hive.server2.proxy.user." ], - "Distribute across": ["Distribuir em"], - "Distribution": ["Distribuição"], - "Distribution - Bar Chart": ["Distribuição - Gráfico de barras"], - "Divider": ["Divisor"], - "Do you want a donut or a pie?": ["Você quer um donut ou uma torta?"], - "Documentation": ["Documentação"], - "Domain": ["Domínio"], - "Donut": ["Rosquinha"], - "Dotted": ["Pontilhado"], - "Download": ["Baixar"], - "Download as image": ["Baixar como imagem"], - "Download to CSV": ["Baixar para CSV"], - "Draft": ["Rascunho"], - "Drag and drop components and charts to the dashboard": [ - "Arraste e solte componentes e gráficos para o painel" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Duração (em segundos) do tempo limite de armazenamento em cache para os gráficos desse banco de dados. Um tempo limite de 0 indica que a cache nunca expira. Observe que o padrão é o tempo limite global se não for definido." ], - "Drag and drop components to this tab": [ - "Arraste e solte componentes para essa aba" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Se selecionado, defina os esquemas permitidos para o carregamento de csv no Extra." ], - "Draw a marker on data points. Only applicable for line types.": [ - "Desenha um marcador nos pontos de dados. Apenas aplicável a tipos de linha." + "Expose in SQL Lab": ["Expor no SQL Lab"], + "Allow CREATE TABLE AS": ["Permitir CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Permitir CREATE VIEW AS"], + "Allow DML": ["Permitir DML"], + "CTAS Schema": ["Esquema CTAS"], + "SQLAlchemy URI": ["SQLAlchemy URI"], + "Chart Cache Timeout": ["Tempo limite da cache do gráfico"], + "Secure Extra": ["Segurança Extra"], + "Root certificate": ["Raiz do certificado"], + "Async Execution": ["Execução Assíncrona"], + "Impersonate the logged on user": [ + "Representar o usuário com sessão iniciada" ], - "Draw area under curves. Only applicable for line types.": [ - "Desenhar área sob curvas. Aplicável apenas para tipos de linha." + "Allow Csv Upload": ["Permitir Csv Upload"], + "Backend": ["Backend"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Campo extra não pode ser decodificado por JSON. %(msg)s" ], - "Draw line from Pie to label when labels outside?": [ - "Desenhar uma linha da torta para rótulo quando as etiquetas estão no exterior?" + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

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

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

" ], - "Draw split lines for minor axis ticks": [ - "Desenhar linhas de divisão para os ticks do eixo secundário" + "CSV to Database configuration": ["Configuração CSV para Banco de dados"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "O banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é permitido para uploads de csv. Entre em contato com o administrador do Superset." ], - "Draw split lines for minor y-axis ticks": [ - "Desenhar linhas de divisão para os ticks menores do eixo y" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" ], - "Drill by": ["Drill by"], - "Drill by is not available for this data point": [ - "Drill by não está disponível para este ponto de dados" + "Excel to Database configuration": [ + "Configuração Excel para Banco de Dados" ], - "Drill by is not yet supported for this chart type": [ - "Drill by não é suportado para esse tipo de gráfico" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é permitido para uploads do Excel. Entre em contato com o administrador do Superset." ], - "Drill by: %s": ["Drill by: %s"], - "Drill to detail": ["Drill to detail"], - "Drill to detail by": ["Drill to detail por"], - "Drill to detail by value is not yet supported for this chart type.": [ - "Drill to detail por valor ainda não é suportado para esse tipo de gráfico." + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Não foi possível fazer upload do arquivo do Excel \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "Drill to detail está desabilitado porque esse gráfico não agrupar dados por valor da dimensão." + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Arquivo do Excel \"%(excel_filename)s\" carregado na tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\"" ], - "Drill to detail: %s": ["Drill to detail: %s"], - "Drop a temporal column here or click": [ - "Colocar uma coluna temporal aqui ou clique" + "Columnar to Database configuration": [ + "Configuração de colunar para banco de dados" ], - "Drop columns/metrics here or click": [ - "Colocar colunas/métricas aqui ou clique" + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Não são permitidas várias extensões de ficheiros para upload em colunas. Certifique-se de que todos os ficheiros têm a mesma extensão." ], - "Dual Line Chart": ["Gráfico de linha dupla"], - "Duplicate": ["Duplicado"], - "Duplicate column name(s): %(columns)s": [ - "Nome(s) de coluna duplicado(s): %(columns)s" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "O banco de dados \"%(database_name)s\" schema \"%(schema_name)s\" não é permitido para uploads de colunas. Entre em contato com o administrador do Superset." ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "Rótulos de coluna/métrica duplicados: %(labels)s. Por favor, certifique-se todas métricas e colunas tem um único rótulo." + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Não foi possível fazer upload do arquivo colunar \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" ], - "Duplicate dataset": ["Conjunto de dados duplicado"], - "Duplicate tab": ["Duplicar aba"], - "Duration": ["Duração"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ - "Duração (em segundos) do tempo limite do cache para gráficos desse banco de dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 ignora o cache. Observe que o padrão é o tempo limite global se não for definido." + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Arquivo colunar \"%(columnar_filename)s\" carregado para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\"" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "Duração (em segundos) do tempo limite de armazenamento em cache para os gráficos desse banco de dados. Um tempo limite de 0 indica que a cache nunca expira. Observe que o padrão é o tempo limite global se não for definido." + "Request missing data field.": ["Pedido com campo de dados ausente."], + "Duplicate column name(s): %(columns)s": [ + "Nome(s) de coluna duplicado(s): %(columns)s" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Duração (em segundos) do tempo limite de armazenamento em cache para este gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela se não for definido." + "Logs": ["Logs"], + "Show Log": ["Mostrar log"], + "Add Log": ["Adicionar Log"], + "Edit Log": ["Editar log"], + "User": ["Usuário"], + "Action": ["Ação"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Untitled Query": ["Consulta sem título"], + "Time Range": ["Intervalo de tempo"], + "Time Column": ["Coluna do tempo"], + "Time Grain": ["Grão de tempo"], + "Time Granularity": ["Granularidade de tempo"], + "Time": ["Tempo"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Uma referência para a configuração [Time] , tomando granularidade em conta" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ - "Duração (em segundos) do tempo limite do cache para esse gráfico. Defina como -1 para ignorar o cache. Observe que o padrão é o tempo limite do conjunto de dados, se não for definido." + "Aggregate": ["Agregado"], + "Raw records": ["Registros Brutos"], + "Category name": ["Nome da categoria"], + "Total value": ["Valor total"], + "Minimum value": ["Valor mínimo"], + "Maximum value": ["Valor máximo"], + "Average value": ["Valor médio"], + "Certified by %s": ["Certificado por %s"], + "description": ["descrição"], + "bolt": ["parafuso"], + "Changing this control takes effect instantly": [ + "A alteração deste controle tem efeito imediato" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "Duração (em segundos) do tempo limite de armazenamento em cache para esta tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que este tempo limite é predefinido para o tempo limite da base de dados se não for definido." + "Show info tooltip": ["Mostrar dica de ferramentas de informação"], + "SQL expression": ["Expressão SQL"], + "Column name": ["Nome da coluna"], + "Label": ["Rótulo"], + "Metric name": ["Nome da métrica"], + "unknown type icon": ["ícone de tipo desconhecido"], + "function type icon": ["ícone de tipo de função"], + "string type icon": ["ícone do tipo string"], + "numeric type icon": ["ícone de tipo numérico"], + "boolean type icon": ["ícone do tipo booleano"], + "temporal type icon": ["ícone de tipo temporal"], + "Advanced analytics": ["Analytics avançado"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Esta seção contém opções que permitem o pós-processamento analítico avançado dos resultados da consulta" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Duração (em segundos) do tempo limite do cache de metadados para esquemas desse banco de dados. Se não for definido, o cache nunca expira." + "Rolling window": ["Janela de rolagem"], + "Rolling function": ["Função de rolagem"], + "None": ["Nenhum"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Define uma função de janela móvel a aplicar, funciona em conjunto com a caixa de texto [Períodos]" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "Duração em ms (1,40008 => 1ms 400µs 80ns)" + "Periods": ["Períodos"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Define o tamanho da função de janela móvel, relativamente à granularidade temporal selecionada" ], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ - "Duração em ms (100,40008 => 100ms 400µs 80ns)" + "Min periods": ["Períodos mínimos"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "O número mínimo de períodos de rolagem necessários para mostrar um valor. Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira que seu \"Min Period\" seja 7, de modo que todos os pontos de dados mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que ocorre nos primeiros 7 períodos" ], - "Duration in ms (66000 => 1m 6s)": ["Duração em ms (66000 => 1m 6s)"], - "Duration: %s": ["Duração: %s"], - "Dynamic Aggregation Function": ["Função de agregação dinâmica"], - "Dynamically search all filter values": [ - "Pesquisar dinamicamente todos os valores de filtro" + "Time comparison": ["Comparação de tempo"], + "Time shift": ["Mudança de horário"], + "1 day ago": ["1 dia atrás"], + "1 week ago": ["1 semana atrás"], + "28 days ago": ["28 dias atrás"], + "52 weeks ago": ["52 semanas atrás"], + "1 year ago": ["1 ano atrás"], + "104 weeks ago": ["104 semanas atrás"], + "2 years ago": ["2 anos atrás"], + "156 weeks ago": ["156 semanas atrás"], + "3 years ago": ["3 anos atrás"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Sobrepor um ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativo em linguagem natural (exemplo: 24 horas, 7 dias , 52 semanas , 365 dias). Livre texto é suportado." ], - "ECharts": ["ECharts"], - "EMAIL_REPORTS_CTA": ["EMAIL_REPORTS_CTA"], - "END (EXCLUSIVE)": ["FIM (EXCLUSIVO)"], - "ERROR": ["ERRO"], - "ERROR: %s": ["ERRO: %s"], - "Edge length": ["Comprimento da borda"], - "Edge length between nodes": ["Comprimento da borda entre nós"], - "Edge symbols": ["Símbolos de borda"], - "Edge width": ["Largura da borda"], - "Edit": ["Editar"], - "Edit Alert": ["Editar Alerta"], - "Edit CSS": ["Editar CSS"], - "Edit CSS Template": ["Editar modelo CSS"], - "Edit CSS template properties": ["Editar propriedades do modelo CSS"], - "Edit Chart": ["Editar gráfico"], - "Edit Chart Properties": ["Editar propriedades do gráfico"], - "Edit Column": ["Editar Coluna"], - "Edit Dashboard": ["Editar Painel"], - "Edit Database": ["Editar Banco de Dados"], - "Edit Log": ["Editar log"], - "Edit Metric": ["Editar Métrica"], - "Edit Plugin": ["Editar Plugin"], - "Edit Report": ["Editar relatório"], - "Edit Saved Query": ["Editar Consulta Salva"], - "Edit Table": ["Editar Tabela"], - "Edit annotation": ["Editar anotação"], - "Edit annotation layer": ["Editar camada de anotação"], - "Edit annotation layer properties": [ - "Editar propriedades da camada de anotação" - ], - "Edit chart": ["Editar gráfico"], - "Edit chart properties": ["Editar propriedades do gráfico"], - "Edit dashboard": ["Editar painel"], - "Edit database": ["Editar banco de dados"], - "Edit dataset": ["Editar conjunto de dados"], - "Edit email report": ["Editar relatório de e-mail"], - "Edit formatter": ["Editar formatador"], - "Edit properties": ["Editar propriedades"], - "Edit query": ["Editar consulta"], - "Edit template": ["Editar modelo"], - "Edit template parameters": ["Editar parâmetros do modelo"], - "Edit the dashboard": ["Editar o painel"], - "Edit time range": ["Editar intervalo de tempo"], - "Edited": ["Editado"], - "Editing 1 filter:": ["Editando 1 filtro:"], - "Editing filter set:": ["Edição do conjunto de filtros:"], - "Either the database is spelled incorrectly or does not exist.": [ - "Ou o banco de dados está soletrado incorretamente ou não existe." + "Calculation type": ["Tipo de cálculo"], + "Actual values": ["Valores reais"], + "Difference": ["Diferença"], + "Percentage change": ["Variação percentual"], + "Ratio": ["Proporção"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "" ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "Ou o nome de usuário \"%(username)s\" ou a senha está incorreta." + "Resample": ["Reamostragem"], + "Rule": ["Regra"], + "1 minutely frequency": ["frequência de 1 minuto"], + "1 hourly frequency": ["frequência de 1 hora"], + "1 calendar day frequency": ["1 dia de calendário de frequência"], + "7 calendar day frequency": ["Frequência de 7 dias de calendário"], + "1 month start frequency": ["Frequência de início de 1 mês"], + "1 month end frequency": ["1 mês de frequência final"], + "1 year start frequency": ["Frequência de início de 1 ano"], + "1 year end frequency": ["Frequência de final de 1 ano"], + "Pandas resample rule": ["Regra de reamostragem do Pandas"], + "Fill method": ["Método de preenchimento"], + "Null imputation": ["Imputação nula"], + "Zero imputation": ["Imputação zero"], + "Linear interpolation": ["Interpolação linear"], + "Forward values": ["Valores futuros"], + "Backward values": ["Valores retroativos"], + "Median values": ["Valores médios"], + "Mean values": ["Valores médios"], + "Sum values": ["Valores da soma"], + "Pandas resample method": ["Métodos de reamostragem do Pandas"], + "Annotations and Layers": ["Anotações e camadas"], + "Left": ["Esquerda"], + "Top": ["Topo"], + "Chart Title": ["Título do gráfico"], + "X Axis": ["Eixo X"], + "X Axis Title": ["Título do Eixo X"], + "X AXIS TITLE BOTTOM MARGIN": ["MARGEM INFERIOR DO TÍTULO DO EIXO X"], + "Y Axis": ["Eixo Y"], + "Y Axis Title": ["Título do Eixo Y"], + "Y Axis Title Margin": [""], + "Query": ["Consulta"], + "Predictive Analytics": ["Análise preditiva"], + "Enable forecast": ["Habilitar previsão"], + "Enable forecasting": ["Habilitar previsão"], + "Forecast periods": ["Períodos de previsão"], + "How many periods into the future do we want to predict": [ + "Quantos períodos no futuro queremos prever" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "O nome de usuário \"%(username)s\", a senha ou o nome do banco de dados \"%(database)s\" estão incorretos." + "Confidence interval": ["Intervalo de confiança"], + "Width of the confidence interval. Should be between 0 and 1": [ + "Largura do intervalo de confiança. Deve estar entre 0 e 1" ], - "Either the username or the password is wrong.": [ - "Ou o nome de usuário ou a senha está incorreto." + "Yearly seasonality": ["Sazonalidade anual"], + "default": ["padrão"], + "Yes": ["Sim"], + "No": ["Não"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Deve ser aplicada a sazonalidade anual. Um valor inteiro especificará a ordem de Fourier da sazonalidade." ], - "Elevation": ["Elevação"], - "Email reports active": ["Relatórios por e-mail ativo"], - "Embed": ["Incorporar"], - "Embed code": ["Incorporar código"], - "Embed dashboard": ["Incorporar painel"], - "Embedding deactivated.": ["Incorporação desativada."], - "Emit Filter Events": ["Emitir eventos de filtro"], - "Emphasis": ["Ênfase"], - "Employment and education": ["Emprego e educação"], - "Empty circle": ["Círculo vazio"], - "Empty collection": ["Coleção vazia"], - "Empty column": ["Coluna vazia"], - "Empty query result": ["Resultado da consulta vazio"], - "Empty query?": ["Consulta vazia?"], - "Empty row": ["Linha vazia"], - "Enable 'Allow file uploads to database' in any database's settings": [ - "Ativar 'Permitir uploads de arquivos para banco de dados' em quaisquer configurações do banco de dados" + "Weekly seasonality": ["Sazonalidade semanal"], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Deve ser aplicada a sazonalidade semanal. Um valor inteiro especificará a ordem de Fourier da sazonalidade." ], - "Enable Filter Select": ["Ativar seleção de filtro"], - "Enable cross-filtering": ["Habilitar filtragem cruzada"], - "Enable data zooming controls": ["Ativar controles de zoom de dados"], - "Enable embedding": ["Habilitar incorporação"], - "Enable forecast": ["Habilitar previsão"], - "Enable forecasting": ["Habilitar previsão"], - "Enable graph roaming": ["Habilitar gráfico de roaming"], - "Enable node dragging": ["Ativar arrastar nó"], - "Enable query cost estimation": [ - "Ativar estimativa de custo de consulta" + "Daily seasonality": ["Sazonalidade diária"], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Deve ser aplicada a sazonalidade diária. Um valor inteiro especificará a ordem de Fourier da sazonalidade." ], - "Enable server side pagination of results (experimental feature)": [ - "Ativar a paginação dos resultados do lado do servidor (funcionalidade experimental)" + "Time related form attributes": [ + "Atributos de formulário relacionados ao tempo" ], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "Encontrou entrada espacial NULL inválida, por favor considere a possibilidade de a filtrar" + "Datasource & Chart Type": ["Fonte de dados e tipo de gráfico"], + "Chart ID": ["ID do gráfico"], + "The id of the active chart": ["O id do gráfico ativo"], + "Cache Timeout (seconds)": ["Tempo limite da cache (seconds)"], + "The number of seconds before expiring the cache": [ + "O número de segundos antes da expiração da cache" ], - "End": ["Fim"], - "End Longitude & Latitude": ["Longitude e latitude finais"], - "End Time": ["Hora do fim"], - "End angle": ["Ângulo final"], - "End date": ["Data final"], - "End date excluded from time range": [ - "Data final excluída do intervalo de tempo" + "URL Parameters": ["Parâmetros de URL"], + "Extra url parameters for use in Jinja templated queries": [ + "Parâmetros de url extras para uso em consultas de modelo Jinja" ], - "End date must be after start date": [ - "A data final deve ser após a data de início" + "Extra Parameters": ["Parâmetros extra"], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Parâmetros extras que qualquer plug-in pode escolher definir para uso em consultas modeladas Jinja" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." + "Color Scheme": ["Esquema de cores"], + "Contribution Mode": ["Modo de contribuição"], + "Row": ["Linha"], + "Series": ["Série"], + "Calculate contribution per series or row": [ + "Calcular a contribuição por série ou linha" ], - "Engine Parameters": ["Parâmetros do motor"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ - "A especificação do mecanismo \"InvalidEngine\" não permite a configuração por meio de parâmetros individuais." + "Y-Axis Sort By": ["Classificação do Eixo Y Por"], + "X-Axis Sort By": ["Classificação do Eixo X Por"], + "Decides which column to sort the base axis by.": [ + "Decide por qual coluna ordenar o eixo base." ], - "Enter CA_BUNDLE": ["Digite CA_BUNDLE"], - "Enter Primary Credentials": ["Inserir credenciais primárias"], - "Enter a delimiter for this data": [ - "Insira um delimitador para esses dados" + "Y-Axis Sort Ascending": ["Classificação do eixo Y em ordem crescente"], + "X-Axis Sort Ascending": ["Classificação do eixo X em ordem crescente"], + "Whether to sort ascending or descending on the base Axis.": [ + "Se a classificação deve ser ascendente ou descendente no eixo base." ], - "Enter a name for this sheet": ["Digite um nome para essa planilha"], - "Enter a new title for the tab": ["Digite um novo título para a aba"], - "Enter duration in seconds": ["Insira a duração em segundos"], - "Enter fullscreen": ["Entrar em tela cheia"], - "Enter the required %(dbModelName)s credentials": [ - "Digite as credenciais %(dbModelName)s necessárias" + "Treat values as categorical.": [""], + "Dimensions": ["Dimensões"], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "" ], + "Dimension": ["Dimensão"], "Entity": ["Entidade"], - "Entity ID": ["ID da entidade"], - "Equal Date Sizes": ["Tamanhos de datas iguais"], - "Equal to (=)": ["Igual para (=)"], - "Error": ["Erro"], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Erro na expressão jinja na cláusula HAVING: %(msg)s" + "This defines the element to be plotted on the chart": [ + "Isso define o elemento a ser plotado no gráfico" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Erro na expressão jinja em filtros RLS: %(msg)s" + "Filters": ["Filtros"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Erro na expressão jinja na cláusula WHERE: %(msg)s" + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Erro na expressão jinja no predicado para obter valores: %(msg)s" + "Right Axis Metric": ["Métrica do eixo direito"], + "Sort by": ["Ordenar por"], + "Bubble Size": ["Tamanho da bolha"], + "Metric used to calculate bubble size": [ + "Métrica utilizada para calcular o tamanho da bolha" ], - "Error loading chart datasources. Filters may not work correctly.": [ - "Erro ao carregar fontes de dados de gráficos. Os filtros podem não funcionar corretamente." + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "" ], - "Error message": ["Mensagem de erro"], - "Error while fetching charts": ["Erro ao buscar gráficos"], - "Error while fetching data: %s": ["Erro ao buscar dados: %s"], - "Error while rendering virtual dataset query: %(msg)s": [ - "Erro ao renderizar consulta de conjunto de dados virtual: %(msg)s" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "Error: %(error)s": ["Erro: %(error)s"], - "Error: %(msg)s": ["Erro: %(msg)s"], - "Error: permalink state not found": [ - "Erro: estado do link permanente não encontrado" + "Color Metric": ["Métrica de cores"], + "A metric to use for color": ["Uma métrica para cor"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "A coluna de tempo para a visualização. Observe que você pode definir uma expressão arbitrária que retorne uma coluna DATETIME na tabela. Observe também que o filtro abaixo é aplicado a essa coluna ou expressão" ], - "Estimate cost": ["Custo estimado"], - "Estimate selected query cost": ["Estimar custo da consulta selecionada"], - "Estimate the cost before running a query": [ - "Estimar o custo antes de executar uma consulta" + "Drop a temporal column here or click": [ + "Colocar uma coluna temporal aqui ou clique" ], - "Event": ["Evento"], - "Event Flow": ["Fluxo do Evento"], - "Event Names": ["Nome do Evento"], - "Event definition": ["Definição do evento"], - "Event flow": ["Fluxo de eventos"], - "Event time column": ["Coluna de hora do evento"], - "Every": ["Todo"], - "Evolution": ["Evolução"], - "Exact": ["Exato"], - "Example": ["Exemplo"], - "Examples": ["Exemplos"], - "Excel File": ["Arquivo Excel"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Arquivo do Excel \"%(excel_filename)s\" carregado na tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\"" + "Y-axis": ["Eixo Y"], + "Dimension to use on y-axis.": ["Dimensão para usar no eixo y."], + "X-axis": ["Eixo X"], + "Dimension to use on x-axis.": ["Dimensão para usar no eixo x."], + "The type of visualization to display": [ + "O tipo de visualização para exibir" ], - "Excel to Database configuration": [ - "Configuração Excel para Banco de Dados" + "Fixed Color": ["Cor Fixa"], + "Use this to define a static color for all circles": [ + "Use isso para definir uma cor estática para todos os círculos" ], - "Exclude selected values": ["Excluir valores selecionados"], - "Executed SQL": ["SQL executado"], - "Executed query": ["Consulta executada"], - "Execution ID": ["ID de execução"], - "Execution log": ["Log de execução"], - "Existing dataset": ["Conjunto de dados existente"], - "Exit fullscreen": ["Sair da tela cheia"], - "Expand": ["Expandir"], - "Expand all": ["Expandir tudo"], - "Expand data panel": ["Expandir painel de dados"], - "Expand row": ["Expandir linha"], - "Expand table preview": ["Expandir visualização da tabela"], - "Expand tool bar": ["Expandir barra de ferramentas"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "Espera uma fórmula com o parâmetro de tempo dependente 'x'\n em milissegundos desde a época. mathjs é utilizado para avaliar as fórmulas.\n Exemplo: '2x+5'" - ], - "Experimental": ["Experimental"], - "Explore": ["Explorar"], - "Explore - %(table)s": ["Explorar - %(table)s"], - "Explore the result set in the data exploration view": [ - "Explorar o conjunto de resultados na visão de exploração de dados" - ], - "Export": ["Exportar"], - "Export dashboards?": ["Exportar paineis?"], - "Export query": ["Exportar consulta"], - "Export to .CSV": ["Exportar para .CSV"], - "Export to .JSON": ["Exportar para .JSON"], - "Export to Excel": ["Exportar para Excel"], - "Export to YAML": ["Exportar para YAML"], - "Export to YAML?": ["Exportar para YAML?"], - "Expose database in SQL Lab": ["Expor banco de dados no SQL Lab"], - "Expose in SQL Lab": ["Expor no SQL Lab"], - "Expose this DB in SQL Lab": ["Expor este banco de dados no SQL Lab"], - "Expression": ["Expressão"], - "Extra": ["Extra"], - "Extra Controls": ["Controles extras"], - "Extra Parameters": ["Parâmetros extra"], - "Extra data for JS": ["Dados extras para JS"], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "Dados extras para especificar metadados de tabela. Atualmente suporta metadados do formato: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`." + "Linear Color Scheme": ["Esquema de Cores Linear"], + "all": ["todos"], + "5 seconds": ["5 segundos"], + "30 seconds": ["30 segundos"], + "1 minute": ["1 minuto"], + "5 minutes": ["5 minutos"], + "30 minutes": ["30 minutos"], + "1 hour": ["1 hora"], + "1 day": ["1 dia"], + "7 days": ["7 dias"], + "week": ["semana"], + "week starting Sunday": ["semana que começa no domingo"], + "week ending Saturday": ["semana que termina no sábado"], + "month": ["mês"], + "quarter": ["trimestre"], + "year": ["ano"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Campo extra não pode ser decodificado por JSON. %(msg)s" + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ + "" ], - "Extra parameters for use in jinja templated queries": [ - "Parâmetros extra para utilização em consultas de modelo jinja" + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "" ], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ - "Parâmetros extras que qualquer plug-in pode escolher definir para uso em consultas modeladas Jinja" + "Row limit": ["Limite de linhas"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Extra url parameters for use in Jinja templated queries": [ - "Parâmetros de url extras para uso em consultas de modelo Jinja" + "Sort Descending": ["Ordenação decrescente"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "" ], - "Extruded": ["Extrudados"], - "FEB": ["FEV"], - "FRI": ["SEX"], - "Factor": ["Fator"], - "Factor to multiply the metric by": [ - "Fator para multiplicar a métrica por" + "Series limit": ["Limite da série"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma fase extra em que não há suporte para subconsultas) é aplicada para limitar o número de séries que são obtidas e renderizadas. Esse recurso é útil ao agrupar por coluna(s) de alta cardinalidade, embora aumente a complexidade e o custo da consulta." ], - "Fail": ["Falha"], - "Failed": ["Falhou"], - "Failed at retrieving results": ["Falha na obtenção de resultados"], - "Failed at stopping query. %s": ["Falha ao parar a consulta. %s"], - "Failed to create report": ["Falha ao criar relatório"], - "Failed to execute %(query)s": ["Falha ao executar %(query)s"], - "Failed to load chart data": ["Falha ao carregar dados do gráfico"], - "Failed to load chart data.": ["Falha ao carregar dados do gráfico."], - "Failed to start remote query on a worker.": [ - "Falha ao iniciar a consulta remota em um worker." + "Y Axis Format": ["Formato do eixo Y"], + "Time format": ["Formato de hora"], + "The color scheme for rendering chart": [ + "O esquema de cores para a renderização do gráfico" ], - "Failed to update report": ["Falha ao atualizar relatório"], - "Failed to verify select options: %s": [ - "Falha ao verificar opções selecionadas: %s" + "Truncate Metric": ["Truncar métrica"], + "Whether to truncate metrics": ["Se as métricas devem ser truncadas"], + "Show empty columns": ["Mostrar colunas vazias"], + "D3 format syntax: https://github.com/d3/d3-format": [ + "formato D3 sintaxe: https://github.com/d3/d3-format" ], - "Favorite": ["Favorito"], - "Favorites": ["Favoritos"], - "February": ["Fevereiro"], - "Fetch Values Predicate": ["Predicado de obtenção de valores"], - "Fetch data preview": ["Obter pré-visualização de dados"], - "Fetched %s": ["Obtido %s"], - "Fetching": ["Buscando"], - "Field cannot be decoded by JSON. %(json_error)s": [ - "O campo não pode ser decodificado por JSON. %(json_error)s" + "Adaptive formatting": ["Formatação adaptável"], + "Original value": ["Valor original"], + "Duration in ms (66000 => 1m 6s)": ["Duração em ms (66000 => 1m 6s)"], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "Duração em ms (1,40008 => 1ms 400µs 80ns)" ], - "Field cannot be decoded by JSON. %(msg)s": [ - "Campo não pode ser decodificado por JSON. %(msg)s" + "D3 time format syntax: https://github.com/d3/d3-time-format": [ + "Formato de hora D3 sintaxe: https://github.com/d3/d3-time-format" ], - "Field is required": ["Campo é obrigatório"], - "File": ["Arquivo"], - "Fill Color": ["Cor de preenchimento"], - "Fill all required fields to enable \"Default Value\"": [ - "Preencher todos os campos obrigatórios para ativar \"Default Value\"" + "Oops! An error occurred!": ["Ops! Ocorreu um erro!"], + "Stack Trace:": ["Rastreamento de Pilha:"], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Não foram apresentados resultados para esta consulta. Se esperava que fossem devolvidos resultados, certifique-se de que todos os filtros estão corretamente configurados e que a fonte de dados contém dados para o intervalo de tempo selecionado." ], - "Fill method": ["Método de preenchimento"], - "Filled": ["Preenchido"], - "Filter": ["Filtro"], - "Filter Configuration": ["Configuração de Filtro"], - "Filter List": ["Lista de filtros"], - "Filter Settings": ["Configurações de filtro"], - "Filter Type": ["Tipo de filtro"], - "Filter charts": ["Filtrar gráficos"], - "Filter configuration": ["Configuração do filtro"], - "Filter configuration for the filter box": [ - "Configuração do filtro para a caixa de filtro" + "No Results": ["Sem resultados"], + "ERROR": ["ERRO"], + "Found invalid orderby options": [ + "Encontradas opções de orderby inválidas" ], - "Filter has default value": ["O filtro tem valor padrão"], - "Filter menu": ["Menu do filtro"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Filtrar metadados alterados no painel. Isso não será aplicado." + "is expected to be an integer": ["espera-se que seja um inteiro"], + "is expected to be a number": ["espera-se que seja um número"], + "Value cannot exceed %s": [""], + "cannot be empty": ["não pode ser vazio"], + "Domain": ["Domínio"], + "hour": ["hora"], + "day": ["dia"], + "The time unit used for the grouping of blocks": [ + "A unidade de tempo usada para o agrupamento de blocos" ], - "Filter name": ["Nome do filtro"], - "Filter only displays values relevant to selections made in other filters.": [ - "Filtro só exibe valores relevantes para seleções feitas em outros filtros." + "Subdomain": ["Subdomínio"], + "min": ["min"], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "A unidade de tempo para cada bloco. Deve ser uma unidade menor que domain_granularity. Deve ser maior ou igual a Time Grain" ], - "Filter results": ["Filtrar resultados"], - "Filter set already exists": ["O conjunto de filtros já existe"], - "Filter set with this name already exists": [ - "O conjunto de filtros com esse nome já existe" + "Chart Options": ["Opções do gráfico"], + "Cell Size": ["Tamanho da célula"], + "The size of the square cell, in pixels": [ + "O tamanho da célula quadrada, em pixels" ], - "Filter sets (%(filterSetCount)d)": [ - "Conjuntos de filtros (%(filterSetCount)d)" + "Cell Padding": ["Preenchimento de célula"], + "The distance between cells, in pixels": [ + "A distância entre células, em pixels" ], - "Filter type": ["Tipo do filtro"], - "Filter value (case sensitive)": [ - "Valor do filtro (diferencia maiúsculas de minúsculas)" + "Cell Radius": ["Raio da Célula"], + "The pixel radius": ["O raio do pixel"], + "Color Steps": ["Etapas de cores"], + "The number color \"steps\"": ["A cor do número \"steps\""], + "Time Format": ["Formato de hora"], + "Legend": ["Legenda"], + "Whether to display the legend (toggles)": [ + "Se a legenda deve ser exibida (alterna)" ], - "Filter value is required": ["O valor do filtro é obrigatório"], - "Filter value list cannot be empty": [ - "A lista de valores do filtro não pode estar vazia" + "Show Values": ["Mostrar valores"], + "Whether to display the numerical values within the cells": [ + "Se deseja exibir os valores numéricos dentro das células" ], - "Filter your charts": ["Filtrar os seus gráficos"], - "Filterable": ["Filtrável"], - "Filters": ["Filtros"], - "Filters (%d)": ["Filtros (%d)"], - "Filters by columns": ["Filtros por colunas"], - "Filters by metrics": ["Filtros por métricas"], - "Filters configuration": ["Configurações de filtros"], - "Filters out of scope (%d)": ["Filtros fora do escopo (%d)"], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ - "Os filtros com a mesma chave de grupo serão agrupados dentro do grupo, enquanto os grupos de filtros diferentes serão agrupados. As chaves de grupo indefinidas são tratadas como grupos únicos, ou seja, não são agrupadas. Por exemplo, se uma tabela tiver três filtros, dos quais dois são para os departamentos Finanças e Marketing (chave de grupo = 'departamento') e um se refere à região Europa (chave de grupo = 'região'), a cláusula de filtro aplicaria o filtro (departamento = 'Finanças' OU departamento = 'Marketing') AND (região = 'Europa')." + "Show Metric Names": ["Mostrar nomes de métricas"], + "Whether to display the metric name as a title": [ + "Se o nome da métrica deve ser exibido como um título" ], - "Finish": ["Finalizar"], - "First": ["Primeiro"], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "Corrigir a linha de tendência para o intervalo de tempo completo especificado no caso dos resultados filtrados não incluírem as datas de início ou fim" + "Number Format": ["Formato do número"], + "Correlation": ["Correlação"], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Visualiza como uma métrica mudou ao longo do tempo usando uma escala de cores e uma visualização de calendário. Os valores em cinza são usados para indicar valores ausentes e o esquema de cores linear é usado para codificar a magnitude do valor de cada dia." ], - "Fix to selected Time Range": [ - "Corrigir para o intervalo de tempo selecionado" + "Business": ["Negócios"], + "Comparison": ["Comparação"], + "Intensity": ["Intensidade"], + "Pattern": ["Padrão"], + "Report": ["Relatório"], + "Trend": ["Tendência"], + "less than {min} {name}": ["menos que {min} {name}"], + "between {down} and {up} {name}": ["entre {down} e {up} {name}"], + "more than {max} {name}": ["mais de {max} {name}"], + "Sort by metric": ["Classificar por métrica"], + "Whether to sort results by the selected metric in descending order.": [ + "Se os resultados devem ser classificados pela métrica selecionada em ordem decrescente." ], - "Fixed": ["Fixo"], - "Fixed Color": ["Cor Fixa"], - "Fixed color": ["Cor fixa"], - "Fixed point radius": ["Raio do ponto fixo"], + "Number format": ["Formato numérico"], + "Choose a number format": ["Escolha um formato de número"], + "Source": ["Fonte"], + "Choose a source": ["Escolha uma fonte"], + "Target": ["Alvo"], + "Choose a target": ["Escolha um alvo"], "Flow": ["Fluxo"], - "Font size": ["Tamanho da Fonte"], - "Font size for axis labels, detail value and other text elements": [ - "Tamanho da Fonte para rótulos de eixo, detalhes de valor e outros elementos de texto" - ], - "Font size for the biggest value in the list": [ - "Tamanho da Fonte para o maior valor na lista" + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Mostra o fluxo ou a ligação entre categorias utilizando a espessura das cordas. O valor e a espessura correspondente podem ser diferentes para cada lado." ], - "Font size for the smallest value in the list": [ - "Tamanho da Fonte para o menor valor na lista" + "Relationships between community channels": [ + "Relações entre canais comunitários" ], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "Para Bigquery, Presto e Postgres, mostra um botão para calcular o custo antes de executar uma consulta." + "Chord Diagram": ["Diagrama de acordes"], + "Aesthetic": ["Estética"], + "Circular": ["Circular"], + "Legacy": ["Legado"], + "Proportional": ["Proporcional"], + "Relational": ["Relacional"], + "Country": ["País"], + "Which country to plot the map for?": ["Para qual país traçar o mapa?"], + "ISO 3166-2 Codes": ["Códigos ISO 3166-2"], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Coluna contendo códigos ISO 3166-2 da região/província/departamento em sua tabela." ], - "For further instructions, consult the": [ - "Para mais instruções , consultar o" + "Metric to display bottom title": [ + "Métrica para exibir o título inferior" ], - "For more information about objects are in context in the scope of this function, refer to the": [ - "Para mais informações sobre os objetos que estão no contexto do escopo dessa função, consulte para o" + "Map": ["Mapa"], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Visualiza como uma única métrica varia entre as principais subdivisões de um país (estados, províncias etc.) em um mapa coroplético. O valor de cada subdivisão é elevado quando você passa o mouse sobre o limite geográfico correspondente." ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ - "Para os filtros regulares, estas são as funções às quais este filtro será aplicado. Para os filtros de base, estas são as funções às quais o filtro NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os dados." + "2D": ["2D"], + "Geo": ["Geo"], + "Range": ["Faixa"], + "Stacked": ["Empilhado"], + "Sorry, there appears to be no data": [ + "Desculpe, mas parece que não existem dados" ], - "Force": ["Forçar"], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "Força a criação de todas as tabelas e visôes neste esquema ao clicar em CTAS ou CVAS no SQL Lab." + "Event definition": ["Definição do evento"], + "Event Names": ["Nome do Evento"], + "Columns to display": ["Colunas a serem exibidas"], + "Order by entity id": ["Pedido por id da entidade"], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Importante! Seleccione esta opção se a tabela ainda não estiver ordenada por id de entidade, caso contrário não há garantia de que todos os eventos de cada entidade sejam retornados." ], - "Force date format": ["Forçar o formato da data"], - "Force refresh": ["Forçar atualização"], - "Force refresh schema list": ["Forçar atualização da lista de esquemas"], - "Force refresh table list": ["Forçar atualização da lista de tabelas"], - "Forecast periods": ["Períodos de previsão"], - "Foreign key": ["Chave estrangeira"], - "Forest Green": ["Verde floresta"], - "Form data not found in cache, reverting to chart metadata.": [ - "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do gráfico." + "Minimum leaf node event count": [ + "Contagem mínima de eventos de nó folha" ], - "Form data not found in cache, reverting to dataset metadata.": [ - "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do conjunto de dados." + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Os nós folha que representam menos do que este número de eventos serão inicialmente ocultados na visualização" ], - "Formattable": ["Formatável"], - "Formatted CSV attached in email": ["CSV formatado anexado no e-mail"], - "Formatted date": ["Data formatada"], - "Formatted value": ["Valor formatado"], - "Formatting": ["Formatação"], - "Formula": ["Fórmula"], - "Forward values": ["Valores futuros"], - "Found invalid orderby options": [ - "Encontradas opções de orderby inválidas" + "Additional metadata": ["Metadados adicionais"], + "Metadata": ["Metadados"], + "Select any columns for metadata inspection": [ + "Selecionar quaisquer colunas para inspeção de metadados" ], - "Fraction digits": ["Dígitos de frações"], - "Frequency": ["Frequência"], - "Friction": ["Atrito"], - "Friction between nodes": ["Atrito entre nós"], - "Friday": ["Sexta"], - "From date cannot be larger than to date": [ - "A data de início não pode ser maior do que a data de fim" + "Entity ID": ["ID da entidade"], + "e.g., a \"user id\" column": ["por exemplo, uma coluna \"user id\""], + "Max Events": ["Max Eventos"], + "The maximum number of events to return, equivalent to the number of rows": [ + "O número máximo de eventos retornados, equivalente ao número de linhas" ], - "Full name": ["Nome completo"], - "Funnel Chart": ["Gráfico de funil"], - "Further customize how to display each column": [ - "Personalizar ainda mais a forma de apresentação de cada coluna" + "Compares the lengths of time different activities take in a shared timeline view.": [ + "Compara os períodos de tempo de diferentes atividades numa visão de linha de tempo compartilhada." ], - "Further customize how to display each metric": [ - "Personalizar ainda mais como exibir cada métrica" + "Event Flow": ["Fluxo do Evento"], + "Progressive": ["Progressivo"], + "Axis ascending": ["Eixo ascendente"], + "Axis descending": ["Eixo descendente"], + "Metric ascending": ["Métrica crescente"], + "Metric descending": ["Métrica decrescente"], + "Heatmap Options": ["Opções do mapa de calor"], + "XScale Interval": ["Intervalo XScale"], + "Number of steps to take between ticks when displaying the X scale": [ + "Número de passos a dar entre os tiques ao apresentar a escala X" ], - "GROUP BY": ["AGRUPAR POR"], - "Gauge Chart": ["Gráfico de medidores"], - "General": ["Em geral"], - "Generating link, please wait..": ["Gerando link, por favor espere.."], - "Generic Chart": ["Gráfico genérico"], - "Geo": ["Geo"], - "GeoJson Column": ["Coluna GeoJson"], - "GeoJson Settings": ["Configurações de GeoJson"], - "Geohash": ["Geohash"], - "Get the last date by the date unit.": [ - "Obter a última data através da unidade de data." + "YScale Interval": ["Intervalo da escala Y"], + "Number of steps to take between ticks when displaying the Y scale": [ + "Número de passos a dar entre os tiques ao apresentar a escala Y" ], - "Get the specify date for the holiday": [ - "Obter a data específica para o feriado" + "Rendering": ["Renderização"], + "pixelated (Sharp)": ["pixelado (nítido)"], + "auto (Smooth)": ["auto (Suave)"], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "atributo CSS de renderização de imagem do objeto canvas que define como o navegador dimensiona a imagem" ], - "Go to the edit mode to configure the dashboard and add charts": [ - "Vá ao modo de edição para configurar o painel e adicionar gráficos" + "Normalize Across": ["Normalizar em"], + "heatmap": ["mapa de calor"], + "x": ["x"], + "y": ["y"], + "x: values are normalized within each column": [ + "x: os valores são normalizados dentro de cada coluna" ], - "Gold": ["Ouro"], - "Google Sheet Name and URL": ["Planilha Google Nome e URL"], - "Grace period": ["Período de inatividade"], - "Graph Chart": ["Gráfico"], - "Graph layout": ["Layout do gráfico"], - "Gravity": ["Gravidade"], - "Greater or equal (>=)": ["Maior ou igual (>=)"], - "Greater than (>)": ["Maior que (>)"], - "Grid": ["Grade"], - "Grid Size": ["Tamanho da grade"], - "Group By": ["Agrupar por"], - "Group By filter plugin": ["Plugin do filtro Agrupar por"], - "Group By, Metrics or Percentage Metrics must have a value": [ - "Agrupar por , Métricas ou Métricas de porcentagem devem ter um valor" + "y: values are normalized within each row": [ + "y: os valores são normalizados dentro de cada linha" ], - "Group by": ["Agrupar por"], - "Groupable": ["Agrupável"], - "Handlebars": ["Handlebars"], - "Handlebars Template": ["Modelo de handlebars"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ - "Limites de valores rígidos aplicados para codificação de cores. Só é relevante e aplicado quando a normalização é aplicada a todo o mapa de calor." + "heatmap: values are normalized across the entire heatmap": [ + "heatmap: os valores são normalizados em todo o heatmap" ], - "Has created by": ["Foi criado por"], - "Header": ["Cabeçalho"], - "Header Row": ["Linha do Cabeçalho"], - "Heatmap": ["Mapa de calor"], - "Heatmap Options": ["Opções do mapa de calor"], - "Height": ["Altura"], - "Height of the sparkline": ["Altura do minigráfico"], - "Hide Line": ["Ocultar linha"], - "Hide chart description": ["Ocultar descrição do gráfico"], - "Hide layer": ["Esconder camada"], - "Hide password.": ["Ocultar senha."], - "Hide tool bar": ["Esconder barra de ferramentas"], - "Hides the Line for the time series": [ - "Oculta a linha da série temporal" + "Left Margin": ["Margem Esquerda"], + "auto": ["automático"], + "Left margin, in pixels, allowing for more room for axis labels": [ + "Margem esquerda, em pixels, permitindo mais espaço para os rótulos dos eixos" ], - "Hierarchy": ["Hierarquia"], - "Histogram": ["Histograma"], - "Home": ["Início"], - "Horizon Chart": ["Gráfico de horizonte"], - "Horizon Charts": ["Gráficos do horizonte"], - "Horizontal": ["Horizontal"], - "Horizontal (Top)": ["Horizontal (topo)"], - "Horizontal alignment": ["Alinhamento horizontal"], - "Host": ["Host"], - "Hostname or IP address": ["Nome do host ou endereço IP"], - "Hour": ["Hora"], - "Hours %s": ["Horas %s"], - "Hours offset": ["Compensação de horas"], - "How do you want to enter service account credentials?": [ - "Como pretende introduzir as credenciais da conta de serviço?" + "Bottom Margin": ["Margem Inferior"], + "Bottom margin, in pixels, allowing for more room for axis labels": [ + "Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" ], - "How many buckets should the data be grouped in.": [ - "Em quantos compartimentos devem ser agrupados os dados." + "Value bounds": ["Limites de valor"], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Limites de valores rígidos aplicados para codificação de cores. Só é relevante e aplicado quando a normalização é aplicada a todo o mapa de calor." ], - "How many periods into the future do we want to predict": [ - "Quantos períodos no futuro queremos prever" + "Sort X Axis": ["Ordenar Eixo X"], + "Sort Y Axis": ["Ordenar Eixo Y"], + "Show percentage": ["Mostrar porcentagem"], + "Whether to include the percentage in the tooltip": [ + "Se a porcentagem deve ser incluída na dica de ferramenta" ], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "" + "Normalized": ["Normalizado"], + "Whether to apply a normal distribution based on rank on the color scale": [ + "Se deve ser aplicada uma distribuição normal com base na classificação na escala de cores" ], - "Huge": ["Enorme"], - "ISO 3166-2 Codes": ["Códigos ISO 3166-2"], - "ISO 8601": ["ISO 8601"], - "Id": ["Id"], - "Id of root node of the tree.": ["Id do nó raiz da árvore."], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Se for o Presto ou o Trino, todas as consultas no SQL Lab serão executadas como o usuário conectado no momento, que deve ter permissão para executá-las. Se o Hive e o hive.server2.enable.doAs estiverem ativados, as consultas serão executadas como conta de serviço, mas representarão o usuário conectado no momento por meio da propriedade hive.server2.proxy.user." + "Value Format": ["Formato do valor"], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Visualize uma métrica relacionada em pares de grupos. Os mapas de calor são excelentes para mostrar a correlação ou a força entre dois grupos. A cor é usada para enfatizar a força do vínculo entre cada par de grupos." ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Se Presto, todas as consultas no SQL Lab serão executadas como o usuário atualmente conectado, que deve ter permissão para executá-las.
Se Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão executadas como conta de serviço, mas personificarão o usuário atualmente conectado por meio da propriedade hive.server2.proxy.user." + "Sizes of vehicles": ["Tamanhos de veículos"], + "Employment and education": ["Emprego e educação"], + "Density": ["Densidade"], + "Predictive": ["Preditivo"], + "Single Metric": ["Métrica única"], + "to": ["para"], + "count": ["contagem"], + "cumulative": ["cumulativo"], + "percentile (exclusive)": ["percentil (exclusivo)"], + "Select the numeric columns to draw the histogram": [ + "Selecionar as colunas numéricas para desenhar o histograma" ], - "If Table Already Exists": ["Se a tabela já existir"], - "If a metric is specified, sorting will be done based on the metric value": [ - "Se for especificada uma métrica, a ordenação será efetuada com base no valor da métrica" + "No of Bins": ["Número de lixeiras"], + "Select the number of bins for the histogram": [ + "Selecionar o número de caixas para o histograma" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "Se as colunas duplicadas não forem substituídas, elas serão apresentadas como \"X.1, X.2 ...X.x\"" + "X Axis Label": ["Rótulo do Eixo X"], + "Y Axis Label": ["Rótulo do Eixo Y"], + "Whether to normalize the histogram": ["Se deve normalizar o histograma"], + "Cumulative": ["Acumulado"], + "Whether to make the histogram cumulative": [ + "Se o histograma deve ser cumulativo" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Se selecionado, defina os esquemas permitidos para o carregamento de csv no Extra." + "Distribution": ["Distribuição"], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Pegue seus pontos de dados e agrupe-os em \"bins\" para ver onde estão as áreas mais densas de informações" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." + "Population age data": ["Dados sobre a idade da população"], + "Contribution": ["Contribuição"], + "Compute the contribution to the total": [ + "Calcular a contribuição para o total" ], - "Ignore cache when generating screenshot": [ - "Ignorar o cache ao gerar a captura de tela" + "Series Height": ["Altura da série"], + "Pixel height of each series": ["Altura do pixel de cada série"], + "Value Domain": ["Domínio de Valor"], + "series": ["série"], + "overall": ["geral"], + "change": ["mudança"], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "séries: Tratar cada série de forma independente; geral: Todas as séries usam a mesma escala; alteração: Mostrar alterações em comparação com o primeiro ponto de dados em cada série" ], - "Ignore null locations": ["Ignorar localizações nulas"], - "Ignore time": ["Ignorar hora"], - "Image (PNG) embedded in email": ["Imagem (PNG) incorporada no e-mail"], - "Image download failed, please refresh and try again.": [ - "Falha no download da imagem, por favor atualizar e tentar novamente." + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Compara a forma como uma métrica muda ao longo do tempo entre diferentes grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do tempo é visualizada em comprimentos de barra e cores." ], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e GSheets)" + "Horizon Chart": ["Gráfico de horizonte"], + "Dark Cyan": ["Escuro Ciano"], + "Purple": ["Roxo"], + "Gold": ["Ouro"], + "Dim Gray": ["Cinza escuro"], + "Crimson": ["Carmesim"], + "Forest Green": ["Verde floresta"], + "Longitude": ["Longitude"], + "Column containing longitude data": [ + "Coluna contendo dados de longitude" ], - "Impersonate the logged on user": [ - "Representar o usuário com sessão iniciada" + "Latitude": ["Latitude"], + "Column containing latitude data": ["Coluna contendo dados de latitude"], + "Clustering Radius": ["Raio de agrupamento"], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "O raio (em pixels) que o algoritmo usa para definir um cluster. Escolha 0 para desativar o agrupamento, mas lembre-se de que um grande número de pontos (>1000) causará atraso." ], - "Import": ["Importar"], - "Import %s": ["Importar %s"], - "Import Dashboard(s)": ["Importar Painel(eis)"], - "Import Dashboards": ["Importar Paineis"], - "Import a table definition": ["Importar uma definição de tabela"], - "Import chart failed for an unknown reason": [ - "A importação do gráfico falhou por um motivo desconhecido" + "Points": ["Pontos"], + "Point Radius": ["Raio do ponto"], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "O raio de pontos individuais (aqueles que não estão em um cluster). Uma coluna numérica ou `Auto`, que dimensiona o ponto com base no maior cluster" ], - "Import charts": ["Importar gráficos"], - "Import dashboard failed for an unknown reason": [ - "A importação do painel falhou por um motivo desconhecido" + "Auto": ["Auto"], + "Point Radius Unit": ["Unidade de raio do ponto"], + "Pixels": ["Pixels"], + "Miles": ["Milhas"], + "Kilometers": ["Quilômetros"], + "The unit of measure for the specified point radius": [ + "A unidade de medida do raio do ponto especificado" ], - "Import dashboards": ["Importar painéis"], - "Import database failed for an unknown reason": [ - "A importação do banco de dados falhou por um motivo desconhecido" + "Labelling": ["Rotulagem"], + "label": ["rótulo"], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "`count` é COUNT(*) se for usado um grupo por. As colunas numéricas serão agregadas com o agregador. As colunas não numéricas serão usadas para rotular os pontos. Deixe em branco para obter uma contagem de pontos em cada cluster." ], - "Import database from file": ["Importar banco de dados de um arquivo"], - "Import dataset failed for an unknown reason": [ - "A importação do conjunto de dados falhou por um motivo desconhecido" + "Cluster label aggregator": ["Agregador de rótulo de cluster"], + "sum": ["soma"], + "mean": ["média"], + "max": ["máximo"], + "std": ["std"], + "var": ["var"], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "Função agregada aplicada à lista de pontos em cada cluster para produzir o rótulo do cluster." ], - "Import datasets": ["Importar conjuntos de dados"], - "Import queries": ["Importar consultas"], - "Import saved query failed for an unknown reason.": [ - "A consulta salva de importação falhou por um motivo desconhecido." + "Visual Tweaks": ["Ajustes visuais"], + "Live render": ["Renderização em tempo real"], + "Points and clusters will update as the viewport is being changed": [ + "Pontos e clusters serão atualizados conforme a janela de exibição mude" ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ - "Importante! Seleccione esta opção se a tabela ainda não estiver ordenada por id de entidade, caso contrário não há garantia de que todos os eventos de cada entidade sejam retornados." + "Map Style": ["Estilo do mapa"], + "Streets": ["Ruas"], + "Dark": ["Escuro"], + "Light": ["Claro"], + "Satellite Streets": ["Ruas Satélites"], + "Satellite": ["Satélite"], + "Outdoors": ["Ao ar livre"], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Opacidade"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [ + "Opacidade de todos os clusters, pontos e rótulos. Entre 0 e 1." ], - "In": ["Em"], - "Include Series": ["Incluir Séries"], - "Include a description that will be sent with your report": [ - "Incluir uma descrição que será enviada com o seu relatório" + "RGB Color": ["Cor RGB"], + "The color for points and clusters in RGB": [ + "A cor dos pontos e clusters em RGB" ], - "Include series name as an axis": [ - "Incluir o nome da série como um eixo" + "Viewport": ["Porta de exibição"], + "Default longitude": ["Longitude padrão"], + "Longitude of default viewport": ["Longitude da viewport padrão"], + "Default latitude": ["Latitude padrão"], + "Latitude of default viewport": [ + "Latitude da janela de visualização padrão" ], - "Include time": ["Incluir horário"], - "Index": ["Índice"], - "Index Column": ["Coluna de índice"], - "Info": ["Informações"], - "Inner Radius": ["Raio interior"], - "Inner radius of donut hole": ["Raio interior do buraco de rosquinha"], - "Input field supports custom rotation. e.g. 30 for 30°": [ - "O campo de entrada suporta uma rotação personalizada, por exemplo, 30 para 30°" + "Zoom": ["Ampliar"], + "Zoom level of the map": ["Nível de zoom do mapa"], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Um ou vários controles para agrupar. Em caso de agrupamento, as colunas de latitude e longitude devem estar presentes." ], - "Instant filtering": ["Filtragem instantânea"], - "Intensity": ["Intensidade"], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ - "" + "Light mode": ["Modo claro"], + "Dark mode": ["Modo escuro"], + "MapBox": ["MapBox"], + "Scatter": ["Dispersão"], + "Transformable": ["Transformável"], + "Significance Level": ["Nível de significância"], + "Threshold alpha level for determining significance": [ + "Nível alfa de limiar para determinar a significância" ], - "Interpret Datetime Format Automatically": [ - "Interpretar automaticamente o formato de data e hora" + "p-value precision": ["precisão do valor-p"], + "Number of decimal places with which to display p-values": [ + "Número de casas decimais para exibir valores-p" ], - "Interpret the datetime format automatically": [ - "Interpretar o formato de data e hora automaticamente" + "Lift percent precision": ["Precisão da percentagem de elevação"], + "Number of decimal places with which to display lift values": [ + "Número de casas decimais para exibir valores de elevação" ], - "Interval": ["Intervalo"], - "Interval End column": ["Intervalo Coluna final"], - "Interval bounds": ["Limites de intervalo"], - "Interval colors": ["Cores do intervalo"], - "Interval start column": ["Coluna de início do intervalo"], - "Intervals": ["Intervalos"], - "Invalid JSON": ["JSON inválido"], - "Invalid advanced data type: %(advanced_data_type)s": [ - "Tipo de dados avançados inválido: %(advanced_data_type)s" + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Tabela que visualiza testes t emparelhados, que são utilizados para compreender as diferenças estatísticas entre grupos." ], - "Invalid certificate": ["Certificado inválido"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "String de conexão inválida, uma string válida é normalmente a seguinte:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" + "Paired t-test Table": ["Tabela teste-t pareado"], + "Statistical": ["Estatístico"], + "Tabular": ["Tabular"], + "Options": ["Opções"], + "Data Table": ["Tabela de dados"], + "Whether to display the interactive data table": [ + "Se deseja exibir a tabela de dados interativa" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ - "Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: backend+driver://user:password@database-host/database-name" + "Include Series": ["Incluir Séries"], + "Include series name as an axis": [ + "Incluir o nome da série como um eixo" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

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

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

" + "Ranking": ["Classificação"], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Plota os índices individuais para cada linha nos dados verticalmente e os vincula como uma linha. Este gráfico é útil para comparar várias métricas em todas as amostras ou linhas nos dados." ], - "Invalid cron expression": ["Expressão cron inválida"], - "Invalid cumulative operator: %(operator)s": [ - "Operador cumulativo inválido: %(operator)s" + "Coordinates": ["Coordenadas"], + "Directional": ["Direcional"], + "Time Series Options": ["Opções de séries temporais"], + "Not Time Series": ["Não é uma série temporal"], + "Ignore time": ["Ignorar hora"], + "Time Series": ["Séries temporais"], + "Standard time series": ["Série temporal padrão"], + "Aggregate Mean": ["Média agregada"], + "Mean of values over specified period": [ + "Média dos valores durante o período especificado" ], - "Invalid date/timestamp format": [ - "Formato de data/carimbo de data/hora inválido" + "Aggregate Sum": ["Soma agregada"], + "Sum of values over specified period": [ + "Soma dos valores durante o período especificado" ], - "Invalid filter configuration, please select a column": [ - "Configuração de filtro inválida, selecione uma coluna" + "Metric change in value from `since` to `until`": [ + "Alteração do valor da métrica de `desde` a `até`" ], - "Invalid filter operation type: %(op)s": [ - "Tipo de operação de filtragem inválido: %(op)s" + "Percent Change": ["Variação percentual"], + "Metric percent change in value from `since` to `until`": [ + "Métrica de variação percentual do valor de `desde` até `até`" ], - "Invalid geodetic string": ["Cadeia geodésica inválida"], - "Invalid geohash string": ["Cadeia de caracteres geohash inválida"], - "Invalid input": ["Entrada inválida"], - "Invalid lat/long configuration.": ["Configuração lat/long inválida."], - "Invalid longitude/latitude": ["Longitude/latitude inválida"], - "Invalid metric object: %(metric)s": [ - "Objeto de métrica inválido: %(metric)s" + "Factor": ["Fator"], + "Metric factor change from `since` to `until`": [ + "Alteração do fator métrico de `since` para `until`" ], - "Invalid numpy function: %(operator)s": [ - "Função numpy inválida: %(operator)s" + "Advanced Analytics": ["Análise avançada"], + "Use the Advanced Analytics options below": [ + "Use as opções de análise avançada abaixo" ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Opções inválidas para %(rolling_type)s: %(opções)s" + "Settings for time series": ["Configurações para séries temporais"], + "Date Time Format": ["Formato de data e hora"], + "Partition Limit": ["Limite de partição"], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "O máximo número de subdivisões de cada grupo ; mais baixo os valores são podados primeiro" ], - "Invalid permalink key": ["Chave de permalink inválida"], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [ - "Tipo de resultado inválido: %(result_type)s" + "Partition Threshold": ["Limiar de partição"], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "As partições cujas proporções entre a altura e a altura dos pais sejam inferiores a este valor são eliminadas" ], - "Invalid rolling_type: %(type)s": ["Inválido rolling_type: %(type)s"], - "Invalid spatial point encountered: %s": [ - "Encontrado um ponto espacial inválido: %s" + "Log Scale": ["Escala Log"], + "Use a log scale": ["Use uma escala logarítmica"], + "Equal Date Sizes": ["Tamanhos de datas iguais"], + "Check to force date partitions to have the same height": [ + "Marcar para forçar as partições de data a terem a mesma altura" ], - "Invalid state.": ["Estado inválido."], - "Invalid tab ids: %s(tab_ids)": ["IDs das abas inválido: %s(tab_ids)"], - "Inverse selection": ["Seleção inversa"], - "Invert current page": ["Inverter a página atual"], - "Is certified": ["É certificado"], - "Is dimension": ["É dimensão"], - "Is false": ["É falso"], - "Is favorite": ["É favorito"], - "Is filterable": ["É filtrável"], - "Is not null": ["Não é nulo"], - "Is null": ["É nulo"], - "Is tagged": ["É marcado"], - "Is temporal": ["É temporal"], - "Is true": ["É verdadeiro"], - "Issue 1000 - The dataset is too large to query.": [ - "Problema 1000 - O conjunto de dados é muito grande para ser consultado." + "Rich Tooltip": ["Dica avançada"], + "The rich tooltip shows a list of all series for that point in time": [ + "A dica de ferramenta avançada mostra uma lista de todas as séries para esse ponto no tempo" ], - "Issue 1001 - The database is under an unusual load.": [ - "Problema 1001 - O Banco de dados está sob uma carga incomum." + "Rolling Window": ["Janela de rolagem"], + "Rolling Function": ["Função de rolagem"], + "cumsum": ["cumsum"], + "Min Periods": ["Períodos mínimos"], + "Time Comparison": ["Comparação de tempo"], + "Time Shift": ["Mudança de hora"], + "1 week": ["1 semana"], + "30 days": ["30 dias"], + "52 weeks": ["52 semanas"], + "1 year": ["1 ano"], + "104 weeks": ["104 semanas"], + "2 years": ["2 anos"], + "156 weeks": ["156 semanas"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Sobrepor uma ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas, 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." ], - "It’s not recommended to truncate axis in Bar chart.": [ - "Não é recomendado truncar o eixo no gráfico de barras." + "Actual Values": ["Valores reais"], + "1T": ["1T"], + "1H": ["1H"], + "1D": ["1D"], + "7D": ["7D"], + "1M": ["1M"], + "1AS": ["1AS"], + "Method": ["Método"], + "asfreq": ["asfreq"], + "bfill": ["bfill"], + "ffill": ["ffill"], + "median": ["mediana"], + "Part of a Whole": ["Parte de um Todo"], + "Compare the same summarized metric across multiple groups.": [ + "Comparar a mesma métrica resumida em vários grupos." ], - "JAN": ["JAN"], - "JSON": ["JSON"], - "JSON Metadata": ["Metadados JSON"], - "JSON metadata": ["Metadados JSON"], - "JSON metadata is invalid!": ["Os metadados JSON são inválidos!"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "Cadeia de caracteres JSON contendo configuração de conexão adicional. Isso é usado para fornecer informações de conexão para sistemas como Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de nome de usuário:senha normalmente usada pelo SQLAlchemy." + "Partition Chart": ["Gráfico de partição"], + "Categorical": ["Categórico"], + "Use Area Proportions": ["Proporções de área de uso"], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "Verificar se o gráfico de rosáceas deve utilizar a área do segmento em vez do raio do segmento para o cálculo das proporções" ], - "JUL": ["JUL"], - "JUN": ["JUN"], - "January": ["Janeiro"], - "JavaScript data interceptor": ["Interceptador de dados JavaScript"], - "JavaScript onClick href": ["JavaScript onClick href"], - "JavaScript tooltip generator": [ - "Gerador de dicas de ferramentas JavaScript" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Um gráfico de coordenadas polares em que o círculo é dividido em cunhas de igual ângulo e o valor representado por qualquer cunha é ilustrado pela sua área, em vez do seu raio ou ângulo de varrimento." ], - "Jinja templating": ["Modelo Jinja"], - "Json list of the column names that should be read": [ - "Lista Json dos nomes das colunas que devem ser lidas" + "Nightingale Rose Chart": ["Gráfico Nightingale Rose"], + "Advanced-Analytics": ["Análise avançada"], + "Multi-Layers": ["Múltiplas Camadas"], + "Source / Target": ["Fonte / Alvo"], + "Choose a source and a target": ["Escolha uma fonte e um alvo"], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Limitar as linhas pode resultar em dados incompletos e gráficos errôneos. Em vez disso, considere filtrar ou agrupar nomes de origem/destino." ], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "Lista Json dos nomes das colunas que devem ser lidas. Se não for None, apenas estas colunas serão lidas do ficheiro." + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Visualiza o fluxo de valores de diferentes grupos por meio de diferentes estágios de um sistema. Novos estágios no pipeline são visualizados como nós ou camadas. A espessura das barras ou bordas representa a métrica que está sendo visualizada." ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ - "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" + "Demographics": ["Demografia"], + "Survey Responses": ["Respostas da pesquisa"], + "Sankey Diagram": ["Diagrama Sankey"], + "Percentages": ["Porcentagens"], + "Sankey Diagram with Loops": ["Diagrama Sankey com Loops"], + "Country Field Type": ["Tipo de campo País"], + "Full name": ["Nome completo"], + "code International Olympic Committee (cioc)": [ + "código Comitê Olímpico Internacional (cioc)" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados Hive suporta apenas um único valor. Utilize [\"\"] para uma cadeia de caracteres vazia." + "code ISO 3166-1 alpha-2 (cca2)": ["código ISO 3166-1 alpha-2 (cca2)"], + "code ISO 3166-1 alpha-3 (cca3)": ["código ISO 3166-1 alpha-3 (cca3)"], + "The country code standard that Superset should expect to find in the [country] column": [ + "O código de país padrão que o Superset deve esperar encontrar na coluna [country]" ], - "July": ["Julho"], - "June": ["Junho"], - "KPI": ["KPI"], - "Keep control settings?": ["Manter configurações de controle?"], - "Keep editing": ["Continue editando"], - "Key": ["Chave"], - "Keys for table": ["Chaves da tabela"], - "Kilometers": ["Quilômetros"], - "LIMIT": ["LIMITE"], - "Label": ["Rótulo"], - "Label Line": ["Linha de rótulos"], - "Label Type": ["Tipo de rótulo"], - "Label already exists": ["O rótulo já existe"], - "Label for your query": ["Rótulo para sua consulta"], - "Label position": ["Posição do rótulo"], - "Label threshold": ["Rótulo limite"], - "Labelling": ["Rotulagem"], - "Labels": ["Rótulos"], - "Labels for the marker lines": ["Rótulos para o marcador linhas"], - "Labels for the markers": ["Rótulos para o marcadores"], - "Labels for the ranges": ["Rótulos para os intervalos"], - "Large": ["Grande"], - "Last": ["Último"], - "Last Changed": ["Última alteração"], - "Last Modified": ["Última modificação"], - "Last Updated %s": ["Última atualização %s"], - "Last Updated %s by %s": ["Última atualização %s por %s"], - "Last available value seen on %s": [ - "Último valor disponível visto em %s" + "Show Bubbles": ["Mostrar bolhas"], + "Whether to display bubbles on top of countries": [ + "Se deseja exibir bolhas na parte superior dos países" ], - "Last modified": ["Última modificação"], - "Last modified by %s": ["Última modificação por %s"], - "Last run": ["Última execução"], - "Latitude": ["Latitude"], - "Latitude of default viewport": [ - "Latitude da janela de visualização padrão" + "Max Bubble Size": ["Tamanho máximo da bolha"], + "Color by": ["Cor por"], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Escolha se um país deve ser sombreado pela métrica ou se lhe deve ser atribuída uma cor com base numa paleta de cores categóricas" ], - "Layer configuration": ["Configuração de camadas"], - "Layout": ["Layout"], - "Layout elements": ["Elementos de layout"], - "Layout type of graph": ["Tipo de layout de gráfico"], - "Layout type of tree": ["Tipo de layout de árvore"], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "Os nós folha que representam menos do que este número de eventos serão inicialmente ocultados na visualização" + "Country Column": ["Coluna do país"], + "Metric that defines the size of the bubble": [ + "Métrica que define o tamanho da bolha" ], - "Least recently modified": ["Modificação mais recente"], - "Left": ["Esquerda"], - "Left Axis Format": ["Formato do eixo esquerdo"], - "Left Axis chart(s)": ["Gráfico(s) do eixo esquerdo"], - "Left Margin": ["Margem Esquerda"], - "Left margin, in pixels, allowing for more room for axis labels": [ - "Margem esquerda, em pixels, permitindo mais espaço para os rótulos dos eixos" + "Bubble Color": ["Cor da bolha"], + "Country Color Scheme": ["Esquema de cores do país"], + "A map of the world, that can indicate values in different countries.": [ + "Um mapa do mundo, que pode indicar valores em diferentes países." ], - "Left to Right": ["Esquerda para Direita"], - "Left value": ["Valor esquerdo"], - "Legacy": ["Legado"], - "Legend": ["Legenda"], - "Legend Format": ["Formato de legenda"], - "Legend Orientation": ["Orientação de legenda"], - "Legend Position": ["Posição da legenda"], - "Legend type": ["Tipo de legenda"], - "Less or equal (<=)": ["Menor ou igual (<=)"], - "Less than (<)": ["Menos que (<)"], - "Lift percent precision": ["Precisão da percentagem de elevação"], - "Light": ["Claro"], - "Light mode": ["Modo claro"], - "Like": ["Como"], - "Like (case insensitive)": [ - "Como (não diferencia maiúsculas de minúsculas)" + "Multi-Dimensions": ["Multidimensões"], + "Multi-Variables": ["Multi-Variáveis"], + "Popular": ["Popular"], + "deck.gl charts": ["gráficos do deck.gl"], + "Pick a set of deck.gl charts to layer on top of one another": [ + "Escolha um conjunto de gráficos deck.gl para colocar em camadas uns sobre os outros" ], - "Limit reached": ["Limite atingido"], - "Limit selector values": ["Valores limite do seletor"], - "Limit type": ["Tipo de limite"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "Limitar as linhas pode resultar em dados incompletos e gráficos errôneos. Em vez disso, considere filtrar ou agrupar nomes de origem/destino." + "Select charts": ["Selecionar gráficos"], + "Error while fetching charts": ["Erro ao buscar gráficos"], + "Compose multiple layers together to form complex visuals.": [ + "Compor várias camadas para formar imagens complexas." ], - "Limits the number of cells that get retrieved.": [ - "Limita o número de células recuperadas." + "deck.gl Multiple Layers": ["deck.gl Múltiplas camadas"], + "deckGL": ["deckGL"], + "Start Longitude & Latitude": ["Longitude e latitude iniciais"], + "Point to your spatial columns": ["Apontar para as colunas espaciais"], + "End Longitude & Latitude": ["Longitude e latitude finais"], + "Arc": ["Arco"], + "Target Color": ["Cor do alvo"], + "Color of the target location": ["Cor do local de destino"], + "Categorical Color": ["Cor categórica"], + "Pick a dimension from which categorical colors are defined": [ + "Escolha uma dimensão a partir da qual as cores categóricas são definidas" ], - "Limits the number of rows that get displayed.": [ - "Limita o número de linhas exibidas." + "Stroke Width": ["Largura do traço"], + "Advanced": ["Avançado"], + "Plot the distance (like flight paths) between origin and destination.": [ + "Plota a distância (como rotas de voo) entre origem e destino." ], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma fase extra em que não há suporte para subconsultas) é aplicada para limitar o número de séries que são obtidas e renderizadas. Esse recurso é útil ao agrupar por coluna(s) de alta cardinalidade, embora aumente a complexidade e o custo da consulta." + "deck.gl Arc": ["deck.gl Arc"], + "3D": ["3D"], + "Web": ["Rede"], + "The function to use when aggregating points into groups": [ + "A função para usar quando agregar pontos em grupos" ], - "Line": ["Linha"], - "Line Chart": ["Gráfico de linhas"], - "Line Chart (legacy)": ["Gráfico de linhas (herdado)"], - "Line Style": ["Estilo da linha"], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "O gráfico de linhas é utilizado para visualizar as medições efetuadas numa determinada categoria. O gráfico de linhas é um tipo de gráfico que apresenta informações como uma série de pontos de dados ligados por segmentos de linha reta. É um tipo básico de gráfico comum em muitos domínios." + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "Line interpolation as defined by d3.js": [ - "Linha interpolação conforme definido por d3.js" + "Weight": ["Peso"], + "Metric used as a weight for the grid's coloring": [ + "Métrica usada como peso para coloração de grid" ], - "Line width": ["Largura da linha"], - "Linear Color Scheme": ["Esquema de Cores Linear"], - "Linear color scheme": ["Esquema de cores linear"], - "Linear interpolation": ["Interpolação linear"], - "Lines column": ["Coluna de linhas"], - "Lines encoding": ["Codificação de linhas"], - "Link Copied!": ["Link copiado!"], - "List Saved Query": ["Listar consulta salva"], - "List Unique Values": ["Listar valores exclusivos"], - "List of extra columns made available in JavaScript functions": [ - "Lista de colunas extra disponibilizadas em funções JavaScript" + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" ], - "List of n+1 values for bucketing metric into n buckets.": [ - "Lista de n+1 valores para a métrica de agrupamento em n agrupamentos." + "Spatial": ["Espacial"], + "Experimental": ["Experimental"], + "GeoJson Settings": ["Configurações de GeoJson"], + "Point Radius Scale": ["Escala do Raio do ponto"], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "O GeoJsonLayer recebe dados formatados em GeoJSON e apresenta-os como polígonos, linhas e pontos interativos (círculos, ícones e/ou textos)." ], - "List of values to mark with lines": [ - "Lista de valores a marcar com linhas" + "deck.gl Geojson": ["deck.gl Geojson"], + "Longitude and Latitude": ["Longitude e Latitude"], + "Height": ["Altura"], + "Metric used to control height": [ + "Métrica utilizada para controlar a altura" ], - "List of values to mark with triangles": [ - "Lista de valores para marcar com triângulos" + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D na visualização em grade." ], - "List updated": ["Lista atualizada"], - "Live CSS editor": ["Editor de CSS em tempo real"], - "Live render": ["Renderização em tempo real"], - "Load a CSS template": ["Carregar um modelo CSS"], - "Loaded data cached": ["Dados carregados em cache"], - "Loaded from cache": ["Carregado da cache"], - "Loading": ["Carregando"], - "Loading...": ["Carregando..."], - "Locate the chart": ["Localize o gráfico"], - "Log Scale": ["Escala Log"], - "Log retention": ["Retenção de log"], - "Logarithmic axis": ["Eixo Logarítmico"], - "Logarithmic scale on primary y-axis": [ - "Escala logarítmica no eixo y primário" + "deck.gl Grid": ["deck.gl Grid"], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "Logarithmic scale on secondary y-axis": [ - "Escala logarítmica no eixo y secundário" + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": ["Função de agregação dinâmica"], + "variance": ["variação"], + "deviation": ["desvio"], + "p1": ["p1"], + "p5": ["p5"], + "p95": ["p95"], + "p99": ["p99"], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite de cada célula." ], - "Logarithmic y-axis": ["Eixo y logarítmico"], - "Login": ["Entrar"], - "Login with": ["Fazer login com"], - "Logout": ["Sair"], - "Logs": ["Logs"], - "Long dashed": ["Traço longo"], - "Longitude": ["Longitude"], - "Longitude & Latitude": ["Longitude e Latitude"], - "Longitude & Latitude columns": ["Colunas de latitude e longitude"], - "Longitude and Latitude": ["Longitude e Latitude"], - "Longitude of default viewport": ["Longitude da viewport padrão"], - "MAR": ["MAR"], - "MAY": ["MAIO"], - "MON": ["SEG"], - "Main Datetime Column": ["Coluna principal de data e hora"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ - "Certifique-se de que os controles estão corretamente configurados e que a fonte de dados contém dados para o intervalo de tempo selecionado" + "deck.gl 3D Hexagon": ["deck.gl Hexágono 3D"], + "Polyline": ["Polilinha"], + "Visualizes connected points, which form a path, on a map.": [ + "Visualiza pontos conectados, que formam um caminho, em um mapa." ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Pedido malformado. Os argumentos slice_id ou table_name e db_name são esperados" + "deck.gl Path": ["deck.gl Path"], + "Polygon Column": ["Coluna de polígono"], + "Polygon Encoding": ["Codificação de polígonos"], + "Elevation": ["Elevação"], + "Polygon Settings": ["Configurações de polígono"], + "Opacity, expects values between 0 and 100": [ + "Opacidade, espera valores entre 0 e 100" ], - "Manage": ["Gerenciar"], - "Manage email report": ["Gerenciar relatório de e-mail"], - "Manage your databases": ["Gerenciar seus bancos de dados"], - "Mandatory": ["Obrigatório"], - "Manually set min/max values for the y-axis.": [ - "Definir manualmente os valores mínimo/máximo para o eixo y." + "Number of buckets to group data": [ + "Número de compartimentos para agrupar dados" ], - "Map": ["Mapa"], - "Map Style": ["Estilo do mapa"], - "MapBox": ["MapBox"], - "Mapbox": ["MapBox"], - "March": ["Março"], - "Margin": ["Margem"], - "Mark a column as temporal in \"Edit datasource\" modal": [ - "Marcar uma coluna como temporal no modal \"Edit datasource\"" + "How many buckets should the data be grouped in.": [ + "Em quantos compartimentos devem ser agrupados os dados." + ], + "Bucket break points": ["Pontos de quebra de balde"], + "List of n+1 values for bucketing metric into n buckets.": [ + "Lista de n+1 valores para a métrica de agrupamento em n agrupamentos." + ], + "Emit Filter Events": ["Emitir eventos de filtro"], + "Whether to apply filter when items are clicked": [ + "Se o filtro deve ser aplicado quando os itens são clicados" + ], + "Multiple filtering": ["Filtragem múltipla"], + "Allow sending multiple polygons as a filter event": [ + "Permitir o envio de vários polígonos como um evento de filtro" + ], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Visualiza áreas geográficas de seus dados como polígonos em um mapa renderizado do Mapbox. Os polígonos podem ser coloridos usando uma métrica." + ], + "deck.gl Polygon": ["deck.gl Polígono"], + "Category": ["Categoria"], + "Point Size": ["Tamanho do ponto"], + "Point Unit": ["Unidade de ponto"], + "Square meters": ["Metros quadrados"], + "Square kilometers": ["Quilômetros quadrados"], + "Square miles": ["Milhas quadradas"], + "Radius in meters": ["Raio em metros"], + "Radius in kilometers": ["Raio em quilômetros"], + "Radius in miles": ["Raio em milhas"], + "Minimum Radius": ["Raio Mínimo"], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Tamanho mínimo do raio do círculo, em pixels. À medida que o nível de zoom muda, isto assegura que o círculo respeita este raio mínimo." ], - "Marker": ["Marcador"], - "Marker Size": ["Tamanho do marcador"], - "Marker labels": ["Rótulos de marcadores"], - "Marker line labels": ["Rótulos de linhas de marcação"], - "Marker lines": ["Linhas de marcação"], - "Marker size": ["Tamanho do marcador"], - "Markers": ["Marcadores"], - "Markup type": ["Tipo de marcação"], - "Max": ["Máx"], - "Max Bubble Size": ["Tamanho máximo da bolha"], - "Max Events": ["Max Eventos"], - "Maximum": ["Máximo"], - "Maximum Font Size": ["Tamanho Máximo da Fonte"], "Maximum Radius": ["Raio Máximo"], "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "Tamanho máximo do raio do círculo, em pixels. À medida que o nível de zoom muda, isto assegura que o círculo respeite este raio máximo." ], - "Maximum value": ["Valor máximo"], - "Maximum value on the gauge axis": ["Valor máximo no eixo do medidor"], - "May": ["Maio"], - "Mean of values over specified period": [ - "Média dos valores durante o período especificado" + "Point Color": ["Cor do ponto"], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Um mapa que mostra círculos de renderização com um raio variável em coordenadas de latitude/longitude" ], - "Mean values": ["Valores médios"], - "Median": ["Mediana"], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ - "Largura mediana da aresta, a aresta mais grossa será 4 vezes mais grossa do que a mais fina." + "deck.gl Scatterplot": ["deck.gl Gráfico de dispersão"], + "Grid": ["Grade"], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Agrega dados dentro dos limites das células do grid e mapeia os valores agregados para uma escala de cores dinâmica" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ - "Tamanho médio do nó, o nó maior será 4 vezes maior do que o mais pequeno" + "deck.gl Screen Grid": ["deck.gl Grade de tela"], + "For more information about objects are in context in the scope of this function, refer to the": [ + "Para mais informações sobre os objetos que estão no contexto do escopo dessa função, consulte para o" ], - "Median values": ["Valores médios"], - "Medium": ["Médio"], - "Menu actions trigger": ["Acionador de ações do menu"], - "Message content": ["Conteúdo da Mensagem"], - "Metadata": ["Metadados"], - "Metadata Parameters": ["Parâmetros de metadados"], - "Metadata has been synced": ["Os metadados foram sincronizados"], - "Method": ["Método"], - "Metric": ["Métrica"], - "Metric '%(metric)s' does not exist": ["Métrica '%(métric)s' não existe"], - "Metric ascending": ["Métrica crescente"], - "Metric assigned to the [X] axis": ["Métrica atribuída para o eixo [X]"], - "Metric assigned to the [Y] axis": ["Métrica atribuída para o eixo [Y]"], - "Metric change in value from `since` to `until`": [ - "Alteração do valor da métrica de `desde` a `até`" + "This functionality is disabled in your environment for security reasons.": [ + "Essa funcionalidade está desativada em seu ambiente por motivos de segurança." ], - "Metric descending": ["Métrica decrescente"], - "Metric factor change from `since` to `until`": [ - "Alteração do fator métrico de `since` para `until`" + "Ignore null locations": ["Ignorar localizações nulas"], + "Whether to ignore locations that are null": [ + "Se devem ser ignorados os locais que são nulos" ], - "Metric for node values": ["Métrica para valores de nó"], - "Metric name": ["Nome da métrica"], - "Metric name [%s] is duplicated": ["Métrica nome [%s] está duplicada"], - "Metric percent change in value from `since` to `until`": [ - "Métrica de variação percentual do valor de `desde` até `até`" + "Auto Zoom": ["Zoom automático"], + "When checked, the map will zoom to your data after each query": [ + "Quando marcada, o mapa será ampliado para seus dados após cada consulta" ], - "Metric that defines the size of the bubble": [ - "Métrica que define o tamanho da bolha" + "Select a dimension": ["Selecione uma dimensão"], + "Extra data for JS": ["Dados extras para JS"], + "List of extra columns made available in JavaScript functions": [ + "Lista de colunas extra disponibilizadas em funções JavaScript" ], - "Metric to display bottom title": [ - "Métrica para exibir o título inferior" + "JavaScript data interceptor": ["Interceptador de dados JavaScript"], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Defina uma função javascript que receba a matriz de dados utilizada na visualização e que deva devolver uma versão modificada dessa matriz. Esta pode ser utilizada para alterar as propriedades dos dados, filtrar ou enriquecer a matriz." ], - "Metric to sort the results by": [ - "Métrica para organizar o resultados por" + "JavaScript tooltip generator": [ + "Gerador de dicas de ferramentas JavaScript" ], - "Metric used as a weight for the grid's coloring": [ - "Métrica usada como peso para coloração de grid" + "Define a function that receives the input and outputs the content for a tooltip": [ + "Definir uma função que receba a entrada e produza o conteúdo de uma dica de ferramenta" ], - "Metric used to calculate bubble size": [ - "Métrica utilizada para calcular o tamanho da bolha" + "JavaScript onClick href": ["JavaScript onClick href"], + "Define a function that returns a URL to navigate to when user clicks": [ + "Definir uma função que devolve um URL para onde navegar quando o usuário clicar" ], - "Metric used to control height": [ - "Métrica utilizada para controlar a altura" + "Legend Format": ["Formato de legenda"], + "Choose the format for legend values": [ + "Escolha o formato dos valores de legenda" ], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Métrica utilizada para definir a forma como as séries de topo são ordenadas se estiver presente um limite de série ou de célula. Se não for definida, reverte para a primeira métrica (quando apropriado)." + "Legend Position": ["Posição da legenda"], + "Choose the position of the legend": [ + "Choose the position of the legend" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Métrica utilizada para definir a forma como as séries de topo são ordenadas se estiver presente um limite de série ou de linha. Se não for definida, reverte para a primeira métrica (quando apropriado)." + "Top left": ["Superior esquerdo"], + "Top right": ["Superior direito"], + "Bottom left": ["Parte inferior esquerda"], + "Bottom right": ["Parte inferior direita"], + "Lines column": ["Coluna de linhas"], + "The database columns that contains lines information": [ + "As colunas do banco de dados que contêm informações sobre as linhas" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Métrica utilizada para ordenar o limite se estiver presente um limite de série. Se não for definida, reverte para a primeira métrica (quando apropriado)." + "Line width": ["Largura da linha"], + "The width of the lines": ["A largura das linhas"], + "Fill Color": ["Cor de preenchimento"], + "Stroke Color": ["Cor do traço"], + "Filled": ["Preenchido"], + "Whether to fill the objects": ["Se os objetos devem ser preenchidos"], + "Stroked": ["Tracejado"], + "Whether to display the stroke": ["Se o traço deve ser exibido"], + "Extruded": ["Extrudados"], + "Whether to make the grid 3D": ["Se a grade deve ser 3D"], + "Grid Size": ["Tamanho da grade"], + "Defines the grid size in pixels": ["Define o tamanho do grid em pixels"], + "Parameters related to the view and perspective on the map": [ + "Parâmetros relacionados com a visão e a perspectiva no mapa" ], - "Metrics": ["Métricas"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ - "Métricas para as quais a porcentagem do total deve ser exibida. Calculado apenas com base nos dados dentro do limite de linhas." + "Longitude & Latitude": ["Longitude e Latitude"], + "Fixed point radius": ["Raio do ponto fixo"], + "Multiplier": ["Multiplicador"], + "Factor to multiply the metric by": [ + "Fator para multiplicar a métrica por" ], - "Middle": ["Médio"], - "Midnight": ["Meia-noite"], - "Miles": ["Milhas"], - "Min": ["Min"], - "Min Periods": ["Períodos mínimos"], - "Min Width": ["Largura mínima"], - "Min periods": ["Períodos mínimos"], - "Min/max (no outliers)": ["Mín/máx (sem outliers)"], - "Mine": ["Meu"], - "Minimum": ["Mínimo"], - "Minimum Font Size": ["Tamanho Mínimo da Fonte"], - "Minimum Radius": ["Raio Mínimo"], - "Minimum leaf node event count": [ - "Contagem mínima de eventos de nó folha" + "Lines encoding": ["Codificação de linhas"], + "The encoding format of the lines": ["The encoding format of the lines"], + "geohash (square)": ["geohash (quadrado)"], + "Reverse Lat & Long": ["Lat. e Long. invertidos"], + "GeoJson Column": ["Coluna GeoJson"], + "Select the geojson column": ["Selecione a coluna geojson"], + "Right Axis Format": ["Formato do eixo direito"], + "Show Markers": ["Mostrar Marcadores"], + "Show data points as circle markers on the lines": [ + "Mostrar pontos de dados como marcadores de círculos nas linhas" ], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ - "Tamanho mínimo do raio do círculo, em pixels. À medida que o nível de zoom muda, isto assegura que o círculo respeita este raio mínimo." + "Y bounds": ["Limites Y"], + "Whether to display the min and max values of the Y-axis": [ + "Se devem ser exibidos os valores mínimo e máximo do eixo Y" ], - "Minimum threshold in percentage points for showing labels.": [ - "Limiar mínimo em pontos percentuais para mostrar as etiquetas." + "Y 2 bounds": ["Y 2 limites"], + "Line Style": ["Estilo da linha"], + "linear": ["linear"], + "basis": ["base"], + "cardinal": ["cardeal"], + "monotone": ["monótono"], + "step-before": ["passo-anteerior"], + "step-after": ["etapa seguinte"], + "Line interpolation as defined by d3.js": [ + "Linha interpolação conforme definido por d3.js" ], - "Minimum value": ["Valor mínimo"], - "Minimum value for label to be displayed on graph.": [ - "Valor mínimo para o rótulo a apresentar no gráfico." + "Show Range Filter": ["Mostrar filtro de intervalo"], + "Whether to display the time range interactive selector": [ + "Se deve ser exibido o seletor interativo de intervalo de tempo" ], - "Minimum value on the gauge axis": ["Valor mínimo no eixo do medidor"], - "Minor Split Line": ["Linha de divisão menor"], - "Minute": ["Minuto"], - "Minutes %s": ["Minutos %s"], - "Missing URL parameters": ["Parâmetros de URL ausentes"], - "Missing dataset": ["Conjunto de dados ausentes"], - "Mixed Chart": ["Gráfico misto"], - "Mixed Time-Series": ["Séries Temporais Mistas"], - "Modified": ["Modificado"], - "Modified %s": ["Modificado %s"], - "Modified by": ["Modificado por"], - "Modified columns: %s": ["Colunas modificadas: %s"], - "Monday": ["Segunda-feira"], - "Month": ["Mês"], - "Months %s": ["Meses %s"], - "More": ["Mais informações"], - "More filters": ["Mais filtros"], - "Move only": ["Mover apenas"], - "Moves the given set of dates by a specified interval.": [ - "Move o conjunto de datas dado por um intervalo especificado." + "Extra Controls": ["Controles extras"], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Se deve ou não mostrar controles extras. Os controles extras incluem coisas como a criação de gráficos mulitBar empilhados ou lado a lado." ], - "Multi-Dimensions": ["Multidimensões"], - "Multi-Layers": ["Múltiplas Camadas"], - "Multi-Levels": ["Multiníveis"], - "Multi-Variables": ["Multi-Variáveis"], - "Multiple": ["Múltiplos"], - "Multiple Line Charts": ["Gráficos de linhas múltiplas"], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "Não são permitidas várias extensões de ficheiros para upload em colunas. Certifique-se de que todos os ficheiros têm a mesma extensão." + "X Tick Layout": ["X Tick Layout"], + "flat": ["plano"], + "staggered": ["escalonado"], + "The way the ticks are laid out on the X-axis": [ + "O modo como os ticks são dispostos no eixo X" ], - "Multiple filtering": ["Filtragem múltipla"], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "São aceitos vários formatos, consulte a biblioteca Python geopy.points para mais detalhes" + "X Axis Format": ["Formato do eixo X"], + "Y Log Scale": ["Escala logarítmica Y"], + "Use a log scale for the Y-axis": [ + "Use uma escala logarítmica para o eixo Y" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "São permitidas seleções múltiplas, caso contrário o filtro limita-se a um único valor" + "Y Axis Bounds": ["Limites do Eixo Y"], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Limites para o eixo Y. Quando deixados em branco, os limites são definidos dinamicamente com base no mínimo/máximo dos dados. Observe que esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a extensão dos dados." ], - "Multiplier": ["Multiplicador"], - "Must be unique": ["Deve ser único"], - "Must choose either a chart or a dashboard": [ - "Deve escolher um gráfico ou um painel" + "Y Axis 2 Bounds": ["Eixo Y 2 Limites"], + "X bounds": ["Limites X"], + "Whether to display the min and max values of the X-axis": [ + "Se devem ser exibidos os valores mínimo e máximo do eixo X" ], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Deve ter uma coluna [Agrupar por] para ter 'count' como [Rótulo]" + "Bar Values": ["Valores de barra"], + "Show the value on top of the bar": [ + "Mostrar o valor na parte superior da barra" ], - "Must have at least one numeric column specified": [ - "Deve ter pelo menos uma coluna numérica especificada" + "Stacked Bars": ["Barras empilhadas"], + "Reduce X ticks": ["Reduzir X ticks"], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o eixo X não transbordará e os rótulos podem estar ausentes. Se falso, será aplicada uma largura mínima às colunas e a largura pode transbordar para um deslocamento horizontal." ], - "Must provide credentials for the SSH Tunnel": [ - "Forneça credenciais para o Túnel SSH" + "You cannot use 45° tick layout along with the time range filter": [ + "Não é possível usar o layout de ticks de 45° junto com o filtro de intervalo de tempo" ], - "Must specify a value for filters with comparison operators": [ - "Deve especificar um valor para filtros com operadores de comparação" + "Stacked Style": ["Estilos empilhados"], + "stack": ["pilha"], + "stream": ["fluxo"], + "expand": ["expandir"], + "Evolution": ["Evolução"], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Um gráfico de séries temporais que visualiza como uma métrica relacionada de vários grupos varia ao longo do tempo. Cada grupo é visualizado usando uma cor diferente." ], - "My beautiful colors": ["As minhas lindas cores"], - "My column": ["Minha coluna"], - "My metric": ["Minha métrica"], - "N/A": ["N/D"], - "NOT GROUPED BY": ["NÃO AGRUPADO POR"], - "NOV": ["NOV"], - "NOW": ["AGORA"], - "NUMERIC": ["NUMÉRICO"], - "Name": ["Nome"], - "Name is required": ["O nome é obrigatório"], - "Name must be unique": ["O nome deve ser único"], - "Name of table to be created from columnar data.": [ - "Nome da tabela a ser criada a partir de dados colunares." + "Stretched style": ["Estilo alongado"], + "Stacked style": ["Estilos empilhados"], + "Video game consoles": ["Consoles de videogame"], + "Vehicle Types": ["Tipos de veículos"], + "Area Chart (legacy)": ["Gráfico de área (legado)"], + "Continuous": ["Contínuo"], + "Line": ["Linha"], + "nvd3": ["nvd3"], + "Deprecated": ["Depreciado"], + "Series Limit Sort By": ["Limite da série Ordenar por"], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Métrica utilizada para ordenar o limite se estiver presente um limite de série. Se não for definida, reverte para a primeira métrica (quando apropriado)." ], - "Name of table to be created from excel data.": [ - "Nome da tabela a ser criada a partir dos dados do Excel." + "Series Limit Sort Descending": ["Limite da série Ordenação decrescente"], + "Whether to sort descending or ascending if a series limit is present": [ + "Se a classificação será decrescente ou crescente se houver um limite de série" ], - "Name of table to be created with CSV file": [ - "Nome da tabela a ser criada com o arquivo CSV" + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Visualize como uma métrica muda ao longo do tempo usando barras. Adicione um grupo por coluna para visualizar métricas de nível de grupo e como elas mudam ao longo do tempo." ], - "Name of the column containing the id of the parent node": [ - "Nome da coluna que contém o id do nó pai" + "Time-series Bar Chart (legacy)": [ + "Gráfico de barras de séries temporais (legado)" ], - "Name of the id column": ["Nome da coluna id"], - "Name of the source nodes": ["Nome dos nós de origem"], - "Name of the table that exists in the source database": [ - "Nome da tabela que existe no banco de dados de origem" + "Bar": ["Barra"], + "Vertical": ["Vertical"], + "Box Plot": ["Gráfico de caixa"], + "X Log Scale": ["Escala X Log"], + "Use a log scale for the X-axis": [ + "Use uma escala logarítmica para eixo X" ], - "Name of the target nodes": ["Nome dos nós de destino"], - "Name your database": ["Nome do seu banco de dados"], - "Need help? Learn how to connect your database": [ - "Precisa de ajuda? Aprenda como conectar seu banco de dados" + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Visualiza uma métrica em três dimensões de dados em um único gráfico (eixo X, eixo Y e tamanho da bolha). As bolhas do mesmo grupo podem ser exibidas usando a cor da bolha." ], - "Need help? Learn more about": ["Precisa de ajuda? Saiba mais sobre"], - "Network error": ["Erro de rede"], - "Network error.": ["Erro de rede."], - "New chart": ["Novo gráfico"], - "New columns added: %s": ["Novas colunas adicionadas: %s"], - "New dataset": ["Novo conjunto de dados"], - "New dataset name": ["Novo nome do conjunto de dados"], - "New filter set": ["Novo conjunto de filtros"], - "New header": ["Novo cabeçalho"], - "New tab": ["Nova aba"], - "New tab (Ctrl + q)": ["Nova guia (Ctrl + q)"], - "New tab (Ctrl + t)": ["Nova guia (Ctrl + t)"], - "Next": ["Próximo"], - "Nightingale Rose Chart": ["Gráfico Nightingale Rose"], - "No": ["Não"], - "No %s yet": ["Sem %s ainda"], - "No Access!": ["Sem acesso!"], - "No Data": ["Sem dados"], - "No Results": ["Sem resultados"], - "No annotation layers": ["Nenhuma camada de anotação"], - "No annotation layers yet": ["Sem camadas de anotação ainda"], - "No annotation yet": ["Sem anotação ainda"], - "No applied filters": ["Nenhum filtro aplicado"], - "No available filters.": ["Não há filtros disponíveis."], - "No charts": ["Sem gráficos"], - "No charts yet": ["Ainda não há gráficos"], - "No columns": ["Sem colunas"], - "No columns found": ["Nenhuma coluna encontrada"], - "No compatible columns found": [ - "Não foram encontradas colunas compatíveis" + "Ranges": ["Faixas"], + "Ranges to highlight with shading": [ + "Intervalos a destacar com sombreamento" ], - "No compatible datasets found": [ - "Não foram encontrados conjuntos de dados compatíveis" + "Range labels": ["Rótulos de intervalo"], + "Labels for the ranges": ["Rótulos para os intervalos"], + "Markers": ["Marcadores"], + "List of values to mark with triangles": [ + "Lista de valores para marcar com triângulos" ], - "No compatible schema found": [ - "Nenhum esquema compatível foi encontrado" + "Marker labels": ["Rótulos de marcadores"], + "Labels for the markers": ["Rótulos para o marcadores"], + "Marker lines": ["Linhas de marcação"], + "List of values to mark with lines": [ + "Lista de valores a marcar com linhas" ], - "No dashboards": ["Sem paineis"], - "No dashboards yet": ["Ainda não há painéis"], - "No data": ["Sem dados"], - "No data after filtering or data is NULL for the latest time record": [ - "Não há dados após a filtragem ou os dados são NULL para o último registo de tempo" + "Marker line labels": ["Rótulos de linhas de marcação"], + "Labels for the marker lines": ["Rótulos para o marcador linhas"], + "KPI": ["KPI"], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Apresenta o progresso de uma única métrica em relação a um determinado objetivo. Quanto mais elevado for o preenchimento, mais próxima está a métrica do objetivo." ], - "No data in file": ["Não há dados no arquivo"], - "No database tables found": [ - "Nenhuma tabela de banco de dados encontrada" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Visualiza muitos objetos de séries temporais diferentes em um único gráfico. Esse gráfico está sendo descontinuado e, em vez dele, recomendamos o uso do gráfico de série temporal." ], - "No databases match your search": [ - "Nenhum banco de dados corresponde a sua pesquisa" + "Time-series Percent Change": ["Variação percentual da série temporal"], + "Sort Bars": ["Barras de classificação"], + "Sort bars by x labels.": ["Ordenar as barras por rótulos x."], + "Breakdowns": ["Desmembramentos"], + "Defines how each series is broken down": [ + "Define como cada série é decomposta" ], - "No description available.": ["Nenhuma descrição disponível."], - "No favorite charts yet, go click on stars!": [ - "Ainda não há gráficos favoritos, clique nas estrelas!" + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Compara métricas de diferentes categorias usando barras. Os comprimentos das barras são utilizados para indicar a magnitude de cada valor e a cor é utilizada para diferenciar os grupos." ], - "No favorite dashboards yet, go click on stars!": [ - "Ainda não há painéis favoritos, clique nas estrelas!" + "Bar Chart (legacy)": ["Gráfico de barras (legado)"], + "Additive": ["Aditivo"], + "Discrete": ["Discreto"], + "Propagate": ["Propagar"], + "Send range filter events to other charts": [ + "Enviar filtro de intervalo eventos para outro gráficos" ], - "No filter": ["Sem filtro"], - "No filter is selected.": ["Nenhum filtro selecionado."], - "No filters": ["Sem filtros"], - "No filters are currently added to this dashboard.": [ - "Nenhum filtro foi adicionado a esse painel no momento." + "Classic chart that visualizes how metrics change over time.": [ + "Gráfico clássico que visualiza como as métricas mudam ao longo do tempo." ], - "No form settings were maintained": [ - "Nenhuma configuração de formulário foi mantida" + "Battery level over time": ["Nível da bateria ao longo do tempo"], + "Line Chart (legacy)": ["Gráfico de linhas (herdado)"], + "Label Type": ["Tipo de rótulo"], + "Category Name": ["Nome da categoria"], + "Value": ["Valor"], + "Percentage": ["Porcentagem"], + "Category and Value": ["Categoria e valor"], + "Category and Percentage": ["Categoria e Porcentagem"], + "Category, Value and Percentage": ["Categoria, Valor e Porcentagem"], + "What should be shown on the label?": ["O que deve constar no rótulo?"], + "Donut": ["Rosquinha"], + "Do you want a donut or a pie?": ["Você quer um donut ou uma torta?"], + "Show Labels": ["Mostrar rótulos"], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Se deseja exibir os rótulos. Observe que o rótulo só é exibido quando o limite é de 5%." ], - "No global filters are currently added": [ - "Nenhum filtro global está atualmente adicionado" + "Put labels outside": ["Colocar rótulos no exterior"], + "Put the labels outside the pie?": ["Colocar o rótulos fora a torta?"], + "Frequency": ["Frequência"], + "Year (freq=AS)": ["Ano (freq=AS)"], + "52 weeks starting Monday (freq=52W-MON)": [ + "52 semanas iniciando Segunda-feira (freq=52S-SEG)" ], - "No matching records found": [ - "Não foram encontrados registros correspondentes" + "1 week starting Sunday (freq=W-SUN)": [ + "1 semana com início na Domingo (freq=S-DOM)" ], - "No of Bins": ["Número de lixeiras"], - "No recents yet": ["Ainda não há registros"], - "No records found": ["Não foram encontrados registos"], - "No results": ["Nenhum resultado"], - "No results found": ["Não foram encontrados resultados"], - "No results match your filter criteria": [ - "Nenhum resultado corresponde aos seus critérios de filtragem" + "1 week starting Monday (freq=W-MON)": [ + "1 semana com início na Segunda-feira (freq=S-SEG)" ], - "No results were returned for this query": [ - "Não foram apresentados resultados para esta consulta" + "Day (freq=D)": ["Dia (freq=D)"], + "4 weeks (freq=4W-MON)": ["4 semanas (freq=4S-SEG)"], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem fornecer um alias de deslocamento \"Pandas\".\n Clique no balão de informações para obter mais detalhes sobre as expressões \"freq\" aceitas." ], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ - "Não foram apresentados resultados para esta consulta. Se esperava que fossem devolvidos resultados, certifique-se de que todos os filtros estão corretamente configurados e que a fonte de dados contém dados para o intervalo de tempo selecionado." + "Time-series Period Pivot": ["Pivô de período de série temporal"], + "Formula": ["Fórmula"], + "Event": ["Evento"], + "Interval": ["Intervalo"], + "Stack": ["Pilha"], + "Stream": ["Fluxo"], + "Expand": ["Expandir"], + "Show legend": ["Mostrar legenda"], + "Whether to display a legend for the chart": [ + "Se deve ser exibida uma legenda para o gráfico" ], - "No rows were returned for this dataset": [ - "Não foram devolvidas linhas para este conjunto de dados" + "Margin": ["Margem"], + "Additional padding for legend.": ["Preenchimento adicional da legenda."], + "Scroll": ["Rolagem"], + "Plain": ["Simples"], + "Legend type": ["Tipo de legenda"], + "Orientation": ["Orientação"], + "Bottom": ["Parte inferior"], + "Right": ["Direito"], + "Legend Orientation": ["Orientação de legenda"], + "Show Value": ["Mostrar valor"], + "Show series values on the chart": [ + "Mostrar valores de série sobre o gráfico" ], - "No samples were returned for this dataset": [ - "Não foram devolvidas amostras para este conjunto de dados" + "Stack series on top of each other": [ + "Empilhar séries umas sobre as outras" ], - "No saved expressions found": ["Nenhuma expressão salva foi encontrada"], - "No saved metrics found": ["Nenhuma métrica salva foi encontrada"], - "No saved queries yet": ["Ainda não há consultas salvas"], - "No stored results found, you need to re-run your query": [ - "Não foram encontrados resultados armazenados, é necessário executar novamente a consulta" + "Only Total": ["Apenas Total"], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "Mostrar apenas o valor total no gráfico empilhado, e não mostrar na categoria selecionada" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Não foi encontrada tal coluna. Para filtrar uma métrica, experimente a aba SQL personalizado." + "Percentage threshold": ["Limiar da Porcentagem"], + "Minimum threshold in percentage points for showing labels.": [ + "Limiar mínimo em pontos percentuais para mostrar as etiquetas." ], - "No table columns": ["Nenhuma coluna da tabela"], - "No temporal columns found": ["Não foram encontradas colunas temporais"], - "No time columns": ["Sem colunas de tempo"], - "No validator found (configured for the engine)": [ - "Sem validador encontrado (configurado para o motor)" + "Rich tooltip": ["Dica avançada"], + "Shows a list of all series available at that point in time": [ + "Mostra uma lista de todas as séries disponíveis nesse ponto no tempo" ], - "No validator named {} found (configured for the {} engine)": [ - "Sem validador nomeado {} encontrado (configurado para o motor {})" + "Tooltip time format": ["Formato de hora da dica de ferramenta"], + "Tooltip sort by metric": [ + "Classificação da dica de ferramenta por métrica" ], - "Node label position": ["Posição do rótulo do nó"], - "Node select mode": ["Modo de seleção de nó"], - "Node size": ["Tamanho do nó"], - "None": ["Nenhum"], - "None -> Arrow": ["Nenhum -> Seta"], - "None -> None": ["Nenhum -> Nenhum"], - "Normal": ["Normal"], - "Normalize Across": ["Normalizar em"], - "Normalized": ["Normalizado"], - "Not Time Series": ["Não é uma série temporal"], - "Not added to any dashboard": ["Não adicionado a nenhum painel"], - "Not available": ["Não disponível"], - "Not equal to (≠)": ["Diferente de (≠)"], - "Not in": ["Não está em"], - "Not null": ["Não nulo"], - "Not triggered": ["Não acionado"], - "Not up to date": ["Não atualizado"], - "Nothing triggered": ["Nada foi acionado"], - "Notification method": ["Método de notificação"], - "November": ["Novembro"], - "Now": ["Agora"], - "Null Values": ["Valores nulos"], - "Null imputation": ["Imputação nula"], - "Null or Empty": ["Nulo ou Vazio"], - "Null values": ["Valores nulos"], - "Number Format": ["Formato do número"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ - "Limites numéricos utilizados para a codificação de cores de vermelho para azul.\n Inverta os números de azul para vermelho. Para obter vermelho ou azul puro,\n pode introduzir apenas o mínimo ou o máximo." + "Whether to sort tooltip by the selected metric in descending order.": [ + "Se a dica de ferramenta deve ser classificada pela métrica selecionada em ordem decrescente." ], - "Number format": ["Formato numérico"], - "Number format string": ["String de formato de número"], - "Number of buckets to group data": [ - "Número de compartimentos para agrupar dados" + "Tooltip": ["Dica"], + "Sort Series By": ["Ordenar séries por"], + "Based on what should series be ordered on the chart and legend": [ + "Com base no que as séries devem ser ordenadas no gráfico e na legenda" ], - "Number of decimal digits to round numbers to": [ - "Número de dígitos decimais para arredondar os números" + "Sort Series Ascending": ["Ordenar séries em ordem crescente"], + "Sort series in ascending order": [ + "Ordenar as séries por ordem crescente" ], - "Number of decimal places with which to display lift values": [ - "Número de casas decimais para exibir valores de elevação" + "Rotate x axis label": ["Rodar o rótulo do eixo x"], + "Input field supports custom rotation. e.g. 30 for 30°": [ + "O campo de entrada suporta uma rotação personalizada, por exemplo, 30 para 30°" ], - "Number of decimal places with which to display p-values": [ - "Número de casas decimais para exibir valores-p" + "Series Order": ["Ordem da série"], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [ + "Último valor disponível visto em %s" ], - "Number of periods to compare against": [ - "Número de períodos para comparar com" + "Not up to date": ["Não atualizado"], + "No data": ["Sem dados"], + "No data after filtering or data is NULL for the latest time record": [ + "Não há dados após a filtragem ou os dados são NULL para o último registo de tempo" ], - "Number of periods to ratio against": [ - "Número de períodos para razão contra" + "Try applying different filters or ensuring your datasource has data": [ + "Tente aplicar filtros diferentes ou garantir que sua fonte de dados tenha dados" ], - "Number of rows of file to read": [ - "Número de linhas do arquivo a ser lido" + "Big Number Font Size": ["Tamanho da Fonte do Número Grande"], + "Tiny": ["Minúsculo"], + "Small": ["Pequeno"], + "Normal": ["Normal"], + "Large": ["Grande"], + "Huge": ["Enorme"], + "Subheader Font Size": ["Tamanho da fonte do subtítulo"], + "Display settings": ["Configurações de exibição"], + "Subheader": ["Subtítulo"], + "Description text that shows up below your Big Number": [ + "Texto descritivo que aparece abaixo do seu Número Grande" ], - "Number of rows of file to read.": [ - "Número de linhas do arquivo a ser lido." + "Date format": ["Formato da data"], + "Force date format": ["Forçar o formato da data"], + "Use date formatting even when metric value is not a timestamp": [ + "Usar formatação de data mesmo quando o valor da métrica não for um carimbo de data/hora" ], - "Number of rows to skip at start of file": [ - "Número de linhas a serem ignoradas no início do arquivo" + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Apresenta uma única métrica em primeiro plano. Um número grande é melhor utilizado para chamar a atenção para um KPI ou para aquilo em que pretende que o seu público se concentre." ], - "Number of rows to skip at start of file.": [ - "Número de linhas para pular no início do arquivo." + "A Big Number": ["Um grande número"], + "With a subheader": ["Com um subtítulo"], + "Big Number": ["Número grande"], + "Comparison Period Lag": ["Lag do Período de comparação"], + "Based on granularity, number of time periods to compare against": [ + "Com base na granularidade, número de períodos de tempo para comparação" ], - "Number of split segments on the axis": [ - "Número de segmentos divididos no eixo" + "Comparison suffix": ["Sufixo de comparação"], + "Suffix to apply after the percentage display": [ + "Sufixo para aplicar após a apresentação da percentagem" ], - "Number of steps to take between ticks when displaying the X scale": [ - "Número de passos a dar entre os tiques ao apresentar a escala X" + "Show Timestamp": ["Mostrar Carimbo de data/hora"], + "Whether to display the timestamp": [ + "Se deve ser exibido o registro de data e hora" ], - "Number of steps to take between ticks when displaying the Y scale": [ - "Número de passos a dar entre os tiques ao apresentar a escala Y" + "Show Trend Line": ["Mostrar Linha de Tendência"], + "Whether to display the trend line": [ + "Se a linha de tendência deve ser exibida" ], - "Numerical range": ["Faixa numérica"], - "OCT": ["OUT"], - "OK": ["OK"], - "OVERWRITE": ["SOBRESCREVER"], - "October": ["Outubro"], - "Offline": ["Offline"], - "Offset": ["Deslocamento"], - "On Grace": ["Na Graça"], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "Uma ou várias colunas para agrupar. Os agrupamentos de elevada cardinalidade devem incluir um limite de séries para limitar o número de séries obtidas e processadas." + "Start y-axis at 0": ["Iniciar o eixo y em 0"], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Iniciar o eixo y em zero. Desmarque para iniciar o eixo y no valor mínimo dos dados." ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ - "Uma ou várias colunas para agrupar. Os agrupamentos de elevada cardinalidade devem incluir uma ordenação por métrica e um limite de séries para limitar o número de séries obtidas e processadas." + "Fix to selected Time Range": [ + "Corrigir para o intervalo de tempo selecionado" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ - "Um ou vários controles para agrupar. Em caso de agrupamento, as colunas de latitude e longitude devem estar presentes." + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Corrigir a linha de tendência para o intervalo de tempo completo especificado no caso dos resultados filtrados não incluírem as datas de início ou fim" ], - "One or many controls to pivot as columns": [ - "Um ou mais controles a dinamizar como colunas" + "TEMPORAL X-AXIS": ["EIXO X TEMPORAL"], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Apresenta um único número acompanhado por um gráfico de linhas simples, para chamar a atenção para uma métrica importante juntamente com a sua alteração ao longo do tempo ou outra dimensão." ], - "One or many metrics to display": ["Uma ou muitos métricas para exibir"], - "One or more columns already exist": ["Uma ou mais colunas já existem"], - "One or more columns are duplicated": [ - "Uma ou mais colunas estão duplicadas" + "Big Number with Trendline": ["Número grande com Trendline"], + "Whisker/outlier options": ["Opções de Whisker/outlier"], + "Determines how whiskers and outliers are calculated.": [ + "Determina como whiskers e outliers são calculados." ], - "One or more columns do not exist": ["Um ou mais colunas não existem"], - "One or more metrics already exist": ["Uma ou mais métricas já existem"], - "One or more metrics are duplicated": [ - "Um ou mais métricas estão duplicadas" + "Tukey": ["Tukey (inglês)"], + "Min/max (no outliers)": ["Mín/máx (sem outliers)"], + "2/98 percentiles": ["2/98 percentis"], + "9/91 percentiles": ["9/91 percentis"], + "Categories to group by on the x-axis.": [ + "Categorias para grupo por sobre o eixo x." ], - "One or more metrics do not exist": ["Um ou mais métricas não existem"], - "One or more parameters needed to configure a database are missing.": [ - "Um ou mais parâmetros necessários para configurar um banco de dados estão faltando." + "Distribute across": ["Distribuir em"], + "Columns to calculate distribution across.": [ + "Colunas para calcular a distribuição entre." ], - "One or more parameters specified in the query are malformatted.": [ - "Um ou mais parâmetros especificados na consulta estão malformatados." + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Também conhecida como gráfico de caixa e bigode, esta visualização compara as distribuições de uma métrica relacionada em vários grupos. A caixa no meio enfatiza a média, a mediana e os dois quartis internos. Os bigodes em torno de cada caixa visualizam o mínimo, o máximo, o intervalo e os dois quartis externos." ], - "One or more parameters specified in the query are missing.": [ - "Um ou mais parâmetros especificados na consulta estão faltando." + "ECharts": ["ECharts"], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ + "" ], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ - "Um ou mais campos obrigatórios estão em falta no pedido. Tente novamente e, se o problema persistir, contate o seu administrador." + "X AXIS TITLE MARGIN": [""], + "Y AXIS TITLE MARGIN": ["MARGEM DO TÍTULO DO EIXO Y"], + "Logarithmic y-axis": ["Eixo y logarítmico"], + "Truncate Y Axis": ["Truncar Eixo Y"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Truncar Eixo Y. Pode ser substituído pela especificação de um limite mínimo ou máximo." ], - "One ore more annotation layers failed loading.": [ - "Falha no carregamento de uma ou mais camadas de anotação." + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "" ], - "Only SELECT statements are allowed against this database.": [ - "Somente comandos SELECT são permitidos nesse banco de dados." + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Labels": ["Rótulos"], + "Whether to display the labels.": ["Se os rótulos devem ser exibidos."], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Mostra como uma métrica muda à medida que o funil progride. Este gráfico clássico é útil para visualizar a queda entre as fases de um pipeline ou ciclo de vida." ], - "Only Total": ["Apenas Total"], - "Only `SELECT` statements are allowed": [ - "Apenas instruções `SELECT` são permitidas" + "Funnel Chart": ["Gráfico de funil"], + "Sequential": ["Sequencial"], + "Columns to group by": ["Colunas para agrupar por"], + "General": ["Em geral"], + "Min": ["Min"], + "Minimum value on the gauge axis": ["Valor mínimo no eixo do medidor"], + "Max": ["Máx"], + "Maximum value on the gauge axis": ["Valor máximo no eixo do medidor"], + "Start angle": ["Ângulo inicial"], + "Angle at which to start progress axis": [ + "Ângulo em que inicia o eixo de progressão" ], - "Only selected panels will be affected by this filter": [ - "Apenas os painéis selecionados serão afetados por este filtro" + "End angle": ["Ângulo final"], + "Angle at which to end progress axis": [ + "Ângulo em que termina o eixo de progressão" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "Mostrar apenas o valor total no gráfico empilhado, e não mostrar na categoria selecionada" + "Font size": ["Tamanho da Fonte"], + "Font size for axis labels, detail value and other text elements": [ + "Tamanho da Fonte para rótulos de eixo, detalhes de valor e outros elementos de texto" ], - "Only single queries supported": ["Só são suportadas consultas únicas"], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Só as seguintes extensões de arquivo são permitidas: %(allowed_extensions)s" + "Value format": ["Formato do valor"], + "Additional text to add before or after the value, e.g. unit": [ + "Texto adicional para adicionar antes ou depois o valor, por exemplo, unidade" ], - "Oops! An error occurred!": ["Ops! Ocorreu um erro!"], - "Opacity": ["Opacidade"], - "Opacity of Area Chart. Also applies to confidence band.": [ - "Opacidade do gráfico de áreas. Também se aplica à banda de confiança." + "Show pointer": ["Mostrar ponteiro"], + "Whether to show the pointer": ["Se o ponteiro deve ser exibido"], + "Animation": ["Animação"], + "Whether to animate the progress and the value or just display them": [ + "Se deseja animar o progresso e o valor ou apenas exibi-los" ], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [ - "Opacidade de todos os clusters, pontos e rótulos. Entre 0 e 1." + "Axis": ["Eixo"], + "Show axis line ticks": ["Mostrar os tiques das linhas de eixo"], + "Whether to show minor ticks on the axis": [ + "Se devem ser mostrados ticks menores no eixo" ], - "Opacity of area chart.": ["Opacidade do gráfico de área."], - "Opacity, expects values between 0 and 100": [ - "Opacidade, espera valores entre 0 e 100" + "Show split lines": ["Mostrar linhas divididas"], + "Whether to show the split lines on the axis": [ + "Se devem ser mostradas as linhas divididas no eixo" ], - "Open Datasource tab": ["Abrir aba fonte de dados"], - "Open in SQL Lab": ["Abrir no SQL Lab"], - "Open query in SQL Lab": ["Abrir consulta no SQL Lab"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "Operar o banco de dados em modo assíncrono, o que significa que as consultas são executadas em workers remotos e não no próprio servidor Web. Isso pressupõe que você tenha uma configuração do Celery worker, bem como um backend de resultados. Consulte os documentos de instalação para obter mais informações." - ], - "Operator": ["Operador"], - "Operator undefined for aggregator: %(name)s": [ - "Operador indefinido para o agregador: %(name)s" + "Split number": ["Número de divisão"], + "Number of split segments on the axis": [ + "Número de segmentos divididos no eixo" ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Conteúdo CA_BUNDLE opcional para validar pedidos HTTPS. Apenas disponível em determinados motores de banco de dados." + "Progress": ["Progresso"], + "Show progress": ["Mostrar progresso"], + "Whether to show the progress of gauge chart": [ + "Se deve mostrar o progresso do gráfico do medidor" ], - "Optional d3 date format string": [ - "Cadeia de caracteres opcional de formato de data d3" + "Overlap": ["Sobreposição"], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "Se a barra de progresso se sobrepõe quando há vários grupos de dados" ], - "Optional d3 number format string": [ - "String opcional de formato de número d3" + "Round cap": ["Tampa circular"], + "Style the ends of the progress bar with a round cap": [ + "Estilizar as extremidades da barra de progresso com uma tampa redonda" ], - "Optional name of the data column.": [ - "Nome opcional da coluna de dados." + "Intervals": ["Intervalos"], + "Interval bounds": ["Limites de intervalo"], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Limites de intervalos separados por vírgulas, por exemplo, 2,4,5 para intervalos 0-2, 2-4 e 4-5. O último número deve corresponder ao valor fornecido para MAX." ], - "Optional warning about use of this metric": [ - "Aviso opcional sobre o uso dessa métrica" + "Interval colors": ["Cores do intervalo"], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Escolhas de cores separadas por vírgulas para os intervalos, por exemplo, 1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e são indexados a 1. O comprimento deve corresponder ao dos limites do intervalo." ], - "Options": ["Opções"], - "Or choose from a list of other databases we support:": [ - "Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Usa um medidor para mostrar o progresso de uma métrica em direção a uma meta. A posição do mostrador representa o progresso e o valor do terminal no medidor representa o valor-alvo." ], - "Order by entity id": ["Pedido por id da entidade"], - "Order results by selected columns": [ - "Ordenar resultados por colunas selecionadas" + "Gauge Chart": ["Gráfico de medidores"], + "Name of the source nodes": ["Nome dos nós de origem"], + "Name of the target nodes": ["Nome dos nós de destino"], + "Source category": ["Categoria de origem"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "A categoria dos nós de origem utilizada para atribuir cores. Se um nó estiver associado a mais do que uma categoria, apenas a primeira será utilizada." ], - "Ordering": ["Pedidos"], - "Orientation": ["Orientação"], - "Orientation of bar chart": ["Orientação do gráfico de barras"], - "Orientation of filter bar": ["Orientação de barra de filtro"], - "Orientation of tree": ["Orientação da árvore"], - "Original": ["Original"], - "Original table column order": ["Ordem das colunas da tabela original"], - "Original value": ["Valor original"], - "Orthogonal": ["Ortogonal"], - "Other": ["Outro"], - "Outdoors": ["Ao ar livre"], - "Outer Radius": ["Raio Exterior"], - "Outer edge of Pie chart": ["Borda externa do gráfico de pizza"], - "Overlap": ["Sobreposição"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Sobrepor um ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativo em linguagem natural (exemplo: 24 horas, 7 dias , 52 semanas , 365 dias). Livre texto é suportado." + "Target category": ["Categoria de destino"], + "Category of target nodes": ["Categoria dos nós de destino"], + "Chart options": ["Opções do gráfico"], + "Layout": ["Layout"], + "Graph layout": ["Layout do gráfico"], + "Force": ["Forçar"], + "Layout type of graph": ["Tipo de layout de gráfico"], + "Edge symbols": ["Símbolos de borda"], + "Symbol of two ends of edge line": [ + "Símbolo de duas extremidades da linha de borda" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Sobrepor uma ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas, 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." + "None -> None": ["Nenhum -> Nenhum"], + "None -> Arrow": ["Nenhum -> Seta"], + "Circle -> Arrow": ["Círculo -> Seta"], + "Circle -> Circle": ["Círculo -> Círculo"], + "Enable node dragging": ["Ativar arrastar nó"], + "Whether to enable node dragging in force layout mode.": [ + "Se deve permitir o arrastamento de nós no modo de layout forçado." ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ - "Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite de cada célula." + "Enable graph roaming": ["Habilitar gráfico de roaming"], + "Disabled": ["Desativado"], + "Scale only": ["Dimensionar apenas"], + "Move only": ["Mover apenas"], + "Scale and Move": ["Dimensionar e deslocar"], + "Whether to enable changing graph position and scaling.": [ + "Se deve permitir a alteração da posição e da escala do gráfico." ], - "Override time range": ["Intervalo de tempo de substituição"], - "Overwrite": ["Sobrescrever"], - "Overwrite & Explore": ["Sobrescrever & Explorar"], - "Overwrite Dashboard [%s]": ["Substituir o Painel [%s]"], - "Overwrite Duplicate Columns": ["Substituir colunas duplicadas"], - "Overwrite existing": ["Sobrescrever existente"], - "Overwrite text in the editor with a query on this table": [ - "Substituir o texto no editor por uma consulta nesta tabela" + "Node select mode": ["Modo de seleção de nó"], + "Single": ["Individual"], + "Multiple": ["Múltiplos"], + "Allow node selections": ["Permitir seleções de nós"], + "Label threshold": ["Rótulo limite"], + "Minimum value for label to be displayed on graph.": [ + "Valor mínimo para o rótulo a apresentar no gráfico." ], - "Owned Created or Favored": ["Próprio Criado ou Favorecido"], - "Owner": ["Proprietário"], - "Owners": ["Proprietários"], - "Owners are invalid": ["Proprietários são inválidos"], - "Owners is a list of users who can alter the dashboard.": [ - "Os proprietários são uma lista de usuários que podem alterar o painel." + "Node size": ["Tamanho do nó"], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "Tamanho médio do nó, o nó maior será 4 vezes maior do que o mais pequeno" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Os proprietários são uma lista de usuários que podem alterar o painel. Pesquisável por nome ou nome de usuário." + "Edge width": ["Largura da borda"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Largura mediana da aresta, a aresta mais grossa será 4 vezes mais grossa do que a mais fina." ], - "Page length": ["Comprimento da página"], - "Paired t-test Table": ["Tabela teste-t pareado"], - "Pandas resample method": ["Métodos de reamostragem do Pandas"], - "Pandas resample rule": ["Regra de reamostragem do Pandas"], - "Parallel Coordinates": ["Coordenadas paralelas"], - "Parameter error": ["Erro de parâmetro"], - "Parameters": ["Parâmetros"], - "Parameters related to the view and perspective on the map": [ - "Parâmetros relacionados com a visão e a perspectiva no mapa" + "Edge length": ["Comprimento da borda"], + "Edge length between nodes": ["Comprimento da borda entre nós"], + "Gravity": ["Gravidade"], + "Strength to pull the graph toward center": [ + "Força para puxar o gráfico para o centro" ], - "Parent": ["Pai"], - "Parse Dates": ["Analisar datas"], - "Part of a Whole": ["Parte de um Todo"], - "Partition Chart": ["Gráfico de partição"], - "Partition Diagram": ["Diagrama de partição"], - "Partition Limit": ["Limite de partição"], - "Partition Threshold": ["Limiar de partição"], - "Partitions whose height to parent height proportions are below this value are pruned": [ - "As partições cujas proporções entre a altura e a altura dos pais sejam inferiores a este valor são eliminadas" + "Repulsion": ["Repulsão"], + "Repulsion strength between nodes": ["Força de repulsão entre nós"], + "Friction": ["Atrito"], + "Friction between nodes": ["Atrito entre nós"], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Apresenta ligações entre entidades numa estrutura gráfica. Útil para mapear relações e mostrar quais os nós que são importantes numa rede. Os gráficos podem ser configurados para serem dirigidos à força ou circularem. Se os seus dados tiverem um componente geoespacial, experimente o gráfico de arco deck.gl." ], - "Password": ["Senha"], - "Paste Private Key here": ["Cole a chave privada aqui"], - "Paste content of service credentials JSON file here": [ - "Colar aqui o conteúdo do arquivo JSON das credenciais de serviço" + "Graph Chart": ["Gráfico"], + "Structural": ["Estrutural"], + "Whether to sort descending or ascending": [ + "Se a classificação deve ser descendente ou ascendente" ], - "Paste the shareable Google Sheet URL here": [ - "Colar o URL compartilhável da Planilha Google aqui" + "Series type": ["Tipo de série"], + "Smooth Line": ["Linha Suave"], + "Step - start": ["Passo - início"], + "Step - middle": ["Passo - meio"], + "Step - end": ["Etapa - fim"], + "Series chart type (line, bar etc)": [ + "Tipo de Gráfico de série (linha , barra etc)" ], - "Pattern": ["Padrão"], - "Percent Change": ["Variação percentual"], - "Percentage": ["Porcentagem"], - "Percentage change": ["Variação percentual"], - "Percentage metrics": ["Métricas de porcentagem"], - "Percentage threshold": ["Limiar da Porcentagem"], - "Percentages": ["Porcentagens"], - "Performance": ["Desempenho"], - "Period average": ["Média do período"], - "Periods": ["Períodos"], - "Periods must be a whole number": [ - "Os períodos devem ser um número inteiro" + "Stack series": ["Empilhar série"], + "Area chart": ["Gráfico de área"], + "Draw area under curves. Only applicable for line types.": [ + "Desenhar área sob curvas. Aplicável apenas para tipos de linha." ], - "Person or group that has certified this chart.": [ - "Pessoa ou grupo que certificou este gráfico." + "Opacity of area chart.": ["Opacidade do gráfico de área."], + "Marker": ["Marcador"], + "Draw a marker on data points. Only applicable for line types.": [ + "Desenha um marcador nos pontos de dados. Apenas aplicável a tipos de linha." ], - "Person or group that has certified this dashboard.": [ - "Pessoa ou grupo que certificou esse painel." + "Marker size": ["Tamanho do marcador"], + "Size of marker. Also applies to forecast observations.": [ + "Tamanho do marcador. Também se aplica às observações de previsão." ], - "Person or group that has certified this metric": [ - "Pessoa ou grupo que certificou esta métrica" + "Primary": ["Primário"], + "Secondary": ["Secundário"], + "Primary or secondary y-axis": ["Eixo y primário ou secundário"], + "Query A": ["Consulta A"], + "Advanced analytics Query A": ["Análise avançada Consulta A"], + "Query B": ["Consulta B"], + "Advanced analytics Query B": ["Análise avançada Consulta B"], + "Data Zoom": ["Zoom de dados"], + "Enable data zooming controls": ["Ativar controles de zoom de dados"], + "Minor Split Line": ["Linha de divisão menor"], + "Draw split lines for minor y-axis ticks": [ + "Desenhar linhas de divisão para os ticks menores do eixo y" ], - "Physical": ["Físico"], - "Physical (table or view)": ["Físico (tabela ou view)"], - "Physical dataset": ["Conjunto de dados físicos"], - "Pick a dimension from which categorical colors are defined": [ - "Escolha uma dimensão a partir da qual as cores categóricas são definidas" + "Primary y-axis format": ["Formato do eixo y primário"], + "Logarithmic scale on primary y-axis": [ + "Escala logarítmica no eixo y primário" ], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Escolha uma granularidade na seção Tempo ou desmarque a opção 'Incluir tempo'" + "Secondary y-axis format": ["Formato do eixo y secundário"], + "Secondary y-axis title": ["Título secundário do eixo y"], + "Logarithmic scale on secondary y-axis": [ + "Escala logarítmica no eixo y secundário" ], - "Pick a metric for x, y and size": [ - "Escolha uma métrica para x, y e tamanho" + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Visualize duas séries diferentes usando o mesmo eixo x. Observe que ambas as séries podem ser visualizadas com um tipo de gráfico diferente (por exemplo, uma usando barras e outra usando uma linha)." ], - "Pick a metric to display": ["Escolha uma métrica para exibir"], - "Pick a metric!": ["Escolha uma métrica!"], - "Pick a name to help you identify this database.": [ - "Escolha um nome para te ajudar identificar esse banco de dados." + "Mixed Chart": ["Gráfico misto"], + "Put the labels outside of the pie?": [ + "Colocar rótulos no exterior da torta?" ], - "Pick a nickname for how the database will display in Superset.": [ - "Escolha um apelido para a forma como o banco de dados será exibido no Superset." + "Label Line": ["Linha de rótulos"], + "Draw line from Pie to label when labels outside?": [ + "Desenhar uma linha da torta para rótulo quando as etiquetas estão no exterior?" ], - "Pick a set of deck.gl charts to layer on top of one another": [ - "Escolha um conjunto de gráficos deck.gl para colocar em camadas uns sobre os outros" + "Show Total": ["Mostrar total"], + "Whether to display the aggregate count": [ + "Se deve ser exibida a contagem agregada" ], - "Pick a time granularity for your time series": [ - "Escolha uma granularidade de tempo para sua série temporal" + "Pie shape": ["Formato de torta"], + "Outer Radius": ["Raio Exterior"], + "Outer edge of Pie chart": ["Borda externa do gráfico de pizza"], + "Inner Radius": ["Raio interior"], + "Inner radius of donut hole": ["Raio interior do buraco de rosquinha"], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "O clássico. Ótimo para mostrar quanto de uma empresa cada investidor recebe, que dados demográficos seguem o seu blog ou que parte do orçamento vai para o complexo industrial militar.\n\n Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se a clareza da proporção relativa for importante, considere utilizar um gráfico de barras ou outro tipo de gráfico." ], - "Pick a title for you annotation.": [ - "Escolha um título para a sua anotação." + "Pie Chart": ["Gráfico de pizza"], + "Total: %s": ["Total: %s"], + "The maximum value of metrics. It is an optional configuration": [ + "O valor máximo de métricas. Trata-se de uma configuração opcional" ], - "Pick at least one field for [Series]": [ - "Escolha no ao menos um campo para [Série]" + "Label position": ["Posição do rótulo"], + "Radar": ["Radar"], + "Customize Metrics": ["Personalizar métricas"], + "Further customize how to display each metric": [ + "Personalizar ainda mais como exibir cada métrica" ], - "Pick at least one metric": ["Escolha ao menos uma métrica"], - "Pick exactly 2 columns as [Source / Target]": [ - "Escolha exatamente 2 colunas como [Origem / Destino]" + "Circle radar shape": ["Forma de radar circular"], + "Radar render type, whether to display 'circle' shape.": [ + "Tipo de renderização do radar, se deve ser apresentada a forma de 'círculo'." ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "Selecione uma ou mais colunas que devem ser mostradas na anotação. Se não selecionar uma coluna, todas as colunas serão mostradas." + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Visualize um conjunto paralelo de métricas em vários grupos. Cada grupo é visualizado usando sua própria linha de pontos e cada métrica é representada como uma borda no gráfico." ], - "Pick your favorite markup language": [ - "Escolha sua linguagem de marcação favorita" + "Radar Chart": ["Gráfico de Radar"], + "Primary Metric": ["Métrica primária"], + "The primary metric is used to define the arc segment sizes": [ + "A métrica primária é usada para definir os tamanhos dos segmentos de arco" ], - "Pie Chart": ["Gráfico de pizza"], - "Pie shape": ["Formato de torta"], - "Pin": ["Pino"], - "Pivot Table": ["Tabela Pivô"], - "Pivot operation must include at least one aggregate": [ - "A operação de pivotagem deve incluir pelo menos um agregado" + "Secondary Metric": ["Métrica secundária"], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "[opcional] essa métrica secundária é usada para definir a cor como uma proporção em relação à métrica primária. Quando omitida, a cor é categórica e baseada em rótulos" ], - "Pivot operation requires at least one index": [ - "A operação de pivotagem requer em ao menos um índice" + "When only a primary metric is provided, a categorical color scale is used.": [ + "Quando apenas uma métrica primária é fornecida, é usada uma escala de cores categórica." ], - "Pivoted": ["Pivotado"], - "Pixel height of each series": ["Altura do pixel de cada série"], - "Pixels": ["Pixels"], - "Plain": ["Simples"], - "Please apply filter changes": ["Aplicar alterações ao filtro"], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "Verifique a sua consulta e confirme se todos os parâmetros do modelo estão entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , tente executar sua consulta novamente." + "When a secondary metric is provided, a linear color scale is used.": [ + "Quando uma métrica secundária é fornecida, uma escala de cores linear é usada." ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "Verifique se há erros de sintaxe na consulta ou perto de \"%(error_sintaxe)s \". Em seguida , tente executar sua consulta novamente." + "Hierarchy": ["Hierarquia"], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Define os níveis hierárquicos do gráfico. Cada nível é\n representado por um anel, sendo o círculo mais interno o topo da hierarquia." ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "Verifique se há erros de sintaxe na sua consulta \"%(erro_servidor)s \". Em seguida , tente executar sua consulta novamente." + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Usa círculos para visualizar o fluxo de dados em diferentes estágios de um sistema. Passe o mouse sobre caminhos individuais na visualização para entender os estágios de um valor. Útil para funis e pipelines de visualização de vários estágios e vários grupos." ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ - "Verifique se existem erros de sintaxe nos parâmetros do modelo e certifique-se de que correspondem à consulta SQL e aos parâmetros de definição. Em seguida, tente executar a consulta novamente." + "Sunburst Chart": ["Gráfico Sunburst"], + "Multi-Levels": ["Multiníveis"], + "When using other than adaptive formatting, labels may overlap": [ + "Ao usar uma formatação diferente da adaptativa, os rótulos podem se sobrepor" ], - "Please choose at least one groupby": [ - "Escolha pelo menos um agrupar por" + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Canivete suíço para visualizar dados. Escolha entre gráficos de etapas, de linhas, de dispersão e de barras. Esse tipo de visualização também tem muitas opções de personalização." ], - "Please choose different metrics on left and right axis": [ - "Escolha métricas diferentes no eixo esquerdo e direito" + "Generic Chart": ["Gráfico genérico"], + "zoom area": ["área de zoom"], + "restore zoom": ["restaurar zoom"], + "Series Style": ["Estilo da série"], + "Area chart opacity": ["Opacidade do gráfico de área"], + "Opacity of Area Chart. Also applies to confidence band.": [ + "Opacidade do gráfico de áreas. Também se aplica à banda de confiança." ], - "Please confirm": ["Por favor confirme"], - "Please confirm the overwrite values.": [ - "Por favor, confirme os valores de substituição." + "Marker Size": ["Tamanho do marcador"], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Os gráficos de área são semelhantes aos gráficos de linhas na medida em que representam variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras." ], - "Please enter a SQLAlchemy URI to test": [ - "Por favor insira um URI SQLAlchemy para teste" + "Area Chart": ["Gráfico de área"], + "Axis Title": ["Título do eixo"], + "AXIS TITLE MARGIN": ["MARGEM DO TÍTULO DO EIXO"], + "AXIS TITLE POSITION": ["POSIÇÃO DO TÍTULO DO EIXO"], + "Axis Format": ["Formato do eixo"], + "Logarithmic axis": ["Eixo Logarítmico"], + "Draw split lines for minor axis ticks": [ + "Desenhar linhas de divisão para os ticks do eixo secundário" ], - "Please filter set name": ["Favor filtrar o nome do conjunto"], - "Please re-enter the password.": ["Por favor digite a senha novamente."], - "Please re-export your file and try importing again": [ - "Por favor reexportar seu arquivo e tente importar novamente" + "Truncate Axis": ["Truncar eixo"], + "It’s not recommended to truncate axis in Bar chart.": [ + "Não é recomendado truncar o eixo no gráfico de barras." ], - "Please save the query to enable sharing": [ - "Por favor salvar a consulta para habilitar compartilhamento" + "Axis Bounds": ["Limites do eixo"], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Limites para o eixo. Quando deixados em branco, os limites são definidos dinamicamente com base no mínimo/máximo dos dados. Observe que esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a extensão dos dados." ], - "Please save your chart first, then try creating a new email report.": [ - "Por favor primeiramente salvar seu gráfico, então tentar crir um novo relatório de e-mail." + "Chart Orientation": ["Orientação do gráfico"], + "Bar orientation": ["Orientação da barra"], + "Horizontal": ["Horizontal"], + "Orientation of bar chart": ["Orientação do gráfico de barras"], + "Bar Charts are used to show metrics as a series of bars.": [ + "Os gráficos de barras são usados para mostrar as métricas como uma série de barras." ], - "Please save your dashboard first, then try creating a new email report.": [ - "Por favor, salve primeiro o seu painel e, em seguida, tente criar um novo relatório de e-mail." + "Bar Chart": ["Gráfico de barras"], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "O gráfico de linhas é utilizado para visualizar as medições efetuadas numa determinada categoria. O gráfico de linhas é um tipo de gráfico que apresenta informações como uma série de pontos de dados ligados por segmentos de linha reta. É um tipo básico de gráfico comum em muitos domínios." ], - "Please select both a Dataset and a Chart type to proceed": [ - "Por favor selecionar um conjunto de dados e um tipo de gráfico para prosseguir" + "Line Chart": ["Gráfico de linhas"], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "O gráfico de dispersão tem o eixo horizontal em unidades lineares e os pontos estão ligados por ordem. Mostra uma relação estatística entre duas variáveis." ], - "Please use 3 different metric labels": [ - "Por favor, use 3 diferentes rótulos de métrica" + "Scatter Plot": ["Gráfico de dispersão"], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "A linha suave é uma variação do gráfico de linhas. Sem ângulos nem arestas, a linha suave tem por vezes um aspecto mais inteligente e profissional." ], - "Plot the distance (like flight paths) between origin and destination.": [ - "Plota a distância (como rotas de voo) entre origem e destino." + "Step type": ["Tipo de etapa"], + "Start": ["Iniciar"], + "Middle": ["Médio"], + "End": ["Fim"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Define se o etapa deve aparecer no o começo , meio ou fim entre dois pontos de dados" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ - "Plota os índices individuais para cada linha nos dados verticalmente e os vincula como uma linha. Este gráfico é útil para comparar várias métricas em todas as amostras ou linhas nos dados." + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "O gráfico de linhas escalonadas (também designado por gráfico de passos) é uma variação do gráfico de linhas, mas com a linha a formar uma série de passos entre os pontos de dados. Um gráfico escalonado pode ser útil quando se pretende mostrar as alterações que ocorrem em intervalos irregulares." ], - "Plugins": ["Plugins"], - "Point Color": ["Cor do ponto"], - "Point Radius": ["Raio do ponto"], - "Point Radius Scale": ["Escala do Raio do ponto"], - "Point Radius Unit": ["Unidade de raio do ponto"], - "Point Size": ["Tamanho do ponto"], - "Point Unit": ["Unidade de ponto"], - "Point to your spatial columns": ["Apontar para as colunas espaciais"], - "Points": ["Pontos"], - "Points and clusters will update as the viewport is being changed": [ - "Pontos e clusters serão atualizados conforme a janela de exibição mude" + "Stepped Line": ["Linha escalonada"], + "Id": ["Id"], + "Name of the id column": ["Nome da coluna id"], + "Parent": ["Pai"], + "Name of the column containing the id of the parent node": [ + "Nome da coluna que contém o id do nó pai" ], - "Polygon Column": ["Coluna de polígono"], - "Polygon Encoding": ["Codificação de polígonos"], - "Polygon Settings": ["Configurações de polígono"], - "Polyline": ["Polilinha"], - "Pop Tab Link": ["Pop Tab Link"], - "Popular": ["Popular"], - "Populate \"Default value\" to enable this control": [ - "Preencha \"Default value\" para ativar esse controle" + "Optional name of the data column.": [ + "Nome opcional da coluna de dados." ], - "Population age data": ["Dados sobre a idade da população"], - "Port": ["Porta"], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." + "Root node id": ["ID do nó raiz"], + "Id of root node of the tree.": ["Id do nó raiz da árvore."], + "Metric for node values": ["Métrica para valores de nó"], + "Tree layout": ["Layout da árvore"], + "Orthogonal": ["Ortogonal"], + "Radial": ["Radial"], + "Layout type of tree": ["Tipo de layout de árvore"], + "Tree orientation": ["Orientação da árvore"], + "Left to Right": ["Esquerda para Direita"], + "Right to Left": ["Direita para Esquerda"], + "Top to Bottom": ["De cima para baixo"], + "Bottom to Top": ["De baixo para cima"], + "Orientation of tree": ["Orientação da árvore"], + "Node label position": ["Posição do rótulo do nó"], + "left": ["esquerda"], + "top": ["superior"], + "right": ["direito"], + "bottom": ["fundo"], + "Position of intermediate node label on tree": [ + "Posição do rótulo do nó intermédio na árvore" ], - "Port out of range 0-65535": [""], - "Position JSON": ["Posição JSON"], + "Child label position": ["Posição do rótulo filho"], "Position of child node label on tree": [ "Posição do rótulo do nó filho na árvore" ], - "Position of column level subtotal": [ - "Posição do subtotal ao nível da coluna" + "Emphasis": ["Ênfase"], + "ancestor": ["ancestral"], + "Which relatives to highlight on hover": [ + "Qual parentes para destaque sobre passe o mouse" ], - "Position of intermediate node label on tree": [ - "Posição do rótulo do nó intermédio na árvore" + "Empty circle": ["Círculo vazio"], + "Circle": ["Círculo"], + "Rectangle": ["Retângulo"], + "Triangle": ["Triângulo"], + "Diamond": ["Diamante"], + "Pin": ["Pino"], + "Arrow": ["Seta"], + "Symbol size": ["Tamanho do símbolo"], + "Size of edge symbols": ["Tamanho dos símbolos de aresta"], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Visualize vários níveis de hierarquia usando uma estrutura familiar semelhante a uma árvore." ], - "Position of row level subtotal": [ - "Posição do subtotal ao nível da linha" + "Tree Chart": ["Gráfico de árvore"], + "Show Upper Labels": ["Mostrar Sótulos Superiores"], + "Show labels when the node has children.": [ + "Mostrar rótulos quando o nó tiver filhos." ], - "Powered by Apache Superset": ["Feito por Apache Superset"], - "Pre-filter available values": ["Valores disponíveis para o pré-filtro"], - "Pre-filter is required": ["É necessário um pré-filtro"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Predicado aplicado quando se vai buscar um valor distinto para preencher o componente de controle do filtro. Suporta a sintaxe do modelo jinja. Aplica-se apenas quando `Ativar seleção de filtro` está ativado." + "Key": ["Chave"], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Mostrar relações hierárquicas de dados, com o valor representado pela área, mostrando a proporção e a contribuição para o todo." ], - "Predictive": ["Preditivo"], - "Predictive Analytics": ["Análise preditiva"], - "Prefix metric name with slice name": [ - "Prefixo do nome da métrica com o nome da fatia" + "Treemap": ["Mapa da árvore"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "" ], - "Preview": ["Pré-visualização"], - "Preview: `%s`": ["Pré-visualização: `%s`"], - "Previous": ["Anterior"], - "Previous Line": ["Linha anterior"], - "Primary": ["Primário"], - "Primary Metric": ["Métrica primária"], - "Primary key": ["Chave primária"], - "Primary or secondary y-axis": ["Eixo y primário ou secundário"], - "Primary y-axis format": ["Formato do eixo y primário"], - "Private Key": ["Chave privada"], - "Private Key & Password": ["Chave privada e Senha"], - "Profile": ["Perfil"], - "Profile picture provided by Gravatar": [ - "Foto de perfil oferecido por Gravatar" + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "" ], - "Progress": ["Progresso"], - "Progressive": ["Progressivo"], - "Propagate": ["Propagar"], - "Proportional": ["Proporcional"], - "Public and privately shared sheets": [ - "Planilhas compartilhadas públicas e privadas" + "page_size.all": ["page_size.all"], + "Loading...": ["Carregando..."], + "Write a handlebars template to render the data": [ + "Escreva um modelo de guidão para renderizar os dados" ], - "Publicly shared sheets only": [ - "Apenas Planilhas compartilhadas publicamente" + "Handlebars": ["Handlebars"], + "must have a value": ["deve ter um valor"], + "Handlebars Template": ["Modelo de handlebars"], + "A handlebars template that is applied to the data": [ + "Um modelo de handlebars aplicado aos dados" ], - "Published": ["Publicado"], - "Purple": ["Roxo"], - "Put labels outside": ["Colocar rótulos no exterior"], - "Put the labels outside of the pie?": [ - "Colocar rótulos no exterior da torta?" + "Include time": ["Incluir horário"], + "Whether to include the time granularity as defined in the time section": [ + "Se deve incluir a granularidade de tempo conforme definido na seção de tempo" ], - "Put the labels outside the pie?": ["Colocar o rótulos fora a torta?"], - "Put your code here": ["Coloque seu código here"], - "Python datetime string pattern": [ - "Padrão de String de data e hora em Python" + "Percentage metrics": ["Métricas de porcentagem"], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "" ], - "QUERY DATA IN SQL LAB": ["CONSULTAR DADOS NO SQL LAB"], - "Quarter": ["Trimestre"], - "Quarters %s": ["Trimestres %s"], - "Queries": ["Consultas"], - "Query": ["Consulta"], - "Query %s: %s": ["Consulta %s: %s"], - "Query A": ["Consulta A"], - "Query B": ["Consulta B"], - "Query History": ["Histórico de consultas"], - "Query does not exist": ["A consulta não existe"], - "Query history": ["Histórico de consultas"], - "Query imported": ["Consulta importada"], - "Query in a new tab": ["Consulta em uma nova guia"], - "Query is too complex and takes too long to run.": [ - "A consulta é muito complexa e demora muito para executar." + "Show totals": ["Mostrar os totais"], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Mostrar agregações totais de métricas selecionadas. Note que o limite de linhas não se aplica ao resultado." ], - "Query mode": ["Modo de consulta"], - "Query name": ["Nome da consulta"], - "Query preview": ["Pré-visualização da consulta"], - "Query was stopped": ["A consulta foi interrompida"], - "Query was stopped.": ["A consulta foi parada."], - "RANGE TYPE": ["TIPO DA FAIXA"], - "RGB Color": ["Cor RGB"], - "Radar": ["Radar"], - "Radar Chart": ["Gráfico de Radar"], - "Radar render type, whether to display 'circle' shape.": [ - "Tipo de renderização do radar, se deve ser apresentada a forma de 'círculo'." + "Ordering": ["Pedidos"], + "Order results by selected columns": [ + "Ordenar resultados por colunas selecionadas" ], - "Radial": ["Radial"], - "Radius in kilometers": ["Raio em quilômetros"], - "Radius in meters": ["Raio em metros"], - "Radius in miles": ["Raio em milhas"], - "Ran %s": ["Corrida %s"], - "Range": ["Faixa"], - "Range filter": ["Filtro de faixa"], - "Range filter plugin using AntD": [ - "Plugin de filtro de intervalo usando AntD" + "Sort descending": ["Ordenação decrescente"], + "Server pagination": ["Paginação do servidor"], + "Enable server side pagination of results (experimental feature)": [ + "Ativar a paginação dos resultados do lado do servidor (funcionalidade experimental)" ], - "Range labels": ["Rótulos de intervalo"], - "Ranges": ["Faixas"], - "Ranges to highlight with shading": [ - "Intervalos a destacar com sombreamento" + "Server Page Length": ["Comprimento da página do servidor"], + "Rows per page, 0 means no pagination": [ + "Linhas por página, 0 significa sem paginação" ], - "Ranking": ["Classificação"], - "Ratio": ["Proporção"], - "Raw records": ["Registros Brutos"], - "Ready to review filters in this dashboard?": [ - "Pronto para revisar os filtros desse painel?" + "Query mode": ["Modo de consulta"], + "Group By, Metrics or Percentage Metrics must have a value": [ + "Agrupar por , Métricas ou Métricas de porcentagem devem ter um valor" ], - "Rebuild": ["Reconstruir"], - "Recent activity": ["Atividade recente"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Os gráficos, painéis e consultas recentemente criados aparecerão aqui" + "You need to configure HTML sanitization to use CSS": [ + "Você precisa configurar a sanitização de HTML para usar CSS" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Os gráficos, painéis e consultas recentemente editados aparecerão aqui" + "CSS Styles": ["Estilos CSS"], + "CSS applied to the chart": ["CSS aplicado ao gráfico"], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [ + "Colunas para agrupar nas colunas" ], - "Recently modified": ["Modificado recentemente"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" + "Rows": ["Linhas"], + "Columns to group by on the rows": ["Colunas para agrupar nas linhas"], + "Use metrics as a top level group for columns or for rows": [ + "Use métricas como um grupo de nível superior para colunas ou linhas" ], - "Recents": ["Recentes"], - "Recommended tags": ["Etiquetas recomendadas"], - "Record Count": ["Contagem de registos"], - "Rectangle": ["Retângulo"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Redireciona para este endpoint quando se clica na tabela a partir da lista de tabelas" + "Cell limit": ["Limite de célula"], + "Limits the number of cells that get retrieved.": [ + "Limita o número de células recuperadas." ], - "Redo the action": ["Refazer o ação"], - "Reduce X ticks": ["Reduzir X ticks"], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ - "Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o eixo X não transbordará e os rótulos podem estar ausentes. Se falso, será aplicada uma largura mínima às colunas e a largura pode transbordar para um deslocamento horizontal." + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Métrica utilizada para definir a forma como as séries de topo são ordenadas se estiver presente um limite de série ou de célula. Se não for definida, reverte para a primeira métrica (quando apropriado)." ], - "Refer to the": ["Consulte o"], - "Referenced columns not available in DataFrame.": [ - "As colunas referenciadas não estão disponíveis no DataFrame." + "Aggregation function": ["Função de agregação"], + "Count": ["Contar"], + "Count Unique Values": ["Contar valores únicos"], + "List Unique Values": ["Listar valores exclusivos"], + "Sum": ["Soma"], + "Average": ["Média"], + "Median": ["Mediana"], + "Sample Variance": ["Variação da amostra"], + "Sample Standard Deviation": ["Desvio Padrão da Amostra"], + "Minimum": ["Mínimo"], + "Maximum": ["Máximo"], + "First": ["Primeiro"], + "Last": ["Último"], + "Sum as Fraction of Total": ["Soma como Fração do Total"], + "Sum as Fraction of Rows": ["Soma como Fração de Linhas"], + "Sum as Fraction of Columns": ["Soma como Fração de Colunas"], + "Count as Fraction of Total": ["Contar como fração do Total"], + "Count as Fraction of Rows": ["Contar como fração de Linhas"], + "Count as Fraction of Columns": ["Contar como fração de Colunas"], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "Função agregada a aplicar ao dinamizar e calcular o total de linhas e colunas" ], - "Refetch results": ["Recuperar resultados"], - "Refresh": ["Atualizar"], - "Refresh dashboard": ["Atualizar Painel"], - "Refresh frequency": ["Atualizar Frequência"], - "Refresh interval": ["Atualizar intervalo"], - "Refresh interval saved": ["Intervalo de atualização salvo"], - "Refresh table list": ["Atualizar lista de tabelas"], - "Refresh tables": ["Atualizar tabelas"], - "Refresh the default values": ["Atualizar os valores padrão"], - "Refreshing charts": ["Atualização de gráficos"], - "Refreshing columns": ["Atualização de colunas"], - "Regex": ["Regex"], - "Relational": ["Relacional"], - "Relationships between community channels": [ - "Relações entre canais comunitários" + "Show rows total": ["Mostrar total de linhas"], + "Display row level total": ["Exibir total do nível de linha"], + "Show columns total": ["Mostrar o total de colunas"], + "Display column level total": ["Mostrar total ao nível da coluna"], + "Transpose pivot": ["Transpor pivô"], + "Swap rows and columns": ["Trocar linhas e colunas"], + "Combine metrics": ["Combinar Métricas"], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Apresentar métricas lado a lado dentro de cada coluna, em vez de cada coluna ser apresentada lado a lado para cada métrica." ], - "Relative Date/Time": ["Data/hora relativa"], - "Relative period": ["Período relativo"], - "Relative quantity": ["Quantidade relativa"], - "Reload": ["Recarregar"], - "Remind me in 24 hours": ["Lembre-me em 24 horas"], - "Remove": ["Remover"], - "Remove cross-filter": ["Remover filtro cruzado"], - "Remove invalid filters": ["Remover filtros inválidos"], - "Remove item": ["Remover item"], - "Remove query from log": ["Remover consulta do log"], - "Remove table preview": ["Remover a pré-visualização da tabela"], - "Removed columns: %s": ["Colunas removidas: %s"], - "Rename tab": ["Renomear Aba"], - "Rendering": ["Renderização"], - "Replace": ["Substituir"], - "Report": ["Relatório"], - "Report Name": ["Nome do relatório"], - "Report Schedule could not be created.": [ - "Não foi possível criar um agendamento do relatório." + "D3 time format for datetime columns": [ + "Formato de hora D3 para colunas datetime" ], - "Report Schedule could not be deleted.": [ - "O agendamento do relatório pode não ser deletado." + "Sort rows by": ["Ordenar as linhas por"], + "key a-z": ["chave a-z"], + "key z-a": ["chave z-a"], + "value ascending": ["valor crescente"], + "value descending": ["valor decrescente"], + "Change order of rows.": ["Mudar ordem das linhas."], + "Available sorting modes:": ["Modos de ordenação disponíveis:"], + "By key: use row names as sorting key": [ + "Por chave: utilizar nomes de linhas como chave de ordenação" ], - "Report Schedule could not be updated.": [ - "O agendamento do relatório pode não ser atualizado." + "By value: use metric values as sorting key": [ + "Por valor: utilizar valores métricos como chave de ordenação" ], - "Report Schedule delete failed.": [ - "Falha na exclusão do agendamento do relatório." + "Sort columns by": ["Classificar colunas por"], + "Change order of columns.": ["Mudar ordem das colunas."], + "By key: use column names as sorting key": [ + "Por chave: utilizar os nomes das colunas como chave de ordenação" ], - "Report Schedule execution failed when generating a csv.": [ - "A execução do Report Schedule falhou ao gerar um arquivo csv." + "Rows subtotal position": ["Posição do subtotal das linhas"], + "Position of row level subtotal": [ + "Posição do subtotal ao nível da linha" ], - "Report Schedule execution failed when generating a dataframe.": [ - "A execução do Report Schedule falhou ao gerar um dataframe." + "Columns subtotal position": ["Posição do subtotal das colunas"], + "Position of column level subtotal": [ + "Posição do subtotal ao nível da coluna" ], - "Report Schedule execution failed when generating a screenshot.": [ - "A execução do agendamento do relatório falhou ao gerar uma captura de tela." + "Conditional formatting": ["Formatação condicional"], + "Apply conditional color formatting to metrics": [ + "Aplicar formatação de cor condicional a métricas" ], - "Report Schedule execution got an unexpected error.": [ - "A execução do agendamento de relatório obteve um erro inesperado." + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "Usado para resumir um conjunto de dados, agrupando várias estatísticas ao longo de dois eixos. Exemplos: Números de vendas por região e mês, tarefas por status e responsável, usuários ativos por idade e local. Não é a visualização mais impressionante visualmente, mas é altamente informativa e versátil." ], - "Report Schedule is still working, refusing to re-compute.": [ - "O agendamento de relatório ainda está funcionando, recusando-se a recalcular." + "Pivot Table": ["Tabela Pivô"], + "Total (%(aggregatorName)s)": ["Total (%(aggregatorName)s)"], + "Unknown input format": ["Formato de entrada desconhecido"], + "search.num_records": [""], + "page_size.show": ["page_ size.show"], + "page_size.entries": ["page_ size.entries"], + "No matching records found": [ + "Não foram encontrados registros correspondentes" ], - "Report Schedule log prune failed.": [ - "Falha na poda do registo do agendamento do relatório." + "Shift + Click to sort by multiple columns": [ + "Shift + clique para organizar por colunas múltiplas" ], - "Report Schedule not found.": [ - "Agendamento de relatório não encontrado." + "Totals": ["Totais"], + "Timestamp format": ["Formato de carimbo de data/hora"], + "Page length": ["Comprimento da página"], + "Search box": ["Caixa de pesquisa"], + "Whether to include a client-side search box": [ + "Se deve incluir uma caixa de pesquisa no lado do cliente" ], - "Report Schedule parameters are invalid.": [ - "Os parâmetros do agendamento de relatório são inválidos." + "Cell bars": ["Barras celulares"], + "Whether to display a bar chart background in table columns": [ + "Se deve ser exibido um fundo de gráfico de barras nas colunas da tabela" ], - "Report Schedule reached a working timeout.": [ - "O agendamento do relatório atingiu o tempo limite de trabalho." + "Align +/-": ["Alinhar +/-"], + "Whether to align background charts with both positive and negative values at 0": [ + "Se deve alinhar gráficos de fundo com valores positivos e negativos em 0" ], - "Report Schedule state not found": [ - "Estado do agendamento do relatório não encontrado" + "Color +/-": ["Cor +/-"], + "Allow columns to be rearranged": [ + "Permitir que as colunas sejam reorganizadas" ], - "Report a bug": ["Relatar um bug"], - "Report failed": ["Relatório falhou"], - "Report name": ["Nome do relatório"], - "Report schedule": ["Agendamento do relatório"], - "Report schedule client error": [ - "Relatar erro do cliente de programação" + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Permitir que o usuário final arraste e solte os cabeçalhos das colunas para os reorganizar. Note que as alterações não persistirão na próxima vez que o utilizador abrir o gráfico." ], - "Report schedule system error": [ - "Relatar erro do sistema de programação" + "Customize columns": ["Personalizar colunas"], + "Further customize how to display each column": [ + "Personalizar ainda mais a forma de apresentação de cada coluna" ], - "Report schedule unexpected error": [ - "Erro inesperado no agendamento do relatório" + "Apply conditional color formatting to numeric columns": [ + "Aplicar formatação de cor condicional para colunas numéricas" ], - "Report sending": ["Enviando relatório"], - "Report sent": ["Relatório enviado"], - "Report updated": ["Relatório atualizado"], - "Reports": ["Relatórios"], - "Repulsion": ["Repulsão"], - "Repulsion strength between nodes": ["Força de repulsão entre nós"], - "Request Permissions": ["Pedir permissões"], - "Request is incorrect: %(error)s": ["O pedido está incorreto: %(error)s"], - "Request is not JSON": ["O Pedido não é JSON"], - "Request missing data field.": ["Pedido com campo de dados ausente."], - "Request timed out": ["O tempo limite da solicitação expirou"], - "Required": ["Necessário"], - "Required control values have been removed": [ - "Os valores de controle necessários foram eliminados" + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Visão clássica de um conjunto de dados numa planilha de cálculo, linha a coluna. Utilize tabelas para apresentar uma visão dos dados subjacentes ou para mostrar métricas agregadas." ], - "Resample": ["Reamostragem"], - "Resample operation requires DatetimeIndex": [ - "A operação de reamostragem requer DatetimeIndex" + "Show": ["Mostrar"], + "entries": ["entradas"], + "Word Cloud": ["Nuvem de palavras"], + "Minimum Font Size": ["Tamanho Mínimo da Fonte"], + "Font size for the smallest value in the list": [ + "Tamanho da Fonte para o menor valor na lista" ], - "Reset": ["Redefinir"], - "Reset state": ["Redefinir estado"], - "Resource already has an attached report.": [ - "Recurso já tem um relatório anexado." + "Maximum Font Size": ["Tamanho Máximo da Fonte"], + "Font size for the biggest value in the list": [ + "Tamanho da Fonte para o maior valor na lista" ], - "Resource was not found.": ["O recurso não foi encontrado."], - "Restore Filter": ["Restaurar filtro"], - "Results": ["Resultados"], - "Results %s": ["Resultados %s"], - "Results backend is not configured.": [ - "O backend de resultados não está configurado." + "Word Rotation": ["Rotação de palavras"], + "random": ["aleatório"], + "square": ["quadrado"], + "Rotation to apply to words in the cloud": [ + "Rotação para aplicar às palavras na nuvem" ], - "Results backend needed for asynchronous queries is not configured.": [ - "O backend de resultados necessário para as consultas assíncronas não está configurado." + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Visualiza as palavras em uma coluna que aparecem com mais frequência. A fonte maior corresponde à maior frequência." ], - "Return to specific datetime.": ["Retornar para data e hora específica."], - "Reverse Lat & Long": ["Lat. e Long. invertidos"], - "Rich Tooltip": ["Dica avançada"], - "Rich tooltip": ["Dica avançada"], - "Right": ["Direito"], - "Right Axis Format": ["Formato do eixo direito"], - "Right Axis Metric": ["Métrica do eixo direito"], - "Right Axis chart(s)": ["Gráfico(s) do eixo direito"], - "Right axis metric": ["Métrica do eixo direito"], - "Right to Left": ["Direita para Esquerda"], - "Right value": ["Valor correto"], - "Right-click on a dimension value to drill to detail by that value.": [ - "Clique com o botão direito do mouse em valor de dimensão para pesquisar detalhes por esse valor." + "N/A": ["N/D"], + "failed": ["falhou"], + "pending": ["pendente"], + "fetching": ["busca"], + "running": ["em execução"], + "stopped": ["interrompido"], + "success": ["sucesso"], + "The query couldn't be loaded": ["Não foi possível carregar a consulta"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até Consultas salvas" ], - "Role": ["Função"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "A função %(r)s foi estendida para fornecer o acesso a fonte de dados %(ds)s" + "Your query could not be scheduled": [ + "Sua consulta não pôde ser agendada" ], - "Roles": ["Funções"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ - "As funções são uma lista que define o acesso ao painel. Conceder a uma função o acesso a um painel irá ignorar as verificações ao nível do conjunto de dados. Se não forem definidas funções, aplicam-se as permissões de acesso normais." + "Failed at retrieving results": ["Falha na obtenção de resultados"], + "Unknown error": ["Erro desconhecido"], + "Query was stopped.": ["A consulta foi parada."], + "Failed at stopping query. %s": ["Falha ao parar a consulta. %s"], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Não foi possível migrar o estado do esquema da tabela para o backend. O Superset tentará novamente mais tarde. Entre em contato com o administrador se o problema persistir." ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ - "As funções são uma lista que define o acesso ao painel. Se não forem definidas funções, aplicam-se as permissões de acesso normais." + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Não foi possível migrar o estado da consulta para o backend. O Superset tentará novamente mais tarde. Entre em contato com o administrador se o problema persistir." ], - "Roles to grant": ["Funções a atribuir"], - "Rolling Function": ["Função de rolagem"], - "Rolling Window": ["Janela de rolagem"], - "Rolling function": ["Função de rolagem"], - "Rolling window": ["Janela de rolagem"], - "Root certificate": ["Raiz do certificado"], - "Root node id": ["ID do nó raiz"], - "Rotate axis label": ["Rodar o rótulo do eixo"], - "Rotate x axis label": ["Rodar o rótulo do eixo x"], - "Rotation to apply to words in the cloud": [ - "Rotação para aplicar às palavras na nuvem" + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Não foi possível migrar o estado do editor de consultas para o backend. O Superset tentará novamente mais tarde. Entre em contato com o administrador se o problema persistir." ], - "Round cap": ["Tampa circular"], - "Row": ["Linha"], - "Row Level Security": ["Segurança em nível de linha"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ - "Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a primeira linha de dados). Deixe em branco se não houver linha de cabeçalho" + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Não é possível adicionar uma nova guia ao backend. Entre em contato com o administrador." ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a primeira linha de dados). Deixar em branco se não existir uma linha de cabeçalho." + "Copy of %s": ["Copiar de %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com seu administrador." ], - "Row limit": ["Limite de linhas"], - "Rows": ["Linhas"], - "Rows per page, 0 means no pagination": [ - "Linhas por página, 0 significa sem paginação" + "An error occurred while fetching tab state": [ + "Ocorreu um erro ao obter o estado da aba" ], - "Rows subtotal position": ["Posição do subtotal das linhas"], - "Rows to Read": ["Linhas para Leitura"], - "Rule": ["Regra"], - "Rule added": [""], - "Run": ["Executar"], - "Run a query to display query history": [ - "Executar uma consulta para exibir o histórico de consultas" + "An error occurred while removing tab. Please contact your administrator.": [ + "Ocorreu um erro ao remover a aba. Por favor entre em contato com seu administrador." ], - "Run a query to display results": [ - "Executar uma consulta para exibir os resultados" + "An error occurred while removing query. Please contact your administrator.": [ + "Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu administrador." ], - "Run in SQL Lab": ["Executar no SQL Lab"], - "Run query": ["Executar consulta"], - "Run query (Ctrl + Return)": ["Executar consulta (Ctrl + Return)"], - "Run query in a new tab": ["Executar consulta em uma nova guia"], - "Run selection": ["Executar seleção"], - "Running": ["Executando"], - "Running statement %(statement_num)s out of %(statement_count)s": [ - "Executando instrução %(statement_num)s de % (statement_count)s" + "Your query could not be saved": ["Sua consulta não pôde ser salva"], + "Your query was not properly saved": [ + "Sua consulta não foi salva corretamente" ], - "SAT": ["SAB"], - "SEP": ["SET"], - "SHA": ["SHA"], - "SQL": ["SQL"], - "SQL Copied!": ["SQL copiado !"], - "SQL Expression": ["Expressão SQL"], - "SQL Lab": ["SQL Lab"], - "SQL Lab View": ["Visão do SQL Lab"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ - "O SQL Lab usa seu armazenamento local do navegador para armazenar consultas e resultados.\nAtualmente, você está usando %(currentUsage)s KB de %(maxStorage)d KB de armazenamento espaço.\nPara evitar que o SQL Lab falhe, elimine algumas abas de consulta.\nPode voltar a essas consultas utilizando a funcionalidade Salvar antes de eliminar a aba.\nObserve que terá de fechar outras janelas do SQL Lab antes de fazer isso." + "Your query was saved": ["Sua consulta foi salva"], + "Your query was updated": ["Sua consulta foi atualizada"], + "Your query could not be updated": [ + "Sua consulta não pôde ser atualizada" ], - "SQL Query": ["Consulta SQL"], - "SQL expression": ["Expressão SQL"], - "SQL query": ["Consulta SQL"], - "SQLAlchemy URI": ["SQLAlchemy URI"], - "SSH Host": ["Host SSH"], - "SSH Password": ["Senha SSH"], - "SSH Port": ["Porta SSH"], - "SSH Tunnel": ["Túnel SSH"], - "SSH Tunnel configuration parameters": [ - "Parâmetros de configuração do Túnel SSH" + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda de suas alterações, salve a consulta usando o botão \"Save Query\"." ], - "SSH Tunnel could not be deleted.": [ - "Não foi possível excluir o túnel SSH." + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Ocorreu um erro ao obter os metadados da tabela. Por favor entre em contato com seu administrador." ], - "SSH Tunnel could not be updated.": [ - "Não foi possível atualizar o túnel SSH." + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao expandir o esquema da tabela. Por favor entre em contato com o seu administrador." ], - "SSH Tunnel not found.": ["Túnel SSH não encontrado."], - "SSH Tunnel parameters are invalid.": [ - "Os parâmetros do túnel SSH são inválidos." + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em contato com o seu administrador." ], - "SSH Tunneling is not enabled": ["Túnel SSH não está ativado"], - "SSL Mode \"require\" will be used.": [ - "O modo SSL \"require\" será usado." + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao remover o esquema da tabela. Por favor entre em contato com seu administrador." ], - "START (INCLUSIVE)": ["INÍCIO (INCLUSIVO)"], - "STEP %(stepCurr)s OF %(stepLast)s": [ - "ETAPA %(stepCurr)s De %(stepLast)s" + "Shared query": ["Consulta compartilhada"], + "The datasource couldn't be loaded": [ + "A fonte de dados não pode ser carregada" ], - "STRING": ["STRING"], - "SUN": ["DOM"], - "Sample Standard Deviation": ["Desvio Padrão da Amostra"], - "Sample Variance": ["Variação da amostra"], - "Samples": ["Amostras"], - "Samples for dataset could not be retrieved.": [ - "Não foi possível recuperar as amostras do conjunto de dados." + "An error occurred while creating the data source": [ + "Ocorreu um erro ao criar a fonte de dados" ], - "Samples for datasource could not be retrieved.": [ - "Não foi possível recuperar as amostras da fonte de dados." + "An error occurred while fetching function names.": [ + "Ocorreu um erro durante a busca de nomes de funções." ], - "Sankey": ["Sankey"], - "Sankey Diagram": ["Diagrama Sankey"], - "Sankey Diagram with Loops": ["Diagrama Sankey com Loops"], - "Satellite": ["Satélite"], - "Satellite Streets": ["Ruas Satélites"], - "Saturday": ["Sábado"], - "Save": ["Salvar"], - "Save & Explore": ["Salvar e Explorar"], - "Save & go to dashboard": ["Salvar e ir ao painel"], - "Save & go to new dashboard": ["Salvar e ir para o novo painel"], - "Save (Overwrite)": ["Salvar (Sobrescrever)"], - "Save as": ["Salvar como"], - "Save as Dataset": ["Salvar como conjunto de dados"], - "Save as dataset": ["Salvar como conjunto de dados"], - "Save as new": ["Salvar como novo"], - "Save as new chart": ["Salvar como novo gráfico"], - "Save as...": ["Salvar como..."], - "Save as:": ["Salvar como:"], - "Save changes": ["Salvar alterações"], - "Save chart": ["Salvar gráfico"], - "Save dashboard": ["Salvar painel"], - "Save dataset": ["Salvar conjunto de dados"], - "Save for this session": ["Salvar para essa sessão"], - "Save or Overwrite Dataset": ["Salvar ou Sobrescrever Conjunto de dados"], - "Save query": ["Salvar consulta"], - "Save the query to enable this feature": [ - "Salve a consulta para ativar esse recurso" + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "O SQL Lab usa seu armazenamento local do navegador para armazenar consultas e resultados.\nAtualmente, você está usando %(currentUsage)s KB de %(maxStorage)d KB de armazenamento espaço.\nPara evitar que o SQL Lab falhe, elimine algumas abas de consulta.\nPode voltar a essas consultas utilizando a funcionalidade Salvar antes de eliminar a aba.\nObserve que terá de fechar outras janelas do SQL Lab antes de fazer isso." ], - "Save this query as a virtual dataset to continue exploring": [ - "Salvar esta consulta como um conjunto de dados virtual para continuar explorando" + "Primary key": ["Chave primária"], + "Foreign key": ["Chave estrangeira"], + "Index": ["Índice"], + "Estimate selected query cost": ["Estimar custo da consulta selecionada"], + "Estimate cost": ["Custo estimado"], + "Cost estimate": ["Estimativa de custo"], + "Creating a data source and creating a new tab": [ + "Criando uma fonte de dados e criando uma nova guia" ], - "Save to new dashboard": ["Salvar em um novo painel"], - "Saved": ["Salvo"], - "Saved Queries": ["Consultas salvas"], - "Saved expressions": ["Expressões salvas"], - "Saved metric": ["Salvo métrica"], - "Saved queries": ["Consultas salvas"], - "Saved queries could not be deleted.": [ - "Não foi possível eliminar as consultas salvas." + "An error occurred": ["Ocorreu um erro"], + "Explore the result set in the data exploration view": [ + "Explorar o conjunto de resultados na visão de exploração de dados" ], - "Saved query not found.": ["Consulta salva não encontrada."], - "Saved query parameters are invalid.": [ - "Os parâmetros de consulta salvos são inválidos." + "explore": ["explorar"], + "Create Chart": ["Criar gráfico"], + "Source SQL": ["Fonte SQL"], + "Executed SQL": ["SQL executado"], + "Run query": ["Executar consulta"], + "Stop query": ["Parar consulta"], + "New tab": ["Nova aba"], + "Previous Line": ["Linha anterior"], + "Keyboard shortcuts": [""], + "Run a query to display query history": [ + "Executar uma consulta para exibir o histórico de consultas" ], - "Scale and Move": ["Dimensionar e deslocar"], - "Scale only": ["Dimensionar apenas"], - "Scatter": ["Dispersão"], - "Scatter Plot": ["Gráfico de dispersão"], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "O gráfico de dispersão tem o eixo horizontal em unidades lineares e os pontos estão ligados por ordem. Mostra uma relação estatística entre duas variáveis." - ], - "Schedule": ["Cronograma"], - "Schedule a new email report": ["Agendar um novo relatório de e-mail"], - "Schedule email report": ["Agendar relatório por e-mail"], - "Schedule query": ["Consulta de agendamento"], - "Schedule settings": ["Configurações de agendamento"], - "Schedule the query periodically": ["Agendar a consulta periodicamente"], + "LIMIT": ["LIMITE"], + "State": ["Estado"], + "Started": ["Iniciado"], + "Duration": ["Duração"], + "Results": ["Resultados"], + "Actions": ["Ações"], + "Success": ["Sucesso"], + "Failed": ["Falhou"], + "Running": ["Executando"], + "Fetching": ["Buscando"], + "Offline": ["Offline"], "Scheduled": ["Agendado"], - "Scheduled at (UTC)": ["Programado em (UTC)"], - "Scheduled task executor not found": [ - "O executor da tarefa agendada não foi encontrado" + "Unknown Status": ["Status Desconhecido"], + "Edit": ["Editar"], + "View": ["Ver"], + "Data preview": ["Pré-visualização de dados"], + "Overwrite text in the editor with a query on this table": [ + "Substituir o texto no editor por uma consulta nesta tabela" ], - "Schema": ["Esquema"], - "Schema cache timeout": ["Tempo limite do cache de esquema"], - "Schema undefined": ["Esquema indefinido"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Esquema, como usado apenas em alguns bancos de dados como Postgres, Redshift e DB2" + "Run query in a new tab": ["Executar consulta em uma nova guia"], + "Remove query from log": ["Remover consulta do log"], + "Unable to create chart without a query id.": [ + "Não é possível criar um gráfico sem um ID de consulta." ], - "Schemas allowed for File upload": [ - "Esquemas permitidos para upload de arquivos" + "Save & Explore": ["Salvar e Explorar"], + "Overwrite & Explore": ["Sobrescrever & Explorar"], + "Save this query as a virtual dataset to continue exploring": [ + "Salvar esta consulta como um conjunto de dados virtual para continuar explorando" ], - "Scope": ["Escopo"], - "Scoping": ["Escopo"], - "Scroll": ["Rolagem"], - "Search": ["Pesquisar"], - "Search / Filter": ["Pesquisa / Filtro"], - "Search Metrics & Columns": ["Pesquisar Métricas e Colunas"], - "Search all charts": ["Pesquisar todos os gráficos"], - "Search all filter options": ["Pesquisar todas as opções de filtro"], - "Search box": ["Caixa de pesquisa"], - "Search by query text": ["Pesquisar consulta"], - "Search columns": ["Colunas de pesquisa"], - "Search in filters": ["Pesquisar em filtros"], - "Search tables": ["Pesquisar tabelas"], - "Search...": ["Pesquisar..."], - "Second": ["Segundo"], - "Secondary": ["Secundário"], - "Secondary Metric": ["Métrica secundária"], - "Secondary y-axis format": ["Formato do eixo y secundário"], - "Secondary y-axis title": ["Título secundário do eixo y"], - "Seconds %s": ["Segundos %s"], - "Secure Extra": ["Segurança Extra"], - "Secure extra": ["Segurança Extra"], - "Security": ["Segurança"], - "Security & Access": ["Segurança e Acesso"], - "See all %(tableName)s": ["Ver todos %(tableName)s"], - "See less": ["Veja menos"], - "See more": ["Ver mais"], - "See query details": ["Ver detalhes da consulta"], - "See table schema": ["Ver esquema da tabela"], - "Select": ["Selecione"], - "Select ...": ["Selecione ..."], - "Select Delivery Method": ["Selecione o método de entrega"], - "Select Viz Type": ["Selecione o tipo de visualização"], - "Select a Columnar file to be uploaded to a database.": [ - "Selecione um arquivo colunar a ser carregado em um banco de dados." + "Download to CSV": ["Baixar para CSV"], + "Copy to Clipboard": ["Copiar para Área de transferência"], + "Filter results": ["Filtrar resultados"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "O número de resultados apresentados é limitado a %(rows)d pela configuração DISPLAY_MAX_ROW. Adicione limites/filtros adicionais ou descarregue para csv para ver mais linhas até ao limite de %(limit)d." ], - "Select a Excel file to be uploaded to a database.": [ - "Selecione um arquivo do Excel para ser carregado para um banco de dados." + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "O número de resultados apresentados está limitado a %(rows)d. Adicione limites/filtros adicionais, transfira para csv ou contate um administrador para ver mais linhas até ao limite de %(limit)d." ], - "Select a column": ["Selecione uma coluna"], - "Select a dashboard": ["Selecione um painel"], - "Select a database table and create dataset": [ - "Selecione uma tabela de banco de dados e crie um conjunto de dados" + "The number of rows displayed is limited to %(rows)d by the query": [ + "O número de linhas exibidas é limitado a %(rows)d pela consulta" ], - "Select a database table.": ["Selecione uma tabela de banco de dados."], - "Select a database to connect": [ - "Selecione um banco de dados para se conectar" + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "O número de linhas exibidas é limitado a %(rows)d pelo menu suspenso de limite." ], - "Select a database to upload the file to": [ - "Selecione um banco de dados para enviar o arquivo" + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "O número de linhas exibidas é limitado a %(rows)d pela consulta e pelo menu suspenso de limite." ], - "Select a database to write a query": [ - "Selecione um banco de dados para escrever uma consulta" + "%(rows)d rows returned": ["%(rows)d linhas retornadas"], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "O número de linhas apresentadas é limitado a %(rows)d pelo menu suspenso." ], - "Select a dimension": ["Selecione uma dimensão"], - "Select a file to be uploaded to the database": [ - "Selecione um arquivo a ser carregado no banco de dados" + "Track job": ["Rastrear o trabalho"], + "See query details": ["Ver detalhes da consulta"], + "Query was stopped": ["A consulta foi interrompida"], + "Database error": ["Erro no banco de dados"], + "was created": ["foi criado"], + "Query in a new tab": ["Consulta em uma nova guia"], + "The query returned no data": ["A consulta não retornou dados"], + "Fetch data preview": ["Obter pré-visualização de dados"], + "Refetch results": ["Recuperar resultados"], + "Stop": ["Parar"], + "Run selection": ["Executar seleção"], + "Run": ["Executar"], + "Stop running (Ctrl + x)": ["Parar execução (Ctrl + x)"], + "Stop running (Ctrl + e)": ["Parar a execução (Ctrl + e)"], + "Run query (Ctrl + Return)": ["Executar consulta (Ctrl + Return)"], + "Save": ["Salvar"], + "Untitled Dataset": ["Conjunto de dados sem título"], + "An error occurred saving dataset": [ + "Ocorreu um erro ao salvar conjunto de dados" ], - "Select a schema if the database supports this": [ - "Selecione um esquema se o banco de dados for compatível com isso" + "Save or Overwrite Dataset": ["Salvar ou Sobrescrever Conjunto de dados"], + "Back": ["Voltar"], + "Save as new": ["Salvar como novo"], + "Overwrite existing": ["Sobrescrever existente"], + "Select or type dataset name": [ + "Selecione ou digite o nome do conjunto de dados" ], - "Select a visualization type": ["Selecione um tipo de visualização"], - "Select any columns for metadata inspection": [ - "Selecionar quaisquer colunas para inspeção de metadados" + "Existing dataset": ["Conjunto de dados existente"], + "Are you sure you want to overwrite this dataset?": [ + "Tem certeza de que deseja substituir esse conjunto de dados?" ], - "Select charts": ["Selecionar gráficos"], - "Select color scheme": ["Selecione o esquema de cores"], - "Select column": ["Selecionar coluna"], - "Select current page": ["Selecionar a página atual"], - "Select database & schema": ["Selecione o banco de dados e o esquema"], - "Select database or type to search databases": [ - "Selecione o banco de dados ou o tipo para pesquisar bancos de dados" + "Undefined": ["Indefinido"], + "Save dataset": ["Salvar conjunto de dados"], + "Save as": ["Salvar como"], + "Save query": ["Salvar consulta"], + "Cancel": ["Cancelar"], + "Update": ["Atualização"], + "Label for your query": ["Rótulo para sua consulta"], + "Write a description for your query": [ + "Escreva uma descrição para sua consulta" ], - "Select database table": ["Selecione a tabela do banco de dados"], - "Select dataset source": ["Selecione a fonte do conjunto de dados"], - "Select file": ["Selecionar arquivo"], - "Select filter": ["Selecionar filtro"], - "Select filter plugin using AntD": [ - "Selecione plug-in de filtro usando AntD" + "Submit": ["Enviar"], + "Schedule query": ["Consulta de agendamento"], + "Schedule": ["Cronograma"], + "There was an error with your request": [ + "Houve um erro em sua solicitação" ], - "Select first filter value by default": [ - "Selecione primeiro valor do filtro por padrão" + "Please save the query to enable sharing": [ + "Por favor salvar a consulta para habilitar compartilhamento" ], - "Select operator": ["Selecionar operador"], - "Select or type a value": ["Selecione ou digite um valor"], - "Select or type dataset name": [ - "Selecione ou digite o nome do conjunto de dados" + "Copy query link to your clipboard": [ + "Copiar link de consulta para sua área de transferência" ], - "Select owners": ["Selecionar proprietários"], - "Select saved metrics": ["Selecionar métricas salvas"], - "Select schema or type to search schemas": [ - "Selecione o esquema ou o tipo para pesquisar os esquemas" + "Save the query to enable this feature": [ + "Salve a consulta para ativar esse recurso" ], - "Select scheme": ["Selecionar esquema"], - "Select start and end date": ["Selecionar data de início e fim"], - "Select subject": ["Selecionar assunto"], - "Select table or type to search tables": [ - "Selecione a tabela ou digite para pesquisar tabelas" + "Copy link": ["Copiar link"], + "No stored results found, you need to re-run your query": [ + "Não foram encontrados resultados armazenados, é necessário executar novamente a consulta" ], - "Select the Annotation Layer you would like to use.": [ - "Selecione a camada de anotação que você gostaria de usar." + "Run a query to display results": [ + "Executar uma consulta para exibir os resultados" ], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Preview: `%s`": ["Pré-visualização: `%s`"], + "Query history": ["Histórico de consultas"], + "Schedule the query periodically": ["Agendar a consulta periodicamente"], + "You must run the query successfully first": [ + "Primeiro, você deve executar a consulta com êxito" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Autocomplete": ["Autocompletar"], + "CREATE TABLE AS": ["CREATE TABLE AS"], + "CREATE VIEW AS": ["CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "Estimar o custo antes de executar uma consulta" ], - "Select the geojson column": ["Selecione a coluna geojson"], - "Select the number of bins for the histogram": [ - "Selecionar o número de caixas para o histograma" + "Specify name to CREATE VIEW AS schema in: public": [ + "Especificar o nome para CREATE VIEW AS schema in: public" ], - "Select the numeric columns to draw the histogram": [ - "Selecionar as colunas numéricas para desenhar o histograma" + "Specify name to CREATE TABLE AS schema in: public": [ + "Especificar o nome para CREATE TABLE AS schema in: public" ], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ - "Selecione os valores no(s) campo(s) destacado(s) no painel de controle. Em seguida, execute a consulta clicando no botão %s." + "Select a database to write a query": [ + "Selecione um banco de dados para escrever uma consulta" ], - "Send as CSV": ["Enviar como CSV"], - "Send as PNG": ["Enviar como PNG"], - "Send as text": ["Enviar como texto"], - "Send range filter events to other charts": [ - "Enviar filtro de intervalo eventos para outro gráficos" + "Choose one of the available databases from the panel on the left.": [ + "Escolha um dos bancos de dados disponíveis no painel na esquerda." ], - "September": ["Setembro"], - "Sequential": ["Sequencial"], - "Series": ["Série"], - "Series Height": ["Altura da série"], - "Series Limit Sort By": ["Limite da série Ordenar por"], - "Series Limit Sort Descending": ["Limite da série Ordenação decrescente"], - "Series Order": ["Ordem da série"], - "Series Style": ["Estilo da série"], - "Series chart type (line, bar etc)": [ - "Tipo de Gráfico de série (linha , barra etc)" + "Create": ["Criar"], + "Collapse table preview": ["Recolher a visualização da tabela"], + "Expand table preview": ["Expandir visualização da tabela"], + "Reset state": ["Redefinir estado"], + "Enter a new title for the tab": ["Digite um novo título para a aba"], + "Close tab": ["Fechar aba"], + "Rename tab": ["Renomear Aba"], + "Expand tool bar": ["Expandir barra de ferramentas"], + "Hide tool bar": ["Esconder barra de ferramentas"], + "Close all other tabs": ["Fechar todas as outras abas"], + "Duplicate tab": ["Duplicar aba"], + "Add a new tab": ["Adicionar uma nova aba"], + "New tab (Ctrl + q)": ["Nova guia (Ctrl + q)"], + "New tab (Ctrl + t)": ["Nova guia (Ctrl + t)"], + "Add a new tab to create SQL Query": [ + "Adicionar uma nova guia para criar Consulta SQL" ], - "Series limit": ["Limite da série"], - "Series type": ["Tipo de série"], - "Server Page Length": ["Comprimento da página do servidor"], - "Server pagination": ["Paginação do servidor"], - "Service Account": ["Conta de serviço"], - "Set auto-refresh interval": [ - "Definir intervalo da atualização automática" - ], - "Set filter mapping": ["Definir o mapeamento de filtros"], - "Set up an email report": ["Configurar um relatório de e-mail"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "Define os níveis hierárquicos do gráfico. Cada nível é\n representado por um anel, sendo o círculo mais interno o topo da hierarquia." - ], - "Settings": ["Configurações"], - "Settings for time series": ["Configurações para séries temporais"], - "Share": ["Compartilhar"], - "Share chart by email": ["Compartilhar gráfico por e-mail"], - "Share permalink by email": ["Compartilhar permalink por e-mail"], - "Shared query": ["Consulta compartilhada"], - "Sheet Name": ["Nome da planilha"], - "Shift + Click to sort by multiple columns": [ - "Shift + clique para organizar por colunas múltiplas" - ], - "Short description must be unique for this layer": [ - "Uma breve descrição deve ser única para essa camada" - ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Deve ser aplicada a sazonalidade diária. Um valor inteiro especificará a ordem de Fourier da sazonalidade." + "An error occurred while fetching table metadata": [ + "Ocorreu um erro ao obter os metadados da tabela" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Deve ser aplicada a sazonalidade semanal. Um valor inteiro especificará a ordem de Fourier da sazonalidade." + "Copy partition query to clipboard": [ + "Copiar consulta de partição para a área de transferência" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Deve ser aplicada a sazonalidade anual. Um valor inteiro especificará a ordem de Fourier da sazonalidade." + "latest partition:": ["partição mais recente:"], + "Keys for table": ["Chaves da tabela"], + "View keys & indexes (%s)": ["Exibir chaves e índices (%s)"], + "Original table column order": ["Ordem das colunas da tabela original"], + "Sort columns alphabetically": ["Ordenar colunas alfabeticamente"], + "Copy SELECT statement to the clipboard": [ + "Copiar instrução SELECT para a área de transferência" ], - "Show": ["Mostrar"], - "Show Bubbles": ["Mostrar bolhas"], "Show CREATE VIEW statement": ["Mostrar instrução CREATE VIEW"], - "Show CSS Template": ["Mostral modelo CSS"], - "Show Chart": ["Mostrar Gráfico"], - "Show Column": ["Mostrar Coluna"], - "Show Dashboard": ["Mostrar Painel"], - "Show Database": ["Mostrar Banco de dados"], - "Show Labels": ["Mostrar rótulos"], - "Show Less...": ["Mostrar Menos..."], - "Show Log": ["Mostrar log"], - "Show Markers": ["Mostrar Marcadores"], - "Show Metric": ["Mostrar Métricas"], - "Show Metric Names": ["Mostrar nomes de métricas"], - "Show Range Filter": ["Mostrar filtro de intervalo"], - "Show Saved Query": ["Mostrar Consulta Salva"], - "Show Table": ["Mostrar Tabela"], - "Show Timestamp": ["Mostrar Carimbo de data/hora"], - "Show Total": ["Mostrar total"], - "Show Trend Line": ["Mostrar Linha de Tendência"], - "Show Upper Labels": ["Mostrar Sótulos Superiores"], - "Show Value": ["Mostrar valor"], - "Show Values": ["Mostrar valores"], - "Show Y-axis": ["Mostrar eixo Y"], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "Mostra o eixo Y na Sparkline. Exibirá os valores mínimo/máximo definidos manualmente, se definidos, ou os valores mínimo/máximo nos dados, caso contrário." - ], - "Show all columns": ["Mostrar todas as colunas"], - "Show all...": ["Mostrar tudo..."], - "Show axis line ticks": ["Mostrar os tiques das linhas de eixo"], - "Show cell bars": ["Mostrar barras de células"], - "Show chart description": ["Mostrar descrição do gráfico"], - "Show columns total": ["Mostrar o total de colunas"], - "Show data points as circle markers on the lines": [ - "Mostrar pontos de dados como marcadores de círculos nas linhas" - ], - "Show empty columns": ["Mostrar colunas vazias"], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ - "Mostrar relações hierárquicas de dados, com o valor representado pela área, mostrando a proporção e a contribuição para o todo." - ], - "Show info tooltip": ["Mostrar dica de ferramentas de informação"], - "Show label": ["Exibir rótulo"], - "Show labels when the node has children.": [ - "Mostrar rótulos quando o nó tiver filhos." - ], - "Show legend": ["Mostrar legenda"], - "Show less columns": ["Mostrar menos colunas"], - "Show less...": ["Mostrar menos..."], - "Show only my charts": ["Mostrar apenas meu gráficos"], - "Show password.": ["Mostrar senha."], - "Show percentage": ["Mostrar porcentagem"], - "Show pointer": ["Mostrar ponteiro"], - "Show progress": ["Mostrar progresso"], - "Show rows total": ["Mostrar total de linhas"], - "Show series values on the chart": [ - "Mostrar valores de série sobre o gráfico" - ], - "Show split lines": ["Mostrar linhas divididas"], - "Show the value on top of the bar": [ - "Mostrar o valor na parte superior da barra" - ], - "Show time column": ["Mostrar coluna de tempo"], - "Show time grain dropdown": ["Exibir menu suspenso de grãos de tempo"], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "Mostrar agregações totais de métricas selecionadas. Note que o limite de linhas não se aplica ao resultado." - ], - "Show totals": ["Mostrar os totais"], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "Apresenta uma única métrica em primeiro plano. Um número grande é melhor utilizado para chamar a atenção para um KPI ou para aquilo em que pretende que o seu público se concentre." - ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "Apresenta um único número acompanhado por um gráfico de linhas simples, para chamar a atenção para uma métrica importante juntamente com a sua alteração ao longo do tempo ou outra dimensão." + "CREATE VIEW statement": ["Declaração CREATE VIEW"], + "Remove table preview": ["Remover a pré-visualização da tabela"], + "Assign a set of parameters as": [ + "Atribuir um conjunto de parâmetros como" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "Mostra como uma métrica muda à medida que o funil progride. Este gráfico clássico é útil para visualizar a queda entre as fases de um pipeline ou ciclo de vida." + "below (example:": ["abaixo (exemplo:"], + "), and they become available in your SQL (example:": [ + "), e eles tornaram-se disponíveis no seu SQL (exemplo:" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "Mostra o fluxo ou a ligação entre categorias utilizando a espessura das cordas. O valor e a espessura correspondente podem ser diferentes para cada lado." + "by using": ["usando"], + "Jinja templating": ["Modelo Jinja"], + "syntax.": ["sintaxe."], + "Edit template parameters": ["Editar parâmetros do modelo"], + "Invalid JSON": ["JSON inválido"], + "Untitled query": ["Consulta sem título"], + "%s%s": ["%s%s"], + "Control": ["Controle"], + "Before": ["Antes de"], + "After": ["Depois de"], + "Click to see difference": ["Clique para ver diferença"], + "Altered": ["Alterado"], + "Chart changes": ["Alterações no gráfico"], + "Loaded data cached": ["Dados carregados em cache"], + "Loaded from cache": ["Carregado da cache"], + "Click to force-refresh": ["Clique para forçar a atualização"], + "Cached": ["Em cache"], + "Add required control values to preview chart": [ + "Adicionar controle de valores obrigatórios para visualizar o gráfico" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "Apresenta o progresso de uma única métrica em relação a um determinado objetivo. Quanto mais elevado for o preenchimento, mais próxima está a métrica do objetivo." + "Your chart is ready to go!": ["Seu gráfico está pronto para ser usado!"], + "click here": ["clique aqui"], + "No results were returned for this query": [ + "Não foram apresentados resultados para esta consulta" ], - "Showing %s of %s": ["Mostrando %s de %s"], - "Shows a list of all series available at that point in time": [ - "Mostra uma lista de todas as séries disponíveis nesse ponto no tempo" + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Certifique-se de que os controles estão corretamente configurados e que a fonte de dados contém dados para o intervalo de tempo selecionado" ], - "Shows or hides markers for the time series": [ - "Mostra ou esconde marcadores para a série temporal" + "An error occurred while loading the SQL": [ + "Ocorreu um erro ao carregar o SQL" ], - "Significance Level": ["Nível de significância"], - "Simple": ["Simples"], - "Simple ad-hoc metrics are not enabled for this dataset": [ - "As métricas ad-hoc simples não estão ativadas para este conjunto de dados" + "Sorry, an error occurred": ["Desculpe, ocorreu um erro"], + "Updating chart was stopped": [ + "A atualização do gráfico foi interrompida" ], - "Single": ["Individual"], - "Single Metric": ["Métrica única"], - "Single Value": ["Valor único"], - "Single value": ["Valor único"], - "Single value type": ["Tipo de valor único"], - "Size of edge symbols": ["Tamanho dos símbolos de aresta"], - "Size of marker. Also applies to forecast observations.": [ - "Tamanho do marcador. Também se aplica às observações de previsão." + "An error occurred while rendering the visualization: %s": [ + "Ocorreu um erro ao renderizar a visualização: %s" ], - "Sizes of vehicles": ["Tamanhos de veículos"], - "Skip Blank Lines": ["Pular Linhas em branco"], - "Skip Initial Space": ["Pular espaço inicial"], - "Skip Rows": ["Pular Linhas"], - "Skip blank lines rather than interpreting them as Not A Number values": [ - "Ignorar linhas em branco em vez de interpretá-las como valores não numéricos" + "Network error.": ["Erro de rede."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Filtro cruzado vai ser aplicado para todos os gráficos que utilizam esse conjunto de dados." ], - "Skip spaces after delimiter": ["Ignorar espaços após o delimitador"], - "Slug": ["Slug"], - "Small": ["Pequeno"], - "Small number format": ["Formato de número pequenoo"], - "Smooth Line": ["Linha Suave"], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "A linha suave é uma variação do gráfico de linhas. Sem ângulos nem arestas, a linha suave tem por vezes um aspecto mais inteligente e profissional." + "You can also just click on the chart to apply cross-filter.": [ + "Você também pode simplesmente clicar no gráfico para aplicar o filtro cruzado." ], - "Solid": ["Sólido"], - "Some roles do not exist": ["Algumas funções não existem"], - "Something went wrong.": ["Algo não correu bem."], - "Sorry there was an error fetching database information: %s": [ - "Lamentamos, mas ocorreu um erro ao obter as informações do banco de dados: %s" + "Cross-filtering is not enabled for this dashboard.": [ + "A filtragem cruzada não está ativada para esse painel." ], - "Sorry, An error occurred": ["Desculpe, ocorreu um erro"], - "Sorry, an error occurred": ["Desculpe, ocorreu um erro"], - "Sorry, an unknown error occurred": [ - "Desculpe, ocorreu um erro desconhecido" + "This visualization type does not support cross-filtering.": [ + "Esse tipo de visualização não oferece suporte à filtragem cruzada." ], - "Sorry, an unknown error occurred.": [ - "Desculpe, ocorreu um erro desconhecido." + "You can't apply cross-filter on this data point.": [ + "Não é possível aplicar filtro cruzado a esse ponto de dados." ], - "Sorry, something went wrong. Embedding could not be deactivated.": [ - "Desculpe, ocorreu um erro. Não foi possível desativar a incorporação." + "Remove cross-filter": ["Remover filtro cruzado"], + "Add cross-filter": ["Adicionar filtro cruzado"], + "Drill by is not yet supported for this chart type": [ + "Drill by não é suportado para esse tipo de gráfico" ], - "Sorry, something went wrong. Try again later.": [ - "Desculpe, ocorreu um erro. Tente novamente mais tarde." + "Drill by is not available for this data point": [ + "Drill by não está disponível para este ponto de dados" ], - "Sorry, there appears to be no data": [ - "Desculpe, mas parece que não existem dados" + "Drill by": ["Drill by"], + "Search columns": ["Colunas de pesquisa"], + "No columns found": ["Nenhuma coluna encontrada"], + "Edit chart": ["Editar gráfico"], + "Close": ["Fechar"], + "Failed to load chart data.": ["Falha ao carregar dados do gráfico."], + "Drill by: %s": ["Drill by: %s"], + "Results %s": ["Resultados %s"], + "Drill to detail by": ["Drill to detail por"], + "Drill to detail": ["Drill to detail"], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Drill to detail está desabilitado porque esse gráfico não agrupar dados por valor da dimensão." ], - "Sorry, there was an error saving this %s: %s": [ - "Desculpe, houve um erro ao salvar este %s: %s" + "Drill to detail by value is not yet supported for this chart type.": [ + "Drill to detail por valor ainda não é suportado para esse tipo de gráfico." ], - "Sorry, there was an error saving this dashboard: %s": [ - "Desculpe, houve um erro ao salvar este painel: %s" + "Right-click on a dimension value to drill to detail by that value.": [ + "Clique com o botão direito do mouse em valor de dimensão para pesquisar detalhes por esse valor." ], - "Sorry, your browser does not support copying.": [ - "Desculpe, seu navegador não suporta cópias." + "Drill to detail: %s": ["Drill to detail: %s"], + "Formatting": ["Formatação"], + "Formatted value": ["Valor formatado"], + "No rows were returned for this dataset": [ + "Não foram devolvidas linhas para este conjunto de dados" ], + "Reload": ["Recarregar"], + "Copy": ["Copiar"], + "Copy to clipboard": ["Copiar para área de transferência"], + "Copied to clipboard!": ["Copiado para a área de transferência!"], "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ "Desculpe, seu navegador não suporta cópias. Use Ctrl / Cmd + C!" ], - "Sort": ["Classificar"], - "Sort Bars": ["Barras de classificação"], - "Sort Descending": ["Ordenação decrescente"], - "Sort Metric": ["Classificar métrica"], - "Sort Series Ascending": ["Ordenar séries em ordem crescente"], - "Sort Series By": ["Ordenar séries por"], - "Sort X Axis": ["Ordenar Eixo X"], - "Sort Y Axis": ["Ordenar Eixo Y"], - "Sort ascending": ["Ordenação crescente"], - "Sort bars by x labels.": ["Ordenar as barras por rótulos x."], - "Sort by": ["Ordenar por"], - "Sort by %s": ["Ordenar por %s"], - "Sort by metric": ["Classificar por métrica"], - "Sort columns alphabetically": ["Ordenar colunas alfabeticamente"], - "Sort columns by": ["Classificar colunas por"], - "Sort descending": ["Ordenação decrescente"], - "Sort filter values": ["Valores do filtro de classificação"], - "Sort metric": ["Ordenar métrica"], - "Sort rows by": ["Ordenar as linhas por"], - "Sort series in ascending order": [ - "Ordenar as séries por ordem crescente" + "every": ["todos"], + "every month": ["a cada mês"], + "every day of the month": ["todos os dias do mês"], + "day of the month": ["dia do mês"], + "every day of the week": ["todos os dias da semana"], + "day of the week": ["dia da semana"], + "every hour": ["a cada hora"], + "minute": ["minuto"], + "reboot": ["reiniciar"], + "Every": ["Todo"], + "in": ["em"], + "on": ["em"], + "and": ["e"], + "at": ["em"], + ":": [":"], + "minute(s)": ["minuto(s)"], + "Invalid cron expression": ["Expressão cron inválida"], + "Clear": ["Limpar"], + "Sunday": ["Domingo"], + "Monday": ["Segunda-feira"], + "Tuesday": ["Terça"], + "Wednesday": ["Quarta-feira"], + "Thursday": ["Quinta"], + "Friday": ["Sexta"], + "Saturday": ["Sábado"], + "January": ["Janeiro"], + "February": ["Fevereiro"], + "March": ["Março"], + "April": ["Abril"], + "May": ["Maio"], + "June": ["Junho"], + "July": ["Julho"], + "August": ["Agosto"], + "September": ["Setembro"], + "October": ["Outubro"], + "November": ["Novembro"], + "December": ["Dezembro"], + "SUN": ["DOM"], + "MON": ["SEG"], + "TUE": ["TER"], + "WED": ["QUA"], + "THU": ["QUI"], + "FRI": ["SEX"], + "SAT": ["SAB"], + "JAN": ["JAN"], + "FEB": ["FEV"], + "MAR": ["MAR"], + "APR": ["ABR"], + "MAY": ["MAIO"], + "JUN": ["JUN"], + "JUL": ["JUL"], + "AUG": ["AGO"], + "SEP": ["SET"], + "OCT": ["OUT"], + "NOV": ["NOV"], + "DEC": ["DEZ"], + "There was an error loading the schemas": [ + "Ocorreu um erro ao carregar os esquemas" ], - "Sort type": ["Tipo de classificação"], - "Source": ["Fonte"], - "Source / Target": ["Fonte / Alvo"], - "Source SQL": ["Fonte SQL"], - "Source category": ["Categoria de origem"], - "Sparkline": ["Sparkline"], - "Spatial": ["Espacial"], - "Specific Date/Time": ["Data/Hora Específica"], - "Specify a schema (if database flavor supports this).": [ - "Especificar um esquema (se o variante do banco de dados o suportar)." + "Select database or type to search databases": [ + "Selecione o banco de dados ou o tipo para pesquisar bancos de dados" ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Especificar colunas duplicadas como \"X.0, X.1\"." + "Force refresh schema list": ["Forçar atualização da lista de esquemas"], + "Select schema or type to search schemas": [ + "Selecione o esquema ou o tipo para pesquisar os esquemas" ], - "Specify name to CREATE TABLE AS schema in: public": [ - "Especificar o nome para CREATE TABLE AS schema in: public" + "No compatible schema found": [ + "Nenhum esquema compatível foi encontrado" ], - "Specify name to CREATE VIEW AS schema in: public": [ - "Especificar o nome para CREATE VIEW AS schema in: public" + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os metadados não existirem." ], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "Especifique a versão do banco de dados. Isto deve ser utilizado com o Presto para permitir a estimativa do custo da consulta." + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Alterar o conjunto de dados pode quebrar o gráfico se o gráfico depender de colunas ou metadados que não existem no conjunto de dados de destino" ], - "Split number": ["Número de divisão"], - "Square kilometers": ["Quilômetros quadrados"], - "Square meters": ["Metros quadrados"], - "Square miles": ["Milhas quadradas"], - "Stack": ["Pilha"], - "Stack Trace:": ["Rastreamento de Pilha:"], - "Stack series": ["Empilhar série"], - "Stack series on top of each other": [ - "Empilhar séries umas sobre as outras" + "dataset": ["dataset"], + "Successfully changed dataset!": [ + "Conjunto de dados alterado com sucesso!" ], - "Stacked": ["Empilhado"], - "Stacked Bars": ["Barras empilhadas"], - "Stacked Style": ["Estilos empilhados"], - "Stacked style": ["Estilos empilhados"], - "Standard time series": ["Série temporal padrão"], - "Start": ["Iniciar"], - "Start Longitude & Latitude": ["Longitude e latitude iniciais"], - "Start Review": ["Iniciar revisão"], - "Start angle": ["Ângulo inicial"], - "Start at (UTC)": ["Início em (UTC)"], - "Start date": ["Data de início"], - "Start date included in time range": [ - "Data de início incluída no intervalo de tempo" + "Connection": ["Conexão"], + "Swap dataset": ["Trocar conjunto de dados"], + "Warning!": ["Atenção!"], + "Search / Filter": ["Pesquisa / Filtro"], + "Add item": ["Adicionar item"], + "STRING": ["STRING"], + "NUMERIC": ["NUMÉRICO"], + "DATETIME": ["DATA"], + "BOOLEAN": ["BOLEANO"], + "Physical (table or view)": ["Físico (tabela ou view)"], + "Virtual (SQL)": ["Virtual (SQL)"], + "Data type": ["Tipo de dado"], + "Advanced data type": ["Tipo de dados avançado"], + "Advanced Data type": ["Tipo de dados avançado"], + "Datetime format": ["Formato de data e hora"], + "Python datetime string pattern": [ + "Padrão de String de data e hora em Python" ], - "Start y-axis at 0": ["Iniciar o eixo y em 0"], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "Iniciar o eixo y em zero. Desmarque para iniciar o eixo y no valor mínimo dos dados." + "ISO 8601": ["ISO 8601"], + "Certified By": ["Certificado Por"], + "Person or group that has certified this metric": [ + "Pessoa ou grupo que certificou esta métrica" ], - "Started": ["Iniciado"], - "State": ["Estado"], - "Statement %(statement_num)s out of %(statement_count)s": [ - "Instrução %(statement_ num)s de % (statement_count)s" + "Certified by": ["Certificado por"], + "Certification details": ["Detalhes de certificação"], + "Details of the certification": ["Detalhes da certificação"], + "Is dimension": ["É dimensão"], + "Default datetime": ["Data/hora padrão"], + "Is filterable": ["É filtrável"], + "": [""], + "Select owners": ["Selecionar proprietários"], + "Modified columns: %s": ["Colunas modificadas: %s"], + "Removed columns: %s": ["Colunas removidas: %s"], + "New columns added: %s": ["Novas colunas adicionadas: %s"], + "Metadata has been synced": ["Os metadados foram sincronizados"], + "An error has occurred": ["Ocorreu um erro"], + "Column name [%s] is duplicated": ["Nome da coluna [%s] está duplicado"], + "Metric name [%s] is duplicated": ["Métrica nome [%s] está duplicada"], + "Calculated column [%s] requires an expression": [ + "A coluna calculada [%s] requer uma expressão" ], - "Statistical": ["Estatístico"], - "Status": ["Estado"], - "Step - end": ["Etapa - fim"], - "Step - middle": ["Passo - meio"], - "Step - start": ["Passo - início"], - "Step type": ["Tipo de etapa"], - "Stepped Line": ["Linha escalonada"], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "O gráfico de linhas escalonadas (também designado por gráfico de passos) é uma variação do gráfico de linhas, mas com a linha a formar uma série de passos entre os pontos de dados. Um gráfico escalonado pode ser útil quando se pretende mostrar as alterações que ocorrem em intervalos irregulares." + "Invalid currency code in saved metrics": [""], + "Basic": ["Básico"], + "Default URL": ["URL padrão"], + "Default URL to redirect to when accessing from the dataset list page": [ + "URL padrão para o qual redirecionar quando acessar da página da lista de conjuntos de dados" ], - "Stop": ["Parar"], - "Stop query": ["Parar consulta"], - "Stop running (Ctrl + e)": ["Parar a execução (Ctrl + e)"], - "Stop running (Ctrl + x)": ["Parar execução (Ctrl + x)"], - "Stopped an unsafe database connection": [ - "Parou uma conexão insegura ao banco de dados" + "Autocomplete filters": ["Filtros de preenchimento automático"], + "Whether to populate autocomplete filters options": [ + "Se as opções de filtros de preenchimento automático devem ser preenchidas" ], - "Stream": ["Fluxo"], - "Streets": ["Ruas"], - "Strength to pull the graph toward center": [ - "Força para puxar o gráfico para o centro" + "Autocomplete query predicate": [ + "Predicado de consulta de preenchimento automático" ], - "Stretched style": ["Estilo alongado"], - "Strings used for sheet names (default is the first sheet).": [ - "Cadeias de caracteres usadas para nomes de planilhas (o padrão é a primeira planilha)." + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Ao usar \"Autocomplete filters\", isso pode ser usado para melhorar o desempenho da consulta que busca os valores. Use essa opção para aplicar um predicado (cláusula WHERE) à consulta que seleciona os valores distintos da tabela. Normalmente, a intenção seria limitar a varredura aplicando um filtro de tempo relativo em um campo particionado ou indexado relacionado ao tempo." ], - "Stroke Color": ["Cor do traço"], - "Stroke Width": ["Largura do traço"], - "Stroked": ["Tracejado"], - "Structural": ["Estrutural"], - "Style": ["Estilo"], - "Style the ends of the progress bar with a round cap": [ - "Estilizar as extremidades da barra de progresso com uma tampa redonda" + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Dados extras para especificar metadados de tabela. Atualmente suporta metadados do formato: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`." ], - "Subdomain": ["Subdomínio"], - "Subheader": ["Subtítulo"], - "Subheader Font Size": ["Tamanho da fonte do subtítulo"], - "Submit": ["Enviar"], - "Subtotal": ["Subtotal"], - "Success": ["Sucesso"], - "Successfully changed dataset!": [ - "Conjunto de dados alterado com sucesso!" + "Cache timeout": ["Tempo limite da cache"], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "O período de tempo, em segundos, antes de o cache ser invalidado. Defina como -1 para ignorar o cache." ], - "Suffix to apply after the percentage display": [ - "Sufixo para aplicar após a apresentação da percentagem" + "Hours offset": ["Compensação de horas"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "O número de horas, negativo ou positivo, para deslocar a coluna da hora. Isto pode ser utilizado para mudar a hora UTC para a hora local." ], - "Sum": ["Soma"], - "Sum as Fraction of Columns": ["Soma como Fração de Colunas"], - "Sum as Fraction of Rows": ["Soma como Fração de Linhas"], - "Sum as Fraction of Total": ["Soma como Fração do Total"], - "Sum of values over specified period": [ - "Soma dos valores durante o período especificado" + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ + "" ], - "Sum values": ["Valores da soma"], - "Sunburst": ["Sunburst"], - "Sunburst Chart": ["Gráfico Sunburst"], - "Sunburst Chart v2": ["Gráfico Sunburst v2"], - "Sunday": ["Domingo"], - "Superset Embedded SDK documentation.": [ - "Documentação do SDK incorporado Superset." + "": [""], + "": [""], + "Click the lock to make changes.": [ + "Clique no cadeado para fazer alterações." ], - "Superset chart": ["Gráfico do Superset"], - "Superset dashboard": ["Painel Superset"], - "Superset encountered an error while running a command.": [ - "O Superset encontrou um erro ao executar um comando." + "Click the lock to prevent further changes.": [ + "Clique no cadeado para evitar avançar mudanças." ], - "Superset encountered an unexpected error.": [ - "O Superset encontrou um erro inesperado." + "virtual": ["virtual"], + "Dataset name": ["Nome do conjunto de dados"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Ao especificar o SQL, a fonte de dados atua como uma visualização. O Superset usará essa instrução como uma subconsulta ao agrupar e filtrar as consultas pai geradas." ], - "Supported databases": ["Bancos de dados compatíveis"], - "Survey Responses": ["Respostas da pesquisa"], - "Swap dataset": ["Trocar conjunto de dados"], - "Swap rows and columns": ["Trocar linhas e colunas"], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Canivete suíço para visualizar dados. Escolha entre gráficos de etapas, de linhas, de dispersão e de barras. Esse tipo de visualização também tem muitas opções de personalização." + "Physical": ["Físico"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "O ponteiro para uma tabela física (ou visualização). Lembre-se de que o gráfico está associado a essa tabela lógica Superset, e essa tabela lógica aponta para a tabela física referenciada aqui." ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Canivete suíço para visualizar dados de séries temporais. Escolha entre gráficos de etapas, de linhas, de dispersão e de barras. Esse tipo de visualização também tem muitas opções de personalização." + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ + "" ], - "Symbol of two ends of edge line": [ - "Símbolo de duas extremidades da linha de borda" + "D3 format": ["Formato D3"], + "Metric currency": [""], + "Warning": ["Advertência"], + "Optional warning about use of this metric": [ + "Aviso opcional sobre o uso dessa métrica" + ], + "": [""], + "Be careful.": ["Cuidado."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "A alteração destas definições afectará todos os gráficos que utilizem este conjunto de dados, incluindo os gráficos pertencentes a outras pessoas." ], - "Symbol size": ["Tamanho do símbolo"], "Sync columns from source": ["Sincronizar colunas da fonte"], - "Syntax": ["Sintaxe"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Calculated columns": ["Colunas calculadas"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "TABLES": ["TABELAS"], - "TEMPORAL X-AXIS": ["EIXO X TEMPORAL"], - "TEMPORAL_RANGE": ["INTERVALO TEMPORAL"], - "THU": ["QUI"], - "TUE": ["TER"], - "Tab name": ["Nome da aba"], - "Tab title": ["Título da aba"], - "Table": ["Tabela"], - "Table %(table)s wasn't found in the database %(db)s": [ - "Tabela %(table)s não foi encontrada no banco de dados %(db)s" + "": [""], + "Settings": ["Configurações"], + "The dataset has been saved": ["O conjunto de dados foi salvo"], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "A configuração do conjunto de dados exposta aqui afeta todos os gráficos que usam esse conjunto de dados.\n Tenha em mente que alterar as configurações\n aqui pode afetar outros gráficos \n de maneiras indesejáveis." ], - "Table Exists": ["A Tabela existe"], - "Table Name": ["Nome da Tabela"], - "Table View": ["Visão da Tabela"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "Não foi possível encontrar a tabela [%(table_name)s], verifique novamente a conexão ao banco de dados, o esquema e o nome da tabela" + "Are you sure you want to save and apply changes?": [ + "Tem certeza que deseja salvar e aplicar mudanças ?" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "Não foi possível encontrar a tabela [%{table}s], verifique novamente a conexão ao banco de dados, o esquema e o nome da tabela, erro: {}" + "Confirm save": ["Confirmar salvar"], + "OK": ["OK"], + "Use legacy datasource editor": [ + "Usar o editor de fonte de dados herdado" ], - "Table cache timeout": ["Tempo limite do cache da tabela"], - "Table columns": ["Colunas da tabela"], - "Table loading": ["Carregamento da tabela"], - "Table name cannot contain a schema": [ - "O nome da tabela não pode conter um esquema" + "This dataset is managed externally, and can't be edited in Superset": [ + "Esse conjunto de dados é gerenciado externamente e não pode ser editado no Superset" ], - "Table name undefined": ["Não da tabela indefinido"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "Tabela que visualiza testes t emparelhados, que são utilizados para compreender as diferenças estatísticas entre grupos." + "DELETE": ["APAGAR"], + "delete": ["excluir"], + "Type \"%s\" to confirm": ["Digite \"%s\" para confirmar"], + "More": ["Mais informações"], + "Click to edit": ["Clique para editar"], + "You don't have the rights to alter this title.": [ + "Você não tem o direito de alterar esse título." ], - "Tables": ["Tabelas"], - "Tabs": ["Abas"], - "Tabular": ["Tabular"], - "Tag could not be created.": ["Não foi possível criar a tag."], - "Tag could not be deleted.": ["Não foi possível excluir a tag."], - "Tag name is invalid (cannot contain ':')": [ - "O nome do rótulo é inválido (não pode conter ':')" + "No databases match your search": [ + "Nenhum banco de dados corresponde a sua pesquisa" ], - "Tag parameters are invalid.": ["Os parâmetros da tag são inválidos."], - "Tagged Object could not be deleted.": [ - "O objeto marcado não pôde ser excluído." + "There are no databases available": [ + "Não há bancos de dados disponíveis" ], - "Tags": ["Tags"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "Pegue seus pontos de dados e agrupe-os em \"bins\" para ver onde estão as áreas mais densas de informações" + "Manage your databases": ["Gerenciar seus bancos de dados"], + "here": ["aqui"], + "Unexpected error": ["Erro inesperado"], + "This may be triggered by:": ["Isso pode ser provocado por:"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [ + "%(message)s\nIsso pode ser acionado por: \n%(issues)s" ], - "Target": ["Alvo"], - "Target Color": ["Cor do alvo"], - "Target aspect ratio for treemap tiles.": [ - "Alvo de aspecto pretendido para mosaicos de mapas de árvore." + "%s Error": ["%s Erro"], + "Missing dataset": ["Conjunto de dados ausentes"], + "See more": ["Ver mais"], + "See less": ["Veja menos"], + "Copy message": ["Copiar mensagem"], + "Did you mean:": ["Quis dizer:"], + "Parameter error": ["Erro de parâmetro"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ + "%(subtitle)s\nIsso pode ser acionado por:\n %(issue)s" ], - "Target category": ["Categoria de destino"], - "Target value": ["Valor alvo"], - "Template Name": ["Nome do Modelo"], - "Template parameters": ["Parâmetros do Modelo"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Link do modelo, é possível incluir {{ métrica }} ou outros valores provenientes dos controles." + "Timeout error": ["Erro de tempo limite"], + "Click to favorite/unfavorite": ["Clique para favoritar/não favoritar"], + "Cell content": ["Conteúdo da célula"], + "Hide password.": ["Ocultar senha."], + "Show password.": ["Mostrar senha."], + "OVERWRITE": ["SOBRESCREVER"], + "Database passwords": ["Senhas de banco de dados"], + "%s PASSWORD": ["%s SENHA"], + "%s SSH TUNNEL PASSWORD": ["%s SENHA DO TÚNEL SSH"], + "%s SSH TUNNEL PRIVATE KEY": ["%s CHAVE PRIVADA DO TÚNEL SSH"], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [ + "%s SENHA DA CHAVE PRIVADA DO TÚNEL SSH" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "Termina as consultas em execução quando a janela do browser é fechada ou se navega para outra página. Disponível para bancos de dados Presto, Hive, MySQL, Postgres e Snowflake." + "Overwrite": ["Sobrescrever"], + "Import": ["Importar"], + "Import %s": ["Importar %s"], + "Select file": ["Selecionar arquivo"], + "Last Updated %s": ["Última atualização %s"], + "Sort": ["Classificar"], + "+ %s more": ["+ %s mais"], + "%s Selected": ["%s Selecionado"], + "Deselect all": ["Desmarcar tudo"], + "No results match your filter criteria": [ + "Nenhum resultado corresponde aos seus critérios de filtragem" ], - "Test Connection": ["Testar Conexão"], - "Test connection": ["Testar Conexão"], - "Text": ["Texto"], - "Text align": ["Alinhamento Texto"], - "Text embedded in email": ["Texto incorporado no e-mail"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "A resposta da API de %s não corresponde à interface IDatabaseTable." + "Try different criteria to display results.": [ + "Experimente critérios diferentes para exibir os resultados." ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "O CSS para painéis individuais pode ser alterado aqui ou na visão do painel, onde as alterações são imediatamente visíveis" + "clear all filters": ["limpar todos os filtros"], + "No Data": ["Sem dados"], + "%s-%s of %s": ["%s-%s de %s"], + "Start date": ["Data de início"], + "End date": ["Data final"], + "Type a value": ["Digite um valor"], + "Filter": ["Filtro"], + "Select or type a value": ["Selecione ou digite um valor"], + "Last modified": ["Última modificação"], + "Modified by": ["Modificado por"], + "Created by": ["Criado por"], + "Created on": ["Criado em"], + "Menu actions trigger": ["Acionador de ações do menu"], + "Select ...": ["Selecione ..."], + "Filter menu": ["Menu do filtro"], + "Reset": ["Redefinir"], + "No filters": ["Sem filtros"], + "Search in filters": ["Pesquisar em filtros"], + "Select current page": ["Selecionar a página atual"], + "Invert current page": ["Inverter a página atual"], + "Clear all data": ["Limpar todos os dados"], + "Expand row": ["Expandir linha"], + "Collapse row": ["Recolher linha"], + "Click to sort descending": [ + "Clique para classificar em ordem decrescente" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "O CTAS (create table as select) não tem uma instrução SELECT no final. Certifique-se de que sua consulta tenha um SELECT como última instrução. Em seguida, tente executar sua consulta novamente." + "Click to sort ascending": ["Clique para classificar em ordem crescente"], + "Click to cancel sorting": ["Clique para cancelar a ordenação"], + "List updated": ["Lista atualizada"], + "There was an error loading the tables": [ + "Ocorreu um erro ao carregar as tabelas" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "O GeoJsonLayer recebe dados formatados em GeoJSON e apresenta-os como polígonos, linhas e pontos interativos (círculos, ícones e/ou textos)." + "See table schema": ["Ver esquema da tabela"], + "Select table or type to search tables": [ + "Selecione a tabela ou digite para pesquisar tabelas" ], - "The URL is missing the dataset_id or slice_id parameters.": [ - "O URL não tem os parâmetros dataset_id ou slice_id." + "Force refresh table list": ["Forçar atualização da lista de tabelas"], + "Timezone selector": ["Seletor de fuso horário"], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Não há espaço suficiente para esse componente. Tente diminuir sua largura ou aumentar a largura do destino." ], - "The X-axis is not on the filters list": [ - "O eixo X não consta da lista de filtros" + "Can not move top level tab into nested tabs": [ + "Não é possível mover a aba de nível superior para abas aninhadas" ], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "O eixo X não está na lista de filtros, o que impedirá a sua utilização em\n filtros de intervalo de tempo nos painéis. Gostaria de o adicionar à lista de filtros?" + "This chart has been moved to a different filter scope.": [ + "Esse gráfico foi movido para um escopo de filtro diferente." ], - "The access requests seem to have been deleted": [ - "Os pedidos de acesso parecem ter sido excluídos" + "There was an issue fetching the favorite status of this dashboard.": [ + "Houve um problema ao buscar o status de favorito desse painel." ], - "The annotation has been saved": ["A anotação foi salva"], - "The annotation has been updated": ["A anotação foi atualizada"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "A categoria dos nós de origem utilizada para atribuir cores. Se um nó estiver associado a mais do que uma categoria, apenas a primeira será utilizada." + "There was an issue favoriting this dashboard.": [ + "Houve um problema ao favoritar esse painel." ], - "The chart datasource does not exist": [ - "A fonte de dados do gráfico não existe" + "This dashboard is now published": ["Esse painel foi publicado"], + "This dashboard is now hidden": ["Esse painel agora está oculto"], + "You do not have permissions to edit this dashboard.": [ + "Você não tem permissão para editar esse painel." ], - "The chart does not exist": ["O gráfico não existe"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "O clássico. Ótimo para mostrar quanto de uma empresa cada investidor recebe, que dados demográficos seguem o seu blog ou que parte do orçamento vai para o complexo industrial militar.\n\n Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se a clareza da proporção relativa for importante, considere utilizar um gráfico de barras ou outro tipo de gráfico." + "[ untitled dashboard ]": ["[ painel sem título ]"], + "This dashboard was saved successfully.": [ + "Este painel foi salvo com sucesso." ], - "The color for points and clusters in RGB": [ - "A cor dos pontos e clusters em RGB" + "Sorry, an unknown error occurred": [ + "Desculpe, ocorreu um erro desconhecido" ], - "The color scheme for rendering chart": [ - "O esquema de cores para a renderização do gráfico" + "Sorry, there was an error saving this dashboard: %s": [ + "Desculpe, houve um erro ao salvar este painel: %s" ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "O esquema de cores é determinado pelo painel relacionado.\n Edite o esquema de cores nas propriedades do painel." + "You do not have permission to edit this dashboard": [ + "Você não tem permissão para editar este painel" ], - "The column header label": ["O rótulo do cabeçalho da coluna"], - "The column was deleted or renamed in the database.": [ - "A coluna foi excluída ou renomeada no banco de dados." + "Please confirm the overwrite values.": [ + "Por favor, confirme os valores de substituição." ], - "The country code standard that Superset should expect to find in the [country] column": [ - "O código de país padrão que o Superset deve esperar encontrar na coluna [country]" + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Você usou todos os espaços de desfazer de %(historyLength) e não poderá desfazer totalmente as ações subsequentes. Você pode salvar seu estado atual para redefinir o histórico." ], - "The dashboard has been saved": ["O painel foi salvo"], - "The data source seems to have been deleted": [ - "A Fonte de dados parece ter sido excluída" + "Could not fetch all saved charts": [ + "Não foi possível obter todos os gráficos salvos" ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "O tipo de dados que foi inferido pela base de dados. Em alguns casos, pode ser necessário introduzir manualmente um tipo para colunas definidas por expressões. Na maioria dos casos, os usuários não devem precisar de alterar isto." + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas aos gráficos individuais deste painel" ], - "The database columns that contains lines information": [ - "As colunas do banco de dados que contêm informações sobre as linhas" + "You have unsaved changes.": ["Você tem alterações não salvas."], + "Drag and drop components and charts to the dashboard": [ + "Arraste e solte componentes e gráficos para o painel" ], - "The database could not be found": [ - "Não foi possível encontrar o banco de dados" + "You can create a new chart or use existing ones from the panel on the right": [ + "Você pode criar um novo gráfico ou usar os existentes no painel à direita" ], - "The database is currently running too many queries.": [ - "O banco de dados está atualmente executando muitas consultas." + "Create a new chart": ["Criar um novo gráfico"], + "Drag and drop components to this tab": [ + "Arraste e solte componentes para essa aba" ], - "The database is under an unusual load.": [ - "O banco de dados está sob uma carga incomum." + "There are no components added to this tab": [ + "Não há componentes adicionados a essa aba" ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "O banco de dados referenciado nesta consulta não foi encontrado. Contate um administrador para obter mais assistência ou tente novamente." + "You can add the components in the edit mode.": [ + "Você pode adicionar os componentes no modo de edição." ], - "The database returned an unexpected error.": [ - "O banco de dados retornou um erro inesperado." + "Edit the dashboard": ["Editar o painel"], + "There is no chart definition associated with this component, could it have been deleted?": [ + "Não há nenhuma definição de gráfico associada a esse componente; ele poderia ter sido excluído?" ], - "The database was deleted.": ["O banco de dados foi excluído."], - "The database was not found.": ["O banco de dados não foi encontrado."], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s painéis. Tem certeza que você deseja continuar? A eliminação do conjunto de dados irá quebrar esses objetos." + "Delete this container and save to remove this message.": [ + "Excluir este contêiner e salvar para remover essa mensagem." ], - "The dataset associated with this chart no longer exists": [ - "O conjunto de dados associado a este gráfico já não existe" + "Refresh interval saved": ["Intervalo de atualização salvo"], + "Refresh interval": ["Atualizar intervalo"], + "Refresh frequency": ["Atualizar Frequência"], + "Are you sure you want to proceed?": [ + "Tem certeza que deseja continuar ?" ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "A configuração do conjunto de dados exposta aqui afeta todos os gráficos que usam esse conjunto de dados.\n Tenha em mente que alterar as configurações\n aqui pode afetar outros gráficos \n de maneiras indesejáveis." + "Save for this session": ["Salvar para essa sessão"], + "You must pick a name for the new dashboard": [ + "Você deve escolher um nome para o novo painel" ], - "The dataset has been saved": ["O conjunto de dados foi salvo"], - "The dataset linked to this chart may have been deleted.": [ - "O conjunto de dados vinculado a esse gráfico pode ter sido excluído." + "Save dashboard": ["Salvar painel"], + "Overwrite Dashboard [%s]": ["Substituir o Painel [%s]"], + "Save as:": ["Salvar como:"], + "[dashboard name]": ["[nome do painel]"], + "also copy (duplicate) charts": ["também copiar (duplicar) gráficos"], + "viz type": ["tipo de visualização"], + "recent": ["recente"], + "Create new chart": ["Criar novo gráfico"], + "Filter your charts": ["Filtrar os seus gráficos"], + "Filter charts": ["Filtrar gráficos"], + "Sort by %s": ["Ordenar por %s"], + "Show only my charts": ["Mostrar apenas meu gráficos"], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Você pode optar por exibir todos os gráficos aos quais tem acesso ou apenas os que possui.\n Sua seleção de filtro será salva e permanecerá ativa até que você decida alterá-la." ], - "The datasource couldn't be loaded": [ - "A fonte de dados não pode ser carregada" + "Added": ["Adicionado"], + "Viz type": ["Tipo de visualização"], + "Dataset": ["Conjunto de dados"], + "Superset chart": ["Gráfico do Superset"], + "Check out this chart in dashboard:": ["Veja este gráfico no painel:"], + "Layout elements": ["Elementos de layout"], + "Load a CSS template": ["Carregar um modelo CSS"], + "Live CSS editor": ["Editor de CSS em tempo real"], + "Collapse tab content": ["Recolher o conteúdo da aba"], + "There are no charts added to this dashboard": [ + "Não há gráficos adicionados a esse painel" ], - "The datasource is too large to query.": [ - "A fonte de dados é muito grande para ser consultada." + "Go to the edit mode to configure the dashboard and add charts": [ + "Vá ao modo de edição para configurar o painel e adicionar gráficos" ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "A descrição pode ser apresentada como cabeçalhos de widgets na visão do painel. Suporta markdown." + "Changes saved.": ["Alterações salvas."], + "Disable embedding?": ["Desativar incorporação?"], + "This will remove your current embed configuration.": [ + "Isso removerá sua configuração de incorporação atual." ], - "The distance between cells, in pixels": [ - "A distância entre células, em pixels" + "Embedding deactivated.": ["Incorporação desativada."], + "Sorry, something went wrong. Embedding could not be deactivated.": [ + "Desculpe, ocorreu um erro. Não foi possível desativar a incorporação." ], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ - "O período de tempo, em segundos, antes de o cache ser invalidado. Defina como -1 para ignorar o cache." + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Esse painel está pronto para ser incorporado. Em seu aplicativo, passe o seguinte id para o SDK:" ], - "The encoding format of the lines": ["The encoding format of the lines"], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "O objeto engine_params é descompactado na chamada sqlalchemy.create_engine." + "Configure this dashboard to embed it into an external web application.": [ + "Configurar este painel para incorporá-lo em um aplicativo web externo." ], - "The function to use when aggregating points into groups": [ - "A função para usar quando agregar pontos em grupos" + "For further instructions, consult the": [ + "Para mais instruções , consultar o" ], - "The host might be down, and can't be reached on the provided port.": [ - "O host pode ter caído, e não pode ser alcançado na porta fornecida." + "Superset Embedded SDK documentation.": [ + "Documentação do SDK incorporado Superset." ], - "The hostname provided can't be resolved.": [ - "O nome do host oferecido não pode ser resolvido." + "Allowed Domains (comma separated)": [ + "Domínios permitidos (separados por vírgula)" ], - "The id of the active chart": ["O id do gráfico ativo"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "A lista de gráficos associados a esta tabela. Ao alterar esta fonte de dados, pode alterar o comportamento dos gráficos associados. Tenha também em atenção que os gráficos têm de apontar para uma fonte de dados, pelo que este formulário falhará ao ser guardado se remover gráficos de uma fonte de dados. Se pretender alterar a fonte de dados de um gráfico, substitua o gráfico da 'visão de exploração'" + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "Uma lista de nomes de domínio que podem incorporar este dashboard. Se deixar este campo vazio, permitirá a incorporação a partir de qualquer domínio." ], - "The maximum number of events to return, equivalent to the number of rows": [ - "O número máximo de eventos retornados, equivalente ao número de linhas" + "Deactivate": ["Desativar"], + "Save changes": ["Salvar alterações"], + "Enable embedding": ["Habilitar incorporação"], + "Embed": ["Incorporar"], + "Applied cross-filters (%d)": ["Filtros cruzados aplicados (%d)"], + "Applied filters (%d)": ["Filtros aplicados (%d)"], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Este painel está sendo atualizado automaticamente no momento; a próxima atualização automática será em %s." ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "O máximo número de subdivisões de cada grupo ; mais baixo os valores são podados primeiro" + "Your dashboard is too large. Please reduce its size before saving it.": [ + "Seu painel é muito grande. Reduza o tamanho antes de salvá-lo." ], - "The maximum value of metrics. It is an optional configuration": [ - "O valor máximo de métricas. Trata-se de uma configuração opcional" + "Add the name of the dashboard": ["Adicione o nome do painel"], + "Dashboard title": ["Título do painel"], + "Undo the action": ["Desfazer a ação"], + "Redo the action": ["Refazer o ação"], + "Discard": ["Descartar"], + "Edit dashboard": ["Editar painel"], + "An error occurred while fetching available CSS templates": [ + "Ocorreu um erro ao buscar os modelos CSS disponíveis" ], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "O metadata_params no campo Extra não está configurado corretamente. A chave %(key)s é inválida." + "Refreshing charts": ["Atualização de gráficos"], + "Superset dashboard": ["Painel Superset"], + "Refresh dashboard": ["Atualizar Painel"], + "Exit fullscreen": ["Sair da tela cheia"], + "Enter fullscreen": ["Entrar em tela cheia"], + "Edit properties": ["Editar propriedades"], + "Edit CSS": ["Editar CSS"], + "Download": ["Baixar"], + "Share": ["Compartilhar"], + "Copy permalink to clipboard": [ + "Copiar permalink para a área de transferência" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "O metadata_params no campo Extra não está configurado corretamente. A chave %{key}s é inválida." + "Share permalink by email": ["Compartilhar permalink por e-mail"], + "Embed dashboard": ["Incorporar painel"], + "Manage email report": ["Gerenciar relatório de e-mail"], + "Set filter mapping": ["Definir o mapeamento de filtros"], + "Set auto-refresh interval": [ + "Definir intervalo da atualização automática" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." + "Confirm overwrite": ["Confirmar a substituição"], + "Yes, overwrite changes": ["Sim, sobrescrever mudanças"], + "Are you sure you intend to overwrite the following values?": [ + "Tem certeza de que pretende substituir os valores a seguir?" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "O número mínimo de períodos de rolagem necessários para mostrar um valor. Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira que seu \"Min Period\" seja 7, de modo que todos os pontos de dados mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que ocorre nos primeiros 7 períodos" + "Last Updated %s by %s": ["Última atualização %s por %s"], + "Apply": ["Aplicar"], + "Error": ["Erro"], + "A valid color scheme is required": [ + "Um esquema de cores válido é necessário" ], - "The number color \"steps\"": ["A cor do número \"steps\""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "O número de horas, negativo ou positivo, para deslocar a coluna da hora. Isto pode ser utilizado para mudar a hora UTC para a hora local." + "JSON metadata is invalid!": ["Os metadados JSON são inválidos!"], + "Dashboard properties updated": ["Propriedades do painel atualizadas"], + "The dashboard has been saved": ["O painel foi salvo"], + "Access": ["Acessar"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Os proprietários são uma lista de usuários que podem alterar o painel. Pesquisável por nome ou nome de usuário." ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "O número de resultados apresentados é limitado a %(rows)d pela configuração DISPLAY_MAX_ROW. Adicione limites/filtros adicionais ou descarregue para csv para ver mais linhas até ao limite de %(limit)d." + "Colors": ["Cores"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "As funções são uma lista que define o acesso ao painel. Conceder a uma função o acesso a um painel irá ignorar as verificações ao nível do conjunto de dados. Se não forem definidas funções, aplicam-se as permissões de acesso normais." ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "O número de resultados apresentados está limitado a %(rows)d. Adicione limites/filtros adicionais, transfira para csv ou contate um administrador para ver mais linhas até ao limite de %(limit)d." + "Dashboard properties": ["Propriedades do painel"], + "This dashboard is managed externally, and can't be edited in Superset": [ + "Esse painel é gerenciado externamente e não pode ser editado no Superset" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "O número de linhas apresentadas é limitado a %(rows)d pelo menu suspenso." + "Basic information": ["Informações básicas"], + "URL slug": ["Slug de URL"], + "A readable URL for your dashboard": ["Uma URL legível para seu painel"], + "Certification": ["Certificação"], + "Person or group that has certified this dashboard.": [ + "Pessoa ou grupo que certificou esse painel." ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "O número de linhas exibidas é limitado a %(rows)d pelo menu suspenso de limite." + "Any additional detail to show in the certification tooltip.": [ + "Qualquer detalhe adicional a mostrar na dica de ferramenta de certificação." ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "O número de linhas exibidas é limitado a %(rows)d pela consulta" + "A list of tags that have been applied to this chart.": [ + "Uma lista de tags que foram aplicadas a esse gráfico." ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "O número de linhas exibidas é limitado a %(rows)d pela consulta e pelo menu suspenso de limite." + "JSON metadata": ["Metadados JSON"], + "Use \"%(menuName)s\" menu instead.": [ + "Em vez disso, use o menu \"%(menuName)s\"." ], - "The number of seconds before expiring the cache": [ - "O número de segundos antes da expiração da cache" + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Esse painel não foi publicado, portanto não será exibido na lista de painéis. Clique aqui para publicar esse painel." ], - "The object does not exist in the given database.": [ - "O objeto não existe no banco de dados fornecido." + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Esse painel não está publicado, o que significa que não será exibido na lista de painéis. Favorite-o para vê-lo lá ou acesse-o usando diretamente a URL." ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." + "This dashboard is published. Click to make it a draft.": [ + "Este painel foi publicado. Clique para torná-lo um rascunho." ], - "The password provided when connecting to a database is not valid.": [ - "A senha fornecida ao se conectar a um banco de dados não é válida." + "Draft": ["Rascunho"], + "Annotation layers are still loading.": [ + "As camadas de anotação ainda estão carregando." ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os gráficos. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." + "One ore more annotation layers failed loading.": [ + "Falha no carregamento de uma ou mais camadas de anotação." ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os painéis. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." + "Data refreshed": ["Dados atualizados"], + "Cached %s": ["Cached %s"], + "Fetched %s": ["Obtido %s"], + "Query %s: %s": ["Consulta %s: %s"], + "Force refresh": ["Forçar atualização"], + "Hide chart description": ["Ocultar descrição do gráfico"], + "Show chart description": ["Mostrar descrição do gráfico"], + "View query": ["Ver consulta"], + "View as table": ["Exibir como tabela"], + "Chart Data: %s": ["Dados do gráfico: %s"], + "Share chart by email": ["Compartilhar gráfico por e-mail"], + "Export to .CSV": ["Exportar para .CSV"], + "Export to Excel": ["Exportar para Excel"], + "Download as image": ["Baixar como imagem"], + "Something went wrong.": ["Algo não correu bem."], + "Search...": ["Pesquisar..."], + "No filter is selected.": ["Nenhum filtro selecionado."], + "Editing 1 filter:": ["Editando 1 filtro:"], + "Batch editing %d filters:": ["Batch editando %d filtros:"], + "Configure filter scopes": ["Configurar os âmbitos de filtragem"], + "There are no filters in this dashboard.": [ + "Não há filtros neste painel." ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-las junto com os conjuntos de dados. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." + "Expand all": ["Expandir tudo"], + "Collapse all": ["Recolher tudo"], + "An error occurred while opening Explore": [ + "Ocorreu um erro ao abrir o Explorador" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-los juntamente com as consultas salvas. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." + "Empty column": ["Coluna vazia"], + "This markdown component has an error.": [ + "Este componente de remarcação para baixo tem um erro." ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-los. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exploração e devem ser adicionadas manualmente após a importação, caso sejam necessárias." - ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem fornecer um alias de deslocamento \"Pandas\".\n Clique no balão de informações para obter mais detalhes sobre as expressões \"freq\" aceitas." + "This markdown component has an error. Please revert your recent changes.": [ + "Este componente markdown tem um erro. Reverta suas alterações recentes." ], - "The pixel radius": ["O raio do pixel"], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "O ponteiro para uma tabela física (ou visualização). Lembre-se de que o gráfico está associado a essa tabela lógica Superset, e essa tabela lógica aponta para a tabela física referenciada aqui." + "Empty row": ["Linha vazia"], + "You can": ["É possível"], + "create a new chart": ["criar um novo gráfico"], + "or use existing ones from the panel on the right": [ + "ou use os existentes no painel à direita" ], - "The port is closed.": ["A porta está fechada."], - "The port number is invalid.": ["O número da porta é inválido."], - "The primary metric is used to define the arc segment sizes": [ - "A métrica primária é usada para definir os tamanhos dos segmentos de arco" + "You can add the components in the": [ + "Você pode adicionar o componentes no" ], - "The provided `rows` argument is not a valid integer.": [ - "O argumento `rows` fornecido não é um número inteiro válido." + "edit mode": ["modo de edição"], + "Delete dashboard tab?": ["Excluir aba do painel?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Excluindo uma guia irá remover todo o conteúdo dela. Você ainda pode reverter isso com o" ], - "The query associated with the results was deleted.": [ - "A consulta associada aos resultados foi excluída." + "undo": ["desfazer"], + "button (cmd + z) until you save your changes.": [ + "(cmd + z) até você salvar suas mudanças." ], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "A consulta associada a esses resultados não pôde ser encontrada. Você precisa executar novamente a consulta original." + "CANCEL": ["CANCELAR"], + "Divider": ["Divisor"], + "Header": ["Cabeçalho"], + "Text": ["Texto"], + "Tabs": ["Abas"], + "background": ["fundo"], + "Preview": ["Pré-visualização"], + "Sorry, something went wrong. Try again later.": [ + "Desculpe, ocorreu um erro. Tente novamente mais tarde." ], - "The query contains one or more malformed template parameters.": [ - "A consulta contém um ou mais parâmetros de modelo malformados." + "Unknown value": ["Valor desconhecido"], + "Add/Edit Filters": ["Adicionar/Editar filtros"], + "No filters are currently added to this dashboard.": [ + "Nenhum filtro foi adicionado a esse painel no momento." ], - "The query couldn't be loaded": ["Não foi possível carregar a consulta"], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "A estimativa de consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser muito complexa ou o banco de dados pode estar sob carga pesada." + "No global filters are currently added": [ + "Nenhum filtro global está atualmente adicionado" ], - "The query has a syntax error.": ["A consulta tem um erro de sintaxe."], - "The query returned no data": ["A consulta não retornou dados"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "A consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser muito complexa ou o banco de dados pode estar sob carga pesada." + "Apply filters": ["Aplicar filtros"], + "Clear all": ["Limpar todos"], + "Locate the chart": ["Localize o gráfico"], + "Cross-filters": ["Filtros cruzados"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "O raio (em pixels) que o algoritmo usa para definir um cluster. Escolha 0 para desativar o agrupamento, mas lembre-se de que um grande número de pontos (>1000) causará atraso." + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "O raio de pontos individuais (aqueles que não estão em um cluster). Uma coluna numérica ou `Auto`, que dimensiona o ponto com base no maior cluster" + "All charts": ["Todos os gráficos"], + "Enable cross-filtering": ["Habilitar filtragem cruzada"], + "Orientation of filter bar": ["Orientação de barra de filtro"], + "Vertical (Left)": ["Vertical (esquerda)"], + "Horizontal (Top)": ["Horizontal (topo)"], + "More filters": ["Mais filtros"], + "No applied filters": ["Nenhum filtro aplicado"], + "Applied filters: %s": ["Filtros aplicados: %s"], + "Cannot load filter": ["Não é possível carregar o filtro"], + "Filters out of scope (%d)": ["Filtros fora do escopo (%d)"], + "Dependent on": ["Depende de"], + "Filter only displays values relevant to selections made in other filters.": [ + "Filtro só exibe valores relevantes para seleções feitas em outros filtros." ], - "The report has been created": ["O relatório foi criado"], - "The results backend no longer has the data from the query.": [ - "O backend de resultados não tem mais os dados da consulta." + "Scope": ["Escopo"], + "Filter type": ["Tipo do filtro"], + "Title is required": ["O título é obrigatório"], + "(Removed)": ["(Removido)"], + "Undo?": ["Desfazer?"], + "Add filters and dividers": ["Adicionar filtros e divisores"], + "[untitled]": ["[sem título]"], + "Cyclic dependency detected": ["Detectada dependência cíclica"], + "Add and edit filters": ["Adicionar e editar filtros"], + "Column select": ["Seleção de coluna"], + "Select a column": ["Selecione uma coluna"], + "No compatible columns found": [ + "Não foram encontradas colunas compatíveis" ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Os resultados armazenados no backend foram armazenados em um formato diferente e não podem mais ser desserializados." + "No compatible datasets found": [ + "Não foram encontrados conjuntos de dados compatíveis" ], - "The rich tooltip shows a list of all series for that point in time": [ - "A dica de ferramenta avançada mostra uma lista de todas as séries para esse ponto no tempo" + "Value is required": ["O valor é necessário"], + "(deleted or invalid type)": ["(excluído ou inválido digite)"], + "Limit type": ["Tipo de limite"], + "No available filters.": ["Não há filtros disponíveis."], + "Add filter": ["Adicionar filtro"], + "Values are dependent on other filters": [ + "Os valores dependem de outros filtros" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado para executar essa consulta." + "Values selected in other filters will affect the filter options to only show relevant values": [ + "Os valores selecionados em outros filtros afetarão as opções de filtro para mostrar apenas os valores relevantes" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "O esquema \"%(schema_name)s\" não existe. Um esquema válido deve ser usado para executar essa consulta." + "Values dependent on": ["Valores dependentes de"], + "Scoping": ["Escopo"], + "Filter Configuration": ["Configuração de Filtro"], + "Filter Settings": ["Configurações de filtro"], + "Select filter": ["Selecionar filtro"], + "Range filter": ["Filtro de faixa"], + "Numerical range": ["Faixa numérica"], + "Time filter": ["Filtro de tempo"], + "Time range": ["Intervalo de tempo"], + "Time column": ["Coluna de tempo"], + "Time grain": ["Grão de tempo"], + "Group By": ["Agrupar por"], + "Group by": ["Agrupar por"], + "Pre-filter is required": ["É necessário um pré-filtro"], + "Time column to apply dependent temporal filter to": [ + "Coluna de tempo à qual aplicar o filtro temporal dependente" ], - "The schema was deleted or renamed in the database.": [ - "O esquema foi excluído ou renomeado no banco de dados." + "Time column to apply time range to": [ + "Coluna de tempo à qual aplicar o intervalo de tempo" ], - "The size of the square cell, in pixels": [ - "O tamanho da célula quadrada, em pixels" + "Filter name": ["Nome do filtro"], + "Name is required": ["O nome é obrigatório"], + "Filter Type": ["Tipo de filtro"], + "Datasets do not contain a temporal column": [ + "Os conjuntos de dados não contêm uma coluna temporal" ], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ - "O URL enviado não é considerado seguro, use apenas URLs com o mesmo domínio do Superset." + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais definidas na \n seção de filtros de cada gráfico. Adicione colunas temporais aos filtros \n do gráfico para que esse filtro do painel afete esses gráficos." ], - "The submitted payload has the incorrect format.": [ - "O payload enviado tem o formato incorreto." + "Dataset is required": ["O conjunto de dados é necessário"], + "Pre-filter available values": ["Valores disponíveis para o pré-filtro"], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Adicionar cláusulas de filtro para controlar a consulta de origem do filtro, \n embora apenas no contexto do preenchimento automático, ou seja, esses condições \n não impactam como o filtro é aplicado para o painel. Isso é util \n quando você quiser melhorar o desempenho da consulta apenas analisando um subconjunto \n de dados subjacentes ou limitar os valores disponíveis apresentados no filtro." ], - "The submitted payload has the incorrect schema.": [ - "O payload enviado tem o esquema incorreto." + "No filter": ["Sem filtro"], + "Sort filter values": ["Valores do filtro de classificação"], + "Sort type": ["Tipo de classificação"], + "Sort ascending": ["Ordenação crescente"], + "Sort Metric": ["Classificar métrica"], + "If a metric is specified, sorting will be done based on the metric value": [ + "Se for especificada uma métrica, a ordenação será efetuada com base no valor da métrica" ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para executar essa consulta." + "Sort metric": ["Ordenar métrica"], + "Single Value": ["Valor único"], + "Single value type": ["Tipo de valor único"], + "Exact": ["Exato"], + "Filter has default value": ["O filtro tem valor padrão"], + "Default Value": ["Valor padrão"], + "Default value is required": ["O valor padrão é obrigatório"], + "Refresh the default values": ["Atualizar os valores padrão"], + "Fill all required fields to enable \"Default Value\"": [ + "Preencher todos os campos obrigatórios para ativar \"Default Value\"" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada para executar essa consulta." + "You have removed this filter.": ["Você removeu esse filtro."], + "Restore Filter": ["Restaurar filtro"], + "Column is required": ["A coluna é necessária"], + "Populate \"Default value\" to enable this control": [ + "Preencha \"Default value\" para ativar esse controle" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "A tabela foi criada. Como parte desse processo de configuração em duas fases, agora você deve clicar no botão de edição da nova tabela para configurá-la." + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "O valor padrão é definido automaticamente quando a opção \"Select first filter value by default\" (Selecionar o primeiro valor do filtro por padrão) está marcada" ], - "The table was deleted or renamed in the database.": [ - "A tabela foi excluída ou renomeada no banco de dados." + "Default value must be set when \"Filter value is required\" is checked": [ + "O valor padrão deve ser definido quando a opção \"Filter value is required\" estiver marcada" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "A coluna de tempo para a visualização. Observe que você pode definir uma expressão arbitrária que retorne uma coluna DATETIME na tabela. Observe também que o filtro abaixo é aplicado a essa coluna ou expressão" + "Default value must be set when \"Filter has default value\" is checked": [ + "O valor padrão deve ser definido quando a opção \"Filter has default value\" estiver marcada" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" + "Apply to all panels": ["Aplicar para todos painéis"], + "Apply to specific panels": ["Aplicar para painéis específicos"], + "Only selected panels will be affected by this filter": [ + "Apenas os painéis selecionados serão afetados por este filtro" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ - "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" + "All panels with this column will be affected by this filter": [ + "Todos painéis com essa coluna vão ser afetados por esse filtro" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "A granularidade de tempo para a visualização. Isso aplica uma transformação de data para alterar sua coluna de tempo e define uma nova granularidade de tempo. As opções aqui são definidas com base em cada mecanismo de banco de dados no código-fonte do Superset." + "All panels": ["Todos os painéis"], + "This chart might be incompatible with the filter (datasets don't match)": [ + "Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados não correspondem)" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "O intervalo de tempo para a visualização. Todos os horários relativos, por exemplo, \"Last month\", \"Last 7 days\", \"now\" etc., são avaliados no servidor usando o horário local do servidor (sem fuso horário). Todas as dicas de ferramentas e horários de espaço reservado são expressos em UTC (sem fuso horário). Os registros de data e hora são avaliados pelo banco de dados usando o fuso horário local do mecanismo. Observe que é possível definir explicitamente o fuso horário de acordo com o formato ISO 8601 ao especificar a hora inicial e/ou final." + "Keep editing": ["Continue editando"], + "Yes, cancel": ["Sim, cancelar"], + "There are unsaved changes.": ["Há mudanças que não foram salvas."], + "Are you sure you want to cancel?": ["Tem certeza que deseja cancelar ?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "Erro ao carregar fontes de dados de gráficos. Os filtros podem não funcionar corretamente." ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "A unidade de tempo para cada bloco. Deve ser uma unidade menor que domain_granularity. Deve ser maior ou igual a Time Grain" + "Transparent": ["Transparente"], + "White": ["Branco"], + "All filters": ["Todos os filtros"], + "Click to edit %s.": ["Clique para editar %s."], + "Click to edit chart.": ["Clique para editar o gráfico."], + "Use %s to open in a new tab.": ["Use %s para abrir em uma nova guia."], + "Medium": ["Médio"], + "New header": ["Novo cabeçalho"], + "Tab title": ["Título da aba"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Esta sessão sofreu uma interrupção e alguns controles podem não funcionar como pretendido. Se você for o desenvolvedor desse aplicativo, verifique se o token de convidado está sendo gerado corretamente." ], - "The time unit used for the grouping of blocks": [ - "A unidade de tempo usada para o agrupamento de blocos" + "Equal to (=)": ["Igual para (=)"], + "Not equal to (≠)": ["Diferente de (≠)"], + "Less than (<)": ["Menos que (<)"], + "Less or equal (<=)": ["Menor ou igual (<=)"], + "Greater than (>)": ["Maior que (>)"], + "Greater or equal (>=)": ["Maior ou igual (>=)"], + "In": ["Em"], + "Not in": ["Não está em"], + "Like": ["Como"], + "Like (case insensitive)": [ + "Como (não diferencia maiúsculas de minúsculas)" ], - "The type of visualization to display": [ - "O tipo de visualização para exibir" + "Is not null": ["Não é nulo"], + "Is null": ["É nulo"], + "use latest_partition template": ["usar o modelo latest_partition"], + "Is true": ["É verdadeiro"], + "Is false": ["É falso"], + "TEMPORAL_RANGE": ["INTERVALO TEMPORAL"], + "Time granularity": ["Granularidade de tempo"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ + "Duração em ms (100,40008 => 100ms 400µs 80ns)" ], - "The unit of measure for the specified point radius": [ - "A unidade de medida do raio do ponto especificado" + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Uma ou várias colunas para agrupar. Os agrupamentos de elevada cardinalidade devem incluir um limite de séries para limitar o número de séries obtidas e processadas." ], - "The user seems to have been deleted": [ - "O usuário parece ter sido excluído" + "One or many metrics to display": ["Uma ou muitos métricas para exibir"], + "Fixed color": ["Cor fixa"], + "Right axis metric": ["Métrica do eixo direito"], + "Choose a metric for right axis": [ + "Escolha uma métrica para o eixo direito" ], - "The user/password combination is not valid (Incorrect password for user).": [ - "" + "Linear color scheme": ["Esquema de cores linear"], + "Color metric": ["Métrica de cor"], + "One or many controls to pivot as columns": [ + "Um ou mais controles a dinamizar como colunas" ], - "The username \"%(username)s\" does not exist.": [ - "O nome de usuário \"%(username)s\" não existe." + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" ], - "The username provided when connecting to a database is not valid.": [ - "O nome de usuário fornecido ao se conectar ao banco de dados não é válido." + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "A granularidade de tempo para a visualização. Isso aplica uma transformação de data para alterar sua coluna de tempo e define uma nova granularidade de tempo. As opções aqui são definidas com base em cada mecanismo de banco de dados no código-fonte do Superset." ], - "The way the ticks are laid out on the X-axis": [ - "O modo como os ticks são dispostos no eixo X" + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "O intervalo de tempo para a visualização. Todos os horários relativos, por exemplo, \"Last month\", \"Last 7 days\", \"now\" etc., são avaliados no servidor usando o horário local do servidor (sem fuso horário). Todas as dicas de ferramentas e horários de espaço reservado são expressos em UTC (sem fuso horário). Os registros de data e hora são avaliados pelo banco de dados usando o fuso horário local do mecanismo. Observe que é possível definir explicitamente o fuso horário de acordo com o formato ISO 8601 ao especificar a hora inicial e/ou final." ], - "The width of the lines": ["A largura das linhas"], - "There are associated alerts or reports": [ - "Há alertas ou relatórios associados" + "Limits the number of rows that get displayed.": [ + "Limita o número de linhas exibidas." ], - "There are associated alerts or reports: %s,": [ - "Há alertas ou relatórios associados: %s," + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Métrica utilizada para definir a forma como as séries de topo são ordenadas se estiver presente um limite de série ou de linha. Se não for definida, reverte para a primeira métrica (quando apropriado)." ], - "There are no charts added to this dashboard": [ - "Não há gráficos adicionados a esse painel" + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Define o agrupamento de entidades. Cada série é mostrado como uma cor específica no gráfico e tem uma legenda alternar" ], - "There are no components added to this tab": [ - "Não há componentes adicionados a essa aba" + "Metric assigned to the [X] axis": ["Métrica atribuída para o eixo [X]"], + "Metric assigned to the [Y] axis": ["Métrica atribuída para o eixo [Y]"], + "Bubble size": ["Tamanho da bolha"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Quando `Calculation type` é definido como \"Percentage change\", o formato do eixo Y é forçado a `.1%`" ], - "There are no databases available": [ - "Não há bancos de dados disponíveis" + "Color scheme": ["Esquema de cores"], + "An error occurred while starring this chart": [ + "Ocorreu um erro ao inserir esse gráfico" ], - "There are no filters in this dashboard.": [ - "Não há filtros neste painel." + "Chart [%s] has been saved": ["O gráfico [%s] foi salvo"], + "Chart [%s] has been overwritten": ["O gráfico [%s] foi sobrescrito"], + "Dashboard [%s] just got created and chart [%s] was added to it": [ + "O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a ele" ], - "There are unsaved changes.": ["Há mudanças que não foram salvas."], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de ortografia ou de digitação." + "Chart [%s] was added to dashboard [%s]": [ + "O gráfico [%s] foi adicionado ao painel [%s]" ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "Não há nenhuma definição de gráfico associada a esse componente; ele poderia ter sido excluído?" + "GROUP BY": ["AGRUPAR POR"], + "Use this section if you want a query that aggregates": [ + "Use esta seção se quiser uma consulta que agregue" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Não há espaço suficiente para esse componente. Tente diminuir sua largura ou aumentar a largura do destino." + "NOT GROUPED BY": ["NÃO AGRUPADO POR"], + "Use this section if you want to query atomic rows": [ + "Use esta seção se quiser consultar linhas atômicas" ], - "There was an error fetching dataset": [ - "Houve um erro ao buscar o conjunto de dados" + "The X-axis is not on the filters list": [ + "O eixo X não consta da lista de filtros" ], - "There was an error fetching dataset's related objects": [ - "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados" + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "O eixo X não está na lista de filtros, o que impedirá a sua utilização em\n filtros de intervalo de tempo nos painéis. Gostaria de o adicionar à lista de filtros?" ], - "There was an error fetching tables": [ - "Ocorreu um erro ao buscar tabelas" + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Você não pode excluir o último filtro temporal, pois ele é usado para filtros de intervalo de tempo em painéis." ], - "There was an error fetching the favorite status: %s": [ - "Houve um erro ao buscar o status de favorito: %s" + "This section contains validation errors": [ + "Esta seção contém erros de validação" ], - "There was an error fetching your recent activity:": [ - "Ocorreu um erro ao buscar sua atividade recente:" + "Keep control settings?": ["Manter configurações de controle?"], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Você alterou os conjuntos de dados. Todos os controles com dados (colunas, métricas) que correspondem a esse novo conjunto de dados foram mantidos." ], - "There was an error loading the dataset metadata": [ - "Ocorreu um erro ao carregar os metadados do conjunto de dados" + "Continue": ["Continuar"], + "Clear form": ["Limpar formulário"], + "No form settings were maintained": [ + "Nenhuma configuração de formulário foi mantida" ], - "There was an error loading the schemas": [ - "Ocorreu um erro ao carregar os esquemas" + "We were unable to carry over any controls when switching to this new dataset.": [ + "Não foi possível transferir nenhum controle ao mudar para esse novo conjunto de dados." ], - "There was an error loading the tables": [ - "Ocorreu um erro ao carregar as tabelas" + "Customize": ["Personalizar"], + "Generating link, please wait..": ["Gerando link, por favor espere.."], + "Chart height": ["Altura do gráfico"], + "Chart width": ["Largura do gráfico"], + "Save (Overwrite)": ["Salvar (Sobrescrever)"], + "Save as...": ["Salvar como..."], + "Chart name": ["Nome do gráfico"], + "Dataset Name": ["Nome do conjunto de dados"], + "A reusable dataset will be saved with your chart.": [ + "Um conjunto de dados reutilizável vai ser salvo com seu gráfico." ], - "There was an error saving the favorite status: %s": [ - "Ocorreu um erro ao salvar o status de favorito: %s" + "Add to dashboard": ["Adicionar ao painel"], + "Select a dashboard": ["Selecione um painel"], + "Select": ["Selecione"], + "create": ["criar"], + "Save & go to dashboard": ["Salvar e ir ao painel"], + "Save chart": ["Salvar gráfico"], + "Formatted date": ["Data formatada"], + "Column Formatting": ["Formatação de colunas"], + "Collapse data panel": ["Recolher painel de dados"], + "Expand data panel": ["Expandir painel de dados"], + "Samples": ["Amostras"], + "No samples were returned for this dataset": [ + "Não foram devolvidas amostras para este conjunto de dados" ], - "There was an error with your request": [ - "Houve um erro em sua solicitação" + "No results": ["Nenhum resultado"], + "Search Metrics & Columns": ["Pesquisar Métricas e Colunas"], + "Create a dataset": ["Criar um conjunto de dados"], + "Showing %s of %s": ["Mostrando %s de %s"], + "Show less...": ["Mostrar menos..."], + "Show all...": ["Mostrar tudo..."], + "Show Less...": ["Mostrar Menos..."], + "Unable to retrieve dashboard colors": [ + "Não foi possível recuperar as cores do painel" ], - "There was an issue deleting %s: %s": [ - "Houve um problema ao excluir %s: %s" + "Not added to any dashboard": ["Não adicionado a nenhum painel"], + "You can preview the list of dashboards in the chart settings dropdown.": [ + "Você pode visualizar a lista de painéis no menu suspenso de configurações do gráfico." ], - "There was an issue deleting the selected %s: %s": [ - "Houve um problema ao excluir o %s selecionado: %s" + "Not available": ["Não disponível"], + "Add the name of the chart": ["Adicione o nome do gráfico"], + "Chart title": ["Título do gráfico"], + "Add required control values to save chart": [ + "Adicionar controle de valores obrigatórios para salvar gráfico" ], - "There was an issue deleting the selected annotations: %s": [ - "Houve um problema ao excluir as anotações selecionadas: %s" + "Chart type requires a dataset": [ + "O tipo de gráfico requer um conjunto de dados" ], - "There was an issue deleting the selected charts: %s": [ - "Houve um problema ao excluir os gráficos selecionados: %s" + "Required control values have been removed": [ + "Os valores de controle necessários foram eliminados" ], - "There was an issue deleting the selected datasets: %s": [ - "Houve um problema ao excluir os conjuntos de dados selecionados: %s" + "Your chart is not up to date": ["Seu gráfico não está atualizado"], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Você atualizou os valores no painel de controle, mas o gráfico não foi atualizado automaticamente. Execute a consulta clicando no botão \"Atualizar gráfico\" ou" ], - "There was an issue deleting the selected layers: %s": [ - "Houve um problema ao excluir as camadas selecionadas: %s" + "Chart Source": ["Fonte do gráfico"], + "Open Datasource tab": ["Abrir aba fonte de dados"], + "Original": ["Original"], + "Pivoted": ["Pivotado"], + "You do not have permission to edit this chart": [ + "Você não tem permissão para editar este gráfico" ], - "There was an issue deleting the selected queries: %s": [ - "Houve um problema ao excluir as consultas selecionadas: %s" + "Chart properties updated": ["Propriedades do gráfico atualizadas"], + "Edit Chart Properties": ["Editar propriedades do gráfico"], + "This chart is managed externally, and can't be edited in Superset": [ + "Esse gráfico é gerenciado externamente e não pode ser editado no Superset" ], - "There was an issue deleting the selected templates: %s": [ - "Houve um problema ao excluir os modelos selecionados: %s" + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "A descrição pode ser apresentada como cabeçalhos de widgets na visão do painel. Suporta markdown." ], - "There was an issue deleting: %s": ["Houve um problema ao excluir: %s"], - "There was an issue duplicating the dataset.": [ - "Houve um problema ao duplicar o conjunto de dados." + "Person or group that has certified this chart.": [ + "Pessoa ou grupo que certificou este gráfico." ], - "There was an issue duplicating the selected datasets: %s": [ - "Houve um problema ao duplicar os conjuntos de dados selecionados: %s" + "Configuration": ["Configuração"], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Duração (em segundos) do tempo limite do cache para esse gráfico. Defina como -1 para ignorar o cache. Observe que o padrão é o tempo limite do conjunto de dados, se não for definido." ], - "There was an issue favoriting this dashboard.": [ - "Houve um problema ao favoritar esse painel." + "A list of users who can alter the chart. Searchable by name or username.": [ + "Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome ou nome de usuário." ], - "There was an issue fetching reports attached to this dashboard.": [ - "Houve um problema na obtenção de relatórios anexados a esse painel." + "Limit reached": ["Limite atingido"], + "Create chart": ["Criar gráfico"], + "Update chart": ["Atualizar Gráfico"], + "Invalid lat/long configuration.": ["Configuração lat/long inválida."], + "Longitude & Latitude columns": ["Colunas de latitude e longitude"], + "Delimited long & lat single column": [ + "Coluna única delimitada long & lat" ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Houve um problema ao buscar o status de favorito desse painel." + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "São aceitos vários formatos, consulte a biblioteca Python geopy.points para mais detalhes" ], - "There was an issue fetching your chart: %s": [ - "Houve um problema ao buscar seu gráfico: %s" + "Geohash": ["Geohash"], + "textarea": ["área de texto"], + "in modal": ["no modal"], + "Sorry, An error occurred": ["Desculpe, ocorreu um erro"], + "Save as Dataset": ["Salvar como conjunto de dados"], + "Open in SQL Lab": ["Abrir no SQL Lab"], + "Failed to verify select options: %s": [ + "Falha ao verificar opções selecionadas: %s" ], - "There was an issue fetching your dashboards: %s": [ - "Houve um problema ao buscar seus painéis: %s" + "No annotation layers": ["Nenhuma camada de anotação"], + "Add an annotation layer": ["Adicionar uma camada de anotação"], + "Annotation layer": ["Camada de anotação"], + "Select the Annotation Layer you would like to use.": [ + "Selecione a camada de anotação que você gostaria de usar." ], - "There was an issue fetching your recent activity: %s": [ - "Houve um problema ao buscar sua atividade recente: %s" + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "Use outro gráfico existente como fonte para anotações e sobreposições.\n Seu gráfico deve ser um destes tipos de visualização: [%s]" ], - "There was an issue fetching your saved queries: %s": [ - "Houve um problema ao buscar suas consultas salvas: %s" + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Espera uma fórmula com o parâmetro de tempo dependente 'x'\n em milissegundos desde a época. mathjs é utilizado para avaliar as fórmulas.\n Exemplo: '2x+5'" ], - "There was an issue previewing the selected query %s": [ - "Houve um problema ao visualizar a consulta selecionada %s" + "Annotation layer value": ["Valor da camada de anotação"], + "Bad formula.": ["Fórmula ruim."], + "Annotation Slice Configuration": ["Configuração de fatia de anotação"], + "This section allows you to configure how to use the slice\n to generate annotations.": [ + "Esta seção permite configurar como usar o slice\n para gerar anotações." ], - "There was an issue previewing the selected query. %s": [ - "Houve um problema ao visualizar a consulta selecionada. %s" + "Annotation layer time column": ["Coluna de tempo da camada de anotação"], + "Interval start column": ["Coluna de início do intervalo"], + "Event time column": ["Coluna de hora do evento"], + "This column must contain date/time information.": [ + "Isso a coluna deve conter informações de data/hora." ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "Há um loop em seu Sankey, forneça uma árvore. Aqui está um link defeituoso: {}" + "Annotation layer interval end": [ + "Fim do intervalo da camada de anotação" ], - "These are the tables this filter will be applied to.": [ - "Essas são as tabelas às quais esse filtro será aplicado." + "Interval End column": ["Intervalo Coluna final"], + "Annotation layer title column": [ + "Coluna de título da camada de anotação" ], - "These filters apply to the values available in the dropdowns": [ - "Esses filtros se aplicam aos valores disponíveis nos menus suspensos" + "Title Column": ["Coluna de título"], + "Pick a title for you annotation.": [ + "Escolha um título para a sua anotação." ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Esses parâmetros são gerados dinamicamente quando se clica no botão salvar ou sobrescrever na exibição de exploração. Esse objeto JSON é exposto aqui para referência e para usuários avançados que queiram alterar parâmetros específicos." + "Annotation layer description columns": [ + "Colunas de descrição da camada de anotação" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Esse objeto JSON é gerado dinamicamente quando se clica no botão salvar ou sobrescrever na exibição do painel. Ele é exposto aqui para referência e para usuários avançados que podem querer alterar parâmetros específicos." + "Description Columns": ["Colunas de descrição"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Selecione uma ou mais colunas que devem ser mostradas na anotação. Se não selecionar uma coluna, todas as colunas serão mostradas." ], - "This action will permanently delete %s.": [ - "Essa ação excluirá permanentemente %s." + "Override time range": ["Intervalo de tempo de substituição"], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Isso controla se o campo \"time_range\" da visualização atual deve ser passado para o gráfico que contém os dados da anotação." ], - "This action will permanently delete the layer.": [ - "Essa ação excluirá permanentemente a camada." + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Isso controla se o campo de grão de tempo da exibição atual\n deve ser passado para o gráfico que contém os dados de anotação." ], - "This action will permanently delete the saved query.": [ - "Essa ação excluirá permanentemente a consulta salva." + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Delta de tempo em linguagem natural \n (exemplo: 24 horas, 7 dias , 56 semanas , 365 dias)" ], - "This action will permanently delete the template.": [ - "Essa ação excluirá permanentemente o modelo." + "Display configuration": ["Mostrar configuração"], + "Configure your how you overlay is displayed here.": [ + "Configure a forma como a sobreposição é apresentada aqui." ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio (por exemplo, mydatabase.com)." + "Annotation layer stroke": ["Traço da camada de anotação"], + "Style": ["Estilo"], + "Solid": ["Sólido"], + "Dashed": ["Traço"], + "Long dashed": ["Traço longo"], + "Dotted": ["Pontilhado"], + "Annotation layer opacity": ["Opacidade da camada de anotação"], + "Color": ["Cor"], + "Automatic Color": ["Cor Automática"], + "Shows or hides markers for the time series": [ + "Mostra ou esconde marcadores para a série temporal" ], - "This chart has been moved to a different filter scope.": [ - "Esse gráfico foi movido para um escopo de filtro diferente." + "Hide Line": ["Ocultar linha"], + "Hides the Line for the time series": [ + "Oculta a linha da série temporal" ], - "This chart is managed externally, and can't be edited in Superset": [ - "Esse gráfico é gerenciado externamente e não pode ser editado no Superset" + "Layer configuration": ["Configuração de camadas"], + "Configure the basics of your Annotation Layer.": [ + "Configurar o fundamentos da sua camada de anotação." ], - "This chart might be incompatible with the filter (datasets don't match)": [ - "Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados não correspondem)" + "Mandatory": ["Obrigatório"], + "Hide layer": ["Esconder camada"], + "Show label": ["Exibir rótulo"], + "Whether to always show the annotation label": [ + "Se deve sempre mostrar o rótulo da anotação" + ], + "Annotation layer type": ["Tipo da camada de anotação"], + "Choose the annotation layer type": [ + "Escolha o tipo da camada de anotação" + ], + "Annotation source type": ["Tipo de fonte de anotação"], + "Choose the source of your annotations": [ + "Choose the source of your annotations" ], + "Annotation source": ["Fonte de anotação"], + "Remove": ["Remover"], + "Time series": ["Séries temporais"], + "Edit annotation layer": ["Editar camada de anotação"], + "Add annotation layer": ["Adicionar camada de anotação"], + "Empty collection": ["Coleção vazia"], + "Add an item": ["Adicionar um item"], + "Remove item": ["Remover item"], "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "Esse esquema de cores está sendo substituído por cores de rótulos personalizados.\n Verifique os metadados JSON nas configurações avançadas" ], - "This column might be incompatible with current dataset": [ - "Essa coluna pode ser incompatível com o conjunto de dados atual" + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "O esquema de cores é determinado pelo painel relacionado.\n Edite o esquema de cores nas propriedades do painel." ], - "This column must contain date/time information.": [ - "Isso a coluna deve conter informações de data/hora." + "dashboard": ["painel"], + "Dashboard scheme": ["Esquema do painel"], + "Select color scheme": ["Selecione o esquema de cores"], + "Select scheme": ["Selecionar esquema"], + "Show less columns": ["Mostrar menos colunas"], + "Show all columns": ["Mostrar todas as colunas"], + "Fraction digits": ["Dígitos de frações"], + "Number of decimal digits to round numbers to": [ + "Número de dígitos decimais para arredondar os números" ], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Isso controla se o campo \"time_range\" da visualização atual deve ser passado para o gráfico que contém os dados da anotação." + "Min Width": ["Largura mínima"], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Largura mínima predefinida da coluna em pixels; a largura real pode ser superior a esta se as outras colunas não necessitarem de muito espaço" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Isso controla se o campo de grão de tempo da exibição atual\n deve ser passado para o gráfico que contém os dados de anotação." + "Text align": ["Alinhamento Texto"], + "Horizontal alignment": ["Alinhamento horizontal"], + "Show cell bars": ["Mostrar barras de células"], + "Whether to align positive and negative values in cell bar chart at 0": [ + "Se os valores positivos e negativos no gráfico de barras de células devem ser alinhados em 0" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "Este painel está sendo atualizado automaticamente no momento; a próxima atualização automática será em %s." + "Whether to colorize numeric values by if they are positive or negative": [ + "Se os valores numéricos devem ser coloridos de acordo com o fato de serem positivos ou negativos" ], - "This dashboard is managed externally, and can't be edited in Superset": [ - "Esse painel é gerenciado externamente e não pode ser editado no Superset" + "Truncate Cells": ["Truncar Células"], + "Truncate long cells to the \"min width\" set above": [ + "Truncar células longas para a \"min width\" definida acima" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "Esse painel não está publicado, o que significa que não será exibido na lista de painéis. Favorite-o para vê-lo lá ou acesse-o usando diretamente a URL." + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ + "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Esse painel não foi publicado, portanto não será exibido na lista de painéis. Clique aqui para publicar esse painel." + "Small number format": ["Formato de número pequenoo"], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Formato de número D3 para números entre -1,0 e 1,0, útil quando se pretende ter dígitos significativos diferentes para números pequenos e grandes" ], - "This dashboard is now hidden": ["Esse painel agora está oculto"], - "This dashboard is now published": ["Esse painel foi publicado"], - "This dashboard is published. Click to make it a draft.": [ - "Este painel foi publicado. Clique para torná-lo um rascunho." + "Edit formatter": ["Editar formatador"], + "Add new formatter": ["Adicionar novo formatador"], + "Add new color formatter": ["Adicionar novo formatador de cores"], + "alert": ["alerta"], + "error dark": [""], + "This value should be smaller than the right target value": [ + "Esse valor deve ser menor do que o valor-alvo direito" ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ - "Esse painel está pronto para ser incorporado. Em seu aplicativo, passe o seguinte id para o SDK:" + "This value should be greater than the left target value": [ + "Esse valor deve ser maior do que o valor-alvo esquerdo" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "Este painel foi alterado recentemente. Recarregue o painel para obter a versão mais recente." + "Required": ["Necessário"], + "Operator": ["Operador"], + "Left value": ["Valor esquerdo"], + "Right value": ["Valor correto"], + "Target value": ["Valor alvo"], + "Select column": ["Selecionar coluna"], + "Lower threshold must be lower than upper threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" ], - "This dashboard was saved successfully.": [ - "Este painel foi salvo com sucesso." + "The lower limit of the threshold range of the Isoband": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Editar conjunto de dados"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Você deve ser proprietário de um conjunto de dados para poder editá-lo. Entre em contato com o proprietário do conjunto de dados para solicitar modificações ou acesso de edição." ], - "This database is managed externally, and can't be edited in Superset": [ - "Esse banco de dados é gerenciado externamente e não pode ser editado no Superset" + "View in SQL Lab": ["Exibir no SQL Lab"], + "Query preview": ["Pré-visualização da consulta"], + "Save as dataset": ["Salvar como conjunto de dados"], + "Missing URL parameters": ["Parâmetros de URL ausentes"], + "The URL is missing the dataset_id or slice_id parameters.": [ + "O URL não tem os parâmetros dataset_id ou slice_id." ], - "This database table does not contain any data. Please select a different table.": [ - "Essa tabela do banco de dados não contém dados. Selecione uma tabela diferente." + "The dataset linked to this chart may have been deleted.": [ + "O conjunto de dados vinculado a esse gráfico pode ter sido excluído." ], - "This dataset is managed externally, and can't be edited in Superset": [ - "Esse conjunto de dados é gerenciado externamente e não pode ser editado no Superset" + "RANGE TYPE": ["TIPO DA FAIXA"], + "Actual time range": ["Intervalo de tempo real"], + "APPLY": ["APLICAR"], + "Edit time range": ["Editar intervalo de tempo"], + "START (INCLUSIVE)": ["INÍCIO (INCLUSIVO)"], + "Start date included in time range": [ + "Data de início incluída no intervalo de tempo" ], - "This dataset is not used to power any charts.": [ - "Esse conjunto de dados não é usado para alimentar nenhum gráfico." + "END (EXCLUSIVE)": ["FIM (EXCLUSIVO)"], + "End date excluded from time range": [ + "Data final excluída do intervalo de tempo" ], - "This defines the element to be plotted on the chart": [ - "Isso define o elemento a ser plotado no gráfico" + "Configure Time Range: Previous...": [ + "Configurar Intervalo de Tempo: Anterior..." ], - "This defines the level of the hierarchy": [ - "Isso define o nível da hierarquia" + "Configure Time Range: Last...": [ + "Configurar Intervalo de Tempo: Último..." ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Esses campos funcionam como uma visualização do Superset, o que significa que o Superset executará uma consulta com base nessa string como uma subconsulta." + "Configure custom time range": [ + "Configurar intervalo de tempo personalizado" ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Esse filtro não existe no painel. Ele não será aplicado." + "Relative quantity": ["Quantidade relativa"], + "Relative period": ["Período relativo"], + "Anchor to": ["Âncora para"], + "NOW": ["AGORA"], + "Date/Time": ["Data/Hora"], + "Return to specific datetime.": ["Retornar para data e hora específica."], + "Syntax": ["Sintaxe"], + "Example": ["Exemplo"], + "Moves the given set of dates by a specified interval.": [ + "Move o conjunto de datas dado por um intervalo especificado." ], - "This filter might be incompatible with current dataset": [ - "Esse filtro pode ser incompatível com o conjunto de dados atual" + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Trunca a data especificada com a precisão especificada pela unidade de data." ], - "This filter set is identical to: \"%s\"": [ - "Esse conjunto de filtros é idêntico a: \"%s\"" + "Get the last date by the date unit.": [ + "Obter a última data através da unidade de data." ], - "This functionality is disabled in your environment for security reasons.": [ - "Essa funcionalidade está desativada em seu ambiente por motivos de segurança." + "Get the specify date for the holiday": [ + "Obter a data específica para o feriado" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "Essa é a condição que será adicionada à cláusula WHERE. Por exemplo, para retornar apenas as linhas de um cliente específico, você pode definir um filtro regular com a cláusula `client_id = 9`. Para não exibir nenhuma linha a menos que um usuário pertença a uma função de filtro RLS, um filtro básico pode ser criado com a cláusula `1 = 0` (sempre falso)." + "Previous": ["Anterior"], + "Custom": ["Personalizado"], + "last day": ["último dia"], + "last week": ["semana passada"], + "last month": ["mês passado"], + "last quarter": ["último trimestre"], + "last year": ["ano passado"], + "previous calendar week": ["semana anterior do calendário"], + "previous calendar month": ["mês anterior do calendário"], + "previous calendar year": ["ano-calendário anterior"], + "Seconds %s": ["Segundos %s"], + "Minutes %s": ["Minutos %s"], + "Hours %s": ["Horas %s"], + "Days %s": ["Dias %s"], + "Weeks %s": ["Semanas %s"], + "Months %s": ["Meses %s"], + "Quarters %s": ["Trimestres %s"], + "Years %s": ["Anos %s"], + "Specific Date/Time": ["Data/Hora Específica"], + "Relative Date/Time": ["Data/hora relativa"], + "Now": ["Agora"], + "Midnight": ["Meia-noite"], + "Saved expressions": ["Expressões salvas"], + "Saved": ["Salvo"], + "%s column(s)": ["%s coluna(s)"], + "No temporal columns found": ["Não foram encontradas colunas temporais"], + "No saved expressions found": ["Nenhuma expressão salva foi encontrada"], + "Simple": ["Simples"], + "Mark a column as temporal in \"Edit datasource\" modal": [ + "Marcar uma coluna como temporal no modal \"Edit datasource\"" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Esse objeto json descreve o posicionamento dos widgets no painel. Ele é gerado dinamicamente ao ajustar o tamanho e as posições dos widgets usando arrastar e soltar na exibição do painel" + "Custom SQL": ["SQL personalizado"], + "My column": ["Minha coluna"], + "This filter might be incompatible with current dataset": [ + "Esse filtro pode ser incompatível com o conjunto de dados atual" ], - "This markdown component has an error.": [ - "Este componente de remarcação para baixo tem um erro." + "This column might be incompatible with current dataset": [ + "Essa coluna pode ser incompatível com o conjunto de dados atual" ], - "This markdown component has an error. Please revert your recent changes.": [ - "Este componente markdown tem um erro. Reverta suas alterações recentes." + "Click to edit label": ["Clique para editar o rótulo"], + "Drop columns/metrics here or click": [ + "Colocar colunas/métricas aqui ou clique" ], - "This may be triggered by:": ["Isso pode ser provocado por:"], "This metric might be incompatible with current dataset": [ "Essa métrica pode ser incompatível com o conjunto de dados atual" ], - "This section allows you to configure how to use the slice\n to generate annotations.": [ - "Esta seção permite configurar como usar o slice\n para gerar anotações." + "%s option(s)": ["%s opção(ões)"], + "Select subject": ["Selecionar assunto"], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Não foi encontrada tal coluna. Para filtrar uma métrica, experimente a aba SQL personalizado." ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Esta seção contém opções que permitem o pós-processamento analítico avançado dos resultados da consulta" + "To filter on a metric, use Custom SQL tab.": [ + "Para filtrar em uma métrica, use a aba SQL personalizado." ], - "This section contains validation errors": [ - "Esta seção contém erros de validação" - ], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ - "Esta sessão sofreu uma interrupção e alguns controles podem não funcionar como pretendido. Se você for o desenvolvedor desse aplicativo, verifique se o token de convidado está sendo gerado corretamente." - ], - "This table already has a dataset": [ - "Essa tabela já tem um conjunto de dados" - ], - "This value should be greater than the left target value": [ - "Esse valor deve ser maior do que o valor-alvo esquerdo" - ], - "This value should be smaller than the right target value": [ - "Esse valor deve ser menor do que o valor-alvo direito" + "%s operator(s)": ["%s operador(es)"], + "Select operator": ["Selecionar operador"], + "Comparator option": ["Opção de comparador"], + "Type a value here": ["Digite um valor aqui"], + "Filter value (case sensitive)": [ + "Valor do filtro (diferencia maiúsculas de minúsculas)" ], - "This visualization type does not support cross-filtering.": [ - "Esse tipo de visualização não oferece suporte à filtragem cruzada." + "choose WHERE or HAVING...": ["escolha WHERE ou HAVING..."], + "Filters by columns": ["Filtros por colunas"], + "Filters by metrics": ["Filtros por métricas"], + "metric": ["métrica"], + "Fixed": ["Fixo"], + "Based on a metric": ["Com base em uma métrica"], + "My metric": ["Minha métrica"], + "Add metric": ["Adicionar métrica"], + "%s aggregates(s)": ["%s agregado(s)"], + "Select saved metrics": ["Selecionar métricas salvas"], + "%s saved metric(s)": ["%s salvos métrica(s)"], + "Saved metric": ["Salvo métrica"], + "No saved metrics found": ["Nenhuma métrica salva foi encontrada"], + "Simple ad-hoc metrics are not enabled for this dataset": [ + "As métricas ad-hoc simples não estão ativadas para este conjunto de dados" ], - "This visualization type is not supported.": [ - "Não há suporte para esse tipo de visualização." + "column": ["coluna"], + "aggregate": ["agregar"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "As métricas ad-hoc de SQL personalizado não estão ativadas para este conjunto de dados" ], - "This will remove your current embed configuration.": [ - "Isso removerá sua configuração de incorporação atual." + "Error while fetching data: %s": ["Erro ao buscar dados: %s"], + "Time series columns": ["Colunas de séries temporais"], + "Actual value": ["Valor real"], + "Sparkline": ["Sparkline"], + "Period average": ["Média do período"], + "The column header label": ["O rótulo do cabeçalho da coluna"], + "Column header tooltip": [ + "Dica de ferramenta para o cabeçalho da coluna" ], - "Threshold alpha level for determining significance": [ - "Nível alfa de limiar para determinar a significância" + "Type of comparison, value difference or percentage": [ + "Tipo de comparação, diferença de valor ou porcentagem" ], - "Threshold value should be double precision number": [ - "O valor do limite deve ser um número de precisão dupla" + "Width": ["Largura"], + "Width of the sparkline": ["Largura do brilho"], + "Height of the sparkline": ["Altura do minigráfico"], + "Time lag": ["Defasagem de tempo"], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Thumbnails": ["Miniaturas"], - "Thursday": ["Quinta"], - "Time": ["Tempo"], - "Time Column": ["Coluna do tempo"], - "Time Comparison": ["Comparação de tempo"], - "Time Format": ["Formato de hora"], - "Time Grain": ["Grão de tempo"], - "Time Granularity": ["Granularidade de tempo"], "Time Lag": ["Atraso de tempo"], - "Time Range": ["Intervalo de tempo"], + "Time ratio": ["Relação de tempo"], + "Number of periods to ratio against": [ + "Número de períodos para razão contra" + ], "Time Ratio": ["Relação de tempo"], - "Time Series": ["Séries temporais"], - "Time Series - Bar Chart": ["Série temporal - Gráfico de barras"], - "Time Series - Line Chart": ["Série temporal - Gráfico de linhas"], - "Time Series - Nightingale Rose Chart": [ - "Séries temporais - Gráfico Nightingale Rose" + "Show Y-axis": ["Mostrar eixo Y"], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Mostra o eixo Y na Sparkline. Exibirá os valores mínimo/máximo definidos manualmente, se definidos, ou os valores mínimo/máximo nos dados, caso contrário." ], - "Time Series - Paired t-test": ["Séries temporais - Teste t pareado"], - "Time Series - Percent Change": [ - "Séries temporais - Variação percentual" + "Y-axis bounds": ["Eixo Y limites"], + "Manually set min/max values for the y-axis.": [ + "Definir manualmente os valores mínimo/máximo para o eixo y." ], - "Time Series - Period Pivot": ["Série temporal - Pivô de período"], - "Time Series - Stacked": ["Séries temporais - empilhadas"], - "Time Series Options": ["Opções de séries temporais"], - "Time Shift": ["Mudança de hora"], - "Time Table View": ["Visualização da tabela de horários"], - "Time column": ["Coluna de tempo"], - "Time column \"%(col)s\" does not exist in dataset": [ - "A coluna de tempo \"%(col)s\" não existe no conjunto de dados" + "Color bounds": ["Limites de cor"], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Limites numéricos utilizados para a codificação de cores de vermelho para azul.\n Inverta os números de azul para vermelho. Para obter vermelho ou azul puro,\n pode introduzir apenas o mínimo ou o máximo." ], - "Time column filter plugin": ["Plug-in de filtro de coluna de tempo"], - "Time column to apply dependent temporal filter to": [ - "Coluna de tempo à qual aplicar o filtro temporal dependente" + "Optional d3 number format string": [ + "String opcional de formato de número d3" ], - "Time column to apply time range to": [ - "Coluna de tempo à qual aplicar o intervalo de tempo" + "Number format string": ["String de formato de número"], + "Optional d3 date format string": [ + "Cadeia de caracteres opcional de formato de data d3" ], - "Time comparison": ["Comparação de tempo"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ - "Delta de tempo em linguagem natural \n (exemplo: 24 horas, 7 dias , 56 semanas , 365 dias)" + "Date format string": ["String de formato de data"], + "Column Configuration": ["Configuração da coluna"], + "Select Viz Type": ["Selecione o tipo de visualização"], + "Currently rendered: %s": ["Atualmente renderizado: %s"], + "Recommended tags": ["Etiquetas recomendadas"], + "Search all charts": ["Pesquisar todos os gráficos"], + "No description available.": ["Nenhuma descrição disponível."], + "Examples": ["Exemplos"], + "This visualization type is not supported.": [ + "Não há suporte para esse tipo de visualização." ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "O delta de tempo é ambíguo. Especifique [%(human_readable)s ago] ou [%(human_readable)s later]." + "View all charts": ["Exibir todos os gráficos"], + "Select a visualization type": ["Selecione um tipo de visualização"], + "No results found": ["Não foram encontrados resultados"], + "New chart": ["Novo gráfico"], + "Edit chart properties": ["Editar propriedades do gráfico"], + "Dashboards added to": ["Painéis adicionados a"], + "Export to .JSON": ["Exportar para .JSON"], + "Embed code": ["Incorporar código"], + "Run in SQL Lab": ["Executar no SQL Lab"], + "Code": ["Código"], + "Markup type": ["Tipo de marcação"], + "Pick your favorite markup language": [ + "Escolha sua linguagem de marcação favorita" ], - "Time filter": ["Filtro de tempo"], - "Time format": ["Formato de hora"], - "Time grain": ["Grão de tempo"], - "Time grain filter plugin": ["Plug-in de filtro de granulação de tempo"], - "Time grain missing": ["Grão do tempo ausente"], - "Time granularity": ["Granularidade de tempo"], - "Time in seconds": ["Tempo em segundos"], - "Time lag": ["Defasagem de tempo"], - "Time range": ["Intervalo de tempo"], - "Time ratio": ["Relação de tempo"], - "Time related form attributes": [ - "Atributos de formulário relacionados ao tempo" + "Put your code here": ["Coloque seu código here"], + "URL parameters": ["Parâmetros de URL"], + "Extra parameters for use in jinja templated queries": [ + "Parâmetros extra para utilização em consultas de modelo jinja" ], - "Time series": ["Séries temporais"], - "Time series columns": ["Colunas de séries temporais"], - "Time shift": ["Mudança de horário"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou [%(human_readable)s later]." + "Annotations and layers": ["Anotações e camadas"], + "Annotation layers": ["Camadas de anotação"], + "My beautiful colors": ["As minhas lindas cores"], + "< (Smaller than)": ["< (menor que)"], + "> (Larger than)": ["> (Maior que)"], + "<= (Smaller or equal)": ["<= (menor ou equal)"], + ">= (Larger or equal)": [">= (Maior ou equal)"], + "== (Is equal)": ["== (É igual)"], + "!= (Is not equal)": ["!= (diferente)"], + "Not null": ["Não nulo"], + "60 days": ["60 dias"], + "90 days": ["90 dias"], + "Add notification method": ["Adicionar método de notificação"], + "Add delivery method": ["Adicionar método de entrega"], + "Add": ["Adicionar"], + "Edit Report": ["Editar relatório"], + "Edit Alert": ["Editar Alerta"], + "Add Report": ["Adicionar relatório"], + "Add Alert": ["Adicionar alerta"], + "Report name": ["Nome do relatório"], + "Alert name": ["Nome do alerta"], + "Active": ["Ativo"], + "Alert condition": ["Condição de alerta"], + "SQL Query": ["Consulta SQL"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Alerta de acionamento se..."], + "Condition": ["Condição"], + "Report schedule": ["Agendamento do relatório"], + "Alert condition schedule": ["Programação do estado de alerta"], + "Timezone": ["Fuso horário"], + "Schedule settings": ["Configurações de agendamento"], + "Log retention": ["Retenção de log"], + "Working timeout": ["Tempo limite de trabalho"], + "Time in seconds": ["Tempo em segundos"], + "seconds": ["segundos"], + "Grace period": ["Período de inatividade"], + "Message content": ["Conteúdo da Mensagem"], + "Send as PNG": ["Enviar como PNG"], + "Send as CSV": ["Enviar como CSV"], + "Send as text": ["Enviar como texto"], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Método de notificação"], + "report": ["relatório"], + "%s updated": ["%s atualizado"], + "CRON Schedule": ["Cronograma do CRON"], + "CRON expression": ["Expressão CRON"], + "Report sent": ["Relatório enviado"], + "Alert triggered, notification sent": [ + "Alerta acionado , notificação enviada" ], - "Time-series Area Chart": ["Gráfico de área de séries temporais"], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "O gráfico de área de série temporal é semelhante ao gráfico de linhas, pois representa variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras. Um gráfico de área no Superset pode ser de fluxo, empilhamento ou expansão." + "Report sending": ["Enviando relatório"], + "Alert running": ["Alerta em execução"], + "Report failed": ["Relatório falhou"], + "Alert failed": ["Falha no alerta"], + "Nothing triggered": ["Nada foi acionado"], + "Alert Triggered, In Grace Period": [ + "Alerta Acionado, em período de carência" ], - "Time-series Bar Chart": ["Gráfico de barras de séries temporais"], - "Time-series Bar Chart (legacy)": [ - "Gráfico de barras de séries temporais (legado)" + "Delivery method": ["Método de entrega"], + "Select Delivery Method": ["Selecione o método de entrega"], + "Queries": ["Consultas"], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["camada de anotação"], + "Annotation template updated": ["Modelo de anotação atualizado"], + "Annotation template created": ["Modelo de anotação criado"], + "Edit annotation layer properties": [ + "Editar propriedades da camada de anotação" ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Os gráficos de barras de séries temporais são usados para mostrar as alterações em uma métrica ao longo do tempo como uma série de barras." + "Annotation layer name": ["Nome da camada de anotação"], + "Description (this can be seen in the list)": [ + "Descrição (esta pode ser vista na lista)" ], - "Time-series Chart": ["Gráfico de séries temporais"], - "Time-series Line Chart": ["Gráfico de linhas de séries temporais"], - "Time-series Percent Change": ["Variação percentual da série temporal"], - "Time-series Period Pivot": ["Pivô de período de série temporal"], - "Time-series Scatter Plot": ["Gráfico de dispersão de séries temporais"], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "O gráfico de dispersão de séries temporais tem o tempo no eixo horizontal em unidades lineares, e os pontos são conectados em ordem. Ele mostra uma relação estatística entre duas variáveis." + "annotation": ["anotação"], + "The annotation has been updated": ["A anotação foi atualizada"], + "The annotation has been saved": ["A anotação foi salva"], + "Edit annotation": ["Editar anotação"], + "Add annotation": ["Adicionar anotação"], + "date": ["data"], + "Additional information": ["Informação adicional"], + "Please confirm": ["Por favor confirme"], + "Are you sure you want to delete": ["Tem certeza que deseja remover"], + "Modified %s": ["Modificado %s"], + "css_template": ["css_template"], + "Edit CSS template properties": ["Editar propriedades do modelo CSS"], + "Add CSS template": ["Adicionar modelo CSS"], + "css": ["css"], + "published": ["publicado"], + "draft": ["rascunho"], + "Adjust how this database will interact with SQL Lab.": [ + "Ajustar como esse banco de dados vai interagir com SQL Lab." ], - "Time-series Smooth Line": ["Linha suave de séries temporais"], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "A série temporal Smooth-line é uma variação do gráfico de linhas. Sem ângulos e bordas rígidas, o Smooth-line às vezes parece mais inteligente e profissional." + "Expose database in SQL Lab": ["Expor banco de dados no SQL Lab"], + "Allow this database to be queried in SQL Lab": [ + "Permitir que o banco de dados seja consultado no SQL Lab" ], - "Time-series Stepped Line": ["Linha escalonada de série temporal"], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "O Gráfico de linhas escalonadas de séries temporais (também chamado de gráfico de etapas) é uma variação do gráfico de linhas, mas com a linha formando uma série de etapas entre os pontos de dados. Um gráfico de etapas pode ser útil quando você deseja mostrar as alterações que ocorrem em intervalos irregulares." + "Allow creation of new tables based on queries": [ + "Permitir criação de novas tabelas baseadas em consultas" ], - "Time-series Table": ["Tabela de séries temporais"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "O gráfico de linhas de séries temporais é usado para visualizar medições repetidas feitas em intervalos de tempo regulares. O gráfico de linhas é um tipo de gráfico que exibe informações como uma série de pontos de dados conectados por segmentos de linha reta. É um tipo básico de gráfico comum em muitos campos." + "Allow creation of new views based on queries": [ + "Permitir criação de novas visualizações baseadas em consultas" ], - "Timeout error": ["Erro de tempo limite"], - "Timestamp format": ["Formato de carimbo de data/hora"], - "Timezone": ["Fuso horário"], - "Timezone offset (in hours) for this datasource": [ - "Deslocamento de fuso horário (em horas) para essa fonte de dados" + "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], + "Create or select schema...": ["Criar ou selecionar esquema..."], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Força a criação de todas as tabelas e visôes neste esquema ao clicar em CTAS ou CVAS no SQL Lab." ], - "Timezone selector": ["Seletor de fuso horário"], - "Tiny": ["Minúsculo"], - "Title": ["Título"], - "Title Column": ["Coluna de título"], - "Title is required": ["O título é obrigatório"], - "Title or Slug": ["Título ou Slug"], - "To filter on a metric, use Custom SQL tab.": [ - "Para filtrar em uma métrica, use a aba SQL personalizado." + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Permitir manipulação do banco de dados usando instruções não SELECT como UPDATE, DELETE, CREATE, etc." ], - "To get a readable URL for your dashboard": [ - "Para obter um URL legível para seu painel" + "Enable query cost estimation": [ + "Ativar estimativa de custo de consulta" ], - "Tools": ["Ferramentas"], - "Tooltip": ["Dica"], - "Tooltip sort by metric": [ - "Classificação da dica de ferramenta por métrica" + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Para Bigquery, Presto e Postgres, mostra um botão para calcular o custo antes de executar uma consulta." ], - "Tooltip time format": ["Formato de hora da dica de ferramenta"], - "Top": ["Topo"], - "Top left": ["Superior esquerdo"], - "Top right": ["Superior direito"], - "Top to Bottom": ["De cima para baixo"], - "Total (%(aggfunc)s)": ["Total (%(aggfunc)s)"], - "Total (%(aggregatorName)s)": ["Total (%(aggregatorName)s)"], - "Total value": ["Valor total"], - "Total: %s": ["Total: %s"], - "Totals": ["Totais"], - "Track job": ["Rastrear o trabalho"], - "Transformable": ["Transformável"], - "Transparent": ["Transparente"], - "Transpose pivot": ["Transpor pivô"], - "Tree Chart": ["Gráfico de árvore"], - "Tree layout": ["Layout da árvore"], - "Tree orientation": ["Orientação da árvore"], - "Treemap": ["Mapa da árvore"], - "Treemap (legacy)": ["Mapa da árvore (legado)"], - "Trend": ["Tendência"], - "Triangle": ["Triângulo"], - "Trigger Alert If...": ["Alerta de acionamento se..."], - "Truncate Axis": ["Truncar eixo"], - "Truncate Cells": ["Truncar Células"], - "Truncate Metric": ["Truncar métrica"], - "Truncate Y Axis": ["Truncar Eixo Y"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "Truncar Eixo Y. Pode ser substituído pela especificação de um limite mínimo ou máximo." + "Allow this database to be explored": [ + "Permitir que esse banco de dados seja explorado" ], - "Truncate long cells to the \"min width\" set above": [ - "Truncar células longas para a \"min width\" definida acima" + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Quando ativado, os usuários podem visualizar os resultados do SQL Lab no Explore." ], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Trunca a data especificada com a precisão especificada pela unidade de data." + "Disable SQL Lab data preview queries": [ + "Desativar as consultas de pré-visualização de dados do SQL Lab" ], - "Try applying different filters or ensuring your datasource has data": [ - "Tente aplicar filtros diferentes ou garantir que sua fonte de dados tenha dados" + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Desativar a pré-visualização de dados ao obter metadados de tabelas no SQL Lab. Útil para evitar problemas de desempenho do navegador quando se utilizam bancos de dados com tabelas muito grandes." ], - "Try different criteria to display results.": [ - "Experimente critérios diferentes para exibir os resultados." + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ + "" ], - "Try selecting a different schema": [ - "Tente selecionar um esquema diferente" + "Performance": ["Desempenho"], + "Adjust performance settings of this database.": [ + "Ajuste as configurações de desempenho desse banco de dados." ], - "Tuesday": ["Terça"], - "Tukey": ["Tukey (inglês)"], - "Type": ["Tipo"], - "Type \"%s\" to confirm": ["Digite \"%s\" para confirmar"], - "Type a value": ["Digite um valor"], - "Type a value here": ["Digite um valor aqui"], - "Type is required": ["O tipo é obrigatório"], - "Type of Google Sheets allowed": ["Tipo de Planilhas Google permitido"], - "Type of comparison, value difference or percentage": [ - "Tipo de comparação, diferença de valor ou porcentagem" + "Chart cache timeout": ["Tempo limite da cache do gráfico"], + "Enter duration in seconds": ["Insira a duração em segundos"], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Duração (em segundos) do tempo limite do cache para gráficos desse banco de dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 ignora o cache. Observe que o padrão é o tempo limite global se não for definido." ], - "Type or Select [%s]": ["Digite ou Selecione [%s]"], - "UI Configuration": ["Configuração da interface do usuário"], - "URL": ["URL"], - "URL Parameters": ["Parâmetros de URL"], - "URL parameters": ["Parâmetros de URL"], - "URL slug": ["Slug de URL"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "Não é possível adicionar uma nova guia ao backend. Entre em contato com o administrador." + "Schema cache timeout": ["Tempo limite do cache de esquema"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Duração (em segundos) do tempo limite do cache de metadados para esquemas desse banco de dados. Se não for definido, o cache nunca expira." ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "Não foi possível conectar-se ao catálogo chamado \"%(nome_do_catálogo)s \"." + "Table cache timeout": ["Tempo limite do cache da tabela"], + "Asynchronous query execution": ["Execução de consulta assíncrona"], + "Cancel query on window unload event": [ + "Cancelar consulta no evento de descarregamento da janela" ], - "Unable to connect to database \"%(database)s\".": [ - "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Termina as consultas em execução quando a janela do browser é fechada ou se navega para outra página. Disponível para bancos de dados Presto, Hive, MySQL, Postgres e Snowflake." ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "Não é possível se conectar. Verifique se as seguintes funções estão definidas na conta de serviço: \"Visualizador de dados do BigQuery\", \"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do BigQuery\" e as seguintes permissões estão definidas \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" + "Add extra connection information.": [ + "Adicione informações adicionais sobre a conexão." ], - "Unable to create chart without a query id.": [ - "Não é possível criar um gráfico sem um ID de consulta." + "Secure extra": ["Segurança Extra"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Cadeia de caracteres JSON contendo configuração de conexão adicional. Isso é usado para fornecer informações de conexão para sistemas como Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de nome de usuário:senha normalmente usada pelo SQLAlchemy." ], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [ - "Não foi possível encontrar esse feriado: [%(holiday)s]" + "Enter CA_BUNDLE": ["Digite CA_BUNDLE"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Conteúdo CA_BUNDLE opcional para validar pedidos HTTPS. Apenas disponível em determinados motores de banco de dados." ], - "Unable to load columns for the selected table. Please select a different table.": [ - "Não foi possível carregar colunas para a tabela selecionada. Selecione uma tabela diferente." + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e GSheets)" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Não foi possível migrar o estado do editor de consultas para o backend. O Superset tentará novamente mais tarde. Entre em contato com o administrador se o problema persistir." + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Se for o Presto ou o Trino, todas as consultas no SQL Lab serão executadas como o usuário conectado no momento, que deve ter permissão para executá-las. Se o Hive e o hive.server2.enable.doAs estiverem ativados, as consultas serão executadas como conta de serviço, mas representarão o usuário conectado no momento por meio da propriedade hive.server2.proxy.user." ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Não foi possível migrar o estado da consulta para o backend. O Superset tentará novamente mais tarde. Entre em contato com o administrador se o problema persistir." + "Allow file uploads to database": [ + "Permitir uploads de arquivos para o banco de dados" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Não foi possível migrar o estado do esquema da tabela para o backend. O Superset tentará novamente mais tarde. Entre em contato com o administrador se o problema persistir." + "Schemas allowed for File upload": [ + "Esquemas permitidos para upload de arquivos" ], - "Unable to retrieve dashboard colors": [ - "Não foi possível recuperar as cores do painel" + "A comma-separated list of schemas that files are allowed to upload to.": [ + "Uma lista separada por vírgulas de esquemas para os quais os arquivos têm permissão para fazer upload." ], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" + "Additional settings.": ["Configurações adicionais."], + "Metadata Parameters": ["Parâmetros de metadados"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Não foi possível fazer upload do arquivo colunar \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" + "Engine Parameters": ["Parâmetros do motor"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "O objeto engine_params é descompactado na chamada sqlalchemy.create_engine." ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Não foi possível fazer upload do arquivo do Excel \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" + "Version": ["Versão"], + "Version number": ["Número da versão"], + "STEP %(stepCurr)s OF %(stepLast)s": [ + "ETAPA %(stepCurr)s De %(stepLast)s" ], - "Undefined": ["Indefinido"], - "Undefined window for rolling operation": [ - "Janela indefinida para operação de rolagem" + "Enter Primary Credentials": ["Inserir credenciais primárias"], + "Need help? Learn how to connect your database": [ + "Precisa de ajuda? Aprenda como conectar seu banco de dados" ], - "Undo the action": ["Desfazer a ação"], - "Undo?": ["Desfazer?"], - "Unexpected error": ["Erro inesperado"], - "Unexpected error occurred, please check your logs for details": [ - "Ocorreu um erro inesperado, verifique os registros(logs) para obter detalhes" + "Database connected": ["Banco de dados conectado"], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Criar um conjunto de dados para começar a visualizar seus dados como um gráfico ou vá para\n SQL Lab para consultar seus dados." ], - "Unexpected time range: %s": ["Intervalo de tempo inesperado: %s"], - "Unknown": ["Desconhecido"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Host do servidor MySQL desconhecido \"%(hostname)s\"." + "Enter the required %(dbModelName)s credentials": [ + "Digite as credenciais %(dbModelName)s necessárias" ], - "Unknown Presto Error": ["Erro desconhecido do Presto"], - "Unknown Status": ["Status Desconhecido"], - "Unknown column used in orderby: %(col)s": [ - "Coluna desconhecida usada em orderby: %(col)s" + "Need help? Learn more about": ["Precisa de ajuda? Saiba mais sobre"], + "connecting to %(dbModelName)s.": ["conectando ao %(dbModelName)s."], + "Select a database to connect": [ + "Selecione um banco de dados para se conectar" ], - "Unknown error": ["Erro desconhecido"], - "Unknown input format": ["Formato de entrada desconhecido"], - "Unknown value": ["Valor desconhecido"], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Tipo de retorno inseguro para a função %(func)s: %(value_ type)s" + "SSH Host": ["Host SSH"], + "e.g. 127.0.0.1": ["por exemplo, 127.0.0.1"], + "SSH Port": ["Porta SSH"], + "Login with": ["Fazer login com"], + "Private Key & Password": ["Chave privada e Senha"], + "SSH Password": ["Senha SSH"], + "e.g. ********": ["por exemplo ********"], + "Private Key": ["Chave privada"], + "Paste Private Key here": ["Cole a chave privada aqui"], + "SSH Tunnel": ["Túnel SSH"], + "SSH Tunnel configuration parameters": [ + "Parâmetros de configuração do Túnel SSH" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Valor de modelo não seguro para a chave %(key)s: %(value_ type)s" + "Display Name": ["Nome de exibição"], + "Name your database": ["Nome do seu banco de dados"], + "Pick a name to help you identify this database.": [ + "Escolha um nome para te ajudar identificar esse banco de dados." ], - "Unsupported clause type: %(clause)s": [ - "Tipo de cláusula sem suporte: %(clause)s" + "dialect+driver://username:password@host:port/database": [ + "dialect+driver://username:password@host:port/database" ], - "Unsupported post processing operation: %(operation)s": [ - "Operação de pós-processamento sem suporte: %(operation)s" + "Refer to the": ["Consulte o"], + "for more information on how to structure your URI.": [ + "para obter mais informações sobre como estruturar seu URI." ], - "Unsupported return value for method %(name)s": [ - "Valor de retorno não suportado para o método %(name)s" + "Test connection": ["Testar Conexão"], + "database": ["banco de dados"], + "Please enter a SQLAlchemy URI to test": [ + "Por favor insira um URI SQLAlchemy para teste" ], - "Unsupported template value for key %(key)s": [ - "Valor de modelo não suportado para a chave %(key)s" + "e.g. world_population": ["por exemplo, world_population"], + "Database settings updated": [ + "Configurações do banco de dados atualizadas" ], - "Unsupported time grain: %(time_grain)s": [ - "Grão de tempo não suportado: %(time_grain)s" + "Sorry there was an error fetching database information: %s": [ + "Lamentamos, mas ocorreu um erro ao obter as informações do banco de dados: %s" ], - "Untitled Dataset": ["Conjunto de dados sem título"], - "Untitled Query": ["Consulta sem título"], - "Untitled query": ["Consulta sem título"], - "Update": ["Atualização"], - "Update chart": ["Atualizar Gráfico"], - "Updating chart was stopped": [ - "A atualização do gráfico foi interrompida" + "Or choose from a list of other databases we support:": [ + "Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" ], - "Upload": ["Carregar"], - "Upload CSV": ["Carregar CSV"], - "Upload CSV to database": ["Carregar CSV para o banco de dados"], - "Upload Credentials": ["Carregar credenciais"], - "Upload Enabled": ["Upload habilitado"], - "Upload Excel file": ["Carregar arquivo Excel"], - "Upload Excel file to database": [ - "Carregar arquivo do Excel para o banco de dados" + "Supported databases": ["Bancos de dados compatíveis"], + "Choose a database...": ["Escolha um banco de dados..."], + "Want to add a new database?": [ + "Deseja adicionar um novo banco de dados?" ], - "Upload JSON file": ["Carregar arquivo JSON"], - "Upload columnar file": ["Carregar arquivo colunar"], - "Upload columnar file to database": [ - "Carregar arquivo colunar no banco de dados" + "Connect": ["Conectar"], + "Finish": ["Finalizar"], + "This database is managed externally, and can't be edited in Superset": [ + "Esse banco de dados é gerenciado externamente e não pode ser editado no Superset" ], - "Upload file to database": ["Carregar arquivo no banco de dados"], - "Usage": ["Uso"], - "Use \"%(menuName)s\" menu instead.": [ - "Em vez disso, use o menu \"%(menuName)s\"." + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "As senhas dos bancos de dados abaixo são necessárias para importá-los. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exploração e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], - "Use %s to open in a new tab.": ["Use %s para abrir em uma nova guia."], - "Use Area Proportions": ["Proporções de área de uso"], - "Use Columns": ["Usar colunas"], - "Use a log scale": ["Use uma escala logarítmica"], - "Use a log scale for the X-axis": [ - "Use uma escala logarítmica para eixo X" + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Você está importando um ou mais bancos de dados que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" ], - "Use a log scale for the Y-axis": [ - "Use uma escala logarítmica para o eixo Y" + "Database Creation Error": ["Erro na criação do banco de dados"], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Não conseguimos nos conectar ao seu banco de dados. Clique em \"Ver mais\" para obter informações fornecidas pelo banco de dados que podem ajudar a solucionar o problema." ], - "Use an encrypted connection to the database": [ - "Use uma conexão criptografada com o banco de dados" + "CREATE DATASET": ["CREATE DATASET"], + "QUERY DATA IN SQL LAB": ["CONSULTAR DADOS NO SQL LAB"], + "Connect a database": ["Conectar um banco de dados"], + "Edit database": ["Editar banco de dados"], + "Connect this database using the dynamic form instead": [ + "Em vez disso, conecte esse banco de dados utilizando o formulário dinâmico" ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "Use outro gráfico existente como fonte para anotações e sobreposições.\n Seu gráfico deve ser um destes tipos de visualização: [%s]" + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Clique neste link para mudar para um formulário alternativo que expõe apenas os campos obrigatórios necessários para conectar esse banco de dados." ], - "Use date formatting even when metric value is not a timestamp": [ - "Usar formatação de data mesmo quando o valor da métrica não for um carimbo de data/hora" + "Additional fields may be required": [ + "Adicional campos que podem ser necessários" ], - "Use legacy datasource editor": [ - "Usar o editor de fonte de dados herdado" + "Import database from file": ["Importar banco de dados de um arquivo"], + "Connect this database with a SQLAlchemy URI string instead": [ + "Em vez disso, conecte esse banco de dados com uma cadeia de URI SQLAlchemy" ], - "Use metrics as a top level group for columns or for rows": [ - "Use métricas como um grupo de nível superior para colunas ou linhas" + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Clique neste link para mudar para um formulário alternativa que permite você inserir manualmente o URL do SQLAlchemy para esse banco de dados." ], - "Use only a single value.": ["Use apenas um único valor."], - "Use the Advanced Analytics options below": [ - "Use as opções de análise avançada abaixo" + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio (por exemplo, mydatabase.com)." ], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "Use o arquivo JSON que você baixou automaticamente ao criar sua conta de serviço." + "Host": ["Host"], + "e.g. 5432": ["por exemplo, 5432"], + "Port": ["Porta"], + "e.g. sql/protocolv1/o/12345": ["por exemplo , sql/protocolv1/o/12345"], + "Copy the name of the HTTP Path of your cluster.": [ + "Copiar o nome do caminho HTTP de seu cluster." ], - "Use the edit button to change this field": [ - "Use o botão de edição para alterar esse campo" + "Copy the name of the database you are trying to connect to.": [ + "Copiar o nome do banco de dados que você está tentando se conectar." ], - "Use this section if you want a query that aggregates": [ - "Use esta seção se quiser uma consulta que agregue" + "Access token": ["Token de acesso"], + "Pick a nickname for how the database will display in Superset.": [ + "Escolha um apelido para a forma como o banco de dados será exibido no Superset." ], - "Use this section if you want to query atomic rows": [ - "Use esta seção se quiser consultar linhas atômicas" + "e.g. param1=value1¶m2=value2": [ + "por exemplo, param1=value1¶m2=value2" ], - "Use this to define a static color for all circles": [ - "Use isso para definir uma cor estática para todos os círculos" + "Additional Parameters": ["Parâmetros adicionais"], + "Add additional custom parameters": [ + "Adicionar parâmetros personalizados adicionais" ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "Usado internamente para identificar o plug-in. Deve ser definido com o nome do pacote do package.json do plugin" + "SSL Mode \"require\" will be used.": [ + "O modo SSL \"require\" será usado." ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "Usado para resumir um conjunto de dados, agrupando várias estatísticas ao longo de dois eixos. Exemplos: Números de vendas por região e mês, tarefas por status e responsável, usuários ativos por idade e local. Não é a visualização mais impressionante visualmente, mas é altamente informativa e versátil." + "Type of Google Sheets allowed": ["Tipo de Planilhas Google permitido"], + "Publicly shared sheets only": [ + "Apenas Planilhas compartilhadas publicamente" ], - "User": ["Usuário"], - "User Roles": ["Funções de usuário"], - "User doesn't have the proper permissions.": [ - "O usuário não tem as permissões adequadas." + "Public and privately shared sheets": [ + "Planilhas compartilhadas públicas e privadas" ], - "User must select a value before applying the filter": [ - "O usuário deve selecionar um valor antes de aplicar o filtro" + "How do you want to enter service account credentials?": [ + "Como pretende introduzir as credenciais da conta de serviço?" ], - "User must select a value for this filter": [ - "O usuário deve selecionar um valor para esso filtro" + "Upload JSON file": ["Carregar arquivo JSON"], + "Copy and Paste JSON credentials": ["Copiar e cole as credenciais JSON"], + "Service Account": ["Conta de serviço"], + "Paste content of service credentials JSON file here": [ + "Colar aqui o conteúdo do arquivo JSON das credenciais de serviço" ], - "User query": ["Consulta do usuário"], - "Username": ["Nome de usuário"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "Copy and paste the entire service account .json file here": [ + "Copie e cole todo o ficheiro service account.json aqui" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "Usa um medidor para mostrar o progresso de uma métrica em direção a uma meta. A posição do mostrador representa o progresso e o valor do terminal no medidor representa o valor-alvo." + "Upload Credentials": ["Carregar credenciais"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "Use o arquivo JSON que você baixou automaticamente ao criar sua conta de serviço." ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "Usa círculos para visualizar o fluxo de dados em diferentes estágios de um sistema. Passe o mouse sobre caminhos individuais na visualização para entender os estágios de um valor. Útil para funis e pipelines de visualização de vários estágios e vários grupos." + "Connect Google Sheets as tables to this database": [ + "Conectar Planilhas Google como tabelas para esse banco de dados" ], - "Value": ["Valor"], - "Value Domain": ["Domínio de Valor"], - "Value Format": ["Formato do valor"], - "Value bounds": ["Limites de valor"], - "Value format": ["Formato do valor"], - "Value is required": ["O valor é necessário"], - "Value must be greater than 0": ["O valor deve ser maior que 0"], - "Values are dependent on other filters": [ - "Os valores dependem de outros filtros" + "Google Sheet Name and URL": ["Planilha Google Nome e URL"], + "Enter a name for this sheet": ["Digite um nome para essa planilha"], + "Paste the shareable Google Sheet URL here": [ + "Colar o URL compartilhável da Planilha Google aqui" ], - "Values dependent on": ["Valores dependentes de"], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "Os valores selecionados em outros filtros afetarão as opções de filtro para mostrar apenas os valores relevantes" + "Add sheet": ["Adicionar planilha"], + "e.g. xy12345.us-east-2.aws": ["por exemplo, xy12345.us-east-2.aws"], + "e.g. compute_wh": ["por exemplo , compute_wh"], + "e.g. AccountAdmin": ["por exemplo , AccountAdmin"], + "Duplicate dataset": ["Conjunto de dados duplicado"], + "Duplicate": ["Duplicado"], + "New dataset name": ["Novo nome do conjunto de dados"], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "As senhas dos bancos de dados abaixo são necessárias para importá-las junto com os conjuntos de dados. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], - "Vehicle Types": ["Tipos de veículos"], - "Verbose Name": ["Nome detalhado"], - "Version": ["Versão"], - "Version number": ["Número da versão"], - "Vertical": ["Vertical"], - "Vertical (Left)": ["Vertical (esquerda)"], - "Video game consoles": ["Consoles de videogame"], - "View": ["Ver"], - "View All »": ["Ver Todos »"], + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Você está importando um ou mais conjuntos de dados que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" + ], + "Refreshing columns": ["Atualização de colunas"], + "Table columns": ["Colunas da tabela"], + "Loading": ["Carregando"], "View Dataset": ["Exibir conjunto de dados"], - "View all charts": ["Exibir todos os gráficos"], - "View as table": ["Exibir como tabela"], - "View in SQL Lab": ["Exibir no SQL Lab"], - "View keys & indexes (%s)": ["Exibir chaves e índices (%s)"], - "View query": ["Ver consulta"], - "Viewed": ["Visto"], - "Viewed %s": ["Visualizado %s"], - "Viewport": ["Porta de exibição"], - "Virtual": ["Virtual"], - "Virtual (SQL)": ["Virtual (SQL)"], - "Virtual dataset": ["Conjunto de dados virtuais"], - "Virtual dataset query cannot be empty": [ - "A consulta do conjunto de dados virtual não pode estar vazia" + "This table already has a dataset": [ + "Essa tabela já tem um conjunto de dados" ], - "Virtual dataset query cannot consist of multiple statements": [ - "A consulta de conjunto de dados virtual não pode consistir em várias instruções" + "create dataset from SQL query": [ + "criar um conjunto de dados a partir de uma consulta SQL" ], - "Virtual dataset query must be read-only": [ - "A consulta ao conjunto de dados virtual deve ser somente de leitura" + "Select dataset source": ["Selecione a fonte do conjunto de dados"], + "No table columns": ["Nenhuma coluna da tabela"], + "This database table does not contain any data. Please select a different table.": [ + "Essa tabela do banco de dados não contém dados. Selecione uma tabela diferente." ], - "Visual Tweaks": ["Ajustes visuais"], - "Visualization Type": ["Tipo de visualização"], - "Visualization type": ["Tipo de visualização"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "Visualize um conjunto paralelo de métricas em vários grupos. Cada grupo é visualizado usando sua própria linha de pontos e cada métrica é representada como uma borda no gráfico." + "An Error Occurred": ["Ocorreu um erro"], + "Unable to load columns for the selected table. Please select a different table.": [ + "Não foi possível carregar colunas para a tabela selecionada. Selecione uma tabela diferente." ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ - "Visualize uma métrica relacionada em pares de grupos. Os mapas de calor são excelentes para mostrar a correlação ou a força entre dois grupos. A cor é usada para enfatizar a força do vínculo entre cada par de grupos." + "The API response from %s does not match the IDatabaseTable interface.": [ + "A resposta da API de %s não corresponde à interface IDatabaseTable." ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D na visualização em grade." + "Usage": ["Uso"], + "Chart owners": ["Proprietários do gráfico"], + "Chart last modified": ["Última modificação do gráfico"], + "Chart last modified by": ["Gráfico modificado pela última vez por"], + "Dashboard usage": ["Uso do painel"], + "Create chart with dataset": ["Criar gráfico com conjunto de dados"], + "chart": ["gráfico"], + "No charts": ["Sem gráficos"], + "This dataset is not used to power any charts.": [ + "Esse conjunto de dados não é usado para alimentar nenhum gráfico." ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "Visualize como uma métrica muda ao longo do tempo usando barras. Adicione um grupo por coluna para visualizar métricas de nível de grupo e como elas mudam ao longo do tempo." + "Select a database table.": ["Selecione uma tabela de banco de dados."], + "Create dataset and create chart": [ + "Criar conjunto de dados e criar gráfico" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "Visualize vários níveis de hierarquia usando uma estrutura familiar semelhante a uma árvore." + "New dataset": ["Novo conjunto de dados"], + "Select a database table and create dataset": [ + "Selecione uma tabela de banco de dados e crie um conjunto de dados" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ - "Visualize duas séries diferentes usando o mesmo eixo x. Observe que ambas as séries podem ser visualizadas com um tipo de gráfico diferente (por exemplo, uma usando barras e outra usando uma linha)." + "dataset name": ["nome do conjunto de dados"], + "There was an error fetching dataset": [ + "Houve um erro ao buscar o conjunto de dados" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ - "Visualize duas séries temporais diferentes usando o mesmo eixo x. Observe que cada série temporal pode ser visualizada de forma diferente (por exemplo, uma usando barras e outra usando uma linha)." + "There was an error fetching dataset's related objects": [ + "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ - "Visualiza uma métrica em três dimensões de dados em um único gráfico (eixo X, eixo Y e tamanho da bolha). As bolhas do mesmo grupo podem ser exibidas usando a cor da bolha." + "There was an error loading the dataset metadata": [ + "Ocorreu um erro ao carregar os metadados do conjunto de dados" ], - "Visualizes connected points, which form a path, on a map.": [ - "Visualiza pontos conectados, que formam um caminho, em um mapa." + "[Untitled]": ["[Sem título]"], + "Unknown": ["Desconhecido"], + "Viewed %s": ["Visualizado %s"], + "Edited": ["Editado"], + "Created": ["Criado"], + "Viewed": ["Visto"], + "Favorite": ["Favorito"], + "Mine": ["Meu"], + "View All »": ["Ver Todos »"], + "An error occurred while fetching dashboards: %s": [ + "Ocorreu um erro durante a pesquisa de painéis: %s" ], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ - "Visualiza áreas geográficas de seus dados como polígonos em um mapa renderizado do Mapbox. Os polígonos podem ser coloridos usando uma métrica." + "charts": ["gráficos"], + "dashboards": ["painéis"], + "recents": ["recentes"], + "saved queries": ["consultas salvas"], + "No charts yet": ["Ainda não há gráficos"], + "No dashboards yet": ["Ainda não há painéis"], + "No recents yet": ["Ainda não há registros"], + "No saved queries yet": ["Ainda não há consultas salvas"], + "%(other)s charts will appear here": [ + "%(other)s gráficos irão aparecer aqui" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "Visualiza como uma métrica mudou ao longo do tempo usando uma escala de cores e uma visualização de calendário. Os valores em cinza são usados para indicar valores ausentes e o esquema de cores linear é usado para codificar a magnitude do valor de cada dia." + "%(other)s dashboards will appear here": [ + "%(other)s painéis irão aparecer aqui" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ - "Visualiza como uma única métrica varia entre as principais subdivisões de um país (estados, províncias etc.) em um mapa coroplético. O valor de cada subdivisão é elevado quando você passa o mouse sobre o limite geográfico correspondente." + "%(other)s recents will appear here": [ + "%(other)s recentes irão aparecer aqui" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ - "Visualiza muitos objetos de séries temporais diferentes em um único gráfico. Esse gráfico está sendo descontinuado e, em vez dele, recomendamos o uso do gráfico de série temporal." + "%(other)s saved queries will appear here": [ + "%(other)s As consultas salvas aparecerão aqui" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "Visualiza o fluxo de valores de diferentes grupos por meio de diferentes estágios de um sistema. Novos estágios no pipeline são visualizados como nós ou camadas. A espessura das barras ou bordas representa a métrica que está sendo visualizada." + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "Visualiza as palavras em uma coluna que aparecem com mais frequência. A fonte maior corresponde à maior frequência." + "Recently created charts, dashboards, and saved queries will appear here": [ + "Os gráficos, painéis e consultas recentemente criados aparecerão aqui" ], - "Viz is missing a datasource": ["O Viz não tem uma fonte de dados"], - "Viz type": ["Tipo de visualização"], - "WED": ["QUA"], - "Want to add a new database?": [ - "Deseja adicionar um novo banco de dados?" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Os gráficos, painéis e consultas recentemente editados aparecerão aqui" ], - "Warning": ["Advertência"], - "Warning Message": ["Mensagem de aviso"], - "Warning!": ["Atenção!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os metadados não existirem." + "SQL query": ["Consulta SQL"], + "You don't have any favorites yet!": [ + "Você ainda não tem nenhum favorito!" ], - "Was unable to check your query": [ - "Não foi possível verificar sua consulta" + "See all %(tableName)s": ["Ver todos %(tableName)s"], + "Connect database": ["Conectar o banco de dados"], + "Create dataset": ["Criar conjunto de dados"], + "Connect Google Sheet": ["Conectar Planilha Google"], + "Upload CSV to database": ["Carregar CSV para o banco de dados"], + "Upload columnar file to database": [ + "Carregar arquivo colunar no banco de dados" ], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "Não conseguimos nos conectar ao seu banco de dados. Clique em \"Ver mais\" para obter informações fornecidas pelo banco de dados que podem ajudar a solucionar o problema." + "Upload Excel file to database": [ + "Carregar arquivo do Excel para o banco de dados" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "We can't seem to resolve column \"%(column)s\" at line %(location)s." + "Enable 'Allow file uploads to database' in any database's settings": [ + "Ativar 'Permitir uploads de arquivos para banco de dados' em quaisquer configurações do banco de dados" ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "Parece que não conseguimos resolver a coluna \"%(column_name)s\"" + "Info": ["Informações"], + "Logout": ["Sair"], + "About": ["Sobre"], + "Powered by Apache Superset": ["Feito por Apache Superset"], + "SHA": ["SHA"], + "Build": ["Construir"], + "Documentation": ["Documentação"], + "Report a bug": ["Relatar um bug"], + "Login": ["Entrar"], + "query": ["consulta"], + "Deleted: %s": ["Excluído: %s"], + "There was an issue deleting %s: %s": [ + "Houve um problema ao excluir %s: %s" ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha %(location)s." + "This action will permanently delete the saved query.": [ + "Essa ação excluirá permanentemente a consulta salva." + ], + "Delete Query?": ["Excluir consulta?"], + "Ran %s": ["Corrida %s"], + "Saved queries": ["Consultas salvas"], + "Next": ["Próximo"], + "Tab name": ["Nome da aba"], + "User query": ["Consulta do usuário"], + "Executed query": ["Consulta executada"], + "Query name": ["Nome da consulta"], + "SQL Copied!": ["SQL copiado !"], + "Sorry, your browser does not support copying.": [ + "Desculpe, seu navegador não suporta cópias." + ], + "There was an issue fetching reports attached to this dashboard.": [ + "Houve um problema na obtenção de relatórios anexados a esse painel." ], - "We have the following keys: %s": ["Temos as seguintes chaves: %s"], + "The report has been created": ["O relatório foi criado"], + "Report updated": ["Relatório atualizado"], "We were unable to active or deactivate this report.": [ "Não foi possível ativar ou desativar esse relatório." ], - "We were unable to carry over any controls when switching to this new dataset.": [ - "Não foi possível transferir nenhum controle ao mudar para esse novo conjunto de dados." - ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "Não foi possível conectar-se ao seu banco de dados chamado \"%(database)s\". Verifique o nome do banco de dados e tente novamente." + "Your report could not be deleted": [ + "Não foi possível excluir seu relatório" ], - "Web": ["Rede"], - "Wednesday": ["Quarta-feira"], - "Week": ["Semana"], - "Week ending Saturday": ["Semana terminando no Sábado"], - "Week starting Monday": ["Semana começando na segunda-feira"], - "Week starting Sunday": ["Semana começando no domingo"], - "Week_ending Sunday": ["Domingo de fim de semana"], - "Weekly Report": ["Relatório semanal"], "Weekly Report for %s": ["Relatório semanal para %s"], - "Weekly seasonality": ["Sazonalidade semanal"], - "Weeks %s": ["Semanas %s"], - "Weight": ["Peso"], - "What should be shown on the label?": ["O que deve constar no rótulo?"], - "What should happen if the table already exists": [ - "O que deve acontecer se a tabela já existir" - ], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "Quando `Calculation type` é definido como \"Percentage change\", o formato do eixo Y é forçado a `.1%`" + "Weekly Report": ["Relatório semanal"], + "Edit email report": ["Editar relatório de e-mail"], + "Schedule a new email report": ["Agendar um novo relatório de e-mail"], + "Text embedded in email": ["Texto incorporado no e-mail"], + "Image (PNG) embedded in email": ["Imagem (PNG) incorporada no e-mail"], + "Formatted CSV attached in email": ["CSV formatado anexado no e-mail"], + "Report Name": ["Nome do relatório"], + "Include a description that will be sent with your report": [ + "Incluir uma descrição que será enviada com o seu relatório" ], - "When a secondary metric is provided, a linear color scale is used.": [ - "Quando uma métrica secundária é fornecida, uma escala de cores linear é usada." + "A screenshot of the dashboard will be sent to your email at": [ + "Uma captura de tela do painel vai ser enviado para seu e-mail em" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Ao permitir a opção CREATE TABLE AS no SQL Lab, essa opção força a criação da tabela nesse esquema" + "Failed to update report": ["Falha ao atualizar relatório"], + "Failed to create report": ["Falha ao criar relatório"], + "Set up an email report": ["Configurar um relatório de e-mail"], + "Email reports active": ["Relatórios por e-mail ativo"], + "Delete email report": ["Excluir relatório de e-mail"], + "Schedule email report": ["Agendar relatório por e-mail"], + "This action will permanently delete %s.": [ + "Essa ação excluirá permanentemente %s." ], - "When checked, the map will zoom to your data after each query": [ - "Quando marcada, o mapa será ampliado para seus dados após cada consulta" + "Delete Report?": ["Excluir relatório?"], + "Rule added": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Para os filtros regulares, estas são as funções às quais este filtro será aplicado. Para os filtros de base, estas são as funções às quais o filtro NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os dados." ], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "Quando ativado, os usuários podem visualizar os resultados do SQL Lab no Explore." + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Os filtros com a mesma chave de grupo serão agrupados dentro do grupo, enquanto os grupos de filtros diferentes serão agrupados. As chaves de grupo indefinidas são tratadas como grupos únicos, ou seja, não são agrupadas. Por exemplo, se uma tabela tiver três filtros, dos quais dois são para os departamentos Finanças e Marketing (chave de grupo = 'departamento') e um se refere à região Europa (chave de grupo = 'região'), a cláusula de filtro aplicaria o filtro (departamento = 'Finanças' OU departamento = 'Marketing') AND (região = 'Europa')." ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "Quando apenas uma métrica primária é fornecida, é usada uma escala de cores categórica." + "Clause": ["Cláusula"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Essa é a condição que será adicionada à cláusula WHERE. Por exemplo, para retornar apenas as linhas de um cliente específico, você pode definir um filtro regular com a cláusula `client_id = 9`. Para não exibir nenhuma linha a menos que um usuário pertença a uma função de filtro RLS, um filtro básico pode ser criado com a cláusula `1 = 0` (sempre falso)." ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "Ao especificar o SQL, a fonte de dados atua como uma visualização. O Superset usará essa instrução como uma subconsulta ao agrupar e filtrar as consultas pai geradas." + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "Ao usar \"Autocomplete filters\", isso pode ser usado para melhorar o desempenho da consulta que busca os valores. Use essa opção para aplicar um predicado (cláusula WHERE) à consulta que seleciona os valores distintos da tabela. Normalmente, a intenção seria limitar a varredura aplicando um filtro de tempo relativo em um campo particionado ou indexado relacionado ao tempo." + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": ["Coluna não-numérica escolhida"], + "UI Configuration": ["Configuração da interface do usuário"], + "Filter value is required": ["O valor do filtro é obrigatório"], + "User must select a value before applying the filter": [ + "O usuário deve selecionar um valor antes de aplicar o filtro" ], - "When using 'Group By' you are limited to use a single metric": [ - "Ao usar 'Agrupar Por' você é limitado usar uma única métrica" + "Single value": ["Valor único"], + "Use only a single value.": ["Use apenas um único valor."], + "Range filter plugin using AntD": [ + "Plugin de filtro de intervalo usando AntD" ], - "When using other than adaptive formatting, labels may overlap": [ - "Ao usar uma formatação diferente da adaptativa, os rótulos podem se sobrepor" + "Check for sorting ascending": ["Verificar se a ordenação é crescente"], + "Can select multiple values": ["Pode selecionar vários valores"], + "Select first filter value by default": [ + "Selecione primeiro valor do filtro por padrão" ], "When using this option, default value can’t be set": [ "Ao usar essa opção, o valor padrão não pode ser definido" ], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "Se a barra de progresso se sobrepõe quando há vários grupos de dados" - ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "Se a tabela foi gerada pelo fluxo 'Visualizar' no SQL Lab" + "Inverse selection": ["Seleção inversa"], + "Exclude selected values": ["Excluir valores selecionados"], + "Dynamically search all filter values": [ + "Pesquisar dinamicamente todos os valores de filtro" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Se essa coluna está exposta na seção `Filtros` da visualização de exploração." + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Por padrão, cada filtro carrega, no máximo, 1000 opções no carregamento inicial da página. Marque esta caixa se tiver mais de 1000 valores de filtro e pretenda ativar a pesquisa dinâmica que carrega os valores de filtro à medida que os usuários escrevem (pode aumentar o stress da sua base de dados)." ], - "Whether to align background charts with both positive and negative values at 0": [ - "Se deve alinhar gráficos de fundo com valores positivos e negativos em 0" + "Select filter plugin using AntD": [ + "Selecione plug-in de filtro usando AntD" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "Se os valores positivos e negativos no gráfico de barras de células devem ser alinhados em 0" + "Custom time filter plugin": ["Plugin de filtro de tempo personalizado"], + "No time columns": ["Sem colunas de tempo"], + "Time column filter plugin": ["Plug-in de filtro de coluna de tempo"], + "Time grain filter plugin": ["Plug-in de filtro de granulação de tempo"], + "Working": ["Trabalhando"], + "Not triggered": ["Não acionado"], + "On Grace": ["Na Graça"], + "reports": ["relatórios"], + "alerts": ["alertas"], + "There was an issue deleting the selected %s: %s": [ + "Houve um problema ao excluir o %s selecionado: %s" ], - "Whether to always show the annotation label": [ - "Se deve sempre mostrar o rótulo da anotação" + "Last run": ["Última execução"], + "Execution log": ["Log de execução"], + "Bulk select": ["Seleção em bloco"], + "No %s yet": ["Sem %s ainda"], + "Owner": ["Proprietário"], + "All": ["Todos"], + "An error occurred while fetching owners values: %s": [ + "Ocorreu um erro ao buscar os valores dos proprietários: %s" ], - "Whether to animate the progress and the value or just display them": [ - "Se deseja animar o progresso e o valor ou apenas exibi-los" + "Status": ["Estado"], + "An error occurred while fetching dataset datasource values: %s": [ + "Ocorreu um erro ao obter os valores da fonte de dados do conjunto de dados: %s" ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "Se deve ser aplicada uma distribuição normal com base na classificação na escala de cores" + "Alerts & reports": ["Alertas e relatórios"], + "Alerts": ["Alertas"], + "Reports": ["Relatórios"], + "Delete %s?": ["Excluir %s?"], + "Are you sure you want to delete the selected %s?": [ + "Tem certeza que deseja remover o %s selecionado ?" ], - "Whether to apply filter when items are clicked": [ - "Se o filtro deve ser aplicado quando os itens são clicados" + "There was an issue deleting the selected layers: %s": [ + "Houve um problema ao excluir as camadas selecionadas: %s" ], - "Whether to colorize numeric values by if they are positive or negative": [ - "Se os valores numéricos devem ser coloridos de acordo com o fato de serem positivos ou negativos" + "Edit template": ["Editar modelo"], + "Delete template": ["Excluir modelo"], + "No annotation layers yet": ["Sem camadas de anotação ainda"], + "This action will permanently delete the layer.": [ + "Essa ação excluirá permanentemente a camada." ], - "Whether to display a bar chart background in table columns": [ - "Se deve ser exibido um fundo de gráfico de barras nas colunas da tabela" + "Delete Layer?": ["Excluir camada?"], + "Are you sure you want to delete the selected layers?": [ + "Tem certeza que deseja remover as camadas selecionadas?" ], - "Whether to display a legend for the chart": [ - "Se deve ser exibida uma legenda para o gráfico" + "There was an issue deleting the selected annotations: %s": [ + "Houve um problema ao excluir as anotações selecionadas: %s" ], - "Whether to display bubbles on top of countries": [ - "Se deseja exibir bolhas na parte superior dos países" + "Delete annotation": ["Excluir anotação"], + "Annotation": ["Anotação"], + "No annotation yet": ["Sem anotação ainda"], + "Annotation Layer %s": ["Camada de anotação %s"], + "Back to all": ["Voltar para todos"], + "Are you sure you want to delete %s?": [ + "Tem certeza de que deseja excluir %s?" ], - "Whether to display the aggregate count": [ - "Se deve ser exibida a contagem agregada" + "Delete Annotation?": ["Excluir anotação?"], + "Are you sure you want to delete the selected annotations?": [ + "Tem certeza que deseja remover as anotações selecionadas?" ], - "Whether to display the interactive data table": [ - "Se deseja exibir a tabela de dados interativa" + "Failed to load chart data": ["Falha ao carregar dados do gráfico"], + "view instructions": ["exibir instruções"], + "Add a dataset": ["Adicionar um conjunto de dados"], + "or": ["ou"], + "Choose a dataset": ["Escolha um conjunto de dados"], + "Choose chart type": ["Escolha o tipo de gráfico"], + "Please select both a Dataset and a Chart type to proceed": [ + "Por favor selecionar um conjunto de dados e um tipo de gráfico para prosseguir" ], - "Whether to display the labels.": ["Se os rótulos devem ser exibidos."], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ - "Se deseja exibir os rótulos. Observe que o rótulo só é exibido quando o limite é de 5%." + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os gráficos. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], - "Whether to display the legend (toggles)": [ - "Se a legenda deve ser exibida (alterna)" + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Você está importando um ou mais gráficos que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" ], - "Whether to display the metric name as a title": [ - "Se o nome da métrica deve ser exibido como um título" + "Chart imported": ["Gráfico importado"], + "There was an issue deleting the selected charts: %s": [ + "Houve um problema ao excluir os gráficos selecionados: %s" ], - "Whether to display the min and max values of the X-axis": [ - "Se devem ser exibidos os valores mínimo e máximo do eixo X" + "An error occurred while fetching dashboards": [ + "Ocorreu um erro durante a pesquisa de painéis" ], - "Whether to display the min and max values of the Y-axis": [ - "Se devem ser exibidos os valores mínimo e máximo do eixo Y" + "An error occurred while fetching chart owners values: %s": [ + "Ocorreu um erro ao obter os valores dos proprietários do gráfico: %s" ], - "Whether to display the numerical values within the cells": [ - "Se deseja exibir os valores numéricos dentro das células" + "Certified": ["Certificado"], + "Alphabetical": ["Em ordem alfabética"], + "Recently modified": ["Modificado recentemente"], + "Least recently modified": ["Modificação mais recente"], + "Import charts": ["Importar gráficos"], + "Are you sure you want to delete the selected charts?": [ + "Tem certeza que deseja remover os gráficos selecionados?" ], - "Whether to display the stroke": ["Se o traço deve ser exibido"], - "Whether to display the time range interactive selector": [ - "Se deve ser exibido o seletor interativo de intervalo de tempo" + "CSS templates": ["Modelos CSS"], + "There was an issue deleting the selected templates: %s": [ + "Houve um problema ao excluir os modelos selecionados: %s" ], - "Whether to display the timestamp": [ - "Se deve ser exibido o registro de data e hora" + "CSS template": ["Modelo CSS"], + "This action will permanently delete the template.": [ + "Essa ação excluirá permanentemente o modelo." ], - "Whether to display the trend line": [ - "Se a linha de tendência deve ser exibida" + "Delete Template?": ["Excluir modelo?"], + "Are you sure you want to delete the selected templates?": [ + "Tem certeza que deseja remover os modelos selecionados ?" ], - "Whether to enable changing graph position and scaling.": [ - "Se deve permitir a alteração da posição e da escala do gráfico." + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os painéis. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], - "Whether to enable node dragging in force layout mode.": [ - "Se deve permitir o arrastamento de nós no modo de layout forçado." + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Você está importando um ou mais painéis que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" ], - "Whether to fill the objects": ["Se os objetos devem ser preenchidos"], - "Whether to ignore locations that are null": [ - "Se devem ser ignorados os locais que são nulos" + "Dashboard imported": ["Painel importado"], + "An error occurred while fetching dashboard owner values: %s": [ + "Ocorreu um erro ao obter os valores do proprietário do painel: %s" ], - "Whether to include a client-side search box": [ - "Se deve incluir uma caixa de pesquisa no lado do cliente" + "Are you sure you want to delete the selected dashboards?": [ + "Tem certeza que deseja remover os painéis selecionados ?" ], - "Whether to include a time filter": [ - "Se deve incluir um filtro de tempo" + "An error occurred while fetching database related data: %s": [ + "Ocorreu um erro ao obter dados relacionados com a base de dados: %s" ], - "Whether to include the percentage in the tooltip": [ - "Se a porcentagem deve ser incluída na dica de ferramenta" + "Upload file to database": ["Carregar arquivo no banco de dados"], + "Upload CSV": ["Carregar CSV"], + "Upload columnar file": ["Carregar arquivo colunar"], + "Upload Excel file": ["Carregar arquivo Excel"], + "AQE": ["AQE"], + "Allow data manipulation language": [ + "Permitir linguagem de manipulação de dados" ], - "Whether to include the time granularity as defined in the time section": [ - "Se deve incluir a granularidade de tempo conforme definido na seção de tempo" + "DML": ["DML"], + "CSV upload": ["Carregar CSV"], + "Delete database": ["Excluir banco de dados"], + "Delete Database?": ["Excluir Banco de Dados?"], + "Dataset imported": ["Conjunto de dados importado"], + "An error occurred while fetching dataset related data": [ + "Ocorreu um erro ao obter dados relacionados com o conjunto de dados" ], - "Whether to make the grid 3D": ["Se a grade deve ser 3D"], - "Whether to make the histogram cumulative": [ - "Se o histograma deve ser cumulativo" + "An error occurred while fetching dataset related data: %s": [ + "Ocorreu um erro ao obter dados relacionados com o conjunto de dados: %s" ], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Para tornar essa coluna disponível como uma opção [Time Granularity], a coluna deve ser DATETIME ou semelhante a DATETIME" + "Physical dataset": ["Conjunto de dados físicos"], + "Virtual dataset": ["Conjunto de dados virtuais"], + "Virtual": ["Virtual"], + "An error occurred while fetching datasets: %s": [ + "Ocorreu um erro durante a pesquisa de conjuntos de dados: %s" ], - "Whether to normalize the histogram": ["Se deve normalizar o histograma"], - "Whether to populate autocomplete filters options": [ - "Se as opções de filtros de preenchimento automático devem ser preenchidas" + "An error occurred while fetching schema values: %s": [ + "Ocorreu um erro durante a extração dos valores do esquema: %s" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Se deve preencher o menu suspenso do filtro na seção de filtro da exibição de exploração com uma lista de valores distintos obtidos do backend em tempo real" + "An error occurred while fetching dataset owner values: %s": [ + "Ocorreu um erro ao obter os valores do proprietário do conjunto de dados: %s" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "Se deve ou não mostrar controles extras. Os controles extras incluem coisas como a criação de gráficos mulitBar empilhados ou lado a lado." + "Import datasets": ["Importar conjuntos de dados"], + "There was an issue deleting the selected datasets: %s": [ + "Houve um problema ao excluir os conjuntos de dados selecionados: %s" ], - "Whether to show minor ticks on the axis": [ - "Se devem ser mostrados ticks menores no eixo" + "There was an issue duplicating the dataset.": [ + "Houve um problema ao duplicar o conjunto de dados." ], - "Whether to show the pointer": ["Se o ponteiro deve ser exibido"], - "Whether to show the progress of gauge chart": [ - "Se deve mostrar o progresso do gráfico do medidor" + "There was an issue duplicating the selected datasets: %s": [ + "Houve um problema ao duplicar os conjuntos de dados selecionados: %s" ], - "Whether to show the split lines on the axis": [ - "Se devem ser mostradas as linhas divididas no eixo" + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s painéis. Tem certeza que você deseja continuar? A eliminação do conjunto de dados irá quebrar esses objetos." ], - "Whether to sort ascending or descending on the base Axis.": [ - "Se a classificação deve ser ascendente ou descendente no eixo base." + "Delete Dataset?": ["Excluir Conjunto de Dados?"], + "Are you sure you want to delete the selected datasets?": [ + "Tem certeza que deseja remover os conjuntos de dados selecionados?" ], - "Whether to sort descending or ascending": [ - "Se a classificação deve ser descendente ou ascendente" + "0 Selected": ["0 selecionado"], + "%s Selected (Virtual)": ["%s Selecionado (Virtual)"], + "%s Selected (Physical)": ["%s Selecionado (Físico)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s selecionado (%s Físico , %s Virtual)" ], - "Whether to sort descending or ascending if a series limit is present": [ - "Se a classificação será decrescente ou crescente se houver um limite de série" + "log": ["log"], + "Execution ID": ["ID de execução"], + "Scheduled at (UTC)": ["Programado em (UTC)"], + "Start at (UTC)": ["Início em (UTC)"], + "Error message": ["Mensagem de erro"], + "Alert": ["Alerta"], + "There was an issue fetching your recent activity: %s": [ + "Houve um problema ao buscar sua atividade recente: %s" ], - "Whether to sort results by the selected metric in descending order.": [ - "Se os resultados devem ser classificados pela métrica selecionada em ordem decrescente." + "There was an issue fetching your dashboards: %s": [ + "Houve um problema ao buscar seus painéis: %s" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "Se a dica de ferramenta deve ser classificada pela métrica selecionada em ordem decrescente." + "There was an issue fetching your chart: %s": [ + "Houve um problema ao buscar seu gráfico: %s" ], - "Whether to truncate metrics": ["Se as métricas devem ser truncadas"], - "Which country to plot the map for?": ["Para qual país traçar o mapa?"], - "Which relatives to highlight on hover": [ - "Qual parentes para destaque sobre passe o mouse" + "There was an issue fetching your saved queries: %s": [ + "Houve um problema ao buscar suas consultas salvas: %s" ], - "Whisker/outlier options": ["Opções de Whisker/outlier"], - "White": ["Branco"], - "Width": ["Largura"], - "Width of the confidence interval. Should be between 0 and 1": [ - "Largura do intervalo de confiança. Deve estar entre 0 e 1" + "Thumbnails": ["Miniaturas"], + "Recents": ["Recentes"], + "There was an issue previewing the selected query. %s": [ + "Houve um problema ao visualizar a consulta selecionada. %s" ], - "Width of the sparkline": ["Largura do brilho"], - "Window must be > 0": ["A janela deve ser > 0"], - "With a subheader": ["Com um subtítulo"], - "Word Cloud": ["Nuvem de palavras"], - "Word Rotation": ["Rotação de palavras"], - "Working": ["Trabalhando"], - "Working timeout": ["Tempo limite de trabalho"], - "World Map": ["Mapa do Mundo"], - "Write a description for your query": [ - "Escreva uma descrição para sua consulta" + "TABLES": ["TABELAS"], + "Open query in SQL Lab": ["Abrir consulta no SQL Lab"], + "An error occurred while fetching database values: %s": [ + "Ocorreu um erro durante a extração dos valores da base de dados: %s" ], - "Write a handlebars template to render the data": [ - "Escreva um modelo de guidão para renderizar os dados" + "An error occurred while fetching user values: %s": [ + "Ocorreu um erro ao buscar os valores do usuário: %s" ], - "Write dataframe index as a column": [ - "Escreve o índice do dataframe como uma coluna" + "Search by query text": ["Pesquisar consulta"], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "As senhas dos bancos de dados abaixo são necessárias para importá-los juntamente com as consultas salvas. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], - "Write dataframe index as a column.": [ - "Escreve o índice do dataframe como uma coluna." + "Query imported": ["Consulta importada"], + "There was an issue previewing the selected query %s": [ + "Houve um problema ao visualizar a consulta selecionada %s" ], - "X AXIS TITLE BOTTOM MARGIN": ["MARGEM INFERIOR DO TÍTULO DO EIXO X"], - "X Axis": ["Eixo X"], - "X Axis Format": ["Formato do eixo X"], - "X Axis Label": ["Rótulo do Eixo X"], - "X Axis Title": ["Título do Eixo X"], - "X Log Scale": ["Escala X Log"], - "X Tick Layout": ["X Tick Layout"], - "X bounds": ["Limites X"], - "X-Axis Sort Ascending": ["Classificação do eixo X em ordem crescente"], - "X-Axis Sort By": ["Classificação do Eixo X Por"], - "X-axis": ["Eixo X"], - "XScale Interval": ["Intervalo XScale"], - "Y 2 bounds": ["Y 2 limites"], - "Y AXIS TITLE MARGIN": ["MARGEM DO TÍTULO DO EIXO Y"], - "Y AXIS TITLE POSITION": ["POSIÇÃO DO TÍTULO DO EIXO Y"], - "Y Axis": ["Eixo Y"], - "Y Axis 2 Bounds": ["Eixo Y 2 Limites"], - "Y Axis Bounds": ["Limites do Eixo Y"], - "Y Axis Format": ["Formato do eixo Y"], - "Y Axis Label": ["Rótulo do Eixo Y"], - "Y Axis Title": ["Título do Eixo Y"], - "Y Log Scale": ["Escala logarítmica Y"], - "Y bounds": ["Limites Y"], - "Y-Axis Sort Ascending": ["Classificação do eixo Y em ordem crescente"], - "Y-Axis Sort By": ["Classificação do Eixo Y Por"], - "Y-axis": ["Eixo Y"], - "Y-axis bounds": ["Eixo Y limites"], - "YScale Interval": ["Intervalo da escala Y"], - "Year": ["Ano"], - "Year (freq=AS)": ["Ano (freq=AS)"], - "Yearly seasonality": ["Sazonalidade anual"], - "Years %s": ["Anos %s"], - "Yes": ["Sim"], - "Yes, cancel": ["Sim, cancelar"], - "Yes, overwrite changes": ["Sim, sobrescrever mudanças"], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Você está importando um ou mais gráficos que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" + "Import queries": ["Importar consultas"], + "Link Copied!": ["Link copiado!"], + "There was an issue deleting the selected queries: %s": [ + "Houve um problema ao excluir as consultas selecionadas: %s" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Você está importando um ou mais painéis que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" + "Edit query": ["Editar consulta"], + "Copy query URL": ["Copiar URL da consulta"], + "Export query": ["Exportar consulta"], + "Delete query": ["Excluir consulta"], + "Are you sure you want to delete the selected queries?": [ + "Tem certeza que deseja remover as consultas selecionadas ?" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Você está importando um ou mais bancos de dados que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" - ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Você está importando um ou mais conjuntos de dados que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" - ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "Você não está autorizado a ver esta consulta. Se achar que isso é um erro, entre em contato com seu administrador." - ], - "You can": ["É possível"], - "You can add the components in the": [ - "Você pode adicionar o componentes no" - ], - "You can add the components in the edit mode.": [ - "Você pode adicionar os componentes no modo de edição." - ], - "You can also just click on the chart to apply cross-filter.": [ - "Você também pode simplesmente clicar no gráfico para aplicar o filtro cruzado." - ], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "Você pode optar por exibir todos os gráficos aos quais tem acesso ou apenas os que possui.\n Sua seleção de filtro será salva e permanecerá ativa até que você decida alterá-la." - ], - "You can create a new chart or use existing ones from the panel on the right": [ - "Você pode criar um novo gráfico ou usar os existentes no painel à direita" + "queries": ["consultas"], + "tag": ["marca"], + "Are you sure you want to delete the selected tags?": [ + "Tem certeza de que deseja excluir as tags selecionadas?" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "Você pode visualizar a lista de painéis no menu suspenso de configurações do gráfico." + "Image download failed, please refresh and try again.": [ + "Falha no download da imagem, por favor atualizar e tentar novamente." ], - "You can't apply cross-filter on this data point.": [ - "Não é possível aplicar filtro cruzado a esse ponto de dados." + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Selecione os valores no(s) campo(s) destacado(s) no painel de controle. Em seguida, execute a consulta clicando no botão %s." ], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "Você não pode excluir o último filtro temporal, pois ele é usado para filtros de intervalo de tempo em painéis." + "Invalid input": ["Entrada inválida"], + "(no description, click to see stack trace)": [ + "(sem descrição , clique para ver rastreamento de pilha)" ], - "You cannot use 45° tick layout along with the time range filter": [ - "Não é possível usar o layout de ticks de 45° junto com o filtro de intervalo de tempo" + "Sorry, an unknown error occurred.": [ + "Desculpe, ocorreu um erro desconhecido." ], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "Você não pode usar [Columns] em combinação com [Group By]/[Metrics]/[Percentage Metrics]. Escolha um ou outro." + "Sorry, there was an error saving this %s: %s": [ + "Desculpe, houve um erro ao salvar este %s: %s" ], "You do not have permission to edit this %s": [ "Você não tem permissão para editar este %s" ], - "You do not have permission to edit this chart": [ - "Você não tem permissão para editar este gráfico" - ], - "You do not have permission to edit this dashboard": [ - "Você não tem permissão para editar este painel" - ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "Você não tem permissões para acessar o(s) recurso(s) de dados: %(name)s." - ], - "You do not have permissions to edit this dashboard.": [ - "Você não tem permissão para editar esse painel." - ], - "You don't have access to this chart.": [ - "Você não tem acesso a esse gráfico." - ], - "You don't have access to this dashboard.": [ - "Você não tem acesso a esse painel." - ], - "You don't have access to this dataset.": [ - "Você não tem acesso a esse conjunto de dados." - ], - "You don't have access to this embedded dashboard config.": [ - "Você não tem acesso a essa configuração de painel incorporado." - ], - "You don't have any favorites yet!": [ - "Você ainda não tem nenhum favorito!" - ], - "You don't have permission to modify the value.": [ - "Você não tem permissão para modificar o valor." - ], - "You don't have the rights to alter %(resource)s": [ - "Você não tem o direito de alterar %(resource)s" - ], - "You don't have the rights to alter this chart": [ - "Você não tem o direito de alterar esse gráfico" - ], - "You don't have the rights to alter this dashboard": [ - "Você não tem o direito de alterar esse painel de controle" - ], - "You don't have the rights to alter this title.": [ - "Você não tem o direito de alterar esse título." - ], - "You don't have the rights to create a chart": [ - "Você não tem o direito de criar um gráfico" - ], - "You don't have the rights to create a dashboard": [ - "Você não tem direitos para criar um painel" - ], - "You don't have the rights to download as csv": [ - "Você não tem o direito de fazer o download como csv" - ], - "You have no permission to approve this request": [ - "Você não tem permissão para aprovar esta solicitação" - ], - "You have removed this filter.": ["Você removeu esse filtro."], - "You have unsaved changes.": ["Você tem alterações não salvas."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "Você usou todos os espaços de desfazer de %(historyLength) e não poderá desfazer totalmente as ações subsequentes. Você pode salvar seu estado atual para redefinir o histórico." - ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "Você deve ser proprietário de um conjunto de dados para poder editá-lo. Entre em contato com o proprietário do conjunto de dados para solicitar modificações ou acesso de edição." - ], - "You must pick a name for the new dashboard": [ - "Você deve escolher um nome para o novo painel" - ], - "You must run the query successfully first": [ - "Primeiro, você deve executar a consulta com êxito" - ], - "You need to configure HTML sanitization to use CSS": [ - "Você precisa configurar a sanitização de HTML para usar CSS" - ], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "Você atualizou os valores no painel de controle, mas o gráfico não foi atualizado automaticamente. Execute a consulta clicando no botão \"Atualizar gráfico\" ou" - ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "Você alterou os conjuntos de dados. Todos os controles com dados (colunas, métricas) que correspondem a esse novo conjunto de dados foram mantidos." - ], - "Your chart is not up to date": ["Seu gráfico não está atualizado"], - "Your chart is ready to go!": ["Seu gráfico está pronto para ser usado!"], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "Seu painel é muito grande. Reduza o tamanho antes de salvá-lo." - ], - "Your query could not be saved": ["Sua consulta não pôde ser salva"], - "Your query could not be scheduled": [ - "Sua consulta não pôde ser agendada" - ], - "Your query could not be updated": [ - "Sua consulta não pôde ser atualizada" - ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até Consultas salvas" - ], - "Your query was not properly saved": [ - "Sua consulta não foi salva corretamente" - ], - "Your query was saved": ["Sua consulta foi salva"], - "Your query was updated": ["Sua consulta foi atualizada"], - "Your report could not be deleted": [ - "Não foi possível excluir seu relatório" - ], - "Zero imputation": ["Imputação zero"], - "Zoom": ["Ampliar"], - "Zoom level of the map": ["Nível de zoom do mapa"], - "[ untitled dashboard ]": ["[ painel sem título ]"], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "As colunas [Longitude] e [Latitude] devem estar presentes em [ Agrupar Por ]" - ], - "[Longitude] and [Latitude] must be set": [ - "[Longitude] e [Latitude] devem ser definidos" - ], - "[Missing Dataset]": ["[Conjunto de dados ausente]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] Acesso à fonte de dados %(name)s foi concedido" - ], - "[Untitled]": ["[Sem título]"], - "[asc]": ["[asc]"], - "[copy]": ["[cópia]"], - "[dashboard name]": ["[nome do painel]"], - "[desc]": ["[desc]"], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "[opcional] essa métrica secundária é usada para definir a cor como uma proporção em relação à métrica primária. Quando omitida, a cor é categórica e baseada em rótulos" - ], - "[untitled]": ["[sem título]"], - "`compare_columns` must have the same length as `source_columns`.": [ - "` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." - ], - "`compare_type` must be `difference`, `percentage` or `ratio`": [ - "`compare_type` deve ser `difference`, `percentage` ou `ratio`" - ], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`confidence_interval` deve estar entre 0 e 1 (exclusivo)" - ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "`count` é COUNT(*) se for usado um grupo por. As colunas numéricas serão agregadas com o agregador. As colunas não numéricas serão usadas para rotular os pontos. Deixe em branco para obter uma contagem de pontos em cada cluster." - ], - "`operation` property of post processing object undefined": [ - "Propriedade `operation` do objeto de pós-processamento indefinida" - ], - "`prophet` package not installed": ["Pacote `prophet` não instalado"], - "`rename_columns` must have the same length as `columns`.": [ - "`rename_columns` deve ter o mesmo comprimento que `columns`." - ], - "`row_limit` must be greater than or equal to 0": [ - "O `row_limit` deve ser maior ou igual a 0" - ], - "`row_offset` must be greater than or equal to 0": [ - "`row_offset` deve ser maior ou igual a 0" - ], - "`width` must be greater or equal to 0": [ - "`largura` deve ser maior ou igual a 0" - ], - "aggregate": ["agregar"], - "alert": ["alerta"], - "alerts": ["alertas"], - "all": ["todos"], - "also copy (duplicate) charts": ["também copiar (duplicar) gráficos"], - "ancestor": ["ancestral"], - "and": ["e"], - "annotation": ["anotação"], - "annotation_layer": ["camada de anotação"], - "asfreq": ["asfreq"], - "at": ["em"], - "auto": ["automático"], - "auto (Smooth)": ["auto (Suave)"], - "background": ["fundo"], - "basis": ["base"], - "below (example:": ["abaixo (exemplo:"], - "between {down} and {up} {name}": ["entre {down} e {up} {name}"], - "bfill": ["bfill"], - "bolt": ["parafuso"], - "boolean type icon": ["ícone do tipo booleano"], - "bottom": ["fundo"], - "button (cmd + z) until you save your changes.": [ - "(cmd + z) até você salvar suas mudanças." - ], - "by using": ["usando"], - "cannot be empty": ["não pode ser vazio"], - "cardinal": ["cardeal"], - "change": ["mudança"], - "chart": ["gráfico"], - "charts": ["gráficos"], - "choose WHERE or HAVING...": ["escolha WHERE ou HAVING..."], - "clear all filters": ["limpar todos os filtros"], - "click here": ["clique aqui"], - "code ISO 3166-1 alpha-2 (cca2)": ["código ISO 3166-1 alpha-2 (cca2)"], - "code ISO 3166-1 alpha-3 (cca3)": ["código ISO 3166-1 alpha-3 (cca3)"], - "code International Olympic Committee (cioc)": [ - "código Comitê Olímpico Internacional (cioc)" - ], - "column": ["coluna"], - "connecting to %(dbModelName)s.": ["conectando ao %(dbModelName)s."], - "count": ["contagem"], - "create": ["criar"], - "create a new chart": ["criar um novo gráfico"], - "create dataset from SQL query": [ - "criar um conjunto de dados a partir de uma consulta SQL" - ], - "css": ["css"], - "css_template": ["css_template"], - "cumsum": ["cumsum"], - "cumulative": ["cumulativo"], - "dashboard": ["painel"], - "dashboards": ["painéis"], - "database": ["banco de dados"], - "dataset": ["dataset"], - "dataset name": ["nome do conjunto de dados"], - "date": ["data"], - "day": ["dia"], - "day of the month": ["dia do mês"], - "day of the week": ["dia da semana"], - "deck.gl 3D Hexagon": ["deck.gl Hexágono 3D"], - "deck.gl Arc": ["deck.gl Arc"], - "deck.gl Geojson": ["deck.gl Geojson"], - "deck.gl Grid": ["deck.gl Grid"], - "deck.gl Multiple Layers": ["deck.gl Múltiplas camadas"], - "deck.gl Path": ["deck.gl Path"], - "deck.gl Polygon": ["deck.gl Polígono"], - "deck.gl Scatterplot": ["deck.gl Gráfico de dispersão"], - "deck.gl Screen Grid": ["deck.gl Grade de tela"], - "deck.gl charts": ["gráficos do deck.gl"], - "deckGL": ["deckGL"], - "default": ["padrão"], - "delete": ["excluir"], - "description": ["descrição"], - "deviation": ["desvio"], - "dialect+driver://username:password@host:port/database": [ - "dialect+driver://username:password@host:port/database" - ], - "draft": ["rascunho"], - "dttm": ["dttm"], - "e.g. ********": ["por exemplo ********"], - "e.g. 127.0.0.1": ["por exemplo, 127.0.0.1"], - "e.g. 5432": ["por exemplo, 5432"], - "e.g. AccountAdmin": ["por exemplo , AccountAdmin"], - "e.g. compute_wh": ["por exemplo , compute_wh"], - "e.g. param1=value1¶m2=value2": [ - "por exemplo, param1=value1¶m2=value2" - ], - "e.g. sql/protocolv1/o/12345": ["por exemplo , sql/protocolv1/o/12345"], - "e.g. world_population": ["por exemplo, world_population"], - "e.g. xy12345.us-east-2.aws": ["por exemplo, xy12345.us-east-2.aws"], - "e.g., a \"user id\" column": ["por exemplo, uma coluna \"user id\""], - "edit mode": ["modo de edição"], - "entries": ["entradas"], - "error dark": [""], - "error_message": ["mensagem de erro"], - "every": ["todos"], - "every day of the month": ["todos os dias do mês"], - "every day of the week": ["todos os dias da semana"], - "every hour": ["a cada hora"], - "every month": ["a cada mês"], - "expand": ["expandir"], - "explore": ["explorar"], - "failed": ["falhou"], - "fetching": ["busca"], - "ffill": ["ffill"], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "filter_box será descontinuado em uma versão futura do Superset. Substitua filter_box por componentes de filtro do painel." - ], - "flat": ["plano"], - "for more information on how to structure your URI.": [ - "para obter mais informações sobre como estruturar seu URI." - ], - "function type icon": ["ícone de tipo de função"], - "geohash (square)": ["geohash (quadrado)"], - "heatmap": ["mapa de calor"], - "heatmap: values are normalized across the entire heatmap": [ - "heatmap: os valores são normalizados em todo o heatmap" + "Network error": ["Erro de rede"], + "Request timed out": ["O tempo limite da solicitação expirou"], + "Issue 1000 - The dataset is too large to query.": [ + "Problema 1000 - O conjunto de dados é muito grande para ser consultado." ], - "here": ["aqui"], - "hour": ["hora"], - "id": ["id"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "atributo CSS de renderização de imagem do objeto canvas que define como o navegador dimensiona a imagem" + "Issue 1001 - The database is under an unusual load.": [ + "Problema 1001 - O Banco de dados está sob uma carga incomum." ], - "in": ["em"], - "in modal": ["no modal"], - "is expected to be a number": ["espera-se que seja um número"], - "is expected to be an integer": ["espera-se que seja um inteiro"], - "joined": ["juntou-se"], - "json isn't valid": ["json não é válido"], - "key a-z": ["chave a-z"], - "key z-a": ["chave z-a"], - "label": ["rótulo"], - "last day": ["último dia"], - "last month": ["mês passado"], - "last quarter": ["último trimestre"], - "last week": ["semana passada"], - "last year": ["ano passado"], - "latest partition:": ["partição mais recente:"], - "left": ["esquerda"], - "less than {min} {name}": ["menos que {min} {name}"], - "linear": ["linear"], - "log": ["log"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor que o percentil superior." + "An error occurred while fetching %s info: %s": [ + "Ocorreu um erro ao buscar as informações de %s: %s" ], - "max": ["máximo"], - "mean": ["média"], - "median": ["mediana"], - "metric": ["métrica"], - "min": ["min"], - "minute": ["minuto"], - "minute(s)": ["minuto(s)"], - "monotone": ["monótono"], - "month": ["mês"], - "more than {max} {name}": ["mais de {max} {name}"], - "must have a value": ["deve ter um valor"], - "no SQL validator is configured": [ - "nenhum validador SQL está configurado" + "An error occurred while fetching %ss: %s": [ + "Ocorreu um erro durante a busca de %ss: %s" ], - "no SQL validator is configured for {}": [ - "nenhum validador SQL está configurado para {}" + "An error occurred while creating %ss: %s": [ + "Ocorreu um erro ao criar %ss: %s" ], - "numeric type icon": ["ícone de tipo numérico"], - "nvd3": ["nvd3"], - "of parent": ["do pai"], - "of total": ["do total"], - "on": ["em"], - "or": ["ou"], - "or use existing ones from the panel on the right": [ - "ou use os existentes no painel à direita" + "Please re-export your file and try importing again": [ + "Por favor reexportar seu arquivo e tente importar novamente" ], - "orderby column must be populated": [ - "a coluna orderby deve ser preenchida" + "An error occurred while importing %s: %s": [ + "Ocorreu um erro durante a importação de %s: %s" ], - "overall": ["geral"], - "p-value precision": ["precisão do valor-p"], - "p1": ["p1"], - "p5": ["p5"], - "p95": ["p95"], - "p99": ["p99"], - "page_size.all": ["page_size.all"], - "page_size.entries": ["page_ size.entries"], - "page_size.show": ["page_ size.show"], - "pending": ["pendente"], - "percentile (exclusive)": ["percentil (exclusivo)"], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "os percentis devem ser uma lista ou tupla com dois valores numéricos, dos quais o primeiro é menor que o segundo valor" + "There was an error fetching the favorite status: %s": [ + "Houve um erro ao buscar o status de favorito: %s" ], - "permalink state not found": ["estado do permalink não encontrado"], - "pixelated (Sharp)": ["pixelado (nítido)"], - "previous calendar month": ["mês anterior do calendário"], - "previous calendar week": ["semana anterior do calendário"], - "previous calendar year": ["ano-calendário anterior"], - "published": ["publicado"], - "quarter": ["trimestre"], - "queries": ["consultas"], - "query": ["consulta"], - "random": ["aleatório"], - "reboot": ["reiniciar"], - "recent": ["recente"], - "recents": ["recentes"], - "report": ["relatório"], - "reports": ["relatórios"], - "restore zoom": ["restaurar zoom"], - "right": ["direito"], - "running": ["em execução"], - "saved queries": ["consultas salvas"], - "search by tags": ["pesquisa por tags"], - "seconds": ["segundos"], - "series": ["série"], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ - "séries: Tratar cada série de forma independente; geral: Todas as séries usam a mesma escala; alteração: Mostrar alterações em comparação com o primeiro ponto de dados em cada série" + "There was an error saving the favorite status: %s": [ + "Ocorreu um erro ao salvar o status de favorito: %s" ], - "square": ["quadrado"], - "stack": ["pilha"], - "staggered": ["escalonado"], - "std": ["std"], - "step-after": ["etapa seguinte"], - "step-before": ["passo-anteerior"], - "stopped": ["interrompido"], - "stream": ["fluxo"], - "string type icon": ["ícone do tipo string"], - "success": ["sucesso"], - "sum": ["soma"], - "syntax.": ["sintaxe."], - "tag": ["marca"], - "temporal type icon": ["ícone de tipo temporal"], - "textarea": ["área de texto"], - "to": ["para"], - "top": ["superior"], - "undo": ["desfazer"], - "unknown type icon": ["ícone de tipo desconhecido"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior que o percentil inferior." + "Connection looks good!": ["A conexão parece boa !"], + "ERROR: %s": ["ERRO: %s"], + "There was an error fetching your recent activity:": [ + "Ocorreu um erro ao buscar sua atividade recente:" ], - "use latest_partition template": ["usar o modelo latest_partition"], - "value ascending": ["valor crescente"], - "value descending": ["valor decrescente"], - "var": ["var"], - "variance": ["variação"], - "view instructions": ["exibir instruções"], - "virtual": ["virtual"], - "viz type": ["tipo de visualização"], - "was created": ["foi criado"], - "week": ["semana"], - "week ending Saturday": ["semana que termina no sábado"], - "week starting Sunday": ["semana que começa no domingo"], - "x": ["x"], - "x: values are normalized within each column": [ - "x: os valores são normalizados dentro de cada coluna" + "There was an issue deleting: %s": ["Houve um problema ao excluir: %s"], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Link do modelo, é possível incluir {{ métrica }} ou outros valores provenientes dos controles." ], - "y": ["y"], - "y: values are normalized within each row": [ - "y: os valores são normalizados dentro de cada linha" + "Time-series Table": ["Tabela de séries temporais"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Compare rapidamente vários gráficos de séries temporais (como sparklines) e métricas relacionadas." ], - "year": ["ano"], - "zoom area": ["área de zoom"] + "We have the following keys: %s": ["Temos as seguintes chaves: %s"] } } } diff --git a/superset/translations/pt_BR/LC_MESSAGES/messages.po b/superset/translations/pt_BR/LC_MESSAGES/messages.po index d6d922df307cf..7bf274a504962 100644 --- a/superset/translations/pt_BR/LC_MESSAGES/messages.po +++ b/superset/translations/pt_BR/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2023-05-22 08:04-0400\n" "Last-Translator: \n" "Language: pt_BR\n" @@ -28,4182 +28,4173 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -#, fuzzy +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "A fonte de dados é muito grande para ser consultada." + +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "O banco de dados está sob uma carga incomum." + +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "O banco de dados retornou um erro inesperado." + +#: superset/errors.py:104 msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -"Este filtro foi herdado do contexto do painel.\n" -" Não será salvo ao salvar o gráfico." +"Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de " +"ortografia ou de digitação." -#: superset/reports/notifications/email.py:89 -#, fuzzy, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "Erro: %(text)s" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "A coluna foi excluída ou renomeada no banco de dados." -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -#, fuzzy -msgid " (excluded)" -msgstr "(excluído)" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "A tabela foi excluída ou renomeada no banco de dados." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 -#, fuzzy -msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "Um ou mais parâmetros especificados na consulta estão faltando." + +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "O nome do host oferecido não pode ser resolvido." + +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "A porta está fechada." + +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." +msgstr "O host pode ter caído, e não pode ser alcançado na porta fornecida." + +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "O Superset encontrou um erro ao executar um comando." + +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "O Superset encontrou um erro inesperado." + +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "O nome de usuário fornecido ao se conectar ao banco de dados não é válido." + +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "A senha fornecida ao se conectar a um banco de dados não é válida." + +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Ou o nome de usuário ou a senha está incorreto." + +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Ou o banco de dados está soletrado incorretamente ou não existe." + +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "O esquema foi excluído ou renomeado no banco de dados." + +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "O usuário não tem as permissões adequadas." + +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -"Defina opacidade a 0 se você não quer sobrepor a cor especificada no " -"GeoJSON" +"Um ou mais parâmetros necessários para configurar um banco de dados estão" +" faltando." -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "um painel OU" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "O payload enviado tem o formato incorreto." -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -#, fuzzy -msgid " a new one" -msgstr "um novo" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "O payload enviado tem o esquema incorreto." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -#, fuzzy -msgid " expression which needs to adhere to the " -msgstr "expressão necessária para aderir ao" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." +msgstr "" +"O backend de resultados necessário para as consultas assíncronas não está" +" configurado." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -#, fuzzy -msgid " source code of Superset's sandboxed parser" -msgstr "código-fonte do analisador em área restrita do Superset" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "Banco de dados não permite a manipulação de dados." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -#, fuzzy +#: superset/errors.py:127 msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -"para garantir que a ordem lexicográfica coincida com a ordem cronológica." -" Se o\n" -" formato do timestamp não for aderente ao padrão ISO 8601\n" -" você precisará definir uma expressão e tipo para\n" -" transformar o texto em data ou timestamp. Nota:\n" -" naturalmente fusos horários não são suportados. Se o tempo é armazenado " -"no formato epoch coloque ` epoch_s ` ou ` epoch_ms `. Se nenhum padrão " -"for especificado\n" -"emos utilizar os padrões de acordo com cada nível do banco de dados/nome " -"de coluna via parâmetro extra." +"O CTAS (create table as select) não tem uma instrução SELECT no final. " +"Certifique-se de que sua consulta tenha um SELECT como última instrução. " +"Em seguida, tente executar sua consulta novamente." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -#, fuzzy -msgid " to add calculated columns" -msgstr "para adicionar colunas calculadas" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "A consulta CVAS (create view as select) tem mais do que uma declaração." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -#, fuzzy -msgid " to add metrics" -msgstr "para adicionar métricas" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "A consulta CVAS (create view as select) não é uma instrução SELECT." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -#, fuzzy -msgid " to edit or add columns and metrics." -msgstr "para editar ou adicionar colunas e métricas." +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "A consulta é muito complexa e demora muito para executar." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -#, fuzzy -msgid " to mark a column as a time column" -msgstr "para marcar uma coluna como uma coluna de tempo" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "O banco de dados está atualmente executando muitas consultas." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +#: superset/errors.py:136 #, fuzzy -msgid " to open SQL Lab. From there you can save the query as a dataset." +msgid "One or more parameters specified in the query are malformed." +msgstr "Um ou mais parâmetros especificados na consulta estão malformatados." + +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "O objeto não existe no banco de dados fornecido." + +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "A consulta tem um erro de sintaxe." + +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "O backend de resultados não tem mais os dados da consulta." + +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "A consulta associada aos resultados foi excluída." + +#: superset/errors.py:141 +msgid "" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -"para abrir o SQL Lab. De lá você pode salvar a consulta como um conjunto " -"de dados." +"Os resultados armazenados no backend foram armazenados em um formato " +"diferente e não podem mais ser desserializados." -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "O número da porta é inválido." + +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "Falha ao iniciar a consulta remota em um worker." + +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "O banco de dados foi excluído." + +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "Os campos SQL personalizados não podem conter subconsultas." + +#: superset/errors.py:149 #, fuzzy -msgid " to visualize your data." -msgstr "para visualizar seus dados." +msgid "The submitted payload failed validation." +msgstr "O payload enviado tem o esquema incorreto." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 -msgid "!= (Is not equal)" -msgstr "!= (diferente)" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Certificado inválido" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -"%(dialect)s não pode ser usado como uma fonte de dados por motivos de " -"segurança." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#: superset/forms.py:72 #, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -"%(message)s\n" -"Isso pode ser acionado por: \n" -"%(issues)s" -#: superset/reports/notifications/email.py:171 +#: superset/jinja_context.py:344 #, python-format -msgid "%(name)s.csv" -msgstr "%(name)s.csv" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Tipo de retorno inseguro para a função %(func)s: %(value_ type)s" -#: superset/db_engine_specs/snowflake.py:112 +#: superset/jinja_context.py:355 #, python-format -msgid "%(object)s does not exist in this database." -msgstr "%(object)s não existe neste banco de dados." +msgid "Unsupported return value for method %(name)s" +msgstr "Valor de retorno não suportado para o método %(name)s" -#: superset-frontend/src/features/home/EmptyState.tsx:43 +#: superset/jinja_context.py:371 #, python-format -msgid "%(other)s charts will appear here" -msgstr "%(other)s gráficos irão aparecer aqui" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Valor de modelo não seguro para a chave %(key)s: %(value_ type)s" -#: superset-frontend/src/features/home/EmptyState.tsx:45 +#: superset/jinja_context.py:382 #, python-format -msgid "%(other)s dashboards will appear here" -msgstr "%(other)s painéis irão aparecer aqui" +msgid "Unsupported template value for key %(key)s" +msgstr "Valor de modelo não suportado para a chave %(key)s" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" -msgstr "%(other)s recentes irão aparecer aqui" - -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" -msgstr "%(other)s As consultas salvas aparecerão aqui" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "Somente comandos SELECT são permitidos nesse banco de dados." -#: superset/reports/notifications/email.py:180 +#: superset/sql_lab.py:302 #, python-format -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "" +"A consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser " +"muito complexa ou o banco de dados pode estar sob carga pesada." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" -msgstr "%(rows)d linhas retornadas" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "O backend de resultados não está configurado." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format +#: superset/sql_lab.py:440 msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -"%(subtitle)s\n" -"Isso pode ser acionado por:\n" -" %(issue)s" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "%(suggestion)s em vez de \"%(undefinedParameter)s?\"" -msgstr[1] "" +"O CTAS (criar tabela como select) só pode ser executado com uma consulta " +"em que a última instrução seja um SELECT. Certifique-se de que a sua " +"consulta tem um SELECT como última instrução. Depois, tente executar a " +"consulta novamente." -#: superset/views/core.py:385 -#, python-format +#: superset/sql_lab.py:457 msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -"%(user)s foi garantido a função %(role)s que dá acesso para a %(fonte de " -"dados)s" +"O CVAS (create view as select) só pode ser executado com uma consulta com" +" uma única instrução SELECT. Certifique-se de que a sua consulta tem " +"apenas uma instrução SELECT. Em seguida, tente executar a consulta " +"novamente." -#: superset/views/core.py:2709 +#: superset/sql_lab.py:488 #, python-format -msgid "%(user)s's profile" -msgstr "%(user) s's profile" +msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgstr "Executando instrução %(statement_num)s de % (statement_count)s" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 +#: superset/sql_lab.py:510 #, python-format +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "Instrução %(statement_ num)s de % (statement_count)s" + +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "O Viz não tem uma fonte de dados" + +#: superset/viz.py:237 msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -"%(validador)es não conseguiu verificar sua consulta.\n" -"Por favor revise sua consulta.\n" -"Exceção: %(ex)s" +"A janela móvel aplicada não devolveu quaisquer dados. Certifique-se de " +"que a consulta de origem satisfaz os períodos mínimos definidos na janela" +" móvel." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s Erro" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "A data de início não pode ser maior do que a data de fim" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, python-format -msgid "%s PASSWORD" -msgstr "%s SENHA" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Valor em cache não encontrado" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 +#: superset/viz.py:577 #, python-format -msgid "%s SSH TUNNEL PASSWORD" -msgstr "%s SENHA DO TÚNEL SSH" +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "Colunas ausente na fonte de dados: %(invalid_columns)s" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" -msgstr "%s CHAVE PRIVADA DO TÚNEL SSH" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Visualização da tabela de horários" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "%s SENHA DA CHAVE PRIVADA DO TÚNEL SSH" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Escolha ao menos uma métrica" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" -msgstr "%s Selecionado" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "Ao usar 'Agrupar Por' você é limitado usar uma única métrica" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s selecionado (%s Físico , %s Virtual)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Mapa de calor do calendário" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 -#, python-format -msgid "%s Selected (Physical)" -msgstr "%s Selecionado (Físico)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Gráfico de bolhas" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "%s Selecionado (Virtual)" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Por favor, use 3 diferentes rótulos de métrica" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "%s agregado(s)" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Escolha uma métrica para x, y e tamanho" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "%s coluna(s)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Gráfico de marcadores" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "%s operador(es)" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Escolha uma métrica para exibir" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s opção" -msgstr[1] "" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Série temporal - Gráfico de linhas" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s opção(ões)" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "" +"Deve ser especificado um intervalo de tempo fechado (início e fim) quando" +" se utiliza uma comparação de tempo." -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s linha" -msgstr[1] "" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Série temporal - Gráfico de barras" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "%s salvos métrica(s)" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Série temporal - Pivô de período" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, python-format -msgid "%s updated" -msgstr "%s atualizado" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Séries temporais - Variação percentual" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" -msgstr "%s%s" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Séries temporais - empilhadas" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "%s-%s de %s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histograma" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(Removido)" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Deve ter pelo menos uma coluna numérica especificada" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "(excluído ou inválido digite)" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Distribuição - Gráfico de barras" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "(sem descrição , clique para ver rastreamento de pilha)" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Não pode haver sobreposição entre séries e avarias" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "" -"(opcional) valor padrão para o filtro, quando usar multiplas opções, você" -" pode usar um ponto e vírgula delimitando a lista de opções." +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Escolha no ao menos um campo para [Série]" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "), e eles tornaram-se disponíveis no seu SQL (exemplo:" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" -#: superset/reports/notifications/slack.py:65 -#, fuzzy, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url) s|Explore no Superset >\n" -"\n" -"%(table)s" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Escolha exatamente 2 colunas como [Origem / Destino]" -#: superset/reports/notifications/slack.py:82 -#, fuzzy, python-format +#: superset/viz.py:1421 msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Erro: %(text)s" +"Há um loop em seu Sankey, forneça uma árvore. Aqui está um link " +"defeituoso: {}" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" -msgstr "+ %s mais" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Directed Force Layout" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "," +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Mapa do País" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -#, fuzzy -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" -msgstr "" -"-- Nota: A menos que você salve sua consulta, estes guias NÃO irão " -"persistir se você limpar seus cookies ou mudar de navegador." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Mapa do Mundo" -#: superset/views/database/forms.py:164 -msgid "." -msgstr "." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Coordenadas paralelas" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0 selecionado" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Mapa de calor" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "1 dia de calendário de frequência" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Gráficos do horizonte" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" -msgstr "1 dia" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "MapBox" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "1 dia atrás" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[Longitude] e [Latitude] devem ser definidos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 hora" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Deve ter uma coluna [Agrupar por] para ter 'count' como [Rótulo]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" -msgstr "frequência de 1 hora" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "Escolha do [Rótulo] deve estar em [Agrupar por]" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 minuto" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "A escolha de [Raio do ponto] deve estar presente em [Agrupar por]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "frequência de 1 minuto" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "" +"As colunas [Longitude] e [Latitude] devem estar presentes em [ Agrupar " +"Por ]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "1 mês de frequência final" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - Camadas Múltiplas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "Frequência de início de 1 mês" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Bad spatial key" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -msgid "1 week" -msgstr "1 semana" +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "Encontrado um ponto espacial inválido: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" -msgstr "1 semana atrás" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" +"Encontrou entrada espacial NULL inválida," +" por favor considere a possibilidade " +"de a filtrar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" -msgstr "1 semana com início na Segunda-feira (freq=S-SEG)" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - Gráfico de dispersão" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "1 semana com início na Domingo (freq=S-DOM)" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - Screen Grid" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -msgid "1 year" -msgstr "1 ano" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - Grade 3D" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "1 ano atrás" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - Caminhos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" -msgstr "Frequência de final de 1 ano" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - Polígono" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" -msgstr "Frequência de início de 1 ano" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D HEX" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10 minutos" +#: superset/viz.py:2271 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "gráficos do deck.gl" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -msgid "104 weeks" -msgstr "104 semanas" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Deck.gl - Arc" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "104 semanas atrás" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - GeoJSON" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15 minutos" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - Arc" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -msgid "156 weeks" -msgstr "156 semanas" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Fluxo de eventos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "156 semanas atrás" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Séries temporais - Teste t pareado" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "1AS" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Séries temporais - Gráfico Nightingale Rose" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "1D" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Diagrama de partição" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "1H" +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" +msgstr "Escolha pelo menos um agrupar por" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "1M" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "Tipo de dados avançados inválido: %(advanced_data_type)s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "1T" +#: superset/annotation_layers/api.py:346 +#, fuzzy, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "Camada de anotação %(num)d excluída" +msgstr[1] "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -msgid "2 years" -msgstr "2 anos" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Todos os Textos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "2 anos atrás" +#: superset/annotation_layers/annotations/api.py:488 +#, fuzzy, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "Anotação %(num)d excluída" +msgstr[1] "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:49 -msgid "2/98 percentiles" -msgstr "2/98 percentis" +#: superset/charts/api.py:523 +#, fuzzy, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "Gráfico %(num)d excluído" +msgstr[1] "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" +msgstr "É certificado" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "28 dias atrás" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" +msgstr "Foi criado por" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "28 dias atrás" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" +msgstr "Criado por mim" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "2D" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" +msgstr "Próprio Criado ou Favorecido" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -#, fuzzy -msgid "3 letter code of the country" -msgstr "todos os dias do mês" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "Total (%(aggfunc)s)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -#, fuzzy -msgid "3 years" -msgstr "2 anos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "Subtotal" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" -msgstr "3 anos atrás" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`confidence_interval` deve estar entre 0 e 1 (exclusivo)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:131 -msgid "30 days" -msgstr "30 dias" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." +msgstr "" +"o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor" +" que o percentil superior." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -#, fuzzy -msgid "30 days ago" -msgstr "28 dias atrás" - -#: superset/db_engine_specs/base.py:104 -#, fuzzy -msgid "30 minute" -msgstr "30 minutos" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 minutos" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" +"o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior" +" que o percentil inferior." -#: superset/db_engine_specs/base.py:99 -#, fuzzy -msgid "30 second" -msgstr "30 segundos" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`largura` deve ser maior ou igual a 0" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 segundos" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "O `row_limit` deve ser maior ou igual a 0" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "3D" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`row_offset` deve ser maior ou igual a 0" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "4 semanas (freq=4S-SEG)" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" +msgstr "a coluna orderby deve ser preenchida" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5 minutos" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "" +"O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico " +"novamente." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 minutos" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "O pedido está incorreto: %(error)s" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "5 segundos" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "O Pedido não é JSON" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" -msgstr "5 segundos" +#: superset/charts/data/api.py:369 +msgid "Empty query result" +msgstr "Resultado da consulta vazio" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -msgid "52 weeks" -msgstr "52 semanas" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Proprietários são inválidos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "52 semanas atrás" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Algumas funções não existem" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "52 semanas iniciando Segunda-feira (freq=52S-SEG)" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "O tipo de fonte de dados é inválido" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" -msgstr "6 horas" +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" +msgstr "A fonte de dados não existe" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 -msgid "60 days" -msgstr "60 dias" +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" +msgstr "A consulta não existe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "Frequência de 7 dias de calendário" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Os parâmetros da camada de anotação são inválidos." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" -msgstr "7 dias" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Não foi possível criar uma camada de anotação." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "7D" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Não foi possível atualizar uma camada de anotação." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:50 -msgid "9/91 percentiles" -msgstr "9/91 percentis" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Camada de anotação não encontrada." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 -msgid "90 days" -msgstr "90 dias" +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "Não foi possível remover uma camada de anotação." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "A camada de anotação tem anotações associadas." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 -msgid "< (Smaller than)" -msgstr "< (menor que)" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "O nome deve ser único" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 -msgid "<= (Smaller or equal)" -msgstr "<= (menor ou equal)" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "A data final deve ser após a data de início" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "Uma breve descrição deve ser única para essa camada" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Anotação não encontrada." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Parâmetros de anotação são inválidos." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "Não foi possível criar uma anotação." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "Não foi possível atualizar uma anotação." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 -msgid "== (Is equal)" -msgstr "== (É igual)" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Anotações não foram excluídas." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 -msgid "> (Larger than)" -msgstr "> (Maior que)" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Há alertas ou relatórios associados: %s," -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 -msgid ">= (Larger or equal)" -msgstr ">= (Maior ou equal)" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" +"A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou " +"[%(human_readable)s later]." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" -msgstr "Um grande número" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Não é possível analisar a string de tempo [%(human_readable)s ]" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -"Uma lista separada por vírgulas de colunas que devem ser analisadas como " -"datas" +"O delta de tempo é ambíguo. Especifique [%(human_readable)s ago] ou " +"[%(human_readable)s later]." -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "" -"Uma lista separada por vírgulas de colunas que devem ser analisadas como " -"datas." +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "Banco de dados não existe" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "" -"Uma lista separada por vírgulas de esquemas para os quais os arquivos têm" -" permissão para fazer upload." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Os painéis não existem" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "Já existe um banco de dados com o mesmo nome." +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "O tipo de fonte de dados é necessário quando datasource_id é fornecido" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Os parâmetros do gráfico são inválidos." -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" -msgstr "" -"Um URL completo apontando para o localização do plug-in construído " -"(poderia ser hospedado em um CDN, por exemplo)" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Não foi possível criar o gráfico." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "Um modelo de handlebars aplicado aos dados" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Não foi possível atualizar o gráfico." -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Um nome amigável ao ser humano" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Não foi possível remover o gráfico." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." -msgstr "" -"Uma lista de nomes de domínio que podem incorporar este dashboard. Se " -"deixar este campo vazio, permitirá a incorporação a partir de qualquer " -"domínio." +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Há alertas ou relatórios associados" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 -msgid "A list of tags that have been applied to this chart." -msgstr "Uma lista de tags que foram aplicadas a esse gráfico." +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "Você não tem acesso a esse gráfico." -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "" -"Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome " -"ou nome de usuário." +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "É proibido alterar este gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "Um mapa do mundo, que pode indicar valores em diferentes países." +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "A importação do gráfico falhou por um motivo desconhecido" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" -msgstr "" -"Um mapa que mostra círculos de renderização com um raio variável em " -"coordenadas de latitude/longitude" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "É proibido alterar este painel" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Uma métrica para cor" - -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." -msgstr "" -"Um gráfico de coordenadas polares em que o círculo é dividido em cunhas " -"de igual ângulo e o valor representado por qualquer cunha é ilustrado " -"pela sua área, em vez do seu raio ou ângulo de varrimento." - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 -msgid "A readable URL for your dashboard" -msgstr "Uma URL legível para seu painel" - -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "Uma referência para a configuração [Time] , tomando granularidade em conta" +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "Gráfico %(id)s não encontrado" -#: superset/reports/commands/exceptions.py:186 +#: superset/commands/chart/data/get_data_command.py:55 #, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Já existe um relatório denominado \"%(name)s\"" +msgid "Error: %(error)s" +msgstr "Erro: %(error)s" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "Um conjunto de dados reutilizável vai ser salvo com seu gráfico." +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "Modelo CSS não pôde ser deletado." -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "Uma captura de tela do painel vai ser enviado para seu e-mail em" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "Modelo CSS não encontrado." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "" -"Um conjunto de parâmetros que tornar-se disponível na consulta usando a " -"sintaxe de modelagem Jinja" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Deve ser único" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." -msgstr "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Os parâmetros do painel são inválidos." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." -msgstr "" -"Um gráfico de séries temporais que visualiza como uma métrica relacionada" -" de vários grupos varia ao longo do tempo. Cada grupo é visualizado " -"usando uma cor diferente." +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "Não foi possível criar o painel." -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "Ocorreu um tempo limite durante a execução da consulta." +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Não foi possível atualizar o painel." -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "Ocorreu um tempo limite ao gerar um arquivo csv." +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Não foi possível remover o painel." -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." -msgstr "Ocorreu um timeout durante a geração de um dataframe." +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "É proibido alterar este painel" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." -msgstr "Ocorreu um tempo limite ao fazer uma captura de tela." +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "A importação do painel falhou por um motivo desconhecido" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 -msgid "A valid color scheme is required" -msgstr "Um esquema de cores válido é necessário" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "Você não tem acesso a esse painel." -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "APLICAR" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." +msgstr "Você não tem acesso a essa configuração de painel incorporado." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "ABR" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "Não há dados no arquivo" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "AQE" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Os parâmetros do banco de dados são inválidos." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "AGO" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "Já existe um banco de dados com o mesmo nome." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" -msgstr "MARGEM DO TÍTULO DO EIXO" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Campo é obrigatório" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" -msgstr "POSIÇÃO DO TÍTULO DO EIXO" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "O campo não pode ser decodificado por JSON. %(json_error)s" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "Sobre" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "" +"O metadata_params no campo Extra não está configurado corretamente. A " +"chave %{key}s é inválida." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 -msgid "Access" -msgstr "Acessar" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "Banco de dados não encontrado." -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Pedidos de acesso" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "Não foi possível criar o banco de dados." -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "O acesso aos dados de atividade dos usuários é restrito" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "Não foi possível atualizar o banco de dados." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" -msgstr "Token de acesso" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "Falha na conexão, por favor verificar suas configurações de conexão" -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "O acesso foi solicitado" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "" +"Não é possível excluir um banco de dados que tenha conjuntos de dados " +"anexados" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Ação" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "Não foi possível remover o banco de dados." -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Log de ação" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Parou uma conexão insegura ao banco de dados" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Ações" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Não foi possível carregar o driver do banco de dados" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Ativo" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "" +"Ocorreu um erro inesperado, verifique os registros(logs) para obter " +"detalhes" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -msgid "Actual Values" -msgstr "Valores reais" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "nenhum validador SQL está configurado" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Intervalo de tempo real" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "Sem validador encontrado (configurado para o motor)" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" -msgstr "Valor real" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "Não foi possível verificar sua consulta" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -msgid "Actual values" -msgstr "Valores reais" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "Ocorreu um erro inesperado" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" -msgstr "Formatação adaptável" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "A importação do banco de dados falhou por um motivo desconhecido" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "Adicionar" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Não foi possível carregar o driver de banco de dados: {}" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Alert" -msgstr "Adicionar alerta" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Adicionar modelo CSS" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "O banco de dados está off-line." -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "Adicionar modelo CSS" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" +"%(validador)es não conseguiu verificar sua consulta.\n" +"Por favor revise sua consulta.\n" +"Exceção: %(ex)s" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Adicionar gráfico" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "nenhum validador SQL está configurado para {}" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Adicionar coluna" +#: superset/commands/database/validate_sql.py:111 +#, fuzzy, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "Sem validador nomeado {} encontrado (configurado para o motor {})" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Adicionar painel" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." +msgstr "Não foi possível excluir o túnel SSH." -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Adicionar Banco de dados" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." +msgstr "Túnel SSH não encontrado." -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Adicionar Log" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." +msgstr "Os parâmetros do túnel SSH são inválidos." -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Adicionar Métrica" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." +msgstr "Não foi possível atualizar o túnel SSH." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Add Report" -msgstr "Adicionar relatório" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "A criação do túnel SSH falhou por um motivo desconhecido" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Add Rule" -msgstr "Fórmula ruim." +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "Túnel SSH não está ativado" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Adicionar Consulta Salva" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "Forneça credenciais para o Túnel SSH" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Adicionar um Plugin" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "Não é possível ter múltiplas credenciais para o Túnel SSH" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -msgid "Add a dataset" -msgstr "Adicionar um conjunto de dados" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "O banco de dados não foi encontrado." -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" -msgstr "Adicionar uma nova aba" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "%(nome)s do conjunto de dados já existe" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" -msgstr "Adicionar uma nova guia para criar Consulta SQL" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "Banco de dados não pode ser alterado" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" -msgstr "Adicionar parâmetros personalizados adicionais" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Um ou mais colunas não existem" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -msgid "Add an annotation layer" -msgstr "Adicionar uma camada de anotação" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Uma ou mais colunas estão duplicadas" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "Adicionar um item" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Uma ou mais colunas já existem" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" -msgstr "Adicionar e editar filtros" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Um ou mais métricas não existem" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Adicionar anotação" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Um ou mais métricas estão duplicadas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Adicionar camada de anotação" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Uma ou mais métricas já existem" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -#, fuzzy -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -"Adicionar colunas calculadas para conjunto de dados em \"Edit " -"datasource\"modal" +"Não foi possível encontrar a tabela [%(table_name)s], verifique novamente" +" a conexão ao banco de dados, o esquema e o nome da tabela" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -#, fuzzy -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "" -"Adicionar colunas temporais calculadas para conjunto de dados em \"Edit " -"datasource\"modal" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Conjunto de dados não existe" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" -msgstr "Adicionar filtro cruzado" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Os parâmetros para o conjunto de dados são inválidos." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Não foi possível criar o conjunto de dados." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "Adicionar método de entrega" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Não foi possível atualizar o conjunto de dados." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." -msgstr "Adicione informações adicionais sobre a conexão." +#: superset/commands/dataset/exceptions.py:172 +#, fuzzy +msgid "Datasets could not be deleted." +msgstr "Não foi possível remover o conjunto de dados." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Adicionar filtro" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." +msgstr "Não foi possível recuperar as amostras do conjunto de dados." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" -"Adicionar cláusulas de filtro para controlar a consulta de origem do " -"filtro, \n" -" embora apenas no contexto do preenchimento automático, ou seja, esses " -"condições \n" -" não impactam como o filtro é aplicado para o painel. Isso é util \n" -" quando você quiser melhorar o desempenho da consulta apenas analisando " -"um subconjunto \n" -" de dados subjacentes ou limitar os valores disponíveis apresentados no " -"filtro." +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "É proibido alterar este conjunto de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "Adicionar filtros e divisores" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "A importação do conjunto de dados falhou por um motivo desconhecido" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Adicionar item" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." +msgstr "Você não tem acesso a esse conjunto de dados." -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Adicionar métrica" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." +msgstr "Não foi possível duplicar o conjunto de dados." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." +msgstr "URI de dados não são permitidos." + +#: superset/commands/dataset/exceptions.py:205 #, fuzzy -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "Adicionar Métricas para conjunto de dados em \"Edit datasource\"modal" +msgid "The provided table was not found in the provided database" +msgstr "A tabela foi excluída ou renomeada no banco de dados." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "Adicionar novo formatador de cores" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Coluna do conjunto de dados não encontrada." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "Adicionar novo formatador" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Falha na exclusão da coluna do conjunto de dados." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 -msgid "Add notification method" -msgstr "Adicionar método de notificação" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +#, fuzzy +msgid "Changing this dataset is forbidden." +msgstr "É proibido alterar este conjunto de dados" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "Adicionar controle de valores obrigatórios para visualizar o gráfico" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "A métrica do conjunto de dados não foi encontrada." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" -msgstr "Adicionar controle de valores obrigatórios para salvar gráfico" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "Falha na exclusão da métrica do conjunto de dados." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "Adicionar planilha" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." +msgstr "" +"Os dados do formulário não foram encontrados na cache, revertendo para os" +" metadados do gráfico." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" -msgstr "Adicione o nome do gráfico" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." +msgstr "" +"Os dados do formulário não foram encontrados na cache, revertendo para os" +" metadados do conjunto de dados." -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" -msgstr "Adicione o nome do painel" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[Conjunto de dados ausente]" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Adicionar ao painel" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Não foi possível eliminar as consultas salvas." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" -msgstr "Adicionar/Editar filtros" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Consulta salva não encontrada." -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "Adicionado" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "A consulta salva de importação falhou por um motivo desconhecido." + +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Os parâmetros de consulta salvos são inválidos." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 +#: superset/commands/report/alert.py:98 #, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Adicionado a 1 painel" -msgstr[1] "" +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "A consulta do alerta retornou mais de uma linha. %s linhas retornadas" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" -msgstr "Parâmetros adicionais" +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "A consulta do alerta retornou mais de uma coluna. %s colunas retornadas" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "Adicional campos que podem ser necessários" +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "Ocorreu um erro ao podar os registos" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "Informação adicional" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "IDs das abas inválido: %s(tab_ids)" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" -msgstr "Metadados adicionais" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Painel não existe" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." -msgstr "Preenchimento adicional da legenda." +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "O gráfico não existe" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" -msgstr "Parâmetros adicionais" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "O banco de dados é necessário para os alertas" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." -msgstr "Configurações adicionais." +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "O tipo é obrigatório" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "" -"Texto adicional para adicionar antes ou depois o valor, por exemplo, " -"unidade" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Escolha um gráfico ou painel, não ambos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" -msgstr "Aditivo" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" +msgstr "Deve escolher um gráfico ou um painel" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "Ajustar como esse banco de dados vai interagir com SQL Lab." +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "" +"Por favor primeiramente salvar seu gráfico, então tentar crir um novo " +"relatório de e-mail." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." -msgstr "Ajuste as configurações de desempenho desse banco de dados." +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "" +"Por favor, salve primeiro o seu painel e, em seguida, tente criar um novo" +" relatório de e-mail." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:153 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:66 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Avançado" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Os parâmetros do agendamento de relatório são inválidos." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "Análise avançada" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Não foi possível criar um agendamento do relatório." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" -msgstr "Tipo de dados avançado" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "O agendamento do relatório pode não ser atualizado." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Analytics avançado" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Agendamento de relatório não encontrado." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" -msgstr "Análise avançada Consulta A" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "Falha na exclusão do agendamento do relatório." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" -msgstr "Análise avançada Consulta B" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Falha na poda do registo do agendamento do relatório." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" -msgstr "Tipo de dados avançado" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" +"A execução do agendamento do relatório falhou ao gerar uma captura de " +"tela." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:130 -msgid "Advanced-Analytics" -msgstr "Análise avançada" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "A execução do Report Schedule falhou ao gerar um arquivo csv." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" -msgstr "Estética" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "A execução do Report Schedule falhou ao gerar um dataframe." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" -msgstr "Depois de" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "A execução do agendamento de relatório obteve um erro inesperado." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" -msgstr "Agregado" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "" +"O agendamento de relatório ainda está funcionando, recusando-se a " +"recalcular." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" -msgstr "Média agregada" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "O agendamento do relatório atingiu o tempo limite de trabalho." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" -msgstr "Soma agregada" +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Já existe um relatório denominado \"%(name)s\"" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." -msgstr "" -"Função agregada aplicada à lista de pontos em cada cluster para produzir " -"o rótulo do cluster." +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Já existe um alerta chamado \"%(name)s\"" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" -msgstr "" -"Função agregada a aplicar ao dinamizar e calcular o total de linhas e " -"colunas" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "Recurso já tem um relatório anexado." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" -msgstr "" -"Agrega dados dentro dos limites das células do grid e mapeia os valores " -"agregados para uma escala de cores dinâmica" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "A consulta do alerta retornou mais do que uma linha." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "agregar" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "Erro na configuração do validador do alerta." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" -msgstr "Função de agregação" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "A consulta do alerta retornou mais de uma coluna." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -msgid "Alert" -msgstr "Alerta" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "A consulta do alerta retornou um valor não numérico." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Alerta Acionado, em período de carência" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "O alerta encontrou um erro durante a execução de uma consulta." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -msgid "Alert condition" -msgstr "Condição de alerta" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Ocorreu um tempo limite durante a execução da consulta." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Alert condition schedule" -msgstr "Programação do estado de alerta" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Ocorreu um tempo limite ao fazer uma captura de tela." -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "O alerta terminou o período de carência." +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Ocorreu um tempo limite ao gerar um arquivo csv." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Falha no alerta" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "Ocorreu um timeout durante a geração de um dataframe." -#: superset/reports/commands/exceptions.py:248 +#: superset/commands/report/exceptions.py:242 msgid "Alert fired during grace period." msgstr "Alerta disparado durante o período de carência." -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "O alerta encontrou um erro durante a execução de uma consulta." - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Alert name" -msgstr "Nome do alerta" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "O alerta terminou o período de carência." -#: superset/reports/commands/exceptions.py:258 +#: superset/commands/report/exceptions.py:252 msgid "Alert on grace period" msgstr "Alerta em período de carência" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "A consulta do alerta retornou um valor não numérico." - -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "A consulta do alerta retornou mais de uma coluna." - -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "A consulta do alerta retornou mais de uma coluna. %s colunas retornadas" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Estado do agendamento do relatório não encontrado" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "A consulta do alerta retornou mais do que uma linha." +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" +msgstr "Relatar erro do sistema de programação" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "A consulta do alerta retornou mais de uma linha. %s linhas retornadas" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" +msgstr "Relatar erro do cliente de programação" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Alerta em execução" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Erro inesperado no agendamento do relatório" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Alerta acionado , notificação enviada" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "É proibido alterar este relatório" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "Erro na configuração do validador do alerta." +#: superset/commands/report/exceptions.py:280 +#, fuzzy +msgid "An error occurred while pruning logs " +msgstr "Ocorreu um erro ao podar os registos" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Alertas" +#: superset/commands/security/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Agendamento de relatório não encontrado." -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "Alertas e Relatórios" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "Não foi possível remover o gráfico." -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Alertas e relatórios" +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" +msgstr "Não foi possível encontrar o banco de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" -msgstr "Alinhar +/-" +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." +msgstr "" +"A estimativa de consulta foi encerrada após %(sqllab_timeout)s segundos. " +"Ela pode ser muito complexa ou o banco de dados pode estar sob carga " +"pesada." -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "Todos" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." +msgstr "" +"O banco de dados referenciado nesta consulta não foi encontrado. Contate " +"um administrador para obter mais assistência ou tente novamente." -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -msgid "All Entities" -msgstr "Todas as entidades" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "" +"A consulta associada a esses resultados não pôde ser encontrada. Você " +"precisa executar novamente a consulta original." -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "Todos os Textos" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "Não foi possível acessar a consulta" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 -msgid "All charts" -msgstr "Todos os gráficos" +#: superset/commands/sql_lab/results.py:75 +msgid "" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." +msgstr "" +"Os dados não puderam ser recuperados do backend de resultados. Você " +"precisa executar novamente a consulta original." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" +"Os dados não puderam ser desserializados do backend de resultados. O " +"formato de armazenamento pode ter mudado, tornando os dados antigos. É " +"necessário executar novamente a consulta original." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Todos os filtros" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." +msgstr "Os parâmetros da tag são inválidos." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "Todos os filtros (%(filterCount)d)" +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." +msgstr "Não foi possível criar a tag." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" -msgstr "Todos os painéis" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "Não foi possível atualizar o conjunto de dados." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "Todos painéis com essa coluna vão ser afetados por esse filtro" +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." +msgstr "Não foi possível excluir a tag." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Permitir CREATE TABLE AS" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." +msgstr "O objeto marcado não pôde ser excluído." -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Permitir CREATE VIEW AS" - -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Permitir a opção CREATE VIEW AS no SQL Lab" - -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "Permitir Csv Upload" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Permitir DML" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" -msgstr "Permitir que as colunas sejam reorganizadas" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "Permitir criação de novas tabelas baseadas em consultas" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "Permitir criação de novas visualizações baseadas em consultas" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "Permitir linguagem de manipulação de dados" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" -"Permitir que o usuário final arraste e solte os cabeçalhos das colunas " -"para os reorganizar. Note que as alterações não persistirão na próxima " -"vez que o utilizador abrir o gráfico." +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." +msgstr "Ocorreu um erro ao criar o valor." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" -msgstr "Permitir uploads de arquivos para o banco de dados" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "Ocorreu um erro ao acessar o valor." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" -"Permitir manipulação do banco de dados usando instruções não SELECT como " -"UPDATE, DELETE, CREATE, etc." +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." +msgstr "Ocorreu um erro ao excluir o valor." -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Permitir seleções múltiplas" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." +msgstr "Ocorreu um erro ao atualizar o valor." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" -msgstr "Permitir seleções de nós" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." +msgstr "Você não tem permissão para modificar o valor." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "Permitir o envio de vários polígonos como um evento de filtro" +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." +msgstr "O recurso não foi encontrado." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "Permitir que esse banco de dados seja explorado" +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" +msgstr "Tipo de resultado inválido: %(result_type)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "Permitir que o banco de dados seja consultado no SQL Lab" +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "Faltam colunas no conjunto de dados: %(invalid_columns)s" -#: superset/views/database/mixins.py:114 +#: superset/common/query_context_processor.py:383 #, fuzzy -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" -msgstr "" -"Permitir que usuários executem instruções não SELECT (UPDATE, DELETE, " -"CREATE,...) no SQL Lab" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" -msgstr "Domínios permitidos (separados por vírgula)" +msgid "Time Grain must be specified when using Time Shift." +msgstr "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "Em ordem alfabética" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." +msgstr "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." -msgstr "" -"Também conhecida como gráfico de caixa e bigode, esta visualização " -"compara as distribuições de uma métrica relacionada em vários grupos. A " -"caixa no meio enfatiza a média, a mediana e os dois quartis internos. Os " -"bigodes em torno de cada caixa visualizam o mínimo, o máximo, o intervalo" -" e os dois quartis externos." +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "O gráfico não existe" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Alterado" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" +msgstr "A fonte de dados do gráfico não existe" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" -msgstr "Ocorreu um erro" +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "O gráfico não existe" -#: superset/reports/commands/exceptions.py:188 +#: superset/common/query_object.py:290 #, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Já existe um alerta chamado \"%(name)s\"" - -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Deve ser especificado um intervalo de tempo fechado (início e fim) quando" -" se utiliza uma comparação de tempo." +"Rótulos de coluna/métrica duplicados: %(labels)s. Por favor, certifique-" +"se todas métricas e colunas tem um único rótulo." -#: superset/databases/schemas.py:289 +#: superset/common/query_object.py:312 +#, fuzzy, python-format msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -"Deve ser especificado um motor ao passar parâmetros individuais para uma " -"base de dados." - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 -#: superset-frontend/src/components/Tags/utils.tsx:67 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:38 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 -msgid "An error has occurred" -msgstr "Ocorreu um erro" +"As seguintes entradas em `series_columns` estão faltando em `columns`: " +"%(columns)s." -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Ocorreu um erro" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "Propriedade `operation` do objeto de pós-processamento indefinida" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Ocorreu um erro ao salvar conjunto de dados" +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Operação de pós-processamento sem suporte: %(operation)s" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." -msgstr "Ocorreu um erro ao acessar o valor." +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" +msgstr "[asc]" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 -msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em " -"contato com o seu administrador." +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" +msgstr "[desc]" -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Ocorreu um erro ao criar %ss: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Erro na expressão jinja no predicado para obter valores: %(msg)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Ocorreu um erro ao criar a fonte de dados" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "A consulta ao conjunto de dados virtual deve ser somente de leitura" -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -msgid "An error occurred while creating the value." -msgstr "Ocorreu um erro ao criar o valor." +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Erro ao renderizar consulta de conjunto de dados virtual: %(msg)s" -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -msgid "An error occurred while deleting the value." -msgstr "Ocorreu um erro ao excluir o valor." +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "A consulta do conjunto de dados virtual não pode estar vazia" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 -msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -"Ocorreu um erro ao expandir o esquema da tabela. Por favor entre em " -"contato com o seu administrador." +"A consulta de conjunto de dados virtual não pode consistir em várias " +"instruções" -#: superset-frontend/src/views/CRUD/hooks.ts:106 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Ocorreu um erro ao buscar as informações de %s: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Erro na expressão jinja em filtros RLS: %(msg)s" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Ocorreu um erro durante a busca de %ss: %s" +msgid "Metric '%(metric)s' does not exist" +msgstr "Métrica '%(métric)s' não existe" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "Ocorreu um erro ao buscar os modelos CSS disponíveis" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "O motor do banco de dados não retornou todas as colunas consultadas" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "Ocorreu um erro ao buscar o gráfico criado por valores: %s" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Apenas instruções `SELECT` são permitidas" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "Ocorreu um erro ao obter os valores dos proprietários do gráfico: %s" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Só são suportadas consultas únicas" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Ocorreu um erro durante a pesquisa de valores criados por: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Colunas" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "Ocorreu um erro ao buscar o painel criado por valores: %s" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Mostrar Coluna" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "Ocorreu um erro ao obter os valores do proprietário do painel: %s" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Adicionar coluna" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "Ocorreu um erro durante a pesquisa de painéis" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Editar Coluna" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Ocorreu um erro durante a pesquisa de painéis: %s" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "Ocorreu um erro ao obter dados relacionados com a base de dados: %s" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Ocorreu um erro durante a extração dos valores da base de dados: %s" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" +msgstr "" +"Para tornar essa coluna disponível como uma opção [Time Granularity], a " +"coluna deve ser DATETIME ou semelhante a DATETIME" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -"Ocorreu um erro ao obter os valores da fonte de dados do conjunto de " -"dados: %s" +"Se essa coluna está exposta na seção `Filtros` da visualização de " +"exploração." -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -"Ocorreu um erro ao obter os valores do proprietário do conjunto de dados:" -" %s" +"O tipo de dados que foi inferido pela base de dados. Em alguns casos, " +"pode ser necessário introduzir manualmente um tipo para colunas definidas" +" por expressões. Na maioria dos casos, os usuários não devem precisar de " +"alterar isto." -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "Ocorreu um erro ao obter dados relacionados com o conjunto de dados" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Coluna" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Ocorreu um erro ao obter dados relacionados com o conjunto de dados: %s" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Nome detalhado" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Ocorreu um erro durante a pesquisa de conjuntos de dados: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Descrição" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "Ocorreu um erro durante a busca de nomes de funções." +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Agrupável" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "Ocorreu um erro ao buscar os valores dos proprietários: %s" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filtrável" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Ocorreu um erro durante a extração dos valores do esquema: %s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabela" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Ocorreu um erro ao obter o estado da aba" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Expressão" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "Ocorreu um erro ao obter os metadados da tabela" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "É temporal" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao obter os metadados da tabela. Por favor entre em " -"contato com seu administrador." +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Formato de data e hora" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Ocorreu um erro ao buscar a tag criada por valores: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Tipo" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Ocorreu um erro ao buscar os valores do usuário: %s" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" +msgstr "Tipo de dados comerciais" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao ocultar a barra esquerda. Entre em contato com o " -"administrador." +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Formato de data/carimbo de data/hora inválido" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Ocorreu um erro durante a importação de %s: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Métricas" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Ocorreu um erro durante a pesquisa de painéis" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Mostrar Métricas" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Ocorreu um erro ao carregar o SQL" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Adicionar Métrica" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" -msgstr "Ocorreu um erro ao abrir o Explorador" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Editar Métrica" -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." -msgstr "Ocorreu um erro ao analisar a chave." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Métrica" -#: superset/reports/commands/exceptions.py:286 -#, fuzzy -msgid "An error occurred while pruning logs " -msgstr "Ocorreu um erro ao podar os registos" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "Expressão SQL" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" -"Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu" -" administrador." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Formato D3" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "" -"Ocorreu um erro ao remover a aba. Por favor entre em contato com seu " -"administrador." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Extra" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao remover o esquema da tabela. Por favor entre em " -"contato com seu administrador." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Mensagem de aviso" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Ocorreu um erro ao renderizar a visualização: %s" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tabelas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com " -"seu administrador." +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Mostrar Tabela" + +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Importar uma definição de tabela" + +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Editar Tabela" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 +#: superset/connectors/sqla/views.py:327 msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -"Ocorreu um erro ao definir a aba. Por favor entre em contato com seu " -"administrador." +"A lista de gráficos associados a esta tabela. Ao alterar esta fonte de " +"dados, pode alterar o comportamento dos gráficos associados. Tenha também" +" em atenção que os gráficos têm de apontar para uma fonte de dados, pelo " +"que este formulário falhará ao ser guardado se remover gráficos de uma " +"fonte de dados. Se pretender alterar a fonte de dados de um gráfico, " +"substitua o gráfico da 'visão de exploração'" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Deslocamento de fuso horário (em horas) para essa fonte de dados" + +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Nome da tabela que existe no banco de dados de origem" + +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -"Ocorreu um erro ao definir o ID da base de dados da aba. Por favor entre " -"em contato com seu administrador." +"Esquema, como usado apenas em alguns bancos de dados como Postgres, " +"Redshift e DB2" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 +#: superset/connectors/sqla/views.py:345 msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -"Ocorreu um erro ao definir o nome da guia. Entre em contato com o " -"administrador." +"Esses campos funcionam como uma visualização do Superset, o que significa" +" que o Superset executará uma consulta com base nessa string como uma " +"subconsulta." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 +#: superset/connectors/sqla/views.py:349 msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -"Ocorreu um erro ao definir o esquema da aba. Por favor entre em contato " -"com seu administrador." +"Predicado aplicado quando se vai buscar um valor distinto para preencher " +"o componente de controle do filtro. Suporta a sintaxe do modelo jinja. " +"Aplica-se apenas quando `Ativar seleção de filtro` está ativado." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -"Ocorreu um erro ao definir os parâmetros do modelo da aba. Por favor " -"entre em contato com seu administrador." +"Redireciona para este endpoint quando se clica na tabela a partir da " +"lista de tabelas" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" -msgstr "Ocorreu um erro ao inserir esse gráfico" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 +#: superset/connectors/sqla/views.py:359 msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -"Ocorreu um erro ao armazenar o ID da consulta mais recente no backend. " -"Por favor entre em contato com seu administrador se esse problema " -"persist." +"Se deve preencher o menu suspenso do filtro na seção de filtro da " +"exibição de exploração com uma lista de valores distintos obtidos do " +"backend em tempo real" + +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "Se a tabela foi gerada pelo fluxo 'Visualizar' no SQL Lab" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -"Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda" -" de suas alterações, salve a consulta usando o botão \"Save Query\"." - -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." -msgstr "Ocorreu um erro ao atualizar o valor." - -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." -msgstr "Ocorreu um erro ao inserir o valor." +"Um conjunto de parâmetros que tornar-se disponível na consulta usando a " +"sintaxe de modelagem Jinja" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" -msgstr "Ocorreu um erro inesperado" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" +"Duração (em segundos) do tempo limite de armazenamento em cache para esta" +" tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que " +"este tempo limite é predefinido para o tempo limite da base de dados se " +"não for definido." -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -"Ocorreu um erro desconhecido. Por favor entre em contato com seu " -"administrador do Superset" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "Âncora para" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "Ângulo em que termina o eixo de progressão" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Gráficos Associados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" -msgstr "Ângulo em que inicia o eixo de progressão" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Alterado por" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" -msgstr "Animação" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Banco de dados" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Anotação" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Última alteração" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, python-format -msgid "Annotation Layer %s" -msgstr "Camada de anotação %s" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Ativar seleção de filtro" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Camadas de anotação" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Esquema" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "Configuração de fatia de anotação" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Endpoint padrão" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "Não foi possível criar uma anotação." +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Deslocamento" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "Não foi possível atualizar uma anotação." +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Tempo limite da cache" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "A eliminação da anotação falhou." +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Nome da Tabela" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Camada de anotação" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Predicado de obtenção de valores" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "Não foi possível criar uma camada de anotação." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Proprietários" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "Não foi possível remover uma camada de anotação." +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Coluna principal de data e hora" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "Não foi possível atualizar uma camada de anotação." +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "Visão do SQL Lab" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "Exclusão da camada de anotação falhou." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Parâmetros do Modelo" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" -msgstr "Colunas de descrição da camada de anotação" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Modificado" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "A camada de anotação tem anotações associadas." +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" +"A tabela foi criada. Como parte desse processo de configuração em duas " +"fases, agora você deve clicar no botão de edição da nova tabela para " +"configurá-la." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" -msgstr "Fim do intervalo da camada de anotação" +#: superset/css_templates/api.py:142 +#, fuzzy, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Modelo CSS %(num)d excluído" +msgstr[1] "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "Nome da camada de anotação" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "Esquema do conjunto de dados inválido, causado por: %(error)s" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Camada de anotação não encontrada." +#: superset/dashboards/api.py:697 +#, fuzzy, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Painel %(num)d excluído" +msgstr[1] "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" -msgstr "Opacidade da camada de anotação" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Título ou Slug" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Os parâmetros da camada de anotação são inválidos." +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Função" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" -msgstr "Traço da camada de anotação" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "Estado inválido." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" -msgstr "Coluna de tempo da camada de anotação" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Não da tabela indefinido" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" -msgstr "Coluna de título da camada de anotação" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "Upload habilitado" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "Tipo da camada de anotação" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" +"Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: " +"backend+driver://user:password@database-host/database-name" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" -msgstr "Valor da camada de anotação" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Campo não pode ser decodificado por JSON. %(msg)s" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Camadas de anotação" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" +"O metadata_params no campo Extra não está configurado corretamente. A " +"chave %(key)s é inválida." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "As camadas de anotação ainda estão carregando." +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" +"Deve ser especificado um motor ao passar parâmetros individuais para uma " +"base de dados." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Nome da anotação" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" +"A especificação do mecanismo \"InvalidEngine\" não permite a configuração" +" por meio de parâmetros individuais." -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Anotação não encontrada." +#: superset/datasets/api.py:785 +#, fuzzy, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Conjunto de dados %(num)d excluído" +msgstr[1] "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "Parâmetros de anotação são inválidos." +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Nulo ou Vazio" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -msgid "Annotation source" -msgstr "Fonte de anotação" +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" +"Verifique se há erros de sintaxe na consulta ou perto de " +"\"%(error_sintaxe)s \". Em seguida , tente executar sua consulta " +"novamente." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" -msgstr "Tipo de fonte de anotação" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Segundo" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" -msgstr "Modelo de anotação criado" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5 segundos" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" -msgstr "Modelo de anotação atualizado" +#: superset/db_engine_specs/base.py:100 +#, fuzzy +msgid "30 second" +msgstr "30 segundos" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" -msgstr "Anotações e camadas" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Minuto" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Anotações e camadas" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 minutos" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "Anotações não foram excluídas." +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 minutos" + +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 minutos" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 +#: superset/db_engine_specs/base.py:105 #, fuzzy -msgid "Any" -msgstr "dia" +msgid "30 minute" +msgstr "30 minutos" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 -msgid "Any additional detail to show in the certification tooltip." -msgstr "" -"Qualquer detalhe adicional a mostrar na dica de ferramenta de " -"certificação." +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Hora" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" -"Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas " -"aos gráficos individuais deste painel" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6 horas" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -#, fuzzy -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "" -"Podem ser adicionadas quaisquer bases de dados que permitam ligações " -"através de URIs do SQL Alchemy." +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "Dia" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -#, fuzzy -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " -msgstr "" -"Podem ser adicionadas quaisquer bases de dados que permitam ligações " -"através de URIs do SQL Alchemy. Aprenda como conectar um driver de banco " -"de dados" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Semana" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "Anexar" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Mês" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, python-format -msgid "Applied cross-filters (%d)" -msgstr "Filtros cruzados aplicados (%d)" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Trimestre" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, python-format -msgid "Applied filters (%d)" -msgstr "Filtros aplicados (%d)" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Ano" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, python-format -msgid "Applied filters: %s" -msgstr "Filtros aplicados: %s" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Semana começando no domingo" -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." -msgstr "" -"A janela móvel aplicada não devolveu quaisquer dados. Certifique-se de " -"que a consulta de origem satisfaz os períodos mínimos definidos na janela" -" móvel." +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Semana começando na segunda-feira" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Aplicar" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Semana terminando no Sábado" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#: superset/db_engine_specs/base.py:116 #, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "Aplicar formatação de cor condicional a métricas" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "Aplicar formatação de cor condicional a métricas" +msgid "Week ending Sunday" +msgstr "semana que termina no sábado" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "Aplicar formatação de cor condicional para colunas numéricas" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Nome de usuário" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" -msgstr "Aplicar filtros" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Senha" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -#, fuzzy -msgid "Apply metrics on" -msgstr "Minha métrica" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Nome do host ou endereço IP" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Aplicar para todos painéis" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Porta do banco de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Aplicar para painéis específicos" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Nome do banco de dados" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "Abril" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "Parâmetros adicionais" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" -msgstr "Arco" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Use uma conexão criptografada com o banco de dados" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Tem certeza de que pretende substituir os valores a seguir?" +#: superset/db_engine_specs/base.py:2004 +#, fuzzy +msgid "Use an ssh tunnel connection to the database" +msgstr "Use uma conexão criptografada com o banco de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "Tem certeza que deseja cancelar ?" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" +"Não é possível se conectar. Verifique se as seguintes funções estão " +"definidas na conta de serviço: \"Visualizador de dados do BigQuery\", " +"\"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do " +"BigQuery\" e as seguintes permissões estão definidas " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "Tem certeza que deseja remover" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" +"A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para" +" executar essa consulta." -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#: superset/db_engine_specs/bigquery.py:199 #, python-format -msgid "Are you sure you want to delete %s?" -msgstr "Tem certeza de que deseja excluir %s?" +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "We can't seem to resolve column \"%(column)s\" at line %(location)s." -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/db_engine_specs/bigquery.py:204 #, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "Tem certeza que deseja remover o %s selecionado ?" +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" +"O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado " +"para executar essa consulta." -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Tem certeza que deseja remover as anotações selecionadas?" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "Ou o nome de usuário \"%(username)s\" ou a senha está incorreta." -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "Tem certeza que deseja remover os gráficos selecionados?" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Host do servidor MySQL desconhecido \"%(hostname)s\"." -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Tem certeza que deseja remover os painéis selecionados ?" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, fuzzy, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "O host \"%(hostname)s\"pode ter caído e não pode ser alcançado." -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Tem certeza que deseja remover os conjuntos de dados selecionados?" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "Tem certeza que deseja remover as camadas selecionadas?" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" +"Verifique se há erros de sintaxe na sua consulta \"%(erro_servidor)s \". " +"Em seguida , tente executar sua consulta novamente." -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "Tem certeza que deseja remover as consultas selecionadas ?" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "Parece que não conseguimos resolver a coluna \"%(column_name)s\"" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -#, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "Tem certeza que deseja remover as camadas selecionadas?" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"O nome de usuário \"%(username)s\", a senha ou o nome do banco de dados " +"\"%(database)s\" estão incorretos." -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" -msgstr "Tem certeza de que deseja excluir as tags selecionadas?" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, fuzzy, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "O nome de host \"%(hostname)s\"não pode ser resolvido." -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "Tem certeza que deseja remover os modelos selecionados ?" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Tem certeza de que deseja substituir esse conjunto de dados?" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, fuzzy, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" +"O host \"%(hostname)s\"pode ter caído, e não pode ser alcançado na porta " +"%(port)s." -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "Tem certeza que deseja continuar ?" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Host do servidor MySQL desconhecido \"%(hostname)s\"." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "Tem certeza que deseja salvar e aplicar mudanças ?" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "O nome de usuário \"%(username)s\" não existe." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" -msgstr "Gráfico de área" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" -msgstr "Gráfico de área (legado)" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" -msgstr "Gráfico de área" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" -msgstr "Opacidade do gráfico de área" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 +#: superset/db_engine_specs/ocient.py:271 +#, fuzzy msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -"Os gráficos de área são semelhantes aos gráficos de linhas na medida em " -"que representam variáveis com a mesma escala, mas os gráficos de área " -"empilham as métricas umas sobre as outras." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" -msgstr "Seta" +"Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: " +"backend+driver://user:password@database-host/database-name" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" -msgstr "Atribuir um conjunto de parâmetros como" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Gráficos Associados" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "O nome de usuário \"%(username)s\" não existe." -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Execução Assíncrona" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "Execução de consulta assíncrona" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "Agosto" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "Por favor digite a senha novamente." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" -msgstr "Auto" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "" +"Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha" +" %(location)s." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" -msgstr "Zoom automático" +#: superset/db_engine_specs/postgres.py:289 +#, fuzzy +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" +"%(dialect)s não pode ser usado como uma fonte de dados por motivos de " +"segurança." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "Autocompletar" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." +msgstr "" +"A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada " +"para executar essa consulta." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "Filtros de preenchimento automático" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." +msgstr "" +"O esquema \"%(schema_name)s\" não existe. Um esquema válido deve ser " +"usado para executar essa consulta." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "Predicado de consulta de preenchimento automático" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "" +"Não foi possível conectar-se ao catálogo chamado \"%(nome_do_catálogo)s " +"\"." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" -msgstr "Cor Automática" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Erro desconhecido do Presto" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" -msgstr "Modos de ordenação disponíveis:" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "" +"Não foi possível conectar-se ao seu banco de dados chamado " +"\"%(database)s\". Verifique o nome do banco de dados e tente novamente." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -msgid "Average" -msgstr "Média" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s não existe neste banco de dados." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -msgid "Average value" -msgstr "Valor médio" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." +msgstr "Não foi possível recuperar as amostras da fonte de dados." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" -msgstr "Eixo" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" +msgstr "É proibido alterar essa fonte de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" -msgstr "Limites do eixo" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Início" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -msgid "Axis Format" -msgstr "Formato do eixo" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" +msgstr "Conexões de banco de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" -msgstr "Título do eixo" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Dados" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" -msgstr "Eixo ascendente" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Painéis" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" -msgstr "Eixo descendente" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Gráficos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "BOLEANO" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Conjuntos de dados" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" -msgstr "Voltar" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Plugins" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" -msgstr "Voltar para todos" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Gerenciar" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Backend" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "Modelos CSS" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" -msgstr "Valores retroativos" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL Lab" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." -msgstr "Fórmula ruim." +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "Bad spatial key" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Consultas salvas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "Barra" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Histórico de consultas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" -msgstr "Gráfico de barras" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "Tags" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" -msgstr "Gráfico de barras (legado)" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Log de ação" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" -"Os gráficos de barras são usados para mostrar as métricas como uma série " -"de barras." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Segurança" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "Valores de barra" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Alertas e Relatórios" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -msgid "Bar orientation" -msgstr "Orientação da barra" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Camadas de anotação" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "banco de dados" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "Segurança em nível de linha" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "Estilo do mapa da camada de base" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." +msgstr "Ocorreu um erro ao analisar a chave." -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "Com base em uma métrica" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." +msgstr "Ocorreu um erro ao inserir o valor." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" -msgstr "Com base na granularidade, número de períodos de tempo para comparação" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" -msgstr "Com base no que as séries devem ser ordenadas no gráfico e na legenda" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Básico" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" +msgstr "Chave de permalink inválida" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:353 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:247 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:287 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "Informações básicas" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "" +"A coluna Datetime não é fornecida como parte da configuração da tabela e " +"é exigida por este tipo de gráfico" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Consulta vazia?" + +#: superset/models/helpers.py:1605 #, python-format -msgid "Batch editing %d filters:" -msgstr "Batch editando %d filtros:" +msgid "Unknown column used in orderby: %(col)s" +msgstr "Coluna desconhecida usada em orderby: %(col)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "Nível da bateria ao longo do tempo" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "A coluna de tempo \"%(col)s\" não existe no conjunto de dados" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "Cuidado." +#: superset/models/helpers.py:1821 +msgid "error_message" +msgstr "mensagem de erro" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "Antes de" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "A lista de valores do filtro não pode estar vazia" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Número grande" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "Deve especificar um valor para filtros com operadores de comparação" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "Tamanho da Fonte do Número Grande" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Tipo de operação de filtragem inválido: %(op)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Número grande com Trendline" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Erro na expressão jinja na cláusula WHERE: %(msg)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" -msgstr "Parte inferior" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Erro na expressão jinja na cláusula HAVING: %(msg)s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "Margem Inferior" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "O banco de dados não é compatível com subconsultas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" -msgstr "Parte inferior esquerda" +#: superset/queries/saved_queries/api.py:225 +#, fuzzy, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "Excluída %(num)d consulta salva" +msgstr[1] "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" +#: superset/reports/api.py:506 +#, fuzzy, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "%(num)d cronograma de relatório excluído" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" -msgstr "Parte inferior direita" +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "O valor deve ser maior que 0" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "De baixo para cima" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -"Limites para o eixo Y. Quando deixados em branco, os limites são " -"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " -"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " -"extensão dos dados." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 +#: superset/reports/notifications/email.py:88 +#, fuzzy, python-format msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "" -"Limites para o eixo. Quando deixados em branco, os limites são definidos " -"dinamicamente com base no mínimo/máximo dos dados. Observe que esse " -"recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " -"extensão dos dados." +"\n" +" Error: %(text)s\n" +" " +msgstr "Erro: %(text)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -#, fuzzy +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" +msgstr "EMAIL_REPORTS_CTA" + +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" + +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" + +#: superset/reports/notifications/slack.py:76 +#, fuzzy, python-format msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -"Limites para o eixo Y. Quando deixados em branco, os limites são " -"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " -"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " -"extensão dos dados." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url) s|Explore no Superset >\n" +"\n" +"%(table)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -#, fuzzy +#: superset/reports/notifications/slack.py:93 +#, fuzzy, python-format msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -"Limites para o eixo Y. Quando deixados em branco, os limites são " -"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " -"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " -"extensão dos dados." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Erro: %(text)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 -msgid "Box Plot" -msgstr "Gráfico de caixa" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Gráfico %(num)d excluído" +msgstr[1] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" -msgstr "Desmembramentos" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" +"%(dialect)s não pode ser usado como uma fonte de dados por motivos de " +"segurança." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Gráfico de bolhas" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" -msgstr "Cor da bolha" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Você não tem o direito de alterar %(resource)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" -msgstr "Tamanho da bolha" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "Falha ao executar %(query)s" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Tamanho da bolha" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" +"Verifique se existem erros de sintaxe nos parâmetros do modelo e " +"certifique-se de que correspondem à consulta SQL e aos parâmetros de " +"definição. Em seguida, tente executar a consulta novamente." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" -msgstr "Pontos de quebra de balde" +#: superset/sqllab/query_render.py:100 +#, fuzzy, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "O parâmetro %(parâmeters)s em sua consulta é indefinido." +msgstr[1] "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" -msgstr "Construir" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "A consulta contém um ou mais parâmetros de modelo malformados." -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Seleção em bloco" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" +"Verifique a sua consulta e confirme se todos os parâmetros do modelo " +"estão entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , " +"tente executar sua consulta novamente." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Gráfico de marcadores" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "Negócios" - -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" -msgstr "Tipo de dados comerciais" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." -msgstr "" -"Por padrão, cada filtro carrega, no máximo, 1000 opções no carregamento " -"inicial da página. Marque esta caixa se tiver mais de 1000 valores de " -"filtro e pretenda ativar a pesquisa dinâmica que carrega os valores de " -"filtro à medida que os usuários escrevem (pode aumentar o stress da sua " -"base de dados)." - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "Por chave: utilizar os nomes das colunas como chave de ordenação" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "O nome do rótulo é inválido (não pode conter ':')" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" -msgstr "Por chave: utilizar nomes de linhas como chave de ordenação" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "Não foi possível encontrar o banco de dados" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" -msgstr "Por valor: utilizar valores métricos como chave de ordenação" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "Configurar intervalo de tempo personalizado" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "CANCELAR" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" +msgstr "O executor da tarefa agendada não foi encontrado" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -msgid "CREATE DATASET" -msgstr "CREATE DATASET" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Contagem de registos" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "CREATE TABLE AS" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Não foram encontrados registos" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "CREATE VIEW AS" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Lista de filtros" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "Declaração CREATE VIEW" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Pesquisar" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" -msgstr "Cronograma do CRON" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Atualizar" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "Expressão CRON" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Importar painéis" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Importar Painel(eis)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "Estilos CSS" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Arquivo" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "Modelos CSS" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Escolher Arquivo" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "CSS aplicado ao gráfico" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Carregar" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "Modelo CSS" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "Use o botão de edição para alterar esse campo" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "Modelo CSS não pôde ser deletado." +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Testar Conexão" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "Nome do modelo CSS" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "Tipo de cláusula sem suporte: %(clause)s" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "Modelo CSS não encontrado." +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "Objeto de métrica inválido: %(metric)s" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "Modelos CSS" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Não foi possível encontrar esse feriado: [%(holiday)s]" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" -msgstr "Upload de CSV" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" +msgstr "" +"Coluna do banco de dados %(nome_da_coluna)s tem tipo desconhecido: " +"%(value_type)s" -#: superset/views/database/views.py:290 -#, fuzzy, python-format +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -"Arquivo CSV \"%(csv_filename)s \"carregado para tabela " -"\"%(table_name)s\"no banco de dados \"%(db_name)s\"" - -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "Configuração CSV para Banco de dados" +"os percentis devem ser uma lista ou tupla com dois valores numéricos, dos" +" quais o primeiro é menor que o segundo valor" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "Carregar CSV" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "CTAS & CVAS SCHEMA" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "`compare_type` deve ser `difference`, `percentage` ou `ratio`" -#: superset/sql_lab.py:432 +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -"O CTAS (criar tabela como select) só pode ser executado com uma consulta " -"em que a última instrução seja um SELECT. Certifique-se de que a sua " -"consulta tem um SELECT como última instrução. Depois, tente executar a " -"consulta novamente." +"A coluna \"%(column)s\" não é numérica ou não existe nos resultados da " +"consulta." -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "Esquema CTAS" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "`rename_columns` deve ter o mesmo comprimento que `columns`." -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." -msgstr "" -"O CVAS (create view as select) só pode ser executado com uma consulta com" -" uma única instrução SELECT. Certifique-se de que a sua consulta tem " -"apenas uma instrução SELECT. Em seguida, tente executar a consulta " -"novamente." +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Operador cumulativo inválido: %(operator)s" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "A consulta CVAS (create view as select) tem mais do que uma declaração." +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Cadeia de caracteres geohash inválida" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "A consulta CVAS (create view as select) não é uma instrução SELECT." +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Longitude/latitude inválida" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Tempo limite da cache" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Cadeia geodésica inválida" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Tempo limite da cache (seconds)" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "A operação de pivotagem requer em ao menos um índice" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Tempo limite da cache" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "A operação de pivotagem deve incluir pelo menos um agregado" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" -msgstr "Em cache" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "Pacote `prophet` não instalado" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Grão do tempo ausente" + +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "Cached %s" -msgstr "Cached %s" +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Grão de tempo não suportado: %(time_grain)s" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "Valor em cache não encontrado" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "Os períodos devem ser um número inteiro" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" -msgstr "Calcular a contribuição por série ou linha" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "Intervalo de confiança deve ser entre 0 e 1 (exclusivo)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "A coluna calculada [%s] requer uma expressão" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "DataFrame deve incluir uma coluna temporal" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Colunas calculadas" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "DataFrame inclui pelo menos uma série" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Tipo de cálculo" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" +msgstr "O rótulo já existe" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Mapa de calor do calendário" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" +msgstr "A operação de reamostragem requer DatetimeIndex" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "Não é possível mover a aba de nível superior para abas aninhadas" +#: superset/utils/pandas_postprocessing/resample.py:46 +#, fuzzy +msgid "Resample method should in " +msgstr "O método de reamostragem deve estar em" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" -msgstr "Pode selecionar vários valores" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Janela indefinida para operação de rolagem" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Não pode haver sobreposição entre séries e avarias" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "A janela deve ser > 0" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:136 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Cancelar" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "Inválido rolling_type: %(type)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" -msgstr "Cancelar consulta no evento de descarregamento da janela" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Opções inválidas para %(rolling_type)s: %(opções)s" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" -msgstr "Não foi possível acessar a consulta" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "As colunas referenciadas não estão disponíveis no DataFrame." -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "" -"Não é possível excluir um banco de dados que tenha conjuntos de dados " -"anexados" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "Coluna referenciado pelo agregado é indefinido: %(column)s" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" -msgstr "Não é possível ter múltiplas credenciais para o Túnel SSH" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Operador indefinido para o agregador: %(name)s" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/utils.py:172 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." -msgstr "" -"Não foi possível importar o painel: %(db_ error)s. \n" -"Não esqueça de criar o banco de dados antes de importar o painel." +msgid "Invalid numpy function: %(operator)s" +msgstr "Função numpy inválida: %(operator)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "Não é possível carregar o filtro" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Intervalo de tempo inesperado: %s" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Não é possível analisar a string de tempo [%(human_readable)s ]" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "json não é válido" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "Categórico" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Exportar para YAML" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" -msgstr "Cor categórica" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Exportar para YAML?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "Categorias para grupo por sobre o eixo x." +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Excluir" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:678 -msgid "Category" -msgstr "Categoria" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Realmente excluir tudo?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -msgid "Category Name" -msgstr "Nome da categoria" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "É favorito" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" -msgstr "Categoria e Porcentagem" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "É marcado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" -msgstr "Categoria e valor" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "A Fonte de dados parece ter sido excluída" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -msgid "Category name" -msgstr "Nome da categoria" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "O usuário parece ter sido excluído" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "Categoria dos nós de destino" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" +msgstr "Você não tem o direito de fazer o download como csv" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "Categoria, Valor e Porcentagem" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" +msgstr "Erro: estado do link permanente não encontrado" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "Preenchimento de célula" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +msgstr "Erro: %(msg)s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "Raio da Célula" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" +msgstr "Você não tem o direito de alterar esse gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" -msgstr "Tamanho da célula" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" +msgstr "Você não tem o direito de criar um gráfico" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" -msgstr "Barras celulares" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "Explorar - %(table)s" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "Conteúdo da célula" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Explorar" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" -msgstr "Limite de célula" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "O gráfico [{}] foi salvo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" -msgstr "Centro" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +msgstr "O gráfico [{}] foi substituído" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -#, fuzzy -msgid "Centroid (Longitude and Latitude): " -msgstr "Centroide (Longitude e Latitude):" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" +msgstr "Você não tem o direito de alterar esse painel de controle" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" -msgstr "Certificação" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "Gráfico [{}] foi adicionado ao painel [{}]" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:723 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" -msgstr "Detalhes de certificação" +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" +msgstr "Você não tem direitos para criar um painel" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" -msgstr "Certificado" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Painel [{}] acabou de ser criado e o gráfico [{}] foi adicionado a ele" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" -msgstr "Certificado Por" +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" +msgstr "" +"Pedido malformado. Os argumentos slice_id ou table_name e db_name são " +"esperados" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:337 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1222 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1230 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:714 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Certificado por" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Gráfico %(id)s não encontrado" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/views/core.py:739 #, python-format -msgid "Certified by %s" -msgstr "Certificado por %s" +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "Tabela %(table)s não foi encontrada no banco de dados %(db)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." -msgstr "Mudar ordem das colunas." +#: superset/views/core.py:836 +msgid "permalink state not found" +msgstr "estado do permalink não encontrado" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "Mudar ordem das linhas." +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Mostral modelo CSS" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Alterado por" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Adicionar modelo CSS" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Alterado em" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Editar modelo CSS" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "Alterações salvas." +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Nome do Modelo" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Um nome amigável ao ser humano" + +#: superset/views/dynamic_plugins.py:48 msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -"Alterar o conjunto de dados pode quebrar o gráfico se o gráfico depender " -"de colunas ou metadados que não existem no conjunto de dados de destino" +"Usado internamente para identificar o plug-in. Deve ser definido com o " +"nome do pacote do package.json do plugin" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/views/dynamic_plugins.py:52 msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -"A alteração destas definições afectará todos os gráficos que utilizem " -"este conjunto de dados, incluindo os gráficos pertencentes a outras " -"pessoas." +"Um URL completo apontando para o localização do plug-in construído " +"(poderia ser hospedado em um CDN, por exemplo)" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "É proibido alterar este painel" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Plugins personalizados" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "É proibido alterar este gráfico" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Plugin personalizado" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "A alteração deste controle tem efeito imediato" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Adicionar um Plugin" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "É proibido alterar este conjunto de dados" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Editar Plugin" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -#, fuzzy -msgid "Changing this dataset is forbidden." -msgstr "É proibido alterar este conjunto de dados" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "O conjunto de dados associado a este gráfico já não existe" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" -msgstr "É proibido alterar essa fonte de dados" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Não foi possível determinar o tipo de fonte de dados" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "É proibido alterar este relatório" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Não foi possível encontrar o objeto viz" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" -msgstr "Caractere a ser interpretado como ponto decimal" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Mostrar Gráfico" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "Caractere para interpretar como ponto decimal." +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Adicionar gráfico" + +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Editar gráfico" + +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." +msgstr "" +"Esses parâmetros são gerados dinamicamente quando se clica no botão " +"salvar ou sobrescrever na exibição de exploração. Esse objeto JSON é " +"exposto aqui para referência e para usuários avançados que queiram " +"alterar parâmetros específicos." + +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" +"Duração (em segundos) do tempo limite de armazenamento em cache para este" +" gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela " +"se não for definido." + +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Criador" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Fonte de dados" + +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Última modificação" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parâmetros" #: 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/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 #: superset-frontend/src/features/home/ChartTable.tsx:191 -#: superset-frontend/src/features/home/RightMenu.tsx:219 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 +#: superset-frontend/src/features/home/RightMenu.tsx:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 #: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Gráfico" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" -msgstr "Gráfico %(id)s não encontrado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Nome" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Tempo limite da cache do gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Tipo de visualização" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, python-format -msgid "Chart Data: %s" -msgstr "Dados do gráfico: %s" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Mostrar Painel" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "ID do gráfico" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Adicionar painel" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:31 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" -msgstr "Opções do gráfico" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Editar Painel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" -msgstr "Orientação do gráfico" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" +msgstr "" +"Esse objeto json descreve o posicionamento dos widgets no painel. Ele é " +"gerado dinamicamente ao ajustar o tamanho e as posições dos widgets " +"usando arrastar e soltar na exibição do painel" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Proprietário do gráfico: %s" -msgstr[1] "" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "" +"O CSS para painéis individuais pode ser alterado aqui ou na visão do " +"painel, onde as alterações são imediatamente visíveis" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -msgid "Chart Source" -msgstr "Fonte do gráfico" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Para obter um URL legível para seu painel" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" -msgstr "Título do gráfico" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "" +"Esse objeto JSON é gerado dinamicamente quando se clica no botão salvar " +"ou sobrescrever na exibição do painel. Ele é exposto aqui para referência" +" e para usuários avançados que podem querer alterar parâmetros " +"específicos." -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" -msgstr "O gráfico [%s] foi sobrescrito" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "Os proprietários são uma lista de usuários que podem alterar o painel." -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, python-format -msgid "Chart [%s] has been saved" -msgstr "O gráfico [%s] foi salvo" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "" +"As funções são uma lista que define o acesso ao painel. Se não forem " +"definidas funções, aplicam-se as permissões de acesso normais." -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "O gráfico [%s] foi adicionado ao painel [%s]" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "Determina se esse painel é visível ou não na lista de todos os painéis" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "O gráfico [{}] foi substituído" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Painel" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "O gráfico [{}] foi salvo" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Título" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" -msgstr "Gráfico [{}] foi adicionado ao painel [{}]" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Tempo limite da cache do gráfico" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Funções" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Alterações no gráfico" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Publicado" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 -msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" -msgstr "" -"Componente de gráfico que lhe permite adicionar uma UI de filtro " -"personalizada ao seu painel. Quando adicionada ao painel, uma caixa de " -"filtro permite que os utilizadores especifiquem valores ou intervalos " -"específicos para filtrar os gráficos. Os gráficos aos quais cada caixa de" -" filtro é aplicada também podem ser ajustados na exibição do painel.\n" -"\n" -" Observe que este plug-in está sendo substituído pelo novo recurso " -"Filtros que fica na própria exibição do painel. É mais fácil de usar e " -"tem mais recursos!" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Posição JSON" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Não foi possível criar o gráfico." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "Não foi possível remover o gráfico." +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "Metadados JSON" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "Não foi possível atualizar o gráfico." +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Exportar" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "O gráfico não existe" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Exportar paineis?" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "" -"O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico " -"novamente." +#: superset/views/database/forms.py:109 +msgid "CSV Upload" +msgstr "Upload de CSV" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" -msgstr "Altura do gráfico" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "Selecione um arquivo a ser carregado no banco de dados" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" -msgstr "Gráfico importado" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "" +"Só as seguintes extensões de arquivo são permitidas: " +"%(allowed_extensions)s" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -msgid "Chart last modified" -msgstr "Última modificação do gráfico" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" +msgstr "Nome da tabela a ser criada com o arquivo CSV" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -msgid "Chart last modified by" -msgstr "Gráfico modificado pela última vez por" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "O nome da tabela não pode conter um esquema" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Nome do gráfico" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "Selecione um banco de dados para enviar o arquivo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" -msgstr "Opções do gráfico" +#: superset/views/database/forms.py:145 +#, fuzzy +msgid "Column Data Types" +msgstr "Tipo de dados avançado" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -msgid "Chart owners" -msgstr "Proprietários do gráfico" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Os parâmetros do gráfico são inválidos." +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "Selecione um esquema se o banco de dados for compatível com isso" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" -msgstr "Propriedades do gráfico atualizadas" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Delimitador" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -msgid "Chart title" -msgstr "Título do gráfico" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" +msgstr "Insira um delimitador para esses dados" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Tipo de gráfico" +#: superset/views/database/forms.py:164 +msgid "," +msgstr "," -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "O tipo de gráfico requer um conjunto de dados" +#: superset/views/database/forms.py:165 +msgid "." +msgstr "." -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" -msgstr "Largura do gráfico" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "Outro" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Gráficos" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" +msgstr "Se a tabela já existir" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Não foi possível remover o gráfico." +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" +msgstr "O que deve acontecer se a tabela já existir" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "Verificar a configuração" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Falha" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Verificar se a ordenação é crescente" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Substituir" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" -msgstr "" -"Verificar se o gráfico de rosáceas deve utilizar a área do segmento em " -"vez do raio do segmento para o cálculo das proporções" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Anexar" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Veja este gráfico no painel:" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Pular espaço inicial" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -#, fuzzy -msgid "Check out this chart: " -msgstr "Dê uma olhada neste gráfico:" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" +msgstr "Ignorar espaços após o delimitador" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -#, fuzzy -msgid "Check out this dashboard: " -msgstr "Confira este painel:" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Pular Linhas em branco" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -"Marque para aplicar filtros instantaneamente à medida que são alterados, " -"em vez de apresentar o botão [Aplicar]" +"Ignorar linhas em branco em vez de interpretá-las como valores não " +"numéricos" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" -msgstr "Marcar para forçar as partições de data a terem a mesma altura" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" +msgstr "Colunas a serem analisadas como datas" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "Marcar para incluir o menu suspenso da coluna de tempo" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" +msgstr "" +"Uma lista separada por vírgulas de colunas que devem ser analisadas como " +"datas" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "Marque para incluir o menu suspenso de grãos de tempo" +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" -msgstr "Posição do rótulo filho" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "Escolha do [Rótulo] deve estar em [Agrupar por]" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Caractere decimal" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "A escolha de [Raio do ponto] deve estar presente em [Agrupar por]" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" +msgstr "Caractere a ser interpretado como ponto decimal" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Escolher Arquivo" +#: superset/views/database/forms.py:212 +msgid "Null Values" +msgstr "Valores nulos" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Escolha um gráfico ou painel, não ambos" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"Lista Json dos valores que devem ser tratados como nulos. Exemplos: " +"[\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", " +"\"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." -msgstr "Escolha um banco de dados..." +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Coluna de índice" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Escolha um conjunto de dados" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" +"Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se" +" não houver coluna de índice" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:69 -msgid "Choose a metric for left axis" -msgstr "Escolha uma métrica para o eixo esquerdo" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Índice do dataframe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Escolha uma métrica para o eixo direito" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "Escreve o índice do dataframe como uma coluna" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" -msgstr "Escolha um formato de número" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Rótulo(s) da coluna" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" -msgstr "Escolha uma fonte" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" +"Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for " +"fornecido e Dataframe Index (Índice de quadro de dados) for verificado, " +"os nomes de índice serão usados" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" -msgstr "Escolha uma fonte e um alvo" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" +msgstr "Colunas a serem lidas" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" -msgstr "Escolha um alvo" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" +msgstr "Lista Json dos nomes das colunas que devem ser lidas" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" -msgstr "Escolha o tipo de gráfico" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" +msgstr "Substituir colunas duplicadas" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." -msgstr "Escolha um dos bancos de dados disponíveis no painel na esquerda." +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" +msgstr "" +"Se as colunas duplicadas não forem substituídas, elas serão apresentadas " +"como \"X.1, X.2 ...X.x\"" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:100 -msgid "Choose one or more charts for left axis" -msgstr "Escolha um ou mais gráficos para o eixo esquerdo" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Linha do Cabeçalho" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:135 -msgid "Choose one or more charts for right axis" -msgstr "Escolha um ou mais gráficos para o eixo direito" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" +msgstr "" +"Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a" +" primeira linha de dados). Deixe em branco se não houver linha de " +"cabeçalho" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "Escolha o tipo da camada de anotação" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Linhas para Leitura" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" -msgstr "Escolha o formato dos valores de legenda" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" +msgstr "Número de linhas do arquivo a ser lido" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" -msgstr "Choose the position of the legend" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Pular Linhas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" -msgstr "Choose the source of your annotations" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "Número de linhas a serem ignoradas no início do arquivo" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" -"Escolha se um país deve ser sombreado pela métrica ou se lhe deve ser " -"atribuída uma cor com base numa paleta de cores categóricas" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Nome da tabela a ser criada a partir dos dados do Excel." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "Diagrama de acordes" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Arquivo Excel" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "Coluna não-numérica escolhida" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Selecione um arquivo do Excel para ser carregado para um banco de dados." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" -msgstr "Círculo" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Nome da planilha" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "Círculo -> Seta" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "" +"Cadeias de caracteres usadas para nomes de planilhas (o padrão é a " +"primeira planilha)." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" -msgstr "Círculo -> Círculo" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Especificar um esquema (se o variante do banco de dados o suportar)." -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" -msgstr "Forma de radar circular" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "A Tabela existe" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" -msgstr "Circular" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." +msgstr "" +"Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer " +"nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." -msgstr "Gráfico clássico que visualiza como as métricas mudam ao longo do tempo." +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." +msgstr "" +"Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a " +"primeira linha de dados). Deixar em branco se não existir uma linha de " +"cabeçalho." -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/views/database/forms.py:353 msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -"Visão clássica de um conjunto de dados numa planilha de cálculo, linha a " -"coluna. Utilize tabelas para apresentar uma visão dos dados subjacentes " -"ou para mostrar métricas agregadas." +"Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se" +" não houver coluna de índice." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "Cláusula" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Número de linhas para pular no início do arquivo." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Limpar" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Número de linhas do arquivo a ser lido." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "Limpar todos" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Analisar datas" -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" -msgstr "Limpar todos os dados" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." +msgstr "" +"Uma lista separada por vírgulas de colunas que devem ser analisadas como " +"datas." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" -msgstr "Limpar formulário" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Caractere para interpretar como ponto decimal." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -#, fuzzy -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" -msgstr "Clique no botão\"+Add/Edit Filters\"para criar novos filtros de painel" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Escreve o índice do dataframe como uma coluna." -#: superset-frontend/src/components/Chart/Chart.jsx:286 -#, fuzzy +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -"Clique no botão\"Create chart\" no painel de controle à esquerda para " -"pré-visualizar uma visualização ou" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "Clique no cadeado para fazer alterações." +"Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e " +"Dataframe Index for True, são utilizados os nomes de índice." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "Clique no cadeado para evitar avançar mudanças." +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Valores nulos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 +#: superset/views/database/forms.py:401 msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -"Clique neste link para mudar para um formulário alternativa que permite " -"você inserir manualmente o URL do SQLAlchemy para esse banco de dados." +"Lista Json dos valores que devem ser tratados como nulos. Exemplos: " +"[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados " +"Hive suporta apenas um único valor. Utilize [\"\"] para uma cadeia de " +"caracteres vazia." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "" -"Clique neste link para mudar para um formulário alternativo que expõe " -"apenas os campos obrigatórios necessários para conectar esse banco de " -"dados." +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "Nome da tabela a ser criada a partir de dados colunares." -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "Clique para cancelar a ordenação" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "Arquivo colunar" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Clique para editar" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "Selecione um arquivo colunar a ser carregado em um banco de dados." -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." -msgstr "Clique para editar %s." +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "Usar colunas" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." -msgstr "Clique para editar o gráfico." +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." +msgstr "" +"Lista Json dos nomes das colunas que devem ser lidas. Se não for None, " +"apenas estas colunas serão lidas do ficheiro." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "Clique para editar o rótulo" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Banco de dados" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Clique para favoritar/não favoritar" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Mostrar Banco de dados" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Clique para forçar a atualização" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Adicionar Banco de dados" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Clique para ver diferença" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Editar Banco de Dados" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Click to sort ascending" -msgstr "Clique para classificar em ordem crescente" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Expor este banco de dados no SQL Lab" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" -msgstr "Clique para classificar em ordem decrescente" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." +msgstr "" +"Operar o banco de dados em modo assíncrono, o que significa que as " +"consultas são executadas em workers remotos e não no próprio servidor " +"Web. Isso pressupõe que você tenha uma configuração do Celery worker, bem" +" como um backend de resultados. Consulte os documentos de instalação para" +" obter mais informações." -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "Fechar" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Fechar todas as outras abas" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Permitir a opção CREATE VIEW AS no SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Fechar aba" +#: superset/views/database/mixins.py:114 +#, fuzzy +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "" +"Permitir que usuários executem instruções não SELECT (UPDATE, DELETE, " +"CREATE,...) no SQL Lab" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" -msgstr "Agregador de rótulo de cluster" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" +msgstr "" +"Ao permitir a opção CREATE TABLE AS no SQL Lab, essa opção força a " +"criação da tabela nesse esquema" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "Raio de agrupamento" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Se Presto, todas as consultas no SQL Lab serão executadas como o usuário " +"atualmente conectado, que deve ter permissão para executá-las.
Se " +"Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão " +"executadas como conta de serviço, mas personificarão o usuário atualmente" +" conectado por meio da propriedade hive.server2.proxy.user." -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Código" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "" +"Duração (em segundos) do tempo limite de armazenamento em cache para os " +"gráficos desse banco de dados. Um tempo limite de 0 indica que a cache " +"nunca expira. Observe que o padrão é o tempo limite global se não for " +"definido." -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Recolher tudo" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "" +"Se selecionado, defina os esquemas permitidos para o carregamento de csv " +"no Extra." -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" -msgstr "Recolher painel de dados" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Expor no SQL Lab" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" -msgstr "Recolher linha" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Permitir CREATE TABLE AS" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" -msgstr "Recolher o conteúdo da aba" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Permitir CREATE VIEW AS" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" -msgstr "Recolher a visualização da tabela" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Permitir DML" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Cor" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Esquema CTAS" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" -msgstr "Cor +/-" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "SQLAlchemy URI" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" -msgstr "Métrica de cores" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Tempo limite da cache do gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "Esquema de cores" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Segurança Extra" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" -msgstr "Etapas de cores" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Raiz do certificado" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" -msgstr "Limites de cor" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Execução Assíncrona" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" -msgstr "Cor por" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Representar o usuário com sessão iniciada" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Métrica de cor" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Permitir Csv Upload" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" -msgstr "Cor do local de destino" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Backend" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Esquema de cores" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Campo extra não pode ser decodificado por JSON. %(msg)s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 -#, fuzzy +#: superset/views/database/validators.py:40 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -"A cor será sombreada com base no valor normalizado (0% a 100%) de uma " -"determinada célula em relação às outras células no intervalo " -"seleccionado:" - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 -msgid "Colors" -msgstr "Cores" +"String de conexão inválida, uma string válida é normalmente a " +"seguinte:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Coluna" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "Configuração CSV para Banco de dados" -#: superset/utils/pandas_postprocessing/contribution.py:59 +#: superset/views/database/views.py:180 #, python-format msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -"A coluna \"%(column)s\" não é numérica ou não existe nos resultados da " -"consulta." - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" -msgstr "Configuração da coluna" - -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "Tipo de dados avançado" - -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" -msgstr "Formatação de colunas" - -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Rótulo(s) da coluna" +"O banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é " +"permitido para uploads de csv. Entre em contato com o administrador do " +"Superset." -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/database/views.py:277 +#, python-format msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -"Coluna contendo códigos ISO 3166-2 da região/província/departamento em " -"sua tabela." - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "Coluna contendo dados de latitude" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "Coluna contendo dados de longitude" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "Nome da coluna" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "Dica de ferramenta para o cabeçalho da coluna" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "A coluna é necessária" +"Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a " +"tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " +"erro: %(error_msg)s" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset/views/database/views.py:289 +#, fuzzy, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -"Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e " -"Dataframe Index for True, são utilizados os nomes de índice." +"Arquivo CSV \"%(csv_filename)s \"carregado para tabela " +"\"%(table_name)s\"no banco de dados \"%(db_name)s\"" + +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Configuração Excel para Banco de Dados" -#: superset/views/database/forms.py:233 +#: superset/views/database/views.py:319 +#, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -"Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for " -"fornecido e Dataframe Index (Índice de quadro de dados) for verificado, " -"os nomes de índice serão usados" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -msgid "Column name" -msgstr "Nome da coluna" +"Banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é " +"permitido para uploads do Excel. Entre em contato com o administrador do " +"Superset." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#: superset/views/database/views.py:412 #, python-format -msgid "Column name [%s] is duplicated" -msgstr "Nome da coluna [%s] está duplicado" +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Não foi possível fazer upload do arquivo do Excel \"%(filename)s\" para a" +" tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de" +" erro: %(error_msg)s" -#: superset/utils/pandas_postprocessing/utils.py:151 +#: superset/views/database/views.py:424 #, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "Coluna referenciado pelo agregado é indefinido: %(column)s" +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Arquivo do Excel \"%(excel_filename)s\" carregado na tabela " +"\"%(table_name)s\" no banco de dados \"%(db_name)s\"" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" -msgstr "Seleção de coluna" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "Configuração de colunar para banco de dados" -#: superset/views/database/forms.py:221 +#: superset/views/database/views.py:466 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -"Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se" -" não houver coluna de índice" +"Não são permitidas várias extensões de ficheiros para upload em colunas. " +"Certifique-se de que todos os ficheiros têm a mesma extensão." -#: superset/views/database/forms.py:352 +#: superset/views/database/views.py:479 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -"Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se" -" não houver coluna de índice." +"O banco de dados \"%(database_name)s\" schema \"%(schema_name)s\" não é " +"permitido para uploads de colunas. Entre em contato com o administrador " +"do Superset." -#: superset/views/database/forms.py:424 -msgid "Columnar File" -msgstr "Arquivo colunar" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" +"Não foi possível fazer upload do arquivo colunar \"%(filename)s\" para a " +"tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " +"erro: %(error_msg)s" -#: superset/views/database/views.py:568 +#: superset/views/database/views.py:566 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4212,12293 +4203,12248 @@ msgstr "" "Arquivo colunar \"%(columnar_filename)s\" carregado para a tabela " "\"%(table_name)s\" no banco de dados \"%(db_name)s\"" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" -msgstr "Configuração de colunar para banco de dados" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "Pedido com campo de dados ausente." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Colunas" - -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" -msgstr "Colunas a serem analisadas como datas" - -#: superset/views/database/forms.py:241 -msgid "Columns To Read" -msgstr "Colunas a serem lidas" - -#: superset/common/query_context_processor.py:132 +#: superset/views/datasource/views.py:112 #, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "Faltam colunas no conjunto de dados: %(invalid_columns)s" +msgid "Duplicate column name(s): %(columns)s" +msgstr "Nome(s) de coluna duplicado(s): %(columns)s" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "Colunas ausente na fonte de dados: %(invalid_columns)s" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Logs" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" -msgstr "Posição do subtotal das colunas" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Mostrar log" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "Colunas para calcular a distribuição entre." +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Adicionar Log" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" -msgstr "Colunas a serem exibidas" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Editar log" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" -msgstr "Colunas para agrupar por" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Usuário" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "Colunas para agrupar nas colunas" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Ação" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "Colunas para agrupar nas linhas" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" -msgstr "Colunas a serem exibidas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" -msgstr "Combinar Métricas" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" +msgstr "Consulta sem título" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." -msgstr "" -"Escolhas de cores separadas por vírgulas para os intervalos, por exemplo," -" 1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e" -" são indexados a 1. O comprimento deve corresponder ao dos limites do " -"intervalo." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "Intervalo de tempo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." -msgstr "" -"Limites de intervalos separados por vírgulas, por exemplo, 2,4,5 para " -"intervalos 0-2, 2-4 e 4-5. O último número deve corresponder ao valor " -"fornecido para MAX." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" +msgstr "Coluna do tempo" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" -msgstr "Opção de comparador" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "Grão de tempo" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." -msgstr "" -"Compare rapidamente vários gráficos de séries temporais (como sparklines)" -" e métricas relacionadas." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "Granularidade de tempo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "Comparar a mesma métrica resumida em vários grupos." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Tempo" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." -msgstr "" -"Compara a forma como uma métrica muda ao longo do tempo entre diferentes " -"grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do " -"tempo é visualizada em comprimentos de barra e cores." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "Uma referência para a configuração [Time] , tomando granularidade em conta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." -msgstr "" -"Compara métricas de diferentes categorias usando barras. Os comprimentos " -"das barras são utilizados para indicar a magnitude de cada valor e a cor " -"é utilizada para diferenciar os grupos." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "Agregado" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." -msgstr "" -"Compara os períodos de tempo de diferentes atividades numa visão de linha" -" de tempo compartilhada." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "Registros Brutos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" -msgstr "Comparação" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +msgid "Category name" +msgstr "Nome da categoria" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" -msgstr "Lag do Período de comparação" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +msgid "Total value" +msgstr "Valor total" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" -msgstr "Sufixo de comparação" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" +msgstr "Valor mínimo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." -msgstr "Compor várias camadas para formar imagens complexas." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" +msgstr "Valor máximo" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Calcular a contribuição para o total" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" +msgstr "Valor médio" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Condition" -msgstr "Condição" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "Certificado por %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "Formatação condicional" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "descrição" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" -msgstr "Formatação condicional" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "parafuso" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" -msgstr "Intervalo de confiança" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "A alteração deste controle tem efeito imediato" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "Intervalo de confiança deve ser entre 0 e 1 (exclusivo)" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "Mostrar dica de ferramentas de informação" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Configuração" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "Expressão SQL" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Configure Advanced Time Range " -msgstr "Configurar intervalo de tempo avançado" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Configurar Intervalo de Tempo: Último..." +msgid "Column datatype" +msgstr "Nome da coluna" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Configurar Intervalo de Tempo: Anterior..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" +msgstr "Nome da coluna" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Configurar intervalo de tempo personalizado" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Rótulo" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Configurar os âmbitos de filtragem" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" +msgstr "Nome da métrica" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "Configurar o fundamentos da sua camada de anotação." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" +msgstr "ícone de tipo desconhecido" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." -msgstr "Configurar este painel para incorporá-lo em um aplicativo web externo." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "ícone de tipo de função" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "Configure a forma como a sobreposição é apresentada aqui." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "ícone do tipo string" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" -msgstr "Confirmar a substituição" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "ícone de tipo numérico" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "Confirmar salvar" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "ícone do tipo booleano" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "Conectar" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "ícone de tipo temporal" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" -msgstr "Conectar Planilha Google" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Analytics avançado" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "Conectar Planilhas Google como tabelas para esse banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"Esta seção contém opções que permitem o pós-processamento analítico " +"avançado dos resultados da consulta" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" -msgstr "Conectar um banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Janela de rolagem" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" -msgstr "Conectar o banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Função de rolagem" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" -msgstr "Em vez disso, conecte esse banco de dados utilizando o formulário dinâmico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Nenhum" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "Em vez disso, conecte esse banco de dados com uma cadeia de URI SQLAlchemy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" +msgstr "" +"Define uma função de janela móvel a aplicar, funciona em conjunto com a " +"caixa de texto [Períodos]" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Conexão" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Períodos" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "Falha na conexão, por favor verificar suas configurações de conexão" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "" +"Define o tamanho da função de janela móvel, relativamente à granularidade" +" temporal selecionada" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" -msgstr "A conexão parece boa !" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Períodos mínimos" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" -msgstr "Continuar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" +msgstr "" +"O número mínimo de períodos de rolagem necessários para mostrar um valor." +" Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira " +"que seu \"Min Period\" seja 7, de modo que todos os pontos de dados " +"mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que " +"ocorre nos primeiros 7 períodos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" -msgstr "Contínuo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Comparação de tempo" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Contribuição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Mudança de horário" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" -msgstr "Modo de contribuição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "1 dia atrás" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" -msgstr "Controle" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "1 semana atrás" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -#, fuzzy -msgid "Control labeled " -msgstr "Controle rotulado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "28 dias atrás" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 #, fuzzy -msgid "Controls labeled " -msgstr "Controles rotulados" +msgid "30 days ago" +msgstr "28 dias atrás" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" -msgstr "Coordenadas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "52 semanas atrás" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "Copiado para a área de transferência!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "1 ano atrás" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" -msgstr "Copiar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "104 semanas atrás" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "Copiar instrução SELECT para a área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "2 anos atrás" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "Copiar e cole as credenciais JSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "156 semanas atrás" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "Copie e cole todo o ficheiro service account.json aqui" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "3 anos atrás" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "Copiar link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Sobrepor um ou mais séries temporais de um período de tempo relativo. " +"Espera deltas de tempo relativo em linguagem natural (exemplo: 24 horas, " +"7 dias , 52 semanas , 365 dias). Livre texto é suportado." -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "Copiar mensagem" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Tipo de cálculo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Copiar de %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" +msgstr "Valores reais" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Copiar consulta de partição para a área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" +msgstr "Diferença" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" -msgstr "Copiar permalink para a área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" +msgstr "Variação percentual" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Copiar URL da consulta" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" +msgstr "Proporção" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Copiar link de consulta para sua área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." -msgstr "Copie o nome da conta do banco de dados à qual se está tentando conectar." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "Reamostragem" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "Copiar o nome do caminho HTTP de seu cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Regra" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." -msgstr "Copiar o nome do banco de dados que você está tentando se conectar." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "frequência de 1 minuto" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" -msgstr "Copiar para Área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" +msgstr "frequência de 1 hora" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Copiar para área de transferência" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "1 dia de calendário de frequência" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" -msgstr "Correlação" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "Frequência de 7 dias de calendário" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Estimativa de custo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "Frequência de início de 1 mês" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "1 mês de frequência final" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "Não foi possível determinar o tipo de fonte de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" +msgstr "Frequência de início de 1 ano" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Não foi possível obter todos os gráficos salvos" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" +msgstr "Frequência de final de 1 ano" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "Não foi possível encontrar o objeto viz" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Regra de reamostragem do Pandas" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Não foi possível carregar o driver do banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "Método de preenchimento" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "Não foi possível carregar o driver do banco de dados: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" +msgstr "Imputação nula" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Não foi possível carregar o driver de banco de dados: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" +msgstr "Imputação zero" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "Interpolação linear" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" -msgstr "Contar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" +msgstr "Valores futuros" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" -msgstr "Contar valores únicos" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" +msgstr "Valores retroativos" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" -msgstr "Contar como fração de Colunas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" +msgstr "Valores médios" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" -msgstr "Contar como fração de Linhas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" +msgstr "Valores médios" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" -msgstr "Contar como fração do Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" +msgstr "Valores da soma" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" -msgstr "País" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Métodos de reamostragem do Pandas" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" -msgstr "Esquema de cores do país" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "Anotações e camadas" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" -msgstr "Coluna do país" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" +msgstr "Esquerda" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" -msgstr "Tipo de campo País" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" +msgstr "Topo" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Mapa do País" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "Título do gráfico" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "Criar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "Eixo X" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" -msgstr "Criar gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "Título do Eixo X" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -msgid "Create a dataset" -msgstr "Criar um conjunto de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "MARGEM INFERIOR DO TÍTULO DO EIXO X" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." -msgstr "" -"Criar um conjunto de dados para começar a visualizar seus dados como um " -"gráfico ou vá para\n" -" SQL Lab para consultar seus dados." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Eixo Y" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Criar um novo gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "Título do Eixo Y" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" -msgstr "Criar gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" -msgstr "Criar gráfico com conjunto de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +#, fuzzy +msgid "Y Axis Title Position" +msgstr "Posição do subtotal das linhas" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -msgid "Create dataset" -msgstr "Criar conjunto de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Consulta" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" -msgstr "Criar conjunto de dados e criar gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "Análise preditiva" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Criar novo gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "Habilitar previsão" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "Criar novo conjunto de filtros" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "Habilitar previsão" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "Criar ou selecionar esquema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "Períodos de previsão" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Criado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "Quantos períodos no futuro queremos prever" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Criado em" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "Intervalo de confiança" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Criado por" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "Largura do intervalo de confiança. Deve estar entre 0 e 1" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" -msgstr "Criado por mim" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "Sazonalidade anual" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Conteúdo criado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" +msgstr "padrão" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Criado em" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Sim" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "A criação do túnel SSH falhou por um motivo desconhecido" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Não" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Criando uma fonte de dados e criando uma nova guia" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Deve ser aplicada a sazonalidade anual. Um valor inteiro especificará a " +"ordem de Fourier da sazonalidade." -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Criador" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -msgid "Crimson" -msgstr "Carmesim" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "Sazonalidade semanal" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -"Filtro cruzado vai ser aplicado para todos os gráficos que utilizam esse " -"conjunto de dados." +"Deve ser aplicada a sazonalidade semanal. Um valor inteiro especificará a" +" ordem de Fourier da sazonalidade." -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "A filtragem cruzada não está ativada para esse painel." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "Sazonalidade diária" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "A filtragem cruzada não está ativada para esse painel." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Deve ser aplicada a sazonalidade diária. Um valor inteiro especificará a " +"ordem de Fourier da sazonalidade." -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "Habilitar filtragem cruzada" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Atributos de formulário relacionados ao tempo" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -msgid "Cross-filters" -msgstr "Filtros cruzados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" +msgstr "Fonte de dados e tipo de gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" -msgstr "Acumulado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "ID do gráfico" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" -msgstr "Atualmente renderizado: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "O id do gráfico ativo" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" -msgstr "Personalizado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Tempo limite da cache (seconds)" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Plugin personalizado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "O número de segundos antes da expiração da cache" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Plugins personalizados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "Parâmetros de URL" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "SQL personalizado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Parâmetros de url extras para uso em consultas de modelo Jinja" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" -msgstr "" -"As métricas ad-hoc de SQL personalizado não estão ativadas para este " -"conjunto de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "Parâmetros extra" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "Os campos SQL personalizados não podem conter subconsultas." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" +msgstr "" +"Parâmetros extras que qualquer plug-in pode escolher definir para uso em " +"consultas modeladas Jinja" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "Plugin de filtro de tempo personalizado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "Esquema de cores" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "Personalizar" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "Modo de contribuição" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" -msgstr "Personalizar métricas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Linha" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" -msgstr "Personalizar colunas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Série" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" -msgstr "Detectada dependência cíclica" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "Calcular a contribuição por série ou linha" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "Formato D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "Classificação do Eixo Y Por" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "Formato D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "Classificação do Eixo X Por" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "formato D3 sintaxe: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "Decide por qual coluna ordenar o eixo base." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" -msgstr "" -"Formato de número D3 para números entre -1,0 e 1,0, útil quando se " -"pretende ter dígitos significativos diferentes para números pequenos e " -"grandes" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" +msgstr "Classificação do eixo Y em ordem crescente" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" -msgstr "Formato de hora D3 para colunas datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" +msgstr "Classificação do eixo X em ordem crescente" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "Formato de hora D3 sintaxe: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Se a classificação deve ser ascendente ou descendente no eixo base." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -msgid "DATETIME" -msgstr "DATA" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Categoria de origem" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -"Coluna do banco de dados %(nome_da_coluna)s tem tipo desconhecido: " -"%(value_type)s" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "DEZ" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "APAGAR" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +#, fuzzy +msgid "Decides which measure to sort the base axis by." +msgstr "Decide por qual coluna ordenar o eixo base." -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" +msgstr "Dimensões" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "Sazonalidade diária" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" -msgstr "Escuro" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +#, fuzzy +msgid "Add dataset columns here to group the pivot table columns." +msgstr "Colunas para agrupar nas colunas" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" -msgstr "Escuro Ciano" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" +msgstr "Dimensão" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" -msgstr "Modo escuro" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." +msgstr "" +"Define o agrupamento de entidades. Cada série é mostrado como uma cor " +"específica no gráfico e tem uma legenda alternar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 -#: superset-frontend/src/features/home/DashboardTable.tsx:194 -#: superset-frontend/src/features/home/RightMenu.tsx:228 -#: superset-frontend/src/pages/DashboardList/index.tsx:672 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Painel" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Entidade" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a ele" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Isso define o elemento a ser plotado no gráfico" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Painel [{}] acabou de ser criado e o gráfico [{}] foi adicionado a ele" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filtros" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "Não foi possível criar o painel." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "Não foi possível remover o painel." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "Não foi possível atualizar o painel." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "Métrica do eixo direito" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "Painel não existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +#, fuzzy +msgid "Select a metric to display on the right axis" +msgstr "Escolha uma métrica para o eixo direito" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -msgid "Dashboard imported" -msgstr "Painel importado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Ordenar por" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Os parâmetros do painel são inválidos." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +#, fuzzy +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" +"Métrica utilizada para definir a forma como as séries de topo são " +"ordenadas se estiver presente um limite de série ou de linha. Se não for " +"definida, reverte para a primeira métrica (quando apropriado)." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 -msgid "Dashboard properties" -msgstr "Propriedades do painel" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "Tamanho da bolha" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 -msgid "Dashboard properties updated" -msgstr "Propriedades do painel atualizadas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "Métrica utilizada para calcular o tamanho da bolha" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" -msgstr "Esquema do painel" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "Métrica de cores" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Uma métrica para cor" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" -"Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais" -" definidas na \n" -" seção de filtros de cada gráfico. Adicione colunas temporais aos filtros" -" \n" -" do gráfico para que esse filtro do painel afete esses gráficos." +"A coluna de tempo para a visualização. Observe que você pode definir uma " +"expressão arbitrária que retorne uma coluna DATETIME na tabela. Observe " +"também que o filtro abaixo é aplicado a essa coluna ou expressão" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -msgid "Dashboard title" -msgstr "Título do painel" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "Colocar uma coluna temporal aqui ou clique" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -msgid "Dashboard usage" -msgstr "Uso do painel" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "Eixo Y" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Painéis" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "Dimensão para usar no eixo y." -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -msgid "Dashboards added to" -msgstr "Painéis adicionados a" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "Eixo X" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "Não foi possível apagar os painéis." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "Dimensão para usar no eixo x." -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Os painéis não existem" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "O tipo de visualização para exibir" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -msgid "Dashed" -msgstr "Traço" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "Cor Fixa" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "Use isso para definir uma cor estática para todos os círculos" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" -msgstr "Tabela de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "Esquema de Cores Linear" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." -msgstr "URI de dados não são permitidos." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "todos" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" -msgstr "Zoom de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" +msgstr "5 segundos" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." -msgstr "" -"Os dados não puderam ser desserializados do backend de resultados. O " -"formato de armazenamento pode ter mudado, tornando os dados antigos. É " -"necessário executar novamente a consulta original." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 segundos" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." -msgstr "" -"Os dados não puderam ser recuperados do backend de resultados. Você " -"precisa executar novamente a consulta original." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 minuto" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" -msgstr "Os dados não têm intervalos de tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 minutos" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Pré-visualização de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 minutos" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" -msgstr "Dados atualizados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 hora" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Tipo de dado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" +msgstr "1 dia" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "DataFrame inclui pelo menos uma série" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" +msgstr "7 dias" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "DataFrame deve incluir uma coluna temporal" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "semana" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "Banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "semana que começa no domingo" -#: superset/views/database/views.py:481 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "semana que termina no sábado" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "mês" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" +msgstr "trimestre" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "ano" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -"O banco de dados \"%(database_name)s\" schema \"%(schema_name)s\" não é " -"permitido para uploads de colunas. Entre em contato com o administrador " -"do Superset." +"A granularidade de tempo para a visualização. Observe que você pode " +"digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou " +"`56 semanas`" -#: superset/views/database/views.py:180 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -"O banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é " -"permitido para uploads de csv. Entre em contato com o administrador do " -"Superset." -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -"Banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é " -"permitido para uploads do Excel. Entre em contato com o administrador do " -"Superset." - -#: superset/initialization/__init__.py:243 -msgid "Database Connections" -msgstr "Conexões de banco de dados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" -msgstr "Erro na criação do banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Limite de linhas" -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "URL do banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" -msgstr "Banco de dados conectado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "Ordenação decrescente" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "Não foi possível criar o banco de dados." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "Não foi possível remover o banco de dados." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Limite da série" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "Não foi possível atualizar o banco de dados." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" +"Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma" +" fase extra em que não há suporte para subconsultas) é aplicada para " +"limitar o número de séries que são obtidas e renderizadas. Esse recurso é" +" útil ao agrupar por coluna(s) de alta cardinalidade, embora aumente a " +"complexidade e o custo da consulta." -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." -msgstr "Banco de dados não permite a manipulação de dados." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Formato do eixo Y" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "Banco de dados não existe" - -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "O banco de dados não é compatível com subconsultas" - -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 #, fuzzy -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " -msgstr "" -"O driver do banco de dados para importação talvez não esteja instalado. " -"Visite a página de documentação do Superset para obter instruções de " -"instalação:" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Erro no banco de dados" - -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." -msgstr "O banco de dados está off-line." +msgid "Currency format" +msgstr "Formato do valor" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "O banco de dados é necessário para os alertas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" +msgstr "Formato de hora" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Nome do banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "O esquema de cores para a renderização do gráfico" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "Banco de dados não pode ser alterado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" +msgstr "Truncar métrica" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "Banco de dados não encontrado." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "Se as métricas devem ser truncadas" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" -msgstr "Banco de dados não encontrado: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" +msgstr "Mostrar colunas vazias" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Os parâmetros do banco de dados são inválidos." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "formato D3 sintaxe: https://github.com/d3/d3-format" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" -msgstr "Senhas de banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +#, fuzzy +msgid "Only applies when \"Label Type\" is set to show values." +msgstr "" +"Só se aplica quando \"Label Type\" (Tipo de rótulo) está definido para " +"mostrar valores." -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "Porta do banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +#, fuzzy +msgid "Only applies when \"Label Type\" is not set to a percentage." +msgstr "" +"Só se aplica quando \"Label Type\" (Tipo de rótulo) não está definido " +"para uma porcentagem." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" -msgstr "Configurações do banco de dados atualizadas" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" +msgstr "Formatação adaptável" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Banco de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Valor original" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Índice do dataframe" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "Duração em ms (66000 => 1m 6s)" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:267 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Conjunto de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "Duração em ms (1,40008 => 1ms 400µs 80ns)" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "%(nome)s do conjunto de dados já existe" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "Formato de hora D3 sintaxe: https://github.com/d3/d3-time-format" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -msgid "Dataset Name" -msgstr "Nome do conjunto de dados" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "Ops! Ocorreu um erro!" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "Falha na exclusão da coluna do conjunto de dados." +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "Rastreamento de Pilha:" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "Coluna do conjunto de dados não encontrada." +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "" +"Não foram apresentados resultados para esta consulta. Se esperava que " +"fossem devolvidos resultados, certifique-se de que todos os filtros estão" +" corretamente configurados e que a fonte de dados contém dados para o " +"intervalo de tempo selecionado." -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "Não foi possível criar o conjunto de dados." +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" +msgstr "Sem resultados" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "Não foi possível remover o conjunto de dados." +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" +msgstr "ERRO" -#: superset/datasets/commands/exceptions.py:210 -msgid "Dataset could not be duplicated." -msgstr "Não foi possível duplicar o conjunto de dados." +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" +msgstr "Encontradas opções de orderby inválidas" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "Não foi possível atualizar o conjunto de dados." +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "espera-se que seja um inteiro" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Conjunto de dados não existe" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "espera-se que seja um número" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" -msgstr "Conjunto de dados importado" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +#, fuzzy +msgid "is expected to be a Mapbox URL" +msgstr "espera-se que seja um número" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "O conjunto de dados é necessário" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" +msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "Falha na exclusão da métrica do conjunto de dados." +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "não pode ser vazio" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "A métrica do conjunto de dados não foi encontrada." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "Domínio" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Nome do conjunto de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "hora" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "Os parâmetros para o conjunto de dados são inválidos." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "dia" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" -msgstr "Esquema do conjunto de dados inválido, causado por: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "A unidade de tempo usada para o agrupamento de blocos" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "Não foi possível eliminar o(s) conjunto(s) de dados em bloco." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "Subdomínio" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Conjuntos de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" +msgstr "min" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 -#, fuzzy +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -"Os conjuntos de dados podem ser criados a partir de tabelas de banco de " -"dados ou consultas SQL. Selecione uma tabela de banco de dados à esquerda" -" ou" +"A unidade de tempo para cada bloco. Deve ser uma unidade menor que " +"domain_granularity. Deve ser maior ou igual a Time Grain" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" -msgstr "Os conjuntos de dados não contêm uma coluna temporal" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "Opções do gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Fonte de dados" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "Tamanho da célula" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" -msgstr "Fonte de dados e tipo de gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "O tamanho da célula quadrada, em pixels" -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" -msgstr "A fonte de dados não existe" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "Preenchimento de célula" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "O tipo de fonte de dados é inválido" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "A distância entre células, em pixels" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "O tipo de fonte de dados é necessário quando datasource_id é fornecido" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "Raio da Célula" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" -msgstr "Formato de data e hora" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "O raio do pixel" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Filtro de data" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "Etapas de cores" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" -msgstr "Formato da data" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" -msgstr "String de formato de data" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Data/Hora" - -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Formato de data e hora" - -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "" -"A coluna Datetime não é fornecida como parte da configuração da tabela e " -"é exigida por este tipo de gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "A cor do número \"steps\"" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Formato de data e hora" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "Formato de hora" -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "Dia" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "Legenda" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "Dia (freq=D)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "Se a legenda deve ser exibida (alterna)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "Dias %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "Mostrar valores" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "O motor do banco de dados não retornou todas as colunas consultadas" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "Se deseja exibir os valores numéricos dentro das células" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" -msgstr "Desativar" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "Mostrar nomes de métricas" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "Dezembro" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "Se o nome da métrica deve ser exibido como um título" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "Decide por qual coluna ordenar o eixo base." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "Formato do número" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -#, fuzzy -msgid "Decides which measure to sort the base axis by." -msgstr "Decide por qual coluna ordenar o eixo base." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "Correlação" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "Caractere decimal" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." +msgstr "" +"Visualiza como uma métrica mudou ao longo do tempo usando uma escala de " +"cores e uma visualização de calendário. Os valores em cinza são usados " +"para indicar valores ausentes e o esquema de cores linear é usado para " +"codificar a magnitude do valor de cada dia." -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - Grade 3D" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "Negócios" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D HEX" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "Comparação" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - Arc" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "Intensidade" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" +msgstr "Padrão" -#: superset/viz.py:2848 -#, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "gráficos do deck.gl" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" +msgstr "Relatório" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - Camadas Múltiplas" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Tendência" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "Deck.gl - Caminhos" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "menos que {min} {name}" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - Polígono" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "entre {down} e {up} {name}" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - Gráfico de dispersão" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "mais de {max} {name}" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - Screen Grid" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "Classificar por métrica" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "" +"Se os resultados devem ser classificados pela métrica selecionada em " +"ordem decrescente." -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Endpoint padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" +msgstr "Formato numérico" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "URL padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" +msgstr "Escolha um formato de número" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "" -"URL padrão para o qual redirecionar quando acessar da página da lista de " -"conjuntos de dados" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Fonte" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "Valor padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" +msgstr "Escolha uma fonte" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" -msgstr "Data/hora padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" +msgstr "Alvo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" -msgstr "Latitude padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" +msgstr "Escolha um alvo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" -msgstr "Longitude padrão" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" +msgstr "Fluxo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -"Largura mínima predefinida da coluna em pixels; a largura real pode ser " -"superior a esta se as outras colunas não necessitarem de muito espaço" +"Mostra o fluxo ou a ligação entre categorias utilizando a espessura das " +"cordas. O valor e a espessura correspondente podem ser diferentes para " +"cada lado." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" -msgstr "O valor padrão é obrigatório" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "Relações entre canais comunitários" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" -"O valor padrão deve ser definido quando a opção \"Filter has default " -"value\" estiver marcada" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "Diagrama de acordes" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" -"O valor padrão deve ser definido quando a opção \"Filter value is " -"required\" estiver marcada" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" -msgstr "" -"O valor padrão é definido automaticamente quando a opção \"Select first " -"filter value by default\" (Selecionar o primeiro valor do filtro por " -"padrão) está marcada" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" -msgstr "" -"Definir uma função que receba a entrada e produza o conteúdo de uma dica " -"de ferramenta" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "" -"Definir uma função que devolve um URL para onde navegar quando o usuário " -"clicar" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." -msgstr "" -"Defina uma função javascript que receba a matriz de dados utilizada na " -"visualização e que deva devolver uma versão modificada dessa matriz. Esta" -" pode ser utilizada para alterar as propriedades dos dados, filtrar ou " -"enriquecer a matriz." - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "" -"Define uma função de janela móvel a aplicar, funciona em conjunto com a " -"caixa de texto [Períodos]" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "Define como cada série é decomposta" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "Define o tamanho do grid em pixels" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" -msgstr "" -"Define o agrupamento de entidades. Cada série é mostrado como uma cor " -"específica no gráfico e tem uma legenda alternar" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" -msgstr "" -"Define o tamanho da função de janela móvel, relativamente à granularidade" -" temporal selecionada" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "" -"Define se o etapa deve aparecer no o começo , meio ou fim entre dois " -"pontos de dados" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Excluir" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "Excluir %s?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Excluir anotação?" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Excluir Banco de Dados?" - -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "Excluir Conjunto de Dados?" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Excluir camada?" - -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Excluir consulta?" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" -msgstr "Excluir relatório?" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Excluir modelo?" - -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "Realmente excluir tudo?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Excluir anotação" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Excluir aba do painel?" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Excluir banco de dados" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" -msgstr "Excluir relatório de e-mail" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Excluir consulta" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Excluir modelo" - -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "Excluir este contêiner e salvar para remover essa mensagem." - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "excluir" - -#: superset/annotation_layers/annotations/api.py:504 -#, fuzzy, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "Anotação %(num)d excluída" -msgstr[1] "" - -#: superset/annotation_layers/api.py:355 -#, fuzzy, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "Camada de anotação %(num)d excluída" -msgstr[1] "" - -#: superset/charts/api.py:521 -#, fuzzy, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "Gráfico %(num)d excluído" -msgstr[1] "" - -#: superset/css_templates/api.py:139 -#, fuzzy, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "Modelo CSS %(num)d excluído" -msgstr[1] "" - -#: superset/dashboards/api.py:745 -#, fuzzy, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "Painel %(num)d excluído" -msgstr[1] "" - -#: superset/datasets/api.py:789 -#, fuzzy, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Conjunto de dados %(num)d excluído" -msgstr[1] "" - -#: superset/reports/api.py:502 -#, fuzzy, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "%(num)d cronograma de relatório excluído" -msgstr[1] "" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "Gráfico %(num)d excluído" -msgstr[1] "" - -#: superset/queries/saved_queries/api.py:222 -#, fuzzy, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "Excluída %(num)d consulta salva" -msgstr[1] "" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Excluído: %s" - -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Excluído: %s" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" -msgstr "" -"Excluindo uma guia irá remover todo o conteúdo dela. Você ainda pode " -"reverter isso com o" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "Coluna única delimitada long & lat" - -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "Delimitador" - -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "Método de entrega" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" -msgstr "Demografia" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" -msgstr "Densidade" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" -msgstr "Depende de" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" -msgstr "Depreciado" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Descrição" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "Descrição (esta pode ser vista na lista)" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" -msgstr "Colunas de descrição" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "Texto descritivo que aparece abaixo do seu Número Grande" - -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "Desmarcar tudo" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "Detalhes da certificação" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:43 -msgid "Determines how whiskers and outliers are calculated." -msgstr "Determina como whiskers e outliers são calculados." - -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "Determina se esse painel é visível ou não na lista de todos os painéis" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" -msgstr "Diamante" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Quis dizer:" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" -msgstr "Diferença" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" -msgstr "Cinza escuro" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" -msgstr "Dimensão" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." -msgstr "Dimensão para usar no eixo x." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." -msgstr "Dimensão para usar no eixo y." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" -msgstr "Dimensões" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "Estética" -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "Circular" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" -msgstr "Direcional" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" -msgstr "Desativar as consultas de pré-visualização de dados do SQL Lab" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." -msgstr "" -"Desativar a pré-visualização de dados ao obter metadados de tabelas no " -"SQL Lab. Útil para evitar problemas de desempenho do navegador quando se" -" utilizam bancos de dados com tabelas muito grandes." - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" -msgstr "Desativar incorporação?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" -msgstr "Desativado" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" -msgstr "Descartar" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" -msgstr "Discreto" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "Nome de exibição" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "Legado" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "Mostrar total ao nível da coluna" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "Proporcional" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "Mostrar configuração" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" +msgstr "Relacional" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" -"Apresentar métricas lado a lado dentro de cada coluna, em vez de cada " -"coluna ser apresentada lado a lado para cada métrica." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "País" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" -msgstr "Exibir total do nível de linha" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "Para qual país traçar o mapa?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" -msgstr "Configurações de exibição" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "Códigos ISO 3166-2" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "" -"Apresenta ligações entre entidades numa estrutura gráfica. Útil para " -"mapear relações e mostrar quais os nós que são importantes numa rede. Os " -"gráficos podem ser configurados para serem dirigidos à força ou " -"circularem. Se os seus dados tiverem um componente geoespacial, " -"experimente o gráfico de arco deck.gl." - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" -msgstr "Distribuir em" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:25 -msgid "Distribution" -msgstr "Distribuição" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Distribuição - Gráfico de barras" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "Divisor" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" -msgstr "Você quer um donut ou uma torta?" - -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" -msgstr "Documentação" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "Domínio" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" -msgstr "Rosquinha" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -msgid "Dotted" -msgstr "Pontilhado" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" -msgstr "Baixar" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "Baixar como imagem" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "Baixar para CSV" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "Rascunho" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "Arraste e solte componentes e gráficos para o painel" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "Arraste e solte componentes para essa aba" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." -msgstr "" -"Desenha um marcador nos pontos de dados. Apenas aplicável a tipos de " -"linha." - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "Desenhar área sob curvas. Aplicável apenas para tipos de linha." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -"Desenhar uma linha da torta para rótulo quando as etiquetas estão no " -"exterior?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "Desenhar linhas de divisão para os ticks do eixo secundário" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "Desenhar linhas de divisão para os ticks menores do eixo y" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" -msgstr "Drill by" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" -msgstr "Drill by não está disponível para este ponto de dados" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "Drill by não é suportado para esse tipo de gráfico" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" -msgstr "Drill by: %s" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "Drill to detail" +"Coluna contendo códigos ISO 3166-2 da região/província/departamento em " +"sua tabela." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" -msgstr "Drill to detail por" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" +msgstr "Métrica para exibir o título inferior" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "Drill to detail por valor ainda não é suportado para esse tipo de gráfico." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "Mapa" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -"Drill to detail está desabilitado porque esse gráfico não agrupar dados " -"por valor da dimensão." +"Visualiza como uma única métrica varia entre as principais subdivisões de" +" um país (estados, províncias etc.) em um mapa coroplético. O valor de " +"cada subdivisão é elevado quando você passa o mouse sobre o limite " +"geográfico correspondente." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" -msgstr "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "2D" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "Deixe sua coluna aqui ou clique em" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "Geo" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "Insira uma coluna/métrica aqui ou clique em" -msgstr[1] "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "Faixa" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" -msgstr "Colocar uma coluna temporal aqui ou clique" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "Empilhado" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" -msgstr "Colocar colunas/métricas aqui ou clique" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "Desculpe, mas parece que não existem dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" -msgstr "Gráfico de linha dupla" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "Definição do evento" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" -msgstr "Duplicado" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" +msgstr "Nome do Evento" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "Nome(s) de coluna duplicado(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "Colunas a serem exibidas" -#: superset/common/query_object.py:291 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "Pedido por id da entidade" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -"Rótulos de coluna/métrica duplicados: %(labels)s. Por favor, certifique-" -"se todas métricas e colunas tem um único rótulo." - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" -msgstr "Conjunto de dados duplicado" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Duplicar aba" +"Importante! Seleccione esta opção se a tabela ainda não estiver ordenada " +"por id de entidade, caso contrário não há garantia de que todos os " +"eventos de cada entidade sejam retornados." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Duração" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "Contagem mínima de eventos de nó folha" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -"Duração (em segundos) do tempo limite do cache para gráficos desse banco " -"de dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 " -"ignora o cache. Observe que o padrão é o tempo limite global se não for " -"definido." +"Os nós folha que representam menos do que este número de eventos serão " +"inicialmente ocultados na visualização" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." -msgstr "" -"Duração (em segundos) do tempo limite de armazenamento em cache para os " -"gráficos desse banco de dados. Um tempo limite de 0 indica que a cache " -"nunca expira. Observe que o padrão é o tempo limite global se não for " -"definido." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "Metadados adicionais" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "" -"Duração (em segundos) do tempo limite de armazenamento em cache para este" -" gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela " -"se não for definido." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" +msgstr "Metadados" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "" -"Duração (em segundos) do tempo limite do cache para esse gráfico. Defina " -"como -1 para ignorar o cache. Observe que o padrão é o tempo limite do " -"conjunto de dados, se não for definido." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" +msgstr "Selecionar quaisquer colunas para inspeção de metadados" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." -msgstr "" -"Duração (em segundos) do tempo limite de armazenamento em cache para esta" -" tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que " -"este tempo limite é predefinido para o tempo limite da base de dados se " -"não for definido." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "ID da entidade" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "" -"Duração (em segundos) do tempo limite do cache de metadados para esquemas" -" desse banco de dados. Se não for definido, o cache nunca expira." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" +msgstr "por exemplo, uma coluna \"user id\"" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -#, fuzzy -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "" -"Duração (em segundos) do tempo limite do cache de metadados para tabelas " -"desse banco de dados. Se não for definido, o cache nunca expira." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "Max Eventos" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "Duração em ms (1,40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "O número máximo de eventos retornados, equivalente ao número de linhas" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "Duração em ms (100,40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "" +"Compara os períodos de tempo de diferentes atividades numa visão de linha" +" de tempo compartilhada." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "Duração em ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" +msgstr "Fluxo do Evento" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "Duração: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "Progressivo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" -msgstr "Função de agregação dinâmica" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "Eixo ascendente" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "Pesquisar dinamicamente todos os valores de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "Eixo descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:130 -msgid "ECharts" -msgstr "ECharts" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" +msgstr "Métrica crescente" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" -msgstr "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" +msgstr "Métrica decrescente" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "FIM (EXCLUSIVO)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "Opções do mapa de calor" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" -msgstr "ERRO" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" +msgstr "Intervalo XScale" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" -msgstr "ERRO: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" +msgstr "Número de passos a dar entre os tiques ao apresentar a escala X" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" -msgstr "Comprimento da borda" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" +msgstr "Intervalo da escala Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" -msgstr "Comprimento da borda entre nós" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "Número de passos a dar entre os tiques ao apresentar a escala Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" -msgstr "Símbolos de borda" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" +msgstr "Renderização" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" -msgstr "Largura da borda" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "pixelado (nítido)" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Editar" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "auto (Suave)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Alert" -msgstr "Editar Alerta" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" +"atributo CSS de renderização de imagem do objeto canvas que define como o" +" navegador dimensiona a imagem" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "Editar CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "Normalizar em" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Editar modelo CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" +msgstr "mapa de calor" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "Editar propriedades do modelo CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "x" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Editar gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "y" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" -msgstr "Editar propriedades do gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +#, fuzzy +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" +"A cor será sombreada com base no valor normalizado (0% a 100%) de uma " +"determinada célula em relação às outras células no intervalo " +"seleccionado:" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Editar Coluna" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "x: os valores são normalizados dentro de cada coluna" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Editar Painel" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "y: os valores são normalizados dentro de cada linha" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Editar Banco de Dados" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "heatmap: os valores são normalizados em todo o heatmap" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -#, fuzzy -msgid "Edit Dataset " -msgstr "Editar conjunto de dados" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "Margem Esquerda" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Editar log" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" +msgstr "automático" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Editar Métrica" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" +"Margem esquerda, em pixels, permitindo mais espaço para os rótulos dos " +"eixos" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Editar Plugin" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "Margem Inferior" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 -msgid "Edit Report" -msgstr "Editar relatório" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Edit Rule" -msgstr "modo de edição" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "Limites de valor" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Editar Consulta Salva" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." +msgstr "" +"Limites de valores rígidos aplicados para codificação de cores. Só é " +"relevante e aplicado quando a normalização é aplicada a todo o mapa de " +"calor." -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Editar Tabela" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "Ordenar Eixo X" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Editar anotação" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "Ordenar Eixo Y" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Editar camada de anotação" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "Mostrar porcentagem" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Editar propriedades da camada de anotação" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "Se a porcentagem deve ser incluída na dica de ferramenta" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -msgid "Edit chart" -msgstr "Editar gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "Normalizado" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Editar propriedades do gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" +msgstr "" +"Se deve ser aplicada uma distribuição normal com base na classificação na" +" escala de cores" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "Editar painel" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" +msgstr "Formato do valor" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Editar banco de dados" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "" +"Visualize uma métrica relacionada em pares de grupos. Os mapas de calor " +"são excelentes para mostrar a correlação ou a força entre dois grupos. A " +"cor é usada para enfatizar a força do vínculo entre cada par de grupos." -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Editar conjunto de dados" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" +msgstr "Tamanhos de veículos" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" -msgstr "Editar relatório de e-mail" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "Emprego e educação" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" -msgstr "Editar formatador" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "Densidade" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Editar propriedades" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" +msgstr "Preditivo" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Editar consulta" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "Métrica única" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Editar modelo" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" +msgstr "para" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Editar parâmetros do modelo" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" +msgstr "contagem" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -msgid "Edit the dashboard" -msgstr "Editar o painel" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "cumulativo" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "Editar intervalo de tempo" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "percentil (exclusivo)" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Editado" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "Selecionar as colunas numéricas para desenhar o histograma" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Editando 1 filtro:" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" +msgstr "Número de lixeiras" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "Edição do conjunto de filtros:" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "Selecionar o número de caixas para o histograma" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Ou o banco de dados está soletrado incorretamente ou não existe." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "Rótulo do Eixo X" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "Ou o nome de usuário \"%(username)s\" ou a senha está incorreta." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "Rótulo do Eixo Y" -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." -msgstr "" -"O nome de usuário \"%(username)s\", a senha ou o nome do banco de dados " -"\"%(database)s\" estão incorretos." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "Se deve normalizar o histograma" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." -msgstr "Ou o nome de usuário ou a senha está incorreto." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "Acumulado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" -msgstr "Elevação" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "Se o histograma deve ser cumulativo" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" -msgstr "Relatórios por e-mail ativo" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "Distribuição" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" -msgstr "Incorporar" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" +msgstr "" +"Pegue seus pontos de dados e agrupe-os em \"bins\" para ver onde estão as" +" áreas mais densas de informações" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" -msgstr "Incorporar código" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "Dados sobre a idade da população" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -msgid "Embed dashboard" -msgstr "Incorporar painel" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Contribuição" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." -msgstr "Incorporação desativada." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Calcular a contribuição para o total" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" -msgstr "Emitir eventos de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "Altura da série" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" -msgstr "Ênfase" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "Altura do pixel de cada série" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" -msgstr "Emprego e educação" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "Domínio de Valor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" -msgstr "Círculo vazio" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" +msgstr "série" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "Coleção vazia" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" +msgstr "geral" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -msgid "Empty column" -msgstr "Coluna vazia" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "change" +msgstr "mudança" -#: superset/charts/data/api.py:366 -msgid "Empty query result" -msgstr "Resultado da consulta vazio" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" +"séries: Tratar cada série de forma independente; geral: Todas as séries " +"usam a mesma escala; alteração: Mostrar alterações em comparação com o " +"primeiro ponto de dados em cada série" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Consulta vazia?" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." +msgstr "" +"Compara a forma como uma métrica muda ao longo do tempo entre diferentes " +"grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do " +"tempo é visualizada em comprimentos de barra e cores." -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" -msgstr "Linha vazia" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" +msgstr "Gráfico de horizonte" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" -msgstr "" -"Ativar 'Permitir uploads de arquivos para banco de dados' em quaisquer " -"configurações do banco de dados" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "Escuro Ciano" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "Ativar seleção de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" +msgstr "Roxo" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" -msgstr "Habilitar filtragem cruzada" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "Ouro" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" -msgstr "Ativar controles de zoom de dados" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" +msgstr "Cinza escuro" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" -msgstr "Habilitar incorporação" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" +msgstr "Carmesim" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" -msgstr "Habilitar previsão" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" +msgstr "Verde floresta" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" -msgstr "Habilitar previsão" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "Longitude" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" -msgstr "Habilitar gráfico de roaming" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "Coluna contendo dados de longitude" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" -msgstr "Ativar arrastar nó" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "Latitude" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "Ativar estimativa de custo de consulta" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "Coluna contendo dados de latitude" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "" -"Ativar a paginação dos resultados do lado do servidor (funcionalidade " -"experimental)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "Raio de agrupamento" -#: superset/viz.py:2514 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -"Encontrou entrada espacial NULL inválida," -" por favor considere a possibilidade " -"de a filtrar" +"O raio (em pixels) que o algoritmo usa para definir um cluster. Escolha 0" +" para desativar o agrupamento, mas lembre-se de que um grande número de " +"pontos (>1000) causará atraso." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "Fim" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "Pontos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -#, fuzzy -msgid "End (Longitude, Latitude): " -msgstr "Fim (Longitude, Latitude):" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "Raio do ponto" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" -msgstr "Longitude e latitude finais" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" +msgstr "" +"O raio de pontos individuais (aqueles que não estão em um cluster). Uma " +"coluna numérica ou `Auto`, que dimensiona o ponto com base no maior " +"cluster" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Hora do fim" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" +msgstr "Auto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" -msgstr "Ângulo final" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "Unidade de raio do ponto" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "End date" -msgstr "Data final" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" +msgstr "Pixels" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "Data final excluída do intervalo de tempo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" +msgstr "Milhas" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "A data final deve ser após a data de início" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" +msgstr "Quilômetros" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "A unidade de medida do raio do ponto especificado" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" -msgstr "Parâmetros do motor" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "Rotulagem" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" +msgstr "rótulo" -#: superset/databases/schemas.py:302 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -"A especificação do mecanismo \"InvalidEngine\" não permite a configuração" -" por meio de parâmetros individuais." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" -msgstr "Digite CA_BUNDLE" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" -msgstr "Inserir credenciais primárias" - -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" -msgstr "Insira um delimitador para esses dados" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" -msgstr "Digite um nome para essa planilha" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Digite um novo título para a aba" +"`count` é COUNT(*) se for usado um grupo por. As colunas numéricas serão " +"agregadas com o agregador. As colunas não numéricas serão usadas para " +"rotular os pontos. Deixe em branco para obter uma contagem de pontos em " +"cada cluster." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" -msgstr "Insira a duração em segundos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "Agregador de rótulo de cluster" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" -msgstr "Entrar em tela cheia" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "soma" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" -msgstr "Digite as credenciais %(dbModelName)s necessárias" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "média" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Entidade" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" +msgstr "máximo" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" -msgstr "ID da entidade" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" +msgstr "std" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" -msgstr "Tamanhos de datas iguais" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "var" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" -msgstr "Igual para (=)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." +msgstr "" +"Função agregada aplicada à lista de pontos em cada cluster para produzir " +"o rótulo do cluster." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:97 -#: superset-frontend/src/pages/AlertReportList/index.tsx:64 -msgid "Error" -msgstr "Erro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" +msgstr "Ajustes visuais" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Erro na expressão jinja na cláusula HAVING: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "Renderização em tempo real" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Erro na expressão jinja em filtros RLS: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "Pontos e clusters serão atualizados conforme a janela de exibição mude" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Erro na expressão jinja na cláusula WHERE: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" +msgstr "Estilo do mapa" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Erro na expressão jinja no predicado para obter valores: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" +msgstr "Ruas" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." -msgstr "" -"Erro ao carregar fontes de dados de gráficos. Os filtros podem não " -"funcionar corretamente." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" +msgstr "Escuro" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "Mensagem de erro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" +msgstr "Claro" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:139 -msgid "Error while fetching charts" -msgstr "Erro ao buscar gráficos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" +msgstr "Ruas Satélites" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" -msgstr "Erro ao buscar dados: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" +msgstr "Satélite" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Erro ao renderizar consulta de conjunto de dados virtual: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "Ao ar livre" -#: superset/charts/data/commands/get_data_command.py:55 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 #, python-format -msgid "Error: %(error)s" -msgstr "Erro: %(error)s" +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" -msgstr "Erro: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Opacidade" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" -msgstr "Erro: estado do link permanente não encontrado" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "Opacidade de todos os clusters, pontos e rótulos. Entre 0 e 1." -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Custo estimado" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "Cor RGB" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Estimar custo da consulta selecionada" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "A cor dos pontos e clusters em RGB" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "Estimar o custo antes de executar uma consulta" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" +msgstr "Porta de exibição" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -msgid "Event" -msgstr "Evento" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "Longitude padrão" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" -msgstr "Fluxo do Evento" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "Longitude da viewport padrão" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" -msgstr "Nome do Evento" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "Latitude padrão" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" -msgstr "Definição do evento" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "Latitude da janela de visualização padrão" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "Fluxo de eventos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "Ampliar" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" -msgstr "Coluna de hora do evento" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "Nível de zoom do mapa" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Todo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" +"Um ou vários controles para agrupar. Em caso de agrupamento, as colunas " +"de latitude e longitude devem estar presentes." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" -msgstr "Evolução" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "Modo claro" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" -msgstr "Exato" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "Modo escuro" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "Exemplo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "MapBox" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:853 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Exemplos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "Dispersão" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Arquivo Excel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "Transformável" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" -msgstr "" -"Arquivo do Excel \"%(excel_filename)s\" carregado na tabela " -"\"%(table_name)s\" no banco de dados \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "Nível de significância" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Configuração Excel para Banco de Dados" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "Nível alfa de limiar para determinar a significância" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" -msgstr "Excluir valores selecionados" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "precisão do valor-p" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -#, fuzzy -msgid "Excluded roles" -msgstr "(excluído)" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" +msgstr "Número de casas decimais para exibir valores-p" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" -msgstr "SQL executado" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "Precisão da percentagem de elevação" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Consulta executada" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "Número de casas decimais para exibir valores de elevação" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "ID de execução" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." +msgstr "" +"Tabela que visualiza testes t emparelhados, que são utilizados para " +"compreender as diferenças estatísticas entre grupos." -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "Log de execução" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "Tabela teste-t pareado" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" -msgstr "Conjunto de dados existente" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "Estatístico" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" -msgstr "Sair da tela cheia" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "Tabular" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" -msgstr "Expandir" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "Opções" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Expandir tudo" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "Tabela de dados" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" -msgstr "Expandir painel de dados" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "Se deseja exibir a tabela de dados interativa" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" -msgstr "Expandir linha" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "Incluir Séries" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" -msgstr "Expandir visualização da tabela" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "Incluir o nome da série como um eixo" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Expandir barra de ferramentas" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "Classificação" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -"Espera uma fórmula com o parâmetro de tempo dependente 'x'\n" -" em milissegundos desde a época. mathjs é utilizado para avaliar " -"as fórmulas.\n" -" Exemplo: '2x+5'" +"Plota os índices individuais para cada linha nos dados verticalmente e os" +" vincula como uma linha. Este gráfico é útil para comparar várias " +"métricas em todas as amostras ou linhas nos dados." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" -msgstr "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" +msgstr "Coordenadas" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Explorar" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "Direcional" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "Explorar - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "Opções de séries temporais" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Explorar o conjunto de resultados na visão de exploração de dados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "Não é uma série temporal" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Exportar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "Ignorar hora" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "Exportar paineis?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" +msgstr "Séries temporais" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "Exportar consulta" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "Série temporal padrão" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" -msgstr "Exportar para .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "Média agregada" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" -msgstr "Exportar para .JSON" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "Média dos valores durante o período especificado" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" -msgstr "Exportar para Excel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "Soma agregada" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Exportar para YAML" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "Soma dos valores durante o período especificado" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Exportar para YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "Alteração do valor da métrica de `desde` a `até`" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -#, fuzzy -msgid "Export to full .CSV" -msgstr "Exportar para .CSV completo" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" +msgstr "Variação percentual" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -#, fuzzy -msgid "Export to original .CSV" -msgstr "Exportar para .CSV original" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "Métrica de variação percentual do valor de `desde` até `até`" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -#, fuzzy -msgid "Export to pivoted .CSV" -msgstr "Exportar para .CSV articulado" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "Fator" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" -msgstr "Expor banco de dados no SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "Alteração do fator métrico de `since` para `until`" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Expor no SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "Análise avançada" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Expor este banco de dados no SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "Use as opções de análise avançada abaixo" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Expressão" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "Configurações para séries temporais" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "Formato de data e hora" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" -msgstr "Controles extras" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" +msgstr "Limite de partição" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" -msgstr "Parâmetros extra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "" +"O máximo número de subdivisões de cada grupo ; mais baixo os valores são " +"podados primeiro" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" -msgstr "Dados extras para JS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "Limiar de partição" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -"Dados extras para especificar metadados de tabela. Atualmente suporta " -"metadados do formato: `{ \"certification\": { \"certified_by\": \"Data " -"Platform Team\", \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +"As partições cujas proporções entre a altura e a altura dos pais sejam " +"inferiores a este valor são eliminadas" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Campo extra não pode ser decodificado por JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "Escala Log" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Parâmetros extra para utilização em consultas de modelo jinja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "Use uma escala logarítmica" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 -msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "Tamanhos de datas iguais" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "Marcar para forçar as partições de data a terem a mesma altura" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "Dica avançada" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -"Parâmetros extras que qualquer plug-in pode escolher definir para uso em " -"consultas modeladas Jinja" +"A dica de ferramenta avançada mostra uma lista de todas as séries para " +"esse ponto no tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Parâmetros de url extras para uso em consultas de modelo Jinja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "Janela de rolagem" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" -msgstr "Extrudados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "Função de rolagem" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "FEV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" +msgstr "cumsum" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "SEX" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "Períodos mínimos" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" -msgstr "Fator" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "Comparação de tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" -msgstr "Fator para multiplicar a métrica por" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "Mudança de hora" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "Falha" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" +msgstr "1 semana" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "Falhou" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "28 dias atrás" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 dias" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" +msgstr "52 semanas" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Falha na obtenção de resultados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" +msgstr "1 ano" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" -msgstr "Falha ao parar a consulta. %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" +msgstr "104 semanas" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" -msgstr "Falha ao criar relatório" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" +msgstr "2 anos" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" -msgstr "Falha ao executar %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" +msgstr "156 semanas" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 #, fuzzy -msgid "Failed to generate chart edit URL" -msgstr "Falha ao carregar dados do gráfico" +msgid "3 years" +msgstr "2 anos" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" -msgstr "Falha ao carregar dados do gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Sobrepor uma ou mais séries temporais de um período de tempo relativo. " +"Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas," +" 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." -msgstr "Falha ao carregar dados do gráfico." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" +msgstr "Valores reais" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -#, fuzzy -msgid "Failed to load dimensions for drill by" -msgstr "Sem dimensões disponível para drill by" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "1T" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -#, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "Falha na obtenção de resultados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "1H" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -#, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Habilitar filtragem cruzada" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "1D" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "Falha ao iniciar a consulta remota em um worker." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "7D" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" -msgstr "Falha ao atualizar relatório" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "1M" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Falha ao verificar opções selecionadas: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "1AS" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Favorito" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Método" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Favoritos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "asfreq" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Fevereiro" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "bfill" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "Predicado de obtenção de valores" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "ffill" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Obter pré-visualização de dados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "mediana" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "Obtido %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "Parte de um Todo" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" -msgstr "Buscando" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "Comparar a mesma métrica resumida em vários grupos." -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "O campo não pode ser decodificado por JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" +msgstr "Gráfico de partição" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Campo não pode ser decodificado por JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "Categórico" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "Campo é obrigatório" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" +msgstr "Proporções de área de uso" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Arquivo" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "" +"Verificar se o gráfico de rosáceas deve utilizar a área do segmento em " +"vez do raio do segmento para o cálculo das proporções" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" -msgstr "Cor de preenchimento" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" +"Um gráfico de coordenadas polares em que o círculo é dividido em cunhas " +"de igual ângulo e o valor representado por qualquer cunha é ilustrado " +"pela sua área, em vez do seu raio ou ângulo de varrimento." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "Preencher todos os campos obrigatórios para ativar \"Default Value\"" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "Gráfico Nightingale Rose" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" -msgstr "Método de preenchimento" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "Análise avançada" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" -msgstr "Preenchido" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "Múltiplas Camadas" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" -msgstr "Filtro" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "Fonte / Alvo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" -msgstr "Configuração de Filtro" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "Escolha uma fonte e um alvo" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Lista de filtros" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." +msgstr "" +"Limitar as linhas pode resultar em dados incompletos e gráficos errôneos." +" Em vez disso, considere filtrar ou agrupar nomes de origem/destino." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" -msgstr "Configurações de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." +msgstr "" +"Visualiza o fluxo de valores de diferentes grupos por meio de diferentes " +"estágios de um sistema. Novos estágios no pipeline são visualizados como " +"nós ou camadas. A espessura das barras ou bordas representa a métrica que" +" está sendo visualizada." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "Tipo de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "Demografia" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -#, fuzzy -msgid "Filter box (deprecated)" -msgstr "Nenhum filtro selecionado." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "Respostas da pesquisa" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 -msgid "Filter charts" -msgstr "Filtrar gráficos" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "Diagrama Sankey" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Configuração do filtro" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "Porcentagens" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Configuração do filtro para a caixa de filtro" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "Diagrama Sankey com Loops" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" -msgstr "O filtro tem valor padrão" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "Tipo de campo País" -#: superset-frontend/src/components/Table/index.tsx:201 -msgid "Filter menu" -msgstr "Menu do filtro" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" +msgstr "Nome completo" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "Filtrar metadados alterados no painel. Isso não será aplicado." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" +msgstr "código Comitê Olímpico Internacional (cioc)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Nome do filtro" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" +msgstr "código ISO 3166-1 alpha-2 (cca2)" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." -msgstr "Filtro só exibe valores relevantes para seleções feitas em outros filtros." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "código ISO 3166-1 alpha-3 (cca3)" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "Filtrar resultados" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "" +"O código de país padrão que o Superset deve esperar encontrar na coluna " +"[country]" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "O conjunto de filtros já existe" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" +msgstr "Mostrar bolhas" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "O conjunto de filtros com esse nome já existe" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "Se deseja exibir bolhas na parte superior dos países" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" -msgstr "Conjuntos de filtros (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "Tamanho máximo da bolha" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" -msgstr "Tipo do filtro" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" +msgstr "Cor por" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Valor do filtro (diferencia maiúsculas de minúsculas)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" +msgstr "" +"Escolha se um país deve ser sombreado pela métrica ou se lhe deve ser " +"atribuída uma cor com base numa paleta de cores categóricas" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" -msgstr "O valor do filtro é obrigatório" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "Coluna do país" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "A lista de valores do filtro não pode estar vazia" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +#, fuzzy +msgid "3 letter code of the country" +msgstr "todos os dias do mês" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Filtrar os seus gráficos" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "Métrica que define o tamanho da bolha" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Filtrável" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "Cor da bolha" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Filtros" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "Esquema de cores do país" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "Filtros (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "Um mapa do mundo, que pode indicar valores em diferentes países." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Filtros por colunas" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "Multidimensões" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Filtros por métricas" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "Multi-Variáveis" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Configurações de filtros" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "Popular" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" -msgstr "Filtros fora do escopo (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" +msgstr "gráficos do deck.gl" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -"Os filtros com a mesma chave de grupo serão agrupados dentro do grupo, " -"enquanto os grupos de filtros diferentes serão agrupados. As chaves de " -"grupo indefinidas são tratadas como grupos únicos, ou seja, não são " -"agrupadas. Por exemplo, se uma tabela tiver três filtros, dos quais dois " -"são para os departamentos Finanças e Marketing (chave de grupo = " -"'departamento') e um se refere à região Europa (chave de grupo = " -"'região'), a cláusula de filtro aplicaria o filtro (departamento = " -"'Finanças' OU departamento = 'Marketing') AND (região = 'Europa')." +"Escolha um conjunto de gráficos deck.gl para colocar em camadas uns sobre" +" os outros" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "Finalizar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "Selecionar gráficos" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" -msgstr "Primeiro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" +msgstr "Erro ao buscar gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" -msgstr "" -"Corrigir a linha de tendência para o intervalo de tempo completo " -"especificado no caso dos resultados filtrados não incluírem as datas de " -"início ou fim" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "Compor várias camadas para formar imagens complexas." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" -msgstr "Corrigir para o intervalo de tempo selecionado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "deck.gl Múltiplas camadas" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "Fixo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "deckGL" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" -msgstr "Cor Fixa" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +#, fuzzy +msgid "Start (Longitude, Latitude): " +msgstr "Início (Longitude, Latitude):" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Cor fixa" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +#, fuzzy +msgid "End (Longitude, Latitude): " +msgstr "Fim (Longitude, Latitude):" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" -msgstr "Raio do ponto fixo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "Longitude e latitude iniciais" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" -msgstr "Fluxo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "Apontar para as colunas espaciais" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" -msgstr "Tamanho da Fonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "Longitude e latitude finais" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" -msgstr "" -"Tamanho da Fonte para rótulos de eixo, detalhes de valor e outros " -"elementos de texto" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" +msgstr "Arco" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" -msgstr "Tamanho da Fonte para o maior valor na lista" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" +msgstr "Cor do alvo" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" -msgstr "Tamanho da Fonte para o menor valor na lista" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" +msgstr "Cor do local de destino" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." -msgstr "" -"Para Bigquery, Presto e Postgres, mostra um botão para calcular o custo " -"antes de executar uma consulta." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" +msgstr "Cor categórica" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" -msgstr "Para mais instruções , consultar o" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "Escolha uma dimensão a partir da qual as cores categóricas são definidas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" -msgstr "" -"Para mais informações sobre os objetos que estão no contexto do escopo " -"dessa função, consulte para o" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" +msgstr "Largura do traço" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." -msgstr "" -"Para os filtros regulares, estas são as funções às quais este filtro será" -" aplicado. Para os filtros de base, estas são as funções às quais o " -"filtro NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os" -" dados." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Avançado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" -msgstr "Forçar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." +msgstr "Plota a distância (como rotas de voo) entre origem e destino." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." -msgstr "" -"Força a criação de todas as tabelas e visôes neste esquema ao clicar em " -"CTAS ou CVAS no SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "deck.gl Arc" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" -msgstr "Forçar o formato da data" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "3D" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Forçar atualização" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "Rede" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "Forçar atualização da lista de esquemas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +#, fuzzy +msgid "Centroid (Longitude and Latitude): " +msgstr "Centroide (Longitude e Latitude):" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +#, fuzzy +msgid "Threshold: " +msgstr "Rótulo limite" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "Forçar atualização da lista de tabelas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +#, fuzzy +msgid "The size of each cell in meters" +msgstr "O tamanho da célula quadrada, em pixels" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" -msgstr "Períodos de previsão" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +#, fuzzy +msgid "Aggregation" +msgstr "agregar" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" -msgstr "Chave estrangeira" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "A função para usar quando agregar pontos em grupos" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Forest Green" -msgstr "Verde floresta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +#, fuzzy +msgid "Contours" +msgstr "Contínuo" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -"Os dados do formulário não foram encontrados na cache, revertendo para os" -" metadados do gráfico." -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "" -"Os dados do formulário não foram encontrados na cache, revertendo para os" -" metadados do conjunto de dados." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" +msgstr "Peso" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" -msgstr "Formatável" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "Métrica usada como peso para coloração de grid" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" -msgstr "CSV formatado anexado no e-mail" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" -msgstr "Data formatada" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "deck.gl Arc" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" -msgstr "Valor formatado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Espacial" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" -msgstr "Formatação" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "Experimental" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" -msgstr "Fórmula" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" +msgstr "Configurações de GeoJson" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" -msgstr "Valores futuros" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Largura da linha" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" -msgstr "Encontradas opções de orderby inválidas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Parâmetros" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" -msgstr "Dígitos de frações" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +#, fuzzy +msgid "pixels" +msgstr "Pixels" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" -msgstr "Frequência" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "Escala do Raio do ponto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" -msgstr "Atrito" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" +"O GeoJsonLayer recebe dados formatados em GeoJSON e apresenta-os como " +"polígonos, linhas e pontos interativos (círculos, ícones e/ou textos)." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" -msgstr "Atrito entre nós" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "deck.gl Geojson" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Sexta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" +msgstr "Longitude e Latitude" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "A data de início não pode ser maior do que a data de fim" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Altura" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" -msgstr "Nome completo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" +msgstr "Métrica utilizada para controlar a altura" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" -msgstr "Gráfico de funil" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." +msgstr "" +"Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D " +"na visualização em grade." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" -msgstr "Personalizar ainda mais a forma de apresentação de cada coluna" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" +msgstr "deck.gl Grid" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" -msgstr "Personalizar ainda mais como exibir cada métrica" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +#, fuzzy +msgid "Intesity" +msgstr "Intensidade" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" -msgstr "AGRUPAR POR" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" -msgstr "Gráfico de medidores" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +#, fuzzy +msgid "Intensity Radius" +msgstr "Raio do ponto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" -msgstr "Em geral" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." -msgstr "Gerando link, por favor espere.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "gráficos do deck.gl" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" -msgstr "Gráfico genérico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" +msgstr "Função de agregação dinâmica" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" -msgstr "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" +msgstr "variação" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" -msgstr "Coluna GeoJson" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" +msgstr "desvio" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" -msgstr "Configurações de GeoJson" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "p1" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" +msgstr "p5" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "Obter a última data através da unidade de data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "p95" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" -msgstr "Obter a data específica para o feriado" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" +msgstr "p99" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" -msgstr "Vá ao modo de edição para configurar o painel e adicionar gráficos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" +"Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite " +"de cada célula." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" -msgstr "Ouro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" +msgstr "deck.gl Hexágono 3D" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "Planilha Google Nome e URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "Polilinha" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "Grace period" -msgstr "Período de inatividade" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "Visualiza pontos conectados, que formam um caminho, em um mapa." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" -msgstr "Gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" +msgstr "deck.gl Path" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "Layout do gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "Nome" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" -msgstr "Gravidade" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" +msgstr "Coluna de polígono" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" -msgstr "Maior ou igual (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" +msgstr "Codificação de polígonos" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" -msgstr "Maior que (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" +msgstr "Elevação" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" -msgstr "Grade" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" +msgstr "Configurações de polígono" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" -msgstr "Tamanho da grade" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" +msgstr "Opacidade, espera valores entre 0 e 100" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "Número de compartimentos para agrupar dados" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" -msgstr "Plugin do filtro Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "Em quantos compartimentos devem ser agrupados os dados." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "Agrupar por , Métricas ou Métricas de porcentagem devem ter um valor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" +msgstr "Pontos de quebra de balde" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -#, fuzzy -msgid "Group Key" -msgstr "Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." +msgstr "Lista de n+1 valores para a métrica de agrupamento em n agrupamentos." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Agrupar por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" +msgstr "Emitir eventos de filtro" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Agrupável" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" +msgstr "Se o filtro deve ser aplicado quando os itens são clicados" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" -msgstr "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" +msgstr "Filtragem múltipla" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" -msgstr "Modelo de handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" +msgstr "Permitir o envio de vários polígonos como um evento de filtro" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -"Limites de valores rígidos aplicados para codificação de cores. Só é " -"relevante e aplicado quando a normalização é aplicada a todo o mapa de " -"calor." +"Visualiza áreas geográficas de seus dados como polígonos em um mapa " +"renderizado do Mapbox. Os polígonos podem ser coloridos usando uma " +"métrica." -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -msgid "Has created by" -msgstr "Foi criado por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "deck.gl Polígono" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Cabeçalho" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "Categoria" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "Linha do Cabeçalho" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" +msgstr "Tamanho do ponto" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Mapa de calor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "Unidade de ponto" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" -msgstr "Opções do mapa de calor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" +msgstr "Metros quadrados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Altura" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" +msgstr "Quilômetros quadrados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" -msgstr "Altura do minigráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" +msgstr "Milhas quadradas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" -msgstr "Ocultar linha" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" +msgstr "Raio em metros" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -msgid "Hide chart description" -msgstr "Ocultar descrição do gráfico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "Raio em quilômetros" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "Esconder camada" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" +msgstr "Raio em milhas" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." -msgstr "Ocultar senha." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "Raio Mínimo" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Esconder barra de ferramentas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" +"Tamanho mínimo do raio do círculo, em pixels. À medida que o nível de " +"zoom muda, isto assegura que o círculo respeita este raio mínimo." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" -msgstr "Oculta a linha da série temporal" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "Raio Máximo" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" -msgstr "Hierarquia" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" +"Tamanho máximo do raio do círculo, em pixels. À medida que o nível de " +"zoom muda, isto assegura que o círculo respeite este raio máximo." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Histograma" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "Cor do ponto" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Início" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "" +"Um mapa que mostra círculos de renderização com um raio variável em " +"coordenadas de latitude/longitude" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" -msgstr "Gráfico de horizonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "deck.gl Gráfico de dispersão" -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "Gráficos do horizonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" +msgstr "Grade" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" -msgstr "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" +"Agrega dados dentro dos limites das células do grid e mapeia os valores " +"agregados para uma escala de cores dinâmica" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" -msgstr "Horizontal (topo)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" +msgstr "deck.gl Grade de tela" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" -msgstr "Alinhamento horizontal" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" +"Para mais informações sobre os objetos que estão no contexto do escopo " +"dessa função, consulte para o" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" -msgstr "Host" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +#, fuzzy +msgid " source code of Superset's sandboxed parser" +msgstr "código-fonte do analisador em área restrita do Superset" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "Nome do host ou endereço IP" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "" +"Essa funcionalidade está desativada em seu ambiente por motivos de " +"segurança." -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "Hora" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "Ignorar localizações nulas" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" -msgstr "Horas %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "Se devem ser ignorados os locais que são nulos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "Compensação de horas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "Zoom automático" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "Como pretende introduzir as credenciais da conta de serviço?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "Quando marcada, o mapa será ampliado para seus dados após cada consulta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." -msgstr "Em quantos compartimentos devem ser agrupados os dados." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "Selecione uma dimensão" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" -msgstr "Quantos períodos no futuro queremos prever" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "Dados extras para JS" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "Lista de colunas extra disponibilizadas em funções JavaScript" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" +msgstr "Interceptador de dados JavaScript" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" +"Defina uma função javascript que receba a matriz de dados utilizada na " +"visualização e que deva devolver uma versão modificada dessa matriz. Esta" +" pode ser utilizada para alterar as propriedades dos dados, filtrar ou " +"enriquecer a matriz." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" -msgstr "Enorme" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "Gerador de dicas de ferramentas JavaScript" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "Códigos ISO 3166-2" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" +msgstr "" +"Definir uma função que receba a entrada e produza o conteúdo de uma dica " +"de ferramenta" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" +msgstr "JavaScript onClick href" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "" +"Definir uma função que devolve um URL para onde navegar quando o usuário " +"clicar" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" +msgstr "Formato de legenda" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" +msgstr "Escolha o formato dos valores de legenda" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" +msgstr "Posição da legenda" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" +msgstr "Choose the position of the legend" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" +msgstr "Superior esquerdo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" -msgstr "Id" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" +msgstr "Superior direito" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "Id do nó raiz da árvore." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" +msgstr "Parte inferior esquerda" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"Se for o Presto ou o Trino, todas as consultas no SQL Lab serão " -"executadas como o usuário conectado no momento, que deve ter permissão " -"para executá-las. Se o Hive e o hive.server2.enable.doAs estiverem " -"ativados, as consultas serão executadas como conta de serviço, mas " -"representarão o usuário conectado no momento por meio da propriedade " -"hive.server2.proxy.user." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" +msgstr "Parte inferior direita" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"Se Presto, todas as consultas no SQL Lab serão executadas como o usuário " -"atualmente conectado, que deve ter permissão para executá-las.
Se " -"Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão " -"executadas como conta de serviço, mas personificarão o usuário atualmente" -" conectado por meio da propriedade hive.server2.proxy.user." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" +msgstr "Coluna de linhas" -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" -msgstr "Se a tabela já existir" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" +msgstr "As colunas do banco de dados que contêm informações sobre as linhas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "" -"Se for especificada uma métrica, a ordenação será efetuada com base no " -"valor da métrica" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Largura da linha" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" -msgstr "" -"Se as colunas duplicadas não forem substituídas, elas serão apresentadas " -"como \"X.1, X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" +msgstr "A largura das linhas" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "" -"Se selecionado, defina os esquemas permitidos para o carregamento de csv " -"no Extra." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" +msgstr "Cor de preenchimento" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +#, fuzzy msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -"Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer " -"nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Ignore cache when generating screenshot" -msgstr "Ignorar o cache ao gerar a captura de tela" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" -msgstr "Ignorar localizações nulas" +"Defina opacidade a 0 se você não quer sobrepor a cor especificada no " +"GeoJSON" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" -msgstr "Ignorar hora" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" +msgstr "Cor do traço" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" -msgstr "Imagem (PNG) incorporada no e-mail" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" +msgstr "Preenchido" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." -msgstr "Falha no download da imagem, por favor atualizar e tentar novamente." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" +msgstr "Se os objetos devem ser preenchidos" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "" -"Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e " -"GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" +msgstr "Tracejado" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Representar o usuário com sessão iniciada" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" +msgstr "Se o traço deve ser exibido" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Importar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" +msgstr "Extrudados" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Importar %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" +msgstr "Se a grade deve ser 3D" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Importar Painel(eis)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" +msgstr "Tamanho da grade" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Importar Paineis" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "Define o tamanho do grid em pixels" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "Importar uma definição de tabela" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "Parâmetros relacionados com a visão e a perspectiva no mapa" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "A importação do gráfico falhou por um motivo desconhecido" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" +msgstr "Longitude e Latitude" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "Importar gráficos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" +msgstr "Raio do ponto fixo" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "A importação do painel falhou por um motivo desconhecido" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "Multiplicador" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Importar painéis" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "Fator para multiplicar a métrica por" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "A importação do banco de dados falhou por um motivo desconhecido" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "Codificação de linhas" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" -msgstr "Importar banco de dados de um arquivo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" +msgstr "The encoding format of the lines" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "A importação do conjunto de dados falhou por um motivo desconhecido" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "geohash (quadrado)" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "Importar conjuntos de dados" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" +msgstr "Lat. e Long. invertidos" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "Importar consultas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" +msgstr "Coluna GeoJson" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "A consulta salva de importação falhou por um motivo desconhecido." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "Selecione a coluna geojson" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." -msgstr "" -"Importante! Seleccione esta opção se a tabela ainda não estiver ordenada " -"por id de entidade, caso contrário não há garantia de que todos os " -"eventos de cada entidade sejam retornados." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "Formato do eixo direito" -#: superset-frontend/src/explore/constants.ts:71 -msgid "In" -msgstr "Em" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "Mostrar Marcadores" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" -msgstr "Incluir Séries" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "Mostrar pontos de dados como marcadores de círculos nas linhas" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" -msgstr "Incluir uma descrição que será enviada com o seu relatório" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "Limites Y" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" -msgstr "Incluir o nome da série como um eixo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo Y" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" -msgstr "Incluir horário" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "Y 2 limites" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" -msgstr "Índice" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "Estilo da linha" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Coluna de índice" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" +msgstr "linear" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "Informações" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" +msgstr "base" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "Raio interior" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" +msgstr "cardeal" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "Raio interior do buraco de rosquinha" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" +msgstr "monótono" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "" -"O campo de entrada suporta uma rotação personalizada, por exemplo, 30 " -"para 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" +msgstr "passo-anteerior" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Filtragem instantânea" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" +msgstr "etapa seguinte" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" -msgstr "Intensidade" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "Linha interpolação conforme definido por d3.js" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -#, fuzzy -msgid "Intensity Radius" -msgstr "Raio do ponto" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" +msgstr "Mostrar filtro de intervalo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "Se deve ser exibido o seletor interativo de intervalo de tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "Controles extras" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" -msgstr "Interpretar automaticamente o formato de data e hora" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "" +"Se deve ou não mostrar controles extras. Os controles extras incluem " +"coisas como a criação de gráficos mulitBar empilhados ou lado a lado." -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" -msgstr "Interpretar o formato de data e hora automaticamente" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "X Tick Layout" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -msgid "Interval" -msgstr "Intervalo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" +msgstr "plano" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" -msgstr "Intervalo Coluna final" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" +msgstr "escalonado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" -msgstr "Limites de intervalo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "O modo como os ticks são dispostos no eixo X" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" -msgstr "Cores do intervalo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" +msgstr "Formato do eixo X" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" -msgstr "Coluna de início do intervalo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "Escala logarítmica Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" -msgstr "Intervalos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "Use uma escala logarítmica para o eixo Y" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -#, fuzzy -msgid "Intesity" -msgstr "Intensidade" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "Limites do Eixo Y" -#: superset/db_engine_specs/ocient.py:274 -#, fuzzy +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -"Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: " -"backend+driver://user:password@database-host/database-name" +"Limites para o eixo Y. Quando deixados em branco, os limites são " +"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " +"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "JSON inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "Eixo Y 2 Limites" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "Tipo de dados avançados inválido: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "Limites X" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Certificado inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo X" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" -msgstr "" -"String de conexão inválida, uma string válida é normalmente a seguinte:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "Valores de barra" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "Mostrar o valor na parte superior da barra" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "Barras empilhadas" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "Reduzir X ticks" -#: superset/databases/schemas.py:164 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -"Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: " -"backend+driver://user:password@database-host/database-name" +"Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o " +"eixo X não transbordará e os rótulos podem estar ausentes. Se falso, será" +" aplicada uma largura mínima às colunas e a largura pode transbordar para" +" um deslocamento horizontal." -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -"String de conexão inválida, uma string válida é normalmente a " -"seguinte:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +"Não é possível usar o layout de ticks de 45° junto com o filtro de " +"intervalo de tempo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Expressão cron inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "Estilos empilhados" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Operador cumulativo inválido: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" +msgstr "pilha" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Formato de data/carimbo de data/hora inválido" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" +msgstr "fluxo" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "Configuração de filtro inválida, selecione uma coluna" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" +msgstr "expandir" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "Tipo de operação de filtragem inválido: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "Evolução" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "Cadeia geodésica inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." +msgstr "" +"Um gráfico de séries temporais que visualiza como uma métrica relacionada" +" de vários grupos varia ao longo do tempo. Cada grupo é visualizado " +"usando uma cor diferente." -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "Cadeia de caracteres geohash inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "Estilo alongado" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" -msgstr "Entrada inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "Estilos empilhados" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Configuração lat/long inválida." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "Consoles de videogame" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Longitude/latitude inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" +msgstr "Tipos de veículos" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "Objeto de métrica inválido: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" +msgstr "Gráfico de área (legado)" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Função numpy inválida: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "Contínuo" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Opções inválidas para %(rolling_type)s: %(opções)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" +msgstr "Linha" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" -msgstr "Chave de permalink inválida" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "nvd3" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "Depreciado" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" +msgstr "Limite da série Ordenar por" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" +"Métrica utilizada para ordenar o limite se estiver presente um limite de " +"série. Se não for definida, reverte para a primeira métrica (quando " +"apropriado)." -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "Tipo de resultado inválido: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" +msgstr "Limite da série Ordenação decrescente" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "Inválido rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "" +"Se a classificação será decrescente ou crescente se houver um limite de " +"série" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "Encontrado um ponto espacial inválido: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." +msgstr "" +"Visualize como uma métrica muda ao longo do tempo usando barras. Adicione" +" um grupo por coluna para visualizar métricas de nível de grupo e como " +"elas mudam ao longo do tempo." -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." -msgstr "Estado inválido." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" +msgstr "Gráfico de barras de séries temporais (legado)" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" -msgstr "IDs das abas inválido: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "Barra" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" -msgstr "Seleção inversa" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "Vertical" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" -msgstr "Inverter a página atual" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Gráfico de caixa" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" -msgstr "É certificado" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "Escala X Log" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "É dimensão" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "Use uma escala logarítmica para eixo X" -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" -msgstr "É falso" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "" +"Visualiza uma métrica em três dimensões de dados em um único gráfico " +"(eixo X, eixo Y e tamanho da bolha). As bolhas do mesmo grupo podem ser " +"exibidas usando a cor da bolha." -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "É favorito" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +#, fuzzy +msgid "Bubble Chart (legacy)" +msgstr "Gráfico de linhas (herdado)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "É filtrável" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" +msgstr "Faixas" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" -msgstr "Não é nulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "Intervalos a destacar com sombreamento" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" -msgstr "É nulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "Rótulos de intervalo" -#: superset/views/base_api.py:177 -msgid "Is tagged" -msgstr "É marcado" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "Rótulos para os intervalos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "É temporal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "Marcadores" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" -msgstr "É verdadeiro" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "Lista de valores para marcar com triângulos" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Problema 1000 - O conjunto de dados é muito grande para ser consultado." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "Rótulos de marcadores" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Problema 1001 - O Banco de dados está sob uma carga incomum." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "Rótulos para o marcadores" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." -msgstr "Não é recomendado truncar o eixo no gráfico de barras." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "Linhas de marcação" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "Lista de valores a marcar com linhas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "Rótulos de linhas de marcação" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "Metadados JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "Rótulos para o marcador linhas" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" -msgstr "Metadados JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "KPI" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 -msgid "JSON metadata is invalid!" -msgstr "Os metadados JSON são inválidos!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" +"Apresenta o progresso de uma única métrica em relação a um determinado " +"objetivo. Quanto mais elevado for o preenchimento, mais próxima está a " +"métrica do objetivo." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -"Cadeia de caracteres JSON contendo configuração de conexão adicional. " -"Isso é usado para fornecer informações de conexão para sistemas como " -"Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de " -"nome de usuário:senha normalmente usada pelo SQLAlchemy." +"Visualiza muitos objetos de séries temporais diferentes em um único " +"gráfico. Esse gráfico está sendo descontinuado e, em vez dele, " +"recomendamos o uso do gráfico de série temporal." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "JUL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "Variação percentual da série temporal" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "JUN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "Barras de classificação" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Janeiro" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "Ordenar as barras por rótulos x." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" -msgstr "Interceptador de dados JavaScript" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" +msgstr "Desmembramentos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" -msgstr "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "Define como cada série é decomposta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" -msgstr "Gerador de dicas de ferramentas JavaScript" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "" +"Compara métricas de diferentes categorias usando barras. Os comprimentos " +"das barras são utilizados para indicar a magnitude de cada valor e a cor " +"é utilizada para diferenciar os grupos." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" -msgstr "Modelo Jinja" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "Gráfico de barras (legado)" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" -msgstr "Lista Json dos nomes das colunas que devem ser lidas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" +msgstr "Aditivo" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." -msgstr "" -"Lista Json dos nomes das colunas que devem ser lidas. Se não for None, " -"apenas estas colunas serão lidas do ficheiro." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" +msgstr "Discreto" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" -msgstr "" -"Lista Json dos valores que devem ser tratados como nulos. Exemplos: " -"[\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", " -"\"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "Propagar" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." -msgstr "" -"Lista Json dos valores que devem ser tratados como nulos. Exemplos: " -"[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados " -"Hive suporta apenas um único valor. Utilize [\"\"] para uma cadeia de " -"caracteres vazia." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "Enviar filtro de intervalo eventos para outro gráficos" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Julho" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "Gráfico clássico que visualiza como as métricas mudam ao longo do tempo." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Junho" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" +msgstr "Nível da bateria ao longo do tempo" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" +msgstr "Gráfico de linhas (herdado)" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" +msgstr "Tipo de rótulo" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" +msgstr "Nome da categoria" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" -msgstr "KPI" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Valor" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" -msgstr "Manter configurações de controle?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" +msgstr "Porcentagem" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "Continue editando" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "Categoria e valor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" -msgstr "Chave" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "Categoria e Porcentagem" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "Chaves da tabela" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "Categoria, Valor e Porcentagem" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Kilometers" -msgstr "Quilômetros" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "O que deve constar no rótulo?" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" -msgstr "LIMITE" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "Rosquinha" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Rótulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "Você quer um donut ou uma torta?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" -msgstr "Linha de rótulos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "Mostrar rótulos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" -msgstr "Tipo de rótulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." +msgstr "" +"Se deseja exibir os rótulos. Observe que o rótulo só é exibido quando o " +"limite é de 5%." -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" -msgstr "O rótulo já existe" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "Colocar rótulos no exterior" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Rótulo para sua consulta" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "Colocar o rótulos fora a torta?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" -msgstr "Posição do rótulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +#, fuzzy +msgid "Pie Chart (legacy)" +msgstr "Gráfico de linhas (herdado)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" -msgstr "Rótulo limite" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" +msgstr "Frequência" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" -msgstr "Rotulagem" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "Ano (freq=AS)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" -msgstr "Rótulos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "52 semanas iniciando Segunda-feira (freq=52S-SEG)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" -msgstr "Rótulos para o marcador linhas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "1 semana com início na Domingo (freq=S-DOM)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" -msgstr "Rótulos para o marcadores" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" +msgstr "1 semana com início na Segunda-feira (freq=S-SEG)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" -msgstr "Rótulos para os intervalos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "Dia (freq=D)" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" -msgstr "Grande" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "4 semanas (freq=4S-SEG)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" -msgstr "Último" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." +msgstr "" +"A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem " +"fornecer um alias de deslocamento \"Pandas\".\n" +" Clique no balão de informações para obter mais detalhes sobre as " +"expressões \"freq\" aceitas." -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Última alteração" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" +msgstr "Pivô de período de série temporal" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Última modificação" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" +msgstr "Fórmula" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Última atualização %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" +msgstr "Evento" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" -msgstr "Última atualização %s por %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" +msgstr "Intervalo" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" -msgstr "Último valor disponível visto em %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" +msgstr "Pilha" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Última modificação" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" +msgstr "Fluxo" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Última modificação por %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" +msgstr "Expandir" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Última execução" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "Mostrar legenda" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" -msgstr "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "Se deve ser exibida uma legenda para o gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" -msgstr "Latitude da janela de visualização padrão" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "Margem" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Configuração de camadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "Preenchimento adicional da legenda." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" -msgstr "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" +msgstr "Rolagem" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" -msgstr "Elementos de layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "Simples" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" -msgstr "Tipo de layout de gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "Tipo de legenda" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" -msgstr "Tipo de layout de árvore" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" +msgstr "Orientação" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" -msgstr "" -"Os nós folha que representam menos do que este número de eventos serão " -"inicialmente ocultados na visualização" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" +msgstr "Parte inferior" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "Modificação mais recente" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" +msgstr "Direito" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" -msgstr "Esquerda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" +msgstr "Orientação de legenda" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:72 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" -msgstr "Formato do eixo esquerdo" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" +msgstr "Mostrar valor" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:68 -msgid "Left Axis Metric" -msgstr "Eixo esquerdo métrico" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" +msgstr "Mostrar valores de série sobre o gráfico" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" -msgstr "Gráfico(s) do eixo esquerdo" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "Empilhar séries umas sobre as outras" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" -msgstr "Margem Esquerda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "Apenas Total" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -"Margem esquerda, em pixels, permitindo mais espaço para os rótulos dos " -"eixos" +"Mostrar apenas o valor total no gráfico empilhado, e não mostrar na " +"categoria selecionada" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" -msgstr "Esquerda para Direita" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" +msgstr "Limiar da Porcentagem" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" -msgstr "Valor esquerdo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "Limiar mínimo em pontos percentuais para mostrar as etiquetas." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "Legado" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "Dica avançada" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" -msgstr "Legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "Mostra uma lista de todas as séries disponíveis nesse ponto no tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" -msgstr "Formato de legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" +msgstr "Formato de hora da dica de ferramenta" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -msgid "Legend Orientation" -msgstr "Orientação de legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "Classificação da dica de ferramenta por métrica" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" -msgstr "Posição da legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "" +"Se a dica de ferramenta deve ser classificada pela métrica selecionada em" +" ordem decrescente." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" -msgstr "Tipo de legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "Dica" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" -msgstr "Menor ou igual (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" +msgstr "Ordenar séries por" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" -msgstr "Menos que (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "Com base no que as séries devem ser ordenadas no gráfico e na legenda" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" -msgstr "Precisão da percentagem de elevação" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" +msgstr "Ordenar séries em ordem crescente" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" -msgstr "Claro" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "Ordenar as séries por ordem crescente" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" -msgstr "Modo claro" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "Rodar o rótulo do eixo x" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" -msgstr "Como" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "" +"O campo de entrada suporta uma rotação personalizada, por exemplo, 30 " +"para 30°" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" -msgstr "Como (não diferencia maiúsculas de minúsculas)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" +msgstr "Ordem da série" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Limite atingido" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Truncar Eixo Y" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "Valores limite do seletor" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#, fuzzy +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." +msgstr "" +"Truncar Eixo Y. Pode ser substituído pela especificação de um limite " +"mínimo ou máximo." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" -msgstr "Tipo de limite" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "Eixo Y limites" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +#, fuzzy msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -"Limitar as linhas pode resultar em dados incompletos e gráficos errôneos." -" Em vez disso, considere filtrar ou agrupar nomes de origem/destino." +"Limites para o eixo. Quando deixados em branco, os limites são definidos " +"dinamicamente com base no mínimo/máximo dos dados. Observe que esse " +"recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." -msgstr "Limita o número de células recuperadas." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "Combinar Métricas" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "Limita o número de linhas exibidas." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +#, fuzzy +msgid "Show minor ticks on axes." +msgstr "Se devem ser mostrados ticks menores no eixo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -"Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma" -" fase extra em que não há suporte para subconsultas) é aplicada para " -"limitar o número de séries que são obtidas e renderizadas. Esse recurso é" -" útil ao agrupar por coluna(s) de alta cardinalidade, embora aumente a " -"complexidade e o custo da consulta." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" -msgstr "Linha" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" +msgstr "Último valor disponível visto em %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -#: superset-frontend/plugins/preset-chart-xy/src/Line/createMetadata.ts:26 -msgid "Line Chart" -msgstr "Gráfico de linhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" +msgstr "Não atualizado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" -msgstr "Gráfico de linhas (herdado)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Sem dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" -msgstr "Estilo da linha" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" +msgstr "" +"Não há dados após a filtragem ou os dados são NULL para o último registo " +"de tempo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -"O gráfico de linhas é utilizado para visualizar as medições efetuadas " -"numa determinada categoria. O gráfico de linhas é um tipo de gráfico que " -"apresenta informações como uma série de pontos de dados ligados por " -"segmentos de linha reta. É um tipo básico de gráfico comum em muitos " -"domínios." +"Tente aplicar filtros diferentes ou garantir que sua fonte de dados tenha" +" dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" -msgstr "Linha interpolação conforme definido por d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "Tamanho da Fonte do Número Grande" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "Largura da linha" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "Minúsculo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" -msgstr "Esquema de Cores Linear" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "Pequeno" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Esquema de cores linear" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "Normal" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" -msgstr "Interpolação linear" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" +msgstr "Grande" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -msgid "Lines column" -msgstr "Coluna de linhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "Enorme" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" -msgstr "Codificação de linhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "Tamanho da fonte do subtítulo" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Link copiado!" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" +msgstr "Configurações de exibição" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" +msgstr "Subtítulo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "Texto descritivo que aparece abaixo do seu Número Grande" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" +msgstr "Formato da data" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "Listar consulta salva" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" +msgstr "Forçar o formato da data" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" +msgstr "" +"Usar formatação de data mesmo quando o valor da métrica não for um " +"carimbo de data/hora" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" -msgstr "Listar valores exclusivos" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Formatação condicional" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" -msgstr "Lista de colunas extra disponibilizadas em funções JavaScript" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Aplicar formatação de cor condicional a métricas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." -msgstr "Lista de n+1 valores para a métrica de agrupamento em n agrupamentos." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." +msgstr "" +"Apresenta uma única métrica em primeiro plano. Um número grande é melhor " +"utilizado para chamar a atenção para um KPI ou para aquilo em que " +"pretende que o seu público se concentre." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" -msgstr "Lista de valores a marcar com linhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "Um grande número" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" -msgstr "Lista de valores para marcar com triângulos" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "Com um subtítulo" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" -msgstr "Lista atualizada" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Número grande" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "Editor de CSS em tempo real" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "Lag do Período de comparação" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" -msgstr "Renderização em tempo real" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "Com base na granularidade, número de períodos de tempo para comparação" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Carregar um modelo CSS" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "Sufixo de comparação" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Dados carregados em cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "Sufixo para aplicar após a apresentação da percentagem" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Carregado da cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "Mostrar Carimbo de data/hora" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" -msgstr "Carregando" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "Se deve ser exibido o registro de data e hora" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "Carregando..." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "Mostrar Linha de Tendência" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -msgid "Locate the chart" -msgstr "Localize o gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "Se a linha de tendência deve ser exibida" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" -msgstr "Escala Log" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "Iniciar o eixo y em 0" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Log retention" -msgstr "Retenção de log" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" +"Iniciar o eixo y em zero. Desmarque para iniciar o eixo y no valor mínimo" +" dos dados." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" -msgstr "Eixo Logarítmico" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "Corrigir para o intervalo de tempo selecionado" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" -msgstr "Escala logarítmica no eixo y primário" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" +"Corrigir a linha de tendência para o intervalo de tempo completo " +"especificado no caso dos resultados filtrados não incluírem as datas de " +"início ou fim" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" -msgstr "Escala logarítmica no eixo y secundário" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" +msgstr "EIXO X TEMPORAL" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" -msgstr "Eixo y logarítmico" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "" +"Apresenta um único número acompanhado por um gráfico de linhas simples, " +"para chamar a atenção para uma métrica importante juntamente com a sua " +"alteração ao longo do tempo ou outra dimensão." -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Entrar" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Número grande com Trendline" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" -msgstr "Fazer login com" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "Opções de Whisker/outlier" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Sair" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "Determina como whiskers e outliers são calculados." -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" +msgstr "Tukey (inglês)" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" -msgstr "Traço longo" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "Mín/máx (sem outliers)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "2/98 percentis" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" -msgstr "Longitude e Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "9/91 percentis" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Colunas de latitude e longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "Categorias para grupo por sobre o eixo x." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" -msgstr "Longitude e Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" +msgstr "Distribuir em" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" -msgstr "Longitude da viewport padrão" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." +msgstr "Colunas para calcular a distribuição entre." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." +msgstr "" +"Também conhecida como gráfico de caixa e bigode, esta visualização " +"compara as distribuições de uma métrica relacionada em vários grupos. A " +"caixa no meio enfatiza a média, a mediana e os dois quartis internos. Os " +"bigodes em torno de cada caixa visualizam o mínimo, o máximo, o intervalo" +" e os dois quartis externos." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "MAIO" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "ECharts" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "SEG" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +#, fuzzy +msgid "Bubble size number format" +msgstr "Formato de número pequenoo" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Coluna principal de data e hora" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Gráfico de bolhas" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -"Certifique-se de que os controles estão corretamente configurados e que a" -" fonte de dados contém dados para o intervalo de tempo selecionado" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -"Pedido malformado. Os argumentos slice_id ou table_name e db_name são " -"esperados" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Gerenciar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +#, fuzzy +msgid "Logarithmic x-axis" +msgstr "Eixo y logarítmico" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" -msgstr "Gerenciar relatório de e-mail" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +#, fuzzy +msgid "Rotate y axis label" +msgstr "Rodar o rótulo do eixo x" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" -msgstr "Gerenciar seus bancos de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "MARGEM DO TÍTULO DO EIXO Y" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "Obrigatório" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "Eixo y logarítmico" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." -msgstr "Definir manualmente os valores mínimo/máximo para o eixo y." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "Truncar Eixo Y" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" -msgstr "Mapa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +msgstr "" +"Truncar Eixo Y. Pode ser substituído pela especificação de um limite " +"mínimo ou máximo." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" -msgstr "Estilo do mapa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Tipo de cálculo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" -msgstr "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." +msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Março" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" -msgstr "Margem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +#, fuzzy +msgid "Percent of total" +msgstr "do total" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "Marcar uma coluna como temporal no modal \"Edit datasource\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" +msgstr "Rótulos" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" -msgstr "Marcador" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Conteúdo da célula" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" -msgstr "Tamanho do marcador" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Categoria e Porcentagem" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" -msgstr "Rótulos de marcadores" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +#, fuzzy +msgid "What should be shown as the label" +msgstr "O que deve constar no rótulo?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" -msgstr "Rótulos de linhas de marcação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Conteúdo da célula" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" -msgstr "Linhas de marcação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +#, fuzzy +msgid "What should be shown as the tooltip label" +msgstr "O que deve constar no rótulo?" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" -msgstr "Tamanho do marcador" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "Se os rótulos devem ser exibidos." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" -msgstr "Marcadores" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "Mostrar os totais" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Tipo de marcação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "Se os rótulos devem ser exibidos." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Máx" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." +msgstr "" +"Mostra como uma métrica muda à medida que o funil progride. Este gráfico " +"clássico é útil para visualizar a queda entre as fases de um pipeline ou " +"ciclo de vida." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" -msgstr "Tamanho máximo da bolha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" +msgstr "Gráfico de funil" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" -msgstr "Max Eventos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "Sequencial" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" -msgstr "Máximo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "Colunas para agrupar por" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" -msgstr "Tamanho Máximo da Fonte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "Em geral" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" -msgstr "Raio Máximo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Min" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." -msgstr "" -"Tamanho máximo do raio do círculo, em pixels. À medida que o nível de " -"zoom muda, isto assegura que o círculo respeite este raio máximo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "Valor mínimo no eixo do medidor" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Maximum value" -msgstr "Valor máximo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Máx" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 msgid "Maximum value on the gauge axis" msgstr "Valor máximo no eixo do medidor" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Maio" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" -msgstr "Média dos valores durante o período especificado" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Mean values" -msgstr "Valores médios" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" -msgstr "Mediana" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." -msgstr "" -"Largura mediana da aresta, a aresta mais grossa será 4 vezes mais grossa " -"do que a mais fina." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "Ângulo inicial" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" -msgstr "Tamanho médio do nó, o nó maior será 4 vezes maior do que o mais pequeno" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "Ângulo em que inicia o eixo de progressão" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" -msgstr "Valores médios" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "Ângulo final" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" -msgstr "Médio" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "Ângulo em que termina o eixo de progressão" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" -msgstr "Acionador de ações do menu" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "Tamanho da Fonte" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "Conteúdo da Mensagem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "" +"Tamanho da Fonte para rótulos de eixo, detalhes de valor e outros " +"elementos de texto" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" -msgstr "Metadados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "Formato do valor" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" -msgstr "Parâmetros de metadados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "" +"Texto adicional para adicionar antes ou depois o valor, por exemplo, " +"unidade" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "Os metadados foram sincronizados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "Mostrar ponteiro" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "Método" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "Se o ponteiro deve ser exibido" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" +msgstr "Animação" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "Métrica '%(métric)s' não existe" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "Se deseja animar o progresso e o valor ou apenas exibi-los" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" -msgstr "Métrica crescente" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "Eixo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Métrica atribuída para o eixo [X]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "Mostrar os tiques das linhas de eixo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Métrica atribuída para o eixo [Y]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "Se devem ser mostrados ticks menores no eixo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" -msgstr "Alteração do valor da métrica de `desde` a `até`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "Mostrar linhas divididas" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" -msgstr "Métrica decrescente" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "Se devem ser mostradas as linhas divididas no eixo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" -msgstr "Alteração do fator métrico de `since` para `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" +msgstr "Número de divisão" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" -msgstr "Métrica para valores de nó" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "Número de segmentos divididos no eixo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -msgid "Metric name" -msgstr "Nome da métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "Progresso" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "Métrica nome [%s] está duplicada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "Mostrar progresso" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" -msgstr "Métrica de variação percentual do valor de `desde` até `até`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "Se deve mostrar o progresso do gráfico do medidor" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" -msgstr "Métrica que define o tamanho da bolha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" +msgstr "Sobreposição" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" -msgstr "Métrica para exibir o título inferior" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" +msgstr "Se a barra de progresso se sobrepõe quando há vários grupos de dados" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Métrica para organizar o resultados por" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "Tampa circular" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "Métrica usada como peso para coloração de grid" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "Estilizar as extremidades da barra de progresso com uma tampa redonda" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" -msgstr "Métrica utilizada para calcular o tamanho da bolha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" +msgstr "Intervalos" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" -msgstr "Métrica utilizada para controlar a altura" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "Limites de intervalo" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -"Métrica utilizada para definir a forma como as séries de topo são " -"ordenadas se estiver presente um limite de série ou de célula. Se não for" -" definida, reverte para a primeira métrica (quando apropriado)." +"Limites de intervalos separados por vírgulas, por exemplo, 2,4,5 para " +"intervalos 0-2, 2-4 e 4-5. O último número deve corresponder ao valor " +"fornecido para MAX." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." -msgstr "" -"Métrica utilizada para definir a forma como as séries de topo são " -"ordenadas se estiver presente um limite de série ou de linha. Se não for " -"definida, reverte para a primeira métrica (quando apropriado)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" +msgstr "Cores do intervalo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -"Métrica utilizada para ordenar o limite se estiver presente um limite de " -"série. Se não for definida, reverte para a primeira métrica (quando " -"apropriado)." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Métricas" +"Escolhas de cores separadas por vírgulas para os intervalos, por exemplo," +" 1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e" +" são indexados a 1. O comprimento deve corresponder ao dos limites do " +"intervalo." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -"Métricas para as quais a porcentagem do total deve ser exibida. Calculado" -" apenas com base nos dados dentro do limite de linhas." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" -msgstr "Médio" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" -msgstr "Meia-noite" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -msgid "Miles" -msgstr "Milhas" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Min" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" -msgstr "Períodos mínimos" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" -msgstr "Largura mínima" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "Períodos mínimos" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:48 -msgid "Min/max (no outliers)" -msgstr "Mín/máx (sem outliers)" - -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "Meu" +"Usa um medidor para mostrar o progresso de uma métrica em direção a uma " +"meta. A posição do mostrador representa o progresso e o valor do terminal" +" no medidor representa o valor-alvo." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" -msgstr "Mínimo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" +msgstr "Gráfico de medidores" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" -msgstr "Tamanho Mínimo da Fonte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "Nome dos nós de origem" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" -msgstr "Raio Mínimo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "Nome dos nós de destino" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" -msgstr "Contagem mínima de eventos de nó folha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "Categoria de origem" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -"Tamanho mínimo do raio do círculo, em pixels. À medida que o nível de " -"zoom muda, isto assegura que o círculo respeita este raio mínimo." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." -msgstr "Limiar mínimo em pontos percentuais para mostrar as etiquetas." +"A categoria dos nós de origem utilizada para atribuir cores. Se um nó " +"estiver associado a mais do que uma categoria, apenas a primeira será " +"utilizada." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Minimum value" -msgstr "Valor mínimo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "Categoria de destino" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." -msgstr "Valor mínimo para o rótulo a apresentar no gráfico." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "Categoria dos nós de destino" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" -msgstr "Valor mínimo no eixo do medidor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "Opções do gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" -msgstr "Linha de divisão menor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "Layout" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "Minuto" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "Layout do gráfico" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" -msgstr "Minutos %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "Forçar" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" -msgstr "Parâmetros de URL ausentes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "Tipo de layout de gráfico" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "Conjunto de dados ausentes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "Símbolos de borda" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Chart" -msgstr "Gráfico misto" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "Símbolo de duas extremidades da linha de borda" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "Séries Temporais Mistas" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Modificado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "Nenhum -> Nenhum" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" -msgstr "Modificado %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "Nenhum -> Seta" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Modificado por" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "Círculo -> Seta" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "Colunas modificadas: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "Círculo -> Círculo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Segunda-feira" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "Ativar arrastar nó" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "Mês" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "Se deve permitir o arrastamento de nós no modo de layout forçado." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" -msgstr "Meses %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "Habilitar gráfico de roaming" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -msgid "More" -msgstr "Mais informações" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "Desativado" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -msgid "More filters" -msgstr "Mais filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "Dimensionar apenas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 msgid "Move only" msgstr "Mover apenas" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "Move o conjunto de datas dado por um intervalo especificado." - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" -msgstr "Multidimensões" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "Dimensionar e deslocar" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:39 -msgid "Multi-Layers" -msgstr "Múltiplas Camadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "Se deve permitir a alteração da posição e da escala do gráfico." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" -msgstr "Multiníveis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "Modo de seleção de nó" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" -msgstr "Multi-Variáveis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "Individual" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 msgid "Multiple" msgstr "Múltiplos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" -msgstr "Gráficos de linhas múltiplas" - -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." -msgstr "" -"Não são permitidas várias extensões de ficheiros para upload em colunas. " -"Certifique-se de que todos os ficheiros têm a mesma extensão." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" -msgstr "Filtragem múltipla" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "Permitir seleções de nós" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" -msgstr "" -"São aceitos vários formatos, consulte a biblioteca Python geopy.points " -"para mais detalhes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "Rótulo limite" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" -msgstr "" -"São permitidas seleções múltiplas, caso contrário o filtro limita-se a um" -" único valor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "Valor mínimo para o rótulo a apresentar no gráfico." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" -msgstr "Multiplicador" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" +msgstr "Tamanho do nó" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "Deve ser único" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "Tamanho médio do nó, o nó maior será 4 vezes maior do que o mais pequeno" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" -msgstr "Deve escolher um gráfico ou um painel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" +msgstr "Largura da borda" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Deve ter uma coluna [Agrupar por] para ter 'count' como [Rótulo]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "" +"Largura mediana da aresta, a aresta mais grossa será 4 vezes mais grossa " +"do que a mais fina." -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Deve ter pelo menos uma coluna numérica especificada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "Comprimento da borda" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" -msgstr "Forneça credenciais para o Túnel SSH" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "Comprimento da borda entre nós" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" -msgstr "Deve especificar um valor para filtros com operadores de comparação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "Gravidade" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" -msgstr "As minhas lindas cores" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "Força para puxar o gráfico para o centro" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" -msgstr "Minha coluna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" +msgstr "Repulsão" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Minha métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "Força de repulsão entre nós" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" -msgstr "N/D" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" +msgstr "Atrito" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" -msgstr "NÃO AGRUPADO POR" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "Atrito entre nós" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" +"Apresenta ligações entre entidades numa estrutura gráfica. Útil para " +"mapear relações e mostrar quais os nós que são importantes numa rede. Os " +"gráficos podem ser configurados para serem dirigidos à força ou " +"circularem. Se os seus dados tiverem um componente geoespacial, " +"experimente o gráfico de arco deck.gl." -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "AGORA" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "Gráfico" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -msgid "NUMERIC" -msgstr "NUMÉRICO" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "Estrutural" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Nome" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Se a classificação deve ser descendente ou ascendente" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "O nome é obrigatório" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" +msgstr "Tipo de série" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "O nome deve ser único" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "Linha Suave" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." -msgstr "Nome da tabela a ser criada a partir de dados colunares." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "Passo - início" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Nome da tabela a ser criada a partir dos dados do Excel." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "Passo - meio" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" -msgstr "Nome da tabela a ser criada com o arquivo CSV" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "Etapa - fim" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" -msgstr "Nome da coluna que contém o id do nó pai" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "Tipo de Gráfico de série (linha , barra etc)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" -msgstr "Nome da coluna id" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "Empilhar série" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" -msgstr "Nome dos nós de origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" +msgstr "Gráfico de área" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Nome da tabela que existe no banco de dados de origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "Desenhar área sob curvas. Aplicável apenas para tipos de linha." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" -msgstr "Nome dos nós de destino" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "Opacidade do gráfico de área." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" -msgstr "Nome do seu banco de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "Marcador" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" -msgstr "Precisa de ajuda? Aprenda como conectar seu banco de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "" +"Desenha um marcador nos pontos de dados. Apenas aplicável a tipos de " +"linha." -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" -msgstr "Precisa de ajuda? Saiba mais sobre" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "Tamanho do marcador" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" -msgstr "Erro de rede" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "Tamanho do marcador. Também se aplica às observações de previsão." -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Erro de rede." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "Primário" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Novo gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "Secundário" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "Novas colunas adicionadas: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "Eixo y primário ou secundário" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -msgid "New dataset" -msgstr "Novo conjunto de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +#, fuzzy +msgid "Shared query fields" +msgstr "consultas salvas" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" -msgstr "Novo nome do conjunto de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" +msgstr "Consulta A" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "Novo conjunto de filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" +msgstr "Análise avançada Consulta A" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -msgid "New header" -msgstr "Novo cabeçalho" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" +msgstr "Consulta B" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "Nova aba" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" +msgstr "Análise avançada Consulta B" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" -msgstr "Nova guia (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "Zoom de dados" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" -msgstr "Nova guia (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "Ativar controles de zoom de dados" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Próximo" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "Linha de divisão menor" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" -msgstr "Gráfico Nightingale Rose" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "Desenhar linhas de divisão para os ticks menores do eixo y" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "Não" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Formato do eixo y primário" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "Sem %s ainda" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Limites para o eixo Y. Quando deixados em branco, os limites são " +"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " +"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Sem acesso!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "Formato do eixo y primário" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" -msgstr "Sem dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "Escala logarítmica no eixo y primário" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" -msgstr "Sem resultados" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Formato do eixo y secundário" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 #, fuzzy -msgid "No Rules yet" -msgstr "Ainda não há registros" +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Limites para o eixo Y. Quando deixados em branco, os limites são " +"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " +"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -msgid "No annotation layers" -msgstr "Nenhuma camada de anotação" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "Formato do eixo y secundário" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Sem camadas de anotação ainda" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +#, fuzzy +msgid "Secondary currency format" +msgstr "Formato do eixo y secundário" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Sem anotação ainda" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "Título secundário do eixo y" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -msgid "No applied filters" -msgstr "Nenhum filtro aplicado" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "Escala logarítmica no eixo y secundário" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." -msgstr "Não há filtros disponíveis." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" +"Visualize duas séries diferentes usando o mesmo eixo x. Observe que ambas" +" as séries podem ser visualizadas com um tipo de gráfico diferente (por " +"exemplo, uma usando barras e outra usando uma linha)." -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Sem gráficos" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" +msgstr "Gráfico misto" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -msgid "No charts yet" -msgstr "Ainda não há gráficos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "Colocar rótulos no exterior da torta?" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "Linha de rótulos" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "Sem colunas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "" +"Desenhar uma linha da torta para rótulo quando as etiquetas estão no " +"exterior?" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -msgid "No columns found" -msgstr "Nenhuma coluna encontrada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" +msgstr "Mostrar total" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" -msgstr "Não foram encontradas colunas compatíveis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "Se deve ser exibida a contagem agregada" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" -msgstr "Não foram encontrados conjuntos de dados compatíveis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "Formato de torta" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" -msgstr "Nenhum esquema compatível foi encontrado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "Raio Exterior" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Sem paineis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "Borda externa do gráfico de pizza" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -msgid "No dashboards yet" -msgstr "Ainda não há painéis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "Raio interior" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Sem dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "Raio interior do buraco de rosquinha" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -"Não há dados após a filtragem ou os dados são NULL para o último registo " -"de tempo" +"O clássico. Ótimo para mostrar quanto de uma empresa cada investidor " +"recebe, que dados demográficos seguem o seu blog ou que parte do " +"orçamento vai para o complexo industrial militar.\n" +"\n" +" Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se " +"a clareza da proporção relativa for importante, considere utilizar um " +"gráfico de barras ou outro tipo de gráfico." -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "Não há dados no arquivo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "Gráfico de pizza" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" -msgstr "Nenhuma tabela de banco de dados encontrada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" +msgstr "Total: %s" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "Nenhum banco de dados corresponde a sua pesquisa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "O valor máximo de métricas. Trata-se de uma configuração opcional" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:846 -msgid "No description available." -msgstr "Nenhuma descrição disponível." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "Posição do rótulo" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "Ainda não há gráficos favoritos, clique nas estrelas!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "Radar" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Ainda não há painéis favoritos, clique nas estrelas!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "Personalizar métricas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" -msgstr "Sem filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "Personalizar ainda mais como exibir cada métrica" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Nenhum filtro selecionado." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "Forma de radar circular" -#: superset-frontend/src/components/Table/index.tsx:204 -msgid "No filters" -msgstr "Sem filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "" +"Tipo de renderização do radar, se deve ser apresentada a forma de " +"'círculo'." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." -msgstr "Nenhum filtro foi adicionado a esse painel no momento." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" +"Visualize um conjunto paralelo de métricas em vários grupos. Cada grupo é" +" visualizado usando sua própria linha de pontos e cada métrica é " +"representada como uma borda no gráfico." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" -msgstr "Nenhuma configuração de formulário foi mantida" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" +msgstr "Gráfico de Radar" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" -msgstr "Nenhum filtro global está atualmente adicionado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "Métrica primária" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "A métrica primária é usada para definir os tamanhos dos segmentos de arco" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "Métrica secundária" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" +msgstr "" +"[opcional] essa métrica secundária é usada para definir a cor como uma " +"proporção em relação à métrica primária. Quando omitida, a cor é " +"categórica e baseada em rótulos" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" -msgstr "Não foram encontrados registros correspondentes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" +"Quando apenas uma métrica primária é fornecida, é usada uma escala de " +"cores categórica." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" -msgstr "Número de lixeiras" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" +"Quando uma métrica secundária é fornecida, uma escala de cores linear é " +"usada." -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" -msgstr "Ainda não há registros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "Hierarquia" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Não foram encontrados registos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" +"Define os níveis hierárquicos do gráfico. Cada nível é\n" +" representado por um anel, sendo o círculo mais interno o topo da " +"hierarquia." -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" -msgstr "Nenhum resultado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "" +"Usa círculos para visualizar o fluxo de dados em diferentes estágios de " +"um sistema. Passe o mouse sobre caminhos individuais na visualização para" +" entender os estágios de um valor. Útil para funis e pipelines de " +"visualização de vários estágios e vários grupos." -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Não foram encontrados resultados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "Gráfico Sunburst" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" -msgstr "Nenhum resultado corresponde aos seus critérios de filtragem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "Multiníveis" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" -msgstr "Não foram apresentados resultados para esta consulta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" +"Ao usar uma formatação diferente da adaptativa, os rótulos podem se " +"sobrepor" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -"Não foram apresentados resultados para esta consulta. Se esperava que " -"fossem devolvidos resultados, certifique-se de que todos os filtros estão" -" corretamente configurados e que a fonte de dados contém dados para o " -"intervalo de tempo selecionado." +"Canivete suíço para visualizar dados. Escolha entre gráficos de etapas, " +"de linhas, de dispersão e de barras. Esse tipo de visualização também tem" +" muitas opções de personalização." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" -msgstr "Não foram devolvidas linhas para este conjunto de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" +msgstr "Gráfico genérico" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" -msgstr "Não foram devolvidas amostras para este conjunto de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "área de zoom" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" -msgstr "Nenhuma expressão salva foi encontrada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" +msgstr "restaurar zoom" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" -msgstr "Nenhuma métrica salva foi encontrada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" +msgstr "Estilo da série" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -msgid "No saved queries yet" -msgstr "Ainda não há consultas salvas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" +msgstr "Opacidade do gráfico de área" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" -msgstr "" -"Não foram encontrados resultados armazenados, é necessário executar " -"novamente a consulta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "Opacidade do gráfico de áreas. Também se aplica à banda de confiança." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "Tamanho do marcador" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -"Não foi encontrada tal coluna. Para filtrar uma métrica, experimente a " -"aba SQL personalizado." +"Os gráficos de área são semelhantes aos gráficos de linhas na medida em " +"que representam variáveis com a mesma escala, mas os gráficos de área " +"empilham as métricas umas sobre as outras." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -msgid "No table columns" -msgstr "Nenhuma coluna da tabela" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "Gráfico de área" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" -msgstr "Não foram encontradas colunas temporais" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" +msgstr "Título do eixo" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "Sem colunas de tempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "MARGEM DO TÍTULO DO EIXO" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "Sem validador encontrado (configurado para o motor)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" +msgstr "POSIÇÃO DO TÍTULO DO EIXO" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" -msgstr "Sem validador nomeado {} encontrado (configurado para o motor {})" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" +msgstr "Formato do eixo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" -msgstr "Posição do rótulo do nó" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" +msgstr "Eixo Logarítmico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" -msgstr "Modo de seleção de nó" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "Desenhar linhas de divisão para os ticks do eixo secundário" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" -msgstr "Tamanho do nó" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" +msgstr "Truncar eixo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 -msgid "None" -msgstr "Nenhum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "Não é recomendado truncar o eixo no gráfico de barras." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" -msgstr "Nenhum -> Seta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" +msgstr "Limites do eixo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "Nenhum -> Nenhum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Limites para o eixo. Quando deixados em branco, os limites são definidos " +"dinamicamente com base no mínimo/máximo dos dados. Observe que esse " +"recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" +msgstr "Orientação do gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" -msgstr "Normalizar em" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" +msgstr "Orientação da barra" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" -msgstr "Normalizado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" +msgstr "Horizontal" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" -msgstr "Não é uma série temporal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" +msgstr "Orientação do gráfico de barras" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -msgid "Not added to any dashboard" -msgstr "Não adicionado a nenhum painel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "" +"Os gráficos de barras são usados para mostrar as métricas como uma série " +"de barras." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" -msgstr "Não disponível" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" +msgstr "Gráfico de barras" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" -msgstr "Diferente de (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." +msgstr "" +"O gráfico de linhas é utilizado para visualizar as medições efetuadas " +"numa determinada categoria. O gráfico de linhas é um tipo de gráfico que " +"apresenta informações como uma série de pontos de dados ligados por " +"segmentos de linha reta. É um tipo básico de gráfico comum em muitos " +"domínios." -#: superset-frontend/src/explore/constants.ts:72 -msgid "Not in" -msgstr "Não está em" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" +msgstr "Gráfico de linhas" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." +msgstr "" +"O gráfico de dispersão tem o eixo horizontal em unidades lineares e os " +"pontos estão ligados por ordem. Mostra uma relação estatística entre duas" +" variáveis." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "Gráfico de dispersão" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 -msgid "Not null" -msgstr "Não nulo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." +msgstr "" +"A linha suave é uma variação do gráfico de linhas. Sem ângulos nem " +"arestas, a linha suave tem por vezes um aspecto mais inteligente e " +"profissional." -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" -msgstr "Não acionado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "Tipo de etapa" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" -msgstr "Não atualizado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Iniciar" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Nada foi acionado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" +msgstr "Médio" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "Método de notificação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Fim" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "Novembro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "" +"Define se o etapa deve aparecer no o começo , meio ou fim entre dois " +"pontos de dados" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" -msgstr "Agora" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" +"O gráfico de linhas escalonadas (também designado por gráfico de passos) " +"é uma variação do gráfico de linhas, mas com a linha a formar uma série " +"de passos entre os pontos de dados. Um gráfico escalonado pode ser útil " +"quando se pretende mostrar as alterações que ocorrem em intervalos " +"irregulares." -#: superset/views/database/forms.py:211 -msgid "Null Values" -msgstr "Valores nulos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" +msgstr "Linha escalonada" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" -msgstr "Imputação nula" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "Id" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Nulo ou Vazio" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "Nome da coluna id" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Valores nulos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" +msgstr "Pai" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" -msgstr "Formato do número" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "Nome da coluna que contém o id do nó pai" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." -msgstr "" -"Limites numéricos utilizados para a codificação de cores de vermelho para" -" azul.\n" -" Inverta os números de azul para vermelho. Para obter vermelho ou azul " -"puro,\n" -" pode introduzir apenas o mínimo ou o máximo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "Nome opcional da coluna de dados." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" -msgstr "Formato numérico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "ID do nó raiz" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" -msgstr "String de formato de número" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "Id do nó raiz da árvore." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" -msgstr "Número de compartimentos para agrupar dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "Métrica para valores de nó" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" -msgstr "Número de dígitos decimais para arredondar os números" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "Layout da árvore" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "Número de casas decimais para exibir valores de elevação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "Ortogonal" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "Número de casas decimais para exibir valores-p" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" +msgstr "Radial" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" -msgstr "Número de períodos para comparar com" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "Tipo de layout de árvore" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" -msgstr "Número de períodos para razão contra" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" +msgstr "Orientação da árvore" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" -msgstr "Número de linhas do arquivo a ser lido" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" +msgstr "Esquerda para Direita" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "Número de linhas do arquivo a ser lido." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "Direita para Esquerda" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" -msgstr "Número de linhas a serem ignoradas no início do arquivo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "De cima para baixo" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "Número de linhas para pular no início do arquivo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "De baixo para cima" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" -msgstr "Número de segmentos divididos no eixo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "Orientação da árvore" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "Número de passos a dar entre os tiques ao apresentar a escala X" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "Posição do rótulo do nó" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "Número de passos a dar entre os tiques ao apresentar a escala Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "esquerda" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" -msgstr "Faixa numérica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" +msgstr "superior" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "OUT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" +msgstr "direito" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" +msgstr "fundo" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "SOBRESCREVER" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" +msgstr "Posição do rótulo do nó intermédio na árvore" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Outubro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "Posição do rótulo filho" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "Posição do rótulo do nó filho na árvore" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Deslocamento" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "Ênfase" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" -msgstr "Na Graça" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "ancestral" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." -msgstr "" -"Uma ou várias colunas para agrupar. Os agrupamentos de elevada " -"cardinalidade devem incluir um limite de séries para limitar o número de " -"séries obtidas e processadas." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +#, fuzzy +msgid "descendant" +msgstr "Ordenação decrescente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." -msgstr "" -"Uma ou várias colunas para agrupar. Os agrupamentos de elevada " -"cardinalidade devem incluir uma ordenação por métrica e um limite de " -"séries para limitar o número de séries obtidas e processadas." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "Qual parentes para destaque sobre passe o mouse" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 #, fuzzy -msgid "One or many columns to pivot as columns" -msgstr "Um ou mais controles a dinamizar como colunas" +msgid "Symbol" +msgstr "Símbolos de borda" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." -msgstr "" -"Um ou vários controles para agrupar. Em caso de agrupamento, as colunas " -"de latitude e longitude devem estar presentes." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "Círculo vazio" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "Um ou mais controles a dinamizar como colunas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" +msgstr "Círculo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Uma ou muitos métricas para exibir" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" +msgstr "Retângulo" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "Uma ou mais colunas já existem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "Triângulo" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "Uma ou mais colunas estão duplicadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "Diamante" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "Um ou mais colunas não existem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "Pino" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Uma ou mais métricas já existem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "Seta" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Um ou mais métricas estão duplicadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" +msgstr "Tamanho do símbolo" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Um ou mais métricas não existem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "Tamanho dos símbolos de aresta" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -"Um ou mais parâmetros necessários para configurar um banco de dados estão" -" faltando." +"Visualize vários níveis de hierarquia usando uma estrutura familiar " +"semelhante a uma árvore." -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "Um ou mais parâmetros especificados na consulta estão malformatados." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "Gráfico de árvore" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." -msgstr "Um ou mais parâmetros especificados na consulta estão faltando." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "Mostrar Sótulos Superiores" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "Mostrar rótulos quando o nó tiver filhos." -#: superset/views/core.py:2029 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "Chave" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -"Um ou mais campos obrigatórios estão em falta no pedido. Tente novamente " -"e, se o problema persistir, contate o seu administrador." - -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "Falha no carregamento de uma ou mais camadas de anotação." +"Mostrar relações hierárquicas de dados, com o valor representado pela " +"área, mostrando a proporção e a contribuição para o todo." -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." -msgstr "Somente comandos SELECT são permitidos nesse banco de dados." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Mapa da árvore" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" -msgstr "Apenas Total" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +#, fuzzy +msgid "Total" +msgstr "do total" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Apenas instruções `SELECT` são permitidas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +#, fuzzy +msgid "Assist" +msgstr "base" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 #, fuzzy -msgid "Only applies when \"Label Type\" is not set to a percentage." -msgstr "" -"Só se aplica quando \"Label Type\" (Tipo de rótulo) não está definido " -"para uma porcentagem." +msgid "Increase" +msgstr "criar" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 #, fuzzy -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "" -"Só se aplica quando \"Label Type\" (Tipo de rótulo) está definido para " -"mostrar valores." +msgid "Decrease" +msgstr "criar" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "Apenas os painéis selecionados serão afetados por este filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Colunas de séries temporais" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -"Mostrar apenas o valor total no gráfico empilhado, e não mostrar na " -"categoria selecionada" - -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "Só são suportadas consultas únicas" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -"Só as seguintes extensões de arquivo são permitidas: " -"%(allowed_extensions)s" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" -msgstr "Ops! Ocorreu um erro!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Pesquisar todos os gráficos" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Opacidade" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "page_size.all" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." -msgstr "Opacidade do gráfico de áreas. Também se aplica à banda de confiança." +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Carregando..." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "Opacidade de todos os clusters, pontos e rótulos. Entre 0 e 1." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" +msgstr "Escreva um modelo de guidão para renderizar os dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." -msgstr "Opacidade do gráfico de área." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "Handlebars" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" -msgstr "Opacidade, espera valores entre 0 e 100" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "deve ter um valor" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Abrir aba fonte de dados" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" +msgstr "Modelo de handlebars" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Abrir no SQL Lab" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "Um modelo de handlebars aplicado aos dados" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Abrir consulta no SQL Lab" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" +msgstr "Incluir horário" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -"Operar o banco de dados em modo assíncrono, o que significa que as " -"consultas são executadas em workers remotos e não no próprio servidor " -"Web. Isso pressupõe que você tenha uma configuração do Celery worker, bem" -" como um backend de resultados. Consulte os documentos de instalação para" -" obter mais informações." - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" -msgstr "Operador" +"Se deve incluir a granularidade de tempo conforme definido na seção de " +"tempo" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Operador indefinido para o agregador: %(name)s" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "Métricas de porcentagem" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -"Conteúdo CA_BUNDLE opcional para validar pedidos HTTPS. Apenas disponível" -" em determinados motores de banco de dados." - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" -msgstr "Cadeia de caracteres opcional de formato de data d3" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" -msgstr "String opcional de formato de número d3" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." -msgstr "Nome opcional da coluna de dados." - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" -msgstr "Aviso opcional sobre o uso dessa métrica" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" -msgstr "Opções" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" -msgstr "Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" -msgstr "Pedido por id da entidade" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "Mostrar os totais" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" -msgstr "Ordenar resultados por colunas selecionadas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." +msgstr "" +"Mostrar agregações totais de métricas selecionadas. Note que o limite de " +"linhas não se aplica ao resultado." #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 msgid "Ordering" msgstr "Pedidos" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -msgid "Orientation" -msgstr "Orientação" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" -msgstr "Orientação do gráfico de barras" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" -msgstr "Orientação de barra de filtro" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" -msgstr "Orientação da árvore" - -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" -msgstr "Original" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Ordem das colunas da tabela original" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "Ordenar resultados por colunas selecionadas" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "Valor original" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Ordenação decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" -msgstr "Ortogonal" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "Paginação do servidor" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" -msgstr "Outro" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" +msgstr "" +"Ativar a paginação dos resultados do lado do servidor (funcionalidade " +"experimental)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" -msgstr "Ao ar livre" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "Comprimento da página do servidor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" -msgstr "Raio Exterior" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "Linhas por página, 0 significa sem paginação" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" -msgstr "Borda externa do gráfico de pizza" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "Modo de consulta" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" -msgstr "Sobreposição" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "Agrupar por , Métricas ou Métricas de porcentagem devem ter um valor" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "" -"Sobrepor um ou mais séries temporais de um período de tempo relativo. " -"Espera deltas de tempo relativo em linguagem natural (exemplo: 24 horas, " -"7 dias , 52 semanas , 365 dias). Livre texto é suportado." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "Você precisa configurar a sanitização de HTML para usar CSS" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "" -"Sobrepor uma ou mais séries temporais de um período de tempo relativo. " -"Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas," -" 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "Estilos CSS" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "CSS aplicado ao gráfico" + +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -"Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite " -"de cada célula." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 #, fuzzy -msgid "Override time grain" -msgstr "Intervalo de tempo de substituição" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" -msgstr "Intervalo de tempo de substituição" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Sobrescrever" +msgid "Range for Comparison" +msgstr "Comparação de tempo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Sobrescrever & Explorar" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "Comparação de tempo" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Substituir o Painel [%s]" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" -msgstr "Substituir colunas duplicadas" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" -msgstr "Sobrescrever existente" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "Colunas para agrupar nas colunas" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Substituir o texto no editor por uma consulta nesta tabela" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Linhas" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" -msgstr "Próprio Criado ou Favorecido" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "Colunas para agrupar nas linhas" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Proprietário" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +#, fuzzy +msgid "Apply metrics on" +msgstr "Minha métrica" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:483 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:527 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:531 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -#: superset-frontend/src/pages/AlertReportList/index.tsx:324 -#: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:400 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Proprietários" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "Use métricas como um grupo de nível superior para colunas ou linhas" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "Proprietários são inválidos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" +msgstr "Limite de célula" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." -msgstr "Os proprietários são uma lista de usuários que podem alterar o painel." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." +msgstr "Limita o número de células recuperadas." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name" -" or username." +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Os proprietários são uma lista de usuários que podem alterar o painel. " -"Pesquisável por nome ou nome de usuário." - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" -msgstr "Comprimento da página" - -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" -msgstr "Tabela teste-t pareado" +"Métrica utilizada para definir a forma como as séries de topo são " +"ordenadas se estiver presente um limite de série ou de célula. Se não for" +" definida, reverte para a primeira métrica (quando apropriado)." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Métodos de reamostragem do Pandas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "Função de agregação" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Regra de reamostragem do Pandas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" +msgstr "Contar" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "Coordenadas paralelas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "Contar valores únicos" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Erro de parâmetro" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" +msgstr "Listar valores exclusivos" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parâmetros" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "Soma" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -#, fuzzy -msgid "Parameters " -msgstr "Parâmetros" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" +msgstr "Média" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" -msgstr "Parâmetros relacionados com a visão e a perspectiva no mapa" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "Mediana" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" -msgstr "Pai" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "Variação da amostra" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "Analisar datas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "Desvio Padrão da Amostra" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" -msgstr "Parte de um Todo" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "Mínimo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" -msgstr "Gráfico de partição" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "Máximo" -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "Diagrama de partição" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "Primeiro" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" -msgstr "Limite de partição" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "Último" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" -msgstr "Limiar de partição" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "Soma como Fração do Total" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" -msgstr "" -"As partições cujas proporções entre a altura e a altura dos pais sejam " -"inferiores a este valor são eliminadas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "Soma como Fração de Linhas" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "Senha" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "Soma como Fração de Colunas" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" -msgstr "Cole a chave privada aqui" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "Contar como fração do Total" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" -msgstr "Colar aqui o conteúdo do arquivo JSON das credenciais de serviço" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "Contar como fração de Linhas" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "Colar o URL compartilhável da Planilha Google aqui" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "Contar como fração de Colunas" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" -msgstr "Padrão" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "" +"Função agregada a aplicar ao dinamizar e calcular o total de linhas e " +"colunas" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" -msgstr "Variação percentual" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "Mostrar total de linhas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" -msgstr "Porcentagem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "Exibir total do nível de linha" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" -msgstr "Variação percentual" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "Mostrar total de linhas" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" -msgstr "Métricas de porcentagem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +#, fuzzy +msgid "Display row level subtotal" +msgstr "Exibir total do nível de linha" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" -msgstr "Limiar da Porcentagem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "Mostrar o total de colunas" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" -msgstr "Porcentagens" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "Mostrar total ao nível da coluna" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" -msgstr "Desempenho" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "Mostrar o total de colunas" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" -msgstr "Média do período" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +#, fuzzy +msgid "Display column level subtotal" +msgstr "Mostrar total ao nível da coluna" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Períodos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "Transpor pivô" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" -msgstr "Os períodos devem ser um número inteiro" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "Trocar linhas e colunas" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." -msgstr "Pessoa ou grupo que certificou este gráfico." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" +msgstr "Combinar Métricas" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 -msgid "Person or group that has certified this dashboard." -msgstr "Pessoa ou grupo que certificou esse painel." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." +msgstr "" +"Apresentar métricas lado a lado dentro de cada coluna, em vez de cada " +"coluna ser apresentada lado a lado para cada métrica." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "Pessoa ou grupo que certificou esta métrica" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "Formato de hora D3 para colunas datetime" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "Físico" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" +msgstr "Ordenar as linhas por" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "Físico (tabela ou view)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "chave a-z" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Conjunto de dados físicos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "chave z-a" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" -msgstr "Escolha uma dimensão a partir da qual as cores categóricas são definidas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" +msgstr "valor crescente" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "" -"Escolha uma granularidade na seção Tempo ou desmarque a opção 'Incluir " -"tempo'" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "valor decrescente" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Escolha uma métrica para o eixo esquerdo!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "Mudar ordem das linhas." -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Escolha uma métrica para o eixo direito!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" +msgstr "Modos de ordenação disponíveis:" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Escolha uma métrica para x, y e tamanho" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "Por chave: utilizar nomes de linhas como chave de ordenação" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Escolha uma métrica para exibir" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "Por valor: utilizar valores métricos como chave de ordenação" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Escolha uma métrica!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" +msgstr "Classificar colunas por" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." -msgstr "Escolha um nome para te ajudar identificar esse banco de dados." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "Mudar ordem das colunas." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." -msgstr "" -"Escolha um apelido para a forma como o banco de dados será exibido no " -"Superset." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "Por chave: utilizar os nomes das colunas como chave de ordenação" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" -msgstr "" -"Escolha um conjunto de gráficos deck.gl para colocar em camadas uns sobre" -" os outros" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "Posição do subtotal das linhas" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Escolha uma granularidade de tempo para sua série temporal" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "Posição do subtotal ao nível da linha" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." -msgstr "Escolha um título para a sua anotação." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "Posição do subtotal das colunas" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "Escolha no ao menos um campo para [Série]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "Posição do subtotal ao nível da coluna" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Escolha ao menos uma métrica" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" +msgstr "Formatação condicional" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Escolha exatamente 2 colunas como [Origem / Destino]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "Aplicar formatação de cor condicional a métricas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -"Selecione uma ou mais colunas que devem ser mostradas na anotação. Se não" -" selecionar uma coluna, todas as colunas serão mostradas." +"Usado para resumir um conjunto de dados, agrupando várias estatísticas ao" +" longo de dois eixos. Exemplos: Números de vendas por região e mês, " +"tarefas por status e responsável, usuários ativos por idade e local. Não " +"é a visualização mais impressionante visualmente, mas é altamente " +"informativa e versátil." -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Escolha sua linguagem de marcação favorita" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Tabela Pivô" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" -msgstr "Gráfico de pizza" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" +msgstr "Total (%(aggregatorName)s)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" -msgstr "Formato de torta" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "Formato de entrada desconhecido" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" -msgstr "Pino" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Tabela Pivô" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "page_ size.show" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "A operação de pivotagem deve incluir pelo menos um agregado" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" +msgstr "page_ size.entries" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "A operação de pivotagem requer em ao menos um índice" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" +msgstr "Não foram encontrados registros correspondentes" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" -msgstr "Pivotado" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "Shift + clique para organizar por colunas múltiplas" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "Altura do pixel de cada série" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Totais" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" -msgstr "Pixels" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "Formato de carimbo de data/hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" -msgstr "Simples" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "Comprimento da página" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 -#, fuzzy -msgid "Please DO NOT overwrite the \"filter_scopes\" key." -msgstr "Por favor , NÃO sobrescreva a chave \"filter_scopes \"." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" +msgstr "Caixa de pesquisa" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" -msgstr "Aplicar alterações ao filtro" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "Se deve incluir uma caixa de pesquisa no lado do cliente" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." -msgstr "" -"Verifique a sua consulta e confirme se todos os parâmetros do modelo " -"estão entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , " -"tente executar sua consulta novamente." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "Barras celulares" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "Se deve ser exibido um fundo de gráfico de barras nas colunas da tabela" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "Alinhar +/-" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." -msgstr "" -"Verifique se há erros de sintaxe na consulta ou perto de " -"\"%(error_sintaxe)s \". Em seguida , tente executar sua consulta " -"novamente." +"Whether to align background charts with both positive and negative values" +" at 0" +msgstr "Se deve alinhar gráficos de fundo com valores positivos e negativos em 0" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "Cor +/-" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +#, fuzzy msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -"Verifique se há erros de sintaxe na sua consulta \"%(erro_servidor)s \". " -"Em seguida , tente executar sua consulta novamente." +"Se os valores numéricos devem ser coloridos de acordo com o fato de serem" +" positivos ou negativos" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "Permitir que as colunas sejam reorganizadas" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -"Verifique se existem erros de sintaxe nos parâmetros do modelo e " -"certifique-se de que correspondem à consulta SQL e aos parâmetros de " -"definição. Em seguida, tente executar a consulta novamente." +"Permitir que o usuário final arraste e solte os cabeçalhos das colunas " +"para os reorganizar. Note que as alterações não persistirão na próxima " +"vez que o utilizador abrir o gráfico." -#: superset/viz.py:3234 -msgid "Please choose at least one groupby" -msgstr "Escolha pelo menos um agrupar por" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" +msgstr "Personalizar colunas" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Escolha métricas diferentes no eixo esquerdo e direito" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "Personalizar ainda mais a forma de apresentação de cada coluna" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "Por favor confirme" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "Aplicar formatação de cor condicional para colunas numéricas" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." -msgstr "Por favor, confirme os valores de substituição." +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "" +"Visão clássica de um conjunto de dados numa planilha de cálculo, linha a " +"coluna. Utilize tabelas para apresentar uma visão dos dados subjacentes " +"ou para mostrar métricas agregadas." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Por favor insira um URI SQLAlchemy para teste" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" +msgstr "Mostrar" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "Favor filtrar o nome do conjunto" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" +msgstr "entradas" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "Por favor digite a senha novamente." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "Nuvem de palavras" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" -msgstr "Por favor reexportar seu arquivo e tente importar novamente" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "Tamanho Mínimo da Fonte" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -#, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "Entre em contato com o proprietário do gráfico para obter ajuda." -msgstr[1] "" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "Tamanho da Fonte para o menor valor na lista" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "Por favor salvar a consulta para habilitar compartilhamento" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "Tamanho Máximo da Fonte" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." -msgstr "" -"Por favor primeiramente salvar seu gráfico, então tentar crir um novo " -"relatório de e-mail." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "Tamanho da Fonte para o maior valor na lista" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "" -"Por favor, salve primeiro o seu painel e, em seguida, tente criar um novo" -" relatório de e-mail." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" +msgstr "Rotação de palavras" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" -msgstr "" -"Por favor selecionar um conjunto de dados e um tipo de gráfico para " -"prosseguir" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" +msgstr "aleatório" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "Por favor, use 3 diferentes rótulos de métrica" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" +msgstr "quadrado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "Plota a distância (como rotas de voo) entre origem e destino." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" +msgstr "Rotação para aplicar às palavras na nuvem" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -"Plota os índices individuais para cada linha nos dados verticalmente e os" -" vincula como uma linha. Este gráfico é útil para comparar várias " -"métricas em todas as amostras ou linhas nos dados." +"Visualiza as palavras em uma coluna que aparecem com mais frequência. A " +"fonte maior corresponde à maior frequência." -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "Plugins" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "N/D" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" -msgstr "Cor do ponto" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +#, fuzzy +msgid "offline" +msgstr "Offline" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" -msgstr "Raio do ponto" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" +msgstr "falhou" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" -msgstr "Escala do Raio do ponto" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" +msgstr "pendente" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" -msgstr "Unidade de raio do ponto" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" +msgstr "busca" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" -msgstr "Tamanho do ponto" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" +msgstr "em execução" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "Unidade de ponto" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" +msgstr "interrompido" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "Apontar para as colunas espaciais" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" +msgstr "sucesso" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" -msgstr "Pontos" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "Não foi possível carregar a consulta" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "Pontos e clusters serão atualizados conforme a janela de exibição mude" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" +msgstr "" +"Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até" +" Consultas salvas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" -msgstr "Coluna de polígono" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Sua consulta não pôde ser agendada" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" -msgstr "Codificação de polígonos" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Falha na obtenção de resultados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" -msgstr "Configurações de polígono" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Erro desconhecido" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" -msgstr "Polilinha" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "A consulta foi parada." -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "Pop Tab Link" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" +msgstr "Falha ao parar a consulta. %s" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:130 -msgid "Popular" -msgstr "Popular" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Não foi possível migrar o estado do esquema da tabela para o backend. O " +"Superset tentará novamente mais tarde. Entre em contato com o " +"administrador se o problema persistir." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "Preencha \"Default value\" para ativar esse controle" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." +msgstr "" +"Não foi possível migrar o estado da consulta para o backend. O Superset " +"tentará novamente mais tarde. Entre em contato com o administrador se o " +"problema persistir." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" -msgstr "Dados sobre a idade da população" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Não foi possível migrar o estado do editor de consultas para o backend. O" +" Superset tentará novamente mais tarde. Entre em contato com o " +"administrador se o problema persistir." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "Port" -msgstr "Porta" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" +"Não é possível adicionar uma nova guia ao backend. Entre em contato com o" +" administrador." -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +#, fuzzy +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "" +"-- Nota: A menos que você salve sua consulta, estes guias NÃO irão " +"persistir se você limpar seus cookies ou mudar de navegador." + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 #, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." +msgid "Copy of %s" +msgstr "Copiar de %s" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." msgstr "" +"Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com " +"seu administrador." -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "Posição JSON" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" -msgstr "Posição do rótulo do nó filho na árvore" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Ocorreu um erro ao obter o estado da aba" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" -msgstr "Posição do subtotal ao nível da coluna" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "" +"Ocorreu um erro ao remover a aba. Por favor entre em contato com seu " +"administrador." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" -msgstr "Posição do rótulo do nó intermédio na árvore" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "" +"Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu" +" administrador." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" -msgstr "Posição do subtotal ao nível da linha" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Sua consulta não pôde ser salva" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" -msgstr "Feito por Apache Superset" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" +msgstr "Sua consulta não foi salva corretamente" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -#, fuzzy -msgid "Pre-filter" -msgstr "Mais filtros" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Sua consulta foi salva" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "Valores disponíveis para o pré-filtro" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Sua consulta foi atualizada" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" -msgstr "É necessário um pré-filtro" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Sua consulta não pôde ser atualizada" -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -"Predicado aplicado quando se vai buscar um valor distinto para preencher " -"o componente de controle do filtro. Suporta a sintaxe do modelo jinja. " -"Aplica-se apenas quando `Ativar seleção de filtro` está ativado." +"Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda" +" de suas alterações, salve a consulta usando o botão \"Save Query\"." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" -msgstr "Preditivo" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "" +"Ocorreu um erro ao obter os metadados da tabela. Por favor entre em " +"contato com seu administrador." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" -msgstr "Análise preditiva" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "" +"Ocorreu um erro ao expandir o esquema da tabela. Por favor entre em " +"contato com o seu administrador." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:64 -msgid "Prefix metric name with slice name" -msgstr "Prefixo do nome da métrica com o nome da fatia" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "" +"Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em " +"contato com o seu administrador." -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Pré-visualização" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Ocorreu um erro ao remover o esquema da tabela. Por favor entre em " +"contato com seu administrador." -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Pré-visualização: `%s`" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Consulta compartilhada" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Anterior" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "A fonte de dados não pode ser carregada" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" -msgstr "Linha anterior" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Ocorreu um erro ao criar a fonte de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "Primário" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Ocorreu um erro durante a busca de nomes de funções." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" -msgstr "Métrica primária" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" +"O SQL Lab usa seu armazenamento local do navegador para armazenar " +"consultas e resultados.\n" +"Atualmente, você está usando %(currentUsage)s KB de %(maxStorage)d KB de " +"armazenamento espaço.\n" +"Para evitar que o SQL Lab falhe, elimine algumas abas de consulta.\n" +"Pode voltar a essas consultas utilizando a funcionalidade Salvar antes de" +" eliminar a aba.\n" +"Observe que terá de fechar outras janelas do SQL Lab antes de fazer isso." #: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 msgid "Primary key" msgstr "Chave primária" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "Eixo y primário ou secundário" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -#, fuzzy -msgid "Primary y-axis Bounds" -msgstr "Formato do eixo y primário" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "Formato do eixo y primário" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "Chave privada" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "Chave privada e Senha" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -#, fuzzy -msgid "Private Key Password" -msgstr "Chave privada e Senha" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" +msgstr "Chave estrangeira" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -#, fuzzy -msgid "Proceed" -msgstr "vermelho" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" +msgstr "Índice" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Perfil" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Estimar custo da consulta selecionada" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Foto de perfil oferecido por Gravatar" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Custo estimado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "Progresso" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Estimativa de custo" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "Progressivo" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Criando uma fonte de dados e criando uma nova guia" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "Propagar" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Ocorreu um erro" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "Proporcional" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Explorar o conjunto de resultados na visão de exploração de dados" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "Planilhas compartilhadas públicas e privadas" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" +msgstr "explorar" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "Apenas Planilhas compartilhadas publicamente" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" +msgstr "Criar gráfico" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Publicado" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Fonte SQL" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" -msgstr "Roxo" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "SQL executado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" -msgstr "Colocar rótulos no exterior" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Executar consulta" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" -msgstr "Colocar rótulos no exterior da torta?" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Executar consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" -msgstr "Colocar o rótulos fora a torta?" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Parar consulta" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Coloque seu código here" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Nova aba" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Padrão de String de data e hora em Python" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" +msgstr "Linha anterior" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" -msgstr "CONSULTAR DADOS NO SQL LAB" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +#, fuzzy +msgid "Format SQL" +msgstr "Formato D3" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "Trimestre" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "em" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" -msgstr "Trimestres %s" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -msgid "Queries" -msgstr "Consultas" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "Executar uma consulta para exibir o histórico de consultas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Consulta" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" +msgstr "LIMITE" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" -msgstr "Consulta %s: %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Estado" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" -msgstr "Consulta A" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" +msgstr "Iniciado" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" -msgstr "Consulta B" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Duração" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "Histórico de consultas" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Resultados" -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" -msgstr "A consulta não existe" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Ações" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "Histórico de consultas" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Sucesso" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" -msgstr "Consulta importada" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Falhou" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Consulta em uma nova guia" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "Executando" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "A consulta é muito complexa e demora muito para executar." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" +msgstr "Buscando" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" -msgstr "Modo de consulta" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Offline" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Nome da consulta" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Agendado" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Pré-visualização da consulta" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "Status Desconhecido" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "A consulta foi interrompida" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Editar" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "A consulta foi parada." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" +msgstr "Ver" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "TIPO DA FAIXA" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Pré-visualização de dados" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" -msgstr "Cor RGB" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Substituir o texto no editor por uma consulta nesta tabela" -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Não foi possível remover o gráfico." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Executar consulta em uma nova guia" -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "Agendamento de relatório não encontrado." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Remover consulta do log" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" -msgstr "Radar" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "Não é possível criar um gráfico sem um ID de consulta." -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" -msgstr "Gráfico de Radar" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Salvar e Explorar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "" -"Tipo de renderização do radar, se deve ser apresentada a forma de " -"'círculo'." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Sobrescrever & Explorar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" -msgstr "Radial" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "" +"Salvar esta consulta como um conjunto de dados virtual para continuar " +"explorando" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "Raio em quilômetros" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Baixar para CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" -msgstr "Raio em metros" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "Copiar para Área de transferência" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "Raio em milhas" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Filtrar resultados" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format -msgid "Ran %s" -msgstr "Corrida %s" - -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" -msgstr "Faixa" +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" +"O número de resultados apresentados é limitado a %(rows)d pela " +"configuração DISPLAY_MAX_ROW. Adicione limites/filtros adicionais ou " +"descarregue para csv para ver mais linhas até ao limite de %(limit)d." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" -msgstr "Filtro de faixa" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." +msgstr "" +"O número de resultados apresentados está limitado a %(rows)d. Adicione " +"limites/filtros adicionais, transfira para csv ou contate um " +"administrador para ver mais linhas até ao limite de %(limit)d." -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" -msgstr "Plugin de filtro de intervalo usando AntD" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "O número de linhas exibidas é limitado a %(rows)d pela consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "Rótulos de intervalo" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "" +"O número de linhas exibidas é limitado a %(rows)d pelo menu suspenso de " +"limite." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" -msgstr "Faixas" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "" +"O número de linhas exibidas é limitado a %(rows)d pela consulta e pelo " +"menu suspenso de limite." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "Intervalos a destacar com sombreamento" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "%(rows)d linhas retornadas" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" -msgstr "Classificação" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "O número de linhas apresentadas é limitado a %(rows)d pelo menu suspenso." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" -msgstr "Proporção" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s linha" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "Registros Brutos" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Rastrear o trabalho" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" -msgstr "Pronto para revisar os filtros desse painel?" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" +msgstr "Ver detalhes da consulta" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" -msgstr "Reconstruir" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "A consulta foi interrompida" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "Atividade recente" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Erro no banco de dados" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "Os gráficos, painéis e consultas recentemente criados aparecerão aqui" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "foi criado" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "Os gráficos, painéis e consultas recentemente editados aparecerão aqui" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Consulta em uma nova guia" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "Modificado recentemente" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "A consulta não retornou dados" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Obter pré-visualização de dados" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Recentes" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Recuperar resultados" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -#, fuzzy -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Os destinatários são separados por \",\"ou \";\"" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Parar" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:673 -msgid "Recommended tags" -msgstr "Etiquetas recomendadas" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Executar seleção" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Contagem de registos" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Executar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" -msgstr "Retângulo" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Parar execução (Ctrl + x)" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "" -"Redireciona para este endpoint quando se clica na tabela a partir da " -"lista de tabelas" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" +msgstr "Parar a execução (Ctrl + e)" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "Refazer o ação" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Executar consulta (Ctrl + Return)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "Reduzir X ticks" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Salvar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." -msgstr "" -"Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o " -"eixo X não transbordará e os rótulos podem estar ausentes. Se falso, será" -" aplicada uma largura mínima às colunas e a largura pode transbordar para" -" um deslocamento horizontal." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" +msgstr "Conjunto de dados sem título" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" -msgstr "Consulte o" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Ocorreu um erro ao salvar conjunto de dados" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." -msgstr "As colunas referenciadas não estão disponíveis no DataFrame." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "Salvar ou Sobrescrever Conjunto de dados" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "Recuperar resultados" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" +msgstr "Voltar" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Atualizar" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Salvar como novo" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Atualizar Painel" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" +msgstr "Sobrescrever existente" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Atualizar Frequência" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" +msgstr "Selecione ou digite o nome do conjunto de dados" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Atualizar intervalo" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" +msgstr "Conjunto de dados existente" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" -msgstr "Intervalo de atualização salvo" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Tem certeza de que deseja substituir esse conjunto de dados?" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" -msgstr "Atualizar lista de tabelas" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Indefinido" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -msgid "Refresh tables" -msgstr "Atualizar tabelas" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" +msgstr "Salvar conjunto de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "Atualizar os valores padrão" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Salvar como" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" -msgstr "Atualização de gráficos" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Salvar consulta" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" -msgstr "Atualização de colunas" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Cancelar" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" -msgstr "Regex" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Atualização" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -#, fuzzy -msgid "Regular" -msgstr "Circular" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Rótulo para sua consulta" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -#, fuzzy -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." -msgstr "" -"Os filtros regulares adicionam cláusulas WHERE às consultas se um " -"utilizador pertencer a uma função referenciada no filtro. Os filtros de " -"base aplicam filtros a todas as consultas, excepto às funções definidas " -"no filtro, e podem ser utilizados para definir o que os utilizadores " -"podem ver se nenhum filtro RLS dentro de um grupo de filtros se aplicar a" -" eles." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Escreva uma descrição para sua consulta" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" -msgstr "Relacional" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "Enviar" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "Relações entre canais comunitários" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Consulta de agendamento" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "Data/hora relativa" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Cronograma" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "Período relativo" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Houve um erro em sua solicitação" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Quantidade relativa" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Por favor salvar a consulta para habilitar compartilhamento" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" -msgstr "Recarregar" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Copiar link de consulta para sua área de transferência" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "Lembre-me em 24 horas" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Salve a consulta para ativar esse recurso" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "Remover" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Copiar link" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" -msgstr "Remover filtro cruzado" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "" +"Não foram encontrados resultados armazenados, é necessário executar " +"novamente a consulta" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "Remover filtros inválidos" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "Executar uma consulta para exibir os resultados" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "Remover item" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Pré-visualização: `%s`" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Remover consulta do log" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Histórico de consultas" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Remover a pré-visualização da tabela" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Agendar a consulta periodicamente" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "Colunas removidas: %s" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Primeiro, você deve executar a consulta com êxito" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Renomear Aba" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Autocompletar" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" -msgstr "Renderização" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "CREATE TABLE AS" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "Substituir" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "CREATE VIEW AS" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" -msgstr "Relatório" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Estimar o custo antes de executar uma consulta" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" -msgstr "Nome do relatório" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "Especificar o nome para CREATE VIEW AS schema in: public" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "Não foi possível criar um agendamento do relatório." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "Especificar o nome para CREATE TABLE AS schema in: public" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "O agendamento do relatório pode não ser deletado." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "Selecione um banco de dados para escrever uma consulta" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "O agendamento do relatório pode não ser atualizado." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "Escolha um dos bancos de dados disponíveis no painel na esquerda." -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "Falha na exclusão do agendamento do relatório." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Criar" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "A execução do Report Schedule falhou ao gerar um arquivo csv." +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "Recolher a visualização da tabela" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "A execução do Report Schedule falhou ao gerar um dataframe." +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" +msgstr "Expandir visualização da tabela" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "" -"A execução do agendamento do relatório falhou ao gerar uma captura de " -"tela." +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Redefinir estado" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "A execução do agendamento de relatório obteve um erro inesperado." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Digite um novo título para a aba" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "" -"O agendamento de relatório ainda está funcionando, recusando-se a " -"recalcular." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Fechar aba" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "Falha na poda do registo do agendamento do relatório." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Renomear Aba" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "Agendamento de relatório não encontrado." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Expandir barra de ferramentas" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "Os parâmetros do agendamento de relatório são inválidos." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Esconder barra de ferramentas" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "O agendamento do relatório atingiu o tempo limite de trabalho." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Fechar todas as outras abas" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "Estado do agendamento do relatório não encontrado" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Duplicar aba" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" -msgstr "Relatar um bug" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" +msgstr "Adicionar uma nova aba" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Relatório falhou" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Nova guia (Ctrl + q)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Report name" -msgstr "Nome do relatório" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Nova guia (Ctrl + t)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Report schedule" -msgstr "Agendamento do relatório" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "Adicionar uma nova guia para criar Consulta SQL" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" -msgstr "Relatar erro do cliente de programação" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Ocorreu um erro ao obter os metadados da tabela" -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" -msgstr "Relatar erro do sistema de programação" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Copiar consulta de partição para a área de transferência" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "Erro inesperado no agendamento do relatório" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "partição mais recente:" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Enviando relatório" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Chaves da tabela" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Relatório enviado" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Exibir chaves e índices (%s)" -#: superset-frontend/src/reports/actions/reports.js:121 -msgid "Report updated" -msgstr "Relatório atualizado" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Ordem das colunas da tabela original" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Relatórios" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Ordenar colunas alfabeticamente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" -msgstr "Repulsão" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Copiar instrução SELECT para a área de transferência" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" -msgstr "Força de repulsão entre nós" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Mostrar instrução CREATE VIEW" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "Pedir permissões" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "Declaração CREATE VIEW" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "O pedido está incorreto: %(error)s" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Remover a pré-visualização da tabela" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "O Pedido não é JSON" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" +msgstr "Atribuir um conjunto de parâmetros como" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "Pedido com campo de dados ausente." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "abaixo (exemplo:" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" -msgstr "O tempo limite da solicitação expirou" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" +msgstr "), e eles tornaram-se disponíveis no seu SQL (exemplo:" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Necessário" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "usando" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" -msgstr "Os valores de controle necessários foram eliminados" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" +msgstr "Modelo Jinja" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" -msgstr "Reamostragem" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." +msgstr "sintaxe." -#: superset/utils/pandas_postprocessing/resample.py:46 +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Editar parâmetros do modelo" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 #, fuzzy -msgid "Resample method should in " -msgstr "O método de reamostragem deve estar em" +msgid "Parameters " +msgstr "Parâmetros" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" -msgstr "A operação de reamostragem requer DatetimeIndex" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "JSON inválido" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" -msgstr "Redefinir" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Consulta sem título" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" -msgstr "Redefinir estado" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." -msgstr "Recurso já tem um relatório anexado." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" +msgstr "Controle" -#: superset/temporary_cache/commands/exceptions.py:49 -msgid "Resource was not found." -msgstr "O recurso não foi encontrado." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "Antes de" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Restaurar filtro" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "Depois de" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Resultados" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Clique para ver diferença" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" -msgstr "Resultados %s" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Alterado" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "O backend de resultados não está configurado." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Alterações no gráfico" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" -"O backend de resultados necessário para as consultas assíncronas não está" -" configurado." +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Última modificação por %s" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Dados carregados em cache" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Carregado da cache" + +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Clique para forçar a atualização" + +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" +msgstr "Em cache" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "Retornar para data e hora específica." +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" +msgstr "Adicionar controle de valores obrigatórios para visualizar o gráfico" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" -msgstr "Lat. e Long. invertidos" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "Seu gráfico está pronto para ser usado!" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +#: superset-frontend/src/components/Chart/Chart.jsx:274 #, fuzzy -msgid "Reverse lat/long " -msgstr "Lat/long invertido" +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" +msgstr "" +"Clique no botão\"Create chart\" no painel de controle à esquerda para " +"pré-visualizar uma visualização ou" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" -msgstr "Dica avançada" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "clique aqui" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" -msgstr "Dica avançada" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "Não foram apresentados resultados para esta consulta" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" -msgstr "Direito" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" +msgstr "" +"Certifique-se de que os controles estão corretamente configurados e que a" +" fonte de dados contém dados para o intervalo de tempo selecionado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" -msgstr "Formato do eixo direito" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Ocorreu um erro ao carregar o SQL" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" -msgstr "Métrica do eixo direito" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "Desculpe, ocorreu um erro" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:132 -msgid "Right Axis chart(s)" -msgstr "Gráfico(s) do eixo direito" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "A atualização do gráfico foi interrompida" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Métrica do eixo direito" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" -msgstr "Direita para Esquerda" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Erro de rede." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "Valor correto" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" +"Filtro cruzado vai ser aplicado para todos os gráficos que utilizam esse " +"conjunto de dados." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -"Clique com o botão direito do mouse em valor de dimensão para pesquisar " -"detalhes por esse valor." +"Você também pode simplesmente clicar no gráfico para aplicar o filtro " +"cruzado." -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "Função" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "A filtragem cruzada não está ativada para esse painel." -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "" -"A função %(r)s foi estendida para fornecer o acesso a fonte de dados " -"%(ds)s" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." +msgstr "Esse tipo de visualização não oferece suporte à filtragem cruzada." -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:375 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Funções" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." +msgstr "Não é possível aplicar filtro cruzado a esse ponto de dados." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." -msgstr "" -"As funções são uma lista que define o acesso ao painel. Conceder a uma " -"função o acesso a um painel irá ignorar as verificações ao nível do " -"conjunto de dados. Se não forem definidas funções, aplicam-se as " -"permissões de acesso normais." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" +msgstr "Remover filtro cruzado" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." -msgstr "" -"As funções são uma lista que define o acesso ao painel. Se não forem " -"definidas funções, aplicam-se as permissões de acesso normais." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" +msgstr "Adicionar filtro cruzado" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Funções a atribuir" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +#, fuzzy +msgid "Failed to load dimensions for drill by" +msgstr "Sem dimensões disponível para drill by" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" -msgstr "Função de rolagem" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "Drill by não é suportado para esse tipo de gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" -msgstr "Janela de rolagem" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "Drill by não está disponível para este ponto de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Função de rolagem" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "Drill by" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "Janela de rolagem" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" +msgstr "Colunas de pesquisa" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Raiz do certificado" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" +msgstr "Nenhuma coluna encontrada" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "ID do nó raiz" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +#, fuzzy +msgid "Failed to generate chart edit URL" +msgstr "Falha ao carregar dados do gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" -msgstr "Rodar o rótulo do eixo" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Você não tem permissão para editar este gráfico" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" -msgstr "Rodar o rótulo do eixo x" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" +msgstr "Editar gráfico" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "Rotação para aplicar às palavras na nuvem" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Fechar" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" -msgstr "Tampa circular" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "Falha ao carregar dados do gráfico." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Linha" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" +msgstr "Drill by: %s" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "Segurança em nível de linha" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Ocorreu um erro ao carregar os esquemas" + +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Resultados %s" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "Drill to detail por" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "Drill to detail" -#: superset/views/database/forms.py:255 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -"Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a" -" primeira linha de dados). Deixe em branco se não houver linha de " -"cabeçalho" +"Drill to detail está desabilitado porque esse gráfico não agrupar dados " +"por valor da dimensão." -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "Drill to detail por valor ainda não é suportado para esse tipo de gráfico." + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -"Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a " -"primeira linha de dados). Deixar em branco se não existir uma linha de " -"cabeçalho." +"Clique com o botão direito do mouse em valor de dimensão para pesquisar " +"detalhes por esse valor." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Limite de linhas" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "Drill to detail: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "Linhas" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" +msgstr "Formatação" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" -msgstr "Linhas por página, 0 significa sem paginação" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" +msgstr "Valor formatado" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" -msgstr "Posição do subtotal das linhas" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "Não foram devolvidas linhas para este conjunto de dados" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Linhas para Leitura" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" +msgstr "Recarregar" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "Regra" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "Copiar" + +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Copiar para área de transferência" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 -#, fuzzy -msgid "Rule Name" -msgstr "Nome completo" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "Copiado para a área de transferência!" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" -msgstr "" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "Desculpe, seu navegador não suporta cópias. Use Ctrl / Cmd + C!" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "Executar" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "todos" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" -msgstr "Executar uma consulta para exibir o histórico de consultas" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "a cada mês" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" -msgstr "Executar uma consulta para exibir os resultados" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "todos os dias do mês" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Executar no SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "dia do mês" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Executar consulta" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "todos os dias da semana" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "Executar consulta (Ctrl + Return)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "dia da semana" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Executar consulta em uma nova guia" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "a cada hora" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Executar seleção" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +#, fuzzy +msgid "every minute" +msgstr "a cada mês" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "Executando" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minuto" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "Executando instrução %(statement_num)s de % (statement_count)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "reiniciar" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "SAB" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Todo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "SET" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "em" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" -msgstr "SHA" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "em" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "e" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL copiado !" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "em" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "Expressão SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "minuto(s)" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "Visão do SQL Lab" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Expressão cron inválida" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." -msgstr "" -"O SQL Lab usa seu armazenamento local do navegador para armazenar " -"consultas e resultados.\n" -"Atualmente, você está usando %(currentUsage)s KB de %(maxStorage)d KB de " -"armazenamento espaço.\n" -"Para evitar que o SQL Lab falhe, elimine algumas abas de consulta.\n" -"Pode voltar a essas consultas utilizando a funcionalidade Salvar antes de" -" eliminar a aba.\n" -"Observe que terá de fechar outras janelas do SQL Lab antes de fazer isso." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Limpar" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "Consulta SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Domingo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "Expressão SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Segunda-feira" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "Consulta SQL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Terça" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "SQLAlchemy URI" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Quarta-feira" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" -msgstr "Host SSH" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Quinta" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" -msgstr "Senha SSH" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Sexta" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" -msgstr "Porta SSH" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "Sábado" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" -msgstr "Túnel SSH" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Janeiro" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" -msgstr "Parâmetros de configuração do Túnel SSH" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Fevereiro" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." -msgstr "Não foi possível excluir o túnel SSH." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Março" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -msgid "SSH Tunnel could not be updated." -msgstr "Não foi possível atualizar o túnel SSH." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "Abril" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -msgid "SSH Tunnel not found." -msgstr "Túnel SSH não encontrado." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Maio" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." -msgstr "Os parâmetros do túnel SSH são inválidos." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Junho" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "Túnel SSH não está ativado" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Julho" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "O modo SSL \"require\" será usado." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Agosto" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "INÍCIO (INCLUSIVO)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "Setembro" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "ETAPA %(stepCurr)s De %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Outubro" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" -msgstr "STRING" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "Novembro" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "Dezembro" #: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 msgid "SUN" msgstr "DOM" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" -msgstr "Desvio Padrão da Amostra" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "SEG" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "TER" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "QUA" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "Variação da amostra" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "QUI" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" -msgstr "Amostras" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "SEX" -#: superset/datasets/commands/exceptions.py:194 -msgid "Samples for dataset could not be retrieved." -msgstr "Não foi possível recuperar as amostras do conjunto de dados." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "SAB" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." -msgstr "Não foi possível recuperar as amostras da fonte de dados." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "JAN" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "FEV" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "Diagrama Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "MAR" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" -msgstr "Diagrama Sankey com Loops" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "ABR" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" -msgstr "Satélite" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "MAIO" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" -msgstr "Ruas Satélites" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "JUN" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "Sábado" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "JUL" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -#: superset-frontend/src/dashboard/components/SaveModal.tsx:211 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:376 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Salvar" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "AGO" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Salvar e Explorar" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "SET" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Salvar e ir ao painel" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "OUT" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -msgid "Save & go to new dashboard" -msgstr "Salvar e ir para o novo painel" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Salvar (Sobrescrever)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "DEZ" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Salvar como" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "Ocorreu um erro ao carregar os esquemas" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -msgid "Save as Dataset" -msgstr "Salvar como conjunto de dados" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" +msgstr "Selecione o banco de dados ou o tipo para pesquisar bancos de dados" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -msgid "Save as dataset" -msgstr "Salvar como conjunto de dados" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Forçar atualização da lista de esquemas" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Salvar como novo" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" +msgstr "Selecione o esquema ou o tipo para pesquisar os esquemas" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Salvar como novo gráfico" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" +msgstr "Nenhum esquema compatível foi encontrado" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -msgid "Save as..." -msgstr "Salvar como..." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" +"Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os " +"metadados não existirem." -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Salvar como:" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" +"Alterar o conjunto de dados pode quebrar o gráfico se o gráfico depender " +"de colunas ou metadados que não existem no conjunto de dados de destino" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" -msgstr "Salvar alterações" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "dataset" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Salvar gráfico" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" +msgstr "Conjunto de dados alterado com sucesso!" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Salvar painel" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Conexão" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -msgid "Save dataset" -msgstr "Salvar conjunto de dados" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" +msgstr "Trocar conjunto de dados" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Salvar para essa sessão" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#, fuzzy +msgid "Proceed" +msgstr "vermelho" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" -msgstr "Salvar ou Sobrescrever Conjunto de dados" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Atenção!" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Salvar consulta" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Pesquisa / Filtro" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "Salve a consulta para ativar esse recurso" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Adicionar item" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" -"Salvar esta consulta como um conjunto de dados virtual para continuar " -"explorando" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "STRING" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -msgid "Save to new dashboard" -msgstr "Salvar em um novo painel" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" +msgstr "NUMÉRICO" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Salvo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" +msgstr "DATA" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Consultas salvas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" +msgstr "BOLEANO" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" -msgstr "Expressões salvas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Físico (tabela ou view)" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Salvo métrica" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "Virtual (SQL)" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Consultas salvas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Tipo de dado" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Não foi possível eliminar as consultas salvas." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" +msgstr "Tipo de dados avançado" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "Consulta salva não encontrada." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" +msgstr "Tipo de dados avançado" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "Os parâmetros de consulta salvos são inválidos." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Formato de data e hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "Dimensionar e deslocar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +#, fuzzy +msgid "The pattern of timestamp format. For strings use " +msgstr "O padrão do formato do registro de data e hora. Para string, use" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "Dimensionar apenas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Padrão de String de data e hora em Python" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "Dispersão" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +#, fuzzy +msgid " expression which needs to adhere to the " +msgstr "expressão necessária para aderir ao" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -#: superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts:26 -msgid "Scatter Plot" -msgstr "Gráfico de dispersão" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +#, fuzzy msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -"O gráfico de dispersão tem o eixo horizontal em unidades lineares e os " -"pontos estão ligados por ordem. Mostra uma relação estatística entre duas" -" variáveis." +"para garantir que a ordem lexicográfica coincida com a ordem cronológica." +" Se o\n" +" formato do timestamp não for aderente ao padrão ISO 8601\n" +" você precisará definir uma expressão e tipo para\n" +" transformar o texto em data ou timestamp. Nota:\n" +" naturalmente fusos horários não são suportados. Se o tempo é armazenado " +"no formato epoch coloque ` epoch_s ` ou ` epoch_ms `. Se nenhum padrão " +"for especificado\n" +"emos utilizar os padrões de acordo com cada nível do banco de dados/nome " +"de coluna via parâmetro extra." -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "Cronograma" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "Certificado Por" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" -msgstr "Agendar um novo relatório de e-mail" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Pessoa ou grupo que certificou esta métrica" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "Agendar relatório por e-mail" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Certificado por" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Consulta de agendamento" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Detalhes de certificação" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 -msgid "Schedule settings" -msgstr "Configurações de agendamento" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Detalhes da certificação" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "Agendar a consulta periodicamente" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "É dimensão" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "Agendado" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" +msgstr "Data/hora padrão" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "Programado em (UTC)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "É filtrável" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" -msgstr "O executor da tarefa agendada não foi encontrado" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" +msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Esquema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" +msgstr "Selecionar proprietários" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" -msgstr "Tempo limite do cache de esquema" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Colunas modificadas: %s" -#: superset/views/core.py:1186 -msgid "Schema undefined" -msgstr "Esquema indefinido" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Colunas removidas: %s" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "" -"Esquema, como usado apenas em alguns bancos de dados como Postgres, " -"Redshift e DB2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "Novas colunas adicionadas: %s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" -msgstr "Esquemas permitidos para upload de arquivos" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Os metadados foram sincronizados" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" -msgstr "Escopo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Ocorreu um erro" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "Escopo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Nome da coluna [%s] está duplicado" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" -msgstr "Rolagem" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Métrica nome [%s] está duplicada" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -#, fuzzy -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "" -"Role para baixo até a parte inferior para permitir a substituição de " -"alterações." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "A coluna calculada [%s] requer uma expressão" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Pesquisar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Pesquisa / Filtro" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Básico" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Pesquisar Métricas e Colunas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "URL padrão" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:779 -msgid "Search all charts" -msgstr "Pesquisar todos os gráficos" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" +"URL padrão para o qual redirecionar quando acessar da página da lista de " +"conjuntos de dados" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Pesquisar todas as opções de filtro" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Filtros de preenchimento automático" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" -msgstr "Caixa de pesquisa" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Se as opções de filtros de preenchimento automático devem ser preenchidas" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "Pesquisar consulta" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Predicado de consulta de preenchimento automático" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -msgid "Search columns" -msgstr "Colunas de pesquisa" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" +"Ao usar \"Autocomplete filters\", isso pode ser usado para melhorar o " +"desempenho da consulta que busca os valores. Use essa opção para aplicar " +"um predicado (cláusula WHERE) à consulta que seleciona os valores " +"distintos da tabela. Normalmente, a intenção seria limitar a varredura " +"aplicando um filtro de tempo relativo em um campo particionado ou " +"indexado relacionado ao tempo." -#: superset-frontend/src/components/Table/index.tsx:206 -msgid "Search in filters" -msgstr "Pesquisar em filtros" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." +msgstr "" +"Dados extras para especificar metadados de tabela. Atualmente suporta " +"metadados do formato: `{ \"certification\": { \"certified_by\": \"Data " +"Platform Team\", \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -msgid "Search tables" -msgstr "Pesquisar tabelas" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Tempo limite da cache" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Pesquisar..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "" +"O período de tempo, em segundos, antes de o cache ser invalidado. Defina " +"como -1 para ignorar o cache." -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "Segundo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Compensação de horas" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" -msgstr "Secundário" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" +"O número de horas, negativo ou positivo, para deslocar a coluna da hora. " +"Isto pode ser utilizado para mudar a hora UTC para a hora local." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" -msgstr "Métrica secundária" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +#, fuzzy +msgid "Normalize column names" +msgstr "Personalizar colunas" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 #, fuzzy -msgid "Secondary y-axis Bounds" -msgstr "Formato do eixo y secundário" +msgid "Always filter main datetime column" +msgstr "Coluna principal de data e hora" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "Formato do eixo y secundário" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "Título secundário do eixo y" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, python-format -msgid "Seconds %s" -msgstr "Segundos %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" +msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Segurança Extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Clique no cadeado para fazer alterações." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Segurança Extra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Clique no cadeado para evitar avançar mudanças." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Segurança" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "virtual" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Nome do conjunto de dados" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Segurança e Acesso" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" +"Ao especificar o SQL, a fonte de dados atua como uma visualização. O " +"Superset usará essa instrução como uma subconsulta ao agrupar e filtrar " +"as consultas pai geradas." -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" -msgstr "Ver todos %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Físico" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "Veja menos" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" +"O ponteiro para uma tabela física (ou visualização). Lembre-se de que o " +"gráfico está associado a essa tabela lógica Superset, e essa tabela " +"lógica aponta para a tabela física referenciada aqui." -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "Ver mais" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +#, fuzzy +msgid "Metric Key" +msgstr "métrica" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" -msgstr "Ver detalhes da consulta" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Ver esquema da tabela" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "Formato D3" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" -msgstr "Selecione" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Selecione ..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +#, fuzzy +msgid "Select or type currency symbol" +msgstr "Selecione ou digite um valor" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "Selecione o método de entrega" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "Advertência" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" -msgstr "Selecione o tipo de visualização" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Aviso opcional sobre o uso dessa métrica" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." -msgstr "Selecione um arquivo colunar a ser carregado em um banco de dados." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" +msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." -msgstr "Selecione um arquivo do Excel para ser carregado para um banco de dados." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Cuidado." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" -msgstr "Selecione uma coluna" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "" +"A alteração destas definições afectará todos os gráficos que utilizem " +"este conjunto de dados, incluindo os gráficos pertencentes a outras " +"pessoas." -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" -msgstr "Selecione um painel" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Sincronizar colunas da fonte" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" -msgstr "Selecione uma tabela de banco de dados e crie um conjunto de dados" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Colunas calculadas" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." -msgstr "Selecione uma tabela de banco de dados." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" -msgstr "Selecione um banco de dados para se conectar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" -msgstr "Selecione um banco de dados para enviar o arquivo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Configurações" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" -msgstr "Selecione um banco de dados para escrever uma consulta" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "O conjunto de dados foi salvo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" -msgstr "Selecione uma dimensão" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +#, fuzzy +msgid "Error saving dataset" +msgstr "Ocorreu um erro ao salvar conjunto de dados" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" -msgstr "Selecione um arquivo a ser carregado no banco de dados" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." +msgstr "" +"A configuração do conjunto de dados exposta aqui afeta todos os gráficos " +"que usam esse conjunto de dados.\n" +" Tenha em mente que alterar as configurações\n" +" aqui pode afetar outros gráficos \n" +" de maneiras indesejáveis." -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" -msgstr "Selecione um esquema se o banco de dados for compatível com isso" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Tem certeza que deseja salvar e aplicar mudanças ?" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Selecione um tipo de visualização" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Confirmar salvar" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -#, fuzzy -msgid "Select aggregate options" -msgstr "Proporções de área de uso" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "OK" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 #, fuzzy -msgid "Select all data" -msgstr "Limpar todos os dados" +msgid "Edit Dataset " +msgstr "Editar conjunto de dados" -#: superset-frontend/src/components/Table/index.tsx:205 -#, fuzzy -msgid "Select all items" -msgstr "Desmarcar tudo" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Usar o editor de fonte de dados herdado" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" -msgstr "Selecionar quaisquer colunas para inspeção de metadados" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" +"Esse conjunto de dados é gerenciado externamente e não pode ser editado " +"no Superset" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "Selecionar gráficos" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "APAGAR" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 -msgid "Select charts" -msgstr "Selecionar gráficos" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "excluir" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" -msgstr "Selecione o esquema de cores" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Digite \"%s\" para confirmar" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" -msgstr "Selecionar coluna" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" +msgstr "Mais informações" -#: superset-frontend/src/components/Table/index.tsx:208 -msgid "Select current page" -msgstr "Selecionar a página atual" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Clique para editar" + +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Você não tem o direito de alterar esse título." -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -msgid "Select database & schema" -msgstr "Selecione o banco de dados e o esquema" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "Nenhum banco de dados corresponde a sua pesquisa" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" -msgstr "Selecione o banco de dados ou o tipo para pesquisar bancos de dados" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "Não há bancos de dados disponíveis" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -msgid "Select database table" -msgstr "Selecione a tabela do banco de dados" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" +msgstr "Gerenciar seus bancos de dados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -#, fuzzy -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " -msgstr "" -"Alguns bancos de dados exigem o preenchimento de campos adicionais na " -"guia Avançado para que a conexão com o banco de dados seja bem-sucedida. " -"Saiba quais são os requisitos de seus bancos de dados" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" +msgstr "aqui" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -msgid "Select dataset source" -msgstr "Selecione a fonte do conjunto de dados" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Erro inesperado" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" -msgstr "Selecionar arquivo" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "Isso pode ser provocado por:" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "Selecionar filtro" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." +msgstr "Entre em contato com o proprietário do gráfico para obter ajuda." -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "Selecione plug-in de filtro usando AntD" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Proprietário do gráfico: %s" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "Selecione primeiro valor do filtro por padrão" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" +msgstr "" +"%(message)s\n" +"Isso pode ser acionado por: \n" +"%(issues)s" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "Selecionar operador" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s Erro" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" -msgstr "Selecione ou digite um valor" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Conjunto de dados ausentes" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" -msgstr "Selecione ou digite o nome do conjunto de dados" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Ver mais" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "Selecionar proprietários" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Veja menos" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" -msgstr "Selecionar métricas salvas" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Copiar mensagem" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" -msgstr "Selecione o esquema ou o tipo para pesquisar os esquemas" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +#, fuzzy +msgid "Details" +msgstr "Totais" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" -msgstr "Selecionar esquema" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" +msgstr "Isso foi desencadeado por:" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Selecionar data de início e fim" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Quis dizer:" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "Selecionar assunto" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s em vez de \"%(undefinedParameter)s?\"" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" -msgstr "Selecione a tabela ou digite para pesquisar tabelas" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Erro de parâmetro" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." -msgstr "Selecione a camada de anotação que você gostaria de usar." +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgstr "" +"Estamos tendo problemas para carregar essa visualização. As consultas " +"estão definidas para atingir o tempo limite após %s segundos." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" +"Estamos tendo problemas para carregar esses resultados. As consultas " +"estão definidas para atingir o tempo limite após %s segundos." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" +"%(subtitle)s\n" +"Isso pode ser acionado por:\n" +" %(issue)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" -msgstr "Selecione a coluna geojson" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Erro de tempo limite" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" -msgstr "Selecionar o número de caixas para o histograma" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Clique para favoritar/não favoritar" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "Selecionar as colunas numéricas para desenhar o histograma" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Conteúdo da célula" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." +msgstr "Ocultar senha." + +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." +msgstr "Mostrar senha." + +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#, fuzzy msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -"Selecione os valores no(s) campo(s) destacado(s) no painel de controle. " -"Em seguida, execute a consulta clicando no botão %s." +"O driver do banco de dados para importação talvez não esteja instalado. " +"Visite a página de documentação do Superset para obter instruções de " +"instalação:" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as CSV" -msgstr "Enviar como CSV" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "SOBRESCREVER" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 -msgid "Send as PNG" -msgstr "Enviar como PNG" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" +msgstr "Senhas de banco de dados" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as text" -msgstr "Enviar como texto" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" +msgstr "%s SENHA" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" -msgstr "Enviar filtro de intervalo eventos para outro gráficos" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" +msgstr "%s SENHA DO TÚNEL SSH" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "Setembro" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" +msgstr "%s CHAVE PRIVADA DO TÚNEL SSH" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" -msgstr "Sequencial" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "%s SENHA DA CHAVE PRIVADA DO TÚNEL SSH" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Série" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Sobrescrever" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "Altura da série" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Importar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" -msgstr "Limite da série Ordenar por" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Importar %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" -msgstr "Limite da série Ordenação decrescente" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" +msgstr "Selecionar arquivo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -msgid "Series Order" -msgstr "Ordem da série" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Última atualização %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" -msgstr "Estilo da série" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "Classificar" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" -msgstr "Tipo de Gráfico de série (linha , barra etc)" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "+ %s mais" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Limite da série" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s Selecionado" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" -msgstr "Tipo de série" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Desmarcar tudo" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "Comprimento da página do servidor" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +#, fuzzy +msgid "Add Tag" +msgstr "marca" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" -msgstr "Paginação do servidor" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "Nenhum resultado corresponde aos seus critérios de filtragem" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" -msgstr "Conta de serviço" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "Experimente critérios diferentes para exibir os resultados." -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Definir intervalo da atualização automática" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" +msgstr "limpar todos os filtros" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "Definir o mapeamento de filtros" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Sem dados" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" -msgstr "Configurar um relatório de e-mail" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s de %s" + +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" +msgstr "Data de início" + +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" +msgstr "Data final" + +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "Digite um valor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." -msgstr "" -"Define os níveis hierárquicos do gráfico. Cada nível é\n" -" representado por um anel, sendo o círculo mais interno o topo da " -"hierarquia." +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "Filtro" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "Configurações" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "Selecione ou digite um valor" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" -msgstr "Configurações para séries temporais" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Última modificação" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Compartilhar" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Modificado por" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "Compartilhar gráfico por e-mail" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Criado por" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" -msgstr "Compartilhar permalink por e-mail" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Criado em" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Consulta compartilhada" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "Acionador de ações do menu" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -#, fuzzy -msgid "Shared query fields" -msgstr "consultas salvas" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Selecione ..." -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Nome da planilha" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" +msgstr "Menu do filtro" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "Shift + clique para organizar por colunas múltiplas" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" +msgstr "Redefinir" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "Uma breve descrição deve ser única para essa camada" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" +msgstr "Sem filtros" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Deve ser aplicada a sazonalidade diária. Um valor inteiro especificará a " -"ordem de Fourier da sazonalidade." +#: superset-frontend/src/components/Table/index.tsx:220 +#, fuzzy +msgid "Select all items" +msgstr "Desmarcar tudo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Deve ser aplicada a sazonalidade semanal. Um valor inteiro especificará a" -" ordem de Fourier da sazonalidade." +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" +msgstr "Pesquisar em filtros" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Deve ser aplicada a sazonalidade anual. Um valor inteiro especificará a " -"ordem de Fourier da sazonalidade." +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" +msgstr "Selecionar a página atual" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" -msgstr "Mostrar" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" +msgstr "Inverter a página atual" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" -msgstr "Mostrar bolhas" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" +msgstr "Limpar todos os dados" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "Mostrar instrução CREATE VIEW" +#: superset-frontend/src/components/Table/index.tsx:226 +#, fuzzy +msgid "Select all data" +msgstr "Limpar todos os dados" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Mostral modelo CSS" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" +msgstr "Expandir linha" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Mostrar Gráfico" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" +msgstr "Recolher linha" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Mostrar Coluna" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" +msgstr "Clique para classificar em ordem decrescente" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Mostrar Painel" +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" +msgstr "Clique para classificar em ordem crescente" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Mostrar Banco de dados" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "Clique para cancelar a ordenação" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" -msgstr "Mostrar rótulos" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" +msgstr "Lista atualizada" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "Mostrar Menos..." +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "Ocorreu um erro ao carregar as tabelas" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Mostrar log" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Ver esquema da tabela" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" -msgstr "Mostrar Marcadores" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" +msgstr "Selecione a tabela ou digite para pesquisar tabelas" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Mostrar Métricas" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Forçar atualização da lista de tabelas" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" -msgstr "Mostrar nomes de métricas" +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "Você não tem permissão para editar este %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" -msgstr "Mostrar filtro de intervalo" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Seletor de fuso horário" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Mostrar Consulta Salva" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Habilitar filtragem cruzada" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Mostrar Tabela" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" +"Não há espaço suficiente para esse componente. Tente diminuir sua largura" +" ou aumentar a largura do destino." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "Mostrar Carimbo de data/hora" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "Não é possível mover a aba de nível superior para abas aninhadas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -msgid "Show Total" -msgstr "Mostrar total" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Esse gráfico foi movido para um escopo de filtro diferente." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" -msgstr "Mostrar Linha de Tendência" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "Houve um problema ao buscar o status de favorito desse painel." -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" -msgstr "Mostrar Sótulos Superiores" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Houve um problema ao favoritar esse painel." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" -msgstr "Mostrar valor" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" +msgstr "Esse painel foi publicado" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" -msgstr "Mostrar valores" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "Esse painel agora está oculto" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "Mostrar eixo Y" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "Você não tem permissão para editar esse painel." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." -msgstr "" -"Mostra o eixo Y na Sparkline. Exibirá os valores mínimo/máximo definidos " -"manualmente, se definidos, ou os valores mínimo/máximo nos dados, caso " -"contrário." +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" +msgstr "[ painel sem título ]" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" -msgstr "Mostrar todas as colunas" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Este painel foi salvo com sucesso." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." -msgstr "Mostrar tudo..." +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" +msgstr "Desculpe, ocorreu um erro desconhecido" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" -msgstr "Mostrar os tiques das linhas de eixo" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "Desculpe, houve um erro ao salvar este painel: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" -msgstr "Mostrar barras de células" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "Você não tem permissão para editar este painel" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -msgid "Show chart description" -msgstr "Mostrar descrição do gráfico" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." +msgstr "Por favor, confirme os valores de substituição." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" -msgstr "Mostrar o total de colunas" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." +msgstr "" +"Você usou todos os espaços de desfazer de %(historyLength) e não poderá " +"desfazer totalmente as ações subsequentes. Você pode salvar seu estado " +"atual para redefinir o histórico." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "Mostrar pontos de dados como marcadores de círculos nas linhas" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Não foi possível obter todos os gráficos salvos" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -msgid "Show empty columns" -msgstr "Mostrar colunas vazias" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +#, fuzzy +msgid "Sorry there was an error fetching saved charts: " +msgstr "Desculpe, houve um erro ao procurar gráficos salvos:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -"Mostrar relações hierárquicas de dados, com o valor representado pela " -"área, mostrando a proporção e a contribuição para o todo." +"Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas " +"aos gráficos individuais deste painel" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "Mostrar dica de ferramentas de informação" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Você tem alterações não salvas." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" -msgstr "Exibir rótulo" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "Arraste e solte componentes e gráficos para o painel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." -msgstr "Mostrar rótulos quando o nó tiver filhos." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" +msgstr "Você pode criar um novo gráfico ou usar os existentes no painel à direita" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" -msgstr "Mostrar legenda" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Criar um novo gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" -msgstr "Mostrar menos colunas" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" +msgstr "Arraste e solte componentes para essa aba" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "Mostrar menos..." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "Não há componentes adicionados a essa aba" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "Mostrar apenas meu gráficos" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "Você pode adicionar os componentes no modo de edição." -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." -msgstr "Mostrar senha." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" +msgstr "Editar o painel" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" -msgstr "Mostrar porcentagem" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "" +"Não há nenhuma definição de gráfico associada a esse componente; ele " +"poderia ter sido excluído?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" -msgstr "Mostrar ponteiro" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "Excluir este contêiner e salvar para remover essa mensagem." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" -msgstr "Mostrar progresso" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" +msgstr "Intervalo de atualização salvo" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "Mostrar total de linhas" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Atualizar intervalo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "Mostrar valores de série sobre o gráfico" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Atualizar Frequência" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "Mostrar linhas divididas" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Tem certeza que deseja continuar ?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "Mostrar o valor na parte superior da barra" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Salvar para essa sessão" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "Mostrar coluna de tempo" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Você deve escolher um nome para o novo painel" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "Exibir menu suspenso de grãos de tempo" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Salvar painel" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." -msgstr "" -"Mostrar agregações totais de métricas selecionadas. Note que o limite de " -"linhas não se aplica ao resultado." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Substituir o Painel [%s]" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "Mostrar os totais" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Salvar como:" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." -msgstr "" -"Apresenta uma única métrica em primeiro plano. Um número grande é melhor " -"utilizado para chamar a atenção para um KPI ou para aquilo em que " -"pretende que o seu público se concentre." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[nome do painel]" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." -msgstr "" -"Apresenta um único número acompanhado por um gráfico de linhas simples, " -"para chamar a atenção para uma métrica importante juntamente com a sua " -"alteração ao longo do tempo ou outra dimensão." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "também copiar (duplicar) gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." -msgstr "" -"Mostra como uma métrica muda à medida que o funil progride. Este gráfico " -"clássico é útil para visualizar a queda entre as fases de um pipeline ou " -"ciclo de vida." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" +msgstr "tipo de visualização" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." -msgstr "" -"Mostra o fluxo ou a ligação entre categorias utilizando a espessura das " -"cordas. O valor e a espessura correspondente podem ser diferentes para " -"cada lado." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "recente" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." -msgstr "" -"Apresenta o progresso de uma única métrica em relação a um determinado " -"objetivo. Quanto mais elevado for o preenchimento, mais próxima está a " -"métrica do objetivo." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Criar novo gráfico" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "Mostrando %s de %s" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Filtrar os seus gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "Mostra uma lista de todas as séries disponíveis nesse ponto no tempo" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +msgid "Filter charts" +msgstr "Filtrar gráficos" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "Mostra ou esconde marcadores para a série temporal" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "Ordenar por %s" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" +msgstr "Mostrar apenas meu gráficos" -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:31 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 msgid "" -"Shows the composition of a dataset by segmenting a given rectangle as " -"smaller rectangles with areas proportional to their value or contribution" -" to the whole. Those rectangles may also, in turn, be further segmented " -"hierarchically." +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -"Mostra a composição de um conjunto de dados através da segmentação de um " -"determinado retângulo em retângulos mais pequenos com áreas proporcionais" -" ao seu valor ou contribuição para o todo. Estes retângulos podem também," -" por sua vez, ser segmentados hierarquicamente." - -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "Nível de significância" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "Simples" +"Você pode optar por exibir todos os gráficos aos quais tem acesso ou " +"apenas os que possui.\n" +" Sua seleção de filtro será salva e permanecerá ativa até que você decida" +" alterá-la." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "As métricas ad-hoc simples não estão ativadas para este conjunto de dados" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Adicionado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" -msgstr "Individual" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "ícone de tipo desconhecido" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" -msgstr "Métrica única" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Tipo de visualização" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" -msgstr "Valor único" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Conjunto de dados" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" -msgstr "Valor único" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Gráfico do Superset" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "Tipo de valor único" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Veja este gráfico no painel:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "Tamanho dos símbolos de aresta" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "Elementos de layout" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "Tamanho do marcador. Também se aplica às observações de previsão." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Carregar um modelo CSS" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "Tamanhos de veículos" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Editor de CSS em tempo real" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "Pular Linhas em branco" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "Recolher o conteúdo da aba" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "Pular espaço inicial" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" +msgstr "Não há gráficos adicionados a esse painel" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "Pular Linhas" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" +msgstr "Vá ao modo de edição para configurar o painel e adicionar gráficos" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "" -"Ignorar linhas em branco em vez de interpretá-las como valores não " -"numéricos" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "Alterações salvas." -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" -msgstr "Ignorar espaços após o delimitador" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" +msgstr "Desativar incorporação?" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." +msgstr "Isso removerá sua configuração de incorporação atual." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "Pequeno" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "Incorporação desativada." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "Formato de número pequenoo" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "Desculpe, ocorreu um erro. Não foi possível desativar a incorporação." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "Linha Suave" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." +msgstr "Desculpe, ocorreu um erro. Tente novamente mais tarde." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -"A linha suave é uma variação do gráfico de linhas. Sem ângulos nem " -"arestas, a linha suave tem por vezes um aspecto mais inteligente e " -"profissional." +"Esse painel está pronto para ser incorporado. Em seu aplicativo, passe o " +"seguinte id para o SDK:" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "Sólido" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "Configurar este painel para incorporá-lo em um aplicativo web externo." -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "Algumas funções não existem" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "Para mais instruções , consultar o" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." -msgstr "Algo não correu bem." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." +msgstr "Documentação do SDK incorporado Superset." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "Domínios permitidos (separados por vírgula)" + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -"Lamentamos, mas ocorreu um erro ao obter as informações do banco de " -"dados: %s" +"Uma lista de nomes de domínio que podem incorporar este dashboard. Se " +"deixar este campo vazio, permitirá a incorporação a partir de qualquer " +"domínio." -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -#, fuzzy -msgid "Sorry there was an error fetching saved charts: " -msgstr "Desculpe, houve um erro ao procurar gráficos salvos:" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" +msgstr "Desativar" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Desculpe, ocorreu um erro" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" +msgstr "Salvar alterações" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" -msgstr "Desculpe, ocorreu um erro" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" +msgstr "Habilitar incorporação" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" -msgstr "Desculpe, ocorreu um erro desconhecido" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" +msgstr "Incorporar" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." -msgstr "Desculpe, ocorreu um erro desconhecido." +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" +msgstr "Filtros cruzados aplicados (%d)" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "Desculpe, ocorreu um erro. Não foi possível desativar a incorporação." +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" +msgstr "Filtros aplicados (%d)" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "Desculpe, ocorreu um erro. Tente novamente mais tarde." +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" +"Este painel está sendo atualizado automaticamente no momento; a próxima " +"atualização automática será em %s." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "Desculpe, mas parece que não existem dados" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "Seu painel é muito grande. Reduza o tamanho antes de salvá-lo." -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Desculpe, houve um erro ao salvar este %s: %s" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" +msgstr "Adicione o nome do painel" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "Desculpe, houve um erro ao salvar este painel: %s" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" +msgstr "Título do painel" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "Desculpe, seu navegador não suporta cópias." +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" +msgstr "Desfazer a ação" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Desculpe, seu navegador não suporta cópias. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "Refazer o ação" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" -msgstr "Classificar" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" +msgstr "Descartar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" -msgstr "Barras de classificação" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Editar painel" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" -msgstr "Ordenação decrescente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Ocorreu um erro ao buscar os modelos CSS disponíveis" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" -msgstr "Classificar métrica" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" +msgstr "Atualização de gráficos" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -msgid "Sort Series Ascending" -msgstr "Ordenar séries em ordem crescente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Painel Superset" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -msgid "Sort Series By" -msgstr "Ordenar séries por" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +#, fuzzy +msgid "Check out this dashboard: " +msgstr "Confira este painel:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "Ordenar Eixo X" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Atualizar Painel" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" -msgstr "Ordenar Eixo Y" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "Sair da tela cheia" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Ordenação crescente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "Entrar em tela cheia" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." -msgstr "Ordenar as barras por rótulos x." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Editar propriedades" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Editar CSS" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" -msgstr "Ordenar por %s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "Baixar" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" -msgstr "Classificar por métrica" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "Exportar para YAML" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Ordenar colunas alfabeticamente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +#, fuzzy +msgid "Download as Image" +msgstr "Baixar como imagem" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" -msgstr "Classificar colunas por" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Compartilhar" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "Ordenação decrescente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" +msgstr "Copiar permalink para a área de transferência" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" -msgstr "Valores do filtro de classificação" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "Compartilhar permalink por e-mail" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Ordenar métrica" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +msgid "Embed dashboard" +msgstr "Incorporar painel" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" +msgstr "Gerenciar relatório de e-mail" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" -msgstr "Ordenar as linhas por" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Definir o mapeamento de filtros" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" -msgstr "Ordenar as séries por ordem crescente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Definir intervalo da atualização automática" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" -msgstr "Tipo de classificação" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" +msgstr "Confirmar a substituição" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Fonte" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +#, fuzzy +msgid "Scroll down to the bottom to enable overwriting changes. " +msgstr "" +"Role para baixo até a parte inferior para permitir a substituição de " +"alterações." -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" -msgstr "Fonte / Alvo" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" +msgstr "Sim, sobrescrever mudanças" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Fonte SQL" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Tem certeza de que pretende substituir os valores a seguir?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" -msgstr "Categoria de origem" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" +msgstr "Última atualização %s por %s" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" -msgstr "Sparkline" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Aplicar" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "Espacial" +#: superset-frontend/src/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:66 +msgid "Error" +msgstr "Erro" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "Data/Hora Específica" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "Um esquema de cores válido é necessário" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "Especificar um esquema (se o variante do banco de dados o suportar)." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "Os metadados JSON são inválidos!" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Especificar colunas duplicadas como \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" +msgstr "Propriedades do painel atualizadas" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "Especificar o nome para CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "O painel foi salvo" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" -msgstr "Especificar o nome para CREATE VIEW AS schema in: public" +#: superset-frontend/src/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 "Acessar" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +"Owners is a list of users who can alter the dashboard. Searchable by name" +" or username." msgstr "" -"Especifique a versão do banco de dados. Isto deve ser utilizado com o " -"Presto para permitir a estimativa do custo da consulta." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" -msgstr "Número de divisão" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Square kilometers" -msgstr "Quilômetros quadrados" +"Os proprietários são uma lista de usuários que podem alterar o painel. " +"Pesquisável por nome ou nome de usuário." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Square meters" -msgstr "Metros quadrados" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Cores" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" -msgstr "Milhas quadradas" +#: 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 " +"defined, regular access permissions apply." +msgstr "" +"As funções são uma lista que define o acesso ao painel. Conceder a uma " +"função o acesso a um painel irá ignorar as verificações ao nível do " +"conjunto de dados. Se não forem definidas funções, aplicam-se as " +"permissões de acesso normais." -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" -msgstr "Pilha" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Propriedades do painel" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" -msgstr "Rastreamento de Pilha:" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" +msgstr "Esse painel é gerenciado externamente e não pode ser editado no Superset" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "Empilhar série" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Informações básicas" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "Empilhar séries umas sobre as outras" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "Slug de URL" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" -msgstr "Empilhado" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "Uma URL legível para seu painel" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "Barras empilhadas" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "Certificação" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "Estilos empilhados" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." +msgstr "Pessoa ou grupo que certificou esse painel." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" -msgstr "Estilos empilhados" +#: 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 "" +"Qualquer detalhe adicional a mostrar na dica de ferramenta de " +"certificação." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "Série temporal padrão" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." +msgstr "Uma lista de tags que foram aplicadas a esse gráfico." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Iniciar" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "Metadados JSON" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 #, fuzzy -msgid "Start (Longitude, Latitude): " -msgstr "Início (Longitude, Latitude):" +msgid "Please DO NOT overwrite the \"filter_scopes\" key." +msgstr "Por favor , NÃO sobrescreva a chave \"filter_scopes \"." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "Longitude e latitude iniciais" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "Em vez disso, use o menu \"%(menuName)s\"." -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" -msgstr "Iniciar revisão" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." +msgstr "" +"Esse painel não foi publicado, portanto não será exibido na lista de " +"painéis. Clique aqui para publicar esse painel." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" -msgstr "Ângulo inicial" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" +"Esse painel não está publicado, o que significa que não será exibido na " +"lista de painéis. Favorite-o para vê-lo lá ou acesse-o usando diretamente" +" a URL." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "Início em (UTC)" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Este painel foi publicado. Clique para torná-lo um rascunho." -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "Start date" -msgstr "Data de início" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Rascunho" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "Data de início incluída no intervalo de tempo" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "As camadas de anotação ainda estão carregando." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "Iniciar o eixo y em 0" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Falha no carregamento de uma ou mais camadas de anotação." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +#, fuzzy msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -"Iniciar o eixo y em zero. Desmarque para iniciar o eixo y no valor mínimo" -" dos dados." - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -msgid "Started" -msgstr "Iniciado" +"Esse gráfico emite/aplica filtros cruzados a outros gráficos que usam o " +"mesmo conjunto de dados" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Estado" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "Dados atualizados" -#: superset/sql_lab.py:503 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 #, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" -msgstr "Instrução %(statement_ num)s de % (statement_count)s" - -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" -msgstr "Estatístico" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Estado" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" -msgstr "Etapa - fim" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" -msgstr "Passo - meio" +msgid "Cached %s" +msgstr "Cached %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" -msgstr "Passo - início" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "Obtido %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" -msgstr "Tipo de etapa" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "Consulta %s: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" -msgstr "Linha escalonada" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Forçar atualização" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "" -"O gráfico de linhas escalonadas (também designado por gráfico de passos) " -"é uma variação do gráfico de linhas, mas com a linha a formar uma série " -"de passos entre os pontos de dados. Um gráfico escalonado pode ser útil " -"quando se pretende mostrar as alterações que ocorrem em intervalos " -"irregulares." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" +msgstr "Ocultar descrição do gráfico" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Parar" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" +msgstr "Mostrar descrição do gráfico" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Parar consulta" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Habilitar filtragem cruzada" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" -msgstr "Parar a execução (Ctrl + e)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Ver consulta" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "Parar execução (Ctrl + x)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" +msgstr "Exibir como tabela" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Parou uma conexão insegura ao banco de dados" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, python-format +msgid "Chart Data: %s" +msgstr "Dados do gráfico: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" -msgstr "Fluxo" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Compartilhar gráfico por e-mail" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" -msgstr "Ruas" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +#, fuzzy +msgid "Check out this chart: " +msgstr "Dê uma olhada neste gráfico:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "Força para puxar o gráfico para o centro" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" +msgstr "Exportar para .CSV" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" -msgstr "Estilo alongado" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" +msgstr "Exportar para Excel" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "" -"Cadeias de caracteres usadas para nomes de planilhas (o padrão é a " -"primeira planilha)." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +#, fuzzy +msgid "Export to full .CSV" +msgstr "Exportar para .CSV completo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" -msgstr "Cor do traço" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Exportar para Excel" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" -msgstr "Largura do traço" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Baixar como imagem" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" -msgstr "Tracejado" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." +msgstr "Algo não correu bem." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" -msgstr "Estrutural" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Pesquisar..." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Estilo" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Nenhum filtro selecionado." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "Estilizar as extremidades da barra de progresso com uma tampa redonda" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Editando 1 filtro:" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" -msgstr "Subdomínio" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Batch editando %d filtros:" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" -msgstr "Subtítulo" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Configurar os âmbitos de filtragem" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "Tamanho da fonte do subtítulo" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "Não há filtros neste painel." -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" -msgstr "Enviar" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Expandir tudo" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" -msgstr "Subtotal" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Recolher tudo" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "Sucesso" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" +msgstr "Ocorreu um erro ao abrir o Explorador" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" -msgstr "Conjunto de dados alterado com sucesso!" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" +msgstr "Coluna vazia" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" -msgstr "Sufixo para aplicar após a apresentação da percentagem" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Este componente de remarcação para baixo tem um erro." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" -msgstr "Soma" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "Este componente markdown tem um erro. Reverta suas alterações recentes." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "Soma como Fração de Colunas" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "Linha vazia" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "Soma como Fração de Linhas" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" +msgstr "É possível" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" -msgstr "Soma como Fração do Total" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" +msgstr "criar um novo gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" -msgstr "Soma dos valores durante o período especificado" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" +msgstr "ou use os existentes no painel à direita" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Sum values" -msgstr "Valores da soma" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" +msgstr "Você pode adicionar o componentes no" -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Sunburst" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" +msgstr "modo de edição" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "Gráfico Sunburst" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Excluir aba do painel?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -msgid "Sunburst Chart v2" -msgstr "Gráfico Sunburst v2" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" +"Excluindo uma guia irá remover todo o conteúdo dela. Você ainda pode " +"reverter isso com o" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Domingo" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "desfazer" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -#, fuzzy -msgid "Superset Chart" -msgstr "Gráfico do Superset" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "(cmd + z) até você salvar suas mudanças." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "Documentação do SDK incorporado Superset." +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "CANCELAR" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "Gráfico do Superset" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Divisor" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Painel Superset" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Cabeçalho" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." -msgstr "O Superset encontrou um erro ao executar um comando." +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" +msgstr "Texto" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." -msgstr "O Superset encontrou um erro inesperado." +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Abas" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" -msgstr "Bancos de dados compatíveis" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "fundo" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "Respostas da pesquisa" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Pré-visualização" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -msgid "Swap dataset" -msgstr "Trocar conjunto de dados" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Desculpe, ocorreu um erro. Tente novamente mais tarde." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" -msgstr "Trocar linhas e colunas" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" +msgstr "Valor desconhecido" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." -msgstr "" -"Canivete suíço para visualizar dados. Escolha entre gráficos de etapas, " -"de linhas, de dispersão e de barras. Esse tipo de visualização também tem" -" muitas opções de personalização." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" +msgstr "Adicionar/Editar filtros" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." -msgstr "" -"Canivete suíço para visualizar dados de séries temporais. Escolha entre " -"gráficos de etapas, de linhas, de dispersão e de barras. Esse tipo de " -"visualização também tem muitas opções de personalização." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." +msgstr "Nenhum filtro foi adicionado a esse painel no momento." + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" +msgstr "Nenhum filtro global está atualmente adicionado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 #, fuzzy -msgid "Symbol" -msgstr "Símbolos de borda" +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgstr "Clique no botão\"+Add/Edit Filters\"para criar novos filtros de painel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" -msgstr "Símbolo de duas extremidades da linha de borda" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" +msgstr "Aplicar filtros" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" -msgstr "Tamanho do símbolo" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Limpar todos" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "Sincronizar colunas da fonte" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" +msgstr "Localize o gráfico" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "Sintaxe" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" +msgstr "Filtros cruzados" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "TABELAS" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" -msgstr "EIXO X TEMPORAL" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Selecionar gráficos" -#: superset-frontend/src/explore/constants.ts:91 -msgid "TEMPORAL_RANGE" -msgstr "INTERVALO TEMPORAL" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "A filtragem cruzada não está ativada para esse painel." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "QUI" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "TER" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Nome da aba" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Todos os gráficos" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "Título da aba" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" +msgstr "Habilitar filtragem cruzada" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" +msgstr "Orientação de barra de filtro" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "Tabela %(table)s não foi encontrada no banco de dados %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" +msgstr "Vertical (esquerda)" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "A Tabela existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" +msgstr "Horizontal (topo)" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Nome da Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" +msgstr "Mais filtros" -#: superset/viz.py:722 -msgid "Table View" -msgstr "Visão da Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" +msgstr "Nenhum filtro aplicado" -#: superset/datasets/commands/exceptions.py:147 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 #, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" -msgstr "" -"Não foi possível encontrar a tabela [%(table_name)s], verifique novamente" -" a conexão ao banco de dados, o esquema e o nome da tabela" - -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" -msgstr "" -"Não foi possível encontrar a tabela [%{table}s], verifique novamente a " -"conexão ao banco de dados, o esquema e o nome da tabela, erro: {}" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" -msgstr "Tempo limite do cache da tabela" +msgid "Applied filters: %s" +msgstr "Filtros aplicados: %s" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" -msgstr "Colunas da tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Não é possível carregar o filtro" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" -msgstr "Carregamento da tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" +msgstr "Filtros fora do escopo (%d)" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" -msgstr "O nome da tabela não pode conter um esquema" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "Depende de" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Não da tabela indefinido" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "Filtro só exibe valores relevantes para seleções feitas em outros filtros." -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "O nome de usuário \"%(username)s\" não existe." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Escopo" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." -msgstr "" -"Tabela que visualiza testes t emparelhados, que são utilizados para " -"compreender as diferenças estatísticas entre grupos." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "Tipo do filtro" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tabelas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "O título é obrigatório" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "Abas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Removido)" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" -msgstr "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Desfazer?" -#: superset/tags/commands/exceptions.py:34 -msgid "Tag could not be created." -msgstr "Não foi possível criar a tag." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "Adicionar filtros e divisores" -#: superset/tags/commands/exceptions.py:38 -msgid "Tag could not be deleted." -msgstr "Não foi possível excluir a tag." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" +msgstr "[sem título]" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "O nome do rótulo é inválido (não pode conter ':')" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "Detectada dependência cíclica" -#: superset/tags/commands/exceptions.py:30 -msgid "Tag parameters are invalid." -msgstr "Os parâmetros da tag são inválidos." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" +msgstr "Adicionar e editar filtros" -#: superset/tags/commands/exceptions.py:42 -msgid "Tagged Object could not be deleted." -msgstr "O objeto marcado não pôde ser excluído." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "Seleção de coluna" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:430 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" -msgstr "Tags" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "Selecione uma coluna" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" -msgstr "" -"Pegue seus pontos de dados e agrupe-os em \"bins\" para ver onde estão as" -" áreas mais densas de informações" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "Não foram encontradas colunas compatíveis" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" -msgstr "Alvo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" +msgstr "Não foram encontrados conjuntos de dados compatíveis" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" -msgstr "Cor do alvo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Limpar todos os dados" -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:57 -msgid "Target aspect ratio for treemap tiles." -msgstr "Alvo de aspecto pretendido para mosaicos de mapas de árvore." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "O valor é necessário" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" -msgstr "Categoria de destino" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" +msgstr "(excluído ou inválido digite)" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "Valor alvo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" +msgstr "Tipo de limite" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Nome do Modelo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." +msgstr "Não há filtros disponíveis." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Parâmetros do Modelo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Adicionar filtro" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." -msgstr "" -"Link do modelo, é possível incluir {{ métrica }} ou outros valores " -"provenientes dos controles." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "Os valores dependem de outros filtros" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -"Termina as consultas em execução quando a janela do browser é fechada ou " -"se navega para outra página. Disponível para bancos de dados Presto, " -"Hive, MySQL, Postgres e Snowflake." +"Os valores selecionados em outros filtros afetarão as opções de filtro " +"para mostrar apenas os valores relevantes" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Testar Conexão" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Valores dependentes de" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Testar Conexão" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Escopo" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" -msgstr "Texto" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Configuração de Filtro" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" -msgstr "Alinhamento Texto" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "Configurações de filtro" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" -msgstr "Texto incorporado no e-mail" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "Selecionar filtro" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "A resposta da API de %s não corresponde à interface IDatabaseTable." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "Filtro de faixa" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" -msgstr "" -"O CSS para painéis individuais pode ser alterado aqui ou na visão do " -"painel, onde as alterações são imediatamente visíveis" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "Faixa numérica" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." -msgstr "" -"O CTAS (create table as select) não tem uma instrução SELECT no final. " -"Certifique-se de que sua consulta tenha um SELECT como última instrução. " -"Em seguida, tente executar sua consulta novamente." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "Filtro de tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." -msgstr "" -"O GeoJsonLayer recebe dados formatados em GeoJSON e apresenta-os como " -"polígonos, linhas e pontos interativos (círculos, ícones e/ou textos)." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Intervalo de tempo" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "O URL não tem os parâmetros dataset_id ou slice_id." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Coluna de tempo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" -msgstr "O eixo X não consta da lista de filtros" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Grão de tempo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" -"O eixo X não está na lista de filtros, o que impedirá a sua utilização em" -"\n" -" filtros de intervalo de tempo nos painéis. Gostaria de o adicionar à " -"lista de filtros?" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "Agrupar por" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "Os pedidos de acesso parecem ter sido excluídos" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Agrupar por" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "A anotação foi salva" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "É necessário um pré-filtro" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" -msgstr "A anotação foi atualizada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" +msgstr "Coluna de tempo à qual aplicar o filtro temporal dependente" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." -msgstr "" -"A categoria dos nós de origem utilizada para atribuir cores. Se um nó " -"estiver associado a mais do que uma categoria, apenas a primeira será " -"utilizada." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "Coluna de tempo à qual aplicar o intervalo de tempo" -#: superset/common/query_context_processor.py:585 -msgid "The chart datasource does not exist" -msgstr "A fonte de dados do gráfico não existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Nome do filtro" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "O gráfico não existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "O nome é obrigatório" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Tipo de filtro" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "Os conjuntos de dados não contêm uma coluna temporal" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -"O clássico. Ótimo para mostrar quanto de uma empresa cada investidor " -"recebe, que dados demográficos seguem o seu blog ou que parte do " -"orçamento vai para o complexo industrial militar.\n" -"\n" -" Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se " -"a clareza da proporção relativa for importante, considere utilizar um " -"gráfico de barras ou outro tipo de gráfico." +"Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais" +" definidas na \n" +" seção de filtros de cada gráfico. Adicione colunas temporais aos filtros" +" \n" +" do gráfico para que esse filtro do painel afete esses gráficos." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" -msgstr "A cor dos pontos e clusters em RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "O conjunto de dados é necessário" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "O esquema de cores para a renderização do gráfico" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "Valores disponíveis para o pré-filtro" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -"O esquema de cores é determinado pelo painel relacionado.\n" -" Edite o esquema de cores nas propriedades do painel." +"Adicionar cláusulas de filtro para controlar a consulta de origem do " +"filtro, \n" +" embora apenas no contexto do preenchimento automático, ou seja, esses " +"condições \n" +" não impactam como o filtro é aplicado para o painel. Isso é util \n" +" quando você quiser melhorar o desempenho da consulta apenas analisando " +"um subconjunto \n" +" de dados subjacentes ou limitar os valores disponíveis apresentados no " +"filtro." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" -msgstr "O rótulo do cabeçalho da coluna" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +#, fuzzy +msgid "Pre-filter" +msgstr "Mais filtros" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." -msgstr "A coluna foi excluída ou renomeada no banco de dados." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "Sem filtro" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "Valores do filtro de classificação" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "Tipo de classificação" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Ordenação crescente" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Classificar métrica" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -"O código de país padrão que o Superset deve esperar encontrar na coluna " -"[country]" +"Se for especificada uma métrica, a ordenação será efetuada com base no " +"valor da métrica" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 -msgid "The dashboard has been saved" -msgstr "O painel foi salvo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Ordenar métrica" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "A Fonte de dados parece ter sido excluída" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "Valor único" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." -msgstr "" -"O tipo de dados que foi inferido pela base de dados. Em alguns casos, " -"pode ser necessário introduzir manualmente um tipo para colunas definidas" -" por expressões. Na maioria dos casos, os usuários não devem precisar de " -"alterar isto." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "Tipo de valor único" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, fuzzy, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." -msgstr "" -"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " -"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto " -"de dados irá quebrar esses objetos." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "Exato" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" -msgstr "As colunas do banco de dados que contêm informações sobre as linhas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "O filtro tem valor padrão" -#: superset/sqllab/commands/estimate.py:58 -msgid "The database could not be found" -msgstr "Não foi possível encontrar o banco de dados" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Valor padrão" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "O banco de dados está atualmente executando muitas consultas." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "O valor padrão é obrigatório" -#: superset/errors.py:99 -msgid "The database is under an unusual load." -msgstr "O banco de dados está sob uma carga incomum." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "Atualizar os valores padrão" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "" -"O banco de dados referenciado nesta consulta não foi encontrado. Contate " -"um administrador para obter mais assistência ou tente novamente." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "Preencher todos os campos obrigatórios para ativar \"Default Value\"" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." -msgstr "O banco de dados retornou um erro inesperado." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Você removeu esse filtro." -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "O banco de dados foi excluído." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Restaurar filtro" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." -msgstr "O banco de dados não foi encontrado." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "A coluna é necessária" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "Preencha \"Default value\" para ativar esse controle" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " -"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto " -"de dados irá quebrar esses objetos." +"O valor padrão é definido automaticamente quando a opção \"Select first " +"filter value by default\" (Selecionar o primeiro valor do filtro por " +"padrão) está marcada" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "O conjunto de dados associado a este gráfico já não existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" +msgstr "" +"O valor padrão deve ser definido quando a opção \"Filter value is " +"required\" estiver marcada" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"A configuração do conjunto de dados exposta aqui afeta todos os gráficos " -"que usam esse conjunto de dados.\n" -" Tenha em mente que alterar as configurações\n" -" aqui pode afetar outros gráficos \n" -" de maneiras indesejáveis." +"O valor padrão deve ser definido quando a opção \"Filter has default " +"value\" estiver marcada" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "O conjunto de dados foi salvo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Aplicar para todos painéis" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." -msgstr "O conjunto de dados vinculado a esse gráfico pode ter sido excluído." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Aplicar para painéis específicos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "A fonte de dados não pode ser carregada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "Apenas os painéis selecionados serão afetados por este filtro" -#: superset/errors.py:98 -msgid "The datasource is too large to query." -msgstr "A fonte de dados é muito grande para ser consultada." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "Todos painéis com essa coluna vão ser afetados por esse filtro" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "Todos os painéis" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -"A descrição pode ser apresentada como cabeçalhos de widgets na visão do " -"painel. Suporta markdown." +"Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados " +"não correspondem)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "A distância entre células, em pixels" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Continue editando" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "" -"O período de tempo, em segundos, antes de o cache ser invalidado. Defina " -"como -1 para ignorar o cache." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Sim, cancelar" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" -msgstr "The encoding format of the lines" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "Há mudanças que não foram salvas." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." -msgstr "" -"O objeto engine_params é descompactado na chamada " -"sqlalchemy.create_engine." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Tem certeza que deseja cancelar ?" -#: superset/common/query_object.py:313 -#, fuzzy, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -"As seguintes entradas em `series_columns` estão faltando em `columns`: " -"%(columns)s." +"Erro ao carregar fontes de dados de gráficos. Os filtros podem não " +"funcionar corretamente." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "A função para usar quando agregar pontos em grupos" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "Transparente" -#: superset/db_engine_specs/mysql.py:160 -#, fuzzy, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "O host \"%(hostname)s\"pode ter caído e não pode ser alcançado." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "Branco" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, fuzzy, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." -msgstr "" -"O host \"%(hostname)s\"pode ter caído, e não pode ser alcançado na porta " -"%(port)s." +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Todos os filtros" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "O host pode ter caído, e não pode ser alcançado na porta fornecida." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, python-format +msgid "Click to edit %s." +msgstr "Clique para editar %s." -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, fuzzy, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "O nome de host \"%(hostname)s\"não pode ser resolvido." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." +msgstr "Clique para editar o gráfico." -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." -msgstr "O nome do host oferecido não pode ser resolvido." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, python-format +msgid "Use %s to open in a new tab." +msgstr "Use %s para abrir em uma nova guia." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "O id do gráfico ativo" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" +msgstr "Médio" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" -msgstr "" -"A lista de gráficos associados a esta tabela. Ao alterar esta fonte de " -"dados, pode alterar o comportamento dos gráficos associados. Tenha também" -" em atenção que os gráficos têm de apontar para uma fonte de dados, pelo " -"que este formulário falhará ao ser guardado se remover gráficos de uma " -"fonte de dados. Se pretender alterar a fonte de dados de um gráfico, " -"substitua o gráfico da 'visão de exploração'" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" +msgstr "Novo cabeçalho" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "O número máximo de eventos retornados, equivalente ao número de linhas" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Título da aba" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"O máximo número de subdivisões de cada grupo ; mais baixo os valores são " -"podados primeiro" +"Esta sessão sofreu uma interrupção e alguns controles podem não funcionar" +" como pretendido. Se você for o desenvolvedor desse aplicativo, verifique" +" se o token de convidado está sendo gerado corretamente." -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "O valor máximo de métricas. Trata-se de uma configuração opcional" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" +msgstr "Igual para (=)" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." -msgstr "" -"O metadata_params no campo Extra não está configurado corretamente. A " -"chave %(key)s é inválida." +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" +msgstr "Diferente de (≠)" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." -msgstr "" -"O metadata_params no campo Extra não está configurado corretamente. A " -"chave %{key}s é inválida." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" +msgstr "Menos que (<)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" +msgstr "Menor ou igual (<=)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" -msgstr "" -"O número mínimo de períodos de rolagem necessários para mostrar um valor." -" Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira " -"que seu \"Min Period\" seja 7, de modo que todos os pontos de dados " -"mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que " -"ocorre nos primeiros 7 períodos" +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" +msgstr "Maior que (>)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "A cor do número \"steps\"" +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" +msgstr "Maior ou igual (>=)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." -msgstr "" -"O número de horas, negativo ou positivo, para deslocar a coluna da hora. " -"Isto pode ser utilizado para mudar a hora UTC para a hora local." +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" +msgstr "Em" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." -msgstr "" -"O número de resultados apresentados é limitado a %(rows)d pela " -"configuração DISPLAY_MAX_ROW. Adicione limites/filtros adicionais ou " -"descarregue para csv para ver mais linhas até ao limite de %(limit)d." +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" +msgstr "Não está em" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." -msgstr "" -"O número de resultados apresentados está limitado a %(rows)d. Adicione " -"limites/filtros adicionais, transfira para csv ou contate um " -"administrador para ver mais linhas até ao limite de %(limit)d." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" +msgstr "Como" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "O número de linhas apresentadas é limitado a %(rows)d pelo menu suspenso." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" +msgstr "Como (não diferencia maiúsculas de minúsculas)" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "" -"O número de linhas exibidas é limitado a %(rows)d pelo menu suspenso de " -"limite." +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" +msgstr "Não é nulo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "O número de linhas exibidas é limitado a %(rows)d pela consulta" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" +msgstr "É nulo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." -msgstr "" -"O número de linhas exibidas é limitado a %(rows)d pela consulta e pelo " -"menu suspenso de limite." +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" +msgstr "usar o modelo latest_partition" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "O número de segundos antes da expiração da cache" +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" +msgstr "É verdadeiro" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "O objeto não existe no banco de dados fornecido." +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" +msgstr "É falso" -#: superset/sqllab/query_render.py:94 -#, fuzzy, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "O parâmetro %(parâmeters)s em sua consulta é indefinido." -msgstr[1] "" +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" +msgstr "INTERVALO TEMPORAL" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Granularidade de tempo" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "A senha fornecida ao se conectar a um banco de dados não é válida." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "Duração em ms (100,40008 => 100ms 400µs 80ns)" -#: superset-frontend/src/pages/ChartList/index.tsx:93 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los " -"junto com os gráficos. Observe que as seções \"Secure Extra\" e " -"\"Certificate\" da configuração do banco de dados não estão presentes nos" -" arquivos de exportação e devem ser adicionadas manualmente após a " -"importação, caso sejam necessárias." +"Uma ou várias colunas para agrupar. Os agrupamentos de elevada " +"cardinalidade devem incluir um limite de séries para limitar o número de " +"séries obtidas e processadas." -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los " -"junto com os painéis. Observe que as seções \"Secure Extra\" e " -"\"Certificate\" da configuração do banco de dados não estão presentes nos" -" arquivos de exportação e devem ser adicionadas manualmente após a " -"importação, caso sejam necessárias." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Uma ou muitos métricas para exibir" -#: superset-frontend/src/features/datasets/constants.ts:23 +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Cor fixa" + +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Métrica do eixo direito" + +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Escolha uma métrica para o eixo direito" + +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Esquema de cores linear" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Métrica de cor" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Um ou mais controles a dinamizar como colunas" + +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-las " -"junto com os conjuntos de dados. Observe que as seções \"Secure Extra\" e" -" \"Certificate\" da configuração do banco de dados não estão presentes " -"nos arquivos de exportação e devem ser adicionadas manualmente após a " -"importação, caso sejam necessárias." +"A granularidade de tempo para a visualização. Observe que você pode " +"digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou " +"`56 semanas`" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los " -"juntamente com as consultas salvas. Observe que as seções \"Secure " -"Extra\" e \"Certificate\" da configuração do banco de dados não estão " -"presentes nos arquivos de exportação e devem ser adicionadas manualmente " -"após a importação, caso sejam necessárias." +"A granularidade de tempo para a visualização. Isso aplica uma " +"transformação de data para alterar sua coluna de tempo e define uma nova " +"granularidade de tempo. As opções aqui são definidas com base em cada " +"mecanismo de banco de dados no código-fonte do Superset." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los. " -"Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração " -"do banco de dados não estão presentes nos arquivos de exploração e devem " -"ser adicionadas manualmente após a importação, caso sejam necessárias." +"O intervalo de tempo para a visualização. Todos os horários relativos, " +"por exemplo, \"Last month\", \"Last 7 days\", \"now\" etc., são avaliados" +" no servidor usando o horário local do servidor (sem fuso horário). Todas" +" as dicas de ferramentas e horários de espaço reservado são expressos em " +"UTC (sem fuso horário). Os registros de data e hora são avaliados pelo " +"banco de dados usando o fuso horário local do mecanismo. Observe que é " +"possível definir explicitamente o fuso horário de acordo com o formato " +"ISO 8601 ao especificar a hora inicial e/ou final." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -#, fuzzy -msgid "The pattern of timestamp format. For strings use " -msgstr "O padrão do formato do registro de data e hora. Para string, use" +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Limita o número de linhas exibidas." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem " -"fornecer um alias de deslocamento \"Pandas\".\n" -" Clique no balão de informações para obter mais detalhes sobre as " -"expressões \"freq\" aceitas." - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "O raio do pixel" +"Métrica utilizada para definir a forma como as séries de topo são " +"ordenadas se estiver presente um limite de série ou de linha. Se não for " +"definida, reverte para a primeira métrica (quando apropriado)." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -"O ponteiro para uma tabela física (ou visualização). Lembre-se de que o " -"gráfico está associado a essa tabela lógica Superset, e essa tabela " -"lógica aponta para a tabela física referenciada aqui." - -#: superset/errors.py:109 -msgid "The port is closed." -msgstr "A porta está fechada." - -#: superset/errors.py:142 -msgid "The port number is invalid." -msgstr "O número da porta é inválido." +"Define o agrupamento de entidades. Cada série é mostrado como uma cor " +"específica no gráfico e tem uma legenda alternar" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "A métrica primária é usada para definir os tamanhos dos segmentos de arco" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Métrica atribuída para o eixo [X]" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "O argumento `rows` fornecido não é um número inteiro válido." +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Métrica atribuída para o eixo [Y]" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." -msgstr "A consulta associada aos resultados foi excluída." +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Tamanho da bolha" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -"A consulta associada a esses resultados não pôde ser encontrada. Você " -"precisa executar novamente a consulta original." +"Quando `Calculation type` é definido como \"Percentage change\", o " +"formato do eixo Y é forçado a `.1%`" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." -msgstr "A consulta contém um ou mais parâmetros de modelo malformados." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Esquema de cores" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "Não foi possível carregar a consulta" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "Ocorreu um erro ao inserir esse gráfico" -#: superset/sqllab/commands/estimate.py:86 +#: superset-frontend/src/explore/actions/saveModalActions.js:142 #, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." -msgstr "" -"A estimativa de consulta foi encerrada após %(sqllab_timeout)s segundos. " -"Ela pode ser muito complexa ou o banco de dados pode estar sob carga " -"pesada." +msgid "Chart [%s] has been saved" +msgstr "O gráfico [%s] foi salvo" -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "A consulta tem um erro de sintaxe." +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, python-format +msgid "Chart [%s] has been overwritten" +msgstr "O gráfico [%s] foi sobrescrito" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "A consulta não retornou dados" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a ele" -#: superset/sql_lab.py:297 +#: superset-frontend/src/explore/actions/saveModalActions.js:163 #, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" -"A consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser " -"muito complexa ou o banco de dados pode estar sob carga pesada." +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "O gráfico [%s] foi adicionado ao painel [%s]" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" +msgstr "AGRUPAR POR" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" +msgstr "Use esta seção se quiser uma consulta que agregue" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" +msgstr "NÃO AGRUPADO POR" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "Use esta seção se quiser consultar linhas atômicas" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "O eixo X não consta da lista de filtros" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"O raio (em pixels) que o algoritmo usa para definir um cluster. Escolha 0" -" para desativar o agrupamento, mas lembre-se de que um grande número de " -"pontos (>1000) causará atraso." +"O eixo X não está na lista de filtros, o que impedirá a sua utilização em" +"\n" +" filtros de intervalo de tempo nos painéis. Gostaria de o adicionar à " +"lista de filtros?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -"O raio de pontos individuais (aqueles que não estão em um cluster). Uma " -"coluna numérica ou `Auto`, que dimensiona o ponto com base no maior " -"cluster" +"Você não pode excluir o último filtro temporal, pois ele é usado para " +"filtros de intervalo de tempo em painéis." -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "O relatório foi criado" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "Esta seção contém erros de validação" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "O backend de resultados não tem mais os dados da consulta." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" +msgstr "Manter configurações de controle?" -#: superset/errors.py:138 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -"Os resultados armazenados no backend foram armazenados em um formato " -"diferente e não podem mais ser desserializados." +"Você alterou os conjuntos de dados. Todos os controles com dados " +"(colunas, métricas) que correspondem a esse novo conjunto de dados foram " +"mantidos." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" -"A dica de ferramenta avançada mostra uma lista de todas as séries para " -"esse ponto no tempo" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" +msgstr "Continuar" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "" -"O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado " -"para executar essa consulta." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" +msgstr "Limpar formulário" -#: superset/db_engine_specs/presto.py:673 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "Nenhuma configuração de formulário foi mantida" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -"O esquema \"%(schema_name)s\" não existe. Um esquema válido deve ser " -"usado para executar essa consulta." +"Não foi possível transferir nenhum controle ao mudar para esse novo " +"conjunto de dados." -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." -msgstr "O esquema foi excluído ou renomeado no banco de dados." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Personalizar" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "O tamanho da célula quadrada, em pixels" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "Gerando link, por favor espere.." -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" -"O URL enviado não é considerado seguro, use apenas URLs com o mesmo " -"domínio do Superset." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "Altura do gráfico" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "O payload enviado tem o formato incorreto." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" +msgstr "Largura do gráfico" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "O payload enviado tem o esquema incorreto." +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Ocorreu um erro durante a pesquisa de painéis" + +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Salvar (Sobrescrever)" + +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." +msgstr "Salvar como..." + +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Nome do gráfico" + +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" +msgstr "Nome do conjunto de dados" + +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." +msgstr "Um conjunto de dados reutilizável vai ser salvo com seu gráfico." -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." -msgstr "" -"A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para" -" executar essa consulta." +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Adicionar ao painel" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." -msgstr "" -"A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada " -"para executar essa consulta." +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "Selecione um painel" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" -"A tabela foi criada. Como parte desse processo de configuração em duas " -"fases, agora você deve clicar no botão de edição da nova tabela para " -"configurá-la." +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "Selecione" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "A tabela foi excluída ou renomeada no banco de dados." +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "um painel OU" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "" -"A coluna de tempo para a visualização. Observe que você pode definir uma " -"expressão arbitrária que retorne uma coluna DATETIME na tabela. Observe " -"também que o filtro abaixo é aplicado a essa coluna ou expressão" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" +msgstr "criar" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "" -"A granularidade de tempo para a visualização. Observe que você pode " -"digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou " -"`56 semanas`" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#, fuzzy +msgid " a new one" +msgstr "um novo" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "" -"A granularidade de tempo para a visualização. Observe que você pode " -"digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou " -"`56 semanas`" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Não foi possível criar o painel." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." -msgstr "" -"A granularidade de tempo para a visualização. Isso aplica uma " -"transformação de data para alterar sua coluna de tempo e define uma nova " -"granularidade de tempo. As opções aqui são definidas com base em cada " -"mecanismo de banco de dados no código-fonte do Superset." +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Não foi possível criar o gráfico." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." -msgstr "" -"O intervalo de tempo para a visualização. Todos os horários relativos, " -"por exemplo, \"Last month\", \"Last 7 days\", \"now\" etc., são avaliados" -" no servidor usando o horário local do servidor (sem fuso horário). Todas" -" as dicas de ferramentas e horários de espaço reservado são expressos em " -"UTC (sem fuso horário). Os registros de data e hora são avaliados pelo " -"banco de dados usando o fuso horário local do mecanismo. Observe que é " -"possível definir explicitamente o fuso horário de acordo com o formato " -"ISO 8601 ao especificar a hora inicial e/ou final." +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Não foi possível criar o painel." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" -msgstr "" -"A unidade de tempo para cada bloco. Deve ser uma unidade menor que " -"domain_granularity. Deve ser maior ou igual a Time Grain" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Salvar e ir ao painel" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" -msgstr "A unidade de tempo usada para o agrupamento de blocos" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Salvar gráfico" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "O tipo de visualização para exibir" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" +msgstr "Data formatada" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" -msgstr "A unidade de medida do raio do ponto especificado" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" +msgstr "Formatação de colunas" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "O usuário parece ter sido excluído" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" +msgstr "Recolher painel de dados" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." -msgstr "" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" +msgstr "Expandir painel de dados" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "O nome de usuário \"%(username)s\" não existe." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" +msgstr "Amostras" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "O nome de usuário fornecido ao se conectar ao banco de dados não é válido." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" +msgstr "Não foram devolvidas amostras para este conjunto de dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:68 -msgid "The way the ticks are laid out on the X-axis" -msgstr "O modo como os ticks são dispostos no eixo X" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" +msgstr "Nenhum resultado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" -msgstr "A largura das linhas" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Pesquisar Métricas e Colunas" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Há alertas ou relatórios associados" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +msgid "Create a dataset" +msgstr "Criar um conjunto de dados" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," -msgstr "Há alertas ou relatórios associados: %s," +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +#, fuzzy +msgid " to edit or add columns and metrics." +msgstr "para editar ou adicionar colunas e métricas." -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" -msgstr "Não há gráficos adicionados a esse painel" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" +msgstr "Mostrando %s de %s" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "Não há componentes adicionados a essa aba" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "Mostrar menos..." -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "Não há bancos de dados disponíveis" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "Mostrar tudo..." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "Não há filtros neste painel." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "Mostrar Menos..." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." -msgstr "Há mudanças que não foram salvas." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "Não foi possível recuperar as cores do painel" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." -msgstr "" -"Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de " -"ortografia ou de digitação." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Adicionado a 1 painel" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" -msgstr "" -"Não há nenhuma definição de gráfico associada a esse componente; ele " -"poderia ter sido excluído?" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" +msgstr "Não adicionado a nenhum painel" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -"Não há espaço suficiente para esse componente. Tente diminuir sua largura" -" ou aumentar a largura do destino." +"Você pode visualizar a lista de painéis no menu suspenso de configurações" +" do gráfico." -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -msgid "There was an error fetching dataset" -msgstr "Houve um erro ao buscar o conjunto de dados" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" +msgstr "Não disponível" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -msgid "There was an error fetching dataset's related objects" -msgstr "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" +msgstr "Adicione o nome do gráfico" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" -msgstr "Ocorreu um erro ao buscar tabelas" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" +msgstr "Título do gráfico" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Houve um erro ao buscar o status de favorito: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "Adicionar controle de valores obrigatórios para salvar gráfico" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "Ocorreu um erro ao buscar sua atividade recente:" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "O tipo de gráfico requer um conjunto de dados" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 #, fuzzy -msgid "There was an error loading the chart data" -msgstr "Ocorreu um erro ao carregar os esquemas" - -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" -msgstr "Ocorreu um erro ao carregar os metadados do conjunto de dados" +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " +msgstr "" +"Não há suporte para esse tipo de gráfico quando se usa uma consulta não " +"salva como fonte de gráfico." -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "Ocorreu um erro ao carregar os esquemas" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +#, fuzzy +msgid " to visualize your data." +msgstr "para visualizar seus dados." -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "Ocorreu um erro ao carregar as tabelas" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "Os valores de controle necessários foram eliminados" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Ocorreu um erro ao salvar o status de favorito: %s" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "Seu gráfico não está atualizado" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "Houve um erro em sua solicitação" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 +msgid "" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" +msgstr "" +"Você atualizou os valores no painel de controle, mas o gráfico não foi " +"atualizado automaticamente. Execute a consulta clicando no botão " +"\"Atualizar gráfico\" ou" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Houve um problema ao excluir %s: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +#, fuzzy +msgid "Controls labeled " +msgstr "Controles rotulados" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Houve um problema ao excluir %s: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +#, fuzzy +msgid "Control labeled " +msgstr "Controle rotulado" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Houve um problema ao excluir o %s selecionado: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +msgid "Chart Source" +msgstr "Fonte do gráfico" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "Houve um problema ao excluir as anotações selecionadas: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Abrir aba fonte de dados" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "Houve um problema ao excluir os gráficos selecionados: %s" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" +msgstr "Original" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -#, fuzzy -msgid "There was an issue deleting the selected dashboards: " -msgstr "Houve um problema ao excluir os painéis selecionados:" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "Pivotado" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Houve um problema ao excluir os conjuntos de dados selecionados: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Você não tem permissão para editar este gráfico" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Houve um problema ao excluir as camadas selecionadas: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" +msgstr "Propriedades do gráfico atualizadas" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "Houve um problema ao excluir as consultas selecionadas: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" +msgstr "Editar propriedades do gráfico" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "Houve um problema ao excluir os modelos selecionados: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "Esse gráfico é gerenciado externamente e não pode ser editado no Superset" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "Houve um problema ao excluir: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." +msgstr "" +"A descrição pode ser apresentada como cabeçalhos de widgets na visão do " +"painel. Suporta markdown." -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." -msgstr "Houve um problema ao duplicar o conjunto de dados." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "Pessoa ou grupo que certificou este gráfico." -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Houve um problema ao duplicar os conjuntos de dados selecionados: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Configuração" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Houve um problema ao favoritar esse painel." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "" +"Duração (em segundos) do tempo limite do cache para esse gráfico. Defina " +"como -1 para ignorar o cache. Observe que o padrão é o tempo limite do " +"conjunto de dados, se não for definido." -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "Houve um problema na obtenção de relatórios anexados a esse painel." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "" +"Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome " +"ou nome de usuário." -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "Houve um problema ao buscar o status de favorito desse painel." +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Limite atingido" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Houve um problema ao buscar seu gráfico: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" +msgstr "Criar gráfico" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Houve um problema ao buscar seus painéis: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" +msgstr "Atualizar Gráfico" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Houve um problema ao buscar sua atividade recente: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Configuração lat/long inválida." -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Houve um problema ao buscar suas consultas salvas: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +#, fuzzy +msgid "Reverse lat/long " +msgstr "Lat/long invertido" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "Houve um problema ao visualizar a consulta selecionada %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Colunas de latitude e longitude" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Houve um problema ao visualizar a consulta selecionada. %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "Coluna única delimitada long & lat" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -"Há um loop em seu Sankey, forneça uma árvore. Aqui está um link " -"defeituoso: {}" +"São aceitos vários formatos, consulte a biblioteca Python geopy.points " +"para mais detalhes" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "Essas são as tabelas às quais esse filtro será aplicado." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geohash" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "Esses filtros se aplicam aos valores disponíveis nos menus suspensos" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "área de texto" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" -"Esses parâmetros são gerados dinamicamente quando se clica no botão " -"salvar ou sobrescrever na exibição de exploração. Esse objeto JSON é " -"exposto aqui para referência e para usuários avançados que queiram " -"alterar parâmetros específicos." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "no modal" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 -#: superset/views/dashboard/mixin.py:58 -msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." -msgstr "" -"Esse objeto JSON é gerado dinamicamente quando se clica no botão salvar " -"ou sobrescrever na exibição do painel. Ele é exposto aqui para referência" -" e para usuários avançados que podem querer alterar parâmetros " -"específicos." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Desculpe, ocorreu um erro" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" +msgstr "Salvar como conjunto de dados" + +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Abrir no SQL Lab" + +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "This action will permanently delete %s." -msgstr "Essa ação excluirá permanentemente %s." +msgid "Failed to verify select options: %s" +msgstr "Falha ao verificar opções selecionadas: %s" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "Essa ação excluirá permanentemente a camada." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +msgid "No annotation layers" +msgstr "Nenhuma camada de anotação" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "Essa ação excluirá permanentemente a consulta salva." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +msgid "Add an annotation layer" +msgstr "Adicionar uma camada de anotação" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "Essa ação excluirá permanentemente o modelo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." +msgstr "Selecione a camada de anotação que você gostaria de usar." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -"Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio " -"(por exemplo, mydatabase.com)." +"Use outro gráfico existente como fonte para anotações e sobreposições.\n" +" Seu gráfico deve ser um destes tipos de visualização: [%s]" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -#, fuzzy +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Esse gráfico emite/aplica filtros cruzados a outros gráficos que usam o " -"mesmo conjunto de dados" +"Espera uma fórmula com o parâmetro de tempo dependente 'x'\n" +" em milissegundos desde a época. mathjs é utilizado para avaliar " +"as fórmulas.\n" +" Exemplo: '2x+5'" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "Esse gráfico foi movido para um escopo de filtro diferente." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "Valor da camada de anotação" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "Esse gráfico é gerenciado externamente e não pode ser editado no Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." +msgstr "Fórmula ruim." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "" -"Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados " -"não correspondem)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Configuração de fatia de anotação" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -#, fuzzy +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -"Não há suporte para esse tipo de gráfico quando se usa uma consulta não " -"salva como fonte de gráfico." +"Esta seção permite configurar como usar o slice\n" +" para gerar anotações." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" -msgstr "" -"Esse esquema de cores está sendo substituído por cores de rótulos " -"personalizados.\n" -" Verifique os metadados JSON nas configurações avançadas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "Coluna de tempo da camada de anotação" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" -msgstr "Essa coluna pode ser incompatível com o conjunto de dados atual" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "Coluna de início do intervalo" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "Coluna de hora do evento" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 msgid "This column must contain date/time information." msgstr "Isso a coluna deve conter informações de data/hora." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "Fim do intervalo da camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "Intervalo Coluna final" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" +msgstr "Coluna de título da camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "Coluna de título" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "Escolha um título para a sua anotação." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "Colunas de descrição da camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "Colunas de descrição" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." +msgstr "" +"Selecione uma ou mais colunas que devem ser mostradas na anotação. Se não" +" selecionar uma coluna, todas as colunas serão mostradas." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" +msgstr "Intervalo de tempo de substituição" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" "This controls whether the \"time_range\" field from the current\n" " view should be passed down to the chart containing the " @@ -16507,7 +16453,12 @@ msgstr "" "Isso controla se o campo \"time_range\" da visualização atual deve ser " "passado para o gráfico que contém os dados da anotação." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "Intervalo de tempo de substituição" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" "This controls whether the time grain field from the current\n" " view should be passed down to the chart containing the " @@ -16516,1973 +16467,1636 @@ msgstr "" "Isso controla se o campo de grão de tempo da exibição atual\n" " deve ser passado para o gráfico que contém os dados de anotação." -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." -msgstr "" -"Este painel está sendo atualizado automaticamente no momento; a próxima " -"atualização automática será em %s." - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "Esse painel é gerenciado externamente e não pode ser editado no Superset" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "" -"Esse painel não está publicado, o que significa que não será exibido na " -"lista de painéis. Favorite-o para vê-lo lá ou acesse-o usando diretamente" -" a URL." - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." -msgstr "" -"Esse painel não foi publicado, portanto não será exibido na lista de " -"painéis. Clique aqui para publicar esse painel." - -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" -msgstr "Esse painel agora está oculto" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" -msgstr "Esse painel foi publicado" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "Este painel foi publicado. Clique para torná-lo um rascunho." - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" -msgstr "" -"Esse painel está pronto para ser incorporado. Em seu aplicativo, passe o " -"seguinte id para o SDK:" - -#: superset/views/core.py:1353 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -"Este painel foi alterado recentemente. Recarregue o painel para obter a " -"versão mais recente." +"Delta de tempo em linguagem natural \n" +" (exemplo: 24 horas, 7 dias , 56 semanas , 365 dias)" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Este painel foi salvo com sucesso." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Mostrar configuração" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "" -"Esse banco de dados é gerenciado externamente e não pode ser editado no " -"Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Configure a forma como a sobreposição é apresentada aqui." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "" -"This database table does not contain any data. Please select a different " -"table." -msgstr "" -"Essa tabela do banco de dados não contém dados. Selecione uma tabela " -"diferente." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "Traço da camada de anotação" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" -"Esse conjunto de dados é gerenciado externamente e não pode ser editado " -"no Superset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Estilo" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "Esse conjunto de dados não é usado para alimentar nenhum gráfico." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "Sólido" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Isso define o elemento a ser plotado no gráfico" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" +msgstr "Traço" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "Isso define o nível da hierarquia" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "Traço longo" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "" -"Esses campos funcionam como uma visualização do Superset, o que significa" -" que o Superset executará uma consulta com base nessa string como uma " -"subconsulta." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" +msgstr "Pontilhado" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Esse filtro não existe no painel. Ele não será aplicado." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "Opacidade da camada de anotação" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "Esse filtro pode ser incompatível com o conjunto de dados atual" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Cor" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "Esse conjunto de filtros é idêntico a: \"%s\"" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "Cor Automática" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "" -"Essa funcionalidade está desativada em seu ambiente por motivos de " -"segurança." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "Mostra ou esconde marcadores para a série temporal" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." -msgstr "" -"Essa é a condição que será adicionada à cláusula WHERE. Por exemplo, para" -" retornar apenas as linhas de um cliente específico, você pode definir um" -" filtro regular com a cláusula `client_id = 9`. Para não exibir nenhuma " -"linha a menos que um usuário pertença a uma função de filtro RLS, um " -"filtro básico pode ser criado com a cláusula `1 = 0` (sempre falso)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" +msgstr "Ocultar linha" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" -msgstr "" -"Esse objeto json descreve o posicionamento dos widgets no painel. Ele é " -"gerado dinamicamente ao ajustar o tamanho e as posições dos widgets " -"usando arrastar e soltar na exibição do painel" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" +msgstr "Oculta a linha da série temporal" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Este componente de remarcação para baixo tem um erro." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Configuração de camadas" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "Este componente markdown tem um erro. Reverta suas alterações recentes." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Configurar o fundamentos da sua camada de anotação." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "Isso pode ser provocado por:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Obrigatório" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" -msgstr "Essa métrica pode ser incompatível com o conjunto de dados atual" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Esconder camada" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." -msgstr "" -"Esta seção permite configurar como usar o slice\n" -" para gerar anotações." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "Exibir rótulo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" -msgstr "" -"Esta seção contém opções que permitem o pós-processamento analítico " -"avançado dos resultados da consulta" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "Se deve sempre mostrar o rótulo da anotação" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" -msgstr "Esta seção contém erros de validação" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Tipo da camada de anotação" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." -msgstr "" -"Esta sessão sofreu uma interrupção e alguns controles podem não funcionar" -" como pretendido. Se você for o desenvolvedor desse aplicativo, verifique" -" se o token de convidado está sendo gerado corretamente." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Escolha o tipo da camada de anotação" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" -msgstr "Essa tabela já tem um conjunto de dados" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "Tipo de fonte de anotação" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -#, fuzzy -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" -msgstr "" -"Essa tabela já tem um conjunto de dados associado a ela. Você só pode " -"associar um conjunto de dados a uma tabela." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "Choose the source of your annotations" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "Esse valor deve ser maior do que o valor-alvo esquerdo" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" +msgstr "Fonte de anotação" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" -msgstr "Esse valor deve ser menor do que o valor-alvo direito" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Remover" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." -msgstr "Esse tipo de visualização não oferece suporte à filtragem cruzada." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" +msgstr "Séries temporais" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Não há suporte para esse tipo de visualização." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Editar camada de anotação" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -#, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "Isso foi desencadeado por:" -msgstr[1] "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Adicionar camada de anotação" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." -msgstr "Isso removerá sua configuração de incorporação atual." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Coleção vazia" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" -msgstr "Nível alfa de limiar para determinar a significância" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Adicionar um item" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -msgid "Threshold value should be double precision number" -msgstr "O valor do limite deve ser um número de precisão dupla" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Remover item" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" -msgstr "Miniaturas" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +msgid "" +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" +msgstr "" +"Esse esquema de cores está sendo substituído por cores de rótulos " +"personalizados.\n" +" Verifique os metadados JSON nas configurações avançadas" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Quinta" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." +msgstr "" +"O esquema de cores é determinado pelo painel relacionado.\n" +" Edite o esquema de cores nas propriedades do painel." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Tempo" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "painel" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" -msgstr "Coluna do tempo" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" +msgstr "Esquema do painel" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" -msgstr "Comparação de tempo" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "Selecione o esquema de cores" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" -msgstr "Formato de hora" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" +msgstr "Selecionar esquema" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" -msgstr "Grão de tempo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" +msgstr "Mostrar menos colunas" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" -msgstr "Granularidade de tempo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" +msgstr "Mostrar todas as colunas" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" -msgstr "Atraso de tempo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "Dígitos de frações" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "Intervalo de tempo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "Número de dígitos decimais para arredondar os números" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" -msgstr "Relação de tempo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" +msgstr "Largura mínima" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" -msgstr "Séries temporais" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" +msgstr "" +"Largura mínima predefinida da coluna em pixels; a largura real pode ser " +"superior a esta se as outras colunas não necessitarem de muito espaço" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Série temporal - Gráfico de barras" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "Alinhamento Texto" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Série Temporal - Gráfico de Linhas de Eixo Duplo" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "Alinhamento horizontal" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Série temporal - Gráfico de linhas" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "Mostrar barras de células" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "Séries temporais - Gráficos de linhas múltiplas" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" +msgstr "" +"Se os valores positivos e negativos no gráfico de barras de células devem" +" ser alinhados em 0" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Séries temporais - Gráfico Nightingale Rose" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "" +"Se os valores numéricos devem ser coloridos de acordo com o fato de serem" +" positivos ou negativos" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Séries temporais - Teste t pareado" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" +msgstr "Truncar Células" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Séries temporais - Variação percentual" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" +msgstr "Truncar células longas para a \"min width\" definida acima" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "Série temporal - Pivô de período" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." +msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Séries temporais - empilhadas" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "Formato de número pequenoo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" -msgstr "Opções de séries temporais" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "" +"Formato de número D3 para números entre -1,0 e 1,0, útil quando se " +"pretende ter dígitos significativos diferentes para números pequenos e " +"grandes" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" -msgstr "Mudança de hora" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "Nome de exibição" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "Visualização da tabela de horários" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +#, fuzzy +msgid "Number formatting" +msgstr "String de formato de número" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "Coluna de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" +msgstr "Editar formatador" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "A coluna de tempo \"%(col)s\" não existe no conjunto de dados" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "Adicionar novo formatador" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "Plug-in de filtro de coluna de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "Adicionar novo formatador de cores" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" -msgstr "Coluna de tempo à qual aplicar o filtro temporal dependente" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "alerta" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" -msgstr "Coluna de tempo à qual aplicar o intervalo de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Erro" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Comparação de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "sucesso" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" -msgstr "" -"Delta de tempo em linguagem natural \n" -" (exemplo: 24 horas, 7 dias , 56 semanas , 365 dias)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "alerta" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -"O delta de tempo é ambíguo. Especifique [%(human_readable)s ago] ou " -"[%(human_readable)s later]." - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" -msgstr "Filtro de tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" -msgstr "Formato de hora" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "Esse valor deve ser menor do que o valor-alvo direito" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Grão de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "Esse valor deve ser maior do que o valor-alvo esquerdo" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" -msgstr "Plug-in de filtro de granulação de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Necessário" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Grão do tempo ausente" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Operador" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" -msgstr "Granularidade de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "Valor esquerdo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Time in seconds" -msgstr "Tempo em segundos" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "Valor correto" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" -msgstr "Defasagem de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Valor alvo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Intervalo de tempo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "Selecionar coluna" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" -msgstr "Relação de tempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +#, fuzzy +msgid "Color: " +msgstr "Cor" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Atributos de formulário relacionados ao tempo" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" +msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -msgid "Time series" -msgstr "Séries temporais" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +#, fuzzy +msgid "Upper threshold must be greater than lower threshold" +msgstr "O `row_limit` deve ser maior ou igual a 0" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Colunas de séries temporais" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "Offline" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Mudança de horário" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +#, fuzzy +msgid "Threshold" +msgstr "Rótulo limite" -#: superset/charts/commands/exceptions.py:38 -#, python-format +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -"A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou " -"[%(human_readable)s later]." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" -msgstr "Gráfico de área de séries temporais" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +#, fuzzy +msgid "The width of the Isoline in pixels" +msgstr "A largura das linhas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." -msgstr "" -"O gráfico de área de série temporal é semelhante ao gráfico de linhas, " -"pois representa variáveis com a mesma escala, mas os gráficos de área " -"empilham as métricas umas sobre as outras. Um gráfico de área no Superset" -" pode ser de fluxo, empilhamento ou expansão." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +#, fuzzy +msgid "The color of the isoline" +msgstr "The encoding format of the lines" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" -msgstr "Gráfico de barras de séries temporais" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +#, fuzzy +msgid "Isoband" +msgstr "e" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -msgid "Time-series Bar Chart (legacy)" -msgstr "Gráfico de barras de séries temporais (legado)" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +#, fuzzy +msgid "Lower Threshold" +msgstr "Rótulo limite" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -"Os gráficos de barras de séries temporais são usados para mostrar as " -"alterações em uma métrica ao longo do tempo como uma série de barras." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" -msgstr "Gráfico de séries temporais" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +#, fuzzy +msgid "Upper Threshold" +msgstr "Rótulo limite" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" -msgstr "Gráfico de linhas de séries temporais" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" -msgstr "Variação percentual da série temporal" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +#, fuzzy +msgid "The color of the isoband" +msgstr "The encoding format of the lines" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" -msgstr "Pivô de período de série temporal" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" -msgstr "Gráfico de dispersão de séries temporais" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -"O gráfico de dispersão de séries temporais tem o tempo no eixo horizontal" -" em unidades lineares, e os pontos são conectados em ordem. Ele mostra " -"uma relação estatística entre duas variáveis." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" -msgstr "Linha suave de séries temporais" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -"A série temporal Smooth-line é uma variação do gráfico de linhas. Sem " -"ângulos e bordas rígidas, o Smooth-line às vezes parece mais inteligente " -"e profissional." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" -msgstr "Linha escalonada de série temporal" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" msgstr "" -"O Gráfico de linhas escalonadas de séries temporais (também chamado de " -"gráfico de etapas) é uma variação do gráfico de linhas, mas com a linha " -"formando uma série de etapas entre os pontos de dados. Um gráfico de " -"etapas pode ser útil quando você deseja mostrar as alterações que ocorrem" -" em intervalos irregulares." -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Tabela de séries temporais" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Editar conjunto de dados" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -"O gráfico de linhas de séries temporais é usado para visualizar medições " -"repetidas feitas em intervalos de tempo regulares. O gráfico de linhas é " -"um tipo de gráfico que exibe informações como uma série de pontos de " -"dados conectados por segmentos de linha reta. É um tipo básico de gráfico" -" comum em muitos campos." +"Você deve ser proprietário de um conjunto de dados para poder editá-lo. " +"Entre em contato com o proprietário do conjunto de dados para solicitar " +"modificações ou acesso de edição." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Erro de tempo limite" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Exibir no SQL Lab" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" -msgstr "Formato de carimbo de data/hora" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Pré-visualização da consulta" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" -msgstr "Fuso horário" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" +msgstr "Salvar como conjunto de dados" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Deslocamento de fuso horário (em horas) para essa fonte de dados" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" +msgstr "Parâmetros de URL ausentes" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "Seletor de fuso horário" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "O URL não tem os parâmetros dataset_id ou slice_id." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" -msgstr "Minúsculo" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "O conjunto de dados vinculado a esse gráfico pode ter sido excluído." -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:186 -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:207 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:687 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 -#: superset-frontend/src/pages/DashboardList/index.tsx:308 -#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:184 -msgid "Title" -msgstr "Título" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "TIPO DA FAIXA" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" -msgstr "Coluna de título" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Intervalo de tempo real" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" -msgstr "O título é obrigatório" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "APLICAR" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Título ou Slug" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Editar intervalo de tempo" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Para filtrar em uma métrica, use a aba SQL personalizado." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +#, fuzzy +msgid "Configure Advanced Time Range " +msgstr "Configurar intervalo de tempo avançado" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "INÍCIO (INCLUSIVO)" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Data de início incluída no intervalo de tempo" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "FIM (EXCLUSIVO)" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Para obter um URL legível para seu painel" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Data final excluída do intervalo de tempo" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "Ferramentas" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Configurar Intervalo de Tempo: Anterior..." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "Dica" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Configurar Intervalo de Tempo: Último..." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" -msgstr "Classificação da dica de ferramenta por métrica" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Configurar intervalo de tempo personalizado" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" -msgstr "Formato de hora da dica de ferramenta" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Quantidade relativa" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" -msgstr "Topo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "Período relativo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" -msgstr "Superior esquerdo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "Âncora para" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" -msgstr "Superior direito" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "AGORA" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" -msgstr "De cima para baixo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Data/Hora" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" -msgstr "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "Retornar para data e hora específica." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" -msgstr "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "Sintaxe" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -msgid "Total value" -msgstr "Valor total" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Exemplo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" -msgstr "Total: %s" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "Move o conjunto de datas dado por um intervalo especificado." -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "Totais" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "" +"Trunca a data especificada com a precisão especificada pela unidade de " +"data." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "Rastrear o trabalho" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "Obter a última data através da unidade de data." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" -msgstr "Transformável" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "Obter a data específica para o feriado" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "Transparente" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Anterior" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" -msgstr "Transpor pivô" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "Personalizado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" -msgstr "Gráfico de árvore" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "último dia" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" -msgstr "Layout da árvore" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "semana passada" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" -msgstr "Orientação da árvore" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "mês passado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Mapa da árvore" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "último trimestre" -#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:40 -msgid "Treemap (legacy)" -msgstr "Mapa da árvore (legado)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "ano passado" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" -msgstr "Tendência" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "semana anterior do calendário" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "Triângulo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "mês anterior do calendário" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -msgid "Trigger Alert If..." -msgstr "Alerta de acionamento se..." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "ano-calendário anterior" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" -msgstr "Truncar eixo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "Segundos %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" -msgstr "Truncar Células" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" +msgstr "Minutos %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -msgid "Truncate Metric" -msgstr "Truncar métrica" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "Horas %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" -msgstr "Truncar Eixo Y" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Dias %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." -msgstr "" -"Truncar Eixo Y. Pode ser substituído pela especificação de um limite " -"mínimo ou máximo." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Semanas %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" -msgstr "Truncar células longas para a \"min width\" definida acima" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "Meses %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." -msgstr "" -"Trunca a data especificada com a precisão especificada pela unidade de " -"data." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr "Trimestres %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "" -"Tente aplicar filtros diferentes ou garantir que sua fonte de dados tenha" -" dados" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" +msgstr "Anos %s" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." -msgstr "Experimente critérios diferentes para exibir os resultados." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "Data/Hora Específica" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" -msgstr "Tente selecionar um esquema diferente" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "Data/hora relativa" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Terça" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "Agora" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:47 -msgid "Tukey" -msgstr "Tukey (inglês)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "Meia-noite" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Tipo" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "Expressões salvas" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Salvo" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Type \"%s\" to confirm" -msgstr "Digite \"%s\" para confirmar" +msgid "%s column(s)" +msgstr "%s coluna(s)" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" -msgstr "Digite um valor" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" +msgstr "Não foram encontradas colunas temporais" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "Digite um valor aqui" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" +msgstr "Nenhuma expressão salva foi encontrada" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "O tipo é obrigatório" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#, fuzzy +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" +"Adicionar colunas temporais calculadas para conjunto de dados em \"Edit " +"datasource\"modal" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "Tipo de Planilhas Google permitido" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +#, fuzzy +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +msgstr "" +"Adicionar colunas calculadas para conjunto de dados em \"Edit " +"datasource\"modal" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" -msgstr "Tipo de comparação, diferença de valor ou porcentagem" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +#, fuzzy +msgid " to mark a column as a time column" +msgstr "para marcar uma coluna como uma coluna de tempo" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Digite ou Selecione [%s]" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#, fuzzy +msgid " to add calculated columns" +msgstr "para adicionar colunas calculadas" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "Configuração da interface do usuário" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Simples" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" +msgstr "Marcar uma coluna como temporal no modal \"Edit datasource\"" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "Parâmetros de URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "SQL personalizado" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "Parâmetros de URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "Minha coluna" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 -msgid "URL slug" -msgstr "Slug de URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" +msgstr "Esse filtro pode ser incompatível com o conjunto de dados atual" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "" -"Não é possível adicionar uma nova guia ao backend. Entre em contato com o" -" administrador." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" +msgstr "Essa coluna pode ser incompatível com o conjunto de dados atual" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "" -"Não foi possível conectar-se ao catálogo chamado \"%(nome_do_catálogo)s " -"\"." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "Deixe sua coluna aqui ou clique em" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "Clique para editar o rótulo" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" -"Não é possível se conectar. Verifique se as seguintes funções estão " -"definidas na conta de serviço: \"Visualizador de dados do BigQuery\", " -"\"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do " -"BigQuery\" e as seguintes permissões estão definidas " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "Colocar colunas/métricas aqui ou clique" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." -msgstr "Não é possível criar um gráfico sem um ID de consulta." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "Essa métrica pode ser incompatível com o conjunto de dados atual" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" +msgstr "Insira uma coluna/métrica aqui ou clique em" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +#, fuzzy +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" +"Este filtro foi herdado do contexto do painel.\n" +" Não será salvo ao salvar o gráfico." -#: superset/utils/date_parser.py:393 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 #, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Não foi possível encontrar esse feriado: [%(holiday)s]" +msgid "%s option(s)" +msgstr "%s opção(ões)" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." -msgstr "" -"Não foi possível carregar colunas para a tabela selecionada. Selecione " -"uma tabela diferente." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "Selecionar assunto" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -"Não foi possível migrar o estado do editor de consultas para o backend. O" -" Superset tentará novamente mais tarde. Entre em contato com o " -"administrador se o problema persistir." +"Não foi encontrada tal coluna. Para filtrar uma métrica, experimente a " +"aba SQL personalizado." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." -msgstr "" -"Não foi possível migrar o estado da consulta para o backend. O Superset " -"tentará novamente mais tarde. Entre em contato com o administrador se o " -"problema persistir." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Para filtrar em uma métrica, use a aba SQL personalizado." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" -"Não foi possível migrar o estado do esquema da tabela para o backend. O " -"Superset tentará novamente mais tarde. Entre em contato com o " -"administrador se o problema persistir." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" +msgstr "%s operador(es)" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" -msgstr "Não foi possível recuperar as cores do painel" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "Selecionar operador" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a " -"tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " -"erro: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "Opção de comparador" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" -msgstr "" -"Não foi possível fazer upload do arquivo colunar \"%(filename)s\" para a " -"tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " -"erro: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Digite um valor aqui" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Não foi possível fazer upload do arquivo do Excel \"%(filename)s\" para a" -" tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de" -" erro: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Valor do filtro (diferencia maiúsculas de minúsculas)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Indefinido" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#, fuzzy +msgid "Failed to retrieve advanced type" +msgstr "Falha na obtenção de resultados" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Janela indefinida para operação de rolagem" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "escolha WHERE ou HAVING..." -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" -msgstr "Desfazer a ação" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Filtros por colunas" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "Desfazer?" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Filtros por métricas" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Erro inesperado" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" +msgstr "métrica" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" -msgstr "" -"Ocorreu um erro inesperado, verifique os registros(logs) para obter " -"detalhes" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Fixo" + +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "Com base em uma métrica" + +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Minha métrica" + +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Adicionar métrica" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 #, fuzzy -msgid "Unexpected error: " -msgstr "Erro inesperado:" +msgid "Select aggregate options" +msgstr "Proporções de área de uso" -#: superset/views/api.py:108 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unexpected time range: %s" -msgstr "Intervalo de tempo inesperado: %s" +msgid "%s aggregates(s)" +msgstr "%s agregado(s)" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "Desconhecido" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "Selecionar métricas salvas" -#: superset/db_engine_specs/mysql.py:155 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Host do servidor MySQL desconhecido \"%(hostname)s\"." +msgid "%s saved metric(s)" +msgstr "%s salvos métrica(s)" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "Erro desconhecido do Presto" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Salvo métrica" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" -msgstr "Status Desconhecido" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" +msgstr "Nenhuma métrica salva foi encontrada" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Coluna desconhecida usada em orderby: %(col)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +#, fuzzy +msgid "Add metrics to dataset in \"Edit datasource\" modal" +msgstr "Adicionar Métricas para conjunto de dados em \"Edit datasource\"modal" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "Erro desconhecido" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "para adicionar métricas" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" -msgstr "Formato de entrada desconhecido" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "As métricas ad-hoc simples não estão ativadas para este conjunto de dados" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" -msgstr "Valor desconhecido" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "coluna" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Tipo de retorno inseguro para a função %(func)s: %(value_ type)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "agregar" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Valor de modelo não seguro para a chave %(key)s: %(value_ type)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "" +"As métricas ad-hoc de SQL personalizado não estão ativadas para este " +"conjunto de dados" -#: superset/utils/core.py:1104 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 #, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "Tipo de cláusula sem suporte: %(clause)s" +msgid "Error while fetching data: %s" +msgstr "Erro ao buscar dados: %s" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Operação de pós-processamento sem suporte: %(operation)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Colunas de séries temporais" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Valor de retorno não suportado para o método %(name)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" +msgstr "Valor real" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Valor de modelo não suportado para a chave %(key)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "Sparkline" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Grão de tempo não suportado: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "Média do período" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -msgid "Untitled Dataset" -msgstr "Conjunto de dados sem título" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" +msgstr "O rótulo do cabeçalho da coluna" -#: superset/views/sql_lab/views.py:148 -msgid "Untitled Query" -msgstr "Consulta sem título" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "Dica de ferramenta para o cabeçalho da coluna" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Consulta sem título" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" +msgstr "Tipo de comparação, diferença de valor ou porcentagem" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "Atualização" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Largura" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" -msgstr "Atualizar Gráfico" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "Largura do brilho" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "A atualização do gráfico foi interrompida" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "Altura do minigráfico" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Carregar" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" +msgstr "Defasagem de tempo" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" -msgstr "Carregar CSV" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" -msgstr "Carregar CSV para o banco de dados" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" +msgstr "Atraso de tempo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "Carregar credenciais" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" +msgstr "Relação de tempo" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" -msgstr "Upload habilitado" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" +msgstr "Número de períodos para razão contra" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" -msgstr "Carregar arquivo Excel" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" +msgstr "Relação de tempo" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "Carregar arquivo do Excel para o banco de dados" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "Mostrar eixo Y" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "Carregar arquivo JSON" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "" +"Mostra o eixo Y na Sparkline. Exibirá os valores mínimo/máximo definidos " +"manualmente, se definidos, ou os valores mínimo/máximo nos dados, caso " +"contrário." -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" -msgstr "Carregar arquivo colunar" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "Eixo Y limites" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" -msgstr "Carregar arquivo colunar no banco de dados" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "Definir manualmente os valores mínimo/máximo para o eixo y." -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" -msgstr "Carregar arquivo no banco de dados" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "Limites de cor" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" -msgstr "Uso" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" +"Limites numéricos utilizados para a codificação de cores de vermelho para" +" azul.\n" +" Inverta os números de azul para vermelho. Para obter vermelho ou azul " +"puro,\n" +" pode introduzir apenas o mínimo ou o máximo." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." -msgstr "Em vez disso, use o menu \"%(menuName)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" +msgstr "String opcional de formato de número d3" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." -msgstr "Use %s para abrir em uma nova guia." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" +msgstr "String de formato de número" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" -msgstr "Proporções de área de uso" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" +msgstr "Cadeia de caracteres opcional de formato de data d3" -#: superset/views/database/forms.py:472 -msgid "Use Columns" -msgstr "Usar colunas" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" +msgstr "String de formato de data" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "Use uma escala logarítmica" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" +msgstr "Configuração da coluna" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "Use uma escala logarítmica para eixo X" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "Selecione o tipo de visualização" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "Use uma escala logarítmica para o eixo Y" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" +msgstr "Atualmente renderizado: %s" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "Use uma conexão criptografada com o banco de dados" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "Etiquetas recomendadas" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" -"Use outro gráfico existente como fonte para anotações e sobreposições.\n" -" Seu gráfico deve ser um destes tipos de visualização: [%s]" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "Pesquisar todos os gráficos" + +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "Nenhuma descrição disponível." + +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Exemplos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" -"Usar formatação de data mesmo quando o valor da métrica não for um " -"carimbo de data/hora" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Não há suporte para esse tipo de visualização." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "Usar o editor de fonte de dados herdado" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" +msgstr "Exibir todos os gráficos" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "Use métricas como um grupo de nível superior para colunas ou linhas" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Selecione um tipo de visualização" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "Use apenas um único valor." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Não foram encontrados resultados" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" -msgstr "Use as opções de análise avançada abaixo" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +#, fuzzy +msgid "Superset Chart" +msgstr "Gráfico do Superset" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." -msgstr "" -"Use o arquivo JSON que você baixou automaticamente ao criar sua conta de " -"serviço." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Novo gráfico" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" -msgstr "Use o botão de edição para alterar esse campo" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Editar propriedades do gráfico" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "Use esta seção se quiser uma consulta que agregue" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" +msgstr "Painéis adicionados a" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "Use esta seção se quiser consultar linhas atômicas" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +#, fuzzy +msgid "Export to original .CSV" +msgstr "Exportar para .CSV original" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "Use isso para definir uma cor estática para todos os círculos" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +#, fuzzy +msgid "Export to pivoted .CSV" +msgstr "Exportar para .CSV articulado" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" -"Usado internamente para identificar o plug-in. Deve ser definido com o " -"nome do pacote do package.json do plugin" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" +msgstr "Exportar para .JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "" -"Usado para resumir um conjunto de dados, agrupando várias estatísticas ao" -" longo de dois eixos. Exemplos: Números de vendas por região e mês, " -"tarefas por status e responsável, usuários ativos por idade e local. Não " -"é a visualização mais impressionante visualmente, mas é altamente " -"informativa e versátil." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "Incorporar código" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Usuário" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Executar no SQL Lab" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Funções de usuário" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Código" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." -msgstr "O usuário não tem as permissões adequadas." +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Tipo de marcação" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" -msgstr "O usuário deve selecionar um valor antes de aplicar o filtro" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Escolha sua linguagem de marcação favorita" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "O usuário deve selecionar um valor para esso filtro" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Coloque seu código here" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "Consulta do usuário" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Parâmetros de URL" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "Nome de usuário" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Parâmetros extra para utilização em consultas de modelo jinja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Anotações e camadas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" -"Usa um medidor para mostrar o progresso de uma métrica em direção a uma " -"meta. A posição do mostrador representa o progresso e o valor do terminal" -" no medidor representa o valor-alvo." +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Camadas de anotação" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "" -"Usa círculos para visualizar o fluxo de dados em diferentes estágios de " -"um sistema. Passe o mouse sobre caminhos individuais na visualização para" -" entender os estágios de um valor. Útil para funis e pipelines de " -"visualização de vários estágios e vários grupos." +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "As minhas lindas cores" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Valor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (menor que)" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" -msgstr "Domínio de Valor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (Maior que)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" -msgstr "Formato do valor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (menor ou equal)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" -msgstr "Limites de valor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (Maior ou equal)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" -msgstr "Formato do valor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (É igual)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "O valor é necessário" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (diferente)" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "O valor deve ser maior que 0" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Não nulo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "Os valores dependem de outros filtros" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 dias" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" -msgstr "Valores dependentes de" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 dias" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" -msgstr "" -"Os valores selecionados em outros filtros afetarão as opções de filtro " -"para mostrar apenas os valores relevantes" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Adicionar método de notificação" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "Tipos de veículos" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Adicionar método de entrega" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Nome detalhado" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Adicionar" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" -msgstr "Versão" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" +msgstr "Editar relatório" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "Número da versão" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "Editar Alerta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" -msgstr "Vertical" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "Adicionar relatório" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" -msgstr "Vertical (esquerda)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "Adicionar alerta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "Consoles de videogame" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Nome do relatório" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" -msgstr "Ver" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Nome do alerta" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Ativo" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" -msgstr "Ver Todos »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Condição de alerta" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -msgid "View Dataset" -msgstr "Exibir conjunto de dados" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "Consulta SQL" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -msgid "View all charts" -msgstr "Exibir todos os gráficos" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" -msgstr "Exibir como tabela" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Alerta de acionamento se..." -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Exibir no SQL Lab" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "Condição" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Exibir chaves e índices (%s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Agendamento do relatório" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Ver consulta" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Programação do estado de alerta" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Visto" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "Fuso horário" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" -msgstr "Visualizado %s" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Configurações de agendamento" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "Porta de exibição" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Retenção de log" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" -msgstr "Virtual" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Tempo limite de trabalho" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "Virtual (SQL)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Tempo em segundos" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Conjunto de dados virtuais" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" +msgstr "segundos" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "A consulta do conjunto de dados virtual não pode estar vazia" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Período de inatividade" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "" -"A consulta de conjunto de dados virtual não pode consistir em várias " -"instruções" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Conteúdo da Mensagem" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "A consulta ao conjunto de dados virtual deve ser somente de leitura" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "Enviar como PNG" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "Ajustes visuais" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "Enviar como CSV" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Tipo de visualização" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "Enviar como texto" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Tipo de visualização" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +#, fuzzy +msgid "Ignore cache when generating report" +msgstr "Ignorar o cache ao gerar a captura de tela" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -"Visualize um conjunto paralelo de métricas em vários grupos. Cada grupo é" -" visualizado usando sua própria linha de pontos e cada métrica é " -"representada como uma borda no gráfico." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -"Visualize uma métrica relacionada em pares de grupos. Os mapas de calor " -"são excelentes para mostrar a correlação ou a força entre dois grupos. A " -"cor é usada para enfatizar a força do vínculo entre cada par de grupos." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" -"Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D " -"na visualização em grade." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Método de notificação" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" -"Visualize como uma métrica muda ao longo do tempo usando barras. Adicione" -" um grupo por coluna para visualizar métricas de nível de grupo e como " -"elas mudam ao longo do tempo." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "relatório" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "" -"Visualize vários níveis de hierarquia usando uma estrutura familiar " -"semelhante a uma árvore." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" +msgstr "%s atualizado" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "" -"Visualize duas séries diferentes usando o mesmo eixo x. Observe que ambas" -" as séries podem ser visualizadas com um tipo de gráfico diferente (por " -"exemplo, uma usando barras e outra usando uma linha)." +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" +msgstr "Cronograma do CRON" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:28 -msgid "" -"Visualize two different time series using the same x-axis time range. " -"This chart is being deprecated and we recommend using the Mixed " -"Timeseries Chart instead!" -msgstr "" -"Visualize duas séries temporais diferentes usando o mesmo intervalo de " -"tempo do eixo x. Esse gráfico está sendo descontinuado e, em vez disso, " -"recomendamos o uso do gráfico de série temporal mista!" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "Expressão CRON" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "" -"Visualize duas séries temporais diferentes usando o mesmo eixo x. Observe" -" que cada série temporal pode ser visualizada de forma diferente (por " -"exemplo, uma usando barras e outra usando uma linha)." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Relatório enviado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:28 -msgid "" -"Visualize two different time series using the same x-axis time range. " -"This chart is being deprecated and we recommend using the Mixed " -"Timeseries Chart instead!" -msgstr "" -"Visualize duas séries temporais diferentes usando o mesmo intervalo de " -"tempo do eixo x. Esse gráfico está sendo descontinuado e, em vez disso, " -"recomendamos o uso do gráfico de série temporal mista!" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Alerta acionado , notificação enviada" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" -"Visualiza uma métrica em três dimensões de dados em um único gráfico " -"(eixo X, eixo Y e tamanho da bolha). As bolhas do mesmo grupo podem ser " -"exibidas usando a cor da bolha." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Enviando relatório" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." -msgstr "Visualiza pontos conectados, que formam um caminho, em um mapa." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Alerta em execução" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." -msgstr "" -"Visualiza áreas geográficas de seus dados como polígonos em um mapa " -"renderizado do Mapbox. Os polígonos podem ser coloridos usando uma " -"métrica." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Relatório falhou" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." -msgstr "" -"Visualiza como uma métrica mudou ao longo do tempo usando uma escala de " -"cores e uma visualização de calendário. Os valores em cinza são usados " -"para indicar valores ausentes e o esquema de cores linear é usado para " -"codificar a magnitude do valor de cada dia." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Falha no alerta" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" -"Visualiza como uma única métrica varia entre as principais subdivisões de" -" um país (estados, províncias etc.) em um mapa coroplético. O valor de " -"cada subdivisão é elevado quando você passa o mouse sobre o limite " -"geográfico correspondente." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Nada foi acionado" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "" -"Visualiza muitos objetos de séries temporais diferentes em um único " -"gráfico. Esse gráfico está sendo descontinuado e, em vez dele, " -"recomendamos o uso do gráfico de série temporal." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Alerta Acionado, em período de carência" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "" -"Visualiza o fluxo de valores de diferentes grupos por meio de diferentes " -"estágios de um sistema. Novos estágios no pipeline são visualizados como " -"nós ou camadas. A espessura das barras ou bordas representa a métrica que" -" está sendo visualizada." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "Método de entrega" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "Selecione o método de entrega" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +#, fuzzy +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Os destinatários são separados por \",\"ou \";\"" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +msgid "Queries" +msgstr "Consultas" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -"Visualiza as palavras em uma coluna que aparecem com mais frequência. A " -"fonte maior corresponde à maior frequência." -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "O Viz não tem uma fonte de dados" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:265 -msgid "Viz type" -msgstr "Tipo de visualização" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "camada de anotação" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "QUA" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" +msgstr "Modelo de anotação atualizado" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "Deseja adicionar um novo banco de dados?" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" +msgstr "Modelo de anotação criado" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "Advertência" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Editar propriedades da camada de anotação" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Mensagem de aviso" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Nome da camada de anotação" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Atenção!" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Descrição (esta pode ser vista na lista)" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." -msgstr "" -"Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os " -"metadados não existirem." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "anotação" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" -msgstr "Não foi possível verificar sua consulta" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "A anotação foi atualizada" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." -msgstr "" -"Não conseguimos nos conectar ao seu banco de dados. Clique em \"Ver " -"mais\" para obter informações fornecidas pelo banco de dados que podem " -"ajudar a solucionar o problema." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "A anotação foi salva" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Editar anotação" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "Parece que não conseguimos resolver a coluna \"%(column_name)s\"" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Adicionar anotação" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." -msgstr "" -"Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha" -" %(location)s." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "data" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" -msgstr "Temos as seguintes chaves: %s" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Informação adicional" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." -msgstr "Não foi possível ativar ou desativar esse relatório." +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Por favor confirme" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." -msgstr "" -"Não foi possível transferir nenhum controle ao mudar para esse novo " -"conjunto de dados." +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Tem certeza que deseja remover" -#: superset/db_engine_specs/redshift.py:94 +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 #, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." -msgstr "" -"Não foi possível conectar-se ao seu banco de dados chamado " -"\"%(database)s\". Verifique o nome do banco de dados e tente novamente." +msgid "Modified %s" +msgstr "Modificado %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" -msgstr "Rede" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css_template" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Quarta-feira" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Editar propriedades do modelo CSS" -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "Semana" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Adicionar modelo CSS" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" -msgstr "Semana terminando no Sábado" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" -msgstr "Semana começando na segunda-feira" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "publicado" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "Semana começando no domingo" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "rascunho" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" -msgstr "Domingo de fim de semana" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "Ajustar como esse banco de dados vai interagir com SQL Lab." -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" -msgstr "Relatório semanal" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "Expor banco de dados no SQL Lab" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" -msgstr "Relatório semanal para %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Permitir que o banco de dados seja consultado no SQL Lab" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" -msgstr "Sazonalidade semanal" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Permitir criação de novas tabelas baseadas em consultas" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" -msgstr "Semanas %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Permitir criação de novas visualizações baseadas em consultas" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" -msgstr "Peso" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "CTAS & CVAS SCHEMA" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -"Estamos tendo problemas para carregar esses resultados. As consultas " -"estão definidas para atingir o tempo limite após %s segundos." -msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Criar ou selecionar esquema..." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -"Estamos tendo problemas para carregar essa visualização. As consultas " -"estão definidas para atingir o tempo limite após %s segundos." -msgstr[1] "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" -msgstr "O que deve constar no rótulo?" - -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" -msgstr "O que deve acontecer se a tabela já existir" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." +msgstr "" +"Força a criação de todas as tabelas e visôes neste esquema ao clicar em " +"CTAS ou CVAS no SQL Lab." -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -"Quando `Calculation type` é definido como \"Percentage change\", o " -"formato do eixo Y é forçado a `.1%`" +"Permitir manipulação do banco de dados usando instruções não SELECT como " +"UPDATE, DELETE, CREATE, etc." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." -msgstr "" -"Quando uma métrica secundária é fornecida, uma escala de cores linear é " -"usada." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "Ativar estimativa de custo de consulta" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -"Ao permitir a opção CREATE TABLE AS no SQL Lab, essa opção força a " -"criação da tabela nesse esquema" +"Para Bigquery, Presto e Postgres, mostra um botão para calcular o custo " +"antes de executar uma consulta." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" -msgstr "Quando marcada, o mapa será ampliado para seus dados após cada consulta" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "Permitir que esse banco de dados seja explorado" #: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." @@ -18490,649 +18104,709 @@ msgstr "" "Quando ativado, os usuários podem visualizar os resultados do SQL Lab no " "Explore." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." -msgstr "" -"Quando apenas uma métrica primária é fornecida, é usada uma escala de " -"cores categórica." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "Desativar as consultas de pré-visualização de dados do SQL Lab" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -"Ao especificar o SQL, a fonte de dados atua como uma visualização. O " -"Superset usará essa instrução como uma subconsulta ao agrupar e filtrar " -"as consultas pai geradas." +"Desativar a pré-visualização de dados ao obter metadados de tabelas no " +"SQL Lab. Útil para evitar problemas de desempenho do navegador quando se" +" utilizam bancos de dados com tabelas muito grandes." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -"Ao usar \"Autocomplete filters\", isso pode ser usado para melhorar o " -"desempenho da consulta que busca os valores. Use essa opção para aplicar " -"um predicado (cláusula WHERE) à consulta que seleciona os valores " -"distintos da tabela. Normalmente, a intenção seria limitar a varredura " -"aplicando um filtro de tempo relativo em um campo particionado ou " -"indexado relacionado ao tempo." -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "Ao usar 'Agrupar Por' você é limitado usar uma única métrica" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "Desempenho" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." +msgstr "Ajuste as configurações de desempenho desse banco de dados." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Tempo limite da cache do gráfico" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "Insira a duração em segundos" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -"Ao usar uma formatação diferente da adaptativa, os rótulos podem se " -"sobrepor" +"Duração (em segundos) do tempo limite do cache para gráficos desse banco " +"de dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 " +"ignora o cache. Observe que o padrão é o tempo limite global se não for " +"definido." -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" -msgstr "Ao usar essa opção, o valor padrão não pode ser definido" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "Tempo limite do cache de esquema" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" -msgstr "Se a barra de progresso se sobrepõe quando há vários grupos de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "" +"Duração (em segundos) do tempo limite do cache de metadados para esquemas" +" desse banco de dados. Se não for definido, o cache nunca expira." -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "Se a tabela foi gerada pelo fluxo 'Visualizar' no SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "Tempo limite do cache da tabela" -#: superset/connectors/sqla/views.py:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +#, fuzzy msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -"Se essa coluna está exposta na seção `Filtros` da visualização de " -"exploração." +"Duração (em segundos) do tempo limite do cache de metadados para tabelas " +"desse banco de dados. Se não for definido, o cache nunca expira." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Execução de consulta assíncrona" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "Cancelar consulta no evento de descarregamento da janela" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" -msgstr "Se deve alinhar gráficos de fundo com valores positivos e negativos em 0" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." +msgstr "" +"Termina as consultas em execução quando a janela do browser é fechada ou " +"se navega para outra página. Disponível para bancos de dados Presto, " +"Hive, MySQL, Postgres e Snowflake." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." +msgstr "Adicione informações adicionais sobre a conexão." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Segurança Extra" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" -"Se os valores positivos e negativos no gráfico de barras de células devem" -" ser alinhados em 0" +"Cadeia de caracteres JSON contendo configuração de conexão adicional. " +"Isso é usado para fornecer informações de conexão para sistemas como " +"Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de " +"nome de usuário:senha normalmente usada pelo SQLAlchemy." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" -msgstr "Se deve sempre mostrar o rótulo da anotação" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "Digite CA_BUNDLE" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" -msgstr "Se deseja animar o progresso e o valor ou apenas exibi-los" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 +msgid "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." +msgstr "" +"Conteúdo CA_BUNDLE opcional para validar pedidos HTTPS. Apenas disponível" +" em determinados motores de banco de dados." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -"Se deve ser aplicada uma distribuição normal com base na classificação na" -" escala de cores" +"Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e " +"GSheets)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" -msgstr "Se o filtro deve ser aplicado quando os itens são clicados" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Se for o Presto ou o Trino, todas as consultas no SQL Lab serão " +"executadas como o usuário conectado no momento, que deve ter permissão " +"para executá-las. Se o Hive e o hive.server2.enable.doAs estiverem " +"ativados, as consultas serão executadas como conta de serviço, mas " +"representarão o usuário conectado no momento por meio da propriedade " +"hive.server2.proxy.user." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" +msgstr "Permitir uploads de arquivos para o banco de dados" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" +msgstr "Esquemas permitidos para upload de arquivos" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -"Se os valores numéricos devem ser coloridos de acordo com o fato de serem" -" positivos ou negativos" +"Uma lista separada por vírgulas de esquemas para os quais os arquivos têm" +" permissão para fazer upload." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" -msgstr "Se deve ser exibido um fundo de gráfico de barras nas colunas da tabela" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." +msgstr "Configurações adicionais." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" -msgstr "Se deve ser exibida uma legenda para o gráfico" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "Parâmetros de metadados" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" -msgstr "Se deseja exibir bolhas na parte superior dos países" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." +msgstr "O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" -msgstr "Se deve ser exibida a contagem agregada" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "Parâmetros do motor" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" -msgstr "Se deseja exibir a tabela de dados interativa" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." +msgstr "" +"O objeto engine_params é descompactado na chamada " +"sqlalchemy.create_engine." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." -msgstr "Se os rótulos devem ser exibidos." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "Versão" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "Número da versão" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +#, fuzzy msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -"Se deseja exibir os rótulos. Observe que o rótulo só é exibido quando o " -"limite é de 5%." +"Especifique a versão do banco de dados. Isto deve ser utilizado com o " +"Presto para permitir a estimativa do custo da consulta." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" -msgstr "Se a legenda deve ser exibida (alterna)" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "ETAPA %(stepCurr)s De %(stepLast)s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" -msgstr "Se o nome da métrica deve ser exibido como um título" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" +msgstr "Inserir credenciais primárias" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" -msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo X" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "Precisa de ajuda? Aprenda como conectar seu banco de dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" +msgstr "Banco de dados conectado" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." +msgstr "" +"Criar um conjunto de dados para começar a visualizar seus dados como um " +"gráfico ou vá para\n" +" SQL Lab para consultar seus dados." + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "Digite as credenciais %(dbModelName)s necessárias" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" -msgstr "Se deseja exibir os valores numéricos dentro das células" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "Precisa de ajuda? Saiba mais sobre" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" -msgstr "Se o traço deve ser exibido" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." +msgstr "conectando ao %(dbModelName)s." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "Se deve ser exibido o seletor interativo de intervalo de tempo" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" +msgstr "Selecione um banco de dados para se conectar" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" -msgstr "Se deve ser exibido o registro de data e hora" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" +msgstr "Host SSH" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" -msgstr "Se a linha de tendência deve ser exibida" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" +msgstr "por exemplo, 127.0.0.1" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." -msgstr "Se deve permitir a alteração da posição e da escala do gráfico." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" +msgstr "Porta SSH" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." -msgstr "Se deve permitir o arrastamento de nós no modo de layout forçado." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" -msgstr "Se os objetos devem ser preenchidos" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +#, fuzzy +msgid "e.g. Analytics" +msgstr "Analytics avançado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" -msgstr "Se devem ser ignorados os locais que são nulos" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" +msgstr "Fazer login com" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" -msgstr "Se deve incluir uma caixa de pesquisa no lado do cliente" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" +msgstr "Chave privada e Senha" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Se deve incluir um filtro de tempo" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" +msgstr "Senha SSH" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" -msgstr "Se a porcentagem deve ser incluída na dica de ferramenta" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "por exemplo ********" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" -"Se deve incluir a granularidade de tempo conforme definido na seção de " -"tempo" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "Chave privada" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" -msgstr "Se a grade deve ser 3D" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" +msgstr "Cole a chave privada aqui" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "Se o histograma deve ser cumulativo" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "Chave privada e Senha" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" -msgstr "" -"Para tornar essa coluna disponível como uma opção [Time Granularity], a " -"coluna deve ser DATETIME ou semelhante a DATETIME" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" +msgstr "Túnel SSH" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "Se deve normalizar o histograma" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" +msgstr "Parâmetros de configuração do Túnel SSH" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "Se as opções de filtros de preenchimento automático devem ser preenchidas" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Nome de exibição" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" -msgstr "" -"Se deve preencher o menu suspenso do filtro na seção de filtro da " -"exibição de exploração com uma lista de valores distintos obtidos do " -"backend em tempo real" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "Nome do seu banco de dados" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." -msgstr "" -"Se deve ou não mostrar controles extras. Os controles extras incluem " -"coisas como a criação de gráficos mulitBar empilhados ou lado a lado." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "Escolha um nome para te ajudar identificar esse banco de dados." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "Se devem ser mostrados ticks menores no eixo" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "dialect+driver://username:password@host:port/database" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" -msgstr "Se o ponteiro deve ser exibido" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "Consulte o" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" -msgstr "Se deve mostrar o progresso do gráfico do medidor" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr "para obter mais informações sobre como estruturar seu URI." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" -msgstr "Se devem ser mostradas as linhas divididas no eixo" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Testar Conexão" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Se a classificação deve ser ascendente ou descendente no eixo base." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "banco de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Se a classificação deve ser descendente ou ascendente" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Por favor insira um URI SQLAlchemy para teste" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "" -"Se a classificação será decrescente ou crescente se houver um limite de " -"série" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" +msgstr "por exemplo, world_population" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." -msgstr "" -"Se os resultados devem ser classificados pela métrica selecionada em " -"ordem decrescente." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" +msgstr "Configurações do banco de dados atualizadas" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -"Se a dica de ferramenta deve ser classificada pela métrica selecionada em" -" ordem decrescente." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" -msgstr "Se as métricas devem ser truncadas" +"Lamentamos, mas ocorreu um erro ao obter as informações do banco de " +"dados: %s" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" -msgstr "Para qual país traçar o mapa?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" +msgstr "Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" -msgstr "Qual parentes para destaque sobre passe o mouse" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" +msgstr "Bancos de dados compatíveis" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:41 -msgid "Whisker/outlier options" -msgstr "Opções de Whisker/outlier" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." +msgstr "Escolha um banco de dados..." -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" -msgstr "Branco" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "Deseja adicionar um novo banco de dados?" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Largura" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +#, fuzzy +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "" +"Podem ser adicionadas quaisquer bases de dados que permitam ligações " +"através de URIs do SQL Alchemy." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "Largura do intervalo de confiança. Deve estar entre 0 e 1" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#, fuzzy +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "" +"Podem ser adicionadas quaisquer bases de dados que permitam ligações " +"através de URIs do SQL Alchemy. Aprenda como conectar um driver de banco " +"de dados" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" -msgstr "Largura do brilho" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "Conectar" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "A janela deve ser > 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "Finalizar" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" -msgstr "Com um subtítulo" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "" +"Esse banco de dados é gerenciado externamente e não pode ser editado no " +"Superset" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" -msgstr "Nuvem de palavras" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-los. " +"Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração " +"do banco de dados não estão presentes nos arquivos de exploração e devem " +"ser adicionadas manualmente após a importação, caso sejam necessárias." -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" -msgstr "Rotação de palavras" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Você está importando um ou mais bancos de dados que já existem. A " +"substituição pode fazer com que você perca parte do seu trabalho. Tem " +"certeza de que deseja substituir?" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" -msgstr "Trabalhando" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" +msgstr "Erro na criação do banco de dados" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Working timeout" -msgstr "Tempo limite de trabalho" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." +msgstr "" +"Não conseguimos nos conectar ao seu banco de dados. Clique em \"Ver " +"mais\" para obter informações fornecidas pelo banco de dados que podem " +"ajudar a solucionar o problema." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Mapa do Mundo" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" +msgstr "CREATE DATASET" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Escreva uma descrição para sua consulta" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" +msgstr "CONSULTAR DADOS NO SQL LAB" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" -msgstr "Escreva um modelo de guidão para renderizar os dados" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "Conectar um banco de dados" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" -msgstr "Escreve o índice do dataframe como uma coluna" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Editar banco de dados" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "Escreve o índice do dataframe como uma coluna." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" +msgstr "Em vez disso, conecte esse banco de dados utilizando o formulário dinâmico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" -msgstr "MARGEM INFERIOR DO TÍTULO DO EIXO X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." +msgstr "" +"Clique neste link para mudar para um formulário alternativo que expõe " +"apenas os campos obrigatórios necessários para conectar esse banco de " +"dados." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "Eixo X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "Adicional campos que podem ser necessários" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" -msgstr "Formato do eixo X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +#, fuzzy +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " +msgstr "" +"Alguns bancos de dados exigem o preenchimento de campos adicionais na " +"guia Avançado para que a conexão com o banco de dados seja bem-sucedida. " +"Saiba quais são os requisitos de seus bancos de dados" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" -msgstr "Rótulo do Eixo X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" +msgstr "Importar banco de dados de um arquivo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" -msgstr "Título do Eixo X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" +msgstr "Em vez disso, conecte esse banco de dados com uma cadeia de URI SQLAlchemy" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" -msgstr "Escala X Log" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "" +"Clique neste link para mudar para um formulário alternativa que permite " +"você inserir manualmente o URL do SQLAlchemy para esse banco de dados." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:58 -msgid "X Tick Layout" -msgstr "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" +"Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio " +"(por exemplo, mydatabase.com)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" -msgstr "Limites X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "Host" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" -msgstr "Classificação do eixo X em ordem crescente" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "por exemplo, 5432" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" -msgstr "Classificação do Eixo X Por" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" +msgstr "Porta" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" -msgstr "Eixo X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" +msgstr "por exemplo , sql/protocolv1/o/12345" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" -msgstr "Intervalo XScale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." +msgstr "Copiar o nome do caminho HTTP de seu cluster." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" -msgstr "Y 2 limites" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." +msgstr "Copiar o nome do banco de dados que você está tentando se conectar." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" -msgstr "MARGEM DO TÍTULO DO EIXO Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" +msgstr "Token de acesso" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" -msgstr "POSIÇÃO DO TÍTULO DO EIXO Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." +msgstr "" +"Escolha um apelido para a forma como o banco de dados será exibido no " +"Superset." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" +msgstr "por exemplo, param1=value1¶m2=value2" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:40 -msgid "Y Axis 1" -msgstr "Eixo Y 1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" +msgstr "Parâmetros adicionais" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:50 -msgid "Y Axis 2" -msgstr "Eixo Y 2" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "Adicionar parâmetros personalizados adicionais" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" -msgstr "Eixo Y 2 Limites" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "O modo SSL \"require\" será usado." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" -msgstr "Limites do Eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "Tipo de Planilhas Google permitido" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Formato do eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "Apenas Planilhas compartilhadas publicamente" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" -msgstr "Rótulo do Eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "Planilhas compartilhadas públicas e privadas" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:88 -msgid "Y Axis Left" -msgstr "Eixo Y Esquerdo" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" +msgstr "Como pretende introduzir as credenciais da conta de serviço?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:123 -msgid "Y Axis Right" -msgstr "Eixo Y Direito" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "Carregar arquivo JSON" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" -msgstr "Título do Eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "Copiar e cole as credenciais JSON" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "Escala logarítmica Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "Conta de serviço" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" -msgstr "Limites Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" +msgstr "Colar aqui o conteúdo do arquivo JSON das credenciais de serviço" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" -msgstr "Classificação do eixo Y em ordem crescente" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "Copie e cole todo o ficheiro service account.json aqui" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" -msgstr "Classificação do Eixo Y Por" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "Carregar credenciais" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" -msgstr "Eixo Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." +msgstr "" +"Use o arquivo JSON que você baixou automaticamente ao criar sua conta de " +"serviço." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" -msgstr "Eixo Y limites" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "Conectar Planilhas Google como tabelas para esse banco de dados" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" -msgstr "Intervalo da escala Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Planilha Google Nome e URL" -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "Ano" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "Digite um nome para essa planilha" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" -msgstr "Ano (freq=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "Colar o URL compartilhável da Planilha Google aqui" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" -msgstr "Sazonalidade anual" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "Adicionar planilha" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" -msgstr "Anos %s" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +#, fuzzy +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "Copiar o nome do banco de dados que você está tentando se conectar." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "Sim" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" +msgstr "por exemplo, xy12345.us-east-2.aws" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "Sim, cancelar" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" +msgstr "por exemplo , compute_wh" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" -msgstr "Sim, sobrescrever mudanças" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" +msgstr "por exemplo , AccountAdmin" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" -"Você está importando um ou mais gráficos que já existem. A substituição " -"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " -"deseja substituir?" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" +msgstr "Conjunto de dados duplicado" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "" -"Você está importando um ou mais painéis que já existem. A substituição " -"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " -"deseja substituir?" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" +msgstr "Duplicado" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" +msgstr "Novo nome do conjunto de dados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/constants.ts:23 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -"Você está importando um ou mais bancos de dados que já existem. A " -"substituição pode fazer com que você perca parte do seu trabalho. Tem " -"certeza de que deseja substituir?" +"As senhas dos bancos de dados abaixo são necessárias para importá-las " +"junto com os conjuntos de dados. Observe que as seções \"Secure Extra\" e" +" \"Certificate\" da configuração do banco de dados não estão presentes " +"nos arquivos de exportação e devem ser adicionadas manualmente após a " +"importação, caso sejam necessárias." #: superset-frontend/src/features/datasets/constants.ts:30 msgid "" @@ -19144,1522 +18818,1766 @@ msgstr "" "substituição pode fazer com que você perca parte do seu trabalho. Tem " "certeza de que deseja substituir?" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" +msgstr "Atualização de colunas" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" +msgstr "Colunas da tabela" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" +msgstr "Carregando" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 #, fuzzy msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -"Você está importando um ou mais gráficos que já existem. A substituição " -"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " -"deseja substituir?" +"Essa tabela já tem um conjunto de dados associado a ela. Você só pode " +"associar um conjunto de dados a uma tabela." + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" +msgstr "Exibir conjunto de dados" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" +msgstr "Essa tabela já tem um conjunto de dados" -#: superset/views/core.py:2213 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +#, fuzzy msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -"Você não está autorizado a ver esta consulta. Se achar que isso é um " -"erro, entre em contato com seu administrador." +"Os conjuntos de dados podem ser criados a partir de tabelas de banco de " +"dados ou consultas SQL. Selecione uma tabela de banco de dados à esquerda" +" ou" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" -msgstr "É possível" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" +msgstr "criar um conjunto de dados a partir de uma consulta SQL" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "Você pode adicionar o componentes no" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +#, fuzzy +msgid " to open SQL Lab. From there you can save the query as a dataset." +msgstr "" +"para abrir o SQL Lab. De lá você pode salvar a consulta como um conjunto " +"de dados." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "Você pode adicionar os componentes no modo de edição." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" +msgstr "Selecione a fonte do conjunto de dados" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" -"Você também pode simplesmente clicar no gráfico para aplicar o filtro " -"cruzado." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" +msgstr "Nenhuma coluna da tabela" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +"This database table does not contain any data. Please select a different " +"table." msgstr "" -"Você pode optar por exibir todos os gráficos aos quais tem acesso ou " -"apenas os que possui.\n" -" Sua seleção de filtro será salva e permanecerá ativa até que você decida" -" alterá-la." +"Essa tabela do banco de dados não contém dados. Selecione uma tabela " +"diferente." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" -msgstr "Você pode criar um novo gráfico ou usar os existentes no painel à direita" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" +msgstr "Ocorreu um erro" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -"Você pode visualizar a lista de painéis no menu suspenso de configurações" -" do gráfico." +"Não foi possível carregar colunas para a tabela selecionada. Selecione " +"uma tabela diferente." -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." -msgstr "Não é possível aplicar filtro cruzado a esse ponto de dados." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." +msgstr "A resposta da API de %s não corresponde à interface IDatabaseTable." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." -msgstr "" -"Você não pode excluir o último filtro temporal, pois ele é usado para " -"filtros de intervalo de tempo em painéis." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" +msgstr "Uso" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:367 -msgid "You cannot use 45° tick layout along with the time range filter" -msgstr "" -"Não é possível usar o layout de ticks de 45° junto com o filtro de " -"intervalo de tempo" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +msgid "Chart owners" +msgstr "Proprietários do gráfico" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." -msgstr "" -"Você não pode usar [Columns] em combinação com [Group " -"By]/[Metrics]/[Percentage Metrics]. Escolha um ou outro." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" +msgstr "Última modificação do gráfico" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" +msgstr "Gráfico modificado pela última vez por" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" +msgstr "Uso do painel" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" +msgstr "Criar gráfico com conjunto de dados" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "gráfico" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Sem gráficos" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "Esse conjunto de dados não é usado para alimentar nenhum gráfico." + +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." +msgstr "Selecione uma tabela de banco de dados." + +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" +msgstr "Criar conjunto de dados e criar gráfico" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" +msgstr "Novo conjunto de dados" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "Selecione uma tabela de banco de dados e crie um conjunto de dados" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" +msgstr "nome do conjunto de dados" + +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "Indefinido" + +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" +msgstr "Houve um erro ao buscar o conjunto de dados" + +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" +msgstr "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados" + +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" +msgstr "Ocorreu um erro ao carregar os metadados do conjunto de dados" + +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Sem título]" + +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Desconhecido" + +#: superset-frontend/src/features/home/ActivityTable.tsx:115 #, python-format -msgid "You do not have permission to edit this %s" -msgstr "Você não tem permissão para editar este %s" +msgid "Viewed %s" +msgstr "Visualizado %s" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "Você não tem permissão para editar este gráfico" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Editado" + +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Criado" + +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Visto" + +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Favorito" + +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Meu" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "Você não tem permissão para editar este painel" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "Ver Todos »" -#: superset/templates/superset/request_access.html:25 +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 #, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "Você não tem permissões para acessar o(s) recurso(s) de dados: %(name)s." +msgid "An error occurred while fetching dashboards: %s" +msgstr "Ocorreu um erro durante a pesquisa de painéis: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "Você não tem permissão para editar esse painel." +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" +msgstr "gráficos" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." -msgstr "Você não tem acesso a esse gráfico." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" +msgstr "painéis" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "Você não tem acesso a esse painel." +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "recentes" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." -msgstr "Você não tem acesso a esse conjunto de dados." +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "consultas salvas" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." -msgstr "Você não tem acesso a essa configuração de painel incorporado." +#: superset-frontend/src/features/home/EmptyState.tsx:35 +msgid "No charts yet" +msgstr "Ainda não há gráficos" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "Você ainda não tem nenhum favorito!" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +msgid "No dashboards yet" +msgstr "Ainda não há painéis" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." -msgstr "Você não tem permissão para modificar o valor." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" +msgstr "Ainda não há registros" -#: superset/security/manager.py:2262 -#, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Você não tem o direito de alterar %(resource)s" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +msgid "No saved queries yet" +msgstr "Ainda não há consultas salvas" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" -msgstr "Você não tem o direito de alterar esse gráfico" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" +msgstr "%(other)s gráficos irão aparecer aqui" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" -msgstr "Você não tem o direito de alterar esse painel de controle" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" +msgstr "%(other)s painéis irão aparecer aqui" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Você não tem o direito de alterar esse título." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" +msgstr "%(other)s recentes irão aparecer aqui" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" -msgstr "Você não tem o direito de criar um gráfico" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" +msgstr "%(other)s As consultas salvas aparecerão aqui" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" -msgstr "Você não tem direitos para criar um painel" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" +msgstr "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as csv" -msgstr "Você não tem o direito de fazer o download como csv" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" +msgstr "Os gráficos, painéis e consultas recentemente criados aparecerão aqui" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "Você não tem permissão para aprovar esta solicitação" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "Os gráficos, painéis e consultas recentemente editados aparecerão aqui" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Você removeu esse filtro." +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "Consulta SQL" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "Você tem alterações não salvas." +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "Você ainda não tem nenhum favorito!" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#: superset-frontend/src/features/home/EmptyState.tsx:181 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." -msgstr "" -"Você usou todos os espaços de desfazer de %(historyLength) e não poderá " -"desfazer totalmente as ações subsequentes. Você pode salvar seu estado " -"atual para redefinir o histórico." - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." -msgstr "" -"Você deve ser proprietário de um conjunto de dados para poder editá-lo. " -"Entre em contato com o proprietário do conjunto de dados para solicitar " -"modificações ou acesso de edição." - -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Você deve escolher um nome para o novo painel" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "Primeiro, você deve executar a consulta com êxito" +msgid "See all %(tableName)s" +msgstr "Ver todos %(tableName)s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" -msgstr "Você precisa configurar a sanitização de HTML para usar CSS" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "Conectar o banco de dados" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" -msgstr "" -"Você atualizou os valores no painel de controle, mas o gráfico não foi " -"atualizado automaticamente. Execute a consulta clicando no botão " -"\"Atualizar gráfico\" ou" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" +msgstr "Criar conjunto de dados" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." -msgstr "" -"Você alterou os conjuntos de dados. Todos os controles com dados " -"(colunas, métricas) que correspondem a esse novo conjunto de dados foram " -"mantidos." +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "Conectar Planilha Google" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "Seu gráfico não está atualizado" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "Carregar CSV para o banco de dados" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" -msgstr "Seu gráfico está pronto para ser usado!" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "Carregar arquivo colunar no banco de dados" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "Seu painel é muito grande. Reduza o tamanho antes de salvá-lo." +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "Carregar arquivo do Excel para o banco de dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Sua consulta não pôde ser salva" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" +msgstr "" +"Ativar 'Permitir uploads de arquivos para banco de dados' em quaisquer " +"configurações do banco de dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "Sua consulta não pôde ser agendada" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Informações" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Sua consulta não pôde ser atualizada" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Sair" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" -msgstr "" -"Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até" -" Consultas salvas" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "Sobre" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" -msgstr "Sua consulta não foi salva corretamente" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "Feito por Apache Superset" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "Sua consulta foi salva" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" +msgstr "SHA" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "Sua consulta foi atualizada" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" +msgstr "Construir" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" -msgstr "Não foi possível excluir seu relatório" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "Documentação" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" -msgstr "Imputação zero" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "Relatar um bug" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "Ampliar" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Entrar" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" -msgstr "Nível de zoom do mapa" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "consulta" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" -msgstr "[ painel sem título ]" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Excluído: %s" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "" -"As colunas [Longitude] e [Latitude] devem estar presentes em [ Agrupar " -"Por ]" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Houve um problema ao excluir %s: %s" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "[Longitude] e [Latitude] devem ser definidos" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Essa ação excluirá permanentemente a consulta salva." -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "[Conjunto de dados ausente]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Excluir consulta?" -#: superset/utils/core.py:908 +#: superset-frontend/src/features/home/SavedQueries.tsx:281 #, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] Acesso à fonte de dados %(name)s foi concedido" +msgid "Ran %s" +msgstr "Corrida %s" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "[Sem título]" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Consultas salvas" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" -msgstr "[asc]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Próximo" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" -msgstr "[cópia]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Nome da aba" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[nome do painel]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Consulta do usuário" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "[desc]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Consulta executada" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" -"[opcional] essa métrica secundária é usada para definir a cor como uma " -"proporção em relação à métrica primária. Quando omitida, a cor é " -"categórica e baseada em rótulos" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Nome da consulta" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" -msgstr "[sem título]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL copiado !" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Desculpe, seu navegador não suporta cópias." -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "`compare_type` deve ser `difference`, `percentage` ou `ratio`" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "Houve um problema na obtenção de relatórios anexados a esse painel." -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`confidence_interval` deve estar entre 0 e 1 (exclusivo)" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "O relatório foi criado" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." -msgstr "" -"`count` é COUNT(*) se for usado um grupo por. As colunas numéricas serão " -"agregadas com o agregador. As colunas não numéricas serão usadas para " -"rotular os pontos. Deixe em branco para obter uma contagem de pontos em " -"cada cluster." +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" +msgstr "Relatório atualizado" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "Propriedade `operation` do objeto de pós-processamento indefinida" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "Não foi possível ativar ou desativar esse relatório." -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "Pacote `prophet` não instalado" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "Não foi possível excluir seu relatório" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "`rename_columns` deve ter o mesmo comprimento que `columns`." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "Relatório semanal para %s" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "O `row_limit` deve ser maior ou igual a 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" +msgstr "Relatório semanal" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`row_offset` deve ser maior ou igual a 0" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "Editar relatório de e-mail" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "`largura` deve ser maior ou igual a 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" +msgstr "Agendar um novo relatório de e-mail" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "agregar" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "Texto incorporado no e-mail" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "alerta" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "Imagem (PNG) incorporada no e-mail" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -#, fuzzy -msgid "alert dark" -msgstr "alerta" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "CSV formatado anexado no e-mail" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "alertas" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" +msgstr "Nome do relatório" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" -msgstr "todos" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" +msgstr "Incluir uma descrição que será enviada com o seu relatório" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "também copiar (duplicar) gráficos" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "Uma captura de tela do painel vai ser enviado para seu e-mail em" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" -msgstr "ancestral" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" +msgstr "Falha ao atualizar relatório" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "e" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" +msgstr "Falha ao criar relatório" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "anotação" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" +msgstr "Configurar um relatório de e-mail" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "camada de anotação" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "Relatórios por e-mail ativo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" -msgstr "asfreq" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "Excluir relatório de e-mail" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "em" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "Agendar relatório por e-mail" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:60 -msgid "auto" -msgstr "automático" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Essa ação excluirá permanentemente %s." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" -msgstr "auto (Suave)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "Excluir relatório?" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "fundo" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Segurança em nível de linha" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" -msgstr "base" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "abaixo (exemplo:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "modo de edição" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "entre {down} e {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Add Rule" +msgstr "Fórmula ruim." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Nome completo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "parafuso" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "O nome deve ser único" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "ícone do tipo booleano" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +#, fuzzy +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "" +"Os filtros regulares adicionam cláusulas WHERE às consultas se um " +"utilizador pertencer a uma função referenciada no filtro. Os filtros de " +"base aplicam filtros a todas as consultas, excepto às funções definidas " +"no filtro, e podem ser utilizados para definir o que os utilizadores " +"podem ver se nenhum filtro RLS dentro de um grupo de filtros se aplicar a" +" eles." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" -msgstr "fundo" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +#, fuzzy +msgid "These are the datasets this filter will be applied to." +msgstr "Essas são as tabelas às quais esse filtro será aplicado." -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "(cmd + z) até você salvar suas mudanças." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +#, fuzzy +msgid "Excluded roles" +msgstr "(excluído)" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "usando" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "" +"Para os filtros regulares, estas são as funções às quais este filtro será" +" aplicado. Para os filtros de base, estas são as funções às quais o " +"filtro NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os" +" dados." -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" -msgstr "não pode ser vazio" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +#, fuzzy +msgid "Group Key" +msgstr "Agrupar por" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" -msgstr "cardeal" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" +"Os filtros com a mesma chave de grupo serão agrupados dentro do grupo, " +"enquanto os grupos de filtros diferentes serão agrupados. As chaves de " +"grupo indefinidas são tratadas como grupos únicos, ou seja, não são " +"agrupadas. Por exemplo, se uma tabela tiver três filtros, dos quais dois " +"são para os departamentos Finanças e Marketing (chave de grupo = " +"'departamento') e um se refere à região Europa (chave de grupo = " +"'região'), a cláusula de filtro aplicaria o filtro (departamento = " +"'Finanças' OU departamento = 'Marketing') AND (região = 'Europa')." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -msgid "change" -msgstr "mudança" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Cláusula" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "gráfico" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"Essa é a condição que será adicionada à cláusula WHERE. Por exemplo, para" +" retornar apenas as linhas de um cliente específico, você pode definir um" +" filtro regular com a cláusula `client_id = 9`. Para não exibir nenhuma " +"linha a menos que um usuário pertença a uma função de filtro RLS, um " +"filtro básico pode ser criado com a cláusula `1 = 0` (sempre falso)." -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" -msgstr "gráficos" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +#, fuzzy +msgid "Regular" +msgstr "Circular" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "escolha WHERE ou HAVING..." +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +#, fuzzy +msgid "Base" +msgstr "banco de dados" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -msgid "clear all filters" -msgstr "limpar todos os filtros" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." +msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" -msgstr "clique aqui" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" -msgstr "código ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Desmarcar tudo" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "código ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" -msgstr "código Comitê Olímpico Internacional (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "coluna" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +#, fuzzy +msgid "tags" +msgstr "marca" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." -msgstr "conectando ao %(dbModelName)s." +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "Desmarcar tudo" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" -msgstr "contagem" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "Lista atualizada" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -msgid "create" -msgstr "criar" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "foi criado" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" -msgstr "criar um novo gráfico" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Nome da aba" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "criar um conjunto de dados a partir de uma consulta SQL" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Nome do seu banco de dados" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Escreva uma descrição para sua consulta" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "css_template" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Selecione um painel" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "cumsum" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Selecionar métricas salvas" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" -msgstr "cumulativo" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Coluna não-numérica escolhida" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "painel" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "Configuração da interface do usuário" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" -msgstr "painéis" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" +msgstr "O valor do filtro é obrigatório" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "banco de dados" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "O usuário deve selecionar um valor antes de aplicar o filtro" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "dataset" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" +msgstr "Valor único" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -msgid "dataset name" -msgstr "nome do conjunto de dados" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "Use apenas um único valor." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "data" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "Plugin de filtro de intervalo usando AntD" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "dia" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +#, fuzzy +msgid " (excluded)" +msgstr "(excluído)" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "dia do mês" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s opção" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "dia da semana" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Verificar se a ordenação é crescente" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" -msgstr "deck.gl Hexágono 3D" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "Pode selecionar vários valores" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" -msgstr "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "Selecione primeiro valor do filtro por padrão" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" -msgstr "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" +msgstr "Ao usar essa opção, o valor padrão não pode ser definido" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" -msgstr "deck.gl Grid" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "Seleção inversa" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "gráficos do deck.gl" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" +msgstr "Excluir valores selecionados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" -msgstr "deck.gl Múltiplas camadas" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "Pesquisar dinamicamente todos os valores de filtro" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" -msgstr "deck.gl Path" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" +"Por padrão, cada filtro carrega, no máximo, 1000 opções no carregamento " +"inicial da página. Marque esta caixa se tiver mais de 1000 valores de " +"filtro e pretenda ativar a pesquisa dinâmica que carrega os valores de " +"filtro à medida que os usuários escrevem (pode aumentar o stress da sua " +"base de dados)." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" -msgstr "deck.gl Polígono" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "Selecione plug-in de filtro usando AntD" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" -msgstr "deck.gl Gráfico de dispersão" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "Plugin de filtro de tempo personalizado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" -msgstr "deck.gl Grade de tela" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Sem colunas de tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -msgid "deck.gl charts" -msgstr "gráficos do deck.gl" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" +msgstr "Plug-in de filtro de coluna de tempo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" -msgstr "deckGL" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "Plug-in de filtro de granulação de tempo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" -msgstr "padrão" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "Trabalhando" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "excluir" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" +msgstr "Não acionado" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -#, fuzzy -msgid "descendant" -msgstr "Ordenação decrescente" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "Na Graça" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "descrição" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "relatórios" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -msgid "deviation" -msgstr "desvio" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "alertas" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" -msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Houve um problema ao excluir o %s selecionado: %s" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "rascunho" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Última execução" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Log de execução" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "por exemplo ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Seleção em bloco" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "por exemplo, 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Sem %s ainda" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" -msgstr "por exemplo, 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Proprietário" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "por exemplo , AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Todos" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -#, fuzzy -msgid "e.g. Analytics" -msgstr "Analytics avançado" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Ocorreu um erro ao buscar os valores dos proprietários: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "por exemplo , compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Estado" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "por exemplo, param1=value1¶m2=value2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "" +"Ocorreu um erro ao obter os valores da fonte de dados do conjunto de " +"dados: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "por exemplo , sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Alertas e relatórios" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "por exemplo, world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Alertas" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "por exemplo, xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Relatórios" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "por exemplo, uma coluna \"user id\"" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Excluir %s?" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" -msgstr "modo de edição" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Tem certeza que deseja remover o %s selecionado ?" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -msgid "entries" -msgstr "entradas" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +#, fuzzy +msgid "Error Fetching Tagged Objects" +msgstr "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "error" -msgstr "Erro" +msgid "Edit Tag" +msgstr "Editar log" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Houve um problema ao excluir as camadas selecionadas: %s" -#: superset/models/helpers.py:1803 -msgid "error_message" -msgstr "mensagem de erro" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Editar modelo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "todos" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Excluir modelo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "todos os dias do mês" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Alterado por" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "todos os dias da semana" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Sem camadas de anotação ainda" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "a cada hora" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Essa ação excluirá permanentemente a camada." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -#, fuzzy -msgid "every minute" -msgstr "a cada mês" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Excluir camada?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "a cada mês" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Tem certeza que deseja remover as camadas selecionadas?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" -msgstr "expandir" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "Houve um problema ao excluir as anotações selecionadas: %s" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" -msgstr "explorar" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Excluir anotação" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -msgid "failed" -msgstr "falhou" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Anotação" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" -msgstr "busca" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Sem anotação ainda" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "ffill" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format +msgid "Annotation Layer %s" +msgstr "Camada de anotação %s" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." -msgstr "" -"filter_box será descontinuado em uma versão futura do Superset. Substitua" -" filter_box por componentes de filtro do painel." +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" +msgstr "Voltar para todos" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:61 -msgid "flat" -msgstr "plano" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Tem certeza de que deseja excluir %s?" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "para obter mais informações sobre como estruturar seu URI." +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Excluir anotação?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" -msgstr "ícone de tipo de função" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Tem certeza que deseja remover as anotações selecionadas?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" -msgstr "geohash (quadrado)" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "Falha ao carregar dados do gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -msgid "heatmap" -msgstr "mapa de calor" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" +msgstr "exibir instruções" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "heatmap: os valores são normalizados em todo o heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" +msgstr "Adicionar um conjunto de dados" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" -msgstr "aqui" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" +msgstr "ou" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "hora" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Escolha um conjunto de dados" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "Escolha o tipo de gráfico" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "" +"Por favor selecionar um conjunto de dados e um tipo de gráfico para " +"prosseguir" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" -msgstr "id" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-los " +"junto com os gráficos. Observe que as seções \"Secure Extra\" e " +"\"Certificate\" da configuração do banco de dados não estão presentes nos" +" arquivos de exportação e devem ser adicionadas manualmente após a " +"importação, caso sejam necessárias." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +#: superset-frontend/src/pages/ChartList/index.tsx:102 msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -"atributo CSS de renderização de imagem do objeto canvas que define como o" -" navegador dimensiona a imagem" +"Você está importando um ou mais gráficos que já existem. A substituição " +"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " +"deseja substituir?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "em" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" +msgstr "Gráfico importado" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "no modal" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Houve um problema ao excluir os gráficos selecionados: %s" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "espera-se que seja um número" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Ocorreu um erro durante a pesquisa de painéis" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" -msgstr "espera-se que seja um inteiro" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +#, fuzzy +msgid "Any" +msgstr "dia" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "juntou-se" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +#, fuzzy +msgid "Tag" +msgstr "marca" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "json não é válido" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "Ocorreu um erro ao obter os valores dos proprietários do gráfico: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" -msgstr "chave a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "Certificado" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "chave z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "Em ordem alfabética" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" -msgstr "rótulo" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Modificado recentemente" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" -msgstr "último dia" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Modificação mais recente" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" -msgstr "mês passado" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Importar gráficos" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "último trimestre" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Tem certeza que deseja remover os gráficos selecionados?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "semana passada" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "Modelos CSS" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" -msgstr "ano passado" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Houve um problema ao excluir os modelos selecionados: %s" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "partição mais recente:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "Modelo CSS" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" -msgstr "esquerda" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Essa ação excluirá permanentemente o modelo." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" -msgstr "menos que {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Excluir modelo?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -msgid "linear" -msgstr "linear" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Tem certeza que deseja remover os modelos selecionados ?" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "log" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-los " +"junto com os painéis. Observe que as seções \"Secure Extra\" e " +"\"Certificate\" da configuração do banco de dados não estão presentes nos" +" arquivos de exportação e devem ser adicionadas manualmente após a " +"importação, caso sejam necessárias." -#: superset/charts/schemas.py:735 +#: superset-frontend/src/pages/DashboardList/index.tsx:80 msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -"o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor" -" que o percentil superior." +"Você está importando um ou mais painéis que já existem. A substituição " +"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " +"deseja substituir?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" -msgstr "máximo" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" +msgstr "Painel importado" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" -msgstr "média" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +#, fuzzy +msgid "There was an issue deleting the selected dashboards: " +msgstr "Houve um problema ao excluir os painéis selecionados:" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" -msgstr "mediana" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "Ocorreu um erro ao obter os valores do proprietário do painel: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" -msgstr "métrica" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Tem certeza que deseja remover os painéis selecionados ?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -msgid "min" -msgstr "min" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Ocorreu um erro ao obter dados relacionados com a base de dados: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minuto" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" +msgstr "Carregar arquivo no banco de dados" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" -msgstr "minuto(s)" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" +msgstr "Carregar CSV" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -msgid "monotone" -msgstr "monótono" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" +msgstr "Carregar arquivo colunar" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "mês" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" +msgstr "Carregar arquivo Excel" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "mais de {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "deve ter um valor" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Permitir linguagem de manipulação de dados" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "Nome" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" -msgstr "nenhum validador SQL está configurado" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "Carregar CSV" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" -msgstr "nenhum validador SQL está configurado para {}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Excluir banco de dados" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" -msgstr "ícone de tipo numérico" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, fuzzy, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" +"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " +"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto " +"de dados irá quebrar esses objetos." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Excluir Banco de Dados?" + +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" +msgstr "Conjunto de dados importado" + +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Ocorreu um erro ao obter dados relacionados com o conjunto de dados" + +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Ocorreu um erro ao obter dados relacionados com o conjunto de dados: %s" + +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Conjunto de dados físicos" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" -msgstr "do pai" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Conjunto de dados virtuais" + +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" +msgstr "Virtual" + +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Ocorreu um erro durante a pesquisa de conjuntos de dados: %s" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" -msgstr "do total" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Ocorreu um erro durante a extração dos valores do esquema: %s" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -#, fuzzy -msgid "offline" -msgstr "Offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "" +"Ocorreu um erro ao obter os valores do proprietário do conjunto de dados:" +" %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "em" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Importar conjuntos de dados" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -msgid "or" -msgstr "ou" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Houve um problema ao excluir os conjuntos de dados selecionados: %s" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "ou use os existentes no painel à direita" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." +msgstr "Houve um problema ao duplicar o conjunto de dados." -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" -msgstr "a coluna orderby deve ser preenchida" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Houve um problema ao duplicar os conjuntos de dados selecionados: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "geral" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." +msgstr "" +"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " +"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto " +"de dados irá quebrar esses objetos." -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "precisão do valor-p" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Excluir Conjunto de Dados?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Tem certeza que deseja remover os conjuntos de dados selecionados?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 selecionado" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s Selecionado (Virtual)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s Selecionado (Físico)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s selecionado (%s Físico , %s Virtual)" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "page_ size.entries" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "log" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "page_ size.show" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "ID de execução" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "pending" -msgstr "pendente" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Programado em (UTC)" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "percentil (exclusivo)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Início em (UTC)" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" -msgstr "" -"os percentis devem ser uma lista ou tupla com dois valores numéricos, dos" -" quais o primeiro é menor que o segundo valor" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Mensagem de erro" -#: superset/views/core.py:1958 -msgid "permalink state not found" -msgstr "estado do permalink não encontrado" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" +msgstr "Alerta" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "pixelado (nítido)" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Houve um problema ao buscar sua atividade recente: %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "mês anterior do calendário" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Houve um problema ao buscar seus painéis: %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "semana anterior do calendário" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Houve um problema ao buscar seu gráfico: %s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "ano-calendário anterior" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Houve um problema ao buscar suas consultas salvas: %s" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "publicado" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "Miniaturas" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" -msgstr "trimestre" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "Recentes" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "consultas" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Houve um problema ao visualizar a consulta selecionada. %s" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "consulta" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "TABELAS" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "aleatório" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Abrir consulta no SQL Lab" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "reiniciar" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Ocorreu um erro durante a extração dos valores da base de dados: %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" -msgstr "recente" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Ocorreu um erro ao buscar os valores do usuário: %s" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" -msgstr "recentes" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Pesquisar consulta" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "relatório" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Excluído: %s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "relatórios" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +#, fuzzy +msgid "Deleted" +msgstr "excluir" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "restaurar zoom" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Houve um problema ao excluir %s: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" -msgstr "direito" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +#, fuzzy +msgid "No Rules yet" +msgstr "Ainda não há registros" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 #, fuzzy -msgid "rowlevelsecurity" -msgstr "Segurança em nível de linha" +msgid "Are you sure you want to delete the selected rules?" +msgstr "Tem certeza que deseja remover as camadas selecionadas?" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "running" -msgstr "em execução" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-los " +"juntamente com as consultas salvas. Observe que as seções \"Secure " +"Extra\" e \"Certificate\" da configuração do banco de dados não estão " +"presentes nos arquivos de exportação e devem ser adicionadas manualmente " +"após a importação, caso sejam necessárias." -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" -msgstr "consultas salvas" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +#, fuzzy +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "" +"Você está importando um ou mais gráficos que já existem. A substituição " +"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " +"deseja substituir?" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" -msgstr "pesquisa por tags" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" +msgstr "Consulta importada" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "seconds" -msgstr "segundos" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Houve um problema ao visualizar a consulta selecionada %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -msgid "series" -msgstr "série" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Importar consultas" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" -msgstr "" -"séries: Tratar cada série de forma independente; geral: Todas as séries " -"usam a mesma escala; alteração: Mostrar alterações em comparação com o " -"primeiro ponto de dados em cada série" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Link copiado!" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Houve um problema ao excluir as consultas selecionadas: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" -msgstr "quadrado" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Editar consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" -msgstr "pilha" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Copiar URL da consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:63 -msgid "staggered" -msgstr "escalonado" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Exportar consulta" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" -msgstr "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Excluir consulta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-after" -msgstr "etapa seguinte" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Tem certeza que deseja remover as consultas selecionadas ?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "passo-anteerior" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "consultas" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" -msgstr "interrompido" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" +msgstr "marca" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" -msgstr "fluxo" +#: superset-frontend/src/pages/Tags/index.tsx:130 +#, fuzzy +msgid "No Tags created" +msgstr "foi criado" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" -msgstr "ícone do tipo string" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" +msgstr "Tem certeza de que deseja excluir as tags selecionadas?" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" -msgstr "sucesso" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." +msgstr "Falha no download da imagem, por favor atualizar e tentar novamente." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/utils/downloadAsPdf.ts:55 #, fuzzy -msgid "success dark" -msgstr "sucesso" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" -msgstr "soma" +msgid "PDF download failed, please refresh and try again." +msgstr "Falha no download da imagem, por favor atualizar e tentar novamente." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." -msgstr "sintaxe." +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." +msgstr "" +"Selecione os valores no(s) campo(s) destacado(s) no painel de controle. " +"Em seguida, execute a consulta clicando no botão %s." -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" -msgstr "marca" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "Entrada inválida" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" -msgstr "ícone de tipo temporal" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#, fuzzy +msgid "Unexpected error: " +msgstr "Erro inesperado:" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "área de texto" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "(sem descrição , clique para ver rastreamento de pilha)" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" -msgstr "para" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." +msgstr "Desculpe, ocorreu um erro desconhecido." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" -msgstr "superior" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Desculpe, houve um erro ao salvar este %s: %s" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" -msgstr "desfazer" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" +msgstr "Você não tem permissão para editar este %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" -msgstr "ícone de tipo desconhecido" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" +msgstr "Erro de rede" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." -msgstr "" -"o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior" -" que o percentil inferior." +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" +msgstr "O tempo limite da solicitação expirou" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" -msgstr "usar o modelo latest_partition" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Problema 1000 - O conjunto de dados é muito grande para ser consultado." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" -msgstr "valor crescente" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Problema 1001 - O Banco de dados está sob uma carga incomum." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" -msgstr "valor decrescente" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Ocorreu um erro ao buscar as informações de %s: %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" -msgstr "var" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Ocorreu um erro durante a busca de %ss: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" -msgstr "variação" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Ocorreu um erro ao criar %ss: %s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -msgid "view instructions" -msgstr "exibir instruções" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "Por favor reexportar seu arquivo e tente importar novamente" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" -msgstr "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Ocorreu um erro durante a importação de %s: %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" -msgstr "tipo de visualização" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Houve um erro ao buscar o status de favorito: %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "foi criado" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Ocorreu um erro ao salvar o status de favorito: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "semana" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "A conexão parece boa !" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" -msgstr "semana que termina no sábado" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "ERRO: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" -msgstr "semana que começa no domingo" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Ocorreu um erro ao buscar sua atividade recente:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "x" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Houve um problema ao excluir: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" -msgstr "x: os valores são normalizados dentro de cada coluna" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" -msgstr "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." +msgstr "" +"Link do modelo, é possível incluir {{ métrica }} ou outros valores " +"provenientes dos controles." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" -msgstr "y: os valores são normalizados dentro de cada linha" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Tabela de séries temporais" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "ano" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" +"Compare rapidamente vários gráficos de séries temporais (como sparklines)" +" e métricas relacionadas." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" -msgstr "área de zoom" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" +msgstr "Temos as seguintes chaves: %s" diff --git a/superset/translations/ru/LC_MESSAGES/messages.json b/superset/translations/ru/LC_MESSAGES/messages.json index 91907df1ef328..cc9ca5369a792 100644 --- a/superset/translations/ru/LC_MESSAGES/messages.json +++ b/superset/translations/ru/LC_MESSAGES/messages.json @@ -8,4515 +8,4287 @@ "plural_forms": "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2)", "lang": "ru" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\n Фильтр был наследован из контекста дашборда.\n Он не будет сохранен при сохранении графика.\n " + "The datasource is too large to query.": [ + "Источник данных слишком велик для запроса." ], - "\n Error: %(text)s\n ": [ - "\n Ошибка: %(text)s\n " + "The database is under an unusual load.": [ + "Нетипично высокая загрузка базы данных" ], - " (excluded)": [" (исключено)"], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - " Установите прозрачность 0, если вы не хотите переписывать цвет, указанный в GeoJSON" + "The database returned an unexpected error.": [ + "База данных вернула неожиданную ошибку" ], - " a dashboard OR ": [" дашборд или "], - " a new one": [" новый"], - " expression which needs to adhere to the ": [ - ", который должен придерживаться " + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "В SQL-запросе имеется синтаксическая ошибка. Возможно, это орфографическая ошибка или опечатка." ], - " source code of Superset's sandboxed parser": [ - " исходный код sandboxed парсера Суперсета" + "The column was deleted or renamed in the database.": [ + "Столбец был удален или переименован в базе данных." ], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - " стандарта для обеспечения того, чтобы лексикографический порядок совпадал с хронологическим порядком. Если формат временной метки не соответствует стандарту ISO 8601, вам нужно будет определить выражение и тип для преобразования строки в дату или временную метку. В настоящее время часовые пояса не поддерживаются. Если время хранится в формате эпохи, введите \\`epoch_s\\` или \\`epoch_ms\\`. Если шаблон не указан, будут использованы необязательные значения по умолчанию на уровне имен для каждой базы данных/столбца с помощью дополнительного параметра." + "The table was deleted or renamed in the database.": [ + "Таблица была удалена или переименована в базе данных." ], - " to add calculated columns": [" для добавления вычисляемых столбцов"], - " to add metrics": [" для добавления мер"], - " to edit or add columns and metrics.": [ - " для редактирования или добавления столбцов и мер." + "One or more parameters specified in the query are missing.": [ + "Один или несколько параметров, указанных в запросе, отсутствуют" ], - " to mark a column as a time column": [ - ", чтобы пометить столбец как столбец даты/времени" + "The hostname provided can't be resolved.": [ + "Не удалось обнаружить хост." ], - " to open SQL Lab. From there you can save the query as a dataset.": [ - " в Лаборатории SQL. Там вы сможете сохранить запрос как датасет." + "The port is closed.": ["Порт закрыт."], + "The host might be down, and can't be reached on the provided port.": [ + "Хост возможно, отключен, и с ним невозможно связаться по заданному порту." ], - " to visualize your data.": [" для визуализации ваших данных."], - "!= (Is not equal)": ["!= (не равно)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s не может использоваться в качестве источника данных по соображениям безопасности." + "Superset encountered an error while running a command.": [ + "Суперсет столкнулся с ошибкой во время выполнения команды." ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [ - "%(message)s\nВозможные причины: \n%(issues)s" + "Superset encountered an unexpected error.": [ + "Суперсет столкнулся с неожиданной ошибкой." ], - "%(name)s.csv": ["%(name)s.csv"], - "%(object)s does not exist in this database.": [ - "%(object)s не существует в этой базе данных." + "The username provided when connecting to a database is not valid.": [ + "Имя пользователя, указанное при подключении к базе данных, недействительно" ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": ["Получено строк: %(rows)d"], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ - "%(subtitle)s\nВозможные причины:\n %(issue)s" + "The password provided when connecting to a database is not valid.": [ + "Неверный пароль для базы данных." ], - "%(suggestion)s instead of \"%(undefinedParameter)s?\"": [ - "%(suggestion)s вместо \"%(undefinedParameter)s\"?", - "%(firstSuggestions)s или %(lastSuggestion)s вместо \"%(undefinedParameter)s\"?", - "%(firstSuggestions)s или %(lastSuggestion)s вместо \"%(undefinedParameter)s\"?" + "Either the username or the password is wrong.": [ + "Неверное имя пользователя или пароль" ], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s была назначена роль %(role)s, которая дает доступ к %(datasource)s" + "Either the database is spelled incorrectly or does not exist.": [ + "Неверное или несуществующее имя базы данных." ], - "%(user)s's profile": ["%(user)s - профиль"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s не смог проверить ваш запрос.\nПожалуйста, перепроверьте ваш запрос.\nОшибка: %(ex)s" + "The schema was deleted or renamed in the database.": [ + "Схема была удалена или переименована в базе данных." ], - "%s Error": ["%s Ошибка"], - "%s PASSWORD": ["%s ПАРОЛЬ"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s Selected": ["%s Выбрано"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s Выбрано (%s Физические, %s Виртуальные)" + "User doesn't have the proper permissions.": [ + "У пользователя нет надлежащего доступа." ], - "%s Selected (Physical)": ["%s Выбрано (Физические)"], - "%s Selected (Virtual)": ["%s Выбрано (Виртуальные)"], - "%s aggregates(s)": ["Агрегатных функций: %s"], - "%s column(s)": ["Столбцов: %s"], - "%s operator(s)": ["%s параметр(ы)"], - "%s option": ["%s вариант", "%s варианта", "%s вариантов"], - "%s option(s)": ["%s вариант(ов)"], - "%s row": ["%s строка", "%s строки", "%s строк"], - "%s saved metric(s)": ["Сохраненная мер: %s"], - "%s updated": ["Обновлено: %s"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s из %s"], - "(Removed)": ["(Удалено)"], - "(deleted or invalid type)": ["(удалено или невалидный тип)"], - "(no description, click to see stack trace)": [ - "(нет описания, нажмите для просмотра трассировки стека)" + "One or more parameters needed to configure a database are missing.": [ + "Один или несколько параметров, необходимых для настройки базы данных, отсутствуют" ], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "(опционально) значение по умолчанию для фильтра. Когда используются множественные значения, вы можете вставить список значений, разделённых символами точка с запятой" + "The submitted payload has the incorrect format.": [ + "Загруженные данные имеют некорректный формат." ], - "), and they become available in your SQL (example:": [ - "), и они станут доступны в ваших SQL запросах (пример:" + "The submitted payload has the incorrect schema.": [ + "Загруженные данные имеют некорректную схему." ], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Исследовать в Суперсете>\n\n%(table)s\n" + "Results backend needed for asynchronous queries is not configured.": [ + "Сервер, необходимый для асинхронных запросов, не настроен." ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ - "*%(name)s*\n\n%(description)s\n\nОшибка: %(text)s\n" + "Database does not allow data manipulation.": [ + "База данных не позволяет изменять свои данные." ], - "+ %s more": ["+ еще %s"], - ",": [","], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "-- Примечание: Пока вы не сохраните ваш запрос, эти вкладки НЕ будут сохранены, если вы очистите куки или смените браузер.\n\n" + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTAS (CREATE TABLE AS SELECT) не содержит SELECT запрос в конце. Пожалуйста, убедитесь, что ваш запрос имеет SELECT запрос в конце. Затем попробуйте повторно выполнить запрос." ], - ".": ["."], - "0 Selected": ["0 выбрано"], - "1 calendar day frequency": ["Дневная частота"], - "1 day": ["1 день"], - "1 day ago": ["1 день назад"], - "1 hour": ["1 час"], - "1 hourly frequency": ["Часовая частота"], - "1 minute": ["1 минута"], - "1 minutely frequency": ["Минутная частота"], - "1 month end frequency": ["Месячная частота (конец месяца)"], - "1 month start frequency": ["Месячная частота (начало месяца)"], - "1 week": ["1 неделя"], - "1 week ago": ["1 неделя назад"], - "1 week starting Monday (freq=W-MON)": [ - "1 неделя с началом в Понедельник (част=W-MON)" + "CVAS (create view as select) query has more than one statement.": [ + "CVAS (CREATE VIEW AS SELECT) запрос содержит больше одного запроса." ], - "1 week starting Sunday (freq=W-SUN)": [ - "1 неделя с началом в Воскресенье (част=W-SUN)" + "CVAS (create view as select) query is not a SELECT statement.": [ + "CVAS (CREATE VIEW AS SELECT) запрос не является SELECT запросом." ], - "1 year": ["1 год"], - "1 year ago": ["1 год назад"], - "1 year end frequency": ["Годовая частота (конец года)"], - "1 year start frequency": ["Годовая частота (начало года)"], - "10 minute": ["10 минут"], - "104 weeks": ["104 недели"], - "104 weeks ago": ["104 недели назад"], - "15 minute": ["15 минут"], - "156 weeks": ["156 недель"], - "156 weeks ago": ["156 недель назад"], - "1AS": ["1С"], - "1D": ["1Д"], - "1H": ["1Ч"], - "1M": ["1М"], - "1T": ["1МИН"], - "2 years": ["2 года"], - "2 years ago": ["2 года назад"], - "2/98 percentiles": ["2/98 перцентели"], - "28 days": ["28 дней"], - "28 days ago": ["28 дней назад"], - "2D": ["2D карты"], - "3 letter code of the country": ["3х буквенный код страны"], - "3 years": ["3 года"], - "3 years ago": ["3 года назад"], - "30 days": ["30 дней"], - "30 days ago": ["30 дней назад"], - "30 minute": ["30 минут"], - "30 minutes": ["30 минут"], - "30 second": ["30 секунд"], - "30 seconds": ["30 секунд"], - "3D": ["3D карты"], - "4 weeks (freq=4W-MON)": ["4 недели (част=4W-MON)"], - "5 minute": ["5 минут"], - "5 minutes": ["5 минут"], - "5 second": ["5 секунд"], - "5 seconds": ["5 секунд"], - "52 weeks": ["52 недели"], - "52 weeks ago": ["52 недели назад"], - "52 weeks starting Monday (freq=52W-MON)": [ - "52 недели с началом в Понедельник (част=52W-MON)" + "Query is too complex and takes too long to run.": [ + "Запрос слишком тяжелый для выполнения и займет много времени." ], - "6 hour": ["6 часов"], - "60 days": ["60 дней"], - "7 calendar day frequency": ["Недельная частота"], - "7 days": ["7 дней"], - "7D": ["7Д"], - "9/91 percentiles": ["9/91 перцентели"], - "90 days": ["90 дней"], - ":": [":"], - "< (Smaller than)": ["< (меньше чем)"], - "<= (Smaller or equal)": ["<= (меньше или равно)"], - "": ["<введите SQL выражение>"], - "": ["<новый столбец>"], - "": ["<новая мера>"], - "": ["<новая пространственная мера>"], - "": ["<без типа>"], - "== (Is equal)": ["== (равно)"], - "> (Larger than)": ["> (больше чем)"], - ">= (Larger or equal)": [">= (больше или равно)"], - "A Big Number": ["Карточка"], - "A comma separated list of columns that should be parsed as dates": [ - "Разделённый запятыми список столбцов, которые должны быть интерпретированы как даты." + "The database is currently running too many queries.": [ + "В настоящий момент база данных обрабатывает слишком много запросов." ], - "A comma separated list of columns that should be parsed as dates.": [ - "Разделённый запятыми список столбцов, которые должны быть интерпретированы как даты." + "The object does not exist in the given database.": [ + "Объект не существует в этой базе данных." ], - "A comma-separated list of schemas that files are allowed to upload to.": [ - "Разделённый запятыми список схем, в которые можно загружать файлы." + "The query has a syntax error.": ["Запрос имеет синтаксическую ошибку."], + "The results backend no longer has the data from the query.": [ + "Сервер не сохранил данные из этого запроса." ], - "A database with the same name already exists.": [ - "База данных с таким же именем уже существует" + "The query associated with the results was deleted.": [ + "Запрос, связанный с результатами, был удален." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Данные, сохраненные на сервере, имели другой формат, и не могут быть распознаны." ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "Полный URL, указывающий на местоположение плагина (например, ссылка на CDN)" + "The port number is invalid.": ["Недействительный порт."], + "Failed to start remote query on a worker.": [ + "Не удалось запустить удаленный запрос на сервере." ], - "A handlebars template that is applied to the data": [ - "Шаблон handlebars, примененный к данным" + "The database was deleted.": ["База данных была удалена"], + "Custom SQL fields cannot contain sub-queries.": [ + "Пользовательские поля SQL не могут содержать подзапросы." ], - "A human-friendly name": ["Человекочитаемое имя"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "Список доменных имен, которые могут встраивать этот дашборд. Если оставить поле пустым, любой домен сможет сделать встраивание." + "Invalid certificate": ["Неверный сертификат"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Небезопасный возвращаемый тип для функции %(func)s: %(value_type)s" ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Владельцы - это пользователи, которые могут изменять график" + "Unsupported return value for method %(name)s": [ + "Неподдерживаемое значение для метода %(name)s" ], - "A map of the world, that can indicate values in different countries.": [ - "Карта мира, на которой могут быть указаны значения в разных странах." + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Небезопасное значение шаблона для ключа %(key)s: %(value_type)s" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "На карте отображаются маркеры переменного радиуса и цвета." + "Unsupported template value for key %(key)s": [ + "Неподдерживаемое значение шаблона для ключа %(key)s" ], - "A metric to use for color": [ - "Показатель, используемый для расчета цвета" + "Only SELECT statements are allowed against this database.": [ + "Только SELECT запросы доступны для этой базы данных." ], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "" + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Запрос был прерван после %(sqllab_timeout)s секунд. Он мог быть слишком сложным, или база данных находилась под большой нагрузкой." ], - "A readable URL for your dashboard": ["Читаемый URL-адрес для дашборда"], - "A reference to the [Time] configuration, taking granularity into account": [ - "" - ], - "A report named \"%(name)s\" already exists": [ - "Рассылка с именем \"%(name)s\" уже существует" - ], - "A reusable dataset will be saved with your chart.": [ - "Переиспользуемый датасет будет сохранен с вашим графиком." - ], - "A screenshot of the dashboard will be sent to your email at": [ - "Скриншот дашборда будет отправлен на ваш электронный адрес" - ], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Набор параметров, которые доступны в запросе через шаблонизацию Jinja." + "Results backend is not configured.": ["Results backend не нестроен"], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTAS (CREATE TABLE AS SELECT) может быть выполнен в запросе с единственным SELECT запросом. Пожалуйста, убедитесь, что запрос содержит только один SELECT запрос. Затем выполните запрос заново." ], - "A time column must be specified when using a Time Comparison.": [ - "Столбец даты/времени должен быть указан при использовании сравнения по времени" + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "CVAS (CREATE VIEW AS SELECT) может быть выполнен в запросе с единственным SELECT запросом. Пожалуйста, убедитесь, что запрос содержит только один SELECT запрос. Затем выполните запрос заново." ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "Диаграмма временного ряда, которая визуализирует, как связанная метрика из нескольких групп изменяется с течением времени. Для каждой группы используется свой цвет." + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": [ + "У визуализации отсутствует источник данных" ], - "A timeout occurred while executing the query.": [ - "Вышло время исполнения запроса." + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Применное скользязее окно не вернуло данных. Убедитесь, что исходный запрос удовлетворяет минимальному количеству периодов скользящего окна." ], - "A timeout occurred while generating a csv.": [ - "Вышло время создания CSV файла." + "From date cannot be larger than to date": [ + "Дата начала не может быть позже даты конца" ], - "A timeout occurred while generating a dataframe.": [ - "Вышло время создания датафрейма." + "Cached value not found": ["Кэшированное значение не найдено"], + "Columns missing in datasource: %(invalid_columns)s": [ + "Столбцы отсутствуют в источнике данных: %(invalid_columns)s" ], - "A timeout occurred while taking a screenshot.": [ - "Вышло время создания скриншота." + "Pick at least one metric": ["Выберите хотя бы одну меру"], + "When using 'Group By' you are limited to use a single metric": [ + "При использовании 'GROUP BY' вы ограничены использованием одной меры" ], - "A valid color scheme is required": [ - "Требуется корректная цветовая схема" + "Calendar Heatmap": ["Календарная тепловая карта"], + "Bubble Chart": ["Пузырьковая диаграмма"], + "Please use 3 different metric labels": [""], + "Pick a metric for x, y and size": ["Выберите меру для x, y и размера"], + "Bullet Chart": ["Диаграмма-шкала"], + "Pick a metric to display": ["Выберите меру для отображения"], + "Time Series - Line Chart": ["Линейная диаграмма (временные ряды)"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "При использовании сравнения времени необходимо указать закрытый временной интервал (как начало, так и конец)." ], - "APPLY": ["ПРИМЕНИТЬ"], - "APR": ["АПР"], - "AQE": ["Асинхронные запросы"], - "AUG": ["АВГ"], - "AXIS TITLE MARGIN": ["ОТСТУП ЗАГОЛОВКА ОСИ"], - "AXIS TITLE POSITION": ["ПОЛОЖЕНИЕ ЗАГОЛОВКА ОСИ"], - "About": ["О программе"], - "Access": ["Доступ"], - "Access requests": ["Запросы доступа"], - "Access to user activity data is restricted": [ - "Запрещен доступ к истории действий пользователя" + "Time Series - Bar Chart": ["Столбчатая диаграмма (временные ряды)"], + "Time Series - Percent Change": ["Процентное изменение (временные ряды)"], + "Time Series - Stacked": ["Диаграмма с накоплением (временные ряды)"], + "Histogram": ["Гистограмма"], + "Must have at least one numeric column specified": [ + "Должен быть указан хотя бы один числовой столбец" ], - "Access token": ["Токен доступа"], - "Access was requested": ["Доступ запрошен"], - "Action": ["Действие"], - "Action Log": ["Журнал действий"], - "Actions": ["Действия"], - "Active": ["Активен"], - "Actual Values": ["Фактические значения"], - "Actual time range": ["Фактический временной интервал"], - "Actual value": ["Фактическое значение"], - "Actual values": ["Фактические значения"], - "Adaptive formatting": ["Адаптивное форматирование"], - "Add": ["Добавить"], - "Add Alert": ["Добавить оповещение"], - "Add CSS Template": ["Добавить CSS шаблон"], - "Add CSS template": ["Добавить CSS шаблоны"], - "Add Chart": ["Добавить график"], - "Add Column": ["Добавить столбец"], - "Add Dashboard": ["Добавить дашборд"], - "Add Database": ["Добавить базу данных"], - "Add Log": ["Добавить запись"], - "Add Metric": ["Добавить меру"], - "Add Report": ["Добавить рассылку"], - "Add Saved Query": ["Добавить сохраненный запрос"], - "Add a Plugin": ["Добавить плагин"], - "Add a dataset": ["Добавить датасет"], - "Add a new tab": ["Новая вкладка"], - "Add a new tab to create SQL Query": [ - "Откройте новую вкладку для создания SQL запроса" + "Distribution - Bar Chart": ["Распределение - Столбчатая диаграмма"], + "Can't have overlap between Series and Breakdowns": [""], + "Pick at least one field for [Series]": [""], + "Sankey": ["Санкей"], + "Pick exactly 2 columns as [Source / Target]": [""], + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "" ], - "Add additional custom parameters": [ - "Добавление дополнительных пользовательских параметров" + "Directed Force Layout": [""], + "Country Map": ["Карта Стран"], + "World Map": ["Карта Мира"], + "Parallel Coordinates": [""], + "Heatmap": ["Тепловая карта"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "[Долгота] и [Широта] должны быть заданы" ], - "Add an annotation layer": ["Добавить слой аннотации"], - "Add an item": ["Добавить запись"], - "Add and edit filters": ["Добавить и изменить фильтры"], - "Add annotation": ["Добавить аннотацию"], - "Add annotation layer": ["Добавить слой аннотации"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [ - "Добавьте новые вычисляемые столбцы в датасет в настройках датасета" + "Must have a [Group By] column to have 'count' as the [Label]": [""], + "Choice of [Label] must be present in [Group By]": [ + "[Метка] должна присутствовать в [Группировать по]" ], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "Добавьте новые столбцы формата дата/время в датасет в настройках датасета" + "Choice of [Point Radius] must be present in [Group By]": [ + "[Радиус точки] должен присутствовать в [Группировать по]" ], - "Add custom scoping": [""], - "Add delivery method": ["Добавить способ оповещения"], - "Add extra connection information.": [ - "Дополнительная информация по подключению" + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "Столбцы [Долгота] и [Широта] должны присутствовать в [Группировать по]" ], - "Add filter": ["Добавить фильтр"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Deck.gl - Multiple Layers": ["Deck.gl - Многослойный"], + "Bad spatial key": ["Неподходящий пространственный ключ"], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "Add filters and dividers": ["Добавить фильтры и разделители"], - "Add item": ["Добавить запись"], - "Add metric": ["Добавить меру"], - "Add metrics to dataset in \"Edit datasource\" modal": [ - "Добавьте меры в датасет в настройках датасета" - ], - "Add new color formatter": ["Добавить цветовое форматирование"], - "Add new formatter": ["Добавить форматирование"], - "Add notification method": ["Добавить способ уведомления"], - "Add required control values to preview chart": [ - "Добавьте обязательные значения для предпросмотра графика" + "Deck.gl - Scatter plot": ["Deck.gl - Точечная диаграмма"], + "Deck.gl - 3D Grid": ["Deck.gl - 3D сетка"], + "Deck.gl - Polygon": ["Deck.gl - Полигон"], + "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], + "Deck.gl - Arc": ["Deck.gl - Дуга"], + "Time Series - Paired t-test": ["Парный t-test (временные ряды)"], + "Time Series - Nightingale Rose Chart": [ + "Диаграмма Найтингейл (временные ряды)" ], - "Add required control values to save chart": [ - "Добавьте обязательные значения для сохранения графика" + "Invalid advanced data type: %(advanced_data_type)s": [ + "Невалидный расширенный тип данных: %(advanced_data_type)s" ], - "Add sheet": ["Добавить лист"], - "Add the name of the chart": ["Задайте имя графика"], - "Add the name of the dashboard": ["Задайте имя дашборда"], - "Add to dashboard": ["Добавить в дашборд"], - "Add/Edit Filters": ["Добавить/изменить фильтры"], - "Added": ["Добавлено"], - "Added to 1 dashboard": [ - "Добавлено в 1 дашборд", - "Добавлено в %s дашборда", - "Добавлено в %s дашбордов" + "Deleted %(num)d annotation layer": [ + "Удалален %(num)d слой аннотаций", + "Удалалены %(num)d слоя аннотаций", + "Удалалено %(num)d слоев аннотаций" ], - "Additional Parameters": ["Дополнительные параметры"], - "Additional fields may be required": [""], - "Additional information": ["Дополнительная информация"], - "Additional metadata": ["Дополнительные метаданные"], - "Additional padding for legend.": ["Дополнительный отступ для легенды"], - "Additional parameters": ["Дополнительные параметры"], - "Additional settings.": ["Дополнительная настройка"], - "Additional text to add before or after the value, e.g. unit": [ - "Дополнительный текст перед значением, например, единица измерения" + "All Text": ["Весь текст"], + "Deleted %(num)d annotation": [ + "Удалалена %(num)d аннотация", + "Удалалены %(num)d аннотации", + "Удалалено %(num)d аннотаций" ], - "Additive": ["Смешанный"], - "Adjust how this database will interact with SQL Lab.": [ - "Настройка взаимодействия базы данных с Лабораторией SQL" + "Deleted %(num)d chart": [ + "Удален %(num)d график", + "Удалены %(num)d графика", + "Удалено %(num)d графиков" ], - "Adjust performance settings of this database.": [""], - "Advanced": ["Продвинутая настройка"], - "Advanced Analytics": ["Расширенная аналитика"], - "Advanced Data type": ["Расширенный тип данных"], - "Advanced analytics": ["Расширенная аналитика"], - "Advanced analytics Query A": ["Расширенный анализ: запрос А"], - "Advanced analytics Query B": ["Расширенный анализ: запрос Б"], - "Advanced data type": ["Расширенный тип данных"], - "Advanced-Analytics": ["Продвинутая аналитика"], - "Aesthetic": ["Эстетично"], - "After": ["После"], - "Aggregate": ["Агрегация"], - "Aggregate Mean": ["Агрегированное среднее"], - "Aggregate Sum": ["Агрегированная сумма"], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "Агрегатная функция, применяемая для списка точек в каждом кластере для создания метки кластера." + "Is certified": ["Одобрено"], + "Has created by": ["Создан(а)"], + "Created by me": ["Создано мной"], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": ["Подытог"], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`доверительный_интервал` должен быть между 0 и 1 (не включая концы)" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "Агрегатная функция, применяемая для сводных таблиц и вычислении суммарных значений." + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "Нижний процентиль должен быть больше 0 и меньше 100. Должен быть ниже верхнего процентиля" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "Aggregation function": ["Функция агрегирования"], - "Alert Triggered, In Grace Period": [ - "Оповещение сработало во время перерыва" + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "Chart has no query context saved. Please save the chart again.": [ + "На графике не сохранен контекст запроса. Пожалуйста, сохраните диаграмму еще раз." ], - "Alert condition": ["Условие оповещения"], - "Alert condition schedule": ["Расписание условия оповещения"], - "Alert ended grace period.": ["У оповещения закончился перерыв."], - "Alert failed": ["Оповещение не сработало"], - "Alert fired during grace period.": [ - "Оповещение сработало во время перерыва" + "Request is incorrect: %(error)s": ["Неверный запрос: %(error)s"], + "Request is not JSON": ["Запрос не является JSON"], + "Empty query result": ["Пустой ответ запроса"], + "Owners are invalid": ["Неверный список владельцев"], + "Some roles do not exist": ["Некоторые роли не существуют"], + "Datasource type is invalid": ["Тип источниках данных неверный"], + "Datasource does not exist": ["Источник данных не существует"], + "Query does not exist": ["Запрос не существует"], + "Annotation layer parameters are invalid.": [ + "Параметры слоя аннотаций недействительны" ], - "Alert found an error while executing a query.": [ - "Возникла ошибка при выполнении запроса для оповещения." + "Annotation layer could not be created.": [ + "Не удалось создать слой аннотации." ], - "Alert name": ["Имя оповещения"], - "Alert on grace period": ["Оповещение во время перерыва"], - "Alert query returned a non-number value.": [ - "Запрос оповещения вернул нечисловое значение." + "Annotation layer could not be updated.": [ + "Не удалось обновить слой аннотации." ], - "Alert query returned more than one column.": [ - "Запрос оповещения вернул больше, чем один столбец." - ], - "Alert query returned more than one column. %s columns returned": [ - "Запрос оповещения вернул больше, чем один столбец. Возвращено столбцов: %s" + "Annotation layer not found.": ["Слой аннотации не найден"], + "Annotation layer has associated annotations.": [ + "Слои аннотаций имеет связанные аннотации" ], - "Alert query returned more than one row.": [ - "Запрос оповещения вернул больше, чем одну строку." + "Name must be unique": ["Имя должно быть уникальным"], + "End date must be after start date": [ + "Конечная дата должна быть после начальной" ], - "Alert query returned more than one row. %s rows returned": [ - "Запрос оповещения вернул больше, чем одну строку. Возвращено строк: %s" + "Short description must be unique for this layer": [ + "Содержимое аннотации должно быть уникальным внутри слоя" ], - "Alert running": ["Выполняется оповещение"], - "Alert triggered, notification sent": [ - "Сработало оповещение, уведомление отправлено" + "Annotation not found.": ["Аннотация не найдена."], + "Annotation parameters are invalid.": [ + "Параметры аннотации недействительны." ], - "Alert validator config error.": [ - "Неверная конфигурация валидатора оповещений." + "Annotation could not be created.": ["Не удалось создать аннотацию"], + "Annotation could not be updated.": ["Не удалось обновить аннотацию"], + "Annotations could not be deleted.": ["Не удалось удалить аннотации."], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Временная строка неоднозначна. Пожалуйста, укажите [%(human_readable)s до] или [%(human_readable)s после]." ], - "Alerts": ["Оповещения"], - "Alerts & Reports": ["Оповещения и отчеты"], - "Alerts & reports": ["Оповещения и отчеты"], - "Align +/-": ["Выровнять +/-"], - "All": ["Все"], - "All Text": ["Весь текст"], - "All charts": ["Все графики"], - "All charts/global scoping": [""], - "All filters": ["Все фильтры"], - "All filters (%(filterCount)d)": ["Все фильтры (%(filterCount)d)"], - "All panels": ["Все панели"], - "All panels with this column will be affected by this filter": [ - "Фильтр будет применён ко всем панелям с этим столбцом" + "Cannot parse time string [%(human_readable)s]": [ + "Не удается разобрать временную строку [%(human_readable)s]" ], - "Allow CREATE TABLE AS": ["Разрешить CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Разрешить CREATE TABLE AS в Лаборатории SQL" + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Неоднозначный временной сдвиг. Пожалуйста, укажите [%(human_readable)s до] или [%(human_readable)s после]." ], - "Allow CREATE VIEW AS": ["Разрешить CREATE VIEW AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Разрешить CREATE VIEW AS в Лаборатории SQL" + "Database does not exist": ["База данных не существует"], + "Dashboards do not exist": ["Дашборды не существуют"], + "Datasource type is required when datasource_id is given": [ + "Тип источника данных обязателен, когда дан идентификатор источника данных (datasource_id)" ], - "Allow Csv Upload": ["Разрешить загрузку CSV"], - "Allow DML": ["Разрешить DML"], - "Allow columns to be rearranged": ["Разрешить смену столбцов местами"], - "Allow creation of new tables based on queries": [ - "Разрешить создание новых таблиц на основе запросов" + "Chart parameters are invalid.": ["Параметры графика недопустимы."], + "Chart could not be created.": ["Не удалось создать график"], + "Chart could not be updated.": ["Не удалось обновить график"], + "Charts could not be deleted.": ["Не удалось удалить графики."], + "There are associated alerts or reports": [ + "Есть связанные оповещения или отчеты" ], - "Allow creation of new views based on queries": [ - "Разрешить создание новых представлений на основе запросов" + "You don't have access to this chart.": [ + "Недостаточно прав для доступа к этому графику." ], - "Allow data manipulation language": [ - "Разрешить операции вставки, обновления и удаления данных" + "Changing this chart is forbidden": ["Запрещено изменять этот график"], + "Import chart failed for an unknown reason": [ + "Не удалось импортировать график по неизвестной причине" ], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "Разрешить конечному пользователю перемещать столбцы, удерживая их заголовки. Заметьте, такие изменения будут нейтрализованы при следующем обращении к дашборду." + "Error: %(error)s": ["Ошибка: %(error)s"], + "CSS template not found.": ["CSS шаблон не найден."], + "Must be unique": ["Должно быть уникальным"], + "Dashboard parameters are invalid.": ["Неверные параметры дашборда"], + "Dashboard could not be updated.": ["Не удалось обновить дашборд"], + "Dashboard could not be deleted.": ["Не удалось удалить дашборд"], + "Changing this Dashboard is forbidden": [ + "Запрещено изменять этот дашборд" ], - "Allow file uploads to database": [ - "Разрешить загрузку файлов в базу данных" + "Import dashboard failed for an unknown reason": [ + "Не удалось импортировать дашборд по неизвестной причине" ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Разрешить управление базой данных, используя запросы UPDATE, DELETE, CREATE и т.п." + "You don't have access to this dashboard.": [ + "Недостаточно прав для доступа к этому дашборду." ], - "Allow multiple selections": ["Разрешить множественный выбор"], - "Allow node selections": ["Разрешить выбор вершин"], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [ - "Разрешить изучение этой базы данных" + "You don't have access to this embedded dashboard config.": [ + "У вас нет прав на редактирование этого встраиваемого дашборда." ], - "Allow this database to be queried in SQL Lab": [ - "Разрешить запросы к этой базе данных в Лаборатории SQL" + "No data in file": ["В файле нет данных"], + "Database parameters are invalid.": [ + "Параметры базы данных недействительны." ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Разрешить управление базой данных, используя запросы UPDATE, DELETE, CREATE и т.п. в Лаборатории SQL" + "A database with the same name already exists.": [ + "База данных с таким же именем уже существует" ], - "Allowed Domains (comma separated)": [ - "Разрешенные домены (разделить запятыми)" + "Field is required": ["Поле обязательно к заполнению"], + "Field cannot be decoded by JSON. %(json_error)s": [ + "поле не может быть декодировано с помощью JSON. %(json_error)s" ], - "Alphabetical": ["В алфавитном порядке"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ "" ], - "Altered": ["Измененено"], - "An Error Occurred": ["Произошла ошибка"], - "An alert named \"%(name)s\" already exists": [ - "Оповещение с именем \"%(name)s\" уже существует" + "Database not found.": ["База данных не найдена."], + "Database could not be created.": ["Не удалось создать базу данных."], + "Database could not be updated.": ["Не удалось обновить базу данных."], + "Connection failed, please check your connection settings": [ + "Сбой подключения, пожалуйста, проверьте настройки вашего подключения" ], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "При использовании сравнения времени необходимо указать закрытый временной интервал (как начало, так и конец)." + "Cannot delete a database that has datasets attached": [ + "Невозможно удалить базу данных с подключенными датасетами" ], - "An engine must be specified when passing individual parameters to a database.": [ - "Движок должен быть указан при передаче индивидуальных параметров к базе." + "Database could not be deleted.": ["Не удалось удалить базу данных."], + "Stopped an unsafe database connection": [""], + "Could not load database driver": [ + "Не удалось загрузить драйвер базы данных" ], - "An error has occurred": ["Произошла ошибка"], - "An error occurred": ["Произошла ошибка"], - "An error occurred saving dataset": [ - "Произошла ошибка при сохранении датасета" + "Unexpected error occurred, please check your logs for details": [ + "Возникла неожиданная ошибка, пожалуйста, проверьте историю действий для уточнения деталей" ], - "An error occurred while accessing the value.": [ - "Произошла ошибка при доступе к значению" + "no SQL validator is configured": ["не настроен ни один SQL валидатор"], + "No validator found (configured for the engine)": [ + "Не найден валидатор (сконфигурированный для драйвера)" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Произошла ошибка при сворачивании схемы. Пожалуйста, свяжитесь с администратором." + "Was unable to check your query": ["Не удалось проверить запрос"], + "An unexpected error occurred": ["Произошла неожиданная ошибка"], + "Import database failed for an unknown reason": [ + "Не удалось импортировать базу данных по неизвестной причине" ], - "An error occurred while creating %ss: %s": [ - "Произошла ошибка при создании %sов: %s" + "Could not load database driver: {}": [ + "Не удалось загрузить драйвер базы данных: {}" ], - "An error occurred while creating the data source": [ - "Произошла ошибка при создании источника данных" + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "Не удается настроить драйвер \"%(engine)s\" при данных параметрах." ], - "An error occurred while creating the value.": [ - "Произошла ошибка при создании значения" + "Database is offline.": ["База данных сейчас оффлайн."], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s не смог проверить ваш запрос.\nПожалуйста, перепроверьте ваш запрос.\nОшибка: %(ex)s" ], - "An error occurred while deleting the value.": [ - "Произошла ошибка при удалении значения" + "SSH Tunnel could not be deleted.": ["Не удалось удалить SSH туннель."], + "SSH Tunnel not found.": ["SSH туннель не найден."], + "SSH Tunnel parameters are invalid.": [ + "Параметры SSH туннеля недопустимы." ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Произошла ошибка при разворачивании схемы. Пожалуйста, свяжитесь с администратором." + "SSH Tunnel could not be updated.": ["Не удалось обновить SSH туннель."], + "Creating SSH Tunnel failed for an unknown reason": [ + "Не удалось создать SSH туннель по неизвестной причине" ], - "An error occurred while fetching %s info: %s": [ - "Произошла ошибка при получении информации о %s: %s" + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "The database was not found.": ["Не удалось найти базу данных"], + "Dataset %(name)s already exists": ["Датасет %(name)s уже существует"], + "Database not allowed to change": [ + "База данных недоступна для изменений" ], - "An error occurred while fetching %ss: %s": [ - "Произошла ошибка при получении: %s: %s" + "One or more columns do not exist": [ + "Один или несколько столбцов не существуют" ], - "An error occurred while fetching available CSS templates": [ - "Произошла ошибка при получении доступных CSS-шаблонов" + "One or more columns are duplicated": [ + "Один или несколько столбцов дублируются" ], - "An error occurred while fetching chart created by values: %s": [ - "Произошла ошибка при получении создателя графика: %s" + "One or more columns already exist": [ + "Один или несколько столбцов уже существуют" ], - "An error occurred while fetching chart owners values: %s": [ - "Произошла ошибка при получении владельцев графика: %s" + "One or more metrics do not exist": [ + "Одна или несколько мер не существуют" ], - "An error occurred while fetching created by values: %s": [ - "Произошла ошибка при построении графика: %s" + "One or more metrics are duplicated": [ + "Одна или несколько мер дублируются" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Произошла ошибка при получении создателя дашборда: %s" + "One or more metrics already exist": [ + "Одна или несколько мер уже существуют" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Произошла ошибка при получении владельца дашборда: %s" + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Не удается найти таблицу \"%(table_name)s\", пожалуйста, проверьте ваше соединение с базой данных, схему и имя таблицы" ], - "An error occurred while fetching dashboards": [ - "Произошла ошибка при получении дашбордов" + "Dataset does not exist": ["Датасет не существует"], + "Dataset parameters are invalid.": ["Параметры датасета неверны."], + "Dataset could not be created.": ["Не удалось создать датасет"], + "Dataset could not be updated.": ["Не удалось обновить датасет"], + "Samples for dataset could not be retrieved.": [ + "Не удалось получить примеры записей датасета." ], - "An error occurred while fetching dashboards: %s": [ - "Произошла ошибка при получении дашбордов: %s" + "Changing this dataset is forbidden": ["Запрещено изменять этот датасет"], + "Import dataset failed for an unknown reason": [ + "Не удалось импортировать датасет по неизвестной причине" ], - "An error occurred while fetching database related data: %s": [ - "Произошла ошибка при получении данных о базе данных: %s" + "You don't have access to this dataset.": [ + "Недостаточно прав для доступа к этому датасету." ], - "An error occurred while fetching database values: %s": [ - "Произошла ошибка при получении значений базы данных: %s" + "Dataset could not be duplicated.": ["Датасет не может быть дублирован."], + "Data URI is not allowed.": [""], + "Dataset column not found.": ["Столбец датасета не найден"], + "Dataset column delete failed.": ["Не удалось удалить столбец датасета"], + "Changing this dataset is forbidden.": [ + "Запрещено изменять этот датасет" ], - "An error occurred while fetching dataset datasource values: %s": [ - "Произошла ошибка при получении значений датасета: %s" + "Dataset metric not found.": ["Мера датасета не найдена."], + "Dataset metric delete failed.": ["Не удалось удалить меру датасета."], + "Form data not found in cache, reverting to chart metadata.": [ + "Данные формы не найдены в кэше, возвращение к метаданным графика." ], - "An error occurred while fetching dataset owner values: %s": [ - "Произошла ошибка при получении владельца датасета: %s" + "Form data not found in cache, reverting to dataset metadata.": [ + "Данные формы не найдены в кэше, возвращение к метаданным датасета." ], - "An error occurred while fetching dataset related data": [ - "Произошла ошибка при получении метаданных датасета" + "[Missing Dataset]": ["[отсутствующий датасет]"], + "Saved queries could not be deleted.": [ + "Не удалось удалить сохраненные запросы." ], - "An error occurred while fetching dataset related data: %s": [ - "Произошла ошибка при получении данных о датасете: %s" + "Saved query not found.": ["Сохраненный запрос не найден."], + "Import saved query failed for an unknown reason.": [ + "Не удалось импортировать сохраненный запрос по неизвестной причине" ], - "An error occurred while fetching datasets: %s": [ - "Произошла ошибка при получении датасетов: %s" + "Saved query parameters are invalid.": [ + "Сохраненные параметры запроса недопустимы." ], - "An error occurred while fetching function names.": [ - "Произошла ошибка при получении имен функций" - ], - "An error occurred while fetching owners values: %s": [ - "Произошла ошибка при получении владельцев графика: %s" + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["Дашборд не существует"], + "Chart does not exist": ["График не существует"], + "Database is required for alerts": [ + "Для оповещений требуется база данных" ], - "An error occurred while fetching schema values: %s": [ - "Произошла ошибка при извлечении значений схемы: %s" + "Type is required": ["Поле обязательно"], + "Choose a chart or dashboard not both": [ + "Выберите график или дашборд, не обоих" ], - "An error occurred while fetching tab state": [ - "Произошла ошибка при получении данных вкладки" + "Must choose either a chart or a dashboard": [ + "Выберите график или дашборд" ], - "An error occurred while fetching table metadata": [ - "Произошла ошибка при получении метаданных из таблицы" + "Please save your chart first, then try creating a new email report.": [ + "Пожалуйста, сначала сохраните график перед тем, как создавать новую рассылку." ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Произошла ошибка при получении метаданных таблицы. Пожалуйста, свяжитесь с администратором." + "Please save your dashboard first, then try creating a new email report.": [ + "Пожалуйста, сначала сохраните дашборд перед тем, как создавать новую рассылку." ], - "An error occurred while fetching user values: %s": [ - "Произошла ошибка при извлечении пользовательских значений: %s" + "Report Schedule parameters are invalid.": [ + "Параметры расписания отчета неверны." ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "Произошла ошибка при сворачивании левой панели. Пожалуйста, свяжитесь с администратором." + "Report Schedule could not be created.": [ + "Невозможно удалить расписание отчета." ], - "An error occurred while importing %s: %s": [ - "Произошла ошибка при попытке импортировать %s: %s" + "Report Schedule could not be updated.": [ + "Невозможно обновить расписание отчета" ], - "An error occurred while loading the SQL": [ - "Произошла ошибка при загрузке SQL" + "Report Schedule not found.": ["Расписание отчета не найдено"], + "Report Schedule delete failed.": [ + "Ошибка при удалении расписания отчета." ], - "An error occurred while opening Explore": [ - "Произошла ошибка при открытии режима исследования" + "Report Schedule log prune failed.": [""], + "Report Schedule execution failed when generating a screenshot.": [ + "Возникла ошибка при создании скриншота для отправки отчета" ], - "An error occurred while parsing the key.": [ - "Произошла ошибка при парсинге ключа." + "Report Schedule execution failed when generating a csv.": [ + "Возникла ошибка при создании csv для отправки отчета" ], - "An error occurred while pruning logs ": [ - "Произошла ошибка при удалении журналов " + "Report Schedule execution failed when generating a dataframe.": [ + "Возникла ошибка при создании датафрейма для отправки отчета" ], - "An error occurred while removing query. Please contact your administrator.": [ - "Произошла ошибка при удалении запроса. Пожалуйста, свяжитесь с администратором." + "Report Schedule execution got an unexpected error.": [ + "Возникла неожиданная ошибка при отправке отчета" ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Произошла ошибка при удалении вкладки. Пожалуйста, свяжитесь с администратором." + "Report Schedule is still working, refusing to re-compute.": [ + "Планировщик отчетов все еще работает, не имея возможности отправить отчет" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Произошла ошибка при удалении схемы. Пожалуйста, свяжитесь с администратором." + "Report Schedule reached a working timeout.": [ + "Достигнут таймаут для отчета" ], - "An error occurred while rendering the visualization: %s": [ - "Произошла ошибка при построении графика: %s" + "A report named \"%(name)s\" already exists": [ + "Рассылка с именем \"%(name)s\" уже существует" ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Произошла ошибка при установке активной вкладки. Пожалуйста, свяжитесь с администратором." + "An alert named \"%(name)s\" already exists": [ + "Оповещение с именем \"%(name)s\" уже существует" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Произошла ошибка при настройке автозапуска вкладки. Пожалуйста, свяжитесь с администратором." + "Resource already has an attached report.": [ + "Для этого компонента уже создан отчет." ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Произошла ошибка при установке ID базы данных для вкладки. Пожалуйста, свяжитесь с администратором." + "Alert query returned more than one row.": [ + "Запрос оповещения вернул больше, чем одну строку." ], - "An error occurred while setting the tab name. Please contact your administrator.": [ - "Произошла ошибка при настройке заголовка вкладки. Пожалуйста, свяжитесь с администратором." + "Alert validator config error.": [ + "Неверная конфигурация валидатора оповещений." ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Произошла ошибка при настройке схемы. Пожалуйста, свяжитесь с администратором." + "Alert query returned more than one column.": [ + "Запрос оповещения вернул больше, чем один столбец." ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "Произошла ошибка при установке параметров шаблона вкладки. Пожалуйста, свяжитесь с администратором." + "Alert query returned a non-number value.": [ + "Запрос оповещения вернул нечисловое значение." ], - "An error occurred while starring this chart": [ - "Произошла ошибка при добавлении графика в избранное" + "Alert found an error while executing a query.": [ + "Возникла ошибка при выполнении запроса для оповещения." ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "Возникла ошибка при попытке сохранения ID последнего запроса на сервере. Пожалуйста, обратитесь к вашему администратору, если проблема останется." + "A timeout occurred while executing the query.": [ + "Вышло время исполнения запроса." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "Произошла ошибка при сохранении запроса на сервере. Чтобы сохранить изменения, пожалуйста, сохраните ваш запрос через кнопку \"Сохранить как\"." + "A timeout occurred while taking a screenshot.": [ + "Вышло время создания скриншота." ], - "An error occurred while updating the value.": [ - "Произошла ошибка при обновлении значения" + "A timeout occurred while generating a csv.": [ + "Вышло время создания CSV файла." ], - "An error occurred while upserting the value.": [ - "Произошла ошибка при вставке значения." + "A timeout occurred while generating a dataframe.": [ + "Вышло время создания датафрейма." ], - "An unexpected error occurred": ["Произошла неожиданная ошибка"], - "An unknown error occurred. Please contact your Superset administrator": [ - "Произошла неизвестная ошибка. Пожалуйста, свяжитесь с администратором." + "Alert fired during grace period.": [ + "Оповещение сработало во время перерыва" ], - "Anchor to": ["Привязать к"], - "Angle at which to end progress axis": [ - "Угол, под которым заканчивается ось прогресса" + "Alert ended grace period.": ["У оповещения закончился перерыв."], + "Alert on grace period": ["Оповещение во время перерыва"], + "Report Schedule state not found": [ + "Состояние расписания отчета не найдено" ], - "Angle at which to start progress axis": [ - "Угол, с которого начинается ось прогресса" + "Report schedule system error": [ + "Возникла ошибка расписания отчета на стороне системы" ], - "Animation": ["Анимация"], - "Annotation": ["Аннотация"], - "Annotation Layer %s": ["Слой аннотаций %s"], - "Annotation Layers": ["Слои аннотаций"], - "Annotation Slice Configuration": ["Настройки аннотации из графика"], - "Annotation could not be created.": ["Не удалось создать аннотацию"], - "Annotation could not be updated.": ["Не удалось обновить аннотацию"], - "Annotation delete failed.": ["Не удалось удалить аннотацию"], - "Annotation layer": ["Слой аннотаций"], - "Annotation layer could not be created.": [ - "Не удалось создать слой аннотации." + "Report schedule client error": [ + "Возникла ошибка расписания отчета на стороне клиента" ], - "Annotation layer could not be deleted.": [ - "Не удалось удалить слой аннотации." + "Report schedule unexpected error": [ + "Неожиданная ошибка расписания отчета" ], - "Annotation layer could not be updated.": [ - "Не удалось обновить слой аннотации." + "Changing this report is forbidden": ["Запрещено изменять эту рассылку"], + "An error occurred while pruning logs ": [ + "Произошла ошибка при удалении журналов " ], - "Annotation layer delete failed.": ["Не удалось удалить слой аннотаций"], - "Annotation layer description columns": [ - "Описательные столбцы слоя аннотаций." + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "База данных, указанная в этом запросе, не найдена. Пожалуйста, обратитесь к своему администратору или попробуйте еще раз." ], - "Annotation layer has associated annotations.": [ - "Слои аннотаций имеет связанные аннотации" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "" ], - "Annotation layer interval end": ["Конечный интервал слоя аннотации"], - "Annotation layer name": ["Имя слоя аннотаций"], - "Annotation layer not found.": ["Слой аннотации не найден"], - "Annotation layer opacity": ["Непрозрачность слоя аннотации"], - "Annotation layer parameters are invalid.": [ - "Параметры слоя аннотаций недействительны" + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Не найдены сохраненные результаты на сервере, необходимо повторно выполнить запрос." ], - "Annotation layer stroke": ["Штрих слоя аннотации"], - "Annotation layer type": ["Тип слоя аннотации"], - "Annotation layer value": ["Значение слоя аннотации"], - "Annotation layers": ["Слои аннотаций"], - "Annotation layers are still loading.": ["Слои аннотаций загружаются."], - "Annotation name": ["Имя аннотации"], - "Annotation not found.": ["Аннотация не найдена."], - "Annotation parameters are invalid.": [ - "Параметры аннотации недействительны." + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Не удалось распознать данные с сервера . Формат хранилища мог измениться, что привело к потере старых данных. Вам нужно повторно запустить исходный запрос." ], - "Annotation source": ["Источник аннотации"], - "Annotation source type": ["Тип источника аннотации"], - "Annotation template created": ["Шаблон аннотации создан"], - "Annotation template updated": ["Шаблон аннотации обновлен"], - "Annotations and Layers": ["Аннотации и слои"], - "Annotations and layers": ["Аннотации и слои"], - "Annotations could not be deleted.": ["Не удалось удалить аннотации."], - "Any": ["Любой"], - "Any additional detail to show in the certification tooltip.": [ - "Любые дополнительные сведения для всплывающей подсказки" + "An error occurred while creating the value.": [ + "Произошла ошибка при создании значения" ], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Любая палитра, выбранная здесь, будет перезаписывать цвета, применённые к отдельным графикам этого дашборда" + "An error occurred while accessing the value.": [ + "Произошла ошибка при доступе к значению" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "Любые базы данных, подключаемые через SQL Alchemy URI, могут быть добавлены. " + "An error occurred while deleting the value.": [ + "Произошла ошибка при удалении значения" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "Любые базы данных, подключаемые через SQL Alchemy URI, могут быть добавлены. Узнайте больше о том, как подключить драйвер базы данных " + "An error occurred while updating the value.": [ + "Произошла ошибка при обновлении значения" ], - "Append": ["Добавить"], - "Applied filters: %s": ["Применены фильтры: %s"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "Применное скользязее окно не вернуло данных. Убедитесь, что исходный запрос удовлетворяет минимальному количеству периодов скользящего окна." + "You don't have permission to modify the value.": [ + "Недостаточно прав для редактирования этого значения." ], - "Apply": ["Применить"], - "Apply conditional color formatting to metrics": [ - "Применить условное цветовое форматирование к мерам" + "Resource was not found.": ["Источник не был найден."], + "Invalid result type: %(result_type)s": [ + "Недопустимый тип ответа: %(result_type)s" ], - "Apply conditional color formatting to numeric columns": [ - "Применить условное цветовое форматирование к столбцам" + "Columns missing in dataset: %(invalid_columns)s": [ + "Столбцы отсутствуют в датасете: %(invalid_columns)s" ], - "Apply filters": ["Применить фильтры"], - "Apply metrics on": ["Применить меры к"], - "Apply to all panels": ["Применить ко всем панелям"], - "Apply to specific panels": ["Применить к выбранным панелям"], - "April": ["Апрель"], - "Arc": ["Дуга"], - "Are you sure you intend to overwrite the following values?": [ - "Вы уверены, что хотите перезаписать эти значения?" + "A time column must be specified when using a Time Comparison.": [ + "Столбец даты/времени должен быть указан при использовании сравнения по времени" ], - "Are you sure you want to cancel?": ["Вы уверены, что хотите отменить?"], - "Are you sure you want to delete": ["Вы уверены, что хотите удалить"], - "Are you sure you want to delete %s?": [ - "Вы уверены, что хотите удалить %s?" + "The chart does not exist": ["График не существует"], + "The chart datasource does not exist": [ + "Источник данных графика не существует" ], - "Are you sure you want to delete the selected %s?": [ - "Вы уверены, что хотите удалить выбранные %s?" + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Повторяющиеся метки столбцов/мер: %(labels)s. Пожалуйста, убедитесь, что все столбцы и меры имеют уникальную метку." ], - "Are you sure you want to delete the selected annotations?": [ - "Вы уверены, что хотите удалить выбранные аннотации?" + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "" ], - "Are you sure you want to delete the selected charts?": [ - "Вы уверены, что хотите удалить выбранные графики?" + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [ + "Неподдерживаемая операция постобработки: %(operation)s" ], - "Are you sure you want to delete the selected dashboards?": [ - "Вы уверены, что хотите удалить выбранные дашборды?" + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Ошибка в jinja выражении в предикате выборки значений: %(msg)s" ], - "Are you sure you want to delete the selected datasets?": [ - "Вы уверены, что хотите удалить выбранные датасеты?" + "Virtual dataset query must be read-only": [ + "Запрос виртуального датасета должен быть доступен только для чтения" ], - "Are you sure you want to delete the selected layers?": [ - "Вы уверены, что хотите удалить выбранные слои?" + "Error while rendering virtual dataset query: %(msg)s": [ + "Произошла ошибка при выполнении запроса виртуального датасета: %(msg)s" ], - "Are you sure you want to delete the selected queries?": [ - "Вы уверены, что хотите удалить выбранные запросы?" + "Virtual dataset query cannot be empty": [ + "Запрос виртуального датасета не может быть пустым" ], - "Are you sure you want to delete the selected templates?": [ - "Вы уверены, что хотите удалить выбранные шаблоны?" + "Virtual dataset query cannot consist of multiple statements": [ + "Запрос виртуального датасета не может содержать несколько запросов" ], - "Are you sure you want to overwrite this dataset?": [ - "Вы уверены, что хотите перезаписать этот датасет?" + "Error in jinja expression in RLS filters: %(msg)s": [ + "Ошибка в jinja выражении в RLS фильтрах: %(msg)s" ], - "Are you sure you want to proceed?": [ - "Вы уверены, что хотите продолжить?" + "Metric '%(metric)s' does not exist": ["Мера '%(metric)s' не существует"], + "Db engine did not return all queried columns": [ + "драйвер базы данных вернул не все запрошенные столбцы" ], - "Are you sure you want to save and apply changes?": [ - "Вы уверены, что хотите сохранить и применить изменения?" + "Only `SELECT` statements are allowed": [ + "Доступны только SELECT запросы" ], - "Area Chart": ["Диаграмма с областями"], - "Area Chart (legacy)": ["Диаграмма с областями (устарело)"], - "Area chart": ["Диаграмма с областями"], - "Area chart opacity": ["Непрозрачность диаграммы с областями"], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "Диаграммы с областями похожи на линейные диаграммы в том смысле, что они отображают показатели с одинаковым масштабом, но диаграммы областей накладывают эти показатели друг на друга." + "Only single queries supported": [ + "Поддерживаются только одиночные запросы" ], - "Arrow": ["Стрела"], - "Assign a set of parameters as": ["Задайте набор параметров в формате"], - "Associated Charts": ["Связанные графики"], - "Async Execution": ["Асинхронное выполнение"], - "Asynchronous query execution": ["Асинхронное выполнение запросов"], - "August": ["Август"], - "Auto": ["Автоматически"], - "Auto Zoom": ["Авто масштабирование"], - "Autocomplete": ["Автозаполнение"], - "Autocomplete filters": ["Фильтры автозаполнения"], - "Autocomplete query predicate": ["Предикат запроса автозаполнения"], - "Automatic Color": ["Автоматический цвет"], - "Available sorting modes:": ["Доступные режимы сортировки:"], - "Average": ["Среднее"], - "Axis": ["Ось"], - "Axis Bounds": ["Границы оси"], - "Axis Format": ["Формат Оси"], - "Axis Title": ["Название оси"], - "Axis ascending": ["Ось по возрастанию"], - "Axis descending": ["Ось по убыванию"], - "BOOLEAN": ["Булевый (BOOLEAN)"], - "Back": ["Назад"], - "Back to all": ["Вернуться ко всем"], - "Backend": ["Драйвер"], - "Backward values": ["Предыдущие значения"], - "Bad formula.": ["Неверная формула."], - "Bad spatial key": ["Неподходящий пространственный ключ"], - "Bar": ["Столбчатая"], - "Bar Chart": ["Столбчатая диаграмма"], - "Bar Chart (legacy)": ["Столбчатая диаграмма (устарело)"], - "Bar Charts are used to show metrics as a series of bars.": [ - "Столбчатые диаграммы используются для отображения показателей в виде серии столбцов." + "Columns": ["Столбцы"], + "Show Column": ["Показать столбец"], + "Add Column": ["Добавить столбец"], + "Edit Column": ["Редактировать столбец"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "" ], - "Bar Values": ["Значения столбцов"], - "Bar orientation": ["Направление столбцов"], - "Base layer map style": [""], - "Based on a metric": ["На основе меры"], - "Based on granularity, number of time periods to compare against": [ - "Основываясь на группировке времени, количество периодов времени для сравнения" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "" ], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": ["Базовая настройка"], - "Basic information": ["Основная информация"], - "Batch editing %d filters:": [ - "Множественное редактирование фильтров: %d" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "" ], - "Battery level over time": ["Уровень заряда батареи с течением времени"], - "Be careful.": ["Будьте осторожны."], - "Before": ["До"], - "Big Number": ["Карточка"], - "Big Number Font Size": ["Размер шрифта числа"], - "Big Number with Trendline": ["Карточка с трендовой линией"], - "Bottom": ["Снизу"], - "Bottom Margin": ["Нижний отступ"], - "Bottom left": ["Снизу слева"], - "Bottom margin, in pixels, allowing for more room for axis labels": [ - "Нижний отступ (в пикселях), дает больше пространства меткам оси" + "Column": ["Столбец"], + "Verbose Name": ["Удобочитаемое имя"], + "Description": ["Описание"], + "Groupable": ["Группируемый"], + "Filterable": ["Фильтруемый"], + "Table": ["Таблица"], + "Expression": ["Выражение"], + "Is temporal": ["Содержит дату/время"], + "Datetime Format": ["Формат даты и времени"], + "Type": ["Тип"], + "Business Data Type": ["Тип данных бизнеса"], + "Invalid date/timestamp format": ["Недопустимый формат дата/время"], + "Metrics": ["Меры"], + "Show Metric": ["Показатель меру"], + "Add Metric": ["Добавить меру"], + "Edit Metric": ["Редактировать меру"], + "Metric": ["Мера"], + "SQL Expression": ["SQL выражение"], + "D3 Format": ["Формат даты/времени"], + "Extra": ["Дополнительные параметры"], + "Warning Message": ["Предупреждение"], + "Tables": ["Таблицы"], + "Show Table": ["Показать таблицу"], + "Import a table definition": [""], + "Edit Table": ["Редактировать таблицу"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "" ], - "Bottom right": ["Снизу справа"], - "Bottom to Top": ["Снизу вверх"], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Границы для оси Y. Если оставить поле пустым, границы динамически определяются на основе минимального/максимального значения данных. Обратите внимание, что эта функция только расширит диапазон осей. Она не изменит размер графика." + "Timezone offset (in hours) for this datasource": [ + "Смещение часового пояса (в часах) для этого источника данных" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Границы для оси. Если оставить поле пустым, границы динамически определяются на основе минимального/максимального значения данных. Обратите внимание, что эта функция только расширит диапазон осей. Она не изменит размер графика." + "Name of the table that exists in the source database": [ + "Имя таблицы, которая существует в базе данных" ], - "Box Plot": ["Ящик с усами"], - "Bubble Chart": ["Пузырьковая диаграмма"], - "Bubble Color": ["Цвет пузыря"], - "Bubble Size": ["Размер пузыря"], - "Bubble size": ["Размер маркера"], - "Bucket break points": [""], - "Build": ["Сборка"], - "Bulk select": ["Множественный выбор"], - "Bullet Chart": ["Диаграмма-шкала"], - "Business": ["Бизнес"], - "Business Data Type": ["Тип данных бизнеса"], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "По умолчанию, каждый фильтр загружает не больше 1000 элементов выбора при начальной загрузке страницы. Установите этот флаг, если у вас больше 1000 значений фильтра и вы хотите включить динамический поиск, который загружает значения по мере их ввода пользователем (может увеличить нагрузку на вашу базу данных)." + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "" ], - "By key: use column names as sorting key": [ - "По ключу: использовать имена столбцов как ключ сортировки" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "" ], - "By key: use row names as sorting key": [ - "По ключу: использовать имена строк как ключ сортировки" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "" ], - "By value: use metric values as sorting key": [ - "По значению: использовать значения мер как ключ сортировки" + "Redirects to this endpoint when clicking on the table from the table list": [ + "" ], - "CANCEL": ["ОТМЕНА"], - "CREATE DATASET": ["СОЗДАТЬ ДАТАСЕТ"], - "CREATE TABLE AS": ["CREATE TABLE AS"], - "CREATE VIEW AS": ["CREATE VIEW AS"], - "CREATE VIEW statement": ["Выражение CREATE VIEW"], - "CRON Schedule": ["CRON расписание"], - "CRON expression": ["CRON выражение"], - "CSS": ["CSS"], - "CSS Styles": ["CSS стили"], - "CSS Templates": ["CSS шаблоны"], - "CSS applied to the chart": ["CSS, примененный к графику"], - "CSS template": ["CSS шаблон"], - "CSS template could not be deleted.": ["Не удалось удалить CSS шаблон."], - "CSS template name": ["Имя CSS шаблона"], - "CSS template not found.": ["CSS шаблон не найден."], - "CSS templates": ["CSS шаблоны"], - "CSV Upload": ["Загрузка CSV"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "CSV файл \"%(csv_filename)s\" загружен в таблицу \"%(table_name)s\" в базе данных \"%(db_name)s\"" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "" ], - "CSV to Database configuration": [ - "Конфигурация CSV файла для импорта в базу данных" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "" ], - "CSV upload": ["Загрузка CSV"], - "CTAS & CVAS SCHEMA": ["СХЕМА CTAS & CVAS"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTAS (CREATE TABLE AS SELECT) может быть выполнен в запросе с единственным SELECT запросом. Пожалуйста, убедитесь, что запрос содержит только один SELECT запрос. Затем выполните запрос заново." + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Набор параметров, которые доступны в запросе через шаблонизацию Jinja." ], - "CTAS Schema": ["Схема CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "CVAS (CREATE VIEW AS SELECT) может быть выполнен в запросе с единственным SELECT запросом. Пожалуйста, убедитесь, что запрос содержит только один SELECT запрос. Затем выполните запрос заново." + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Продолжительность (в секундах) таймаута кэша для этой таблицы. Обратите внимание, что если значение не задано, применяется значение базы данных." ], - "CVAS (create view as select) query has more than one statement.": [ - "CVAS (CREATE VIEW AS SELECT) запрос содержит больше одного запроса." + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "" ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "CVAS (CREATE VIEW AS SELECT) запрос не является SELECT запросом." + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "" ], + "Associated Charts": ["Связанные графики"], + "Changed By": ["Кем изменено"], + "Database": ["База данных"], + "Last Changed": ["Дата изменения"], + "Schema": ["Схема"], + "Default Endpoint": ["Эндпоинт по умолчанию"], + "Offset": ["Смещение"], "Cache Timeout": ["Время жизни кэша"], - "Cache Timeout (seconds)": ["Время жизни кэша (секунды)"], - "Cache timeout": ["Время жизни кэша"], - "Cached": ["Добавлено в кэш"], - "Cached %s": ["Добавлено в кэш %s"], - "Cached value not found": ["Кэшированное значение не найдено"], - "Calculate contribution per series or row": [ - "Вычислить вклад в общую сумму (долю) по категории или строке. Установливает формат показателя в проценты" + "Table Name": ["Имя таблицы"], + "Fetch Values Predicate": [""], + "Owners": ["Владельцы"], + "Main Datetime Column": ["Основной столбец с временем"], + "SQL Lab View": [""], + "Template parameters": ["Параметры шаблона"], + "Modified": ["Изменено"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "" ], - "Calculated column [%s] requires an expression": [ - "Для вычисляемого столбца [%s] требуется выражение" + "Deleted %(num)d css template": [ + "Удален %(num)d CSS шаблон", + "Удалены %(num)d CSS шаблона", + "Удалено %(num)d CSS шаблонов" ], - "Calculated columns": ["Вычисляемые столбцы"], - "Calculation type": ["Тип расчёта"], - "Calendar Heatmap": ["Календарная тепловая карта"], - "Can not move top level tab into nested tabs": [ - "Невозможно перенести вкладку верхнего уровня во вложенную вкладку" + "Dataset schema is invalid, caused by: %(error)s": [ + "Схема датасета невалидна, причина: %(error)s" ], - "Can select multiple values": ["Можно выбрать несколько значений"], - "Can't have overlap between Series and Breakdowns": [""], - "Cancel": ["Отмена"], - "Cancel query on window unload event": [ - "Отменять запрос при закрытии вкладки" + "Deleted %(num)d dashboard": [ + "Удален %(num)d дашборд", + "Удалены %(num)d дашборда", + "Удалено %(num)d дашбордов" ], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [ - "Невозможно удалить базу данных с подключенными датасетами" + "Title or Slug": ["Название или читаемый URL"], + "Role": ["Роль"], + "Invalid state.": [""], + "Table name undefined": ["Имя таблицы не определено"], + "Upload Enabled": ["Загрузка включена"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Недопустимая строка для подключения, валидная строка соответствует шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" ], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Невозможно импортировать дашборд: %(db_error)s.\nУбедитесь, что база даннах создана перед импортированием дашборда." + "Field cannot be decoded by JSON. %(msg)s": [ + "Поле не может быть декодировано с помощью JSON. %(msg)s" ], - "Cannot load filter": ["Невозможно загрузить фильтр"], - "Cannot parse time string [%(human_readable)s]": [ - "Не удается разобрать временную строку [%(human_readable)s]" + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "" ], - "Categorical": ["Категориальный"], - "Categorical Color": ["Цвет категории"], - "Categories to group by on the x-axis.": [ - "Категории для группировки по оси x" + "An engine must be specified when passing individual parameters to a database.": [ + "Движок должен быть указан при передаче индивидуальных параметров к базе." ], - "Category": ["Категория"], - "Category Name": ["Имя категории"], - "Category and Percentage": ["Категория и процентная доля"], - "Category and Value": ["Категория и значение"], - "Category of target nodes": ["Категория целевых вершин"], - "Category, Value and Percentage": [ - "Категория, значение и процентная доля" + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "" ], - "Cell Padding": ["Расстояние между ячейками"], - "Cell Radius": ["Радиус ячейки"], - "Cell Size": ["Размер ячейки"], - "Cell bars": ["Гистограммы в ячейках"], - "Cell content": ["Содержимое ячейки"], - "Cell limit": ["Лимит ячеек"], - "Center": ["По центру"], - "Centroid (Longitude and Latitude): ": ["Центроид (Долгота и Широта): "], - "Certification": ["Утверждение"], - "Certification details": ["Детали утверждения"], - "Certified": ["Утверждено"], - "Certified By": ["Кем утверждено"], - "Certified by": ["Кем утверждено"], - "Certified by %s": ["Утверждено: %s"], - "Change order of columns.": ["Сменить порядок столбцов."], - "Change order of rows.": ["Сменить порядок строк."], - "Changed By": ["Кем изменено"], - "Changed on": ["Дата изменения"], - "Changes saved.": ["Изменения сохранены."], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Изменение датасета может привести к тому, что график станет нерабочим, если график использует несуществующие в целевом датасете столбцы или метаданные" + "Deleted %(num)d dataset": [ + "Удален %(num)d датасет", + "Удалены %(num)d датасета", + "Удалено %(num)d датасетов" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "Изменение этих настроек будет влиять на все графики, использующие этот датасет, включая графики других пользователей." + "Null or Empty": ["Null или Пусто"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Пожалуйста, проверьте ваш запрос на синтаксические ошибки возле символа \"%(syntax_error)s\". Затем выполните запрос заново." ], - "Changing this Dashboard is forbidden": [ - "Запрещено изменять этот дашборд" + "Second": ["Секунда"], + "5 second": ["5 секунд"], + "30 second": ["30 секунд"], + "Minute": ["Минута"], + "5 minute": ["5 минут"], + "10 minute": ["10 минут"], + "15 minute": ["15 минут"], + "30 minute": ["30 минут"], + "Hour": ["Час"], + "6 hour": ["6 часов"], + "Day": ["День"], + "Week": ["Неделя"], + "Month": ["Месяц"], + "Quarter": ["Квартал"], + "Year": ["Год"], + "Week starting Sunday": ["Неделя, начинающаяся в воскресенье"], + "Week starting Monday": ["Неделя, начинающаяся в понедельник"], + "Week ending Saturday": ["Неделя, заканчивающаяся в субботу"], + "Username": ["Имя пользователя"], + "Password": ["Пароль"], + "Hostname or IP address": ["Имя хоста или IP адрес"], + "Database port": ["Порт базы данных"], + "Database name": ["Имя базы данных"], + "Additional parameters": ["Дополнительные параметры"], + "Use an encrypted connection to the database": [ + "Использовать зашифрованное соединение к Базе Данных" ], - "Changing this chart is forbidden": ["Запрещено изменять этот график"], - "Changing this control takes effect instantly": [ - "Изменение этого элемента применяется сразу" + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "" ], - "Changing this dataset is forbidden": ["Запрещено изменять этот датасет"], - "Changing this dataset is forbidden.": [ - "Запрещено изменять этот датасет" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Таблица \"%(table)s\" не существует. Для выполнения запроса должна использоваться существующая таблица" ], - "Changing this datasource is forbidden": [ - "Запрещено изменять этот источник данных" + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Не удалось обнаружить столбец \"%(column)s\" в строке %(location)s." ], - "Changing this report is forbidden": ["Запрещено изменять эту рассылку"], - "Character to interpret as decimal point": [ - "Символ десятичного разделителя" + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "" ], - "Character to interpret as decimal point.": [ - "Символ десятичного разделителя" + "Either the username \"%(username)s\" or the password is incorrect.": [ + "Неверное имя пользователя \"%(username)s\" или пароль." ], - "Chart": ["График"], - "Chart %(id)s not found": ["График %(id)s не найден"], - "Chart Cache Timeout": ["Время жизни кэша графика"], - "Chart Data: %s": ["Данные графика: %s"], - "Chart ID": ["ID графика"], - "Chart Options": ["Свойства графика"], - "Chart Orientation": ["Ориентация графика"], - "Chart Owner: %s": [ - "Владелец графика: %s", - "Владельцы графика: %s", - "Владельцы графика: %s" + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться" ], - "Chart Title": ["Название графика"], - "Chart [%s] has been overwritten": ["График [%s] перезаписан"], - "Chart [%s] has been saved": ["График [%s] сохранен"], - "Chart [%s] was added to dashboard [%s]": [ - "График [%s] добавлен в дашборд [%s]" + "Unable to connect to database \"%(database)s\".": [ + "Невозможно подключиться к базе данных \"%(database)s\"." ], - "Chart [{}] has been overwritten": ["График [{}] перезаписан"], - "Chart [{}] has been saved": ["График [{}] сохранен"], - "Chart [{}] was added to dashboard [{}]": [ - "График [{}] добавлен в дашборд [{}]" + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Пожалуйста, проверьте ваш запрос на наличие синтаксических ошибок рядом с \"%(server_error)s\". Затем выполните запрос заново" ], - "Chart cache timeout": ["Время жизни кэша графика"], - "Chart changes": ["Изменения графика"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "" + "We can't seem to resolve the column \"%(column_name)s\"": [ + "Не удалось обнаружить столбец \"%(column_name)s\"" ], - "Chart could not be created.": ["Не удалось создать график"], - "Chart could not be deleted.": ["Не удалось удалить график"], - "Chart could not be updated.": ["Не удалось обновить график"], - "Chart does not exist": ["График не существует"], - "Chart has no query context saved. Please save the chart again.": [ - "На графике не сохранен контекст запроса. Пожалуйста, сохраните диаграмму еще раз." + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Неверное имя пользователя \"%(username)s\", пароль или имя базы данных \"%(database)s\"." ], - "Chart height": ["Высота графика"], - "Chart imported": ["График импортирован"], - "Chart name": ["Имя графика"], - "Chart options": ["Свойства графика"], - "Chart parameters are invalid.": ["Параметры графика недопустимы."], - "Chart properties updated": ["Свойства графика обновлены"], - "Chart title": ["Название графика"], - "Chart type": ["Тип графика"], - "Chart type requires a dataset": [ - "Для данного типа графика необходим датасет" + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "Не удалось обнаружить хост \"%(hostname)s\"" ], - "Chart width": ["Ширина графика"], - "Charts": ["Графики"], - "Charts could not be deleted.": ["Не удалось удалить графики."], - "Check configuration": ["Проверить конфигурацию"], - "Check for sorting ascending": ["Выберит для сортировки по возрастанию"], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "" + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Порт %(port)s хоста \"%(hostname)s\" отказал в подключении." ], - "Check out this chart in dashboard:": [ - "Посмотреть этот график в дашборде:" + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться по порту %(port)s." ], - "Check out this chart: ": ["Посмотреть график: "], - "Check out this dashboard: ": ["Посмотреть дашборд: "], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Установите флажок, чтобы применять фильтры мгновенно по мере их изменения вместо отображения кнопки [Применить]" + "Unknown MySQL server host \"%(hostname)s\".": [ + "Неизвестный хост MySQL \"%(hostname)s\"." ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [""], - "Check to include time grain dropdown": [""], - "Child label position": ["Положение метки дочернего элемента"], - "Choice of [Label] must be present in [Group By]": [ - "[Метка] должна присутствовать в [Группировать по]" + "The username \"%(username)s\" does not exist.": [ + "Пользователь \"%(username)s\" не существует." ], - "Choice of [Point Radius] must be present in [Group By]": [ - "[Радиус точки] должен присутствовать в [Группировать по]" + "The user/password combination is not valid (Incorrect password for user).": [ + "" ], - "Choose File": ["Выберите файл"], - "Choose a chart or dashboard not both": [ - "Выберите график или дашборд, не обоих" + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" ], - "Choose a database...": ["Выберите базу данных..."], - "Choose a dataset": ["Выберите датасет"], - "Choose a metric for right axis": ["Выберите меру для правой оси"], - "Choose a number format": ["Выберите числовой формат"], - "Choose a source": ["Выберите источник"], - "Choose a source and a target": ["Выберите источник и цель"], - "Choose a target": ["Выберите цель"], - "Choose chart type": ["Выберите тип графика"], - "Choose one of the available databases from the panel on the left.": [ - "Выберите одну из доступных баз данных из панели слева." + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [ + "Неверный пароль для пользователя \"%(username)s\"." ], - "Choose the annotation layer type": ["Выбрать тип слоя аннотации"], - "Choose the format for legend values": [ - "Выберите формат значений легенды" + "Please re-enter the password.": ["Пожалуйста, введите пароль еще раз"], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Не удалось обнаружить столбец \"%(column_name)s\" в строке %(location)s." ], - "Choose the position of the legend": ["Выберите позицию легенды"], - "Choose the source of your annotations": ["Выберите источник аннотаций"], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "" + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Таблица \"%(table_name)s\" не существует. Для выполнения запроса должна использоваться существующая таблица" ], - "Chord Diagram": ["Хордовая диаграмма"], - "Chosen non-numeric column": ["Выбран нечисловой столбец"], - "Circle": ["Круг"], - "Circle -> Arrow": ["Круг -> Стрелка"], - "Circle -> Circle": ["Круг -> Круг"], - "Circle radar shape": ["Круглая форма радара"], - "Circular": ["Круглая форма"], - "Classic chart that visualizes how metrics change over time.": [ - "Классическая диаграмма для визуализации изменения показателей со временем." + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "" ], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "Классическое представление таблицы. Используйте таблицы для демонстрации отображения исходных или агрегированных данных." + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": ["Неизвестная ошибка Presto"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Не удалось подключиться к вашей базе данных с именем \"%(database)s\". Пожалуйста, подтвердите имя вашей базы данных и попробуйте снова." ], - "Clause": ["Оператор"], - "Clear": ["Очистить"], - "Clear all": ["Сбросить фильтры"], - "Clear all data": ["Очистить все данные"], - "Clear form": ["Очистить форму"], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "" + "%(object)s does not exist in this database.": [ + "%(object)s не существует в этой базе данных." ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ - "Нажмите на кнопку \"Создать график\" на панели управления слева для просмотра графика или" + "Samples for datasource could not be retrieved.": [ + "Не удалось получить примеры записей для источника данных." ], - "Click the lock to make changes.": [ - "Нажмите на замок для внесения изменений" + "Changing this datasource is forbidden": [ + "Запрещено изменять этот источник данных" ], - "Click the lock to prevent further changes.": [ - "Нажмите на замок для запрета на внос изменений." + "Home": ["Главная"], + "Database Connections": ["Базы данных"], + "Data": ["Данные"], + "Dashboards": ["Дашборды"], + "Charts": ["Графики"], + "Datasets": ["Датасеты"], + "Plugins": ["Плагины"], + "Manage": ["Управление"], + "CSS Templates": ["CSS шаблоны"], + "SQL Lab": ["Лаборатория SQL"], + "SQL": ["SQL"], + "Saved Queries": ["Сохраненные запросы"], + "Query History": ["История запросов"], + "Tags": ["Теги"], + "Action Log": ["Журнал действий"], + "Security": ["Безопасность"], + "Alerts & Reports": ["Оповещения и отчеты"], + "Annotation Layers": ["Слои аннотаций"], + "Row Level Security": ["Безопасность на уровне строк"], + "An error occurred while parsing the key.": [ + "Произошла ошибка при парсинге ключа." ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "Нажмите для переключения на альтернативную форму подключения, которая позволит вам вручную ввести SQLAlchemy URL для данной базы данных." + "An error occurred while upserting the value.": [ + "Произошла ошибка при вставке значения." ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "Нажмите для переключения на альтернативную форму подключения, которая позволит вам ввести все данные в соответствующую форму для данной базы данных." + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Столбец даты/времени не предусмотрен в настройках таблицы и является обязательным для этого типа графика" ], - "Click to cancel sorting": ["Нажмите для отмены сортировки"], - "Click to edit": ["Нажмите для редактирования"], - "Click to edit %s.": ["Нажмите для редактирования %s."], - "Click to edit chart.": ["Нажмите для редактирования графика."], - "Click to edit label": ["Нажмите для редактирования метки"], - "Click to favorite/unfavorite": ["Добавить в избранное"], - "Click to force-refresh": ["Нажмите для принудительного обновления"], - "Click to see difference": ["Нажмите для просмотра изменений"], - "Click to sort ascending": ["Нажмите для сортировки по возрастанию"], - "Click to sort descending": ["Нажмите для сортировки по убыванию"], - "Close": ["Закрыть"], - "Close all other tabs": ["Закрыть остальные вкладки"], - "Close tab": ["Закрыть вкладку"], - "Cluster label aggregator": ["Агрегатор меток кластера"], - "Clustering Radius": ["Радиус кластера"], - "Code": ["Редактор"], - "Collapse all": ["Свернуть всё"], - "Collapse data panel": ["Свернуть панель управления"], - "Collapse row": ["Свернуть строку"], - "Collapse tab content": ["Свернуть содержимое вкладки"], - "Collapse table preview": ["Свернуть предпросмотр таблицы"], - "Color": ["Цвет"], - "Color +/-": ["Раскрасить +/-"], - "Color Metric": ["Цвет меры"], - "Color Scheme": ["Цветовая схема"], - "Color Steps": ["Количество цветов"], - "Color bounds": ["Границы цвета"], - "Color by": ["Выбор цвета по"], - "Color metric": ["Мера для цвета"], - "Color of the target location": ["Цвет целевого местоположения"], - "Color scheme": ["Цветовая схема"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ - "" - ], - "Colors": ["Цвета"], - "Column": ["Столбец"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "Столбец \"%(column)s\" не является числовым или отсутствует в результатах запроса." - ], - "Column Configuration": ["Свойства столбца"], - "Column Formatting": ["Форматирование столбца(ов)"], - "Column Label(s)": ["Метка(и) столбца(ов)"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "Столбец, содержащий коды ISO 3166-2 региона/республики/области в вашей таблице" + "Empty query?": ["Пустой запрос?"], + "Unknown column used in orderby: %(col)s": [ + "Неизвестный столбец использован для упорядочивания: %(col)s" ], - "Column containing latitude data": [ - "Столбец, содержащий данные о широте" + "Time column \"%(col)s\" does not exist in dataset": [ + "Столбец формата дата/время \"%(col)s\" не существует в датасете" ], - "Column containing longitude data": [ - "Столбец, содержащий данные о долготе" + "Filter value list cannot be empty": [ + "Список для фильтрации не может быть пуст" ], - "Column header tooltip": ["Всплывающая подсказка заголовка столбца"], - "Column is required": ["Столбец обязателен"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Метка для индексного(ых) столбца(ов). Если не задано и задан индекс датафрейма, будут использованы имена индексов." + "Must specify a value for filters with comparison operators": [ + "Необходимо указать значение для фильтров с операторами сравнения" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ - "Метка для индексного(ых) столбца(ов). Если не задано и задан индекс датафрейма, будут использованы имена индексов." + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Ошибка в jinja выражении в операторе WHERE: %(msg)s" ], - "Column name": ["Имя столбца"], - "Column name [%s] is duplicated": [ - "Имя столбца [%s] является дубликатом" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Ошибка в jinja выражении в операторе HAVING: %(msg)s" ], - "Column referenced by aggregate is undefined: %(column)s": [ - "Столбец, на который ссылается агрегат, не определен: %(column)s" + "Database does not support subqueries": [ + "База данных не поддерживает подзапросы" ], - "Column select": ["Выбор столбца"], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ - "Столбец для использования в качестве метки для строки датафрейма. Оставьте пустым, если индексный столбец отсутствует." + "Deleted %(num)d saved query": [ + "Удален %(num)d сохраненный запрос", + "Удалены %(num)d сохраненных запроса", + "Удалено %(num)d сохраненных запросов" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Столбец для использования в качестве метки для строки датафрейма. Оставьте пустым, если индексный столбец отсутствует." + "Deleted %(num)d report schedule": [ + "Удалено %(num)d расписание рассылок", + "Удалены %(num)d расписания рассылок", + "Удалено %(num)d расписаний рассылок" ], - "Columnar File": ["Файл столбчатого формата"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Файл столбчатого формата \"%(columnar_filename)s\" загружен в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\"" + "Value must be greater than 0": ["Значение должно быть больше 0"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [ + "\n Ошибка: %(text)s\n " ], - "Columnar to Database configuration": [ - "Конфигурация столбчатого файла для импорта в базу данных" + "%(name)s.csv": ["%(name)s.csv"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Исследовать в Суперсете>\n\n%(table)s\n" ], - "Columns": ["Столбцы"], - "Columns To Be Parsed as Dates": [ - "Список столбцов, которые должны быть интерпретированы как даты." + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ + "*%(name)s*\n\n%(description)s\n\nОшибка: %(text)s\n" ], - "Columns To Read": ["Столбцы для чтения"], - "Columns missing in dataset: %(invalid_columns)s": [ - "Столбцы отсутствуют в датасете: %(invalid_columns)s" + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s не может использоваться в качестве источника данных по соображениям безопасности." ], - "Columns missing in datasource: %(invalid_columns)s": [ - "Столбцы отсутствуют в источнике данных: %(invalid_columns)s" + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [ + "Недостаточно прав для изменения %(resource)s" ], - "Columns subtotal position": ["Расположение столбцов подытогов"], - "Columns to calculate distribution across.": [""], - "Columns to display": ["Столбцы для отображения"], - "Columns to group by": ["Столбцы для группировки"], - "Columns to group by on the columns": [ - "Столбцы для группировки по столбцам" + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Пожалуйста, проверьте параметры вашего шаблона на наличие синтаксических ошибок и убедитесь, что они совпадают с вашим SQL-запросом и заданными параметрами. Затем попробуйте выполнить свой запрос еще раз." ], - "Columns to group by on the rows": ["Столбцы для группировки по строкам"], - "Columns to show": ["Столбцы для отображения"], - "Combine metrics": ["Объединить меры"], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "Номера цветов, разделенные запятой, например, 1,2,4. Целые числа задают цвета из выбранной цветовой схемы и начинаются с 1 (не с нуля). Длина должна соответствовать границам интервала." + "The parameter %(parameters)s in your query is undefined.": [ + "Параметр %(parameters)s в вашем запросе неопределен.", + "Следующие параметры неопределены в вашем запросе: %(parameters)s", + "Следующие параметры неопределены в вашем запросе: %(parameters)s" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "Границы интервала, разделенные запятой, например, 2,4,5 для интервалов 0-2, 2-4 и 4-5. Последнее число должно быть равно заданному максиму." + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Пожалуйста, проверьте ваш запрос и подтвердите, что все параметры шаблона заключены в двойные фигурные скобки, например, \"{{ from_dttm }}\". Затем попробуйте повторно выполнить запрос." ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "Быстрое сравнение нескольких графиков временных рядов (в виде спарклайнов) и связанных с ними показателей." + "Tag name is invalid (cannot contain ':')": [""], + "Scheduled task executor not found": [ + "Исполнитель регулярных отчетов не найден" ], - "Compare the same summarized metric across multiple groups.": [ - "Сравнивает один и тот же обобщенный показатель в нескольких группах" + "Record Count": ["Кол-во записей"], + "No records found": ["Записи не найдены"], + "Filter List": ["Список фильтров"], + "Search": ["Поиск"], + "Refresh": ["Обновить"], + "Import dashboards": ["Импортировать дашборды"], + "Import Dashboard(s)": ["Импортировать дашборд(ы)"], + "File": ["Файл"], + "Choose File": ["Выберите файл"], + "Upload": ["Загрузить"], + "Use the edit button to change this field": [ + "Используйте кнопку редактирования для изменения поля" ], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ - "" + "Test Connection": ["Тестовое соединение"], + "Unsupported clause type: %(clause)s": [ + "Неподдерживаемый оператор: %(clause)s" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "" + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [ + "Не удалось найти такой праздник: [%(holiday)s]" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Comparison": ["Сравнение"], - "Comparison Period Lag": ["Временной лаг для сравнения"], - "Comparison suffix": ["Текст рядом с процентным изменением"], - "Compose multiple layers together to form complex visuals.": [ - "Объединяет несколько слоев вместе для формирования сложных визуальных эффектов." + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Столбец \"%(column)s\" не является числовым или отсутствует в результатах запроса." ], - "Compute the contribution to the total": [ - "Вычислить вклад в общую сумму (долю)" + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": ["Недопустимые долгота/широта"], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": ["Единица времени отсутствует"], + "Unsupported time grain: %(time_grain)s": [ + "Неподдерживаемая единица времени: %(time_grain)s" ], - "Condition": ["Условие"], - "Conditional formatting": ["Условное форматирование"], - "Confidence interval": ["Доверительный интервал"], + "Periods must be a whole number": ["Периоды должны быть целым числом"], "Confidence interval must be between 0 and 1 (exclusive)": [ "Доверительный интервал должен быть между 0 и 1 (не включая концы)" ], - "Configuration": ["Конфигурация"], - "Configure Advanced Time Range ": [ - "Установить особый временной интервал " + "DataFrame must include temporal column": [ + "Датафрейм должен включать временной столбец" ], - "Configure Time Range: Last...": [ - "Установить временной интервал: последний..." + "DataFrame include at least one series": [""], + "Label already exists": ["Метка уже существует"], + "Resample operation requires DatetimeIndex": [ + "Для ресемплирования требуется индекс формата дата/время" ], - "Configure Time Range: Previous...": [ - "Установить временной интервал: предыдущий..." + "Resample method should in ": [""], + "Undefined window for rolling operation": [ + "Неопределенное окно для скольжения" ], - "Configure custom time range": [ - "Установить пользовательский временной интервал" + "Window must be > 0": ["Окно должно быть > 0"], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Недопустимые настройки для %(rolling_type)s: %(options)s" ], - "Configure filter scopes": ["Настроить область действия фильтра"], - "Configure the basics of your Annotation Layer.": [ - "Настройте слой аннотации." + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [ + "Столбец, на который ссылается агрегат, не определен: %(column)s" ], - "Configure this dashboard to embed it into an external web application.": [ - "Настройте этот дашборд для встраивания во внешнее веб-приложение" + "Operator undefined for aggregator: %(name)s": [ + "Оператор не определен для агрегатора: %(name)s" ], - "Configure your how you overlay is displayed here.": [ - "Настройка отображения слоя аннотации поверх графика." + "Invalid numpy function: %(operator)s": [ + "Недопустимая numpy функция: %(operator)s" ], - "Confirm overwrite": ["Подтвердить перезапись"], - "Confirm save": ["Подтвердить сохранение"], - "Connect": ["Подключить"], - "Connect Google Sheet": ["Подключить Google Таблицы"], - "Connect Google Sheets as tables to this database": [ - "Подключить Google Таблицы как таблицы для этой базы данных" + "json isn't valid": ["JSON не валиден"], + "Export to YAML": ["Экспорт в YAML"], + "Export to YAML?": ["Экспортировать в YAML?"], + "Delete": ["Удалить"], + "Delete all Really?": ["Действительно удалить все?"], + "Is favorite": ["В избранном"], + "The data source seems to have been deleted": [ + "Источник данных, похоже, был удален" ], - "Connect a database": ["Подключиться к базе данных"], - "Connect database": ["Подключиться к базе данных"], - "Connect this database using the dynamic form instead": [ - "Подключиться к этой базе, используя динамичную форму" + "The user seems to have been deleted": [ + "Пользователь, похоже, был удален" ], - "Connect this database with a SQLAlchemy URI string instead": [ - "Подключиться к этой базе через SQLAlchemy URI" + "You don't have the rights to download as csv": [ + "Недостаточно прав для скачивания в CSV" ], - "Connection": ["База данных"], - "Connection failed, please check your connection settings": [ - "Сбой подключения, пожалуйста, проверьте настройки вашего подключения" - ], - "Connection looks good!": ["Соединение в порядке!"], - "Continue": ["Продолжить"], - "Continuous": ["Непрерывный"], - "Contribution": ["Режим относительных значений"], - "Contribution Mode": ["Режим относительных значений"], - "Control": ["Элемент"], - "Control labeled ": ["Значение с именем "], - "Controls labeled ": ["Значения с именами "], - "Coordinates": ["Координаты"], - "Copied to clipboard!": ["Скопировано в буфер обмена"], - "Copy": ["Копировать"], - "Copy SELECT statement to the clipboard": [ - "Скопировать выражение SELECT в буфер обмена" - ], - "Copy and Paste JSON credentials": ["Скопировать и вставить JSON данные"], - "Copy and paste the entire service account .json file here": [ - "Скопировать и вставить .json файл сервисного аккаунта сюда" + "Error: permalink state not found": [""], + "Error: %(msg)s": ["Ошибка: %(msg)s"], + "You don't have the rights to alter this chart": [ + "Недостаточно прав для изменения графика" ], - "Copy link": ["Скопировать ссылку"], - "Copy message": ["Скопировать сообщение"], - "Copy of %s": ["Копия %s"], - "Copy partition query to clipboard": [ - "Скопировать часть запроса в буфер обмена" + "You don't have the rights to create a chart": [ + "Недостаточно прав для создания графика" ], - "Copy permalink to clipboard": ["Скопировать ссылку в буфер обмена"], - "Copy query URL": ["Скопировать ссылку на запрос"], - "Copy query link to your clipboard": [ - "Скопировать ссылку на запрос в буфер обмена" + "Explore - %(table)s": ["Исследовать - %(table)s"], + "Explore": ["Исследовать"], + "Chart [{}] has been saved": ["График [{}] сохранен"], + "Chart [{}] has been overwritten": ["График [{}] перезаписан"], + "You don't have the rights to alter this dashboard": [ + "Недостаточно прав для изменения дашборда" ], - "Copy the account name of that database you are trying to connect to.": [ - "Впишите имя профиля базы данных, к которой вы пытаетесь подключиться." + "Chart [{}] was added to dashboard [{}]": [ + "График [{}] добавлен в дашборд [{}]" ], - "Copy the name of the database you are trying to connect to.": [ - "Впишите имя базы данных, к которой вы пытаетесь подключиться" + "You don't have the rights to create a dashboard": [ + "Недостаточно прав для создания дашборда" ], - "Copy to Clipboard": ["Скопировать в буфер обмена"], - "Copy to clipboard": ["Скопировать в буфер обмена"], - "Correlation": ["Корреляция"], - "Cost estimate": ["Прогноз затрат"], - "Could not determine datasource type": [ - "Не удалось определить тип источника данных" + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "Дашборд [{}] был только что создан и график [{}] был добавлен в него" ], - "Could not fetch all saved charts": [ - "Не удалось получить все сохраненные графики" + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Некорректный запрос. Ожидаются аргументы slice_id или table_name и db_name" ], - "Could not find viz object": ["Не удалось найти объект визуализации"], - "Could not load database driver": [ - "Не удалось загрузить драйвер базы данных" + "Chart %(id)s not found": ["График %(id)s не найден"], + "Table %(table)s wasn't found in the database %(db)s": [""], + "permalink state not found": [""], + "Show CSS Template": ["Показать CSS шаблон"], + "Add CSS Template": ["Добавить CSS шаблон"], + "Edit CSS Template": ["Редактировать CSS шаблон"], + "Template Name": ["Имя шаблона"], + "A human-friendly name": ["Человекочитаемое имя"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "" ], - "Could not load database driver: %(driver_name)s": [ - "Не удалось загрузить драйвер базы данных: %(driver_name)s" + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Полный URL, указывающий на местоположение плагина (например, ссылка на CDN)" ], - "Could not load database driver: {}": [ - "Не удалось загрузить драйвер базы данных: {}" + "Custom Plugins": ["Пользовательские плагины"], + "Custom Plugin": ["Пользовательский плагин"], + "Add a Plugin": ["Добавить плагин"], + "Edit Plugin": ["Редактировать плагин"], + "The dataset associated with this chart no longer exists": [ + "Датасет, связанный с этим графиком, больше не существует" ], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count": ["Количество"], - "Count Unique Values": ["Количество уникальных значений"], - "Count as Fraction of Columns": ["Количество, как доля от столбцов"], - "Count as Fraction of Rows": ["Количество, как доля от строк"], - "Count as Fraction of Total": ["Количество, как доля от целого"], - "Country": ["Страна"], - "Country Color Scheme": ["Цветовая схема страны"], - "Country Column": ["Столбец со страной"], - "Country Field Type": ["Тип поля страны"], - "Country Map": ["Карта Стран"], - "Create": ["Создать"], - "Create Chart": ["Создать график"], - "Create a dataset": ["Создать датасет"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "Создайте датасет для визуализации ваших данных на графике или перейдите в Лабораторию SQL для просмотра данных." + "Could not determine datasource type": [ + "Не удалось определить тип источника данных" ], - "Create a new chart": ["Создать новый график"], - "Create chart": ["Создать график"], - "Create dataset": ["Создать датасет"], - "Create new chart": ["Создать новый график"], - "Create new filter set": ["Создать новый набор фильтров"], - "Create or select schema...": ["Создать или выбрать схему..."], - "Created": ["Создано"], - "Created On": ["Дата создания"], - "Created by": ["Кем создано"], - "Created by me": ["Создано мной"], - "Created content": ["Созданный контент"], - "Created on": ["Дата создания"], - "Creating SSH Tunnel failed for an unknown reason": [ - "Не удалось создать SSH туннель по неизвестной причине" + "Could not find viz object": ["Не удалось найти объект визуализации"], + "Show Chart": ["Показать график"], + "Add Chart": ["Добавить график"], + "Edit Chart": ["Редактировать график"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Эти параметры генерируются автоматически при нажатии кнопки сохранения. Опытные пользователи могут изменить определенные объекты в формате JSON." ], - "Creating a data source and creating a new tab": [ - "Создание источника данных и добавление новой вкладки..." + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Продолжительность (в секундах) таймаута кэша для этого графикаОбратите внимание, что если значение не задано, применяется значение источника данных/таблицы." ], "Creator": ["Автор"], - "Crimson": ["Малиновый"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "" + "Datasource": ["Источник данных"], + "Last Modified": ["Дата изменения"], + "Parameters": ["Параметры"], + "Chart": ["График"], + "Name": ["Имя"], + "Visualization Type": ["Тип визуализации"], + "Show Dashboard": ["Показать дашборд"], + "Add Dashboard": ["Добавить дашборд"], + "Edit Dashboard": ["Редактировать дашборд"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Этот JSON объект описывает расположение графиков в дашборде. Он генерируется динамически при изменении и перемещении графиков в дашборде." ], - "Cumulative": ["С накоплением"], - "Currently rendered: %s": ["Сейчас отрисовано: %s"], - "Custom": ["Пользовательский"], - "Custom Plugin": ["Пользовательский плагин"], - "Custom Plugins": ["Пользовательские плагины"], - "Custom SQL": ["Через SQL"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "Пользовательские ad-hoc меры SQL не разрешены для этого датасета" + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "" ], - "Custom SQL fields cannot contain sub-queries.": [ - "Пользовательские поля SQL не могут содержать подзапросы." + "To get a readable URL for your dashboard": [ + "Для получения читаемого URL-адреса дашборда" ], - "Custom time filter plugin": ["Пользовательский плагин фильтра времени"], - "Customize": ["Кастомизация"], - "Customize Metrics": ["Настроить меры"], - "Customize columns": ["Настроить столбцы"], - "Cyclic dependency detected": ["Обнаружена циклическая зависимость"], - "D3 Format": ["Формат даты/времени"], - "D3 format": ["Формат даты/времени"], - "D3 format syntax: https://github.com/d3/d3-format": [ - "Формат D3: https://github.com/d3/d3-format." + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Этот JSON-объект генерируется автоматически при сохранении или перезаписи дашборда. Он размещён здесь справочно и для опытных пользователей." ], - "D3 time format for datetime columns": [ - "Формат времени D3 для столбцов типа дата/время" + "Owners is a list of users who can alter the dashboard.": [ + "Владельцы – это список пользователей, которые могут изменять дашборд." ], - "D3 time format syntax: https://github.com/d3/d3-time-format": [ - "Формат времени D3: https://github.com/d3/d3-time-format." + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Определяет, виден ли этот дашборд в списке всех дашбордов" ], - "DATETIME": ["Дата/Время (DATETIME/TIMESTAMP)"], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": ["ДЕК"], - "DELETE": ["УДАЛИТЬ"], - "DML": ["DML"], - "Daily seasonality": ["Дневная сезонность"], - "Dark": ["Темный"], - "Dark Cyan": ["Темно-голубой"], - "Dark mode": ["Темная тема"], "Dashboard": ["Дашборд"], - "Dashboard [%s] just got created and chart [%s] was added to it": [ - "Дашборд [%s] был только что создан и график [%s] был добавлен в него" + "Title": ["Заголовок"], + "Slug": ["Читаемый URL"], + "Roles": ["Роли"], + "Published": ["Опубликовано"], + "CSS": ["CSS"], + "JSON Metadata": ["JSON Метаданные"], + "Export": ["Экспортировать"], + "Export dashboards?": ["Экспортировать дашборды?"], + "CSV Upload": ["Загрузка CSV"], + "Select a file to be uploaded to the database": [ + "Выберите файл для загрузки в базу данных." ], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "Дашборд [{}] был только что создан и график [{}] был добавлен в него" + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Доступные расширения файлов: %(allowed_extensions)s" ], - "Dashboard could not be created.": ["Не удалось создать дашборд"], - "Dashboard could not be deleted.": ["Не удалось удалить дашборд"], - "Dashboard could not be updated.": ["Не удалось обновить дашборд"], - "Dashboard does not exist": ["Дашборд не существует"], - "Dashboard imported": ["Дашборд импортирован"], - "Dashboard parameters are invalid.": ["Неверные параметры дашборда"], - "Dashboard properties": ["Свойства дашборда"], - "Dashboard properties updated": ["Свойства дашборда обновлены"], - "Dashboard scheme": ["Схема дашборда"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "" + "Name of table to be created with CSV file": [ + "Имя таблицы, созданной из CSV файла." ], - "Dashboard title": ["Название дашборда"], - "Dashboards": ["Дашборды"], - "Dashboards added to": ["Добавлено в дашборды"], - "Dashboards could not be deleted.": ["Не удалось удалить дашборды."], - "Dashboards do not exist": ["Дашборды не существуют"], - "Dashed": ["Штрих"], - "Data": ["Данные"], - "Data Table": ["Таблица"], - "Data URI is not allowed.": [""], - "Data Zoom": ["Масштабирование графика"], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "Не удалось распознать данные с сервера . Формат хранилища мог измениться, что привело к потере старых данных. Вам нужно повторно запустить исходный запрос." + "Table name cannot contain a schema": [ + "Имя таблицы не может содержать схему" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Не найдены сохраненные результаты на сервере, необходимо повторно выполнить запрос." + "Select a database to upload the file to": [ + "Выберите базу данных для загрузки файла" ], - "Data has no time steps": [""], - "Data preview": ["Предпросмотр данных"], - "Data refreshed": ["Данные обновлены"], - "Data type": ["Тип данных"], - "DataFrame include at least one series": [""], - "DataFrame must include temporal column": [ - "Датафрейм должен включать временной столбец" + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" ], - "Database": ["База данных"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не предназначена для загрузки файлов столбчатого формата. Пожалуйста, свяжитесь с администратором." + "Select a schema if the database supports this": [ + "Укажите схему, если она поддерживается базой данных" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не предназначена для загрузки CSV файлов. Пожалуйста, свяжитесь с администратором." + "Delimiter": ["Разделитель"], + "Enter a delimiter for this data": ["Введите разделитель этих данных"], + ",": [","], + ".": ["."], + "Other": ["Прочее"], + "If Table Already Exists": ["Если таблица уже существует"], + "What should happen if the table already exists": [ + "Что должно произойти, если таблица уже существует" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не предназначена для загрузки Excel файлов. Пожалуйста, свяжитесь с администратором." + "Fail": ["Ошибка"], + "Replace": ["Заменить"], + "Append": ["Добавить"], + "Skip Initial Space": ["Пропуск начального пробела"], + "Skip spaces after delimiter": ["Пропускать пробелы после разделителя"], + "Skip Blank Lines": ["Пропуск пустых строк"], + "Skip blank lines rather than interpreting them as Not A Number values": [ + "Пропускать пустые строки, вместо их перевода в пустые строки (NaN)" ], - "Database Connections": ["Базы данных"], - "Database Creation Error": ["Ошибка создания базы данных"], - "Database URL": ["URL базы данных"], - "Database connected": ["Соединение с базой данных установлено"], - "Database could not be created.": ["Не удалось создать базу данных."], - "Database could not be deleted.": ["Не удалось удалить базу данных."], - "Database could not be updated.": ["Не удалось обновить базу данных."], - "Database does not allow data manipulation.": [ - "База данных не позволяет изменять свои данные." - ], - "Database does not exist": ["База данных не существует"], - "Database does not support subqueries": [ - "База данных не поддерживает подзапросы" + "Columns To Be Parsed as Dates": [ + "Список столбцов, которые должны быть интерпретированы как даты." ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "Драйвер базы данных для импорта может быть не установлен. Изучите документацию Суперсета для инструкций по установке: " + "A comma separated list of columns that should be parsed as dates": [ + "Разделённый запятыми список столбцов, которые должны быть интерпретированы как даты." ], - "Database error": ["Ошибка базы данных"], - "Database is offline.": ["База данных сейчас оффлайн."], - "Database is required for alerts": [ - "Для оповещений требуется база данных" + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["Десятичный разделитель"], + "Character to interpret as decimal point": [ + "Символ десятичного разделителя" ], - "Database name": ["Имя базы данных"], - "Database not allowed to change": [ - "База данных недоступна для изменений" + "Null Values": ["Пустые значения"], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Список JSON значений, которые следует рассматривать как нулевые. Примеры: [\"\"] для пустых строк, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Предупреждение: База данных Hive поддерживает только одно значение." ], - "Database not found.": ["База данных не найдена."], - "Database not found: %(id)s": ["База данных не найдена: %(id)s"], - "Database parameters are invalid.": [ - "Параметры базы данных недействительны." + "Index Column": ["Индесный столбец"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Столбец для использования в качестве метки для строки датафрейма. Оставьте пустым, если индексный столбец отсутствует." ], - "Database passwords": ["Пароли базы данных"], - "Database port": ["Порт базы данных"], - "Database settings updated": ["Обновлены настройки базы данных"], - "Databases": ["Базы данных"], "Dataframe Index": ["Индекс датафрейма"], - "Dataset": ["Датасет"], - "Dataset %(name)s already exists": ["Датасет %(name)s уже существует"], - "Dataset Name": ["Имя датасета"], - "Dataset column delete failed.": ["Не удалось удалить столбец датасета"], - "Dataset column not found.": ["Столбец датасета не найден"], - "Dataset could not be created.": ["Не удалось создать датасет"], - "Dataset could not be deleted.": ["Не удалось удалить датасет"], - "Dataset could not be duplicated.": ["Датасет не может быть дублирован."], - "Dataset could not be updated.": ["Не удалось обновить датасет"], - "Dataset does not exist": ["Датасет не существует"], - "Dataset imported": ["Импортирован датасет"], - "Dataset is required": ["Требуется датасет"], - "Dataset metric delete failed.": ["Не удалось удалить меру датасета."], - "Dataset metric not found.": ["Мера датасета не найдена."], - "Dataset name": ["Имя датасета"], - "Dataset parameters are invalid.": ["Параметры датасета неверны."], - "Dataset schema is invalid, caused by: %(error)s": [ - "Схема датасета невалидна, причина: %(error)s" - ], - "Dataset(s) could not be bulk deleted.": [ - "Датасет(ы) не могут быть массово удалены." + "Write dataframe index as a column": [ + "Сделать индекс датафрейма столбцом." ], - "Datasets": ["Датасеты"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "Датасеты могут быть созданы из таблиц базы данных или SQL запросов. Выберите таблицу из базы данных слева или " + "Column Label(s)": ["Метка(и) столбца(ов)"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Метка для индексного(ых) столбца(ов). Если не задано и задан индекс датафрейма, будут использованы имена индексов." ], - "Datasets do not contain a temporal column": [ - "Датасет не содержит столбца формата дата/время" + "Columns To Read": ["Столбцы для чтения"], + "Json list of the column names that should be read": [ + "Список столбцов в формате JSON из файла, которые будут использованы." ], - "Datasource": ["Источник данных"], - "Datasource & Chart Type": ["Источник данных и Тип графика"], - "Datasource does not exist": ["Источник данных не существует"], - "Datasource type is invalid": ["Тип источниках данных неверный"], - "Datasource type is required when datasource_id is given": [ - "Тип источника данных обязателен, когда дан идентификатор источника данных (datasource_id)" + "Overwrite Duplicate Columns": ["Перезаписать повторяющиеся столбцы"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Если повторяющиеся столбцы не перезаписываются, они будут представлены в формате \"X.0, X.1\"." ], - "Date Time Format": ["Формат даты и времени"], - "Date filter": ["Временной фильтр"], - "Date format": ["Форматы даты"], - "Date format string": ["Формат временной строки"], - "Date/Time": ["Дата/Время"], - "Datetime Format": ["Формат даты и времени"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "Столбец даты/времени не предусмотрен в настройках таблицы и является обязательным для этого типа графика" + "Header Row": ["Строка заголовка"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Строка, содержащая заголовки для использования в качестве имен столбцов (0, если первая строка в данных). Оставьте пустым, если заголовки отсутствуют" ], - "Datetime format": ["Формат даты/времени"], - "Day": ["День"], - "Day (freq=D)": ["День (част=D)"], - "Days %s": ["Дней %s"], - "Db engine did not return all queried columns": [ - "драйвер базы данных вернул не все запрошенные столбцы" + "Rows to Read": ["Строки для чтения"], + "Number of rows of file to read": ["Количество строк файла для чтения"], + "Skip Rows": ["Пропуск строк"], + "Number of rows to skip at start of file": [ + "Количество строк для пропуска в начале файла" ], - "Deactivate": ["Выключить"], - "December": ["Декабрь"], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": ["Десятичный разделитель"], - "Deck.gl - 3D Grid": ["Deck.gl - 3D сетка"], - "Deck.gl - Arc": ["Deck.gl - Дуга"], - "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], - "Deck.gl - Multiple Layers": ["Deck.gl - Многослойный"], - "Deck.gl - Polygon": ["Deck.gl - Полигон"], - "Deck.gl - Scatter plot": ["Deck.gl - Точечная диаграмма"], - "Default": ["По умолчанию"], - "Default Endpoint": ["Эндпоинт по умолчанию"], - "Default URL": ["URL по умолчанию"], - "Default URL to redirect to when accessing from the dataset list page": [ - "URL по умолчанию, на который будет выполнен редирект при доступе из страницы со списком датасетов" + "Name of table to be created from excel data.": [ + "Имя таблицы, созданной из Excel файла." ], - "Default Value": ["Значение по умолчанию"], - "Default datetime": ["Дата и время по умолчанию"], - "Default latitude": ["Широта по умолчанию"], - "Default longitude": ["Долгота по умолчанию"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "Минимальная ширина столбца (в пикселях). Реальная ширина по-прежнему может быть больше, чем указанная, если остальным столбцам не будет хватать места." + "Excel File": ["Excel Файл"], + "Select a Excel file to be uploaded to a database.": [ + "Выберите Excel файл для загрузки в базу данных" ], - "Default value is required": ["Требуется значение по умолчанию"], - "Default value must be set when \"Filter has default value\" is checked": [ - "Значение по умолчанию должно быть выбрано, когда установлен флаг \"Фильтр имеет значение по умолчанию\"" + "Sheet Name": ["Имя листа"], + "Strings used for sheet names (default is the first sheet).": [ + "Имя листа (по умолчанию первый лист)" ], - "Default value must be set when \"Filter value is required\" is checked": [ - "Значение по умолчанию должно быть выбрано, когда установлен флаг \"Требуется значение фильтра\"" + "Specify a schema (if database flavor supports this).": [ + "Укажите схему (если она поддерживается базой данных)." ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ - "Значение по умолчанию задается автоматически, когда установлен флаг \"Сделать первое значение фильтра значением по умолчанию\"" + "Table Exists": ["Таблица существует"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Если таблица уже существует, выберите действие: Ошибка (ничего не делать), Заменить (удалить и воссоздать таблицу) или Добавить (вставить данные)." ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "Задайте функцию, которая получает на вход содержимое всплывающей подсказки" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Строка, содержащая заголовки для использования в качестве имен столбцов (0, если первая строка в данных). Оставьте пустым, если заголовки отсутствуют." ], - "Define a function that returns a URL to navigate to when user clicks": [ - "Задайте функцию, которая возвращает URL для навигации при пользовательском нажатии" + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Столбец для использования в качестве метки для строки датафрейма. Оставьте пустым, если индексный столбец отсутствует." ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "Определите функцию javascript, которая получает массив данных, используемый в визуализации, и, как ожидается, вернет измененную версию этого массива. Это может быть использовано для изменения свойств данных, фильтрации или расширения массива." + "Number of rows to skip at start of file.": [ + "Количество строк для пропуска в начале файла." ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Определяет функцию скользящего окна для применения, работает вместе с текстовым полем [Периоды]" + "Number of rows of file to read.": ["Количество строк файла для чтения."], + "Parse Dates": ["Парсинг дат"], + "A comma separated list of columns that should be parsed as dates.": [ + "Разделённый запятыми список столбцов, которые должны быть интерпретированы как даты." ], - "Defines how each series is broken down": [ - "Определяет разложение каждой категории" + "Character to interpret as decimal point.": [ + "Символ десятичного разделителя" ], - "Defines the grid size in pixels": [ - "Определяет размер сетки (в пикселях)" + "Write dataframe index as a column.": [ + "Сделать индекс датафрейма столбцом." ], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Группировка в ряды данных. Каждая категория отображается в виде определенного цвета на графике и имеет легенду" + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Метка для индексного(ых) столбца(ов). Если не задано и задан индекс датафрейма, будут использованы имена индексов." ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Определяет размер функции скользящего окна относительно выбранной детализации по времени" + "Null values": ["Пустые значения"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Список JSON значений, которые следует рассматривать как нулевые. Примеры: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Предупреждение: База данных Hive поддерживает только одно значение. Используйте [\"\"] для пустой строки." ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "Определяет, должен ли шаг отображаться в начале, середине или конце между двумя точками данных" + "Name of table to be created from columnar data.": [ + "Имя таблицы, созданной из файла столбчатого формата." ], - "Delete": ["Удалить"], - "Delete %s?": ["Удалить %s?"], - "Delete Annotation?": ["Удалить аннотацию?"], - "Delete Database?": ["Удалить базу данных?"], - "Delete Dataset?": ["Удалить датасет?"], - "Delete Layer?": ["Удалить слой?"], - "Delete Query?": ["Удалить запрос?"], - "Delete Report?": ["Удалить рассылку?"], - "Delete Template?": ["Удалить шаблон?"], - "Delete all Really?": ["Действительно удалить все?"], - "Delete annotation": ["Удалить аннотацию"], - "Delete dashboard tab?": ["Удалить вкладку дашборда?"], - "Delete database": ["Удалить базу данных"], - "Delete email report": ["Удалить рассылку по email"], - "Delete query": ["Удалить запрос"], - "Delete template": ["Удалить шаблон"], - "Delete this container and save to remove this message.": [ - "Удалите этот контейнер и сохраните изменения, чтобы убрать это сообщение." + "Columnar File": ["Файл столбчатого формата"], + "Select a Columnar file to be uploaded to a database.": [ + "Выберите файл столбчатого формата, который будет загружен в базу данных." ], - "Deleted %(num)d annotation": [ - "Удалалена %(num)d аннотация", - "Удалалены %(num)d аннотации", - "Удалалено %(num)d аннотаций" + "Use Columns": ["Используемые столбцы"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Список столбцов в формате JSON из файла, которые будут использованы. Пример: [\"id\", \"name\", \"gender\", \"age\"]. Если в данном поле указаны названия столбцов, из файла будут загружены только указанные столбцы." ], - "Deleted %(num)d annotation layer": [ - "Удалален %(num)d слой аннотаций", - "Удалалены %(num)d слоя аннотаций", - "Удалалено %(num)d слоев аннотаций" + "Databases": ["Базы данных"], + "Show Database": ["Показать базу данных"], + "Add Database": ["Добавить базу данных"], + "Edit Database": ["Редактировать Базу Данных"], + "Expose this DB in SQL Lab": [ + "Предоставить доступ к базе в Лаборатории SQL" ], - "Deleted %(num)d chart": [ - "Удален %(num)d график", - "Удалены %(num)d графика", - "Удалено %(num)d графиков" + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Работа с базой данных в асинхронном режиме означает, что запросы исполняются на удалённых воркерах, а не на веб-сервере Superset. Это подразумевает, что у вас есть установка с воркерами Celery. Обратитесь к документации по настройке за дополнительной информацией." ], - "Deleted %(num)d css template": [ - "Удален %(num)d CSS шаблон", - "Удалены %(num)d CSS шаблона", - "Удалено %(num)d CSS шаблонов" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Разрешить CREATE TABLE AS в Лаборатории SQL" ], - "Deleted %(num)d dashboard": [ - "Удален %(num)d дашборд", - "Удалены %(num)d дашборда", - "Удалено %(num)d дашбордов" + "Allow CREATE VIEW AS option in SQL Lab": [ + "Разрешить CREATE VIEW AS в Лаборатории SQL" ], - "Deleted %(num)d dataset": [ - "Удален %(num)d датасет", - "Удалены %(num)d датасета", - "Удалено %(num)d датасетов" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Разрешить управление базой данных, используя запросы UPDATE, DELETE, CREATE и т.п. в Лаборатории SQL" ], - "Deleted %(num)d report schedule": [ - "Удалено %(num)d расписание рассылок", - "Удалены %(num)d расписания рассылок", - "Удалено %(num)d расписаний рассылок" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "При включении опции CREATE TABLE AS в Лаборатории SQL, новые таблицы будут добавлены в эту схему" ], - "Deleted %(num)d saved query": [ - "Удален %(num)d сохраненный запрос", - "Удалены %(num)d сохраненных запроса", - "Удалено %(num)d сохраненных запросов" + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Если вы используете Presto, все запросы в Лаборатории SQL будут выполняться от авторизованного пользователя, который должен иметь разрешение на их выполнение.
Если включены Hive и hive.server2.enable.doAs, то запросы будут выполняться через техническую учетную запись, но имперсонировать зарегистрированного пользователя можно через свойство hive.server2.proxy.user." ], - "Deleted: %s": ["Удалено: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "Удаление вкладки удалит все ее содержимое. Вы можете отменить это действие при помощи сочетания клавиш" - ], - "Delimited long & lat single column": [ - "Долгота и широта в одном столбце" - ], - "Delimiter": ["Разделитель"], - "Delivery method": ["Способ оповещения"], - "Demographics": ["Демография"], - "Density": ["Концентрация"], - "Dependent on": ["Зависит от"], - "Deprecated": ["Устарело"], - "Description": ["Описание"], - "Description (this can be seen in the list)": [ - "Описание (будет видно в списке)" - ], - "Description Columns": ["Описательные столбцы"], - "Description text that shows up below your Big Number": [ - "Описание, отображаемое под Карточкой" - ], - "Deselect all": ["Снять выделение"], - "Details of the certification": ["Детали утверждения"], - "Determines how whiskers and outliers are calculated.": [ - "Определяет формулу расчета \"усов\" и выбросов." - ], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Определяет, виден ли этот дашборд в списке всех дашбордов" + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Продолжительность (в секундах) таймаута кэша для графиков этой базы данных. Таймаут 0 означает, что кэш никогда не очистится. Обратите внимание, что если значение не задано, применяется значение по умолчанию из основной конфигурации." ], - "Diamond": ["Ромб"], - "Did you mean:": ["Возможно вы имели в виду:"], - "Difference": ["Разница"], - "Dim Gray": ["Тускло-серый"], - "Dimension": ["Измерение"], - "Dimension to use on x-axis.": ["Измерение для использования на оси X"], - "Dimension to use on y-axis.": ["Измерение для использования на оси Y"], - "Dimensions": ["Измерения"], - "Directed Force Layout": [""], - "Directional": ["Направленный"], - "Disable SQL Lab data preview queries": [ - "Отключить предпросмотр данных в Лаборатории SQL" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Если установлено, выберите схемы, в которые разрешена загрузка CSV на вкладке \"Дополнительно\"." ], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "Отключить предварительный просмотр данных при извлечении метаданных таблицы в SQL Lab. Полезно для избежания проблем с производительностью браузера при использовании баз данных с очень широкими таблицами." + "Expose in SQL Lab": ["Доступен в SQL редакторе"], + "Allow CREATE TABLE AS": ["Разрешить CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Разрешить CREATE VIEW AS"], + "Allow DML": ["Разрешить DML"], + "CTAS Schema": ["Схема CTAS"], + "SQLAlchemy URI": ["SQLAlchemy URI"], + "Chart Cache Timeout": ["Время жизни кэша графика"], + "Secure Extra": ["Доп. безопасность"], + "Root certificate": ["Корневой сертификат"], + "Async Execution": ["Асинхронное выполнение"], + "Impersonate the logged on user": ["Имперсонировать пользователя"], + "Allow Csv Upload": ["Разрешить загрузку CSV"], + "Backend": ["Драйвер"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Дополнительное поле не может быть декодировано с помощью JSON. %(msg)s" ], - "Disable embedding?": ["Выключить встраивание?"], - "Disabled": ["Отключено"], - "Discard": ["Отменить изменения"], - "Discrete": ["Обособленный"], - "Display Name": ["Отображаемое имя"], - "Display column level total": ["Отображать общий итог по столбцу"], - "Display configuration": ["Настройки отображения"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ - "Отображать меры рядом в каждом столбце, в отличие от отображения каждого столбца рядом для каждой меры." + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Недопустимая строка для подключения, валидная строка соответствует шаблону:'ДРАЙВЕР://ИМЯ-ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ-БАЗЫ-ДАННЫХ'

Пример:'postgresql://user:password@postgres-db/database'

" ], - "Display row level total": ["Отображать общий итог по строке"], - "Display settings": ["Настройки отображения"], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ - "" + "CSV to Database configuration": [ + "Конфигурация CSV файла для импорта в базу данных" ], - "Distribution": ["Распределение"], - "Distribution - Bar Chart": ["Распределение - Столбчатая диаграмма"], - "Divider": ["Разделитель"], - "Do you want a donut or a pie?": ["Круговая/кольцевая диаграмма"], - "Documentation": ["Документация"], - "Domain": ["Блок"], - "Donut": ["Кольцевая диаграмма"], - "Dotted": ["Пунктир"], - "Download": ["Сохранить"], - "Download as image": ["Сохранить как изображение"], - "Download to CSV": ["Сохранить в CSV"], - "Draft": ["Черновик"], - "Drag and drop components and charts to the dashboard": [ - "Переместите элементы оформления и графики на дашборд" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не предназначена для загрузки CSV файлов. Пожалуйста, свяжитесь с администратором." ], - "Drag and drop components to this tab": [ - "Переместите элементы оформления и графики в эту вкладку" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Не удалось загрузить CSV файл \"%(filename)s\" в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" ], - "Draw a marker on data points. Only applicable for line types.": [ - "Отобразить маркеры на данных. Применимо только для линий." + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "CSV файл \"%(csv_filename)s\" загружен в таблицу \"%(table_name)s\" в базе данных \"%(db_name)s\"" ], - "Draw area under curves. Only applicable for line types.": [ - "Отобразить область под кривыми. Применимо только для линий\"" + "Excel to Database configuration": [ + "Конфигурация Excel файла для импорта в базу данных" ], - "Draw line from Pie to label when labels outside?": [ - "Проводит линию от диаграммы к метке, когда метки находятся снаружи" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не предназначена для загрузки Excel файлов. Пожалуйста, свяжитесь с администратором." ], - "Draw split lines for minor axis ticks": [ - "Рисует разделительные линии для небольших отметок оси" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Не удалось загрузить Excel файл \"%(filename)s\" в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" ], - "Draw split lines for minor y-axis ticks": [ - "Рисует разделительные линии для небольших отметок оси Y" + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Excel файл \"%(excel_filename)s\" загружен в таблицу \"%(table_name)s\" в базе данных \"%(db_name)s\"" ], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ - "" + "Columnar to Database configuration": [ + "Конфигурация столбчатого файла для импорта в базу данных" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "" + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Несколько расширений файлов столбчатого формата не разрешены к загрузке. Пожалуйста, убедитесь, что все файлы имеют одинаковое расширение." ], - "Drill to detail: %s": [""], - "Drop a column here or click": [ - "Перетащите столбец сюда", - "Перетащите столбцы сюда", - "Перетащите столбцы сюда" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не предназначена для загрузки файлов столбчатого формата. Пожалуйста, свяжитесь с администратором." ], - "Drop a column/metric here or click": [ - "Перетащите столбец/меру сюда", - "Перетащите столбцы/меры сюда", - "Перетащите столбцы/меры сюда" + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Не удалось загрузить файл столбчатого типа \"%(filename)s\" в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" ], - "Drop a temporal column here or click": [ - "Перетащите столбец формата дата/время сюда" + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Файл столбчатого формата \"%(columnar_filename)s\" загружен в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\"" ], - "Drop columns/metrics here or click": ["Перетащите столбцы/меры сюда"], - "Duplicate": ["Дублировать"], + "Request missing data field.": ["В запросе отсутствует поле с данными."], "Duplicate column name(s): %(columns)s": [ "Повторяющееся имя столбца(ов): %(columns)s" ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "Повторяющиеся метки столбцов/мер: %(labels)s. Пожалуйста, убедитесь, что все столбцы и меры имеют уникальную метку." - ], - "Duplicate dataset": ["Дублировать датасет"], - "Duplicate tab": ["Дублировать вкладку"], - "Duration": ["Продолжительность"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "Продолжительность (в секундах) таймаута кэша для графиков этой базы данных. Таймаут 0 означает, что кэш никогда не очистится. Обратите внимание, что если значение не задано, применяется значение по умолчанию из основной конфигурации." + "Logs": ["Записи"], + "Show Log": ["Показать запись"], + "Add Log": ["Добавить запись"], + "Edit Log": ["Редактировать запись"], + "User": ["Пользователь"], + "Action": ["Действие"], + "dttm": ["Дата/время"], + "JSON": ["JSON"], + "Time Range": ["Временной интервал"], + "Time Column": ["Столбец даты/времени"], + "Time Grain": ["Единица времени"], + "Time Granularity": ["Гранулярность времени"], + "Time": ["Время"], + "A reference to the [Time] configuration, taking granularity into account": [ + "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Продолжительность (в секундах) таймаута кэша для этого графикаОбратите внимание, что если значение не задано, применяется значение источника данных/таблицы." + "Aggregate": ["Агрегация"], + "Raw records": ["Сырые записи"], + "Certified by %s": ["Утверждено: %s"], + "description": ["описание"], + "bolt": [""], + "Changing this control takes effect instantly": [ + "Изменение этого элемента применяется сразу" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "Продолжительность (в секундах) таймаута кэша для этой таблицы. Обратите внимание, что если значение не задано, применяется значение базы данных." + "Show info tooltip": ["Показать информационную подсказку"], + "SQL expression": ["Выражение SQL"], + "Column name": ["Имя столбца"], + "Label": ["Метка"], + "Metric name": ["Имя меры"], + "unknown type icon": [""], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": ["Расширенная аналитика"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "В этом разделе содержатся параметры, которые позволяют производить аналитическую постобработку результатов запроса" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Продолжительность (в секундах) таймаута кэша для схем этой базы данных. Обратите внимание, что если значение не задано, кэш никогда не очистится." + "Rolling window": ["Скользящее окно"], + "Rolling function": ["Скользящая средняя"], + "None": ["Пусто"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Определяет функцию скользящего окна для применения, работает вместе с текстовым полем [Периоды]" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "Продолжительность (в секундах) таймаута кэша для таблиц этой базы данных. Обратите внимание, что если значение не задано, кэш никогда не очистится." + "Periods": ["Периоды"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Определяет размер функции скользящего окна относительно выбранной детализации по времени" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)" + "Min periods": ["Минимальный период"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Минимальное количество скользящих периодов, необходимое для отображения значения. Например, если вы делаете накопительную сумму за 7 дней, вы можете указать, чтобы \"Минимальный период\" был равен 7, так что все показанные точки данных представляют собой общее количество 7 периодов." ], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ - "Продолжительность в мс (100.40008 => 100ms 400µs 80ns)" + "Time comparison": ["Столбец с датой"], + "Time shift": ["Временной сдвиг"], + "1 day ago": ["1 день назад"], + "1 week ago": ["1 неделя назад"], + "28 days ago": ["28 дней назад"], + "30 days ago": ["30 дней назад"], + "52 weeks ago": ["52 недели назад"], + "1 year ago": ["1 год назад"], + "104 weeks ago": ["104 недели назад"], + "2 years ago": ["2 года назад"], + "156 weeks ago": ["156 недель назад"], + "3 years ago": ["3 года назад"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Наложение одной или нескольких временных рядов из относительного периода времени." ], - "Duration in ms (66000 => 1m 6s)": [ - "Продолжительность в мс (66000 => 1m 6s)" + "Calculation type": ["Тип расчёта"], + "Actual values": ["Фактические значения"], + "Difference": ["Разница"], + "Percentage change": ["Процентное изменение"], + "Ratio": ["Отношение"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Как отображать смещения во времени: как отдельные линии; как абсолютную разницу между основным временным рядом и каждым смещением; как процентное изменение; или как соотношение между рядами и смещениями." ], - "Duration: %s": ["Продолжительность: %s"], - "Dynamic Aggregation Function": ["Динамическая агрегирующая функция"], - "Dynamically search all filter values": [ - "Динамически искать все значения фильтра" + "Resample": ["Ресемплирование (изменение частоты данных)"], + "Rule": ["Правило"], + "1 minutely frequency": ["Минутная частота"], + "1 hourly frequency": ["Часовая частота"], + "1 calendar day frequency": ["Дневная частота"], + "7 calendar day frequency": ["Недельная частота"], + "1 month start frequency": ["Месячная частота (начало месяца)"], + "1 month end frequency": ["Месячная частота (конец месяца)"], + "1 year start frequency": ["Годовая частота (начало года)"], + "1 year end frequency": ["Годовая частота (конец года)"], + "Pandas resample rule": [ + "Правило ресемплирования данных библиотеки Pandas" ], - "ECharts": ["Графики Apache"], - "END (EXCLUSIVE)": ["КОНЕЦ (НЕ ВКЛЮЧИТЕЛЬНО)"], - "ERROR": ["ОШИБКА"], - "ERROR: %s": ["ОШИБКА: %s"], - "Edge length": ["Длина ребер"], - "Edge length between nodes": ["Длина ребер между вершинами"], - "Edge symbols": ["Оформление ребер"], - "Edge width": ["Толщина ребра"], - "Edit": ["Редактировать"], - "Edit Alert": ["Редактировать оповещение"], - "Edit CSS": ["Редактировать CSS"], - "Edit CSS Template": ["Редактировать CSS шаблон"], - "Edit CSS template properties": ["Редактировать свойств CSS шаблона"], - "Edit Chart": ["Редактировать график"], - "Edit Chart Properties": ["Редактировать свойства графика"], - "Edit Column": ["Редактировать столбец"], - "Edit Dashboard": ["Редактировать дашборд"], - "Edit Database": ["Редактировать Базу Данных"], - "Edit Dataset ": ["Редактировать датасет "], - "Edit Log": ["Редактировать запись"], - "Edit Metric": ["Редактировать меру"], - "Edit Plugin": ["Редактировать плагин"], - "Edit Report": ["Редактировать отчет"], - "Edit Saved Query": ["Редактировать сохраненный запрос"], - "Edit Table": ["Редактировать таблицу"], - "Edit annotation": ["Редактировать аннотацию"], - "Edit annotation layer": ["Редактировать слой аннотации"], - "Edit annotation layer properties": [ - "Редактировать свойства слоя аннотаций" + "Fill method": ["Метод заполнения пропусков"], + "Null imputation": ["Пустые значения"], + "Zero imputation": ["Нулевые значения"], + "Linear interpolation": ["Линейная интерполяция"], + "Forward values": ["Будущие значения"], + "Backward values": ["Предыдущие значения"], + "Median values": ["Медианные значения"], + "Mean values": ["Средние значения"], + "Sum values": ["Суммарные значения"], + "Pandas resample method": [ + "Метод ресемплирования данных библиотеки Pandas" ], - "Edit chart": ["Редактировать график"], - "Edit chart properties": ["Редактировать свойства графика"], - "Edit dashboard": ["Редактировать дашборд"], - "Edit database": ["Редактировать Базу Данных"], - "Edit dataset": ["Редактировать датасет"], - "Edit email report": ["Редактировать рассылку"], - "Edit properties": ["Редактировать свойства"], - "Edit query": ["Редактировать запрос"], - "Edit template": ["Редактировать шаблон"], - "Edit template parameters": [ - "Редактировать параметры шаблонизации Jinja" + "Annotations and Layers": ["Аннотации и слои"], + "Left": ["Слева"], + "Top": ["Сверху"], + "Chart Title": ["Название графика"], + "X Axis": ["Ось X"], + "X Axis Title": ["Название оси X"], + "X AXIS TITLE BOTTOM MARGIN": ["Отступ снизу названия оси X"], + "Y Axis": ["Ось Y"], + "Y Axis Title": ["Название оси Y"], + "Y Axis Title Margin": [""], + "Query": ["Запрос"], + "Predictive Analytics": ["Предиктивная аналитика"], + "Enable forecast": ["Включить прогноз в график"], + "Enable forecasting": ["Включить прогнозирование данных"], + "Forecast periods": ["Кол-во прогнозных периодов"], + "How many periods into the future do we want to predict": [ + "На сколько периодов в будущем предсказывать" ], - "Edit the dashboard": ["Редактировать дашборд"], - "Edit time range": ["Изменить временной интервал"], - "Edited": ["Редактировано"], - "Editing 1 filter:": ["Редактирование 1 фильтра:"], - "Editing filter set:": ["Редактирование набора фильтров:"], - "Either the database is spelled incorrectly or does not exist.": [ - "Неверное или несуществующее имя базы данных." + "Confidence interval": ["Доверительный интервал"], + "Width of the confidence interval. Should be between 0 and 1": [ + "Ширина доверительного интервала. Должна быть между 0 и 1" ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "Неверное имя пользователя \"%(username)s\" или пароль." + "Yearly seasonality": ["Годовая сезонность"], + "default": ["по умолчанию"], + "Yes": ["Да"], + "No": ["Нет"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Применяется годовая сезонность. Целочисленное значение будет указывать порядок сезонности Фурье." ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "Неверное имя пользователя \"%(username)s\", пароль или имя базы данных \"%(database)s\"." + "Weekly seasonality": ["Недельная сезонность"], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Применяется недельная сезонность. Целочисленное значение будет указывать порядок сезонности Фурье." ], - "Either the username or the password is wrong.": [ - "Неверное имя пользователя или пароль" + "Daily seasonality": ["Дневная сезонность"], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Применяется дневная сезонность. Целочисленное значение будет указывать порядок сезонности Фурье." ], - "Email reports active": ["Включить рассылки"], - "Embed": ["Встроить"], - "Embed code": ["Встроенный код"], - "Embed dashboard": ["Встроить дашборд"], - "Embedding deactivated.": ["Встраивание отключено"], - "Emphasis": ["Акцент"], - "Employment and education": ["Трудоустройство и образование"], - "Empty circle": ["Пустой круг"], - "Empty collection": ["Пустая коллекция"], - "Empty query result": ["Пустой ответ запроса"], - "Empty query?": ["Пустой запрос?"], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ - "Включите \"Разрешить загрузку файлов в базу данных\" в настройках любой базы данных" + "Time related form attributes": ["Параметры, связанные со временем"], + "Datasource & Chart Type": ["Источник данных и Тип графика"], + "Chart ID": ["ID графика"], + "The id of the active chart": ["Идентификатор активного графика"], + "Cache Timeout (seconds)": ["Время жизни кэша (секунды)"], + "The number of seconds before expiring the cache": [ + "Количество секунд до истечения срока действия кэша" ], - "Enable data zooming controls": [ - "Включить элементы управления масштабированием данных" + "URL Parameters": ["Параметры URL"], + "Extra url parameters for use in Jinja templated queries": [ + "Дополнительные url параметры для запросов, использующих шаблонизацию Jinja" ], - "Enable embedding": ["Разрешить встраивание"], - "Enable forecast": ["Включить прогноз в график"], - "Enable forecasting": ["Включить прогнозирование данных"], - "Enable graph roaming": ["Включить перемещение по графику"], - "Enable node dragging": ["Разрешить перемещение вершин"], - "Enable query cost estimation": ["Разрешить оценку стоимости запроса"], - "Enable server side pagination of results (experimental feature)": [ - "Включить серверную пагинацию результатов (экспериментально)" + "Extra Parameters": ["Доп. параметры"], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Дополнительные параметры для шаблонизации Jinja, которые могут быть использованы в графиках" ], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Color Scheme": ["Цветовая схема"], + "Contribution Mode": ["Режим относительных значений"], + "Row": ["Строка"], + "Series": ["Ряд"], + "Calculate contribution per series or row": [ + "Вычислить вклад в общую сумму (долю) по категории или строке. Установливает формат показателя в проценты" + ], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "X-Axis Sort Ascending": ["Сортировать по возрастанию оси X"], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions": ["Измерения"], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "End": ["Конец"], - "End (Longitude, Latitude): ": ["Конец (Долгота, Широта)"], - "End Longitude & Latitude": ["Конечные Долгота и Широта"], - "End Time": ["Время окончания"], - "End angle": ["Конечный угол"], - "End date excluded from time range": [ - "Конечная дата исключена из временного интервала" + "Dimension": ["Измерение"], + "Entity": ["Элемент"], + "This defines the element to be plotted on the chart": [ + "Элемент, который будет отражен на графике" ], - "End date must be after start date": [ - "Конечная дата должна быть после начальной" + "Filters": ["Фильтры"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "Не удается настроить драйвер \"%(engine)s\" при данных параметрах." + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Engine Parameters": ["Параметры драйвера"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Right Axis Metric": ["Мера для правой оси"], + "Sort by": ["Сортировка"], + "Bubble Size": ["Размер пузыря"], + "Metric used to calculate bubble size": [ + "Мера, используемая для расчета размера пузыря" + ], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "Enter CA_BUNDLE": ["Введите CA_BUNDLE"], - "Enter Primary Credentials": ["Введите основные учетные данные"], - "Enter a delimiter for this data": ["Введите разделитель этих данных"], - "Enter a name for this sheet": ["Введите название для этого листа"], - "Enter a new title for the tab": ["Введите новое название для вкладки"], - "Enter duration in seconds": ["Введите время в секундах"], - "Enter fullscreen": ["Полноэкранный режим"], - "Enter the required %(dbModelName)s credentials": [ - "Введите обязательные данные для %(dbModelName)s" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "Entity": ["Элемент"], - "Entity ID": ["ID элемента"], - "Equal Date Sizes": ["Одинаковые размеры дат"], - "Equal to (=)": [""], - "Error": ["Ошибка"], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Ошибка в jinja выражении в операторе HAVING: %(msg)s" + "Color Metric": ["Цвет меры"], + "A metric to use for color": [ + "Показатель, используемый для расчета цвета" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Ошибка в jinja выражении в RLS фильтрах: %(msg)s" + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Столбец данных формата дата/время. Вы можете определить произвольное выражение, которое будет возвращать столбец даты/времени в таблице. Фильтр ниже будет применён к этому столбцу или выражению" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Ошибка в jinja выражении в операторе WHERE: %(msg)s" + "Drop a temporal column here or click": [ + "Перетащите столбец формата дата/время сюда" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Ошибка в jinja выражении в предикате выборки значений: %(msg)s" + "Y-axis": ["Ось Y"], + "Dimension to use on y-axis.": ["Измерение для использования на оси Y"], + "X-axis": ["Ось X"], + "Dimension to use on x-axis.": ["Измерение для использования на оси X"], + "The type of visualization to display": [ + "Выберите необходимый тип визуализации" ], - "Error loading chart datasources. Filters may not work correctly.": [ - "Ошибка загрузки источников данных для графиков. Фильтры могут работать некорректно." + "Fixed Color": ["Фиксированный цвет"], + "Use this to define a static color for all circles": [ + "Этот цвет используется для заливки" ], - "Error message": ["Сообщение об ошибке"], - "Error while fetching charts": ["Возникла ошибка при получении графиков"], - "Error while fetching data: %s": [ - "Возникла ошибка при получении данных: %s" + "Linear Color Scheme": ["Линейная цветовая схема"], + "all": ["Все"], + "5 seconds": ["5 секунд"], + "30 seconds": ["30 секунд"], + "1 minute": ["1 минута"], + "5 minutes": ["5 минут"], + "30 minutes": ["30 минут"], + "1 hour": ["1 час"], + "1 day": ["1 день"], + "7 days": ["7 дней"], + "week": ["неделя"], + "week starting Sunday": ["неделя, начинающаяся в воскресенье"], + "week ending Saturday": ["неделя, заканчивающаяся в субботу"], + "month": ["месяц"], + "quarter": ["Квартал"], + "year": ["год"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Интервал времени, в границах которого строится график. Обратите внимание, что для определения диапазона времени, вы можете использовать естественный язык. Например, можно указать словосочетания - «10 seconds», «1 day» или «56 weeks»" ], - "Error while rendering virtual dataset query: %(msg)s": [ - "Произошла ошибка при выполнении запроса виртуального датасета: %(msg)s" + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ + "" ], - "Error: %(error)s": ["Ошибка: %(error)s"], - "Error: %(msg)s": ["Ошибка: %(msg)s"], - "Error: permalink state not found": [""], - "Estimate cost": ["Оценить стоимость запроса"], - "Estimate selected query cost": ["Оценить стоимость выбранного запроса"], - "Estimate the cost before running a query": [ - "Спрогнозировать стоимость до выполнения запроса" + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "" ], - "Event": ["Событие"], - "Event Names": ["Имена событий"], - "Event definition": ["Определение события"], - "Event time column": ["Столбец формата дата/время"], - "Every": ["Каждый(ая)"], - "Evolution": ["Динамика"], - "Exact": ["Точное"], - "Example": ["Пример"], - "Examples": ["Примеры"], - "Excel File": ["Excel Файл"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Excel файл \"%(excel_filename)s\" загружен в таблицу \"%(table_name)s\" в базе данных \"%(db_name)s\"" + "Row limit": ["Лимит строк"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Excel to Database configuration": [ - "Конфигурация Excel файла для импорта в базу данных" + "Sort Descending": ["Сортировать по убыванию"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "" ], - "Exclude selected values": ["Исключить выбранные значения"], - "Executed SQL": ["Исполненный SQL"], - "Executed query": ["Выполненный запрос"], - "Execution ID": ["ID исполнения"], - "Execution log": ["Журнал Действий"], - "Existing dataset": ["Существующий датасет"], - "Exit fullscreen": ["Выйти из полноэкранного режима"], - "Expand": ["Расширить"], - "Expand all": ["Расширить все"], - "Expand data panel": ["Расширить панель данных"], - "Expand row": ["Развернуть строку"], - "Expand table preview": ["Расширить предпросмотр таблицы"], - "Expand tool bar": ["Показать панель инструментов"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "Формула с зависимой переменной 'x' в милисекундах с 1970 года (Unix-время). Для рассчета используется mathjs. Например: '2x+5'" + "Series limit": ["Лимит кол-ва категорий"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Ограничивает количество отображаемых категорий. Эта опция полезна для столбцов с большим количеством уникальных значений, т.к. уменьшает сложность и стоимость запроса." ], - "Experimental": ["Экспериментальный"], - "Explore": ["Исследовать"], - "Explore - %(table)s": ["Исследовать - %(table)s"], - "Explore the result set in the data exploration view": [ - "Создать новый график на основе этих данных" + "Y Axis Format": ["Формат Оси Y"], + "Time format": ["Формат даты/времени"], + "The color scheme for rendering chart": [ + "Цветовая схема, применяемая для раскрашивания графика" ], - "Export": ["Экспортировать"], - "Export dashboards?": ["Экспортировать дашборды?"], - "Export query": ["Экспорт запроса"], - "Export to .CSV": ["Экспорт в .CSV"], - "Export to .JSON": ["Экспорт в .JSON"], - "Export to YAML": ["Экспорт в YAML"], - "Export to YAML?": ["Экспортировать в YAML?"], - "Export to full .CSV": ["Экспорт в целый .CSV"], - "Export to original .CSV": ["Экспорт исходных данных в .CSV"], - "Export to pivoted .CSV": ["Экспорт сводной таблицы в .CSV"], - "Expose database in SQL Lab": [ - "Предоставить доступ к базе в Лаборатории SQL" + "Truncate Metric": ["Убрать имя меры"], + "Whether to truncate metrics": [ + "Убирает меру (например, AVG(...)) с легенды рядом с именем измерения и из таблицы результатов" ], - "Expose in SQL Lab": ["Доступен в SQL редакторе"], - "Expose this DB in SQL Lab": [ - "Предоставить доступ к базе в Лаборатории SQL" + "Show empty columns": ["Показывать пустые столбцы"], + "D3 format syntax: https://github.com/d3/d3-format": [ + "Формат D3: https://github.com/d3/d3-format." ], - "Expression": ["Выражение"], - "Extra": ["Дополнительные параметры"], - "Extra Controls": ["Дополнительные элементы управления"], - "Extra Parameters": ["Доп. параметры"], - "Extra data for JS": ["Доп. данные для JS"], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "Дополнительные метаданные таблицы. В настоящий момент поддерживается следующий формат: `{ \"certification\": { \"certified_by\": \"Руководитель отдела\", \"details\": \"Эта таблица - источник правды.\" }, \"warning_markdown\": \"Это предупреждение.\" }`." + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": ["Адаптивное форматирование"], + "Original value": ["Исходное значение"], + "Duration in ms (66000 => 1m 6s)": [ + "Продолжительность в мс (66000 => 1m 6s)" ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Дополнительное поле не может быть декодировано с помощью JSON. %(msg)s" + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)" ], - "Extra parameters for use in jinja templated queries": [ - "Дополнительные параметры для запросов, использующих шаблонизацию Jinja" + "D3 time format syntax: https://github.com/d3/d3-time-format": [ + "Формат времени D3: https://github.com/d3/d3-time-format." ], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ - "Дополнительные параметры для шаблонизации Jinja, которые могут быть использованы в графиках" + "Oops! An error occurred!": ["Произошла ошибка!"], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "По этому запросу не было возвращено данных. Если вы ожидали увидеть результаты, убедитесь, что все фильтры настроены правильно и источник данных содержит записи для заданного временного интервала." ], - "Extra url parameters for use in Jinja templated queries": [ - "Дополнительные url параметры для запросов, использующих шаблонизацию Jinja" + "No Results": ["Нет результатов"], + "ERROR": ["ОШИБКА"], + "Found invalid orderby options": [""], + "is expected to be an integer": ["Ожидается целое число"], + "is expected to be a number": ["Ожидается число"], + "Value cannot exceed %s": [""], + "cannot be empty": ["Необходимо заполнить"], + "Domain": ["Блок"], + "hour": ["час"], + "day": ["день"], + "The time unit used for the grouping of blocks": [ + "Единица времени для группировки блоков" ], - "Extruded": [""], - "FEB": ["ФЕВ"], - "FRI": ["ПТ"], - "Factor": [""], - "Factor to multiply the metric by": ["Число, на которое умножается мера"], - "Fail": ["Ошибка"], - "Failed": ["Ошибка"], - "Failed at retrieving results": ["Невозможно выполнить запрос"], - "Failed at stopping query. %s": ["Не удалось остановить запрос. %s"], - "Failed to create report": ["Не удалось создать рассылку"], - "Failed to execute %(query)s": [""], - "Failed to load chart data": ["Не удалось загрузить данные графика"], - "Failed to load chart data.": ["Не удалось загрузить данные графика."], - "Failed to load dimensions for drill by": [""], - "Failed to retrieve advanced type": [ - "Не удалось получить расширенный тип" + "Subdomain": ["Подблок"], + "min": ["Минимум"], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Единица времени для каждого подблока. Должна быть меньшей единицей, чем единица времени блока. Должно быть больше или равно единице времени" ], - "Failed to start remote query on a worker.": [ - "Не удалось запустить удаленный запрос на сервере." + "Chart Options": ["Свойства графика"], + "Cell Size": ["Размер ячейки"], + "The size of the square cell, in pixels": [ + "Размер квадратной ячейки (в пикселях)" ], - "Failed to update report": ["Не удалось обновить отчет"], - "Failed to verify select options: %s": [ - "Ошибка при проверке вариантов выбора: %s" + "Cell Padding": ["Расстояние между ячейками"], + "The distance between cells, in pixels": [ + "Расстояние между ячейками (в пикселях)" ], - "Favorite": ["Избранное"], - "Favorites": ["Избранное"], - "February": ["Февраль"], - "Fetch Values Predicate": [""], - "Fetch data preview": ["Получить данные для просмотра"], - "Fetched %s": ["Получено %s"], - "Fetching": ["Получение данных"], - "Field cannot be decoded by JSON. %(json_error)s": [ - "поле не может быть декодировано с помощью JSON. %(json_error)s" + "Cell Radius": ["Радиус ячейки"], + "The pixel radius": ["Радиус ячейки (в пикселях)"], + "Color Steps": ["Количество цветов"], + "The number color \"steps\"": ["Количество цветов в цветовой схеме"], + "Time Format": ["Формат даты/времени"], + "Legend": ["Легенда"], + "Whether to display the legend (toggles)": [ + "Отображать легенду (переключатель)" ], - "Field cannot be decoded by JSON. %(msg)s": [ - "Поле не может быть декодировано с помощью JSON. %(msg)s" + "Show Values": ["Показать значения"], + "Whether to display the numerical values within the cells": [ + "Отображение числовых значений в ячейках" ], - "Field is required": ["Поле обязательно к заполнению"], - "File": ["Файл"], - "Fill Color": ["Цвет заливки"], - "Fill all required fields to enable \"Default Value\"": [ - "Установить все требуемые флаги для включения \"Значения по умолчанию\"" + "Show Metric Names": ["Показать имена мер"], + "Whether to display the metric name as a title": [ + "Отображать имя меры как названия" ], - "Fill method": ["Метод заполнения пропусков"], - "Filled": ["С заливкой"], - "Filter": ["Фильтр"], - "Filter Configuration": ["Конфигурация фильтра"], - "Filter List": ["Список фильтров"], - "Filter Settings": ["Настройки фильтра"], - "Filter Type": ["Тип фильтра"], - "Filter configuration": ["Настройки фильтра"], - "Filter configuration for the filter box": [ - "Настройки фильтра для \"Фильтр-виджета\"" + "Number Format": ["Числовой формат"], + "Correlation": ["Корреляция"], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Визуализирует, как показатель изменился с течением времени, используя цветовую шкалу и календарь. Значения серого цвета используются для обозначения отсутствующих значений, а линейная цветовая схема используется для отображения величины значения каждого дня." ], - "Filter has default value": ["Фильтр имеет значение по умолчанию"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Метаданные фильтра изменились в дашборде. Они не будут применены." + "Business": ["Бизнес"], + "Comparison": ["Сравнение"], + "Intensity": ["Насыщенность"], + "Pattern": ["Паттерн"], + "Report": ["Отчет"], + "Trend": ["Тенденция"], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Sort by metric": ["Сортировка по мере"], + "Whether to sort results by the selected metric in descending order.": [ + "Сортировка результатов по выбранной мере в порядке убывания" ], - "Filter name": ["Имя фильтра"], - "Filter only displays values relevant to selections made in other filters.": [ - "Фильтр предлагает только те значения, которые отобраны выбранными фильтрами" + "Number format": ["Числовой формат"], + "Choose a number format": ["Выберите числовой формат"], + "Source": ["Источник"], + "Choose a source": ["Выберите источник"], + "Target": ["Цель"], + "Choose a target": ["Выберите цель"], + "Flow": ["Поток"], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "" ], - "Filter results": ["Фильтровать результаты"], - "Filter set already exists": ["Набор фильтров уже существует"], - "Filter set with this name already exists": [ - "Набор фильтров с этим именем уже существует" + "Relationships between community channels": [""], + "Chord Diagram": ["Хордовая диаграмма"], + "Aesthetic": ["Эстетично"], + "Circular": ["Круглая форма"], + "Legacy": ["Устарел"], + "Proportional": ["Пропорция"], + "Relational": ["Относительный"], + "Country": ["Страна"], + "Which country to plot the map for?": ["Выбор страны для графика"], + "ISO 3166-2 Codes": ["Коды ISO 3166-2"], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Столбец, содержащий коды ISO 3166-2 региона/республики/области в вашей таблице" ], - "Filter sets (%(filterSetCount)d)": [ - "Наборы фильтров (%(filterSetCount)d)" + "Metric to display bottom title": [ + "Мера для отображения нижнего заголовка" ], - "Filter type": ["Тип фильтра"], - "Filter value (case sensitive)": [ - "Фильтровать значения (зависит от регистра)" + "Map": ["Карта"], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "" ], - "Filter value is required": ["Требуется значение фильтра"], - "Filter value list cannot be empty": [ - "Список для фильтрации не может быть пуст" + "2D": ["2D карты"], + "Geo": ["Карта"], + "Range": ["Интервал"], + "Stacked": ["С наполнением"], + "Sorry, there appears to be no data": [ + "Извините, похоже, что данные отсутствуют" ], - "Filter your charts": ["Поиск"], - "Filterable": ["Фильтруемый"], - "Filters": ["Фильтры"], - "Filters (%d)": ["Фильтры (%d)"], - "Filters by columns": ["Фильтры по столбцам"], - "Filters by metrics": ["Фильтры по мерам"], - "Filters configuration": ["Конфигурация фильтров"], - "Filters out of scope (%d)": ["Фильтры вне рамок дашборда (%d)"], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Event definition": ["Определение события"], + "Event Names": ["Имена событий"], + "Columns to display": ["Столбцы для отображения"], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "Finish": ["Завершить"], - "First": ["Первый"], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "Фиксирует линию тренда в полном временном интервале, указанном в случае, если отфильтрованные результаты не включают даты начала или окончания" + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "" ], - "Fix to selected Time Range": ["Выбрать временной интервал"], - "Fixed": ["Фиксированный"], - "Fixed Color": ["Фиксированный цвет"], - "Fixed color": ["Фиксированный цвет"], - "Fixed point radius": ["Фиксированный радиус"], - "Flow": ["Поток"], - "Font size": ["Размер шрифта"], - "Font size for axis labels, detail value and other text elements": [ - "Размер шрифта для меток осей, значений деталей и других текстовых элементов" + "Additional metadata": ["Дополнительные метаданные"], + "Metadata": ["Метаданные"], + "Select any columns for metadata inspection": [""], + "Entity ID": ["ID элемента"], + "e.g., a \"user id\" column": [ + "например, столбец \"идентификатор пользователя\"" ], - "Font size for the biggest value in the list": [ - "Размер шрифта для наибольшего значения в списке" + "Max Events": ["Лимит событий"], + "The maximum number of events to return, equivalent to the number of rows": [ + "Максимальное количество возвращаемых событий, эквивалентно количеству строк" ], - "Font size for the smallest value in the list": [ - "Размер шрифта для наименьшего значения в списке" + "Compares the lengths of time different activities take in a shared timeline view.": [ + "" ], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "Для Bigquery, Presto и Postgres, показывать кнопку подсчета стоимости запроса перед его выполнением." - ], - "For further instructions, consult the": [ - "Для получения дальнейших инструкций обратитесь к" - ], - "For more information about objects are in context in the scope of this function, refer to the": [ + "Progressive": ["Постепенный"], + "Axis ascending": ["Ось по возрастанию"], + "Axis descending": ["Ось по убыванию"], + "Metric ascending": ["Мера по возрастанию"], + "Metric descending": ["Мера по убыванию"], + "Heatmap Options": ["Настройки тепловой карты"], + "XScale Interval": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "Rendering": ["Отрисовка"], + "pixelated (Sharp)": [""], + "auto (Smooth)": ["Автоматически (плавно)"], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Normalize Across": [""], + "heatmap": ["тепловая карта"], + "x": ["x"], + "y": ["y"], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "Force": ["Силовой алгоритм"], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "Принудить создание новых таблиц через CTAS или CVAS в Лаборатории SQL в этой схеме при нажатии соответствующих кнопок" - ], - "Force date format": ["Принудительный перевод к формату дата/время"], - "Force refresh": ["Обновить"], - "Force refresh schema list": ["Принудительно обновить список схем"], - "Force refresh table list": ["Принудительно обновить список таблиц"], - "Forecast periods": ["Кол-во прогнозных периодов"], - "Foreign key": ["Внешний ключ"], - "Forest Green": ["Лесной зеленый"], - "Form data not found in cache, reverting to chart metadata.": [ - "Данные формы не найдены в кэше, возвращение к метаданным графика." - ], - "Form data not found in cache, reverting to dataset metadata.": [ - "Данные формы не найдены в кэше, возвращение к метаданным датасета." - ], - "Formattable": ["Форматируемый"], - "Formatted CSV attached in email": [ - "Форматированный CSV, прикрепленный к письму" - ], - "Formatted date": ["Форматированная дата"], - "Formatted value": ["Форматированное значение"], - "Formatting": ["Форматирование"], - "Formula": ["Формула"], - "Forward values": ["Будущие значения"], - "Found invalid orderby options": [""], - "Fraction digits": ["Десятичные знаки"], - "Frequency": ["Частота"], - "Friction": ["Трение"], - "Friction between nodes": ["Сила трения между вершинами"], - "Friday": ["Пятница"], - "From date cannot be larger than to date": [ - "Дата начала не может быть позже даты конца" - ], - "Full name": ["Полное имя"], - "Funnel Chart": ["Воронка"], - "Further customize how to display each column": [ - "Дальнейшая настройка отображения каждого столбца" + "x: values are normalized within each column": [ + "x: значения нормализованы внутри каждого столбца" ], - "Further customize how to display each metric": [ - "Дальнейшая настройка отображения каждой меры" + "y: values are normalized within each row": [ + "y: значения нормализованы внутри каждой строки" ], - "GROUP BY": ["GROUP BY"], - "Gauge Chart": ["Индикаторная диаграмма"], - "General": ["Основные свойства"], - "Generating link, please wait..": [ - "Генерация ссылки, пожалуйста, ждите..." + "heatmap: values are normalized across the entire heatmap": [ + "тепловая карта: значения нормализованы внутри всей карты" ], - "Generic Chart": ["Общая диаграмма"], - "Geo": ["Карта"], - "GeoJson Column": ["Столбец GeoJson"], - "GeoJson Settings": ["Настройки GeoJson"], - "Geohash": ["Geohash"], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [ - "Перейдите в режим редактирования для изменения дашборда и добавьте графики" + "Left Margin": ["Левый отступ"], + "auto": ["Автоматически"], + "Left margin, in pixels, allowing for more room for axis labels": [ + "Левый отступ (в пикселях), дает больше пространства меткам оси" ], - "Gold": ["Золотой"], - "Google Sheet Name and URL": ["Имя или URL Google Таблицы"], - "Grace period": ["Перерыв между оповещением"], - "Graph Chart": ["Сетевой график"], - "Graph layout": ["Формат сетевого графика"], - "Gravity": ["Гравитация"], - "Grid": ["Сетка"], - "Grid Size": ["Размер сетки"], - "Group By": ["Группировать по"], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [ - "Измерения, Меры или Процентные меры должны иметь значение" + "Bottom Margin": ["Нижний отступ"], + "Bottom margin, in pixels, allowing for more room for axis labels": [ + "Нижний отступ (в пикселях), дает больше пространства меткам оси" ], - "Group by": ["Группировать по"], - "Groupable": ["Группируемый"], - "Handlebars": ["Handlebars"], - "Handlebars Template": ["Шаблон Handlebars"], + "Value bounds": ["Ограничения для значения"], "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "Has created by": ["Создан(а)"], - "Header": ["Заголовок"], - "Header Row": ["Строка заголовка"], - "Heatmap": ["Тепловая карта"], - "Heatmap Options": ["Настройки тепловой карты"], - "Height": ["Высота"], - "Height of the sparkline": ["Высота спарклайна"], - "Hide Line": ["Скрыть линию"], - "Hide chart description": ["Скрыть описание графика"], - "Hide layer": ["Скрыть слой"], - "Hide password.": ["Скрыть пароль."], - "Hide tool bar": ["Скрыть панель инструментов"], - "Hides the Line for the time series": [""], - "Hierarchy": ["Иерархия"], - "Histogram": ["Гистограмма"], - "Home": ["Главная"], - "Horizontal": ["Горизонтально"], - "Horizontal (Top)": ["Горизонтально (сверху)"], - "Horizontal alignment": ["Выравнивание по горизонтали"], - "Host": ["Хост"], - "Hostname or IP address": ["Имя хоста или IP адрес"], - "Hour": ["Час"], - "Hours %s": ["Часов %s"], - "Hours offset": ["Смещение времени"], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [ - "На сколько периодов в будущем предсказывать" + "Sort X Axis": ["Сортировка оси X"], + "Sort Y Axis": ["Сортировка оси Y"], + "Show percentage": ["Показывать долю"], + "Whether to include the percentage in the tooltip": [ + "Отображение процентной доли во всплывающей подсказке" ], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "Как отображать смещения во времени: как отдельные линии; как абсолютную разницу между основным временным рядом и каждым смещением; как процентное изменение; или как соотношение между рядами и смещениями." + "Normalized": ["Нормализовать"], + "Whether to apply a normal distribution based on rank on the color scale": [ + "Применять нормальное распределение на основе ранга в цветовой схеме" ], - "Huge": ["Огромный"], - "ISO 3166-2 Codes": ["Коды ISO 3166-2"], - "ISO 8601": ["ISO 8601"], - "Id": ["ID"], - "Id of root node of the tree.": ["Id корневой вершины дерева."], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Если вы используете Presto или Trino, все запросы в Лаборатории SQL будут выполняться от авторизованного пользователя, который должен иметь разрешение на их выполнение. Если включены Hive и hive.server2.enable.doAs, то запросы будут выполняться через техническую учетную запись, но имперсонировать зарегистрированного пользователя можно через свойство hive.server2.proxy.user." + "Value Format": ["Формат значения"], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Если вы используете Presto, все запросы в Лаборатории SQL будут выполняться от авторизованного пользователя, который должен иметь разрешение на их выполнение.
Если включены Hive и hive.server2.enable.doAs, то запросы будут выполняться через техническую учетную запись, но имперсонировать зарегистрированного пользователя можно через свойство hive.server2.proxy.user." + "Sizes of vehicles": [""], + "Employment and education": ["Трудоустройство и образование"], + "Density": ["Концентрация"], + "Predictive": ["Прогноз"], + "Single Metric": ["Одна мера"], + "to": ["по"], + "count": ["количество"], + "cumulative": ["кумулятивно"], + "percentile (exclusive)": ["перцентиль (исключая)"], + "Select the numeric columns to draw the histogram": [ + "Выберите числовые столбцы для отрисовки гистограммы" ], - "If Table Already Exists": ["Если таблица уже существует"], - "If a metric is specified, sorting will be done based on the metric value": [ - "Если мера задана, сортировка будет произведена на основании значений меры" + "No of Bins": ["Количество столбцов"], + "Select the number of bins for the histogram": [ + "Выберите количество столбцов для гистограммы" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "Если повторяющиеся столбцы не перезаписываются, они будут представлены в формате \"X.0, X.1\"." + "X Axis Label": ["Метка оси X"], + "Y Axis Label": ["Метка оси Y"], + "Whether to normalize the histogram": ["Нормализовать гистограмму"], + "Cumulative": ["С накоплением"], + "Whether to make the histogram cumulative": [ + "Сделать гистограмму нарастающей" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Если установлено, выберите схемы, в которые разрешена загрузка CSV на вкладке \"Дополнительно\"." + "Distribution": ["Распределение"], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "Если таблица уже существует, выберите действие: Ошибка (ничего не делать), Заменить (удалить и воссоздать таблицу) или Добавить (вставить данные)." + "Population age data": [""], + "Contribution": ["Режим относительных значений"], + "Compute the contribution to the total": [ + "Вычислить вклад в общую сумму (долю)" ], - "Ignore cache when generating screenshot": [ - "Игнорировать кэш при создании скриншота" + "Series Height": ["Высота рядов"], + "Pixel height of each series": ["Высота каждого ряда (в пикселях)"], + "Value Domain": [""], + "series": ["категории"], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "" ], - "Ignore null locations": ["Игнорировать пустые локации"], - "Ignore time": ["Игнорировать время"], - "Image (PNG) embedded in email": [ - "Изображение (PNG), встроенное в email" + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "" ], - "Image download failed, please refresh and try again.": [ - "Ошибка скачивания изображения, пожалуйста, обновите и попробуйте заново." + "Dark Cyan": ["Темно-голубой"], + "Purple": ["Фиолетовый"], + "Gold": ["Золотой"], + "Dim Gray": ["Тускло-серый"], + "Crimson": ["Малиновый"], + "Forest Green": ["Лесной зеленый"], + "Longitude": ["Долгота"], + "Column containing longitude data": [ + "Столбец, содержащий данные о долготе" ], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "Имперсонировать пользователя (Presto, Trino, Drill, Hive, и Google Таблицы)" + "Latitude": ["Широта"], + "Column containing latitude data": [ + "Столбец, содержащий данные о широте" ], - "Impersonate the logged on user": ["Имперсонировать пользователя"], - "Import": ["Импорт"], - "Import %s": ["Импортировать %s"], - "Import Dashboard(s)": ["Импортировать дашборд(ы)"], - "Import Dashboards": ["Импортировать дашборды"], - "Import a table definition": [""], - "Import chart failed for an unknown reason": [ - "Не удалось импортировать график по неизвестной причине" + "Clustering Radius": ["Радиус кластера"], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "" ], - "Import charts": ["Импортировать графики"], - "Import dashboard failed for an unknown reason": [ - "Не удалось импортировать дашборд по неизвестной причине" + "Points": ["Маркеры"], + "Point Radius": ["Радиус маркера"], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Радиус маркеров (не находящихся в кластере). Выберите числовой столбец или `Автоматически`, который отмасштабирует маркеры по наибольшему маркеру." ], - "Import dashboards": ["Импортировать дашборды"], - "Import database failed for an unknown reason": [ - "Не удалось импортировать базу данных по неизвестной причине" + "Auto": ["Автоматически"], + "Point Radius Unit": ["Единица измерения радиуса маркера"], + "Pixels": ["Пиксели"], + "Miles": ["Мили"], + "Kilometers": ["Километры"], + "The unit of measure for the specified point radius": [ + "Единица измерения для указанного радиуса маркера" ], - "Import database from file": ["Импортировать базу данных из файла"], - "Import dataset failed for an unknown reason": [ - "Не удалось импортировать датасет по неизвестной причине" + "Labelling": ["Маркировка"], + "label": ["метка"], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "" ], - "Import datasets": ["Импортировать датасеты"], - "Import queries": ["Импортировать запросы"], - "Import saved query failed for an unknown reason.": [ - "Не удалось импортировать сохраненный запрос по неизвестной причине" + "Cluster label aggregator": ["Агрегатор меток кластера"], + "sum": ["Сумма"], + "mean": ["Среднее"], + "max": ["Максимум"], + "std": ["Стандартное отклонение"], + "var": ["Дисперсия"], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "Агрегатная функция, применяемая для списка точек в каждом кластере для создания метки кластера." ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Visual Tweaks": ["Визуальные настройки"], + "Live render": ["Мгновенная отрисовка"], + "Points and clusters will update as the viewport is being changed": [ + "Точки и кластеры будут обновляться по мере изменения области просмотра" + ], + "Map Style": ["Стиль карты"], + "Streets": ["Схема"], + "Dark": ["Темный"], + "Light": ["Светлый"], + "Satellite Streets": ["Гибридный режим"], + "Satellite": ["Спутник"], + "Outdoors": ["Туристический режим"], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Прозрачность"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [ + "Непрозрачность всех кластеров, точек и меток. Между 0 и 1." + ], + "RGB Color": ["Цвет RGB"], + "The color for points and clusters in RGB": [ + "Цвет для маркеров и кластеров в RGB" + ], + "Viewport": ["Область просмотра"], + "Default longitude": ["Долгота по умолчанию"], + "Longitude of default viewport": ["Долгота для области просмотра"], + "Default latitude": ["Широта по умолчанию"], + "Latitude of default viewport": ["Широта для области просмотра"], + "Zoom": ["Масштабирование"], + "Zoom level of the map": ["Уровень масштабирования карты"], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Include Series": [""], - "Include a description that will be sent with your report": [ - "Описание, которое будет отправлено вместе с вашим отчетом" + "Light mode": ["Светлый режим"], + "Dark mode": ["Темная тема"], + "MapBox": ["Mapbox"], + "Scatter": ["Точечный"], + "Transformable": ["Трансформируемый"], + "Significance Level": [""], + "Threshold alpha level for determining significance": [ + "Пороговый альфа-уровень для определения значимости" + ], + "p-value precision": ["точность p-значения"], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Таблица, визуализирующая парные t-тесты, которые используются для нахождения статистических различий между группами." + ], + "Paired t-test Table": ["Таблица парного t-теста"], + "Statistical": ["Статистический учет"], + "Tabular": ["Таблицы"], + "Options": ["Опции"], + "Data Table": ["Таблица"], + "Whether to display the interactive data table": [ + "Отображать интерактивную таблицу с данными" ], + "Include Series": [""], "Include series name as an axis": [ "Включить имена категорий в качестве оси" ], - "Include time": ["Включить время"], - "Index": ["Индекс"], - "Index Column": ["Индесный столбец"], - "Info": ["Личные данные"], - "Inner Radius": ["Внутренний радиус"], - "Inner radius of donut hole": ["Внутренний радиус отверстия для кольца"], - "Input field supports custom rotation. e.g. 30 for 30°": [ - "Поле для ввода поддерживает пользовательские значения, например 30 для 30°" - ], - "Instant filtering": ["Мгновенная Фильтрация"], - "Intensity": ["Насыщенность"], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Ranking": ["Ранжирование"], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "" ], - "Interpret Datetime Format Automatically": [ - "Автоматически интерпретировать формат дата/время" + "Coordinates": ["Координаты"], + "Directional": ["Направленный"], + "Time Series Options": ["Настройки временных рядов"], + "Not Time Series": ["Не временные ряды"], + "Ignore time": ["Игнорировать время"], + "Time Series": ["Временной ряд"], + "Standard time series": [""], + "Aggregate Mean": ["Агрегированное среднее"], + "Mean of values over specified period": [ + "Среднее значений за указанный период" ], - "Interpret the datetime format automatically": [ - "Автоматически интерпретировать формат дата/время" + "Aggregate Sum": ["Агрегированная сумма"], + "Sum of values over specified period": [ + "Сумма значений за обозначенный период" ], - "Interval": ["Интервал"], - "Interval End column": ["Столбец с концом интервала"], - "Interval bounds": ["Граница интервала"], - "Interval colors": ["Цвета интервала"], - "Interval start column": ["Столбец с началом интервала"], - "Intervals": ["Интервалы"], - "Invalid JSON": ["Недопустимый формат JSON"], - "Invalid advanced data type: %(advanced_data_type)s": [ - "Невалидный расширенный тип данных: %(advanced_data_type)s" + "Metric change in value from `since` to `until`": [ + "Изменение меры с `до` до `после`" ], - "Invalid certificate": ["Неверный сертификат"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "Недопустимая строка для подключения, валидная строка соответствует шаблону: ДРАЙВЕР://ИМЯ-ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ-БАЗЫ-ДАННЫХ" + "Percent Change": ["Процентное изменение"], + "Metric percent change in value from `since` to `until`": [ + "Процентное изменение меры с `до` до `после`" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ - "Недопустимая строка для подключения, валидная строка соответствует шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" + "Factor": [""], + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": ["Расширенная аналитика"], + "Use the Advanced Analytics options below": [ + "Используйте настройки Расширенной аналитики ниже" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ - "Недопустимая строка для подключения, валидная строка соответствует шаблону:'ДРАЙВЕР://ИМЯ-ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ-БАЗЫ-ДАННЫХ'

Пример:'postgresql://user:password@postgres-db/database'

" + "Settings for time series": ["Настройки временных рядов"], + "Date Time Format": ["Формат даты и времени"], + "Partition Limit": ["Количество разбиений"], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "" ], - "Invalid cron expression": ["Недопустимое CRON выражение"], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": ["Недопустимый формат дата/время"], - "Invalid filter configuration, please select a column": [ - "Неверная конфигурация фильтра, пожалуйста, выберите столбец" + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "" ], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": ["Недопустимые входные данные"], - "Invalid lat/long configuration.": [ - "Неверная конфигурация широты и долготы." + "Log Scale": ["Логарифмическая шкала"], + "Use a log scale": ["Использовать логарифмическую шкалу"], + "Equal Date Sizes": ["Одинаковые размеры дат"], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": ["Расширенная всплывающая подсказка"], + "The rich tooltip shows a list of all series for that point in time": [ + "Расширенная всплывающая подсказка показывает список всех категорий для этой точки." ], - "Invalid longitude/latitude": ["Недопустимые долгота/широта"], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [ - "Недопустимая numpy функция: %(operator)s" + "Rolling Window": ["Скользящее окно"], + "Rolling Function": ["Скользящая средняя"], + "cumsum": ["Кумулятивная сумма"], + "Min Periods": ["Минимальный период"], + "Time Comparison": ["Сравнение по времени"], + "Time Shift": ["Временной сдвиг"], + "1 week": ["1 неделя"], + "28 days": ["28 дней"], + "30 days": ["30 дней"], + "52 weeks": ["52 недели"], + "1 year": ["1 год"], + "104 weeks": ["104 недели"], + "2 years": ["2 года"], + "156 weeks": ["156 недель"], + "3 years": ["3 года"], + "Actual Values": ["Фактические значения"], + "1T": ["1МИН"], + "1H": ["1Ч"], + "1D": ["1Д"], + "7D": ["7Д"], + "1M": ["1М"], + "1AS": ["1С"], + "Method": ["Метод"], + "asfreq": ["asfreq (без изменения)"], + "bfill": ["bfill (заполняет пропуски предыдущими значениями)"], + "ffill": ["ffill (заполняет пропуски следующими значениями)"], + "median": ["Медиана"], + "Part of a Whole": ["Покомпонентное сравнение"], + "Compare the same summarized metric across multiple groups.": [ + "Сравнивает один и тот же обобщенный показатель в нескольких группах" ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Недопустимые настройки для %(rolling_type)s: %(options)s" + "Categorical": ["Категориальный"], + "Use Area Proportions": ["Использовать пропорции области"], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "" ], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [ - "Недопустимый тип ответа: %(result_type)s" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "" ], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid state.": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": ["Выбрать противоположные значения"], - "Invert current page": [""], - "Is certified": ["Одобрено"], - "Is dimension": ["Является измерением"], - "Is favorite": ["В избранном"], - "Is filterable": ["Фильтруемый"], - "Is temporal": ["Содержит дату/время"], - "Issue 1000 - The dataset is too large to query.": [ - "Ошибка 1000 - Источник данных слишком велик для запроса." + "Nightingale Rose Chart": ["Диаграмма Найтингейл"], + "Advanced-Analytics": ["Продвинутая аналитика"], + "Multi-Layers": ["Многослойный"], + "Source / Target": ["Источник / Цель"], + "Choose a source and a target": ["Выберите источник и цель"], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "" ], - "Issue 1001 - The database is under an unusual load.": [ - "Ошибка 1001 - Нетипичная загрузка базы данных." + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "" ], - "It’s not recommended to truncate axis in Bar chart.": [ - "Не рекомендуется урезать интервал оси в столбчатой диаграмме" + "Demographics": ["Демография"], + "Survey Responses": [""], + "Sankey Diagram": ["Диаграмма Санкей"], + "Percentages": ["Проценты"], + "Sankey Diagram with Loops": [""], + "Country Field Type": ["Тип поля страны"], + "Full name": ["Полное имя"], + "code International Olympic Committee (cioc)": [ + "Код Международного Олимпийского Комитета (cioc)" ], - "JAN": ["ЯНВ"], - "JSON": ["JSON"], - "JSON Metadata": ["JSON Метаданные"], - "JSON metadata": ["JSON метаданные"], - "JSON metadata is invalid!": ["JSON метаданные не валидны!"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "JSON строка, содержащая дополнительную информацию о соединении. Это используется для указания информации о соединении с такими системами как Hive, Presto и BigQuery, которые не укладываются в шаблон \"пользователь:пароль\", который обычно используется в SQLAlchemy." + "code ISO 3166-1 alpha-2 (cca2)": ["Код ISO 3166-1 alpha-2 (cca2)"], + "code ISO 3166-1 alpha-3 (cca3)": ["Код ISO 3166-1 alpha-3 (cca3)"], + "The country code standard that Superset should expect to find in the [country] column": [ + "Код страны, который Суперсет ожидает найти в столбце со страной" ], - "JUL": ["ИЮЛ"], - "JUN": ["ИЮН"], - "January": ["Январь"], - "Jinja templating": ["Шаблонизацию Jinja."], - "Json list of the column names that should be read": [ - "Список столбцов в формате JSON из файла, которые будут использованы." + "Show Bubbles": ["Показать пузыри"], + "Whether to display bubbles on top of countries": [ + "Отображать пузыри поверх стран" ], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "Список столбцов в формате JSON из файла, которые будут использованы. Пример: [\"id\", \"name\", \"gender\", \"age\"]. Если в данном поле указаны названия столбцов, из файла будут загружены только указанные столбцы." + "Max Bubble Size": ["Максимальный размер пузыря"], + "Color by": ["Выбор цвета по"], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ - "Список JSON значений, которые следует рассматривать как нулевые. Примеры: [\"\"] для пустых строк, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Предупреждение: База данных Hive поддерживает только одно значение." + "Country Column": ["Столбец со страной"], + "3 letter code of the country": ["3х буквенный код страны"], + "Metric that defines the size of the bubble": [ + "Показатель, определяющий размер пузяря" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "Список JSON значений, которые следует рассматривать как нулевые. Примеры: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Предупреждение: База данных Hive поддерживает только одно значение. Используйте [\"\"] для пустой строки." + "Bubble Color": ["Цвет пузыря"], + "Country Color Scheme": ["Цветовая схема страны"], + "A map of the world, that can indicate values in different countries.": [ + "Карта мира, на которой могут быть указаны значения в разных странах." ], - "July": ["Июль"], - "June": ["Июнь"], - "KPI": ["KPI"], - "Keep control settings?": ["Оставить прежние настройки?"], - "Keep editing": ["Продолжить редактирование"], - "Key": ["Ключ"], - "Kilometers": ["Километры"], - "LIMIT": ["ОГРАНИЧЕНИЕ"], - "Label": ["Метка"], - "Label Line": ["Линия метки"], - "Label Type": ["Тип метки"], - "Label already exists": ["Метка уже существует"], - "Label for your query": ["Метка для вашего запроса"], - "Label position": ["Положение метки"], - "Label threshold": ["Порог метки"], - "Labelling": ["Маркировка"], - "Labels": ["Метки"], - "Labels for the marker lines": ["Метки для линий маркера"], - "Labels for the markers": ["Метки для маркеров"], - "Labels for the ranges": ["Метки для диапазонов"], - "Large": ["Большой"], - "Last": ["Последний"], - "Last Changed": ["Дата изменения"], - "Last Modified": ["Дата изменения"], - "Last Updated %s": ["Дата изменения %s"], - "Last Updated %s by %s": ["Изменено %s пользователем %s"], - "Last available value seen on %s": ["Последнее доступное значение: %s"], - "Last modified": ["Последнее изменение"], - "Last modified by %s": ["Автор изменений %s"], - "Last run": ["Последнее изменение"], - "Latitude": ["Широта"], - "Latitude of default viewport": ["Широта для области просмотра"], - "Layer configuration": ["Настройки слоя"], - "Layout": ["Оформление"], - "Layout elements": ["Оформление"], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "" + "Multi-Dimensions": ["Многомерный"], + "Multi-Variables": ["Несколько переменных"], + "Popular": ["Популярно"], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Select charts": ["Выберите графики"], + "Error while fetching charts": ["Возникла ошибка при получении графиков"], + "Compose multiple layers together to form complex visuals.": [ + "Объединяет несколько слоев вместе для формирования сложных визуальных эффектов." ], - "Least recently modified": ["Измененные давно"], - "Left": ["Слева"], - "Left Axis Format": ["Формат левой оси"], - "Left Axis chart(s)": ["График(и) по левой оси"], - "Left Margin": ["Левый отступ"], - "Left margin, in pixels, allowing for more room for axis labels": [ - "Левый отступ (в пикселях), дает больше пространства меткам оси" + "deck.gl Multiple Layers": ["deck.gl Многослойный"], + "deckGL": ["Карта deckGL"], + "Start (Longitude, Latitude): ": ["Старт (Долгота, Широта): "], + "End (Longitude, Latitude): ": ["Конец (Долгота, Широта)"], + "Start Longitude & Latitude": ["Начальные долгота и широта"], + "Point to your spatial columns": ["Указание на столбцы с расположением"], + "End Longitude & Latitude": ["Конечные Долгота и Широта"], + "Arc": ["Дуга"], + "Target Color": ["Целевой цвет"], + "Color of the target location": ["Цвет целевого местоположения"], + "Categorical Color": ["Цвет категории"], + "Pick a dimension from which categorical colors are defined": [ + "Выберите измерение, на основе которого определяются категориальные цвета" ], - "Left to Right": ["Слева направо"], - "Left value": ["Левое значение"], - "Legacy": ["Устарел"], - "Legend": ["Легенда"], - "Legend Format": ["Формат легенды"], - "Legend Orientation": ["Ориентация легенды"], - "Legend Position": ["Расположение легенды"], - "Legend type": ["Тип легенды"], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light": ["Светлый"], - "Light mode": ["Светлый режим"], - "Like": [""], - "Limit reached": ["Достигнут предел"], - "Limit selector values": [""], - "Limit type": ["Тип ограничения"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Stroke Width": ["Ширина обводки"], + "Advanced": ["Продвинутая настройка"], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "Limits the number of cells that get retrieved.": [ - "Ограничивает количество извлекаемых ячеек" + "deck.gl Arc": ["deck.gl Дуга"], + "3D": ["3D карты"], + "Web": ["Сеть"], + "Centroid (Longitude and Latitude): ": ["Центроид (Долгота и Широта): "], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "Limits the number of rows that get displayed.": [ - "Ограничивает количество отображаемых строк" + "Weight": ["Вес"], + "Metric used as a weight for the grid's coloring": [ + "Мера, используемая как вес для раскрашивания сетки" ], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "Ограничивает количество отображаемых категорий. Эта опция полезна для столбцов с большим количеством уникальных значений, т.к. уменьшает сложность и стоимость запроса." + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" ], - "Line": ["Линейный"], - "Line Chart": ["Линейный график"], - "Line Chart (legacy)": ["Линейный график (устарело)"], - "Line Style": ["Тип линии"], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Линейная диаграмма используется для визуализации показателей, полученных в рамках одной категории. Линейная диаграмма - это тип диаграммы, который отображает информацию в виде ряда точек данных, соединенных прямыми отрезками. Это базовый тип диаграммы, распространенный во многих областях." + "Spatial": [""], + "Experimental": ["Экспериментальный"], + "GeoJson Settings": ["Настройки GeoJson"], + "Point Radius Scale": ["Шкала радиуса маркера"], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "Диаграмма принимает данные в формате GeoJSON и отображает их в виде интерактивных полигонов, линий и точек (кругов, значков и/или текста)." ], - "Line interpolation as defined by d3.js": [ - "Линейная интерполяция, определенная в d3.js" + "deck.gl Geojson": ["deck.gl GeoJSON"], + "Longitude and Latitude": ["Долгота и Широта"], + "Height": ["Высота"], + "Metric used to control height": [ + "Мера, используемая для регулирования высоты" ], - "Line width": ["Толщина линии"], - "Linear Color Scheme": ["Линейная цветовая схема"], - "Linear color scheme": ["Линейная цветовая схема"], - "Linear interpolation": ["Линейная интерполяция"], - "Link Copied!": ["Ссылка скопирована"], - "List Saved Query": [""], - "List Unique Values": ["Список уникальных значений"], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [ - "Список числовых значений для отображения в виде линий на графике. Например, 10,20,30" + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Визуализирует геопространственные данные, такие как 3D-здания, ландшафты или объекты в виде сетки." ], - "List of values to mark with triangles": [ - "Список числовых значений для отображения в виде треугольников на графике. Например, 10,20,30" + "deck.gl Grid": ["deck.gl Сетка"], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "List updated": ["Список обновлен"], - "Live CSS editor": ["Редактор CSS"], - "Live render": ["Мгновенная отрисовка"], - "Load a CSS template": ["Загрузить CSS шаблон"], - "Loaded data cached": ["Данные загружены в кэш"], - "Loaded from cache": ["Загружено из кэша"], - "Loading": ["Загрузка"], - "Loading...": ["Загрузка..."], - "Log Scale": ["Логарифмическая шкала"], - "Log retention": ["Хранение журнала"], - "Logarithmic axis": ["Логарифмическая ось"], - "Logarithmic scale on primary y-axis": [ - "Логарифмическая шкала для главной оси Y" + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": ["Динамическая агрегирующая функция"], + "variance": ["Дисперсия"], + "p1": ["p1"], + "p5": ["p5"], + "p95": ["p95"], + "p99": ["p99"], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "" ], - "Logarithmic scale on secondary y-axis": [ - "Логарифмическая шкала для вторичной оси Y" + "deck.gl 3D Hexagon": ["deck.gl 3D Шестигранники"], + "Visualizes connected points, which form a path, on a map.": [ + "Визуализирует связанные точки, которые образуют путь, на карте." ], - "Logarithmic y-axis": ["Логарифмическая ось Y"], - "Login": ["Вход в систему"], - "Login with": ["Войти при помощи"], - "Logout": ["Выход из системы"], - "Logs": ["Записи"], - "Long dashed": ["Длинный штрих"], - "Longitude": ["Долгота"], - "Longitude & Latitude": ["Долгота и Широта"], - "Longitude & Latitude columns": ["Долгота и Широта"], - "Longitude and Latitude": ["Долгота и Широта"], - "Longitude of default viewport": ["Долгота для области просмотра"], - "MAR": ["МАР"], - "MAY": ["МАЙ"], - "MON": ["ПН"], - "Main Datetime Column": ["Основной столбец с временем"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ - "Убедитесь, что настройки графика верно сконфигурированы и источник данных содержит данные для выбранного временного интервала." + "name": ["имя"], + "Polygon Settings": ["Настройки полигона"], + "Opacity, expects values between 0 and 100": [ + "Непрозрачность, принимаются значения от 0 до 100" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Некорректный запрос. Ожидаются аргументы slice_id или table_name и db_name" + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Whether to apply filter when items are clicked": [ + "Применять фильтр при щелчке по элементам" ], - "Manage": ["Управление"], - "Manage email report": ["Управление рассылкой по почте"], - "Manage your databases": ["Управляйте своими базами данных"], - "Mandatory": ["Обязательно"], - "Manually set min/max values for the y-axis.": [ - "Вручную задать мин./макс. значения для оси Y" + "Multiple filtering": ["Множественная фильтрация"], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "" ], - "Map": ["Карта"], - "Map Style": ["Стиль карты"], - "MapBox": ["Mapbox"], - "Mapbox": ["Mapbox"], - "March": ["Март"], - "Margin": ["Отступ"], - "Mark a column as temporal in \"Edit datasource\" modal": [ - "Присвойте столбцу формат даты/времени в настройках датасета" + "deck.gl Polygon": ["deck.gl Полигон"], + "Category": ["Категория"], + "Point Size": ["Размер маркера"], + "Point Unit": ["Единица измерения маркера"], + "Square meters": ["Квадратные метры"], + "Square kilometers": ["Квадратные километры"], + "Square miles": ["Квадратные мили"], + "Radius in meters": ["Радиус в метрах"], + "Radius in kilometers": ["Радиус в километрах"], + "Radius in miles": ["Радиус в милях"], + "Minimum Radius": ["Минимальный радиус"], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Минимальный размер радиуса окружности (в пикселях). При изменении масштаба это гарантирует, что окружность соответствует этому минимальному радиусу." ], - "Marker": ["Маркер"], - "Marker Size": ["Размер маркера"], - "Marker labels": ["Метки маркера"], - "Marker line labels": ["Метки линий маркера"], - "Marker lines": ["Линии маркеров"], - "Marker size": ["Размер маркера"], - "Markers": ["Маркеры"], - "Markup type": ["Тип разметки"], - "Max": ["Максимум"], - "Max Bubble Size": ["Максимальный размер пузыря"], - "Max Events": ["Лимит событий"], - "Maximum": ["Максимум"], - "Maximum Font Size": ["Максимальный размер шрифта"], "Maximum Radius": ["Максимальный радиус"], - "Maximum value on the gauge axis": ["Максимальное значение индикатора"], - "May": ["Май"], - "Mean of values over specified period": [ - "Среднее значений за указанный период" + "Point Color": ["Цвет маркера"], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "На карте отображаются маркеры переменного радиуса и цвета." ], - "Mean values": ["Средние значения"], - "Median": ["Медиана"], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ - "Медианная толщина ребра, самое толстое ребро будет в 4 раза толще самой тонкой." + "deck.gl Scatterplot": ["deck.gl Точечная карта"], + "Grid": ["Сетка"], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ - "Медианный размер вершины, самая большая вершина будет в 4 раза больше самой маленькой." + "For more information about objects are in context in the scope of this function, refer to the": [ + "" ], - "Median values": ["Медианные значения"], - "Medium": ["Средний"], - "Menu actions trigger": [""], - "Message content": ["Содержимое сообщения"], - "Metadata": ["Метаданные"], - "Metadata Parameters": ["Параметры метаданных"], - "Metadata has been synced": ["Метаданные синхронизированы"], - "Method": ["Метод"], - "Metric": ["Мера"], - "Metric '%(metric)s' does not exist": ["Мера '%(metric)s' не существует"], - "Metric ascending": ["Мера по возрастанию"], - "Metric assigned to the [X] axis": ["Показатель, отраженный на оси X"], - "Metric assigned to the [Y] axis": ["Показатель, отраженный на оси Y"], - "Metric change in value from `since` to `until`": [ - "Изменение меры с `до` до `после`" + " source code of Superset's sandboxed parser": [ + " исходный код sandboxed парсера Суперсета" ], - "Metric descending": ["Мера по убыванию"], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": ["Мера для значений вершин"], - "Metric name": ["Имя меры"], - "Metric name [%s] is duplicated": ["Дубль имени меры [%s]"], - "Metric percent change in value from `since` to `until`": [ - "Процентное изменение меры с `до` до `после`" + "This functionality is disabled in your environment for security reasons.": [ + "Эта функция отключена в вашей среде по соображениям безопасности." ], - "Metric that defines the size of the bubble": [ - "Показатель, определяющий размер пузяря" + "Ignore null locations": ["Игнорировать пустые локации"], + "Whether to ignore locations that are null": [ + "Игнорировать местоположения, которые не содержат данных о расположении" ], - "Metric to display bottom title": [ - "Мера для отображения нижнего заголовка" + "Auto Zoom": ["Авто масштабирование"], + "When checked, the map will zoom to your data after each query": [ + "Если отмечено, карта будет смасштабирована к вашим данным после каждого запроса" ], - "Metric to sort the results by": [ - "Показатель, по которому сортировать результаты" + "Select a dimension": ["Выберете измерение"], + "Extra data for JS": ["Доп. данные для JS"], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Определите функцию javascript, которая получает массив данных, используемый в визуализации, и, как ожидается, вернет измененную версию этого массива. Это может быть использовано для изменения свойств данных, фильтрации или расширения массива." ], - "Metric used as a weight for the grid's coloring": [ - "Мера, используемая как вес для раскрашивания сетки" + "Define a function that receives the input and outputs the content for a tooltip": [ + "Задайте функцию, которая получает на вход содержимое всплывающей подсказки" ], - "Metric used to calculate bubble size": [ - "Мера, используемая для расчета размера пузыря" + "Define a function that returns a URL to navigate to when user clicks": [ + "Задайте функцию, которая возвращает URL для навигации при пользовательском нажатии" ], - "Metric used to control height": [ - "Мера, используемая для регулирования высоты" + "Legend Format": ["Формат легенды"], + "Choose the format for legend values": [ + "Выберите формат значений легенды" ], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Мера, используемая для определения того, как сортируются верхние категории, если присутствует ограничение по категории или ячейке. Если не определено, возвращается к первой мере (где это уместно)." + "Legend Position": ["Расположение легенды"], + "Choose the position of the legend": ["Выберите позицию легенды"], + "Top left": ["Сверху слева"], + "Top right": ["Сверху справа"], + "Bottom left": ["Снизу слева"], + "Bottom right": ["Снизу справа"], + "The database columns that contains lines information": [""], + "Line width": ["Толщина линии"], + "The width of the lines": ["Ширина линий"], + "Fill Color": ["Цвет заливки"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + " Установите прозрачность 0, если вы не хотите переписывать цвет, указанный в GeoJSON" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Мера, используемая для определения того, как сортируются верхние категории, если присутствует ограничение по категории или строке. Если не определено, возвращается к первой мере (где это уместно)." + "Stroke Color": ["Цвет обводки"], + "Filled": ["С заливкой"], + "Whether to fill the objects": ["Использовать заливку для объектов"], + "Stroked": ["С обводкой"], + "Whether to display the stroke": ["Отображение обводки"], + "Extruded": [""], + "Whether to make the grid 3D": ["Сделать сетку 3D"], + "Grid Size": ["Размер сетки"], + "Defines the grid size in pixels": [ + "Определяет размер сетки (в пикселях)" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ - "" + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": ["Долгота и Широта"], + "Fixed point radius": ["Фиксированный радиус"], + "Multiplier": ["Мультипликатор"], + "Factor to multiply the metric by": ["Число, на которое умножается мера"], + "geohash (square)": [""], + "Reverse Lat & Long": ["Поменять местами широту и долготу"], + "GeoJson Column": ["Столбец GeoJson"], + "Select the geojson column": ["Выберите geojson столбец"], + "Right Axis Format": ["Формат правой оси"], + "Show Markers": ["Показать маркеры"], + "Show data points as circle markers on the lines": [""], + "Y bounds": ["Показывать границы оси Y"], + "Whether to display the min and max values of the Y-axis": [ + "Отображать минимальное и максимальное значение на оси Y" ], - "Metrics": ["Меры"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ - "Меры, для которых должен отображаться процент от общего числа. Вычисляется только из данных в пределах ограничения по строкам." + "Y 2 bounds": ["Границы оси Y 2"], + "Line Style": ["Тип линии"], + "step-before": [""], + "step-after": [""], + "Line interpolation as defined by d3.js": [ + "Линейная интерполяция, определенная в d3.js" ], - "Middle": ["Середина"], - "Midnight": ["Полночь"], - "Miles": ["Мили"], - "Min": ["Минимум"], - "Min Periods": ["Минимальный период"], - "Min Width": ["Минимальная ширина"], - "Min periods": ["Минимальный период"], - "Min/max (no outliers)": ["Мин/макс (без выбросов)"], - "Mine": ["Мои"], - "Minimum": ["Минимум"], - "Minimum Font Size": ["Минимальный размер шрифта"], - "Minimum Radius": ["Минимальный радиус"], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ - "Минимальный размер радиуса окружности (в пикселях). При изменении масштаба это гарантирует, что окружность соответствует этому минимальному радиусу." + "Show Range Filter": ["Показать фильтр Диапазон"], + "Whether to display the time range interactive selector": [ + "Отображение интерактивного селектора временного интервала" ], - "Minimum threshold in percentage points for showing labels.": [ - "Минимальный порог в процентных пунктах для отображения меток" + "Extra Controls": ["Дополнительные элементы управления"], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Отображает дополнительные элементы управления на самом графике и позволяет менять отображение столбцов: без накопления и с ним." ], - "Minimum value for label to be displayed on graph.": [ - "Минимальное значение метки для отображения на графике." + "X Tick Layout": ["Расположение делений оси X"], + "flat": [""], + "The way the ticks are laid out on the X-axis": [ + "Способ расположения делений по оси X" ], - "Minimum value on the gauge axis": ["Минимальное значение индикатора"], - "Minor Split Line": ["Разметка полотна линиями"], - "Minute": ["Минута"], - "Minutes %s": ["Минут %s"], - "Missing URL parameters": ["Пропущенные параметры URL"], - "Missing dataset": ["Отсутствующий датасет"], - "Mixed Chart": ["Смешанный график"], - "Mixed Time-Series": ["Смешанная диаграмма временных рядов"], - "Modified": ["Изменено"], - "Modified %s": ["Изменено %s"], - "Modified by": ["Кем изменено"], - "Modified columns: %s": ["Изменённые столбцы: %s"], - "Monday": ["Понедельник"], - "Month": ["Месяц"], - "Months %s": ["Месяцев %s"], - "More": ["Подробнее"], - "Move only": ["Только перемещение"], - "Moves the given set of dates by a specified interval.": [""], - "Multi-Dimensions": ["Многомерный"], - "Multi-Layers": ["Многослойный"], - "Multi-Levels": ["Многоуровневый"], - "Multi-Variables": ["Несколько переменных"], - "Multiple": ["Несколько"], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "Несколько расширений файлов столбчатого формата не разрешены к загрузке. Пожалуйста, убедитесь, что все файлы имеют одинаковое расширение." + "X Axis Format": ["Формат оси X"], + "Y Log Scale": ["Логарифмическая ось Y"], + "Use a log scale for the Y-axis": [ + "Использовать логарифмическую шкалу для оси Y" ], - "Multiple filtering": ["Множественная фильтрация"], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "Для уточнения форматов и получения более подробной информации, посмотрите Python-библиотеку geopy.points" + "Y Axis Bounds": ["Границы оси Y"], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Границы для оси Y. Если оставить поле пустым, границы динамически определяются на основе минимального/максимального значения данных. Обратите внимание, что эта функция только расширит диапазон осей. Она не изменит размер графика." ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "Разрешён множественный выбор, иначе можно выбрать только одно значение фильтра" + "Y Axis 2 Bounds": ["Границы оси Y 2"], + "X bounds": ["Показывать границы оси X"], + "Whether to display the min and max values of the X-axis": [ + "Отображать минимальное и максимальное значение на оси X" ], - "Multiplier": ["Мультипликатор"], - "Must be unique": ["Должно быть уникальным"], - "Must choose either a chart or a dashboard": [ - "Выберите график или дашборд" + "Bar Values": ["Значения столбцов"], + "Show the value on top of the bar": [ + "Показать значение в верхней части столбца" ], - "Must have a [Group By] column to have 'count' as the [Label]": [""], - "Must have at least one numeric column specified": [ - "Должен быть указан хотя бы один числовой столбец" + "Stacked Bars": ["Столбцы с накоплением"], + "Reduce X ticks": ["Уменьшить кол-во делений оси X"], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Уменьшает количество отрисованных делений на оси X. Если флажок установлен, некоторые метки могут быть не отображены. " ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [ - "Необходимо указать значение для фильтров с операторами сравнения" + "You cannot use 45° tick layout along with the time range filter": [ + "Вы не можете использовать расположение делений под углом 45° при использовании временного фильтра" ], - "My beautiful colors": ["Мои красивые цвета"], - "My column": ["Мой столбец"], - "My metric": ["Моя мера"], - "N/A": ["Пусто"], - "NOT GROUPED BY": [""], - "NOV": ["НОЯ"], - "NOW": ["СЕЙЧАС"], - "NUMERIC": ["Числовой (NUMERIC/DECIMAL)"], - "Name": ["Имя"], - "Name is required": ["Имя обязательно"], - "Name must be unique": ["Имя должно быть уникальным"], - "Name of table to be created from columnar data.": [ - "Имя таблицы, созданной из файла столбчатого формата." + "Stacked Style": [""], + "stream": ["поток"], + "expand": ["развернуть"], + "Evolution": ["Динамика"], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Диаграмма временного ряда, которая визуализирует, как связанная метрика из нескольких групп изменяется с течением времени. Для каждой группы используется свой цвет." ], - "Name of table to be created from excel data.": [ - "Имя таблицы, созданной из Excel файла." + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": ["Игровые приставки"], + "Vehicle Types": [""], + "Area Chart (legacy)": ["Диаграмма с областями (устарело)"], + "Continuous": ["Непрерывный"], + "Line": ["Линейный"], + "nvd3": ["Графики nvd3"], + "Deprecated": ["Устарело"], + "Series Limit Sort By": ["Сортировка категорий по"], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "" ], - "Name of table to be created with CSV file": [ - "Имя таблицы, созданной из CSV файла." + "Whether to sort descending or ascending if a series limit is present": [ + "Сортировка по убыванию или по возрастанию, если есть ограничение на количество категорий" ], - "Name of the column containing the id of the parent node": [ - "Имя столбца, содержащее id родительской вершины" + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Визуализирует изменение меры с течением времени, используя столбцы. Добавьте столбец для группировки, чтобы визуализировать показатели уровня группы и то, как они меняются с течением времени." ], - "Name of the id column": ["Имя столбца id"], - "Name of the source nodes": ["Имя исходных вершин"], - "Name of the table that exists in the source database": [ - "Имя таблицы, которая существует в базе данных" + "Time-series Bar Chart (legacy)": ["Столбчатая диаграмма (устарело)"], + "Bar": ["Столбчатая"], + "Vertical": ["Вертикально"], + "Box Plot": ["Ящик с усами"], + "X Log Scale": ["Логарифмическая ось X"], + "Use a log scale for the X-axis": [ + "Использовать логарифмическую шкалу для оси X" ], - "Name of the target nodes": ["Имя конечных вершин"], - "Name your database": ["Дайте имя базе данных"], - "Need help? Learn how to connect your database": [ - "Нужна помощь? Узнайте, как подключаться к вашей базе данных" + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "" ], - "Need help? Learn more about": ["Нужна помощь? Узнайте больше о"], - "Network error": ["Ошибка сети"], - "Network error.": ["Ошибка сети."], - "New chart": ["Новый график"], - "New columns added: %s": ["Добавленные столбцы: %s"], - "New dataset": ["Новый датасет"], - "New dataset name": ["Новое имя датасета"], - "New filter set": ["Новый набор фильтров"], - "New tab": ["Новая вкладка"], - "New tab (Ctrl + q)": ["Новая вкладка (CTRL + Q)"], - "New tab (Ctrl + t)": ["Новая вкладка (CTRL + T)"], - "Next": ["Следующий"], - "Nightingale Rose Chart": ["Диаграмма Найтингейл"], - "No": ["Нет"], - "No %s yet": ["Пока нет %s"], - "No Access!": ["Нет доступа!"], - "No Data": ["Нет данных"], - "No Results": ["Нет результатов"], - "No annotation layers": ["Нет слоев аннотаций"], - "No annotation layers yet": ["Пока нет слоев аннотаций"], - "No annotation yet": ["Пока нет аннотаций"], - "No applied filters": ["Фильтры не применены"], - "No available filters.": ["Нет доступных фильтров."], - "No charts": ["Нет графиков"], - "No columns": ["Нет столбцов"], - "No compatible columns found": ["Не найдено подходящих столбцов"], - "No dashboards": ["Нет дашбордов"], - "No data": ["Нет данных"], - "No data after filtering or data is NULL for the latest time record": [ - "Нет данных после фильтрации или данные отсутствуют за последний отрезок времени" + "Ranges": ["Диапазоны"], + "Ranges to highlight with shading": [ + "Диапазоны для выделения с помощью затенения" ], - "No data in file": ["В файле нет данных"], - "No database tables found": ["Не найдено таблиц в базе данных"], - "No databases match your search": [ - "Нет баз данных, удовлетворяющих вашему поиску" + "Range labels": ["Метки диапазона"], + "Labels for the ranges": ["Метки для диапазонов"], + "Markers": ["Маркеры"], + "List of values to mark with triangles": [ + "Список числовых значений для отображения в виде треугольников на графике. Например, 10,20,30" ], - "No description available.": ["Описание отсутствует."], - "No favorite charts yet, go click on stars!": [ - "Пока нет избранных графиков, для добавления в избранное нажмите на звездочку рядом с графиком" + "Marker labels": ["Метки маркера"], + "Labels for the markers": ["Метки для маркеров"], + "Marker lines": ["Линии маркеров"], + "List of values to mark with lines": [ + "Список числовых значений для отображения в виде линий на графике. Например, 10,20,30" ], - "No favorite dashboards yet, go click on stars!": [ - "Пока нет избранных дашбордов, для добавления в избранное нажмите на звездочку рядом с дашбордом" + "Marker line labels": ["Метки линий маркера"], + "Labels for the marker lines": ["Метки для линий маркера"], + "KPI": ["KPI"], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Демонстрирует прогресс одного показателя по отношению к заданной цели. Чем больше заполнение, тем ближе показатель к целевому показателю." ], - "No filter": ["Без фильтрации"], - "No filter is selected.": ["Не выбраны фильтры."], - "No filters": ["Нет фильтров"], - "No filters are currently added to this dashboard.": [ - "Не применено ни одного фильтра к данному дашборду." + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "" ], - "No form settings were maintained": [ - "Конфигурация графика не сохранилась" + "Time-series Percent Change": ["Процентное изменение (временные ряды)"], + "Sort Bars": ["Сортировать столбцы"], + "Sort bars by x labels.": ["Сортировать столбцы по меткам на оси X"], + "Defines how each series is broken down": [ + "Определяет разложение каждой категории" ], - "No of Bins": ["Количество столбцов"], - "No records found": ["Записи не найдены"], - "No results": ["Нет результатов"], - "No results found": ["Записи не найдены"], - "No results match your filter criteria": [ - "Не найдено результатов по вашим критериям" + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "" ], - "No results were returned for this query": [ - "Не было получено данных по этому запросу" + "Bar Chart (legacy)": ["Столбчатая диаграмма (устарело)"], + "Additive": ["Смешанный"], + "Discrete": ["Обособленный"], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [ + "Классическая диаграмма для визуализации изменения показателей со временем." ], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ - "По этому запросу не было возвращено данных. Если вы ожидали увидеть результаты, убедитесь, что все фильтры настроены правильно и источник данных содержит записи для заданного временного интервала." + "Battery level over time": ["Уровень заряда батареи с течением времени"], + "Line Chart (legacy)": ["Линейный график (устарело)"], + "Label Type": ["Тип метки"], + "Category Name": ["Имя категории"], + "Value": ["Значение"], + "Percentage": ["Процентная доля"], + "Category and Value": ["Категория и значение"], + "Category and Percentage": ["Категория и процентная доля"], + "Category, Value and Percentage": [ + "Категория, значение и процентная доля" ], - "No rows were returned for this dataset": [ - "Не было получено данных для этого датасета" + "What should be shown on the label?": ["Текст, отображаемый на метке"], + "Donut": ["Кольцевая диаграмма"], + "Do you want a donut or a pie?": ["Круговая/кольцевая диаграмма"], + "Show Labels": ["Показывать метки"], + "Put labels outside": ["Вынести метки наружу"], + "Put the labels outside the pie?": ["Вынести метки за пределы диаграммы"], + "Frequency": ["Частота"], + "Year (freq=AS)": ["Год (част=AS)"], + "52 weeks starting Monday (freq=52W-MON)": [ + "52 недели с началом в Понедельник (част=52W-MON)" ], - "No samples were returned for this dataset": [ - "Не было получено данных для этого датасета" + "1 week starting Sunday (freq=W-SUN)": [ + "1 неделя с началом в Воскресенье (част=W-SUN)" ], - "No saved expressions found": ["Не найдено сохраненных выражений"], - "No saved metrics found": ["Не найдено сохраненных мер"], - "No stored results found, you need to re-run your query": [ - "Не найдены сохраненные результаты, необходимо повторно выполнить запрос" + "1 week starting Monday (freq=W-MON)": [ + "1 неделя с началом в Понедельник (част=W-MON)" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Такой столбец не найден. Чтобы фильтровать по мере, попробуйте использовать вкладку Свой SQL." + "Day (freq=D)": ["День (част=D)"], + "4 weeks (freq=4W-MON)": ["4 недели (част=4W-MON)"], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Периодичность для группировки по времени. Пользователи могут задавать собственную частоту. Для этого нажмите на иконку с информацией." ], - "No temporal columns found": ["Столбцы формата дата/время не найдены"], - "No time columns": ["Нет столбцов формата дата/время"], - "No validator found (configured for the engine)": [ - "Не найден валидатор (сконфигурированный для драйвера)" + "Formula": ["Формула"], + "Event": ["Событие"], + "Interval": ["Интервал"], + "Stack": [""], + "Expand": ["Расширить"], + "Show legend": ["Показывать легенду"], + "Whether to display a legend for the chart": [ + "Отображать легенду для графика" ], - "No validator named {} found (configured for the {} engine)": [ - "Не найден валидатор с именем {} (сконфигурированный для драйвера {})" + "Margin": ["Отступ"], + "Additional padding for legend.": ["Дополнительный отступ для легенды"], + "Scroll": ["Прокрутка"], + "Plain": ["Отобразить все"], + "Legend type": ["Тип легенды"], + "Orientation": ["Ориентация"], + "Bottom": ["Снизу"], + "Right": ["Справа"], + "Legend Orientation": ["Ориентация легенды"], + "Show Value": ["Показать значение"], + "Show series values on the chart": [ + "Показать значения категорий на графике" ], - "Node label position": ["Расположение метки вершины"], - "Node select mode": ["Режим выбора вершин"], - "Node size": ["Размер вершины"], - "None": ["Пусто"], - "None -> Arrow": ["Ничего -> Стрелка"], - "None -> None": ["Ничего -> Ничего"], - "Normal": ["Обычный"], - "Normalize Across": [""], - "Normalized": ["Нормализовать"], - "Not Time Series": ["Не временные ряды"], - "Not added to any dashboard": ["Не добавлен ни в один дашборд"], - "Not available": ["Не доступно"], - "Not equal to (≠)": ["Не равно (≠)"], - "Not null": ["Не пусто"], - "Not triggered": ["Условие не выполнялось"], - "Not up to date": ["Не актуально"], - "Nothing triggered": ["Не срабатывало"], - "Notification method": ["Способ уведомления"], - "November": ["Ноябрь"], - "Now": ["Сейчас"], - "Null Values": ["Пустые значения"], - "Null imputation": ["Пустые значения"], - "Null or Empty": ["Null или Пусто"], - "Null values": ["Пустые значения"], - "Number Format": ["Числовой формат"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ - "" + "Stack series on top of each other": [ + "Совместить столбцы в один с накоплением" ], - "Number format": ["Числовой формат"], - "Number format string": ["Числовой формат"], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [ - "Кол-во десятичных разрядов для округления числа" + "Only Total": ["Только общий итог"], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "Показывать только общий итог для столбцов с накоплением, и не показывать промежуточные итоги для каждой категории внутри столбца." ], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [ - "Количество периодов для сравнения" + "Percentage threshold": ["Процентный порог"], + "Minimum threshold in percentage points for showing labels.": [ + "Минимальный порог в процентных пунктах для отображения меток" ], - "Number of periods to ratio against": [ - "Количество периодов для сравнения" + "Rich tooltip": ["Расширенная всплывающая подсказка"], + "Shows a list of all series available at that point in time": [ + "Показывает список всех данных, доступных в определенный момент времени" ], - "Number of rows of file to read": ["Количество строк файла для чтения"], - "Number of rows of file to read.": ["Количество строк файла для чтения."], - "Number of rows to skip at start of file": [ - "Количество строк для пропуска в начале файла" + "Tooltip time format": ["Формат времени всплывающей подсказки"], + "Tooltip sort by metric": ["Сортировка данных подсказки по мере"], + "Whether to sort tooltip by the selected metric in descending order.": [ + "Сортировка выбранных мер по убыванию во всплывающей подсказке" ], - "Number of rows to skip at start of file.": [ - "Количество строк для пропуска в начале файла." + "Tooltip": ["Всплывающая подсказка"], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": ["Повернуть метку оси X"], + "Input field supports custom rotation. e.g. 30 for 30°": [ + "Поле для ввода поддерживает пользовательские значения, например 30 для 30°" ], - "Number of split segments on the axis": [ - "Количество разделенных сегментов на индикаторе" + "Make the x-axis categorical": [""], + "Last available value seen on %s": ["Последнее доступное значение: %s"], + "Not up to date": ["Не актуально"], + "No data": ["Нет данных"], + "No data after filtering or data is NULL for the latest time record": [ + "Нет данных после фильтрации или данные отсутствуют за последний отрезок времени" ], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": ["Числовой диапазон"], - "OCT": ["ОКТ"], - "OK": ["ОК"], - "OVERWRITE": ["ПЕРЕЗАПИСАТЬ"], - "October": ["Октябрь"], - "Offline": ["Оффлайн"], - "Offset": ["Смещение"], - "On Grace": ["На перерыве"], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "Один или несколько столбцов для группировки. Столбцы с множеством уникальных значений должны включать порог количества категорий для снижения нагрузку на базу данных и на ускорения отображения графика." + "Try applying different filters or ensuring your datasource has data": [ + "Попробуйте использовать другие фильтры или убедитесь, что в вашем источнике данных есть данные" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ - "Один или несколько столбцов для группировки. Столбцы с множеством уникальных значений должны включать показатель для сортировки и порог количества значений для снижения нагрузку на базу данных и на ускорения отображения графика." + "Big Number Font Size": ["Размер шрифта числа"], + "Tiny": ["Крошечный"], + "Small": ["Маленький"], + "Normal": ["Обычный"], + "Large": ["Большой"], + "Huge": ["Огромный"], + "Subheader Font Size": ["Размер шрифта подзаголовка"], + "Display settings": ["Настройки отображения"], + "Subheader": ["Подзаголовок"], + "Description text that shows up below your Big Number": [ + "Описание, отображаемое под Карточкой" ], - "One or many columns to pivot as columns": [ - "Один или несколько столбцов, используемых в роли столбцов в сводной таблице" + "Date format": ["Форматы даты"], + "Force date format": ["Принудительный перевод к формату дата/время"], + "Use date formatting even when metric value is not a timestamp": [ + "Использовать перевод к формату дата/время даже если мера представляет другой тип данных" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ - "" + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Отображает один показатель по центру. Карточку лучше всего использовать, чтобы привлечь внимание к KPI." ], - "One or many metrics to display": [ - "Выберите одну или несколько мер для отображения" + "A Big Number": ["Карточка"], + "With a subheader": ["С подзаголовком"], + "Big Number": ["Карточка"], + "Comparison Period Lag": ["Временной лаг для сравнения"], + "Based on granularity, number of time periods to compare against": [ + "Основываясь на группировке времени, количество периодов времени для сравнения" ], - "One or more columns already exist": [ - "Один или несколько столбцов уже существуют" + "Comparison suffix": ["Текст рядом с процентным изменением"], + "Suffix to apply after the percentage display": [ + "Текст после отображения процентной доли" ], - "One or more columns are duplicated": [ - "Один или несколько столбцов дублируются" + "Show Timestamp": ["Показать метку времени"], + "Whether to display the timestamp": ["Отображение временную метку"], + "Show Trend Line": ["Показать трендовую линию"], + "Whether to display the trend line": ["Отображение трендовой линии"], + "Start y-axis at 0": ["Начать ось Y с 0"], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Начать ось Y в нуле. Снимите флаг, чтобы ось Y начиналась на минимальном значении данных" ], - "One or more columns do not exist": [ - "Один или несколько столбцов не существуют" + "Fix to selected Time Range": ["Выбрать временной интервал"], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Фиксирует линию тренда в полном временном интервале, указанном в случае, если отфильтрованные результаты не включают даты начала или окончания" ], - "One or more metrics already exist": [ - "Одна или несколько мер уже существуют" + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Отображает один показатель, сопровождаемый простой линейной диаграммой, чтобы привлечь внимание к KPI наряду с его изменением с течением времени или другим измерением." ], - "One or more metrics are duplicated": [ - "Одна или несколько мер дублируются" + "Big Number with Trendline": ["Карточка с трендовой линией"], + "Whisker/outlier options": ["Настройки усов/выбросов"], + "Determines how whiskers and outliers are calculated.": [ + "Определяет формулу расчета \"усов\" и выбросов." ], - "One or more metrics do not exist": [ - "Одна или несколько мер не существуют" + "Min/max (no outliers)": ["Мин/макс (без выбросов)"], + "2/98 percentiles": ["2/98 перцентели"], + "9/91 percentiles": ["9/91 перцентели"], + "Categories to group by on the x-axis.": [ + "Категории для группировки по оси x" ], - "One or more parameters needed to configure a database are missing.": [ - "Один или несколько параметров, необходимых для настройки базы данных, отсутствуют" + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "" ], - "One or more parameters specified in the query are malformatted.": [ - "Один или несколько параметров, указанных в запросе, неверно отформатированы" + "ECharts": ["Графики Apache"], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ + "" ], - "One or more parameters specified in the query are missing.": [ - "Один или несколько параметров, указанных в запросе, отсутствуют" + "X AXIS TITLE MARGIN": [""], + "Y AXIS TITLE MARGIN": ["Отступ названия оси Y"], + "Logarithmic y-axis": ["Логарифмическая ось Y"], + "Truncate Y Axis": ["Урезать интервал оси Y"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Уменьшить интервал по умолчанию для оси Y. Необходимо задать минимальную и максимальную границы. Обратите внимание, что некоторые линии могут пропасть из области видимости." ], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "One ore more annotation layers failed loading.": [ - "Один или несколько слоев аннотации не удалось загрузить." + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Labels": ["Метки"], + "Whether to display the labels.": ["Отображать метки"], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Отображает изменение показателя по мере сужения воронки. Эта классическая диаграмма полезна для визуализации перехода между этапами процесса или жизненного цикла." ], - "Only SELECT statements are allowed against this database.": [ - "Только SELECT запросы доступны для этой базы данных." + "Funnel Chart": ["Воронка"], + "Sequential": ["Последовательность"], + "Columns to group by": ["Столбцы для группировки"], + "General": ["Основные свойства"], + "Min": ["Минимум"], + "Minimum value on the gauge axis": ["Минимальное значение индикатора"], + "Max": ["Максимум"], + "Maximum value on the gauge axis": ["Максимальное значение индикатора"], + "Start angle": ["Начальный угол"], + "Angle at which to start progress axis": [ + "Угол, с которого начинается ось прогресса" ], - "Only Total": ["Только общий итог"], - "Only `SELECT` statements are allowed": [ - "Доступны только SELECT запросы" + "End angle": ["Конечный угол"], + "Angle at which to end progress axis": [ + "Угол, под которым заканчивается ось прогресса" ], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [ - "Фильтр будет применён только к выбранным панелям" + "Font size": ["Размер шрифта"], + "Font size for axis labels, detail value and other text elements": [ + "Размер шрифта для меток осей, значений деталей и других текстовых элементов" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "Показывать только общий итог для столбцов с накоплением, и не показывать промежуточные итоги для каждой категории внутри столбца." + "Value format": ["Формат значения"], + "Additional text to add before or after the value, e.g. unit": [ + "Дополнительный текст перед значением, например, единица измерения" ], - "Only single queries supported": [ - "Поддерживаются только одиночные запросы" + "Show pointer": ["Показывать указатель"], + "Whether to show the pointer": ["Отображение указателя"], + "Animation": ["Анимация"], + "Whether to animate the progress and the value or just display them": [ + "Анимировать прогресс и значение или просто отображать их" ], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Доступные расширения файлов: %(allowed_extensions)s" + "Axis": ["Ось"], + "Show axis line ticks": ["Показывать деления на оси"], + "Whether to show minor ticks on the axis": [ + "Отображение мелких отметок на оси" ], - "Oops! An error occurred!": ["Произошла ошибка!"], - "Opacity": ["Прозрачность"], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [ - "Непрозрачность всех кластеров, точек и меток. Между 0 и 1." + "Show split lines": ["Показывать разделительные линии"], + "Whether to show the split lines on the axis": [ + "Отображение линий разделения на оси" ], - "Opacity of area chart.": ["Непрозрачность диаграммы областей"], - "Opacity, expects values between 0 and 100": [ - "Непрозрачность, принимаются значения от 0 до 100" + "Split number": ["Количество разделителей"], + "Number of split segments on the axis": [ + "Количество разделенных сегментов на индикаторе" ], - "Open Datasource tab": ["Открыть вкладку источника данных"], - "Open in SQL Lab": ["Открыть в SQL редакторе"], - "Open query in SQL Lab": ["Открыть в SQL редакторе"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "Работа с базой данных в асинхронном режиме означает, что запросы исполняются на удалённых воркерах, а не на веб-сервере Superset. Это подразумевает, что у вас есть установка с воркерами Celery. Обратитесь к документации по настройке за дополнительной информацией." + "Progress": ["Прогресс"], + "Show progress": ["Показывать прогресс"], + "Whether to show the progress of gauge chart": [""], + "Overlap": ["Перекрывание"], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "Индикатор прогресса накладывается при наличии нескольких групп данных" ], - "Operator": ["Оператор"], - "Operator undefined for aggregator: %(name)s": [ - "Оператор не определен для агрегатора: %(name)s" + "Round cap": ["Закругление на концах"], + "Style the ends of the progress bar with a round cap": [ + "Оформление концов индикатора круглыми заглушками" ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Необязательное содержимое CA_BUNDLE для валидации HTTPS запросов. Доступно только в определенных драйверах баз данных" + "Intervals": ["Интервалы"], + "Interval bounds": ["Граница интервала"], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Границы интервала, разделенные запятой, например, 2,4,5 для интервалов 0-2, 2-4 и 4-5. Последнее число должно быть равно заданному максиму." ], - "Optional d3 date format string": ["Формат временной строки"], - "Optional d3 number format string": ["Формат числовой строки"], - "Optional name of the data column.": [ - "Необязательное имя столбца данныхэ" + "Interval colors": ["Цвета интервала"], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Номера цветов, разделенные запятой, например, 1,2,4. Целые числа задают цвета из выбранной цветовой схемы и начинаются с 1 (не с нуля). Длина должна соответствовать границам интервала." ], - "Optional warning about use of this metric": [ - "Необязательное предупреждение об использовании этой меры" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Использует индикатор для демонстрации прогресса показателя в достижении цели. Положение циферблата показывает ход выполнения, а конечное значение на индикаторе представляет целевое значение." ], - "Options": ["Опции"], - "Or choose from a list of other databases we support:": [ - "Или выберите из списка других поддерживаемых баз данных:" + "Gauge Chart": ["Индикаторная диаграмма"], + "Name of the source nodes": ["Имя исходных вершин"], + "Name of the target nodes": ["Имя конечных вершин"], + "Source category": ["Исходная категория"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Категория исходных вершин предназначена для задания цветов. Если вершина связана более, чем с одной категорией, только первая будет использована." ], - "Order by entity id": [""], - "Order results by selected columns": [ - "Упорядочить результаты по выбранным столбцам" + "Target category": ["Целевая категория"], + "Category of target nodes": ["Категория целевых вершин"], + "Chart options": ["Свойства графика"], + "Layout": ["Оформление"], + "Graph layout": ["Формат сетевого графика"], + "Force": ["Силовой алгоритм"], + "Layout type of graph": [""], + "Edge symbols": ["Оформление ребер"], + "Symbol of two ends of edge line": [""], + "None -> None": ["Ничего -> Ничего"], + "None -> Arrow": ["Ничего -> Стрелка"], + "Circle -> Arrow": ["Круг -> Стрелка"], + "Circle -> Circle": ["Круг -> Круг"], + "Enable node dragging": ["Разрешить перемещение вершин"], + "Whether to enable node dragging in force layout mode.": [ + "Включить перемещение вершин в режиме силового алгоритма." ], - "Ordering": ["Упорядочивание"], - "Orientation": ["Ориентация"], - "Orientation of bar chart": ["Ориентация диаграммы"], - "Orientation of tree": ["Ориентация дерева"], - "Original": ["Исходные данные"], - "Original table column order": [ - "Расположение столбцов как в исходной таблице" + "Enable graph roaming": ["Включить перемещение по графику"], + "Disabled": ["Отключено"], + "Scale only": ["Только масштабирование"], + "Move only": ["Только перемещение"], + "Scale and Move": ["Масштабирование и перемещение"], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": ["Режим выбора вершин"], + "Single": ["Один"], + "Multiple": ["Несколько"], + "Allow node selections": ["Разрешить выбор вершин"], + "Label threshold": ["Порог метки"], + "Minimum value for label to be displayed on graph.": [ + "Минимальное значение метки для отображения на графике." ], - "Original value": ["Исходное значение"], - "Other": ["Прочее"], - "Outdoors": ["Туристический режим"], - "Outer Radius": ["Внешний радиус"], - "Outer edge of Pie chart": ["Внешний радиус круговой диаграммы"], - "Overlap": ["Перекрывание"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Наложение одной или нескольких временных рядов из относительного периода времени." + "Node size": ["Размер вершины"], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "Медианный размер вершины, самая большая вершина будет в 4 раза больше самой маленькой." ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ - "" + "Edge width": ["Толщина ребра"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Медианная толщина ребра, самое толстое ребро будет в 4 раза толще самой тонкой." ], - "Override time grain": ["Переопределить единицу времени"], - "Override time range": ["Переопределить временной интервал"], - "Overwrite": ["Перезаписать"], - "Overwrite & Explore": ["Перезаписать и исследовать"], - "Overwrite Dashboard [%s]": ["Перезаписать дашборд [%s]"], - "Overwrite Duplicate Columns": ["Перезаписать повторяющиеся столбцы"], - "Overwrite existing": ["Перезаписать существующий"], - "Overwrite text in the editor with a query on this table": [ - "Вставить этот запрос в редактор SQL" + "Edge length": ["Длина ребер"], + "Edge length between nodes": ["Длина ребер между вершинами"], + "Gravity": ["Гравитация"], + "Strength to pull the graph toward center": [ + "Сила притяжения вершин к центру" ], - "Owned Created or Favored": [""], - "Owner": ["Владелец"], - "Owners": ["Владельцы"], - "Owners are invalid": ["Неверный список владельцев"], - "Owners is a list of users who can alter the dashboard.": [ - "Владельцы – это список пользователей, которые могут изменять дашборд." + "Repulsion": ["Отталкивание"], + "Repulsion strength between nodes": ["Сила отталкивания вершин"], + "Friction": ["Трение"], + "Friction between nodes": ["Сила трения между вершинами"], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Владельцы – это список пользователей, которые могут изменять дашборд. Можно искать по имени или никнейму." + "Graph Chart": ["Сетевой график"], + "Structural": ["Структура"], + "Whether to sort descending or ascending": [ + "Сортировка по убыванию или по возрастанию" ], - "Page length": ["Размер страницы"], - "Paired t-test Table": ["Таблица парного t-теста"], - "Pandas resample method": [ - "Метод ресемплирования данных библиотеки Pandas" + "Smooth Line": ["Гладкая линия"], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": ["Использовать накопление"], + "Area chart": ["Диаграмма с областями"], + "Draw area under curves. Only applicable for line types.": [ + "Отобразить область под кривыми. Применимо только для линий\"" ], - "Pandas resample rule": [ - "Правило ресемплирования данных библиотеки Pandas" + "Opacity of area chart.": ["Непрозрачность диаграммы областей"], + "Marker": ["Маркер"], + "Draw a marker on data points. Only applicable for line types.": [ + "Отобразить маркеры на данных. Применимо только для линий." ], - "Parallel Coordinates": [""], - "Parameter error": ["Ошибка параметра"], - "Parameters": ["Параметры"], - "Parameters ": ["Параметры "], - "Parameters related to the view and perspective on the map": [""], - "Parent": ["Родитель"], - "Parse Dates": ["Парсинг дат"], - "Part of a Whole": ["Покомпонентное сравнение"], - "Partition Limit": ["Количество разбиений"], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ - "" + "Marker size": ["Размер маркера"], + "Size of marker. Also applies to forecast observations.": [ + "Размер маркера. Также применяется к прогнозным значениям." ], - "Password": ["Пароль"], - "Paste Private Key here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": ["Паттерн"], - "Percent Change": ["Процентное изменение"], - "Percentage": ["Процентная доля"], - "Percentage change": ["Процентное изменение"], - "Percentage metrics": ["Процентные меры"], - "Percentage threshold": ["Процентный порог"], - "Percentages": ["Проценты"], - "Performance": ["Производительность"], - "Period average": ["Среднее за период"], - "Periods": ["Периоды"], - "Periods must be a whole number": ["Периоды должны быть целым числом"], - "Person or group that has certified this chart.": [ - "Лицо или группа, которые утвердили этот график" + "Primary": ["Первичная"], + "Secondary": ["Вторичная"], + "Primary or secondary y-axis": ["Первичная или вторичная ось Y"], + "Shared query fields": ["Поля общедоступного запроса"], + "Query A": ["Запрос А"], + "Advanced analytics Query A": ["Расширенный анализ: запрос А"], + "Query B": ["Запрос Б"], + "Advanced analytics Query B": ["Расширенный анализ: запрос Б"], + "Data Zoom": ["Масштабирование графика"], + "Enable data zooming controls": [ + "Включить элементы управления масштабированием данных" ], - "Person or group that has certified this dashboard.": [ - "Лицо или группа, которые утвердили этот дашборд" + "Minor Split Line": ["Разметка полотна линиями"], + "Draw split lines for minor y-axis ticks": [ + "Рисует разделительные линии для небольших отметок оси Y" ], - "Person or group that has certified this metric": [ - "Лицо или группа, которые утвердили этот показатель" + "Primary y-axis format": ["Формат первичной оси Y"], + "Logarithmic scale on primary y-axis": [ + "Логарифмическая шкала для главной оси Y" ], - "Physical": ["Физический"], - "Physical (table or view)": ["Физический (таблица или представление)"], - "Physical dataset": ["Физический датасет"], - "Pick a dimension from which categorical colors are defined": [ - "Выберите измерение, на основе которого определяются категориальные цвета" + "Secondary y-axis format": ["Формат вторичной оси Y"], + "Secondary y-axis title": ["Название вторичной оси Y"], + "Logarithmic scale on secondary y-axis": [ + "Логарифмическая шкала для вторичной оси Y" ], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Выберите степень детализации в разделе Время или снимите флажок \"Включить время\"." + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "" ], - "Pick a metric for x, y and size": ["Выберите меру для x, y и размера"], - "Pick a metric to display": ["Выберите меру для отображения"], - "Pick a metric!": ["Выберите меру!"], - "Pick a name to help you identify this database.": [ - "Выберите имя для базы данных." + "Mixed Chart": ["Смешанный график"], + "Put the labels outside of the pie?": [ + "Вынести метки за пределы диаграммы" ], - "Pick a nickname for how the database will display in Superset.": [ - "Выберите имя для базы данных, которое будет отображаться в Суперсете." + "Label Line": ["Линия метки"], + "Draw line from Pie to label when labels outside?": [ + "Проводит линию от диаграммы к метке, когда метки находятся снаружи" ], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "Выберите временную детализацию для вашего временного ряда" + "Show Total": ["Показать общий итог"], + "Whether to display the aggregate count": [ + "Отображать совокупное количество" ], - "Pick a title for you annotation.": [ - "Выберите название для вашей аннотации" + "Pie shape": ["Форма круговой диаграммы"], + "Outer Radius": ["Внешний радиус"], + "Outer edge of Pie chart": ["Внешний радиус круговой диаграммы"], + "Inner Radius": ["Внутренний радиус"], + "Inner radius of donut hole": ["Внутренний радиус отверстия для кольца"], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Классическая круговая/кольцевая диаграмма." ], - "Pick at least one field for [Series]": [""], - "Pick at least one metric": ["Выберите хотя бы одну меру"], - "Pick exactly 2 columns as [Source / Target]": [""], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "Выберите один или несколько столбцов, которые должны отображаться в аннотации. Если вы не выберите столбец, все столбцы будут отображены." + "Pie Chart": ["Круговая диаграмма"], + "Total: %s": ["Итого: %s"], + "The maximum value of metrics. It is an optional configuration": [ + "Максимальное значение мер. Это необязательная настройка" ], - "Pick your favorite markup language": [ - "Выберите свой любимый язык разметки" + "Label position": ["Положение метки"], + "Radar": ["Радар"], + "Customize Metrics": ["Настроить меры"], + "Further customize how to display each metric": [ + "Дальнейшая настройка отображения каждой меры" ], - "Pie Chart": ["Круговая диаграмма"], - "Pie shape": ["Форма круговой диаграммы"], - "Pin": ["Закрепить"], - "Pivot Table": ["Сводная таблица"], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pivoted": ["Сводные данные"], - "Pixel height of each series": ["Высота каждого ряда (в пикселях)"], - "Pixels": ["Пиксели"], - "Plain": ["Отобразить все"], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [ - "Пожалуйста, примените изменения фильтров" + "Circle radar shape": ["Круглая форма радара"], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "" ], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "Пожалуйста, проверьте ваш запрос и подтвердите, что все параметры шаблона заключены в двойные фигурные скобки, например, \"{{ from_dttm }}\". Затем попробуйте повторно выполнить запрос." + "Radar Chart": ["Диаграмма радар"], + "Primary Metric": ["Основная мера"], + "The primary metric is used to define the arc segment sizes": [ + "Основная мера используется для определения размера сегмента дуги" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "Пожалуйста, проверьте ваш запрос на синтаксические ошибки возле символа \"%(syntax_error)s\". Затем выполните запрос заново." + "Secondary Metric": ["Вторичная мера"], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "[необязательно] вторичная мера используется для определения цвета как доли по отношению к основной мере. Если не выбрано, цвет задается согласно имени категории" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "Пожалуйста, проверьте ваш запрос на наличие синтаксических ошибок рядом с \"%(server_error)s\". Затем выполните запрос заново" + "When only a primary metric is provided, a categorical color scale is used.": [ + "Когда предоставляется только основная мера, используется категориальная цветовая схема." ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ - "Пожалуйста, проверьте параметры вашего шаблона на наличие синтаксических ошибок и убедитесь, что они совпадают с вашим SQL-запросом и заданными параметрами. Затем попробуйте выполнить свой запрос еще раз." + "When a secondary metric is provided, a linear color scale is used.": [ + "Когда предоставляется вторичная мера, используется линейная цветовая схема." ], - "Please choose different metrics on left and right axis": [ - "Выберите разные меры для левой и правой осей" + "Hierarchy": ["Иерархия"], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "" ], - "Please confirm": ["Пожалуйста, подтвердите действие"], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [ - "Введите SQLAlchemy URI для тестирования" + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "" ], - "Please filter set name": ["Введите имя набора фильтров"], - "Please re-enter the password.": ["Пожалуйста, введите пароль еще раз"], - "Please re-export your file and try importing again": [""], - "Please reach out to the Chart Owner for assistance.": [ - "Пожалуйста, обратитесь к создателю графика за помощью.", - "Пожалуйста, обратитесь к создателям графика за помощью.", - "Пожалуйста, обратитесь к создателям графика за помощью." + "Sunburst Chart": ["Диаграмма Солнечные лучи"], + "Multi-Levels": ["Многоуровневый"], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "" ], - "Please save the query to enable sharing": [ - "Пожалуйста, сохраните запрос, чтобы включить функцию \"поделиться\"" + "Generic Chart": ["Общая диаграмма"], + "zoom area": [""], + "restore zoom": ["восстановить масштабирование"], + "Series Style": ["Стиль категорий"], + "Area chart opacity": ["Непрозрачность диаграммы с областями"], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": ["Размер маркера"], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Диаграммы с областями похожи на линейные диаграммы в том смысле, что они отображают показатели с одинаковым масштабом, но диаграммы областей накладывают эти показатели друг на друга." ], - "Please save your chart first, then try creating a new email report.": [ - "Пожалуйста, сначала сохраните график перед тем, как создавать новую рассылку." + "Area Chart": ["Диаграмма с областями"], + "Axis Title": ["Название оси"], + "AXIS TITLE MARGIN": ["ОТСТУП ЗАГОЛОВКА ОСИ"], + "AXIS TITLE POSITION": ["ПОЛОЖЕНИЕ ЗАГОЛОВКА ОСИ"], + "Axis Format": ["Формат Оси"], + "Logarithmic axis": ["Логарифмическая ось"], + "Draw split lines for minor axis ticks": [ + "Рисует разделительные линии для небольших отметок оси" ], - "Please save your dashboard first, then try creating a new email report.": [ - "Пожалуйста, сначала сохраните дашборд перед тем, как создавать новую рассылку." + "Truncate Axis": ["Настройка интервала оси"], + "It’s not recommended to truncate axis in Bar chart.": [ + "Не рекомендуется урезать интервал оси в столбчатой диаграмме" ], - "Please select both a Dataset and a Chart type to proceed": [ - "Пожалуйста, для продолжения выберите и датасет, и тип графика" + "Axis Bounds": ["Границы оси"], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Границы для оси. Если оставить поле пустым, границы динамически определяются на основе минимального/максимального значения данных. Обратите внимание, что эта функция только расширит диапазон осей. Она не изменит размер графика." ], - "Please use 3 different metric labels": [""], - "Plot the distance (like flight paths) between origin and destination.": [ + "Chart Orientation": ["Ориентация графика"], + "Bar orientation": ["Направление столбцов"], + "Horizontal": ["Горизонтально"], + "Orientation of bar chart": ["Ориентация диаграммы"], + "Bar Charts are used to show metrics as a series of bars.": [ + "Столбчатые диаграммы используются для отображения показателей в виде серии столбцов." + ], + "Bar Chart": ["Столбчатая диаграмма"], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Линейная диаграмма используется для визуализации показателей, полученных в рамках одной категории. Линейная диаграмма - это тип диаграммы, который отображает информацию в виде ряда точек данных, соединенных прямыми отрезками. Это базовый тип диаграммы, распространенный во многих областях." + ], + "Line Chart": ["Линейный график"], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Scatter Plot": ["Точечная диаграмма"], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Plugins": ["Плагины"], - "Point Color": ["Цвет маркера"], - "Point Radius": ["Радиус маркера"], - "Point Radius Scale": ["Шкала радиуса маркера"], - "Point Radius Unit": ["Единица измерения радиуса маркера"], - "Point Size": ["Размер маркера"], - "Point Unit": ["Единица измерения маркера"], - "Point to your spatial columns": ["Указание на столбцы с расположением"], - "Points": ["Маркеры"], - "Points and clusters will update as the viewport is being changed": [ - "Точки и кластеры будут обновляться по мере изменения области просмотра" + "Start": ["Начало"], + "Middle": ["Середина"], + "End": ["Конец"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Определяет, должен ли шаг отображаться в начале, середине или конце между двумя точками данных" ], - "Polygon Settings": ["Настройки полигона"], - "Popular": ["Популярно"], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port": ["Порт"], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "Порт %(port)s хоста \"%(hostname)s\" отказал в подключении." + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "" ], - "Port out of range 0-65535": [""], + "Id": ["ID"], + "Name of the id column": ["Имя столбца id"], + "Parent": ["Родитель"], + "Name of the column containing the id of the parent node": [ + "Имя столбца, содержащее id родительской вершины" + ], + "Optional name of the data column.": [ + "Необязательное имя столбца данныхэ" + ], + "Root node id": [""], + "Id of root node of the tree.": ["Id корневой вершины дерева."], + "Metric for node values": ["Мера для значений вершин"], + "Tree layout": ["Оформление дерева"], + "Layout type of tree": [""], + "Tree orientation": ["Ориентация дерева"], + "Left to Right": ["Слева направо"], + "Right to Left": ["Справа налево"], + "Top to Bottom": ["Сверху вниз"], + "Bottom to Top": ["Снизу вверх"], + "Orientation of tree": ["Ориентация дерева"], + "Node label position": ["Расположение метки вершины"], + "left": ["слева"], + "top": ["сверху"], + "right": ["справа"], + "bottom": ["снизу"], + "Child label position": ["Положение метки дочернего элемента"], "Position of child node label on tree": [ "Расположение метки дочерней вершины на дереве" ], - "Position of column level subtotal": [ - "Расположение промежуточного итога на уровне столбца" + "Emphasis": ["Акцент"], + "ancestor": ["предок"], + "descendant": ["потомок"], + "Which relatives to highlight on hover": ["Подсвечивается при наведении"], + "Symbol": [""], + "Empty circle": ["Пустой круг"], + "Circle": ["Круг"], + "Rectangle": ["Прямоугольник"], + "Triangle": ["Треугольник"], + "Diamond": ["Ромб"], + "Pin": ["Закрепить"], + "Arrow": ["Стрела"], + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Визуализирует несколько уровней иерархии, используя древовидную структуру." ], - "Position of row level subtotal": [ - "Расположение промежуточного итога на уровне строки" + "Tree Chart": ["Древовидная диаграмма"], + "Show Upper Labels": ["Показать верхние метки"], + "Show labels when the node has children.": [ + "Показывать метки, когда у вершины есть дочерние элементы." ], - "Powered by Apache Superset": ["На базе Apache Superset"], - "Pre-filter": ["Предварительная фильтрация"], - "Pre-filter available values": [ - "Предварительно выбрать доступные значения для фильтра" + "Key": ["Ключ"], + "Treemap": ["Плоское дерево"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "" ], - "Pre-filter is required": ["Предварительная фильтрация обязательна"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "Predictive": ["Прогноз"], - "Predictive Analytics": ["Предиктивная аналитика"], - "Preview": ["Предпросмотр"], - "Preview: `%s`": ["Предпросмотр «%s»"], - "Previous": ["Предыдущий"], - "Previous Line": ["Предыдущая строка"], - "Primary": ["Первичная"], - "Primary Metric": ["Основная мера"], - "Primary key": ["Первичный ключ"], - "Primary or secondary y-axis": ["Первичная или вторичная ось Y"], - "Primary y-axis format": ["Формат первичной оси Y"], - "Private Key": ["Приватный ключ"], - "Private Key & Password": ["Приватный ключ и пароль"], - "Private Key Password": ["Пароль приватного ключа"], - "Proceed": ["Продолжить"], - "Profile": ["Профиль"], - "Profile picture provided by Gravatar": [ - "Изображение профиля, сгенерированное сервисом Gravatar" + "page_size.all": [""], + "Loading...": ["Загрузка..."], + "Write a handlebars template to render the data": [""], + "Handlebars": ["Handlebars"], + "must have a value": ["значение обязательно"], + "Handlebars Template": ["Шаблон Handlebars"], + "A handlebars template that is applied to the data": [ + "Шаблон handlebars, примененный к данным" ], - "Progress": ["Прогресс"], - "Progressive": ["Постепенный"], - "Propagate": [""], - "Proportional": ["Пропорция"], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": ["Опубликовано"], - "Purple": ["Фиолетовый"], - "Put labels outside": ["Вынести метки наружу"], - "Put the labels outside of the pie?": [ - "Вынести метки за пределы диаграммы" + "Include time": ["Включить время"], + "Whether to include the time granularity as defined in the time section": [ + "Добавляет столбец даты/времени с группировкой дат, как определено в разделе Время" ], - "Put the labels outside the pie?": ["Вынести метки за пределы диаграммы"], - "Put your code here": [ - "Введите произвольный текст в формате html или markdown" + "Percentage metrics": ["Процентные меры"], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "" ], - "Python datetime string pattern": ["Шаблон строки даты и времени Python"], - "QUERY DATA IN SQL LAB": [""], - "Quarter": ["Квартал"], - "Quarters %s": ["Кварталов %s"], - "Query": ["Запрос"], - "Query %s: %s": ["Запрос %s: %s"], - "Query A": ["Запрос А"], - "Query B": ["Запрос Б"], - "Query History": ["История запросов"], - "Query does not exist": ["Запрос не существует"], - "Query history": ["История запросов"], - "Query imported": ["Запрос импортирован"], - "Query in a new tab": ["Запрос в отдельной вкладке"], - "Query is too complex and takes too long to run.": [ - "Запрос слишком тяжелый для выполнения и займет много времени." + "Show totals": ["Показывать общий итог"], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Показать общие итоговые значения выбранных показателей. Обратите внимание, что ограничение количества строк не применяется к результату." ], - "Query mode": ["Режим запроса"], - "Query name": ["Имя запроса"], - "Query preview": ["Предпросмотр запроса"], - "Query was stopped": ["Запрос прерван"], - "Query was stopped.": ["Запрос прерван"], - "RANGE TYPE": ["ТИП ИНТЕРВАЛА"], - "RGB Color": ["Цвет RGB"], - "Radar": ["Радар"], - "Radar Chart": ["Диаграмма радар"], - "Radar render type, whether to display 'circle' shape.": [""], - "Radius in kilometers": ["Радиус в километрах"], - "Radius in meters": ["Радиус в метрах"], - "Radius in miles": ["Радиус в милях"], - "Ran %s": ["Запущен %s"], - "Range": ["Интервал"], - "Range filter": ["Диапазон"], - "Range filter plugin using AntD": [""], - "Range labels": ["Метки диапазона"], - "Ranges": ["Диапазоны"], - "Ranges to highlight with shading": [ - "Диапазоны для выделения с помощью затенения" + "Ordering": ["Упорядочивание"], + "Order results by selected columns": [ + "Упорядочить результаты по выбранным столбцам" ], - "Ranking": ["Ранжирование"], - "Ratio": ["Отношение"], - "Raw records": ["Сырые записи"], - "Rebuild": [""], - "Recent activity": ["Последние действия"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Недавно созданные графики, дашборды и сохраненные запросы" + "Sort descending": ["Сортировка по убыванию"], + "Server pagination": ["Серверная пагинация"], + "Enable server side pagination of results (experimental feature)": [ + "Включить серверную пагинацию результатов (экспериментально)" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Недавно измененные графики, дашборды и сохраненные запросы" + "Server Page Length": ["Серверный размер страницы"], + "Rows per page, 0 means no pagination": [ + "Строчек на странице, 0 означает все строки" ], - "Recently modified": ["Измененные недавно"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Недавно просмотренные графики, дашборды и сохраненные запросы" + "Query mode": ["Режим запроса"], + "Group By, Metrics or Percentage Metrics must have a value": [ + "Измерения, Меры или Процентные меры должны иметь значение" ], - "Recents": ["Недавние"], - "Recipients are separated by \",\" or \";\"": [ - "Получатели, разделенные \",\" или \";\"" + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": ["CSS стили"], + "CSS applied to the chart": ["CSS, примененный к графику"], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [ + "Столбцы для группировки по столбцам" ], - "Recommended tags": ["Рекомендованные теги"], - "Record Count": ["Кол-во записей"], - "Rectangle": ["Прямоугольник"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "" + "Rows": ["Строки"], + "Columns to group by on the rows": ["Столбцы для группировки по строкам"], + "Apply metrics on": ["Применить меры к"], + "Use metrics as a top level group for columns or for rows": [""], + "Cell limit": ["Лимит ячеек"], + "Limits the number of cells that get retrieved.": [ + "Ограничивает количество извлекаемых ячеек" ], - "Redo the action": ["Повторить действие"], - "Reduce X ticks": ["Уменьшить кол-во делений оси X"], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ - "Уменьшает количество отрисованных делений на оси X. Если флажок установлен, некоторые метки могут быть не отображены. " + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Мера, используемая для определения того, как сортируются верхние категории, если присутствует ограничение по категории или ячейке. Если не определено, возвращается к первой мере (где это уместно)." ], - "Refer to the": ["Обратитесь к"], - "Referenced columns not available in DataFrame.": [""], - "Refetch results": ["Выполнить запрос повторно"], - "Refresh": ["Обновить"], - "Refresh dashboard": ["Обновить дашборд"], - "Refresh frequency": ["Частота обновления"], - "Refresh interval": ["Интервал обновления"], - "Refresh interval saved": ["Интервал обновления сохранен"], - "Refresh table list": ["Обновить список таблиц"], - "Refresh tables": ["Обновить таблицы"], - "Refresh the default values": ["Обновить значения по умолчанию"], - "Refreshing charts": ["Обновление графиков"], - "Refreshing columns": ["Обновление столбцов"], - "Relational": ["Относительный"], - "Relationships between community channels": [""], - "Relative Date/Time": ["Относительная дата/время"], - "Relative period": ["Относительный период"], - "Relative quantity": ["Относительное количество"], - "Reload": ["Обновить"], - "Remind me in 24 hours": ["Напомните мне через 24 часа"], - "Remove": ["Удалить"], - "Remove invalid filters": ["Удалить недействующие фильтры"], - "Remove item": ["Удалить элемент"], - "Remove query from log": ["Удалить запрос из истории"], - "Remove table preview": ["Убрать предпросмотр таблицы"], - "Removed columns: %s": ["Удалённые столбцы: %s"], - "Rename tab": ["Переименовать вкладку"], - "Rendering": ["Отрисовка"], - "Replace": ["Заменить"], - "Report": ["Отчет"], - "Report Name": ["Имя отчета"], - "Report Schedule could not be created.": [ - "Невозможно удалить расписание отчета." + "Aggregation function": ["Функция агрегирования"], + "Count": ["Количество"], + "Count Unique Values": ["Количество уникальных значений"], + "List Unique Values": ["Список уникальных значений"], + "Sum": ["Сумма"], + "Average": ["Среднее"], + "Median": ["Медиана"], + "Sample Variance": ["Дисперсия"], + "Sample Standard Deviation": ["Стандартное отклонение"], + "Minimum": ["Минимум"], + "Maximum": ["Максимум"], + "First": ["Первый"], + "Last": ["Последний"], + "Sum as Fraction of Total": ["Сумма как доля целого"], + "Sum as Fraction of Rows": ["Сумма как доля строк"], + "Sum as Fraction of Columns": ["Сумма как доля столбцов"], + "Count as Fraction of Total": ["Количество, как доля от целого"], + "Count as Fraction of Rows": ["Количество, как доля от строк"], + "Count as Fraction of Columns": ["Количество, как доля от столбцов"], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "Агрегатная функция, применяемая для сводных таблиц и вычислении суммарных значений." ], - "Report Schedule could not be deleted.": [ - "Невозможно удалить расписание отчета." + "Show rows total": ["Показать общий итог по строкам"], + "Display row level total": ["Отображать общий итог по строке"], + "Show columns total": ["Показать общий итог по столбцам"], + "Display column level total": ["Отображать общий итог по столбцу"], + "Transpose pivot": ["Транспонировать таблицу"], + "Swap rows and columns": ["Поменять местами строки и столбцы"], + "Combine metrics": ["Объединить меры"], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Отображать меры рядом в каждом столбце, в отличие от отображения каждого столбца рядом для каждой меры." ], - "Report Schedule could not be updated.": [ - "Невозможно обновить расписание отчета" + "D3 time format for datetime columns": [ + "Формат времени D3 для столбцов типа дата/время" ], - "Report Schedule delete failed.": [ - "Ошибка при удалении расписания отчета." + "Sort rows by": ["Сортировка строк по"], + "key a-z": ["По алфавиту А-Я"], + "key z-a": ["По алфавиту Я-А"], + "value ascending": ["Значение по возрастанию"], + "value descending": ["Значение по убыванию"], + "Change order of rows.": ["Сменить порядок строк."], + "Available sorting modes:": ["Доступные режимы сортировки:"], + "By key: use row names as sorting key": [ + "По ключу: использовать имена строк как ключ сортировки" ], - "Report Schedule execution failed when generating a csv.": [ - "Возникла ошибка при создании csv для отправки отчета" + "By value: use metric values as sorting key": [ + "По значению: использовать значения мер как ключ сортировки" ], - "Report Schedule execution failed when generating a dataframe.": [ - "Возникла ошибка при создании датафрейма для отправки отчета" + "Sort columns by": ["Сортировать столбцы по"], + "Change order of columns.": ["Сменить порядок столбцов."], + "By key: use column names as sorting key": [ + "По ключу: использовать имена столбцов как ключ сортировки" ], - "Report Schedule execution failed when generating a screenshot.": [ - "Возникла ошибка при создании скриншота для отправки отчета" + "Rows subtotal position": ["Расположение строк подытогов"], + "Position of row level subtotal": [ + "Расположение промежуточного итога на уровне строки" ], - "Report Schedule execution got an unexpected error.": [ - "Возникла неожиданная ошибка при отправке отчета" + "Columns subtotal position": ["Расположение столбцов подытогов"], + "Position of column level subtotal": [ + "Расположение промежуточного итога на уровне столбца" ], - "Report Schedule is still working, refusing to re-compute.": [ - "Планировщик отчетов все еще работает, не имея возможности отправить отчет" - ], - "Report Schedule log prune failed.": [""], - "Report Schedule not found.": ["Расписание отчета не найдено"], - "Report Schedule parameters are invalid.": [ - "Параметры расписания отчета неверны." + "Conditional formatting": ["Условное форматирование"], + "Apply conditional color formatting to metrics": [ + "Применить условное цветовое форматирование к мерам" ], - "Report Schedule reached a working timeout.": [ - "Достигнут таймаут для отчета" + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "Используется для обобщения набора данных путем группировки нескольких показателей по двум осям. Примеры: показатели продаж по регионам и месяцам, задачи по статусу и назначенному лицу, активные пользователи по возрасту и местоположению." ], - "Report Schedule state not found": [ - "Состояние расписания отчета не найдено" + "Pivot Table": ["Сводная таблица"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": ["Неизвестный формат ввода"], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "Shift + Click to sort by multiple columns": [ + "Shift + Нажать для сортировки по нескольким столбцам" ], - "Report a bug": ["Сообщить об ошибке"], - "Report failed": ["Рассылка не удалась"], - "Report name": ["Имя отчета"], - "Report schedule": ["Расписание отчета"], - "Report schedule client error": [ - "Возникла ошибка расписания отчета на стороне клиента" + "Totals": ["Общая сумма"], + "Timestamp format": ["Формат даты и времени"], + "Page length": ["Размер страницы"], + "Search box": ["Строка поиска"], + "Whether to include a client-side search box": [ + "Отображение строки поиска" ], - "Report schedule system error": [ - "Возникла ошибка расписания отчета на стороне системы" + "Cell bars": ["Гистограммы в ячейках"], + "Whether to display a bar chart background in table columns": [ + "Отображать гистограмм в колонках таблицы" ], - "Report schedule unexpected error": [ - "Неожиданная ошибка расписания отчета" + "Align +/-": ["Выровнять +/-"], + "Whether to align background charts with both positive and negative values at 0": [ + "" ], - "Report sending": ["Отчет выполняется"], - "Report sent": ["Отчет отправлен"], - "Report updated": ["Отчет обновлен"], - "Reports": ["Отчеты"], - "Repulsion": ["Отталкивание"], - "Repulsion strength between nodes": ["Сила отталкивания вершин"], - "Request Permissions": [""], - "Request is incorrect: %(error)s": ["Неверный запрос: %(error)s"], - "Request is not JSON": ["Запрос не является JSON"], - "Request missing data field.": ["В запросе отсутствует поле с данными."], - "Request timed out": ["Вышло время запроса"], - "Required": ["Обязательно"], - "Required control values have been removed": [ - "Обязательные значения были удалены" + "Color +/-": ["Раскрасить +/-"], + "Allow columns to be rearranged": ["Разрешить смену столбцов местами"], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Разрешить конечному пользователю перемещать столбцы, удерживая их заголовки. Заметьте, такие изменения будут нейтрализованы при следующем обращении к дашборду." ], - "Resample": ["Ресемплирование (изменение частоты данных)"], - "Resample method should in ": [""], - "Resample operation requires DatetimeIndex": [ - "Для ресемплирования требуется индекс формата дата/время" + "Customize columns": ["Настроить столбцы"], + "Further customize how to display each column": [ + "Дальнейшая настройка отображения каждого столбца" ], - "Reset": ["Сбросить"], - "Reset state": ["Сбросить текущее состояние"], - "Resource already has an attached report.": [ - "Для этого компонента уже создан отчет." + "Apply conditional color formatting to numeric columns": [ + "Применить условное цветовое форматирование к столбцам" ], - "Resource was not found.": ["Источник не был найден."], - "Restore Filter": ["Восстановить фильтр"], - "Results": ["Результаты"], - "Results %s": ["Результаты %s"], - "Results backend is not configured.": ["Results backend не нестроен"], - "Results backend needed for asynchronous queries is not configured.": [ - "Сервер, необходимый для асинхронных запросов, не настроен." + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Классическое представление таблицы. Используйте таблицы для демонстрации отображения исходных или агрегированных данных." ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": ["Поменять местами широту и долготу"], - "Reverse lat/long ": ["Поменять местами широту и долготу"], - "Rich Tooltip": ["Расширенная всплывающая подсказка"], - "Rich tooltip": ["Расширенная всплывающая подсказка"], - "Right": ["Справа"], - "Right Axis Format": ["Формат правой оси"], - "Right Axis Metric": ["Мера для правой оси"], - "Right axis metric": ["Мера для правой оси"], - "Right to Left": ["Справа налево"], - "Right value": ["Правое значение"], - "Right-click on a dimension value to drill to detail by that value.": [ - "" + "Word Cloud": ["Облако слов"], + "Minimum Font Size": ["Минимальный размер шрифта"], + "Font size for the smallest value in the list": [ + "Размер шрифта для наименьшего значения в списке" ], - "Role": ["Роль"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "Роль %(r)s была расширена для предоставления доступа к источнику данных %(ds)s" + "Maximum Font Size": ["Максимальный размер шрифта"], + "Font size for the biggest value in the list": [ + "Размер шрифта для наибольшего значения в списке" ], - "Roles": ["Роли"], - "Roles to grant": ["Роли для предоставления"], - "Rolling Function": ["Скользящая средняя"], - "Rolling Window": ["Скользящее окно"], - "Rolling function": ["Скользящая средняя"], - "Rolling window": ["Скользящее окно"], - "Root certificate": ["Корневой сертификат"], - "Root node id": [""], - "Rotate axis label": ["Повернуть метки осей"], - "Rotate x axis label": ["Повернуть метку оси X"], + "Word Rotation": ["Поворот текста"], + "random": ["случайно"], "Rotation to apply to words in the cloud": [ "Вращение для применения к словам в облаке" ], - "Round cap": ["Закругление на концах"], - "Row": ["Строка"], - "Row Level Security": ["Безопасность на уровне строк"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ - "Строка, содержащая заголовки для использования в качестве имен столбцов (0, если первая строка в данных). Оставьте пустым, если заголовки отсутствуют" + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Визуализирует слова в столбце, которые появляются чаще всего. Более крупный шрифт соответствует более высокой частоте" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Строка, содержащая заголовки для использования в качестве имен столбцов (0, если первая строка в данных). Оставьте пустым, если заголовки отсутствуют." + "N/A": ["Пусто"], + "The query couldn't be loaded": ["Запрос невозможно загрузить"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Запрос был запланирован. Чтобы посмотреть детали запроса, перейдите в Сохраненные запросы" ], - "Row limit": ["Лимит строк"], - "Rows": ["Строки"], - "Rows per page, 0 means no pagination": [ - "Строчек на странице, 0 означает все строки" + "Your query could not be scheduled": [ + "Не удалось запланировать ваш запрос" ], - "Rows subtotal position": ["Расположение строк подытогов"], - "Rows to Read": ["Строки для чтения"], - "Rule": ["Правило"], - "Rule added": [""], - "Run": ["Выполнить"], - "Run a query to display query history": [ - "Выполните запрос для отображения истории" + "Failed at retrieving results": ["Невозможно выполнить запрос"], + "Unknown error": ["Неизвестная ошибка"], + "Query was stopped.": ["Запрос прерван"], + "Failed at stopping query. %s": ["Не удалось остановить запрос. %s"], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Не удается перенести состояние схемы таблицы на сервер. Суперсет повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта проблема не устранена." ], - "Run a query to display results": [ - "Выполните запрос для отображения результатов" + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Не удается перенести состояние запроса на сервер. Суперсет повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта проблема не устранена." ], - "Run in SQL Lab": ["Открыть в SQL редакторе"], - "Run query": ["Выполнить запрос"], - "Run query (Ctrl + Return)": ["Выполнить запрос (Ctrl + Enter)"], - "Run query in a new tab": ["Выполнить запрос на новой вкладке"], - "Run selection": ["Выполнить выбранное"], - "Running": ["Выполняется"], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": ["СБ"], - "SEP": ["СЕН"], - "SHA": [""], - "SQL": ["SQL"], - "SQL Copied!": ["SQL запрос скопирован!"], - "SQL Expression": ["SQL выражение"], - "SQL Lab": ["Лаборатория SQL"], - "SQL Lab View": [""], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ - "SQL Lab использует локальное хранилище вашего браузера для хранения запросов и результатов.\nВ настоящее время вы используете %(currentUsage)s КБ из %(maxStorage)d КБ дискового пространства.\n Чтобы предотвратить сбой Лаборатории SQL, пожалуйста, удалите некоторые вкладки запросов.\n Вы можете повторно получить доступ к этим запросам, используя функцию сохранения перед удалением вкладки.\n Обратите внимание, что перед этим вам нужно будет закрыть другие окна Лаборатории SQL." + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Не удается перенести состояние редактора запроса на сервер. Суперсет повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта проблема не устранена." ], - "SQL Query": ["SQL запрос"], - "SQL expression": ["Выражение SQL"], - "SQL query": ["SQL запрос"], - "SQLAlchemy URI": ["SQLAlchemy URI"], - "SSH Host": [""], - "SSH Password": ["Пароль SSH"], - "SSH Port": ["SSH порт"], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [ - "Параметры конфигурации SSH туннеля" + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Не удается добавить новую вкладку на сервер. Пожалуйста, свяжитесь с администратором." ], - "SSH Tunnel could not be deleted.": ["Не удалось удалить SSH туннель."], - "SSH Tunnel could not be updated.": ["Не удалось обновить SSH туннель."], - "SSH Tunnel not found.": ["SSH туннель не найден."], - "SSH Tunnel parameters are invalid.": [ - "Параметры SSH туннеля недопустимы." + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "-- Примечание: Пока вы не сохраните ваш запрос, эти вкладки НЕ будут сохранены, если вы очистите куки или смените браузер.\n\n" ], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [ - "Будет использовано шифрование SSL" + "Copy of %s": ["Копия %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Произошла ошибка при установке активной вкладки. Пожалуйста, свяжитесь с администратором." ], - "START (INCLUSIVE)": ["НАЧАЛО (ВКЛЮЧИТЕЛЬНО)"], - "STEP %(stepCurr)s OF %(stepLast)s": ["ШАГ %(stepCurr)s ИЗ %(stepLast)s"], - "STRING": ["Строчный (STRING/VARCHAR)"], - "SUN": ["ВС"], - "Sample Standard Deviation": ["Стандартное отклонение"], - "Sample Variance": ["Дисперсия"], - "Samples": ["Примеры данных"], - "Samples for dataset could not be retrieved.": [ - "Не удалось получить примеры записей датасета." + "An error occurred while fetching tab state": [ + "Произошла ошибка при получении данных вкладки" ], - "Samples for datasource could not be retrieved.": [ - "Не удалось получить примеры записей для источника данных." + "An error occurred while removing tab. Please contact your administrator.": [ + "Произошла ошибка при удалении вкладки. Пожалуйста, свяжитесь с администратором." ], - "Sankey": ["Санкей"], - "Sankey Diagram": ["Диаграмма Санкей"], - "Sankey Diagram with Loops": [""], - "Satellite": ["Спутник"], - "Satellite Streets": ["Гибридный режим"], - "Saturday": ["Суббота"], - "Save": ["Сохранить"], - "Save & Explore": ["Сохранить и исследовать"], - "Save & go to dashboard": ["Сохранить и перейти к дашборду"], - "Save & go to new dashboard": ["Сохранить и перейти к дашборду"], - "Save (Overwrite)": ["Сохранить (Перезаписать)"], - "Save as": ["Сохранить как"], - "Save as Dataset": ["Сохранить как датасет"], - "Save as dataset": ["Сохранить как датасет"], - "Save as new": ["Сохранить как новый"], - "Save as new chart": ["Сохранить как новый график"], - "Save as...": ["Сохранить как..."], - "Save as:": ["Сохранить как:"], - "Save changes": ["Сохранить изменения"], - "Save chart": ["Сохранить график"], - "Save dashboard": ["Сохранить дашборд"], - "Save dataset": ["Сохранить датасет"], - "Save for this session": ["Сохранить на время текущей сессии"], - "Save or Overwrite Dataset": ["Сохранить или перезаписать датасет"], - "Save query": ["Сохранить запрос"], - "Save the query to enable this feature": [ - "Сохраните запрос для включения этой опции" + "An error occurred while removing query. Please contact your administrator.": [ + "Произошла ошибка при удалении запроса. Пожалуйста, свяжитесь с администратором." ], - "Save this query as a virtual dataset to continue exploring": [ - "Сохраните данный запрос как виртуальный датасет для создания графика" + "Your query could not be saved": ["Не удалось сохранить ваш запрос"], + "Your query was not properly saved": [ + "Ваш запрос не был сохранен должным образом" ], - "Save to new dashboard": ["Сохранить в новый дашборд"], - "Saved": ["Сохранено"], - "Saved Queries": ["Сохраненные запросы"], - "Saved expressions": ["Сохраненные выражения"], - "Saved metric": ["Сохраненная мера"], - "Saved queries": ["Сохраненные запросы"], - "Saved queries could not be deleted.": [ - "Не удалось удалить сохраненные запросы." + "Your query was saved": ["Ваш запрос был сохранен"], + "Your query was updated": ["Ваш запрос был сохранен"], + "Your query could not be updated": ["Не удалось обновить ваш запрос"], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Произошла ошибка при сохранении запроса на сервере. Чтобы сохранить изменения, пожалуйста, сохраните ваш запрос через кнопку \"Сохранить как\"." ], - "Saved query not found.": ["Сохраненный запрос не найден."], - "Saved query parameters are invalid.": [ - "Сохраненные параметры запроса недопустимы." + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Произошла ошибка при получении метаданных таблицы. Пожалуйста, свяжитесь с администратором." ], - "Scale and Move": ["Масштабирование и перемещение"], - "Scale only": ["Только масштабирование"], - "Scatter": ["Точечный"], - "Scatter Plot": ["Точечная диаграмма"], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Произошла ошибка при разворачивании схемы. Пожалуйста, свяжитесь с администратором." ], - "Schedule": ["Расписание"], - "Schedule a new email report": ["Запланировать новую рассылку по почте"], - "Schedule email report": ["Запланировать рассылку по почте"], - "Schedule query": ["Сохранить запрос"], - "Schedule settings": ["Настройки расписания"], - "Schedule the query periodically": [ - "Запланировать периодическое выполнение запроса" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Произошла ошибка при сворачивании схемы. Пожалуйста, свяжитесь с администратором." ], - "Scheduled": ["Запланировано"], - "Scheduled at (UTC)": ["Запланировано на (часовой пояс UTC)"], - "Scheduled task executor not found": [ - "Исполнитель регулярных отчетов не найден" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Произошла ошибка при удалении схемы. Пожалуйста, свяжитесь с администратором." ], - "Schema": ["Схема"], - "Schema cache timeout": ["Время жизни кэша схемы"], - "Schema undefined": ["Схема не определена"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "" + "Shared query": ["Общедоступный запрос"], + "The datasource couldn't be loaded": [ + "Невозможно загрузить источник данных" ], - "Schemas allowed for File upload": [ - "Схемы, в которые разрешена загрузка файлов" + "An error occurred while creating the data source": [ + "Произошла ошибка при создании источника данных" ], - "Scope": ["Область"], - "Scoping": ["Область применения"], - "Scroll": ["Прокрутка"], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["Поиск"], - "Search / Filter": ["Поиск / Фильтр"], - "Search Metrics & Columns": ["Поиск по мерам и столбцам"], - "Search all charts": ["Поиск по всем графикам"], - "Search all filter options": ["Поиск по всем фильтрам"], - "Search box": ["Строка поиска"], - "Search by query text": ["Поиск по тексту запроса"], - "Search...": ["Поиск..."], - "Second": ["Секунда"], - "Secondary": ["Вторичная"], - "Secondary Metric": ["Вторичная мера"], - "Secondary y-axis format": ["Формат вторичной оси Y"], - "Secondary y-axis title": ["Название вторичной оси Y"], - "Seconds %s": ["Секунд %s"], - "Secure Extra": ["Доп. безопасность"], - "Secure extra": ["Безопасность"], - "Security": ["Безопасность"], - "Security & Access": ["Безопасность и Доступ"], - "See all %(tableName)s": ["Список %(tableName)s"], - "See less": ["Скрыть подробности"], - "See more": ["Подробнее"], - "See query details": ["Показать детали запроса"], - "See table schema": ["Таблица"], - "Select": ["Выбрать"], - "Select ...": ["Выбрать ..."], - "Select Delivery Method": ["Выберите способ оповещения"], - "Select Viz Type": ["Выберите тип визуализации"], - "Select a Columnar file to be uploaded to a database.": [ - "Выберите файл столбчатого формата, который будет загружен в базу данных." + "An error occurred while fetching function names.": [ + "Произошла ошибка при получении имен функций" ], - "Select a Excel file to be uploaded to a database.": [ - "Выберите Excel файл для загрузки в базу данных" + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "SQL Lab использует локальное хранилище вашего браузера для хранения запросов и результатов.\nВ настоящее время вы используете %(currentUsage)s КБ из %(maxStorage)d КБ дискового пространства.\n Чтобы предотвратить сбой Лаборатории SQL, пожалуйста, удалите некоторые вкладки запросов.\n Вы можете повторно получить доступ к этим запросам, используя функцию сохранения перед удалением вкладки.\n Обратите внимание, что перед этим вам нужно будет закрыть другие окна Лаборатории SQL." ], - "Select a column": ["Выберите столбец"], - "Select a dashboard": ["Выбрать дашборд"], - "Select a database table and create dataset": [ - "Выберите базу данных и создайте датасет" + "Primary key": ["Первичный ключ"], + "Foreign key": ["Внешний ключ"], + "Index": ["Индекс"], + "Estimate selected query cost": ["Оценить стоимость выбранного запроса"], + "Estimate cost": ["Оценить стоимость запроса"], + "Cost estimate": ["Прогноз затрат"], + "Creating a data source and creating a new tab": [ + "Создание источника данных и добавление новой вкладки..." ], - "Select a database table.": ["Выберите таблицу в базе данных."], - "Select a database to connect": ["Выберите базу данных для подключения"], - "Select a database to upload the file to": [ - "Выберите базу данных для загрузки файла" + "An error occurred": ["Произошла ошибка"], + "Explore the result set in the data exploration view": [ + "Создать новый график на основе этих данных" ], - "Select a database to write a query": [ - "Выберите базу данных для написания запроса" + "explore": ["исследовать"], + "Create Chart": ["Создать график"], + "Source SQL": ["Исходный SQL"], + "Executed SQL": ["Исполненный SQL"], + "Run query": ["Выполнить запрос"], + "Stop query": ["Остановить запрос"], + "New tab": ["Новая вкладка"], + "Previous Line": ["Предыдущая строка"], + "Keyboard shortcuts": [""], + "Run a query to display query history": [ + "Выполните запрос для отображения истории" ], - "Select a dimension": ["Выберете измерение"], - "Select a file to be uploaded to the database": [ - "Выберите файл для загрузки в базу данных." + "LIMIT": ["ОГРАНИЧЕНИЕ"], + "State": ["Состояние"], + "Duration": ["Продолжительность"], + "Results": ["Результаты"], + "Actions": ["Действия"], + "Success": ["Успешно"], + "Failed": ["Ошибка"], + "Running": ["Выполняется"], + "Fetching": ["Получение данных"], + "Offline": ["Оффлайн"], + "Scheduled": ["Запланировано"], + "Unknown Status": ["Неизвестный статус"], + "Edit": ["Редактировать"], + "View": ["Показать"], + "Data preview": ["Предпросмотр данных"], + "Overwrite text in the editor with a query on this table": [ + "Вставить этот запрос в редактор SQL" ], - "Select a schema if the database supports this": [ - "Укажите схему, если она поддерживается базой данных" + "Run query in a new tab": ["Выполнить запрос на новой вкладке"], + "Remove query from log": ["Удалить запрос из истории"], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["Сохранить и исследовать"], + "Overwrite & Explore": ["Перезаписать и исследовать"], + "Save this query as a virtual dataset to continue exploring": [ + "Сохраните данный запрос как виртуальный датасет для создания графика" ], - "Select a visualization type": ["Выберите тип визуализации"], - "Select aggregate options": ["Выберите настройки агрегации"], - "Select all data": ["Выбрать все данные"], - "Select all items": ["Выбрать все записи"], - "Select any columns for metadata inspection": [""], - "Select charts": ["Выберите графики"], - "Select color scheme": ["Выберите цветовую схему"], - "Select column": ["Выберите столбец"], - "Select current page": ["Выбрать текущую страницу"], - "Select database & schema": ["Выберите базу данных и схему"], - "Select database table": ["Выберите таблицу из базы данных"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "Некоторые базы данных требуют ручной настройки во вкладке Продвинутая настройка для успешного подключения. Вы можете ознакомиться с требованиями к вашей базе данных " + "Download to CSV": ["Сохранить в CSV"], + "Copy to Clipboard": ["Скопировать в буфер обмена"], + "Filter results": ["Фильтровать результаты"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "Количество отображаемых результатов ограничено %(rows)d переменной DISPLAY_MAX_ROW. Пожалуйста, добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d." ], - "Select dataset source": ["Выберите источник датасета"], - "Select file": ["Выбрать файл"], - "Select filter": ["Селектор"], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [ - "Сделать первое значение фильтра значением по умолчанию" + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Количество отображаемых результатов ограничено %(rows)d. Пожалуйста, добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d.\"" ], - "Select operator": ["Выбрать оператор"], - "Select or type a value": ["Выберите значение"], + "The number of rows displayed is limited to %(rows)d by the query": [ + "Количество отображаемых строк ограничено: не более %(rows)d." + ], + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "Количество отображаемых строк ограничено: не более %(rows)d." + ], + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Количество отображаемых строк ограничено: не более %(rows)d." + ], + "%(rows)d rows returned": ["Получено строк: %(rows)d"], + "Track job": ["Отслеживать работу"], + "See query details": ["Показать детали запроса"], + "Query was stopped": ["Запрос прерван"], + "Database error": ["Ошибка базы данных"], + "was created": ["создан(а)"], + "Query in a new tab": ["Запрос в отдельной вкладке"], + "The query returned no data": ["Запрос не вернул данных"], + "Fetch data preview": ["Получить данные для просмотра"], + "Refetch results": ["Выполнить запрос повторно"], + "Stop": ["Стоп"], + "Run selection": ["Выполнить выбранное"], + "Run": ["Выполнить"], + "Stop running (Ctrl + x)": ["Остановить выполнение (CTRL + X)"], + "Stop running (Ctrl + e)": ["Остановить выполнение (CTRL + X)"], + "Run query (Ctrl + Return)": ["Выполнить запрос (Ctrl + Enter)"], + "Save": ["Сохранить"], + "Untitled Dataset": ["Безымянный датасет"], + "An error occurred saving dataset": [ + "Произошла ошибка при сохранении датасета" + ], + "Save or Overwrite Dataset": ["Сохранить или перезаписать датасет"], + "Back": ["Назад"], + "Save as new": ["Сохранить как новый"], + "Overwrite existing": ["Перезаписать существующий"], "Select or type dataset name": ["Выберите/введите имя датасета"], - "Select owners": ["Выбрать владельцев"], - "Select saved metrics": ["Выберите сохраненные меры"], - "Select scheme": ["Выберите схему"], - "Select start and end date": ["Выберите дату начала"], - "Select subject": [""], - "Select the Annotation Layer you would like to use.": [ - "Выбрать слой аннотации, который вы хотите использовать." + "Existing dataset": ["Существующий датасет"], + "Are you sure you want to overwrite this dataset?": [ + "Вы уверены, что хотите перезаписать этот датасет?" ], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Undefined": ["Не определено"], + "Save dataset": ["Сохранить датасет"], + "Save as": ["Сохранить как"], + "Save query": ["Сохранить запрос"], + "Cancel": ["Отмена"], + "Update": ["Обновить"], + "Label for your query": ["Метка для вашего запроса"], + "Write a description for your query": [ + "Заполните описание к вашему запросу" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Submit": ["Отправить"], + "Schedule query": ["Сохранить запрос"], + "Schedule": ["Расписание"], + "There was an error with your request": [ + "Произошла ошибка с вашим запросом" ], - "Select the geojson column": ["Выберите geojson столбец"], - "Select the number of bins for the histogram": [ - "Выберите количество столбцов для гистограммы" + "Please save the query to enable sharing": [ + "Пожалуйста, сохраните запрос, чтобы включить функцию \"поделиться\"" ], - "Select the numeric columns to draw the histogram": [ - "Выберите числовые столбцы для отрисовки гистограммы" + "Copy query link to your clipboard": [ + "Скопировать ссылку на запрос в буфер обмена" ], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ - "Выберите значения в обязательных полях на панели управления. Затем запустите запрос, нажав на кнопку %s." + "Save the query to enable this feature": [ + "Сохраните запрос для включения этой опции" ], - "Send as CSV": ["Отправить в формате CSV"], - "Send as PNG": ["Отправить в формате PNG"], - "Send as text": ["Отправить текстом"], - "Send range filter events to other charts": [""], - "September": ["Сентябрь"], - "Sequential": ["Последовательность"], - "Series": ["Ряд"], - "Series Height": ["Высота рядов"], - "Series Limit Sort By": ["Сортировка категорий по"], - "Series Style": ["Стиль категорий"], - "Series chart type (line, bar etc)": [""], - "Series limit": ["Лимит кол-ва категорий"], - "Server Page Length": ["Серверный размер страницы"], - "Server pagination": ["Серверная пагинация"], - "Service Account": ["Сервисный аккаунт"], - "Set auto-refresh interval": ["Задать интервал обновления"], - "Set filter mapping": ["Установить действие фильтра"], - "Set up an email report": ["Запланировать рассылку по почте"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "" + "Copy link": ["Скопировать ссылку"], + "No stored results found, you need to re-run your query": [ + "Не найдены сохраненные результаты, необходимо повторно выполнить запрос" ], - "Settings": ["Настройки"], - "Settings for time series": ["Настройки временных рядов"], - "Share": ["Поделиться"], - "Share chart by email": ["Поделиться графиком по email"], - "Share permalink by email": ["Поделиться ссылкой по email"], - "Shared query": ["Общедоступный запрос"], - "Shared query fields": ["Поля общедоступного запроса"], - "Sheet Name": ["Имя листа"], - "Shift + Click to sort by multiple columns": [ - "Shift + Нажать для сортировки по нескольким столбцам" - ], - "Short description must be unique for this layer": [ - "Содержимое аннотации должно быть уникальным внутри слоя" + "Run a query to display results": [ + "Выполните запрос для отображения результатов" ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Применяется дневная сезонность. Целочисленное значение будет указывать порядок сезонности Фурье." + "Preview: `%s`": ["Предпросмотр «%s»"], + "Query history": ["История запросов"], + "Schedule the query periodically": [ + "Запланировать периодическое выполнение запроса" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Применяется недельная сезонность. Целочисленное значение будет указывать порядок сезонности Фурье." + "You must run the query successfully first": [ + "Сначала необходимо успешно выполнить запрос" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Применяется годовая сезонность. Целочисленное значение будет указывать порядок сезонности Фурье." + "Autocomplete": ["Автозаполнение"], + "CREATE TABLE AS": ["CREATE TABLE AS"], + "CREATE VIEW AS": ["CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "Спрогнозировать стоимость до выполнения запроса" ], - "Show Bubbles": ["Показать пузыри"], - "Show CREATE VIEW statement": ["Показать выражение CREATE VIEW"], - "Show CSS Template": ["Показать CSS шаблон"], - "Show Chart": ["Показать график"], - "Show Column": ["Показать столбец"], - "Show Dashboard": ["Показать дашборд"], - "Show Database": ["Показать базу данных"], - "Show Labels": ["Показывать метки"], - "Show Less...": ["Показать меньше..."], - "Show Log": ["Показать запись"], - "Show Markers": ["Показать маркеры"], - "Show Metric": ["Показатель меру"], - "Show Metric Names": ["Показать имена мер"], - "Show Range Filter": ["Показать фильтр Диапазон"], - "Show Saved Query": ["Показать сохраненный запрос"], - "Show Table": ["Показать таблицу"], - "Show Timestamp": ["Показать метку времени"], - "Show Total": ["Показать общий итог"], - "Show Trend Line": ["Показать трендовую линию"], - "Show Upper Labels": ["Показать верхние метки"], - "Show Value": ["Показать значение"], - "Show Values": ["Показать значения"], - "Show Y-axis": ["Показать ось Y"], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "Показывать ось Y на спарклайне." + "Specify name to CREATE VIEW AS schema in: public": [ + "Укажите имя нового представления для CREATE VIEW AS" ], - "Show all columns": ["Показать все столбцы"], - "Show all...": ["Показать все..."], - "Show axis line ticks": ["Показывать деления на оси"], - "Show cell bars": ["Наложить гистограммы на ячейки"], - "Show chart description": ["Показать описание графика"], - "Show columns total": ["Показать общий итог по столбцам"], - "Show data points as circle markers on the lines": [""], - "Show empty columns": ["Показывать пустые столбцы"], - "Show info tooltip": ["Показать информационную подсказку"], - "Show label": ["Показывать метку"], - "Show labels when the node has children.": [ - "Показывать метки, когда у вершины есть дочерние элементы." + "Specify name to CREATE TABLE AS schema in: public": [ + "Укажите имя новой таблицы для CREATE TABLE AS" ], - "Show legend": ["Показывать легенду"], - "Show less columns": ["Показать меньше столбцов"], - "Show less...": ["Показать меньше..."], - "Show only my charts": [""], - "Show password.": ["Показать пароль."], - "Show percentage": ["Показывать долю"], - "Show pointer": ["Показывать указатель"], - "Show progress": ["Показывать прогресс"], - "Show rows total": ["Показать общий итог по строкам"], - "Show series values on the chart": [ - "Показать значения категорий на графике" + "Select a database to write a query": [ + "Выберите базу данных для написания запроса" ], - "Show split lines": ["Показывать разделительные линии"], - "Show the value on top of the bar": [ - "Показать значение в верхней части столбца" + "Choose one of the available databases from the panel on the left.": [ + "Выберите одну из доступных баз данных из панели слева." ], - "Show time column": ["Показать столбец времени"], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "Показать общие итоговые значения выбранных показателей. Обратите внимание, что ограничение количества строк не применяется к результату." + "Create": ["Создать"], + "Collapse table preview": ["Свернуть предпросмотр таблицы"], + "Expand table preview": ["Расширить предпросмотр таблицы"], + "Reset state": ["Сбросить текущее состояние"], + "Enter a new title for the tab": ["Введите новое название для вкладки"], + "Close tab": ["Закрыть вкладку"], + "Rename tab": ["Переименовать вкладку"], + "Expand tool bar": ["Показать панель инструментов"], + "Hide tool bar": ["Скрыть панель инструментов"], + "Close all other tabs": ["Закрыть остальные вкладки"], + "Duplicate tab": ["Дублировать вкладку"], + "Add a new tab": ["Новая вкладка"], + "New tab (Ctrl + q)": ["Новая вкладка (CTRL + Q)"], + "New tab (Ctrl + t)": ["Новая вкладка (CTRL + T)"], + "Add a new tab to create SQL Query": [ + "Откройте новую вкладку для создания SQL запроса" ], - "Show totals": ["Показывать общий итог"], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "Отображает один показатель по центру. Карточку лучше всего использовать, чтобы привлечь внимание к KPI." + "An error occurred while fetching table metadata": [ + "Произошла ошибка при получении метаданных из таблицы" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "Отображает один показатель, сопровождаемый простой линейной диаграммой, чтобы привлечь внимание к KPI наряду с его изменением с течением времени или другим измерением." + "Copy partition query to clipboard": [ + "Скопировать часть запроса в буфер обмена" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "Отображает изменение показателя по мере сужения воронки. Эта классическая диаграмма полезна для визуализации перехода между этапами процесса или жизненного цикла." + "latest partition:": ["последний раздел:"], + "View keys & indexes (%s)": ["Показать ключи и индексы (%s)"], + "Original table column order": [ + "Расположение столбцов как в исходной таблице" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "" + "Sort columns alphabetically": [ + "Отсортировать столбцы в алфавитном порядке" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "Демонстрирует прогресс одного показателя по отношению к заданной цели. Чем больше заполнение, тем ближе показатель к целевому показателю." + "Copy SELECT statement to the clipboard": [ + "Скопировать выражение SELECT в буфер обмена" ], - "Showing %s of %s": ["Отображено %s из %s"], - "Shows a list of all series available at that point in time": [ - "Показывает список всех данных, доступных в определенный момент времени" + "Show CREATE VIEW statement": ["Показать выражение CREATE VIEW"], + "CREATE VIEW statement": ["Выражение CREATE VIEW"], + "Remove table preview": ["Убрать предпросмотр таблицы"], + "Assign a set of parameters as": ["Задайте набор параметров в формате"], + "below (example:": ["ниже (пример:"], + "), and they become available in your SQL (example:": [ + "), и они станут доступны в ваших SQL запросах (пример:" ], - "Shows or hides markers for the time series": [ - "Показывает или скрывает маркеры для временных рядов" + "by using": [", используя"], + "Jinja templating": ["Шаблонизацию Jinja."], + "syntax.": [""], + "Edit template parameters": [ + "Редактировать параметры шаблонизации Jinja" ], - "Significance Level": [""], - "Simple": ["Столбец"], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single": ["Один"], - "Single Metric": ["Одна мера"], - "Single Value": ["Единственное значение"], - "Single value": ["Единственное значение"], - "Single value type": ["Тип единственного значения"], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [ - "Размер маркера. Также применяется к прогнозным значениям." + "Parameters ": ["Параметры "], + "Invalid JSON": ["Недопустимый формат JSON"], + "Untitled query": ["Безымянный запрос"], + "%s%s": ["%s%s"], + "Control": ["Элемент"], + "Before": ["До"], + "After": ["После"], + "Click to see difference": ["Нажмите для просмотра изменений"], + "Altered": ["Измененено"], + "Chart changes": ["Изменения графика"], + "Loaded data cached": ["Данные загружены в кэш"], + "Loaded from cache": ["Загружено из кэша"], + "Click to force-refresh": ["Нажмите для принудительного обновления"], + "Cached": ["Добавлено в кэш"], + "Add required control values to preview chart": [ + "Добавьте обязательные значения для предпросмотра графика" ], - "Sizes of vehicles": [""], - "Skip Blank Lines": ["Пропуск пустых строк"], - "Skip Initial Space": ["Пропуск начального пробела"], - "Skip Rows": ["Пропуск строк"], - "Skip blank lines rather than interpreting them as Not A Number values": [ - "Пропускать пустые строки, вместо их перевода в пустые строки (NaN)" + "Your chart is ready to go!": ["Ваш график готов!"], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Нажмите на кнопку \"Создать график\" на панели управления слева для просмотра графика или" ], - "Skip spaces after delimiter": ["Пропускать пробелы после разделителя"], - "Slug": ["Читаемый URL"], - "Small": ["Маленький"], - "Small number format": ["Форматирование маленьких чисел"], - "Smooth Line": ["Гладкая линия"], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "" + "click here": ["нажмите сюда"], + "No results were returned for this query": [ + "Не было получено данных по этому запросу" ], - "Solid": ["Сплошной"], - "Some roles do not exist": ["Некоторые роли не существуют"], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [ - "К сожалению, произошла ошибка при получении информации о базе данных: %s" + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Убедитесь, что настройки графика верно сконфигурированы и источник данных содержит данные для выбранного временного интервала." ], - "Sorry there was an error fetching saved charts: ": [ - "Извините, произошла ошибка при загрузке графиков: " + "An error occurred while loading the SQL": [ + "Произошла ошибка при загрузке SQL" ], - "Sorry, An error occurred": ["Извините, произошла ошибка"], "Sorry, an error occurred": ["Извините, произошла ошибка"], - "Sorry, an unknown error occurred": [ - "Извините, произошла неизвестная ошибка" - ], - "Sorry, an unknown error occurred.": [ - "Извините, произошла неизвестная ошибка." + "Updating chart was stopped": ["Обновление графика остановлено"], + "An error occurred while rendering the visualization: %s": [ + "Произошла ошибка при построении графика: %s" ], - "Sorry, something went wrong. Embedding could not be deactivated.": [ - "Извините, что-то пошло не так. Встраивание не может быть деактивировано." + "Network error.": ["Ошибка сети."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "" ], - "Sorry, something went wrong. Try again later.": [ - "Извините, что-то пошло не так. Попробуйте еще раз позже." + "You can also just click on the chart to apply cross-filter.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Edit chart": ["Редактировать график"], + "Close": ["Закрыть"], + "Failed to load chart data.": ["Не удалось загрузить данные графика."], + "Results %s": ["Результаты %s"], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "" ], - "Sorry, there appears to be no data": [ - "Извините, похоже, что данные отсутствуют" + "Drill to detail by value is not yet supported for this chart type.": [ + "" ], - "Sorry, there was an error saving this dashboard: %s": [ - "Извините, произошла ошибка при сохранении дашборда: %s" + "Right-click on a dimension value to drill to detail by that value.": [ + "" ], - "Sorry, your browser does not support copying.": [ - "Извините, Ваш браузер не поддерживание копирование. Используйте сочетание клавиш [CTRL + C] для WIN или [CMD + C] для MAC." + "Drill to detail: %s": [""], + "Formatting": ["Форматирование"], + "Formatted value": ["Форматированное значение"], + "No rows were returned for this dataset": [ + "Не было получено данных для этого датасета" ], + "Reload": ["Обновить"], + "Copy": ["Копировать"], + "Copy to clipboard": ["Скопировать в буфер обмена"], + "Copied to clipboard!": ["Скопировано в буфер обмена"], "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ "Извините, Ваш браузер не поддерживание копирование. Используйте сочетание клавиш [CTRL + C] для WIN или [CMD + C] для MAC!" ], - "Sort": ["Сортировка"], - "Sort Bars": ["Сортировать столбцы"], - "Sort Descending": ["Сортировать по убыванию"], - "Sort Metric": ["Мера для сортировки"], - "Sort X Axis": ["Сортировка оси X"], - "Sort Y Axis": ["Сортировка оси Y"], - "Sort ascending": ["Сортировать по возрастанию"], - "Sort bars by x labels.": ["Сортировать столбцы по меткам на оси X"], - "Sort by": ["Сортировка"], - "Sort by %s": ["Сорт. по %s"], - "Sort by metric": ["Сортировка по мере"], - "Sort columns alphabetically": [ - "Отсортировать столбцы в алфавитном порядке" + "every": ["каждые"], + "every month": ["каждый месяц"], + "every day of the month": ["каждый день месяца"], + "day of the month": ["день месяца"], + "every day of the week": ["каждый день недели"], + "day of the week": ["день недели"], + "every hour": ["каждый час"], + "every minute": ["каждая минута"], + "minute": ["минута"], + "reboot": ["обновить"], + "Every": ["Каждый(ая)"], + "in": ["в"], + "on": ["по"], + "and": ["и"], + "at": ["в"], + ":": [":"], + "minute(s)": ["минут"], + "Invalid cron expression": ["Недопустимое CRON выражение"], + "Clear": ["Очистить"], + "Sunday": ["Воскресенье"], + "Monday": ["Понедельник"], + "Tuesday": ["Вторник"], + "Wednesday": ["Среда"], + "Thursday": ["Четверг"], + "Friday": ["Пятница"], + "Saturday": ["Суббота"], + "January": ["Январь"], + "February": ["Февраль"], + "March": ["Март"], + "April": ["Апрель"], + "May": ["Май"], + "June": ["Июнь"], + "July": ["Июль"], + "August": ["Август"], + "September": ["Сентябрь"], + "October": ["Октябрь"], + "November": ["Ноябрь"], + "December": ["Декабрь"], + "SUN": ["ВС"], + "MON": ["ПН"], + "TUE": ["ВТ"], + "WED": ["СР"], + "THU": ["ЧТ"], + "FRI": ["ПТ"], + "SAT": ["СБ"], + "JAN": ["ЯНВ"], + "FEB": ["ФЕВ"], + "MAR": ["МАР"], + "APR": ["АПР"], + "MAY": ["МАЙ"], + "JUN": ["ИЮН"], + "JUL": ["ИЮЛ"], + "AUG": ["АВГ"], + "SEP": ["СЕН"], + "OCT": ["ОКТ"], + "NOV": ["НОЯ"], + "DEC": ["ДЕК"], + "There was an error loading the schemas": [ + "Возникла ошибка при загрузке схем" ], - "Sort columns by": ["Сортировать столбцы по"], - "Sort descending": ["Сортировка по убыванию"], - "Sort filter values": ["Сортировать отфильтрованные значения"], - "Sort metric": ["Показатель для сортировки"], - "Sort rows by": ["Сортировка строк по"], - "Sort series in ascending order": [""], - "Sort type": ["Тип сортировки"], - "Source": ["Источник"], - "Source / Target": ["Источник / Цель"], - "Source SQL": ["Исходный SQL"], - "Source category": ["Исходная категория"], - "Sparkline": ["Спарклайн"], - "Spatial": [""], - "Specific Date/Time": ["Конкретная дата/время"], - "Specify a schema (if database flavor supports this).": [ - "Укажите схему (если она поддерживается базой данных)." + "Force refresh schema list": ["Принудительно обновить список схем"], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Внимание! Изменение датасета может привести к тому, что график станет нерабочим, если будут отсутствовать метаданные." ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Обозначить повторяющиеся столбцы как \"X.0, X.1\"." + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Изменение датасета может привести к тому, что график станет нерабочим, если график использует несуществующие в целевом датасете столбцы или метаданные" ], - "Specify name to CREATE TABLE AS schema in: public": [ - "Укажите имя новой таблицы для CREATE TABLE AS" + "dataset": ["датасет"], + "Successfully changed dataset!": [""], + "Connection": ["База данных"], + "Swap dataset": ["Сменить датасет"], + "Proceed": ["Продолжить"], + "Warning!": ["Предупреждение!"], + "Search / Filter": ["Поиск / Фильтр"], + "Add item": ["Добавить запись"], + "STRING": ["Строчный (STRING/VARCHAR)"], + "NUMERIC": ["Числовой (NUMERIC/DECIMAL)"], + "DATETIME": ["Дата/Время (DATETIME/TIMESTAMP)"], + "BOOLEAN": ["Булевый (BOOLEAN)"], + "Physical (table or view)": ["Физический (таблица или представление)"], + "Virtual (SQL)": ["Виртуальный (SQL)"], + "Data type": ["Тип данных"], + "Advanced data type": ["Расширенный тип данных"], + "Advanced Data type": ["Расширенный тип данных"], + "Datetime format": ["Формат даты/времени"], + "The pattern of timestamp format. For strings use ": [ + "Шаблон формата отметки времени (таймштампа). Для строк используйте " ], - "Specify name to CREATE VIEW AS schema in: public": [ - "Укажите имя нового представления для CREATE VIEW AS" + "Python datetime string pattern": ["Шаблон строки даты и времени Python"], + " expression which needs to adhere to the ": [ + ", который должен придерживаться " ], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "Укажите версию базы данных. Это необходимо для Presto, чтобы включить оценку стоимости запроса" + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + " стандарта для обеспечения того, чтобы лексикографический порядок совпадал с хронологическим порядком. Если формат временной метки не соответствует стандарту ISO 8601, вам нужно будет определить выражение и тип для преобразования строки в дату или временную метку. В настоящее время часовые пояса не поддерживаются. Если время хранится в формате эпохи, введите \\`epoch_s\\` или \\`epoch_ms\\`. Если шаблон не указан, будут использованы необязательные значения по умолчанию на уровне имен для каждой базы данных/столбца с помощью дополнительного параметра." ], - "Split number": ["Количество разделителей"], - "Square kilometers": ["Квадратные километры"], - "Square meters": ["Квадратные метры"], - "Square miles": ["Квадратные мили"], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": ["Использовать накопление"], - "Stack series on top of each other": [ - "Совместить столбцы в один с накоплением" + "Certified By": ["Кем утверждено"], + "Person or group that has certified this metric": [ + "Лицо или группа, которые утвердили этот показатель" ], - "Stacked": ["С наполнением"], - "Stacked Bars": ["Столбцы с накоплением"], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], - "Start": ["Начало"], - "Start (Longitude, Latitude): ": ["Старт (Долгота, Широта): "], - "Start Longitude & Latitude": ["Начальные долгота и широта"], - "Start angle": ["Начальный угол"], - "Start at (UTC)": ["Время начала (UTC)"], - "Start date included in time range": [ - "Начальная дата включена во временной интервал" + "Certified by": ["Кем утверждено"], + "Certification details": ["Детали утверждения"], + "Details of the certification": ["Детали утверждения"], + "Is dimension": ["Является измерением"], + "Default datetime": ["Дата и время по умолчанию"], + "Is filterable": ["Фильтруемый"], + "": ["<новый столбец>"], + "Select owners": ["Выбрать владельцев"], + "Modified columns: %s": ["Изменённые столбцы: %s"], + "Removed columns: %s": ["Удалённые столбцы: %s"], + "New columns added: %s": ["Добавленные столбцы: %s"], + "Metadata has been synced": ["Метаданные синхронизированы"], + "An error has occurred": ["Произошла ошибка"], + "Column name [%s] is duplicated": [ + "Имя столбца [%s] является дубликатом" ], - "Start y-axis at 0": ["Начать ось Y с 0"], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "Начать ось Y в нуле. Снимите флаг, чтобы ось Y начиналась на минимальном значении данных" + "Metric name [%s] is duplicated": ["Дубль имени меры [%s]"], + "Calculated column [%s] requires an expression": [ + "Для вычисляемого столбца [%s] требуется выражение" ], - "State": ["Состояние"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": ["Статистический учет"], - "Status": ["Статус"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "" + "Invalid currency code in saved metrics": [""], + "Basic": ["Базовая настройка"], + "Default URL": ["URL по умолчанию"], + "Default URL to redirect to when accessing from the dataset list page": [ + "URL по умолчанию, на который будет выполнен редирект при доступе из страницы со списком датасетов" ], - "Stop": ["Стоп"], - "Stop query": ["Остановить запрос"], - "Stop running (Ctrl + e)": ["Остановить выполнение (CTRL + X)"], - "Stop running (Ctrl + x)": ["Остановить выполнение (CTRL + X)"], - "Stopped an unsafe database connection": [""], - "Streets": ["Схема"], - "Strength to pull the graph toward center": [ - "Сила притяжения вершин к центру" + "Autocomplete filters": ["Фильтры автозаполнения"], + "Whether to populate autocomplete filters options": [ + "Распространить настройки фильтров автозаполнения" ], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [ - "Имя листа (по умолчанию первый лист)" + "Autocomplete query predicate": ["Предикат запроса автозаполнения"], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "При использовании \"Фильтров автозаполнения\" это может использоваться для улучшения быстродействия запроса. Используйте эту опцию для настройки предиката (оператор WHERE) запроса для уникальных значений из таблицы. Обычно целью является ограничение сканирования путем применения относительного временного фильтра к секционированному или индексированному полю типа дата/время." ], - "Stroke Color": ["Цвет обводки"], - "Stroke Width": ["Ширина обводки"], - "Stroked": ["С обводкой"], - "Structural": ["Структура"], - "Style": ["Стиль"], - "Style the ends of the progress bar with a round cap": [ - "Оформление концов индикатора круглыми заглушками" + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Дополнительные метаданные таблицы. В настоящий момент поддерживается следующий формат: `{ \"certification\": { \"certified_by\": \"Руководитель отдела\", \"details\": \"Эта таблица - источник правды.\" }, \"warning_markdown\": \"Это предупреждение.\" }`." ], - "Subdomain": ["Подблок"], - "Subheader": ["Подзаголовок"], - "Subheader Font Size": ["Размер шрифта подзаголовка"], - "Submit": ["Отправить"], - "Subtotal": ["Подытог"], - "Success": ["Успешно"], - "Successfully changed dataset!": [""], - "Suffix to apply after the percentage display": [ - "Текст после отображения процентной доли" + "Cache timeout": ["Время жизни кэша"], + "Hours offset": ["Смещение времени"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Количество часов, отрицательное или положительное, для сдвига столбца формата дата/время. Это может быть использовано для приведения часового пояса UTC к местному времени." ], - "Sum": ["Сумма"], - "Sum as Fraction of Columns": ["Сумма как доля столбцов"], - "Sum as Fraction of Rows": ["Сумма как доля строк"], - "Sum as Fraction of Total": ["Сумма как доля целого"], - "Sum of values over specified period": [ - "Сумма значений за обозначенный период" + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ + "" ], - "Sum values": ["Суммарные значения"], - "Sunburst": ["Диаграмма Солнечные лучи"], - "Sunburst Chart": ["Диаграмма Солнечные лучи"], - "Sunday": ["Воскресенье"], - "Superset Chart": ["График Superset"], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["График Superset"], - "Superset dashboard": ["Дашборд Superset"], - "Superset encountered an error while running a command.": [ - "Суперсет столкнулся с ошибкой во время выполнения команды." + "": ["<новая пространственная мера>"], + "": ["<без типа>"], + "Click the lock to make changes.": [ + "Нажмите на замок для внесения изменений" ], - "Superset encountered an unexpected error.": [ - "Суперсет столкнулся с неожиданной ошибкой." + "Click the lock to prevent further changes.": [ + "Нажмите на замок для запрета на внос изменений." ], - "Supported databases": ["Поддерживаемые базы данных"], - "Survey Responses": [""], - "Swap dataset": ["Сменить датасет"], - "Swap rows and columns": ["Поменять местами строки и столбцы"], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" + "virtual": ["Виртуальный"], + "Dataset name": ["Имя датасета"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Когда указан SQL, источник данных работает как представление. Superset будет использовать это выражение в подзапросе, при необходимости группировки и фильтрации." + ], + "Physical": ["Физический"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Указатель на физическую таблицу (или представление). Следует помнить, что график связан с логической таблицей Superset, а эта логическая таблица указывает на физическую таблицу, указанную здесь." ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "Symbol": [""], - "Symbol of two ends of edge line": [""], + "D3 format": ["Формат даты/времени"], + "Metric currency": [""], + "Warning": ["Предупреждение"], + "Optional warning about use of this metric": [ + "Необязательное предупреждение об использовании этой меры" + ], + "": ["<новая мера>"], + "Be careful.": ["Будьте осторожны."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Изменение этих настроек будет влиять на все графики, использующие этот датасет, включая графики других пользователей." + ], "Sync columns from source": ["Синхронизировать столбцы из источника"], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Calculated columns": ["Вычисляемые столбцы"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "TABLES": ["ТАБЛИЦЫ"], - "THU": ["ЧТ"], - "TUE": ["ВТ"], - "Tab name": ["Имя вкладки"], - "Tab title": ["Имя вкладки"], - "Table": ["Таблица"], - "Table %(table)s wasn't found in the database %(db)s": [""], - "Table Exists": ["Таблица существует"], - "Table Name": ["Имя таблицы"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "Не удается найти таблицу \"%(table_name)s\", пожалуйста, проверьте ваше соединение с базой данных, схему и имя таблицы" - ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "Не удается найти таблицу \"%(table)s\", пожалуйста, проверьте ваше соединение с базой данных, схему и имя таблицы, ошибка: {}" + "": ["<введите SQL выражение>"], + "Settings": ["Настройки"], + "The dataset has been saved": ["Датасет сохранен"], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Представленная здесь конфигурация датасета\n влияет на все графики, использующие этот датасет.\n Помните, что изменение настроек\n может иметь неожиданный эффект\n на другие графики." ], - "Table cache timeout": ["Время жизни кэша таблицы"], - "Table columns": ["Столбцы таблицы"], - "Table name cannot contain a schema": [ - "Имя таблицы не может содержать схему" + "Are you sure you want to save and apply changes?": [ + "Вы уверены, что хотите сохранить и применить изменения?" ], - "Table name undefined": ["Имя таблицы не определено"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "Таблица, визуализирующая парные t-тесты, которые используются для нахождения статистических различий между группами." + "Confirm save": ["Подтвердить сохранение"], + "OK": ["ОК"], + "Edit Dataset ": ["Редактировать датасет "], + "Use legacy datasource editor": ["Использовать старый редактор"], + "This dataset is managed externally, and can't be edited in Superset": [ + "Этот датасет управляется извне и не может быть изменена в Суперсете" ], - "Tables": ["Таблицы"], - "Tabs": ["Вкладки"], - "Tabular": ["Таблицы"], - "Tag name is invalid (cannot contain ':')": [""], - "Tags": ["Теги"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "" + "DELETE": ["УДАЛИТЬ"], + "delete": ["удалить"], + "Type \"%s\" to confirm": ["Введите \"%s\" для подтверждения"], + "More": ["Подробнее"], + "Click to edit": ["Нажмите для редактирования"], + "You don't have the rights to alter this title.": [ + "Недостаточно прав для изменения названия." ], - "Target": ["Цель"], - "Target Color": ["Целевой цвет"], - "Target category": ["Целевая категория"], - "Target value": ["Целевое значение"], - "Template Name": ["Имя шаблона"], - "Template parameters": ["Параметры шаблона"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Шаблонная ссылка, можно включить {{ metric }} или другие значения, поступающие из элементов управления." + "No databases match your search": [ + "Нет баз данных, удовлетворяющих вашему поиску" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "Завершать выполнение запросов после закрытия браузерной вкладки или пользователь переключился на другую вкладку. Доступно для баз данных Presto, Hive, MySQL, Postgres и Snowflake." + "There are no databases available": ["Нет доступных баз данных"], + "Manage your databases": ["Управляйте своими базами данных"], + "here": ["здесь"], + "Unexpected error": ["Неожиданная ошибка"], + "This may be triggered by:": ["Возможные причины:"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [ + "%(message)s\nВозможные причины: \n%(issues)s" ], - "Test Connection": ["Тестовое соединение"], - "Test connection": ["Тестовое соединение"], - "Text": ["Текст"], - "Text align": ["Выравнивание текста"], - "Text embedded in email": ["Текст, включенный в email"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "" + "%s Error": ["%s Ошибка"], + "Missing dataset": ["Отсутствующий датасет"], + "See more": ["Подробнее"], + "See less": ["Скрыть подробности"], + "Copy message": ["Скопировать сообщение"], + "Did you mean:": ["Возможно вы имели в виду:"], + "Parameter error": ["Ошибка параметра"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ + "%(subtitle)s\nВозможные причины:\n %(issue)s" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "" + "Timeout error": ["Ошибка таймаута"], + "Click to favorite/unfavorite": ["Добавить в избранное"], + "Cell content": ["Содержимое ячейки"], + "Hide password.": ["Скрыть пароль."], + "Show password.": ["Показать пароль."], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Драйвер базы данных для импорта может быть не установлен. Изучите документацию Суперсета для инструкций по установке: " ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTAS (CREATE TABLE AS SELECT) не содержит SELECT запрос в конце. Пожалуйста, убедитесь, что ваш запрос имеет SELECT запрос в конце. Затем попробуйте повторно выполнить запрос." + "OVERWRITE": ["ПЕРЕЗАПИСАТЬ"], + "Database passwords": ["Пароли базы данных"], + "%s PASSWORD": ["%s ПАРОЛЬ"], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "Overwrite": ["Перезаписать"], + "Import": ["Импорт"], + "Import %s": ["Импортировать %s"], + "Select file": ["Выбрать файл"], + "Last Updated %s": ["Дата изменения %s"], + "Sort": ["Сортировка"], + "+ %s more": ["+ еще %s"], + "%s Selected": ["%s Выбрано"], + "Deselect all": ["Снять выделение"], + "Add Tag": [""], + "No results match your filter criteria": [ + "Не найдено результатов по вашим критериям" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "Диаграмма принимает данные в формате GeoJSON и отображает их в виде интерактивных полигонов, линий и точек (кругов, значков и/или текста)." + "Try different criteria to display results.": [ + "Попробуйте использовать другии критерии фильтрации" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" + "clear all filters": ["Сбросить все фильтры"], + "No Data": ["Нет данных"], + "%s-%s of %s": ["%s-%s из %s"], + "Type a value": ["Введите значение"], + "Filter": ["Фильтр"], + "Select or type a value": ["Выберите значение"], + "Last modified": ["Последнее изменение"], + "Modified by": ["Кем изменено"], + "Created by": ["Кем создано"], + "Created on": ["Дата создания"], + "Menu actions trigger": [""], + "Select ...": ["Выбрать ..."], + "Reset": ["Сбросить"], + "No filters": ["Нет фильтров"], + "Select all items": ["Выбрать все записи"], + "Select current page": ["Выбрать текущую страницу"], + "Invert current page": [""], + "Clear all data": ["Очистить все данные"], + "Select all data": ["Выбрать все данные"], + "Expand row": ["Развернуть строку"], + "Collapse row": ["Свернуть строку"], + "Click to sort descending": ["Нажмите для сортировки по убыванию"], + "Click to sort ascending": ["Нажмите для сортировки по возрастанию"], + "Click to cancel sorting": ["Нажмите для отмены сортировки"], + "List updated": ["Список обновлен"], + "There was an error loading the tables": [ + "Возникла ошибка при загрузке таблиц" ], - "The access requests seem to have been deleted": [""], - "The annotation has been saved": ["Аннотация сохранена"], - "The annotation has been updated": ["Аннотация обновлена"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "Категория исходных вершин предназначена для задания цветов. Если вершина связана более, чем с одной категорией, только первая будет использована." + "See table schema": ["Таблица"], + "Force refresh table list": ["Принудительно обновить список таблиц"], + "Timezone selector": ["Выбор часового пояса"], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Недостаточно пространства для этого компонента. Попробуйте уменьшить ширину или увеличить целевую ширину." ], - "The chart datasource does not exist": [ - "Источник данных графика не существует" + "Can not move top level tab into nested tabs": [ + "Невозможно перенести вкладку верхнего уровня во вложенную вкладку" ], - "The chart does not exist": ["График не существует"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "Классическая круговая/кольцевая диаграмма." + "This chart has been moved to a different filter scope.": [ + "Этот график был перемещён в другой набор фильтров." ], - "The color for points and clusters in RGB": [ - "Цвет для маркеров и кластеров в RGB" + "There was an issue fetching the favorite status of this dashboard.": [ + "Произошла ошибка с получением статуса избранного для этого дашборда." ], - "The color scheme for rendering chart": [ - "Цветовая схема, применяемая для раскрашивания графика" + "There was an issue favoriting this dashboard.": [ + "Произошла ошибка при добавлении этого дашборда в избранное." ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "Цветовая схема определена соответствующим дашбордом.\n Измените цветовую схему в свойствах дашборда." + "This dashboard is now published": ["Дашборд теперь опубликован"], + "This dashboard is now hidden": ["Дашборд теперь скрыт"], + "You do not have permissions to edit this dashboard.": [ + "У вас нет прав на редактирование этого дашборда." ], - "The column header label": ["Заголовок столбца"], - "The column was deleted or renamed in the database.": [ - "Столбец был удален или переименован в базе данных." + "[ untitled dashboard ]": ["[ безымянный дашборд ]"], + "This dashboard was saved successfully.": ["Дашборд успешно сохранен"], + "Sorry, an unknown error occurred": [ + "Извините, произошла неизвестная ошибка" ], - "The country code standard that Superset should expect to find in the [country] column": [ - "Код страны, который Суперсет ожидает найти в столбце со страной" + "Sorry, there was an error saving this dashboard: %s": [ + "Извините, произошла ошибка при сохранении дашборда: %s" ], - "The dashboard has been saved": ["Дашборд сохранен"], - "The data source seems to have been deleted": [ - "Источник данных, похоже, был удален" + "You do not have permission to edit this dashboard": [ + "У вас нет прав на редактирование этого дашборда" ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "База данных %s привязана к %s графику(-ам), который(-ые) используется(-ются) в %s дашборде(-ах), и пользователи имеют %s открытую(-ых) вкладку(-ок) в Лаборатории SQL. Вы уверены, что хотите продолжить? Удаление базы данных приведёт к неработоспособности этих компонентов." + "Could not fetch all saved charts": [ + "Не удалось получить все сохраненные графики" ], - "The database columns that contains lines information": [""], - "The database is currently running too many queries.": [ - "В настоящий момент база данных обрабатывает слишком много запросов." + "Sorry there was an error fetching saved charts: ": [ + "Извините, произошла ошибка при загрузке графиков: " ], - "The database is under an unusual load.": [ - "Нетипично высокая загрузка базы данных" + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Любая палитра, выбранная здесь, будет перезаписывать цвета, применённые к отдельным графикам этого дашборда" ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "База данных, указанная в этом запросе, не найдена. Пожалуйста, обратитесь к своему администратору или попробуйте еще раз." + "You have unsaved changes.": ["У вас есть несохраненные изменения."], + "Drag and drop components and charts to the dashboard": [ + "Переместите элементы оформления и графики на дашборд" ], - "The database returned an unexpected error.": [ - "База данных вернула неожиданную ошибку" + "You can create a new chart or use existing ones from the panel on the right": [ + "Вы можете создать новый график или использовать существующие из панели справа" ], - "The database was deleted.": ["База данных была удалена"], - "The database was not found.": ["Не удалось найти базу данных"], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "Датасет %s привязан к %s графику(-ам), который(-ые) используется(-ются) в %s дашборде(-ах). Вы уверены, что хотите продолжить? Удаление датасета приведёт к неработоспособности этих объектов." + "Create a new chart": ["Создать новый график"], + "Drag and drop components to this tab": [ + "Переместите элементы оформления и графики в эту вкладку" ], - "The dataset associated with this chart no longer exists": [ - "Датасет, связанный с этим графиком, больше не существует" + "There are no components added to this tab": [ + "В этой вкладке нет компонентов" ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "Представленная здесь конфигурация датасета\n влияет на все графики, использующие этот датасет.\n Помните, что изменение настроек\n может иметь неожиданный эффект\n на другие графики." + "You can add the components in the edit mode.": [ + "Вы можете добавить компоненты в режиме редактирования." ], - "The dataset has been saved": ["Датасет сохранен"], - "The dataset linked to this chart may have been deleted.": [ - "Датасет, связанный с этим графиком, похоже, был удален." + "Edit the dashboard": ["Редактировать дашборд"], + "There is no chart definition associated with this component, could it have been deleted?": [ + "С этим компонентом не связан ни один график, возможно, он был удален." ], - "The datasource couldn't be loaded": [ - "Невозможно загрузить источник данных" + "Delete this container and save to remove this message.": [ + "Удалите этот контейнер и сохраните изменения, чтобы убрать это сообщение." ], - "The datasource is too large to query.": [ - "Источник данных слишком велик для запроса." - ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "Описание может быть отображено как заголовок графика в дашборде. Поддерживает markdown-разметку" + "Refresh interval saved": ["Интервал обновления сохранен"], + "Refresh interval": ["Интервал обновления"], + "Refresh frequency": ["Частота обновления"], + "Are you sure you want to proceed?": [ + "Вы уверены, что хотите продолжить?" ], - "The distance between cells, in pixels": [ - "Расстояние между ячейками (в пикселях)" + "Save for this session": ["Сохранить на время текущей сессии"], + "You must pick a name for the new dashboard": [ + "Вы должны выбрать имя для нового дашборда" ], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "Объект engine_params вызывает sqlalchemy.create_engine" + "Save dashboard": ["Сохранить дашборд"], + "Overwrite Dashboard [%s]": ["Перезаписать дашборд [%s]"], + "Save as:": ["Сохранить как:"], + "[dashboard name]": ["[имя дашборда]"], + "also copy (duplicate) charts": [ + "также копировать (дублировать) графики" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "viz type": ["тип визуализации"], + "recent": ["недавние"], + "Create new chart": ["Создать новый график"], + "Filter your charts": ["Поиск"], + "Sort by %s": ["Сорт. по %s"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться" - ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться по порту %(port)s." + "Added": ["Добавлено"], + "Viz type": ["Тип визуализации"], + "Dataset": ["Датасет"], + "Superset chart": ["График Superset"], + "Check out this chart in dashboard:": [ + "Посмотреть этот график в дашборде:" ], - "The host might be down, and can't be reached on the provided port.": [ - "Хост возможно, отключен, и с ним невозможно связаться по заданному порту." + "Layout elements": ["Оформление"], + "Load a CSS template": ["Загрузить CSS шаблон"], + "Live CSS editor": ["Редактор CSS"], + "Collapse tab content": ["Свернуть содержимое вкладки"], + "There are no charts added to this dashboard": [ + "В этот дашборд еще не добавлен ни один график." ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "Не удалось обнаружить хост \"%(hostname)s\"" + "Go to the edit mode to configure the dashboard and add charts": [ + "Перейдите в режим редактирования для изменения дашборда и добавьте графики" ], - "The hostname provided can't be resolved.": [ - "Не удалось обнаружить хост." + "Changes saved.": ["Изменения сохранены."], + "Disable embedding?": ["Выключить встраивание?"], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": ["Встраивание отключено"], + "Sorry, something went wrong. Embedding could not be deactivated.": [ + "Извините, что-то пошло не так. Встраивание не может быть деактивировано." ], - "The id of the active chart": ["Идентификатор активного графика"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ - "Максимальное количество возвращаемых событий, эквивалентно количеству строк" + "Configure this dashboard to embed it into an external web application.": [ + "Настройте этот дашборд для встраивания во внешнее веб-приложение" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "" + "For further instructions, consult the": [ + "Для получения дальнейших инструкций обратитесь к" ], - "The maximum value of metrics. It is an optional configuration": [ - "Максимальное значение мер. Это необязательная настройка" + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [ + "Разрешенные домены (разделить запятыми)" ], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "" + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "Список доменных имен, которые могут встраивать этот дашборд. Если оставить поле пустым, любой домен сможет сделать встраивание." ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "" + "Deactivate": ["Выключить"], + "Save changes": ["Сохранить изменения"], + "Enable embedding": ["Разрешить встраивание"], + "Embed": ["Встроить"], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "В настоящий момент дашборд обновляется; следующее обновление будет через %s" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "Объект metadata_params вызывает sqlalchemy.MetaData" + "Your dashboard is too large. Please reduce its size before saving it.": [ + "Дашборд слишком большой. Пожалуйста, уменьшите его размер перед сохранением." ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "Минимальное количество скользящих периодов, необходимое для отображения значения. Например, если вы делаете накопительную сумму за 7 дней, вы можете указать, чтобы \"Минимальный период\" был равен 7, так что все показанные точки данных представляют собой общее количество 7 периодов." + "Add the name of the dashboard": ["Задайте имя дашборда"], + "Dashboard title": ["Название дашборда"], + "Undo the action": ["Отменить действие"], + "Redo the action": ["Повторить действие"], + "Discard": ["Отменить изменения"], + "Edit dashboard": ["Редактировать дашборд"], + "An error occurred while fetching available CSS templates": [ + "Произошла ошибка при получении доступных CSS-шаблонов" ], - "The number color \"steps\"": ["Количество цветов в цветовой схеме"], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "Количество часов, отрицательное или положительное, для сдвига столбца формата дата/время. Это может быть использовано для приведения часового пояса UTC к местному времени." + "Refreshing charts": ["Обновление графиков"], + "Superset dashboard": ["Дашборд Superset"], + "Check out this dashboard: ": ["Посмотреть дашборд: "], + "Refresh dashboard": ["Обновить дашборд"], + "Exit fullscreen": ["Выйти из полноэкранного режима"], + "Enter fullscreen": ["Полноэкранный режим"], + "Edit properties": ["Редактировать свойства"], + "Edit CSS": ["Редактировать CSS"], + "Download": ["Сохранить"], + "Share": ["Поделиться"], + "Copy permalink to clipboard": ["Скопировать ссылку в буфер обмена"], + "Share permalink by email": ["Поделиться ссылкой по email"], + "Embed dashboard": ["Встроить дашборд"], + "Manage email report": ["Управление рассылкой по почте"], + "Set filter mapping": ["Установить действие фильтра"], + "Set auto-refresh interval": ["Задать интервал обновления"], + "Confirm overwrite": ["Подтвердить перезапись"], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": ["Да, перезаписать изменения"], + "Are you sure you intend to overwrite the following values?": [ + "Вы уверены, что хотите перезаписать эти значения?" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "Количество отображаемых результатов ограничено %(rows)d переменной DISPLAY_MAX_ROW. Пожалуйста, добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d." + "Last Updated %s by %s": ["Изменено %s пользователем %s"], + "Apply": ["Применить"], + "Error": ["Ошибка"], + "A valid color scheme is required": [ + "Требуется корректная цветовая схема" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "Количество отображаемых результатов ограничено %(rows)d. Пожалуйста, добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d.\"" + "JSON metadata is invalid!": ["JSON метаданные не валидны!"], + "Dashboard properties updated": ["Свойства дашборда обновлены"], + "The dashboard has been saved": ["Дашборд сохранен"], + "Access": ["Доступ"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Владельцы – это список пользователей, которые могут изменять дашборд. Можно искать по имени или никнейму." ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "Количество отображаемых строк ограничено: не более %(rows)d." + "Colors": ["Цвета"], + "Dashboard properties": ["Свойства дашборда"], + "This dashboard is managed externally, and can't be edited in Superset": [ + "" ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "Количество отображаемых строк ограничено: не более %(rows)d." + "Basic information": ["Основная информация"], + "URL slug": ["Читаемый URL"], + "A readable URL for your dashboard": ["Читаемый URL-адрес для дашборда"], + "Certification": ["Утверждение"], + "Person or group that has certified this dashboard.": [ + "Лицо или группа, которые утвердили этот дашборд" ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "Количество отображаемых строк ограничено: не более %(rows)d." + "Any additional detail to show in the certification tooltip.": [ + "Любые дополнительные сведения для всплывающей подсказки" ], - "The number of seconds before expiring the cache": [ - "Количество секунд до истечения срока действия кэша" + "JSON metadata": ["JSON метаданные"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [ + "Использовать меню \"%(menuName)s\" взамен." ], - "The object does not exist in the given database.": [ - "Объект не существует в этой базе данных." + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Этот дашборд не опубликован, он не будет отображён в списке дашбордов. Нажмите, чтобы опубликовать этот дашборд." ], - "The parameter %(parameters)s in your query is undefined.": [ - "Параметр %(parameters)s в вашем запросе неопределен.", - "Следующие параметры неопределены в вашем запросе: %(parameters)s", - "Следующие параметры неопределены в вашем запросе: %(parameters)s" + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Этот дашборд не опубликован, что означает, что он не будет отображён в списке дашбордов. Добавьте его в избранное, чтобы увидеть там или воспользуйтесь доступом по прямой ссылке." ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "Неверный пароль для пользователя \"%(username)s\"." + "This dashboard is published. Click to make it a draft.": [ + "Дашборд опубликован. Нажмите, чтобы сделать черновиком." ], - "The password provided when connecting to a database is not valid.": [ - "Неверный пароль для базы данных." + "Draft": ["Черновик"], + "Annotation layers are still loading.": ["Слои аннотаций загружаются."], + "One ore more annotation layers failed loading.": [ + "Один или несколько слоев аннотации не удалось загрузить." ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Для баз данных нужны пароли, чтобы импортировать их вместе с графиками. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в экспортируемых файлов и должны быть добавлены вручную после импорта, если необходимо." + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Для баз данных нужны пароли, чтобы импортировать их вместе с дашбордами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в экспортируемых файлах и должны быть добавлены вручную после импорта, если необходимо." + "Data refreshed": ["Данные обновлены"], + "Cached %s": ["Добавлено в кэш %s"], + "Fetched %s": ["Получено %s"], + "Query %s: %s": ["Запрос %s: %s"], + "Force refresh": ["Обновить"], + "Hide chart description": ["Скрыть описание графика"], + "Show chart description": ["Показать описание графика"], + "View query": ["Показать SQL запрос"], + "View as table": ["Показать в виде таблицы"], + "Chart Data: %s": ["Данные графика: %s"], + "Share chart by email": ["Поделиться графиком по email"], + "Check out this chart: ": ["Посмотреть график: "], + "Export to .CSV": ["Экспорт в .CSV"], + "Export to full .CSV": ["Экспорт в целый .CSV"], + "Download as image": ["Сохранить как изображение"], + "Something went wrong.": [""], + "Search...": ["Поиск..."], + "No filter is selected.": ["Не выбраны фильтры."], + "Editing 1 filter:": ["Редактирование 1 фильтра:"], + "Batch editing %d filters:": [ + "Множественное редактирование фильтров: %d" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Пароли к базам данных требуются, чтобы импортировать их вместе с датасетами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" конфигурации базы данных отсутствуют в экспортируемых файлах и должны быть добавлены после импорта вручную, если необходимо." + "Configure filter scopes": ["Настроить область действия фильтра"], + "There are no filters in this dashboard.": [ + "В этом дашборде нет фильтров." ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Для баз данных нужны пароли, чтобы импортировать их вместе с сохраненными запросами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в экспортируемых файлах и должны быть добавлены вручную после импорта, если необходимо." + "Expand all": ["Расширить все"], + "Collapse all": ["Свернуть всё"], + "An error occurred while opening Explore": [ + "Произошла ошибка при открытии режима исследования" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "Пароли к базам данных требуются, чтобы импортировать их. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в импортируемых файлах и должны быть добавлены вручную после импорта, если необходимо." + "This markdown component has an error.": [ + "Этот компонент содержит ошибки." ], - "The pattern of timestamp format. For strings use ": [ - "Шаблон формата отметки времени (таймштампа). Для строк используйте " + "This markdown component has an error. Please revert your recent changes.": [ + "Этот компонент содержит ошибки. Пожалуйста, отмените последние изменения." ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "Периодичность для группировки по времени. Пользователи могут задавать собственную частоту. Для этого нажмите на иконку с информацией." + "Empty row": [""], + "You can": ["Вы можете"], + "create a new chart": ["создать новый график"], + "or use existing ones from the panel on the right": [ + "или использовать уже существующие из панели справа" ], - "The pixel radius": ["Радиус ячейки (в пикселях)"], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "Указатель на физическую таблицу (или представление). Следует помнить, что график связан с логической таблицей Superset, а эта логическая таблица указывает на физическую таблицу, указанную здесь." + "You can add the components in the": ["Вы можете добавить компоненты в"], + "edit mode": ["режиме редактирования"], + "Delete dashboard tab?": ["Удалить вкладку дашборда?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Удаление вкладки удалит все ее содержимое. Вы можете отменить это действие при помощи сочетания клавиш" ], - "The port is closed.": ["Порт закрыт."], - "The port number is invalid.": ["Недействительный порт."], - "The primary metric is used to define the arc segment sizes": [ - "Основная мера используется для определения размера сегмента дуги" + "undo": ["отмены"], + "button (cmd + z) until you save your changes.": [ + "(CTRL + Z), пока вы не сохраните изменения." ], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [ - "Запрос, связанный с результатами, был удален." + "CANCEL": ["ОТМЕНА"], + "Divider": ["Разделитель"], + "Header": ["Заголовок"], + "Text": ["Текст"], + "Tabs": ["Вкладки"], + "background": [""], + "Preview": ["Предпросмотр"], + "Sorry, something went wrong. Try again later.": [ + "Извините, что-то пошло не так. Попробуйте еще раз позже." ], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "Unknown value": ["Неизвестная ошибка"], + "Add/Edit Filters": ["Добавить/изменить фильтры"], + "No filters are currently added to this dashboard.": [ + "Не применено ни одного фильтра к данному дашборду." + ], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": ["Запрос невозможно загрузить"], - "The query has a syntax error.": ["Запрос имеет синтаксическую ошибку."], - "The query returned no data": ["Запрос не вернул данных"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Запрос был прерван после %(sqllab_timeout)s секунд. Он мог быть слишком сложным, или база данных находилась под большой нагрузкой." + "Apply filters": ["Применить фильтры"], + "Clear all": ["Сбросить фильтры"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "Радиус маркеров (не находящихся в кластере). Выберите числовой столбец или `Автоматически`, который отмасштабирует маркеры по наибольшему маркеру." + "All charts": ["Все графики"], + "Vertical (Left)": ["Вертикально (слева)"], + "Horizontal (Top)": ["Горизонтально (сверху)"], + "No applied filters": ["Фильтры не применены"], + "Applied filters: %s": ["Применены фильтры: %s"], + "Cannot load filter": ["Невозможно загрузить фильтр"], + "Filters out of scope (%d)": ["Фильтры вне рамок дашборда (%d)"], + "Dependent on": ["Зависит от"], + "Filter only displays values relevant to selections made in other filters.": [ + "Фильтр предлагает только те значения, которые отобраны выбранными фильтрами" ], - "The report has been created": ["Рассылка создана"], - "The results backend no longer has the data from the query.": [ - "Сервер не сохранил данные из этого запроса." + "Scope": ["Область"], + "Filter type": ["Тип фильтра"], + "Title is required": ["Название обязательно"], + "(Removed)": ["(Удалено)"], + "Undo?": ["Отменить?"], + "Add filters and dividers": ["Добавить фильтры и разделители"], + "[untitled]": ["[без названия]"], + "Cyclic dependency detected": ["Обнаружена циклическая зависимость"], + "Add and edit filters": ["Добавить и изменить фильтры"], + "Column select": ["Выбор столбца"], + "Select a column": ["Выберите столбец"], + "No compatible columns found": ["Не найдено подходящих столбцов"], + "Value is required": ["Значение обязательно"], + "(deleted or invalid type)": ["(удалено или невалидный тип)"], + "Limit type": ["Тип ограничения"], + "No available filters.": ["Нет доступных фильтров."], + "Add filter": ["Добавить фильтр"], + "Values are dependent on other filters": [ + "Значения зависят от других фильтров" ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Данные, сохраненные на сервере, имели другой формат, и не могут быть распознаны." + "Values selected in other filters will affect the filter options to only show relevant values": [ + "" ], - "The rich tooltip shows a list of all series for that point in time": [ - "Расширенная всплывающая подсказка показывает список всех категорий для этой точки." + "Values dependent on": ["Значения зависят от"], + "Scoping": ["Область применения"], + "Filter Configuration": ["Конфигурация фильтра"], + "Filter Settings": ["Настройки фильтра"], + "Select filter": ["Селектор"], + "Range filter": ["Диапазон"], + "Numerical range": ["Числовой диапазон"], + "Time filter": ["Временной фильтр"], + "Time range": ["Временной интервал"], + "Time column": ["Столбец даты/времени"], + "Time grain": ["Единица времени"], + "Group By": ["Группировать по"], + "Group by": ["Группировать по"], + "Pre-filter is required": ["Предварительная фильтрация обязательна"], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["Имя фильтра"], + "Name is required": ["Имя обязательно"], + "Filter Type": ["Тип фильтра"], + "Datasets do not contain a temporal column": [ + "Датасет не содержит столбца формата дата/время" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Dataset is required": ["Требуется датасет"], + "Pre-filter available values": [ + "Предварительно выбрать доступные значения для фильтра" + ], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "The schema was deleted or renamed in the database.": [ - "Схема была удалена или переименована в базе данных." + "Pre-filter": ["Предварительная фильтрация"], + "No filter": ["Без фильтрации"], + "Sort filter values": ["Сортировать отфильтрованные значения"], + "Sort type": ["Тип сортировки"], + "Sort ascending": ["Сортировать по возрастанию"], + "Sort Metric": ["Мера для сортировки"], + "If a metric is specified, sorting will be done based on the metric value": [ + "Если мера задана, сортировка будет произведена на основании значений меры" ], - "The size of the square cell, in pixels": [ - "Размер квадратной ячейки (в пикселях)" + "Sort metric": ["Показатель для сортировки"], + "Single Value": ["Единственное значение"], + "Single value type": ["Тип единственного значения"], + "Exact": ["Точное"], + "Filter has default value": ["Фильтр имеет значение по умолчанию"], + "Default Value": ["Значение по умолчанию"], + "Default value is required": ["Требуется значение по умолчанию"], + "Refresh the default values": ["Обновить значения по умолчанию"], + "Fill all required fields to enable \"Default Value\"": [ + "Установить все требуемые флаги для включения \"Значения по умолчанию\"" ], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ - "" + "You have removed this filter.": ["Вы удалили фильтр."], + "Restore Filter": ["Восстановить фильтр"], + "Column is required": ["Столбец обязателен"], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Значение по умолчанию задается автоматически, когда установлен флаг \"Сделать первое значение фильтра значением по умолчанию\"" ], - "The submitted payload has the incorrect format.": [ - "Загруженные данные имеют некорректный формат." + "Default value must be set when \"Filter value is required\" is checked": [ + "Значение по умолчанию должно быть выбрано, когда установлен флаг \"Требуется значение фильтра\"" ], - "The submitted payload has the incorrect schema.": [ - "Загруженные данные имеют некорректную схему." + "Default value must be set when \"Filter has default value\" is checked": [ + "Значение по умолчанию должно быть выбрано, когда установлен флаг \"Фильтр имеет значение по умолчанию\"" ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "Таблица \"%(table)s\" не существует. Для выполнения запроса должна использоваться существующая таблица" + "Apply to all panels": ["Применить ко всем панелям"], + "Apply to specific panels": ["Применить к выбранным панелям"], + "Only selected panels will be affected by this filter": [ + "Фильтр будет применён только к выбранным панелям" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "Таблица \"%(table_name)s\" не существует. Для выполнения запроса должна использоваться существующая таблица" + "All panels with this column will be affected by this filter": [ + "Фильтр будет применён ко всем панелям с этим столбцом" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "All panels": ["Все панели"], + "This chart might be incompatible with the filter (datasets don't match)": [ + "Этот график может быть несовместим с этим фильтром (датасеты не совпадают)" + ], + "Keep editing": ["Продолжить редактирование"], + "Yes, cancel": ["Да, отменить"], + "There are unsaved changes.": ["У вас есть несохраненные изменения."], + "Are you sure you want to cancel?": ["Вы уверены, что хотите отменить?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "Ошибка загрузки источников данных для графиков. Фильтры могут работать некорректно." + ], + "Transparent": ["Прозрачный"], + "White": ["Белый"], + "All filters": ["Все фильтры"], + "Click to edit %s.": ["Нажмите для редактирования %s."], + "Click to edit chart.": ["Нажмите для редактирования графика."], + "Use %s to open in a new tab.": [ + "Используйте %s для открытия в отдельной вкладке." + ], + "Medium": ["Средний"], + "Tab title": ["Имя вкладки"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "The table was deleted or renamed in the database.": [ - "Таблица была удалена или переименована в базе данных." + "Equal to (=)": [""], + "Not equal to (≠)": ["Не равно (≠)"], + "Less than (<)": [""], + "Like": [""], + "Time granularity": ["Гранулярность времени"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ + "Продолжительность в мс (100.40008 => 100ms 400µs 80ns)" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "Столбец данных формата дата/время. Вы можете определить произвольное выражение, которое будет возвращать столбец даты/времени в таблице. Фильтр ниже будет применён к этому столбцу или выражению" + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Один или несколько столбцов для группировки. Столбцы с множеством уникальных значений должны включать порог количества категорий для снижения нагрузку на базу данных и на ускорения отображения графика." ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "Интервал времени, в границах которого строится график. Обратите внимание, что для определения диапазона времени, вы можете использовать естественный язык. Например, можно указать словосочетания - «10 seconds», «1 day» или «56 weeks»" + "One or many metrics to display": [ + "Выберите одну или несколько мер для отображения" ], + "Fixed color": ["Фиксированный цвет"], + "Right axis metric": ["Мера для правой оси"], + "Choose a metric for right axis": ["Выберите меру для правой оси"], + "Linear color scheme": ["Линейная цветовая схема"], + "Color metric": ["Мера для цвета"], "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ "Интервал времени, в границах которого строится график. Обратите внимание, что для определения диапазона времени, вы можете использовать естественный язык. Например, можно указать словосочетания - «10 seconds», «1 day» или «56 weeks»" ], @@ -4526,1403 +4298,1367 @@ "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "Временной интервал для визуализации. Относительно время, например, \"Последний месяц\", \"Последние 7 дней\" и т.д. рассчитываются на сервере, используя локальное время сервера. Обратите внимание, что вы можете самостоятельно задать часовой пояс по формату ISO 8601 при пользовательской настройке, задав время начала и/или конца." ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "Единица времени для каждого подблока. Должна быть меньшей единицей, чем единица времени блока. Должно быть больше или равно единице времени" - ], - "The time unit used for the grouping of blocks": [ - "Единица времени для группировки блоков" + "Limits the number of rows that get displayed.": [ + "Ограничивает количество отображаемых строк" ], - "The type of visualization to display": [ - "Выберите необходимый тип визуализации" + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Мера, используемая для определения того, как сортируются верхние категории, если присутствует ограничение по категории или строке. Если не определено, возвращается к первой мере (где это уместно)." ], - "The unit of measure for the specified point radius": [ - "Единица измерения для указанного радиуса маркера" + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Группировка в ряды данных. Каждая категория отображается в виде определенного цвета на графике и имеет легенду" ], - "The user seems to have been deleted": [ - "Пользователь, похоже, был удален" + "Metric assigned to the [X] axis": ["Показатель, отраженный на оси X"], + "Metric assigned to the [Y] axis": ["Показатель, отраженный на оси Y"], + "Bubble size": ["Размер маркера"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Когда `Тип расчёта` установлен в \"Процентное изменение\", формат оси Y устанавливается в `.1%`" ], - "The user/password combination is not valid (Incorrect password for user).": [ - "" + "Color scheme": ["Цветовая схема"], + "An error occurred while starring this chart": [ + "Произошла ошибка при добавлении графика в избранное" ], - "The username \"%(username)s\" does not exist.": [ - "Пользователь \"%(username)s\" не существует." + "Chart [%s] has been saved": ["График [%s] сохранен"], + "Chart [%s] has been overwritten": ["График [%s] перезаписан"], + "Dashboard [%s] just got created and chart [%s] was added to it": [ + "Дашборд [%s] был только что создан и график [%s] был добавлен в него" ], - "The username provided when connecting to a database is not valid.": [ - "Имя пользователя, указанное при подключении к базе данных, недействительно" + "Chart [%s] was added to dashboard [%s]": [ + "График [%s] добавлен в дашборд [%s]" ], - "The way the ticks are laid out on the X-axis": [ - "Способ расположения делений по оси X" + "GROUP BY": ["GROUP BY"], + "Use this section if you want a query that aggregates": [""], + "NOT GROUPED BY": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "" ], - "The width of the lines": ["Ширина линий"], - "There are associated alerts or reports": [ - "Есть связанные оповещения или отчеты" + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "" ], - "There are associated alerts or reports: %s,": [ - "Есть связанные оповещения или отчеты: %s" + "This section contains validation errors": [ + "В этом разделе содержатся ошибки валидации" ], - "There are no charts added to this dashboard": [ - "В этот дашборд еще не добавлен ни один график." + "Keep control settings?": ["Оставить прежние настройки?"], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Вы изменили датасеты. Все элементы управления с данными (столбцами, мерами), которые соответствуют новому датасету, были сохранены." ], - "There are no components added to this tab": [ - "В этой вкладке нет компонентов" + "Continue": ["Продолжить"], + "Clear form": ["Очистить форму"], + "No form settings were maintained": [ + "Конфигурация графика не сохранилась" ], - "There are no databases available": ["Нет доступных баз данных"], - "There are no filters in this dashboard.": [ - "В этом дашборде нет фильтров." + "We were unable to carry over any controls when switching to this new dataset.": [ + "Не удалось перенести настройки прошлого графика при переключении датасета." ], - "There are unsaved changes.": ["У вас есть несохраненные изменения."], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "В SQL-запросе имеется синтаксическая ошибка. Возможно, это орфографическая ошибка или опечатка." + "Customize": ["Кастомизация"], + "Generating link, please wait..": [ + "Генерация ссылки, пожалуйста, ждите..." ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "С этим компонентом не связан ни один график, возможно, он был удален." + "Chart height": ["Высота графика"], + "Chart width": ["Ширина графика"], + "Save (Overwrite)": ["Сохранить (Перезаписать)"], + "Save as...": ["Сохранить как..."], + "Chart name": ["Имя графика"], + "Dataset Name": ["Имя датасета"], + "A reusable dataset will be saved with your chart.": [ + "Переиспользуемый датасет будет сохранен с вашим графиком." ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Недостаточно пространства для этого компонента. Попробуйте уменьшить ширину или увеличить целевую ширину." + "Add to dashboard": ["Добавить в дашборд"], + "Select a dashboard": ["Выбрать дашборд"], + "Select": ["Выбрать"], + " a dashboard OR ": [" дашборд или "], + "create": ["создать"], + " a new one": [" новый"], + "Save & go to dashboard": ["Сохранить и перейти к дашборду"], + "Save chart": ["Сохранить график"], + "Formatted date": ["Форматированная дата"], + "Column Formatting": ["Форматирование столбца(ов)"], + "Collapse data panel": ["Свернуть панель управления"], + "Expand data panel": ["Расширить панель данных"], + "Samples": ["Примеры данных"], + "No samples were returned for this dataset": [ + "Не было получено данных для этого датасета" ], - "There was an error fetching the favorite status: %s": [ - "Произошла ошибка при получении статуса избранного: %s" + "No results": ["Нет результатов"], + "Search Metrics & Columns": ["Поиск по мерам и столбцам"], + "Create a dataset": ["Создать датасет"], + " to edit or add columns and metrics.": [ + " для редактирования или добавления столбцов и мер." ], - "There was an error fetching your recent activity:": [ - "Произошла ошибка при получении вашей недавней активности:" + "Showing %s of %s": ["Отображено %s из %s"], + "Show less...": ["Показать меньше..."], + "Show all...": ["Показать все..."], + "Show Less...": ["Показать меньше..."], + "Unable to retrieve dashboard colors": [ + "Не удалось получать цветовую схему дашборда" ], - "There was an error loading the dataset metadata": [ - "Возникла ошибка при загрузке метаданных датасета" + "Not added to any dashboard": ["Не добавлен ни в один дашборд"], + "You can preview the list of dashboards in the chart settings dropdown.": [ + "" ], - "There was an error loading the schemas": [ - "Возникла ошибка при загрузке схем" + "Not available": ["Не доступно"], + "Add the name of the chart": ["Задайте имя графика"], + "Chart title": ["Название графика"], + "Add required control values to save chart": [ + "Добавьте обязательные значения для сохранения графика" ], - "There was an error loading the tables": [ - "Возникла ошибка при загрузке таблиц" + "Chart type requires a dataset": [ + "Для данного типа графика необходим датасет" ], - "There was an error saving the favorite status: %s": [ - "Произошла ошибка при сохранении статуса избранного: %s" + "This chart type is not supported when using an unsaved query as a chart source. ": [ + "" ], - "There was an error with your request": [ - "Произошла ошибка с вашим запросом" + " to visualize your data.": [" для визуализации ваших данных."], + "Required control values have been removed": [ + "Обязательные значения были удалены" ], - "There was an issue deleting %s: %s": [ - "Произошла ошибка при удалении %s: %s" + "Your chart is not up to date": ["Ваш график не актуален"], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Вы обновили значения в панели управления, но график не был обновлен автоматически. Сделайте запрос, нажав на кнопку \"Обновить график\" или" ], - "There was an issue deleting the selected %s: %s": [ - "Произошла ошибка при удалении выбранных %s: %s" + "Controls labeled ": ["Значения с именами "], + "Control labeled ": ["Значение с именем "], + "Open Datasource tab": ["Открыть вкладку источника данных"], + "Original": ["Исходные данные"], + "Pivoted": ["Сводные данные"], + "You do not have permission to edit this chart": [ + "У вас нет прав на редактирование этого графика" ], - "There was an issue deleting the selected annotations: %s": [ - "Произошла ошибка при удалении выбранных аннотаций: %s" + "Chart properties updated": ["Свойства графика обновлены"], + "Edit Chart Properties": ["Редактировать свойства графика"], + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Описание может быть отображено как заголовок графика в дашборде. Поддерживает markdown-разметку" ], - "There was an issue deleting the selected charts: %s": [ - "Произошла ошибка при удалении выбранных графиков: %s" + "Person or group that has certified this chart.": [ + "Лицо или группа, которые утвердили этот график" ], - "There was an issue deleting the selected dashboards: ": [ - "Произошла ошибка при удалении выбранных дашбордов: " + "Configuration": ["Конфигурация"], + "A list of users who can alter the chart. Searchable by name or username.": [ + "Владельцы - это пользователи, которые могут изменять график" ], - "There was an issue deleting the selected datasets: %s": [ - "Произошла ошибка при удалении выбранных датасетов: %s" + "Limit reached": ["Достигнут предел"], + "Create chart": ["Создать график"], + "Update chart": ["Обновить график"], + "Invalid lat/long configuration.": [ + "Неверная конфигурация широты и долготы." ], - "There was an issue deleting the selected layers: %s": [ - "Произошла ошибка при удалении выбранных слоёв: %s" + "Reverse lat/long ": ["Поменять местами широту и долготу"], + "Longitude & Latitude columns": ["Долгота и Широта"], + "Delimited long & lat single column": [ + "Долгота и широта в одном столбце" ], - "There was an issue deleting the selected queries: %s": [ - "Произошла ошибка при удалении выбранных запросов: %s" + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Для уточнения форматов и получения более подробной информации, посмотрите Python-библиотеку geopy.points" ], - "There was an issue deleting the selected templates: %s": [ - "Произошла ошибка при удалении выбранных шаблонов: %s" + "Geohash": ["Geohash"], + "textarea": ["текстовая область"], + "in modal": ["в модальном окне"], + "Sorry, An error occurred": ["Извините, произошла ошибка"], + "Save as Dataset": ["Сохранить как датасет"], + "Open in SQL Lab": ["Открыть в SQL редакторе"], + "Failed to verify select options: %s": [ + "Ошибка при проверке вариантов выбора: %s" ], - "There was an issue deleting: %s": ["Произошла ошибка при удалении: %s"], - "There was an issue duplicating the dataset.": [ - "Произошла ошибка при дублировании датасета." + "No annotation layers": ["Нет слоев аннотаций"], + "Add an annotation layer": ["Добавить слой аннотации"], + "Annotation layer": ["Слой аннотаций"], + "Select the Annotation Layer you would like to use.": [ + "Выбрать слой аннотации, который вы хотите использовать." ], - "There was an issue duplicating the selected datasets: %s": [ - "Произошла ошибка при дублировании выбранных датасетов: %s" + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "" ], - "There was an issue favoriting this dashboard.": [ - "Произошла ошибка при добавлении этого дашборда в избранное." + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Формула с зависимой переменной 'x' в милисекундах с 1970 года (Unix-время). Для рассчета используется mathjs. Например: '2x+5'" ], - "There was an issue fetching reports attached to this dashboard.": [ - "Произошла ошибка с получением рассылок, связанных с этим дашбордом." + "Annotation layer value": ["Значение слоя аннотации"], + "Bad formula.": ["Неверная формула."], + "Annotation Slice Configuration": ["Настройки аннотации из графика"], + "Interval start column": ["Столбец с началом интервала"], + "Event time column": ["Столбец формата дата/время"], + "This column must contain date/time information.": [ + "В этом столбец должны быть данные формата дата/время." ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Произошла ошибка с получением статуса избранного для этого дашборда." + "Annotation layer interval end": ["Конечный интервал слоя аннотации"], + "Interval End column": ["Столбец с концом интервала"], + "Title Column": ["Столбец с названием"], + "Pick a title for you annotation.": [ + "Выберите название для вашей аннотации" ], - "There was an issue fetching your chart: %s": [ - "Произошла ошибка при получении вашего графика: %s" + "Annotation layer description columns": [ + "Описательные столбцы слоя аннотаций." ], - "There was an issue fetching your dashboards: %s": [ - "Произошла ошибка при получении вашего дашборда: %s" + "Description Columns": ["Описательные столбцы"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Выберите один или несколько столбцов, которые должны отображаться в аннотации. Если вы не выберите столбец, все столбцы будут отображены." ], - "There was an issue fetching your recent activity: %s": [ - "Произошла ошибка при получении вашей последней активности: %s" + "Override time range": ["Переопределить временной интервал"], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Должен ли временной интервал из этого представления переписать временной интервал графика, содержащего данные аннотации." ], - "There was an issue fetching your saved queries: %s": [ - "Произошла ошибка при получении ваших сохраненных запросов: %s" + "Override time grain": ["Переопределить единицу времени"], + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Должен ли единица времени из этой таблицы переписать единицу времени графика." ], - "There was an issue previewing the selected query %s": [ - "Произошла ошибка при предпросмотре выбранного запроса %s" + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Временной сдвиг на естественном языке (например: 24 hours, 7 days, 56 weeks, 365 days)" ], - "There was an issue previewing the selected query. %s": [ - "Произошла ошибка при предпросмотре выбранного запроса: %s" + "Display configuration": ["Настройки отображения"], + "Configure your how you overlay is displayed here.": [ + "Настройка отображения слоя аннотации поверх графика." ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "" + "Annotation layer stroke": ["Штрих слоя аннотации"], + "Style": ["Стиль"], + "Solid": ["Сплошной"], + "Dashed": ["Штрих"], + "Long dashed": ["Длинный штрих"], + "Dotted": ["Пунктир"], + "Annotation layer opacity": ["Непрозрачность слоя аннотации"], + "Color": ["Цвет"], + "Automatic Color": ["Автоматический цвет"], + "Shows or hides markers for the time series": [ + "Показывает или скрывает маркеры для временных рядов" ], - "These are the tables this filter will be applied to.": [ - "Это таблицы, к которым будет применен этот фильтр." + "Hide Line": ["Скрыть линию"], + "Hides the Line for the time series": [""], + "Layer configuration": ["Настройки слоя"], + "Configure the basics of your Annotation Layer.": [ + "Настройте слой аннотации." ], - "These filters apply to the values available in the dropdowns": [ - "Эти фильтры применяются к значениям, доступным в выпадающих списках" + "Mandatory": ["Обязательно"], + "Hide layer": ["Скрыть слой"], + "Show label": ["Показывать метку"], + "Whether to always show the annotation label": [ + "Всегда показывать метку аннотации" ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Эти параметры генерируются автоматически при нажатии кнопки сохранения. Опытные пользователи могут изменить определенные объекты в формате JSON." + "Annotation layer type": ["Тип слоя аннотации"], + "Choose the annotation layer type": ["Выбрать тип слоя аннотации"], + "Annotation source type": ["Тип источника аннотации"], + "Choose the source of your annotations": ["Выберите источник аннотаций"], + "Annotation source": ["Источник аннотации"], + "Remove": ["Удалить"], + "Time series": ["Временной ряд"], + "Edit annotation layer": ["Редактировать слой аннотации"], + "Add annotation layer": ["Добавить слой аннотации"], + "Empty collection": ["Пустая коллекция"], + "Add an item": ["Добавить запись"], + "Remove item": ["Удалить элемент"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Этот JSON-объект генерируется автоматически при сохранении или перезаписи дашборда. Он размещён здесь справочно и для опытных пользователей." + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Цветовая схема определена соответствующим дашбордом.\n Измените цветовую схему в свойствах дашборда." ], - "This action will permanently delete %s.": [ - "Это действие навсегда удалит %s." + "dashboard": ["дашборд"], + "Dashboard scheme": ["Схема дашборда"], + "Select color scheme": ["Выберите цветовую схему"], + "Select scheme": ["Выберите схему"], + "Show less columns": ["Показать меньше столбцов"], + "Show all columns": ["Показать все столбцы"], + "Fraction digits": ["Десятичные знаки"], + "Number of decimal digits to round numbers to": [ + "Кол-во десятичных разрядов для округления числа" ], - "This action will permanently delete the layer.": [ - "Это действие навсегда удалит слой." + "Min Width": ["Минимальная ширина"], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Минимальная ширина столбца (в пикселях). Реальная ширина по-прежнему может быть больше, чем указанная, если остальным столбцам не будет хватать места." ], - "This action will permanently delete the saved query.": [ - "Это действие навсегда удалит сохранённый запрос." - ], - "This action will permanently delete the template.": [ - "Это действие навсегда удалит шаблон." + "Text align": ["Выравнивание текста"], + "Horizontal alignment": ["Выравнивание по горизонтали"], + "Show cell bars": ["Наложить гистограммы на ячейки"], + "Whether to align positive and negative values in cell bar chart at 0": [ + "Выравнивание гистограммы внутри ячеек по горизонтали слева" ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "Это может быть как IP адрес (например, 127.0.0.1), так и доменное имя (например, моябазаданных.рф)." + "Whether to colorize numeric values by if they are positive or negative": [ + "Окрашивать ячейки с числами в зависимости от их знака" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "This chart has been moved to a different filter scope.": [ - "Этот график был перемещён в другой набор фильтров." - ], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ - "Этот график может быть несовместим с этим фильтром (датасеты не совпадают)" + "Small number format": ["Форматирование маленьких чисел"], + "Add new formatter": ["Добавить форматирование"], + "Add new color formatter": ["Добавить цветовое форматирование"], + "alert": ["оповещение"], + "error dark": [""], + "This value should be smaller than the right target value": [ + "Это значение должно быть больше чем правое целевое значение" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "" + "This value should be greater than the left target value": [ + "Это значение должно быть больше чем левое целевое значение" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Required": ["Обязательно"], + "Operator": ["Оператор"], + "Left value": ["Левое значение"], + "Right value": ["Правое значение"], + "Target value": ["Целевое значение"], + "Select column": ["Выберите столбец"], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ "" ], - "This column might be incompatible with current dataset": [ - "Этот график может быть несовместим с этим датасетом" - ], - "This column must contain date/time information.": [ - "В этом столбец должны быть данные формата дата/время." - ], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Должен ли временной интервал из этого представления переписать временной интервал графика, содержащего данные аннотации." - ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Должен ли единица времени из этой таблицы переписать единицу времени графика." - ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "В настоящий момент дашборд обновляется; следующее обновление будет через %s" - ], - "This dashboard is managed externally, and can't be edited in Superset": [ - "" + "The lower limit of the threshold range of the Isoband": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Редактировать датасет"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Вы должны быть владельцем датасета для его редактирования. Пожалуйста, обратитесь к владельцу с просьбой предоставить доступ." ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "Этот дашборд не опубликован, что означает, что он не будет отображён в списке дашбордов. Добавьте его в избранное, чтобы увидеть там или воспользуйтесь доступом по прямой ссылке." + "View in SQL Lab": ["Открыть в Лаборатории SQL"], + "Query preview": ["Предпросмотр запроса"], + "Save as dataset": ["Сохранить как датасет"], + "Missing URL parameters": ["Пропущенные параметры URL"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [ + "Датасет, связанный с этим графиком, похоже, был удален." ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Этот дашборд не опубликован, он не будет отображён в списке дашбордов. Нажмите, чтобы опубликовать этот дашборд." + "RANGE TYPE": ["ТИП ИНТЕРВАЛА"], + "Actual time range": ["Фактический временной интервал"], + "APPLY": ["ПРИМЕНИТЬ"], + "Edit time range": ["Изменить временной интервал"], + "Configure Advanced Time Range ": [ + "Установить особый временной интервал " ], - "This dashboard is now hidden": ["Дашборд теперь скрыт"], - "This dashboard is now published": ["Дашборд теперь опубликован"], - "This dashboard is published. Click to make it a draft.": [ - "Дашборд опубликован. Нажмите, чтобы сделать черновиком." + "START (INCLUSIVE)": ["НАЧАЛО (ВКЛЮЧИТЕЛЬНО)"], + "Start date included in time range": [ + "Начальная дата включена во временной интервал" ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ - "" + "END (EXCLUSIVE)": ["КОНЕЦ (НЕ ВКЛЮЧИТЕЛЬНО)"], + "End date excluded from time range": [ + "Конечная дата исключена из временного интервала" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "Этот дашборд был недавно изменен. Пожалуйста, обновите дашборд, чтобы увидеть изменения." + "Configure Time Range: Previous...": [ + "Установить временной интервал: предыдущий..." ], - "This dashboard was saved successfully.": ["Дашборд успешно сохранен"], - "This database is managed externally, and can't be edited in Superset": [ - "Эта база данных управляется извне и не может быть изменена в Суперсете" + "Configure Time Range: Last...": [ + "Установить временной интервал: последний..." ], - "This database table does not contain any data. Please select a different table.": [ - "" + "Configure custom time range": [ + "Установить пользовательский временной интервал" ], - "This dataset is managed externally, and can't be edited in Superset": [ - "Этот датасет управляется извне и не может быть изменена в Суперсете" + "Relative quantity": ["Относительное количество"], + "Relative period": ["Относительный период"], + "Anchor to": ["Привязать к"], + "NOW": ["СЕЙЧАС"], + "Date/Time": ["Дата/Время"], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": ["Пример"], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Усекает указанную дату с точностью, указанной в единице измерения даты." ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [ - "Элемент, который будет отражен на графике" + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": ["Предыдущий"], + "Custom": ["Пользовательский"], + "last day": ["последний день"], + "last week": ["последняя неделя"], + "last month": ["последний месяц"], + "last quarter": ["последний квартал"], + "last year": ["последний год"], + "previous calendar week": ["предыдущая календарная неделя"], + "previous calendar month": ["предыдущий календарный месяц"], + "previous calendar year": ["предыдущий календарный год"], + "Seconds %s": ["Секунд %s"], + "Minutes %s": ["Минут %s"], + "Hours %s": ["Часов %s"], + "Days %s": ["Дней %s"], + "Weeks %s": ["Недель %s"], + "Months %s": ["Месяцев %s"], + "Quarters %s": ["Кварталов %s"], + "Years %s": ["Лет %s"], + "Specific Date/Time": ["Конкретная дата/время"], + "Relative Date/Time": ["Относительная дата/время"], + "Now": ["Сейчас"], + "Midnight": ["Полночь"], + "Saved expressions": ["Сохраненные выражения"], + "Saved": ["Сохранено"], + "%s column(s)": ["Столбцов: %s"], + "No temporal columns found": ["Столбцы формата дата/время не найдены"], + "No saved expressions found": ["Не найдено сохраненных выражений"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "Добавьте новые столбцы формата дата/время в датасет в настройках датасета" ], - "This defines the level of the hierarchy": [ - "Определяет уровень иерархии" + "Add calculated columns to dataset in \"Edit datasource\" modal": [ + "Добавьте новые вычисляемые столбцы в датасет в настройках датасета" ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "" + " to mark a column as a time column": [ + ", чтобы пометить столбец как столбец даты/времени" ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Этот фильтр не существует в дашборде. Он не будет применен." + " to add calculated columns": [" для добавления вычисляемых столбцов"], + "Simple": ["Столбец"], + "Mark a column as temporal in \"Edit datasource\" modal": [ + "Присвойте столбцу формат даты/времени в настройках датасета" ], + "Custom SQL": ["Через SQL"], + "My column": ["Мой столбец"], "This filter might be incompatible with current dataset": [ "Этот фильтр может быть несовместим с этим датасетом" ], - "This filter set is identical to: \"%s\"": [ - "Этот набор фильтров идентичен \"%s\"" - ], - "This functionality is disabled in your environment for security reasons.": [ - "Эта функция отключена в вашей среде по соображениям безопасности." - ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "Это условие, которое будет добавлено к оператору WHERE. Например, чтобы возвращать строки только для определенного клиента, вы можете определить обычный фильтр с условием `client_id = 9`. Чтобы не отображать строки, если пользователь не принадлежит к роли фильтра RLS, можно создать базовый фильтр с предложением `1 = 0` (всегда false)." - ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Этот JSON объект описывает расположение графиков в дашборде. Он генерируется динамически при изменении и перемещении графиков в дашборде." - ], - "This markdown component has an error.": [ - "Этот компонент содержит ошибки." - ], - "This markdown component has an error. Please revert your recent changes.": [ - "Этот компонент содержит ошибки. Пожалуйста, отмените последние изменения." + "This column might be incompatible with current dataset": [ + "Этот график может быть несовместим с этим датасетом" ], - "This may be triggered by:": ["Возможные причины:"], + "Click to edit label": ["Нажмите для редактирования метки"], + "Drop columns/metrics here or click": ["Перетащите столбцы/меры сюда"], "This metric might be incompatible with current dataset": [ "Эта мера может быть несовместима с этим датасетом" ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "В этом разделе содержатся параметры, которые позволяют производить аналитическую постобработку результатов запроса" + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "\n Фильтр был наследован из контекста дашборда.\n Он не будет сохранен при сохранении графика.\n " ], - "This section contains validation errors": [ - "В этом разделе содержатся ошибки валидации" + "%s option(s)": ["%s вариант(ов)"], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Такой столбец не найден. Чтобы фильтровать по мере, попробуйте использовать вкладку Свой SQL." ], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ - "" + "To filter on a metric, use Custom SQL tab.": [ + "Для фильтрации по мере используйте вкладку Свой SQL." ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ - "" + "%s operator(s)": ["%s параметр(ы)"], + "Select operator": ["Выбрать оператор"], + "Comparator option": [""], + "Type a value here": ["Введите значение здесь"], + "Filter value (case sensitive)": [ + "Фильтровать значения (зависит от регистра)" ], - "This value should be greater than the left target value": [ - "Это значение должно быть больше чем левое целевое значение" + "Failed to retrieve advanced type": [ + "Не удалось получить расширенный тип" ], - "This value should be smaller than the right target value": [ - "Это значение должно быть больше чем правое целевое значение" + "choose WHERE or HAVING...": ["выберите WHERE или HAVING..."], + "Filters by columns": ["Фильтры по столбцам"], + "Filters by metrics": ["Фильтры по мерам"], + "metric": ["мера"], + "Fixed": ["Фиксированный"], + "Based on a metric": ["На основе меры"], + "My metric": ["Моя мера"], + "Add metric": ["Добавить меру"], + "Select aggregate options": ["Выберите настройки агрегации"], + "%s aggregates(s)": ["Агрегатных функций: %s"], + "Select saved metrics": ["Выберите сохраненные меры"], + "%s saved metric(s)": ["Сохраненная мер: %s"], + "Saved metric": ["Сохраненная мера"], + "No saved metrics found": ["Не найдено сохраненных мер"], + "Add metrics to dataset in \"Edit datasource\" modal": [ + "Добавьте меры в датасет в настройках датасета" ], - "This visualization type is not supported.": [ - "Этот тип визуализации не поддерживается." + " to add metrics": [" для добавления мер"], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": ["столбец"], + "aggregate": ["агрегатная функция"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "Пользовательские ad-hoc меры SQL не разрешены для этого датасета" ], - "This was triggered by:": [ - "Причина срабатывания:", - "Причины срабатывания", - "Причины срабатывания" + "Error while fetching data: %s": [ + "Возникла ошибка при получении данных: %s" ], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [ - "Пороговый альфа-уровень для определения значимости" + "Time series columns": ["Столбцы временных рядов"], + "Actual value": ["Фактическое значение"], + "Sparkline": ["Спарклайн"], + "Period average": ["Среднее за период"], + "The column header label": ["Заголовок столбца"], + "Column header tooltip": ["Всплывающая подсказка заголовка столбца"], + "Type of comparison, value difference or percentage": [ + "Тип сравнения, разница значений или доля" ], - "Threshold value should be double precision number": [ - "Пороговое значение должно быть числом двойной точности" + "Width": ["Ширина"], + "Width of the sparkline": ["Ширина спарклайна"], + "Height of the sparkline": ["Высота спарклайна"], + "Time lag": ["Временной лаг"], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Thumbnails": ["Миниатюры"], - "Thursday": ["Четверг"], - "Time": ["Время"], - "Time Column": ["Столбец даты/времени"], - "Time Comparison": ["Сравнение по времени"], - "Time Format": ["Формат даты/времени"], - "Time Grain": ["Единица времени"], - "Time Granularity": ["Гранулярность времени"], "Time Lag": ["Временной лаг"], - "Time Range": ["Временной интервал"], + "Time ratio": ["Соотношение времени"], + "Number of periods to ratio against": [ + "Количество периодов для сравнения" + ], "Time Ratio": ["Соотношение времени"], - "Time Series": ["Временной ряд"], - "Time Series - Bar Chart": ["Столбчатая диаграмма (временные ряды)"], - "Time Series - Line Chart": ["Линейная диаграмма (временные ряды)"], - "Time Series - Nightingale Rose Chart": [ - "Диаграмма Найтингейл (временные ряды)" + "Show Y-axis": ["Показать ось Y"], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Показывать ось Y на спарклайне." ], - "Time Series - Paired t-test": ["Парный t-test (временные ряды)"], - "Time Series - Percent Change": ["Процентное изменение (временные ряды)"], - "Time Series - Stacked": ["Диаграмма с накоплением (временные ряды)"], - "Time Series Options": ["Настройки временных рядов"], - "Time Shift": ["Временной сдвиг"], - "Time column": ["Столбец даты/времени"], - "Time column \"%(col)s\" does not exist in dataset": [ - "Столбец формата дата/время \"%(col)s\" не существует в датасете" + "Y-axis bounds": ["Границы оси Y"], + "Manually set min/max values for the y-axis.": [ + "Вручную задать мин./макс. значения для оси Y" ], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": ["Столбец с датой"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ - "Временной сдвиг на естественном языке (например: 24 hours, 7 days, 56 weeks, 365 days)" + "Color bounds": ["Границы цвета"], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Неоднозначный временной сдвиг. Пожалуйста, укажите [%(human_readable)s до] или [%(human_readable)s после]." + "Optional d3 number format string": ["Формат числовой строки"], + "Number format string": ["Числовой формат"], + "Optional d3 date format string": ["Формат временной строки"], + "Date format string": ["Формат временной строки"], + "Column Configuration": ["Свойства столбца"], + "Select Viz Type": ["Выберите тип визуализации"], + "Currently rendered: %s": ["Сейчас отрисовано: %s"], + "Recommended tags": ["Рекомендованные теги"], + "Search all charts": ["Поиск по всем графикам"], + "No description available.": ["Описание отсутствует."], + "Examples": ["Примеры"], + "This visualization type is not supported.": [ + "Этот тип визуализации не поддерживается." ], - "Time filter": ["Временной фильтр"], - "Time format": ["Формат даты/времени"], - "Time grain": ["Единица времени"], - "Time grain missing": ["Единица времени отсутствует"], - "Time granularity": ["Гранулярность времени"], + "View all charts": ["Показать все графики"], + "Select a visualization type": ["Выберите тип визуализации"], + "No results found": ["Записи не найдены"], + "Superset Chart": ["График Superset"], + "New chart": ["Новый график"], + "Edit chart properties": ["Редактировать свойства графика"], + "Dashboards added to": ["Добавлено в дашборды"], + "Export to original .CSV": ["Экспорт исходных данных в .CSV"], + "Export to pivoted .CSV": ["Экспорт сводной таблицы в .CSV"], + "Export to .JSON": ["Экспорт в .JSON"], + "Embed code": ["Встроенный код"], + "Run in SQL Lab": ["Открыть в SQL редакторе"], + "Code": ["Редактор"], + "Markup type": ["Тип разметки"], + "Pick your favorite markup language": [ + "Выберите свой любимый язык разметки" + ], + "Put your code here": [ + "Введите произвольный текст в формате html или markdown" + ], + "URL parameters": ["Параметры URL"], + "Extra parameters for use in jinja templated queries": [ + "Дополнительные параметры для запросов, использующих шаблонизацию Jinja" + ], + "Annotations and layers": ["Аннотации и слои"], + "Annotation layers": ["Слои аннотаций"], + "My beautiful colors": ["Мои красивые цвета"], + "< (Smaller than)": ["< (меньше чем)"], + "> (Larger than)": ["> (больше чем)"], + "<= (Smaller or equal)": ["<= (меньше или равно)"], + ">= (Larger or equal)": [">= (больше или равно)"], + "== (Is equal)": ["== (равно)"], + "!= (Is not equal)": ["!= (не равно)"], + "Not null": ["Не пусто"], + "60 days": ["60 дней"], + "90 days": ["90 дней"], + "Add notification method": ["Добавить способ уведомления"], + "Add delivery method": ["Добавить способ оповещения"], + "Add": ["Добавить"], + "Edit Report": ["Редактировать отчет"], + "Edit Alert": ["Редактировать оповещение"], + "Add Report": ["Добавить рассылку"], + "Add Alert": ["Добавить оповещение"], + "Report name": ["Имя отчета"], + "Alert name": ["Имя оповещения"], + "Active": ["Активен"], + "Alert condition": ["Условие оповещения"], + "SQL Query": ["SQL запрос"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Оповестить, если..."], + "Condition": ["Условие"], + "Report schedule": ["Расписание отчета"], + "Alert condition schedule": ["Расписание условия оповещения"], + "Timezone": ["Часовой пояс"], + "Schedule settings": ["Настройки расписания"], + "Log retention": ["Хранение журнала"], + "Working timeout": ["Время на рассылку"], "Time in seconds": ["Время в секундах"], - "Time lag": ["Временной лаг"], - "Time range": ["Временной интервал"], - "Time ratio": ["Соотношение времени"], - "Time related form attributes": ["Параметры, связанные со временем"], - "Time series": ["Временной ряд"], - "Time series columns": ["Столбцы временных рядов"], - "Time shift": ["Временной сдвиг"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Временная строка неоднозначна. Пожалуйста, укажите [%(human_readable)s до] или [%(human_readable)s после]." + "seconds": ["секунд"], + "Grace period": ["Перерыв между оповещением"], + "Message content": ["Содержимое сообщения"], + "Send as PNG": ["Отправить в формате PNG"], + "Send as CSV": ["Отправить в формате CSV"], + "Send as text": ["Отправить текстом"], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Способ уведомления"], + "report": ["рассылка"], + "%s updated": ["Обновлено: %s"], + "CRON Schedule": ["CRON расписание"], + "CRON expression": ["CRON выражение"], + "Report sent": ["Отчет отправлен"], + "Alert triggered, notification sent": [ + "Сработало оповещение, уведомление отправлено" ], - "Time-series Area Chart": ["Диаграмма с областями (временные ряды)"], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "Диаграмма с наполнением похожа на линейную диаграмму тем, что они представляют переменные с одинаковым масштабом, но диаграммы с наполнением накладывают показатели друг на друга." + "Report sending": ["Отчет выполняется"], + "Alert running": ["Выполняется оповещение"], + "Report failed": ["Рассылка не удалась"], + "Alert failed": ["Оповещение не сработало"], + "Nothing triggered": ["Не срабатывало"], + "Alert Triggered, In Grace Period": [ + "Оповещение сработало во время перерыва" ], - "Time-series Bar Chart": ["Столбчатая диаграмма"], - "Time-series Bar Chart (legacy)": ["Столбчатая диаграмма (устарело)"], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Столбчатые диаграммы временных рядов используются для отображения изменений меры с течением времени в виде серии столбцов." + "Delivery method": ["Способ оповещения"], + "Select Delivery Method": ["Выберите способ оповещения"], + "Recipients are separated by \",\" or \";\"": [ + "Получатели, разделенные \",\" или \";\"" ], - "Time-series Chart": ["Диаграмма (временные ряды)"], - "Time-series Line Chart": ["Линейная диаграмма (временные ряды)"], - "Time-series Percent Change": ["Процентное изменение (временные ряды)"], - "Time-series Scatter Plot": ["Точечная Диаграмма"], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "На горизонтальной оси Точечной диаграммы откладывается время в линейных единицах, а точки соединяются по порядку. Он показывает статистическую зависимость между двумя переменными." + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["слой_аннотации"], + "Annotation template updated": ["Шаблон аннотации обновлен"], + "Annotation template created": ["Шаблон аннотации создан"], + "Edit annotation layer properties": [ + "Редактировать свойства слоя аннотаций" ], - "Time-series Smooth Line": [ - "Плавная линейная диаграмма (временные ряды)" + "Annotation layer name": ["Имя слоя аннотаций"], + "Description (this can be seen in the list)": [ + "Описание (будет видно в списке)" ], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "" + "annotation": ["аннотация"], + "The annotation has been updated": ["Аннотация обновлена"], + "The annotation has been saved": ["Аннотация сохранена"], + "Edit annotation": ["Редактировать аннотацию"], + "Add annotation": ["Добавить аннотацию"], + "date": ["дата"], + "Additional information": ["Дополнительная информация"], + "Please confirm": ["Пожалуйста, подтвердите действие"], + "Are you sure you want to delete": ["Вы уверены, что хотите удалить"], + "Modified %s": ["Изменено %s"], + "css_template": ["шаблон_css"], + "Edit CSS template properties": ["Редактировать свойств CSS шаблона"], + "Add CSS template": ["Добавить CSS шаблоны"], + "css": ["css"], + "published": ["опубликовано"], + "draft": ["черновик"], + "Adjust how this database will interact with SQL Lab.": [ + "Настройка взаимодействия базы данных с Лабораторией SQL" ], - "Time-series Stepped Line": ["Диаграмма шагов (временные ряды)"], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "" + "Expose database in SQL Lab": [ + "Предоставить доступ к базе в Лаборатории SQL" ], - "Time-series Table": ["Таблица временных рядов"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Линейная диаграмма временных рядов используется для визуализации повторяющихся измерений, происходящих через регулярные промежутки времени. Линейная диаграмма - это тип диаграммы, который отображает информацию в виде ряда точек данных, соединенных прямыми отрезками. Это базовый тип диаграммы, распространенный во многих областях." + "Allow this database to be queried in SQL Lab": [ + "Разрешить запросы к этой базе данных в Лаборатории SQL" ], - "Timeout error": ["Ошибка таймаута"], - "Timestamp format": ["Формат даты и времени"], - "Timezone": ["Часовой пояс"], - "Timezone offset (in hours) for this datasource": [ - "Смещение часового пояса (в часах) для этого источника данных" + "Allow creation of new tables based on queries": [ + "Разрешить создание новых таблиц на основе запросов" ], - "Timezone selector": ["Выбор часового пояса"], - "Tiny": ["Крошечный"], - "Title": ["Заголовок"], - "Title Column": ["Столбец с названием"], - "Title is required": ["Название обязательно"], - "Title or Slug": ["Название или читаемый URL"], - "To filter on a metric, use Custom SQL tab.": [ - "Для фильтрации по мере используйте вкладку Свой SQL." + "Allow creation of new views based on queries": [ + "Разрешить создание новых представлений на основе запросов" ], - "To get a readable URL for your dashboard": [ - "Для получения читаемого URL-адреса дашборда" + "CTAS & CVAS SCHEMA": ["СХЕМА CTAS & CVAS"], + "Create or select schema...": ["Создать или выбрать схему..."], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Принудить создание новых таблиц через CTAS или CVAS в Лаборатории SQL в этой схеме при нажатии соответствующих кнопок" ], - "Tools": ["Инструменты"], - "Tooltip": ["Всплывающая подсказка"], - "Tooltip sort by metric": ["Сортировка данных подсказки по мере"], - "Tooltip time format": ["Формат времени всплывающей подсказки"], - "Top": ["Сверху"], - "Top left": ["Сверху слева"], - "Top right": ["Сверху справа"], - "Top to Bottom": ["Сверху вниз"], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": ["Итого: %s"], - "Totals": ["Общая сумма"], - "Track job": ["Отслеживать работу"], - "Transformable": ["Трансформируемый"], - "Transparent": ["Прозрачный"], - "Transpose pivot": ["Транспонировать таблицу"], - "Tree Chart": ["Древовидная диаграмма"], - "Tree layout": ["Оформление дерева"], - "Tree orientation": ["Ориентация дерева"], - "Treemap": ["Плоское дерево"], - "Trend": ["Тенденция"], - "Triangle": ["Треугольник"], - "Trigger Alert If...": ["Оповестить, если..."], - "Truncate Axis": ["Настройка интервала оси"], - "Truncate Metric": ["Убрать имя меры"], - "Truncate Y Axis": ["Урезать интервал оси Y"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "Уменьшить интервал по умолчанию для оси Y. Необходимо задать минимальную и максимальную границы. Обратите внимание, что некоторые линии могут пропасть из области видимости." + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Разрешить управление базой данных, используя запросы UPDATE, DELETE, CREATE и т.п." ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Усекает указанную дату с точностью, указанной в единице измерения даты." + "Enable query cost estimation": ["Разрешить оценку стоимости запроса"], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Для Bigquery, Presto и Postgres, показывать кнопку подсчета стоимости запроса перед его выполнением." ], - "Try applying different filters or ensuring your datasource has data": [ - "Попробуйте использовать другие фильтры или убедитесь, что в вашем источнике данных есть данные" + "Allow this database to be explored": [ + "Разрешить изучение этой базы данных" ], - "Try different criteria to display results.": [ - "Попробуйте использовать другии критерии фильтрации" + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Если этот параметр включен, пользователи могут смотреть ответ запросов Лаборатории SQL в режиме исследования." ], - "Try selecting a different schema": [""], - "Tuesday": ["Вторник"], - "Type": ["Тип"], - "Type \"%s\" to confirm": ["Введите \"%s\" для подтверждения"], - "Type a value": ["Введите значение"], - "Type a value here": ["Введите значение здесь"], - "Type is required": ["Поле обязательно"], - "Type of Google Sheets allowed": ["Допустимый тип Google Таблиц"], - "Type of comparison, value difference or percentage": [ - "Тип сравнения, разница значений или доля" + "Disable SQL Lab data preview queries": [ + "Отключить предпросмотр данных в Лаборатории SQL" ], - "Type or Select [%s]": ["Введите или выберите [%s]"], - "UI Configuration": ["Конфигурация UI"], - "URL": ["Ссылка (URL)"], - "URL Parameters": ["Параметры URL"], - "URL parameters": ["Параметры URL"], - "URL slug": ["Читаемый URL"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "Не удается добавить новую вкладку на сервер. Пожалуйста, свяжитесь с администратором." - ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [ - "Невозможно подключиться к базе данных \"%(database)s\"." + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Отключить предварительный просмотр данных при извлечении метаданных таблицы в SQL Lab. Полезно для избежания проблем с производительностью браузера при использовании баз данных с очень широкими таблицами." ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [ - "Не удалось найти такой праздник: [%(holiday)s]" + "Performance": ["Производительность"], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["Время жизни кэша графика"], + "Enter duration in seconds": ["Введите время в секундах"], + "Schema cache timeout": ["Время жизни кэша схемы"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Продолжительность (в секундах) таймаута кэша для схем этой базы данных. Обратите внимание, что если значение не задано, кэш никогда не очистится." ], - "Unable to load columns for the selected table. Please select a different table.": [ - "Не удалось загрузить столбцы для выбранной таблицы. Пожалуйста, выберите другую таблицу." + "Table cache timeout": ["Время жизни кэша таблицы"], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Продолжительность (в секундах) таймаута кэша для таблиц этой базы данных. Обратите внимание, что если значение не задано, кэш никогда не очистится." ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Не удается перенести состояние редактора запроса на сервер. Суперсет повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта проблема не устранена." + "Asynchronous query execution": ["Асинхронное выполнение запросов"], + "Cancel query on window unload event": [ + "Отменять запрос при закрытии вкладки" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Не удается перенести состояние запроса на сервер. Суперсет повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта проблема не устранена." + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Завершать выполнение запросов после закрытия браузерной вкладки или пользователь переключился на другую вкладку. Доступно для баз данных Presto, Hive, MySQL, Postgres и Snowflake." ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Не удается перенести состояние схемы таблицы на сервер. Суперсет повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта проблема не устранена." + "Add extra connection information.": [ + "Дополнительная информация по подключению" ], - "Unable to retrieve dashboard colors": [ - "Не удалось получать цветовую схему дашборда" + "Secure extra": ["Безопасность"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "JSON строка, содержащая дополнительную информацию о соединении. Это используется для указания информации о соединении с такими системами как Hive, Presto и BigQuery, которые не укладываются в шаблон \"пользователь:пароль\", который обычно используется в SQLAlchemy." ], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Не удалось загрузить CSV файл \"%(filename)s\" в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" + "Enter CA_BUNDLE": ["Введите CA_BUNDLE"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Необязательное содержимое CA_BUNDLE для валидации HTTPS запросов. Доступно только в определенных драйверах баз данных" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Не удалось загрузить файл столбчатого типа \"%(filename)s\" в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Имперсонировать пользователя (Presto, Trino, Drill, Hive, и Google Таблицы)" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Не удалось загрузить Excel файл \"%(filename)s\" в таблицу \"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Если вы используете Presto или Trino, все запросы в Лаборатории SQL будут выполняться от авторизованного пользователя, который должен иметь разрешение на их выполнение. Если включены Hive и hive.server2.enable.doAs, то запросы будут выполняться через техническую учетную запись, но имперсонировать зарегистрированного пользователя можно через свойство hive.server2.proxy.user." ], - "Undefined": ["Не определено"], - "Undefined window for rolling operation": [ - "Неопределенное окно для скольжения" + "Allow file uploads to database": [ + "Разрешить загрузку файлов в базу данных" ], - "Undo the action": ["Отменить действие"], - "Undo?": ["Отменить?"], - "Unexpected error": ["Неожиданная ошибка"], - "Unexpected error occurred, please check your logs for details": [ - "Возникла неожиданная ошибка, пожалуйста, проверьте историю действий для уточнения деталей" + "Schemas allowed for File upload": [ + "Схемы, в которые разрешена загрузка файлов" ], - "Unexpected error: ": ["Неожиданная ошибка: "], - "Unknown": ["Неизвестно"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Неизвестный хост MySQL \"%(hostname)s\"." + "A comma-separated list of schemas that files are allowed to upload to.": [ + "Разделённый запятыми список схем, в которые можно загружать файлы." ], - "Unknown Presto Error": ["Неизвестная ошибка Presto"], - "Unknown Status": ["Неизвестный статус"], - "Unknown column used in orderby: %(col)s": [ - "Неизвестный столбец использован для упорядочивания: %(col)s" + "Additional settings.": ["Дополнительная настройка"], + "Metadata Parameters": ["Параметры метаданных"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Объект metadata_params вызывает sqlalchemy.MetaData" ], - "Unknown error": ["Неизвестная ошибка"], - "Unknown input format": ["Неизвестный формат ввода"], - "Unknown value": ["Неизвестная ошибка"], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Небезопасный возвращаемый тип для функции %(func)s: %(value_type)s" + "Engine Parameters": ["Параметры драйвера"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Объект engine_params вызывает sqlalchemy.create_engine" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Небезопасное значение шаблона для ключа %(key)s: %(value_type)s" + "Version": ["Версия"], + "Version number": ["Номер версии"], + "STEP %(stepCurr)s OF %(stepLast)s": ["ШАГ %(stepCurr)s ИЗ %(stepLast)s"], + "Enter Primary Credentials": ["Введите основные учетные данные"], + "Need help? Learn how to connect your database": [ + "Нужна помощь? Узнайте, как подключаться к вашей базе данных" ], - "Unsupported clause type: %(clause)s": [ - "Неподдерживаемый оператор: %(clause)s" + "Database connected": ["Соединение с базой данных установлено"], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Создайте датасет для визуализации ваших данных на графике или перейдите в Лабораторию SQL для просмотра данных." ], - "Unsupported post processing operation: %(operation)s": [ - "Неподдерживаемая операция постобработки: %(operation)s" + "Enter the required %(dbModelName)s credentials": [ + "Введите обязательные данные для %(dbModelName)s" ], - "Unsupported return value for method %(name)s": [ - "Неподдерживаемое значение для метода %(name)s" + "Need help? Learn more about": ["Нужна помощь? Узнайте больше о"], + "connecting to %(dbModelName)s.": ["подключении к %(dbModelName)s"], + "Select a database to connect": ["Выберите базу данных для подключения"], + "SSH Host": [""], + "e.g. 127.0.0.1": ["например, 127.0.0.1"], + "SSH Port": ["SSH порт"], + "e.g. Analytics": ["например, Analytics"], + "Login with": ["Войти при помощи"], + "Private Key & Password": ["Приватный ключ и пароль"], + "SSH Password": ["Пароль SSH"], + "e.g. ********": ["например, ********"], + "Private Key": ["Приватный ключ"], + "Paste Private Key here": [""], + "Private Key Password": ["Пароль приватного ключа"], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [ + "Параметры конфигурации SSH туннеля" ], - "Unsupported template value for key %(key)s": [ - "Неподдерживаемое значение шаблона для ключа %(key)s" + "Display Name": ["Отображаемое имя"], + "Name your database": ["Дайте имя базе данных"], + "Pick a name to help you identify this database.": [ + "Выберите имя для базы данных." ], - "Unsupported time grain: %(time_grain)s": [ - "Неподдерживаемая единица времени: %(time_grain)s" + "dialect+driver://username:password@host:port/database": [ + "диалект+драйвер://пользователь:пароль@хост:порт/схема" ], - "Untitled Dataset": ["Безымянный датасет"], - "Untitled query": ["Безымянный запрос"], - "Update": ["Обновить"], - "Update chart": ["Обновить график"], - "Updating chart was stopped": ["Обновление графика остановлено"], - "Upload": ["Загрузить"], - "Upload CSV": ["Загрузить CSV"], - "Upload CSV to database": ["Загрузить файл CSV в базу данных"], - "Upload Credentials": ["Загрузить учетные данные"], - "Upload Enabled": ["Загрузка включена"], - "Upload Excel file": ["Загрузить файл Excel"], - "Upload Excel file to database": ["Загрузить файл Excel в базу данных"], - "Upload JSON file": ["Загрузить JSON файл"], - "Upload columnar file": ["Загрузить файл столбчатого формата"], - "Upload columnar file to database": [ - "Загрузить файл столбчатого формата в базу данных" + "Refer to the": ["Обратитесь к"], + "for more information on how to structure your URI.": [ + " за подробной информацией по тому, как структурировать ваш URI" ], - "Upload file to database": ["Загрузить файл в базу данных"], - "Use \"%(menuName)s\" menu instead.": [ - "Использовать меню \"%(menuName)s\" взамен." + "Test connection": ["Тестовое соединение"], + "database": ["база данных"], + "Please enter a SQLAlchemy URI to test": [ + "Введите SQLAlchemy URI для тестирования" ], - "Use %s to open in a new tab.": [ - "Используйте %s для открытия в отдельной вкладке." + "e.g. world_population": ["например, health_medicine"], + "Database settings updated": ["Обновлены настройки базы данных"], + "Sorry there was an error fetching database information: %s": [ + "К сожалению, произошла ошибка при получении информации о базе данных: %s" ], - "Use Area Proportions": ["Использовать пропорции области"], - "Use Columns": ["Используемые столбцы"], - "Use a log scale": ["Использовать логарифмическую шкалу"], - "Use a log scale for the X-axis": [ - "Использовать логарифмическую шкалу для оси X" + "Or choose from a list of other databases we support:": [ + "Или выберите из списка других поддерживаемых баз данных:" ], - "Use a log scale for the Y-axis": [ - "Использовать логарифмическую шкалу для оси Y" + "Supported databases": ["Поддерживаемые базы данных"], + "Choose a database...": ["Выберите базу данных..."], + "Want to add a new database?": ["Хотите добавить новую базу данных?"], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Любые базы данных, подключаемые через SQL Alchemy URI, могут быть добавлены. " ], - "Use an encrypted connection to the database": [ - "Использовать зашифрованное соединение к Базе Данных" + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Любые базы данных, подключаемые через SQL Alchemy URI, могут быть добавлены. Узнайте больше о том, как подключить драйвер базы данных " ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" + "Connect": ["Подключить"], + "Finish": ["Завершить"], + "This database is managed externally, and can't be edited in Superset": [ + "Эта база данных управляется извне и не может быть изменена в Суперсете" ], - "Use date formatting even when metric value is not a timestamp": [ - "Использовать перевод к формату дата/время даже если мера представляет другой тип данных" + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Пароли к базам данных требуются, чтобы импортировать их. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в импортируемых файлах и должны быть добавлены вручную после импорта, если необходимо." ], - "Use legacy datasource editor": ["Использовать старый редактор"], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": ["Используйте только одно значение."], - "Use the Advanced Analytics options below": [ - "Используйте настройки Расширенной аналитики ниже" + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Вы импортируете одну или несколько баз данных, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите перезаписать?" ], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "" + "Database Creation Error": ["Ошибка создания базы данных"], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Не удалось подключиться к базе данных. Нажмите \"Подробнее\" для информации, предоставленной базой данных в ответ, для решения проблемы." ], - "Use the edit button to change this field": [ - "Используйте кнопку редактирования для изменения поля" + "CREATE DATASET": ["СОЗДАТЬ ДАТАСЕТ"], + "QUERY DATA IN SQL LAB": [""], + "Connect a database": ["Подключиться к базе данных"], + "Edit database": ["Редактировать Базу Данных"], + "Connect this database using the dynamic form instead": [ + "Подключиться к этой базе, используя динамичную форму" ], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [ - "Этот цвет используется для заливки" + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Нажмите для переключения на альтернативную форму подключения, которая позволит вам ввести все данные в соответствующую форму для данной базы данных." ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "" + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Некоторые базы данных требуют ручной настройки во вкладке Продвинутая настройка для успешного подключения. Вы можете ознакомиться с требованиями к вашей базе данных " ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "Используется для обобщения набора данных путем группировки нескольких показателей по двум осям. Примеры: показатели продаж по регионам и месяцам, задачи по статусу и назначенному лицу, активные пользователи по возрасту и местоположению." + "Import database from file": ["Импортировать базу данных из файла"], + "Connect this database with a SQLAlchemy URI string instead": [ + "Подключиться к этой базе через SQLAlchemy URI" ], - "User": ["Пользователь"], - "User Roles": ["Роли пользователя"], - "User doesn't have the proper permissions.": [ - "У пользователя нет надлежащего доступа." + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Нажмите для переключения на альтернативную форму подключения, которая позволит вам вручную ввести SQLAlchemy URL для данной базы данных." ], - "User must select a value before applying the filter": [ - "Для использования фильтра пользователь будет обязан выбрать значение" + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Это может быть как IP адрес (например, 127.0.0.1), так и доменное имя (например, моябазаданных.рф)." ], - "User must select a value for this filter": [ - "Для использования фильтра пользователь будет обязан выбрать значение" + "Host": ["Хост"], + "e.g. 5432": ["например, 5432"], + "Port": ["Порт"], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the database you are trying to connect to.": [ + "Впишите имя базы данных, к которой вы пытаетесь подключиться" ], - "User query": ["Пользовательский запрос"], - "Username": ["Имя пользователя"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "Access token": ["Токен доступа"], + "Pick a nickname for how the database will display in Superset.": [ + "Выберите имя для базы данных, которое будет отображаться в Суперсете." ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "Использует индикатор для демонстрации прогресса показателя в достижении цели. Положение циферблата показывает ход выполнения, а конечное значение на индикаторе представляет целевое значение." + "e.g. param1=value1¶m2=value2": [ + "например, параметр1=значение1&параметр2=значение2" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "" + "Additional Parameters": ["Дополнительные параметры"], + "Add additional custom parameters": [ + "Добавление дополнительных пользовательских параметров" ], - "Value": ["Значение"], - "Value Domain": [""], - "Value Format": ["Формат значения"], - "Value bounds": ["Ограничения для значения"], - "Value format": ["Формат значения"], - "Value is required": ["Значение обязательно"], - "Value must be greater than 0": ["Значение должно быть больше 0"], - "Values are dependent on other filters": [ - "Значения зависят от других фильтров" + "SSL Mode \"require\" will be used.": [ + "Будет использовано шифрование SSL" ], - "Values dependent on": ["Значения зависят от"], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "" + "Type of Google Sheets allowed": ["Допустимый тип Google Таблиц"], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": ["Загрузить JSON файл"], + "Copy and Paste JSON credentials": ["Скопировать и вставить JSON данные"], + "Service Account": ["Сервисный аккаунт"], + "Copy and paste the entire service account .json file here": [ + "Скопировать и вставить .json файл сервисного аккаунта сюда" ], - "Vehicle Types": [""], - "Verbose Name": ["Удобочитаемое имя"], - "Version": ["Версия"], - "Version number": ["Номер версии"], - "Vertical": ["Вертикально"], - "Vertical (Left)": ["Вертикально (слева)"], - "Video game consoles": ["Игровые приставки"], - "View": ["Показать"], - "View All »": ["Смотреть все »"], - "View Dataset": ["Посмотреть датасет"], - "View all charts": ["Показать все графики"], - "View as table": ["Показать в виде таблицы"], - "View in SQL Lab": ["Открыть в Лаборатории SQL"], - "View keys & indexes (%s)": ["Показать ключи и индексы (%s)"], - "View query": ["Показать SQL запрос"], - "Viewed": ["Просмотрено"], - "Viewed %s": ["Просмотрено %s"], - "Viewport": ["Область просмотра"], - "Virtual": ["Виртуальный"], - "Virtual (SQL)": ["Виртуальный (SQL)"], - "Virtual dataset": ["Виртуальный датасет"], - "Virtual dataset query cannot be empty": [ - "Запрос виртуального датасета не может быть пустым" + "Upload Credentials": ["Загрузить учетные данные"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "" ], - "Virtual dataset query cannot consist of multiple statements": [ - "Запрос виртуального датасета не может содержать несколько запросов" + "Connect Google Sheets as tables to this database": [ + "Подключить Google Таблицы как таблицы для этой базы данных" ], - "Virtual dataset query must be read-only": [ - "Запрос виртуального датасета должен быть доступен только для чтения" + "Google Sheet Name and URL": ["Имя или URL Google Таблицы"], + "Enter a name for this sheet": ["Введите название для этого листа"], + "Paste the shareable Google Sheet URL here": [""], + "Add sheet": ["Добавить лист"], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "Duplicate dataset": ["Дублировать датасет"], + "Duplicate": ["Дублировать"], + "New dataset name": ["Новое имя датасета"], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Пароли к базам данных требуются, чтобы импортировать их вместе с датасетами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" конфигурации базы данных отсутствуют в экспортируемых файлах и должны быть добавлены после импорта вручную, если необходимо." ], - "Visual Tweaks": ["Визуальные настройки"], - "Visualization Type": ["Тип визуализации"], - "Visualization type": ["Тип визуализации"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "" + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Вы импортируете один или несколько датасетов, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите продолжить?" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Refreshing columns": ["Обновление столбцов"], + "Table columns": ["Столбцы таблицы"], + "Loading": ["Загрузка"], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "Визуализирует геопространственные данные, такие как 3D-здания, ландшафты или объекты в виде сетки." - ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "Визуализирует изменение меры с течением времени, используя столбцы. Добавьте столбец для группировки, чтобы визуализировать показатели уровня группы и то, как они меняются с течением времени." + "View Dataset": ["Посмотреть датасет"], + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Датасеты могут быть созданы из таблиц базы данных или SQL запросов. Выберите таблицу из базы данных слева или " ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "Визуализирует несколько уровней иерархии, используя древовидную структуру." + "create dataset from SQL query": ["создайте датасет из SQL запроса"], + " to open SQL Lab. From there you can save the query as a dataset.": [ + " в Лаборатории SQL. Там вы сможете сохранить запрос как датасет." ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Select dataset source": ["Выберите источник датасета"], + "This database table does not contain any data. Please select a different table.": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ - "" + "An Error Occurred": ["Произошла ошибка"], + "Unable to load columns for the selected table. Please select a different table.": [ + "Не удалось загрузить столбцы для выбранной таблицы. Пожалуйста, выберите другую таблицу." ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "The API response from %s does not match the IDatabaseTable interface.": [ "" ], - "Visualizes connected points, which form a path, on a map.": [ - "Визуализирует связанные точки, которые образуют путь, на карте." - ], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ - "" + "chart": ["график"], + "No charts": ["Нет графиков"], + "This dataset is not used to power any charts.": [""], + "Select a database table.": ["Выберите таблицу в базе данных."], + "New dataset": ["Новый датасет"], + "Select a database table and create dataset": [ + "Выберите базу данных и создайте датасет" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "Визуализирует, как показатель изменился с течением времени, используя цветовую шкалу и календарь. Значения серого цвета используются для обозначения отсутствующих значений, а линейная цветовая схема используется для отображения величины значения каждого дня." + "dataset name": ["Имя датасета"], + "There was an error loading the dataset metadata": [ + "Возникла ошибка при загрузке метаданных датасета" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ - "" + "[Untitled]": ["[Без названия]"], + "Unknown": ["Неизвестно"], + "Viewed %s": ["Просмотрено %s"], + "Edited": ["Редактировано"], + "Created": ["Создано"], + "Viewed": ["Просмотрено"], + "Favorite": ["Избранное"], + "Mine": ["Мои"], + "View All »": ["Смотреть все »"], + "An error occurred while fetching dashboards: %s": [ + "Произошла ошибка при получении дашбордов: %s" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ - "" + "charts": ["графики(ов)"], + "dashboards": ["дашборды(ов)"], + "recents": ["недавние(их)"], + "saved queries": ["сохраненные(ых) запросы(ов)"], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Недавно просмотренные графики, дашборды и сохраненные запросы" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Недавно созданные графики, дашборды и сохраненные запросы" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "Визуализирует слова в столбце, которые появляются чаще всего. Более крупный шрифт соответствует более высокой частоте" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Недавно измененные графики, дашборды и сохраненные запросы" ], - "Viz is missing a datasource": [ - "У визуализации отсутствует источник данных" + "SQL query": ["SQL запрос"], + "You don't have any favorites yet!": ["У вас пока нет избранных!"], + "See all %(tableName)s": ["Список %(tableName)s"], + "Connect database": ["Подключиться к базе данных"], + "Create dataset": ["Создать датасет"], + "Connect Google Sheet": ["Подключить Google Таблицы"], + "Upload CSV to database": ["Загрузить файл CSV в базу данных"], + "Upload columnar file to database": [ + "Загрузить файл столбчатого формата в базу данных" ], - "Viz type": ["Тип визуализации"], - "WED": ["СР"], - "Want to add a new database?": ["Хотите добавить новую базу данных?"], - "Warning": ["Предупреждение"], - "Warning Message": ["Предупреждение"], - "Warning!": ["Предупреждение!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Внимание! Изменение датасета может привести к тому, что график станет нерабочим, если будут отсутствовать метаданные." + "Upload Excel file to database": ["Загрузить файл Excel в базу данных"], + "Enable 'Allow file uploads to database' in any database's settings": [ + "Включите \"Разрешить загрузку файлов в базу данных\" в настройках любой базы данных" ], - "Was unable to check your query": ["Не удалось проверить запрос"], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "Не удалось подключиться к базе данных. Нажмите \"Подробнее\" для информации, предоставленной базой данных в ответ, для решения проблемы." + "Info": ["Личные данные"], + "Logout": ["Выход из системы"], + "About": ["О программе"], + "Powered by Apache Superset": ["На базе Apache Superset"], + "SHA": [""], + "Build": ["Сборка"], + "Documentation": ["Документация"], + "Report a bug": ["Сообщить об ошибке"], + "Login": ["Вход в систему"], + "query": ["запрос"], + "Deleted: %s": ["Удалено: %s"], + "There was an issue deleting %s: %s": [ + "Произошла ошибка при удалении %s: %s" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "Не удалось обнаружить столбец \"%(column)s\" в строке %(location)s." + "This action will permanently delete the saved query.": [ + "Это действие навсегда удалит сохранённый запрос." ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "Не удалось обнаружить столбец \"%(column_name)s\"" + "Delete Query?": ["Удалить запрос?"], + "Ran %s": ["Запущен %s"], + "Saved queries": ["Сохраненные запросы"], + "Next": ["Следующий"], + "Tab name": ["Имя вкладки"], + "User query": ["Пользовательский запрос"], + "Executed query": ["Выполненный запрос"], + "Query name": ["Имя запроса"], + "SQL Copied!": ["SQL запрос скопирован!"], + "Sorry, your browser does not support copying.": [ + "Извините, Ваш браузер не поддерживание копирование. Используйте сочетание клавиш [CTRL + C] для WIN или [CMD + C] для MAC." ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "Не удалось обнаружить столбец \"%(column_name)s\" в строке %(location)s." + "There was an issue fetching reports attached to this dashboard.": [ + "Произошла ошибка с получением рассылок, связанных с этим дашбордом." ], - "We have the following keys: %s": ["У нас есть следующие ключи: %s"], + "The report has been created": ["Рассылка создана"], + "Report updated": ["Отчет обновлен"], "We were unable to active or deactivate this report.": [ "Не удалось включить или выключить эту рассылку." ], - "We were unable to carry over any controls when switching to this new dataset.": [ - "Не удалось перенести настройки прошлого графика при переключении датасета." - ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "Не удалось подключиться к вашей базе данных с именем \"%(database)s\". Пожалуйста, подтвердите имя вашей базы данных и попробуйте снова." - ], - "Web": ["Сеть"], - "Wednesday": ["Среда"], - "Week": ["Неделя"], - "Week ending Saturday": ["Неделя, заканчивающаяся в субботу"], - "Week starting Monday": ["Неделя, начинающаяся в понедельник"], - "Week starting Sunday": ["Неделя, начинающаяся в воскресенье"], - "Week_ending Sunday": ["Неделя, заканчивающаяся в воскресенье"], - "Weekly Report": ["Еженедельный отчет"], + "Your report could not be deleted": ["Не удается удалить рассылку"], "Weekly Report for %s": ["Еженедельный отчет для %s"], - "Weekly seasonality": ["Недельная сезонность"], - "Weeks %s": ["Недель %s"], - "Weight": ["Вес"], - "We’re having trouble loading these results. Queries are set to timeout after %s second.": [ - "Возникла проблема при загрузке результатов. Для запросов установлен тайм-аут %s секунда.", - "Возникла проблема при загрузке результатов. Для запросов установлен тайм-аут %s секунды.", - "Возникла проблема при загрузке результатов. Для запросов установлен тайм-аут %s секунд." + "Weekly Report": ["Еженедельный отчет"], + "Edit email report": ["Редактировать рассылку"], + "Schedule a new email report": ["Запланировать новую рассылку по почте"], + "Text embedded in email": ["Текст, включенный в email"], + "Image (PNG) embedded in email": [ + "Изображение (PNG), встроенное в email" ], - "We’re having trouble loading this visualization. Queries are set to timeout after %s second.": [ - "Возникла проблема при загрузке этой визуализации. Для запросов установлен тайм-аут %s секунда.", - "Возникла проблема при загрузке этой визуализации. Для запросов установлен тайм-аут %s секунды.", - "Возникла проблема при загрузке этой визуализации. Для запросов установлен тайм-аут %s секунд." + "Formatted CSV attached in email": [ + "Форматированный CSV, прикрепленный к письму" ], - "What should be shown on the label?": ["Текст, отображаемый на метке"], - "What should happen if the table already exists": [ - "Что должно произойти, если таблица уже существует" + "Report Name": ["Имя отчета"], + "Include a description that will be sent with your report": [ + "Описание, которое будет отправлено вместе с вашим отчетом" ], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "Когда `Тип расчёта` установлен в \"Процентное изменение\", формат оси Y устанавливается в `.1%`" + "A screenshot of the dashboard will be sent to your email at": [ + "Скриншот дашборда будет отправлен на ваш электронный адрес" ], - "When a secondary metric is provided, a linear color scale is used.": [ - "Когда предоставляется вторичная мера, используется линейная цветовая схема." - ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "При включении опции CREATE TABLE AS в Лаборатории SQL, новые таблицы будут добавлены в эту схему" + "Failed to update report": ["Не удалось обновить отчет"], + "Failed to create report": ["Не удалось создать рассылку"], + "Set up an email report": ["Запланировать рассылку по почте"], + "Email reports active": ["Включить рассылки"], + "Delete email report": ["Удалить рассылку по email"], + "Schedule email report": ["Запланировать рассылку по почте"], + "This action will permanently delete %s.": [ + "Это действие навсегда удалит %s." ], - "When checked, the map will zoom to your data after each query": [ - "Если отмечено, карта будет смасштабирована к вашим данным после каждого запроса" + "Delete Report?": ["Удалить рассылку?"], + "Rule added": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "" ], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "Если этот параметр включен, пользователи могут смотреть ответ запросов Лаборатории SQL в режиме исследования." + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "" ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "Когда предоставляется только основная мера, используется категориальная цветовая схема." + "Clause": ["Оператор"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Это условие, которое будет добавлено к оператору WHERE. Например, чтобы возвращать строки только для определенного клиента, вы можете определить обычный фильтр с условием `client_id = 9`. Чтобы не отображать строки, если пользователь не принадлежит к роли фильтра RLS, можно создать базовый фильтр с предложением `1 = 0` (всегда false)." ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "Когда указан SQL, источник данных работает как представление. Superset будет использовать это выражение в подзапросе, при необходимости группировки и фильтрации." + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "При использовании \"Фильтров автозаполнения\" это может использоваться для улучшения быстродействия запроса. Используйте эту опцию для настройки предиката (оператор WHERE) запроса для уникальных значений из таблицы. Обычно целью является ограничение сканирования путем применения относительного временного фильтра к секционированному или индексированному полю типа дата/время." + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": ["Выбран нечисловой столбец"], + "UI Configuration": ["Конфигурация UI"], + "Filter value is required": ["Требуется значение фильтра"], + "User must select a value before applying the filter": [ + "Для использования фильтра пользователь будет обязан выбрать значение" ], - "When using 'Group By' you are limited to use a single metric": [ - "При использовании 'GROUP BY' вы ограничены использованием одной меры" + "Single value": ["Единственное значение"], + "Use only a single value.": ["Используйте только одно значение."], + "Range filter plugin using AntD": [""], + " (excluded)": [" (исключено)"], + "Check for sorting ascending": ["Выберит для сортировки по возрастанию"], + "Can select multiple values": ["Можно выбрать несколько значений"], + "Select first filter value by default": [ + "Сделать первое значение фильтра значением по умолчанию" ], - "When using other than adaptive formatting, labels may overlap": [""], "When using this option, default value can’t be set": [ "При включении этой опции нельзя установить значение по умолчанию" ], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "Индикатор прогресса накладывается при наличии нескольких групп данных" - ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "" + "Inverse selection": ["Выбрать противоположные значения"], + "Exclude selected values": ["Исключить выбранные значения"], + "Dynamically search all filter values": [ + "Динамически искать все значения фильтра" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "" + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "По умолчанию, каждый фильтр загружает не больше 1000 элементов выбора при начальной загрузке страницы. Установите этот флаг, если у вас больше 1000 значений фильтра и вы хотите включить динамический поиск, который загружает значения по мере их ввода пользователем (может увеличить нагрузку на вашу базу данных)." ], - "Whether to align background charts with both positive and negative values at 0": [ - "" + "Select filter plugin using AntD": [""], + "Custom time filter plugin": ["Пользовательский плагин фильтра времени"], + "No time columns": ["Нет столбцов формата дата/время"], + "Time column filter plugin": [""], + "Working": ["Обрабатывается"], + "Not triggered": ["Условие не выполнялось"], + "On Grace": ["На перерыве"], + "reports": ["рассылки"], + "alerts": ["оповещений"], + "There was an issue deleting the selected %s: %s": [ + "Произошла ошибка при удалении выбранных %s: %s" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "Выравнивание гистограммы внутри ячеек по горизонтали слева" + "Last run": ["Последнее изменение"], + "Execution log": ["Журнал Действий"], + "Bulk select": ["Множественный выбор"], + "No %s yet": ["Пока нет %s"], + "Owner": ["Владелец"], + "All": ["Все"], + "An error occurred while fetching owners values: %s": [ + "Произошла ошибка при получении владельцев графика: %s" ], - "Whether to always show the annotation label": [ - "Всегда показывать метку аннотации" + "Status": ["Статус"], + "An error occurred while fetching dataset datasource values: %s": [ + "Произошла ошибка при получении значений датасета: %s" ], - "Whether to animate the progress and the value or just display them": [ - "Анимировать прогресс и значение или просто отображать их" + "Alerts & reports": ["Оповещения и отчеты"], + "Alerts": ["Оповещения"], + "Reports": ["Отчеты"], + "Delete %s?": ["Удалить %s?"], + "Are you sure you want to delete the selected %s?": [ + "Вы уверены, что хотите удалить выбранные %s?" ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "Применять нормальное распределение на основе ранга в цветовой схеме" + "There was an issue deleting the selected layers: %s": [ + "Произошла ошибка при удалении выбранных слоёв: %s" ], - "Whether to apply filter when items are clicked": [ - "Применять фильтр при щелчке по элементам" + "Edit template": ["Редактировать шаблон"], + "Delete template": ["Удалить шаблон"], + "No annotation layers yet": ["Пока нет слоев аннотаций"], + "This action will permanently delete the layer.": [ + "Это действие навсегда удалит слой." ], - "Whether to colorize numeric values by if they are positive or negative": [ - "Окрашивать ячейки с числами в зависимости от их знака" + "Delete Layer?": ["Удалить слой?"], + "Are you sure you want to delete the selected layers?": [ + "Вы уверены, что хотите удалить выбранные слои?" ], - "Whether to display a bar chart background in table columns": [ - "Отображать гистограмм в колонках таблицы" + "There was an issue deleting the selected annotations: %s": [ + "Произошла ошибка при удалении выбранных аннотаций: %s" ], - "Whether to display a legend for the chart": [ - "Отображать легенду для графика" + "Delete annotation": ["Удалить аннотацию"], + "Annotation": ["Аннотация"], + "No annotation yet": ["Пока нет аннотаций"], + "Annotation Layer %s": ["Слой аннотаций %s"], + "Back to all": ["Вернуться ко всем"], + "Are you sure you want to delete %s?": [ + "Вы уверены, что хотите удалить %s?" ], - "Whether to display bubbles on top of countries": [ - "Отображать пузыри поверх стран" + "Delete Annotation?": ["Удалить аннотацию?"], + "Are you sure you want to delete the selected annotations?": [ + "Вы уверены, что хотите удалить выбранные аннотации?" ], - "Whether to display the aggregate count": [ - "Отображать совокупное количество" + "Failed to load chart data": ["Не удалось загрузить данные графика"], + "Add a dataset": ["Добавить датасет"], + "Choose a dataset": ["Выберите датасет"], + "Choose chart type": ["Выберите тип графика"], + "Please select both a Dataset and a Chart type to proceed": [ + "Пожалуйста, для продолжения выберите и датасет, и тип графика" ], - "Whether to display the interactive data table": [ - "Отображать интерактивную таблицу с данными" + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Для баз данных нужны пароли, чтобы импортировать их вместе с графиками. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в экспортируемых файлов и должны быть добавлены вручную после импорта, если необходимо." ], - "Whether to display the labels.": ["Отображать метки"], - "Whether to display the legend (toggles)": [ - "Отображать легенду (переключатель)" + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Вы импортируете один или несколько графиков, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите перезаписать?" ], - "Whether to display the metric name as a title": [ - "Отображать имя меры как названия" + "Chart imported": ["График импортирован"], + "There was an issue deleting the selected charts: %s": [ + "Произошла ошибка при удалении выбранных графиков: %s" ], - "Whether to display the min and max values of the X-axis": [ - "Отображать минимальное и максимальное значение на оси X" + "An error occurred while fetching dashboards": [ + "Произошла ошибка при получении дашбордов" ], - "Whether to display the min and max values of the Y-axis": [ - "Отображать минимальное и максимальное значение на оси Y" + "Any": ["Любой"], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "Произошла ошибка при получении владельцев графика: %s" ], - "Whether to display the numerical values within the cells": [ - "Отображение числовых значений в ячейках" + "Certified": ["Утверждено"], + "Alphabetical": ["В алфавитном порядке"], + "Recently modified": ["Измененные недавно"], + "Least recently modified": ["Измененные давно"], + "Import charts": ["Импортировать графики"], + "Are you sure you want to delete the selected charts?": [ + "Вы уверены, что хотите удалить выбранные графики?" ], - "Whether to display the stroke": ["Отображение обводки"], - "Whether to display the time range interactive selector": [ - "Отображение интерактивного селектора временного интервала" + "CSS templates": ["CSS шаблоны"], + "There was an issue deleting the selected templates: %s": [ + "Произошла ошибка при удалении выбранных шаблонов: %s" ], - "Whether to display the timestamp": ["Отображение временную метку"], - "Whether to display the trend line": ["Отображение трендовой линии"], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [ - "Включить перемещение вершин в режиме силового алгоритма." + "CSS template": ["CSS шаблон"], + "This action will permanently delete the template.": [ + "Это действие навсегда удалит шаблон." ], - "Whether to fill the objects": ["Использовать заливку для объектов"], - "Whether to ignore locations that are null": [ - "Игнорировать местоположения, которые не содержат данных о расположении" + "Delete Template?": ["Удалить шаблон?"], + "Are you sure you want to delete the selected templates?": [ + "Вы уверены, что хотите удалить выбранные шаблоны?" ], - "Whether to include a client-side search box": [ - "Отображение строки поиска" + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Для баз данных нужны пароли, чтобы импортировать их вместе с дашбордами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в экспортируемых файлах и должны быть добавлены вручную после импорта, если необходимо." ], - "Whether to include a time filter": [ - "Включить фильтр на определенный интервал/диапазон времени" + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Вы импортируете один или несколько дашбордов, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите перезаписать?" ], - "Whether to include the percentage in the tooltip": [ - "Отображение процентной доли во всплывающей подсказке" + "Dashboard imported": ["Дашборд импортирован"], + "There was an issue deleting the selected dashboards: ": [ + "Произошла ошибка при удалении выбранных дашбордов: " ], - "Whether to include the time granularity as defined in the time section": [ - "Добавляет столбец даты/времени с группировкой дат, как определено в разделе Время" + "An error occurred while fetching dashboard owner values: %s": [ + "Произошла ошибка при получении владельца дашборда: %s" ], - "Whether to make the grid 3D": ["Сделать сетку 3D"], - "Whether to make the histogram cumulative": [ - "Сделать гистограмму нарастающей" + "Are you sure you want to delete the selected dashboards?": [ + "Вы уверены, что хотите удалить выбранные дашборды?" ], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "" + "An error occurred while fetching database related data: %s": [ + "Произошла ошибка при получении данных о базе данных: %s" ], - "Whether to normalize the histogram": ["Нормализовать гистограмму"], - "Whether to populate autocomplete filters options": [ - "Распространить настройки фильтров автозаполнения" + "Upload file to database": ["Загрузить файл в базу данных"], + "Upload CSV": ["Загрузить CSV"], + "Upload columnar file": ["Загрузить файл столбчатого формата"], + "Upload Excel file": ["Загрузить файл Excel"], + "AQE": ["Асинхронные запросы"], + "Allow data manipulation language": [ + "Разрешить операции вставки, обновления и удаления данных" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "" + "DML": ["DML"], + "CSV upload": ["Загрузка CSV"], + "Delete database": ["Удалить базу данных"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "База данных %s привязана к %s графику(-ам), который(-ые) используется(-ются) в %s дашборде(-ах), и пользователи имеют %s открытую(-ых) вкладку(-ок) в Лаборатории SQL. Вы уверены, что хотите продолжить? Удаление базы данных приведёт к неработоспособности этих компонентов." ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "Отображает дополнительные элементы управления на самом графике и позволяет менять отображение столбцов: без накопления и с ним." + "Delete Database?": ["Удалить базу данных?"], + "Dataset imported": ["Импортирован датасет"], + "An error occurred while fetching dataset related data": [ + "Произошла ошибка при получении метаданных датасета" ], - "Whether to show minor ticks on the axis": [ - "Отображение мелких отметок на оси" + "An error occurred while fetching dataset related data: %s": [ + "Произошла ошибка при получении данных о датасете: %s" ], - "Whether to show the pointer": ["Отображение указателя"], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [ - "Отображение линий разделения на оси" + "Physical dataset": ["Физический датасет"], + "Virtual dataset": ["Виртуальный датасет"], + "Virtual": ["Виртуальный"], + "An error occurred while fetching datasets: %s": [ + "Произошла ошибка при получении датасетов: %s" ], - "Whether to sort descending or ascending": [ - "Сортировка по убыванию или по возрастанию" + "An error occurred while fetching schema values: %s": [ + "Произошла ошибка при извлечении значений схемы: %s" ], - "Whether to sort descending or ascending if a series limit is present": [ - "Сортировка по убыванию или по возрастанию, если есть ограничение на количество категорий" - ], - "Whether to sort results by the selected metric in descending order.": [ - "Сортировка результатов по выбранной мере в порядке убывания" - ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "Сортировка выбранных мер по убыванию во всплывающей подсказке" - ], - "Whether to truncate metrics": [ - "Убирает меру (например, AVG(...)) с легенды рядом с именем измерения и из таблицы результатов" - ], - "Which country to plot the map for?": ["Выбор страны для графика"], - "Which relatives to highlight on hover": ["Подсвечивается при наведении"], - "Whisker/outlier options": ["Настройки усов/выбросов"], - "White": ["Белый"], - "Width": ["Ширина"], - "Width of the confidence interval. Should be between 0 and 1": [ - "Ширина доверительного интервала. Должна быть между 0 и 1" - ], - "Width of the sparkline": ["Ширина спарклайна"], - "Window must be > 0": ["Окно должно быть > 0"], - "With a subheader": ["С подзаголовком"], - "Word Cloud": ["Облако слов"], - "Word Rotation": ["Поворот текста"], - "Working": ["Обрабатывается"], - "Working timeout": ["Время на рассылку"], - "World Map": ["Карта Мира"], - "Write a description for your query": [ - "Заполните описание к вашему запросу" - ], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [ - "Сделать индекс датафрейма столбцом." - ], - "Write dataframe index as a column.": [ - "Сделать индекс датафрейма столбцом." - ], - "X AXIS TITLE BOTTOM MARGIN": ["Отступ снизу названия оси X"], - "X Axis": ["Ось X"], - "X Axis Format": ["Формат оси X"], - "X Axis Label": ["Метка оси X"], - "X Axis Title": ["Название оси X"], - "X Log Scale": ["Логарифмическая ось X"], - "X Tick Layout": ["Расположение делений оси X"], - "X bounds": ["Показывать границы оси X"], - "X-Axis Sort Ascending": ["Сортировать по возрастанию оси X"], - "X-Axis Sort By": [""], - "X-axis": ["Ось X"], - "XScale Interval": [""], - "Y 2 bounds": ["Границы оси Y 2"], - "Y AXIS TITLE MARGIN": ["Отступ названия оси Y"], - "Y AXIS TITLE POSITION": ["Положение названия оси Y"], - "Y Axis": ["Ось Y"], - "Y Axis 2 Bounds": ["Границы оси Y 2"], - "Y Axis Bounds": ["Границы оси Y"], - "Y Axis Format": ["Формат Оси Y"], - "Y Axis Label": ["Метка оси Y"], - "Y Axis Title": ["Название оси Y"], - "Y Log Scale": ["Логарифмическая ось Y"], - "Y bounds": ["Показывать границы оси Y"], - "Y-Axis Sort By": [""], - "Y-axis": ["Ось Y"], - "Y-axis bounds": ["Границы оси Y"], - "Year": ["Год"], - "Year (freq=AS)": ["Год (част=AS)"], - "Yearly seasonality": ["Годовая сезонность"], - "Years %s": ["Лет %s"], - "Yes": ["Да"], - "Yes, cancel": ["Да, отменить"], - "Yes, overwrite changes": ["Да, перезаписать изменения"], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Вы импортируете один или несколько графиков, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите перезаписать?" - ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Вы импортируете один или несколько дашбордов, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите перезаписать?" - ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Вы импортируете одну или несколько баз данных, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите перезаписать?" - ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Вы импортируете один или несколько датасетов, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите продолжить?" - ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Вы импортируете один или несколько сохраненных запросов, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите продолжить?" + "An error occurred while fetching dataset owner values: %s": [ + "Произошла ошибка при получении владельца датасета: %s" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "Вы не авторизованы для просмотра этого запроса. Если вы считаете, что это ошибка, пожалуйста, обратитесь к своему администратору" + "Import datasets": ["Импортировать датасеты"], + "There was an issue deleting the selected datasets: %s": [ + "Произошла ошибка при удалении выбранных датасетов: %s" ], - "You can": ["Вы можете"], - "You can add the components in the": ["Вы можете добавить компоненты в"], - "You can add the components in the edit mode.": [ - "Вы можете добавить компоненты в режиме редактирования." + "There was an issue duplicating the dataset.": [ + "Произошла ошибка при дублировании датасета." ], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "" + "There was an issue duplicating the selected datasets: %s": [ + "Произошла ошибка при дублировании выбранных датасетов: %s" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "Вы можете создать новый график или использовать существующие из панели справа" + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Датасет %s привязан к %s графику(-ам), который(-ые) используется(-ются) в %s дашборде(-ах). Вы уверены, что хотите продолжить? Удаление датасета приведёт к неработоспособности этих объектов." ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "" + "Delete Dataset?": ["Удалить датасет?"], + "Are you sure you want to delete the selected datasets?": [ + "Вы уверены, что хотите удалить выбранные датасеты?" ], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "" + "0 Selected": ["0 выбрано"], + "%s Selected (Virtual)": ["%s Выбрано (Виртуальные)"], + "%s Selected (Physical)": ["%s Выбрано (Физические)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s Выбрано (%s Физические, %s Виртуальные)" ], - "You cannot use 45° tick layout along with the time range filter": [ - "Вы не можете использовать расположение делений под углом 45° при использовании временного фильтра" + "log": ["журнал"], + "Execution ID": ["ID исполнения"], + "Scheduled at (UTC)": ["Запланировано на (часовой пояс UTC)"], + "Start at (UTC)": ["Время начала (UTC)"], + "Error message": ["Сообщение об ошибке"], + "There was an issue fetching your recent activity: %s": [ + "Произошла ошибка при получении вашей последней активности: %s" ], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "Вы не можете использовать [Столбцы] в сочетании с [Группировать по]/[Мерами]/[Процентными мерами]. Пожалуйста, выберите одно или другое." + "There was an issue fetching your dashboards: %s": [ + "Произошла ошибка при получении вашего дашборда: %s" ], - "You do not have permission to edit this chart": [ - "У вас нет прав на редактирование этого графика" + "There was an issue fetching your chart: %s": [ + "Произошла ошибка при получении вашего графика: %s" ], - "You do not have permission to edit this dashboard": [ - "У вас нет прав на редактирование этого дашборда" + "There was an issue fetching your saved queries: %s": [ + "Произошла ошибка при получении ваших сохраненных запросов: %s" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "У вас нет доступа этого источника данных: %(name)s." + "Thumbnails": ["Миниатюры"], + "Recents": ["Недавние"], + "There was an issue previewing the selected query. %s": [ + "Произошла ошибка при предпросмотре выбранного запроса: %s" ], - "You do not have permissions to edit this dashboard.": [ - "У вас нет прав на редактирование этого дашборда." + "TABLES": ["ТАБЛИЦЫ"], + "Open query in SQL Lab": ["Открыть в SQL редакторе"], + "An error occurred while fetching database values: %s": [ + "Произошла ошибка при получении значений базы данных: %s" ], - "You don't have access to this chart.": [ - "Недостаточно прав для доступа к этому графику." + "An error occurred while fetching user values: %s": [ + "Произошла ошибка при извлечении пользовательских значений: %s" ], - "You don't have access to this dashboard.": [ - "Недостаточно прав для доступа к этому дашборду." + "Search by query text": ["Поиск по тексту запроса"], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Для баз данных нужны пароли, чтобы импортировать их вместе с сохраненными запросами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в настройках конфигурации базы данных отсутствуют в экспортируемых файлах и должны быть добавлены вручную после импорта, если необходимо." ], - "You don't have access to this dataset.": [ - "Недостаточно прав для доступа к этому датасету." + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Вы импортируете один или несколько сохраненных запросов, которые уже существуют. Перезапись может привести к потере части вашей работы. Вы уверены, что хотите продолжить?" ], - "You don't have access to this embedded dashboard config.": [ - "У вас нет прав на редактирование этого встраиваемого дашборда." + "Query imported": ["Запрос импортирован"], + "There was an issue previewing the selected query %s": [ + "Произошла ошибка при предпросмотре выбранного запроса %s" ], - "You don't have any favorites yet!": ["У вас пока нет избранных!"], - "You don't have permission to modify the value.": [ - "Недостаточно прав для редактирования этого значения." + "Import queries": ["Импортировать запросы"], + "Link Copied!": ["Ссылка скопирована"], + "There was an issue deleting the selected queries: %s": [ + "Произошла ошибка при удалении выбранных запросов: %s" ], - "You don't have the rights to alter %(resource)s": [ - "Недостаточно прав для изменения %(resource)s" + "Edit query": ["Редактировать запрос"], + "Copy query URL": ["Скопировать ссылку на запрос"], + "Export query": ["Экспорт запроса"], + "Delete query": ["Удалить запрос"], + "Are you sure you want to delete the selected queries?": [ + "Вы уверены, что хотите удалить выбранные запросы?" ], - "You don't have the rights to alter this chart": [ - "Недостаточно прав для изменения графика" + "queries": ["запросы"], + "tag": [""], + "Image download failed, please refresh and try again.": [ + "Ошибка скачивания изображения, пожалуйста, обновите и попробуйте заново." ], - "You don't have the rights to alter this dashboard": [ - "Недостаточно прав для изменения дашборда" + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Выберите значения в обязательных полях на панели управления. Затем запустите запрос, нажав на кнопку %s." ], - "You don't have the rights to alter this title.": [ - "Недостаточно прав для изменения названия." + "Invalid input": ["Недопустимые входные данные"], + "Unexpected error: ": ["Неожиданная ошибка: "], + "(no description, click to see stack trace)": [ + "(нет описания, нажмите для просмотра трассировки стека)" ], - "You don't have the rights to create a chart": [ - "Недостаточно прав для создания графика" + "Sorry, an unknown error occurred.": [ + "Извините, произошла неизвестная ошибка." ], - "You don't have the rights to create a dashboard": [ - "Недостаточно прав для создания дашборда" + "Network error": ["Ошибка сети"], + "Request timed out": ["Вышло время запроса"], + "Issue 1000 - The dataset is too large to query.": [ + "Ошибка 1000 - Источник данных слишком велик для запроса." ], - "You don't have the rights to download as csv": [ - "Недостаточно прав для скачивания в CSV" + "Issue 1001 - The database is under an unusual load.": [ + "Ошибка 1001 - Нетипичная загрузка базы данных." ], - "You have no permission to approve this request": [ - "Недостаточно прав для одобрения этого запроса" + "An error occurred while fetching %s info: %s": [ + "Произошла ошибка при получении информации о %s: %s" ], - "You have removed this filter.": ["Вы удалили фильтр."], - "You have unsaved changes.": ["У вас есть несохраненные изменения."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "" + "An error occurred while fetching %ss: %s": [ + "Произошла ошибка при получении: %s: %s" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "Вы должны быть владельцем датасета для его редактирования. Пожалуйста, обратитесь к владельцу с просьбой предоставить доступ." + "An error occurred while creating %ss: %s": [ + "Произошла ошибка при создании %sов: %s" ], - "You must pick a name for the new dashboard": [ - "Вы должны выбрать имя для нового дашборда" + "Please re-export your file and try importing again": [""], + "An error occurred while importing %s: %s": [ + "Произошла ошибка при попытке импортировать %s: %s" ], - "You must run the query successfully first": [ - "Сначала необходимо успешно выполнить запрос" + "There was an error fetching the favorite status: %s": [ + "Произошла ошибка при получении статуса избранного: %s" ], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "Вы обновили значения в панели управления, но график не был обновлен автоматически. Сделайте запрос, нажав на кнопку \"Обновить график\" или" + "There was an error saving the favorite status: %s": [ + "Произошла ошибка при сохранении статуса избранного: %s" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "Вы изменили датасеты. Все элементы управления с данными (столбцами, мерами), которые соответствуют новому датасету, были сохранены." + "Connection looks good!": ["Соединение в порядке!"], + "ERROR: %s": ["ОШИБКА: %s"], + "There was an error fetching your recent activity:": [ + "Произошла ошибка при получении вашей недавней активности:" ], - "Your chart is not up to date": ["Ваш график не актуален"], - "Your chart is ready to go!": ["Ваш график готов!"], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "Дашборд слишком большой. Пожалуйста, уменьшите его размер перед сохранением." + "There was an issue deleting: %s": ["Произошла ошибка при удалении: %s"], + "URL": ["Ссылка (URL)"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Шаблонная ссылка, можно включить {{ metric }} или другие значения, поступающие из элементов управления." ], - "Your query could not be saved": ["Не удалось сохранить ваш запрос"], - "Your query could not be scheduled": [ - "Не удалось запланировать ваш запрос" + "Time-series Table": ["Таблица временных рядов"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Быстрое сравнение нескольких графиков временных рядов (в виде спарклайнов) и связанных с ними показателей." ], - "Your query could not be updated": ["Не удалось обновить ваш запрос"], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Запрос был запланирован. Чтобы посмотреть детали запроса, перейдите в Сохраненные запросы" - ], - "Your query was not properly saved": [ - "Ваш запрос не был сохранен должным образом" - ], - "Your query was saved": ["Ваш запрос был сохранен"], - "Your query was updated": ["Ваш запрос был сохранен"], - "Your report could not be deleted": ["Не удается удалить рассылку"], - "Zero imputation": ["Нулевые значения"], - "Zoom": ["Масштабирование"], - "Zoom level of the map": ["Уровень масштабирования карты"], - "[ untitled dashboard ]": ["[ безымянный дашборд ]"], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "Столбцы [Долгота] и [Широта] должны присутствовать в [Группировать по]" - ], - "[Longitude] and [Latitude] must be set": [ - "[Долгота] и [Широта] должны быть заданы" - ], - "[Missing Dataset]": ["[отсутствующий датасет]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Суперсет] Предоставлен доступ к источнику данных %(name)s" - ], - "[Untitled]": ["[Без названия]"], - "[dashboard name]": ["[имя дашборда]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "[необязательно] вторичная мера используется для определения цвета как доли по отношению к основной мере. Если не выбрано, цвет задается согласно имени категории" - ], - "[untitled]": ["[без названия]"], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`доверительный_интервал` должен быть между 0 и 1 (не включая концы)" - ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "" - ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": ["агрегатная функция"], - "alert": ["оповещение"], - "alerts": ["оповещений"], - "all": ["Все"], - "also copy (duplicate) charts": [ - "также копировать (дублировать) графики" - ], - "ancestor": ["предок"], - "and": ["и"], - "annotation": ["аннотация"], - "annotation_layer": ["слой_аннотации"], - "asfreq": ["asfreq (без изменения)"], - "at": ["в"], - "auto": ["Автоматически"], - "auto (Smooth)": ["Автоматически (плавно)"], - "background": [""], - "below (example:": ["ниже (пример:"], - "between {down} and {up} {name}": [""], - "bfill": ["bfill (заполняет пропуски предыдущими значениями)"], - "bolt": [""], - "boolean type icon": [""], - "bottom": ["снизу"], - "button (cmd + z) until you save your changes.": [ - "(CTRL + Z), пока вы не сохраните изменения." - ], - "by using": [", используя"], - "cannot be empty": ["Необходимо заполнить"], - "chart": ["график"], - "charts": ["графики(ов)"], - "choose WHERE or HAVING...": ["выберите WHERE или HAVING..."], - "clear all filters": ["Сбросить все фильтры"], - "click here": ["нажмите сюда"], - "code ISO 3166-1 alpha-2 (cca2)": ["Код ISO 3166-1 alpha-2 (cca2)"], - "code ISO 3166-1 alpha-3 (cca3)": ["Код ISO 3166-1 alpha-3 (cca3)"], - "code International Olympic Committee (cioc)": [ - "Код Международного Олимпийского Комитета (cioc)" - ], - "column": ["столбец"], - "connecting to %(dbModelName)s.": ["подключении к %(dbModelName)s"], - "count": ["количество"], - "create": ["создать"], - "create a new chart": ["создать новый график"], - "create dataset from SQL query": ["создайте датасет из SQL запроса"], - "css": ["css"], - "css_template": ["шаблон_css"], - "cumsum": ["Кумулятивная сумма"], - "cumulative": ["кумулятивно"], - "dashboard": ["дашборд"], - "dashboards": ["дашборды(ов)"], - "database": ["база данных"], - "dataset": ["датасет"], - "dataset name": ["Имя датасета"], - "date": ["дата"], - "day": ["день"], - "day of the month": ["день месяца"], - "day of the week": ["день недели"], - "deck.gl 3D Hexagon": ["deck.gl 3D Шестигранники"], - "deck.gl Arc": ["deck.gl Дуга"], - "deck.gl Geojson": ["deck.gl GeoJSON"], - "deck.gl Grid": ["deck.gl Сетка"], - "deck.gl Multiple Layers": ["deck.gl Многослойный"], - "deck.gl Polygon": ["deck.gl Полигон"], - "deck.gl Scatterplot": ["deck.gl Точечная карта"], - "deckGL": ["Карта deckGL"], - "default": ["по умолчанию"], - "delete": ["удалить"], - "descendant": ["потомок"], - "description": ["описание"], - "dialect+driver://username:password@host:port/database": [ - "диалект+драйвер://пользователь:пароль@хост:порт/схема" - ], - "draft": ["черновик"], - "dttm": ["Дата/время"], - "e.g. ********": ["например, ********"], - "e.g. 127.0.0.1": ["например, 127.0.0.1"], - "e.g. 5432": ["например, 5432"], - "e.g. AccountAdmin": [""], - "e.g. Analytics": ["например, Analytics"], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [ - "например, параметр1=значение1&параметр2=значение2" - ], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": ["например, health_medicine"], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": [ - "например, столбец \"идентификатор пользователя\"" - ], - "edit mode": ["режиме редактирования"], - "error dark": [""], - "every": ["каждые"], - "every day of the month": ["каждый день месяца"], - "every day of the week": ["каждый день недели"], - "every hour": ["каждый час"], - "every minute": ["каждая минута"], - "every month": ["каждый месяц"], - "expand": ["развернуть"], - "explore": ["исследовать"], - "ffill": ["ffill (заполняет пропуски следующими значениями)"], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "filter_box устарел и будет удален в будущей версии Суперсета. Пожалуйста, замените его фильтрами в левой панели дашборда." - ], - "flat": [""], - "for more information on how to structure your URI.": [ - " за подробной информацией по тому, как структурировать ваш URI" - ], - "function type icon": [""], - "geohash (square)": [""], - "heatmap": ["тепловая карта"], - "heatmap: values are normalized across the entire heatmap": [ - "тепловая карта: значения нормализованы внутри всей карты" - ], - "here": ["здесь"], - "hour": ["час"], - "id": ["идентификатор"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "" - ], - "in": ["в"], - "in modal": ["в модальном окне"], - "is expected to be a number": ["Ожидается число"], - "is expected to be an integer": ["Ожидается целое число"], - "joined": ["Присоединился"], - "json isn't valid": ["JSON не валиден"], - "key a-z": ["По алфавиту А-Я"], - "key z-a": ["По алфавиту Я-А"], - "label": ["метка"], - "last day": ["последний день"], - "last month": ["последний месяц"], - "last quarter": ["последний квартал"], - "last week": ["последняя неделя"], - "last year": ["последний год"], - "latest partition:": ["последний раздел:"], - "left": ["слева"], - "less than {min} {name}": [""], - "log": ["журнал"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "Нижний процентиль должен быть больше 0 и меньше 100. Должен быть ниже верхнего процентиля" - ], - "max": ["Максимум"], - "mean": ["Среднее"], - "median": ["Медиана"], - "metric": ["мера"], - "min": ["Минимум"], - "minute": ["минута"], - "minute(s)": ["минут"], - "month": ["месяц"], - "more than {max} {name}": [""], - "must have a value": ["значение обязательно"], - "name": ["имя"], - "no SQL validator is configured": ["не настроен ни один SQL валидатор"], - "no SQL validator is configured for {}": [ - "не настроен ни один SQL валидатор для {}" - ], - "numeric type icon": [""], - "nvd3": ["Графики nvd3"], - "on": ["по"], - "or use existing ones from the panel on the right": [ - "или использовать уже существующие из панели справа" - ], - "p-value precision": ["точность p-значения"], - "p1": ["p1"], - "p5": ["p5"], - "p95": ["p95"], - "p99": ["p99"], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": ["перцентиль (исключая)"], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "" - ], - "permalink state not found": [""], - "pixelated (Sharp)": [""], - "previous calendar month": ["предыдущий календарный месяц"], - "previous calendar week": ["предыдущая календарная неделя"], - "previous calendar year": ["предыдущий календарный год"], - "published": ["опубликовано"], - "quarter": ["Квартал"], - "queries": ["запросы"], - "query": ["запрос"], - "random": ["случайно"], - "reboot": ["обновить"], - "recent": ["недавние"], - "recents": ["недавние(их)"], - "report": ["рассылка"], - "reports": ["рассылки"], - "restore zoom": ["восстановить масштабирование"], - "right": ["справа"], - "saved queries": ["сохраненные(ых) запросы(ов)"], - "seconds": ["секунд"], - "series": ["категории"], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ - "" - ], - "std": ["Стандартное отклонение"], - "step-after": [""], - "step-before": [""], - "stream": ["поток"], - "string type icon": [""], - "sum": ["Сумма"], - "syntax.": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": ["текстовая область"], - "to": ["по"], - "top": ["сверху"], - "undo": ["отмены"], - "unknown type icon": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "" - ], - "value ascending": ["Значение по возрастанию"], - "value descending": ["Значение по убыванию"], - "var": ["Дисперсия"], - "variance": ["Дисперсия"], - "virtual": ["Виртуальный"], - "viz type": ["тип визуализации"], - "was created": ["создан(а)"], - "week": ["неделя"], - "week ending Saturday": ["неделя, заканчивающаяся в субботу"], - "week starting Sunday": ["неделя, начинающаяся в воскресенье"], - "x": ["x"], - "x: values are normalized within each column": [ - "x: значения нормализованы внутри каждого столбца" - ], - "y": ["y"], - "y: values are normalized within each row": [ - "y: значения нормализованы внутри каждой строки" - ], - "year": ["год"], - "zoom area": [""] + "We have the following keys: %s": ["У нас есть следующие ключи: %s"] } } } diff --git a/superset/translations/ru/LC_MESSAGES/messages.po b/superset/translations/ru/LC_MESSAGES/messages.po index bef790f515f6f..d5a11c212a204 100644 --- a/superset/translations/ru/LC_MESSAGES/messages.po +++ b/superset/translations/ru/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2023-01-09 14:32+0300\n" "Last-Translator: Artem Shumeiko\n" "Language: ru\n" @@ -29,4089 +29,4102 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" -"\n" -" Фильтр был наследован из контекста дашборда.\n" -" Он не будет сохранен при сохранении графика.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "Источник данных слишком велик для запроса." -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" -"\n" -" Ошибка: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "Нетипично высокая загрузка базы данных" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" -msgstr " (исключено)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "База данных вернула неожиданную ошибку" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -" Установите прозрачность 0, если вы не хотите переписывать цвет, " -"указанный в GeoJSON" +"В SQL-запросе имеется синтаксическая ошибка. Возможно, это " +"орфографическая ошибка или опечатка." -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -msgid " a dashboard OR " -msgstr " дашборд или " +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "Столбец был удален или переименован в базе данных." -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -msgid " a new one" -msgstr " новый" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "Таблица была удалена или переименована в базе данных." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " -msgstr ", который должен придерживаться " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "Один или несколько параметров, указанных в запросе, отсутствуют" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" -msgstr " исходный код sandboxed парсера Суперсета" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "Не удалось обнаружить хост." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." -msgstr "" -" стандарта для обеспечения того, чтобы лексикографический порядок " -"совпадал с хронологическим порядком. Если формат временной метки не " -"соответствует стандарту ISO 8601, вам нужно будет определить выражение и " -"тип для преобразования строки в дату или временную метку. В настоящее " -"время часовые пояса не поддерживаются. Если время хранится в формате " -"эпохи, введите \\`epoch_s\\` или \\`epoch_ms\\`. Если шаблон не указан, " -"будут использованы необязательные значения по умолчанию на уровне имен " -"для каждой базы данных/столбца с помощью дополнительного параметра." +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "Порт закрыт." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -msgid " to add calculated columns" -msgstr " для добавления вычисляемых столбцов" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." +msgstr "Хост возможно, отключен, и с ним невозможно связаться по заданному порту." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -msgid " to add metrics" -msgstr " для добавления мер" +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "Суперсет столкнулся с ошибкой во время выполнения команды." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." -msgstr " для редактирования или добавления столбцов и мер." +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "Суперсет столкнулся с неожиданной ошибкой." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" -msgstr ", чтобы пометить столбец как столбец даты/времени" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "Имя пользователя, указанное при подключении к базе данных, недействительно" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." -msgstr " в Лаборатории SQL. Там вы сможете сохранить запрос как датасет." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "Неверный пароль для базы данных." -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." -msgstr " для визуализации ваших данных." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Неверное имя пользователя или пароль" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" -msgstr "!= (не равно)" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Неверное или несуществующее имя базы данных." -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "Схема была удалена или переименована в базе данных." + +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "У пользователя нет надлежащего доступа." + +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -"%(dialect)s не может использоваться в качестве источника данных по " -"соображениям безопасности." +"Один или несколько параметров, необходимых для настройки базы данных, " +"отсутствуют" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "Загруженные данные имеют некорректный формат." + +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "Загруженные данные имеют некорректную схему." + +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." +msgstr "Сервер, необходимый для асинхронных запросов, не настроен." + +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "База данных не позволяет изменять свои данные." + +#: superset/errors.py:127 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -"%(message)s\n" -"Возможные причины: \n" -"%(issues)s" +"CTAS (CREATE TABLE AS SELECT) не содержит SELECT запрос в конце. " +"Пожалуйста, убедитесь, что ваш запрос имеет SELECT запрос в конце. Затем " +"попробуйте повторно выполнить запрос." -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" -msgstr "%(name)s.csv" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "CVAS (CREATE VIEW AS SELECT) запрос содержит больше одного запроса." -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." -msgstr "%(object)s не существует в этой базе данных." +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "CVAS (CREATE VIEW AS SELECT) запрос не является SELECT запросом." -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, fuzzy, python-format -msgid "%(other)s charts will appear here" -msgstr "%(other)s %(tableName)s появятся здесь после добавления" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "Запрос слишком тяжелый для выполнения и займет много времени." -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, fuzzy, python-format -msgid "%(other)s dashboards will appear here" -msgstr "%(other)s %(tableName)s появятся здесь после добавления" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "В настоящий момент база данных обрабатывает слишком много запросов." -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, fuzzy, python-format -msgid "%(other)s recents will appear here" -msgstr "%(other)s %(tableName)s появятся здесь после добавления" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "" +"Один или несколько параметров, указанных в запросе, неверно " +"отформатированы" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, fuzzy, python-format -msgid "%(other)s saved queries will appear here" -msgstr "%(other)s %(tableName)s появятся здесь после добавления" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "Объект не существует в этой базе данных." -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "Запрос имеет синтаксическую ошибку." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" -msgstr "Получено строк: %(rows)d" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "Сервер не сохранил данные из этого запроса." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" -msgstr "" -"%(subtitle)s\n" -"Возможные причины:\n" -" %(issue)s" +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "Запрос, связанный с результатами, был удален." -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "%(suggestion)s вместо \"%(undefinedParameter)s\"?" -msgstr[1] "" -"%(firstSuggestions)s или %(lastSuggestion)s вместо " -"\"%(undefinedParameter)s\"?" -msgstr[2] "" -"%(firstSuggestions)s или %(lastSuggestion)s вместо " -"\"%(undefinedParameter)s\"?" - -#: superset/views/core.py:385 -#, python-format +#: superset/errors.py:141 msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -"%(user)s была назначена роль %(role)s, которая дает доступ к " -"%(datasource)s" +"Данные, сохраненные на сервере, имели другой формат, и не могут быть " +"распознаны." -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" -msgstr "%(user)s - профиль" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "Недействительный порт." -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" -msgstr "" -"%(validator)s не смог проверить ваш запрос.\n" -"Пожалуйста, перепроверьте ваш запрос.\n" -"Ошибка: %(ex)s" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "Не удалось запустить удаленный запрос на сервере." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s Ошибка" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "База данных была удалена" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, python-format -msgid "%s PASSWORD" -msgstr "%s ПАРОЛЬ" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "Пользовательские поля SQL не могут содержать подзапросы." -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:149 +#, fuzzy +msgid "The submitted payload failed validation." +msgstr "Загруженные данные имеют некорректную схему." + +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Неверный сертификат" + +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 +#: superset/forms.py:72 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, fuzzy, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "Пароль приватного ключа" - -#: superset-frontend/src/components/ListView/ListView.tsx:245 +#: superset/jinja_context.py:344 #, python-format -msgid "%s Selected" -msgstr "%s Выбрано" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Небезопасный возвращаемый тип для функции %(func)s: %(value_type)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#: superset/jinja_context.py:355 #, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s Выбрано (%s Физические, %s Виртуальные)" +msgid "Unsupported return value for method %(name)s" +msgstr "Неподдерживаемое значение для метода %(name)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/jinja_context.py:371 #, python-format -msgid "%s Selected (Physical)" -msgstr "%s Выбрано (Физические)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Небезопасное значение шаблона для ключа %(key)s: %(value_type)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/jinja_context.py:382 #, python-format -msgid "%s Selected (Virtual)" -msgstr "%s Выбрано (Виртуальные)" +msgid "Unsupported template value for key %(key)s" +msgstr "Неподдерживаемое значение шаблона для ключа %(key)s" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "Агрегатных функций: %s" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "Только SELECT запросы доступны для этой базы данных." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#: superset/sql_lab.py:302 #, python-format -msgid "%s column(s)" -msgstr "Столбцов: %s" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "" +"Запрос был прерван после %(sqllab_timeout)s секунд. Он мог быть слишком " +"сложным, или база данных находилась под большой нагрузкой." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "%s параметр(ы)" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "Results backend не нестроен" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s вариант" -msgstr[1] "%s варианта" -msgstr[2] "%s вариантов" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." +msgstr "" +"CTAS (CREATE TABLE AS SELECT) может быть выполнен в запросе с " +"единственным SELECT запросом. Пожалуйста, убедитесь, что запрос содержит " +"только один SELECT запрос. Затем выполните запрос заново." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s вариант(ов)" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." +msgstr "" +"CVAS (CREATE VIEW AS SELECT) может быть выполнен в запросе с единственным" +" SELECT запросом. Пожалуйста, убедитесь, что запрос содержит только один " +"SELECT запрос. Затем выполните запрос заново." -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#: superset/sql_lab.py:488 #, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s строка" -msgstr[1] "%s строки" -msgstr[2] "%s строк" +msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#: superset/sql_lab.py:510 #, python-format -msgid "%s saved metric(s)" -msgstr "Сохраненная мер: %s" +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, python-format -msgid "%s updated" -msgstr "Обновлено: %s" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "У визуализации отсутствует источник данных" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" -msgstr "%s%s" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." +msgstr "" +"Применное скользязее окно не вернуло данных. Убедитесь, что исходный " +"запрос удовлетворяет минимальному количеству периодов скользящего окна." -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "Дата начала не может быть позже даты конца" + +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Кэшированное значение не найдено" + +#: superset/viz.py:577 #, python-format -msgid "%s-%s of %s" -msgstr "%s-%s из %s" +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "Столбцы отсутствуют в источнике данных: %(invalid_columns)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(Удалено)" +#: superset/viz.py:706 +#, fuzzy +msgid "Time Table View" +msgstr "Убрать предпросмотр таблицы" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "(удалено или невалидный тип)" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Выберите хотя бы одну меру" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "(нет описания, нажмите для просмотра трассировки стека)" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "При использовании 'GROUP BY' вы ограничены использованием одной меры" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "" -"(опционально) значение по умолчанию для фильтра. Когда используются " -"множественные значения, вы можете вставить список значений, разделённых " -"символами точка с запятой" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Календарная тепловая карта" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "), и они станут доступны в ваших SQL запросах (пример:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Пузырьковая диаграмма" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Исследовать в Суперсете>\n" -"\n" -"%(table)s\n" -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Ошибка: %(text)s\n" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Выберите меру для x, y и размера" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" -msgstr "+ еще %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Диаграмма-шкала" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "," +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Выберите меру для отображения" + +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Линейная диаграмма (временные ряды)" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -"-- Примечание: Пока вы не сохраните ваш запрос, эти вкладки НЕ будут " -"сохранены, если вы очистите куки или смените браузер.\n" -"\n" +"При использовании сравнения времени необходимо указать закрытый временной" +" интервал (как начало, так и конец)." -#: superset/views/database/forms.py:164 -msgid "." -msgstr "." +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Столбчатая диаграмма (временные ряды)" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0 выбрано" +#: superset/viz.py:1145 +#, fuzzy +msgid "Time Series - Period Pivot" +msgstr "Period Pivot (временные ряды)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "Дневная частота" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Процентное изменение (временные ряды)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" -msgstr "1 день" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Диаграмма с накоплением (временные ряды)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "1 день назад" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Гистограмма" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 час" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Должен быть указан хотя бы один числовой столбец" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" -msgstr "Часовая частота" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Распределение - Столбчатая диаграмма" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 минута" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "Минутная частота" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "Месячная частота (конец месяца)" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "Месячная частота (начало месяца)" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Санкей" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -msgid "1 week" -msgstr "1 неделя" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" -msgstr "1 неделя назад" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" -msgstr "1 неделя с началом в Понедельник (част=W-MON)" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "1 неделя с началом в Воскресенье (част=W-SUN)" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Карта Стран" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -msgid "1 year" -msgstr "1 год" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Карта Мира" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "1 год назад" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" -msgstr "Годовая частота (конец года)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Тепловая карта" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" -msgstr "Годовая частота (начало года)" +#: superset/viz.py:1674 +#, fuzzy +msgid "Horizon Charts" +msgstr "Horizon Charts" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10 минут" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -msgid "104 weeks" -msgstr "104 недели" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[Долгота] и [Широта] должны быть заданы" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "104 недели назад" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15 минут" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "[Метка] должна присутствовать в [Группировать по]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -msgid "156 weeks" -msgstr "156 недель" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "[Радиус точки] должен присутствовать в [Группировать по]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "156 недель назад" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "Столбцы [Долгота] и [Широта] должны присутствовать в [Группировать по]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "1С" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - Многослойный" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "1Д" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Неподходящий пространственный ключ" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "1Ч" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "1М" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "1МИН" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - Точечная диаграмма" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -msgid "2 years" -msgstr "2 года" +#: superset/viz.py:2095 +#, fuzzy +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - Screen Grid" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "2 года назад" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - 3D сетка" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "2/98 перцентели" +#: superset/viz.py:2160 +#, fuzzy +msgid "Deck.gl - Paths" +msgstr "Deck.gl - Paths" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "22" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - Полигон" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -msgid "28 days" -msgstr "28 дней" +#: superset/viz.py:2248 +#, fuzzy +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D HEX" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "28 дней назад" +#: superset/viz.py:2271 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Paths" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "2D карты" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Deck.gl - Дуга" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" -msgstr "3х буквенный код страны" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - GeoJSON" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -msgid "3 years" -msgstr "3 года" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - Дуга" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" -msgstr "3 года назад" +#: superset/viz.py:2369 +#, fuzzy +msgid "Event flow" +msgstr "Event flow" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30 дней" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Парный t-test (временные ряды)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" -msgstr "30 дней назад" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Диаграмма Найтингейл (временные ряды)" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" -msgstr "30 минут" +#: superset/viz.py:2511 +#, fuzzy +msgid "Partition Diagram" +msgstr "Partition Diagram" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 минут" +#: superset/viz.py:2676 +#, fuzzy +msgid "Please choose at least one groupby" +msgstr "Выберите хотя бы одно поле \"Группировать по\"" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" -msgstr "30 секунд" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "Невалидный расширенный тип данных: %(advanced_data_type)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 секунд" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "Удалален %(num)d слой аннотаций" +msgstr[1] "Удалалены %(num)d слоя аннотаций" +msgstr[2] "Удалалено %(num)d слоев аннотаций" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" -msgstr "3D карты" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Весь текст" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "4 недели (част=4W-MON)" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "Удалалена %(num)d аннотация" +msgstr[1] "Удалалены %(num)d аннотации" +msgstr[2] "Удалалено %(num)d аннотаций" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5 минут" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "Удален %(num)d график" +msgstr[1] "Удалены %(num)d графика" +msgstr[2] "Удалено %(num)d графиков" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 минут" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" +msgstr "Одобрено" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "5 секунд" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" +msgstr "Создан(а)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" -msgstr "5 секунд" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" +msgstr "Создано мной" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -msgid "52 weeks" -msgstr "52 недели" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "52 недели назад" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "52 недели с началом в Понедельник (част=52W-MON)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "Подытог" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" -msgstr "6 часов" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`доверительный_интервал` должен быть между 0 и 1 (не включая концы)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60 дней" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." +msgstr "" +"Нижний процентиль должен быть больше 0 и меньше 100. Должен быть ниже " +"верхнего процентиля" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "Недельная частота" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" -msgstr "7 дней" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "7Д" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" -msgstr "9/91 перцентели" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90 дней" +#: superset/charts/schemas.py:1295 +#, fuzzy +msgid "orderby column must be populated" +msgstr "Ваш запрос не может быть сохранен" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "" +"На графике не сохранен контекст запроса. Пожалуйста, сохраните диаграмму " +"еще раз." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "< (меньше чем)" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "Неверный запрос: %(error)s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "<= (меньше или равно)" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "Запрос не является JSON" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" -msgstr "<введите SQL выражение>" +#: superset/charts/data/api.py:369 +msgid "Empty query result" +msgstr "Пустой ответ запроса" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -msgid "" -msgstr "<новый столбец>" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Неверный список владельцев" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -msgid "" -msgstr "<новая мера>" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Некоторые роли не существуют" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" -msgstr "<новая пространственная мера>" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "Тип источниках данных неверный" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" -msgstr "<без типа>" +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" +msgstr "Источник данных не существует" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "== (равно)" +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" +msgstr "Запрос не существует" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "> (больше чем)" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Параметры слоя аннотаций недействительны" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" -msgstr ">= (больше или равно)" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Не удалось создать слой аннотации." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" -msgstr "Карточка" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Не удалось обновить слой аннотации." -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "" -"Разделённый запятыми список столбцов, которые должны быть " -"интерпретированы как даты." +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Слой аннотации не найден" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "" -"Разделённый запятыми список столбцов, которые должны быть " -"интерпретированы как даты." +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "Не удалось удалить слой аннотации." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "Разделённый запятыми список схем, в которые можно загружать файлы." +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "Слои аннотаций имеет связанные аннотации" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "База данных с таким же именем уже существует" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "Имя должно быть уникальным" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "Конечная дата должна быть после начальной" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" -msgstr "" -"Полный URL, указывающий на местоположение плагина (например, ссылка на " -"CDN)" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "Содержимое аннотации должно быть уникальным внутри слоя" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "Шаблон handlebars, примененный к данным" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Аннотация не найдена." -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Человекочитаемое имя" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Параметры аннотации недействительны." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." -msgstr "" -"Список доменных имен, которые могут встраивать этот дашборд. Если " -"оставить поле пустым, любой домен сможет сделать встраивание." +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "Не удалось создать аннотацию" -#: 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." -msgstr "Лицо или группа, которые утвердили этот график" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "Не удалось обновить аннотацию" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "Владельцы - это пользователи, которые могут изменять график" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Не удалось удалить аннотации." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "Карта мира, на которой могут быть указаны значения в разных странах." +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Есть связанные оповещения или отчеты: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 +#: superset/commands/chart/exceptions.py:38 +#, python-format msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" -msgstr "На карте отображаются маркеры переменного радиуса и цвета." +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" +"Временная строка неоднозначна. Пожалуйста, укажите [%(human_readable)s " +"до] или [%(human_readable)s после]." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Показатель, используемый для расчета цвета" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Не удается разобрать временную строку [%(human_readable)s]" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" +"Неоднозначный временной сдвиг. Пожалуйста, укажите [%(human_readable)s " +"до] или [%(human_readable)s после]." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "Читаемый URL-адрес для дашборда" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "База данных не существует" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Дашборды не существуют" + +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" +"Тип источника данных обязателен, когда дан идентификатор источника данных" +" (datasource_id)" -#: superset/reports/commands/exceptions.py:186 -#, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Рассылка с именем \"%(name)s\" уже существует" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Параметры графика недопустимы." -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "Переиспользуемый датасет будет сохранен с вашим графиком." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Не удалось создать график" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "Скриншот дашборда будет отправлен на ваш электронный адрес" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Не удалось обновить график" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "Набор параметров, которые доступны в запросе через шаблонизацию Jinja." +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Не удалось удалить графики." -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." -msgstr "" -"Столбец даты/времени должен быть указан при использовании сравнения по " -"времени" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Есть связанные оповещения или отчеты" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." -msgstr "" -"Диаграмма временного ряда, которая визуализирует, как связанная метрика " -"из нескольких групп изменяется с течением времени. Для каждой группы " -"используется свой цвет." +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "Недостаточно прав для доступа к этому графику." -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "Вышло время исполнения запроса." +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "Запрещено изменять этот график" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "Вышло время создания CSV файла." +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "Не удалось импортировать график по неизвестной причине" -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." -msgstr "Вышло время создания датафрейма." +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Запрещено изменять этот дашборд" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." -msgstr "Вышло время создания скриншота." +#: superset/commands/chart/exceptions.py:156 +#, fuzzy +msgid "Chart not found" +msgstr "График %(id)s не найден" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" -msgstr "Требуется корректная цветовая схема" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" +msgstr "Ошибка: %(error)s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "ПРИМЕНИТЬ" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "Не удалось удалить CSS шаблон." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "АПР" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "CSS шаблон не найден." -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "Асинхронные запросы" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Должно быть уникальным" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "АВГ" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Неверные параметры дашборда" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" -msgstr "ОТСТУП ЗАГОЛОВКА ОСИ" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "Не удалось создать дашборд" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" -msgstr "ПОЛОЖЕНИЕ ЗАГОЛОВКА ОСИ" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Не удалось обновить дашборд" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "О программе" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Не удалось удалить дашборд" -#: 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 "Доступ" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Запрещено изменять этот дашборд" -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "Запросы доступа" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "Не удалось импортировать дашборд по неизвестной причине" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "Запрещен доступ к истории действий пользователя" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "Недостаточно прав для доступа к этому дашборду." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" -msgstr "Токен доступа" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." +msgstr "У вас нет прав на редактирование этого встраиваемого дашборда." -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "Доступ запрошен" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "В файле нет данных" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Действие" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Параметры базы данных недействительны." -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "Журнал действий" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "База данных с таким же именем уже существует" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "Действия" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Поле обязательно к заполнению" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "Активен" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "поле не может быть декодировано с помощью JSON. %(json_error)s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -msgid "Actual Values" -msgstr "Фактические значения" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Фактический временной интервал" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "База данных не найдена." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" -msgstr "Фактическое значение" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "Не удалось создать базу данных." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -msgid "Actual values" -msgstr "Фактические значения" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "Не удалось обновить базу данных." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" -msgstr "Адаптивное форматирование" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "Сбой подключения, пожалуйста, проверьте настройки вашего подключения" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "Добавить" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "Невозможно удалить базу данных с подключенными датасетами" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" -msgstr "Добавить оповещение" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "Не удалось удалить базу данных." -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Добавить CSS шаблон" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "Добавить CSS шаблоны" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Не удалось загрузить драйвер базы данных" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Добавить график" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "" +"Возникла неожиданная ошибка, пожалуйста, проверьте историю действий для " +"уточнения деталей" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "Добавить столбец" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "не настроен ни один SQL валидатор" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Добавить дашборд" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "Не найден валидатор (сконфигурированный для драйвера)" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Добавить базу данных" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "Не удалось проверить запрос" -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Добавить запись" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "Произошла неожиданная ошибка" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "Добавить меру" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "Не удалось импортировать базу данных по неизвестной причине" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" -msgstr "Добавить рассылку" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Не удалось загрузить драйвер базы данных: {}" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Add Rule" -msgstr "Неверная формула." +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "Не удается настроить драйвер \"%(engine)s\" при данных параметрах." -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "Добавить сохраненный запрос" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "База данных сейчас оффлайн." -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Добавить плагин" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" +"%(validator)s не смог проверить ваш запрос.\n" +"Пожалуйста, перепроверьте ваш запрос.\n" +"Ошибка: %(ex)s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -msgid "Add a dataset" -msgstr "Добавить датасет" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "не настроен ни один SQL валидатор для {}" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" -msgstr "Новая вкладка" +#: superset/commands/database/validate_sql.py:111 +#, fuzzy, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "Не найден валидатор с именем {} (сконфигурированный для драйвера {})" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" -msgstr "Откройте новую вкладку для создания SQL запроса" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." +msgstr "Не удалось удалить SSH туннель." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" -msgstr "Добавление дополнительных пользовательских параметров" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." +msgstr "SSH туннель не найден." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -msgid "Add an annotation layer" -msgstr "Добавить слой аннотации" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." +msgstr "Параметры SSH туннеля недопустимы." -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "Добавить запись" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." +msgstr "Не удалось обновить SSH туннель." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" -msgstr "Добавить и изменить фильтры" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "Не удалось создать SSH туннель по неизвестной причине" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "Добавить аннотацию" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "Добавить слой аннотации" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" -msgstr "Добавьте новые вычисляемые столбцы в датасет в настройках датасета" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "Добавьте новые столбцы формата дата/время в датасет в настройках датасета" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "Не удалось найти базу данных" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -#, fuzzy -msgid "Add cross-filter" -msgstr "Задать область действия кросс-фильтра" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "Датасет %(name)s уже существует" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "База данных недоступна для изменений" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "Добавить способ оповещения" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Один или несколько столбцов не существуют" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." -msgstr "Дополнительная информация по подключению" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Один или несколько столбцов дублируются" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Добавить фильтр" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Один или несколько столбцов уже существуют" + +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Одна или несколько мер не существуют" + +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Одна или несколько мер дублируются" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Одна или несколько мер уже существуют" + +#: superset/commands/dataset/exceptions.py:130 +#, python-format msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" +"Не удается найти таблицу \"%(table_name)s\", пожалуйста, проверьте ваше " +"соединение с базой данных, схему и имя таблицы" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "Добавить фильтры и разделители" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Датасет не существует" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "Добавить запись" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Параметры датасета неверны." -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Добавить меру" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Не удалось создать датасет" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "Добавьте меры в датасет в настройках датасета" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Не удалось обновить датасет" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "Добавить цветовое форматирование" +#: superset/commands/dataset/exceptions.py:172 +#, fuzzy +msgid "Datasets could not be deleted." +msgstr "Не удалось удалить датасет" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "Добавить форматирование" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." +msgstr "Не удалось получить примеры записей датасета." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "Добавить способ уведомления" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "Запрещено изменять этот датасет" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "Добавьте обязательные значения для предпросмотра графика" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "Не удалось импортировать датасет по неизвестной причине" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" -msgstr "Добавьте обязательные значения для сохранения графика" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." +msgstr "Недостаточно прав для доступа к этому датасету." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "Добавить лист" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." +msgstr "Датасет не может быть дублирован." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" -msgstr "Задайте имя графика" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." +msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" -msgstr "Задайте имя дашборда" +#: superset/commands/dataset/exceptions.py:205 +#, fuzzy +msgid "The provided table was not found in the provided database" +msgstr "Таблица была удалена или переименована в базе данных." -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "Добавить в дашборд" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Столбец датасета не найден" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" -msgstr "Добавить/изменить фильтры" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Не удалось удалить столбец датасета" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "Добавлено" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "Запрещено изменять этот датасет" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Добавлено в 1 дашборд" -msgstr[1] "Добавлено в %s дашборда" -msgstr[2] "Добавлено в %s дашбордов" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "Мера датасета не найдена." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" -msgstr "Дополнительные параметры" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "Не удалось удалить меру датасета." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." +msgstr "Данные формы не найдены в кэше, возвращение к метаданным графика." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "Дополнительная информация" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." +msgstr "Данные формы не найдены в кэше, возвращение к метаданным датасета." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" -msgstr "Дополнительные метаданные" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[отсутствующий датасет]" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." -msgstr "Дополнительный отступ для легенды" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Не удалось удалить сохраненные запросы." -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" -msgstr "Дополнительные параметры" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Сохраненный запрос не найден." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." -msgstr "Дополнительная настройка" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "Не удалось импортировать сохраненный запрос по неизвестной причине" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "Дополнительный текст перед значением, например, единица измерения" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Сохраненные параметры запроса недопустимы." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" -msgstr "Смешанный" +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "Запрос оповещения вернул больше, чем одну строку. Возвращено строк: %s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "Настройка взаимодействия базы данных с Лабораторией SQL" +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "Запрос оповещения вернул больше, чем один столбец. Возвращено столбцов: %s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "Произошла ошибка при удалении журналов " + +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Продвинутая настройка" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Дашборд не существует" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "Расширенная аналитика" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "График не существует" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" -msgstr "Расширенный тип данных" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "Для оповещений требуется база данных" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "Расширенная аналитика" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "Поле обязательно" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" -msgstr "Расширенный анализ: запрос А" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Выберите график или дашборд, не обоих" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" -msgstr "Расширенный анализ: запрос Б" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" +msgstr "Выберите график или дашборд" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" -msgstr "Расширенный тип данных" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "" +"Пожалуйста, сначала сохраните график перед тем, как создавать новую " +"рассылку." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "Продвинутая аналитика" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "" +"Пожалуйста, сначала сохраните дашборд перед тем, как создавать новую " +"рассылку." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" -msgstr "Эстетично" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Параметры расписания отчета неверны." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" -msgstr "После" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Невозможно удалить расписание отчета." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" -msgstr "Агрегация" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "Невозможно обновить расписание отчета" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" -msgstr "Агрегированное среднее" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Расписание отчета не найдено" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" -msgstr "Агрегированная сумма" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "Ошибка при удалении расписания отчета." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -"Агрегатная функция, применяемая для списка точек в каждом кластере для " -"создания метки кластера." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" -msgstr "" -"Агрегатная функция, применяемая для сводных таблиц и вычислении суммарных" -" значений." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "Возникла ошибка при создании скриншота для отправки отчета" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" -msgstr "" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "Возникла ошибка при создании csv для отправки отчета" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "агрегатная функция" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "Возникла ошибка при создании датафрейма для отправки отчета" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" -msgstr "Функция агрегирования" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "Возникла неожиданная ошибка при отправке отчета" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "оповещение" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "Планировщик отчетов все еще работает, не имея возможности отправить отчет" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Оповещение сработало во время перерыва" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "Достигнут таймаут для отчета" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "Условие оповещения" +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Рассылка с именем \"%(name)s\" уже существует" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "Расписание условия оповещения" +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Оповещение с именем \"%(name)s\" уже существует" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "У оповещения закончился перерыв." +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "Для этого компонента уже создан отчет." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Оповещение не сработало" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "Запрос оповещения вернул больше, чем одну строку." -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "Оповещение сработало во время перерыва" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "Неверная конфигурация валидатора оповещений." + +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "Запрос оповещения вернул больше, чем один столбец." + +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "Запрос оповещения вернул нечисловое значение." -#: superset/reports/commands/exceptions.py:223 +#: superset/commands/report/exceptions.py:217 msgid "Alert found an error while executing a query." msgstr "Возникла ошибка при выполнении запроса для оповещения." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "Имя оповещения" - -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "Оповещение во время перерыва" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Вышло время исполнения запроса." -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "Запрос оповещения вернул нечисловое значение." +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Вышло время создания скриншота." -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." -msgstr "Запрос оповещения вернул больше, чем один столбец." +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Вышло время создания CSV файла." -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "Запрос оповещения вернул больше, чем один столбец. Возвращено столбцов: %s" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "Вышло время создания датафрейма." -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "Запрос оповещения вернул больше, чем одну строку." +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "Оповещение сработало во время перерыва" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "Запрос оповещения вернул больше, чем одну строку. Возвращено строк: %s" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "У оповещения закончился перерыв." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Выполняется оповещение" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Оповещение во время перерыва" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Сработало оповещение, уведомление отправлено" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Состояние расписания отчета не найдено" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "Неверная конфигурация валидатора оповещений." +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" +msgstr "Возникла ошибка расписания отчета на стороне системы" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Оповещения" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" +msgstr "Возникла ошибка расписания отчета на стороне клиента" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "Оповещения и отчеты" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Неожиданная ошибка расписания отчета" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Оповещения и отчеты" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "Запрещено изменять эту рассылку" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" -msgstr "Выровнять +/-" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Произошла ошибка при удалении журналов " -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "Все" +#: superset/commands/security/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Расписание отчета не найдено" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 +#: superset/commands/security/exceptions.py:29 #, fuzzy -msgid "All Entities" -msgstr "категории" +msgid "RLS rules could not be deleted." +msgstr "Не удалось удалить графики." -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "Весь текст" +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "Не удалось найти базу данных" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Все графики" +#: superset/commands/sql_lab/estimate.py:86 +#, fuzzy, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." +msgstr "" +"Запрос был прерван после %(sqllab_timeout)s секунд. Он мог быть слишком " +"сложным, или база данных находилась под большой нагрузкой." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" +"База данных, указанная в этом запросе, не найдена. Пожалуйста, обратитесь" +" к своему администратору или попробуйте еще раз." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Все фильтры" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "Все фильтры (%(filterCount)d)" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" -msgstr "Все панели" +#: superset/commands/sql_lab/results.py:75 +msgid "" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." +msgstr "" +"Не найдены сохраненные результаты на сервере, необходимо повторно " +"выполнить запрос." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "Фильтр будет применён ко всем панелям с этим столбцом" +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." +msgstr "" +"Не удалось распознать данные с сервера . Формат хранилища мог измениться," +" что привело к потере старых данных. Вам нужно повторно запустить " +"исходный запрос." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Разрешить CREATE TABLE AS" +#: superset/commands/tag/exceptions.py:32 +#, fuzzy +msgid "Tag parameters are invalid." +msgstr "Параметры датасета неверны." -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Разрешить CREATE TABLE AS в Лаборатории SQL" +#: superset/commands/tag/exceptions.py:36 +#, fuzzy +msgid "Tag could not be created." +msgstr "Не удалось создать датасет" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Разрешить CREATE VIEW AS" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "Не удалось обновить датасет" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Разрешить CREATE VIEW AS в Лаборатории SQL" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "Не удалось удалить датасет" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "Разрешить загрузку CSV" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "Не удалось удалить датасет" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Разрешить DML" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." +msgstr "Произошла ошибка при создании значения" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" -msgstr "Разрешить смену столбцов местами" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "Произошла ошибка при доступе к значению" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "Разрешить создание новых таблиц на основе запросов" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." +msgstr "Произошла ошибка при удалении значения" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "Разрешить создание новых представлений на основе запросов" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." +msgstr "Произошла ошибка при обновлении значения" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "Разрешить операции вставки, обновления и удаления данных" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." +msgstr "Недостаточно прав для редактирования этого значения." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 -msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" -"Разрешить конечному пользователю перемещать столбцы, удерживая их " -"заголовки. Заметьте, такие изменения будут нейтрализованы при следующем " -"обращении к дашборду." +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." +msgstr "Источник не был найден." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" -msgstr "Разрешить загрузку файлов в базу данных" +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" +msgstr "Недопустимый тип ответа: %(result_type)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 -msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "" -"Разрешить управление базой данных, используя запросы UPDATE, DELETE, " -"CREATE и т.п." - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Разрешить множественный выбор" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" -msgstr "Разрешить выбор вершин" +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "Столбцы отсутствуют в датасете: %(invalid_columns)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" +#: superset/common/query_context_processor.py:383 +#, fuzzy +msgid "Time Grain must be specified when using Time Shift." msgstr "" +"Столбец даты/времени должен быть указан при использовании сравнения по " +"времени" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "Разрешить изучение этой базы данных" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "Разрешить запросы к этой базе данных в Лаборатории SQL" - -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -"Разрешить управление базой данных, используя запросы UPDATE, DELETE, " -"CREATE и т.п. в Лаборатории SQL" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" -msgstr "Разрешенные домены (разделить запятыми)" - -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "В алфавитном порядке" +"Столбец даты/времени должен быть указан при использовании сравнения по " +"времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." -msgstr "" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "График не существует" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Измененено" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" +msgstr "Источник данных графика не существует" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" -msgstr "Произошла ошибка" +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "График не существует" -#: superset/reports/commands/exceptions.py:188 +#: superset/common/query_object.py:290 #, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Оповещение с именем \"%(name)s\" уже существует" - -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." -msgstr "" -"При использовании сравнения времени необходимо указать закрытый временной" -" интервал (как начало, так и конец)." - -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." -msgstr "Движок должен быть указан при передаче индивидуальных параметров к базе." - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 -#: superset-frontend/src/components/Tags/utils.tsx:67 -#: 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 -msgid "An error has occurred" -msgstr "Произошла ошибка" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Произошла ошибка" - -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "Произошла ошибка при сохранении датасета" - -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." -msgstr "Произошла ошибка при доступе к значению" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Произошла ошибка при сворачивании схемы. Пожалуйста, свяжитесь с " -"администратором." +"Повторяющиеся метки столбцов/мер: %(labels)s. Пожалуйста, убедитесь, что " +"все столбцы и меры имеют уникальную метку." -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Произошла ошибка при создании %sов: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "Произошла ошибка при создании источника данных" - -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -msgid "An error occurred while creating the value." -msgstr "Произошла ошибка при создании значения" - -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -msgid "An error occurred while deleting the value." -msgstr "Произошла ошибка при удалении значения" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -"Произошла ошибка при разворачивании схемы. Пожалуйста, свяжитесь с " -"администратором." - -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Произошла ошибка при получении информации о %s: %s" - -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 -#, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Произошла ошибка при получении: %s: %s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "Произошла ошибка при получении доступных CSS-шаблонов" - -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "Произошла ошибка при получении создателя графика: %s" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "Произошла ошибка при получении владельцев графика: %s" +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Неподдерживаемая операция постобработки: %(operation)s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "Произошла ошибка при построении графика: %s" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +#, fuzzy +msgid "[asc]" +msgstr "Базовая настройка" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "Произошла ошибка при получении создателя дашборда: %s" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "Произошла ошибка при получении владельца дашборда: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Ошибка в jinja выражении в предикате выборки значений: %(msg)s" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "Произошла ошибка при получении дашбордов" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "Запрос виртуального датасета должен быть доступен только для чтения" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Произошла ошибка при получении дашбордов: %s" +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Произошла ошибка при выполнении запроса виртуального датасета: %(msg)s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "Произошла ошибка при получении данных о базе данных: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "Запрос виртуального датасета не может быть пустым" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Произошла ошибка при получении значений базы данных: %s" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" +msgstr "Запрос виртуального датасета не может содержать несколько запросов" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "Произошла ошибка при получении значений датасета: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Ошибка в jinja выражении в RLS фильтрах: %(msg)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "Произошла ошибка при получении владельца датасета: %s" - -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "Произошла ошибка при получении метаданных датасета" +msgid "Metric '%(metric)s' does not exist" +msgstr "Мера '%(metric)s' не существует" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Произошла ошибка при получении данных о датасете: %s" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "драйвер базы данных вернул не все запрошенные столбцы" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Произошла ошибка при получении датасетов: %s" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Доступны только SELECT запросы" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "Произошла ошибка при получении имен функций" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Поддерживаются только одиночные запросы" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "Произошла ошибка при получении владельцев графика: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Столбцы" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Произошла ошибка при извлечении значений схемы: %s" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Показать столбец" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "Произошла ошибка при получении данных вкладки" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Добавить столбец" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "Произошла ошибка при получении метаданных из таблицы" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Редактировать столбец" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 +#: superset/connectors/sqla/views.py:104 msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -"Произошла ошибка при получении метаданных таблицы. Пожалуйста, свяжитесь " -"с администратором." -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Произошла ошибка при построении графика: %s" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Произошла ошибка при извлечении пользовательских значений: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 +#: superset/connectors/sqla/views.py:109 msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -"Произошла ошибка при сворачивании левой панели. Пожалуйста, свяжитесь с " -"администратором." -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Произошла ошибка при попытке импортировать %s: %s" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "Произошла ошибка при получении дашбордов" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Столбец" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "Произошла ошибка при загрузке SQL" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Удобочитаемое имя" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" -msgstr "Произошла ошибка при открытии режима исследования" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Описание" -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." -msgstr "Произошла ошибка при парсинге ключа." +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Группируемый" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "Произошла ошибка при удалении журналов " +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Фильтруемый" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" -"Произошла ошибка при удалении запроса. Пожалуйста, свяжитесь с " -"администратором." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Таблица" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Выражение" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Содержит дату/время" + +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Формат даты и времени" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Тип" + +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" +msgstr "Тип данных бизнеса" + +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Недопустимый формат дата/время" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Меры" + +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Показатель меру" + +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Добавить меру" + +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Редактировать меру" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Мера" + +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL выражение" + +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Формат даты/времени" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Дополнительные параметры" + +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Предупреждение" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Таблицы" + +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Показать таблицу" + +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -"Произошла ошибка при удалении вкладки. Пожалуйста, свяжитесь с " -"администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Редактировать таблицу" + +#: superset/connectors/sqla/views.py:327 msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -"Произошла ошибка при удалении схемы. Пожалуйста, свяжитесь с " -"администратором." -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Произошла ошибка при построении графика: %s" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Смещение часового пояса (в часах) для этого источника данных" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Имя таблицы, которая существует в базе данных" + +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -"Произошла ошибка при установке активной вкладки. Пожалуйста, свяжитесь с " -"администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 +#: superset/connectors/sqla/views.py:345 msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -"Произошла ошибка при настройке автозапуска вкладки. Пожалуйста, свяжитесь" -" с администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 +#: superset/connectors/sqla/views.py:349 msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -"Произошла ошибка при установке ID базы данных для вкладки. Пожалуйста, " -"свяжитесь с администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -"Произошла ошибка при настройке заголовка вкладки. Пожалуйста, свяжитесь с" -" администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 +#: superset/connectors/sqla/views.py:359 msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -"Произошла ошибка при настройке схемы. Пожалуйста, свяжитесь с " -"администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -"Произошла ошибка при установке параметров шаблона вкладки. Пожалуйста, " -"свяжитесь с администратором." -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" -msgstr "Произошла ошибка при добавлении графика в избранное" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" +msgstr "Набор параметров, которые доступны в запросе через шаблонизацию Jinja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 +#: superset/connectors/sqla/views.py:371 msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -"Возникла ошибка при попытке сохранения ID последнего запроса на сервере. " -"Пожалуйста, обратитесь к вашему администратору, если проблема останется." +"Продолжительность (в секундах) таймаута кэша для этой таблицы. Обратите " +"внимание, что если значение не задано, применяется значение базы данных." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -"Произошла ошибка при сохранении запроса на сервере. Чтобы сохранить " -"изменения, пожалуйста, сохраните ваш запрос через кнопку \"Сохранить " -"как\"." -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." -msgstr "Произошла ошибка при обновлении значения" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." -msgstr "Произошла ошибка при вставке значения." +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Связанные графики" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" -msgstr "Произошла неожиданная ошибка" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Кем изменено" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "Произошла неизвестная ошибка. Пожалуйста, свяжитесь с администратором." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "База данных" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "Привязать к" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Дата изменения" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "Угол, под которым заканчивается ось прогресса" +#: superset/connectors/sqla/views.py:401 +#, fuzzy +msgid "Enable Filter Select" +msgstr "Настроить области действия фильтра" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" -msgstr "Угол, с которого начинается ось прогресса" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Схема" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" -msgstr "Анимация" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Эндпоинт по умолчанию" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Аннотация" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Смещение" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, python-format -msgid "Annotation Layer %s" -msgstr "Слой аннотаций %s" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Время жизни кэша" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Слои аннотаций" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Имя таблицы" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "Настройки аннотации из графика" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "Не удалось создать аннотацию" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Владельцы" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "Не удалось обновить аннотацию" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Основной столбец с временем" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "Не удалось удалить аннотацию" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "Слой аннотаций" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Параметры шаблона" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "Не удалось создать слой аннотации." +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Изменено" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "Не удалось удалить слой аннотации." +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "Не удалось обновить слой аннотации." +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Удален %(num)d CSS шаблон" +msgstr[1] "Удалены %(num)d CSS шаблона" +msgstr[2] "Удалено %(num)d CSS шаблонов" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "Не удалось удалить слой аннотаций" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "Схема датасета невалидна, причина: %(error)s" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" -msgstr "Описательные столбцы слоя аннотаций." +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Удален %(num)d дашборд" +msgstr[1] "Удалены %(num)d дашборда" +msgstr[2] "Удалено %(num)d дашбордов" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "Слои аннотаций имеет связанные аннотации" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Название или читаемый URL" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" -msgstr "Конечный интервал слоя аннотации" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Роль" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "Имя слоя аннотаций" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "Слой аннотации не найден" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Имя таблицы не определено" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" -msgstr "Непрозрачность слоя аннотации" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "Загрузка включена" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Параметры слоя аннотаций недействительны" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" +"Недопустимая строка для подключения, валидная строка соответствует " +"шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" -msgstr "Штрих слоя аннотации" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Поле не может быть декодировано с помощью JSON. %(msg)s" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "Тип слоя аннотации" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "Название столбца слоя аннотации" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "Движок должен быть указан при передаче индивидуальных параметров к базе." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "Тип слоя аннотации" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" -msgstr "Значение слоя аннотации" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Удален %(num)d датасет" +msgstr[1] "Удалены %(num)d датасета" +msgstr[2] "Удалено %(num)d датасетов" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "Слои аннотаций" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Null или Пусто" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "Слои аннотаций загружаются." +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" +"Пожалуйста, проверьте ваш запрос на синтаксические ошибки возле символа " +"\"%(syntax_error)s\". Затем выполните запрос заново." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "Имя аннотации" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Секунда" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "Аннотация не найдена." +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5 секунд" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "Параметры аннотации недействительны." +#: superset/db_engine_specs/base.py:100 +msgid "30 second" +msgstr "30 секунд" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -msgid "Annotation source" -msgstr "Источник аннотации" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Минута" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" -msgstr "Тип источника аннотации" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 минут" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" -msgstr "Шаблон аннотации создан" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 минут" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" -msgstr "Шаблон аннотации обновлен" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 минут" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" -msgstr "Аннотации и слои" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" +msgstr "30 минут" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "Аннотации и слои" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Час" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "Не удалось удалить аннотации." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6 часов" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" -msgstr "Любой" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "День" -#: 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 "Любые дополнительные сведения для всплывающей подсказки" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Неделя" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "" -"Любая палитра, выбранная здесь, будет перезаписывать цвета, применённые к" -" отдельным графикам этого дашборда" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Месяц" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "" -"Любые базы данных, подключаемые через SQL Alchemy URI, могут быть " -"добавлены. " +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Квартал" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " -msgstr "" -"Любые базы данных, подключаемые через SQL Alchemy URI, могут быть " -"добавлены. Узнайте больше о том, как подключить драйвер базы данных " +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Год" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "Добавить" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Неделя, начинающаяся в воскресенье" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "Применено кросс-фильтров: (%d)" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Неделя, начинающаяся в понедельник" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "Применено фильтров: (%d)" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Неделя, заканчивающаяся в субботу" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, python-format -msgid "Applied filters: %s" -msgstr "Применены фильтры: %s" - -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." -msgstr "" -"Применное скользязее окно не вернуло данных. Убедитесь, что исходный " -"запрос удовлетворяет минимальному количеству периодов скользящего окна." - -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "Применить" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#: superset/db_engine_specs/base.py:116 #, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "Применить условное цветовое форматирование к мерам" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "Применить условное цветовое форматирование к мерам" +msgid "Week ending Sunday" +msgstr "неделя, заканчивающаяся в субботу" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "Применить условное цветовое форматирование к столбцам" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Имя пользователя" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" -msgstr "Применить фильтры" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Пароль" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" -msgstr "Применить меры к" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Имя хоста или IP адрес" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Применить ко всем панелям" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Порт базы данных" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Применить к выбранным панелям" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Имя базы данных" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "Апрель" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "Дополнительные параметры" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" -msgstr "Дуга" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Использовать зашифрованное соединение к Базе Данных" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Вы уверены, что хотите перезаписать эти значения?" +#: superset/db_engine_specs/base.py:2004 +#, fuzzy +msgid "Use an ssh tunnel connection to the database" +msgstr "Использовать зашифрованное соединение к Базе Данных" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "Вы уверены, что хотите отменить?" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "Вы уверены, что хотите удалить" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" +"Таблица \"%(table)s\" не существует. Для выполнения запроса должна " +"использоваться существующая таблица" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#: superset/db_engine_specs/bigquery.py:199 #, python-format -msgid "Are you sure you want to delete %s?" -msgstr "Вы уверены, что хотите удалить %s?" +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "Не удалось обнаружить столбец \"%(column)s\" в строке %(location)s." -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/db_engine_specs/bigquery.py:204 #, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "Вы уверены, что хотите удалить выбранные %s?" +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Вы уверены, что хотите удалить выбранные аннотации?" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "Неверное имя пользователя \"%(username)s\" или пароль." -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "Вы уверены, что хотите удалить выбранные графики?" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Неизвестный хост MySQL \"%(hostname)s\"." -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Вы уверены, что хотите удалить выбранные дашборды?" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Вы уверены, что хотите удалить выбранные датасеты?" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Невозможно подключиться к базе данных \"%(database)s\"." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "Вы уверены, что хотите удалить выбранные слои?" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" +"Пожалуйста, проверьте ваш запрос на наличие синтаксических ошибок рядом с" +" \"%(server_error)s\". Затем выполните запрос заново" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "Вы уверены, что хотите удалить выбранные запросы?" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "Не удалось обнаружить столбец \"%(column_name)s\"" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -#, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "Вы уверены, что хотите удалить выбранные слои?" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"Неверное имя пользователя \"%(username)s\", пароль или имя базы данных " +"\"%(database)s\"." -#: superset-frontend/src/pages/Tags/index.tsx:282 -#, fuzzy -msgid "Are you sure you want to delete the selected tags?" -msgstr "Вы уверены, что хотите удалить выбранные %s?" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "Не удалось обнаружить хост \"%(hostname)s\"" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "Вы уверены, что хотите удалить выбранные шаблоны?" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Порт %(port)s хоста \"%(hostname)s\" отказал в подключении." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Вы уверены, что хотите перезаписать этот датасет?" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" +"Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться по" +" порту %(port)s." -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "Вы уверены, что хотите продолжить?" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Неизвестный хост MySQL \"%(hostname)s\"." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "Вы уверены, что хотите сохранить и применить изменения?" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "Пользователь \"%(username)s\" не существует." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" -msgstr "Диаграмма с областями" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" -msgstr "Диаграмма с областями (устарело)" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Невозможно подключиться к базе данных \"%(database)s\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" -msgstr "Диаграмма с областями" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" -msgstr "Непрозрачность диаграммы с областями" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 +#: superset/db_engine_specs/ocient.py:271 +#, fuzzy msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -"Диаграммы с областями похожи на линейные диаграммы в том смысле, что они " -"отображают показатели с одинаковым масштабом, но диаграммы областей " -"накладывают эти показатели друг на друга." +"Недопустимая строка для подключения, валидная строка соответствует " +"шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" -msgstr "Стрела" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" -msgstr "Задайте набор параметров в формате" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Пользователь \"%(username)s\" не существует." -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "Связанные графики" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Асинхронное выполнение" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "Неверный пароль для пользователя \"%(username)s\"." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "Асинхронное выполнение запросов" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "Пожалуйста, введите пароль еще раз" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "Август" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "Не удалось обнаружить столбец \"%(column_name)s\" в строке %(location)s." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" -msgstr "Автоматически" +#: superset/db_engine_specs/postgres.py:289 +#, fuzzy +msgid "Users are not allowed to set a search path for security reasons." +msgstr "" +"%(dialect)s не может использоваться в качестве источника данных по " +"соображениям безопасности." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" -msgstr "Авто масштабирование" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." +msgstr "" +"Таблица \"%(table_name)s\" не существует. Для выполнения запроса должна " +"использоваться существующая таблица" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "Автозаполнение" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "Фильтры автозаполнения" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "Предикат запроса автозаполнения" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Неизвестная ошибка Presto" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" -msgstr "Автоматический цвет" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "" +"Не удалось подключиться к вашей базе данных с именем \"%(database)s\". " +"Пожалуйста, подтвердите имя вашей базы данных и попробуйте снова." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" -msgstr "Доступные режимы сортировки:" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s не существует в этой базе данных." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -msgid "Average" -msgstr "Среднее" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." +msgstr "Не удалось получить примеры записей для источника данных." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "Целевое значение" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" +msgstr "Запрещено изменять этот источник данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" -msgstr "Ось" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Главная" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" -msgstr "Границы оси" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" +msgstr "Базы данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -msgid "Axis Format" -msgstr "Формат Оси" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Данные" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" -msgstr "Название оси" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Дашборды" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" -msgstr "Ось по возрастанию" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Графики" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" -msgstr "Ось по убыванию" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Датасеты" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "Булевый (BOOLEAN)" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Плагины" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" -msgstr "Назад" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Управление" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" -msgstr "Вернуться ко всем" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS шаблоны" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Драйвер" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "Лаборатория SQL" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" -msgstr "Предыдущие значения" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." -msgstr "Неверная формула." +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Сохраненные запросы" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "Неподходящий пространственный ключ" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "История запросов" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "Столбчатая" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "Теги" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" -msgstr "Столбчатая диаграмма" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Журнал действий" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" -msgstr "Столбчатая диаграмма (устарело)" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Безопасность" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" -"Столбчатые диаграммы используются для отображения показателей в виде " -"серии столбцов." +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Оповещения и отчеты" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "Значения столбцов" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Слои аннотаций" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -msgid "Bar orientation" -msgstr "Направление столбцов" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "Безопасность на уровне строк" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "база данных" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." +msgstr "Произошла ошибка при парсинге ключа." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." +msgstr "Произошла ошибка при вставке значения." + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "На основе меры" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -"Основываясь на группировке времени, количество периодов времени для " -"сравнения" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" +"Столбец даты/времени не предусмотрен в настройках таблицы и является " +"обязательным для этого типа графика" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Базовая настройка" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Пустой запрос?" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "Основная информация" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Неизвестный столбец использован для упорядочивания: %(col)s" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/models/helpers.py:1682 #, python-format -msgid "Batch editing %d filters:" -msgstr "Множественное редактирование фильтров: %d" +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "Столбец формата дата/время \"%(col)s\" не существует в датасете" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "Уровень заряда батареи с течением времени" +#: superset/models/helpers.py:1821 +#, fuzzy +msgid "error_message" +msgstr "Сообщение об ошибке" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "Будьте осторожны." +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "Список для фильтрации не может быть пуст" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "До" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "Необходимо указать значение для фильтров с операторами сравнения" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "Карточка" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "Размер шрифта числа" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Ошибка в jinja выражении в операторе WHERE: %(msg)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "Карточка с трендовой линией" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Ошибка в jinja выражении в операторе HAVING: %(msg)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" -msgstr "Снизу" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "База данных не поддерживает подзапросы" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "Нижний отступ" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "Удален %(num)d сохраненный запрос" +msgstr[1] "Удалены %(num)d сохраненных запроса" +msgstr[2] "Удалено %(num)d сохраненных запросов" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" -msgstr "Снизу слева" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "Удалено %(num)d расписание рассылок" +msgstr[1] "Удалены %(num)d расписания рассылок" +msgstr[2] "Удалено %(num)d расписаний рассылок" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "Нижний отступ (в пикселях), дает больше пространства меткам оси" +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "Значение должно быть больше 0" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" -msgstr "Снизу справа" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "Снизу вверх" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -"Границы для оси Y. Если оставить поле пустым, границы динамически " -"определяются на основе минимального/максимального значения данных. " -"Обратите внимание, что эта функция только расширит диапазон осей. Она не " -"изменит размер графика." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +"\n" +" Error: %(text)s\n" +" " msgstr "" -"Границы для оси. Если оставить поле пустым, границы динамически " -"определяются на основе минимального/максимального значения данных. " -"Обратите внимание, что эта функция только расширит диапазон осей. Она не " -"изменит размер графика." +"\n" +" Ошибка: %(text)s\n" +" " -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#: superset/reports/notifications/email.py:132 #, fuzzy +msgid "EMAIL_REPORTS_CTA" +msgstr "Включить рассылки" + +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" + +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" + +#: superset/reports/notifications/slack.py:76 +#, python-format msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -"Границы для оси Y. Если оставить поле пустым, границы динамически " -"определяются на основе минимального/максимального значения данных. " -"Обратите внимание, что эта функция только расширит диапазон осей. Она не " -"изменит размер графика." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Исследовать в Суперсете>\n" +"\n" +"%(table)s\n" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -#, fuzzy +#: superset/reports/notifications/slack.py:93 +#, python-format msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -"Границы для оси Y. Если оставить поле пустым, границы динамически " -"определяются на основе минимального/максимального значения данных. " -"Обратите внимание, что эта функция только расширит диапазон осей. Она не " -"изменит размер графика." - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" -msgstr "Ящик с усами" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -#, fuzzy -msgid "Breakdowns" -msgstr "Дата создания" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "Пузырьковая диаграмма" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" -msgstr "Цвет пузыря" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Ошибка: %(text)s\n" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" -msgstr "Размер пузыря" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Удален %(num)d график" +msgstr[1] "Удалены %(num)d графика" +msgstr[2] "Удалено %(num)d графиков" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Размер маркера" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" +"%(dialect)s не может использоваться в качестве источника данных по " +"соображениям безопасности." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" -msgstr "Сборка" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Недостаточно прав для изменения %(resource)s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "Множественный выбор" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "Диаграмма-шкала" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" +"Пожалуйста, проверьте параметры вашего шаблона на наличие синтаксических " +"ошибок и убедитесь, что они совпадают с вашим SQL-запросом и заданными " +"параметрами. Затем попробуйте выполнить свой запрос еще раз." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "Бизнес" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "Параметр %(parameters)s в вашем запросе неопределен." +msgstr[1] "Следующие параметры неопределены в вашем запросе: %(parameters)s" +msgstr[2] "Следующие параметры неопределены в вашем запросе: %(parameters)s" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" -msgstr "Тип данных бизнеса" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset/sqllab/query_render.py:124 msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -"По умолчанию, каждый фильтр загружает не больше 1000 элементов выбора при" -" начальной загрузке страницы. Установите этот флаг, если у вас больше " -"1000 значений фильтра и вы хотите включить динамический поиск, который " -"загружает значения по мере их ввода пользователем (может увеличить " -"нагрузку на вашу базу данных)." +"Пожалуйста, проверьте ваш запрос и подтвердите, что все параметры шаблона" +" заключены в двойные фигурные скобки, например, \"{{ from_dttm }}\". " +"Затем попробуйте повторно выполнить запрос." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "По ключу: использовать имена столбцов как ключ сортировки" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" -msgstr "По ключу: использовать имена строк как ключ сортировки" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "Не удалось найти базу данных" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" -msgstr "По значению: использовать значения мер как ключ сортировки" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "Установить пользовательский временной интервал" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "ОТМЕНА" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" +msgstr "Исполнитель регулярных отчетов не найден" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -msgid "CREATE DATASET" -msgstr "СОЗДАТЬ ДАТАСЕТ" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Кол-во записей" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "CREATE TABLE AS" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Записи не найдены" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "CREATE VIEW AS" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Список фильтров" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "Выражение CREATE VIEW" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Поиск" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" -msgstr "CRON расписание" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Обновить" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "CRON выражение" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Импортировать дашборды" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Импортировать дашборд(ы)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "CSS стили" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Файл" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS шаблоны" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Выберите файл" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "CSS, примененный к графику" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Загрузить" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "CSS шаблон" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "Используйте кнопку редактирования для изменения поля" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "Не удалось удалить CSS шаблон." +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Тестовое соединение" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "Имя CSS шаблона" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "Неподдерживаемый оператор: %(clause)s" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "CSS шаблон не найден." - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "CSS шаблоны" - -#: superset/views/database/forms.py:109 -msgid "CSV Upload" -msgstr "Загрузка CSV" - -#: superset/views/database/views.py:290 +#: superset/utils/core.py:1246 #, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +msgid "Invalid metric object: %(metric)s" msgstr "" -"CSV файл \"%(csv_filename)s\" загружен в таблицу \"%(table_name)s\" в " -"базе данных \"%(db_name)s\"" - -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "Конфигурация CSV файла для импорта в базу данных" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "Загрузка CSV" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Не удалось найти такой праздник: [%(holiday)s]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "СХЕМА CTAS & CVAS" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" +msgstr "" -#: superset/sql_lab.py:432 +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -"CTAS (CREATE TABLE AS SELECT) может быть выполнен в запросе с " -"единственным SELECT запросом. Пожалуйста, убедитесь, что запрос содержит " -"только один SELECT запрос. Затем выполните запрос заново." -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "Схема CTAS" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -"CVAS (CREATE VIEW AS SELECT) может быть выполнен в запросе с единственным" -" SELECT запросом. Пожалуйста, убедитесь, что запрос содержит только один " -"SELECT запрос. Затем выполните запрос заново." -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "CVAS (CREATE VIEW AS SELECT) запрос содержит больше одного запроса." +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "" +"Столбец \"%(column)s\" не является числовым или отсутствует в результатах" +" запроса." -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "CVAS (CREATE VIEW AS SELECT) запрос не является SELECT запросом." +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Время жизни кэша" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "Время жизни кэша (секунды)" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Время жизни кэша" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Недопустимые долгота/широта" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" -msgstr "Добавлено в кэш" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" -msgstr "Добавлено в кэш %s" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "Кэшированное значение не найдено" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" msgstr "" -"Вычислить вклад в общую сумму (долю) по категории или строке. " -"Установливает формат показателя в проценты" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Единица времени отсутствует" + +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "Для вычисляемого столбца [%s] требуется выражение" +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Неподдерживаемая единица времени: %(time_grain)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "Вычисляемые столбцы" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "Периоды должны быть целым числом" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "Тип расчёта" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "Доверительный интервал должен быть между 0 и 1 (не включая концы)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "Календарная тепловая карта" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "Датафрейм должен включать временной столбец" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "Невозможно перенести вкладку верхнего уровня во вложенную вкладку" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" -msgstr "Можно выбрать несколько значений" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" +msgstr "Метка уже существует" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" +msgstr "Для ресемплирования требуется индекс формата дата/время" + +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "Отмена" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Неопределенное окно для скольжения" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" -msgstr "Отменять запрос при закрытии вкладки" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "Окно должно быть > 0" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "Невозможно удалить базу данных с подключенными датасетами" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Недопустимые настройки для %(rolling_type)s: %(options)s" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/utils.py:153 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." -msgstr "" -"Невозможно импортировать дашборд: %(db_error)s.\n" -"Убедитесь, что база даннах создана перед импортированием дашборда." +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "Столбец, на который ссылается агрегат, не определен: %(column)s" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "Невозможно загрузить фильтр" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Оператор не определен для агрегатора: %(name)s" -#: superset/charts/commands/exceptions.py:51 +#: superset/utils/pandas_postprocessing/utils.py:172 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Не удается разобрать временную строку [%(human_readable)s]" +msgid "Invalid numpy function: %(operator)s" +msgstr "Недопустимая numpy функция: %(operator)s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "Категориальный" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Неожиданная ошибка: " -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" -msgstr "Цвет категории" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "JSON не валиден" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "Категории для группировки по оси x" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Экспорт в YAML" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" -msgstr "Категория" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Экспортировать в YAML?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -msgid "Category Name" -msgstr "Имя категории" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Удалить" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" -msgstr "Категория и процентная доля" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Действительно удалить все?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" -msgstr "Категория и значение" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "В избранном" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 +#: superset/views/base_api.py:177 #, fuzzy -msgid "Category name" -msgstr "Имя категории" +msgid "Is tagged" +msgstr "Запущен" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "Категория целевых вершин" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "Источник данных, похоже, был удален" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "Категория, значение и процентная доля" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "Пользователь, похоже, был удален" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "Расстояние между ячейками" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" +msgstr "Недостаточно прав для скачивания в CSV" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "Радиус ячейки" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" -msgstr "Размер ячейки" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +msgstr "Ошибка: %(msg)s" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" -msgstr "Гистограммы в ячейках" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" +msgstr "Недостаточно прав для изменения графика" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "Содержимое ячейки" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" +msgstr "Недостаточно прав для создания графика" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" -msgstr "Лимит ячеек" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "Исследовать - %(table)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" -msgstr "По центру" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Исследовать" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " -msgstr "Центроид (Долгота и Широта): " +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "График [{}] сохранен" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" -msgstr "Утверждение" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +msgstr "График [{}] перезаписан" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" -msgstr "Детали утверждения" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" +msgstr "Недостаточно прав для изменения дашборда" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" -msgstr "Утверждено" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "График [{}] добавлен в дашборд [{}]" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" -msgstr "Кем утверждено" +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" +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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "Кем утверждено" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Дашборд [{}] был только что создан и график [{}] был добавлен в него" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" +msgstr "Некорректный запрос. Ожидаются аргументы slice_id или table_name и db_name" + +#: superset/views/core.py:726 #, python-format -msgid "Certified by %s" -msgstr "Утверждено: %s" +msgid "Chart %(id)s not found" +msgstr "График %(id)s не найден" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." -msgstr "Сменить порядок столбцов." +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "Сменить порядок строк." +#: superset/views/core.py:836 +msgid "permalink state not found" +msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "Кем изменено" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Показать CSS шаблон" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "Дата изменения" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Добавить CSS шаблон" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "Изменения сохранены." +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Редактировать CSS шаблон" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Имя шаблона" + +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Человекочитаемое имя" + +#: superset/views/dynamic_plugins.py:48 msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -"Изменение датасета может привести к тому, что график станет нерабочим, " -"если график использует несуществующие в целевом датасете столбцы или " -"метаданные" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 +#: superset/views/dynamic_plugins.py:52 msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" msgstr "" -"Изменение этих настроек будет влиять на все графики, использующие этот " -"датасет, включая графики других пользователей." +"Полный URL, указывающий на местоположение плагина (например, ссылка на " +"CDN)" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "Запрещено изменять этот дашборд" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Пользовательские плагины" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "Запрещено изменять этот график" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Пользовательский плагин" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "Изменение этого элемента применяется сразу" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Добавить плагин" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "Запрещено изменять этот датасет" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Редактировать плагин" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "Запрещено изменять этот датасет" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "Датасет, связанный с этим графиком, больше не существует" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" -msgstr "Запрещено изменять этот источник данных" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Не удалось определить тип источника данных" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "Запрещено изменять эту рассылку" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Не удалось найти объект визуализации" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" -msgstr "Символ десятичного разделителя" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Показать график" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "Символ десятичного разделителя" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Добавить график" + +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Редактировать график" + +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." +msgstr "" +"Эти параметры генерируются автоматически при нажатии кнопки сохранения. " +"Опытные пользователи могут изменить определенные объекты в формате JSON." + +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" +"Продолжительность (в секундах) таймаута кэша для этого графикаОбратите " +"внимание, что если значение не задано, применяется значение источника " +"данных/таблицы." + +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Автор" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Источник данных" + +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Дата изменения" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +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:406 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 #: superset-frontend/src/features/home/ChartTable.tsx:191 -#: superset-frontend/src/features/home/RightMenu.tsx:219 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 +#: superset-frontend/src/features/home/RightMenu.tsx:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 #: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "График" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" -msgstr "График %(id)s не найден" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Имя" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Время жизни кэша графика" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Тип визуализации" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, python-format -msgid "Chart Data: %s" -msgstr "Данные графика: %s" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Показать дашборд" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "ID графика" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Добавить дашборд" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" -msgstr "Свойства графика" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Редактировать дашборд" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" -msgstr "Ориентация графика" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" +msgstr "" +"Этот JSON объект описывает расположение графиков в дашборде. Он " +"генерируется динамически при изменении и перемещении графиков в дашборде." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Владелец графика: %s" -msgstr[1] "Владельцы графика: %s" -msgstr[2] "Владельцы графика: %s" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "Источник графика" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Для получения читаемого URL-адреса дашборда" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" -msgstr "Название графика" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "" +"Этот JSON-объект генерируется автоматически при сохранении или перезаписи" +" дашборда. Он размещён здесь справочно и для опытных пользователей." -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" -msgstr "График [%s] перезаписан" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "Владельцы – это список пользователей, которые могут изменять дашборд." -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, python-format -msgid "Chart [%s] has been saved" -msgstr "График [%s] сохранен" +#: superset/views/dashboard/mixin.py:65 +#, fuzzy +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "" +"Список ролей, определяющий доступ к дашборду. Предоставляя доступ " +"определенной роли, пользователь сможет обойти ограничения своей роли. " +"Если роли не указаны, дашборд доступен всем ролям." -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "График [%s] добавлен в дашборд [%s]" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "Определяет, виден ли этот дашборд в списке всех дашбордов" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" -msgstr "График [{}] перезаписан" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Дашборд" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "График [{}] сохранен" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Заголовок" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" -msgstr "График [{}] добавлен в дашборд [{}]" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Читаемый URL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "Время жизни кэша графика" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Роли" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Изменения графика" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Опубликовано" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 -msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +#: superset/views/dashboard/mixin.py:86 +#, fuzzy +msgid "Position JSON" msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Не удалось создать график" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "Не удалось удалить график" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSON Метаданные" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "Не удалось обновить график" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Экспортировать" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "График не существует" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Экспортировать дашборды?" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "" -"На графике не сохранен контекст запроса. Пожалуйста, сохраните диаграмму " -"еще раз." +#: superset/views/database/forms.py:109 +msgid "CSV Upload" +msgstr "Загрузка CSV" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" -msgstr "Высота графика" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "Выберите файл для загрузки в базу данных." -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" -msgstr "График импортирован" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "Доступные расширения файлов: %(allowed_extensions)s" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "Последнее изменение" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" +msgstr "Имя таблицы, созданной из CSV файла." -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "Имя таблицы не может содержать схему" + +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "Выберите базу данных для загрузки файла" + +#: superset/views/database/forms.py:145 #, fuzzy -msgid "Chart last modified by" -msgstr "Автор изменений %s" +msgid "Column Data Types" +msgstr "Расширенный тип данных" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "Имя графика" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" -msgstr "Свойства графика" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "Укажите схему, если она поддерживается базой данных" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "Владелец графика: %s" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Разделитель" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Параметры графика недопустимы." +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" +msgstr "Введите разделитель этих данных" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" -msgstr "Свойства графика обновлены" +#: superset/views/database/forms.py:164 +msgid "," +msgstr "," -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -msgid "Chart title" -msgstr "Название графика" +#: superset/views/database/forms.py:165 +msgid "." +msgstr "." -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "Тип графика" +# здесь идет речь про прочие категории графиков, помимо основных категорий +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "Прочее" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "Для данного типа графика необходим датасет" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" +msgstr "Если таблица уже существует" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" -msgstr "Ширина графика" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" +msgstr "Что должно произойти, если таблица уже существует" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Графики" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Ошибка" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "Не удалось удалить графики." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Заменить" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "Проверить конфигурацию" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Добавить" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Выберит для сортировки по возрастанию" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Пропуск начального пробела" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" -msgstr "" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" +msgstr "Пропускать пробелы после разделителя" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Посмотреть этот график в дашборде:" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Пропуск пустых строк" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " -msgstr "Посмотреть график: " +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "Пропускать пустые строки, вместо их перевода в пустые строки (NaN)" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "Посмотреть дашборд: " +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" +msgstr "Список столбцов, которые должны быть интерпретированы как даты." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -"Установите флажок, чтобы применять фильтры мгновенно по мере их изменения" -" вместо отображения кнопки [Применить]" +"Разделённый запятыми список столбцов, которые должны быть " +"интерпретированы как даты." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Десятичный разделитель" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" -msgstr "Положение метки дочернего элемента" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" +msgstr "Символ десятичного разделителя" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "[Метка] должна присутствовать в [Группировать по]" - -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "[Радиус точки] должен присутствовать в [Группировать по]" +#: superset/views/database/forms.py:212 +msgid "Null Values" +msgstr "Пустые значения" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Выберите файл" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"Список JSON значений, которые следует рассматривать как нулевые. Примеры:" +" [\"\"] для пустых строк, [\"None\", \"N/A\"], [\"nan\", \"null\"]. " +"Предупреждение: База данных Hive поддерживает только одно значение." -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "Выберите график или дашборд, не обоих" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Индесный столбец" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." -msgstr "Выберите базу данных..." +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" +"Столбец для использования в качестве метки для строки датафрейма. " +"Оставьте пустым, если индексный столбец отсутствует." -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "Выберите датасет" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Индекс датафрейма" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Выберите меру для правой оси" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "Сделать индекс датафрейма столбцом." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" -msgstr "Выберите числовой формат" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Метка(и) столбца(ов)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" -msgstr "Выберите источник" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" +"Метка для индексного(ых) столбца(ов). Если не задано и задан индекс " +"датафрейма, будут использованы имена индексов." -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" -msgstr "Выберите источник и цель" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" +msgstr "Столбцы для чтения" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" -msgstr "Выберите цель" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" +msgstr "Список столбцов в формате JSON из файла, которые будут использованы." -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" -msgstr "Выберите тип графика" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" +msgstr "Перезаписать повторяющиеся столбцы" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." -msgstr "Выберите одну из доступных баз данных из панели слева." +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" +msgstr "" +"Если повторяющиеся столбцы не перезаписываются, они будут представлены в " +"формате \"X.0, X.1\"." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "Выбрать тип слоя аннотации" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Строка заголовка" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" -msgstr "Выберите формат значений легенды" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" +msgstr "" +"Строка, содержащая заголовки для использования в качестве имен столбцов " +"(0, если первая строка в данных). Оставьте пустым, если заголовки " +"отсутствуют" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" -msgstr "Выберите позицию легенды" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Строки для чтения" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" -msgstr "Выберите источник аннотаций" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" +msgstr "Количество строк файла для чтения" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Пропуск строк" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "Хордовая диаграмма" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "Количество строк для пропуска в начале файла" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "Выбран нечисловой столбец" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Имя таблицы, созданной из Excel файла." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" -msgstr "Круг" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Excel Файл" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "Круг -> Стрелка" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Выберите Excel файл для загрузки в базу данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" -msgstr "Круг -> Круг" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Имя листа" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" -msgstr "Круглая форма радара" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "Имя листа (по умолчанию первый лист)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" -msgstr "Круглая форма" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Укажите схему (если она поддерживается базой данных)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." -msgstr "Классическая диаграмма для визуализации изменения показателей со временем." +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "Таблица существует" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -"Классическое представление таблицы. Используйте таблицы для демонстрации " -"отображения исходных или агрегированных данных." - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "Оператор" +"Если таблица уже существует, выберите действие: Ошибка (ничего не " +"делать), Заменить (удалить и воссоздать таблицу) или Добавить (вставить " +"данные)." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Очистить" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." +msgstr "" +"Строка, содержащая заголовки для использования в качестве имен столбцов " +"(0, если первая строка в данных). Оставьте пустым, если заголовки " +"отсутствуют." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "Сбросить фильтры" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." +msgstr "" +"Столбец для использования в качестве метки для строки датафрейма. " +"Оставьте пустым, если индексный столбец отсутствует." -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" -msgstr "Очистить все данные" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Количество строк для пропуска в начале файла." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" -msgstr "Очистить форму" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Количество строк файла для чтения." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" -msgstr "" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Парсинг дат" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -"Нажмите на кнопку \"Создать график\" на панели управления слева для " -"просмотра графика или" +"Разделённый запятыми список столбцов, которые должны быть " +"интерпретированы как даты." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "Нажмите на замок для внесения изменений" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Символ десятичного разделителя" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "Нажмите на замок для запрета на внос изменений." +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Сделать индекс датафрейма столбцом." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -"Нажмите для переключения на альтернативную форму подключения, которая " -"позволит вам вручную ввести SQLAlchemy URL для данной базы данных." +"Метка для индексного(ых) столбца(ов). Если не задано и задан индекс " +"датафрейма, будут использованы имена индексов." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Пустые значения" + +#: superset/views/database/forms.py:401 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" -"Нажмите для переключения на альтернативную форму подключения, которая " -"позволит вам ввести все данные в соответствующую форму для данной базы " -"данных." +"Список JSON значений, которые следует рассматривать как нулевые. Примеры:" +" [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Предупреждение: База " +"данных Hive поддерживает только одно значение. Используйте [\"\"] для " +"пустой строки." -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "Нажмите для отмены сортировки" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "Имя таблицы, созданной из файла столбчатого формата." -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Нажмите для редактирования" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "Файл столбчатого формата" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." -msgstr "Нажмите для редактирования %s." +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "Выберите файл столбчатого формата, который будет загружен в базу данных." -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." -msgstr "Нажмите для редактирования графика." +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "Используемые столбцы" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "Нажмите для редактирования метки" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." +msgstr "" +"Список столбцов в формате JSON из файла, которые будут использованы. " +"Пример: [\"id\", \"name\", \"gender\", \"age\"]. Если в данном поле " +"указаны названия столбцов, из файла будут загружены только указанные " +"столбцы." -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Добавить в избранное" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Базы данных" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Нажмите для принудительного обновления" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Показать базу данных" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Нажмите для просмотра изменений" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Добавить базу данных" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Click to sort ascending" -msgstr "Нажмите для сортировки по возрастанию" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Редактировать Базу Данных" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" -msgstr "Нажмите для сортировки по убыванию" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Предоставить доступ к базе в Лаборатории SQL" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "Закрыть" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." +msgstr "" +"Работа с базой данных в асинхронном режиме означает, что запросы " +"исполняются на удалённых воркерах, а не на веб-сервере Superset. Это " +"подразумевает, что у вас есть установка с воркерами Celery. Обратитесь к " +"документации по настройке за дополнительной информацией." -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Закрыть остальные вкладки" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Разрешить CREATE TABLE AS в Лаборатории SQL" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Закрыть вкладку" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Разрешить CREATE VIEW AS в Лаборатории SQL" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" -msgstr "Агрегатор меток кластера" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "" +"Разрешить управление базой данных, используя запросы UPDATE, DELETE, " +"CREATE и т.п. в Лаборатории SQL" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "Радиус кластера" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" +msgstr "" +"При включении опции CREATE TABLE AS в Лаборатории SQL, новые таблицы " +"будут добавлены в эту схему" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Редактор" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Если вы используете Presto, все запросы в Лаборатории SQL будут " +"выполняться от авторизованного пользователя, который должен иметь " +"разрешение на их выполнение.
Если включены Hive и " +"hive.server2.enable.doAs, то запросы будут выполняться через техническую " +"учетную запись, но имперсонировать зарегистрированного пользователя можно" +" через свойство hive.server2.proxy.user." -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Свернуть всё" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "" +"Продолжительность (в секундах) таймаута кэша для графиков этой базы " +"данных. Таймаут 0 означает, что кэш никогда не очистится. Обратите " +"внимание, что если значение не задано, применяется значение по умолчанию " +"из основной конфигурации." -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" -msgstr "Свернуть панель управления" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "" +"Если установлено, выберите схемы, в которые разрешена загрузка CSV на " +"вкладке \"Дополнительно\"." -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" -msgstr "Свернуть строку" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Доступен в SQL редакторе" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" -msgstr "Свернуть содержимое вкладки" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Разрешить CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" -msgstr "Свернуть предпросмотр таблицы" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Разрешить CREATE VIEW AS" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "Цвет" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Разрешить DML" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" -msgstr "Раскрасить +/-" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Схема CTAS" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" -msgstr "Цвет меры" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "SQLAlchemy URI" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "Цветовая схема" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Время жизни кэша графика" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" -msgstr "Количество цветов" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Доп. безопасность" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" -msgstr "Границы цвета" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Корневой сертификат" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" -msgstr "Выбор цвета по" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Асинхронное выполнение" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Мера для цвета" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Имперсонировать пользователя" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" -msgstr "Цвет целевого местоположения" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Разрешить загрузку CSV" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Цветовая схема" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Драйвер" + +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Дополнительное поле не может быть декодировано с помощью JSON. %(msg)s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/validators.py:40 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" +"Недопустимая строка для подключения, валидная строка соответствует " +"шаблону:'ДРАЙВЕР://ИМЯ-ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ-БАЗЫ-ДАННЫХ'

Пример:'postgresql://user:password" +"@postgres-db/database'

" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Цвета" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "Столбец" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "Конфигурация CSV файла для импорта в базу данных" -#: superset/utils/pandas_postprocessing/contribution.py:59 +#: superset/views/database/views.py:180 #, python-format msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -"Столбец \"%(column)s\" не является числовым или отсутствует в результатах" -" запроса." - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" -msgstr "Свойства столбца" - -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "Расширенный тип данных" - -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" -msgstr "Форматирование столбца(ов)" - -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "Метка(и) столбца(ов)" +"Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не " +"предназначена для загрузки CSV файлов. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/database/views.py:277 +#, python-format msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -"Столбец, содержащий коды ISO 3166-2 региона/республики/области в вашей " -"таблице" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "Столбец, содержащий данные о широте" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "Столбец, содержащий данные о долготе" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -#, fuzzy -msgid "Column datatype" -msgstr "Имя столбца" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "Всплывающая подсказка заголовка столбца" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "Столбец обязателен" +"Не удалось загрузить CSV файл \"%(filename)s\" в таблицу " +"\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 +#: superset/views/database/views.py:289 +#, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -"Метка для индексного(ых) столбца(ов). Если не задано и задан индекс " -"датафрейма, будут использованы имена индексов." +"CSV файл \"%(csv_filename)s\" загружен в таблицу \"%(table_name)s\" в " +"базе данных \"%(db_name)s\"" + +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Конфигурация Excel файла для импорта в базу данных" -#: superset/views/database/forms.py:233 +#: superset/views/database/views.py:319 +#, python-format msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -"Метка для индексного(ых) столбца(ов). Если не задано и задан индекс " -"датафрейма, будут использованы имена индексов." - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -msgid "Column name" -msgstr "Имя столбца" +"Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не " +"предназначена для загрузки Excel файлов. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#: superset/views/database/views.py:412 #, python-format -msgid "Column name [%s] is duplicated" -msgstr "Имя столбца [%s] является дубликатом" +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Не удалось загрузить Excel файл \"%(filename)s\" в таблицу " +"\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" -#: superset/utils/pandas_postprocessing/utils.py:151 +#: superset/views/database/views.py:424 #, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "Столбец, на который ссылается агрегат, не определен: %(column)s" +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Excel файл \"%(excel_filename)s\" загружен в таблицу \"%(table_name)s\" в" +" базе данных \"%(db_name)s\"" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" -msgstr "Выбор столбца" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "Конфигурация столбчатого файла для импорта в базу данных" -#: superset/views/database/forms.py:221 +#: superset/views/database/views.py:466 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -"Столбец для использования в качестве метки для строки датафрейма. " -"Оставьте пустым, если индексный столбец отсутствует." +"Несколько расширений файлов столбчатого формата не разрешены к загрузке. " +"Пожалуйста, убедитесь, что все файлы имеют одинаковое расширение." -#: superset/views/database/forms.py:352 +#: superset/views/database/views.py:479 +#, python-format msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -"Столбец для использования в качестве метки для строки датафрейма. " -"Оставьте пустым, если индексный столбец отсутствует." +"Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не " +"предназначена для загрузки файлов столбчатого формата. Пожалуйста, " +"свяжитесь с администратором." -#: superset/views/database/forms.py:424 -msgid "Columnar File" -msgstr "Файл столбчатого формата" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" +"Не удалось загрузить файл столбчатого типа \"%(filename)s\" в таблицу " +"\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" -#: superset/views/database/views.py:568 +#: superset/views/database/views.py:566 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4120,11691 +4133,11423 @@ msgstr "" "Файл столбчатого формата \"%(columnar_filename)s\" загружен в таблицу " "\"%(table_name)s\" в базу данных \"%(db_name)s\"" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" -msgstr "Конфигурация столбчатого файла для импорта в базу данных" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "В запросе отсутствует поле с данными." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "Столбцы" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "Повторяющееся имя столбца(ов): %(columns)s" -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" -msgstr "Список столбцов, которые должны быть интерпретированы как даты." +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Записи" -#: superset/views/database/forms.py:241 -msgid "Columns To Read" -msgstr "Столбцы для чтения" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Показать запись" -#: superset/common/query_context_processor.py:132 -#, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "Столбцы отсутствуют в датасете: %(invalid_columns)s" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Добавить запись" -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "Столбцы отсутствуют в источнике данных: %(invalid_columns)s" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Редактировать запись" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" -msgstr "Расположение столбцов подытогов" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Пользователь" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Действие" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" -msgstr "Столбцы для отображения" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "Дата/время" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" -msgstr "Столбцы для группировки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "Столбцы для группировки по столбцам" +#: superset/views/sql_lab/views.py:93 +#, fuzzy +msgid "Untitled Query" +msgstr "Безымянный запрос" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "Столбцы для группировки по строкам" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "Временной интервал" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" -msgstr "Столбцы для отображения" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" +msgstr "Столбец даты/времени" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" -msgstr "Объединить меры" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "Единица времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." -msgstr "" -"Номера цветов, разделенные запятой, например, 1,2,4. Целые числа задают " -"цвета из выбранной цветовой схемы и начинаются с 1 (не с нуля). Длина " -"должна соответствовать границам интервала." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "Гранулярность времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." -msgstr "" -"Границы интервала, разделенные запятой, например, 2,4,5 для интервалов " -"0-2, 2-4 и 4-5. Последнее число должно быть равно заданному максиму." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Время" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." -msgstr "" -"Быстрое сравнение нескольких графиков временных рядов (в виде " -"спарклайнов) и связанных с ними показателей." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "Агрегация" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "Сравнивает один и тот же обобщенный показатель в нескольких группах" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "Сырые записи" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#, fuzzy +msgid "Category name" +msgstr "Имя категории" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#, fuzzy +msgid "Total value" +msgstr "Фактическое значение" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +#, fuzzy +msgid "Minimum value" +msgstr "Суммарные значения" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" -msgstr "Сравнение" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +#, fuzzy +msgid "Maximum value" +msgstr "Суммарные значения" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" -msgstr "Временной лаг для сравнения" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "Целевое значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" -msgstr "Текст рядом с процентным изменением" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "Утверждено: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "описание" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -"Объединяет несколько слоев вместе для формирования сложных визуальных " -"эффектов." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "Вычислить вклад в общую сумму (долю)" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Изменение этого элемента применяется сразу" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" -msgstr "Условие" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "Показать информационную подсказку" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "Выражение SQL" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 #, fuzzy -msgid "Conditional Formatting" -msgstr "Условное форматирование" +msgid "Column datatype" +msgstr "Имя столбца" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" -msgstr "Условное форматирование" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" +msgstr "Имя столбца" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" -msgstr "Доверительный интервал" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Метка" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "Доверительный интервал должен быть между 0 и 1 (не включая концы)" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" +msgstr "Имя меры" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Конфигурация" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "Установить особый временной интервал " +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Установить временной интервал: последний..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Установить временной интервал: предыдущий..." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Установить пользовательский временной интервал" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Настроить область действия фильтра" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "Настройте слой аннотации." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Расширенная аналитика" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." -msgstr "Настройте этот дашборд для встраивания во внешнее веб-приложение" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"В этом разделе содержатся параметры, которые позволяют производить " +"аналитическую постобработку результатов запроса" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "Настройка отображения слоя аннотации поверх графика." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Скользящее окно" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" -msgstr "Подтвердить перезапись" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Скользящая средняя" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "Подтвердить сохранение" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Пусто" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "Подключить" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" +msgstr "" +"Определяет функцию скользящего окна для применения, работает вместе с " +"текстовым полем [Периоды]" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" -msgstr "Подключить Google Таблицы" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Периоды" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "Подключить Google Таблицы как таблицы для этой базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "" +"Определяет размер функции скользящего окна относительно выбранной " +"детализации по времени" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" -msgstr "Подключиться к базе данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Минимальный период" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" -msgstr "Подключиться к базе данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" +msgstr "" +"Минимальное количество скользящих периодов, необходимое для отображения " +"значения. Например, если вы делаете накопительную сумму за 7 дней, вы " +"можете указать, чтобы \"Минимальный период\" был равен 7, так что все " +"показанные точки данных представляют собой общее количество 7 периодов." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" -msgstr "Подключиться к этой базе, используя динамичную форму" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Столбец с датой" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "Подключиться к этой базе через SQLAlchemy URI" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Временной сдвиг" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "База данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "1 день назад" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "Сбой подключения, пожалуйста, проверьте настройки вашего подключения" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "1 неделя назад" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" -msgstr "Соединение в порядке!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "28 дней назад" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" -msgstr "Продолжить" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" +msgstr "30 дней назад" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" -msgstr "Непрерывный" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "52 недели назад" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "Режим относительных значений" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "1 год назад" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" -msgstr "Режим относительных значений" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "104 недели назад" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" -msgstr "Элемент" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "2 года назад" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "Значение с именем " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "156 недель назад" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " -msgstr "Значения с именами " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "3 года назад" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" -msgstr "Координаты" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Наложение одной или нескольких временных рядов из относительного периода " +"времени." -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "Скопировано в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Тип расчёта" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" -msgstr "Копировать" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" +msgstr "Фактические значения" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "Скопировать выражение SELECT в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" +msgstr "Разница" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "Скопировать и вставить JSON данные" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" +msgstr "Процентное изменение" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "Скопировать и вставить .json файл сервисного аккаунта сюда" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" +msgstr "Отношение" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "Скопировать ссылку" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "" +"Как отображать смещения во времени: как отдельные линии; как абсолютную " +"разницу между основным временным рядом и каждым смещением; как процентное" +" изменение; или как соотношение между рядами и смещениями." -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "Скопировать сообщение" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "Ресемплирование (изменение частоты данных)" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "Копия %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Правило" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "Скопировать часть запроса в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "Минутная частота" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" -msgstr "Скопировать ссылку в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" +msgstr "Часовая частота" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "Скопировать ссылку на запрос" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "Дневная частота" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "Скопировать ссылку на запрос в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "Недельная частота" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." -msgstr "Впишите имя профиля базы данных, к которой вы пытаетесь подключиться." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "Месячная частота (начало месяца)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -#, fuzzy -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "Скопировать имя HTTP пути вашего кластера." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "Месячная частота (конец месяца)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." -msgstr "Впишите имя базы данных, к которой вы пытаетесь подключиться" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" +msgstr "Годовая частота (начало года)" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" -msgstr "Скопировать в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" +msgstr "Годовая частота (конец года)" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Скопировать в буфер обмена" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Правило ресемплирования данных библиотеки Pandas" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" -msgstr "Корреляция" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "Метод заполнения пропусков" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Прогноз затрат" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" +msgstr "Пустые значения" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "Невозможно подключиться к базе данных \"%(database)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" +msgstr "Нулевые значения" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "Не удалось определить тип источника данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "Линейная интерполяция" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Не удалось получить все сохраненные графики" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" +msgstr "Будущие значения" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "Не удалось найти объект визуализации" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" +msgstr "Предыдущие значения" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Не удалось загрузить драйвер базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" +msgstr "Медианные значения" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "Не удалось загрузить драйвер базы данных: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" +msgstr "Средние значения" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "Не удалось загрузить драйвер базы данных: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" +msgstr "Суммарные значения" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Метод ресемплирования данных библиотеки Pandas" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" -msgstr "Количество" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "Аннотации и слои" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" -msgstr "Количество уникальных значений" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" +msgstr "Слева" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" -msgstr "Количество, как доля от столбцов" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" +msgstr "Сверху" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" -msgstr "Количество, как доля от строк" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "Название графика" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" -msgstr "Количество, как доля от целого" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "Ось X" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" -msgstr "Страна" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "Название оси X" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" -msgstr "Цветовая схема страны" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "Отступ снизу названия оси X" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" -msgstr "Столбец со страной" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Ось Y" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" -msgstr "Тип поля страны" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "Название оси Y" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "Карта Стран" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "Создать" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +#, fuzzy +msgid "Y Axis Title Position" +msgstr "Расположение строк подытогов" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" -msgstr "Создать график" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Запрос" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -msgid "Create a dataset" -msgstr "Создать датасет" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "Предиктивная аналитика" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." -msgstr "" -"Создайте датасет для визуализации ваших данных на графике или перейдите в" -" Лабораторию SQL для просмотра данных." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "Включить прогноз в график" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "Создать новый график" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "Включить прогнозирование данных" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" -msgstr "Создать график" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "Кол-во прогнозных периодов" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -#, fuzzy -msgid "Create chart with dataset" -msgstr "Создать датасет" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "На сколько периодов в будущем предсказывать" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -msgid "Create dataset" -msgstr "Создать датасет" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "Доверительный интервал" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -#, fuzzy -msgid "Create dataset and create chart" -msgstr "Добавить датасет и создать график" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "Ширина доверительного интервала. Должна быть между 0 и 1" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "Создать новый график" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "Годовая сезонность" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "Создать новый набор фильтров" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" +msgstr "по умолчанию" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "Создать или выбрать схему..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Да" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Создано" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Нет" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "Дата создания" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Применяется годовая сезонность. Целочисленное значение будет указывать " +"порядок сезонности Фурье." -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "Кем создано" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "Недельная сезонность" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" -msgstr "Создано мной" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Применяется недельная сезонность. Целочисленное значение будет указывать " +"порядок сезонности Фурье." -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "Созданный контент" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "Дневная сезонность" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "Дата создания" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Применяется дневная сезонность. Целочисленное значение будет указывать " +"порядок сезонности Фурье." -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "Не удалось создать SSH туннель по неизвестной причине" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Параметры, связанные со временем" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Создание источника данных и добавление новой вкладки..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" +msgstr "Источник данных и Тип графика" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Автор" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "ID графика" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -msgid "Crimson" -msgstr "Малиновый" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "Идентификатор активного графика" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Время жизни кэша (секунды)" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -#, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Не применено ни одного фильтра к данному дашборду." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "Количество секунд до истечения срока действия кэша" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Не применено ни одного фильтра к данному дашборду." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "Параметры URL" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "Задать область действия кросс-фильтра" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Дополнительные url параметры для запросов, использующих шаблонизацию Jinja" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -#, fuzzy -msgid "Cross-filters" -msgstr "Задать область действия кросс-фильтра" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "Доп. параметры" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" -msgstr "С накоплением" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" +msgstr "" +"Дополнительные параметры для шаблонизации Jinja, которые могут быть " +"использованы в графиках" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" -msgstr "Сейчас отрисовано: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "Цветовая схема" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" -msgstr "Пользовательский" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "Режим относительных значений" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Пользовательский плагин" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Строка" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Пользовательские плагины" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Ряд" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "Через SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "" +"Вычислить вклад в общую сумму (долю) по категории или строке. " +"Установливает формат показателя в проценты" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" -msgstr "Пользовательские ad-hoc меры SQL не разрешены для этого датасета" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "Пользовательские поля SQL не могут содержать подзапросы." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "Пользовательский плагин фильтра времени" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "Кастомизация" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +#, fuzzy +msgid "Y-Axis Sort Ascending" +msgstr "Сортировать по возрастанию оси X" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" -msgstr "Настроить меры" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" +msgstr "Сортировать по возрастанию оси X" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" -msgstr "Настроить столбцы" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +#, fuzzy +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Сортировка по убыванию или по возрастанию для оси X" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" -msgstr "Обнаружена циклическая зависимость" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Исходная категория" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "Формат даты/времени" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "Формат даты/времени" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "Формат D3: https://github.com/d3/d3-format." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" +msgstr "Измерения" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 -#, fuzzy +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -"Числовой формат D3 для чисел от -1 до 1, полезно, если вы работаете как с" -" маленькими числами, где нужна точность, так и с большими целыми числами" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" -msgstr "Формат времени D3 для столбцов типа дата/время" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "Формат времени D3: https://github.com/d3/d3-time-format." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +#, fuzzy +msgid "Add dataset columns here to group the pivot table columns." +msgstr "Столбцы для группировки по столбцам" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -msgid "DATETIME" -msgstr "Дата/Время (DATETIME/TIMESTAMP)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" +msgstr "Измерение" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" +"Группировка в ряды данных. Каждая категория отображается в виде " +"определенного цвета на графике и имеет легенду" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "ДЕК" - -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "УДАЛИТЬ" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "Дневная сезонность" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" -msgstr "Темный" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Элемент" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" -msgstr "Темно-голубой" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Элемент, который будет отражен на графике" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" -msgstr "Темная тема" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Фильтры" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "Дашборд" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "Дашборд [%s] был только что создан и график [%s] был добавлен в него" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Дашборд [{}] был только что создан и график [{}] был добавлен в него" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "Мера для правой оси" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "Не удалось создать дашборд" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +#, fuzzy +msgid "Select a metric to display on the right axis" +msgstr "Выберите меру для правой оси" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "Не удалось удалить дашборд" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Сортировка" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "Не удалось обновить дашборд" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +#, fuzzy +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" +"Мера, используемая для определения того, как сортируются верхние " +"категории, если присутствует ограничение по категории или строке. Если не" +" определено, возвращается к первой мере (где это уместно)." -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "Дашборд не существует" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "Размер пузыря" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -msgid "Dashboard imported" -msgstr "Дашборд импортирован" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "Мера, используемая для расчета размера пузыря" -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Неверные параметры дашборда" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Свойства дашборда" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" -msgstr "Свойства дашборда обновлены" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "Цвет меры" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" -msgstr "Схема дашборда" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Показатель, используемый для расчета цвета" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" +"Столбец данных формата дата/время. Вы можете определить произвольное " +"выражение, которое будет возвращать столбец даты/времени в таблице. " +"Фильтр ниже будет применён к этому столбцу или выражению" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -msgid "Dashboard title" -msgstr "Название дашборда" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "Перетащите столбец формата дата/время сюда" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "дашборды(ов)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "Ось Y" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Дашборды" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "Измерение для использования на оси Y" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -msgid "Dashboards added to" -msgstr "Добавлено в дашборды" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "Ось X" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "Не удалось удалить дашборды." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "Измерение для использования на оси X" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Дашборды не существуют" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Выберите необходимый тип визуализации" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -msgid "Dashed" -msgstr "Штрих" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "Фиксированный цвет" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Данные" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "Этот цвет используется для заливки" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" -msgstr "Таблица" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "Линейная цветовая схема" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "Все" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" -msgstr "Масштабирование графика" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" +msgstr "5 секунд" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." -msgstr "" -"Не удалось распознать данные с сервера . Формат хранилища мог измениться," -" что привело к потере старых данных. Вам нужно повторно запустить " -"исходный запрос." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 секунд" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." -msgstr "" -"Не найдены сохраненные результаты на сервере, необходимо повторно " -"выполнить запрос." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 минута" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 минут" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "Предпросмотр данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 минут" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" -msgstr "Данные обновлены" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 час" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "Тип данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" +msgstr "1 день" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" +msgstr "7 дней" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "Датафрейм должен включать временной столбец" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "неделя" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "База данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "неделя, начинающаяся в воскресенье" -#: superset/views/database/views.py:481 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "неделя, заканчивающаяся в субботу" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "месяц" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" +msgstr "Квартал" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "год" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -"Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не " -"предназначена для загрузки файлов столбчатого формата. Пожалуйста, " -"свяжитесь с администратором." +"Интервал времени, в границах которого строится график. Обратите внимание," +" что для определения диапазона времени, вы можете использовать " +"естественный язык. Например, можно указать словосочетания - «10 seconds»," +" «1 day» или «56 weeks»" -#: superset/views/database/views.py:180 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -"Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не " -"предназначена для загрузки CSV файлов. Пожалуйста, свяжитесь с " -"администратором." -#: superset/views/database/views.py:321 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -"Схема \"%(schema_name)s\" базы данных \"%(database_name)s\" не " -"предназначена для загрузки Excel файлов. Пожалуйста, свяжитесь с " -"администратором." - -#: superset/initialization/__init__.py:243 -msgid "Database Connections" -msgstr "Базы данных" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" -msgstr "Ошибка создания базы данных" - -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "URL базы данных" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" -msgstr "Соединение с базой данных установлено" - -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "Не удалось создать базу данных." -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "Не удалось удалить базу данных." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Лимит строк" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "Не удалось обновить базу данных." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." -msgstr "База данных не позволяет изменять свои данные." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "Сортировать по убыванию" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "База данных не существует" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "База данных не поддерживает подзапросы" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Лимит кол-ва категорий" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -"Драйвер базы данных для импорта может быть не установлен. Изучите " -"документацию Суперсета для инструкций по установке: " - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "Ошибка базы данных" +"Ограничивает количество отображаемых категорий. Эта опция полезна для " +"столбцов с большим количеством уникальных значений, т.к. уменьшает " +"сложность и стоимость запроса." -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." -msgstr "База данных сейчас оффлайн." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Формат Оси Y" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "Для оповещений требуется база данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +#, fuzzy +msgid "Currency format" +msgstr "Формат значения" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "Имя базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" +msgstr "Формат даты/времени" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "База данных недоступна для изменений" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "Цветовая схема, применяемая для раскрашивания графика" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "База данных не найдена." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" +msgstr "Убрать имя меры" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" -msgstr "База данных не найдена: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "" +"Убирает меру (например, AVG(...)) с легенды рядом с именем измерения и из" +" таблицы результатов" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Параметры базы данных недействительны." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" +msgstr "Показывать пустые столбцы" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" -msgstr "Пароли базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "Формат D3: https://github.com/d3/d3-format." -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "Порт базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" -msgstr "Обновлены настройки базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Базы данных" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" +msgstr "Адаптивное форматирование" -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Индекс датафрейма" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Исходное значение" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "Датасет" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "Продолжительность в мс (66000 => 1m 6s)" -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "Датасет %(name)s уже существует" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -msgid "Dataset Name" -msgstr "Имя датасета" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "Формат времени D3: https://github.com/d3/d3-time-format." -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "Не удалось удалить столбец датасета" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "Произошла ошибка!" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "Столбец датасета не найден" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "Не удалось создать датасет" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "" +"По этому запросу не было возвращено данных. Если вы ожидали увидеть " +"результаты, убедитесь, что все фильтры настроены правильно и источник " +"данных содержит записи для заданного временного интервала." -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "Не удалось удалить датасет" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" +msgstr "Нет результатов" -#: superset/datasets/commands/exceptions.py:210 -msgid "Dataset could not be duplicated." -msgstr "Датасет не может быть дублирован." +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" +msgstr "ОШИБКА" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "Не удалось обновить датасет" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" +msgstr "" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "Датасет не существует" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "Ожидается целое число" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" -msgstr "Импортирован датасет" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "Ожидается число" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "Требуется датасет" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +#, fuzzy +msgid "is expected to be a Mapbox URL" +msgstr "Ожидается число" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "Не удалось удалить меру датасета." +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" +msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "Мера датасета не найдена." +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "Необходимо заполнить" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "Имя датасета" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "Блок" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "Параметры датасета неверны." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "час" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" -msgstr "Схема датасета невалидна, причина: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "день" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "Единица времени для группировки блоков" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "Датасет(ы) не могут быть массово удалены." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "Подблок" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Датасеты" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" +msgstr "Минимум" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -"Датасеты могут быть созданы из таблиц базы данных или SQL запросов. " -"Выберите таблицу из базы данных слева или " - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" -msgstr "Датасет не содержит столбца формата дата/время" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Источник данных" +"Единица времени для каждого подблока. Должна быть меньшей единицей, чем " +"единица времени блока. Должно быть больше или равно единице времени" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" -msgstr "Источник данных и Тип графика" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "Свойства графика" -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" -msgstr "Источник данных не существует" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "Размер ячейки" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "Тип источниках данных неверный" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "Размер квадратной ячейки (в пикселях)" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "" -"Тип источника данных обязателен, когда дан идентификатор источника данных" -" (datasource_id)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "Расстояние между ячейками" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" -msgstr "Формат даты и времени" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "Расстояние между ячейками (в пикселях)" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Временной фильтр" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "Радиус ячейки" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" -msgstr "Форматы даты" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "Радиус ячейки (в пикселях)" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" -msgstr "Формат временной строки" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "Количество цветов" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Дата/Время" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "Количество цветов в цветовой схеме" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "Формат даты и времени" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "Формат даты/времени" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "" -"Столбец даты/времени не предусмотрен в настройках таблицы и является " -"обязательным для этого типа графика" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "Легенда" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "Формат даты/времени" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "Отображать легенду (переключатель)" -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "День" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "Показать значения" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "День (част=D)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "Отображение числовых значений в ячейках" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "Дней %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "Показать имена мер" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "драйвер базы данных вернул не все запрошенные столбцы" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "Отображать имя меры как названия" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" -msgstr "Выключить" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "Числовой формат" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "Декабрь" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "Корреляция" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" +"Визуализирует, как показатель изменился с течением времени, используя " +"цветовую шкалу и календарь. Значения серого цвета используются для " +"обозначения отсутствующих значений, а линейная цветовая схема " +"используется для отображения величины значения каждого дня." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "Бизнес" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "Десятичный разделитель" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "Сравнение" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - 3D сетка" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "Насыщенность" -#: superset/viz.py:2825 -#, fuzzy -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D HEX" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" +msgstr "Паттерн" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - Дуга" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" +msgstr "Отчет" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Тенденция" -#: superset/viz.py:2848 -#, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Deck.gl - Paths" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "" -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - Многослойный" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "" -#: superset/viz.py:2735 -#, fuzzy -msgid "Deck.gl - Paths" -msgstr "Deck.gl - Paths" - -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - Полигон" - -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - Точечная диаграмма" - -#: superset/viz.py:2668 -#, fuzzy -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - Screen Grid" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "По умолчанию" - -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "Эндпоинт по умолчанию" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "URL по умолчанию" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "" -"URL по умолчанию, на который будет выполнен редирект при доступе из " -"страницы со списком датасетов" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "Значение по умолчанию" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" -msgstr "Дата и время по умолчанию" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" -msgstr "Широта по умолчанию" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" -msgstr "Долгота по умолчанию" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" -msgstr "" -"Минимальная ширина столбца (в пикселях). Реальная ширина по-прежнему " -"может быть больше, чем указанная, если остальным столбцам не будет " -"хватать места." - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" -msgstr "Требуется значение по умолчанию" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" -"Значение по умолчанию должно быть выбрано, когда установлен флаг \"Фильтр" -" имеет значение по умолчанию\"" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" -"Значение по умолчанию должно быть выбрано, когда установлен флаг " -"\"Требуется значение фильтра\"" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" -msgstr "" -"Значение по умолчанию задается автоматически, когда установлен флаг " -"\"Сделать первое значение фильтра значением по умолчанию\"" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" -msgstr "Задайте функцию, которая получает на вход содержимое всплывающей подсказки" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "" -"Задайте функцию, которая возвращает URL для навигации при " -"пользовательском нажатии" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." -msgstr "" -"Определите функцию javascript, которая получает массив данных, " -"используемый в визуализации, и, как ожидается, вернет измененную версию " -"этого массива. Это может быть использовано для изменения свойств данных, " -"фильтрации или расширения массива." - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "" -"Определяет функцию скользящего окна для применения, работает вместе с " -"текстовым полем [Периоды]" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "Определяет разложение каждой категории" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "Определяет размер сетки (в пикселях)" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" -msgstr "" -"Группировка в ряды данных. Каждая категория отображается в виде " -"определенного цвета на графике и имеет легенду" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" -msgstr "" -"Определяет размер функции скользящего окна относительно выбранной " -"детализации по времени" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "" -"Определяет, должен ли шаг отображаться в начале, середине или конце между" -" двумя точками данных" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "Удалить" - -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "Удалить %s?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Удалить аннотацию?" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "Удалить базу данных?" - -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "Удалить датасет?" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "Удалить слой?" - -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "Удалить запрос?" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" -msgstr "Удалить рассылку?" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "Удалить шаблон?" - -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "Действительно удалить все?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Удалить аннотацию" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Удалить вкладку дашборда?" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "Удалить базу данных" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" -msgstr "Удалить рассылку по email" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "Удалить запрос" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "Удалить шаблон" - -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "Удалите этот контейнер и сохраните изменения, чтобы убрать это сообщение." - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -#, fuzzy -msgid "Deleted" -msgstr "удалить" - -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "Удалалена %(num)d аннотация" -msgstr[1] "Удалалены %(num)d аннотации" -msgstr[2] "Удалалено %(num)d аннотаций" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "Удалален %(num)d слой аннотаций" -msgstr[1] "Удалалены %(num)d слоя аннотаций" -msgstr[2] "Удалалено %(num)d слоев аннотаций" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "Удален %(num)d график" -msgstr[1] "Удалены %(num)d графика" -msgstr[2] "Удалено %(num)d графиков" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "Удален %(num)d CSS шаблон" -msgstr[1] "Удалены %(num)d CSS шаблона" -msgstr[2] "Удалено %(num)d CSS шаблонов" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "Удален %(num)d дашборд" -msgstr[1] "Удалены %(num)d дашборда" -msgstr[2] "Удалено %(num)d дашбордов" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Удален %(num)d датасет" -msgstr[1] "Удалены %(num)d датасета" -msgstr[2] "Удалено %(num)d датасетов" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "Удалено %(num)d расписание рассылок" -msgstr[1] "Удалены %(num)d расписания рассылок" -msgstr[2] "Удалено %(num)d расписаний рассылок" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "Удален %(num)d график" -msgstr[1] "Удалены %(num)d графика" -msgstr[2] "Удалено %(num)d графиков" - -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "Удален %(num)d сохраненный запрос" -msgstr[1] "Удалены %(num)d сохраненных запроса" -msgstr[2] "Удалено %(num)d сохраненных запросов" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "Удалено: %s" - -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Удалено: %s" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" -msgstr "" -"Удаление вкладки удалит все ее содержимое. Вы можете отменить это " -"действие при помощи сочетания клавиш" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "Долгота и широта в одном столбце" - -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "Разделитель" - -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "Способ оповещения" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" -msgstr "Демография" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" -msgstr "Концентрация" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" -msgstr "Зависит от" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" -msgstr "Устарело" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "Описание" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "Описание (будет видно в списке)" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" -msgstr "Описательные столбцы" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "Описание, отображаемое под Карточкой" - -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "Снять выделение" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "Детали утверждения" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." -msgstr "Определяет формулу расчета \"усов\" и выбросов." - -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "Определяет, виден ли этот дашборд в списке всех дашбордов" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" -msgstr "Ромб" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Возможно вы имели в виду:" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" -msgstr "Разница" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" -msgstr "Тускло-серый" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" -msgstr "Измерение" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." -msgstr "Измерение для использования на оси X" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." -msgstr "Измерение для использования на оси Y" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" -msgstr "Измерения" - -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" -msgstr "Направленный" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" -msgstr "Отключить предпросмотр данных в Лаборатории SQL" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." -msgstr "" -"Отключить предварительный просмотр данных при извлечении метаданных " -"таблицы в SQL Lab. Полезно для избежания проблем с производительностью " -"браузера при использовании баз данных с очень широкими таблицами." - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" -msgstr "Выключить встраивание?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" -msgstr "Отключено" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" -msgstr "Отменить изменения" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" -msgstr "Обособленный" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "Отображаемое имя" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "Отображать общий итог по столбцу" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "Настройки отображения" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "" -"Отображать меры рядом в каждом столбце, в отличие от отображения каждого " -"столбца рядом для каждой меры." - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" -msgstr "Отображать общий итог по строке" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" -msgstr "Настройки отображения" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -#, fuzzy -msgid "Distribute across" -msgstr "Выполнить выбранный запрос" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" -msgstr "Распределение" - -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "Распределение - Столбчатая диаграмма" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "Разделитель" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" -msgstr "Круговая/кольцевая диаграмма" - -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" -msgstr "Документация" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "Блок" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" -msgstr "Кольцевая диаграмма" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -msgid "Dotted" -msgstr "Пунктир" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" -msgstr "Сохранить" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "Сохранить как изображение" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "Сохранить в CSV" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "Черновик" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "Переместите элементы оформления и графики на дашборд" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "Переместите элементы оформления и графики в эту вкладку" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." -msgstr "Отобразить маркеры на данных. Применимо только для линий." - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "Отобразить область под кривыми. Применимо только для линий\"" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" -msgstr "Проводит линию от диаграммы к метке, когда метки находятся снаружи" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" -msgstr "Рисует разделительные линии для небольших отметок оси" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "Рисует разделительные линии для небольших отметок оси Y" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" -msgstr "" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" -msgstr "" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "Сорт. по %s" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" -msgstr "" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 -msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." -msgstr "" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "Перетащите столбец сюда" -msgstr[1] "Перетащите столбцы сюда" -msgstr[2] "Перетащите столбцы сюда" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "Перетащите столбец/меру сюда" -msgstr[1] "Перетащите столбцы/меры сюда" -msgstr[2] "Перетащите столбцы/меры сюда" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" -msgstr "Перетащите столбец формата дата/время сюда" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" -msgstr "Перетащите столбцы/меры сюда" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -#, fuzzy -msgid "Dual Line Chart" -msgstr "Bullet Chart" - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" -msgstr "Дублировать" - -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "Повторяющееся имя столбца(ов): %(columns)s" - -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." -msgstr "" -"Повторяющиеся метки столбцов/мер: %(labels)s. Пожалуйста, убедитесь, что " -"все столбцы и меры имеют уникальную метку." - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" -msgstr "Дублировать датасет" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Дублировать вкладку" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "Продолжительность" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -#, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." -msgstr "" -"Продолжительность (в секундах) таймаута кэша для графиков этой базы " -"данных. Таймаут 0 означает, что кэш никогда не очистится. Обратите " -"внимание, что если значение не задано, применяется значение по умолчанию " -"из основной конфигурации." - -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." -msgstr "" -"Продолжительность (в секундах) таймаута кэша для графиков этой базы " -"данных. Таймаут 0 означает, что кэш никогда не очистится. Обратите " -"внимание, что если значение не задано, применяется значение по умолчанию " -"из основной конфигурации." - -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "" -"Продолжительность (в секундах) таймаута кэша для этого графикаОбратите " -"внимание, что если значение не задано, применяется значение источника " -"данных/таблицы." - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -#, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "" -"Продолжительность (в секундах) таймаута кэша для этого графикаОбратите " -"внимание, что если значение не задано, применяется значение таймаута " -"датасета." - -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." -msgstr "" -"Продолжительность (в секундах) таймаута кэша для этой таблицы. Обратите " -"внимание, что если значение не задано, применяется значение базы данных." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "" -"Продолжительность (в секундах) таймаута кэша для схем этой базы данных. " -"Обратите внимание, что если значение не задано, кэш никогда не очистится." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "" -"Продолжительность (в секундах) таймаута кэша для таблиц этой базы данных." -" Обратите внимание, что если значение не задано, кэш никогда не " -"очистится." - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)" - -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "Продолжительность в мс (100.40008 => 100ms 400µs 80ns)" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "Продолжительность в мс (66000 => 1m 6s)" - -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "Продолжительность: %s" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" -msgstr "Динамическая агрегирующая функция" - -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "Динамически искать все значения фильтра" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" -msgstr "Графики Apache" - -#: superset/reports/notifications/email.py:133 -#, fuzzy -msgid "EMAIL_REPORTS_CTA" -msgstr "Включить рассылки" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "КОНЕЦ (НЕ ВКЛЮЧИТЕЛЬНО)" - -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" -msgstr "ОШИБКА" - -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" -msgstr "ОШИБКА: %s" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" -msgstr "Длина ребер" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" -msgstr "Длина ребер между вершинами" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" -msgstr "Оформление ребер" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" -msgstr "Толщина ребра" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "Редактировать" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" -msgstr "Редактировать оповещение" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "Редактировать CSS" - -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Редактировать CSS шаблон" - -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "Редактировать свойств CSS шаблона" - -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Редактировать график" - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" -msgstr "Редактировать свойства графика" - -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "Редактировать столбец" - -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Редактировать дашборд" - -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Редактировать Базу Данных" - -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "Редактировать датасет " - -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Редактировать запись" - -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "Редактировать меру" - -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Редактировать плагин" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" -msgstr "Редактировать отчет" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Edit Rule" -msgstr "режиме редактирования" - -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "Редактировать сохраненный запрос" - -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Редактировать таблицу" - -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Редактировать аннотацию" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Редактировать слой аннотации" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "Редактировать свойства слоя аннотаций" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -msgid "Edit chart" -msgstr "Редактировать график" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "Редактировать свойства графика" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "Редактировать дашборд" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Редактировать Базу Данных" - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "Редактировать датасет" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" -msgstr "Редактировать рассылку" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -#, fuzzy -msgid "Edit formatter" -msgstr "Формат D3" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "Редактировать свойства" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "Редактировать запрос" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "Редактировать шаблон" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Редактировать параметры шаблонизации Jinja" - -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -msgid "Edit the dashboard" -msgstr "Редактировать дашборд" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "Изменить временной интервал" - -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Редактировано" - -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Редактирование 1 фильтра:" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "Редактирование набора фильтров:" - -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Неверное или несуществующее имя базы данных." - -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "Неверное имя пользователя \"%(username)s\" или пароль." - -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." -msgstr "" -"Неверное имя пользователя \"%(username)s\", пароль или имя базы данных " -"\"%(database)s\"." - -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." -msgstr "Неверное имя пользователя или пароль" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -#, fuzzy -msgid "Elevation" -msgstr "Продолжительность" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" -msgstr "Включить рассылки" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" -msgstr "Встроить" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" -msgstr "Встроенный код" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -msgid "Embed dashboard" -msgstr "Встроить дашборд" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." -msgstr "Встраивание отключено" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -#, fuzzy -msgid "Emit Filter Events" -msgstr "Фильтрующийся" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" -msgstr "Акцент" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" -msgstr "Трудоустройство и образование" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" -msgstr "Пустой круг" - -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "Пустая коллекция" - -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -#, fuzzy -msgid "Empty column" -msgstr "Показывать пустые столбцы" - -#: superset/charts/data/api.py:366 -msgid "Empty query result" -msgstr "Пустой ответ запроса" - -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "Пустой запрос?" - -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" -msgstr "" - -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -"Включите \"Разрешить загрузку файлов в базу данных\" в настройках любой " -"базы данных" - -#: superset/connectors/sqla/views.py:389 -#, fuzzy -msgid "Enable Filter Select" -msgstr "Настроить области действия фильтра" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -#, fuzzy -msgid "Enable cross-filtering" -msgstr "Задать область действия кросс-фильтра" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" -msgstr "Включить элементы управления масштабированием данных" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "Сортировка по мере" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" -msgstr "Разрешить встраивание" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "Сортировка результатов по выбранной мере в порядке убывания" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" -msgstr "Включить прогноз в график" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" +msgstr "Числовой формат" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" -msgstr "Включить прогнозирование данных" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" +msgstr "Выберите числовой формат" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" -msgstr "Включить перемещение по графику" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Источник" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" -msgstr "Разрешить перемещение вершин" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" +msgstr "Выберите источник" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "Разрешить оценку стоимости запроса" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" +msgstr "Цель" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "Включить серверную пагинацию результатов (экспериментально)" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" +msgstr "Выберите цель" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" +msgstr "Поток" -#: superset/viz.py:2514 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "Конец" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " -msgstr "Конец (Долгота, Широта)" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "Хордовая диаграмма" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" -msgstr "Конечные Долгота и Широта" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "Эстетично" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "Время окончания" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "Круглая форма" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" -msgstr "Конечный угол" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "Устарел" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "End date" -msgstr "Отправить текстом" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "Пропорция" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "Конечная дата исключена из временного интервала" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" +msgstr "Относительный" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "Конечная дата должна быть после начальной" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "Страна" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "Не удается настроить драйвер \"%(engine)s\" при данных параметрах." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "Выбор страны для графика" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" -msgstr "Параметры драйвера" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "Коды ISO 3166-2" -#: superset/databases/schemas.py:302 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" +"Столбец, содержащий коды ISO 3166-2 региона/республики/области в вашей " +"таблице" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" -msgstr "Введите CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" +msgstr "Мера для отображения нижнего заголовка" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" -msgstr "Введите основные учетные данные" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "Карта" -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" -msgstr "Введите разделитель этих данных" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" -msgstr "Введите название для этого листа" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "2D карты" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Введите новое название для вкладки" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "Карта" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" -msgstr "Введите время в секундах" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "Интервал" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" -msgstr "Полноэкранный режим" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "С наполнением" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" -msgstr "Введите обязательные данные для %(dbModelName)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "Извините, похоже, что данные отсутствуют" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Элемент" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "Определение события" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" -msgstr "ID элемента" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" +msgstr "Имена событий" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" -msgstr "Одинаковые размеры дат" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "Столбцы для отображения" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" -msgstr "Ошибка" - -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Ошибка в jinja выражении в операторе HAVING: %(msg)s" - -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Ошибка в jinja выражении в RLS фильтрах: %(msg)s" - -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Ошибка в jinja выражении в операторе WHERE: %(msg)s" - -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Ошибка в jinja выражении в предикате выборки значений: %(msg)s" - -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -"Ошибка загрузки источников данных для графиков. Фильтры могут работать " -"некорректно." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "Сообщение об ошибке" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" -msgstr "Возникла ошибка при получении графиков" - -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" -msgstr "Возникла ошибка при получении данных: %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Произошла ошибка при выполнении запроса виртуального датасета: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" -msgstr "Ошибка: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "Дополнительные метаданные" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" -msgstr "Ошибка: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" +msgstr "Метаданные" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Оценить стоимость запроса" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "ID элемента" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Оценить стоимость выбранного запроса" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" +msgstr "например, столбец \"идентификатор пользователя\"" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "Спрогнозировать стоимость до выполнения запроса" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "Лимит событий" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -msgid "Event" -msgstr "Событие" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "" +"Максимальное количество возвращаемых событий, эквивалентно количеству " +"строк" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 #, fuzzy msgid "Event Flow" msgstr "Event flow" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" -msgstr "Имена событий" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "Постепенный" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" -msgstr "Определение события" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "Ось по возрастанию" -#: superset/viz.py:2927 -#, fuzzy -msgid "Event flow" -msgstr "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "Ось по убыванию" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" -msgstr "Столбец формата дата/время" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" +msgstr "Мера по возрастанию" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Каждый(ая)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" +msgstr "Мера по убыванию" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" -msgstr "Динамика" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "Настройки тепловой карты" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" -msgstr "Точное" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "Пример" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" +msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Примеры" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +#, fuzzy +msgid "YScale Interval" +msgstr "Интервал обновления" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Excel Файл" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "" -#: superset/views/database/views.py:427 -#, python-format -msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" +msgstr "Отрисовка" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -"Excel файл \"%(excel_filename)s\" загружен в таблицу \"%(table_name)s\" в" -" базе данных \"%(db_name)s\"" -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Конфигурация Excel файла для импорта в базу данных" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "Автоматически (плавно)" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" -msgstr "Исключить выбранные значения" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -#, fuzzy -msgid "Excluded roles" -msgstr " (исключено)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" -msgstr "Исполненный SQL" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" +msgstr "тепловая карта" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Выполненный запрос" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "x" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "ID исполнения" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "y" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "Журнал Действий" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" -msgstr "Существующий датасет" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "x: значения нормализованы внутри каждого столбца" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" -msgstr "Выйти из полноэкранного режима" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "y: значения нормализованы внутри каждой строки" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" -msgstr "Расширить" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "тепловая карта: значения нормализованы внутри всей карты" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Расширить все" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "Левый отступ" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" -msgstr "Расширить панель данных" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" +msgstr "Автоматически" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" -msgstr "Развернуть строку" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "Левый отступ (в пикселях), дает больше пространства меткам оси" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" -msgstr "Расширить предпросмотр таблицы" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "Нижний отступ" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Показать панель инструментов" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "Нижний отступ (в пикселях), дает больше пространства меткам оси" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "Ограничения для значения" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -"Формула с зависимой переменной 'x' в милисекундах с 1970 года " -"(Unix-время). Для рассчета используется mathjs. Например: '2x+5'" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" -msgstr "Экспериментальный" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "Сортировка оси X" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "Исследовать" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "Сортировка оси Y" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "Исследовать - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "Показывать долю" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Создать новый график на основе этих данных" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "Отображение процентной доли во всплывающей подсказке" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "Экспортировать" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "Нормализовать" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "Экспортировать дашборды?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" +msgstr "Применять нормальное распределение на основе ранга в цветовой схеме" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "Экспорт запроса" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" +msgstr "Формат значения" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" -msgstr "Экспорт в .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" -msgstr "Экспорт в .JSON" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -#, fuzzy -msgid "Export to Excel" -msgstr "Экспорт в YAML" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "Трудоустройство и образование" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "Экспорт в YAML" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "Концентрация" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "Экспортировать в YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" +msgstr "Прогноз" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" -msgstr "Экспорт в целый .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "Одна мера" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" -msgstr "Экспорт исходных данных в .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" +msgstr "по" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" -msgstr "Экспорт сводной таблицы в .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" +msgstr "количество" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" -msgstr "Предоставить доступ к базе в Лаборатории SQL" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "кумулятивно" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Доступен в SQL редакторе" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "перцентиль (исключая)" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Предоставить доступ к базе в Лаборатории SQL" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "Выберите числовые столбцы для отрисовки гистограммы" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "Выражение" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" +msgstr "Количество столбцов" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Дополнительные параметры" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "Выберите количество столбцов для гистограммы" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" -msgstr "Дополнительные элементы управления" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "Метка оси X" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" -msgstr "Доп. параметры" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "Метка оси Y" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" -msgstr "Доп. данные для JS" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "Нормализовать гистограмму" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." -msgstr "" -"Дополнительные метаданные таблицы. В настоящий момент поддерживается " -"следующий формат: `{ \"certification\": { \"certified_by\": " -"\"Руководитель отдела\", \"details\": \"Эта таблица - источник правды.\" " -"}, \"warning_markdown\": \"Это предупреждение.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "С накоплением" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Дополнительное поле не может быть декодировано с помощью JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "Сделать гистограмму нарастающей" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Дополнительные параметры для запросов, использующих шаблонизацию Jinja" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "Распределение" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -"Дополнительные параметры для шаблонизации Jinja, которые могут быть " -"использованы в графиках" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Дополнительные url параметры для запросов, использующих шаблонизацию Jinja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "ФЕВ" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Режим относительных значений" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "ПТ" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Вычислить вклад в общую сумму (долю)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "Высота рядов" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" -msgstr "Число, на которое умножается мера" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "Высота каждого ряда (в пикселях)" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "Ошибка" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "Ошибка" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" +msgstr "категории" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "Невозможно выполнить запрос" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +#, fuzzy +msgid "overall" +msgstr "Сбросить фильтры" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" -msgstr "Не удалось остановить запрос. %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "изменение" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" -msgstr "Не удалось создать рассылку" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 #, fuzzy -msgid "Failed to generate chart edit URL" -msgstr "Не удалось загрузить данные графика" +msgid "Horizon Chart" +msgstr "Horizon Charts" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" -msgstr "Не удалось загрузить данные графика" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "Темно-голубой" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." -msgstr "Не удалось загрузить данные графика." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" +msgstr "Фиолетовый" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "Золотой" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" -msgstr "Не удалось получить расширенный тип" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" +msgstr "Тускло-серый" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -#, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "Задать область действия кросс-фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" +msgstr "Малиновый" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "Не удалось запустить удаленный запрос на сервере." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" +msgstr "Лесной зеленый" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" -msgstr "Не удалось обновить отчет" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "Долгота" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Ошибка при проверке вариантов выбора: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "Столбец, содержащий данные о долготе" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "Избранное" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "Широта" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "Избранное" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "Столбец, содержащий данные о широте" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Февраль" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "Радиус кластера" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "Маркеры" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "Радиус маркера" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" +"Радиус маркеров (не находящихся в кластере). Выберите числовой столбец " +"или `Автоматически`, который отмасштабирует маркеры по наибольшему " +"маркеру." + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" +msgstr "Автоматически" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "Единица измерения радиуса маркера" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "Получить данные для просмотра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" +msgstr "Пиксели" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "Получено %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" +msgstr "Мили" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" -msgstr "Получение данных" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" +msgstr "Километры" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "поле не может быть декодировано с помощью JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "Единица измерения для указанного радиуса маркера" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Поле не может быть декодировано с помощью JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "Маркировка" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "Поле обязательно к заполнению" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" +msgstr "метка" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Файл" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" -msgstr "Цвет заливки" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "Агрегатор меток кластера" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "Установить все требуемые флаги для включения \"Значения по умолчанию\"" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "Сумма" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" -msgstr "Метод заполнения пропусков" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "Среднее" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" -msgstr "С заливкой" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" +msgstr "Максимум" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" -msgstr "Фильтр" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" +msgstr "Стандартное отклонение" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" -msgstr "Конфигурация фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "Дисперсия" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "Список фильтров" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." +msgstr "" +"Агрегатная функция, применяемая для списка точек в каждом кластере для " +"создания метки кластера." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" -msgstr "Настройки фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" +msgstr "Визуальные настройки" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "Тип фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "Мгновенная отрисовка" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -#, fuzzy -msgid "Filter box (deprecated)" -msgstr "Не выбраны фильтры." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "Точки и кластеры будут обновляться по мере изменения области просмотра" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 -#, fuzzy -msgid "Filter charts" -msgstr "Поиск" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" +msgstr "Стиль карты" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Настройки фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" +msgstr "Схема" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Настройки фильтра для \"Фильтр-виджета\"" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" +msgstr "Темный" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" -msgstr "Фильтр имеет значение по умолчанию" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" +msgstr "Светлый" -#: superset-frontend/src/components/Table/index.tsx:201 -#, fuzzy -msgid "Filter menu" -msgstr "Имя фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" +msgstr "Гибридный режим" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "Метаданные фильтра изменились в дашборде. Они не будут применены." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" +msgstr "Спутник" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "Имя фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "Туристический режим" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -"Фильтр предлагает только те значения, которые отобраны выбранными " -"фильтрами" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "Фильтровать результаты" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Прозрачность" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "Набор фильтров уже существует" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "Непрозрачность всех кластеров, точек и меток. Между 0 и 1." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "Набор фильтров с этим именем уже существует" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "Цвет RGB" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" -msgstr "Наборы фильтров (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "Цвет для маркеров и кластеров в RGB" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" -msgstr "Тип фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" +msgstr "Область просмотра" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Фильтровать значения (зависит от регистра)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "Долгота по умолчанию" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" -msgstr "Требуется значение фильтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "Долгота для области просмотра" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "Список для фильтрации не может быть пуст" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "Широта по умолчанию" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Поиск" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "Широта для области просмотра" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "Фильтруемый" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "Масштабирование" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "Фильтры" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "Уровень масштабирования карты" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "Фильтры (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Фильтры по столбцам" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "Светлый режим" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Фильтры по мерам" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "Темная тема" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Конфигурация фильтров" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "Mapbox" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" -msgstr "Фильтры вне рамок дашборда (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "Точечный" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 -msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "Трансформируемый" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "Завершить" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "Пороговый альфа-уровень для определения значимости" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" -msgstr "Первый" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "точность p-значения" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -"Фиксирует линию тренда в полном временном интервале, указанном в случае, " -"если отфильтрованные результаты не включают даты начала или окончания" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" -msgstr "Выбрать временной интервал" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." +msgstr "" +"Таблица, визуализирующая парные t-тесты, которые используются для " +"нахождения статистических различий между группами." -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "Фиксированный" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "Таблица парного t-теста" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" -msgstr "Фиксированный цвет" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "Статистический учет" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Фиксированный цвет" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "Таблицы" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" -msgstr "Фиксированный радиус" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "Опции" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" -msgstr "Поток" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "Таблица" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" -msgstr "Размер шрифта" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "Отображать интерактивную таблицу с данными" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -"Размер шрифта для меток осей, значений деталей и других текстовых " -"элементов" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" -msgstr "Размер шрифта для наибольшего значения в списке" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "Включить имена категорий в качестве оси" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" -msgstr "Размер шрифта для наименьшего значения в списке" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "Ранжирование" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -"Для Bigquery, Presto и Postgres, показывать кнопку подсчета стоимости " -"запроса перед его выполнением." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" -msgstr "Для получения дальнейших инструкций обратитесь к" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" +msgstr "Координаты" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "Направленный" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 -msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "Настройки временных рядов" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" -msgstr "Силовой алгоритм" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "Не временные ряды" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "Игнорировать время" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" +msgstr "Временной ряд" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -"Принудить создание новых таблиц через CTAS или CVAS в Лаборатории SQL в " -"этой схеме при нажатии соответствующих кнопок" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" -msgstr "Принудительный перевод к формату дата/время" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "Агрегированное среднее" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "Обновить" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "Среднее значений за указанный период" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "Принудительно обновить список схем" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "Агрегированная сумма" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "Принудительно обновить список таблиц" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "Сумма значений за обозначенный период" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" -msgstr "Кол-во прогнозных периодов" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "Изменение меры с `до` до `после`" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" -msgstr "Внешний ключ" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" +msgstr "Процентное изменение" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Forest Green" -msgstr "Лесной зеленый" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "Процентное изменение меры с `до` до `после`" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "Данные формы не найдены в кэше, возвращение к метаданным графика." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "Данные формы не найдены в кэше, возвращение к метаданным датасета." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" -msgstr "Форматируемый" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "Расширенная аналитика" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" -msgstr "Форматированный CSV, прикрепленный к письму" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "Используйте настройки Расширенной аналитики ниже" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" -msgstr "Форматированная дата" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "Настройки временных рядов" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" -msgstr "Форматированное значение" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "Формат даты и времени" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" -msgstr "Форматирование" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" +msgstr "Количество разбиений" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" -msgstr "Формула" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" -msgstr "Будущие значения" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" -msgstr "Десятичные знаки" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "Логарифмическая шкала" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" -msgstr "Частота" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "Использовать логарифмическую шкалу" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" -msgstr "Трение" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "Одинаковые размеры дат" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" -msgstr "Сила трения между вершинами" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Пятница" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "Расширенная всплывающая подсказка" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "Дата начала не может быть позже даты конца" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "" +"Расширенная всплывающая подсказка показывает список всех категорий для " +"этой точки." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" -msgstr "Полное имя" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "Скользящее окно" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" -msgstr "Воронка" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "Скользящая средняя" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" -msgstr "Дальнейшая настройка отображения каждого столбца" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" +msgstr "Кумулятивная сумма" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" -msgstr "Дальнейшая настройка отображения каждой меры" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "Минимальный период" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" -msgstr "GROUP BY" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "Сравнение по времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" -msgstr "Индикаторная диаграмма" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "Временной сдвиг" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" -msgstr "Основные свойства" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" +msgstr "1 неделя" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" +msgstr "28 дней" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." -msgstr "Генерация ссылки, пожалуйста, ждите..." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 дней" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" -msgstr "Общая диаграмма" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" +msgstr "52 недели" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" -msgstr "Карта" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" +msgstr "1 год" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" -msgstr "Столбец GeoJson" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" +msgstr "104 недели" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" -msgstr "Настройки GeoJson" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" +msgstr "2 года" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geohash" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" +msgstr "156 недель" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" +msgstr "3 года" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +#, fuzzy +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" +"Наложение одной или нескольких временных рядов из относительного периода " +"времени." -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" -msgstr "Перейдите в режим редактирования для изменения дашборда и добавьте графики" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" +msgstr "Фактические значения" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" -msgstr "Золотой" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "1МИН" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "Имя или URL Google Таблицы" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "1Ч" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "Перерыв между оповещением" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "1Д" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" -msgstr "Сетевой график" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "7Д" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "Формат сетевого графика" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "1М" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" -msgstr "Гравитация" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "1С" -#: superset-frontend/src/explore/constants.ts:68 -#, fuzzy -msgid "Greater or equal (>=)" -msgstr ">= (больше или равно)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Метод" -#: superset-frontend/src/explore/constants.ts:66 -#, fuzzy -msgid "Greater than (>)" -msgstr "Агрегированное среднее" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "asfreq (без изменения)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" -msgstr "Сетка" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "bfill (заполняет пропуски предыдущими значениями)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" -msgstr "Размер сетки" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "ffill (заполняет пропуски следующими значениями)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "Группировать по" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "Медиана" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "Покомпонентное сравнение" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "Измерения, Меры или Процентные меры должны иметь значение" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "Сравнивает один и тот же обобщенный показатель в нескольких группах" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 #, fuzzy -msgid "Group Key" -msgstr "Группировать по" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "Группировать по" - -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "Группируемый" +msgid "Partition Chart" +msgstr "Partition Diagram" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" -msgstr "Handlebars" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "Категориальный" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" -msgstr "Шаблон Handlebars" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" +msgstr "Использовать пропорции области" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -msgid "Has created by" -msgstr "Создан(а)" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Заголовок" - -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "Строка заголовка" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "Тепловая карта" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" -msgstr "Настройки тепловой карты" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "Диаграмма Найтингейл" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "Высота" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "Продвинутая аналитика" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" -msgstr "Высота спарклайна" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "Многослойный" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" -msgstr "Скрыть линию" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "Источник / Цель" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -msgid "Hide chart description" -msgstr "Скрыть описание графика" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "Выберите источник и цель" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "Скрыть слой" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." +msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." -msgstr "Скрыть пароль." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Скрыть панель инструментов" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "Демография" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" -msgstr "Иерархия" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "Гистограмма" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "Диаграмма Санкей" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Главная" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "Проценты" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -#, fuzzy -msgid "Horizon Chart" -msgstr "Horizon Charts" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "" -#: superset/viz.py:2246 -#, fuzzy -msgid "Horizon Charts" -msgstr "Horizon Charts" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "Тип поля страны" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" -msgstr "Горизонтально" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" +msgstr "Полное имя" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" -msgstr "Горизонтально (сверху)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" +msgstr "Код Международного Олимпийского Комитета (cioc)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" -msgstr "Выравнивание по горизонтали" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" +msgstr "Код ISO 3166-1 alpha-2 (cca2)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" -msgstr "Хост" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "Код ISO 3166-1 alpha-3 (cca3)" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "Имя хоста или IP адрес" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "Код страны, который Суперсет ожидает найти в столбце со страной" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "Час" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" +msgstr "Показать пузыри" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" -msgstr "Часов %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "Отображать пузыри поверх стран" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "Смещение времени" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "Максимальный размер пузыря" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" +msgstr "Выбор цвета по" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" -msgstr "На сколько периодов в будущем предсказывать" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "Столбец со страной" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." -msgstr "" -"Как отображать смещения во времени: как отдельные линии; как абсолютную " -"разницу между основным временным рядом и каждым смещением; как процентное" -" изменение; или как соотношение между рядами и смещениями." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" +msgstr "3х буквенный код страны" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" -msgstr "Огромный" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "Показатель, определяющий размер пузяря" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "Коды ISO 3166-2" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "Цвет пузыря" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "Цветовая схема страны" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" -msgstr "ID" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "Карта мира, на которой могут быть указаны значения в разных странах." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "Id корневой вершины дерева." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "Многомерный" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "Несколько переменных" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "Популярно" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +#, fuzzy +msgid "deck.gl charts" msgstr "" -"Если вы используете Presto или Trino, все запросы в Лаборатории SQL будут" -" выполняться от авторизованного пользователя, который должен иметь " -"разрешение на их выполнение. Если включены Hive и " -"hive.server2.enable.doAs, то запросы будут выполняться через техническую " -"учетную запись, но имперсонировать зарегистрированного пользователя можно" -" через свойство hive.server2.proxy.user." -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -"Если вы используете Presto, все запросы в Лаборатории SQL будут " -"выполняться от авторизованного пользователя, который должен иметь " -"разрешение на их выполнение.
Если включены Hive и " -"hive.server2.enable.doAs, то запросы будут выполняться через техническую " -"учетную запись, но имперсонировать зарегистрированного пользователя можно" -" через свойство hive.server2.proxy.user." -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" -msgstr "Если таблица уже существует" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "Выберите графики" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "Если мера задана, сортировка будет произведена на основании значений меры" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" +msgstr "Возникла ошибка при получении графиков" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -"Если повторяющиеся столбцы не перезаписываются, они будут представлены в " -"формате \"X.0, X.1\"." +"Объединяет несколько слоев вместе для формирования сложных визуальных " +"эффектов." -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "" -"Если установлено, выберите схемы, в которые разрешена загрузка CSV на " -"вкладке \"Дополнительно\"." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "deck.gl Многослойный" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." -msgstr "" -"Если таблица уже существует, выберите действие: Ошибка (ничего не " -"делать), Заменить (удалить и воссоздать таблицу) или Добавить (вставить " -"данные)." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "Карта deckGL" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" -msgstr "Игнорировать кэш при создании скриншота" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " +msgstr "Старт (Долгота, Широта): " -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" -msgstr "Игнорировать пустые локации" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " +msgstr "Конец (Долгота, Широта)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" -msgstr "Игнорировать время" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "Начальные долгота и широта" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" -msgstr "Изображение (PNG), встроенное в email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "Указание на столбцы с расположением" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." -msgstr "Ошибка скачивания изображения, пожалуйста, обновите и попробуйте заново." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "Конечные Долгота и Широта" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "" -"Имперсонировать пользователя (Presto, Trino, Drill, Hive, и Google " -"Таблицы)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" +msgstr "Дуга" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Имперсонировать пользователя" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" +msgstr "Целевой цвет" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Импорт" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" +msgstr "Цвет целевого местоположения" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Импортировать %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" +msgstr "Цвет категории" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Импортировать дашборд(ы)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "Выберите измерение, на основе которого определяются категориальные цвета" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Импортировать дашборды" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" +msgstr "Ширина обводки" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Продвинутая настройка" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "Не удалось импортировать график по неизвестной причине" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "deck.gl Дуга" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "3D карты" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "Сеть" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "Импортировать графики" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " +msgstr "Центроид (Долгота и Широта): " -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "Не удалось импортировать дашборд по неизвестной причине" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +#, fuzzy +msgid "Threshold: " +msgstr "Порог метки" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Импортировать дашборды" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +#, fuzzy +msgid "The size of each cell in meters" +msgstr "Размер квадратной ячейки (в пикселях)" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "Не удалось импортировать базу данных по неизвестной причине" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +#, fuzzy +msgid "Aggregation" +msgstr "агрегатная функция" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" -msgstr "Импортировать базу данных из файла" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "Не удалось импортировать датасет по неизвестной причине" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +#, fuzzy +msgid "Contours" +msgstr "Непрерывный" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "Импортировать датасеты" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "Импортировать запросы" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" +msgstr "Вес" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "Не удалось импортировать сохраненный запрос по неизвестной причине" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "Мера, используемая как вес для раскрашивания сетки" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/src/explore/constants.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 #, fuzzy -msgid "In" -msgstr "в" +msgid "deck.gl Contour" +msgstr "deck.gl Дуга" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" -msgstr "Описание, которое будет отправлено вместе с вашим отчетом" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "Экспериментальный" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" -msgstr "Включить имена категорий в качестве оси" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" +msgstr "Настройки GeoJson" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" -msgstr "Включить время" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Толщина линии" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" -msgstr "Индекс" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Параметры" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "Индесный столбец" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +#, fuzzy +msgid "pixels" +msgstr "Пиксели" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "Личные данные" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "Шкала радиуса маркера" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "Внутренний радиус" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" +"Диаграмма принимает данные в формате GeoJSON и отображает их в виде " +"интерактивных полигонов, линий и точек (кругов, значков и/или текста)." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "Внутренний радиус отверстия для кольца" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "deck.gl GeoJSON" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "Поле для ввода поддерживает пользовательские значения, например 30 для 30°" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" +msgstr "Долгота и Широта" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Высота" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Мгновенная Фильтрация" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" +msgstr "Мера, используемая для регулирования высоты" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." +msgstr "" +"Визуализирует геопространственные данные, такие как 3D-здания, ландшафты " +"или объекты в виде сетки." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" +msgstr "deck.gl Сетка" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +#, fuzzy +msgid "Intesity" msgstr "Насыщенность" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 #, fuzzy msgid "Intensity Radius" msgstr "Радиус маркера" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "deck.gl Точечная карта" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" -msgstr "Автоматически интерпретировать формат дата/время" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" +msgstr "Динамическая агрегирующая функция" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" -msgstr "Автоматически интерпретировать формат дата/время" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" +msgstr "Дисперсия" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -msgid "Interval" -msgstr "Интервал" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#, fuzzy +msgid "deviation" +msgstr "Продолжительность" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" -msgstr "Столбец с концом интервала" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "p1" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" -msgstr "Граница интервала" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" +msgstr "p5" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" -msgstr "Цвета интервала" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "p95" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" -msgstr "Столбец с началом интервала" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" +msgstr "p99" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" -msgstr "Интервалы" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" +msgstr "deck.gl 3D Шестигранники" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 #, fuzzy -msgid "Intesity" -msgstr "Насыщенность" +msgid "Polyline" +msgstr "Линия" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "Визуализирует связанные точки, которые образуют путь, на карте." -#: superset/db_engine_specs/ocient.py:274 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 #, fuzzy -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +msgid "deck.gl Path" msgstr "" -"Недопустимая строка для подключения, валидная строка соответствует " -"шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "Недопустимый формат JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +msgid "name" +msgstr "имя" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "Невалидный расширенный тип данных: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +#, fuzzy +msgid "Polygon Column" +msgstr "столбец" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Неверный сертификат" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +#, fuzzy +msgid "Polygon Encoding" +msgstr "Выполняется рассылка" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" -msgstr "" -"Недопустимая строка для подключения, валидная строка соответствует " -"шаблону: ДРАЙВЕР://ИМЯ-ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ-БАЗЫ-ДАННЫХ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +#, fuzzy +msgid "Elevation" +msgstr "Продолжительность" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" +msgstr "Настройки полигона" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" +msgstr "Непрозрачность, принимаются значения от 0 до 100" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -"Недопустимая строка для подключения, валидная строка соответствует " -"шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -"Недопустимая строка для подключения, валидная строка соответствует " -"шаблону:'ДРАЙВЕР://ИМЯ-ПОЛЬЗОВАТЕЛЯ:ПАРОЛЬ@ХОСТ/ИМЯ-БАЗЫ-ДАННЫХ'

Пример:'postgresql://user:password" -"@postgres-db/database'

" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Недопустимое CRON выражение" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" +msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "Недопустимый формат дата/время" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +#, fuzzy +msgid "Emit Filter Events" +msgstr "Фильтрующийся" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "Неверная конфигурация фильтра, пожалуйста, выберите столбец" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" +msgstr "Применять фильтр при щелчке по элементам" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" +msgstr "Множественная фильтрация" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" -msgstr "Недопустимые входные данные" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Неверная конфигурация широты и долготы." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "deck.gl Полигон" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Недопустимые долгота/широта" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "Категория" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" +msgstr "Размер маркера" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Недопустимая numpy функция: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "Единица измерения маркера" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Недопустимые настройки для %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" +msgstr "Квадратные метры" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" +msgstr "Квадратные километры" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" +msgstr "Квадратные мили" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "Недопустимый тип ответа: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" +msgstr "Радиус в метрах" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "Радиус в километрах" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" +msgstr "Радиус в милях" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "Минимальный радиус" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" +"Минимальный размер радиуса окружности (в пикселях). При изменении " +"масштаба это гарантирует, что окружность соответствует этому минимальному" +" радиусу." -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" -msgstr "Выбрать противоположные значения" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "Максимальный радиус" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +#, fuzzy +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" +"Максимальный размер радиуса окружности (в пикселях). При изменении уровня" +" масштабирования это гарантирует, что окружность соответствует этому " +"максимальному радиусу" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" -msgstr "Одобрено" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "Цвет маркера" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "Является измерением" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "На карте отображаются маркеры переменного радиуса и цвета." -#: superset-frontend/src/explore/constants.ts:89 -#, fuzzy -msgid "Is false" -msgstr "Отключено" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "deck.gl Точечная карта" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "В избранном" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" +msgstr "Сетка" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "Фильтруемый" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" -#: superset-frontend/src/explore/constants.ts:80 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 #, fuzzy -msgid "Is not null" -msgstr "Не пусто" +msgid "deck.gl Screen Grid" +msgstr "deck.gl Screen Grid" -#: superset-frontend/src/explore/constants.ts:83 -#, fuzzy -msgid "Is null" -msgstr "Не пусто" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" -#: superset/views/base_api.py:177 -#, fuzzy -msgid "Is tagged" -msgstr "Запущен" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr " исходный код sandboxed парсера Суперсета" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "Содержит дату/время" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "Эта функция отключена в вашей среде по соображениям безопасности." -#: superset-frontend/src/explore/constants.ts:88 -#, fuzzy -msgid "Is true" -msgstr "поток" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "Игнорировать пустые локации" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Ошибка 1000 - Источник данных слишком велик для запроса." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "Игнорировать местоположения, которые не содержат данных о расположении" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Ошибка 1001 - Нетипичная загрузка базы данных." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "Авто масштабирование" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." -msgstr "Не рекомендуется урезать интервал оси в столбчатой диаграмме" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" +"Если отмечено, карта будет смасштабирована к вашим данным после каждого " +"запроса" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "ЯНВ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "Выберете измерение" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "Доп. данные для JS" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSON Метаданные" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +#, fuzzy +msgid "List of extra columns made available in JavaScript functions" +msgstr "Список дополнительных столбцов, доступных в функциях Javascript" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" -msgstr "JSON метаданные" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +#, fuzzy +msgid "JavaScript data interceptor" +msgstr "Javascript редактор данных" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" -msgstr "JSON метаданные не валидны!" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." +msgstr "" +"Определите функцию javascript, которая получает массив данных, " +"используемый в визуализации, и, как ожидается, вернет измененную версию " +"этого массива. Это может быть использовано для изменения свойств данных, " +"фильтрации или расширения массива." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +#, fuzzy +msgid "JavaScript tooltip generator" +msgstr "Javascript генератор всплывающих подсказок" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +"Define a function that receives the input and outputs the content for a " +"tooltip" +msgstr "Задайте функцию, которая получает на вход содержимое всплывающей подсказки" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +#, fuzzy +msgid "JavaScript onClick href" +msgstr "Javascript onClick href" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -"JSON строка, содержащая дополнительную информацию о соединении. Это " -"используется для указания информации о соединении с такими системами как " -"Hive, Presto и BigQuery, которые не укладываются в шаблон " -"\"пользователь:пароль\", который обычно используется в SQLAlchemy." +"Задайте функцию, которая возвращает URL для навигации при " +"пользовательском нажатии" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "ИЮЛ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" +msgstr "Формат легенды" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" +msgstr "Выберите формат значений легенды" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" +msgstr "Расположение легенды" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" +msgstr "Выберите позицию легенды" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "ИЮН" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" +msgstr "Сверху слева" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Январь" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" +msgstr "Сверху справа" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -#, fuzzy -msgid "JavaScript data interceptor" -msgstr "Javascript редактор данных" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" +msgstr "Снизу слева" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -#, fuzzy -msgid "JavaScript onClick href" -msgstr "Javascript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" +msgstr "Снизу справа" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 #, fuzzy -msgid "JavaScript tooltip generator" -msgstr "Javascript генератор всплывающих подсказок" +msgid "Lines column" +msgstr "Столбец с временем" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" -msgstr "Шаблонизацию Jinja." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" +msgstr "" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" -msgstr "Список столбцов в формате JSON из файла, которые будут использованы." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Толщина линии" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." -msgstr "" -"Список столбцов в формате JSON из файла, которые будут использованы. " -"Пример: [\"id\", \"name\", \"gender\", \"age\"]. Если в данном поле " -"указаны названия столбцов, из файла будут загружены только указанные " -"столбцы." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" +msgstr "Ширина линий" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" -msgstr "" -"Список JSON значений, которые следует рассматривать как нулевые. Примеры:" -" [\"\"] для пустых строк, [\"None\", \"N/A\"], [\"nan\", \"null\"]. " -"Предупреждение: База данных Hive поддерживает только одно значение." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" +msgstr "Цвет заливки" -#: superset/views/database/forms.py:404 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -"Список JSON значений, которые следует рассматривать как нулевые. Примеры:" -" [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Предупреждение: База " -"данных Hive поддерживает только одно значение. Используйте [\"\"] для " -"пустой строки." - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Июль" +" Установите прозрачность 0, если вы не хотите переписывать цвет, " +"указанный в GeoJSON" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Июнь" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" +msgstr "Цвет обводки" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" -msgstr "KPI" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" +msgstr "С заливкой" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" -msgstr "Оставить прежние настройки?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" +msgstr "Использовать заливку для объектов" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "Продолжить редактирование" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" +msgstr "С обводкой" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" -msgstr "Ключ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" +msgstr "Отображение обводки" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -#, fuzzy -msgid "Keys for table" -msgstr "Обновить таблицы" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Kilometers" -msgstr "Километры" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" +msgstr "Сделать сетку 3D" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" -msgstr "ОГРАНИЧЕНИЕ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" +msgstr "Размер сетки" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "Метка" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "Определяет размер сетки (в пикселях)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" -msgstr "Линия метки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" -msgstr "Тип метки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" +msgstr "Долгота и Широта" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" -msgstr "Метка уже существует" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" +msgstr "Фиксированный радиус" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Метка для вашего запроса" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "Мультипликатор" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" -msgstr "Положение метки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "Число, на которое умножается мера" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" -msgstr "Порог метки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +#, fuzzy +msgid "Lines encoding" +msgstr "Направление сортировки" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" -msgstr "Маркировка" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +#, fuzzy +msgid "The encoding format of the lines" +msgstr "Показатель, по которому сортировать результаты" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" -msgstr "Метки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" -msgstr "Метки для линий маркера" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" +msgstr "Поменять местами широту и долготу" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" -msgstr "Метки для маркеров" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" +msgstr "Столбец GeoJson" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" -msgstr "Метки для диапазонов" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "Выберите geojson столбец" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" -msgstr "Большой" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "Формат правой оси" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" -msgstr "Последний" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "Показать маркеры" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Дата изменения" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Дата изменения" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "Показывать границы оси Y" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Дата изменения %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "Отображать минимальное и максимальное значение на оси Y" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" -msgstr "Изменено %s пользователем %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "Границы оси Y 2" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" -msgstr "Последнее доступное значение: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "Тип линии" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "Последнее изменение" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#, fuzzy +msgid "linear" +msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "Автор изменений %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#, fuzzy +msgid "basis" +msgstr "Акцент" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "Последнее изменение" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +#, fuzzy +msgid "cardinal" +msgstr "Ошибка" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" -msgstr "Широта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "Гладкая линия" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" -msgstr "Широта для области просмотра" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "Настройки слоя" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" -msgstr "Оформление" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "Линейная интерполяция, определенная в d3.js" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" -msgstr "Оформление" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" +msgstr "Показать фильтр Диапазон" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "Отображение интерактивного селектора временного интервала" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "Дополнительные элементы управления" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" +"Отображает дополнительные элементы управления на самом графике и " +"позволяет менять отображение столбцов: без накопления и с ним." -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "Измененные давно" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "Расположение делений оси X" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" -msgstr "Слева" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" -msgstr "Формат левой оси" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +#, fuzzy +msgid "staggered" +msgstr "Запущен" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" -msgstr "График(и) по левой оси" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "Способ расположения делений по оси X" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" -msgstr "Левый отступ" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" +msgstr "Формат оси X" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" -msgstr "Левый отступ (в пикселях), дает больше пространства меткам оси" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "Логарифмическая ось Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" -msgstr "Слева направо" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "Использовать логарифмическую шкалу для оси Y" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" -msgstr "Левое значение" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "Границы оси Y" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "Устарел" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." +msgstr "" +"Границы для оси Y. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" -msgstr "Легенда" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "Границы оси Y 2" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" -msgstr "Формат легенды" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "Показывать границы оси X" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -msgid "Legend Orientation" -msgstr "Ориентация легенды" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "Отображать минимальное и максимальное значение на оси X" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" -msgstr "Расположение легенды" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "Значения столбцов" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" -msgstr "Тип легенды" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "Показать значение в верхней части столбца" -#: superset-frontend/src/explore/constants.ts:63 -#, fuzzy -msgid "Less or equal (<=)" -msgstr "<= (меньше или равно)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "Столбцы с накоплением" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "Уменьшить кол-во делений оси X" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" +"Уменьшает количество отрисованных делений на оси X. Если флажок " +"установлен, некоторые метки могут быть не отображены. " -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" -msgstr "Светлый" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" -msgstr "Светлый режим" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" +msgstr "" +"Вы не можете использовать расположение делений под углом 45° при " +"использовании временного фильтра" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 #, fuzzy -msgid "Like (case insensitive)" -msgstr "Фильтровать значения (зависит от регистра)" +msgid "stack" +msgstr "С наполнением" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Достигнут предел" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" +msgstr "поток" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" +msgstr "развернуть" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" -msgstr "Тип ограничения" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "Динамика" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" +"Диаграмма временного ряда, которая визуализирует, как связанная метрика " +"из нескольких групп изменяется с течением времени. Для каждой группы " +"используется свой цвет." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." -msgstr "Ограничивает количество извлекаемых ячеек" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "Ограничивает количество отображаемых строк" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "Игровые приставки" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -"Ограничивает количество отображаемых категорий. Эта опция полезна для " -"столбцов с большим количеством уникальных значений, т.к. уменьшает " -"сложность и стоимость запроса." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" +msgstr "Диаграмма с областями (устарело)" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "Непрерывный" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 msgid "Line" msgstr "Линейный" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" -msgstr "Линейный график" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "Графики nvd3" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" -msgstr "Линейный график (устарело)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "Устарело" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" -msgstr "Тип линии" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" +msgstr "Сортировка категорий по" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -"Линейная диаграмма используется для визуализации показателей, полученных " -"в рамках одной категории. Линейная диаграмма - это тип диаграммы, который" -" отображает информацию в виде ряда точек данных, соединенных прямыми " -"отрезками. Это базовый тип диаграммы, распространенный во многих " -"областях." - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" -msgstr "Линейная интерполяция, определенная в d3.js" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "Толщина линии" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" -msgstr "Линейная цветовая схема" - -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Линейная цветовая схема" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" -msgstr "Линейная интерполяция" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -#, fuzzy -msgid "Lines column" -msgstr "Столбец с временем" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 #, fuzzy -msgid "Lines encoding" -msgstr "Направление сортировки" +msgid "Series Limit Sort Descending" +msgstr "Сортировать" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "Ссылка скопирована" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "" +"Сортировка по убыванию или по возрастанию, если есть ограничение на " +"количество категорий" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" +"Визуализирует изменение меры с течением времени, используя столбцы. " +"Добавьте столбец для группировки, чтобы визуализировать показатели уровня" +" группы и то, как они меняются с течением времени." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" -msgstr "Список уникальных значений" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" +msgstr "Столбчатая диаграмма (устарело)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -#, fuzzy -msgid "List of extra columns made available in JavaScript functions" -msgstr "Список дополнительных столбцов, доступных в функциях Javascript" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "Столбчатая" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "Вертикально" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" -msgstr "" -"Список числовых значений для отображения в виде линий на графике. " -"Например, 10,20,30" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Ящик с усами" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "Логарифмическая ось X" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "Использовать логарифмическую шкалу для оси X" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -"Список числовых значений для отображения в виде треугольников на графике." -" Например, 10,20,30" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" -msgstr "Список обновлен" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +#, fuzzy +msgid "Bubble Chart (legacy)" +msgstr "Линейный график (устарело)" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "Редактор CSS" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" +msgstr "Диапазоны" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" -msgstr "Мгновенная отрисовка" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "Диапазоны для выделения с помощью затенения" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Загрузить CSS шаблон" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "Метки диапазона" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Данные загружены в кэш" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "Метки для диапазонов" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Загружено из кэша" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "Маркеры" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" -msgstr "Загрузка" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "" +"Список числовых значений для отображения в виде треугольников на графике." +" Например, 10,20,30" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "Загрузка..." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "Метки маркера" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -#, fuzzy -msgid "Locate the chart" -msgstr "создать новый график" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "Метки для маркеров" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" -msgstr "Логарифмическая шкала" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "Линии маркеров" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "Хранение журнала" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "" +"Список числовых значений для отображения в виде линий на графике. " +"Например, 10,20,30" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" -msgstr "Логарифмическая ось" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "Метки линий маркера" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" -msgstr "Логарифмическая шкала для главной оси Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "Метки для линий маркера" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" -msgstr "Логарифмическая шкала для вторичной оси Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "KPI" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" -msgstr "Логарифмическая ось Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" +"Демонстрирует прогресс одного показателя по отношению к заданной цели. " +"Чем больше заполнение, тем ближе показатель к целевому показателю." -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "Вход в систему" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" -msgstr "Войти при помощи" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "Процентное изменение (временные ряды)" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "Выход из системы" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "Сортировать столбцы" -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Записи" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "Сортировать столбцы по меткам на оси X" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" -msgstr "Длинный штрих" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +#, fuzzy +msgid "Breakdowns" +msgstr "Дата создания" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "Долгота" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "Определяет разложение каждой категории" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" -msgstr "Долгота и Широта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Долгота и Широта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "Столбчатая диаграмма (устарело)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" -msgstr "Долгота и Широта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" +msgstr "Смешанный" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" -msgstr "Долгота для области просмотра" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" +msgstr "Обособленный" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "МАР" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "МАЙ" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "ПН" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "Классическая диаграмма для визуализации изменения показателей со временем." -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "Основной столбец с временем" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" +msgstr "Уровень заряда батареи с течением времени" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" -msgstr "" -"Убедитесь, что настройки графика верно сконфигурированы и источник данных" -" содержит данные для выбранного временного интервала." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" +msgstr "Линейный график (устарело)" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" -msgstr "Некорректный запрос. Ожидаются аргументы slice_id или table_name и db_name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" +msgstr "Тип метки" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Управление" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" +msgstr "Имя категории" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" -msgstr "Управление рассылкой по почте" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Значение" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" -msgstr "Управляйте своими базами данных" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" +msgstr "Процентная доля" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "Обязательно" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "Категория и значение" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." -msgstr "Вручную задать мин./макс. значения для оси Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "Категория и процентная доля" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" -msgstr "Карта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "Категория, значение и процентная доля" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" -msgstr "Стиль карты" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "Текст, отображаемый на метке" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" -msgstr "Mapbox" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "Кольцевая диаграмма" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "Круговая/кольцевая диаграмма" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Март" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "Показывать метки" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" -msgstr "Отступ" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#, fuzzy +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." +msgstr "" +"Отображать метки. Обратите внимание, что метка отображается только при " +"достижении порогового значения 5%." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "Присвойте столбцу формат даты/времени в настройках датасета" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "Вынести метки наружу" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" -msgstr "Маркер" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "Вынести метки за пределы диаграммы" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" -msgstr "Размер маркера" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +#, fuzzy +msgid "Pie Chart (legacy)" +msgstr "Линейный график (устарело)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" -msgstr "Метки маркера" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" +msgstr "Частота" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" -msgstr "Метки линий маркера" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "Год (част=AS)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" -msgstr "Линии маркеров" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "52 недели с началом в Понедельник (част=52W-MON)" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" -msgstr "Размер маркера" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "1 неделя с началом в Воскресенье (част=W-SUN)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" -msgstr "Маркеры" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" +msgstr "1 неделя с началом в Понедельник (част=W-MON)" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Тип разметки" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "День (част=D)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Максимум" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "4 недели (част=4W-MON)" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" -msgstr "Максимальный размер пузыря" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." +msgstr "" +"Периодичность для группировки по времени. Пользователи могут задавать " +"собственную частоту. Для этого нажмите на иконку с информацией." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" -msgstr "Лимит событий" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +#, fuzzy +msgid "Time-series Period Pivot" +msgstr "Time Series - Period Pivot" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" -msgstr "Максимум" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" +msgstr "Формула" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" -msgstr "Максимальный размер шрифта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" +msgstr "Событие" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" -msgstr "Максимальный радиус" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" +msgstr "Интервал" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -#, fuzzy -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -"Максимальный размер радиуса окружности (в пикселях). При изменении уровня" -" масштабирования это гарантирует, что окружность соответствует этому " -"максимальному радиусу" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy -msgid "Maximum value" -msgstr "Суммарные значения" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" -msgstr "Максимальное значение индикатора" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Май" +msgid "Stream" +msgstr "поток" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" -msgstr "Среднее значений за указанный период" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" +msgstr "Расширить" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Mean values" -msgstr "Средние значения" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "Показывать легенду" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" -msgstr "Медиана" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "Отображать легенду для графика" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." -msgstr "" -"Медианная толщина ребра, самое толстое ребро будет в 4 раза толще самой " -"тонкой." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "Отступ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" -msgstr "" -"Медианный размер вершины, самая большая вершина будет в 4 раза больше " -"самой маленькой." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "Дополнительный отступ для легенды" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" -msgstr "Медианные значения" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" +msgstr "Прокрутка" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" -msgstr "Средний" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "Отобразить все" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "Тип легенды" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "Содержимое сообщения" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" +msgstr "Ориентация" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" -msgstr "Метаданные" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" +msgstr "Снизу" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" -msgstr "Параметры метаданных" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" +msgstr "Справа" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "Метаданные синхронизированы" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" +msgstr "Ориентация легенды" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "Метод" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" +msgstr "Показать значение" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Мера" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" +msgstr "Показать значения категорий на графике" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "Мера '%(metric)s' не существует" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "Совместить столбцы в один с накоплением" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" -msgstr "Мера по возрастанию" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "Только общий итог" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Показатель, отраженный на оси X" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "" +"Показывать только общий итог для столбцов с накоплением, и не показывать " +"промежуточные итоги для каждой категории внутри столбца." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Показатель, отраженный на оси Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" +msgstr "Процентный порог" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" -msgstr "Изменение меры с `до` до `после`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "Минимальный порог в процентных пунктах для отображения меток" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" -msgstr "Мера по убыванию" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "Расширенная всплывающая подсказка" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "Показывает список всех данных, доступных в определенный момент времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" -msgstr "Мера для значений вершин" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" +msgstr "Формат времени всплывающей подсказки" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -msgid "Metric name" -msgstr "Имя меры" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "Сортировка данных подсказки по мере" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "Дубль имени меры [%s]" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "Сортировка выбранных мер по убыванию во всплывающей подсказке" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" -msgstr "Процентное изменение меры с `до` до `после`" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "Всплывающая подсказка" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" -msgstr "Показатель, определяющий размер пузяря" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +#, fuzzy +msgid "Sort Series By" +msgstr "Сортировка строк по" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" -msgstr "Мера для отображения нижнего заголовка" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Показатель, по которому сортировать результаты" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +#, fuzzy +msgid "Sort Series Ascending" +msgstr "Сортировать по возрастанию" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "Мера, используемая как вес для раскрашивания сетки" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" -msgstr "Мера, используемая для расчета размера пузыря" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "Повернуть метку оси X" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" -msgstr "Мера, используемая для регулирования высоты" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "Поле для ввода поддерживает пользовательские значения, например 30 для 30°" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +#, fuzzy +msgid "Series Order" +msgstr "категории" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Урезать интервал оси Y" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#, fuzzy msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -"Мера, используемая для определения того, как сортируются верхние " -"категории, если присутствует ограничение по категории или ячейке. Если не" -" определено, возвращается к первой мере (где это уместно)." +"Уменьшить интервал по умолчанию для оси Y. Необходимо задать минимальную " +"и максимальную границы. Обратите внимание, что некоторые линии могут " +"пропасть из области видимости." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "Границы оси Y" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +#, fuzzy msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -"Мера, используемая для определения того, как сортируются верхние " -"категории, если присутствует ограничение по категории или строке. Если не" -" определено, возвращается к первой мере (где это уместно)." +"Границы для оси. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "Объединить меры" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +#, fuzzy +msgid "Show minor ticks on axes." +msgstr "Отображение мелких отметок на оси" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "Меры" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" +msgstr "Последнее доступное значение: %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" +msgstr "Не актуально" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Нет данных" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -"Меры, для которых должен отображаться процент от общего числа. " -"Вычисляется только из данных в пределах ограничения по строкам." +"Нет данных после фильтрации или данные отсутствуют за последний отрезок " +"времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" -msgstr "Середина" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" +"Попробуйте использовать другие фильтры или убедитесь, что в вашем " +"источнике данных есть данные" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" -msgstr "Полночь" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "Размер шрифта числа" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -msgid "Miles" -msgstr "Мили" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "Крошечный" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Минимум" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "Маленький" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" -msgstr "Минимальный период" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "Обычный" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" -msgstr "Минимальная ширина" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" +msgstr "Большой" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "Минимальный период" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "Огромный" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" -msgstr "Мин/макс (без выбросов)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "Размер шрифта подзаголовка" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "Мои" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" +msgstr "Настройки отображения" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" -msgstr "Минимум" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" +msgstr "Подзаголовок" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" -msgstr "Минимальный размер шрифта" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "Описание, отображаемое под Карточкой" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" -msgstr "Минимальный радиус" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" +msgstr "Форматы даты" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" +msgstr "Принудительный перевод к формату дата/время" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" +"Использовать перевод к формату дата/время даже если мера представляет " +"другой тип данных" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Условное форматирование" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Применить условное цветовое форматирование к мерам" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -"Минимальный размер радиуса окружности (в пикселях). При изменении " -"масштаба это гарантирует, что окружность соответствует этому минимальному" -" радиусу." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." -msgstr "Минимальный порог в процентных пунктах для отображения меток" +"Отображает один показатель по центру. Карточку лучше всего использовать, " +"чтобы привлечь внимание к KPI." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -#, fuzzy -msgid "Minimum value" -msgstr "Суммарные значения" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "Карточка" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." -msgstr "Минимальное значение метки для отображения на графике." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "С подзаголовком" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" -msgstr "Минимальное значение индикатора" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Карточка" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" -msgstr "Разметка полотна линиями" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "Временной лаг для сравнения" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "Минута" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "" +"Основываясь на группировке времени, количество периодов времени для " +"сравнения" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" -msgstr "Минут %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "Текст рядом с процентным изменением" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" -msgstr "Пропущенные параметры URL" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "Текст после отображения процентной доли" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "Отсутствующий датасет" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "Показать метку времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Chart" -msgstr "Смешанный график" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "Отображение временную метку" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "Смешанная диаграмма временных рядов" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "Изменено" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "Показать трендовую линию" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" -msgstr "Изменено %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "Отображение трендовой линии" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "Кем изменено" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "Начать ось Y с 0" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "Изменённые столбцы: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" +"Начать ось Y в нуле. Снимите флаг, чтобы ось Y начиналась на минимальном " +"значении данных" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Понедельник" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "Выбрать временной интервал" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "Месяц" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" +"Фиксирует линию тренда в полном временном интервале, указанном в случае, " +"если отфильтрованные результаты не включают даты начала или окончания" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" -msgstr "Месяцев %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +#, fuzzy +msgid "TEMPORAL X-AXIS" +msgstr "Содержит дату/время" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -msgid "More" -msgstr "Подробнее" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "" +"Отображает один показатель, сопровождаемый простой линейной диаграммой, " +"чтобы привлечь внимание к KPI наряду с его изменением с течением времени " +"или другим измерением." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -#, fuzzy -msgid "More filters" -msgstr "Временной фильтр" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Карточка с трендовой линией" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" -msgstr "Только перемещение" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "Настройки усов/выбросов" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "Определяет формулу расчета \"усов\" и выбросов." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" -msgstr "Многомерный" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +#, fuzzy +msgid "Tukey" +msgstr "запрос" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" -msgstr "Многослойный" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "Мин/макс (без выбросов)" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" -msgstr "Многоуровневый" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "2/98 перцентели" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" -msgstr "Несколько переменных" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "9/91 перцентели" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" -msgstr "Несколько" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "Категории для группировки по оси x" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" -msgstr "Несколько линейных диаграмм" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +#, fuzzy +msgid "Distribute across" +msgstr "Выполнить выбранный запрос" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -"Несколько расширений файлов столбчатого формата не разрешены к загрузке. " -"Пожалуйста, убедитесь, что все файлы имеют одинаковое расширение." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" -msgstr "Множественная фильтрация" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -"Для уточнения форматов и получения более подробной информации, посмотрите" -" Python-библиотеку geopy.points" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" -msgstr "" -"Разрешён множественный выбор, иначе можно выбрать только одно значение " -"фильтра" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "Графики Apache" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" -msgstr "Мультипликатор" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +#, fuzzy +msgid "Bubble size number format" +msgstr "Форматирование маленьких чисел" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "Должно быть уникальным" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Пузырьковая диаграмма" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" -msgstr "Выберите график или дашборд" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" +msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "Должен быть указан хотя бы один числовой столбец" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +#, fuzzy +msgid "Logarithmic x-axis" +msgstr "Логарифмическая ось Y" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +#, fuzzy +msgid "Rotate y axis label" +msgstr "Повернуть метку оси X" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" -msgstr "Необходимо указать значение для фильтров с операторами сравнения" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "Отступ названия оси Y" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" -msgstr "Мои красивые цвета" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "Логарифмическая ось Y" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" -msgstr "Мой столбец" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "Урезать интервал оси Y" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Моя мера" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +msgstr "" +"Уменьшить интервал по умолчанию для оси Y. Необходимо задать минимальную " +"и максимальную границы. Обратите внимание, что некоторые линии могут " +"пропасть из области видимости." -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" -msgstr "Пусто" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Тип расчёта" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "НОЯ" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "СЕЙЧАС" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -msgid "NUMERIC" -msgstr "Числовой (NUMERIC/DECIMAL)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +#, fuzzy +msgid "Percent of total" +msgstr "Показывать общий итог" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Имя" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" +msgstr "Метки" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "Имя обязательно" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Содержимое ячейки" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "Имя должно быть уникальным" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Категория и процентная доля" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." -msgstr "Имя таблицы, созданной из файла столбчатого формата." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +#, fuzzy +msgid "What should be shown as the label" +msgstr "Текст, отображаемый на метке" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "Имя таблицы, созданной из Excel файла." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Содержимое ячейки" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" -msgstr "Имя таблицы, созданной из CSV файла." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +#, fuzzy +msgid "What should be shown as the tooltip label" +msgstr "Текст, отображаемый на метке" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" -msgstr "Имя столбца, содержащее id родительской вершины" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "Отображать метки" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" -msgstr "Имя столбца id" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "Показывать общий итог" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" -msgstr "Имя исходных вершин" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "Отображать метки" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "Имя таблицы, которая существует в базе данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." +msgstr "" +"Отображает изменение показателя по мере сужения воронки. Эта классическая" +" диаграмма полезна для визуализации перехода между этапами процесса или " +"жизненного цикла." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" -msgstr "Имя конечных вершин" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" +msgstr "Воронка" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" -msgstr "Дайте имя базе данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "Последовательность" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" -msgstr "Нужна помощь? Узнайте, как подключаться к вашей базе данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "Столбцы для группировки" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" -msgstr "Нужна помощь? Узнайте больше о" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "Основные свойства" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" -msgstr "Ошибка сети" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Минимум" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Ошибка сети." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "Минимальное значение индикатора" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "Новый график" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Максимум" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "Добавленные столбцы: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "Максимальное значение индикатора" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -msgid "New dataset" -msgstr "Новый датасет" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "Начальный угол" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" -msgstr "Новое имя датасета" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "Угол, с которого начинается ось прогресса" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "Новый набор фильтров" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "Конечный угол" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -#, fuzzy -msgid "New header" -msgstr "Подзаголовок" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "Угол, под которым заканчивается ось прогресса" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "Новая вкладка" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "Размер шрифта" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" -msgstr "Новая вкладка (CTRL + Q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "" +"Размер шрифта для меток осей, значений деталей и других текстовых " +"элементов" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" -msgstr "Новая вкладка (CTRL + T)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "Формат значения" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Следующий" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "Дополнительный текст перед значением, например, единица измерения" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" -msgstr "Диаграмма Найтингейл" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "Показывать указатель" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "Нет" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "Отображение указателя" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "Пока нет %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" +msgstr "Анимация" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "Нет доступа!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "Анимировать прогресс и значение или просто отображать их" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" -msgstr "Нет данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "Ось" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" -msgstr "Нет результатов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "Показывать деления на оси" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "недавние(их)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "Отображение мелких отметок на оси" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -msgid "No annotation layers" -msgstr "Нет слоев аннотаций" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "Показывать разделительные линии" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "Пока нет слоев аннотаций" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "Отображение линий разделения на оси" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Пока нет аннотаций" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" +msgstr "Количество разделителей" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -msgid "No applied filters" -msgstr "Фильтры не применены" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "Количество разделенных сегментов на индикаторе" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." -msgstr "Нет доступных фильтров." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "Прогресс" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Нет графиков" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "Показывать прогресс" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -#, fuzzy -msgid "No charts yet" -msgstr "Нет графиков" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "Нет столбцов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" +msgstr "Перекрывание" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -#, fuzzy -msgid "No columns found" -msgstr "Столбцы формата дата/время не найдены" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" +msgstr "Индикатор прогресса накладывается при наличии нескольких групп данных" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" -msgstr "Не найдено подходящих столбцов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "Закругление на концах" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -#, fuzzy -msgid "No compatible datasets found" -msgstr "Не найдено подходящих столбцов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "Оформление концов индикатора круглыми заглушками" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -#, fuzzy -msgid "No compatible schema found" -msgstr "Не найдено подходящих столбцов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" +msgstr "Интервалы" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Нет дашбордов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "Граница интервала" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "Нет дашбордов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." +msgstr "" +"Границы интервала, разделенные запятой, например, 2,4,5 для интервалов " +"0-2, 2-4 и 4-5. Последнее число должно быть равно заданному максиму." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Нет данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" +msgstr "Цвета интервала" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -"Нет данных после фильтрации или данные отсутствуют за последний отрезок " -"времени" +"Номера цветов, разделенные запятой, например, 1,2,4. Целые числа задают " +"цвета из выбранной цветовой схемы и начинаются с 1 (не с нуля). Длина " +"должна соответствовать границам интервала." -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "В файле нет данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." +msgstr "" +"Использует индикатор для демонстрации прогресса показателя в достижении " +"цели. Положение циферблата показывает ход выполнения, а конечное значение" +" на индикаторе представляет целевое значение." -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" -msgstr "Не найдено таблиц в базе данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" +msgstr "Индикаторная диаграмма" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "Нет баз данных, удовлетворяющих вашему поиску" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "Имя исходных вершин" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." -msgstr "Описание отсутствует." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "Имя конечных вершин" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "" -"Пока нет избранных графиков, для добавления в избранное нажмите на " -"звездочку рядом с графиком" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "Исходная категория" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -"Пока нет избранных дашбордов, для добавления в избранное нажмите на " -"звездочку рядом с дашбордом" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" -msgstr "Без фильтрации" +"Категория исходных вершин предназначена для задания цветов. Если вершина " +"связана более, чем с одной категорией, только первая будет использована." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Не выбраны фильтры." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "Целевая категория" -#: superset-frontend/src/components/Table/index.tsx:204 -msgid "No filters" -msgstr "Нет фильтров" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "Категория целевых вершин" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." -msgstr "Не применено ни одного фильтра к данному дашборду." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "Свойства графика" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" -msgstr "Конфигурация графика не сохранилась" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "Оформление" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -#, fuzzy -msgid "No global filters are currently added" -msgstr "Не применено ни одного фильтра" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "Формат сетевого графика" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#, fuzzy -msgid "No matching records found" -msgstr "Записи не найдены" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "Силовой алгоритм" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" -msgstr "Количество столбцов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -#, fuzzy -msgid "No recents yet" -msgstr "недавние(их)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "Оформление ребер" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "Записи не найдены" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" -msgstr "Нет результатов" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "Ничего -> Ничего" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "Записи не найдены" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "Ничего -> Стрелка" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" -msgstr "Не найдено результатов по вашим критериям" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "Круг -> Стрелка" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" -msgstr "Не было получено данных по этому запросу" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "Круг -> Круг" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." -msgstr "" -"По этому запросу не было возвращено данных. Если вы ожидали увидеть " -"результаты, убедитесь, что все фильтры настроены правильно и источник " -"данных содержит записи для заданного временного интервала." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "Разрешить перемещение вершин" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" -msgstr "Не было получено данных для этого датасета" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "Включить перемещение вершин в режиме силового алгоритма." -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" -msgstr "Не было получено данных для этого датасета" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "Включить перемещение по графику" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -msgid "No saved expressions found" -msgstr "Не найдено сохраненных выражений" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "Отключено" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" -msgstr "Не найдено сохраненных мер" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "Только масштабирование" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -#, fuzzy -msgid "No saved queries yet" -msgstr "сохраненные(ых) запросы(ов)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "Только перемещение" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" -msgstr "Не найдены сохраненные результаты, необходимо повторно выполнить запрос" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "Масштабирование и перемещение" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -"Такой столбец не найден. Чтобы фильтровать по мере, попробуйте " -"использовать вкладку Свой SQL." - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -#, fuzzy -msgid "No table columns" -msgstr "Нет столбцов формата дата/время" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" -msgstr "Столбцы формата дата/время не найдены" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "Режим выбора вершин" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "Нет столбцов формата дата/время" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "Один" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "Не найден валидатор (сконфигурированный для драйвера)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "Несколько" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" -msgstr "Не найден валидатор с именем {} (сконфигурированный для драйвера {})" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "Разрешить выбор вершин" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" -msgstr "Расположение метки вершины" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "Порог метки" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" -msgstr "Режим выбора вершин" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "Минимальное значение метки для отображения на графике." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 msgid "Node size" msgstr "Размер вершины" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" -msgstr "Пусто" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "" +"Медианный размер вершины, самая большая вершина будет в 4 раза больше " +"самой маленькой." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" +msgstr "Толщина ребра" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "" +"Медианная толщина ребра, самое толстое ребро будет в 4 раза толще самой " +"тонкой." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "Длина ребер" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "Длина ребер между вершинами" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "Гравитация" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" -msgstr "Ничего -> Стрелка" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "Сила притяжения вершин к центру" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "Ничего -> Ничего" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" +msgstr "Отталкивание" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "Обычный" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "Сила отталкивания вершин" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" +msgstr "Трение" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" -msgstr "Нормализовать" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "Сила трения между вершинами" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" -msgstr "Не временные ряды" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -msgid "Not added to any dashboard" -msgstr "Не добавлен ни в один дашборд" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "Сетевой график" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" -msgstr "Не доступно" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "Структура" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" -msgstr "Не равно (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Сортировка по убыванию или по возрастанию" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 #, fuzzy -msgid "Not in" -msgstr "аннотация" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "Не пусто" +msgid "Series type" +msgstr "Тип рядов" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" -msgstr "Условие не выполнялось" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "Гладкая линия" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" -msgstr "Не актуально" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Не срабатывало" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "Способ уведомления" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "Ноябрь" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" -msgstr "Сейчас" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "Использовать накопление" -#: superset/views/database/forms.py:211 -msgid "Null Values" -msgstr "Пустые значения" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" +msgstr "Диаграмма с областями" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" -msgstr "Пустые значения" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "Отобразить область под кривыми. Применимо только для линий\"" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Null или Пусто" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "Непрозрачность диаграммы областей" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "Пустые значения" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "Маркер" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" -msgstr "Числовой формат" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "Отобразить маркеры на данных. Применимо только для линий." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "Размер маркера" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" -msgstr "Числовой формат" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "Размер маркера. Также применяется к прогнозным значениям." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" -msgstr "Числовой формат" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "Первичная" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "Вторичная" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" -msgstr "Кол-во десятичных разрядов для округления числа" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "Первичная или вторичная ось Y" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +msgid "Shared query fields" +msgstr "Поля общедоступного запроса" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" +msgstr "Запрос А" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" -msgstr "Количество периодов для сравнения" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" +msgstr "Расширенный анализ: запрос А" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" -msgstr "Количество периодов для сравнения" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" +msgstr "Запрос Б" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" -msgstr "Количество строк файла для чтения" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" +msgstr "Расширенный анализ: запрос Б" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "Количество строк файла для чтения." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "Масштабирование графика" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" -msgstr "Количество строк для пропуска в начале файла" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "Включить элементы управления масштабированием данных" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "Количество строк для пропуска в начале файла." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "Разметка полотна линиями" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" -msgstr "Количество разделенных сегментов на индикаторе" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "Рисует разделительные линии для небольших отметок оси Y" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Формат первичной оси Y" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" +"Границы для оси Y. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" -msgstr "Числовой диапазон" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "Формат первичной оси Y" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "ОКТ" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "Логарифмическая шкала для главной оси Y" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "ОК" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Формат вторичной оси Y" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "ПЕРЕЗАПИСАТЬ" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Границы для оси Y. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Октябрь" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "Формат вторичной оси Y" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "Оффлайн" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +#, fuzzy +msgid "Secondary currency format" +msgstr "Формат вторичной оси Y" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "Смещение" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "Название вторичной оси Y" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" -msgstr "На перерыве" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "Логарифмическая шкала для вторичной оси Y" -#: superset-frontend/src/explore/controls.jsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -"Один или несколько столбцов для группировки. Столбцы с множеством " -"уникальных значений должны включать порог количества категорий для " -"снижения нагрузку на базу данных и на ускорения отображения графика." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." -msgstr "" -"Один или несколько столбцов для группировки. Столбцы с множеством " -"уникальных значений должны включать показатель для сортировки и порог " -"количества значений для снижения нагрузку на базу данных и на ускорения " -"отображения графика." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" +msgstr "Смешанный график" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" -msgstr "" -"Один или несколько столбцов, используемых в роли столбцов в сводной " -"таблице" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "Вынести метки за пределы диаграммы" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "Линия метки" -#: superset-frontend/src/explore/controls.jsx:245 -#, fuzzy -msgid "One or many controls to pivot as columns" -msgstr "" -"Выберите один или несколько ... для отображения показателей в столбцах " -"сводной таблицы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "Проводит линию от диаграммы к метке, когда метки находятся снаружи" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Выберите одну или несколько мер для отображения" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" +msgstr "Показать общий итог" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "Один или несколько столбцов уже существуют" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "Отображать совокупное количество" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "Один или несколько столбцов дублируются" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "Форма круговой диаграммы" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "Один или несколько столбцов не существуют" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "Внешний радиус" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "Одна или несколько мер уже существуют" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "Внешний радиус круговой диаграммы" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "Одна или несколько мер дублируются" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "Внутренний радиус" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "Одна или несколько мер не существуют" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "Внутренний радиус отверстия для кольца" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." -msgstr "" -"Один или несколько параметров, необходимых для настройки базы данных, " -"отсутствуют" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "Классическая круговая/кольцевая диаграмма." -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "" -"Один или несколько параметров, указанных в запросе, неверно " -"отформатированы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "Круговая диаграмма" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." -msgstr "Один или несколько параметров, указанных в запросе, отсутствуют" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" +msgstr "Итого: %s" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "Максимальное значение мер. Это необязательная настройка" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "Один или несколько слоев аннотации не удалось загрузить." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "Положение метки" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." -msgstr "Только SELECT запросы доступны для этой базы данных." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "Радар" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" -msgstr "Только общий итог" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "Настроить меры" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "Доступны только SELECT запросы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "Дальнейшая настройка отображения каждой меры" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "Круглая форма радара" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "Фильтр будет применён только к выбранным панелям" - -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -"Показывать только общий итог для столбцов с накоплением, и не показывать " -"промежуточные итоги для каждой категории внутри столбца." -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "Поддерживаются только одиночные запросы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" +msgstr "Диаграмма радар" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "Доступные расширения файлов: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "Основная мера" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" -msgstr "Произошла ошибка!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "Основная мера используется для определения размера сегмента дуги" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "Прозрачность" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "Вторичная мера" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" +"[необязательно] вторичная мера используется для определения цвета как " +"доли по отношению к основной мере. Если не выбрано, цвет задается " +"согласно имени категории" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "Непрозрачность всех кластеров, точек и меток. Между 0 и 1." - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." -msgstr "Непрозрачность диаграммы областей" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" -msgstr "Непрозрачность, принимаются значения от 0 до 100" - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Открыть вкладку источника данных" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" +"Когда предоставляется только основная мера, используется категориальная " +"цветовая схема." -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "Открыть в SQL редакторе" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "" +"Когда предоставляется вторичная мера, используется линейная цветовая " +"схема." -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "Открыть в SQL редакторе" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "Иерархия" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -"Работа с базой данных в асинхронном режиме означает, что запросы " -"исполняются на удалённых воркерах, а не на веб-сервере Superset. Это " -"подразумевает, что у вас есть установка с воркерами Celery. Обратитесь к " -"документации по настройке за дополнительной информацией." - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" -msgstr "Оператор" - -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Оператор не определен для агрегатора: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -"Необязательное содержимое CA_BUNDLE для валидации HTTPS запросов. " -"Доступно только в определенных драйверах баз данных" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" -msgstr "Формат временной строки" - -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" -msgstr "Формат числовой строки" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." -msgstr "Необязательное имя столбца данныхэ" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" -msgstr "Необязательное предупреждение об использовании этой меры" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "Диаграмма Солнечные лучи" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" -msgstr "Опции" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "Многоуровневый" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" -msgstr "Или выберите из списка других поддерживаемых баз данных:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" -msgstr "Упорядочить результаты по выбранным столбцам" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" +msgstr "Общая диаграмма" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" -msgstr "Упорядочивание" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -msgid "Orientation" -msgstr "Ориентация" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" +msgstr "восстановить масштабирование" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" -msgstr "Ориентация диаграммы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" +msgstr "Стиль категорий" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -#, fuzzy -msgid "Orientation of filter bar" -msgstr "Ориентация дерева" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" +msgstr "Непрозрачность диаграммы с областями" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" -msgstr "Ориентация дерева" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" -msgstr "Исходные данные" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "Размер маркера" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "Расположение столбцов как в исходной таблице" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "" +"Диаграммы с областями похожи на линейные диаграммы в том смысле, что они " +"отображают показатели с одинаковым масштабом, но диаграммы областей " +"накладывают эти показатели друг на друга." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "Исходное значение" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "Диаграмма с областями" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -#, fuzzy -msgid "Orthogonal" -msgstr "Перпендикулярно" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" +msgstr "Название оси" -# здесь идет речь про прочие категории графиков, помимо основных категорий -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" -msgstr "Прочее" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "ОТСТУП ЗАГОЛОВКА ОСИ" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" -msgstr "Туристический режим" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" +msgstr "ПОЛОЖЕНИЕ ЗАГОЛОВКА ОСИ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" -msgstr "Внешний радиус" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" +msgstr "Формат Оси" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" -msgstr "Внешний радиус круговой диаграммы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" +msgstr "Логарифмическая ось" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" -msgstr "Перекрывание" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "Рисует разделительные линии для небольших отметок оси" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "" -"Наложение одной или нескольких временных рядов из относительного периода " -"времени." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" +msgstr "Настройка интервала оси" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -#, fuzzy -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "" -"Наложение одной или нескольких временных рядов из относительного периода " -"времени." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "Не рекомендуется урезать интервал оси в столбчатой диаграмме" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" +msgstr "Границы оси" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" +"Границы для оси. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" -msgstr "Переопределить единицу времени" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" -msgstr "Переопределить временной интервал" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Перезаписать" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" +msgstr "Ориентация графика" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "Перезаписать и исследовать" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" +msgstr "Направление столбцов" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Перезаписать дашборд [%s]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" +msgstr "Горизонтально" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" -msgstr "Перезаписать повторяющиеся столбцы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" +msgstr "Ориентация диаграммы" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" -msgstr "Перезаписать существующий" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "" +"Столбчатые диаграммы используются для отображения показателей в виде " +"серии столбцов." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Вставить этот запрос в редактор SQL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" +msgstr "Столбчатая диаграмма" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" +"Линейная диаграмма используется для визуализации показателей, полученных " +"в рамках одной категории. Линейная диаграмма - это тип диаграммы, который" +" отображает информацию в виде ряда точек данных, соединенных прямыми " +"отрезками. Это базовый тип диаграммы, распространенный во многих " +"областях." -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "Владелец" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Владельцы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" +msgstr "Линейный график" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "Неверный список владельцев" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." +msgstr "" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." -msgstr "Владельцы – это список пользователей, которые могут изменять дашборд." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "Точечная диаграмма" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name" -" or username." +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -"Владельцы – это список пользователей, которые могут изменять дашборд. " -"Можно искать по имени или никнейму." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" -msgstr "Размер страницы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +#, fuzzy +msgid "Step type" +msgstr "Таблица Данных" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" -msgstr "Таблица парного t-теста" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Начало" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Метод ресемплирования данных библиотеки Pandas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" +msgstr "Середина" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Правило ресемплирования данных библиотеки Pandas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Конец" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" +"Определяет, должен ли шаг отображаться в начале, середине или конце между" +" двумя точками данных" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Ошибка параметра" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Параметры" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +#, fuzzy +msgid "Stepped Line" +msgstr "Таблица временных рядов" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " -msgstr "Параметры " +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "ID" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "Имя столбца id" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 msgid "Parent" msgstr "Родитель" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "Парсинг дат" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "Имя столбца, содержащее id родительской вершины" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" -msgstr "Покомпонентное сравнение" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "Необязательное имя столбца данныхэ" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -#, fuzzy -msgid "Partition Chart" -msgstr "Partition Diagram" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "Id корневой вершины дерева." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "Мера для значений вершин" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "Оформление дерева" -#: superset/viz.py:3069 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 #, fuzzy -msgid "Partition Diagram" -msgstr "Partition Diagram" +msgid "Orthogonal" +msgstr "Перпендикулярно" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" -msgstr "Количество разбиений" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +#, fuzzy +msgid "Radial" +msgstr "Ошибка" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" +msgstr "Ориентация дерева" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "Пароль" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" +msgstr "Слева направо" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "Справа налево" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -#, fuzzy -msgid "Paste content of service credentials JSON file here" -msgstr "Скопировать и вставить .json файл сервисного аккаунта сюда" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "Сверху вниз" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "Снизу вверх" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" -msgstr "Паттерн" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "Ориентация дерева" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" -msgstr "Процентное изменение" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "Расположение метки вершины" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" -msgstr "Процентная доля" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "слева" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" -msgstr "Процентное изменение" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" +msgstr "сверху" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" -msgstr "Процентные меры" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" +msgstr "справа" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" -msgstr "Процентный порог" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" +msgstr "снизу" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" -msgstr "Проценты" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +#, fuzzy +msgid "Position of intermediate node label on tree" +msgstr "Расположение метки дочерней вершины на дереве" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" -msgstr "Производительность" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "Положение метки дочернего элемента" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" -msgstr "Среднее за период" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "Расположение метки дочерней вершины на дереве" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "Периоды" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "Акцент" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" -msgstr "Периоды должны быть целым числом" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "предок" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." -msgstr "Лицо или группа, которые утвердили этот график" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" +msgstr "потомок" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." -msgstr "Лицо или группа, которые утвердили этот дашборд" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "Подсвечивается при наведении" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "Лицо или группа, которые утвердили этот показатель" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "Физический" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "Пустой круг" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "Физический (таблица или представление)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" +msgstr "Круг" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "Физический датасет" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" +msgstr "Прямоугольник" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" -msgstr "Выберите измерение, на основе которого определяются категориальные цвета" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "Треугольник" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "" -"Выберите степень детализации в разделе Время или снимите флажок " -"\"Включить время\"." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "Ромб" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "Выберите меру для левой оси" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "Закрепить" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "Выберите меру для правой оси" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "Стрела" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "Выберите меру для x, y и размера" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +#, fuzzy +msgid "Symbol size" +msgstr "Размер маркера" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "Выберите меру для отображения" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "Визуализирует несколько уровней иерархии, используя древовидную структуру." -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "Выберите меру!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "Древовидная диаграмма" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." -msgstr "Выберите имя для базы данных." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "Показать верхние метки" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." -msgstr "Выберите имя для базы данных, которое будет отображаться в Суперсете." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "Показывать метки, когда у вершины есть дочерние элементы." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "Ключ" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +#, fuzzy +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" +"Показывает иерархические взаимосвязи данных со значением, представленным " +"областью, показывая пропорцию и вклад в целое." -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "Выберите временную детализацию для вашего временного ряда" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Плоское дерево" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +#, fuzzy +msgid "Total" +msgstr "Показывать общий итог" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +#, fuzzy +msgid "Assist" +msgstr "Акцент" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." -msgstr "Выберите название для вашей аннотации" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "создать" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "создать" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "Выберите хотя бы одну меру" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Столбцы временных рядов" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -"Выберите один или несколько столбцов, которые должны отображаться в " -"аннотации. Если вы не выберите столбец, все столбцы будут отображены." - -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Выберите свой любимый язык разметки" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" -msgstr "Круговая диаграмма" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" -msgstr "Форма круговой диаграммы" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Поиск по всем графикам" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" -msgstr "Закрепить" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Сводная таблица" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Загрузка..." -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "Handlebars" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" -msgstr "Сводные данные" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "значение обязательно" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "Высота каждого ряда (в пикселях)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" +msgstr "Шаблон Handlebars" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" -msgstr "Пиксели" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "Шаблон handlebars, примененный к данным" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" -msgstr "Отобразить все" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" +msgstr "Включить время" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" +"Добавляет столбец даты/времени с группировкой дат, как определено в " +"разделе Время" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" -msgstr "Пожалуйста, примените изменения фильтров" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "Процентные меры" -#: superset/sqllab/query_render.py:118 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -"Пожалуйста, проверьте ваш запрос и подтвердите, что все параметры шаблона" -" заключены в двойные фигурные скобки, например, \"{{ from_dttm }}\". " -"Затем попробуйте повторно выполнить запрос." -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." -msgstr "" -"Пожалуйста, проверьте ваш запрос на синтаксические ошибки возле символа " -"\"%(syntax_error)s\". Затем выполните запрос заново." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "Показывать общий итог" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -"Пожалуйста, проверьте ваш запрос на наличие синтаксических ошибок рядом с" -" \"%(server_error)s\". Затем выполните запрос заново" +"Показать общие итоговые значения выбранных показателей. Обратите " +"внимание, что ограничение количества строк не применяется к результату." -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." -msgstr "" -"Пожалуйста, проверьте параметры вашего шаблона на наличие синтаксических " -"ошибок и убедитесь, что они совпадают с вашим SQL-запросом и заданными " -"параметрами. Затем попробуйте выполнить свой запрос еще раз." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" +msgstr "Упорядочивание" -#: superset/viz.py:3234 -#, fuzzy -msgid "Please choose at least one groupby" -msgstr "Выберите хотя бы одно поле \"Группировать по\"" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "Упорядочить результаты по выбранным столбцам" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "Выберите разные меры для левой и правой осей" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Сортировка по убыванию" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "Пожалуйста, подтвердите действие" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "Серверная пагинация" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" +msgstr "Включить серверную пагинацию результатов (экспериментально)" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Введите SQLAlchemy URI для тестирования" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "Серверный размер страницы" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "Введите имя набора фильтров" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "Строчек на странице, 0 означает все строки" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "Пожалуйста, введите пароль еще раз" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "Режим запроса" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "Измерения, Меры или Процентные меры должны иметь значение" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "Пожалуйста, обратитесь к создателю графика за помощью." -msgstr[1] "Пожалуйста, обратитесь к создателям графика за помощью." -msgstr[2] "Пожалуйста, обратитесь к создателям графика за помощью." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "CSS стили" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "Пожалуйста, сохраните запрос, чтобы включить функцию \"поделиться\"" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "CSS, примененный к графику" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -"Пожалуйста, сначала сохраните график перед тем, как создавать новую " -"рассылку." -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "" -"Пожалуйста, сначала сохраните дашборд перед тем, как создавать новую " -"рассылку." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +#, fuzzy +msgid "Range for Comparison" +msgstr "Столбец с датой" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" -msgstr "Пожалуйста, для продолжения выберите и датасет, и тип графика" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "Столбец с датой" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "Столбцы для группировки по столбцам" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Строки" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "Столбцы для группировки по строкам" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" +msgstr "Применить меры к" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" +msgstr "Лимит ячеек" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." +msgstr "Ограничивает количество извлекаемых ячеек" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" +"Мера, используемая для определения того, как сортируются верхние " +"категории, если присутствует ограничение по категории или ячейке. Если не" +" определено, возвращается к первой мере (где это уместно)." -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "Плагины" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "Функция агрегирования" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" -msgstr "Цвет маркера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" +msgstr "Количество" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" -msgstr "Радиус маркера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "Количество уникальных значений" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" -msgstr "Шкала радиуса маркера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" +msgstr "Список уникальных значений" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" -msgstr "Единица измерения радиуса маркера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "Сумма" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" -msgstr "Размер маркера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" +msgstr "Среднее" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" -msgstr "Единица измерения маркера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "Медиана" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "Дисперсия" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "Стандартное отклонение" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "Указание на столбцы с расположением" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "Минимум" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" -msgstr "Маркеры" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "Максимум" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "Точки и кластеры будут обновляться по мере изменения области просмотра" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "Первый" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -#, fuzzy -msgid "Polygon Column" -msgstr "столбец" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "Последний" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -#, fuzzy -msgid "Polygon Encoding" -msgstr "Выполняется рассылка" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "Сумма как доля целого" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" -msgstr "Настройки полигона" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "Сумма как доля строк" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -#, fuzzy -msgid "Polyline" -msgstr "Линия" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "Сумма как доля столбцов" -#: superset/views/sql_lab/views.py:87 -#, fuzzy -msgid "Pop Tab Link" -msgstr "Скопировать ссылку" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "Количество, как доля от целого" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "Популярно" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "Количество, как доля от строк" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "Количество, как доля от столбцов" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" +"Агрегатная функция, применяемая для сводных таблиц и вычислении суммарных" +" значений." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "Port" -msgstr "Порт" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "Показать общий итог по строкам" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "Порт %(port)s хоста \"%(hostname)s\" отказал в подключении." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "Отображать общий итог по строке" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "Показать общий итог по строкам" -#: superset/views/dashboard/mixin.py:86 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 #, fuzzy -msgid "Position JSON" -msgstr "" +msgid "Display row level subtotal" +msgstr "Отображать общий итог по строке" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" -msgstr "Расположение метки дочерней вершины на дереве" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "Показать общий итог по столбцам" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" -msgstr "Расположение промежуточного итога на уровне столбца" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "Отображать общий итог по столбцу" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 #, fuzzy -msgid "Position of intermediate node label on tree" -msgstr "Расположение метки дочерней вершины на дереве" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" -msgstr "Расположение промежуточного итога на уровне строки" +msgid "Show columns subtotal" +msgstr "Показать общий итог по столбцам" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" -msgstr "На базе Apache Superset" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +#, fuzzy +msgid "Display column level subtotal" +msgstr "Отображать общий итог по столбцу" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" -msgstr "Предварительная фильтрация" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "Транспонировать таблицу" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "Предварительно выбрать доступные значения для фильтра" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "Поменять местами строки и столбцы" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" -msgstr "Предварительная фильтрация обязательна" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" +msgstr "Объединить меры" -#: superset/connectors/sqla/views.py:347 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" +"Отображать меры рядом в каждом столбце, в отличие от отображения каждого " +"столбца рядом для каждой меры." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" -msgstr "Прогноз" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "Формат времени D3 для столбцов типа дата/время" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" -msgstr "Предиктивная аналитика" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" +msgstr "Сортировка строк по" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Предпросмотр" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "По алфавиту А-Я" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "Предпросмотр «%s»" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "По алфавиту Я-А" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Предыдущий" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" +msgstr "Значение по возрастанию" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" -msgstr "Предыдущая строка" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "Значение по убыванию" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "Первичная" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "Сменить порядок строк." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" -msgstr "Основная мера" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" +msgstr "Доступные режимы сортировки:" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" -msgstr "Первичный ключ" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "По ключу: использовать имена строк как ключ сортировки" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "Первичная или вторичная ось Y" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "По значению: использовать значения мер как ключ сортировки" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -#, fuzzy -msgid "Primary y-axis Bounds" -msgstr "Формат первичной оси Y" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" +msgstr "Сортировать столбцы по" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "Формат первичной оси Y" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "Сменить порядок столбцов." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "Приватный ключ" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "По ключу: использовать имена столбцов как ключ сортировки" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "Приватный ключ и пароль" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "Расположение строк подытогов" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" -msgstr "Пароль приватного ключа" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "Расположение промежуточного итога на уровне строки" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" -msgstr "Продолжить" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "Расположение столбцов подытогов" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "Профиль" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "Расположение промежуточного итога на уровне столбца" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Изображение профиля, сгенерированное сервисом Gravatar" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" +msgstr "Условное форматирование" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "Прогресс" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "Применить условное цветовое форматирование к мерам" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "Постепенный" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." +msgstr "" +"Используется для обобщения набора данных путем группировки нескольких " +"показателей по двум осям. Примеры: показатели продаж по регионам и " +"месяцам, задачи по статусу и назначенному лицу, активные пользователи по " +"возрасту и местоположению." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Сводная таблица" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "Пропорция" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "Неизвестный формат ввода" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Опубликовано" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#, fuzzy +msgid "No matching records found" +msgstr "Записи не найдены" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" -msgstr "Фиолетовый" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "Shift + Нажать для сортировки по нескольким столбцам" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" -msgstr "Вынести метки наружу" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Общая сумма" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" -msgstr "Вынести метки за пределы диаграммы" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "Формат даты и времени" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" -msgstr "Вынести метки за пределы диаграммы" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "Размер страницы" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Введите произвольный текст в формате html или markdown" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" +msgstr "Строка поиска" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Шаблон строки даты и времени Python" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "Отображение строки поиска" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "Гистограммы в ячейках" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "Квартал" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "Отображать гистограмм в колонках таблицы" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" -msgstr "Кварталов %s" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "Выровнять +/-" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "запросы" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Запрос" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "Раскрасить +/-" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" -msgstr "Запрос %s: %s" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +#, fuzzy +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" +msgstr "Окрашивать ячейки с числами в зависимости от их знака" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" -msgstr "Запрос А" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "Разрешить смену столбцов местами" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" -msgstr "Запрос Б" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" +"Разрешить конечному пользователю перемещать столбцы, удерживая их " +"заголовки. Заметьте, такие изменения будут нейтрализованы при следующем " +"обращении к дашборду." -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "История запросов" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" +msgstr "Настроить столбцы" -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" -msgstr "Запрос не существует" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "Дальнейшая настройка отображения каждого столбца" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "История запросов" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "Применить условное цветовое форматирование к столбцам" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" -msgstr "Запрос импортирован" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "" +"Классическое представление таблицы. Используйте таблицы для демонстрации " +"отображения исходных или агрегированных данных." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "Запрос в отдельной вкладке" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +#, fuzzy +msgid "Show" +msgstr "%s строка" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "Запрос слишком тяжелый для выполнения и займет много времени." +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#, fuzzy +msgid "entries" +msgstr "категории" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" -msgstr "Режим запроса" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "Облако слов" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "Имя запроса" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "Минимальный размер шрифта" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "Предпросмотр запроса" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "Размер шрифта для наименьшего значения в списке" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "Запрос прерван" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "Максимальный размер шрифта" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "Запрос прерван" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "Размер шрифта для наибольшего значения в списке" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "ТИП ИНТЕРВАЛА" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" +msgstr "Поворот текста" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" -msgstr "Цвет RGB" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" +msgstr "случайно" -#: superset/row_level_security/commands/exceptions.py:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 #, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "Не удалось удалить графики." +msgid "square" +msgstr "последний квартал" -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "Расписание отчета не найдено" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" +msgstr "Вращение для применения к словам в облаке" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" -msgstr "Радар" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." +msgstr "" +"Визуализирует слова в столбце, которые появляются чаще всего. Более " +"крупный шрифт соответствует более высокой частоте" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" -msgstr "Диаграмма радар" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "Пусто" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +#, fuzzy +msgid "offline" +msgstr "Оффлайн" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy -msgid "Radial" +msgid "failed" msgstr "Ошибка" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "Радиус в километрах" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +#, fuzzy +msgid "pending" +msgstr "Отрисовка" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" -msgstr "Радиус в метрах" +#: superset-frontend/src/SqlLab/constants.ts:36 +#, fuzzy +msgid "fetching" +msgstr "Получение данных" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "Радиус в милях" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "running" +msgstr "Выполняется" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" -msgstr "Запущен %s" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "Добавить" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" -msgstr "Интервал" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "Успешно" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" -msgstr "Диапазон" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "Запрос невозможно загрузить" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" +"Запрос был запланирован. Чтобы посмотреть детали запроса, перейдите в " +"Сохраненные запросы" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "Метки диапазона" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Не удалось запланировать ваш запрос" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" -msgstr "Диапазоны" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Невозможно выполнить запрос" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "Диапазоны для выделения с помощью затенения" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Неизвестная ошибка" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" -msgstr "Ранжирование" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "Запрос прерван" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" -msgstr "Отношение" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" +msgstr "Не удалось остановить запрос. %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "Сырые записи" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Не удается перенести состояние схемы таблицы на сервер. Суперсет повторит" +" попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта " +"проблема не устранена." -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -#, fuzzy -msgid "Ready to review filters in this dashboard?" -msgstr "В этом дашборде нет фильтров." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." +msgstr "" +"Не удается перенести состояние запроса на сервер. Суперсет повторит " +"попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта " +"проблема не устранена." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" +"Не удается перенести состояние редактора запроса на сервер. Суперсет " +"повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, " +"если эта проблема не устранена." -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "Последние действия" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" +"Не удается добавить новую вкладку на сервер. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "Недавно созданные графики, дашборды и сохраненные запросы" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "" +"-- Примечание: Пока вы не сохраните ваш запрос, эти вкладки НЕ будут " +"сохранены, если вы очистите куки или смените браузер.\n" +"\n" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "Недавно измененные графики, дашборды и сохраненные запросы" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "Копия %s" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "Измененные недавно" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" +"Произошла ошибка при установке активной вкладки. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "Недавно просмотренные графики, дашборды и сохраненные запросы" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Произошла ошибка при получении данных вкладки" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Недавние" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "" +"Произошла ошибка при удалении вкладки. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Получатели, разделенные \",\" или \";\"" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "" +"Произошла ошибка при удалении запроса. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "Рекомендованные теги" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Не удалось сохранить ваш запрос" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "Кол-во записей" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" +msgstr "Ваш запрос не был сохранен должным образом" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" -msgstr "Прямоугольник" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Ваш запрос был сохранен" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Ваш запрос был сохранен" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "Повторить действие" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Не удалось обновить ваш запрос" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "Уменьшить кол-во делений оси X" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." +msgstr "" +"Произошла ошибка при сохранении запроса на сервере. Чтобы сохранить " +"изменения, пожалуйста, сохраните ваш запрос через кнопку \"Сохранить " +"как\"." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -"Уменьшает количество отрисованных делений на оси X. Если флажок " -"установлен, некоторые метки могут быть не отображены. " +"Произошла ошибка при получении метаданных таблицы. Пожалуйста, свяжитесь " +"с администратором." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" -msgstr "Обратитесь к" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "" +"Произошла ошибка при разворачивании схемы. Пожалуйста, свяжитесь с " +"администратором." -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" +"Произошла ошибка при сворачивании схемы. Пожалуйста, свяжитесь с " +"администратором." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "Выполнить запрос повторно" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Произошла ошибка при удалении схемы. Пожалуйста, свяжитесь с " +"администратором." -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "Обновить" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Общедоступный запрос" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "Обновить дашборд" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "Невозможно загрузить источник данных" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Частота обновления" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Произошла ошибка при создании источника данных" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Интервал обновления" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Произошла ошибка при получении имен функций" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" -msgstr "Интервал обновления сохранен" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" +"SQL Lab использует локальное хранилище вашего браузера для хранения " +"запросов и результатов.\n" +"В настоящее время вы используете %(currentUsage)s КБ из %(maxStorage)d КБ" +" дискового пространства.\n" +" Чтобы предотвратить сбой Лаборатории SQL, пожалуйста, удалите некоторые " +"вкладки запросов.\n" +" Вы можете повторно получить доступ к этим запросам, используя функцию " +"сохранения перед удалением вкладки.\n" +" Обратите внимание, что перед этим вам нужно будет закрыть другие окна " +"Лаборатории SQL." -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" -msgstr "Обновить список таблиц" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" +msgstr "Первичный ключ" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -msgid "Refresh tables" -msgstr "Обновить таблицы" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" +msgstr "Внешний ключ" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "Обновить значения по умолчанию" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" +msgstr "Индекс" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" -msgstr "Обновление графиков" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Оценить стоимость выбранного запроса" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" -msgstr "Обновление столбцов" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Оценить стоимость запроса" -#: superset-frontend/src/explore/constants.ts:78 -#, fuzzy -msgid "Regex" -msgstr "Зеленая" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Прогноз затрат" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -#, fuzzy -msgid "Regular" -msgstr "Круглая форма" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Создание источника данных и добавление новой вкладки..." + +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Произошла ошибка" + +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Создать новый график на основе этих данных" + +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" +msgstr "исследовать" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -#, fuzzy -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." -msgstr "" -"Обычные фильтры добавляют операторы where к запросам, если пользователь " -"принадлежит к роли, на которую ссылается фильтр. Базовые фильтры " -"применяют фильтры ко всем запросам, кроме ролей, определенных в фильтре, " -"и могут использоваться для определения того, что пользователи могут " -"видеть, если к ним не применяются фильтры RLS в группе фильтров." +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" +msgstr "Создать график" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" -msgstr "Относительный" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Исходный SQL" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "Исполненный SQL" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "Относительная дата/время" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Выполнить запрос" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "Относительный период" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Выполнить запрос" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Относительное количество" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Остановить запрос" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" -msgstr "Обновить" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Новая вкладка" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "Напомните мне через 24 часа" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" +msgstr "Предыдущая строка" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "Удалить" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +#, fuzzy +msgid "Format SQL" +msgstr "Формат даты/времени" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 #, fuzzy -msgid "Remove cross-filter" -msgstr "Задать область действия кросс-фильтра" +msgid "Find" +msgstr "в" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "Удалить недействующие фильтры" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "Удалить элемент" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "Выполните запрос для отображения истории" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "Удалить запрос из истории" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" +msgstr "ОГРАНИЧЕНИЕ" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "Убрать предпросмотр таблицы" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Состояние" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "Удалённые столбцы: %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#, fuzzy +msgid "Started" +msgstr "Запущен" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Переименовать вкладку" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Продолжительность" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" -msgstr "Отрисовка" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Результаты" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "Заменить" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Действия" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" -msgstr "Отчет" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Успешно" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" -msgstr "Имя отчета" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Ошибка" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "Невозможно удалить расписание отчета." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "Выполняется" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "Невозможно удалить расписание отчета." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" +msgstr "Получение данных" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "Невозможно обновить расписание отчета" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Оффлайн" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "Ошибка при удалении расписания отчета." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Запланировано" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "Возникла ошибка при создании csv для отправки отчета" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "Неизвестный статус" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "Возникла ошибка при создании датафрейма для отправки отчета" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Редактировать" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "Возникла ошибка при создании скриншота для отправки отчета" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" +msgstr "Показать" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "Возникла неожиданная ошибка при отправке отчета" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Предпросмотр данных" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "Планировщик отчетов все еще работает, не имея возможности отправить отчет" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Вставить этот запрос в редактор SQL" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Выполнить запрос на новой вкладке" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "Расписание отчета не найдено" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Удалить запрос из истории" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "Параметры расписания отчета неверны." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "Достигнут таймаут для отчета" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Сохранить и исследовать" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "Состояние расписания отчета не найдено" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Перезаписать и исследовать" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" -msgstr "Сообщить об ошибке" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "Сохраните данный запрос как виртуальный датасет для создания графика" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Рассылка не удалась" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Сохранить в CSV" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "Имя отчета" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "Скопировать в буфер обмена" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "Расписание отчета" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Фильтровать результаты" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" -msgstr "Возникла ошибка расписания отчета на стороне клиента" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" +"Количество отображаемых результатов ограничено %(rows)d переменной " +"DISPLAY_MAX_ROW. Пожалуйста, добавьте дополнительные ограничения/фильтры " +"или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d." -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" -msgstr "Возникла ошибка расписания отчета на стороне системы" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." +msgstr "" +"Количество отображаемых результатов ограничено %(rows)d. Пожалуйста, " +"добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы " +"увидеть больше строк до предела %(limit)d.\"" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "Неожиданная ошибка расписания отчета" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Отчет выполняется" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Отчет отправлен" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/src/reports/actions/reports.js:121 -msgid "Report updated" -msgstr "Отчет обновлен" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "Получено строк: %(rows)d" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Отчеты" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, fuzzy, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" -msgstr "Отталкивание" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s строка" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" -msgstr "Сила отталкивания вершин" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Отслеживать работу" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" +msgstr "Показать детали запроса" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "Неверный запрос: %(error)s" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "Запрос прерван" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "Запрос не является JSON" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Ошибка базы данных" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "В запросе отсутствует поле с данными." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "создан(а)" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" -msgstr "Вышло время запроса" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Запрос в отдельной вкладке" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Обязательно" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "Запрос не вернул данных" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" -msgstr "Обязательные значения были удалены" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Получить данные для просмотра" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" -msgstr "Ресемплирование (изменение частоты данных)" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Выполнить запрос повторно" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " -msgstr "" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Стоп" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" -msgstr "Для ресемплирования требуется индекс формата дата/время" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Выполнить выбранное" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" -msgstr "Сбросить" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Выполнить" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" -msgstr "Сбросить текущее состояние" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Остановить выполнение (CTRL + X)" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." -msgstr "Для этого компонента уже создан отчет." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" +msgstr "Остановить выполнение (CTRL + X)" -#: superset/temporary_cache/commands/exceptions.py:49 -msgid "Resource was not found." -msgstr "Источник не был найден." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Выполнить запрос (Ctrl + Enter)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Восстановить фильтр" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Сохранить" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Результаты" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" +msgstr "Безымянный датасет" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" -msgstr "Результаты %s" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Произошла ошибка при сохранении датасета" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "Results backend не нестроен" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "Сохранить или перезаписать датасет" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "Сервер, необходимый для асинхронных запросов, не настроен." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" +msgstr "Назад" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Сохранить как новый" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" -msgstr "Поменять местами широту и долготу" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" +msgstr "Перезаписать существующий" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "Поменять местами широту и долготу" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" +msgstr "Выберите/введите имя датасета" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" -msgstr "Расширенная всплывающая подсказка" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" +msgstr "Существующий датасет" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" -msgstr "Расширенная всплывающая подсказка" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Вы уверены, что хотите перезаписать этот датасет?" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" -msgstr "Справа" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Не определено" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" -msgstr "Формат правой оси" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" +msgstr "Сохранить датасет" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" -msgstr "Мера для правой оси" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Сохранить как" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Мера для правой оси" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Сохранить запрос" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" -msgstr "Справа налево" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Отмена" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "Правое значение" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Обновить" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Метка для вашего запроса" -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "Роль" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Заполните описание к вашему запросу" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "" -"Роль %(r)s была расширена для предоставления доступа к источнику данных " -"%(ds)s" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Роли" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Сохранить запрос" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 -#, fuzzy -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." -msgstr "" -"Список ролей, определяющий доступ к дашборду. Предоставляя доступ " -"определенной роли, пользователь сможет обойти ограничения своей роли. " -"Если роли не указаны, дашборд доступен всем ролям." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Расписание" -#: superset/views/dashboard/mixin.py:65 -#, fuzzy -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." -msgstr "" -"Список ролей, определяющий доступ к дашборду. Предоставляя доступ " -"определенной роли, пользователь сможет обойти ограничения своей роли. " -"Если роли не указаны, дашборд доступен всем ролям." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Произошла ошибка с вашим запросом" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "Роли для предоставления" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Пожалуйста, сохраните запрос, чтобы включить функцию \"поделиться\"" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" -msgstr "Скользящая средняя" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Скопировать ссылку на запрос в буфер обмена" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" -msgstr "Скользящее окно" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Сохраните запрос для включения этой опции" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "Скользящая средняя" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Скопировать ссылку" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "Скользящее окно" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "Не найдены сохраненные результаты, необходимо повторно выполнить запрос" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Корневой сертификат" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "Выполните запрос для отображения результатов" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Предпросмотр «%s»" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" -msgstr "Повернуть метки осей" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "История запросов" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" -msgstr "Повернуть метку оси X" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Запланировать периодическое выполнение запроса" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "Вращение для применения к словам в облаке" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Сначала необходимо успешно выполнить запрос" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" -msgstr "Закругление на концах" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Автозаполнение" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Строка" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "CREATE TABLE AS" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "Безопасность на уровне строк" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "CREATE VIEW AS" -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" -msgstr "" -"Строка, содержащая заголовки для использования в качестве имен столбцов " -"(0, если первая строка в данных). Оставьте пустым, если заголовки " -"отсутствуют" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Спрогнозировать стоимость до выполнения запроса" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." -msgstr "" -"Строка, содержащая заголовки для использования в качестве имен столбцов " -"(0, если первая строка в данных). Оставьте пустым, если заголовки " -"отсутствуют." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "Укажите имя нового представления для CREATE VIEW AS" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Лимит строк" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "Укажите имя новой таблицы для CREATE TABLE AS" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "Строки" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "Выберите базу данных для написания запроса" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" -msgstr "Строчек на странице, 0 означает все строки" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "Выберите одну из доступных баз данных из панели слева." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" -msgstr "Расположение строк подытогов" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Создать" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "Строки для чтения" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "Свернуть предпросмотр таблицы" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "Правило" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" +msgstr "Расширить предпросмотр таблицы" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 -#, fuzzy -msgid "Rule Name" -msgstr "Полное имя" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Сбросить текущее состояние" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Введите новое название для вкладки" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "Выполнить" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Закрыть вкладку" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" -msgstr "Выполните запрос для отображения истории" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Переименовать вкладку" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" -msgstr "Выполните запрос для отображения результатов" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Показать панель инструментов" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "Открыть в SQL редакторе" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Скрыть панель инструментов" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "Выполнить запрос" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Закрыть остальные вкладки" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "Выполнить запрос (Ctrl + Enter)" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Дублировать вкладку" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "Выполнить запрос на новой вкладке" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" +msgstr "Новая вкладка" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" -msgstr "Выполнить выбранное" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Новая вкладка (CTRL + Q)" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "Выполняется" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Новая вкладка (CTRL + T)" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "Откройте новую вкладку для создания SQL запроса" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "СБ" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Произошла ошибка при получении метаданных из таблицы" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "СЕН" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Скопировать часть запроса в буфер обмена" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "последний раздел:" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +#, fuzzy +msgid "Keys for table" +msgstr "Обновить таблицы" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL запрос скопирован!" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Показать ключи и индексы (%s)" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL выражение" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Расположение столбцов как в исходной таблице" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "Лаборатория SQL" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Отсортировать столбцы в алфавитном порядке" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Скопировать выражение SELECT в буфер обмена" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." -msgstr "" -"SQL Lab использует локальное хранилище вашего браузера для хранения " -"запросов и результатов.\n" -"В настоящее время вы используете %(currentUsage)s КБ из %(maxStorage)d КБ" -" дискового пространства.\n" -" Чтобы предотвратить сбой Лаборатории SQL, пожалуйста, удалите некоторые " -"вкладки запросов.\n" -" Вы можете повторно получить доступ к этим запросам, используя функцию " -"сохранения перед удалением вкладки.\n" -" Обратите внимание, что перед этим вам нужно будет закрыть другие окна " -"Лаборатории SQL." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Показать выражение CREATE VIEW" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "SQL запрос" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "Выражение CREATE VIEW" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "Выражение SQL" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Убрать предпросмотр таблицы" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "SQL запрос" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" +msgstr "Задайте набор параметров в формате" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "SQLAlchemy URI" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "ниже (пример:" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" -msgstr "" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" +msgstr "), и они станут доступны в ваших SQL запросах (пример:" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" -msgstr "Пароль SSH" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr ", используя" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" -msgstr "SSH порт" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" +msgstr "Шаблонизацию Jinja." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +# Не нужно переводить +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" -msgstr "Параметры конфигурации SSH туннеля" - -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." -msgstr "Не удалось удалить SSH туннель." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Редактировать параметры шаблонизации Jinja" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -msgid "SSH Tunnel could not be updated." -msgstr "Не удалось обновить SSH туннель." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " +msgstr "Параметры " -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -msgid "SSH Tunnel not found." -msgstr "SSH туннель не найден." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "Недопустимый формат JSON" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." -msgstr "Параметры SSH туннеля недопустимы." +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Безымянный запрос" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "Будет использовано шифрование SSL" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" +msgstr "Элемент" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "НАЧАЛО (ВКЛЮЧИТЕЛЬНО)" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "До" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "ШАГ %(stepCurr)s ИЗ %(stepLast)s" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "После" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" -msgstr "Строчный (STRING/VARCHAR)" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Нажмите для просмотра изменений" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "ВС" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Измененено" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" -msgstr "Стандартное отклонение" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Изменения графика" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "Дисперсия" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Автор изменений %s" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" -msgstr "Примеры данных" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Данные загружены в кэш" -#: superset/datasets/commands/exceptions.py:194 -msgid "Samples for dataset could not be retrieved." -msgstr "Не удалось получить примеры записей датасета." +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Загружено из кэша" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." -msgstr "Не удалось получить примеры записей для источника данных." +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Нажмите для принудительного обновления" -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "Санкей" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" +msgstr "Добавлено в кэш" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "Диаграмма Санкей" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" +msgstr "Добавьте обязательные значения для предпросмотра графика" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "Ваш график готов!" + +#: superset-frontend/src/components/Chart/Chart.jsx:274 +msgid "" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" +"Нажмите на кнопку \"Создать график\" на панели управления слева для " +"просмотра графика или" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" -msgstr "Спутник" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "нажмите сюда" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" -msgstr "Гибридный режим" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "Не было получено данных по этому запросу" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "Суббота" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" +msgstr "" +"Убедитесь, что настройки графика верно сконфигурированы и источник данных" +" содержит данные для выбранного временного интервала." -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "Сохранить" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Произошла ошибка при загрузке SQL" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "Сохранить и исследовать" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "Извините, произошла ошибка" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "Сохранить и перейти к дашборду" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "Обновление графика остановлено" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -msgid "Save & go to new dashboard" -msgstr "Сохранить и перейти к дашборду" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Произошла ошибка при построении графика: %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "Сохранить (Перезаписать)" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Ошибка сети." -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "Сохранить как" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -msgid "Save as Dataset" -msgstr "Сохранить как датасет" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -msgid "Save as dataset" -msgstr "Сохранить как датасет" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +#, fuzzy +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Не применено ни одного фильтра к данному дашборду." -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "Сохранить как новый" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +#, fuzzy +msgid "This visualization type does not support cross-filtering." +msgstr "Этот тип визуализации не поддерживается." -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "Сохранить как новый график" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +#, fuzzy +msgid "You can't apply cross-filter on this data point." +msgstr "Недостаточно прав для доступа к этому датасету." -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -msgid "Save as..." -msgstr "Сохранить как..." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +#, fuzzy +msgid "Remove cross-filter" +msgstr "Задать область действия кросс-фильтра" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Сохранить как:" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +#, fuzzy +msgid "Add cross-filter" +msgstr "Задать область действия кросс-фильтра" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" -msgstr "Сохранить изменения" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "Сохранить график" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Сохранить дашборд" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -msgid "Save dataset" -msgstr "Сохранить датасет" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Сохранить на время текущей сессии" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "Используемые столбцы" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" -msgstr "Сохранить или перезаписать датасет" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#, fuzzy +msgid "No columns found" +msgstr "Столбцы формата дата/время не найдены" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "Сохранить запрос" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +#, fuzzy +msgid "Failed to generate chart edit URL" +msgstr "Не удалось загрузить данные графика" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "Сохраните запрос для включения этой опции" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "У вас нет прав на редактирование этого графика" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "Сохраните данный запрос как виртуальный датасет для создания графика" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" +msgstr "Редактировать график" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -msgid "Save to new dashboard" -msgstr "Сохранить в новый дашборд" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Закрыть" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Сохранено" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "Не удалось загрузить данные графика." -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Сохраненные запросы" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "Сорт. по %s" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" -msgstr "Сохраненные выражения" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Возникла ошибка при загрузке схем" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Сохраненная мера" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Результаты %s" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "Сохраненные запросы" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Не удалось удалить сохраненные запросы." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "Сохраненный запрос не найден." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." +msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "Сохраненные параметры запроса недопустимы." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "Масштабирование и перемещение" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "Только масштабирование" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "Точечный" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" +msgstr "Форматирование" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" -msgstr "Точечная диаграмма" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" +msgstr "Форматированное значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." -msgstr "" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "Не было получено данных для этого датасета" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "Расписание" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" +msgstr "Обновить" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" -msgstr "Запланировать новую рассылку по почте" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "Копировать" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "Запланировать рассылку по почте" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Скопировать в буфер обмена" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Сохранить запрос" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "Скопировано в буфер обмена" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "Настройки расписания" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "" +"Извините, Ваш браузер не поддерживание копирование. Используйте сочетание" +" клавиш [CTRL + C] для WIN или [CMD + C] для MAC!" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "Запланировать периодическое выполнение запроса" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "каждые" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "Запланировано" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "каждый месяц" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "Запланировано на (часовой пояс UTC)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "каждый день месяца" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" -msgstr "Исполнитель регулярных отчетов не найден" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "день месяца" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "Схема" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "каждый день недели" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" -msgstr "Время жизни кэша схемы" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "день недели" -#: superset/views/core.py:1186 -msgid "Schema undefined" -msgstr "Схема не определена" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "каждый час" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" +msgstr "каждая минута" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" -msgstr "Схемы, в которые разрешена загрузка файлов" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "минута" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" -msgstr "Область" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "обновить" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "Область применения" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Каждый(ая)" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" -msgstr "Прокрутка" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "в" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "по" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "Поиск" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "и" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "Поиск / Фильтр" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "в" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "Поиск по мерам и столбцам" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" -msgstr "Поиск по всем графикам" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "минут" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Поиск по всем фильтрам" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Недопустимое CRON выражение" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" -msgstr "Строка поиска" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Очистить" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "Поиск по тексту запроса" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Воскресенье" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -#, fuzzy -msgid "Search columns" -msgstr "Используемые столбцы" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Понедельник" -#: superset-frontend/src/components/Table/index.tsx:206 -#, fuzzy -msgid "Search in filters" -msgstr "Поиск / Фильтр" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Вторник" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -#, fuzzy -msgid "Search tables" -msgstr "Показать в виде таблицы" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Среда" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Поиск..." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Четверг" -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "Секунда" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Пятница" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" -msgstr "Вторичная" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "Суббота" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" -msgstr "Вторичная мера" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Январь" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -#, fuzzy -msgid "Secondary y-axis Bounds" -msgstr "Формат вторичной оси Y" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Февраль" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "Формат вторичной оси Y" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Март" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "Название вторичной оси Y" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "Апрель" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, python-format -msgid "Seconds %s" -msgstr "Секунд %s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Май" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Доп. безопасность" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Июнь" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "Безопасность" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Июль" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Безопасность" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Август" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "Безопасность и Доступ" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "Сентябрь" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" -msgstr "Список %(tableName)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Октябрь" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "Скрыть подробности" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "Ноябрь" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "Подробнее" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "Декабрь" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -msgid "See query details" -msgstr "Показать детали запроса" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "ВС" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "Таблица" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "ПН" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" -msgstr "Выбрать" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "ВТ" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Выбрать ..." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "СР" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "Выберите способ оповещения" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "ЧТ" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" -msgstr "Выберите тип визуализации" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "ПТ" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." -msgstr "Выберите файл столбчатого формата, который будет загружен в базу данных." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "СБ" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." -msgstr "Выберите Excel файл для загрузки в базу данных" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "ЯНВ" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" -msgstr "Выберите столбец" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "ФЕВ" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" -msgstr "Выбрать дашборд" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "МАР" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" -msgstr "Выберите базу данных и создайте датасет" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "АПР" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." -msgstr "Выберите таблицу в базе данных." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "МАЙ" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" -msgstr "Выберите базу данных для подключения" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "ИЮН" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" -msgstr "Выберите базу данных для загрузки файла" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "ИЮЛ" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" -msgstr "Выберите базу данных для написания запроса" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "АВГ" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" -msgstr "Выберете измерение" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "СЕН" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" -msgstr "Выберите файл для загрузки в базу данных." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "ОКТ" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" -msgstr "Укажите схему, если она поддерживается базой данных" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "НОЯ" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "Выберите тип визуализации" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "ДЕК" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" -msgstr "Выберите настройки агрегации" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "Возникла ошибка при загрузке схем" -#: superset-frontend/src/components/Table/index.tsx:211 -msgid "Select all data" -msgstr "Выбрать все данные" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +#, fuzzy +msgid "Select database or type to search databases" +msgstr "Выберите базу данных или введите ее имя" -#: superset-frontend/src/components/Table/index.tsx:205 -msgid "Select all items" -msgstr "Выбрать все записи" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Принудительно обновить список схем" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" -msgstr "" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +#, fuzzy +msgid "Select schema or type to search schemas" +msgstr "Выберите схему или введите ее имя" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 #, fuzzy -msgid "Select chart" -msgstr "Выберите графики" +msgid "No compatible schema found" +msgstr "Не найдено подходящих столбцов" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" -msgstr "Выберите графики" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" +"Внимание! Изменение датасета может привести к тому, что график станет " +"нерабочим, если будут отсутствовать метаданные." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" -msgstr "Выберите цветовую схему" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" +"Изменение датасета может привести к тому, что график станет нерабочим, " +"если график использует несуществующие в целевом датасете столбцы или " +"метаданные" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" -msgstr "Выберите столбец" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "датасет" -#: superset-frontend/src/components/Table/index.tsx:208 -msgid "Select current page" -msgstr "Выбрать текущую страницу" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -msgid "Select database & schema" -msgstr "Выберите базу данных и схему" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "База данных" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -#, fuzzy -msgid "Select database or type to search databases" -msgstr "Выберите базу данных или введите ее имя" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" +msgstr "Сменить датасет" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -msgid "Select database table" -msgstr "Выберите таблицу из базы данных" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" +msgstr "Продолжить" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " -msgstr "" -"Некоторые базы данных требуют ручной настройки во вкладке Продвинутая " -"настройка для успешного подключения. Вы можете ознакомиться с " -"требованиями к вашей базе данных " +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Предупреждение!" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -msgid "Select dataset source" -msgstr "Выберите источник датасета" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Поиск / Фильтр" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" -msgstr "Выбрать файл" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Добавить запись" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "Селектор" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "Строчный (STRING/VARCHAR)" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" +msgstr "Числовой (NUMERIC/DECIMAL)" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "Сделать первое значение фильтра значением по умолчанию" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" +msgstr "Дата/Время (DATETIME/TIMESTAMP)" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "Выбрать оператор" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" +msgstr "Булевый (BOOLEAN)" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" -msgstr "Выберите значение" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Физический (таблица или представление)" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" -msgstr "Выберите/введите имя датасета" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "Виртуальный (SQL)" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "Выбрать владельцев" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Тип данных" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" -msgstr "Выберите сохраненные меры" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" +msgstr "Расширенный тип данных" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -#, fuzzy -msgid "Select schema or type to search schemas" -msgstr "Выберите схему или введите ее имя" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" +msgstr "Расширенный тип данных" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" -msgstr "Выберите схему" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Формат даты/времени" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Выберите дату начала" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Шаблон формата отметки времени (таймштампа). Для строк используйте " -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Шаблон строки даты и времени Python" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -#, fuzzy -msgid "Select table or type to search tables" -msgstr "Выберите таблицу или введите ее имя" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr ", который должен придерживаться " -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." -msgstr "Выбрать слой аннотации, который вы хотите использовать." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" +" стандарта для обеспечения того, чтобы лексикографический порядок " +"совпадал с хронологическим порядком. Если формат временной метки не " +"соответствует стандарту ISO 8601, вам нужно будет определить выражение и " +"тип для преобразования строки в дату или временную метку. В настоящее " +"время часовые пояса не поддерживаются. Если время хранится в формате " +"эпохи, введите \\`epoch_s\\` или \\`epoch_ms\\`. Если шаблон не указан, " +"будут использованы необязательные значения по умолчанию на уровне имен " +"для каждой базы данных/столбца с помощью дополнительного параметра." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "Кем утверждено" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" -msgstr "Выберите geojson столбец" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Лицо или группа, которые утвердили этот показатель" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" -msgstr "Выберите количество столбцов для гистограммы" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Кем утверждено" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "Выберите числовые столбцы для отрисовки гистограммы" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Детали утверждения" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." -msgstr "" -"Выберите значения в обязательных полях на панели управления. Затем " -"запустите запрос, нажав на кнопку %s." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Детали утверждения" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" -msgstr "Отправить в формате CSV" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Является измерением" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" -msgstr "Отправить в формате PNG" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" +msgstr "Дата и время по умолчанию" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" -msgstr "Отправить текстом" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Фильтруемый" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" +msgstr "<новый столбец>" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "Сентябрь" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" +msgstr "Выбрать владельцев" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" -msgstr "Последовательность" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Изменённые столбцы: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Ряд" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Удалённые столбцы: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "Высота рядов" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "Добавленные столбцы: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" -msgstr "Сортировка категорий по" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Метаданные синхронизированы" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -#, fuzzy -msgid "Series Limit Sort Descending" -msgstr "Сортировать" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Произошла ошибка" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -#, fuzzy -msgid "Series Order" -msgstr "категории" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Имя столбца [%s] является дубликатом" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" -msgstr "Стиль категорий" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Дубль имени меры [%s]" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "Для вычисляемого столбца [%s] требуется выражение" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Лимит кол-ва категорий" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Базовая настройка" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -#, fuzzy -msgid "Series type" -msgstr "Тип рядов" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "URL по умолчанию" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "Серверный размер страницы" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" +"URL по умолчанию, на который будет выполнен редирект при доступе из " +"страницы со списком датасетов" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" -msgstr "Серверная пагинация" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Фильтры автозаполнения" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" -msgstr "Сервисный аккаунт" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Распространить настройки фильтров автозаполнения" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Предикат запроса автозаполнения" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" +"При использовании \"Фильтров автозаполнения\" это может использоваться " +"для улучшения быстродействия запроса. Используйте эту опцию для настройки" +" предиката (оператор WHERE) запроса для уникальных значений из таблицы. " +"Обычно целью является ограничение сканирования путем применения " +"относительного временного фильтра к секционированному или " +"индексированному полю типа дата/время." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." +msgstr "" +"Дополнительные метаданные таблицы. В настоящий момент поддерживается " +"следующий формат: `{ \"certification\": { \"certified_by\": " +"\"Руководитель отдела\", \"details\": \"Эта таблица - источник правды.\" " +"}, \"warning_markdown\": \"Это предупреждение.\" }`." -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "Задать интервал обновления" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Время жизни кэша" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "Установить действие фильтра" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +#, fuzzy +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "Количество секунд до истечения срока действия кэша" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" -msgstr "Запланировать рассылку по почте" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Смещение времени" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" +"Количество часов, отрицательное или положительное, для сдвига столбца " +"формата дата/время. Это может быть использовано для приведения часового " +"пояса UTC к местному времени." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "Настройки" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" -msgstr "Настройки временных рядов" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +#, fuzzy +msgid "Normalize column names" +msgstr "Настроить столбцы" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "Поделиться" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +#, fuzzy +msgid "Always filter main datetime column" +msgstr "Основной столбец с временем" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "Поделиться графиком по email" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" -msgstr "Поделиться ссылкой по email" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "<новая пространственная мера>" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "Общедоступный запрос" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" +msgstr "<без типа>" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -msgid "Shared query fields" -msgstr "Поля общедоступного запроса" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Нажмите на замок для внесения изменений" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Имя листа" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Нажмите на замок для запрета на внос изменений." -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "Shift + Нажать для сортировки по нескольким столбцам" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "Виртуальный" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "Содержимое аннотации должно быть уникальным внутри слоя" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Имя датасета" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -"Применяется дневная сезонность. Целочисленное значение будет указывать " -"порядок сезонности Фурье." +"Когда указан SQL, источник данных работает как представление. Superset " +"будет использовать это выражение в подзапросе, при необходимости " +"группировки и фильтрации." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "" -"Применяется недельная сезонность. Целочисленное значение будет указывать " -"порядок сезонности Фурье." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Физический" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -"Применяется годовая сезонность. Целочисленное значение будет указывать " -"порядок сезонности Фурье." +"Указатель на физическую таблицу (или представление). Следует помнить, что" +" график связан с логической таблицей Superset, а эта логическая таблица " +"указывает на физическую таблицу, указанную здесь." -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 #, fuzzy -msgid "Show" -msgstr "%s строка" - -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" -msgstr "Показать пузыри" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "Показать выражение CREATE VIEW" +msgid "Metric Key" +msgstr "мера" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Показать CSS шаблон" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Показать график" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "Формат даты/времени" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "Показать столбец" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Показать дашборд" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +#, fuzzy +msgid "Select or type currency symbol" +msgstr "Выберите значение" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Показать базу данных" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "Предупреждение" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" -msgstr "Показывать метки" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Необязательное предупреждение об использовании этой меры" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "Показать меньше..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" +msgstr "<новая мера>" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Показать запись" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Будьте осторожны." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" -msgstr "Показать маркеры" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "" +"Изменение этих настроек будет влиять на все графики, использующие этот " +"датасет, включая графики других пользователей." -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "Показатель меру" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Синхронизировать столбцы из источника" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" -msgstr "Показать имена мер" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Вычисляемые столбцы" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" -msgstr "Показать фильтр Диапазон" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "Показать сохраненный запрос" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "<введите SQL выражение>" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Показать таблицу" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Настройки" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "Показать метку времени" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "Датасет сохранен" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -msgid "Show Total" -msgstr "Показать общий итог" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +#, fuzzy +msgid "Error saving dataset" +msgstr "Произошла ошибка при сохранении датасета" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" -msgstr "Показать трендовую линию" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." +msgstr "" +"Представленная здесь конфигурация датасета\n" +" влияет на все графики, использующие этот датасет.\n" +" Помните, что изменение настроек\n" +" может иметь неожиданный эффект\n" +" на другие графики." -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" -msgstr "Показать верхние метки" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Вы уверены, что хотите сохранить и применить изменения?" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" -msgstr "Показать значение" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Подтвердить сохранение" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" -msgstr "Показать значения" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "ОК" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "Показать ось Y" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Редактировать датасет " -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." -msgstr "Показывать ось Y на спарклайне." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Использовать старый редактор" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" -msgstr "Показать все столбцы" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "Этот датасет управляется извне и не может быть изменена в Суперсете" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." -msgstr "Показать все..." +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "УДАЛИТЬ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" -msgstr "Показывать деления на оси" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "удалить" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" -msgstr "Наложить гистограммы на ячейки" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Введите \"%s\" для подтверждения" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -msgid "Show chart description" -msgstr "Показать описание графика" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" +msgstr "Подробнее" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" -msgstr "Показать общий итог по столбцам" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Нажмите для редактирования" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Недостаточно прав для изменения названия." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -msgid "Show empty columns" -msgstr "Показывать пустые столбцы" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "Нет баз данных, удовлетворяющих вашему поиску" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -#, fuzzy -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." -msgstr "" -"Показывает иерархические взаимосвязи данных со значением, представленным " -"областью, показывая пропорцию и вклад в целое." +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "Нет доступных баз данных" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "Показать информационную подсказку" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" +msgstr "Управляйте своими базами данных" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" -msgstr "Показывать метку" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" +msgstr "здесь" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." -msgstr "Показывать метки, когда у вершины есть дочерние элементы." +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Неожиданная ошибка" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" -msgstr "Показывать легенду" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "Возможные причины:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" -msgstr "Показать меньше столбцов" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." +msgstr "Пожалуйста, обратитесь к создателю графика за помощью." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "Показать меньше..." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Владелец графика: %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" +"%(message)s\n" +"Возможные причины: \n" +"%(issues)s" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." -msgstr "Показать пароль." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s Ошибка" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" -msgstr "Показывать долю" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Отсутствующий датасет" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" -msgstr "Показывать указатель" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Подробнее" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" -msgstr "Показывать прогресс" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Скрыть подробности" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "Показать общий итог по строкам" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Скопировать сообщение" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "Показать значения категорий на графике" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +#, fuzzy +msgid "Details" +msgstr "Общая сумма" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "Показывать разделительные линии" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" +msgstr "Причина срабатывания:" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "Показать значение в верхней части столбца" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Возможно вы имели в виду:" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "Показать столбец времени" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s вместо \"%(undefinedParameter)s\"?" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -#, fuzzy -msgid "Show time grain dropdown" -msgstr "Включить фильтр на определенный интервал времени" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Ошибка параметра" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -"Показать общие итоговые значения выбранных показателей. Обратите " -"внимание, что ограничение количества строк не применяется к результату." - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "Показывать общий итог" +"Возникла проблема при загрузке этой визуализации. Для запросов установлен" +" тайм-аут %s секунда." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -"Отображает один показатель по центру. Карточку лучше всего использовать, " -"чтобы привлечь внимание к KPI." +"Возникла проблема при загрузке результатов. Для запросов установлен " +"тайм-аут %s секунда." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -"Отображает один показатель, сопровождаемый простой линейной диаграммой, " -"чтобы привлечь внимание к KPI наряду с его изменением с течением времени " -"или другим измерением." +"%(subtitle)s\n" +"Возможные причины:\n" +" %(issue)s" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Ошибка таймаута" + +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Добавить в избранное" + +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Содержимое ячейки" + +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." +msgstr "Скрыть пароль." + +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." +msgstr "Показать пароль." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -"Отображает изменение показателя по мере сужения воронки. Эта классическая" -" диаграмма полезна для визуализации перехода между этапами процесса или " -"жизненного цикла." +"Драйвер базы данных для импорта может быть не установлен. Изучите " +"документацию Суперсета для инструкций по установке: " -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "ПЕРЕЗАПИСАТЬ" + +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" +msgstr "Пароли базы данных" + +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" +msgstr "%s ПАРОЛЬ" + +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -"Демонстрирует прогресс одного показателя по отношению к заданной цели. " -"Чем больше заполнение, тем ближе показатель к целевому показателю." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, fuzzy, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "Пароль приватного ключа" + +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Перезаписать" + +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Импорт" + +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Импортировать %s" + +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" +msgstr "Выбрать файл" + +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Дата изменения %s" + +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "Сортировка" + +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 #, python-format -msgid "Showing %s of %s" -msgstr "Отображено %s из %s" +msgid "+ %s more" +msgstr "+ еще %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "Показывает список всех данных, доступных в определенный момент времени" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s Выбрано" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "Показывает или скрывает маркеры для временных рядов" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Снять выделение" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "Столбец" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "Не найдено результатов по вашим критериям" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "Попробуйте использовать другии критерии фильтрации" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" -msgstr "Один" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" +msgstr "Сбросить все фильтры" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" -msgstr "Одна мера" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Нет данных" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" -msgstr "Единственное значение" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s из %s" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" -msgstr "Единственное значение" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "Start date" +msgstr "Начальный угол" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "Тип единственного значения" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "End date" +msgstr "Отправить текстом" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "Введите значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "Размер маркера. Также применяется к прогнозным значениям." +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "Фильтр" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "Выберите значение" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "Пропуск пустых строк" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Последнее изменение" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "Пропуск начального пробела" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Кем изменено" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "Пропуск строк" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Кем создано" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "Пропускать пустые строки, вместо их перевода в пустые строки (NaN)" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Дата создания" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" -msgstr "Пропускать пробелы после разделителя" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Читаемый URL" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Выбрать ..." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "Маленький" +#: superset-frontend/src/components/Table/index.tsx:216 +#, fuzzy +msgid "Filter menu" +msgstr "Имя фильтра" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "Форматирование маленьких чисел" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" +msgstr "Сбросить" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "Гладкая линия" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" +msgstr "Нет фильтров" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." -msgstr "" +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" +msgstr "Выбрать все записи" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" -msgstr "Сплошной" +#: superset-frontend/src/components/Table/index.tsx:221 +#, fuzzy +msgid "Search in filters" +msgstr "Поиск / Фильтр" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "Некоторые роли не существуют" +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" +msgstr "Выбрать текущую страницу" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" +msgstr "Очистить все данные" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "Извините, произошла ошибка при загрузке графиков: " +#: superset-frontend/src/components/Table/index.tsx:226 +msgid "Select all data" +msgstr "Выбрать все данные" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Извините, произошла ошибка" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" +msgstr "Развернуть строку" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" -msgstr "Извините, произошла ошибка" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" +msgstr "Свернуть строку" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" -msgstr "Извините, произошла неизвестная ошибка" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" +msgstr "Нажмите для сортировки по убыванию" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." -msgstr "Извините, произошла неизвестная ошибка." +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" +msgstr "Нажмите для сортировки по возрастанию" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "Извините, что-то пошло не так. Встраивание не может быть деактивировано." +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "Нажмите для отмены сортировки" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "Извините, что-то пошло не так. Попробуйте еще раз позже." +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" +msgstr "Список обновлен" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "Извините, похоже, что данные отсутствуют" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "Возникла ошибка при загрузке таблиц" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Извините, произошла ошибка при сохранении дашборда: %s" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Таблица" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "Извините, произошла ошибка при сохранении дашборда: %s" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +#, fuzzy +msgid "Select table or type to search tables" +msgstr "Выберите таблицу или введите ее имя" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "" -"Извините, Ваш браузер не поддерживание копирование. Используйте сочетание" -" клавиш [CTRL + C] для WIN или [CMD + C] для MAC." +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Принудительно обновить список таблиц" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "" -"Извините, Ваш браузер не поддерживание копирование. Используйте сочетание" -" клавиш [CTRL + C] для WIN или [CMD + C] для MAC!" +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "У вас нет прав на редактирование этого графика" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" -msgstr "Сортировка" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Выбор часового пояса" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" -msgstr "Сортировать столбцы" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Задать область действия кросс-фильтра" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" -msgstr "Сортировать по убыванию" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" +"Недостаточно пространства для этого компонента. Попробуйте уменьшить " +"ширину или увеличить целевую ширину." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" -msgstr "Мера для сортировки" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "Невозможно перенести вкладку верхнего уровня во вложенную вкладку" + +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Этот график был перемещён в другой набор фильтров." + +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "Произошла ошибка с получением статуса избранного для этого дашборда." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -#, fuzzy -msgid "Sort Series Ascending" -msgstr "Сортировать по возрастанию" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Произошла ошибка при добавлении этого дашборда в избранное." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -#, fuzzy -msgid "Sort Series By" -msgstr "Сортировка строк по" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" +msgstr "Дашборд теперь опубликован" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "Сортировка оси X" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "Дашборд теперь скрыт" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" -msgstr "Сортировка оси Y" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "У вас нет прав на редактирование этого дашборда." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Сортировать по возрастанию" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" +msgstr "[ безымянный дашборд ]" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." -msgstr "Сортировать столбцы по меткам на оси X" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Дашборд успешно сохранен" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Сортировка" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" +msgstr "Извините, произошла неизвестная ошибка" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 #, python-format -msgid "Sort by %s" -msgstr "Сорт. по %s" +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "Извините, произошла ошибка при сохранении дашборда: %s" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" -msgstr "Сортировка по мере" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "У вас нет прав на редактирование этого дашборда" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "Отсортировать столбцы в алфавитном порядке" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" -msgstr "Сортировать столбцы по" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "Сортировка по убыванию" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Не удалось получить все сохраненные графики" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" -msgstr "Сортировать отфильтрованные значения" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "Извините, произошла ошибка при загрузке графиков: " -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Показатель для сортировки" +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +msgid "" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" +msgstr "" +"Любая палитра, выбранная здесь, будет перезаписывать цвета, применённые к" +" отдельным графикам этого дашборда" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" -msgstr "Сортировка строк по" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "У вас есть несохраненные изменения." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "Переместите элементы оформления и графики на дашборд" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" +"Вы можете создать новый график или использовать существующие из панели " +"справа" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" -msgstr "Тип сортировки" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Создать новый график" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "Источник" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" +msgstr "Переместите элементы оформления и графики в эту вкладку" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" -msgstr "Источник / Цель" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "В этой вкладке нет компонентов" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Исходный SQL" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "Вы можете добавить компоненты в режиме редактирования." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" -msgstr "Исходная категория" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" +msgstr "Редактировать дашборд" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" -msgstr "Спарклайн" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "С этим компонентом не связан ни один график, возможно, он был удален." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "Удалите этот контейнер и сохраните изменения, чтобы убрать это сообщение." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "Конкретная дата/время" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" +msgstr "Интервал обновления сохранен" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "Укажите схему (если она поддерживается базой данных)." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Интервал обновления" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Обозначить повторяющиеся столбцы как \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Частота обновления" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "Укажите имя новой таблицы для CREATE TABLE AS" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Вы уверены, что хотите продолжить?" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" -msgstr "Укажите имя нового представления для CREATE VIEW AS" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Сохранить на время текущей сессии" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." -msgstr "" -"Укажите версию базы данных. Это необходимо для Presto, чтобы включить " -"оценку стоимости запроса" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Вы должны выбрать имя для нового дашборда" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" -msgstr "Количество разделителей" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Сохранить дашборд" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Square kilometers" -msgstr "Квадратные километры" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Перезаписать дашборд [%s]" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Square meters" -msgstr "Квадратные метры" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Сохранить как:" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" -msgstr "Квадратные мили" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[имя дашборда]" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "также копировать (дублировать) графики" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" +msgstr "тип визуализации" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "Использовать накопление" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "недавние" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "Совместить столбцы в один с накоплением" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Создать новый график" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" -msgstr "С наполнением" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Поиск" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "Столбцы с накоплением" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +#, fuzzy +msgid "Filter charts" +msgstr "Поиск" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "Сорт. по %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Начало" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Добавлено" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "<без типа>" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Тип визуализации" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Датасет" + +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "График Superset" + +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Посмотреть этот график в дашборде:" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " -msgstr "Старт (Долгота, Широта): " +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "Оформление" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "Начальные долгота и широта" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Загрузить CSS шаблон" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -#, fuzzy -msgid "Start Review" -msgstr "Начать предпросмотр" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Редактор CSS" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" -msgstr "Начальный угол" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "Свернуть содержимое вкладки" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "Время начала (UTC)" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" +msgstr "В этот дашборд еще не добавлен ни один график." -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "Start date" -msgstr "Начальный угол" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" +msgstr "Перейдите в режим редактирования для изменения дашборда и добавьте графики" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "Начальная дата включена во временной интервал" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "Изменения сохранены." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "Начать ось Y с 0" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" +msgstr "Выключить встраивание?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -"Начать ось Y в нуле. Снимите флаг, чтобы ось Y начиналась на минимальном " -"значении данных" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -#, fuzzy -msgid "Started" -msgstr "Запущен" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "Встраивание отключено" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "Состояние" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "Извините, что-то пошло не так. Встраивание не может быть деактивировано." -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." +msgstr "Извините, что-то пошло не так. Попробуйте еще раз позже." + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" -msgstr "Статистический учет" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "Настройте этот дашборд для встраивания во внешнее веб-приложение" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "Статус" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "Для получения дальнейших инструкций обратитесь к" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "Разрешенные домены (разделить запятыми)" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" +"Список доменных имен, которые могут встраивать этот дашборд. Если " +"оставить поле пустым, любой домен сможет сделать встраивание." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -#, fuzzy -msgid "Step type" -msgstr "Таблица Данных" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -#, fuzzy -msgid "Stepped Line" -msgstr "Таблица временных рядов" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" +msgstr "Выключить" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" +msgstr "Сохранить изменения" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Стоп" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" +msgstr "Разрешить встраивание" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "Остановить запрос" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" +msgstr "Встроить" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" -msgstr "Остановить выполнение (CTRL + X)" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "Применено кросс-фильтров: (%d)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "Остановить выполнение (CTRL + X)" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, fuzzy, python-format +msgid "Applied filters (%d)" +msgstr "Применено фильтров: (%d)" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" +"В настоящий момент дашборд обновляется; следующее обновление будет через " +"%s" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -#, fuzzy -msgid "Stream" -msgstr "поток" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" -msgstr "Схема" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "" +"Дашборд слишком большой. Пожалуйста, уменьшите его размер перед " +"сохранением." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "Сила притяжения вершин к центру" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" +msgstr "Задайте имя дашборда" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" +msgstr "Название дашборда" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "Имя листа (по умолчанию первый лист)" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" +msgstr "Отменить действие" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" -msgstr "Цвет обводки" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "Повторить действие" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" -msgstr "Ширина обводки" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" +msgstr "Отменить изменения" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" -msgstr "С обводкой" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Редактировать дашборд" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" -msgstr "Структура" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Произошла ошибка при получении доступных CSS-шаблонов" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "Стиль" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" +msgstr "Обновление графиков" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "Оформление концов индикатора круглыми заглушками" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Дашборд Superset" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" -msgstr "Подблок" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Посмотреть дашборд: " -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" -msgstr "Подзаголовок" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Обновить дашборд" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "Размер шрифта подзаголовка" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "Выйти из полноэкранного режима" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" -msgstr "Отправить" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "Полноэкранный режим" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" -msgstr "Подытог" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Редактировать свойства" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "Успешно" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Редактировать CSS" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "Сохранить" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" -msgstr "Текст после отображения процентной доли" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "Экспорт в YAML" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" -msgstr "Сумма" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +#, fuzzy +msgid "Download as Image" +msgstr "Сохранить как изображение" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "Сумма как доля столбцов" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Поделиться" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "Сумма как доля строк" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" +msgstr "Скопировать ссылку в буфер обмена" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" -msgstr "Сумма как доля целого" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "Поделиться ссылкой по email" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" -msgstr "Сумма значений за обозначенный период" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +msgid "Embed dashboard" +msgstr "Встроить дашборд" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Sum values" -msgstr "Суммарные значения" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" +msgstr "Управление рассылкой по почте" -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "Диаграмма Солнечные лучи" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Установить действие фильтра" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "Диаграмма Солнечные лучи" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Задать интервал обновления" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -#, fuzzy -msgid "Sunburst Chart v2" -msgstr "Диаграмма Солнечные лучи" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" +msgstr "Подтвердить перезапись" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Воскресенье" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" -msgstr "График Superset" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" +msgstr "Да, перезаписать изменения" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Вы уверены, что хотите перезаписать эти значения?" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "График Superset" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" +msgstr "Изменено %s пользователем %s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "Дашборд Superset" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Применить" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." -msgstr "Суперсет столкнулся с ошибкой во время выполнения команды." +#: 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:66 +msgid "Error" +msgstr "Ошибка" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." -msgstr "Суперсет столкнулся с неожиданной ошибкой." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "Требуется корректная цветовая схема" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" -msgstr "Поддерживаемые базы данных" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "JSON метаданные не валидны!" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" +msgstr "Свойства дашборда обновлены" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -msgid "Swap dataset" -msgstr "Сменить датасет" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Дашборд сохранен" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" -msgstr "Поменять местами строки и столбцы" +#: 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 "Доступ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +"Owners is a list of users who can alter the dashboard. Searchable by name" +" or username." msgstr "" +"Владельцы – это список пользователей, которые могут изменять дашборд. " +"Можно искать по имени или никнейму." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Цвета" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#, fuzzy msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks. If no roles are " +"defined, regular access permissions apply." msgstr "" +"Список ролей, определяющий доступ к дашборду. Предоставляя доступ " +"определенной роли, пользователь сможет обойти ограничения своей роли. " +"Если роли не указаны, дашборд доступен всем ролям." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" -msgstr "" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Свойства дашборда" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Основная информация" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "Читаемый URL" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "Читаемый URL-адрес для дашборда" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "Утверждение" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." +msgstr "Лицо или группа, которые утвердили этот дашборд" + +#: 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 "Любые дополнительные сведения для всплывающей подсказки" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 #, fuzzy -msgid "Symbol size" -msgstr "Размер маркера" +msgid "A list of tags that have been applied to this chart." +msgstr "Лицо или группа, которые утвердили этот график" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "Синхронизировать столбцы из источника" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "JSON метаданные" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset/db_engine_specs/ocient.py:282 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 #, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgid "Use \"%(menuName)s\" menu instead." +msgstr "Использовать меню \"%(menuName)s\" взамен." + +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" +"Этот дашборд не опубликован, он не будет отображён в списке дашбордов. " +"Нажмите, чтобы опубликовать этот дашборд." -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "ТАБЛИЦЫ" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" +"Этот дашборд не опубликован, что означает, что он не будет отображён в " +"списке дашбордов. Добавьте его в избранное, чтобы увидеть там или " +"воспользуйтесь доступом по прямой ссылке." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -#, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "Содержит дату/время" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Дашборд опубликован. Нажмите, чтобы сделать черновиком." -#: superset-frontend/src/explore/constants.ts:91 -#, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "Содержит дату/время" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Черновик" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "ЧТ" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Слои аннотаций загружаются." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "ВТ" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Один или несколько слоев аннотации не удалось загрузить." -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "Имя вкладки" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "Имя вкладки" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "Данные обновлены" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Таблица" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "Добавлено в кэш %s" -#: superset/views/core.py:1775 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 #, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "" +msgid "Fetched %s" +msgstr "Получено %s" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "Таблица существует" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "Запрос %s: %s" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "Имя таблицы" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Обновить" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" +msgstr "Скрыть описание графика" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" +msgstr "Показать описание графика" -#: superset/viz.py:722 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Table View" -msgstr "Убрать предпросмотр таблицы" +msgid "Cross-filtering scoping" +msgstr "Задать область действия кросс-фильтра" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Показать SQL запрос" -#: superset/datasets/commands/exceptions.py:147 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" +msgstr "Показать в виде таблицы" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 #, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" -msgstr "" -"Не удается найти таблицу \"%(table_name)s\", пожалуйста, проверьте ваше " -"соединение с базой данных, схему и имя таблицы" +msgid "Chart Data: %s" +msgstr "Данные графика: %s" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" -msgstr "" -"Не удается найти таблицу \"%(table)s\", пожалуйста, проверьте ваше " -"соединение с базой данных, схему и имя таблицы, ошибка: {}" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Поделиться графиком по email" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" -msgstr "Время жизни кэша таблицы" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " +msgstr "Посмотреть график: " -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" -msgstr "Столбцы таблицы" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" +msgstr "Экспорт в .CSV" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 #, fuzzy -msgid "Table loading" -msgstr "Загрузка таблицы" +msgid "Export to Excel" +msgstr "Экспорт в YAML" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" -msgstr "Имя таблицы не может содержать схему" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" +msgstr "Экспорт в целый .CSV" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Имя таблицы не определено" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Экспорт в YAML" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "Пользователь \"%(username)s\" не существует." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Сохранить как изображение" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -"Таблица, визуализирующая парные t-тесты, которые используются для " -"нахождения статистических различий между группами." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Таблицы" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Поиск..." -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "Вкладки" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Не выбраны фильтры." -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" -msgstr "Таблицы" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Редактирование 1 фильтра:" -#: superset/tags/commands/exceptions.py:34 -#, fuzzy -msgid "Tag could not be created." -msgstr "Не удалось создать датасет" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Множественное редактирование фильтров: %d" -#: superset/tags/commands/exceptions.py:38 -#, fuzzy -msgid "Tag could not be deleted." -msgstr "Не удалось удалить датасет" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Настроить область действия фильтра" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "В этом дашборде нет фильтров." -#: superset/tags/commands/exceptions.py:30 -#, fuzzy -msgid "Tag parameters are invalid." -msgstr "Параметры датасета неверны." +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Расширить все" + +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Свернуть всё" + +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" +msgstr "Произошла ошибка при открытии режима исследования" -#: superset/tags/commands/exceptions.py:42 +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 #, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "Не удалось удалить датасет" +msgid "Empty column" +msgstr "Показывать пустые столбцы" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" -msgstr "Теги" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Этот компонент содержит ошибки." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "Этот компонент содержит ошибки. Пожалуйста, отмените последние изменения." + +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" -msgstr "Цель" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" +msgstr "Вы можете" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" -msgstr "Целевой цвет" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" +msgstr "создать новый график" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" -msgstr "Целевая категория" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" +msgstr "или использовать уже существующие из панели справа" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "Целевое значение" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" +msgstr "Вы можете добавить компоненты в" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Имя шаблона" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" +msgstr "режиме редактирования" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "Параметры шаблона" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Удалить вкладку дашборда?" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -"Шаблонная ссылка, можно включить {{ metric }} или другие значения, " -"поступающие из элементов управления." +"Удаление вкладки удалит все ее содержимое. Вы можете отменить это " +"действие при помощи сочетания клавиш" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." -msgstr "" -"Завершать выполнение запросов после закрытия браузерной вкладки или " -"пользователь переключился на другую вкладку. Доступно для баз данных " -"Presto, Hive, MySQL, Postgres и Snowflake." +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "отмены" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "Тестовое соединение" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "(CTRL + Z), пока вы не сохраните изменения." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "Тестовое соединение" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "ОТМЕНА" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Разделитель" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Заголовок" #: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 #: superset-frontend/src/visualizations/TimeTable/index.ts:38 msgid "Text" msgstr "Текст" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" -msgstr "Выравнивание текста" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Вкладки" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" -msgstr "Текст, включенный в email" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "" + +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Предпросмотр" + +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Извините, что-то пошло не так. Попробуйте еще раз позже." + +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" +msgstr "Неизвестная ошибка" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" +msgstr "Добавить/изменить фильтры" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." +msgstr "Не применено ни одного фильтра к данному дашборду." + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +#, fuzzy +msgid "No global filters are currently added" +msgstr "Не применено ни одного фильтра" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" +msgstr "Применить фильтры" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Сбросить фильтры" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#, fuzzy +msgid "Locate the chart" +msgstr "создать новый график" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +#, fuzzy +msgid "Cross-filters" +msgstr "Задать область действия кросс-фильтра" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." -msgstr "" -"CTAS (CREATE TABLE AS SELECT) не содержит SELECT запрос в конце. " -"Пожалуйста, убедитесь, что ваш запрос имеет SELECT запрос в конце. Затем " -"попробуйте повторно выполнить запрос." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Выберите графики" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Не применено ни одного фильтра к данному дашборду." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -"Диаграмма принимает данные в формате GeoJSON и отображает их в виде " -"интерактивных полигонов, линий и точек (кругов, значков и/или текста)." -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Все графики" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#, fuzzy +msgid "Enable cross-filtering" +msgstr "Задать область действия кросс-фильтра" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +#, fuzzy +msgid "Orientation of filter bar" +msgstr "Ориентация дерева" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "Аннотация сохранена" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" +msgstr "Вертикально (слева)" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" -msgstr "Аннотация обновлена" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" +msgstr "Горизонтально (сверху)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." -msgstr "" -"Категория исходных вершин предназначена для задания цветов. Если вершина " -"связана более, чем с одной категорией, только первая будет использована." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#, fuzzy +msgid "More filters" +msgstr "Временной фильтр" -#: superset/common/query_context_processor.py:585 -msgid "The chart datasource does not exist" -msgstr "Источник данных графика не существует" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" +msgstr "Фильтры не применены" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "График не существует" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" +msgstr "Применены фильтры: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." -msgstr "Классическая круговая/кольцевая диаграмма." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Невозможно загрузить фильтр" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" -msgstr "Цвет для маркеров и кластеров в RGB" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" +msgstr "Фильтры вне рамок дашборда (%d)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "Цветовая схема, применяемая для раскрашивания графика" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "Зависит от" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -"Цветовая схема определена соответствующим дашбордом.\n" -" Измените цветовую схему в свойствах дашборда." +"Фильтр предлагает только те значения, которые отобраны выбранными " +"фильтрами" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" -msgstr "Заголовок столбца" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Область" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." -msgstr "Столбец был удален или переименован в базе данных." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "Тип фильтра" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" -msgstr "Код страны, который Суперсет ожидает найти в столбце со страной" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "Название обязательно" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "Дашборд сохранен" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Удалено)" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "Источник данных, похоже, был удален" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Отменить?" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "Добавить фильтры и разделители" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." -msgstr "" -"База данных %s привязана к %s графику(-ам), который(-ые) " -"используется(-ются) в %s дашборде(-ах), и пользователи имеют %s " -"открытую(-ых) вкладку(-ок) в Лаборатории SQL. Вы уверены, что хотите " -"продолжить? Удаление базы данных приведёт к неработоспособности этих " -"компонентов." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" +msgstr "[без названия]" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "Обнаружена циклическая зависимость" -#: superset/sqllab/commands/estimate.py:58 -#, fuzzy -msgid "The database could not be found" -msgstr "Не удалось найти базу данных" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" +msgstr "Добавить и изменить фильтры" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "В настоящий момент база данных обрабатывает слишком много запросов." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "Выбор столбца" -#: superset/errors.py:99 -msgid "The database is under an unusual load." -msgstr "Нетипично высокая загрузка базы данных" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "Выберите столбец" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "" -"База данных, указанная в этом запросе, не найдена. Пожалуйста, обратитесь" -" к своему администратору или попробуйте еще раз." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "Не найдено подходящих столбцов" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." -msgstr "База данных вернула неожиданную ошибку" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +#, fuzzy +msgid "No compatible datasets found" +msgstr "Не найдено подходящих столбцов" -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "База данных была удалена" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Выбрать все данные" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." -msgstr "Не удалось найти базу данных" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "Значение обязательно" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." -msgstr "" -"Датасет %s привязан к %s графику(-ам), который(-ые) используется(-ются) в" -" %s дашборде(-ах). Вы уверены, что хотите продолжить? Удаление датасета " -"приведёт к неработоспособности этих объектов." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" +msgstr "(удалено или невалидный тип)" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "Датасет, связанный с этим графиком, больше не существует" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" +msgstr "Тип ограничения" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." +msgstr "Нет доступных фильтров." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Добавить фильтр" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "Значения зависят от других фильтров" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -"Представленная здесь конфигурация датасета\n" -" влияет на все графики, использующие этот датасет.\n" -" Помните, что изменение настроек\n" -" может иметь неожиданный эффект\n" -" на другие графики." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "Датасет сохранен" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Значения зависят от" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." -msgstr "Датасет, связанный с этим графиком, похоже, был удален." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Область применения" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "Невозможно загрузить источник данных" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Конфигурация фильтра" -#: superset/errors.py:98 -msgid "The datasource is too large to query." -msgstr "Источник данных слишком велик для запроса." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "Настройки фильтра" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "" -"Описание может быть отображено как заголовок графика в дашборде. " -"Поддерживает markdown-разметку" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "Селектор" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "Расстояние между ячейками (в пикселях)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "Диапазон" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 -#, fuzzy -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "Количество секунд до истечения срока действия кэша" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "Числовой диапазон" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -#, fuzzy -msgid "The encoding format of the lines" -msgstr "Показатель, по которому сортировать результаты" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "Временной фильтр" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." -msgstr "Объект engine_params вызывает sqlalchemy.create_engine" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Временной интервал" -#: superset/common/query_object.py:313 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Столбец даты/времени" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Единица времени" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "Группировать по" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Группировать по" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "Предварительная фильтрация обязательна" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -"Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться по" -" порту %(port)s." -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "Хост возможно, отключен, и с ним невозможно связаться по заданному порту." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "Не удалось обнаружить хост \"%(hostname)s\"" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Имя фильтра" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." -msgstr "Не удалось обнаружить хост." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Имя обязательно" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "Идентификатор активного графика" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Тип фильтра" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "Датасет не содержит столбца формата дата/время" -#: superset/connectors/sqla/views.py:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "" -"Максимальное количество возвращаемых событий, эквивалентно количеству " -"строк" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "Требуется датасет" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "Предварительно выбрать доступные значения для фильтра" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "Максимальное значение мер. Это необязательная настройка" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" +msgstr "Предварительная фильтрация" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "Без фильтрации" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "Сортировать отфильтрованные значения" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "Объект metadata_params вызывает sqlalchemy.MetaData" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "Тип сортировки" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" -msgstr "" -"Минимальное количество скользящих периодов, необходимое для отображения " -"значения. Например, если вы делаете накопительную сумму за 7 дней, вы " -"можете указать, чтобы \"Минимальный период\" был равен 7, так что все " -"показанные точки данных представляют собой общее количество 7 периодов." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Сортировать по возрастанию" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "Количество цветов в цветовой схеме" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Мера для сортировки" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." -msgstr "" -"Количество часов, отрицательное или положительное, для сдвига столбца " -"формата дата/время. Это может быть использовано для приведения часового " -"пояса UTC к местному времени." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" +msgstr "Если мера задана, сортировка будет произведена на основании значений меры" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." -msgstr "" -"Количество отображаемых результатов ограничено %(rows)d переменной " -"DISPLAY_MAX_ROW. Пожалуйста, добавьте дополнительные ограничения/фильтры" -" или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Показатель для сортировки" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." -msgstr "" -"Количество отображаемых результатов ограничено %(rows)d. Пожалуйста, " -"добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы " -"увидеть больше строк до предела %(limit)d.\"" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "Единственное значение" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, fuzzy, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "Количество отображаемых строк ограничено: не более %(rows)d." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "Тип единственного значения" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "Количество отображаемых строк ограничено: не более %(rows)d." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "Точное" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "Количество отображаемых строк ограничено: не более %(rows)d." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "Фильтр имеет значение по умолчанию" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." -msgstr "Количество отображаемых строк ограничено: не более %(rows)d." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Значение по умолчанию" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "Требуется значение по умолчанию" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "Количество секунд до истечения срока действия кэша" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "Обновить значения по умолчанию" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "Объект не существует в этой базе данных." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "Установить все требуемые флаги для включения \"Значения по умолчанию\"" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "Параметр %(parameters)s в вашем запросе неопределен." -msgstr[1] "Следующие параметры неопределены в вашем запросе: %(parameters)s" -msgstr[2] "Следующие параметры неопределены в вашем запросе: %(parameters)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Вы удалили фильтр." -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "Неверный пароль для пользователя \"%(username)s\"." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Восстановить фильтр" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "Неверный пароль для базы данных." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "Столбец обязателен" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -"Для баз данных нужны пароли, чтобы импортировать их вместе с графиками. " -"Пожалуйста, обратите внимание, что разделы \"Безопасность\" и " -"\"Утверждение\" в настройках конфигурации базы данных отсутствуют в " -"экспортируемых файлов и должны быть добавлены вручную после импорта, если" -" необходимо." -#: superset-frontend/src/pages/DashboardList/index.tsx:62 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -"Для баз данных нужны пароли, чтобы импортировать их вместе с дашбордами. " -"Пожалуйста, обратите внимание, что разделы \"Безопасность\" и " -"\"Утверждение\" в настройках конфигурации базы данных отсутствуют в " -"экспортируемых файлах и должны быть добавлены вручную после импорта, если" -" необходимо." +"Значение по умолчанию задается автоматически, когда установлен флаг " +"\"Сделать первое значение фильтра значением по умолчанию\"" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -"Пароли к базам данных требуются, чтобы импортировать их вместе с " -"датасетами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и" -" \"Утверждение\" конфигурации базы данных отсутствуют в экспортируемых " -"файлах и должны быть добавлены после импорта вручную, если необходимо." +"Значение по умолчанию должно быть выбрано, когда установлен флаг " +"\"Требуется значение фильтра\"" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"Для баз данных нужны пароли, чтобы импортировать их вместе с сохраненными" -" запросами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и" -" \"Утверждение\" в настройках конфигурации базы данных отсутствуют в " -"экспортируемых файлах и должны быть добавлены вручную после импорта, если" -" необходимо." +"Значение по умолчанию должно быть выбрано, когда установлен флаг \"Фильтр" +" имеет значение по умолчанию\"" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." -msgstr "" -"Пароли к базам данных требуются, чтобы импортировать их. Пожалуйста, " -"обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в " -"настройках конфигурации базы данных отсутствуют в импортируемых файлах и " -"должны быть добавлены вручную после импорта, если необходимо." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Применить ко всем панелям" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "Шаблон формата отметки времени (таймштампа). Для строк используйте " +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Применить к выбранным панелям" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." -msgstr "" -"Периодичность для группировки по времени. Пользователи могут задавать " -"собственную частоту. Для этого нажмите на иконку с информацией." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "Фильтр будет применён только к выбранным панелям" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "Радиус ячейки (в пикселях)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "Фильтр будет применён ко всем панелям с этим столбцом" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." -msgstr "" -"Указатель на физическую таблицу (или представление). Следует помнить, что" -" график связан с логической таблицей Superset, а эта логическая таблица " -"указывает на физическую таблицу, указанную здесь." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "Все панели" -#: superset/errors.py:109 -msgid "The port is closed." -msgstr "Порт закрыт." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" +msgstr "Этот график может быть несовместим с этим фильтром (датасеты не совпадают)" -#: superset/errors.py:142 -msgid "The port number is invalid." -msgstr "Недействительный порт." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Продолжить редактирование" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "Основная мера используется для определения размера сегмента дуги" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Да, отменить" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "У вас есть несохраненные изменения." -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." -msgstr "Запрос, связанный с результатами, был удален." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Вы уверены, что хотите отменить?" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" +"Ошибка загрузки источников данных для графиков. Фильтры могут работать " +"некорректно." -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." -msgstr "" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "Прозрачный" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "Запрос невозможно загрузить" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "Белый" -#: superset/sqllab/commands/estimate.py:86 -#, fuzzy, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." -msgstr "" -"Запрос был прерван после %(sqllab_timeout)s секунд. Он мог быть слишком " -"сложным, или база данных находилась под большой нагрузкой." +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Все фильтры" -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "Запрос имеет синтаксическую ошибку." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, python-format +msgid "Click to edit %s." +msgstr "Нажмите для редактирования %s." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "Запрос не вернул данных" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." +msgstr "Нажмите для редактирования графика." -#: superset/sql_lab.py:297 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format +msgid "Use %s to open in a new tab." +msgstr "Используйте %s для открытия в отдельной вкладке." + +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" +msgstr "Средний" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "Подзаголовок" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Имя вкладки" + +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"Запрос был прерван после %(sqllab_timeout)s секунд. Он мог быть слишком " -"сложным, или база данных находилась под большой нагрузкой." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" +msgstr "Не равно (≠)" + +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -"Радиус маркеров (не находящихся в кластере). Выберите числовой столбец " -"или `Автоматически`, который отмасштабирует маркеры по наибольшему " -"маркеру." -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "Рассылка создана" +#: superset-frontend/src/explore/constants.ts:62 +#, fuzzy +msgid "Less or equal (<=)" +msgstr "<= (меньше или равно)" + +#: superset-frontend/src/explore/constants.ts:65 +#, fuzzy +msgid "Greater than (>)" +msgstr "Агрегированное среднее" + +#: superset-frontend/src/explore/constants.ts:67 +#, fuzzy +msgid "Greater or equal (>=)" +msgstr ">= (больше или равно)" + +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "в" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "Сервер не сохранил данные из этого запроса." +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "аннотация" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -"Данные, сохраненные на сервере, имели другой формат, и не могут быть " -"распознаны." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" -"Расширенная всплывающая подсказка показывает список всех категорий для " -"этой точки." +#: superset-frontend/src/explore/constants.ts:74 +#, fuzzy +msgid "Like (case insensitive)" +msgstr "Фильтровать значения (зависит от регистра)" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "" +#: superset-frontend/src/explore/constants.ts:78 +#, fuzzy +msgid "Is not null" +msgstr "Не пусто" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." -msgstr "" +#: superset-frontend/src/explore/constants.ts:81 +#, fuzzy +msgid "Is null" +msgstr "Не пусто" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." -msgstr "Схема была удалена или переименована в базе данных." +#: superset-frontend/src/explore/constants.ts:83 +#, fuzzy +msgid "use latest_partition template" +msgstr "последний раздел:" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "Размер квадратной ячейки (в пикселях)" +#: superset-frontend/src/explore/constants.ts:86 +#, fuzzy +msgid "Is true" +msgstr "поток" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" +#: superset-frontend/src/explore/constants.ts:87 +#, fuzzy +msgid "Is false" +msgstr "Отключено" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "Загруженные данные имеют некорректный формат." +#: superset-frontend/src/explore/constants.ts:89 +#, fuzzy +msgid "TEMPORAL_RANGE" +msgstr "Содержит дату/время" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "Загруженные данные имеют некорректную схему." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Гранулярность времени" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." -msgstr "" -"Таблица \"%(table)s\" не существует. Для выполнения запроса должна " -"использоваться существующая таблица" +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "Продолжительность в мс (100.40008 => 100ms 400µs 80ns)" -#: superset/db_engine_specs/presto.py:665 -#, python-format +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -"Таблица \"%(table_name)s\" не существует. Для выполнения запроса должна " -"использоваться существующая таблица" +"Один или несколько столбцов для группировки. Столбцы с множеством " +"уникальных значений должны включать порог количества категорий для " +"снижения нагрузку на базу данных и на ускорения отображения графика." -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Выберите одну или несколько мер для отображения" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "Таблица была удалена или переименована в базе данных." +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Фиксированный цвет" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 -msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "" -"Столбец данных формата дата/время. Вы можете определить произвольное " -"выражение, которое будет возвращать столбец даты/времени в таблице. " -"Фильтр ниже будет применён к этому столбцу или выражению" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Мера для правой оси" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Выберите меру для правой оси" + +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Линейная цветовая схема" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Мера для цвета" + +#: superset-frontend/src/explore/controls.jsx:245 +#, fuzzy +msgid "One or many controls to pivot as columns" msgstr "" -"Интервал времени, в границах которого строится график. Обратите внимание," -" что для определения диапазона времени, вы можете использовать " -"естественный язык. Например, можно указать словосочетания - «10 seconds»," -" «1 day» или «56 weeks»" +"Выберите один или несколько ... для отображения показателей в столбцах " +"сводной таблицы" #: superset-frontend/src/explore/controls.jsx:271 msgid "" @@ -15816,7 +15561,6 @@ msgstr "" "естественный язык. Например, можно указать словосочетания - «10 seconds»," " «1 day» или «56 weeks»" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 #: superset-frontend/src/explore/controls.jsx:310 msgid "" "The time granularity for the visualization. This applies a date " @@ -15829,7 +15573,6 @@ msgstr "" "т.п.). Доступные варианты заданы в исходном коде Superset для каждого " "типа драйвера базы данных." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 #: superset-frontend/src/explore/controls.jsx:327 msgid "" "The time range for the visualization. All relative times, e.g. \"Last " @@ -15846,2282 +15589,2246 @@ msgstr "" "можете самостоятельно задать часовой пояс по формату ISO 8601 при " "пользовательской настройке, задав время начала и/или конца." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Ограничивает количество отображаемых строк" + +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Единица времени для каждого подблока. Должна быть меньшей единицей, чем " -"единица времени блока. Должно быть больше или равно единице времени" +"Мера, используемая для определения того, как сортируются верхние " +"категории, если присутствует ограничение по категории или строке. Если не" +" определено, возвращается к первой мере (где это уместно)." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" -msgstr "Единица времени для группировки блоков" +#: superset-frontend/src/explore/controls.jsx:383 +msgid "" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" +msgstr "" +"Группировка в ряды данных. Каждая категория отображается в виде " +"определенного цвета на графике и имеет легенду" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "Выберите необходимый тип визуализации" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Показатель, отраженный на оси X" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" -msgstr "Единица измерения для указанного радиуса маркера" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Показатель, отраженный на оси Y" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "Пользователь, похоже, был удален" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Размер маркера" + +#: superset-frontend/src/explore/controls.jsx:434 +msgid "" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" +msgstr "" +"Когда `Тип расчёта` установлен в \"Процентное изменение\", формат оси Y " +"устанавливается в `.1%`" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Цветовая схема" + +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "Произошла ошибка при добавлении графика в избранное" + +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, python-format +msgid "Chart [%s] has been saved" +msgstr "График [%s] сохранен" + +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, python-format +msgid "Chart [%s] has been overwritten" +msgstr "График [%s] перезаписан" + +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "Дашборд [%s] был только что создан и график [%s] был добавлен в него" + +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "График [%s] добавлен в дашборд [%s]" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" +msgstr "GROUP BY" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 +msgid "" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 +msgid "" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "В этом разделе содержатся ошибки валидации" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" +msgstr "Оставить прежние настройки?" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 +msgid "" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" +"Вы изменили датасеты. Все элементы управления с данными (столбцами, " +"мерами), которые соответствуют новому датасету, были сохранены." -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "Пользователь \"%(username)s\" не существует." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" +msgstr "Продолжить" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "Имя пользователя, указанное при подключении к базе данных, недействительно" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" +msgstr "Очистить форму" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" -msgstr "Способ расположения делений по оси X" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "Конфигурация графика не сохранилась" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" -msgstr "Ширина линий" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 +msgid "" +"We were unable to carry over any controls when switching to this new " +"dataset." +msgstr "Не удалось перенести настройки прошлого графика при переключении датасета." -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Есть связанные оповещения или отчеты" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Кастомизация" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," -msgstr "Есть связанные оповещения или отчеты: %s" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "Генерация ссылки, пожалуйста, ждите..." -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" -msgstr "В этот дашборд еще не добавлен ни один график." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "Высота графика" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "В этой вкладке нет компонентов" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" +msgstr "Ширина графика" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "Нет доступных баз данных" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Произошла ошибка при получении дашбордов" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "В этом дашборде нет фильтров." +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Сохранить (Перезаписать)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." -msgstr "У вас есть несохраненные изменения." +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." +msgstr "Сохранить как..." -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." -msgstr "" -"В SQL-запросе имеется синтаксическая ошибка. Возможно, это " -"орфографическая ошибка или опечатка." +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Имя графика" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" -msgstr "С этим компонентом не связан ни один график, возможно, он был удален." +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" +msgstr "Имя датасета" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." -msgstr "" -"Недостаточно пространства для этого компонента. Попробуйте уменьшить " -"ширину или увеличить целевую ширину." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." +msgstr "Переиспользуемый датасет будет сохранен с вашим графиком." -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -#, fuzzy -msgid "There was an error fetching dataset" -msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Добавить в дашборд" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -#, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "Выбрать дашборд" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -#, fuzzy -msgid "There was an error fetching tables" -msgstr "Возникла ошибка при загрузке таблиц" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "Выбрать" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Произошла ошибка при получении статуса избранного: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +msgid " a dashboard OR " +msgstr " дашборд или " -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "Произошла ошибка при получении вашей недавней активности:" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" +msgstr "создать" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -#, fuzzy -msgid "There was an error loading the chart data" -msgstr "Возникла ошибка при загрузке схем" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" +msgstr " новый" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" -msgstr "Возникла ошибка при загрузке метаданных датасета" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Не удалось создать дашборд" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "Возникла ошибка при загрузке схем" +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Не удалось создать график" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "Возникла ошибка при загрузке таблиц" +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Не удалось создать дашборд" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Произошла ошибка при сохранении статуса избранного: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Сохранить и перейти к дашборду" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "Произошла ошибка с вашим запросом" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Сохранить график" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Произошла ошибка при удалении %s: %s" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" +msgstr "Форматированная дата" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Произошла ошибка при удалении %s: %s" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" +msgstr "Форматирование столбца(ов)" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Произошла ошибка при удалении выбранных %s: %s" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" +msgstr "Свернуть панель управления" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "Произошла ошибка при удалении выбранных аннотаций: %s" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" +msgstr "Расширить панель данных" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "Произошла ошибка при удалении выбранных графиков: %s" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" +msgstr "Примеры данных" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "Произошла ошибка при удалении выбранных дашбордов: " +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" +msgstr "Не было получено данных для этого датасета" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Произошла ошибка при удалении выбранных датасетов: %s" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" +msgstr "Нет результатов" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Произошла ошибка при удалении выбранных слоёв: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Поиск по мерам и столбцам" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "Произошла ошибка при удалении выбранных запросов: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +msgid "Create a dataset" +msgstr "Создать датасет" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "Произошла ошибка при удалении выбранных шаблонов: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." +msgstr " для редактирования или добавления столбцов и мер." -#: superset-frontend/src/views/CRUD/utils.tsx:275 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 #, python-format -msgid "There was an issue deleting: %s" -msgstr "Произошла ошибка при удалении: %s" +msgid "Showing %s of %s" +msgstr "Отображено %s из %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." -msgstr "Произошла ошибка при дублировании датасета." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "Показать меньше..." -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Произошла ошибка при дублировании выбранных датасетов: %s" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "Показать все..." -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Произошла ошибка при добавлении этого дашборда в избранное." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "Показать меньше..." -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "Произошла ошибка с получением рассылок, связанных с этим дашбордом." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "Не удалось получать цветовую схему дашборда" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "Произошла ошибка с получением статуса избранного для этого дашборда." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Добавлено в 1 дашборд" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Произошла ошибка при получении вашего графика: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" +msgstr "Не добавлен ни в один дашборд" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Произошла ошибка при получении вашего дашборда: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." +msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Произошла ошибка при получении вашей последней активности: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" +msgstr "Не доступно" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Произошла ошибка при получении ваших сохраненных запросов: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" +msgstr "Задайте имя графика" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "Произошла ошибка при предпросмотре выбранного запроса %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" +msgstr "Название графика" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Произошла ошибка при предпросмотре выбранного запроса: %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "Добавьте обязательные значения для сохранения графика" -#: superset/viz.py:1915 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "Для данного типа графика необходим датасет" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "Это таблицы, к которым будет применен этот фильтр." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." +msgstr " для визуализации ваших данных." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "Эти фильтры применяются к значениям, доступным в выпадающих списках" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "Обязательные значения были удалены" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "" -"Эти параметры генерируются автоматически при нажатии кнопки сохранения. " -"Опытные пользователи могут изменить определенные объекты в формате JSON." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "Ваш график не актуален" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:786 -#: superset/views/dashboard/mixin.py:58 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -"Этот JSON-объект генерируется автоматически при сохранении или перезаписи" -" дашборда. Он размещён здесь справочно и для опытных пользователей." +"Вы обновили значения в панели управления, но график не был обновлен " +"автоматически. Сделайте запрос, нажав на кнопку \"Обновить график\" или" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." -msgstr "Это действие навсегда удалит %s." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "Значения с именами " -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "Это действие навсегда удалит слой." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "Значение с именем " -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "Это действие навсегда удалит сохранённый запрос." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#, fuzzy +msgid "Chart Source" +msgstr "Источник графика" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "Это действие навсегда удалит шаблон." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Открыть вкладку источника данных" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." -msgstr "" -"Это может быть как IP адрес (например, 127.0.0.1), так и доменное имя " -"(например, моябазаданных.рф)." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" +msgstr "Исходные данные" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "Сводные данные" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "Этот график был перемещён в другой набор фильтров." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "У вас нет прав на редактирование этого графика" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" +msgstr "Свойства графика обновлены" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" +msgstr "Редактировать свойства графика" #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "Этот график может быть несовместим с этим фильтром (датасеты не совпадают)" - -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" +"Описание может быть отображено как заголовок графика в дашборде. " +"Поддерживает markdown-разметку" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "Лицо или группа, которые утвердили этот график" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Конфигурация" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#, fuzzy msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" +"Продолжительность (в секундах) таймаута кэша для этого графикаОбратите " +"внимание, что если значение не задано, применяется значение таймаута " +"датасета." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" -msgstr "Этот график может быть несовместим с этим датасетом" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "Владельцы - это пользователи, которые могут изменять график" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." -msgstr "В этом столбец должны быть данные формата дата/время." +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Достигнут предел" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" -"Должен ли временной интервал из этого представления переписать временной " -"интервал графика, содержащего данные аннотации." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" +msgstr "Создать график" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" -"Должен ли единица времени из этой таблицы переписать единицу времени " -"графика." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" +msgstr "Обновить график" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." -msgstr "" -"В настоящий момент дашборд обновляется; следующее обновление будет через " -"%s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Неверная конфигурация широты и долготы." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "Поменять местами широту и долготу" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "" -"Этот дашборд не опубликован, что означает, что он не будет отображён в " -"списке дашбордов. Добавьте его в избранное, чтобы увидеть там или " -"воспользуйтесь доступом по прямой ссылке." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Долгота и Широта" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "Долгота и широта в одном столбце" + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +"Multiple formats accepted, look the geopy.points Python library for more " +"details" msgstr "" -"Этот дашборд не опубликован, он не будет отображён в списке дашбордов. " -"Нажмите, чтобы опубликовать этот дашборд." +"Для уточнения форматов и получения более подробной информации, посмотрите" +" Python-библиотеку geopy.points" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" -msgstr "Дашборд теперь скрыт" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geohash" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" -msgstr "Дашборд теперь опубликован" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "текстовая область" + +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "в модальном окне" + +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Извините, произошла ошибка" + +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" +msgstr "Сохранить как датасет" + +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Открыть в SQL редакторе" + +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" +msgstr "Ошибка при проверке вариантов выбора: %s" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +msgid "No annotation layers" +msgstr "Нет слоев аннотаций" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +msgid "Add an annotation layer" +msgstr "Добавить слой аннотации" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Слой аннотаций" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "Дашборд опубликован. Нажмите, чтобы сделать черновиком." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." +msgstr "Выбрать слой аннотации, который вы хотите использовать." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset/views/core.py:1353 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Этот дашборд был недавно изменен. Пожалуйста, обновите дашборд, чтобы " -"увидеть изменения." +"Формула с зависимой переменной 'x' в милисекундах с 1970 года " +"(Unix-время). Для рассчета используется mathjs. Например: '2x+5'" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Дашборд успешно сохранен" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "Значение слоя аннотации" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "Эта база данных управляется извне и не может быть изменена в Суперсете" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." +msgstr "Неверная формула." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Настройки аннотации из графика" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +#, fuzzy msgid "" -"This database table does not contain any data. Please select a different " -"table." +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" +"Этот раздел позволяет вам настроить использования графика для создания " +"аннотаций." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "Этот датасет управляется извне и не может быть изменена в Суперсете" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "Тип слоя аннотации" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "Столбец с началом интервала" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Элемент, который будет отражен на графике" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "Столбец формата дата/время" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." +msgstr "В этом столбец должны быть данные формата дата/время." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "Определяет уровень иерархии" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "Конечный интервал слоя аннотации" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "Столбец с концом интервала" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Этот фильтр не существует в дашборде. Он не будет применен." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "Название столбца слоя аннотации" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "Этот фильтр может быть несовместим с этим датасетом" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "Столбец с названием" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "Этот набор фильтров идентичен \"%s\"" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "Выберите название для вашей аннотации" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "Эта функция отключена в вашей среде по соображениям безопасности." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "Описательные столбцы слоя аннотаций." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." -msgstr "" -"Это условие, которое будет добавлено к оператору WHERE. Например, чтобы " -"возвращать строки только для определенного клиента, вы можете определить " -"обычный фильтр с условием `client_id = 9`. Чтобы не отображать строки, " -"если пользователь не принадлежит к роли фильтра RLS, можно создать " -"базовый фильтр с предложением `1 = 0` (всегда false)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "Описательные столбцы" -#: superset/views/dashboard/mixin.py:46 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -"Этот JSON объект описывает расположение графиков в дашборде. Он " -"генерируется динамически при изменении и перемещении графиков в дашборде." - -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Этот компонент содержит ошибки." +"Выберите один или несколько столбцов, которые должны отображаться в " +"аннотации. Если вы не выберите столбец, все столбцы будут отображены." -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "Этот компонент содержит ошибки. Пожалуйста, отмените последние изменения." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" +msgstr "Переопределить временной интервал" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "Возможные причины:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." +msgstr "" +"Должен ли временной интервал из этого представления переписать временной " +"интервал графика, содержащего данные аннотации." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" -msgstr "Эта мера может быть несовместима с этим датасетом" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" +msgstr "Переопределить единицу времени" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -#, fuzzy +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -"Этот раздел позволяет вам настроить использования графика для создания " -"аннотаций." +"Должен ли единица времени из этой таблицы переписать единицу времени " +"графика." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -"В этом разделе содержатся параметры, которые позволяют производить " -"аналитическую постобработку результатов запроса" +"Временной сдвиг на естественном языке (например: 24 hours, 7 days, 56 " +"weeks, 365 days)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" -msgstr "В этом разделе содержатся ошибки валидации" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Настройки отображения" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Настройка отображения слоя аннотации поверх графика." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "Штрих слоя аннотации" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Стиль" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "Это значение должно быть больше чем левое целевое значение" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "Сплошной" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" -msgstr "Это значение должно быть больше чем правое целевое значение" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" +msgstr "Штрих" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -#, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "Этот тип визуализации не поддерживается." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "Длинный штрих" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "Этот тип визуализации не поддерживается." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" +msgstr "Пунктир" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "Причина срабатывания:" -msgstr[1] "Причины срабатывания" -msgstr[2] "Причины срабатывания" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "Непрозрачность слоя аннотации" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Цвет" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" -msgstr "Пороговый альфа-уровень для определения значимости" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "Автоматический цвет" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" -msgstr "Пороговое значение должно быть числом двойной точности" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "Показывает или скрывает маркеры для временных рядов" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" -msgstr "Миниатюры" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" +msgstr "Скрыть линию" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Четверг" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "Время" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Настройки слоя" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" -msgstr "Столбец даты/времени" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Настройте слой аннотации." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" -msgstr "Сравнение по времени" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Обязательно" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Скрыть слой" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "Показывать метку" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "Всегда показывать метку аннотации" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" -msgstr "Формат даты/времени" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Тип слоя аннотации" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" -msgstr "Единица времени" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Выбрать тип слоя аннотации" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" -msgstr "Гранулярность времени" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "Тип источника аннотации" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" -msgstr "Временной лаг" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "Выберите источник аннотаций" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "Временной интервал" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" +msgstr "Источник аннотации" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" -msgstr "Соотношение времени" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Удалить" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" msgstr "Временной ряд" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "Столбчатая диаграмма (временные ряды)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Редактировать слой аннотации" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "Диаграмма с двумя осями (временные ряды)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Добавить слой аннотации" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "Линейная диаграмма (временные ряды)" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Пустая коллекция" -#: superset/viz.py:1424 -#, fuzzy -msgid "Time Series - Multiple Line Charts" -msgstr "Multiple Line Charts (временные ряды)" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Добавить запись" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Диаграмма Найтингейл (временные ряды)" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Удалить элемент" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "Парный t-test (временные ряды)" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +msgid "" +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" +msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "Процентное изменение (временные ряды)" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." +msgstr "" +"Цветовая схема определена соответствующим дашбордом.\n" +" Измените цветовую схему в свойствах дашборда." -#: superset/viz.py:1590 -#, fuzzy -msgid "Time Series - Period Pivot" -msgstr "Period Pivot (временные ряды)" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "дашборд" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "Диаграмма с накоплением (временные ряды)" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" +msgstr "Схема дашборда" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" -msgstr "Настройки временных рядов" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "Выберите цветовую схему" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" -msgstr "Временной сдвиг" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" +msgstr "Выберите схему" -#: superset/viz.py:878 -#, fuzzy -msgid "Time Table View" -msgstr "Убрать предпросмотр таблицы" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" +msgstr "Показать меньше столбцов" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "Столбец даты/времени" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" +msgstr "Показать все столбцы" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "Столбец формата дата/время \"%(col)s\" не существует в датасете" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "Десятичные знаки" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "Кол-во десятичных разрядов для округления числа" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" +msgstr "Минимальная ширина" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 +msgid "" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" +"Минимальная ширина столбца (в пикселях). Реальная ширина по-прежнему " +"может быть больше, чем указанная, если остальным столбцам не будет " +"хватать места." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "Столбец с датой" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "Выравнивание текста" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "Выравнивание по горизонтали" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "Наложить гистограммы на ячейки" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" +msgstr "Выравнивание гистограммы внутри ячеек по горизонтали слева" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "Окрашивать ячейки с числами в зависимости от их знака" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +#, fuzzy +msgid "Truncate Cells" +msgstr "Настройка интервала оси" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -"Временной сдвиг на естественном языке (например: 24 hours, 7 days, 56 " -"weeks, 365 days)" -#: superset/charts/commands/exceptions.py:66 -#, python-format +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -"Неоднозначный временной сдвиг. Пожалуйста, укажите [%(human_readable)s " -"до] или [%(human_readable)s после]." - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" -msgstr "Временной фильтр" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" -msgstr "Формат даты/времени" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Единица времени" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "Форматирование маленьких чисел" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 #, fuzzy -msgid "Time grain filter plugin" -msgstr "Период времени" - -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "Единица времени отсутствует" +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "" +"Числовой формат D3 для чисел от -1 до 1, полезно, если вы работаете как с" +" маленькими числами, где нужна точность, так и с большими целыми числами" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" -msgstr "Гранулярность времени" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "Отображаемое имя" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "Время в секундах" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +#, fuzzy +msgid "Number formatting" +msgstr "Числовой формат" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" -msgstr "Временной лаг" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +#, fuzzy +msgid "Edit formatter" +msgstr "Формат D3" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "Временной интервал" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "Добавить форматирование" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" -msgstr "Соотношение времени" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "Добавить цветовое форматирование" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "Параметры, связанные со временем" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "оповещение" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -msgid "Time series" -msgstr "Временной ряд" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Ошибка" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Столбцы временных рядов" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Успешно" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "Временной сдвиг" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "оповещение" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -"Временная строка неоднозначна. Пожалуйста, укажите [%(human_readable)s " -"до] или [%(human_readable)s после]." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" -msgstr "Диаграмма с областями (временные ряды)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "Это значение должно быть больше чем правое целевое значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." -msgstr "" -"Диаграмма с наполнением похожа на линейную диаграмму тем, что они " -"представляют переменные с одинаковым масштабом, но диаграммы с " -"наполнением накладывают показатели друг на друга." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "Это значение должно быть больше чем левое целевое значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" -msgstr "Столбчатая диаграмма" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Обязательно" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -msgid "Time-series Bar Chart (legacy)" -msgstr "Столбчатая диаграмма (устарело)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Оператор" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." -msgstr "" -"Столбчатые диаграммы временных рядов используются для отображения " -"изменений меры с течением времени в виде серии столбцов." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "Левое значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" -msgstr "Диаграмма (временные ряды)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "Правое значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" -msgstr "Линейная диаграмма (временные ряды)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Целевое значение" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" -msgstr "Процентное изменение (временные ряды)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "Выберите столбец" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 #, fuzzy -msgid "Time-series Period Pivot" -msgstr "Time Series - Period Pivot" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" -msgstr "Точечная Диаграмма" +msgid "Color: " +msgstr "Цвет" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -"На горизонтальной оси Точечной диаграммы откладывается время в линейных " -"единицах, а точки соединяются по порядку. Он показывает статистическую " -"зависимость между двумя переменными." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" -msgstr "Плавная линейная диаграмма (временные ряды)" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" -msgstr "Диаграмма шагов (временные ряды)" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." -msgstr "" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "Оффлайн" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Таблица временных рядов" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +#, fuzzy +msgid "Threshold" +msgstr "Порог метки" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -"Линейная диаграмма временных рядов используется для визуализации " -"повторяющихся измерений, происходящих через регулярные промежутки " -"времени. Линейная диаграмма - это тип диаграммы, который отображает " -"информацию в виде ряда точек данных, соединенных прямыми отрезками. Это " -"базовый тип диаграммы, распространенный во многих областях." - -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Ошибка таймаута" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" -msgstr "Формат даты и времени" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +#, fuzzy +msgid "The width of the Isoline in pixels" +msgstr "Ширина линий" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" -msgstr "Часовой пояс" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +#, fuzzy +msgid "The color of the isoline" +msgstr "Показатель, по которому сортировать результаты" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Смещение часового пояса (в часах) для этого источника данных" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +#, fuzzy +msgid "Isoband" +msgstr "и" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "Выбор часового пояса" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +#, fuzzy +msgid "Lower Threshold" +msgstr "Порог метки" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" -msgstr "Крошечный" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +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: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 -msgid "Title" -msgstr "Заголовок" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +#, fuzzy +msgid "Upper Threshold" +msgstr "Порог метки" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" -msgstr "Столбец с названием" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" -msgstr "Название обязательно" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +#, fuzzy +msgid "The color of the isoband" +msgstr "Показатель, по которому сортировать результаты" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Название или читаемый URL" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Для фильтрации по мере используйте вкладку Свой SQL." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Для получения читаемого URL-адреса дашборда" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "Инструменты" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "Всплывающая подсказка" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" -msgstr "Сортировка данных подсказки по мере" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" -msgstr "Формат времени всплывающей подсказки" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" -msgstr "Сверху" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Редактировать датасет" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" -msgstr "Сверху слева" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +msgstr "" +"Вы должны быть владельцем датасета для его редактирования. Пожалуйста, " +"обратитесь к владельцу с просьбой предоставить доступ." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" -msgstr "Сверху справа" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Открыть в Лаборатории SQL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" -msgstr "Сверху вниз" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Предпросмотр запроса" -#: superset/viz.py:1047 -#, fuzzy -msgid "Total" -msgstr "Показывать общий итог" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" +msgstr "Сохранить как датасет" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" -msgstr "" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" +msgstr "Пропущенные параметры URL" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "Фактическое значение" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "Датасет, связанный с этим графиком, похоже, был удален." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" -msgstr "Итого: %s" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "ТИП ИНТЕРВАЛА" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "Общая сумма" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Фактический временной интервал" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "Отслеживать работу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "ПРИМЕНИТЬ" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" -msgstr "Трансформируемый" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Изменить временной интервал" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "Прозрачный" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "Установить особый временной интервал " -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" -msgstr "Транспонировать таблицу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "НАЧАЛО (ВКЛЮЧИТЕЛЬНО)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" -msgstr "Древовидная диаграмма" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Начальная дата включена во временной интервал" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" -msgstr "Оформление дерева" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "КОНЕЦ (НЕ ВКЛЮЧИТЕЛЬНО)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" -msgstr "Ориентация дерева" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Конечная дата исключена из временного интервала" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "Плоское дерево" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Установить временной интервал: предыдущий..." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" -msgstr "Тенденция" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Установить временной интервал: последний..." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "Треугольник" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Установить пользовательский временной интервал" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "Оповестить, если..." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Относительное количество" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" -msgstr "Настройка интервала оси" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "Относительный период" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -#, fuzzy -msgid "Truncate Cells" -msgstr "Настройка интервала оси" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "Привязать к" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -msgid "Truncate Metric" -msgstr "Убрать имя меры" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "СЕЙЧАС" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" -msgstr "Урезать интервал оси Y" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Дата/Время" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -"Уменьшить интервал по умолчанию для оси Y. Необходимо задать минимальную " -"и максимальную границы. Обратите внимание, что некоторые линии могут " -"пропасть из области видимости." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Пример" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" #: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "Усекает указанную дату с точностью, указанной в единице измерения даты." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." msgstr "" -"Попробуйте использовать другие фильтры или убедитесь, что в вашем " -"источнике данных есть данные" - -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." -msgstr "Попробуйте использовать другии критерии фильтрации" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Вторник" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Предыдущий" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#, fuzzy -msgid "Tukey" -msgstr "запрос" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "Пользовательский" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Тип" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "последний день" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 -#, python-format -msgid "Type \"%s\" to confirm" -msgstr "Введите \"%s\" для подтверждения" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "последняя неделя" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" -msgstr "Введите значение" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "последний месяц" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "Введите значение здесь" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "последний квартал" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "Поле обязательно" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "последний год" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "Допустимый тип Google Таблиц" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "предыдущая календарная неделя" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" -msgstr "Тип сравнения, разница значений или доля" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "предыдущий календарный месяц" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "Введите или выберите [%s]" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "предыдущий календарный год" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "Конфигурация UI" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "Секунд %s" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "Ссылка (URL)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" +msgstr "Минут %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "Параметры URL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "Часов %s" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "Параметры URL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Дней %s" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "Читаемый URL" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Недель %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "" -"Не удается добавить новую вкладку на сервер. Пожалуйста, свяжитесь с " -"администратором." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "Месяцев %s" -#: superset/db_engine_specs/presto.py:704 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 #, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "" +msgid "Quarters %s" +msgstr "Кварталов %s" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 #, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Невозможно подключиться к базе данных \"%(database)s\"." +msgid "Years %s" +msgstr "Лет %s" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "Конкретная дата/время" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "Относительная дата/время" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "Сейчас" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "Полночь" -#: superset/utils/date_parser.py:393 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "Сохраненные выражения" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Сохранено" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Не удалось найти такой праздник: [%(holiday)s]" +msgid "%s column(s)" +msgstr "Столбцов: %s" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" +msgstr "Столбцы формата дата/время не найдены" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" +msgstr "Не найдено сохраненных выражений" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "Добавьте новые столбцы формата дата/время в датасет в настройках датасета" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +msgstr "Добавьте новые вычисляемые столбцы в датасет в настройках датасета" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" +msgstr ", чтобы пометить столбец как столбец даты/времени" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" +msgstr " для добавления вычисляемых столбцов" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Столбец" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" +msgstr "Присвойте столбцу формат даты/времени в настройках датасета" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "Через SQL" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "Мой столбец" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" +msgstr "Этот фильтр может быть несовместим с этим датасетом" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." -msgstr "" -"Не удалось загрузить столбцы для выбранной таблицы. Пожалуйста, выберите " -"другую таблицу." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" +msgstr "Этот график может быть несовместим с этим датасетом" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" -"Не удается перенести состояние редактора запроса на сервер. Суперсет " -"повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, " -"если эта проблема не устранена." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "Перетащите столбец сюда" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." -msgstr "" -"Не удается перенести состояние запроса на сервер. Суперсет повторит " -"попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта " -"проблема не устранена." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "Нажмите для редактирования метки" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "" -"Не удается перенести состояние схемы таблицы на сервер. Суперсет повторит" -" попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта " -"проблема не устранена." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "Перетащите столбцы/меры сюда" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" -msgstr "Не удалось получать цветовую схему дашборда" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "Эта мера может быть несовместима с этим датасетом" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Не удалось загрузить CSV файл \"%(filename)s\" в таблицу " -"\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" +msgstr "Перетащите столбец/меру сюда" -#: superset/views/database/views.py:556 -#, python-format +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -"Не удалось загрузить файл столбчатого типа \"%(filename)s\" в таблицу " -"\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" +"\n" +" Фильтр был наследован из контекста дашборда.\n" +" Он не будет сохранен при сохранении графика.\n" +" " -#: superset/views/database/views.py:415 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 #, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Не удалось загрузить Excel файл \"%(filename)s\" в таблицу " -"\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" +msgid "%s option(s)" +msgstr "%s вариант(ов)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Не определено" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Неопределенное окно для скольжения" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." +msgstr "" +"Такой столбец не найден. Чтобы фильтровать по мере, попробуйте " +"использовать вкладку Свой SQL." -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" -msgstr "Отменить действие" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Для фильтрации по мере используйте вкладку Свой SQL." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "Отменить?" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" +msgstr "%s параметр(ы)" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Неожиданная ошибка" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "Выбрать оператор" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -"Возникла неожиданная ошибка, пожалуйста, проверьте историю действий для " -"уточнения деталей" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " -msgstr "Неожиданная ошибка: " +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Введите значение здесь" -#: superset/views/api.py:108 -#, fuzzy, python-format -msgid "Unexpected time range: %s" -msgstr "Неожиданная ошибка: " +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Фильтровать значения (зависит от регистра)" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "Неизвестно" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" +msgstr "Не удалось получить расширенный тип" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Неизвестный хост MySQL \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "выберите WHERE или HAVING..." -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "Неизвестная ошибка Presto" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Фильтры по столбцам" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" -msgstr "Неизвестный статус" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Фильтры по мерам" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Неизвестный столбец использован для упорядочивания: %(col)s" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" +msgstr "мера" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "Неизвестная ошибка" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Фиксированный" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" -msgstr "Неизвестный формат ввода" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "На основе меры" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -#, fuzzy -msgid "Unknown type" -msgstr "<без типа>" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Моя мера" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" -msgstr "Неизвестная ошибка" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Добавить меру" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Небезопасный возвращаемый тип для функции %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" +msgstr "Выберите настройки агрегации" -#: superset/jinja_context.py:380 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Небезопасное значение шаблона для ключа %(key)s: %(value_type)s" +msgid "%s aggregates(s)" +msgstr "Агрегатных функций: %s" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "Неподдерживаемый оператор: %(clause)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "Выберите сохраненные меры" -#: superset/common/query_object.py:440 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 #, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Неподдерживаемая операция постобработки: %(operation)s" +msgid "%s saved metric(s)" +msgstr "Сохраненная мер: %s" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Неподдерживаемое значение для метода %(name)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Сохраненная мера" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Неподдерживаемое значение шаблона для ключа %(key)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" +msgstr "Не найдено сохраненных мер" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Неподдерживаемая единица времени: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" +msgstr "Добавьте меры в датасет в настройках датасета" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -msgid "Untitled Dataset" -msgstr "Безымянный датасет" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" +msgstr " для добавления мер" -#: superset/views/sql_lab/views.py:148 -#, fuzzy -msgid "Untitled Query" -msgstr "Безымянный запрос" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "Безымянный запрос" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "столбец" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "Обновить" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "агрегатная функция" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" -msgstr "Обновить график" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "Пользовательские ad-hoc меры SQL не разрешены для этого датасета" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "Обновление графика остановлено" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format +msgid "Error while fetching data: %s" +msgstr "Возникла ошибка при получении данных: %s" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Загрузить" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Столбцы временных рядов" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" -msgstr "Загрузить CSV" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" +msgstr "Фактическое значение" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" -msgstr "Загрузить файл CSV в базу данных" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "Спарклайн" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "Загрузить учетные данные" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "Среднее за период" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" -msgstr "Загрузка включена" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" +msgstr "Заголовок столбца" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" -msgstr "Загрузить файл Excel" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "Всплывающая подсказка заголовка столбца" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "Загрузить файл Excel в базу данных" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" +msgstr "Тип сравнения, разница значений или доля" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "Загрузить JSON файл" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Ширина" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" -msgstr "Загрузить файл столбчатого формата" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "Ширина спарклайна" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" -msgstr "Загрузить файл столбчатого формата в базу данных" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "Высота спарклайна" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" -msgstr "Загрузить файл в базу данных" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" +msgstr "Временной лаг" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -#, fuzzy -msgid "Usage" -msgstr "Огромный" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." -msgstr "Использовать меню \"%(menuName)s\" взамен." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" +msgstr "Временной лаг" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." -msgstr "Используйте %s для открытия в отдельной вкладке." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" +msgstr "Соотношение времени" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" -msgstr "Использовать пропорции области" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" +msgstr "Количество периодов для сравнения" -#: superset/views/database/forms.py:472 -msgid "Use Columns" -msgstr "Используемые столбцы" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" +msgstr "Соотношение времени" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "Использовать логарифмическую шкалу" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "Показать ось Y" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "Использовать логарифмическую шкалу для оси X" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "Показывать ось Y на спарклайне." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "Использовать логарифмическую шкалу для оси Y" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "Границы оси Y" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "Использовать зашифрованное соединение к Базе Данных" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "Вручную задать мин./макс. значения для оси Y" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "Границы цвета" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" -"Использовать перевод к формату дата/время даже если мера представляет " -"другой тип данных" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" +msgstr "Формат числовой строки" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "Использовать старый редактор" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" +msgstr "Числовой формат" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" +msgstr "Формат временной строки" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "Используйте только одно значение." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" +msgstr "Формат временной строки" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" -msgstr "Используйте настройки Расширенной аналитики ниже" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" +msgstr "Свойства столбца" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "Выберите тип визуализации" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" -msgstr "Используйте кнопку редактирования для изменения поля" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" +msgstr "Сейчас отрисовано: %s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "Рекомендованные теги" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "Поиск по всем графикам" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "Этот цвет используется для заливки" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "Описание отсутствует." -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Примеры" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "" -"Используется для обобщения набора данных путем группировки нескольких " -"показателей по двум осям. Примеры: показатели продаж по регионам и " -"месяцам, задачи по статусу и назначенному лицу, активные пользователи по " -"возрасту и местоположению." +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Этот тип визуализации не поддерживается." -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "Пользователь" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" +msgstr "Показать все графики" -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "Роли пользователя" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Выберите тип визуализации" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." -msgstr "У пользователя нет надлежащего доступа." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Записи не найдены" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" -msgstr "Для использования фильтра пользователь будет обязан выбрать значение" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "График Superset" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "Для использования фильтра пользователь будет обязан выбрать значение" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Новый график" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "Пользовательский запрос" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Редактировать свойства графика" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "Имя пользователя" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" +msgstr "Добавлено в дашборды" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" +msgstr "Экспорт исходных данных в .CSV" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "" -"Использует индикатор для демонстрации прогресса показателя в достижении " -"цели. Положение циферблата показывает ход выполнения, а конечное значение" -" на индикаторе представляет целевое значение." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "Экспорт сводной таблицы в .CSV" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" +msgstr "Экспорт в .JSON" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "Значение" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "Встроенный код" + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Открыть в SQL редакторе" + +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Редактор" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" -msgstr "" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Тип разметки" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" -msgstr "Формат значения" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Выберите свой любимый язык разметки" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" -msgstr "Ограничения для значения" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Введите произвольный текст в формате html или markdown" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" -msgstr "Формат значения" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Параметры URL" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "Значение обязательно" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Дополнительные параметры для запросов, использующих шаблонизацию Jinja" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "Значение должно быть больше 0" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Аннотации и слои" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "Значения зависят от других фильтров" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Слои аннотаций" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" -msgstr "Значения зависят от" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "Мои красивые цвета" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (меньше чем)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (больше чем)" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Удобочитаемое имя" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (меньше или равно)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" -msgstr "Версия" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (больше или равно)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "Номер версии" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (равно)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" -msgstr "Вертикально" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (не равно)" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" -msgstr "Вертикально (слева)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Не пусто" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "Игровые приставки" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 дней" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" -msgstr "Показать" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 дней" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" -msgstr "Смотреть все »" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Добавить способ уведомления" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -msgid "View Dataset" -msgstr "Посмотреть датасет" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Добавить способ оповещения" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -msgid "View all charts" -msgstr "Показать все графики" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Добавить" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" -msgstr "Показать в виде таблицы" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" +msgstr "Редактировать отчет" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "Открыть в Лаборатории SQL" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "Редактировать оповещение" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Показать ключи и индексы (%s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "Добавить рассылку" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "Показать SQL запрос" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "Добавить оповещение" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Просмотрено" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Имя отчета" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" -msgstr "Просмотрено %s" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Имя оповещения" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "Область просмотра" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Активен" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" -msgstr "Виртуальный" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Условие оповещения" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "Виртуальный (SQL)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQL запрос" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "Виртуальный датасет" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" +msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "Запрос виртуального датасета не может быть пустым" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Оповестить, если..." -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "Запрос виртуального датасета не может содержать несколько запросов" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "Условие" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "Запрос виртуального датасета должен быть доступен только для чтения" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Расписание отчета" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "Визуальные настройки" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Расписание условия оповещения" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Тип визуализации" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "Часовой пояс" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "Тип визуализации" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Настройки расписания" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Хранение журнала" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Время на рассылку" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" -"Визуализирует геопространственные данные, такие как 3D-здания, ландшафты " -"или объекты в виде сетки." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Время в секундах" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "" -"Визуализирует изменение меры с течением времени, используя столбцы. " -"Добавьте столбец для группировки, чтобы визуализировать показатели уровня" -" группы и то, как они меняются с течением времени." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" +msgstr "секунд" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "Визуализирует несколько уровней иерархии, используя древовидную структуру." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Перерыв между оповещением" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Содержимое сообщения" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "Отправить в формате PNG" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "Отправить в формате CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." -msgstr "Визуализирует связанные точки, которые образуют путь, на карте." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "Отправить текстом" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +#, fuzzy +msgid "Ignore cache when generating report" +msgstr "Игнорировать кэш при создании скриншота" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -"Визуализирует, как показатель изменился с течением времени, используя " -"цветовую шкалу и календарь. Значения серого цвета используются для " -"обозначения отсутствующих значений, а линейная цветовая схема " -"используется для отображения величины значения каждого дня." -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Способ уведомления" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "рассылка" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" +msgstr "Обновлено: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." -msgstr "" -"Визуализирует слова в столбце, которые появляются чаще всего. Более " -"крупный шрифт соответствует более высокой частоте" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" +msgstr "CRON расписание" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "У визуализации отсутствует источник данных" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "CRON выражение" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "Тип визуализации" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Отчет отправлен" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "СР" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Сработало оповещение, уведомление отправлено" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "Хотите добавить новую базу данных?" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Отчет выполняется" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "Предупреждение" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Выполняется оповещение" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Предупреждение" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Рассылка не удалась" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Предупреждение!" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Оповещение не сработало" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." -msgstr "" -"Внимание! Изменение датасета может привести к тому, что график станет " -"нерабочим, если будут отсутствовать метаданные." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Не срабатывало" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" -msgstr "Не удалось проверить запрос" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Оповещение сработало во время перерыва" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "Способ оповещения" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "Выберите способ оповещения" + +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Получатели, разделенные \",\" или \";\"" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +#, fuzzy +msgid "Queries" +msgstr "запросы" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -"Не удалось подключиться к базе данных. Нажмите \"Подробнее\" для " -"информации, предоставленной базой данных в ответ, для решения проблемы." -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "Не удалось обнаружить столбец \"%(column)s\" в строке %(location)s." +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "Не удалось обнаружить столбец \"%(column_name)s\"" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "слой_аннотации" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." -msgstr "Не удалось обнаружить столбец \"%(column_name)s\" в строке %(location)s." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" +msgstr "Шаблон аннотации обновлен" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" -msgstr "У нас есть следующие ключи: %s" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" +msgstr "Шаблон аннотации создан" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." -msgstr "Не удалось включить или выключить эту рассылку." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Редактировать свойства слоя аннотаций" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 -msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." -msgstr "Не удалось перенести настройки прошлого графика при переключении датасета." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Имя слоя аннотаций" -#: superset/db_engine_specs/redshift.py:94 -#, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." -msgstr "" -"Не удалось подключиться к вашей базе данных с именем \"%(database)s\". " -"Пожалуйста, подтвердите имя вашей базы данных и попробуйте снова." +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Описание (будет видно в списке)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" -msgstr "Сеть" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "аннотация" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Среда" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "Аннотация обновлена" -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "Неделя" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "Аннотация сохранена" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" -msgstr "Неделя, заканчивающаяся в субботу" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Редактировать аннотацию" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" -msgstr "Неделя, начинающаяся в понедельник" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Добавить аннотацию" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "Неделя, начинающаяся в воскресенье" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "дата" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" -msgstr "Неделя, заканчивающаяся в воскресенье" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Дополнительная информация" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" -msgstr "Еженедельный отчет" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Пожалуйста, подтвердите действие" + +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Вы уверены, что хотите удалить" -#: superset-frontend/src/components/ReportModal/index.tsx:121 +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 #, python-format -msgid "Weekly Report for %s" -msgstr "Еженедельный отчет для %s" +msgid "Modified %s" +msgstr "Изменено %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" -msgstr "Недельная сезонность" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "шаблон_css" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" -msgstr "Недель %s" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Редактировать свойств CSS шаблона" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Добавить CSS шаблоны" + +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" + +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "опубликовано" + +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "черновик" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "Настройка взаимодействия базы данных с Лабораторией SQL" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "Предоставить доступ к базе в Лаборатории SQL" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" -msgstr "Вес" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Разрешить запросы к этой базе данных в Лаборатории SQL" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -"Возникла проблема при загрузке результатов. Для запросов установлен " -"тайм-аут %s секунда." -msgstr[1] "" -"Возникла проблема при загрузке результатов. Для запросов установлен " -"тайм-аут %s секунды." -msgstr[2] "" -"Возникла проблема при загрузке результатов. Для запросов установлен " -"тайм-аут %s секунд." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Разрешить создание новых таблиц на основе запросов" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -"Возникла проблема при загрузке этой визуализации. Для запросов установлен" -" тайм-аут %s секунда." -msgstr[1] "" -"Возникла проблема при загрузке этой визуализации. Для запросов установлен" -" тайм-аут %s секунды." -msgstr[2] "" -"Возникла проблема при загрузке этой визуализации. Для запросов установлен" -" тайм-аут %s секунд." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Разрешить создание новых представлений на основе запросов" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" -msgstr "Текст, отображаемый на метке" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "СХЕМА CTAS & CVAS" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" -msgstr "Что должно произойти, если таблица уже существует" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Создать или выбрать схему..." -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -"Когда `Тип расчёта` установлен в \"Процентное изменение\", формат оси Y " -"устанавливается в `.1%`" +"Принудить создание новых таблиц через CTAS или CVAS в Лаборатории SQL в " +"этой схеме при нажатии соответствующих кнопок" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +msgid "" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -"Когда предоставляется вторичная мера, используется линейная цветовая " -"схема." +"Разрешить управление базой данных, используя запросы UPDATE, DELETE, " +"CREATE и т.п." -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "Разрешить оценку стоимости запроса" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -"При включении опции CREATE TABLE AS в Лаборатории SQL, новые таблицы " -"будут добавлены в эту схему" +"Для Bigquery, Presto и Postgres, показывать кнопку подсчета стоимости " +"запроса перед его выполнением." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" -msgstr "" -"Если отмечено, карта будет смасштабирована к вашим данным после каждого " -"запроса" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "Разрешить изучение этой базы данных" #: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." @@ -18129,617 +17836,691 @@ msgstr "" "Если этот параметр включен, пользователи могут смотреть ответ запросов " "Лаборатории SQL в режиме исследования." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "Отключить предпросмотр данных в Лаборатории SQL" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +msgid "" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." +msgstr "" +"Отключить предварительный просмотр данных при извлечении метаданных " +"таблицы в SQL Lab. Полезно для избежания проблем с производительностью " +"браузера при использовании баз данных с очень широкими таблицами." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -"Когда предоставляется только основная мера, используется категориальная " -"цветовая схема." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -"Когда указан SQL, источник данных работает как представление. Superset " -"будет использовать это выражение в подзапросе, при необходимости " -"группировки и фильтрации." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "Производительность" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Время жизни кэша графика" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "Введите время в секундах" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#, fuzzy msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -"При использовании \"Фильтров автозаполнения\" это может использоваться " -"для улучшения быстродействия запроса. Используйте эту опцию для настройки" -" предиката (оператор WHERE) запроса для уникальных значений из таблицы. " -"Обычно целью является ограничение сканирования путем применения " -"относительного временного фильтра к секционированному или " -"индексированному полю типа дата/время." +"Продолжительность (в секундах) таймаута кэша для графиков этой базы " +"данных. Таймаут 0 означает, что кэш никогда не очистится. Обратите " +"внимание, что если значение не задано, применяется значение по умолчанию " +"из основной конфигурации." -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "При использовании 'GROUP BY' вы ограничены использованием одной меры" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "Время жизни кэша схемы" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" +"Продолжительность (в секундах) таймаута кэша для схем этой базы данных. " +"Обратите внимание, что если значение не задано, кэш никогда не очистится." -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" -msgstr "При включении этой опции нельзя установить значение по умолчанию" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "Время жизни кэша таблицы" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" -msgstr "Индикатор прогресса накладывается при наличии нескольких групп данных" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "" +"Продолжительность (в секундах) таймаута кэша для таблиц этой базы данных." +" Обратите внимание, что если значение не задано, кэш никогда не " +"очистится." -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Асинхронное выполнение запросов" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "Отменять запрос при закрытии вкладки" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" +"Завершать выполнение запросов после закрытия браузерной вкладки или " +"пользователь переключился на другую вкладку. Доступно для баз данных " +"Presto, Hive, MySQL, Postgres и Snowflake." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." +msgstr "Дополнительная информация по подключению" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Безопасность" -#: superset/connectors/sqla/views.py:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." msgstr "" +"JSON строка, содержащая дополнительную информацию о соединении. Это " +"используется для указания информации о соединении с такими системами как " +"Hive, Presto и BigQuery, которые не укладываются в шаблон " +"\"пользователь:пароль\", который обычно используется в SQLAlchemy." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "Введите CA_BUNDLE" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" +"Необязательное содержимое CA_BUNDLE для валидации HTTPS запросов. " +"Доступно только в определенных драйверах баз данных" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" -msgstr "Выравнивание гистограммы внутри ячеек по горизонтали слева" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "" +"Имперсонировать пользователя (Presto, Trino, Drill, Hive, и Google " +"Таблицы)" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" -msgstr "Всегда показывать метку аннотации" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Если вы используете Presto или Trino, все запросы в Лаборатории SQL будут" +" выполняться от авторизованного пользователя, который должен иметь " +"разрешение на их выполнение. Если включены Hive и " +"hive.server2.enable.doAs, то запросы будут выполняться через техническую " +"учетную запись, но имперсонировать зарегистрированного пользователя можно" +" через свойство hive.server2.proxy.user." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" -msgstr "Анимировать прогресс и значение или просто отображать их" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" +msgstr "Разрешить загрузку файлов в базу данных" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "Применять нормальное распределение на основе ранга в цветовой схеме" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" +msgstr "Схемы, в которые разрешена загрузка файлов" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" -msgstr "Применять фильтр при щелчке по элементам" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." +msgstr "Разделённый запятыми список схем, в которые можно загружать файлы." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" -msgstr "Окрашивать ячейки с числами в зависимости от их знака" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." +msgstr "Дополнительная настройка" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" -msgstr "Отображать гистограмм в колонках таблицы" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "Параметры метаданных" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" -msgstr "Отображать легенду для графика" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." +msgstr "Объект metadata_params вызывает sqlalchemy.MetaData" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" -msgstr "Отображать пузыри поверх стран" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "Параметры драйвера" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" -msgstr "Отображать совокупное количество" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." +msgstr "Объект engine_params вызывает sqlalchemy.create_engine" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" -msgstr "Отображать интерактивную таблицу с данными" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "Версия" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." -msgstr "Отображать метки" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "Номер версии" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 #, fuzzy msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -"Отображать метки. Обратите внимание, что метка отображается только при " -"достижении порогового значения 5%." +"Укажите версию базы данных. Это необходимо для Presto, чтобы включить " +"оценку стоимости запроса" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" -msgstr "Отображать легенду (переключатель)" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "ШАГ %(stepCurr)s ИЗ %(stepLast)s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" -msgstr "Отображать имя меры как названия" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" +msgstr "Введите основные учетные данные" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" -msgstr "Отображать минимальное и максимальное значение на оси X" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "Нужна помощь? Узнайте, как подключаться к вашей базе данных" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "Отображать минимальное и максимальное значение на оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" +msgstr "Соединение с базой данных установлено" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" -msgstr "Отображение числовых значений в ячейках" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." +msgstr "" +"Создайте датасет для визуализации ваших данных на графике или перейдите в" +" Лабораторию SQL для просмотра данных." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" -msgstr "Отображение обводки" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "Введите обязательные данные для %(dbModelName)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "Отображение интерактивного селектора временного интервала" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "Нужна помощь? Узнайте больше о" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" -msgstr "Отображение временную метку" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." +msgstr "подключении к %(dbModelName)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" -msgstr "Отображение трендовой линии" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" +msgstr "Выберите базу данных для подключения" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." -msgstr "Включить перемещение вершин в режиме силового алгоритма." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" +msgstr "например, 127.0.0.1" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" -msgstr "Использовать заливку для объектов" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" +msgstr "SSH порт" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" -msgstr "Игнорировать местоположения, которые не содержат данных о расположении" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "22" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" -msgstr "Отображение строки поиска" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" +msgstr "например, Analytics" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Включить фильтр на определенный интервал/диапазон времени" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" +msgstr "Войти при помощи" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" -msgstr "Отображение процентной доли во всплывающей подсказке" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" +msgstr "Приватный ключ и пароль" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "" -"Добавляет столбец даты/времени с группировкой дат, как определено в " -"разделе Время" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" +msgstr "Пароль SSH" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" -msgstr "Сделать сетку 3D" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "например, ********" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "Сделать гистограмму нарастающей" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "Приватный ключ" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "Нормализовать гистограмму" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "Распространить настройки фильтров автозаполнения" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" +msgstr "Пароль приватного ключа" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 -msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." -msgstr "" -"Отображает дополнительные элементы управления на самом графике и " -"позволяет менять отображение столбцов: без накопления и с ним." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" +msgstr "Параметры конфигурации SSH туннеля" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "Отображение мелких отметок на оси" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Отображаемое имя" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" -msgstr "Отображение указателя" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "Дайте имя базе данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "Выберите имя для базы данных." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" -msgstr "Отображение линий разделения на оси" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "диалект+драйвер://пользователь:пароль@хост:порт/схема" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -#, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Сортировка по убыванию или по возрастанию для оси X" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "Обратитесь к" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "Сортировка по убыванию или по возрастанию" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr " за подробной информацией по тому, как структурировать ваш URI" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "" -"Сортировка по убыванию или по возрастанию, если есть ограничение на " -"количество категорий" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Тестовое соединение" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." -msgstr "Сортировка результатов по выбранной мере в порядке убывания" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "база данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." -msgstr "Сортировка выбранных мер по убыванию во всплывающей подсказке" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Введите SQLAlchemy URI для тестирования" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" -msgstr "" -"Убирает меру (например, AVG(...)) с легенды рядом с именем измерения и из" -" таблицы результатов" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" +msgstr "например, health_medicine" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" -msgstr "Выбор страны для графика" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" +msgstr "Обновлены настройки базы данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" -msgstr "Подсвечивается при наведении" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" +msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" -msgstr "Настройки усов/выбросов" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" +msgstr "Или выберите из списка других поддерживаемых баз данных:" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" +msgstr "Поддерживаемые базы данных" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." +msgstr "Выберите базу данных..." + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "Хотите добавить новую базу данных?" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "" +"Любые базы данных, подключаемые через SQL Alchemy URI, могут быть " +"добавлены. " + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "" +"Любые базы данных, подключаемые через SQL Alchemy URI, могут быть " +"добавлены. Узнайте больше о том, как подключить драйвер базы данных " -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" -msgstr "Белый" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "Подключить" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Ширина" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "Завершить" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "Ширина доверительного интервала. Должна быть между 0 и 1" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "Эта база данных управляется извне и не может быть изменена в Суперсете" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" -msgstr "Ширина спарклайна" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." +msgstr "" +"Пароли к базам данных требуются, чтобы импортировать их. Пожалуйста, " +"обратите внимание, что разделы \"Безопасность\" и \"Утверждение\" в " +"настройках конфигурации базы данных отсутствуют в импортируемых файлах и " +"должны быть добавлены вручную после импорта, если необходимо." -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "Окно должно быть > 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Вы импортируете одну или несколько баз данных, которые уже существуют. " +"Перезапись может привести к потере части вашей работы. Вы уверены, что " +"хотите перезаписать?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" -msgstr "С подзаголовком" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" +msgstr "Ошибка создания базы данных" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" -msgstr "Облако слов" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." +msgstr "" +"Не удалось подключиться к базе данных. Нажмите \"Подробнее\" для " +"информации, предоставленной базой данных в ответ, для решения проблемы." -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" -msgstr "Поворот текста" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" +msgstr "СОЗДАТЬ ДАТАСЕТ" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" -msgstr "Обрабатывается" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "Время на рассылку" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "Подключиться к базе данных" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "Карта Мира" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Редактировать Базу Данных" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Заполните описание к вашему запросу" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" +msgstr "Подключиться к этой базе, используя динамичную форму" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" +"Нажмите для переключения на альтернативную форму подключения, которая " +"позволит вам ввести все данные в соответствующую форму для данной базы " +"данных." -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" -msgstr "Сделать индекс датафрейма столбцом." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "Сделать индекс датафрейма столбцом." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " +msgstr "" +"Некоторые базы данных требуют ручной настройки во вкладке Продвинутая " +"настройка для успешного подключения. Вы можете ознакомиться с " +"требованиями к вашей базе данных " -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" -msgstr "Отступ снизу названия оси X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" +msgstr "Импортировать базу данных из файла" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "Ось X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" +msgstr "Подключиться к этой базе через SQLAlchemy URI" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" -msgstr "Формат оси X" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "" +"Нажмите для переключения на альтернативную форму подключения, которая " +"позволит вам вручную ввести SQLAlchemy URL для данной базы данных." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" -msgstr "Метка оси X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" +"Это может быть как IP адрес (например, 127.0.0.1), так и доменное имя " +"(например, моябазаданных.рф)." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" -msgstr "Название оси X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "Хост" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" -msgstr "Логарифмическая ось X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "например, 5432" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" -msgstr "Расположение делений оси X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" +msgstr "Порт" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" -msgstr "Показывать границы оси X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" -msgstr "Сортировать по возрастанию оси X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +#, fuzzy +msgid "Copy the name of the HTTP Path of your cluster." +msgstr "Скопировать имя HTTP пути вашего кластера." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." +msgstr "Впишите имя базы данных, к которой вы пытаетесь подключиться" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" -msgstr "Ось X" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" +msgstr "Токен доступа" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." +msgstr "Выберите имя для базы данных, которое будет отображаться в Суперсете." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" -msgstr "Границы оси Y 2" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" +msgstr "например, параметр1=значение1&параметр2=значение2" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" -msgstr "Отступ названия оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" +msgstr "Дополнительные параметры" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" -msgstr "Положение названия оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "Добавление дополнительных пользовательских параметров" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Ось Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "Будет использовано шифрование SSL" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" -msgstr "Границы оси Y 2" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "Допустимый тип Google Таблиц" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" -msgstr "Границы оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Формат Оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" -msgstr "Метка оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" -msgstr "Название оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "Загрузить JSON файл" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "Логарифмическая ось Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "Скопировать и вставить JSON данные" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" -msgstr "Показывать границы оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "Сервисный аккаунт" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 #, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "Сортировать по возрастанию оси X" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" -msgstr "" +msgid "Paste content of service credentials JSON file here" +msgstr "Скопировать и вставить .json файл сервисного аккаунта сюда" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" -msgstr "Ось Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "Скопировать и вставить .json файл сервисного аккаунта сюда" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" -msgstr "Границы оси Y" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "Загрузить учетные данные" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -#, fuzzy -msgid "YScale Interval" -msgstr "Интервал обновления" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." +msgstr "" -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "Год" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "Подключить Google Таблицы как таблицы для этой базы данных" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" -msgstr "Год (част=AS)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Имя или URL Google Таблицы" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" -msgstr "Годовая сезонность" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "Введите название для этого листа" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" -msgstr "Лет %s" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "Да" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "Добавить лист" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "Да, отменить" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +#, fuzzy +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "Впишите имя базы данных, к которой вы пытаетесь подключиться" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" -msgstr "Да, перезаписать изменения" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" +msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -"Вы импортируете один или несколько графиков, которые уже существуют. " -"Перезапись может привести к потере части вашей работы. Вы уверены, что " -"хотите перезаписать?" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -"Вы импортируете один или несколько дашбордов, которые уже существуют. " -"Перезапись может привести к потере части вашей работы. Вы уверены, что " -"хотите перезаписать?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" +msgstr "Дублировать датасет" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" +msgstr "Дублировать" + +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" +msgstr "Новое имя датасета" + +#: superset-frontend/src/features/datasets/constants.ts:23 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -"Вы импортируете одну или несколько баз данных, которые уже существуют. " -"Перезапись может привести к потере части вашей работы. Вы уверены, что " -"хотите перезаписать?" +"Пароли к базам данных требуются, чтобы импортировать их вместе с " +"датасетами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и" +" \"Утверждение\" конфигурации базы данных отсутствуют в экспортируемых " +"файлах и должны быть добавлены после импорта вручную, если необходимо." #: superset-frontend/src/features/datasets/constants.ts:30 msgid "" @@ -18751,1517 +18532,1754 @@ msgstr "" "Перезапись может привести к потере части вашей работы. Вы уверены, что " "хотите продолжить?" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" +msgstr "Обновление столбцов" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" +msgstr "Столбцы таблицы" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" +msgstr "Загрузка" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" +msgstr "" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" +msgstr "Посмотреть датасет" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -"Вы импортируете один или несколько сохраненных запросов, которые уже " -"существуют. Перезапись может привести к потере части вашей работы. Вы " -"уверены, что хотите продолжить?" -#: superset/views/core.py:2213 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -"Вы не авторизованы для просмотра этого запроса. Если вы считаете, что это" -" ошибка, пожалуйста, обратитесь к своему администратору" +"Датасеты могут быть созданы из таблиц базы данных или SQL запросов. " +"Выберите таблицу из базы данных слева или " -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" -msgstr "Вы можете" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" +msgstr "создайте датасет из SQL запроса" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "Вы можете добавить компоненты в" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." +msgstr " в Лаборатории SQL. Там вы сможете сохранить запрос как датасет." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "Вы можете добавить компоненты в режиме редактирования." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" +msgstr "Выберите источник датасета" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +#, fuzzy +msgid "No table columns" +msgstr "Нет столбцов формата дата/время" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" +msgstr "Произошла ошибка" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -"Вы можете создать новый график или использовать существующие из панели " -"справа" +"Не удалось загрузить столбцы для выбранной таблицы. Пожалуйста, выберите " +"другую таблицу." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 #, fuzzy -msgid "You can't apply cross-filter on this data point." -msgstr "Недостаточно прав для доступа к этому датасету." +msgid "Usage" +msgstr "Огромный" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Владелец графика: %s" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +#, fuzzy +msgid "Chart last modified" +msgstr "Последнее изменение" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "Автор изменений %s" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "дашборды(ов)" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +#, fuzzy +msgid "Create chart with dataset" +msgstr "Создать датасет" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "график" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Нет графиков" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "" + +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." +msgstr "Выберите таблицу в базе данных." + +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "Добавить датасет и создать график" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" +msgstr "Новый датасет" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "Выберите базу данных и создайте датасет" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" +msgstr "Имя датасета" + +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "Не определено" + +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" + +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#, fuzzy +msgid "There was an error fetching dataset's related objects" +msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" + +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" +msgstr "Возникла ошибка при загрузке метаданных датасета" + +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Без названия]" + +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Неизвестно" + +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" +msgstr "Просмотрено %s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." -msgstr "" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Редактировано" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" -msgstr "" -"Вы не можете использовать расположение делений под углом 45° при " -"использовании временного фильтра" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Создано" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." -msgstr "" -"Вы не можете использовать [Столбцы] в сочетании с [Группировать " -"по]/[Мерами]/[Процентными мерами]. Пожалуйста, выберите одно или другое." +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Просмотрено" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "У вас нет прав на редактирование этого графика" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Избранное" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "У вас нет прав на редактирование этого графика" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Мои" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "У вас нет прав на редактирование этого дашборда" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "Смотреть все »" -#: superset/templates/superset/request_access.html:25 +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 #, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "У вас нет доступа этого источника данных: %(name)s." +msgid "An error occurred while fetching dashboards: %s" +msgstr "Произошла ошибка при получении дашбордов: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "У вас нет прав на редактирование этого дашборда." +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" +msgstr "графики(ов)" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." -msgstr "Недостаточно прав для доступа к этому графику." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" +msgstr "дашборды(ов)" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "Недостаточно прав для доступа к этому дашборду." +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "недавние(их)" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." -msgstr "Недостаточно прав для доступа к этому датасету." +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "сохраненные(ых) запросы(ов)" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." -msgstr "У вас нет прав на редактирование этого встраиваемого дашборда." +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "Нет графиков" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "У вас пока нет избранных!" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +#, fuzzy +msgid "No dashboards yet" +msgstr "Нет дашбордов" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." -msgstr "Недостаточно прав для редактирования этого значения." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +#, fuzzy +msgid "No recents yet" +msgstr "недавние(их)" -#: superset/security/manager.py:2262 -#, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Недостаточно прав для изменения %(resource)s" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "сохраненные(ых) запросы(ов)" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" -msgstr "Недостаточно прав для изменения графика" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, fuzzy, python-format +msgid "%(other)s charts will appear here" +msgstr "%(other)s %(tableName)s появятся здесь после добавления" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" -msgstr "Недостаточно прав для изменения дашборда" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, fuzzy, python-format +msgid "%(other)s dashboards will appear here" +msgstr "%(other)s %(tableName)s появятся здесь после добавления" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Недостаточно прав для изменения названия." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, fuzzy, python-format +msgid "%(other)s recents will appear here" +msgstr "%(other)s %(tableName)s появятся здесь после добавления" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" -msgstr "Недостаточно прав для создания графика" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, fuzzy, python-format +msgid "%(other)s saved queries will appear here" +msgstr "%(other)s %(tableName)s появятся здесь после добавления" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" -msgstr "Недостаточно прав для создания дашборда" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" +msgstr "Недавно просмотренные графики, дашборды и сохраненные запросы" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as csv" -msgstr "Недостаточно прав для скачивания в CSV" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" +msgstr "Недавно созданные графики, дашборды и сохраненные запросы" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "Недостаточно прав для одобрения этого запроса" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "Недавно измененные графики, дашборды и сохраненные запросы" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Вы удалили фильтр." +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQL запрос" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "У вас есть несохраненные изменения." +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "У вас пока нет избранных!" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#: superset-frontend/src/features/home/EmptyState.tsx:181 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." -msgstr "" - -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." -msgstr "" -"Вы должны быть владельцем датасета для его редактирования. Пожалуйста, " -"обратитесь к владельцу с просьбой предоставить доступ." - -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Вы должны выбрать имя для нового дашборда" +msgid "See all %(tableName)s" +msgstr "Список %(tableName)s" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "Сначала необходимо успешно выполнить запрос" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "Подключиться к базе данных" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" +msgstr "Создать датасет" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" -msgstr "" -"Вы обновили значения в панели управления, но график не был обновлен " -"автоматически. Сделайте запрос, нажав на кнопку \"Обновить график\" или" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "Подключить Google Таблицы" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." -msgstr "" -"Вы изменили датасеты. Все элементы управления с данными (столбцами, " -"мерами), которые соответствуют новому датасету, были сохранены." +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "Загрузить файл CSV в базу данных" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "Ваш график не актуален" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "Загрузить файл столбчатого формата в базу данных" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" -msgstr "Ваш график готов!" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "Загрузить файл Excel в базу данных" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -"Дашборд слишком большой. Пожалуйста, уменьшите его размер перед " -"сохранением." +"Включите \"Разрешить загрузку файлов в базу данных\" в настройках любой " +"базы данных" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "Не удалось сохранить ваш запрос" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Личные данные" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "Не удалось запланировать ваш запрос" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Выход из системы" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "Не удалось обновить ваш запрос" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "О программе" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "На базе Apache Superset" + +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -"Запрос был запланирован. Чтобы посмотреть детали запроса, перейдите в " -"Сохраненные запросы" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" -msgstr "Ваш запрос не был сохранен должным образом" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" +msgstr "Сборка" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "Ваш запрос был сохранен" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "Документация" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "Ваш запрос был сохранен" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "Сообщить об ошибке" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" -msgstr "Не удается удалить рассылку" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Вход в систему" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" -msgstr "Нулевые значения" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "запрос" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "Масштабирование" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Удалено: %s" + +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Произошла ошибка при удалении %s: %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" -msgstr "Уровень масштабирования карты" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Это действие навсегда удалит сохранённый запрос." -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" -msgstr "[ безымянный дашборд ]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Удалить запрос?" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "Столбцы [Долгота] и [Широта] должны присутствовать в [Группировать по]" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "Запущен %s" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "[Долгота] и [Широта] должны быть заданы" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Сохраненные запросы" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "[отсутствующий датасет]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Следующий" -#: superset/utils/core.py:908 -#, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Суперсет] Предоставлен доступ к источнику данных %(name)s" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Имя вкладки" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "[Без названия]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Пользовательский запрос" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -#, fuzzy -msgid "[asc]" -msgstr "Базовая настройка" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Выполненный запрос" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -#, fuzzy -msgid "[copy]" -msgstr "Копировать" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Имя запроса" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[имя дашборда]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL запрос скопирован!" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" +"Извините, Ваш браузер не поддерживание копирование. Используйте сочетание" +" клавиш [CTRL + C] для WIN или [CMD + C] для MAC." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "" -"[необязательно] вторичная мера используется для определения цвета как " -"доли по отношению к основной мере. Если не выбрано, цвет задается " -"согласно имени категории" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "Произошла ошибка с получением рассылок, связанных с этим дашбордом." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" -msgstr "[без названия]" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "Рассылка создана" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" +msgstr "Отчет обновлен" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "Не удалось включить или выключить эту рассылку." -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`доверительный_интервал` должен быть между 0 и 1 (не включая концы)" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "Не удается удалить рассылку" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "Еженедельный отчет для %s" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" +msgstr "Еженедельный отчет" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "Редактировать рассылку" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" +msgstr "Запланировать новую рассылку по почте" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "Текст, включенный в email" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "Изображение (PNG), встроенное в email" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "Форматированный CSV, прикрепленный к письму" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "агрегатная функция" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" +msgstr "Имя отчета" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "оповещение" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" +msgstr "Описание, которое будет отправлено вместе с вашим отчетом" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -#, fuzzy -msgid "alert dark" -msgstr "оповещение" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "Скриншот дашборда будет отправлен на ваш электронный адрес" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "оповещений" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" +msgstr "Не удалось обновить отчет" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" -msgstr "Все" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" +msgstr "Не удалось создать рассылку" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "также копировать (дублировать) графики" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" +msgstr "Запланировать рассылку по почте" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" -msgstr "предок" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "Включить рассылки" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "и" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "Удалить рассылку по email" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "аннотация" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "Запланировать рассылку по почте" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "слой_аннотации" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Это действие навсегда удалит %s." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" -msgstr "asfreq (без изменения)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "Удалить рассылку?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "в" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Безопасность на уровне строк" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -msgid "auto" -msgstr "Автоматически" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" -msgstr "Автоматически (плавно)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "режиме редактирования" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Add Rule" +msgstr "Неверная формула." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 #, fuzzy -msgid "basis" -msgstr "Акцент" +msgid "Rule Name" +msgstr "Полное имя" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "ниже (пример:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "Имя должно быть уникальным" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +#, fuzzy +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" +"Обычные фильтры добавляют операторы where к запросам, если пользователь " +"принадлежит к роли, на которую ссылается фильтр. Базовые фильтры " +"применяют фильтры ко всем запросам, кроме ролей, определенных в фильтре, " +"и могут использоваться для определения того, что пользователи могут " +"видеть, если к ним не применяются фильтры RLS в группе фильтров." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "bfill (заполняет пропуски предыдущими значениями)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +#, fuzzy +msgid "These are the datasets this filter will be applied to." +msgstr "Это таблицы, к которым будет применен этот фильтр." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +#, fuzzy +msgid "Excluded roles" +msgstr " (исключено)" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +#, fuzzy +msgid "Group Key" +msgstr "Группировать по" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" -msgstr "снизу" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "(CTRL + Z), пока вы не сохраните изменения." - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr ", используя" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Оператор" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" -msgstr "Необходимо заполнить" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"Это условие, которое будет добавлено к оператору WHERE. Например, чтобы " +"возвращать строки только для определенного клиента, вы можете определить " +"обычный фильтр с условием `client_id = 9`. Чтобы не отображать строки, " +"если пользователь не принадлежит к роли фильтра RLS, можно создать " +"базовый фильтр с предложением `1 = 0` (всегда false)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 #, fuzzy -msgid "cardinal" -msgstr "Ошибка" +msgid "Regular" +msgstr "Круглая форма" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 #, fuzzy -msgid "change" -msgstr "изменение" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "график" - -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" -msgstr "графики(ов)" - -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "выберите WHERE или HAVING..." +msgid "Base" +msgstr "база данных" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -msgid "clear all filters" -msgstr "Сбросить все фильтры" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." +msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" -msgstr "нажмите сюда" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" -msgstr "Код ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Выбрать все записи" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "Код ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" -msgstr "Код Международного Олимпийского Комитета (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "столбец" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +#, fuzzy +msgid "tags" +msgstr "Теги" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." -msgstr "подключении к %(dbModelName)s" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "Снять выделение" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" -msgstr "количество" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "Список обновлен" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -msgid "create" -msgstr "создать" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "создан(а)" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" -msgstr "создать новый график" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Имя вкладки" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" -msgstr "создайте датасет из SQL запроса" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Дайте имя базе данных" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Заполните описание к вашему запросу" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "шаблон_css" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Выбрать дашборд" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "Кумулятивная сумма" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Выберите сохраненные меры" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" -msgstr "кумулятивно" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Выбран нечисловой столбец" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" -msgstr "дашборд" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "Конфигурация UI" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" -msgstr "дашборды(ов)" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" +msgstr "Требуется значение фильтра" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "база данных" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "Для использования фильтра пользователь будет обязан выбрать значение" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "датасет" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" +msgstr "Единственное значение" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -msgid "dataset name" -msgstr "Имя датасета" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "Используйте только одно значение." -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "дата" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "день" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr " (исключено)" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "день месяца" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s вариант" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "день недели" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Выберит для сортировки по возрастанию" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" -msgstr "deck.gl 3D Шестигранники" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "Можно выбрать несколько значений" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" -msgstr "deck.gl Дуга" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "Сделать первое значение фильтра значением по умолчанию" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" -msgstr "deck.gl GeoJSON" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" +msgstr "При включении этой опции нельзя установить значение по умолчанию" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" -msgstr "deck.gl Сетка" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "Выбрать противоположные значения" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "deck.gl Точечная карта" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" +msgstr "Исключить выбранные значения" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" -msgstr "deck.gl Многослойный" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "Динамически искать все значения фильтра" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -#, fuzzy -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" +"По умолчанию, каждый фильтр загружает не больше 1000 элементов выбора при" +" начальной загрузке страницы. Установите этот флаг, если у вас больше " +"1000 значений фильтра и вы хотите включить динамический поиск, который " +"загружает значения по мере их ввода пользователем (может увеличить " +"нагрузку на вашу базу данных)." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" -msgstr "deck.gl Полигон" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" -msgstr "deck.gl Точечная карта" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "Пользовательский плагин фильтра времени" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -#, fuzzy -msgid "deck.gl Screen Grid" -msgstr "deck.gl Screen Grid" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Нет столбцов формата дата/время" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -#, fuzzy -msgid "deck.gl charts" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" -msgstr "Карта deckGL" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +#, fuzzy +msgid "Time grain filter plugin" +msgstr "Период времени" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" -msgstr "по умолчанию" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "Обрабатывается" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "удалить" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" +msgstr "Условие не выполнялось" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" -msgstr "потомок" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "На перерыве" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "описание" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "рассылки" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "Продолжительность" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "оповещений" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" -msgstr "диалект+драйвер://пользователь:пароль@хост:порт/схема" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Произошла ошибка при удалении выбранных %s: %s" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "черновик" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Последнее изменение" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "Дата/время" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Журнал Действий" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "например, ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Множественный выбор" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "например, 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Пока нет %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" -msgstr "например, 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Владелец" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Все" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" -msgstr "например, Analytics" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Произошла ошибка при получении владельцев графика: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Статус" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "например, параметр1=значение1&параметр2=значение2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "Произошла ошибка при получении значений датасета: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Оповещения и отчеты" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "например, health_medicine" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Оповещения" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Отчеты" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "например, столбец \"идентификатор пользователя\"" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Удалить %s?" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" -msgstr "режиме редактирования" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Вы уверены, что хотите удалить выбранные %s?" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#: superset-frontend/src/pages/AllEntities/index.tsx:180 #, fuzzy -msgid "entries" -msgstr "категории" +msgid "Error Fetching Tagged Objects" +msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "error" -msgstr "Ошибка" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +msgid "Edit Tag" +msgstr "Редактировать запись" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "Сообщение об ошибке" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Произошла ошибка при удалении выбранных слоёв: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "каждые" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Редактировать шаблон" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "каждый день месяца" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Удалить шаблон" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "каждый день недели" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Кем изменено" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "каждый час" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Пока нет слоев аннотаций" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" -msgstr "каждая минута" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Это действие навсегда удалит слой." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "каждый месяц" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Удалить слой?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" -msgstr "развернуть" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Вы уверены, что хотите удалить выбранные слои?" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" -msgstr "исследовать" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "Произошла ошибка при удалении выбранных аннотаций: %s" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "Ошибка" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Удалить аннотацию" -#: superset-frontend/src/SqlLab/constants.ts:35 -#, fuzzy -msgid "fetching" -msgstr "Получение данных" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Аннотация" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" -msgstr "ffill (заполняет пропуски следующими значениями)" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Пока нет аннотаций" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." -msgstr "" -"filter_box устарел и будет удален в будущей версии Суперсета. Пожалуйста," -" замените его фильтрами в левой панели дашборда." +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format +msgid "Annotation Layer %s" +msgstr "Слой аннотаций %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" +msgstr "Вернуться ко всем" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr " за подробной информацией по тому, как структурировать ваш URI" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Вы уверены, что хотите удалить %s?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Удалить аннотацию?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Вы уверены, что хотите удалить выбранные аннотации?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -msgid "heatmap" -msgstr "тепловая карта" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "Не удалось загрузить данные графика" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "тепловая карта: значения нормализованы внутри всей карты" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +#, fuzzy +msgid "view instructions" +msgstr "Время в секундах" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" -msgstr "здесь" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" +msgstr "Добавить датасет" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +#, fuzzy +msgid "or" msgstr "час" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" -msgstr "идентификатор" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Выберите датасет" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "Выберите тип графика" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "Пожалуйста, для продолжения выберите и датасет, и тип графика" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +#: superset-frontend/src/pages/ChartList/index.tsx:95 msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" +"Для баз данных нужны пароли, чтобы импортировать их вместе с графиками. " +"Пожалуйста, обратите внимание, что разделы \"Безопасность\" и " +"\"Утверждение\" в настройках конфигурации базы данных отсутствуют в " +"экспортируемых файлов и должны быть добавлены вручную после импорта, если" +" необходимо." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "в" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Вы импортируете один или несколько графиков, которые уже существуют. " +"Перезапись может привести к потере части вашей работы. Вы уверены, что " +"хотите перезаписать?" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "в модальном окне" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" +msgstr "График импортирован" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "Ожидается число" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Произошла ошибка при удалении выбранных графиков: %s" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" -msgstr "Ожидается целое число" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Произошла ошибка при получении дашбордов" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "Присоединился" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "Любой" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "JSON не валиден" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" -msgstr "По алфавиту А-Я" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "Произошла ошибка при получении владельцев графика: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "По алфавиту Я-А" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "Утверждено" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" -msgstr "метка" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "В алфавитном порядке" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" -msgstr "последний день" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Измененные недавно" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" -msgstr "последний месяц" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Измененные давно" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "последний квартал" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Импортировать графики" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "последняя неделя" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Вы уверены, что хотите удалить выбранные графики?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" -msgstr "последний год" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSS шаблоны" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "последний раздел:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Произошла ошибка при удалении выбранных шаблонов: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" -msgstr "слева" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSS шаблон" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Это действие навсегда удалит шаблон." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -#, fuzzy -msgid "linear" -msgstr "" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Удалить шаблон?" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "журнал" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Вы уверены, что хотите удалить выбранные шаблоны?" -#: superset/charts/schemas.py:735 +#: superset-frontend/src/pages/DashboardList/index.tsx:73 msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -"Нижний процентиль должен быть больше 0 и меньше 100. Должен быть ниже " -"верхнего процентиля" +"Для баз данных нужны пароли, чтобы импортировать их вместе с дашбордами. " +"Пожалуйста, обратите внимание, что разделы \"Безопасность\" и " +"\"Утверждение\" в настройках конфигурации базы данных отсутствуют в " +"экспортируемых файлах и должны быть добавлены вручную после импорта, если" +" необходимо." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" -msgstr "Максимум" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Вы импортируете один или несколько дашбордов, которые уже существуют. " +"Перезапись может привести к потере части вашей работы. Вы уверены, что " +"хотите перезаписать?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" -msgstr "Среднее" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" +msgstr "Дашборд импортирован" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" -msgstr "Медиана" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Произошла ошибка при удалении выбранных дашбордов: " -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" -msgstr "мера" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "Произошла ошибка при получении владельца дашборда: %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -msgid "min" -msgstr "Минимум" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Вы уверены, что хотите удалить выбранные дашборды?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "минута" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Произошла ошибка при получении данных о базе данных: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" -msgstr "минут" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" +msgstr "Загрузить файл в базу данных" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "Гладкая линия" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" +msgstr "Загрузить CSV" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "месяц" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" +msgstr "Загрузить файл столбчатого формата" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" +msgstr "Загрузить файл Excel" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "значение обязательно" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "Асинхронные запросы" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -msgid "name" -msgstr "имя" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Разрешить операции вставки, обновления и удаления данных" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" -msgstr "не настроен ни один SQL валидатор" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" -msgstr "не настроен ни один SQL валидатор для {}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "Загрузка CSV" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Удалить базу данных" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." msgstr "" +"База данных %s привязана к %s графику(-ам), который(-ые) " +"используется(-ются) в %s дашборде(-ах), и пользователи имеют %s " +"открытую(-ых) вкладку(-ок) в Лаборатории SQL. Вы уверены, что хотите " +"продолжить? Удаление базы данных приведёт к неработоспособности этих " +"компонентов." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "Графики nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Удалить базу данных?" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -#, fuzzy -msgid "of parent" -msgstr "Родитель" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" +msgstr "Импортирован датасет" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -#, fuzzy -msgid "of total" -msgstr "Показывать общий итог" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Произошла ошибка при получении метаданных датасета" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -#, fuzzy -msgid "offline" -msgstr "Оффлайн" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Произошла ошибка при получении данных о датасете: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "по" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Физический датасет" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "час" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Виртуальный датасет" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "или использовать уже существующие из панели справа" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" +msgstr "Виртуальный" -#: superset/charts/schemas.py:1313 -#, fuzzy -msgid "orderby column must be populated" -msgstr "Ваш запрос не может быть сохранен" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Произошла ошибка при получении датасетов: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -#, fuzzy -msgid "overall" -msgstr "Сбросить фильтры" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Произошла ошибка при извлечении значений схемы: %s" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "точность p-значения" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "Произошла ошибка при получении владельца датасета: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Импортировать датасеты" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Произошла ошибка при удалении выбранных датасетов: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." +msgstr "Произошла ошибка при дублировании датасета." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Произошла ошибка при дублировании выбранных датасетов: %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" +"Датасет %s привязан к %s графику(-ам), который(-ые) используется(-ются) в" +" %s дашборде(-ах). Вы уверены, что хотите продолжить? Удаление датасета " +"приведёт к неработоспособности этих объектов." -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Удалить датасет?" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Вы уверены, что хотите удалить выбранные датасеты?" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -#, fuzzy -msgid "pending" -msgstr "Отрисовка" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 выбрано" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "перцентиль (исключая)" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s Выбрано (Виртуальные)" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s Выбрано (Физические)" -#: superset/views/core.py:1958 -msgid "permalink state not found" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s Выбрано (%s Физические, %s Виртуальные)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "журнал" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "предыдущий календарный месяц" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "ID исполнения" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "предыдущая календарная неделя" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Запланировано на (часовой пояс UTC)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "предыдущий календарный год" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Время начала (UTC)" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "опубликовано" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Сообщение об ошибке" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" -msgstr "Квартал" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +#, fuzzy +msgid "Alert" +msgstr "оповещение" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "запросы" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Произошла ошибка при получении вашей последней активности: %s" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "запрос" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Произошла ошибка при получении вашего дашборда: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "случайно" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Произошла ошибка при получении вашего графика: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "обновить" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Произошла ошибка при получении ваших сохраненных запросов: %s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" -msgstr "недавние" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "Миниатюры" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" -msgstr "недавние(их)" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "Недавние" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "рассылка" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Произошла ошибка при предпросмотре выбранного запроса: %s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "рассылки" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "ТАБЛИЦЫ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "восстановить масштабирование" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Открыть в SQL редакторе" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" -msgstr "справа" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Произошла ошибка при получении значений базы данных: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 -#, fuzzy -msgid "rowlevelsecurity" -msgstr "Безопасность на уровне строк" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Произошла ошибка при извлечении пользовательских значений: %s" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Поиск по тексту запроса" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Удалено: %s" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "running" -msgstr "Выполняется" +msgid "Deleted" +msgstr "удалить" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" -msgstr "сохраненные(ых) запросы(ов)" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Произошла ошибка при удалении %s: %s" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "search by tags" -msgstr "Показать в виде таблицы" +msgid "No Rules yet" +msgstr "недавние(их)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "seconds" -msgstr "секунд" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Вы уверены, что хотите удалить выбранные слои?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -msgid "series" -msgstr "категории" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." +msgstr "" +"Для баз данных нужны пароли, чтобы импортировать их вместе с сохраненными" +" запросами. Пожалуйста, обратите внимание, что разделы \"Безопасность\" и" +" \"Утверждение\" в настройках конфигурации базы данных отсутствуют в " +"экспортируемых файлах и должны быть добавлены вручную после импорта, если" +" необходимо." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" +"Вы импортируете один или несколько сохраненных запросов, которые уже " +"существуют. Перезапись может привести к потере части вашей работы. Вы " +"уверены, что хотите продолжить?" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -#, fuzzy -msgid "square" -msgstr "последний квартал" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" +msgstr "Запрос импортирован" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Произошла ошибка при предпросмотре выбранного запроса %s" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Импортировать запросы" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -#, fuzzy -msgid "stack" -msgstr "С наполнением" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Ссылка скопирована" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -#, fuzzy -msgid "staggered" -msgstr "Запущен" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Произошла ошибка при удалении выбранных запросов: %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" -msgstr "Стандартное отклонение" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Редактировать запрос" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-after" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Скопировать ссылку на запрос" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Экспорт запроса" -#: superset-frontend/src/SqlLab/constants.ts:37 -#, fuzzy -msgid "stopped" -msgstr "Добавить" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Удалить запрос" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" -msgstr "поток" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Вы уверены, что хотите удалить выбранные запросы?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "запросы" + +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success" -msgstr "Успешно" +msgid "No Tags created" +msgstr "создан(а)" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:352 #, fuzzy -msgid "success dark" -msgstr "Успешно" +msgid "Are you sure you want to delete the selected tags?" +msgstr "Вы уверены, что хотите удалить выбранные %s?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" -msgstr "Сумма" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." +msgstr "Ошибка скачивания изображения, пожалуйста, обновите и попробуйте заново." -# Не нужно переводить -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." -msgstr "" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +#, fuzzy +msgid "PDF download failed, please refresh and try again." +msgstr "Ошибка скачивания изображения, пожалуйста, обновите и попробуйте заново." -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" +"Выберите значения в обязательных полях на панели управления. Затем " +"запустите запрос, нажав на кнопку %s." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "Недопустимые входные данные" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "текстовая область" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " +msgstr "Неожиданная ошибка: " -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" -msgstr "по" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "(нет описания, нажмите для просмотра трассировки стека)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" -msgstr "сверху" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." +msgstr "Извините, произошла неизвестная ошибка." -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" -msgstr "отмены" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Извините, произошла ошибка при сохранении дашборда: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "У вас нет прав на редактирование этого графика" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." -msgstr "" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" +msgstr "Ошибка сети" -#: superset-frontend/src/explore/constants.ts:85 -#, fuzzy -msgid "use latest_partition template" -msgstr "последний раздел:" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" +msgstr "Вышло время запроса" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" -msgstr "Значение по возрастанию" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Ошибка 1000 - Источник данных слишком велик для запроса." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" -msgstr "Значение по убыванию" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Ошибка 1001 - Нетипичная загрузка базы данных." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" -msgstr "Дисперсия" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Произошла ошибка при получении информации о %s: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" -msgstr "Дисперсия" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Произошла ошибка при получении: %s: %s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "Время в секундах" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Произошла ошибка при создании %sов: %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" -msgstr "Виртуальный" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" -msgstr "тип визуализации" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Произошла ошибка при попытке импортировать %s: %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "создан(а)" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Произошла ошибка при получении статуса избранного: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "неделя" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Произошла ошибка при сохранении статуса избранного: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" -msgstr "неделя, заканчивающаяся в субботу" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "Соединение в порядке!" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" -msgstr "неделя, начинающаяся в воскресенье" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "ОШИБКА: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "x" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Произошла ошибка при получении вашей недавней активности:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" -msgstr "x: значения нормализованы внутри каждого столбца" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Произошла ошибка при удалении: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" -msgstr "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "Ссылка (URL)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" -msgstr "y: значения нормализованы внутри каждой строки" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." +msgstr "" +"Шаблонная ссылка, можно включить {{ metric }} или другие значения, " +"поступающие из элементов управления." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "год" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Таблица временных рядов" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." msgstr "" +"Быстрое сравнение нескольких графиков временных рядов (в виде " +"спарклайнов) и связанных с ними показателей." + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" +msgstr "У нас есть следующие ключи: %s" diff --git a/superset/translations/sk/LC_MESSAGES/messages.json b/superset/translations/sk/LC_MESSAGES/messages.json index 6a3291fe740f5..a83c0e03354fa 100644 --- a/superset/translations/sk/LC_MESSAGES/messages.json +++ b/superset/translations/sk/LC_MESSAGES/messages.json @@ -8,4687 +8,4671 @@ "plural_forms": "nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2)", "lang": "sk" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "The datasource is too large to query.": [""], + "The database is under an unusual load.": [""], + "The database returned an unexpected error.": [""], + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "" ], - "\n Error: %(text)s\n ": [""], - " (excluded)": [""], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "The column was deleted or renamed in the database.": [""], + "The table was deleted or renamed in the database.": [""], + "One or more parameters specified in the query are missing.": [""], + "The hostname provided can't be resolved.": [""], + "The port is closed.": [""], + "The host might be down, and can't be reached on the provided port.": [ "" ], - " a new one": [""], - " expression which needs to adhere to the ": [""], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "Superset encountered an error while running a command.": [""], + "Superset encountered an unexpected error.": [""], + "The username provided when connecting to a database is not valid.": [""], + "The password provided when connecting to a database is not valid.": [""], + "Either the username or the password is wrong.": [""], + "Either the database is spelled incorrectly or does not exist.": [""], + "The schema was deleted or renamed in the database.": [""], + "User doesn't have the proper permissions.": [""], + "One or more parameters needed to configure a database are missing.": [ "" ], - " to add calculated columns": [""], - " to add metrics": [""], - " to edit or add columns and metrics.": [""], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": [""], - "%(dialect)s cannot be used as a data source for security reasons.": [""], - "%(message)s\nThis may be triggered by: \n%(issues)s": [""], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [""], - "%(other)s charts will appear here": [""], - "%(other)s dashboards will appear here": [""], - "%(other)s recents will appear here": [""], - "%(other)s saved queries will appear here": [""], - "%(prefix)s %(title)s": [""], - "%(rows)d rows returned": [""], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ + "The submitted payload has the incorrect format.": [""], + "The submitted payload has the incorrect schema.": [""], + "Results backend needed for asynchronous queries is not configured.": [ "" ], - "%(user)s's profile": [""], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "Database does not allow data manipulation.": [""], + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - "%s Error": [""], - "%s PASSWORD": [""], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": [""], - "%s Selected (%s Physical, %s Virtual)": [""], - "%s Selected (Physical)": [""], - "%s Selected (Virtual)": [""], - "%s aggregates(s)": [""], - "%s column(s)": [""], - "%s operator(s)": [""], - "%s option(s)": [""], - "%s row": ["", "%s rows", "%s rows"], - "%s saved metric(s)": [""], - "%s updated": [""], - "%s%s": [""], - "%s-%s of %s": [""], - "(Removed)": [""], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [""], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ + "CVAS (create view as select) query has more than one statement.": [""], + "CVAS (create view as select) query is not a SELECT statement.": [""], + "Query is too complex and takes too long to run.": [""], + "The database is currently running too many queries.": [""], + "One or more parameters specified in the query are malformed.": [""], + "The object does not exist in the given database.": [""], + "The query has a syntax error.": [""], + "The results backend no longer has the data from the query.": [""], + "The query associated with the results was deleted.": [""], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ "" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "The port number is invalid.": [""], + "Failed to start remote query on a worker.": [""], + "The database was deleted.": [""], + "Custom SQL fields cannot contain sub-queries.": [""], + "The submitted payload failed validation.": [""], + "Invalid certificate": [""], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [""], + "Unsupported return value for method %(name)s": [""], + "Unsafe template value for key %(key)s: %(value_type)s": [""], + "Unsupported template value for key %(key)s": [""], + "Only SELECT statements are allowed against this database.": [""], + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "Results backend is not configured.": [""], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ "" ], - ".": [""], - "0 Selected": [""], - "1 calendar day frequency": [""], - "1 day": [""], - "1 day ago": [""], - "1 hour": [""], - "1 hourly frequency": [""], - "1 minute": [""], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week": [""], - "1 week ago": [""], - "1 week starting Monday (freq=W-MON)": [""], - "1 week starting Sunday (freq=W-SUN)": [""], - "1 year": [""], - "1 year ago": [""], - "1 year end frequency": [""], - "1 year start frequency": [""], - "10 minute": [""], - "104 weeks": [""], - "104 weeks ago": [""], - "15 minute": [""], - "156 weeks": [""], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days": [""], - "28 days ago": [""], - "2D": [""], - "3 letter code of the country": [""], - "3 years": [""], - "3 years ago": [""], - "30 days": [""], - "30 days ago": [""], - "30 minute": [""], - "30 minutes": [""], - "30 second": [""], - "30 seconds": [""], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": [""], - "5 minutes": [""], - "5 second": [""], - "5 seconds": [""], - "52 weeks": [""], - "52 weeks ago": [""], - "52 weeks starting Monday (freq=52W-MON)": [""], - "6 hour": [""], - "60 days": [""], - "7 calendar day frequency": [""], - "7 days": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": [""], - ":": [""], - "< (Smaller than)": [""], - "<= (Smaller or equal)": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "== (Is equal)": [""], - "> (Larger than)": [""], - ">= (Larger or equal)": [""], - "A Big Number": [""], - "A comma separated list of columns that should be parsed as dates": [""], - "A comma separated list of columns that should be parsed as dates.": [""], - "A comma-separated list of schemas that files are allowed to upload to.": [ + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ "" ], - "A database with the same name already exists.": [""], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": [""], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ "" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "From date cannot be larger than to date": [""], + "Cached value not found": [""], + "Columns missing in datasource: %(invalid_columns)s": [""], + "Time Table View": [""], + "Pick at least one metric": [""], + "When using 'Group By' you are limited to use a single metric": [""], + "Calendar Heatmap": [""], + "Bubble Chart": [""], + "Please use 3 different metric labels": [""], + "Pick a metric for x, y and size": [""], + "Bullet Chart": [""], + "Pick a metric to display": [""], + "Time Series - Line Chart": [""], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": [""], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "Time Series - Bar Chart": [""], + "Time Series - Period Pivot": [""], + "Time Series - Percent Change": [""], + "Time Series - Stacked": [""], + "Histogram": [""], + "Must have at least one numeric column specified": [""], + "Distribution - Bar Chart": [""], + "Can't have overlap between Series and Breakdowns": [""], + "Pick at least one field for [Series]": [""], + "Sankey": [""], + "Pick exactly 2 columns as [Source / Target]": [""], + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ "" ], - "A list of tags that have been applied to this chart.": [""], - "A list of users who can alter the chart. Searchable by name or username.": [ + "Directed Force Layout": [""], + "Country Map": [""], + "World Map": [""], + "Parallel Coordinates": [""], + "Heatmap": [""], + "Horizon Charts": [""], + "Mapbox": [""], + "[Longitude] and [Latitude] must be set": [""], + "Must have a [Group By] column to have 'count' as the [Label]": [""], + "Choice of [Label] must be present in [Group By]": [""], + "Choice of [Point Radius] must be present in [Group By]": [""], + "[Longitude] and [Latitude] columns must be present in [Group By]": [""], + "Deck.gl - Multiple Layers": [""], + "Bad spatial key": [""], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ "" ], - "A map of the world, that can indicate values in different countries.": [ - "" + "Deck.gl - Scatter plot": [""], + "Deck.gl - Screen Grid": [""], + "Deck.gl - 3D Grid": [""], + "Deck.gl - Paths": [""], + "Deck.gl - Polygon": [""], + "Deck.gl - 3D HEX": [""], + "Deck.gl - GeoJSON": [""], + "Deck.gl - Arc": [""], + "Event flow": [""], + "Time Series - Paired t-test": [""], + "Time Series - Nightingale Rose Chart": [""], + "Partition Diagram": [""], + "Please choose at least one groupby": [""], + "Invalid advanced data type: %(advanced_data_type)s": [""], + "Deleted %(num)d annotation layer": [ + "", + "Deleted %(num)d annotation layers", + "Deleted %(num)d annotation layers" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "" + "All Text": [""], + "Deleted %(num)d annotation": [ + "", + "Deleted %(num)d annotations", + "Deleted %(num)d annotations" ], - "A metric to use for color": [""], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Deleted %(num)d chart": [ + "", + "Deleted %(num)d charts", + "Deleted %(num)d charts" + ], + "Is certified": [""], + "Has created by": [""], + "Created by me": [""], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [""], + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ "" ], - "A readable URL for your dashboard": [""], - "A reference to the [Time] configuration, taking granularity into account": [ + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ "" ], - "A report named \"%(name)s\" already exists": [""], - "A reusable dataset will be saved with your chart.": [""], - "A screenshot of the dashboard will be sent to your email at": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ + "`width` must be greater or equal to 0": [""], + "`row_limit` must be greater than or equal to 0": [""], + "`row_offset` must be greater than or equal to 0": [""], + "orderby column must be populated": [""], + "Chart has no query context saved. Please save the chart again.": [""], + "Request is incorrect: %(error)s": [""], + "Request is not JSON": [""], + "Empty query result": [""], + "Owners are invalid": [""], + "Some roles do not exist": [""], + "Datasource type is invalid": [""], + "Datasource does not exist": [""], + "Query does not exist": [""], + "Annotation layer parameters are invalid.": [""], + "Annotation layer could not be created.": [""], + "Annotation layer could not be updated.": [""], + "Annotation layer not found.": [""], + "Annotation layers could not be deleted.": [""], + "Annotation layer has associated annotations.": [""], + "Name must be unique": [""], + "End date must be after start date": [""], + "Short description must be unique for this layer": [""], + "Annotation not found.": [""], + "Annotation parameters are invalid.": [""], + "Annotation could not be created.": [""], + "Annotation could not be updated.": [""], + "Annotations could not be deleted.": [""], + "There are associated alerts or reports: %(report_names)s": [""], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "A time column must be specified when using a Time Comparison.": [""], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Cannot parse time string [%(human_readable)s]": [""], + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ "" ], - "A timeout occurred while executing the query.": [""], - "A timeout occurred while generating a csv.": [""], - "A timeout occurred while generating a dataframe.": [""], - "A timeout occurred while taking a screenshot.": [""], - "A valid color scheme is required": [""], - "APPLY": [""], - "APR": [""], - "AQE": [""], - "AUG": [""], - "AXIS TITLE MARGIN": [""], - "AXIS TITLE POSITION": [""], - "About": [""], - "Access": [""], - "Access requests": [""], - "Access to user activity data is restricted": [""], - "Access token": [""], - "Access was requested": [""], - "Action": [""], - "Action Log": [""], - "Actions": [""], - "Active": [""], - "Actual Values": [""], - "Actual time range": [""], - "Actual value": [""], - "Actual values": [""], - "Adaptive formatting": [""], - "Add": [""], - "Add Alert": [""], - "Add CSS Template": [""], - "Add CSS template": [""], - "Add Chart": [""], - "Add Column": [""], - "Add Dashboard": [""], - "Add Database": [""], - "Add Log": [""], - "Add Metric": [""], - "Add Report": [""], - "Add Rule": [""], - "Add Saved Query": [""], - "Add a Plugin": [""], - "Add a dataset": [""], - "Add a new tab": [""], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": [""], - "Add an item": [""], - "Add and edit filters": [""], - "Add annotation": [""], - "Add annotation layer": [""], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "Database does not exist": [""], + "Dashboards do not exist": [""], + "Datasource type is required when datasource_id is given": [""], + "Chart parameters are invalid.": [""], + "Chart could not be created.": [""], + "Chart could not be updated.": [""], + "Charts could not be deleted.": [""], + "There are associated alerts or reports": [""], + "You don't have access to this chart.": [""], + "Changing this chart is forbidden": [""], + "Import chart failed for an unknown reason": [""], + "Changing one or more of these dashboards is forbidden": [""], + "Chart not found": [""], + "Error: %(error)s": [""], + "CSS templates could not be deleted.": [""], + "CSS template not found.": [""], + "Must be unique": [""], + "Dashboard parameters are invalid.": [""], + "Dashboards could not be created.": [""], + "Dashboard could not be updated.": [""], + "Dashboard could not be deleted.": [""], + "Changing this Dashboard is forbidden": [""], + "Import dashboard failed for an unknown reason": [""], + "You don't have access to this dashboard.": [""], + "You don't have access to this embedded dashboard config.": [""], + "No data in file": [""], + "Database parameters are invalid.": [""], + "A database with the same name already exists.": [""], + "Field is required": [""], + "Field cannot be decoded by JSON. %(json_error)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ "" ], - "Add cross-filter": [""], - "Add custom scoping": [""], - "Add delivery method": [""], - "Add extra connection information.": [""], - "Add filter": [""], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Database not found.": [""], + "Database could not be created.": [""], + "Database could not be updated.": [""], + "Connection failed, please check your connection settings": [""], + "Cannot delete a database that has datasets attached": [""], + "Database could not be deleted.": [""], + "Stopped an unsafe database connection": [""], + "Could not load database driver": [""], + "Unexpected error occurred, please check your logs for details": [""], + "no SQL validator is configured": [""], + "No validator found (configured for the engine)": [""], + "Was unable to check your query": [""], + "An unexpected error occurred": [""], + "Import database failed for an unknown reason": [""], + "Could not load database driver: {}": [""], + "Engine \"%(engine)s\" cannot be configured through parameters.": [""], + "Database is offline.": [""], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ "" ], - "Add filters and dividers": [""], - "Add item": [""], - "Add metric": [""], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": [""], - "Add new formatter": [""], - "Add notification method": [""], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add sheet": [""], - "Add the name of the chart": [""], - "Add the name of the dashboard": [""], - "Add to dashboard": [""], - "Add/Edit Filters": [""], - "Added": [""], - "Additional Parameters": [""], - "Additional fields may be required": [""], - "Additional information": [""], - "Additional metadata": [""], - "Additional padding for legend.": [""], - "Additional parameters": [""], - "Additional settings.": [""], - "Additional text to add before or after the value, e.g. unit": [""], - "Additive": [""], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": [""], - "Advanced Analytics": [""], - "Advanced Data type": [""], - "Advanced analytics": [""], - "Advanced analytics Query A": [""], - "Advanced analytics Query B": [""], - "Advanced data type": [""], - "Advanced-Analytics": [""], - "Aesthetic": [""], - "After": [""], - "Aggregate": [""], - "Aggregate Mean": [""], - "Aggregate Sum": [""], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "no SQL validator is configured for %(engine)s": [""], + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ "" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "SSH Tunnel could not be deleted.": [""], + "SSH Tunnel not found.": [""], + "SSH Tunnel parameters are invalid.": [""], + "SSH Tunnel could not be updated.": [""], + "Creating SSH Tunnel failed for an unknown reason": [""], + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "The database was not found.": [""], + "Dataset %(name)s already exists": [""], + "Database not allowed to change": [""], + "One or more columns do not exist": [""], + "One or more columns are duplicated": [""], + "One or more columns already exist": [""], + "One or more metrics do not exist": [""], + "One or more metrics are duplicated": [""], + "One or more metrics already exist": [""], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ "" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Dataset does not exist": [""], + "Dataset parameters are invalid.": [""], + "Dataset could not be created.": [""], + "Dataset could not be updated.": [""], + "Datasets could not be deleted.": [""], + "Samples for dataset could not be retrieved.": [""], + "Changing this dataset is forbidden": [""], + "Import dataset failed for an unknown reason": [""], + "You don't have access to this dataset.": [""], + "Dataset could not be duplicated.": [""], + "Data URI is not allowed.": [""], + "The provided table was not found in the provided database": [""], + "Dataset column not found.": [""], + "Dataset column delete failed.": [""], + "Changing this dataset is forbidden.": [""], + "Dataset metric not found.": [""], + "Dataset metric delete failed.": [""], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": [""], + "Saved queries could not be deleted.": [""], + "Saved query not found.": [""], + "Import saved query failed for an unknown reason.": [""], + "Saved query parameters are invalid.": [""], + "Alert query returned more than one row. %(num_rows)s rows returned": [ "" ], - "Aggregation": [""], - "Aggregation function": [""], - "Alert": [""], - "Alert Triggered, In Grace Period": [""], - "Alert condition": [""], - "Alert condition schedule": [""], - "Alert ended grace period.": [""], - "Alert failed": [""], - "Alert fired during grace period.": [""], - "Alert found an error while executing a query.": [""], - "Alert name": [""], - "Alert on grace period": [""], - "Alert query returned a non-number value.": [""], - "Alert query returned more than one column.": [""], - "Alert query returned more than one column. %s columns returned": [""], - "Alert query returned more than one row.": [""], - "Alert query returned more than one row. %s rows returned": [""], - "Alert running": [""], - "Alert triggered, notification sent": [""], - "Alert validator config error.": [""], - "Alerts": [""], - "Alerts & Reports": [""], - "Alerts & reports": [""], - "Align +/-": [""], - "All": [""], - "All Entities": [""], - "All Text": [""], - "All charts": [""], - "All charts/global scoping": [""], - "All filters": [""], - "All filters (%(filterCount)d)": [""], - "All panels": [""], - "All panels with this column will be affected by this filter": [""], - "Allow CREATE TABLE AS": [""], - "Allow CREATE TABLE AS option in SQL Lab": [""], - "Allow CREATE VIEW AS": [""], - "Allow CREATE VIEW AS option in SQL Lab": [""], - "Allow Csv Upload": [""], - "Allow DML": [""], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": [""], - "Allow creation of new views based on queries": [""], - "Allow data manipulation language": [""], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Alert query returned more than one column. %(num_columns)s columns returned": [ "" ], - "Allow file uploads to database": [""], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "" - ], - "Allow multiple selections": [""], - "Allow node selections": [""], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": [""], - "Allow this database to be queried in SQL Lab": [""], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "An error occurred when running alert query": [""], + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": [""], + "Chart does not exist": [""], + "Database is required for alerts": [""], + "Type is required": [""], + "Choose a chart or dashboard not both": [""], + "Must choose either a chart or a dashboard": [""], + "Please save your chart first, then try creating a new email report.": [ "" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": [""], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Please save your dashboard first, then try creating a new email report.": [ "" ], - "Altered": [""], - "An Error Occurred": [""], + "Report Schedule parameters are invalid.": [""], + "Report Schedule could not be created.": [""], + "Report Schedule could not be updated.": [""], + "Report Schedule not found.": [""], + "Report Schedule delete failed.": [""], + "Report Schedule log prune failed.": [""], + "Report Schedule execution failed when generating a screenshot.": [""], + "Report Schedule execution failed when generating a csv.": [""], + "Report Schedule execution failed when generating a dataframe.": [""], + "Report Schedule execution got an unexpected error.": [""], + "Report Schedule is still working, refusing to re-compute.": [""], + "Report Schedule reached a working timeout.": [""], + "A report named \"%(name)s\" already exists": [""], "An alert named \"%(name)s\" already exists": [""], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": [""], + "Alert validator config error.": [""], + "Alert query returned more than one column.": [""], + "Alert query returned a non-number value.": [""], + "Alert found an error while executing a query.": [""], + "A timeout occurred while executing the query.": [""], + "A timeout occurred while taking a screenshot.": [""], + "A timeout occurred while generating a csv.": [""], + "A timeout occurred while generating a dataframe.": [""], + "Alert fired during grace period.": [""], + "Alert ended grace period.": [""], + "Alert on grace period": [""], + "Report Schedule state not found": [""], + "Report schedule system error": [""], + "Report schedule client error": [""], + "Report schedule unexpected error": [""], + "Changing this report is forbidden": [""], + "An error occurred while pruning logs ": [""], + "RLS Rule not found.": [""], + "RLS rules could not be deleted.": [""], + "The database could not be found": [""], + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "" ], - "An engine must be specified when passing individual parameters to a database.": [ + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ "" ], - "An error has occurred": [""], - "An error occurred": [""], - "An error occurred saving dataset": [""], - "An error occurred while accessing the value.": [""], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "The query associated with these results could not be found. You need to re-run the original query.": [ "" ], - "An error occurred while creating %ss: %s": [""], - "An error occurred while creating the data source": [""], - "An error occurred while creating the value.": [""], - "An error occurred while deleting the value.": [""], - "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ "" ], - "An error occurred while fetching %s info: %s": [""], - "An error occurred while fetching %ss: %s": [""], - "An error occurred while fetching available CSS templates": [""], - "An error occurred while fetching chart created by values: %s": [""], - "An error occurred while fetching chart owners values: %s": [""], - "An error occurred while fetching created by values: %s": [""], - "An error occurred while fetching dashboard created by values: %s": [""], - "An error occurred while fetching dashboard owner values: %s": [""], - "An error occurred while fetching dashboards": [""], - "An error occurred while fetching dashboards: %s": [""], - "An error occurred while fetching database related data: %s": [""], - "An error occurred while fetching database values: %s": [""], - "An error occurred while fetching dataset datasource values: %s": [""], - "An error occurred while fetching dataset owner values: %s": [""], - "An error occurred while fetching dataset related data": [""], - "An error occurred while fetching dataset related data: %s": [""], - "An error occurred while fetching datasets: %s": [""], - "An error occurred while fetching function names.": [""], - "An error occurred while fetching owners values: %s": [""], - "An error occurred while fetching schema values: %s": [""], - "An error occurred while fetching tab state": [""], - "An error occurred while fetching table metadata": [""], - "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "" ], - "An error occurred while fetching tag created by values: %s": [""], - "An error occurred while fetching user values: %s": [""], - "An error occurred while hiding the left bar. Please contact your administrator.": [ + "Tag parameters are invalid.": [""], + "Tag could not be created.": [""], + "Tag could not be updated.": [""], + "Tag could not be deleted.": [""], + "Tagged Object could not be deleted.": [""], + "An error occurred while creating the value.": [""], + "An error occurred while accessing the value.": [""], + "An error occurred while deleting the value.": [""], + "An error occurred while updating the value.": [""], + "You don't have permission to modify the value.": [""], + "Resource was not found.": [""], + "Invalid result type: %(result_type)s": [""], + "Columns missing in dataset: %(invalid_columns)s": [""], + "Time Grain must be specified when using Time Shift.": [""], + "A time column must be specified when using a Time Comparison.": [""], + "The chart does not exist": [""], + "The chart datasource does not exist": [""], + "The chart query context does not exist": [""], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" ], - "An error occurred while importing %s: %s": [""], - "An error occurred while loading dashboard information.": [""], - "An error occurred while loading the SQL": [""], - "An error occurred while opening Explore": [""], - "An error occurred while parsing the key.": [""], - "An error occurred while pruning logs ": [""], - "An error occurred while removing query. Please contact your administrator.": [ + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ "" ], - "An error occurred while removing tab. Please contact your administrator.": [ + "`operation` property of post processing object undefined": [""], + "Unsupported post processing operation: %(operation)s": [""], + "[asc]": [""], + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [""], + "Virtual dataset query must be read-only": [""], + "Error while rendering virtual dataset query: %(msg)s": [""], + "Virtual dataset query cannot be empty": [""], + "Virtual dataset query cannot consist of multiple statements": [""], + "Error in jinja expression in RLS filters: %(msg)s": [""], + "Metric '%(metric)s' does not exist": [""], + "Db engine did not return all queried columns": [""], + "Only `SELECT` statements are allowed": [""], + "Only single queries supported": [""], + "Columns": [""], + "Show Column": [""], + "Add Column": [""], + "Edit Column": [""], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ + "Whether this column is exposed in the `Filters` section of the explore view.": [ "" ], - "An error occurred while rendering the visualization: %s": [""], - "An error occurred while setting the active tab. Please contact your administrator.": [ + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ "" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ + "Column": [""], + "Verbose Name": [""], + "Description": [""], + "Groupable": [""], + "Filterable": [""], + "Table": [""], + "Expression": [""], + "Is temporal": [""], + "Datetime Format": [""], + "Type": [""], + "Business Data Type": [""], + "Invalid date/timestamp format": [""], + "Metrics": [""], + "Show Metric": [""], + "Add Metric": [""], + "Edit Metric": [""], + "Metric": [""], + "SQL Expression": [""], + "D3 Format": [""], + "Extra": [""], + "Warning Message": [""], + "Tables": [""], + "Show Table": [""], + "Import a table definition": [""], + "Edit Table": [""], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ "" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ + "Timezone offset (in hours) for this datasource": [""], + "Name of the table that exists in the source database": [""], + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ "" ], - "An error occurred while setting the tab name. Please contact your administrator.": [ + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ "" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ "" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "Redirects to this endpoint when clicking on the table from the table list": [ "" ], - "An error occurred while starring this chart": [""], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ "" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ "" ], - "An error occurred while updating the value.": [""], - "An error occurred while upserting the value.": [""], - "An unexpected error occurred": [""], - "An unknown error occurred. Please contact your Superset administrator": [ + "A set of parameters that become available in the query using Jinja templating syntax": [ "" ], - "Anchor to": [""], - "Angle at which to end progress axis": [""], - "Angle at which to start progress axis": [""], - "Animation": [""], - "Annotation": [""], - "Annotation Layers": ["Anotačná vrstva"], - "Annotation Slice Configuration": [""], - "Annotation could not be created.": [""], - "Annotation could not be updated.": [""], - "Annotation delete failed.": [""], - "Annotation layer": [""], - "Annotation layer could not be created.": [""], - "Annotation layer could not be deleted.": [""], - "Annotation layer could not be updated.": [""], - "Annotation layer delete failed.": [""], - "Annotation layer description columns": [""], - "Annotation layer has associated annotations.": [""], - "Annotation layer name": [""], - "Annotation layer not found.": [""], - "Annotation layer parameters are invalid.": [""], - "Annotation layer type": [""], - "Annotation layers": [""], - "Annotation layers are still loading.": [""], - "Annotation name": [""], - "Annotation not found.": [""], - "Annotation parameters are invalid.": [""], - "Annotations and layers": [""], - "Annotations could not be deleted.": [""], - "Any": [""], - "Any additional detail to show in the certification tooltip.": [""], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ "" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ "" ], - "Append": [""], - "Applied cross-filters (%d)": [""], - "Applied filters (%d)": [""], - "Applied filters: %s": [""], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Associated Charts": [""], + "Changed By": [""], + "Database": [""], + "Last Changed": [""], + "Enable Filter Select": [""], + "Schema": [""], + "Default Endpoint": [""], + "Offset": [""], + "Cache Timeout": [""], + "Table Name": [""], + "Fetch Values Predicate": [""], + "Owners": [""], + "Main Datetime Column": [""], + "SQL Lab View": [""], + "Template parameters": [""], + "Modified": [""], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ "" ], - "Apply": [""], - "Apply conditional color formatting to metric": [""], - "Apply conditional color formatting to metrics": [""], - "Apply conditional color formatting to numeric columns": [""], - "Apply filters": [""], - "Apply metrics on": [""], - "Apply to all panels": [""], - "Apply to specific panels": [""], - "April": [""], - "Arc": [""], - "Are you sure you intend to overwrite the following values?": [""], - "Are you sure you want to cancel?": [""], - "Are you sure you want to delete": [""], - "Are you sure you want to delete %s?": [""], - "Are you sure you want to delete the selected %s?": [""], - "Are you sure you want to delete the selected annotations?": [""], - "Are you sure you want to delete the selected charts?": [""], - "Are you sure you want to delete the selected dashboards?": [""], - "Are you sure you want to delete the selected datasets?": [""], - "Are you sure you want to delete the selected layers?": [""], - "Are you sure you want to delete the selected queries?": [""], - "Are you sure you want to delete the selected rules?": [""], - "Are you sure you want to delete the selected tags?": [""], - "Are you sure you want to delete the selected templates?": [""], - "Are you sure you want to overwrite this dataset?": [""], - "Are you sure you want to proceed?": [""], - "Are you sure you want to save and apply changes?": [""], - "Area Chart": [""], - "Area Chart (legacy)": [""], - "Area chart": [""], - "Area chart opacity": [""], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "" + "Deleted %(num)d css template": [ + "", + "Deleted %(num)d css templates", + "Deleted %(num)d css templates" ], - "Arrow": [""], - "Assign a set of parameters as": [""], - "Associated Charts": [""], - "Async Execution": [""], - "Asynchronous query execution": [""], - "August": [""], - "Auto": [""], - "Auto Zoom": [""], - "Autocomplete": [""], - "Autocomplete filters": [""], - "Autocomplete query predicate": [""], - "Automatic Color": [""], - "Available sorting modes:": [""], - "Axis": [""], - "Axis Bounds": [""], - "Axis Format": [""], - "Axis Title": [""], - "Axis ascending": [""], - "Axis descending": [""], - "BOOLEAN": [""], - "Back": [""], - "Back to all": [""], - "Backend": [""], - "Backward values": [""], - "Bad formula.": [""], - "Bad spatial key": [""], - "Bar": [""], - "Bar Chart": [""], - "Bar Chart (legacy)": [""], - "Bar Charts are used to show metrics as a series of bars.": [""], - "Bar Values": [""], - "Bar orientation": [""], - "Base layer map style": [""], - "Based on a metric": [""], - "Based on granularity, number of time periods to compare against": [""], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": [""], - "Basic information": [""], - "Batch editing %d filters:": [""], - "Battery level over time": [""], - "Be careful.": [""], - "Before": [""], - "Big Number": [""], - "Big Number Font Size": [""], - "Big Number with Trendline": [""], - "Bottom": [""], - "Bottom Margin": [""], - "Bottom left": [""], - "Bottom margin, in pixels, allowing for more room for axis labels": [""], - "Bottom right": [""], - "Bottom to Top": [""], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "" + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": [ + "", + "Deleted %(num)d dashboards", + "Deleted %(num)d dashboards" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Title or Slug": [""], + "Role": [""], + "Invalid state.": [""], + "Table name undefined": [""], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ "" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Field cannot be decoded by JSON. %(msg)s": [""], + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "An engine must be specified when passing individual parameters to a database.": [ "" ], - "Box Plot": [""], - "Breakdowns": [""], - "Bubble Chart": [""], - "Bubble Color": [""], - "Bubble Size": [""], - "Bubble size": [""], - "Bucket break points": [""], - "Build": [""], - "Bulk select": [""], - "Bullet Chart": [""], - "Business": [""], - "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ "" ], - "By key: use column names as sorting key": [""], - "By key: use row names as sorting key": [""], - "By value: use metric values as sorting key": [""], - "CANCEL": [""], - "CREATE DATASET": [""], - "CREATE TABLE AS": [""], - "CREATE VIEW AS": [""], - "CREATE VIEW statement": [""], - "CRON Schedule": [""], - "CRON expression": [""], - "CSS": [""], - "CSS Styles": [""], - "CSS Templates": ["CSS šablóny"], - "CSS applied to the chart": [""], - "CSS template": [""], - "CSS template could not be deleted.": [""], - "CSS template name": [""], - "CSS template not found.": [""], - "CSS templates": [""], - "CSV Upload": [""], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Deleted %(num)d dataset": [ + "", + "Deleted %(num)d datasets", + "Deleted %(num)d datasets" + ], + "Null or Empty": [""], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ "" ], - "CSV to Database configuration": [""], - "CSV upload": [""], - "CTAS & CVAS SCHEMA": [""], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Second": [""], + "5 second": [""], + "30 second": [""], + "Minute": [""], + "5 minute": [""], + "10 minute": [""], + "15 minute": [""], + "30 minute": [""], + "Hour": [""], + "6 hour": [""], + "Day": [""], + "Week": [""], + "Month": [""], + "Quarter": [""], + "Year": [""], + "Week starting Sunday": [""], + "Week starting Monday": [""], + "Week ending Saturday": [""], + "Week ending Sunday": [""], + "Username": [""], + "Password": [""], + "Hostname or IP address": [""], + "Database port": [""], + "Database name": [""], + "Additional parameters": [""], + "Use an encrypted connection to the database": [""], + "Use an ssh tunnel connection to the database": [""], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ "" ], - "CTAS Schema": [""], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "CVAS (create view as select) query has more than one statement.": [""], - "CVAS (create view as select) query is not a SELECT statement.": [""], - "Cache Timeout": [""], - "Cache Timeout (seconds)": [""], - "Cache timeout": [""], - "Cached": [""], - "Cached %s": [""], - "Cached value not found": [""], - "Calculate contribution per series or row": [""], - "Calculated column [%s] requires an expression": [""], - "Calculated columns": [""], - "Calculation type": [""], - "Calendar Heatmap": [""], - "Can not move top level tab into nested tabs": [""], - "Can select multiple values": [""], - "Can't have overlap between Series and Breakdowns": [""], - "Cancel": [""], - "Cancel query on window unload event": [""], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [""], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ "" ], - "Cannot load filter": [""], - "Cannot parse time string [%(human_readable)s]": [""], - "Categorical": [""], - "Categorical Color": [""], - "Categories to group by on the x-axis.": [""], - "Category": [""], - "Category Name": [""], - "Category and Percentage": [""], - "Category and Value": [""], - "Category of target nodes": [""], - "Category, Value and Percentage": [""], - "Cell Padding": [""], - "Cell Radius": [""], - "Cell Size": [""], - "Cell bars": [""], - "Cell content": [""], - "Cell limit": [""], - "Center": [""], - "Centroid (Longitude and Latitude): ": [""], - "Certification": [""], - "Certification details": [""], - "Certified": [""], - "Certified By": [""], - "Certified by": [""], - "Certified by %s": [""], - "Change order of columns.": [""], - "Change order of rows.": [""], - "Changed By": [""], - "Changed on": [""], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Either the username \"%(username)s\" or the password is incorrect.": [ "" ], - "Changing this Dashboard is forbidden": [""], - "Changing this chart is forbidden": [""], - "Changing this control takes effect instantly": [""], - "Changing this dataset is forbidden": [""], - "Changing this dataset is forbidden.": [""], - "Changing this datasource is forbidden": [""], - "Changing this report is forbidden": [""], - "Character to interpret as decimal point": [""], - "Character to interpret as decimal point.": [""], - "Chart": [""], - "Chart %(id)s not found": [""], - "Chart Cache Timeout": [""], - "Chart ID": [""], - "Chart Options": [""], - "Chart Orientation": [""], - "Chart Title": [""], - "Chart [%s] has been overwritten": [""], - "Chart [%s] has been saved": [""], - "Chart [%s] was added to dashboard [%s]": [""], - "Chart [{}] has been overwritten": [""], - "Chart [{}] has been saved": [""], - "Chart [{}] was added to dashboard [{}]": [""], - "Chart cache timeout": [""], - "Chart changes": [""], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ + "Unknown Doris server host \"%(hostname)s\".": [""], + "The host \"%(hostname)s\" might be down and can't be reached.": [""], + "Unable to connect to database \"%(database)s\".": [""], + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "" ], - "Chart could not be created.": [""], - "Chart could not be deleted.": [""], - "Chart could not be updated.": [""], - "Chart does not exist": [""], - "Chart has no query context saved. Please save the chart again.": [""], - "Chart height": [""], - "Chart imported": [""], - "Chart last modified": [""], - "Chart last modified by": [""], - "Chart name": [""], - "Chart options": [""], - "Chart parameters are invalid.": [""], - "Chart properties updated": [""], - "Chart title": [""], - "Chart type": [""], - "Chart type requires a dataset": [""], - "Chart width": [""], - "Charts": ["Grafy"], - "Charts could not be deleted.": [""], - "Check configuration": [""], - "Check for sorting ascending": [""], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "" - ], - "Check out this chart in dashboard:": [""], - "Check out this chart: ": [""], - "Check out this dashboard: ": [""], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "" - ], - "Check to force date partitions to have the same height": [""], - "Check to include time column dropdown": [""], - "Check to include time grain dropdown": [""], - "Child label position": [""], - "Choice of [Label] must be present in [Group By]": [""], - "Choice of [Point Radius] must be present in [Group By]": [""], - "Choose File": [""], - "Choose a chart or dashboard not both": [""], - "Choose a database...": [""], - "Choose a dataset": [""], - "Choose a metric for right axis": [""], - "Choose a number format": [""], - "Choose a source": [""], - "Choose a source and a target": [""], - "Choose a target": [""], - "Choose chart type": [""], - "Choose one of the available databases from the panel on the left.": [""], - "Choose the annotation layer type": [""], - "Choose the format for legend values": [""], - "Choose the position of the legend": [""], - "Choose the source of your annotations": [""], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "" - ], - "Chord Diagram": [""], - "Chosen non-numeric column": [""], - "Circle": [""], - "Circle -> Arrow": [""], - "Circle -> Circle": [""], - "Circle radar shape": [""], - "Circular": [""], - "Classic chart that visualizes how metrics change over time.": [""], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "We can't seem to resolve the column \"%(column_name)s\"": [""], + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "" ], - "Clause": [""], - "Clear": [""], - "Clear all": [""], - "Clear all data": [""], - "Clear form": [""], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "The hostname \"%(hostname)s\" cannot be resolved.": [""], + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ "" ], - "Click the lock to make changes.": [""], - "Click the lock to prevent further changes.": [""], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Unknown MySQL server host \"%(hostname)s\".": [""], + "The username \"%(username)s\" does not exist.": [""], + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Could not connect to database: \"%(database)s\"": [""], + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ "" ], - "Click to cancel sorting": [""], - "Click to edit": [""], - "Click to edit %s.": [""], - "Click to edit chart.": [""], - "Click to edit label": [""], - "Click to favorite/unfavorite": [""], - "Click to force-refresh": [""], - "Click to see difference": [""], - "Click to sort ascending": [""], - "Click to sort descending": [""], - "Close": [""], - "Close all other tabs": [""], - "Close tab": [""], - "Cluster label aggregator": [""], - "Clustering Radius": [""], - "Code": [""], - "Collapse all": [""], - "Collapse data panel": [""], - "Collapse row": [""], - "Collapse tab content": [""], - "Collapse table preview": [""], - "Color": [""], - "Color +/-": [""], - "Color Metric": [""], - "Color Scheme": [""], - "Color Steps": [""], - "Color bounds": [""], - "Color by": [""], - "Color metric": [""], - "Color of the target location": [""], - "Color scheme": [""], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ "" ], - "Colors": [""], - "Column": [""], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Table or View \"%(table)s\" does not exist.": [""], + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [""], + "Please re-enter the password.": [""], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "" ], - "Column Configuration": [""], - "Column Data Types": [""], - "Column Formatting": [""], - "Column Label(s)": [""], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Users are not allowed to set a search path for security reasons.": [""], + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "" ], - "Column containing latitude data": [""], - "Column containing longitude data": [""], - "Column datatype": [""], - "Column header tooltip": [""], - "Column is required": [""], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ "" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Unable to connect to catalog named \"%(catalog_name)s\".": [""], + "Unknown Presto Error": [""], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ "" ], - "Column name": [""], - "Column name [%s] is duplicated": [""], - "Column referenced by aggregate is undefined: %(column)s": [""], - "Column select": [""], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "%(object)s does not exist in this database.": [""], + "Samples for datasource could not be retrieved.": [""], + "Changing this datasource is forbidden": [""], + "Home": ["Domov"], + "Database Connections": [""], + "Data": ["Dáta"], + "Dashboards": [""], + "Charts": ["Grafy"], + "Datasets": ["Datasety"], + "Plugins": ["Pluginy"], + "Manage": ["Spravovať"], + "CSS Templates": ["CSS šablóny"], + "SQL Lab": [""], + "SQL": [""], + "Saved Queries": ["Uložené dotazy"], + "Query History": ["História dotazov"], + "Tags": [""], + "Action Log": [""], + "Security": ["Bezpečnosť"], + "Alerts & Reports": [""], + "Annotation Layers": ["Anotačná vrstva"], + "An error occurred while parsing the key.": [""], + "An error occurred while upserting the value.": [""], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ "" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "" + "Empty query?": [""], + "Unknown column used in orderby: %(col)s": [""], + "Time column \"%(col)s\" does not exist in dataset": [""], + "error_message": [""], + "Filter value list cannot be empty": [""], + "Must specify a value for filters with comparison operators": [""], + "Invalid filter operation type: %(op)s": [""], + "Error in jinja expression in WHERE clause: %(msg)s": [""], + "Error in jinja expression in HAVING clause: %(msg)s": [""], + "Database does not support subqueries": [""], + "Deleted %(num)d saved query": [ + "", + "Deleted %(num)d saved queries", + "Deleted %(num)d saved queries" ], - "Columnar File": [""], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "" + "Deleted %(num)d report schedule": [ + "", + "Deleted %(num)d report schedules", + "Deleted %(num)d report schedules" ], - "Columnar to Database configuration": [""], - "Columns": [""], - "Columns To Be Parsed as Dates": [""], - "Columns To Read": [""], - "Columns missing in dataset: %(invalid_columns)s": [""], - "Columns missing in datasource: %(invalid_columns)s": [""], - "Columns subtotal position": [""], - "Columns to calculate distribution across.": [""], - "Columns to display": [""], - "Columns to group by": [""], - "Columns to group by on the columns": [""], - "Columns to group by on the rows": [""], - "Columns to show": [""], - "Combine metrics": [""], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Value must be greater than 0": [""], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "EMAIL_REPORTS_CTA": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [""], + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [""], + "Failed to execute %(query)s": [""], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Comparator option": [""], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "" + "The parameter %(parameters)s in your query is undefined.": [ + "", + "The following parameters in your query are undefined: %(parameters)s.", + "The following parameters in your query are undefined: %(parameters)s." ], - "Compare the same summarized metric across multiple groups.": [""], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "The query contains one or more malformed template parameters.": [""], + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Tag name is invalid (cannot contain ':')": [""], + "Tag could not be found.": [""], + "Is custom tag": [""], + "Scheduled task executor not found": [""], + "Record Count": [""], + "No records found": [""], + "Filter List": [""], + "Search": [""], + "Refresh": [""], + "Import dashboards": [""], + "Import Dashboard(s)": [""], + "File": [""], + "Choose File": [""], + "Upload": [""], + "Use the edit button to change this field": [""], + "Test Connection": [""], + "Unsupported clause type: %(clause)s": [""], + "Invalid metric object: %(metric)s": [""], + "Unable to find such a holiday: [%(holiday)s]": [""], + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ "" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ + "`compare_columns` must have the same length as `source_columns`.": [""], + "`compare_type` must be `difference`, `percentage` or `ratio`": [""], + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], - "Comparison": [""], - "Comparison Period Lag": [""], - "Comparison suffix": [""], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": [""], - "Condition": [""], - "Conditional Formatting": [""], - "Conditional formatting": [""], - "Confidence interval": [""], + "`rename_columns` must have the same length as `columns`.": [""], + "Invalid cumulative operator: %(operator)s": [""], + "Invalid geohash string": [""], + "Invalid longitude/latitude": [""], + "Invalid geodetic string": [""], + "Pivot operation requires at least one index": [""], + "Pivot operation must include at least one aggregate": [""], + "`prophet` package not installed": [""], + "Time grain missing": [""], + "Unsupported time grain: %(time_grain)s": [""], + "Periods must be a whole number": [""], "Confidence interval must be between 0 and 1 (exclusive)": [""], - "Configuration": [""], - "Configure Advanced Time Range ": [""], - "Configure Time Range: Last...": [""], - "Configure Time Range: Previous...": [""], - "Configure custom time range": [""], - "Configure filter scopes": [""], - "Configure the basics of your Annotation Layer.": [""], - "Configure this dashboard to embed it into an external web application.": [ + "DataFrame must include temporal column": [""], + "DataFrame include at least one series": [""], + "Label already exists": [""], + "Resample operation requires DatetimeIndex": [""], + "Resample method should in ": [""], + "Undefined window for rolling operation": [""], + "Window must be > 0": [""], + "Invalid rolling_type: %(type)s": [""], + "Invalid options for %(rolling_type)s: %(options)s": [""], + "Referenced columns not available in DataFrame.": [""], + "Column referenced by aggregate is undefined: %(column)s": [""], + "Operator undefined for aggregator: %(name)s": [""], + "Invalid numpy function: %(operator)s": [""], + "Unexpected time range: %(error)s": [""], + "json isn't valid": [""], + "Export to YAML": [""], + "Export to YAML?": [""], + "Delete": [""], + "Delete all Really?": [""], + "Is favorite": [""], + "Is tagged": [""], + "The data source seems to have been deleted": [""], + "The user seems to have been deleted": [""], + "You don't have the rights to download as csv": [""], + "Error: permalink state not found": [""], + "Error: %(msg)s": [""], + "You don't have the rights to alter this chart": [""], + "You don't have the rights to create a chart": [""], + "Explore - %(table)s": [""], + "Explore": [""], + "Chart [{}] has been saved": [""], + "Chart [{}] has been overwritten": [""], + "You don't have the rights to alter this dashboard": [""], + "Chart [{}] was added to dashboard [{}]": [""], + "You don't have the rights to create a dashboard": [""], + "Dashboard [{}] just got created and chart [{}] was added to it": [""], + "Malformed request. slice_id or table_name and db_name arguments are expected": [ "" ], - "Configure your how you overlay is displayed here.": [""], - "Confirm overwrite": [""], - "Confirm save": [""], - "Connect": [""], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [""], - "Connect a database": [""], - "Connect database": [""], - "Connect this database using the dynamic form instead": [""], - "Connect this database with a SQLAlchemy URI string instead": [""], - "Connection": [""], - "Connection failed, please check your connection settings": [""], - "Connection looks good!": [""], - "Continue": [""], - "Continuous": [""], - "Contribution": [""], - "Contribution Mode": [""], - "Control": [""], - "Control labeled ": [""], - "Controls labeled ": [""], - "Coordinates": [""], - "Copied to clipboard!": [""], - "Copy": [""], - "Copy SELECT statement to the clipboard": [""], - "Copy and Paste JSON credentials": [""], - "Copy and paste the entire service account .json file here": [""], - "Copy link": [""], - "Copy message": [""], - "Copy of %s": [""], - "Copy partition query to clipboard": [""], - "Copy permalink to clipboard": [""], - "Copy query URL": [""], - "Copy query link to your clipboard": [""], - "Copy the account name of that database you are trying to connect to.": [ + "Chart %(id)s not found": [""], + "Table %(table)s wasn't found in the database %(db)s": [""], + "permalink state not found": [""], + "Show CSS Template": [""], + "Add CSS Template": [""], + "Edit CSS Template": [""], + "Template Name": [""], + "A human-friendly name": [""], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy the name of the database you are trying to connect to.": [""], - "Copy to Clipboard": [""], - "Copy to clipboard": [""], - "Correlation": [""], - "Cost estimate": [""], - "Could not connect to database: \"%(database)s\"": [""], + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "" + ], + "Custom Plugins": [""], + "Custom Plugin": [""], + "Add a Plugin": [""], + "Edit Plugin": [""], + "The dataset associated with this chart no longer exists": [""], "Could not determine datasource type": [""], - "Could not fetch all saved charts": [""], "Could not find viz object": [""], - "Could not load database driver": [""], - "Could not load database driver: %(driver_name)s": [""], - "Could not load database driver: {}": [""], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count": [""], - "Count Unique Values": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country": [""], - "Country Color Scheme": [""], - "Country Column": [""], - "Country Field Type": [""], - "Country Map": [""], - "Create": [""], - "Create Chart": [""], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Show Chart": [""], + "Add Chart": [""], + "Edit Chart": [""], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Create a new chart": [""], - "Create chart": [""], - "Create chart with dataset": [""], - "Create dataset": [""], - "Create dataset and create chart": [""], - "Create new chart": [""], - "Create new filter set": [""], - "Create or select schema...": [""], - "Created": [""], - "Created On": [""], - "Created by": [""], - "Created by me": [""], - "Created content": [""], - "Created on": [""], - "Creating SSH Tunnel failed for an unknown reason": [""], - "Creating a data source and creating a new tab": [""], - "Creator": [""], - "Crimson": [""], - "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ "" ], - "Cross-filtering is not enabled for this dashboard.": [""], - "Cross-filtering is not enabled in this dashboard": [""], - "Cross-filtering scoping": [""], - "Cross-filters": [""], - "Cumulative": [""], - "Currently rendered: %s": [""], - "Custom": [""], - "Custom Plugin": [""], - "Custom Plugins": [""], - "Custom SQL": [""], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": [""], - "Customize": [""], - "Customize Metrics": [""], - "Customize columns": [""], - "Cyclic dependency detected": [""], - "D3 Format": [""], - "D3 format": [""], - "D3 format syntax: https://github.com/d3/d3-format": [""], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Creator": [""], + "Datasource": [""], + "Last Modified": [""], + "Parameters": [""], + "Chart": [""], + "Name": [""], + "Visualization Type": [""], + "Show Dashboard": [""], + "Add Dashboard": [""], + "Edit Dashboard": [""], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ "" ], - "D3 time format for datetime columns": [""], - "D3 time format syntax: https://github.com/d3/d3-time-format": [""], - "DATETIME": [""], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": [""], - "DELETE": [""], - "DML": [""], - "Daily seasonality": [""], - "Dark": [""], - "Dark Cyan": [""], - "Dark mode": [""], - "Dashboard": [""], - "Dashboard [%s] just got created and chart [%s] was added to it": [""], - "Dashboard [{}] just got created and chart [{}] was added to it": [""], - "Dashboard could not be created.": [""], - "Dashboard could not be deleted.": [""], - "Dashboard could not be updated.": [""], - "Dashboard does not exist": [""], - "Dashboard parameters are invalid.": [""], - "Dashboard properties": [""], - "Dashboard properties updated": [""], - "Dashboard scheme": [""], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ "" ], - "Dashboards": [""], - "Dashboards could not be deleted.": [""], - "Dashboards do not exist": [""], - "Data": ["Dáta"], - "Data Table": [""], - "Data URI is not allowed.": [""], - "Data Zoom": [""], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "To get a readable URL for your dashboard": [""], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ "" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Owners is a list of users who can alter the dashboard.": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ "" ], - "Data has no time steps": [""], - "Data preview": [""], - "Data refreshed": [""], - "Data type": [""], - "DataFrame include at least one series": [""], - "DataFrame must include temporal column": [""], - "Database": [""], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Determines whether or not this dashboard is visible in the list of all dashboards": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Dashboard": [""], + "Title": [""], + "Slug": [""], + "Roles": [""], + "Published": [""], + "Position JSON": [""], + "CSS": [""], + "JSON Metadata": [""], + "Export": [""], + "Export dashboards?": [""], + "CSV Upload": [""], + "Select a file to be uploaded to the database": [""], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ "" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Name of table to be created with CSV file": [""], + "Table name cannot contain a schema": [""], + "Select a database to upload the file to": [""], + "Column Data Types": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Database Connections": [""], - "Database Creation Error": [""], - "Database URL": [""], - "Database connected": [""], - "Database could not be created.": [""], - "Database could not be deleted.": [""], - "Database could not be updated.": [""], - "Database does not allow data manipulation.": [""], - "Database does not exist": [""], - "Database does not support subqueries": [""], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Select a schema if the database supports this": [""], + "Delimiter": [""], + "Enter a delimiter for this data": [""], + ",": [""], + ".": [""], + "Other": [""], + "If Table Already Exists": [""], + "What should happen if the table already exists": [""], + "Fail": [""], + "Replace": [""], + "Append": [""], + "Skip Initial Space": [""], + "Skip spaces after delimiter": [""], + "Skip Blank Lines": [""], + "Skip blank lines rather than interpreting them as Not A Number values": [ + "" + ], + "Columns To Be Parsed as Dates": [""], + "A comma separated list of columns that should be parsed as dates": [""], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": [""], + "Character to interpret as decimal point": [""], + "Null Values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "" + ], + "Index Column": [""], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "" ], - "Database error": [""], - "Database is offline.": [""], - "Database is required for alerts": [""], - "Database name": [""], - "Database not allowed to change": [""], - "Database not found.": [""], - "Database not found: %(id)s": [""], - "Database parameters are invalid.": [""], - "Database passwords": [""], - "Database port": [""], - "Database settings updated": [""], - "Databases": ["Databázy"], "Dataframe Index": [""], - "Dataset": [""], - "Dataset %(name)s already exists": [""], - "Dataset column delete failed.": [""], - "Dataset column not found.": [""], - "Dataset could not be created.": [""], - "Dataset could not be deleted.": [""], - "Dataset could not be duplicated.": [""], - "Dataset could not be updated.": [""], - "Dataset does not exist": [""], - "Dataset imported": [""], - "Dataset is required": [""], - "Dataset metric delete failed.": [""], - "Dataset metric not found.": [""], - "Dataset name": [""], - "Dataset parameters are invalid.": [""], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": [""], - "Datasets": ["Datasety"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Write dataframe index as a column": [""], + "Column Label(s)": [""], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ "" ], - "Datasets do not contain a temporal column": [""], - "Datasource": [""], - "Datasource & Chart Type": [""], - "Datasource does not exist": [""], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [""], - "Date Time Format": [""], - "Date filter": [""], - "Date format": [""], - "Date format string": [""], - "Date/Time": [""], - "Datetime Format": [""], - "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Columns To Read": [""], + "Json list of the column names that should be read": [""], + "Overwrite Duplicate Columns": [""], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Datetime format": [""], - "Day": [""], - "Day (freq=D)": [""], - "Days %s": [""], - "Db engine did not return all queried columns": [""], - "Deactivate": [""], - "December": [""], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": [""], - "Deck.gl - 3D Grid": [""], - "Deck.gl - 3D HEX": [""], - "Deck.gl - Arc": [""], - "Deck.gl - GeoJSON": [""], - "Deck.gl - Multiple Layers": [""], - "Deck.gl - Paths": [""], - "Deck.gl - Polygon": [""], - "Deck.gl - Scatter plot": [""], - "Deck.gl - Screen Grid": [""], - "Default": [""], - "Default Endpoint": [""], - "Default URL": [""], - "Default URL to redirect to when accessing from the dataset list page": [ + "Header Row": [""], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "" ], - "Default Value": [""], - "Default datetime": [""], - "Default latitude": [""], - "Default longitude": [""], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Rows to Read": [""], + "Number of rows of file to read": [""], + "Skip Rows": [""], + "Number of rows to skip at start of file": [""], + "Name of table to be created from excel data.": [""], + "Excel File": [""], + "Select a Excel file to be uploaded to a database.": [""], + "Sheet Name": [""], + "Strings used for sheet names (default is the first sheet).": [""], + "Specify a schema (if database flavor supports this).": [""], + "Table Exists": [""], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "" ], - "Default value is required": [""], - "Default value must be set when \"Filter has default value\" is checked": [ + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Default value must be set when \"Filter value is required\" is checked": [ + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ "" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Number of rows to skip at start of file.": [""], + "Number of rows of file to read.": [""], + "Parse Dates": [""], + "A comma separated list of columns that should be parsed as dates.": [""], + "Character to interpret as decimal point.": [""], + "Write dataframe index as a column.": [""], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ "" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Null values": [""], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Name of table to be created from columnar data.": [""], + "Columnar File": [""], + "Select a Columnar file to be uploaded to a database.": [""], + "Use Columns": [""], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Databases": ["Databázy"], + "Show Database": [""], + "Add Database": [""], + "Edit Database": [""], + "Expose this DB in SQL Lab": [""], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Allow CREATE TABLE AS option in SQL Lab": [""], + "Allow CREATE VIEW AS option in SQL Lab": [""], + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ "" ], - "Defines how each series is broken down": [""], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ "" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "" ], - "Delete": [""], - "Delete %s?": [""], - "Delete Annotation?": [""], - "Delete Database?": [""], - "Delete Dataset?": [""], - "Delete Layer?": [""], - "Delete Query?": [""], - "Delete Report?": [""], - "Delete Template?": [""], - "Delete all Really?": [""], - "Delete annotation": [""], - "Delete dashboard tab?": [""], - "Delete database": [""], - "Delete email report": [""], - "Delete query": [""], - "Delete template": [""], - "Delete this container and save to remove this message.": [""], - "Deleted": [""], - "Deleted %(num)d annotation": [ - "", - "Deleted %(num)d annotations", - "Deleted %(num)d annotations" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "" ], - "Deleted %(num)d annotation layer": [ - "", - "Deleted %(num)d annotation layers", - "Deleted %(num)d annotation layers" + "Expose in SQL Lab": [""], + "Allow CREATE TABLE AS": [""], + "Allow CREATE VIEW AS": [""], + "Allow DML": [""], + "CTAS Schema": [""], + "SQLAlchemy URI": [""], + "Chart Cache Timeout": [""], + "Secure Extra": [""], + "Root certificate": [""], + "Async Execution": [""], + "Impersonate the logged on user": [""], + "Allow Csv Upload": [""], + "Backend": [""], + "Extra field cannot be decoded by JSON. %(msg)s": [""], + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "" ], - "Deleted %(num)d chart": [ - "", - "Deleted %(num)d charts", - "Deleted %(num)d charts" + "CSV to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "" ], - "Deleted %(num)d css template": [ - "", - "Deleted %(num)d css templates", - "Deleted %(num)d css templates" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Deleted %(num)d dashboard": [ - "", - "Deleted %(num)d dashboards", - "Deleted %(num)d dashboards" + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "" ], - "Deleted %(num)d dataset": [ - "", - "Deleted %(num)d datasets", - "Deleted %(num)d datasets" + "Excel to Database configuration": [""], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "" ], - "Deleted %(num)d report schedule": [ - "", - "Deleted %(num)d report schedules", - "Deleted %(num)d report schedules" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" ], - "Deleted %(num)d saved query": [ - "", - "Deleted %(num)d saved queries", - "Deleted %(num)d saved queries" + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "" ], - "Deleted %s": [""], - "Deleted: %s": [""], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Columnar to Database configuration": [""], + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "" ], - "Delimited long & lat single column": [""], - "Delimiter": [""], - "Delivery method": [""], - "Demographics": [""], - "Density": [""], - "Dependent on": [""], - "Deprecated": [""], - "Description": [""], - "Description (this can be seen in the list)": [""], - "Description Columns": [""], - "Description text that shows up below your Big Number": [""], - "Deselect all": [""], - "Details of the certification": [""], - "Determines how whiskers and outliers are calculated.": [""], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "" ], - "Diamond": [""], - "Did you mean:": [""], + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "" + ], + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "" + ], + "Request missing data field.": [""], + "Duplicate column name(s): %(columns)s": [""], + "Logs": [""], + "Show Log": [""], + "Add Log": [""], + "Edit Log": [""], + "User": [""], + "Action": [""], + "dttm": [""], + "JSON": [""], + "Untitled Query": [""], + "Time Range": [""], + "Time Column": [""], + "Time Grain": [""], + "Time Granularity": [""], + "Time": [""], + "A reference to the [Time] configuration, taking granularity into account": [ + "" + ], + "Aggregate": [""], + "Raw records": [""], + "Minimum value": [""], + "Maximum value": [""], + "Certified by %s": [""], + "description": [""], + "bolt": [""], + "Changing this control takes effect instantly": [""], + "Show info tooltip": [""], + "SQL expression": [""], + "Column datatype": [""], + "Column name": [""], + "Label": [""], + "Metric name": [""], + "unknown type icon": [""], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": [""], + "This section contains options that allow for advanced analytical post processing of query results": [ + "" + ], + "Rolling window": [""], + "Rolling function": [""], + "None": [""], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "" + ], + "Periods": [""], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "" + ], + "Min periods": [""], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "" + ], + "Time comparison": [""], + "Time shift": [""], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "30 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "" + ], + "Calculation type": [""], + "Actual values": [""], "Difference": [""], - "Dim Gray": [""], - "Dimension": [""], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Dimensions": [""], - "Directed Force Layout": [""], - "Directional": [""], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Percentage change": [""], + "Ratio": [""], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ "" ], - "Disable embedding?": [""], - "Disabled": [""], - "Discard": [""], - "Discrete": [""], - "Display Name": [""], - "Display column level total": [""], - "Display configuration": [""], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Resample": [""], + "Rule": [""], + "1 minutely frequency": [""], + "1 hourly frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "1 year start frequency": [""], + "1 year end frequency": [""], + "Pandas resample rule": [""], + "Fill method": [""], + "Null imputation": [""], + "Zero imputation": [""], + "Linear interpolation": [""], + "Forward values": [""], + "Backward values": [""], + "Median values": [""], + "Mean values": [""], + "Sum values": [""], + "Pandas resample method": [""], + "Left": [""], + "Top": [""], + "Chart Title": [""], + "X Axis": [""], + "X Axis Title": [""], + "X AXIS TITLE BOTTOM MARGIN": [""], + "Y Axis": [""], + "Y Axis Title": [""], + "Y Axis Title Margin": [""], + "Y Axis Title Position": [""], + "Query": [""], + "Predictive Analytics": [""], + "Enable forecast": [""], + "Enable forecasting": [""], + "Forecast periods": [""], + "How many periods into the future do we want to predict": [""], + "Confidence interval": [""], + "Width of the confidence interval. Should be between 0 and 1": [""], + "Yearly seasonality": [""], + "default": [""], + "Yes": [""], + "No": [""], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Display row level total": [""], - "Display settings": [""], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Distribute across": [""], - "Distribution": [""], - "Distribution - Bar Chart": [""], - "Divider": [""], - "Do you want a donut or a pie?": [""], - "Documentation": [""], - "Domain": [""], - "Donut": [""], - "Dotted": [""], - "Download": [""], - "Download as image": [""], - "Download to CSV": [""], - "Draft": [""], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [""], - "Draw area under curves. Only applicable for line types.": [""], - "Draw line from Pie to label when labels outside?": [""], - "Draw split lines for minor axis ticks": [""], - "Draw split lines for minor y-axis ticks": [""], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill by: %s": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ "" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Time related form attributes": [""], + "Datasource & Chart Type": [""], + "Chart ID": [""], + "The id of the active chart": [""], + "Cache Timeout (seconds)": [""], + "The number of seconds before expiring the cache": [""], + "URL Parameters": [""], + "Extra url parameters for use in Jinja templated queries": [""], + "Extra Parameters": [""], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ "" ], - "Drill to detail: %s": [""], - "Drop a temporal column here or click": [""], - "Drop columns/metrics here or click": [""], - "Dual Line Chart": [""], - "Duplicate": [""], - "Duplicate column name(s): %(columns)s": [""], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Color Scheme": [""], + "Contribution Mode": [""], + "Row": [""], + "Series": [""], + "Calculate contribution per series or row": [""], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Y-Axis Sort Ascending": [""], + "X-Axis Sort Ascending": [""], + "Whether to sort ascending or descending on the base Axis.": [""], + "Force categorical": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ "" ], - "Duplicate dataset": [""], - "Duplicate tab": [""], - "Duration": [""], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Add dataset columns here to group the pivot table columns.": [""], + "Dimension": [""], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ "" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Entity": [""], + "This defines the element to be plotted on the chart": [""], + "Filters": [""], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Right Axis Metric": [""], + "Select a metric to display on the right axis": [""], + "Sort by": [""], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ "" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Bubble Size": [""], + "Metric used to calculate bubble size": [""], + "The dataset column/metric that returns the values on your chart's x-axis.": [ "" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "The dataset column/metric that returns the values on your chart's y-axis.": [ "" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Color Metric": [""], + "A metric to use for color": [""], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ "" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], - "Duration in ms (66000 => 1m 6s)": [""], - "Duration: %s": [""], - "Dynamic Aggregation Function": [""], - "Dynamically search all filter values": [""], - "EMAIL_REPORTS_CTA": [""], - "END (EXCLUSIVE)": [""], - "ERROR": [""], - "ERROR: %s": [""], - "Edge length": [""], - "Edge length between nodes": [""], - "Edge symbols": [""], - "Edge width": [""], - "Edit": [""], - "Edit Alert": [""], - "Edit CSS": [""], - "Edit CSS Template": [""], - "Edit CSS template properties": [""], - "Edit Chart": [""], - "Edit Chart Properties": [""], - "Edit Column": [""], - "Edit Dashboard": [""], - "Edit Database": [""], - "Edit Dataset ": [""], - "Edit Log": [""], - "Edit Metric": [""], - "Edit Plugin": [""], - "Edit Report": [""], - "Edit Rule": [""], - "Edit Saved Query": [""], - "Edit Table": [""], - "Edit annotation": [""], - "Edit annotation layer": [""], - "Edit annotation layer properties": [""], - "Edit chart properties": [""], - "Edit dashboard": [""], - "Edit database": [""], - "Edit dataset": [""], - "Edit email report": [""], - "Edit formatter": [""], - "Edit properties": [""], - "Edit query": [""], - "Edit template": [""], - "Edit template parameters": [""], - "Edit time range": [""], - "Edited": [""], - "Editing 1 filter:": [""], - "Editing filter set:": [""], - "Either the database is spelled incorrectly or does not exist.": [""], - "Either the username \"%(username)s\" or the password is incorrect.": [ + "Drop a temporal column here or click": [""], + "Y-axis": [""], + "Dimension to use on y-axis.": [""], + "X-axis": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": [""], + "Fixed Color": [""], + "Use this to define a static color for all circles": [""], + "Linear Color Scheme": [""], + "all": [""], + "5 seconds": [""], + "30 seconds": [""], + "1 minute": [""], + "5 minutes": [""], + "30 minutes": [""], + "1 hour": [""], + "1 day": [""], + "7 days": [""], + "week": [""], + "week starting Sunday": [""], + "week ending Saturday": [""], + "month": [""], + "quarter": [""], + "year": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ "" ], - "Either the username or the password is wrong.": [""], - "Elevation": [""], - "Email reports active": [""], - "Embed": [""], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emit Filter Events": [""], - "Emphasis": [""], - "Employment and education": [""], - "Empty circle": [""], - "Empty collection": [""], - "Empty column": [""], - "Empty query result": [""], - "Empty query?": [""], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Enable Filter Select": [""], - "Enable cross-filtering": [""], - "Enable data zooming controls": [""], - "Enable embedding": [""], - "Enable forecast": [""], - "Enable forecasting": [""], - "Enable graph roaming": [""], - "Enable node dragging": [""], - "Enable query cost estimation": [""], - "Enable server side pagination of results (experimental feature)": [""], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Row limit": [""], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ "" ], - "End": [""], - "End (Longitude, Latitude): ": [""], - "End Longitude & Latitude": [""], - "End Time": [""], - "End angle": [""], - "End date": [""], - "End date excluded from time range": [""], - "End date must be after start date": [""], - "Engine \"%(engine)s\" cannot be configured through parameters.": [""], - "Engine Parameters": [""], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Sort Descending": [""], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ "" ], - "Enter CA_BUNDLE": [""], - "Enter a delimiter for this data": [""], - "Enter a name for this sheet": [""], - "Enter a new title for the tab": [""], - "Enter duration in seconds": [""], - "Enter fullscreen": [""], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": [""], - "Entity ID": [""], - "Equal Date Sizes": [""], - "Equal to (=)": [""], - "Error": [""], - "Error in jinja expression in HAVING clause: %(msg)s": [""], - "Error in jinja expression in RLS filters: %(msg)s": [""], - "Error in jinja expression in WHERE clause: %(msg)s": [""], - "Error in jinja expression in fetch values predicate: %(msg)s": [""], - "Error loading chart datasources. Filters may not work correctly.": [""], - "Error message": [""], - "Error while fetching charts": [""], - "Error while fetching data: %s": [""], - "Error while rendering virtual dataset query: %(msg)s": [""], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Error: permalink state not found": [""], - "Estimate cost": [""], - "Estimate selected query cost": [""], - "Estimate the cost before running a query": [""], - "Event": [""], - "Event Flow": [""], - "Event Names": [""], - "Event definition": [""], - "Event flow": [""], - "Event time column": [""], - "Every": [""], - "Evolution": [""], - "Exact": [""], - "Example": [""], - "Examples": [""], - "Excel File": [""], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Series limit": [""], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "" ], - "Excel to Database configuration": [""], - "Exclude selected values": [""], - "Excluded roles": [""], - "Executed SQL": [""], - "Executed query": [""], - "Execution ID": [""], - "Execution log": [""], - "Existing dataset": [""], - "Exit fullscreen": [""], - "Expand": [""], - "Expand all": [""], - "Expand data panel": [""], - "Expand row": [""], - "Expand table preview": [""], - "Expand tool bar": [""], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Y Axis Format": [""], + "Currency format": [""], + "Time format": [""], + "The color scheme for rendering chart": [""], + "Truncate Metric": [""], + "Whether to truncate metrics": [""], + "Show empty columns": [""], + "D3 format syntax: https://github.com/d3/d3-format": [""], + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": [""], + "Original value": [""], + "Duration in ms (66000 => 1m 6s)": [""], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [""], + "D3 time format syntax: https://github.com/d3/d3-time-format": [""], + "Oops! An error occurred!": [""], + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ "" ], - "Experimental": [""], - "Explore": [""], - "Explore - %(table)s": [""], - "Explore the result set in the data exploration view": [""], - "Export": [""], - "Export dashboards?": [""], - "Export query": [""], - "Export to .CSV": [""], - "Export to .JSON": [""], - "Export to Excel": [""], - "Export to YAML": [""], - "Export to YAML?": [""], - "Export to full .CSV": [""], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": [""], - "Expose in SQL Lab": [""], - "Expose this DB in SQL Lab": [""], - "Expression": [""], - "Extra": [""], - "Extra Controls": [""], - "Extra Parameters": [""], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "No Results": [""], + "ERROR": [""], + "Found invalid orderby options": [""], + "is expected to be an integer": [""], + "is expected to be a number": [""], + "is expected to be a Mapbox URL": [""], + "Value cannot exceed %s": [""], + "cannot be empty": [""], + "Domain": [""], + "hour": [""], + "day": [""], + "The time unit used for the grouping of blocks": [""], + "Subdomain": [""], + "min": [""], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ "" ], - "Extra field cannot be decoded by JSON. %(msg)s": [""], - "Extra parameters for use in jinja templated queries": [""], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Chart Options": [""], + "Cell Size": [""], + "The size of the square cell, in pixels": [""], + "Cell Padding": [""], + "The distance between cells, in pixels": [""], + "Cell Radius": [""], + "The pixel radius": [""], + "Color Steps": [""], + "The number color \"steps\"": [""], + "Time Format": [""], + "Legend": [""], + "Whether to display the legend (toggles)": [""], + "Show Values": [""], + "Whether to display the numerical values within the cells": [""], + "Show Metric Names": [""], + "Whether to display the metric name as a title": [""], + "Number Format": [""], + "Correlation": [""], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ "" ], - "Extra url parameters for use in Jinja templated queries": [""], - "Extruded": [""], - "FEB": [""], - "FRI": [""], - "Factor": [""], - "Factor to multiply the metric by": [""], - "Fail": [""], - "Failed": [""], - "Failed at retrieving results": [""], - "Failed at stopping query. %s": [""], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to retrieve advanced type": [""], - "Failed to save cross-filter scoping": [""], - "Failed to start remote query on a worker.": [""], - "Failed to update report": [""], - "Failed to verify select options: %s": [""], - "Favorite": [""], - "Favorites": [""], - "February": [""], - "Fetch Values Predicate": [""], - "Fetch data preview": [""], - "Fetched %s": [""], - "Fetching": [""], - "Field cannot be decoded by JSON. %(json_error)s": [""], - "Field cannot be decoded by JSON. %(msg)s": [""], - "Field is required": [""], - "File": [""], - "Fill Color": [""], - "Fill all required fields to enable \"Default Value\"": [""], - "Fill method": [""], - "Filled": [""], - "Filter": [""], - "Filter Configuration": [""], - "Filter List": [""], - "Filter Settings": [""], - "Filter Type": [""], - "Filter box (deprecated)": [""], - "Filter configuration": [""], - "Filter configuration for the filter box": [""], - "Filter has default value": [""], - "Filter menu": [""], - "Filter metadata changed in dashboard. It will not be applied.": [""], - "Filter name": [""], - "Filter only displays values relevant to selections made in other filters.": [ + "Business": [""], + "Comparison": [""], + "Intensity": [""], + "Pattern": [""], + "Report": [""], + "Trend": [""], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Sort by metric": [""], + "Whether to sort results by the selected metric in descending order.": [ "" ], - "Filter results": [""], - "Filter set already exists": [""], - "Filter set with this name already exists": [""], - "Filter sets (%(filterSetCount)d)": [""], - "Filter type": [""], - "Filter value (case sensitive)": [""], - "Filter value is required": [""], - "Filter value list cannot be empty": [""], - "Filter your charts": [""], - "Filterable": [""], - "Filters": [""], - "Filters (%d)": [""], - "Filters by columns": [""], - "Filters by metrics": [""], - "Filters configuration": [""], - "Filters out of scope (%d)": [""], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Number format": [""], + "Choose a number format": [""], + "Source": [""], + "Choose a source": [""], + "Target": [""], + "Choose a target": [""], + "Flow": [""], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ "" ], - "Finish": [""], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Relationships between community channels": [""], + "Chord Diagram": [""], + "Aesthetic": [""], + "Circular": [""], + "Legacy": [""], + "Proportional": [""], + "Relational": [""], + "Country": [""], + "Which country to plot the map for?": [""], + "ISO 3166-2 Codes": [""], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" ], - "Fix to selected Time Range": [""], - "Fixed": [""], - "Fixed Color": [""], - "Fixed color": [""], - "Fixed point radius": [""], - "Flow": [""], - "Font size": [""], - "Font size for axis labels, detail value and other text elements": [""], - "Font size for the biggest value in the list": [""], - "Font size for the smallest value in the list": [""], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Metric to display bottom title": [""], + "Map": [""], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "2D": [""], + "Geo": [""], + "Stacked": [""], + "Sorry, there appears to be no data": [""], + "Event definition": [""], + "Event Names": [""], + "Columns to display": [""], + "Order by entity id": [""], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Minimum leaf node event count": [""], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ "" ], - "Force": [""], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Additional metadata": [""], + "Metadata": [""], + "Select any columns for metadata inspection": [""], + "Entity ID": [""], + "e.g., a \"user id\" column": [""], + "Max Events": [""], + "The maximum number of events to return, equivalent to the number of rows": [ "" ], - "Force date format": [""], - "Force refresh": [""], - "Force refresh schema list": [""], - "Force refresh table list": [""], - "Forecast periods": [""], - "Foreign key": [""], - "Forest Green": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formattable": [""], - "Formatted CSV attached in email": [""], - "Formatted date": [""], - "Formatted value": [""], - "Formatting": [""], - "Formula": [""], - "Forward values": [""], - "Found invalid orderby options": [""], - "Fraction digits": [""], - "Frequency": [""], - "Friction": [""], - "Friction between nodes": [""], - "Friday": [""], - "From date cannot be larger than to date": [""], - "Full name": [""], - "Funnel Chart": [""], - "Further customize how to display each column": [""], - "Further customize how to display each metric": [""], - "GROUP BY": [""], - "Gauge Chart": [""], - "General": [""], - "Generating link, please wait..": [""], - "Generic Chart": [""], - "Geo": [""], - "GeoJson Column": [""], - "GeoJson Settings": [""], - "Geohash": [""], - "Get the last date by the date unit.": [""], - "Get the specify date for the holiday": [""], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": [""], - "Grace period": [""], - "Graph Chart": [""], - "Graph layout": [""], - "Gravity": [""], - "Greater or equal (>=)": [""], - "Greater than (>)": [""], - "Grid": [""], - "Grid Size": [""], - "Group By": [""], - "Group By filter plugin": [""], - "Group By, Metrics or Percentage Metrics must have a value": [""], - "Group Key": [""], - "Group by": [""], - "Groupable": [""], - "Handlebars": [""], - "Handlebars Template": [""], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Compares the lengths of time different activities take in a shared timeline view.": [ "" ], - "Has created by": [""], - "Header": [""], - "Header Row": [""], - "Heatmap": [""], + "Event Flow": [""], + "Progressive": [""], + "Axis ascending": [""], + "Axis descending": [""], + "Metric ascending": [""], + "Metric descending": [""], "Heatmap Options": [""], - "Height": [""], - "Height of the sparkline": [""], - "Hide Line": [""], - "Hide chart description": [""], - "Hide layer": [""], - "Hide password.": [""], - "Hide tool bar": [""], - "Hides the Line for the time series": [""], - "Hierarchy": [""], - "Histogram": [""], - "Home": ["Domov"], - "Horizon Chart": [""], - "Horizon Charts": [""], - "Horizontal": [""], - "Horizontal (Top)": [""], - "Horizontal alignment": [""], - "Host": [""], - "Hostname or IP address": [""], - "Hour": [""], - "Hours %s": [""], - "Hours offset": [""], - "How do you want to enter service account credentials?": [""], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [""], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "" - ], - "Huge": [""], - "ISO 3166-2 Codes": [""], - "ISO 8601": [""], - "Id": [""], - "Id of root node of the tree.": [""], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "XScale Interval": [""], + "Number of steps to take between ticks when displaying the X scale": [""], + "YScale Interval": [""], + "Number of steps to take between ticks when displaying the Y scale": [""], + "Rendering": [""], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Normalize Across": [""], + "heatmap": [""], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ "" ], - "If Table Already Exists": [""], - "If a metric is specified, sorting will be done based on the metric value": [ + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [""], + "Left Margin": [""], + "auto": [""], + "Left margin, in pixels, allowing for more room for axis labels": [""], + "Bottom Margin": [""], + "Bottom margin, in pixels, allowing for more room for axis labels": [""], + "Value bounds": [""], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Sort X Axis": [""], + "Sort Y Axis": [""], + "Show percentage": [""], + "Whether to include the percentage in the tooltip": [""], + "Normalized": [""], + "Whether to apply a normal distribution based on rank on the color scale": [ "" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Value Format": [""], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ "" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Sizes of vehicles": [""], + "Employment and education": [""], + "Density": [""], + "Predictive": [""], + "Single Metric": [""], + "to": [""], + "count": [""], + "cumulative": [""], + "percentile (exclusive)": [""], + "Select the numeric columns to draw the histogram": [""], + "No of Bins": [""], + "Select the number of bins for the histogram": [""], + "X Axis Label": [""], + "Y Axis Label": [""], + "Whether to normalize the histogram": [""], + "Cumulative": [""], + "Whether to make the histogram cumulative": [""], + "Distribution": [""], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ "" ], - "Ignore cache when generating screenshot": [""], - "Ignore null locations": [""], - "Ignore time": [""], - "Image (PNG) embedded in email": [""], - "Image download failed, please refresh and try again.": [""], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Population age data": [""], + "Contribution": [""], + "Compute the contribution to the total": [""], + "Series Height": [""], + "Pixel height of each series": [""], + "Value Domain": [""], + "overall": [""], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" ], - "Impersonate the logged on user": [""], - "Import": [""], - "Import %s": [""], - "Import Dashboard(s)": [""], - "Import Dashboards": ["Importovať dashboard"], - "Import a table definition": [""], - "Import chart failed for an unknown reason": [""], - "Import charts": [""], - "Import dashboard failed for an unknown reason": [""], - "Import dashboards": [""], - "Import database failed for an unknown reason": [""], - "Import database from file": [""], - "Import dataset failed for an unknown reason": [""], - "Import datasets": [""], - "Import queries": [""], - "Import saved query failed for an unknown reason.": [""], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ "" ], - "In": [""], - "Include Series": [""], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": [""], - "Include time": [""], - "Index": [""], - "Index Column": [""], - "Info": [""], - "Inner Radius": [""], - "Inner radius of donut hole": [""], - "Input field supports custom rotation. e.g. 30 for 30°": [""], - "Instant filtering": [""], - "Intensity": [""], - "Intensity Radius": [""], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Horizon Chart": [""], + "Dark Cyan": [""], + "Purple": [""], + "Gold": [""], + "Dim Gray": [""], + "Crimson": [""], + "Forest Green": [""], + "Longitude": [""], + "Column containing longitude data": [""], + "Latitude": [""], + "Column containing latitude data": [""], + "Clustering Radius": [""], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ "" ], - "Interpret Datetime Format Automatically": [""], - "Interpret the datetime format automatically": [""], - "Interval": [""], - "Interval End column": [""], - "Interval bounds": [""], - "Interval colors": [""], - "Interval start column": [""], - "Intervals": [""], - "Intesity": [""], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Points": [""], + "Point Radius": [""], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "" ], - "Invalid JSON": [""], - "Invalid advanced data type: %(advanced_data_type)s": [""], - "Invalid certificate": [""], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ + "Auto": [""], + "Point Radius Unit": [""], + "Pixels": [""], + "Miles": [""], + "Kilometers": [""], + "The unit of measure for the specified point radius": [""], + "Labelling": [""], + "label": [""], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ "" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Cluster label aggregator": [""], + "sum": [""], + "mean": [""], + "max": [""], + "std": [""], + "var": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Visual Tweaks": [""], + "Live render": [""], + "Points and clusters will update as the viewport is being changed": [""], + "Map Style": [""], + "Streets": [""], + "Dark": [""], + "Light": [""], + "Satellite Streets": [""], + "Satellite": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": [""], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], + "RGB Color": [""], + "The color for points and clusters in RGB": [""], + "Viewport": [""], + "Default longitude": [""], + "Longitude of default viewport": [""], + "Default latitude": [""], + "Latitude of default viewport": [""], + "Zoom": [""], + "Zoom level of the map": [""], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ "" ], - "Invalid cron expression": [""], - "Invalid cumulative operator: %(operator)s": [""], - "Invalid date/timestamp format": [""], - "Invalid filter configuration, please select a column": [""], - "Invalid filter operation type: %(op)s": [""], - "Invalid geodetic string": [""], - "Invalid geohash string": [""], - "Invalid input": [""], - "Invalid lat/long configuration.": [""], - "Invalid longitude/latitude": [""], - "Invalid metric object: %(metric)s": [""], - "Invalid numpy function: %(operator)s": [""], - "Invalid options for %(rolling_type)s: %(options)s": [""], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [""], - "Invalid rolling_type: %(type)s": [""], - "Invalid spatial point encountered: %s": [""], - "Invalid state.": [""], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": [""], - "Invert current page": [""], - "Is certified": [""], - "Is dimension": [""], - "Is false": [""], - "Is favorite": [""], - "Is filterable": [""], - "Is not null": [""], - "Is null": [""], - "Is tagged": [""], - "Is temporal": [""], - "Is true": [""], - "Issue 1000 - The dataset is too large to query.": [""], - "Issue 1001 - The database is under an unusual load.": [""], - "It’s not recommended to truncate axis in Bar chart.": [""], - "JAN": [""], - "JSON": [""], - "JSON Metadata": [""], - "JSON metadata": [""], - "JSON metadata is invalid!": [""], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Light mode": [""], + "Dark mode": [""], + "MapBox": [""], + "Scatter": [""], + "Transformable": [""], + "Significance Level": [""], + "Threshold alpha level for determining significance": [""], + "p-value precision": [""], + "Number of decimal places with which to display p-values": [""], + "Lift percent precision": [""], + "Number of decimal places with which to display lift values": [""], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], - "JUL": [""], - "JUN": [""], - "January": [""], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Jinja templating": [""], - "Json list of the column names that should be read": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Paired t-test Table": [""], + "Statistical": [""], + "Tabular": [""], + "Options": [""], + "Data Table": [""], + "Whether to display the interactive data table": [""], + "Include Series": [""], + "Include series name as an axis": [""], + "Ranking": [""], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Coordinates": [""], + "Directional": [""], + "Time Series Options": [""], + "Not Time Series": [""], + "Ignore time": [""], + "Time Series": [""], + "Standard time series": [""], + "Aggregate Mean": [""], + "Mean of values over specified period": [""], + "Aggregate Sum": [""], + "Sum of values over specified period": [""], + "Metric change in value from `since` to `until`": [""], + "Percent Change": [""], + "Metric percent change in value from `since` to `until`": [""], + "Factor": [""], + "Metric factor change from `since` to `until`": [""], + "Advanced Analytics": [""], + "Use the Advanced Analytics options below": [""], + "Settings for time series": [""], + "Date Time Format": [""], + "Partition Limit": [""], + "The maximum number of subdivisions of each group; lower values are pruned first": [ "" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Partition Threshold": [""], + "Partitions whose height to parent height proportions are below this value are pruned": [ "" ], - "July": [""], - "June": [""], - "KPI": [""], - "Keep control settings?": [""], - "Keep editing": [""], - "Key": [""], - "Keys for table": [""], - "Kilometers": [""], - "LIMIT": [""], - "Label": [""], - "Label Line": [""], - "Label Type": [""], - "Label already exists": [""], - "Label for your query": [""], - "Label position": [""], - "Label threshold": [""], - "Labelling": [""], - "Labels": [""], - "Labels for the marker lines": [""], - "Labels for the markers": [""], - "Labels for the ranges": [""], - "Large": [""], - "Last": [""], - "Last Changed": [""], - "Last Modified": [""], - "Last Updated %s": [""], - "Last Updated %s by %s": [""], - "Last available value seen on %s": [""], - "Last modified": [""], - "Last modified by %s": [""], - "Last run": [""], - "Latitude": [""], - "Latitude of default viewport": [""], - "Layer configuration": [""], - "Layout": [""], - "Layout elements": [""], - "Layout type of graph": [""], - "Layout type of tree": [""], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Log Scale": [""], + "Use a log scale": [""], + "Equal Date Sizes": [""], + "Check to force date partitions to have the same height": [""], + "Rich Tooltip": [""], + "The rich tooltip shows a list of all series for that point in time": [ "" ], - "Least recently modified": [""], - "Left": [""], - "Left Axis Format": [""], - "Left Axis chart(s)": [""], - "Left Margin": [""], - "Left margin, in pixels, allowing for more room for axis labels": [""], - "Left to Right": [""], - "Left value": [""], - "Legacy": [""], - "Legend": [""], - "Legend Format": [""], - "Legend Orientation": [""], - "Legend Position": [""], - "Legend type": [""], - "Less or equal (<=)": [""], - "Less than (<)": [""], - "Lift percent precision": [""], - "Light": [""], - "Light mode": [""], - "Like": [""], - "Like (case insensitive)": [""], - "Limit reached": [""], - "Limit selector values": [""], - "Limit type": [""], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Rolling Window": [""], + "Rolling Function": [""], + "cumsum": [""], + "Min Periods": [""], + "Time Comparison": [""], + "Time Shift": [""], + "1 week": [""], + "28 days": [""], + "30 days": [""], + "52 weeks": [""], + "1 year": [""], + "104 weeks": [""], + "2 years": [""], + "156 weeks": [""], + "3 years": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "" ], - "Limits the number of cells that get retrieved.": [""], - "Limits the number of rows that get displayed.": [""], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Actual Values": [""], + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": [""], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": [""], + "Part of a Whole": [""], + "Compare the same summarized metric across multiple groups.": [""], + "Partition Chart": [""], + "Categorical": [""], + "Use Area Proportions": [""], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ "" ], - "Line": [""], - "Line Chart": [""], - "Line Chart (legacy)": [""], - "Line Style": [""], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ "" ], - "Line interpolation as defined by d3.js": [""], - "Line width": [""], - "Linear Color Scheme": [""], - "Linear color scheme": [""], - "Linear interpolation": [""], - "Lines column": [""], - "Lines encoding": [""], - "Link Copied!": [""], - "List Saved Query": [""], - "List Unique Values": [""], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": [""], - "List of values to mark with triangles": [""], - "List updated": [""], - "Live CSS editor": [""], - "Live render": [""], - "Load a CSS template": [""], - "Loaded data cached": [""], - "Loaded from cache": [""], - "Loading": [""], - "Loading...": [""], - "Locate the chart": [""], - "Log Scale": [""], - "Log retention": [""], - "Logarithmic axis": [""], - "Logarithmic scale on primary y-axis": [""], - "Logarithmic scale on secondary y-axis": [""], - "Logarithmic y-axis": [""], - "Login": [""], - "Login with": [""], - "Logout": [""], - "Logs": [""], - "Long dashed": [""], - "Longitude": [""], - "Longitude & Latitude": [""], - "Longitude & Latitude columns": [""], - "Longitude and Latitude": [""], - "Longitude of default viewport": [""], - "MAR": [""], - "MAY": [""], - "MON": [""], - "Main Datetime Column": [""], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Nightingale Rose Chart": [""], + "Advanced-Analytics": [""], + "Multi-Layers": [""], + "Source / Target": [""], + "Choose a source and a target": [""], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ "" ], - "Manage": ["Spravovať"], - "Manage email report": [""], - "Manage your databases": [""], - "Mandatory": [""], - "Manually set min/max values for the y-axis.": [""], - "Map": [""], - "Map Style": [""], - "MapBox": [""], - "Mapbox": [""], - "March": [""], - "Margin": [""], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": [""], - "Marker Size": [""], - "Marker labels": [""], - "Marker line labels": [""], - "Marker lines": [""], - "Marker size": [""], - "Markers": [""], - "Markup type": [""], - "Max": [""], + "Demographics": [""], + "Survey Responses": [""], + "Sankey Diagram": [""], + "Percentages": [""], + "Sankey Diagram with Loops": [""], + "Country Field Type": [""], + "Full name": [""], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ + "" + ], + "Show Bubbles": [""], + "Whether to display bubbles on top of countries": [""], "Max Bubble Size": [""], - "Max Events": [""], - "Maximum": [""], - "Maximum Font Size": [""], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Color by": [""], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ "" ], - "Maximum value": [""], - "Maximum value on the gauge axis": [""], - "May": [""], - "Mean of values over specified period": [""], - "Mean values": [""], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Country Column": [""], + "3 letter code of the country": [""], + "Metric that defines the size of the bubble": [""], + "Bubble Color": [""], + "Country Color Scheme": [""], + "A map of the world, that can indicate values in different countries.": [ "" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ + "Multi-Dimensions": [""], + "Multi-Variables": [""], + "Popular": [""], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Select charts": [""], + "Error while fetching charts": [""], + "Compose multiple layers together to form complex visuals.": [""], + "deck.gl Multiple Layers": [""], + "deckGL": [""], + "Start (Longitude, Latitude): ": [""], + "End (Longitude, Latitude): ": [""], + "Start Longitude & Latitude": [""], + "Point to your spatial columns": [""], + "End Longitude & Latitude": [""], + "Arc": [""], + "Target Color": [""], + "Color of the target location": [""], + "Categorical Color": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Stroke Width": [""], + "Advanced": [""], + "Plot the distance (like flight paths) between origin and destination.": [ "" ], - "Median values": [""], - "Medium": [""], - "Menu actions trigger": [""], - "Message content": [""], - "Metadata": [""], - "Metadata Parameters": [""], - "Metadata has been synced": [""], - "Method": [""], - "Metric": [""], - "Metric '%(metric)s' does not exist": [""], - "Metric ascending": [""], - "Metric assigned to the [X] axis": [""], - "Metric assigned to the [Y] axis": [""], - "Metric change in value from `since` to `until`": [""], - "Metric descending": [""], - "Metric factor change from `since` to `until`": [""], - "Metric for node values": [""], - "Metric name": [""], - "Metric name [%s] is duplicated": [""], - "Metric percent change in value from `since` to `until`": [""], - "Metric that defines the size of the bubble": [""], - "Metric to display bottom title": [""], - "Metric to sort the results by": [""], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": [""], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "deck.gl Arc": [""], + "3D": [""], + "Web": [""], + "Centroid (Longitude and Latitude): ": [""], + "Threshold: ": [""], + "The size of each cell in meters": [""], + "Aggregation": [""], + "The function to use when aggregating points into groups": [""], + "Contours": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ "" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Weight": [""], + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ "" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Spatial": [""], + "Experimental": [""], + "GeoJson Settings": [""], + "Line width unit": [""], + "meters": [""], + "pixels": [""], + "Point Radius Scale": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ "" ], - "Metrics": [""], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ + "deck.gl Geojson": [""], + "Longitude and Latitude": [""], + "Height": [""], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ "" ], - "Middle": [""], - "Midnight": [""], - "Miles": [""], - "Min": [""], - "Min Periods": [""], - "Min Width": [""], - "Min periods": [""], - "Min/max (no outliers)": [""], - "Mine": [""], - "Minimum": [""], - "Minimum Font Size": [""], - "Minimum Radius": [""], - "Minimum leaf node event count": [""], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "deck.gl Grid": [""], + "Intesity": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ "" ], - "Minimum threshold in percentage points for showing labels.": [""], - "Minimum value": [""], - "Minimum value for label to be displayed on graph.": [""], - "Minimum value on the gauge axis": [""], - "Minor Split Line": [""], - "Minute": [""], - "Minutes %s": [""], - "Missing URL parameters": [""], - "Missing dataset": [""], - "Mixed Chart": [""], - "Mixed Time-Series": [""], - "Modified": [""], - "Modified %s": [""], - "Modified by": [""], - "Modified columns: %s": [""], - "Monday": [""], - "Month": [""], - "Months %s": [""], - "More": [""], - "More filters": [""], - "Move only": [""], - "Moves the given set of dates by a specified interval.": [""], - "Multi-Dimensions": [""], - "Multi-Layers": [""], - "Multi-Levels": [""], - "Multi-Variables": [""], - "Multiple": [""], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Dynamic Aggregation Function": [""], + "variance": [""], + "deviation": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], + "deck.gl 3D Hexagon": [""], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "deck.gl Path": [""], + "Polygon Column": [""], + "Polygon Encoding": [""], + "Elevation": [""], + "Polygon Settings": [""], + "Opacity, expects values between 0 and 100": [""], + "Number of buckets to group data": [""], + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Emit Filter Events": [""], + "Whether to apply filter when items are clicked": [""], "Multiple filtering": [""], - "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ "" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ + "deck.gl Polygon": [""], + "Category": [""], + "Point Size": [""], + "Point Unit": [""], + "Square meters": [""], + "Square kilometers": [""], + "Square miles": [""], + "Radius in meters": [""], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum Radius": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ "" ], - "Multiplier": [""], - "Must be unique": [""], - "Must choose either a chart or a dashboard": [""], - "Must have a [Group By] column to have 'count' as the [Label]": [""], - "Must have at least one numeric column specified": [""], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [""], - "My beautiful colors": [""], - "My column": [""], - "My metric": [""], - "N/A": [""], - "NOT GROUPED BY": [""], - "NOV": [""], - "NOW": [""], - "NUMERIC": [""], - "Name": [""], - "Name is required": [""], - "Name must be unique": [""], - "Name of table to be created from columnar data.": [""], - "Name of table to be created from excel data.": [""], - "Name of table to be created with CSV file": [""], - "Name of the column containing the id of the parent node": [""], - "Name of the id column": [""], - "Name of the source nodes": [""], - "Name of the table that exists in the source database": [""], - "Name of the target nodes": [""], - "Name your database": [""], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error": [""], - "Network error.": [""], - "New chart": [""], - "New columns added: %s": [""], - "New dataset name": [""], - "New filter set": [""], - "New header": [""], - "New tab": [""], - "New tab (Ctrl + q)": [""], - "New tab (Ctrl + t)": [""], - "Next": [""], - "Nightingale Rose Chart": [""], - "No": [""], - "No %s yet": [""], - "No Access!": [""], - "No Data": [""], - "No Results": [""], - "No annotation layers yet": [""], - "No annotation yet": [""], - "No applied filters": [""], - "No available filters.": [""], - "No charts": [""], - "No columns": [""], - "No columns found": [""], - "No compatible columns found": [""], - "No compatible datasets found": [""], - "No compatible schema found": [""], - "No dashboards": [""], - "No data": [""], - "No data after filtering or data is NULL for the latest time record": [ + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "" ], - "No data in file": [""], - "No database tables found": [""], - "No databases match your search": [""], - "No description available.": [""], - "No favorite charts yet, go click on stars!": [""], - "No favorite dashboards yet, go click on stars!": [""], - "No filter": [""], - "No filter is selected.": [""], - "No filters": [""], - "No filters are currently added to this dashboard.": [""], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No matching records found": [""], - "No of Bins": [""], - "No recents yet": [""], - "No records found": [""], - "No results": [""], - "No results found": [""], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Point Color": [""], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ "" ], - "No rows were returned for this dataset": [""], - "No samples were returned for this dataset": [""], - "No saved metrics found": [""], - "No stored results found, you need to re-run your query": [""], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "deck.gl Scatterplot": [""], + "Grid": [""], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], - "No table columns": [""], - "No temporal columns found": [""], - "No time columns": [""], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": [""], - "Node select mode": [""], - "Node size": [""], - "None": [""], - "None -> Arrow": [""], - "None -> None": [""], - "Normal": [""], - "Normalize Across": [""], - "Normalized": [""], - "Not Time Series": [""], - "Not added to any dashboard": [""], - "Not available": [""], - "Not equal to (≠)": [""], - "Not in": [""], - "Not null": [""], - "Not triggered": [""], - "Not up to date": [""], - "Nothing triggered": [""], - "Notification method": [""], - "November": [""], - "Now": [""], - "Null Values": [""], - "Null imputation": [""], - "Null or Empty": [""], - "Null values": [""], - "Number Format": [""], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "deck.gl Screen Grid": [""], + "For more information about objects are in context in the scope of this function, refer to the": [ "" ], - "Number format": [""], - "Number format string": [""], - "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [""], - "Number of decimal places with which to display lift values": [""], - "Number of decimal places with which to display p-values": [""], - "Number of periods to compare against": [""], - "Number of periods to ratio against": [""], - "Number of rows of file to read": [""], - "Number of rows of file to read.": [""], - "Number of rows to skip at start of file": [""], - "Number of rows to skip at start of file.": [""], - "Number of split segments on the axis": [""], - "Number of steps to take between ticks when displaying the X scale": [""], - "Number of steps to take between ticks when displaying the Y scale": [""], - "Numerical range": [""], - "OCT": [""], - "OK": [""], - "OVERWRITE": [""], - "October": [""], - "Offline": [""], - "Offset": [""], - "On Grace": [""], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ + "Ignore null locations": [""], + "Whether to ignore locations that are null": [""], + "Auto Zoom": [""], + "When checked, the map will zoom to your data after each query": [""], + "Select a dimension": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ "" ], - "One or many columns to pivot as columns": [""], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ "" ], - "One or many controls to pivot as columns": [""], - "One or many metrics to display": [""], - "One or more columns already exist": [""], - "One or more columns are duplicated": [""], - "One or more columns do not exist": [""], - "One or more metrics already exist": [""], - "One or more metrics are duplicated": [""], - "One or more metrics do not exist": [""], - "One or more parameters needed to configure a database are missing.": [ + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ "" ], - "One or more parameters specified in the query are malformatted.": [""], - "One or more parameters specified in the query are missing.": [""], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Legend Format": [""], + "Choose the format for legend values": [""], + "Legend Position": [""], + "Choose the position of the legend": [""], + "Top left": [""], + "Top right": [""], + "Bottom left": [""], + "Bottom right": [""], + "Lines column": [""], + "The database columns that contains lines information": [""], + "Line width": [""], + "The width of the lines": [""], + "Fill Color": [""], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ "" ], - "One ore more annotation layers failed loading.": [""], - "Only SELECT statements are allowed against this database.": [""], - "Only Total": [""], - "Only `SELECT` statements are allowed": [""], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [""], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "" - ], - "Only single queries supported": [""], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Stroke Color": [""], + "Filled": [""], + "Whether to fill the objects": [""], + "Stroked": [""], + "Whether to display the stroke": [""], + "Extruded": [""], + "Whether to make the grid 3D": [""], + "Grid Size": [""], + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Longitude & Latitude": [""], + "Fixed point radius": [""], + "Multiplier": [""], + "Factor to multiply the metric by": [""], + "Lines encoding": [""], + "The encoding format of the lines": [""], + "geohash (square)": [""], + "Reverse Lat & Long": [""], + "GeoJson Column": [""], + "Select the geojson column": [""], + "Right Axis Format": [""], + "Show Markers": [""], + "Show data points as circle markers on the lines": [""], + "Y bounds": [""], + "Whether to display the min and max values of the Y-axis": [""], + "Y 2 bounds": [""], + "Line Style": [""], + "linear": [""], + "basis": [""], + "cardinal": [""], + "monotone": [""], + "step-before": [""], + "step-after": [""], + "Line interpolation as defined by d3.js": [""], + "Show Range Filter": [""], + "Whether to display the time range interactive selector": [""], + "Extra Controls": [""], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ "" ], - "Oops! An error occurred!": [""], - "Opacity": [""], - "Opacity of Area Chart. Also applies to confidence band.": [""], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [""], - "Opacity of area chart.": [""], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": [""], - "Open in SQL Lab": [""], - "Open query in SQL Lab": [""], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "X Tick Layout": [""], + "flat": [""], + "staggered": [""], + "The way the ticks are laid out on the X-axis": [""], + "X Axis Format": [""], + "Y Log Scale": [""], + "Use a log scale for the Y-axis": [""], + "Y Axis Bounds": [""], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Operator": [""], - "Operator undefined for aggregator: %(name)s": [""], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Y Axis 2 Bounds": [""], + "X bounds": [""], + "Whether to display the min and max values of the X-axis": [""], + "Bar Values": [""], + "Show the value on top of the bar": [""], + "Stacked Bars": [""], + "Reduce X ticks": [""], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ "" ], - "Optional d3 date format string": [""], - "Optional d3 number format string": [""], - "Optional name of the data column.": [""], - "Optional warning about use of this metric": [""], - "Options": [""], - "Or choose from a list of other databases we support:": [""], - "Order by entity id": [""], - "Order results by selected columns": [""], - "Ordering": [""], - "Orientation": [""], - "Orientation of bar chart": [""], - "Orientation of filter bar": [""], - "Orientation of tree": [""], - "Original": [""], - "Original table column order": [""], - "Original value": [""], - "Orthogonal": [""], - "Other": [""], - "Outdoors": [""], - "Outer Radius": [""], - "Outer edge of Pie chart": [""], - "Overlap": [""], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "You cannot use 45° tick layout along with the time range filter": [""], + "Stacked Style": [""], + "stack": [""], + "stream": [""], + "expand": [""], + "Evolution": [""], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ "" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Stretched style": [""], + "Stacked style": [""], + "Video game consoles": [""], + "Vehicle Types": [""], + "Area Chart (legacy)": [""], + "Continuous": [""], + "Line": [""], + "nvd3": [""], + "Deprecated": [""], + "Series Limit Sort By": [""], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Series Limit Sort Descending": [""], + "Whether to sort descending or ascending if a series limit is present": [ "" ], - "Override time grain": [""], - "Override time range": [""], - "Overwrite": [""], - "Overwrite & Explore": [""], - "Overwrite Dashboard [%s]": [""], - "Overwrite Duplicate Columns": [""], - "Overwrite existing": [""], - "Overwrite text in the editor with a query on this table": [""], - "Owned Created or Favored": [""], - "Owner": [""], - "Owners": [""], - "Owners are invalid": [""], - "Owners is a list of users who can alter the dashboard.": [""], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ "" ], - "Page length": [""], - "Paired t-test Table": [""], - "Pandas resample method": [""], - "Pandas resample rule": [""], - "Parallel Coordinates": [""], - "Parameter error": [""], - "Parameters": [""], - "Parameters ": [""], - "Parameters related to the view and perspective on the map": [""], - "Parent": [""], - "Parse Dates": [""], - "Part of a Whole": [""], - "Partition Chart": [""], - "Partition Diagram": [""], - "Partition Limit": [""], - "Partition Threshold": [""], - "Partitions whose height to parent height proportions are below this value are pruned": [ + "Time-series Bar Chart (legacy)": [""], + "Bar": [""], + "Vertical": [""], + "Box Plot": [""], + "X Log Scale": [""], + "Use a log scale for the X-axis": [""], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ "" ], - "Password": [""], - "Paste Private Key here": [""], - "Paste content of service credentials JSON file here": [""], - "Paste the shareable Google Sheet URL here": [""], - "Pattern": [""], - "Percent Change": [""], - "Percentage": [""], - "Percentage change": [""], - "Percentage metrics": [""], - "Percentage threshold": [""], - "Percentages": [""], - "Performance": [""], - "Period average": [""], - "Periods": [""], - "Periods must be a whole number": [""], - "Person or group that has certified this chart.": [""], - "Person or group that has certified this dashboard.": [""], - "Person or group that has certified this metric": [""], - "Physical": [""], - "Physical (table or view)": [""], - "Physical dataset": [""], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [""], - "Pick a metric for x, y and size": [""], - "Pick a metric to display": [""], - "Pick a metric!": [""], - "Pick a name to help you identify this database.": [""], - "Pick a nickname for how the database will display in Superset.": [""], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [""], - "Pick a title for you annotation.": [""], - "Pick at least one field for [Series]": [""], - "Pick at least one metric": [""], - "Pick exactly 2 columns as [Source / Target]": [""], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Bubble Chart (legacy)": [""], + "Ranges to highlight with shading": [""], + "Range labels": [""], + "Labels for the ranges": [""], + "Markers": [""], + "List of values to mark with triangles": [""], + "Marker labels": [""], + "Labels for the markers": [""], + "Marker lines": [""], + "List of values to mark with lines": [""], + "Marker line labels": [""], + "Labels for the marker lines": [""], + "KPI": [""], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ "" ], - "Pick your favorite markup language": [""], - "Pie Chart": [""], - "Pie shape": [""], - "Pin": [""], - "Pivot Table": [""], - "Pivot operation must include at least one aggregate": [""], - "Pivot operation requires at least one index": [""], - "Pivoted": [""], - "Pixel height of each series": [""], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": [""], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ "" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Time-series Percent Change": [""], + "Sort bars by x labels.": [""], + "Breakdowns": [""], + "Defines how each series is broken down": [""], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ "" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Bar Chart (legacy)": [""], + "Additive": [""], + "Discrete": [""], + "Propagate": [""], + "Send range filter events to other charts": [""], + "Classic chart that visualizes how metrics change over time.": [""], + "Battery level over time": [""], + "Line Chart (legacy)": [""], + "Label Type": [""], + "Category Name": [""], + "Value": [""], + "Percentage": [""], + "Category and Value": [""], + "Category and Percentage": [""], + "Category, Value and Percentage": [""], + "What should be shown on the label?": [""], + "Donut": [""], + "Do you want a donut or a pie?": [""], + "Show Labels": [""], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ "" ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Put labels outside": [""], + "Put the labels outside the pie?": [""], + "Pie Chart (legacy)": [""], + "Frequency": [""], + "Year (freq=AS)": [""], + "52 weeks starting Monday (freq=52W-MON)": [""], + "1 week starting Sunday (freq=W-SUN)": [""], + "1 week starting Monday (freq=W-MON)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "" ], - "Please choose at least one groupby": [""], - "Please choose different metrics on left and right axis": [""], - "Please confirm": [""], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": [""], - "Please filter set name": [""], - "Please re-enter the password.": [""], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": [""], - "Please save your chart first, then try creating a new email report.": [ + "Time-series Period Pivot": [""], + "Formula": [""], + "Event": [""], + "Interval": [""], + "Stack": [""], + "Stream": [""], + "Expand": [""], + "Show legend": [""], + "Whether to display a legend for the chart": [""], + "Margin": [""], + "Additional padding for legend.": [""], + "Scroll": [""], + "Plain": [""], + "Legend type": [""], + "Orientation": [""], + "Bottom": [""], + "Right": [""], + "Legend Orientation": [""], + "Show Value": [""], + "Show series values on the chart": [""], + "Stack series on top of each other": [""], + "Only Total": [""], + "Only show the total value on the stacked chart, and not show on the selected category": [ "" ], - "Please save your dashboard first, then try creating a new email report.": [ + "Percentage threshold": [""], + "Minimum threshold in percentage points for showing labels.": [""], + "Rich tooltip": [""], + "Shows a list of all series available at that point in time": [""], + "Tooltip time format": [""], + "Tooltip sort by metric": [""], + "Whether to sort tooltip by the selected metric in descending order.": [ "" ], - "Please select both a Dataset and a Chart type to proceed": [""], - "Please use 3 different metric labels": [""], - "Plot the distance (like flight paths) between origin and destination.": [ + "Tooltip": [""], + "Based on what should series be ordered on the chart and legend": [""], + "Sort Series Ascending": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": [""], + "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Truncate X Axis": [""], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ "" ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "X Axis Bounds": [""], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Plugins": ["Pluginy"], - "Point Color": [""], - "Point Radius": [""], - "Point Radius Scale": [""], - "Point Radius Unit": [""], - "Point Size": [""], - "Point Unit": [""], - "Point to your spatial columns": [""], - "Points": [""], - "Points and clusters will update as the viewport is being changed": [""], - "Polygon Column": [""], - "Polygon Encoding": [""], - "Polygon Settings": [""], - "Polyline": [""], - "Pop Tab Link": [""], - "Popular": [""], - "Populate \"Default value\" to enable this control": [""], - "Population age data": [""], - "Port": [""], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Minor ticks": [""], + "Show minor ticks on axes.": [""], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [""], + "Not up to date": [""], + "No data": [""], + "No data after filtering or data is NULL for the latest time record": [ "" ], - "Port out of range 0-65535": [""], - "Position JSON": [""], - "Position of child node label on tree": [""], - "Position of column level subtotal": [""], - "Position of intermediate node label on tree": [""], - "Position of row level subtotal": [""], - "Powered by Apache Superset": [""], - "Pre-filter": [""], - "Pre-filter available values": [""], - "Pre-filter is required": [""], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Try applying different filters or ensuring your datasource has data": [ "" ], - "Predictive": [""], - "Predictive Analytics": [""], - "Preview": [""], - "Preview: `%s`": [""], - "Previous": [""], - "Previous Line": [""], - "Primary": [""], - "Primary Metric": [""], - "Primary key": [""], - "Primary or secondary y-axis": [""], - "Primary y-axis Bounds": [""], - "Primary y-axis format": [""], - "Private Key": [""], - "Private Key & Password": [""], - "Private Key Password": [""], - "Proceed": [""], - "Profile": [""], - "Profile picture provided by Gravatar": [""], - "Progress": [""], - "Progressive": [""], - "Propagate": [""], - "Proportional": [""], - "Public and privately shared sheets": [""], - "Publicly shared sheets only": [""], - "Published": [""], - "Purple": [""], - "Put labels outside": [""], - "Put the labels outside of the pie?": [""], - "Put the labels outside the pie?": [""], - "Put your code here": [""], - "Python datetime string pattern": [""], - "QUERY DATA IN SQL LAB": [""], - "Quarter": [""], - "Quarters %s": [""], - "Query": [""], - "Query %s: %s": [""], - "Query A": [""], - "Query B": [""], - "Query History": ["História dotazov"], - "Query does not exist": [""], - "Query history": [""], - "Query imported": [""], - "Query in a new tab": [""], - "Query is too complex and takes too long to run.": [""], - "Query mode": [""], - "Query name": [""], - "Query preview": [""], - "Query was stopped": [""], - "Query was stopped.": [""], - "RANGE TYPE": [""], - "RGB Color": [""], - "RLS Rule could not be deleted.": [""], - "RLS Rule not found.": [""], - "Radar": [""], - "Radar Chart": [""], - "Radar render type, whether to display 'circle' shape.": [""], - "Radial": [""], - "Radius in kilometers": [""], - "Radius in meters": [""], - "Radius in miles": [""], - "Ran %s": [""], - "Range filter": [""], - "Range filter plugin using AntD": [""], - "Range labels": [""], - "Ranges to highlight with shading": [""], - "Ranking": [""], - "Ratio": [""], - "Raw records": [""], - "Ready to review filters in this dashboard?": [""], - "Rebuild": [""], - "Recent activity": [""], - "Recently created charts, dashboards, and saved queries will appear here": [ + "Big Number Font Size": [""], + "Tiny": [""], + "Small": [""], + "Normal": [""], + "Large": [""], + "Huge": [""], + "Subheader Font Size": [""], + "Display settings": [""], + "Subheader": [""], + "Description text that shows up below your Big Number": [""], + "Date format": [""], + "Force date format": [""], + "Use date formatting even when metric value is not a timestamp": [""], + "Conditional Formatting": [""], + "Apply conditional color formatting to metric": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "" ], - "Recently edited charts, dashboards, and saved queries will appear here": [ + "A Big Number": [""], + "With a subheader": [""], + "Big Number": [""], + "Comparison Period Lag": [""], + "Based on granularity, number of time periods to compare against": [""], + "Comparison suffix": [""], + "Suffix to apply after the percentage display": [""], + "Show Timestamp": [""], + "Whether to display the timestamp": [""], + "Show Trend Line": [""], + "Whether to display the trend line": [""], + "Start y-axis at 0": [""], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ "" ], - "Recently modified": [""], - "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Fix to selected Time Range": [""], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ "" ], - "Recents": [""], - "Recipients are separated by \",\" or \";\"": [""], - "Recommended tags": [""], - "Record Count": [""], - "Rectangle": [""], - "Redirects to this endpoint when clicking on the table from the table list": [ + "TEMPORAL X-AXIS": [""], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ "" ], - "Redo the action": [""], - "Reduce X ticks": [""], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Big Number with Trendline": [""], + "Whisker/outlier options": [""], + "Determines how whiskers and outliers are calculated.": [""], + "Tukey": [""], + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": [""], + "Distribute across": [""], + "Columns to calculate distribution across.": [""], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ "" ], - "Refer to the": [""], - "Referenced columns not available in DataFrame.": [""], - "Refetch results": [""], - "Refresh": [""], - "Refresh dashboard": [""], - "Refresh frequency": [""], - "Refresh interval": [""], - "Refresh interval saved": [""], - "Refresh table list": [""], - "Refresh tables": [""], - "Refresh the default values": [""], - "Refreshing charts": [""], - "Refreshing columns": [""], - "Regex": [""], - "Regular": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Bubble size number format": [""], + "Bubble Opacity": [""], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Relational": [""], - "Relationships between community channels": [""], - "Relative Date/Time": [""], - "Relative period": [""], - "Relative quantity": [""], - "Reload": [""], - "Remind me in 24 hours": [""], - "Remove": [""], - "Remove cross-filter": [""], - "Remove invalid filters": [""], - "Remove item": [""], - "Remove query from log": [""], - "Remove table preview": [""], - "Removed columns: %s": [""], - "Rename tab": [""], - "Rendering": [""], - "Replace": [""], - "Report": [""], - "Report Name": [""], - "Report Schedule could not be created.": [""], - "Report Schedule could not be deleted.": [""], - "Report Schedule could not be updated.": [""], - "Report Schedule delete failed.": [""], - "Report Schedule execution failed when generating a csv.": [""], - "Report Schedule execution failed when generating a dataframe.": [""], - "Report Schedule execution failed when generating a screenshot.": [""], - "Report Schedule execution got an unexpected error.": [""], - "Report Schedule is still working, refusing to re-compute.": [""], - "Report Schedule log prune failed.": [""], - "Report Schedule not found.": [""], - "Report Schedule parameters are invalid.": [""], - "Report Schedule reached a working timeout.": [""], - "Report Schedule state not found": [""], - "Report a bug": [""], - "Report failed": [""], - "Report name": [""], - "Report schedule": [""], - "Report schedule client error": [""], - "Report schedule system error": [""], - "Report schedule unexpected error": [""], - "Report sending": [""], - "Report sent": [""], - "Report updated": [""], - "Reports": [""], - "Repulsion": [""], - "Repulsion strength between nodes": [""], - "Request Permissions": [""], - "Request is incorrect: %(error)s": [""], - "Request is not JSON": [""], - "Request missing data field.": [""], - "Request timed out": [""], - "Required": [""], - "Required control values have been removed": [""], - "Resample": [""], - "Resample method should in ": [""], - "Resample operation requires DatetimeIndex": [""], - "Reset": [""], - "Reset state": [""], - "Resource already has an attached report.": [""], - "Resource was not found.": [""], - "Restore Filter": [""], - "Results": [""], - "Results %s": [""], - "Results backend is not configured.": [""], - "Results backend needed for asynchronous queries is not configured.": [ + "X AXIS TITLE MARGIN": [""], + "Logarithmic x-axis": [""], + "Rotate y axis label": [""], + "Y AXIS TITLE MARGIN": [""], + "Logarithmic y-axis": [""], + "Truncate Y Axis": [""], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ "" ], - "Return to specific datetime.": [""], - "Reverse Lat & Long": [""], - "Reverse lat/long ": [""], - "Rich Tooltip": [""], - "Rich tooltip": [""], - "Right": [""], - "Right Axis Format": [""], - "Right Axis Metric": [""], - "Right axis metric": [""], - "Right to Left": [""], - "Right value": [""], - "Right-click on a dimension value to drill to detail by that value.": [ + "% calculation": [""], + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Role": [""], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Percent of total": [""], + "Labels": [""], + "Label Contents": [""], + "Value and Percentage": [""], + "What should be shown as the label": [""], + "Tooltip Contents": [""], + "What should be shown as the tooltip label": [""], + "Whether to display the labels.": [""], + "Show Tooltip Labels": [""], + "Whether to display the tooltip labels.": [""], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ "" ], - "Roles": [""], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Funnel Chart": [""], + "Sequential": [""], + "Columns to group by": [""], + "General": [""], + "Min": [""], + "Minimum value on the gauge axis": [""], + "Max": [""], + "Maximum value on the gauge axis": [""], + "Start angle": [""], + "Angle at which to start progress axis": [""], + "End angle": [""], + "Angle at which to end progress axis": [""], + "Font size": [""], + "Font size for axis labels, detail value and other text elements": [""], + "Value format": [""], + "Additional text to add before or after the value, e.g. unit": [""], + "Show pointer": [""], + "Whether to show the pointer": [""], + "Animation": [""], + "Whether to animate the progress and the value or just display them": [ "" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "Axis": [""], + "Show axis line ticks": [""], + "Whether to show minor ticks on the axis": [""], + "Show split lines": [""], + "Whether to show the split lines on the axis": [""], + "Split number": [""], + "Number of split segments on the axis": [""], + "Progress": [""], + "Show progress": [""], + "Whether to show the progress of gauge chart": [""], + "Overlap": [""], + "Whether the progress bar overlaps when there are multiple groups of data": [ "" ], - "Roles to grant": [""], - "Rolling Function": [""], - "Rolling Window": [""], - "Rolling function": [""], - "Rolling window": [""], - "Root certificate": [""], - "Root node id": [""], - "Rotate axis label": [""], - "Rotate x axis label": [""], - "Rotation to apply to words in the cloud": [""], "Round cap": [""], - "Row": [""], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Style the ends of the progress bar with a round cap": [""], + "Intervals": [""], + "Interval bounds": [""], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ "" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Interval colors": [""], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" ], - "Row limit": [""], - "Rows": [""], - "Rows per page, 0 means no pagination": [""], - "Rows subtotal position": [""], - "Rows to Read": [""], - "Rule": [""], - "Rule added": [""], - "Run": [""], - "Run a query to display query history": [""], - "Run a query to display results": [""], - "Run in SQL Lab": [""], - "Run query": [""], - "Run query (Ctrl + Return)": [""], - "Run query in a new tab": [""], - "Run selection": [""], - "Running": [""], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": [""], - "SEP": [""], - "SHA": [""], - "SQL": [""], - "SQL Copied!": [""], - "SQL Expression": [""], - "SQL Lab": [""], - "SQL Lab View": [""], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], - "SQL Query": [""], - "SQL expression": [""], - "SQL query": [""], - "SQLAlchemy URI": [""], - "SSH Host": [""], - "SSH Password": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunnel could not be deleted.": [""], - "SSH Tunnel could not be updated.": [""], - "SSH Tunnel not found.": [""], - "SSH Tunnel parameters are invalid.": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": [""], - "START (INCLUSIVE)": [""], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "STRING": [""], - "SUN": [""], - "Sample Standard Deviation": [""], - "Sample Variance": [""], - "Samples": [""], - "Samples for dataset could not be retrieved.": [""], - "Samples for datasource could not be retrieved.": [""], - "Sankey": [""], - "Sankey Diagram": [""], - "Sankey Diagram with Loops": [""], - "Satellite": [""], - "Satellite Streets": [""], - "Saturday": [""], - "Save": [""], - "Save & Explore": [""], - "Save & go to dashboard": [""], - "Save & go to new dashboard": [""], - "Save (Overwrite)": [""], - "Save as": [""], - "Save as Dataset": [""], - "Save as dataset": [""], - "Save as new": [""], - "Save as new chart": [""], - "Save as...": [""], - "Save as:": [""], - "Save changes": [""], - "Save chart": [""], - "Save dashboard": [""], - "Save for this session": [""], - "Save or Overwrite Dataset": [""], - "Save query": [""], - "Save the query to enable this feature": [""], - "Save this query as a virtual dataset to continue exploring": [""], - "Save to new dashboard": [""], - "Saved": [""], - "Saved Queries": ["Uložené dotazy"], - "Saved metric": [""], - "Saved queries": [""], - "Saved queries could not be deleted.": [""], - "Saved query not found.": [""], - "Saved query parameters are invalid.": [""], - "Scale and Move": [""], + "Gauge Chart": [""], + "Name of the source nodes": [""], + "Name of the target nodes": [""], + "Source category": [""], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "" + ], + "Target category": [""], + "Category of target nodes": [""], + "Chart options": [""], + "Layout": [""], + "Graph layout": [""], + "Force": [""], + "Layout type of graph": [""], + "Edge symbols": [""], + "Symbol of two ends of edge line": [""], + "None -> None": [""], + "None -> Arrow": [""], + "Circle -> Arrow": [""], + "Circle -> Circle": [""], + "Enable node dragging": [""], + "Whether to enable node dragging in force layout mode.": [""], + "Enable graph roaming": [""], + "Disabled": [""], "Scale only": [""], - "Scatter": [""], - "Scatter Plot": [""], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Move only": [""], + "Scale and Move": [""], + "Whether to enable changing graph position and scaling.": [""], + "Node select mode": [""], + "Single": [""], + "Multiple": [""], + "Allow node selections": [""], + "Label threshold": [""], + "Minimum value for label to be displayed on graph.": [""], + "Node size": [""], + "Median node size, the largest node will be 4 times larger than the smallest": [ "" ], - "Schedule": [""], - "Schedule a new email report": [""], - "Schedule email report": [""], - "Schedule query": [""], - "Schedule settings": [""], - "Schedule the query periodically": [""], - "Scheduled": [""], - "Scheduled at (UTC)": [""], - "Scheduled task executor not found": [""], - "Schema": [""], - "Schema cache timeout": [""], - "Schema undefined": [""], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Edge width": [""], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ "" ], - "Schemas allowed for File upload": [""], - "Scope": [""], - "Scoping": [""], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": [""], - "Search / Filter": [""], - "Search Metrics & Columns": [""], - "Search all charts": [""], - "Search all filter options": [""], - "Search box": [""], - "Search by query text": [""], - "Search columns": [""], - "Search in filters": [""], - "Search tables": [""], - "Search...": [""], - "Second": [""], - "Secondary": [""], - "Secondary Metric": [""], - "Secondary y-axis Bounds": [""], - "Secondary y-axis format": [""], - "Secondary y-axis title": [""], - "Seconds %s": [""], - "Secure Extra": [""], - "Secure extra": [""], - "Security": ["Bezpečnosť"], - "Security & Access": [""], - "See all %(tableName)s": [""], - "See less": [""], - "See more": [""], - "See table schema": [""], - "Select": [""], - "Select ...": [""], - "Select Delivery Method": [""], - "Select Viz Type": [""], - "Select a Columnar file to be uploaded to a database.": [""], - "Select a Excel file to be uploaded to a database.": [""], - "Select a column": [""], - "Select a database table and create dataset": [""], - "Select a database table.": [""], - "Select a database to connect": [""], - "Select a database to upload the file to": [""], - "Select a database to write a query": [""], - "Select a dimension": [""], - "Select a file to be uploaded to the database": [""], - "Select a schema if the database supports this": [""], - "Select a visualization type": [""], - "Select aggregate options": [""], - "Select all data": [""], - "Select all items": [""], - "Select any columns for metadata inspection": [""], - "Select charts": [""], - "Select color scheme": [""], - "Select column": [""], - "Select current page": [""], - "Select database & schema": [""], - "Select database or type to search databases": [""], - "Select database table": [""], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Edge length": [""], + "Edge length between nodes": [""], + "Gravity": [""], + "Strength to pull the graph toward center": [""], + "Repulsion": [""], + "Repulsion strength between nodes": [""], + "Friction": [""], + "Friction between nodes": [""], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], - "Select dataset source": [""], - "Select file": [""], - "Select filter": [""], - "Select filter plugin using AntD": [""], - "Select first filter value by default": [""], - "Select operator": [""], - "Select or type a value": [""], - "Select or type dataset name": [""], - "Select owners": [""], - "Select saved metrics": [""], - "Select schema or type to search schemas": [""], - "Select scheme": [""], - "Select start and end date": [""], - "Select subject": [""], - "Select table or type to search tables": [""], - "Select the Annotation Layer you would like to use.": [""], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Graph Chart": [""], + "Structural": [""], + "Whether to sort descending or ascending": [""], + "Series type": [""], + "Smooth Line": [""], + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": [""], + "Stack series": [""], + "Area chart": [""], + "Draw area under curves. Only applicable for line types.": [""], + "Opacity of area chart.": [""], + "Marker": [""], + "Draw a marker on data points. Only applicable for line types.": [""], + "Marker size": [""], + "Size of marker. Also applies to forecast observations.": [""], + "Primary": [""], + "Secondary": [""], + "Primary or secondary y-axis": [""], + "Query A": [""], + "Advanced analytics Query A": [""], + "Query B": [""], + "Advanced analytics Query B": [""], + "Data Zoom": [""], + "Enable data zooming controls": [""], + "Minor Split Line": [""], + "Draw split lines for minor y-axis ticks": [""], + "Primary y-axis Bounds": [""], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Primary y-axis format": [""], + "Logarithmic scale on primary y-axis": [""], + "Secondary y-axis Bounds": [""], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ "" ], - "Select the geojson column": [""], - "Select the number of bins for the histogram": [""], - "Select the numeric columns to draw the histogram": [""], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Secondary y-axis format": [""], + "Secondary currency format": [""], + "Secondary y-axis title": [""], + "Logarithmic scale on secondary y-axis": [""], + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ "" ], - "Send as CSV": [""], - "Send as PNG": [""], - "Send as text": [""], - "Send range filter events to other charts": [""], - "September": [""], - "Sequential": [""], - "Series": [""], - "Series Height": [""], - "Series Limit Sort By": [""], - "Series Limit Sort Descending": [""], - "Series Style": [""], - "Series chart type (line, bar etc)": [""], - "Series limit": [""], - "Series type": [""], - "Server Page Length": [""], - "Server pagination": [""], - "Service Account": [""], - "Set auto-refresh interval": [""], - "Set filter mapping": [""], - "Set up an email report": [""], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Mixed Chart": [""], + "Put the labels outside of the pie?": [""], + "Label Line": [""], + "Draw line from Pie to label when labels outside?": [""], + "Show Total": [""], + "Whether to display the aggregate count": [""], + "Pie shape": [""], + "Outer Radius": [""], + "Outer edge of Pie chart": [""], + "Inner Radius": [""], + "Inner radius of donut hole": [""], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ "" ], - "Settings": [""], - "Settings for time series": [""], - "Share": [""], - "Share chart by email": [""], - "Share permalink by email": [""], - "Shared query": [""], - "Sheet Name": [""], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [""], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Pie Chart": [""], + "Total: %s": [""], + "The maximum value of metrics. It is an optional configuration": [""], + "Label position": [""], + "Radar": [""], + "Customize Metrics": [""], + "Further customize how to display each metric": [""], + "Circle radar shape": [""], + "Radar render type, whether to display 'circle' shape.": [""], + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ "" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Radar Chart": [""], + "Primary Metric": [""], + "The primary metric is used to define the arc segment sizes": [""], + "Secondary Metric": [""], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ "" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "When only a primary metric is provided, a categorical color scale is used.": [ "" ], - "Show": [""], - "Show Bubbles": [""], - "Show CREATE VIEW statement": [""], - "Show CSS Template": [""], - "Show Chart": [""], - "Show Column": [""], - "Show Dashboard": [""], - "Show Database": [""], - "Show Labels": [""], - "Show Less...": [""], - "Show Log": [""], - "Show Markers": [""], - "Show Metric": [""], - "Show Metric Names": [""], - "Show Range Filter": [""], - "Show Saved Query": [""], - "Show Table": [""], - "Show Timestamp": [""], - "Show Total": [""], - "Show Trend Line": [""], - "Show Upper Labels": [""], - "Show Value": [""], - "Show Values": [""], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "When a secondary metric is provided, a linear color scale is used.": [ "" ], - "Show all columns": [""], - "Show all...": [""], - "Show axis line ticks": [""], - "Show cell bars": [""], - "Show chart description": [""], - "Show columns total": [""], - "Show data points as circle markers on the lines": [""], - "Show empty columns": [""], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Hierarchy": [""], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "" ], - "Show info tooltip": [""], - "Show label": [""], - "Show labels when the node has children.": [""], - "Show legend": [""], - "Show less columns": [""], - "Show less...": [""], - "Show only my charts": [""], - "Show password.": [""], - "Show percentage": [""], - "Show pointer": [""], - "Show progress": [""], - "Show rows total": [""], - "Show series values on the chart": [""], - "Show split lines": [""], - "Show the value on top of the bar": [""], - "Show time column": [""], - "Show time grain dropdown": [""], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ "" ], - "Show totals": [""], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Sunburst Chart": [""], + "Multi-Levels": [""], + "When using other than adaptive formatting, labels may overlap": [""], + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Generic Chart": [""], + "zoom area": [""], + "restore zoom": [""], + "Series Style": [""], + "Area chart opacity": [""], + "Opacity of Area Chart. Also applies to confidence band.": [""], + "Marker Size": [""], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ "" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Area Chart": [""], + "Axis Title": [""], + "AXIS TITLE MARGIN": [""], + "AXIS TITLE POSITION": [""], + "Axis Format": [""], + "Logarithmic axis": [""], + "Draw split lines for minor axis ticks": [""], + "Truncate Axis": [""], + "It’s not recommended to truncate axis in Bar chart.": [""], + "Axis Bounds": [""], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Chart Orientation": [""], + "Bar orientation": [""], + "Horizontal": [""], + "Orientation of bar chart": [""], + "Bar Charts are used to show metrics as a series of bars.": [""], + "Bar Chart": [""], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ "" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Line Chart": [""], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "" ], - "Showing %s of %s": [""], - "Shows a list of all series available at that point in time": [""], - "Shows or hides markers for the time series": [""], - "Significance Level": [""], - "Simple": [""], - "Simple ad-hoc metrics are not enabled for this dataset": [""], - "Single": [""], - "Single Metric": [""], - "Single Value": [""], - "Single value": [""], - "Single value type": [""], - "Size of edge symbols": [""], - "Size of marker. Also applies to forecast observations.": [""], - "Sizes of vehicles": [""], - "Skip Blank Lines": [""], - "Skip Initial Space": [""], - "Skip Rows": [""], - "Skip blank lines rather than interpreting them as Not A Number values": [ - "" - ], - "Skip spaces after delimiter": [""], - "Slug": [""], - "Small": [""], - "Small number format": [""], - "Smooth Line": [""], + "Scatter Plot": [""], "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "" ], - "Solid": [""], - "Some roles do not exist": [""], - "Something went wrong.": [""], - "Sorry there was an error fetching database information: %s": [""], - "Sorry there was an error fetching saved charts: ": [""], - "Sorry, An error occurred": [""], - "Sorry, an error occurred": [""], - "Sorry, an unknown error occurred": [""], - "Sorry, an unknown error occurred.": [""], - "Sorry, something went wrong. Embedding could not be deactivated.": [""], - "Sorry, something went wrong. Try again later.": [""], - "Sorry, there appears to be no data": [""], - "Sorry, there was an error saving this %s: %s": [""], - "Sorry, there was an error saving this dashboard: %s": [""], - "Sorry, your browser does not support copying.": [""], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], - "Sort": [""], - "Sort Descending": [""], - "Sort Metric": [""], - "Sort Series Ascending": [""], - "Sort X Axis": [""], - "Sort Y Axis": [""], - "Sort ascending": [""], - "Sort bars by x labels.": [""], - "Sort by": [""], - "Sort by %s": [""], - "Sort by metric": [""], - "Sort columns alphabetically": [""], - "Sort columns by": [""], - "Sort descending": [""], - "Sort filter values": [""], - "Sort metric": [""], - "Sort rows by": [""], - "Sort series in ascending order": [""], - "Sort type": [""], - "Source": [""], - "Source / Target": [""], - "Source SQL": [""], - "Source category": [""], - "Sparkline": [""], - "Spatial": [""], - "Specific Date/Time": [""], - "Specify a schema (if database flavor supports this).": [""], - "Specify duplicate columns as \"X.0, X.1\".": [""], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "" - ], - "Split number": [""], - "Square kilometers": [""], - "Square meters": [""], - "Square miles": [""], - "Stack": [""], - "Stack Trace:": [""], - "Stack series": [""], - "Stack series on top of each other": [""], - "Stacked": [""], - "Stacked Bars": [""], - "Stacked Style": [""], - "Stacked style": [""], - "Standard time series": [""], + "Step type": [""], "Start": [""], - "Start (Longitude, Latitude): ": [""], - "Start Longitude & Latitude": [""], - "Start Review": [""], - "Start angle": [""], - "Start at (UTC)": [""], - "Start date": [""], - "Start date included in time range": [""], - "Start y-axis at 0": [""], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Middle": [""], + "End": [""], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ "" ], - "Started": [""], - "State": [""], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": [""], - "Status": [""], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Step type": [""], - "Stepped Line": [""], "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ "" ], - "Stop": [""], - "Stop query": [""], - "Stop running (Ctrl + e)": [""], - "Stop running (Ctrl + x)": [""], - "Stopped an unsafe database connection": [""], - "Stream": [""], - "Streets": [""], - "Strength to pull the graph toward center": [""], - "Stretched style": [""], - "Strings used for sheet names (default is the first sheet).": [""], - "Stroke Color": [""], - "Stroke Width": [""], - "Stroked": [""], - "Structural": [""], - "Style": [""], - "Style the ends of the progress bar with a round cap": [""], - "Subdomain": [""], - "Subheader": [""], - "Subheader Font Size": [""], - "Submit": [""], - "Subtotal": [""], - "Success": [""], - "Successfully changed dataset!": [""], - "Suffix to apply after the percentage display": [""], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": [""], - "Sum values": [""], - "Sunburst": [""], - "Sunburst Chart": [""], - "Sunburst Chart v2": [""], - "Sunday": [""], - "Superset Chart": [""], - "Superset Embedded SDK documentation.": [""], - "Superset chart": [""], - "Superset dashboard": [""], - "Superset encountered an error while running a command.": [""], - "Superset encountered an unexpected error.": [""], - "Supported databases": [""], - "Survey Responses": [""], - "Swap rows and columns": [""], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" - ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "" - ], + "Stepped Line": [""], + "Id": [""], + "Name of the id column": [""], + "Parent": [""], + "Name of the column containing the id of the parent node": [""], + "Optional name of the data column.": [""], + "Root node id": [""], + "Id of root node of the tree.": [""], + "Metric for node values": [""], + "Tree layout": [""], + "Orthogonal": [""], + "Radial": [""], + "Layout type of tree": [""], + "Tree orientation": [""], + "Left to Right": [""], + "Right to Left": [""], + "Top to Bottom": [""], + "Bottom to Top": [""], + "Orientation of tree": [""], + "Node label position": [""], + "left": [""], + "top": [""], + "right": [""], + "bottom": [""], + "Position of intermediate node label on tree": [""], + "Child label position": [""], + "Position of child node label on tree": [""], + "Emphasis": [""], + "ancestor": [""], + "descendant": [""], + "Which relatives to highlight on hover": [""], "Symbol": [""], - "Symbol of two ends of edge line": [""], + "Empty circle": [""], + "Circle": [""], + "Rectangle": [""], + "Triangle": [""], + "Diamond": [""], + "Pin": [""], + "Arrow": [""], "Symbol size": [""], - "Sync columns from source": [""], - "Syntax": [""], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ - "" - ], - "TABLES": [""], - "TEMPORAL X-AXIS": [""], - "TEMPORAL_RANGE": [""], - "THU": [""], - "TUE": [""], - "Tab name": [""], - "Tab title": [""], - "Table": [""], - "Table %(table)s wasn't found in the database %(db)s": [""], - "Table Exists": [""], - "Table Name": [""], - "Table View": [""], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "" - ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "" - ], - "Table cache timeout": [""], - "Table columns": [""], - "Table loading": [""], - "Table name cannot contain a schema": [""], - "Table name undefined": [""], - "Table or View \"%(table)s\" does not exist.": [""], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Size of edge symbols": [""], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ "" ], - "Tables": [""], - "Tabs": [""], - "Tabular": [""], - "Tag could not be created.": [""], - "Tag could not be deleted.": [""], - "Tag name is invalid (cannot contain ':')": [""], - "Tag parameters are invalid.": [""], - "Tagged Object could not be deleted.": [""], - "Tags": [""], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Tree Chart": [""], + "Show Upper Labels": [""], + "Show labels when the node has children.": [""], + "Key": [""], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ "" ], - "Target": [""], - "Target Color": [""], - "Target category": [""], - "Target value": [""], - "Template Name": [""], - "Template parameters": [""], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Treemap": [""], + "Total": [""], + "Assist": [""], + "Increase": [""], + "Decrease": [""], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ "" ], - "Test Connection": [""], - "Test connection": [""], - "Text": [""], - "Text align": [""], - "Text embedded in email": [""], - "The API response from %s does not match the IDatabaseTable interface.": [ + "page_size.all": [""], + "Loading...": [""], + "Write a handlebars template to render the data": [""], + "Handlebars": [""], + "must have a value": [""], + "Handlebars Template": [""], + "A handlebars template that is applied to the data": [""], + "Include time": [""], + "Whether to include the time granularity as defined in the time section": [ "" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "Percentage metrics": [""], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ "" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "Show totals": [""], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" - ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "Ordering": [""], + "Order results by selected columns": [""], + "Sort descending": [""], + "Server pagination": [""], + "Enable server side pagination of results (experimental feature)": [""], + "Server Page Length": [""], + "Rows per page, 0 means no pagination": [""], + "Query mode": [""], + "Group By, Metrics or Percentage Metrics must have a value": [""], + "You need to configure HTML sanitization to use CSS": [""], + "CSS Styles": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Range for Comparison": [""], + "Filters for Comparison": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [""], + "Rows": [""], + "Columns to group by on the rows": [""], + "Apply metrics on": [""], + "Use metrics as a top level group for columns or for rows": [""], + "Cell limit": [""], + "Limits the number of cells that get retrieved.": [""], + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "The access requests seem to have been deleted": [""], - "The annotation has been saved": [""], - "The annotation has been updated": [""], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Aggregation function": [""], + "Count": [""], + "Count Unique Values": [""], + "List Unique Values": [""], + "Sum": [""], + "Median": [""], + "Sample Variance": [""], + "Sample Standard Deviation": [""], + "Minimum": [""], + "Maximum": [""], + "First": [""], + "Last": [""], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ "" ], - "The chart datasource does not exist": [""], - "The chart does not exist": [""], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Show rows total": [""], + "Display row level total": [""], + "Show rows subtotal": [""], + "Display row level subtotal": [""], + "Show columns total": [""], + "Display column level total": [""], + "Show columns subtotal": [""], + "Display column level subtotal": [""], + "Transpose pivot": [""], + "Swap rows and columns": [""], + "Combine metrics": [""], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ "" ], - "The color for points and clusters in RGB": [""], - "The color scheme for rendering chart": [""], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "D3 time format for datetime columns": [""], + "Sort rows by": [""], + "key a-z": [""], + "key z-a": [""], + "value ascending": [""], + "value descending": [""], + "Change order of rows.": [""], + "Available sorting modes:": [""], + "By key: use row names as sorting key": [""], + "By value: use metric values as sorting key": [""], + "Sort columns by": [""], + "Change order of columns.": [""], + "By key: use column names as sorting key": [""], + "Rows subtotal position": [""], + "Position of row level subtotal": [""], + "Columns subtotal position": [""], + "Position of column level subtotal": [""], + "Conditional formatting": [""], + "Apply conditional color formatting to metrics": [""], + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], - "The column header label": [""], - "The column was deleted or renamed in the database.": [""], - "The country code standard that Superset should expect to find in the [country] column": [ + "Pivot Table": [""], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "No matching records found": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": [""], + "Timestamp format": [""], + "Page length": [""], + "Search box": [""], + "Whether to include a client-side search box": [""], + "Cell bars": [""], + "Whether to display a bar chart background in table columns": [""], + "Align +/-": [""], + "Whether to align background charts with both positive and negative values at 0": [ "" ], - "The dashboard has been saved": [""], - "The data source seems to have been deleted": [""], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Color +/-": [""], + "Whether to colorize numeric values by whether they are positive or negative": [ "" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "" ], - "The database columns that contains lines information": [""], - "The database could not be found": [""], - "The database is currently running too many queries.": [""], - "The database is under an unusual load.": [""], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "Customize columns": [""], + "Further customize how to display each column": [""], + "Apply conditional color formatting to numeric columns": [""], + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ "" ], - "The database returned an unexpected error.": [""], - "The database was deleted.": [""], - "The database was not found.": [""], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Show": [""], + "entries": [""], + "Word Cloud": [""], + "Minimum Font Size": [""], + "Font size for the smallest value in the list": [""], + "Maximum Font Size": [""], + "Font size for the biggest value in the list": [""], + "Word Rotation": [""], + "random": [""], + "square": [""], + "Rotation to apply to words in the cloud": [""], + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ "" ], - "The dataset associated with this chart no longer exists": [""], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "N/A": [""], + "offline": [""], + "failed": [""], + "pending": [""], + "fetching": [""], + "running": [""], + "stopped": [""], + "success": [""], + "The query couldn't be loaded": [""], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "" ], - "The dataset has been saved": [""], - "The dataset linked to this chart may have been deleted.": [""], - "The datasource couldn't be loaded": [""], - "The datasource is too large to query.": [""], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Your query could not be scheduled": [""], + "Failed at retrieving results": [""], + "Unknown error": [""], + "Query was stopped.": [""], + "Failed at stopping query. %s": [""], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The distance between cells, in pixels": [""], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The encoding format of the lines": [""], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ "" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Unable to add a new tab to the backend. Please contact your administrator.": [ "" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [""], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ "" ], - "The host might be down, and can't be reached on the provided port.": [ + "Copy of %s": [""], + "An error occurred while setting the active tab. Please contact your administrator.": [ "" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [""], - "The hostname provided can't be resolved.": [""], - "The id of the active chart": [""], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "An error occurred while fetching tab state": [""], + "An error occurred while removing tab. Please contact your administrator.": [ "" ], - "The maximum number of events to return, equivalent to the number of rows": [ + "An error occurred while removing query. Please contact your administrator.": [ "" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ + "Your query could not be saved": [""], + "Your query was not properly saved": [""], + "Your query was saved": [""], + "Your query was updated": [""], + "Your query could not be updated": [""], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "" ], - "The maximum value of metrics. It is an optional configuration": [""], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "An error occurred while fetching table metadata. Please contact your administrator.": [ "" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "An error occurred while expanding the table schema. Please contact your administrator.": [ "" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "An error occurred while collapsing the table schema. Please contact your administrator.": [ "" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "An error occurred while removing the table schema. Please contact your administrator.": [ "" ], - "The number color \"steps\"": [""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Shared query": [""], + "The datasource couldn't be loaded": [""], + "An error occurred while creating the data source": [""], + "An error occurred while fetching function names.": [""], + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ "" ], + "Primary key": [""], + "Foreign key": [""], + "Index": [""], + "Estimate selected query cost": [""], + "Estimate cost": [""], + "Cost estimate": [""], + "Creating a data source and creating a new tab": [""], + "An error occurred": [""], + "Explore the result set in the data exploration view": [""], + "explore": [""], + "Create Chart": [""], + "Source SQL": [""], + "Executed SQL": [""], + "Run query": [""], + "Run current query": [""], + "Stop query": [""], + "New tab": [""], + "Previous Line": [""], + "Format SQL": [""], + "Find": [""], + "Keyboard shortcuts": [""], + "Run a query to display query history": [""], + "LIMIT": [""], + "State": [""], + "Started": [""], + "Duration": [""], + "Results": [""], + "Actions": [""], + "Success": [""], + "Failed": [""], + "Running": [""], + "Fetching": [""], + "Offline": [""], + "Scheduled": [""], + "Unknown Status": [""], + "Edit": [""], + "View": [""], + "Data preview": [""], + "Overwrite text in the editor with a query on this table": [""], + "Run query in a new tab": [""], + "Remove query from log": [""], + "Unable to create chart without a query id.": [""], + "Save & Explore": [""], + "Overwrite & Explore": [""], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": [""], + "Copy to Clipboard": [""], + "Filter results": [""], "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "" ], "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "" - ], + "The number of rows displayed is limited to %(rows)d by the query": [""], "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "" ], - "The number of rows displayed is limited to %(rows)d by the query": [""], "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ "" ], - "The number of seconds before expiring the cache": [""], - "The object does not exist in the given database.": [""], - "The parameter %(parameters)s in your query is undefined.": [ - "", - "The following parameters in your query are undefined: %(parameters)s.", - "The following parameters in your query are undefined: %(parameters)s." - ], - "The password provided for username \"%(username)s\" is incorrect.": [""], - "The password provided when connecting to a database is not valid.": [""], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "%(rows)d rows returned": [""], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Track job": [""], + "Query was stopped": [""], + "Database error": [""], + "was created": [""], + "Query in a new tab": [""], + "The query returned no data": [""], + "Fetch data preview": [""], + "Refetch results": [""], + "Stop": [""], + "Run selection": [""], + "Run": [""], + "Stop running (Ctrl + x)": [""], + "Stop running (Ctrl + e)": [""], + "Run query (Ctrl + Return)": [""], + "Save": [""], + "Untitled Dataset": [""], + "An error occurred saving dataset": [""], + "Save or Overwrite Dataset": [""], + "Back": [""], + "Save as new": [""], + "Overwrite existing": [""], + "Select or type dataset name": [""], + "Existing dataset": [""], + "Are you sure you want to overwrite this dataset?": [""], + "Undefined": [""], + "Save as": [""], + "Save query": [""], + "Cancel": [""], + "Update": [""], + "Label for your query": [""], + "Write a description for your query": [""], + "Submit": [""], + "Schedule query": [""], + "Schedule": [""], + "There was an error with your request": [""], + "Please save the query to enable sharing": [""], + "Copy query link to your clipboard": [""], + "Save the query to enable this feature": [""], + "Copy link": [""], + "No stored results found, you need to re-run your query": [""], + "Run a query to display results": [""], + "Preview: `%s`": [""], + "Query history": [""], + "Schedule the query periodically": [""], + "You must run the query successfully first": [""], + "Autocomplete": [""], + "CREATE TABLE AS": [""], + "CREATE VIEW AS": [""], + "Estimate the cost before running a query": [""], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": [""], + "Choose one of the available databases from the panel on the left.": [""], + "Create": [""], + "Collapse table preview": [""], + "Expand table preview": [""], + "Reset state": [""], + "Enter a new title for the tab": [""], + "Close tab": [""], + "Rename tab": [""], + "Expand tool bar": [""], + "Hide tool bar": [""], + "Close all other tabs": [""], + "Duplicate tab": [""], + "Add a new tab": [""], + "New tab (Ctrl + q)": [""], + "New tab (Ctrl + t)": [""], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [""], + "Copy partition query to clipboard": [""], + "latest partition:": [""], + "Keys for table": [""], + "View keys & indexes (%s)": [""], + "Original table column order": [""], + "Sort columns alphabetically": [""], + "Copy SELECT statement to the clipboard": [""], + "Show CREATE VIEW statement": [""], + "CREATE VIEW statement": [""], + "Remove table preview": [""], + "Assign a set of parameters as": [""], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "Jinja templating": [""], + "syntax.": [""], + "Edit template parameters": [""], + "Parameters ": [""], + "Invalid JSON": [""], + "Untitled query": [""], + "%s%s": [""], + "Control": [""], + "Before": [""], + "After": [""], + "Click to see difference": [""], + "Altered": [""], + "Chart changes": [""], + "Modified by: %s": [""], + "Loaded data cached": [""], + "Loaded from cache": [""], + "Click to force-refresh": [""], + "Cached": [""], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ "" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "click here": [""], + "No results were returned for this query": [""], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ "" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "An error occurred while loading the SQL": [""], + "Sorry, an error occurred": [""], + "Updating chart was stopped": [""], + "An error occurred while rendering the visualization: %s": [""], + "Network error.": [""], + "Cross-filter will be applied to all of the charts that use this dataset.": [ "" ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "You can also just click on the chart to apply cross-filter.": [""], + "Cross-filtering is not enabled for this dashboard.": [""], + "This visualization type does not support cross-filtering.": [""], + "You can't apply cross-filter on this data point.": [""], + "Remove cross-filter": [""], + "Add cross-filter": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Search columns": [""], + "No columns found": [""], + "Failed to generate chart edit URL": [""], + "You do not have sufficient permissions to edit the chart": [""], + "Close": [""], + "Failed to load chart data.": [""], + "Drill by: %s": [""], + "There was an error loading the chart data": [""], + "Results %s": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "The pattern of timestamp format. For strings use ": [""], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Drill to detail by value is not yet supported for this chart type.": [ "" ], - "The pixel radius": [""], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Right-click on a dimension value to drill to detail by that value.": [ "" ], - "The port is closed.": [""], - "The port number is invalid.": [""], - "The primary metric is used to define the arc segment sizes": [""], - "The provided `rows` argument is not a valid integer.": [""], - "The query associated with the results was deleted.": [""], - "The query associated with these results could not be found. You need to re-run the original query.": [ + "Drill to detail: %s": [""], + "Formatting": [""], + "Formatted value": [""], + "No rows were returned for this dataset": [""], + "Reload": [""], + "Copy": [""], + "Copy to clipboard": [""], + "Copied to clipboard!": [""], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [""], + "every": [""], + "every month": [""], + "every day of the month": [""], + "day of the month": [""], + "every day of the week": [""], + "day of the week": [""], + "every hour": [""], + "every minute": [""], + "minute": [""], + "reboot": [""], + "Every": [""], + "in": [""], + "on": [""], + "and": [""], + "at": [""], + ":": [""], + "minute(s)": [""], + "Invalid cron expression": [""], + "Clear": [""], + "Sunday": [""], + "Monday": [""], + "Tuesday": [""], + "Wednesday": [""], + "Thursday": [""], + "Friday": [""], + "Saturday": [""], + "January": [""], + "February": [""], + "March": [""], + "April": [""], + "May": [""], + "June": [""], + "July": [""], + "August": [""], + "September": [""], + "October": [""], + "November": [""], + "December": [""], + "SUN": [""], + "MON": [""], + "TUE": [""], + "WED": [""], + "THU": [""], + "FRI": [""], + "SAT": [""], + "JAN": [""], + "FEB": [""], + "MAR": [""], + "APR": [""], + "MAY": [""], + "JUN": [""], + "JUL": [""], + "AUG": [""], + "SEP": [""], + "OCT": [""], + "NOV": [""], + "DEC": [""], + "There was an error loading the schemas": [""], + "Select database or type to search databases": [""], + "Force refresh schema list": [""], + "Select schema or type to search schemas": [""], + "No compatible schema found": [""], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ "" ], - "The query contains one or more malformed template parameters.": [""], - "The query couldn't be loaded": [""], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ "" ], - "The query has a syntax error.": [""], - "The query returned no data": [""], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "dataset": [""], + "Successfully changed dataset!": [""], + "Connection": [""], + "Proceed": [""], + "Warning!": [""], + "Search / Filter": [""], + "Add item": [""], + "STRING": [""], + "NUMERIC": [""], + "DATETIME": [""], + "BOOLEAN": [""], + "Physical (table or view)": [""], + "Virtual (SQL)": [""], + "Data type": [""], + "Advanced data type": [""], + "Advanced Data type": [""], + "Datetime format": [""], + "The pattern of timestamp format. For strings use ": [""], + "Python datetime string pattern": [""], + " expression which needs to adhere to the ": [""], + "ISO 8601": [""], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ "" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "" - ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "" - ], - "The report has been created": [""], - "The results backend no longer has the data from the query.": [""], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "" - ], - "The rich tooltip shows a list of all series for that point in time": [ - "" - ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Certified By": [""], + "Person or group that has certified this metric": [""], + "Certified by": [""], + "Certification details": [""], + "Details of the certification": [""], + "Is dimension": [""], + "Default datetime": [""], + "Is filterable": [""], + "": [""], + "Select owners": [""], + "Modified columns: %s": [""], + "Removed columns: %s": [""], + "New columns added: %s": [""], + "Metadata has been synced": [""], + "An error has occurred": [""], + "Column name [%s] is duplicated": [""], + "Metric name [%s] is duplicated": [""], + "Calculated column [%s] requires an expression": [""], + "Invalid currency code in saved metrics": [""], + "Basic": [""], + "Default URL": [""], + "Default URL to redirect to when accessing from the dataset list page": [ "" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Autocomplete filters": [""], + "Whether to populate autocomplete filters options": [""], + "Autocomplete query predicate": [""], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ "" ], - "The schema was deleted or renamed in the database.": [""], - "The size of the square cell, in pixels": [""], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ "" ], - "The submitted payload has the incorrect format.": [""], - "The submitted payload has the incorrect schema.": [""], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Cache timeout": [""], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ "" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Hours offset": [""], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Normalize column names": [""], + "Always filter main datetime column": [""], + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ "" ], - "The table was deleted or renamed in the database.": [""], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "": [""], + "": [""], + "Click the lock to make changes.": [""], + "Click the lock to prevent further changes.": [""], + "virtual": [""], + "Dataset name": [""], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Physical": [""], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ "" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Metric Key": [""], + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ "" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "D3 format": [""], + "Metric currency": [""], + "Select or type currency symbol": [""], + "Warning": [""], + "Optional warning about use of this metric": [""], + "": [""], + "Be careful.": [""], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ "" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Sync columns from source": [""], + "Calculated columns": [""], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ "" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "": [""], + "Settings": [""], + "The dataset has been saved": [""], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ "" ], - "The time unit used for the grouping of blocks": [""], - "The type of visualization to display": [""], - "The unit of measure for the specified point radius": [""], - "The user seems to have been deleted": [""], - "The user/password combination is not valid (Incorrect password for user).": [ + "Are you sure you want to save and apply changes?": [""], + "Confirm save": [""], + "OK": [""], + "Edit Dataset ": [""], + "Use legacy datasource editor": [""], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The username \"%(username)s\" does not exist.": [""], - "The username provided when connecting to a database is not valid.": [""], - "The way the ticks are laid out on the X-axis": [""], - "The width of the lines": [""], - "There are associated alerts or reports": [""], - "There are associated alerts or reports: %s,": [""], - "There are no charts added to this dashboard": [""], - "There are no components added to this tab": [""], + "DELETE": [""], + "delete": [""], + "Type \"%s\" to confirm": [""], + "More": [""], + "Click to edit": [""], + "You don't have the rights to alter this title.": [""], + "No databases match your search": [""], "There are no databases available": [""], - "There are no filters in this dashboard.": [""], - "There are unsaved changes.": [""], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "" - ], - "There is no chart definition associated with this component, could it have been deleted?": [ + "Manage your databases": [""], + "here": [""], + "Unexpected error": [""], + "This may be triggered by:": [""], + "%(message)s\nThis may be triggered by: \n%(issues)s": [""], + "%s Error": [""], + "Missing dataset": [""], + "See more": [""], + "See less": [""], + "Copy message": [""], + "Details": [""], + "Did you mean:": [""], + "Parameter error": [""], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [""], + "Timeout error": [""], + "Click to favorite/unfavorite": [""], + "Cell content": [""], + "Hide password.": [""], + "Show password.": [""], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ "" ], + "OVERWRITE": [""], + "Database passwords": [""], + "%s PASSWORD": [""], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": [""], + "Import": [""], + "Import %s": [""], + "Select file": [""], + "Last Updated %s": [""], + "Sort": [""], + "+ %s more": [""], + "%s Selected": [""], + "Deselect all": [""], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "clear all filters": [""], + "No Data": [""], + "%s-%s of %s": [""], + "Start date": [""], + "End date": [""], + "Type a value": [""], + "Filter": [""], + "Select or type a value": [""], + "Last modified": [""], + "Modified by": [""], + "Created by": [""], + "Created on": [""], + "Menu actions trigger": [""], + "Select ...": [""], + "Filter menu": [""], + "Reset": [""], + "No filters": [""], + "Select all items": [""], + "Search in filters": [""], + "Select current page": [""], + "Invert current page": [""], + "Clear all data": [""], + "Select all data": [""], + "Expand row": [""], + "Collapse row": [""], + "Click to sort descending": [""], + "Click to sort ascending": [""], + "Click to cancel sorting": [""], + "List updated": [""], + "There was an error loading the tables": [""], + "See table schema": [""], + "Select table or type to search tables": [""], + "Force refresh table list": [""], + "You do not have permission to read tags": [""], + "Timezone selector": [""], + "Failed to save cross-filter scoping": [""], "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ "" ], - "There was an error fetching dataset": [""], - "There was an error fetching dataset's related objects": [""], - "There was an error fetching tables": [""], - "There was an error fetching the favorite status: %s": [""], - "There was an error fetching your recent activity:": [""], - "There was an error loading the chart data": [""], - "There was an error loading the dataset metadata": [""], - "There was an error loading the schemas": [""], - "There was an error loading the tables": [""], - "There was an error saving the favorite status: %s": [""], - "There was an error with your request": [""], - "There was an issue deleting %s: %s": [""], - "There was an issue deleting rules: %s": [""], - "There was an issue deleting the selected %s: %s": [""], - "There was an issue deleting the selected annotations: %s": [""], - "There was an issue deleting the selected charts: %s": [""], - "There was an issue deleting the selected dashboards: ": [""], - "There was an issue deleting the selected datasets: %s": [""], - "There was an issue deleting the selected layers: %s": [""], - "There was an issue deleting the selected queries: %s": [""], - "There was an issue deleting the selected templates: %s": [""], - "There was an issue deleting: %s": [""], - "There was an issue duplicating the dataset.": [""], - "There was an issue duplicating the selected datasets: %s": [""], - "There was an issue favoriting this dashboard.": [""], - "There was an issue fetching reports attached to this dashboard.": [""], + "Can not move top level tab into nested tabs": [""], + "This chart has been moved to a different filter scope.": [""], "There was an issue fetching the favorite status of this dashboard.": [ "" ], - "There was an issue fetching your chart: %s": [""], - "There was an issue fetching your dashboards: %s": [""], - "There was an issue fetching your recent activity: %s": [""], - "There was an issue fetching your saved queries: %s": [""], - "There was an issue previewing the selected query %s": [""], - "There was an issue previewing the selected query. %s": [""], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "" - ], - "These are the tables this filter will be applied to.": [""], - "These filters apply to the values available in the dropdowns": [""], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "" - ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "" - ], - "This action will permanently delete %s.": [""], - "This action will permanently delete the layer.": [""], - "This action will permanently delete the saved query.": [""], - "This action will permanently delete the template.": [""], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "There was an issue favoriting this dashboard.": [""], + "This dashboard is now published": [""], + "This dashboard is now hidden": [""], + "You do not have permissions to edit this dashboard.": [""], + "[ untitled dashboard ]": [""], + "This dashboard was saved successfully.": [""], + "Sorry, an unknown error occurred": [""], + "Sorry, there was an error saving this dashboard: %s": [""], + "You do not have permission to edit this dashboard": [""], + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Could not fetch all saved charts": [""], + "Sorry there was an error fetching saved charts: ": [""], + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "" ], - "This chart has been moved to a different filter scope.": [""], - "This chart is managed externally, and can't be edited in Superset": [""], - "This chart might be incompatible with the filter (datasets don't match)": [ + "You have unsaved changes.": [""], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ "" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Create a new chart": [""], + "Drag and drop components to this tab": [""], + "There are no components added to this tab": [""], + "You can add the components in the edit mode.": [""], + "There is no chart definition associated with this component, could it have been deleted?": [ "" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Delete this container and save to remove this message.": [""], + "Refresh interval saved": [""], + "Refresh interval": [""], + "Refresh frequency": [""], + "Are you sure you want to proceed?": [""], + "Save for this session": [""], + "You must pick a name for the new dashboard": [""], + "Save dashboard": [""], + "Overwrite Dashboard [%s]": [""], + "Save as:": [""], + "[dashboard name]": [""], + "also copy (duplicate) charts": [""], + "viz type": [""], + "recent": [""], + "Create new chart": [""], + "Filter your charts": [""], + "Sort by %s": [""], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ "" ], - "This column might be incompatible with current dataset": [""], - "This column must contain date/time information.": [""], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Added": [""], + "Unknown type": [""], + "Viz type": [""], + "Dataset": [""], + "Superset chart": [""], + "Check out this chart in dashboard:": [""], + "Layout elements": [""], + "Load a CSS template": [""], + "Live CSS editor": [""], + "Collapse tab content": [""], + "There are no charts added to this dashboard": [""], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "Sorry, something went wrong. Embedding could not be deactivated.": [""], + "Sorry, something went wrong. Please try again.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Configure this dashboard to embed it into an external web application.": [ "" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "" ], - "This dashboard is managed externally, and can't be edited in Superset": [ + "Deactivate": [""], + "Save changes": [""], + "Enable embedding": [""], + "Embed": [""], + "Applied cross-filters (%d)": [""], + "Applied filters (%d)": [""], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ "" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Your dashboard is too large. Please reduce its size before saving it.": [ "" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Add the name of the dashboard": [""], + "Undo the action": [""], + "Redo the action": [""], + "Discard": [""], + "Edit dashboard": [""], + "An error occurred while fetching available CSS templates": [""], + "Refreshing charts": [""], + "Superset dashboard": [""], + "Check out this dashboard: ": [""], + "Refresh dashboard": [""], + "Exit fullscreen": [""], + "Enter fullscreen": [""], + "Edit properties": [""], + "Edit CSS": [""], + "Download": [""], + "Export to PDF": [""], + "Download as Image": [""], + "Share": [""], + "Copy permalink to clipboard": [""], + "Share permalink by email": [""], + "Manage email report": [""], + "Set filter mapping": [""], + "Set auto-refresh interval": [""], + "Confirm overwrite": [""], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Yes, overwrite changes": [""], + "Are you sure you intend to overwrite the following values?": [""], + "Last Updated %s by %s": [""], + "Apply": [""], + "Error": [""], + "A valid color scheme is required": [""], + "JSON metadata is invalid!": [""], + "Dashboard properties updated": [""], + "The dashboard has been saved": [""], + "Access": [""], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ "" ], - "This dashboard is now hidden": [""], - "This dashboard is now published": [""], - "This dashboard is published. Click to make it a draft.": [""], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Colors": [""], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ + "Dashboard properties": [""], + "This dashboard is managed externally, and can't be edited in Superset": [ "" ], - "This dashboard was saved successfully.": [""], - "This database is managed externally, and can't be edited in Superset": [ + "Basic information": [""], + "URL slug": [""], + "A readable URL for your dashboard": [""], + "Certification": [""], + "Person or group that has certified this dashboard.": [""], + "Any additional detail to show in the certification tooltip.": [""], + "A list of tags that have been applied to this chart.": [""], + "JSON metadata": [""], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "This dashboard is published. Click to make it a draft.": [""], + "Draft": [""], + "Annotation layers are still loading.": [""], + "One ore more annotation layers failed loading.": [""], + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [""], - "This defines the level of the hierarchy": [""], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Data refreshed": [""], + "Cached %s": [""], + "Fetched %s": [""], + "Query %s: %s": [""], + "Force refresh": [""], + "Hide chart description": [""], + "Show chart description": [""], + "Cross-filtering scoping": [""], + "View query": [""], + "View as table": [""], + "Share chart by email": [""], + "Check out this chart: ": [""], + "Export to .CSV": [""], + "Export to Excel": [""], + "Export to full .CSV": [""], + "Export to full Excel": [""], + "Download as image": [""], + "Something went wrong.": [""], + "Search...": [""], + "No filter is selected.": [""], + "Editing 1 filter:": [""], + "Batch editing %d filters:": [""], + "Configure filter scopes": [""], + "There are no filters in this dashboard.": [""], + "Expand all": [""], + "Collapse all": [""], + "An error occurred while opening Explore": [""], + "Empty column": [""], + "This markdown component has an error.": [""], + "This markdown component has an error. Please revert your recent changes.": [ "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [""], - "This filter might be incompatible with current dataset": [""], - "This filter set is identical to: \"%s\"": [""], - "This functionality is disabled in your environment for security reasons.": [ + "Empty row": [""], + "You can": [""], + "create a new chart": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "edit mode": [""], + "Delete dashboard tab?": [""], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "undo": [""], + "button (cmd + z) until you save your changes.": [""], + "CANCEL": [""], + "Divider": [""], + "Header": [""], + "Text": [""], + "Tabs": [""], + "background": [""], + "Preview": [""], + "Sorry, something went wrong. Try again later.": [""], + "Unknown value": [""], + "Add/Edit Filters": [""], + "No filters are currently added to this dashboard.": [""], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ "" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Apply filters": [""], + "Clear all": [""], + "Locate the chart": [""], + "Cross-filters": [""], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Cross-filtering is not enabled in this dashboard": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This markdown component has an error.": [""], - "This markdown component has an error. Please revert your recent changes.": [ + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ "" ], - "This may be triggered by:": [""], - "This metric might be incompatible with current dataset": [""], - "This section allows you to configure how to use the slice\n to generate annotations.": [ + "All charts": [""], + "Enable cross-filtering": [""], + "Orientation of filter bar": [""], + "Vertical (Left)": [""], + "Horizontal (Top)": [""], + "More filters": [""], + "No applied filters": [""], + "Applied filters: %s": [""], + "Cannot load filter": [""], + "Filters out of scope (%d)": [""], + "Dependent on": [""], + "Filter only displays values relevant to selections made in other filters.": [ "" ], - "This section contains options that allow for advanced analytical post processing of query results": [ + "Scope": [""], + "Filter type": [""], + "Title is required": [""], + "(Removed)": [""], + "Undo?": [""], + "Add filters and dividers": [""], + "[untitled]": [""], + "Cyclic dependency detected": [""], + "Add and edit filters": [""], + "Column select": [""], + "Select a column": [""], + "No compatible columns found": [""], + "No compatible datasets found": [""], + "Value is required": [""], + "(deleted or invalid type)": [""], + "Limit type": [""], + "No available filters.": [""], + "Add filter": [""], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ "" ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Values dependent on": [""], + "Scoping": [""], + "Filter Configuration": [""], + "Filter Settings": [""], + "Select filter": [""], + "Range filter": [""], + "Numerical range": [""], + "Time filter": [""], + "Time range": [""], + "Time column": [""], + "Time grain": [""], + "Group By": [""], + "Group by": [""], + "Pre-filter is required": [""], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": [""], + "Name is required": [""], + "Filter Type": [""], + "Datasets do not contain a temporal column": [""], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Dataset is required": [""], + "Pre-filter available values": [""], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ "" ], - "This value should be greater than the left target value": [""], - "This value should be smaller than the right target value": [""], - "This visualization type does not support cross-filtering.": [""], - "This visualization type is not supported.": [""], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [""], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": [""], - "Time": [""], - "Time Column": [""], - "Time Comparison": [""], - "Time Format": [""], - "Time Grain": [""], - "Time Granularity": [""], - "Time Lag": [""], - "Time Range": [""], - "Time Ratio": [""], - "Time Series": [""], - "Time Series - Bar Chart": [""], - "Time Series - Line Chart": [""], - "Time Series - Nightingale Rose Chart": [""], - "Time Series - Paired t-test": [""], - "Time Series - Percent Change": [""], - "Time Series - Period Pivot": [""], - "Time Series - Stacked": [""], - "Time Series Options": [""], - "Time Shift": [""], - "Time Table View": [""], - "Time column": [""], - "Time column \"%(col)s\" does not exist in dataset": [""], - "Time column filter plugin": [""], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": [""], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Pre-filter": [""], + "No filter": [""], + "Sort filter values": [""], + "Sort type": [""], + "Sort ascending": [""], + "Sort Metric": [""], + "If a metric is specified, sorting will be done based on the metric value": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Sort metric": [""], + "Single Value": [""], + "Single value type": [""], + "Exact": [""], + "Filter has default value": [""], + "Default Value": [""], + "Default value is required": [""], + "Refresh the default values": [""], + "Fill all required fields to enable \"Default Value\"": [""], + "You have removed this filter.": [""], + "Restore Filter": [""], + "Column is required": [""], + "Populate \"Default value\" to enable this control": [""], + "Default value set automatically when \"Select first filter value by default\" is checked": [ "" ], - "Time filter": [""], - "Time format": [""], - "Time grain": [""], - "Time grain filter plugin": [""], - "Time grain missing": [""], - "Time granularity": [""], - "Time in seconds": [""], - "Time lag": [""], - "Time range": [""], - "Time ratio": [""], - "Time related form attributes": [""], - "Time series": [""], - "Time series columns": [""], - "Time shift": [""], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Default value must be set when \"Filter value is required\" is checked": [ "" ], - "Time-series Area Chart": [""], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "Default value must be set when \"Filter has default value\" is checked": [ "" ], - "Time-series Bar Chart": [""], - "Time-series Bar Chart (legacy)": [""], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Apply to all panels": [""], + "Apply to specific panels": [""], + "Only selected panels will be affected by this filter": [""], + "All panels with this column will be affected by this filter": [""], + "All panels": [""], + "This chart might be incompatible with the filter (datasets don't match)": [ "" ], - "Time-series Chart": [""], - "Time-series Line Chart": [""], - "Time-series Percent Change": [""], - "Time-series Period Pivot": [""], - "Time-series Scatter Plot": [""], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Keep editing": [""], + "Yes, cancel": [""], + "There are unsaved changes.": [""], + "Are you sure you want to cancel?": [""], + "Error loading chart datasources. Filters may not work correctly.": [""], + "Transparent": [""], + "White": [""], + "All filters": [""], + "Click to edit %s.": [""], + "Click to edit chart.": [""], + "Use %s to open in a new tab.": [""], + "Medium": [""], + "New header": [""], + "Tab title": [""], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "Time-series Smooth Line": [""], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Equal to (=)": [""], + "Not equal to (≠)": [""], + "Less than (<)": [""], + "Less or equal (<=)": [""], + "Greater than (>)": [""], + "Greater or equal (>=)": [""], + "In": [""], + "Not in": [""], + "Like": [""], + "Like (case insensitive)": [""], + "Is not null": [""], + "Is null": [""], + "use latest_partition template": [""], + "Is true": [""], + "Is false": [""], + "TEMPORAL_RANGE": [""], + "Time granularity": [""], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [""], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ "" ], - "Time-series Stepped Line": [""], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "One or many metrics to display": [""], + "Fixed color": [""], + "Right axis metric": [""], + "Choose a metric for right axis": [""], + "Linear color scheme": [""], + "Color metric": [""], + "One or many controls to pivot as columns": [""], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ "" ], - "Time-series Table": [""], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "" ], - "Timeout error": [""], - "Timestamp format": [""], - "Timezone": [""], - "Timezone offset (in hours) for this datasource": [""], - "Timezone selector": [""], - "Tiny": [""], - "Title": [""], - "Title Column": [""], - "Title is required": [""], - "Title or Slug": [""], - "To filter on a metric, use Custom SQL tab.": [""], - "To get a readable URL for your dashboard": [""], - "Tools": [""], - "Tooltip": [""], - "Tooltip sort by metric": [""], - "Tooltip time format": [""], - "Top": [""], - "Top left": [""], - "Top right": [""], - "Top to Bottom": [""], - "Total": [""], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Total: %s": [""], - "Totals": [""], - "Track job": [""], - "Transformable": [""], - "Transparent": [""], - "Transpose pivot": [""], - "Tree Chart": [""], - "Tree layout": [""], - "Tree orientation": [""], - "Treemap": [""], - "Trend": [""], - "Triangle": [""], - "Trigger Alert If...": [""], - "Truncate Axis": [""], - "Truncate Cells": [""], - "Truncate Metric": [""], - "Truncate Y Axis": [""], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ + "Limits the number of rows that get displayed.": [""], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ "" ], - "Try applying different filters or ensuring your datasource has data": [ + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": [""], - "Tukey": [""], - "Type": [""], - "Type \"%s\" to confirm": [""], - "Type a value": [""], - "Type a value here": [""], - "Type is required": [""], - "Type of Google Sheets allowed": [""], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": [""], - "UI Configuration": [""], - "URL": [""], - "URL Parameters": [""], - "URL parameters": [""], - "URL slug": [""], - "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Metric assigned to the [X] axis": [""], + "Metric assigned to the [Y] axis": [""], + "Bubble size": [""], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [""], - "Unable to connect to database \"%(database)s\".": [""], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Color scheme": [""], + "An error occurred while starring this chart": [""], + "Chart [%s] has been saved": [""], + "Chart [%s] has been overwritten": [""], + "Dashboard [%s] just got created and chart [%s] was added to it": [""], + "Chart [%s] was added to dashboard [%s]": [""], + "GROUP BY": [""], + "Use this section if you want a query that aggregates": [""], + "NOT GROUPED BY": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [""], - "Unable to load columns for the selected table. Please select a different table.": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Continue": [""], + "Clear form": [""], + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Customize": [""], + "Generating link, please wait..": [""], + "Chart height": [""], + "Chart width": [""], + "An error occurred while loading dashboard information.": [""], + "Save (Overwrite)": [""], + "Save as...": [""], + "Chart name": [""], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": [""], + "Select": [""], + "create": [""], + " a new one": [""], + "A new chart and dashboard will be created.": [""], + "A new chart will be created.": [""], + "A new dashboard will be created.": [""], + "Save & go to dashboard": [""], + "Save chart": [""], + "Formatted date": [""], + "Column Formatting": [""], + "Collapse data panel": [""], + "Expand data panel": [""], + "Samples": [""], + "No samples were returned for this dataset": [""], + "No results": [""], + "Search Metrics & Columns": [""], + " to edit or add columns and metrics.": [""], + "Showing %s of %s": [""], + "Show less...": [""], + "Show all...": [""], + "Show Less...": [""], + "Unable to retrieve dashboard colors": [""], + "Not added to any dashboard": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ "" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "" - ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "" - ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "" - ], - "Undefined": [""], - "Undefined window for rolling operation": [""], - "Undo the action": [""], - "Undo?": [""], - "Unexpected error": [""], - "Unexpected error occurred, please check your logs for details": [""], - "Unexpected error: ": [""], - "Unexpected time range: %s": [""], - "Unknown": [""], - "Unknown MySQL server host \"%(hostname)s\".": [""], - "Unknown Presto Error": [""], - "Unknown Status": [""], - "Unknown column used in orderby: %(col)s": [""], - "Unknown error": [""], - "Unknown input format": [""], - "Unknown type": [""], - "Unknown value": [""], - "Unsafe return type for function %(func)s: %(value_type)s": [""], - "Unsafe template value for key %(key)s: %(value_type)s": [""], - "Unsupported clause type: %(clause)s": [""], - "Unsupported post processing operation: %(operation)s": [""], - "Unsupported return value for method %(name)s": [""], - "Unsupported template value for key %(key)s": [""], - "Unsupported time grain: %(time_grain)s": [""], - "Untitled Dataset": [""], - "Untitled Query": [""], - "Untitled query": [""], - "Update": [""], - "Update chart": [""], - "Updating chart was stopped": [""], - "Upload": [""], - "Upload CSV to database": [""], - "Upload Excel file to database": [""], - "Upload JSON file": [""], - "Upload columnar file": [""], - "Upload columnar file to database": [""], - "Upload file to database": [""], - "Use \"%(menuName)s\" menu instead.": [""], - "Use %s to open in a new tab.": [""], - "Use Area Proportions": [""], - "Use Columns": [""], - "Use a log scale": [""], - "Use a log scale for the X-axis": [""], - "Use a log scale for the Y-axis": [""], - "Use an encrypted connection to the database": [""], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "" - ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": [""], - "Use metrics as a top level group for columns or for rows": [""], - "Use only a single value.": [""], - "Use the Advanced Analytics options below": [""], - "Use the JSON file you automatically downloaded when creating your service account.": [ + "Not available": [""], + "Add the name of the chart": [""], + "Chart title": [""], + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ "" ], - "Use the edit button to change this field": [""], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [""], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "Your chart is not up to date": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "Controls labeled ": [""], + "Control labeled ": [""], + "Open Datasource tab": [""], + "Original": [""], + "Pivoted": [""], + "You do not have permission to edit this chart": [""], + "Chart properties updated": [""], + "Edit Chart Properties": [""], + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ "" ], - "User": [""], - "User Roles": [""], - "User doesn't have the proper permissions.": [""], - "User must select a value before applying the filter": [""], - "User must select a value for this filter": [""], - "User query": [""], - "Username": [""], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Person or group that has certified this chart.": [""], + "Configuration": [""], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ "" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "A list of users who can alter the chart. Searchable by name or username.": [ "" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Limit reached": [""], + "Create chart": [""], + "Update chart": [""], + "Invalid lat/long configuration.": [""], + "Reverse lat/long ": [""], + "Longitude & Latitude columns": [""], + "Delimited long & lat single column": [""], + "Multiple formats accepted, look the geopy.points Python library for more details": [ "" ], - "Value": [""], - "Value Domain": [""], - "Value Format": [""], - "Value bounds": [""], - "Value format": [""], - "Value is required": [""], - "Value must be greater than 0": [""], - "Values are dependent on other filters": [""], - "Values dependent on": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ + "Geohash": [""], + "textarea": [""], + "in modal": [""], + "Sorry, An error occurred": [""], + "Save as Dataset": [""], + "Open in SQL Lab": [""], + "Failed to verify select options: %s": [""], + "Annotation layer": [""], + "Select the Annotation Layer you would like to use.": [""], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "Vehicle Types": [""], - "Verbose Name": [""], - "Version": [""], - "Version number": [""], - "Vertical": [""], - "Vertical (Left)": [""], - "Video game consoles": [""], - "View": [""], - "View All »": [""], - "View all charts": [""], - "View as table": [""], - "View in SQL Lab": [""], - "View keys & indexes (%s)": [""], - "View query": [""], - "Viewed": [""], - "Viewed %s": [""], - "Viewport": [""], - "Virtual": [""], - "Virtual (SQL)": [""], - "Virtual dataset": [""], - "Virtual dataset query cannot be empty": [""], - "Virtual dataset query cannot consist of multiple statements": [""], - "Virtual dataset query must be read-only": [""], - "Visual Tweaks": [""], - "Visualization Type": [""], - "Visualization type": [""], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Bad formula.": [""], + "Annotation Slice Configuration": [""], + "This section allows you to configure how to use the slice\n to generate annotations.": [ "" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Interval start column": [""], + "Event time column": [""], + "This column must contain date/time information.": [""], + "Interval End column": [""], + "Title Column": [""], + "Pick a title for you annotation.": [""], + "Annotation layer description columns": [""], + "Description Columns": [""], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ "" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Override time range": [""], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Override time grain": [""], + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ + "Display configuration": [""], + "Configure your how you overlay is displayed here.": [""], + "Style": [""], + "Solid": [""], + "Long dashed": [""], + "Dotted": [""], + "Color": [""], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Hide Line": [""], + "Hides the Line for the time series": [""], + "Layer configuration": [""], + "Configure the basics of your Annotation Layer.": [""], + "Mandatory": [""], + "Hide layer": [""], + "Show label": [""], + "Whether to always show the annotation label": [""], + "Annotation layer type": [""], + "Choose the annotation layer type": [""], + "Choose the source of your annotations": [""], + "Remove": [""], + "Time series": [""], + "Edit annotation layer": [""], + "Add annotation layer": [""], + "Empty collection": [""], + "Add an item": [""], + "Remove item": [""], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ "" ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "dashboard": [""], + "Dashboard scheme": [""], + "Select color scheme": [""], + "Select scheme": [""], + "Show less columns": [""], + "Show all columns": [""], + "Fraction digits": [""], + "Number of decimal digits to round numbers to": [""], + "Min Width": [""], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Text align": [""], + "Horizontal alignment": [""], + "Show cell bars": [""], + "Whether to align positive and negative values in cell bar chart at 0": [ "" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Whether to colorize numeric values by if they are positive or negative": [ "" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Truncate Cells": [""], + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ "" ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Small number format": [""], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ "" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Display": [""], + "Number formatting": [""], + "Edit formatter": [""], + "Add new formatter": [""], + "Add new color formatter": [""], + "alert": [""], + "error": [""], + "success dark": [""], + "alert dark": [""], + "error dark": [""], + "This value should be smaller than the right target value": [""], + "This value should be greater than the left target value": [""], + "Required": [""], + "Operator": [""], + "Left value": [""], + "Right value": [""], + "Target value": [""], + "Select column": [""], + "Color: ": [""], + "Lower threshold must be lower than upper threshold": [""], + "Upper threshold must be greater than lower threshold": [""], + "Isoline": [""], + "Threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The width of the Isoline in pixels": [""], + "The color of the isoline": [""], + "Isoband": [""], + "Lower Threshold": [""], + "The lower limit of the threshold range of the Isoband": [""], + "Upper Threshold": [""], + "The upper limit of the threshold range of the Isoband": [""], + "The color of the isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": [""], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Viz is missing a datasource": [""], - "Viz type": [""], - "WED": [""], - "Want to add a new database?": [""], - "Warning": [""], - "Warning Message": [""], - "Warning!": [""], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "" - ], - "Was unable to check your query": [""], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "" - ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "" - ], - "We can't seem to resolve the column \"%(column_name)s\"": [""], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "" - ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [""], - "We were unable to carry over any controls when switching to this new dataset.": [ - "" - ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "View in SQL Lab": [""], + "Query preview": [""], + "Save as dataset": [""], + "Missing URL parameters": [""], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [""], + "RANGE TYPE": [""], + "Actual time range": [""], + "APPLY": [""], + "Edit time range": [""], + "Configure Advanced Time Range ": [""], + "START (INCLUSIVE)": [""], + "Start date included in time range": [""], + "END (EXCLUSIVE)": [""], + "End date excluded from time range": [""], + "Configure Time Range: Previous...": [""], + "Configure Time Range: Last...": [""], + "Configure custom time range": [""], + "Relative quantity": [""], + "Relative period": [""], + "Anchor to": [""], + "NOW": [""], + "Date/Time": [""], + "Return to specific datetime.": [""], + "Syntax": [""], + "Example": [""], + "Moves the given set of dates by a specified interval.": [""], + "Truncates the specified date to the accuracy specified by the date unit.": [ "" ], - "Web": [""], - "Wednesday": [""], - "Week": [""], - "Week ending Saturday": [""], - "Week starting Monday": [""], - "Week starting Sunday": [""], - "Week_ending Sunday": [""], - "Weekly Report": [""], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], + "Get the last date by the date unit.": [""], + "Get the specify date for the holiday": [""], + "Previous": [""], + "Custom": [""], + "last day": [""], + "last week": [""], + "last month": [""], + "last quarter": [""], + "last year": [""], + "previous calendar week": [""], + "previous calendar month": [""], + "previous calendar year": [""], + "Seconds %s": [""], + "Minutes %s": [""], + "Hours %s": [""], + "Days %s": [""], "Weeks %s": [""], - "Weight": [""], - "What should be shown on the label?": [""], - "What should happen if the table already exists": [""], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "" - ], - "When a secondary metric is provided, a linear color scale is used.": [ - "" - ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "" - ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "" - ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "" - ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "" - ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "" - ], - "When using 'Group By' you are limited to use a single metric": [""], - "When using other than adaptive formatting, labels may overlap": [""], - "When using this option, default value can’t be set": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "" - ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "" - ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "" - ], - "Whether to align background charts with both positive and negative values at 0": [ - "" - ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "" - ], - "Whether to always show the annotation label": [""], - "Whether to animate the progress and the value or just display them": [ - "" - ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "" - ], - "Whether to apply filter when items are clicked": [""], - "Whether to colorize numeric values by if they are positive or negative": [ - "" - ], - "Whether to display a bar chart background in table columns": [""], - "Whether to display a legend for the chart": [""], - "Whether to display bubbles on top of countries": [""], - "Whether to display the aggregate count": [""], - "Whether to display the interactive data table": [""], - "Whether to display the labels.": [""], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ - "" - ], - "Whether to display the legend (toggles)": [""], - "Whether to display the metric name as a title": [""], - "Whether to display the min and max values of the X-axis": [""], - "Whether to display the min and max values of the Y-axis": [""], - "Whether to display the numerical values within the cells": [""], - "Whether to display the stroke": [""], - "Whether to display the time range interactive selector": [""], - "Whether to display the timestamp": [""], - "Whether to display the trend line": [""], - "Whether to enable changing graph position and scaling.": [""], - "Whether to enable node dragging in force layout mode.": [""], - "Whether to fill the objects": [""], - "Whether to ignore locations that are null": [""], - "Whether to include a client-side search box": [""], - "Whether to include a time filter": [""], - "Whether to include the percentage in the tooltip": [""], - "Whether to include the time granularity as defined in the time section": [ - "" - ], - "Whether to make the grid 3D": [""], - "Whether to make the histogram cumulative": [""], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Months %s": [""], + "Quarters %s": [""], + "Years %s": [""], + "Specific Date/Time": [""], + "Relative Date/Time": [""], + "Now": [""], + "Midnight": [""], + "Saved": [""], + "%s column(s)": [""], + "No temporal columns found": [""], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "Whether to normalize the histogram": [""], - "Whether to populate autocomplete filters options": [""], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + " to add calculated columns": [""], + "Simple": [""], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": [""], + "My column": [""], + "This filter might be incompatible with current dataset": [""], + "This column might be incompatible with current dataset": [""], + "Click to edit label": [""], + "Drop columns/metrics here or click": [""], + "This metric might be incompatible with current dataset": [""], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ "" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "%s option(s)": [""], + "Select subject": [""], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ "" ], - "Whether to show minor ticks on the axis": [""], - "Whether to show the pointer": [""], - "Whether to show the progress of gauge chart": [""], - "Whether to show the split lines on the axis": [""], - "Whether to sort ascending or descending on the base Axis.": [""], - "Whether to sort descending or ascending": [""], - "Whether to sort descending or ascending if a series limit is present": [ + "To filter on a metric, use Custom SQL tab.": [""], + "%s operator(s)": [""], + "Select operator": [""], + "Comparator option": [""], + "Type a value here": [""], + "Filter value (case sensitive)": [""], + "Failed to retrieve advanced type": [""], + "choose WHERE or HAVING...": [""], + "Filters by columns": [""], + "Filters by metrics": [""], + "metric": [""], + "Fixed": [""], + "Based on a metric": [""], + "My metric": [""], + "Add metric": [""], + "Select aggregate options": [""], + "%s aggregates(s)": [""], + "Select saved metrics": [""], + "%s saved metric(s)": [""], + "Saved metric": [""], + "No saved metrics found": [""], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + " to add metrics": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [""], + "column": [""], + "aggregate": [""], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [""], + "Error while fetching data: %s": [""], + "Time series columns": [""], + "Actual value": [""], + "Sparkline": [""], + "Period average": [""], + "The column header label": [""], + "Column header tooltip": [""], + "Type of comparison, value difference or percentage": [""], + "Width": [""], + "Width of the sparkline": [""], + "Height of the sparkline": [""], + "Time lag": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ "" ], - "Whether to sort results by the selected metric in descending order.": [ + "Time Lag": [""], + "Time ratio": [""], + "Number of periods to ratio against": [""], + "Time Ratio": [""], + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ + "Y-axis bounds": [""], + "Manually set min/max values for the y-axis.": [""], + "Color bounds": [""], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "" ], - "Whether to truncate metrics": [""], - "Which country to plot the map for?": [""], - "Which relatives to highlight on hover": [""], - "Whisker/outlier options": [""], - "White": [""], - "Width": [""], - "Width of the confidence interval. Should be between 0 and 1": [""], - "Width of the sparkline": [""], - "Window must be > 0": [""], - "With a subheader": [""], - "Word Cloud": [""], - "Word Rotation": [""], - "Working": [""], + "Optional d3 number format string": [""], + "Number format string": [""], + "Optional d3 date format string": [""], + "Date format string": [""], + "Column Configuration": [""], + "Select Viz Type": [""], + "Currently rendered: %s": [""], + "Recommended tags": [""], + "Search all charts": [""], + "No description available.": [""], + "Examples": [""], + "This visualization type is not supported.": [""], + "View all charts": [""], + "Select a visualization type": [""], + "No results found": [""], + "Superset Chart": [""], + "New chart": [""], + "Edit chart properties": [""], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Export to .JSON": [""], + "Embed code": [""], + "Run in SQL Lab": [""], + "Code": [""], + "Markup type": [""], + "Pick your favorite markup language": [""], + "Put your code here": [""], + "URL parameters": [""], + "Extra parameters for use in jinja templated queries": [""], + "Annotations and layers": [""], + "Annotation layers": [""], + "My beautiful colors": [""], + "< (Smaller than)": [""], + "> (Larger than)": [""], + "<= (Smaller or equal)": [""], + ">= (Larger or equal)": [""], + "== (Is equal)": [""], + "!= (Is not equal)": [""], + "Not null": [""], + "60 days": [""], + "90 days": [""], + "Add notification method": [""], + "Add delivery method": [""], + "Add": [""], + "Edit Report": [""], + "Edit Alert": [""], + "Add Report": [""], + "Add Alert": [""], + "Report name": [""], + "Alert name": [""], + "Active": [""], + "Alert condition": [""], + "SQL Query": [""], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": [""], + "Condition": [""], + "Report schedule": [""], + "Alert condition schedule": [""], + "Timezone": [""], + "Schedule settings": [""], + "Log retention": [""], "Working timeout": [""], - "World Map": [""], - "Write a description for your query": [""], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column": [""], - "Write dataframe index as a column.": [""], - "X AXIS TITLE BOTTOM MARGIN": [""], - "X Axis": [""], - "X Axis Format": [""], - "X Axis Label": [""], - "X Axis Title": [""], - "X Log Scale": [""], - "X Tick Layout": [""], - "X bounds": [""], - "X-Axis Sort Ascending": [""], - "X-Axis Sort By": [""], - "X-axis": [""], - "XScale Interval": [""], - "Y 2 bounds": [""], - "Y AXIS TITLE MARGIN": [""], - "Y AXIS TITLE POSITION": [""], - "Y Axis": [""], - "Y Axis 2 Bounds": [""], - "Y Axis Bounds": [""], - "Y Axis Format": [""], - "Y Axis Label": [""], - "Y Axis Title": [""], - "Y Log Scale": [""], - "Y bounds": [""], - "Y-Axis Sort Ascending": [""], - "Y-Axis Sort By": [""], - "Y-axis": [""], - "Y-axis bounds": [""], - "YScale Interval": [""], - "Year": [""], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Years %s": [""], - "Yes": [""], - "Yes, cancel": [""], - "Yes, overwrite changes": [""], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Time in seconds": [""], + "seconds": [""], + "Grace period": [""], + "Message content": [""], + "Send as PNG": [""], + "Send as CSV": [""], + "Send as text": [""], + "Ignore cache when generating report": [""], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": [""], + "report": [""], + "%s updated": [""], + "CRON Schedule": [""], + "CRON expression": [""], + "Report sent": [""], + "Alert triggered, notification sent": [""], + "Report sending": [""], + "Alert running": [""], + "Report failed": [""], + "Alert failed": [""], + "Nothing triggered": [""], + "Alert Triggered, In Grace Period": [""], + "Delivery method": [""], + "Select Delivery Method": [""], + "Recipients are separated by \",\" or \";\"": [""], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": [""], + "Edit annotation layer properties": [""], + "Annotation layer name": [""], + "Description (this can be seen in the list)": [""], + "annotation": [""], + "The annotation has been updated": [""], + "The annotation has been saved": [""], + "Edit annotation": [""], + "Add annotation": [""], + "date": [""], + "Additional information": [""], + "Please confirm": [""], + "Are you sure you want to delete": [""], + "Modified %s": [""], + "css_template": [""], + "Edit CSS template properties": [""], + "Add CSS template": [""], + "css": [""], + "published": [""], + "draft": [""], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": [""], + "Allow this database to be queried in SQL Lab": [""], + "Allow creation of new tables based on queries": [""], + "Allow creation of new views based on queries": [""], + "CTAS & CVAS SCHEMA": [""], + "Create or select schema...": [""], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ "" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Enable query cost estimation": [""], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ "" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Allow this database to be explored": [""], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ "" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ "" ], - "You can": [""], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": [""], + "Enter duration in seconds": [""], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "" ], - "You can create a new chart or use existing ones from the panel on the right": [ + "Schema cache timeout": [""], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ "" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ + "Table cache timeout": [""], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ "" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Asynchronous query execution": [""], + "Cancel query on window unload event": [""], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ "" ], - "You cannot use 45° tick layout along with the time range filter": [""], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ + "Add extra connection information.": [""], + "Secure extra": [""], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ "" ], - "You do not have permission to edit this %s": [""], - "You do not have permission to edit this chart": [""], - "You do not have permission to edit this dashboard": [""], - "You do not have permissions to access the datasource(s): %(name)s.": [ + "Enter CA_BUNDLE": [""], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ "" ], - "You do not have permissions to edit this dashboard.": [""], - "You don't have access to this chart.": [""], - "You don't have access to this dashboard.": [""], - "You don't have access to this dataset.": [""], - "You don't have access to this embedded dashboard config.": [""], - "You don't have any favorites yet!": [""], - "You don't have permission to modify the value.": [""], - "You don't have the rights to alter %(resource)s": [""], - "You don't have the rights to alter this chart": [""], - "You don't have the rights to alter this dashboard": [""], - "You don't have the rights to alter this title.": [""], - "You don't have the rights to create a chart": [""], - "You don't have the rights to create a dashboard": [""], - "You don't have the rights to download as csv": [""], - "You have no permission to approve this request": [""], - "You have removed this filter.": [""], - "You have unsaved changes.": [""], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "" ], - "You must pick a name for the new dashboard": [""], - "You must run the query successfully first": [""], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Allow file uploads to database": [""], + "Schemas allowed for File upload": [""], + "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Additional settings.": [""], + "Metadata Parameters": [""], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "" ], - "Your chart is not up to date": [""], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ + "Engine Parameters": [""], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "" ], - "Your query could not be saved": [""], - "Your query could not be scheduled": [""], - "Your query could not be updated": [""], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Version": [""], + "Version number": [""], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ "" ], - "Your query was not properly saved": [""], - "Your query was saved": [""], - "Your query was updated": [""], - "Your report could not be deleted": [""], - "Zero imputation": [""], - "Zoom": [""], - "Zoom level of the map": [""], - "[ untitled dashboard ]": [""], - "[Longitude] and [Latitude] columns must be present in [Group By]": [""], - "[Longitude] and [Latitude] must be set": [""], - "[Missing Dataset]": [""], - "[Superset] Access to the datasource %(name)s was granted": [""], - "[Untitled]": [""], - "[asc]": [""], - "[copy]": [""], - "[dashboard name]": [""], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "" - ], - "[untitled]": [""], - "`compare_columns` must have the same length as `source_columns`.": [""], - "`compare_type` must be `difference`, `percentage` or `ratio`": [""], - "`confidence_interval` must be between 0 and 1 (exclusive)": [""], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Need help? Learn how to connect your database": [""], + "Database connected": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "`operation` property of post processing object undefined": [""], - "`prophet` package not installed": [""], - "`rename_columns` must have the same length as `columns`.": [""], - "`row_limit` must be greater than or equal to 0": [""], - "`row_offset` must be greater than or equal to 0": [""], - "`width` must be greater or equal to 0": [""], - "aggregate": [""], - "alert": [""], - "alert dark": [""], - "alerts": [""], - "all": [""], - "also copy (duplicate) charts": [""], - "ancestor": [""], - "and": [""], - "annotation": [""], - "annotation_layer": [""], - "asfreq": [""], - "at": [""], - "auto": [""], - "auto (Smooth)": [""], - "background": [""], - "basis": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": [""], - "boolean type icon": [""], - "bottom": [""], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": [""], - "cardinal": [""], - "chart": [""], - "choose WHERE or HAVING...": [""], - "clear all filters": [""], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": [""], + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], "connecting to %(dbModelName)s.": [""], - "count": [""], - "create": [""], - "create a new chart": [""], - "create dataset from SQL query": [""], - "css": [""], - "css_template": [""], - "cumsum": [""], - "cumulative": [""], - "dashboard": [""], - "database": [""], - "dataset": [""], - "date": [""], - "day": [""], - "day of the month": [""], - "day of the week": [""], - "deck.gl 3D Hexagon": [""], - "deck.gl Arc": [""], - "deck.gl Geojson": [""], - "deck.gl Grid": [""], - "deck.gl Multiple Layers": [""], - "deck.gl Path": [""], - "deck.gl Polygon": [""], - "deck.gl Scatterplot": [""], - "deck.gl Screen Grid": [""], - "deckGL": [""], - "default": [""], - "delete": [""], - "descendant": [""], - "description": [""], - "deviation": [""], - "dialect+driver://username:password@host:port/database": [""], - "draft": [""], - "dttm": [""], - "e.g. ********": [""], + "Select a database to connect": [""], + "SSH Host": [""], "e.g. 127.0.0.1": [""], - "e.g. 5432": [""], - "e.g. AccountAdmin": [""], + "SSH Port": [""], "e.g. Analytics": [""], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": [""], - "e.g. sql/protocolv1/o/12345": [""], + "Login with": [""], + "Private Key & Password": [""], + "SSH Password": [""], + "e.g. ********": [""], + "Private Key": [""], + "Paste Private Key here": [""], + "Private Key Password": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Display Name": [""], + "Name your database": [""], + "Pick a name to help you identify this database.": [""], + "dialect+driver://username:password@host:port/database": [""], + "Refer to the": [""], + "for more information on how to structure your URI.": [""], + "Test connection": [""], + "database": [""], + "Please enter a SQLAlchemy URI to test": [""], "e.g. world_population": [""], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": [""], - "edit mode": [""], - "entries": [""], - "error": [""], - "error dark": [""], - "error_message": [""], - "every": [""], - "every day of the month": [""], - "every day of the week": [""], - "every hour": [""], - "every minute": [""], - "every month": [""], - "expand": [""], - "explore": [""], - "failed": [""], - "fetching": [""], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ + "Database settings updated": [""], + "Sorry there was an error fetching database information: %s": [""], + "Or choose from a list of other databases we support:": [""], + "Supported databases": [""], + "Choose a database...": [""], + "Want to add a new database?": [""], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ "" ], - "flat": [""], - "for more information on how to structure your URI.": [""], - "function type icon": [""], - "geohash (square)": [""], - "heatmap": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "here": [""], - "hour": [""], - "id": [""], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ "" ], - "in": [""], - "in modal": [""], - "is expected to be a number": [""], - "is expected to be an integer": [""], - "joined": [""], - "json isn't valid": [""], - "key a-z": [""], - "key z-a": [""], - "label": [""], - "last day": [""], - "last month": [""], - "last quarter": [""], - "last week": [""], - "last year": [""], - "latest partition:": [""], - "left": [""], - "less than {min} {name}": [""], - "linear": [""], - "log": [""], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "Connect": [""], + "Finish": [""], + "This database is managed externally, and can't be edited in Superset": [ "" ], - "max": [""], - "mean": [""], - "median": [""], - "metric": [""], - "min": [""], - "minute": [""], - "minute(s)": [""], - "monotone": [""], - "month": [""], - "more than {max} {name}": [""], - "must have a value": [""], - "no SQL validator is configured": [""], - "no SQL validator is configured for {}": [""], - "numeric type icon": [""], - "nvd3": [""], - "of parent": [""], - "of total": [""], - "offline": [""], - "on": [""], - "or": [""], - "or use existing ones from the panel on the right": [""], - "orderby column must be populated": [""], - "overall": [""], - "p-value precision": [""], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "pending": [""], - "percentile (exclusive)": [""], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "" ], - "permalink state not found": [""], - "pixelated (Sharp)": [""], - "previous calendar month": [""], - "previous calendar week": [""], - "previous calendar year": [""], - "published": [""], - "quarter": [""], - "queries": [""], - "query": [""], - "random": [""], - "reboot": [""], - "recent": [""], - "recents": [""], - "report": [""], - "reports": [""], - "restore zoom": [""], - "right": [""], - "running": [""], - "search by tags": [""], - "seconds": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "" ], - "square": [""], - "stack": [""], - "staggered": [""], - "std": [""], - "step-after": [""], - "step-before": [""], - "stopped": [""], - "stream": [""], - "string type icon": [""], - "success": [""], - "success dark": [""], - "sum": [""], - "syntax.": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": [""], - "to": [""], - "top": [""], - "undo": [""], - "unknown type icon": [""], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "Database Creation Error": [""], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "use latest_partition template": [""], - "value ascending": [""], - "value descending": [""], - "var": [""], - "variance": [""], - "view instructions": [""], - "virtual": [""], - "viz type": [""], - "was created": [""], - "week": [""], - "week ending Saturday": [""], - "week starting Sunday": [""], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": [""], - "zoom area": [""] + "CREATE DATASET": [""], + "QUERY DATA IN SQL LAB": [""], + "Connect a database": [""], + "Edit database": [""], + "Connect this database using the dynamic form instead": [""], + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "" + ], + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "" + ], + "Import database from file": [""], + "Connect this database with a SQLAlchemy URI string instead": [""], + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "" + ], + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "" + ], + "Host": [""], + "e.g. 5432": [""], + "Port": [""], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "Copy the name of the database you are trying to connect to.": [""], + "Access token": [""], + "Pick a nickname for how the database will display in Superset.": [""], + "e.g. param1=value1¶m2=value2": [""], + "Additional Parameters": [""], + "Add additional custom parameters": [""], + "SSL Mode \"require\" will be used.": [""], + "Type of Google Sheets allowed": [""], + "Publicly shared sheets only": [""], + "Public and privately shared sheets": [""], + "How do you want to enter service account credentials?": [""], + "Upload JSON file": [""], + "Copy and Paste JSON credentials": [""], + "Service Account": [""], + "Paste content of service credentials JSON file here": [""], + "Copy and paste the entire service account .json file here": [""], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "" + ], + "Connect Google Sheets as tables to this database": [""], + "Google Sheet Name and URL": [""], + "Enter a name for this sheet": [""], + "Paste the shareable Google Sheet URL here": [""], + "Add sheet": [""], + "Copy the identifier of the account you are trying to connect to.": [""], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "Duplicate dataset": [""], + "Duplicate": [""], + "New dataset name": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Refreshing columns": [""], + "Table columns": [""], + "Loading": [""], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "" + ], + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "" + ], + "create dataset from SQL query": [""], + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "Select dataset source": [""], + "No table columns": [""], + "This database table does not contain any data. Please select a different table.": [ + "" + ], + "An Error Occurred": [""], + "Unable to load columns for the selected table. Please select a different table.": [ + "" + ], + "The API response from %s does not match the IDatabaseTable interface.": [ + "" + ], + "Chart last modified": [""], + "Chart last modified by": [""], + "Create chart with dataset": [""], + "chart": [""], + "No charts": [""], + "This dataset is not used to power any charts.": [""], + "Select a database table.": [""], + "Create dataset and create chart": [""], + "Select a database table and create dataset": [""], + "Not defined": [""], + "There was an error fetching dataset": [""], + "There was an error fetching dataset's related objects": [""], + "There was an error loading the dataset metadata": [""], + "[Untitled]": [""], + "Unknown": [""], + "Viewed %s": [""], + "Edited": [""], + "Created": [""], + "Viewed": [""], + "Favorite": [""], + "Mine": [""], + "View All »": [""], + "An error occurred while fetching dashboards: %s": [""], + "recents": [""], + "No recents yet": [""], + "%(other)s charts will appear here": [""], + "%(other)s dashboards will appear here": [""], + "%(other)s recents will appear here": [""], + "%(other)s saved queries will appear here": [""], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "" + ], + "Recently created charts, dashboards, and saved queries will appear here": [ + "" + ], + "Recently edited charts, dashboards, and saved queries will appear here": [ + "" + ], + "SQL query": [""], + "You don't have any favorites yet!": [""], + "See all %(tableName)s": [""], + "Connect database": [""], + "Create dataset": [""], + "Connect Google Sheet": [""], + "Upload CSV to database": [""], + "Upload columnar file to database": [""], + "Upload Excel file to database": [""], + "Enable 'Allow file uploads to database' in any database's settings": [ + "" + ], + "Info": [""], + "Logout": [""], + "About": [""], + "Powered by Apache Superset": [""], + "SHA": [""], + "Build": [""], + "Documentation": [""], + "Report a bug": [""], + "Login": [""], + "query": [""], + "Deleted: %s": [""], + "There was an issue deleting %s: %s": [""], + "This action will permanently delete the saved query.": [""], + "Delete Query?": [""], + "Ran %s": [""], + "Saved queries": [""], + "Next": [""], + "Tab name": [""], + "User query": [""], + "Executed query": [""], + "Query name": [""], + "SQL Copied!": [""], + "Sorry, your browser does not support copying.": [""], + "There was an issue fetching reports attached to this dashboard.": [""], + "The report has been created": [""], + "Report updated": [""], + "We were unable to active or deactivate this report.": [""], + "Your report could not be deleted": [""], + "Weekly Report for %s": [""], + "Weekly Report": [""], + "Edit email report": [""], + "Schedule a new email report": [""], + "Text embedded in email": [""], + "Image (PNG) embedded in email": [""], + "Formatted CSV attached in email": [""], + "Report Name": [""], + "Include a description that will be sent with your report": [""], + "A screenshot of the dashboard will be sent to your email at": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Set up an email report": [""], + "Email reports active": [""], + "Delete email report": [""], + "Schedule email report": [""], + "This action will permanently delete %s.": [""], + "Delete Report?": [""], + "Rule added": [""], + "Edit Rule": [""], + "Add Rule": [""], + "The name of the rule must be unique": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "" + ], + "These are the datasets this filter will be applied to.": [""], + "Excluded roles": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "" + ], + "Group Key": [""], + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "" + ], + "Clause": [""], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "" + ], + "Regular": [""], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" + ], + "Tagged %s %ss": [""], + "Failed to tag items": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Tag updated": [""], + "Tag created": [""], + "Name of your tag": [""], + "Add description of your tag": [""], + "Chosen non-numeric column": [""], + "UI Configuration": [""], + "Filter value is required": [""], + "User must select a value before applying the filter": [""], + "Single value": [""], + "Use only a single value.": [""], + "Range filter plugin using AntD": [""], + " (excluded)": [""], + "Check for sorting ascending": [""], + "Can select multiple values": [""], + "Select first filter value by default": [""], + "When using this option, default value can’t be set": [""], + "Inverse selection": [""], + "Exclude selected values": [""], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "" + ], + "Select filter plugin using AntD": [""], + "Custom time filter plugin": [""], + "No time columns": [""], + "Time column filter plugin": [""], + "Time grain filter plugin": [""], + "Working": [""], + "Not triggered": [""], + "On Grace": [""], + "reports": [""], + "alerts": [""], + "There was an issue deleting the selected %s: %s": [""], + "Last run": [""], + "Execution log": [""], + "Bulk select": [""], + "No %s yet": [""], + "Owner": [""], + "All": [""], + "An error occurred while fetching owners values: %s": [""], + "Status": [""], + "An error occurred while fetching dataset datasource values: %s": [""], + "Alerts & reports": [""], + "Alerts": [""], + "Reports": [""], + "Delete %s?": [""], + "Are you sure you want to delete the selected %s?": [""], + "Error Fetching Tagged Objects": [""], + "Edit Tag": [""], + "There was an issue deleting the selected layers: %s": [""], + "Edit template": [""], + "Delete template": [""], + "No annotation layers yet": [""], + "This action will permanently delete the layer.": [""], + "Delete Layer?": [""], + "Are you sure you want to delete the selected layers?": [""], + "There was an issue deleting the selected annotations: %s": [""], + "Delete annotation": [""], + "Annotation": [""], + "No annotation yet": [""], + "Back to all": [""], + "Are you sure you want to delete %s?": [""], + "Delete Annotation?": [""], + "Are you sure you want to delete the selected annotations?": [""], + "Failed to load chart data": [""], + "view instructions": [""], + "Add a dataset": [""], + "or": [""], + "Choose a dataset": [""], + "Choose chart type": [""], + "Please select both a Dataset and a Chart type to proceed": [""], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Chart imported": [""], + "There was an issue deleting the selected charts: %s": [""], + "An error occurred while fetching dashboards": [""], + "Any": [""], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [""], + "Certified": [""], + "Alphabetical": [""], + "Recently modified": [""], + "Least recently modified": [""], + "Import charts": [""], + "Are you sure you want to delete the selected charts?": [""], + "CSS templates": [""], + "There was an issue deleting the selected templates: %s": [""], + "CSS template": [""], + "This action will permanently delete the template.": [""], + "Delete Template?": [""], + "Are you sure you want to delete the selected templates?": [""], + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "There was an issue deleting the selected dashboards: ": [""], + "An error occurred while fetching dashboard owner values: %s": [""], + "Are you sure you want to delete the selected dashboards?": [""], + "An error occurred while fetching database related data: %s": [""], + "Upload file to database": [""], + "Upload columnar file": [""], + "AQE": [""], + "Allow data manipulation language": [""], + "DML": [""], + "CSV upload": [""], + "Delete database": [""], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "" + ], + "Delete Database?": [""], + "Dataset imported": [""], + "An error occurred while fetching dataset related data": [""], + "An error occurred while fetching dataset related data: %s": [""], + "Physical dataset": [""], + "Virtual dataset": [""], + "Virtual": [""], + "An error occurred while fetching datasets: %s": [""], + "An error occurred while fetching schema values: %s": [""], + "An error occurred while fetching dataset owner values: %s": [""], + "Import datasets": [""], + "There was an issue deleting the selected datasets: %s": [""], + "There was an issue duplicating the dataset.": [""], + "There was an issue duplicating the selected datasets: %s": [""], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "" + ], + "Delete Dataset?": [""], + "Are you sure you want to delete the selected datasets?": [""], + "0 Selected": [""], + "%s Selected (Virtual)": [""], + "%s Selected (Physical)": [""], + "%s Selected (%s Physical, %s Virtual)": [""], + "log": [""], + "Execution ID": [""], + "Scheduled at (UTC)": [""], + "Start at (UTC)": [""], + "Error message": [""], + "Alert": [""], + "There was an issue fetching your recent activity: %s": [""], + "There was an issue fetching your dashboards: %s": [""], + "There was an issue fetching your chart: %s": [""], + "There was an issue fetching your saved queries: %s": [""], + "Thumbnails": [""], + "Recents": [""], + "There was an issue previewing the selected query. %s": [""], + "TABLES": [""], + "Open query in SQL Lab": [""], + "An error occurred while fetching database values: %s": [""], + "An error occurred while fetching user values: %s": [""], + "Search by query text": [""], + "Deleted %s": [""], + "Deleted": [""], + "There was an issue deleting rules: %s": [""], + "Are you sure you want to delete the selected rules?": [""], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "" + ], + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "" + ], + "Query imported": [""], + "There was an issue previewing the selected query %s": [""], + "Import queries": [""], + "Link Copied!": [""], + "There was an issue deleting the selected queries: %s": [""], + "Edit query": [""], + "Copy query URL": [""], + "Export query": [""], + "Delete query": [""], + "Are you sure you want to delete the selected queries?": [""], + "queries": [""], + "tag": [""], + "No Tags created": [""], + "Are you sure you want to delete the selected tags?": [""], + "Image download failed, please refresh and try again.": [""], + "PDF download failed, please refresh and try again.": [""], + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "" + ], + "Invalid input": [""], + "Unexpected error: ": [""], + "(no description, click to see stack trace)": [""], + "Sorry, an unknown error occurred.": [""], + "Sorry, there was an error saving this %s: %s": [""], + "You do not have permission to edit this %s": [""], + "Network error": [""], + "Request timed out": [""], + "Issue 1000 - The dataset is too large to query.": [""], + "Issue 1001 - The database is under an unusual load.": [""], + "An error occurred while fetching %s info: %s": [""], + "An error occurred while fetching %ss: %s": [""], + "An error occurred while creating %ss: %s": [""], + "Please re-export your file and try importing again": [""], + "An error occurred while importing %s: %s": [""], + "There was an error fetching the favorite status: %s": [""], + "There was an error saving the favorite status: %s": [""], + "Connection looks good!": [""], + "ERROR: %s": [""], + "There was an error fetching your recent activity:": [""], + "There was an issue deleting: %s": [""], + "URL": [""], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "" + ], + "Time-series Table": [""], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/sk/LC_MESSAGES/messages.po b/superset/translations/sk/LC_MESSAGES/messages.po index 3d2e044ccdbe9..f8d60a058b15a 100644 --- a/superset/translations/sk/LC_MESSAGES/messages.po +++ b/superset/translations/sk/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2021-05-24 15:59+0200\n" "Last-Translator: FULL NAME \n" "Language: sk\n" @@ -28,19270 +28,19258 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." msgstr "" -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." msgstr "" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "Importovať dashboard" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -msgid " a new one" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:112 +msgid "The port is closed." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -msgid " to add calculated columns" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -msgid " to add metrics" +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -msgid " to edit or add columns and metrics." +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format -msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." msgstr "" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." msgstr "" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, python-format -msgid "%(other)s charts will appear here" +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, python-format -msgid "%(other)s dashboards will appear here" +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, python-format -msgid "%(other)s recents will appear here" +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, python-format -msgid "%(other)s saved queries will appear here" +#: superset/errors.py:127 +msgid "" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 -#, python-format -msgid "%(rows)d rows returned" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 -#, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "" -#: superset/views/core.py:385 -#, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." msgstr "" -#: superset/views/core.py:2709 -#, python-format -msgid "%(user)s's profile" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 -#, python-format +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "" + +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "" + +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "" + +#: superset/errors.py:141 msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" +#: superset/errors.py:145 +msgid "The port number is invalid." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, python-format -msgid "%s PASSWORD" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/errors.py:147 +msgid "The database was deleted." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +#: superset/errors.py:149 +msgid "The submitted payload failed validation." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:830 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#: superset/forms.py:72 #, python-format -msgid "%s Selected (Physical)" +msgid "File size must be less than or equal to %(max_size)s bytes" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#: superset/jinja_context.py:344 #, python-format -msgid "%s Selected (Virtual)" +msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#: superset/jinja_context.py:355 #, python-format -msgid "%s aggregates(s)" +msgid "Unsupported return value for method %(name)s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#: superset/jinja_context.py:371 #, python-format -msgid "%s column(s)" +msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#: superset/jinja_context.py:382 #, python-format -msgid "%s operator(s)" +msgid "Unsupported template value for key %(key)s" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#: superset/sql_lab.py:302 #, python-format -msgid "%s option(s)" +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, python-format -msgid "%s updated" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#: superset/sql_lab.py:488 #, python-format -msgid "%s%s" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 +#: superset/sql_lab.py:510 #, python-format -msgid "%s-%s of %s" +msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." +#: superset/viz.py:562 +msgid "Cached value not found" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "" - -#: superset/reports/notifications/slack.py:65 +#: superset/viz.py:577 #, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" +msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" +#: superset/viz.py:706 +msgid "Time Table View" msgstr "" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" msgstr "" -#: superset/views/database/forms.py:163 -msgid "," +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" msgstr "" -#: superset/views/database/forms.py:164 -msgid "." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" +#: superset/viz.py:910 +msgid "Pick a metric to display" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -msgid "1 hourly frequency" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -msgid "1 week" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -msgid "1 year" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" +#: superset/viz.py:1360 +msgid "Sankey" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 year end frequency" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 year start frequency" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" +#: superset/viz.py:1434 +msgid "Directed Force Layout" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -msgid "104 weeks" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" msgstr "" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -msgid "156 weeks" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" +#: superset/viz.py:1674 +msgid "Horizon Charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" +#: superset/viz.py:1686 +msgid "Mapbox" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 -msgid "2 years" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -msgid "28 days" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -msgid "3 years" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "30 days ago" -msgstr "" +#: superset/viz.py:2271 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Grafy" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" -msgstr "" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Grafy" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" +#: superset/viz.py:2369 +msgid "Event flow" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" +#: superset/viz.py:2511 +msgid "Partition Diagram" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" msgstr "" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" -msgstr "" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -msgid "52 weeks" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -msgid "" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 -msgid "" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -msgid "" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -msgid "" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" +#: superset/charts/data/api.py:369 +msgid "Empty query result" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset/views/database/forms.py:194 -msgid "A comma separated list of columns that should be parsed as dates" +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" msgstr "" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -msgid "A comma-separated list of schemas that files are allowed to upload to." +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." msgstr "" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." msgstr "" -#: superset/views/database/forms.py:145 -msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." msgstr "" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" +#: superset/commands/annotation_layer/exceptions.py:45 +msgid "Annotation layers could not be deleted." msgstr "" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" msgstr "" -#: 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." +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, python-format +msgid "There are associated alerts or reports: %(report_names)s" msgstr "" -#: superset/reports/commands/exceptions.py:186 +#: superset/commands/chart/exceptions.py:38 #, python-format -msgid "A report named \"%(name)s\" already exists" +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:308 -msgid "A screenshot of the dashboard will be sent to your email at" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" msgstr "" -#: superset/common/query_context_processor.py:417 -msgid "A time column must be specified when using a Time Comparison." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" msgstr "" -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." msgstr "" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." msgstr "" -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." msgstr "" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" +#: superset/commands/chart/exceptions.py:151 +msgid "Changing one or more of these dashboards is forbidden" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" +#: superset/commands/chart/exceptions.py:156 +msgid "Chart not found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -msgid "AXIS TITLE POSITION" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" +#: superset/commands/css/exceptions.py:23 +msgid "CSS templates could not be deleted." msgstr "" -#: 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" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." msgstr "" -#: superset/initialization/__init__.py:425 -msgid "Access requests" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" msgstr "" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -msgid "Access token" +#: superset/commands/dashboard/exceptions.py:54 +msgid "Dashboards could not be created." msgstr "" -#: superset/views/core.py:318 -msgid "Access was requested" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." msgstr "" -#: superset/views/log/__init__.py:31 -msgid "Action" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." msgstr "" -#: superset/initialization/__init__.py:387 -msgid "Action Log" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -msgid "Actual Values" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 -msgid "Actual values" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." msgstr "" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." msgstr "" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." msgstr "" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" msgstr "" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" msgstr "" -#: superset/views/database/mixins.py:35 -msgid "Add Database" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." msgstr "" -#: superset/views/log/__init__.py:23 -msgid "Add Log" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" msgstr "" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Add Rule" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" msgstr "" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" msgstr "" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 -msgid "Add a dataset" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -msgid "Add and edit filters" +#: superset/commands/database/validate_sql.py:100 +#, python-format +msgid "no SQL validator is configured for %(engine)s" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Add extra connection information." +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 -msgid "Add the name of the chart" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -msgid "Add/Edit Filters" +#: superset/commands/dataset/exceptions.py:172 +msgid "Datasets could not be deleted." msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Importovať dashboard" -msgstr[1] "" -msgstr[2] "" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" +#: superset/commands/dataset/exceptions.py:205 +msgid "The provided table was not found in the provided database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -msgid "Additional settings." +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -msgid "Advanced Data type" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -msgid "Advanced analytics Query A" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -msgid "Advanced analytics Query B" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 -msgid "Advanced data type" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" +#: superset/commands/report/alert.py:98 +#, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" +#: superset/commands/report/alert.py:107 +#, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" +#: superset/commands/report/alert.py:178 +msgid "An error occurred when running alert query" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -msgid "Aggregation" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -msgid "Alert" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." msgstr "" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." msgstr "" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." msgstr "" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." msgstr "" -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." msgstr "" -#: superset/reports/commands/exceptions.py:209 -msgid "Alert query returned more than one column." +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." msgstr "" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." msgstr "" -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset/reports/commands/alert.py:100 +#: superset/commands/report/exceptions.py:182 #, python-format -msgid "Alert query returned more than one row. %s rows returned" +msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." msgstr "" -#: superset/reports/commands/exceptions.py:204 +#: superset/commands/report/exceptions.py:198 msgid "Alert validator config error." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." msgstr "" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 -msgid "All Entities" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." msgstr "" -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." msgstr "" -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" msgstr "" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " msgstr "" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" +#: superset/commands/security/exceptions.py:25 +msgid "RLS Rule not found." msgstr "" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" +#: superset/commands/security/exceptions.py:29 +msgid "RLS rules could not be deleted." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 +#: superset/commands/sql_lab/results.py:75 msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -msgid "Allow file uploads to database" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +#: superset/commands/sql_lab/results.py:116 msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +msgid "Tag could not be updated." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." msgstr "" -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 -msgid "An Error Occurred" +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." msgstr "" -#: superset/reports/commands/exceptions.py:188 +#: superset/common/query_actions.py:227 #, python-format -msgid "An alert named \"%(name)s\" already exists" +msgid "Invalid result type: %(result_type)s" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." 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: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 -msgid "An error has occurred" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" msgstr "" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." +#: superset/common/query_context_processor.py:719 +msgid "The chart query context does not exist" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 +#: superset/common/query_object.py:290 +#, python-format msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "" - -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -msgid "An error occurred while creating the value." -msgstr "" - -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -msgid "An error occurred while deleting the value." -msgstr "" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, python-format -msgid "An error occurred while fetching %s info: %s" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching %ss: %s" +msgid "Unsupported post processing operation: %(operation)s" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:619 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching chart owners values: %s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 -#, python-format -msgid "An error occurred while fetching created by values: %s" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching dashboard created by values: %s" +msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#, python-format -msgid "An error occurred while fetching dashboard owner values: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching dashboards: %s" +msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching database related data: %s" +msgid "Metric '%(metric)s' does not exist" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 -#, python-format -msgid "An error occurred while fetching database values: %s" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" msgstr "" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, python-format -msgid "An error occurred while fetching owners values: %s" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, python-format -msgid "An error occurred while fetching tag created by values: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -msgid "An error occurred while loading dashboard information." +#: superset/connectors/sqla/views.py:159 +msgid "Expression" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -msgid "An error occurred while opening Explore" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" msgstr "" -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" msgstr "" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" msgstr "" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" msgstr "" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" msgstr "" -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -#: superset/databases/commands/exceptions.py:162 -msgid "An unexpected error occurred" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" msgstr "" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "Anotačná vrstva" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "Anotačná vrstva" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -#, fuzzy -msgid "Annotation layer interval end" -msgstr "Anotačná vrstva" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" msgstr "" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." +#: superset/connectors/sqla/views.py:404 +msgid "Offset" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -#, fuzzy -msgid "Annotation layer opacity" -msgstr "Anotačná vrstva" - -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -#, fuzzy -msgid "Annotation layer stroke" -msgstr "Anotačná vrstva" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -#, fuzzy -msgid "Annotation layer time column" -msgstr "Anotačná vrstva" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -#, fuzzy -msgid "Annotation layer title column" -msgstr "Anotačná vrstva" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -#, fuzzy -msgid "Annotation layer value" -msgstr "Anotačná vrstva" - -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "Anotačná vrstva" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -#, fuzzy -msgid "Annotation source type" -msgstr "Anotačná vrstva" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -#, fuzzy -msgid "Annotation template created" -msgstr "Anotačná vrstva" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "Anotačná vrstva" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -#, fuzzy -msgid "Annotations and Layers" -msgstr "Anotačná vrstva" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." +#: superset/dashboards/filters.py:193 +msgid "Role" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." msgstr "" -#: 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." +#: superset/databases/decorators.py:47 +msgid "Table name undefined" msgstr "" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 -msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" +#: superset/databases/filters.py:79 +#, fuzzy +msgid "Upload Enabled" +msgstr "Nahrať Excel" + +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/databases/schemas.py:233 +#, python-format msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." msgstr "" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, python-format -msgid "Applied cross-filters (%d)" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." msgstr "" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#: superset/datasets/api.py:785 #, python-format -msgid "Applied filters (%d)" -msgstr "" +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, python-format -msgid "Applied filters: %s" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" msgstr "" -#: superset/viz.py:250 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." -msgstr "" - -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -msgid "Apply conditional color formatting to metric" +#: superset/db_engine_specs/base.py:98 +msgid "Second" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" +#: superset/db_engine_specs/base.py:100 +msgid "30 second" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -msgid "Arc" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" +#: superset/db_engine_specs/base.py:108 +msgid "Day" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" +#: superset/db_engine_specs/base.py:109 +msgid "Week" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, python-format -msgid "Are you sure you want to delete %s?" +#: superset/db_engine_specs/base.py:110 +msgid "Month" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 -#, python-format -msgid "Are you sure you want to delete the selected %s?" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" +#: superset/db_engine_specs/base.py:112 +msgid "Year" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 -msgid "Are you sure you want to delete the selected rules?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:282 -msgid "Are you sure you want to delete the selected tags?" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -msgid "Are you sure you want to overwrite this dataset?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -msgid "Area Chart (legacy)" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 +#: superset/db_engine_specs/bigquery.py:204 +#, python-format msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." msgstr "" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -msgid "Auto" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -msgid "Auto Zoom" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -#, fuzzy -msgid "Average" -msgstr "Spravovať" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "Spravovať" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -msgid "Axis Bounds" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -msgid "Axis Format" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 -msgid "Axis Title" +#: superset/db_engine_specs/ocient.py:284 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 -msgid "Backward values" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 -msgid "Bad formula." +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -msgid "Bar Chart (legacy)" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "Bar Charts are used to show metrics as a series of bars." +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Domov" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -msgid "Bar orientation" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" msgstr "" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "Databázy" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Dáta" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Grafy" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Datasety" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" -msgstr "" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Pluginy" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Spravovať" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS šablóny" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Uložené dotazy" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "História dotazov" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" +#: superset/initialization/__init__.py:368 +msgid "Action Log" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Bezpečnosť" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Anotačná vrstva" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Bottom left" -msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +#, fuzzy +msgid "Row Level Security" +msgstr "Bezpečnosť na úrovni riadkov" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom right" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#: superset/models/helpers.py:1525 msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." +#: superset/models/helpers.py:1531 +msgid "Empty query?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" +#: superset/models/helpers.py:1821 +msgid "error_message" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" msgstr "" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -msgid "Build" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" msgstr "" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" +#: superset/reports/notifications/email.py:88 +#, python-format +msgid "" +"\n" +" Error: %(text)s\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -msgid "CREATE DATASET" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS šablóny" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" +#: superset/tags/exceptions.py:39 +msgid "Tag could not be found." msgstr "" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." +#: superset/tags/filters.py:31 +msgid "Is custom tag" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" msgstr "" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" msgstr "" -#: superset/views/database/views.py:290 -#, python-format -msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" msgstr "" -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" msgstr "" -#: superset/sql_lab.py:432 -msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" msgstr "" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" msgstr "" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" msgstr "" -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" msgstr "" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" msgstr "" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" msgstr "" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#: superset/utils/date_parser.py:393 #, python-format -msgid "Cached %s" +msgid "Unable to find such a holiday: [%(holiday)s]" msgstr "" -#: superset/viz.py:578 -msgid "Cached value not found" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" msgstr "" -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" msgstr "" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" msgstr "" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" msgstr "" -#: superset/views/core.py:734 +#: superset/utils/pandas_postprocessing/prophet.py:121 #, python-format -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +msgid "Unsupported time grain: %(time_grain)s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" msgstr "" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -msgid "Categorical Color" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -msgid "Category Name" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -msgid "Category and Percentage" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -msgid "Category and Value" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -#, fuzzy -msgid "Category name" -msgstr "Datasety" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" +#: superset/views/api.py:109 +#, python-format +msgid "Unexpected time range: %(error)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" +#: superset/views/base.py:579 +msgid "json isn't valid" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" +#: superset/views/base.py:591 +msgid "Export to YAML" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 -msgid "Centroid (Longitude and Latitude): " +#: superset/views/base.py:591 +msgid "Export to YAML?" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" +#: superset/views/base.py:648 +msgid "Delete all Really?" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" +#: superset/views/base_api.py:149 +msgid "Is favorite" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" +#: superset/views/base_api.py:177 +msgid "Is tagged" 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 -#, python-format -msgid "Certified by %s" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." +#: superset/views/core.py:420 +msgid "Error: permalink state not found" msgstr "" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" msgstr "" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" msgstr "" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" +#: superset/views/core.py:716 +msgid "" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -#: superset/views/database/forms.py:206 -msgid "Character to interpret as decimal point" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" msgstr "" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" 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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" +#: superset/views/core.py:836 +msgid "permalink state not found" msgstr "" -#: superset/views/core.py:1762 -#, python-format -msgid "Chart %(id)s not found" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" msgstr "" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "Grafy" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" +#: superset/views/css_templates.py:46 +msgid "Template Name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -msgid "Chart Orientation" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" +msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "Grafy" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, python-format -msgid "Chart [%s] has been overwritten" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, python-format -msgid "Chart [%s] has been saved" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, python-format -msgid "Chart [%s] was added to dashboard [%s]" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset/views/core.py:1099 -msgid "Chart [{}] has been overwritten" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" msgstr "" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" +#: superset/views/utils.py:492 +msgid "Could not find viz object" msgstr "" -#: superset/views/core.py:1124 -msgid "Chart [{}] was added to dashboard [{}]" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/chart/mixin.py:63 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." msgstr "" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" msgstr "" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" msgstr "" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" msgstr "" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -msgid "Chart imported" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -msgid "Chart last modified" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -msgid "Chart last modified by" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "Grafy" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" +msgstr "" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -msgid "Chart title" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Grafy" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" msgstr "" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" msgstr "" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" +#: superset/views/database/forms.py:145 +msgid "Column Data Types" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" +#: superset/views/database/forms.py:161 +msgid "Delimiter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Choose the format for legend values" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Choose the position of the legend" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" msgstr "" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" +#: superset/views/database/forms.py:201 +msgid "Day First" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." +#: superset/views/database/forms.py:212 +msgid "Null Values" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 -msgid "Clear all data" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 -msgid "Clear form" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 +#: superset/views/database/forms.py:234 msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." +#: superset/views/database/forms.py:242 +msgid "Columns To Read" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/database/forms.py:249 msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" msgstr "" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" +#: superset/views/database/forms.py:289 +msgid "Excel File" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Click to sort ascending" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:215 -msgid "Click to sort descending" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 -msgid "Collapse data panel" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:214 -msgid "Collapse row" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 -msgid "Collapse tab content" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" +#: superset/views/database/forms.py:399 +msgid "Null values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" +#: superset/views/database/forms.py:421 +msgid "Columnar File" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" +#: superset/views/database/forms.py:469 +msgid "Use Columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 -msgid "Color of the target location" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Databázy" + +#: superset/views/database/mixins.py:34 +msgid "Show Database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 -msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +#: superset/views/database/mixins.py:35 +msgid "Add Database" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset/views/database/forms.py:144 -msgid "Column Data Types" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 -msgid "Column Formatting" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/database/mixins.py:165 msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 -msgid "Column datatype" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" msgstr "" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" msgstr "" -#: superset/views/database/forms.py:233 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -msgid "Column name" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" msgstr "" -#: superset/views/database/forms.py:221 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" msgstr "" -#: superset/views/database/forms.py:352 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column." +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" msgstr "" -#: superset/views/database/forms.py:424 -msgid "Columnar File" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" msgstr "" -#: superset/views/database/views.py:568 -#, python-format -msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" msgstr "" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" -#: superset/views/database/forms.py:193 -msgid "Columns To Be Parsed as Dates" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" msgstr "" -#: superset/views/database/forms.py:241 -msgid "Columns To Read" +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/common/query_context_processor.py:132 +#: superset/views/database/views.py:277 #, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/viz.py:593 +#: superset/views/database/views.py:289 #, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +#: superset/views/database/views.py:566 +#, python-format msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 -msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." +#: superset/views/log/__init__.py:21 +msgid "Logs" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." +#: superset/views/log/__init__.py:22 +msgid "Show Log" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." +#: superset/views/log/__init__.py:23 +msgid "Add Log" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 -msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." +#: superset/views/log/__init__.py:24 +msgid "Edit Log" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 -msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" +#: superset/views/log/__init__.py:31 +msgid "Action" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" +#: superset/views/log/__init__.py:32 +msgid "dttm" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -msgid "Conditional Formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +#, fuzzy +msgid "Category name" +msgstr "Datasety" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#, fuzzy +msgid "Total value" +msgstr "Anotačná vrstva" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +#, fuzzy +msgid "Average value" +msgstr "Spravovať" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +msgid "Column datatype" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -msgid "Continue" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" msgstr "" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 -msgid "Copy permalink to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -msgid "Copy the name of the database you are trying to connect to." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" msgstr "" -#: superset/db_engine_specs/ocient.py:259 -#, python-format -msgid "Could not connect to database: \"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." msgstr "" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" msgstr "" -#: superset/views/utils.py:512 -msgid "Could not find viz object" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" msgstr "" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 -msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +#, fuzzy +msgid "Annotations and Layers" +msgstr "Anotačná vrstva" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -msgid "Create dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" msgstr "" -#: superset/views/access_requests.py:49 -msgid "Created On" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +msgid "Y Axis Title Position" msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" msgstr "" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 -msgid "Crimson" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -msgid "Cross-filtering is not enabled in this dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -msgid "Cross-filtering scoping" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -msgid "Cross-filters" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" msgstr "" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" msgstr "" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" -msgstr "" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 -msgid "DATETIME" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" msgstr "" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 -msgid "Dark" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." msgstr "" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +msgid "Force categorical" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." msgstr "" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." msgstr "" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" msgstr "" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." msgstr "" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." msgstr "" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "Importovať dashboard" - -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -#, fuzzy -msgid "Dashboard title" -msgstr "Importovať dashboard" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "Importovať dashboard" - -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "" - -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -#, fuzzy -msgid "Dashboards added to" -msgstr "Importovať dashboard" - -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "" - -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -#, fuzzy -msgid "Dashed" -msgstr "Importovať dashboard" - -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "Dáta" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." msgstr "" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +msgid "Select a metric to display on the right axis" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" -msgstr "" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -msgid "Data refreshed" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" msgstr "" -#: superset/views/database/views.py:481 -#, python-format +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" msgstr "" -#: superset/views/database/views.py:321 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" msgstr "" -#: superset/initialization/__init__.py:243 -msgid "Database Connections" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" msgstr "" -#: superset/views/access_requests.py:46 -msgid "Database URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -msgid "Database connected" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" msgstr "" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" msgstr "" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" msgstr "" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" msgstr "" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" msgstr "" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" msgstr "" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" msgstr "" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" msgstr "" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" msgstr "" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" msgstr "" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" msgstr "" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" msgstr "" -#: superset/views/core.py:1201 -#, python-format -msgid "Database not found: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" -msgstr "" - -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 -msgid "Database settings updated" -msgstr "" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Databázy" - -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "" - -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "" - -#: superset-frontend/src/explore/components/SaveModal.tsx:366 -#, fuzzy -msgid "Dataset Name" -msgstr "Datasety" - -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "" - -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "" - -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "" - -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "" - -#: superset/datasets/commands/exceptions.py:210 -msgid "Dataset could not be duplicated." -msgstr "" - -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "" - -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 -msgid "Dataset imported" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "Datasety" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" msgstr "" -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +msgid "Currency format" msgstr "" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" msgstr "" -#: superset/db_engine_specs/base.py:107 -msgid "Day" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" msgstr "" -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" msgstr "" -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" msgstr "" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" msgstr "" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" msgstr "" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" msgstr "" -#: superset/viz.py:2848 -#, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "Grafy" - -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" msgstr "" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" msgstr "" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" msgstr "" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" msgstr "" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -msgid "Default datetime" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" msgstr "" -#: superset/views/base.py:664 -msgid "Delete all Really?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 -msgid "Deleted" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" msgstr "" -#: superset/annotation_layers/annotations/api.py:504 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." +msgstr "" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, python-format -msgid "Deleted %s" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" msgstr "" -#: superset/views/database/forms.py:160 -msgid "Delimiter" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#, fuzzy +msgid "Range" +msgstr "Spravovať" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" msgstr "" -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -msgid "Dim Gray" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -msgid "Dimension" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 -msgid "Dotted" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -msgid "Download" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -msgid "Draw split lines for minor axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop a temporal column here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -msgid "Duplicate" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" msgstr "" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" msgstr "" -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" msgstr "" -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" msgstr "" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 #, fuzzy -msgid "ECharts" -msgstr "Grafy" +msgid "series" +msgstr "Uložené dotazy" -#: superset/reports/notifications/email.py:133 -msgid "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "Spravovať" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" msgstr "" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" msgstr "" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" msgstr "" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" msgstr "" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" msgstr "" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" msgstr "" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -msgid "Edit Rule" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" msgstr "" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" msgstr "" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -#, fuzzy -msgid "Edit chart" -msgstr "Grafy" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -#, fuzzy -msgid "Edit the dashboard" -msgstr "Importovať dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" msgstr "" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 #, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." +msgid "Base layer map style. See Mapbox documentation: %s" msgstr "" -#: superset/db_engine_specs/mssql.py:85 -#, python-format -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" msgstr "" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 -#, fuzzy -msgid "Embed dashboard" -msgstr "Importovať dashboard" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 -msgid "Emit Filter Events" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -msgid "Empty column" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" msgstr "" -#: superset/charts/data/api.py:366 -msgid "Empty query result" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" msgstr "" -#: superset/models/helpers.py:1508 -msgid "Empty query?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" msgstr "" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" msgstr "" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -msgid "End (Longitude, Latitude): " +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" msgstr "" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "End date" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" msgstr "" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" msgstr "" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -#, fuzzy -msgid "Enter Primary Credentials" -msgstr "Nahrať Excel" - -#: superset/views/database/forms.py:161 -msgid "Enter a delimiter for this data" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" msgstr "" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" msgstr "" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" msgstr "" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" msgstr "" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" msgstr "" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" msgstr "" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" msgstr "" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" msgstr "" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" msgstr "" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" msgstr "" -#: superset/views/core.py:839 -msgid "Error: permalink state not found" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" msgstr "" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -msgid "Event" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" msgstr "" -#: superset/viz.py:2927 -msgid "Event flow" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" msgstr "" -#: superset/views/database/forms.py:288 -msgid "Excel File" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" msgstr "" -#: superset/views/database/views.py:427 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" -msgstr "" - -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -msgid "Excluded roles" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -msgid "Existing dataset" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -msgid "Expand row" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" msgstr "" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" msgstr "" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 -msgid "Export to .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Export to .JSON" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -msgid "Export to Excel" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -msgid "Export to full .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" msgstr "" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" msgstr "" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" msgstr "" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -msgid "Extruded" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." msgstr "" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +#, fuzzy +msgid "deck.gl charts" +msgstr "Grafy" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -msgid "Failed to save cross-filter scoping" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " msgstr "" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" msgstr "" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 -msgid "Fetching" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" msgstr "" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" msgstr "" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" msgstr "" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 -msgid "Fill Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 -msgid "Filled" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +msgid "Aggregation" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 -msgid "Filter Configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +msgid "Contours" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 -msgid "Filter Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box (deprecated)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 #, fuzzy -msgid "Filter charts" +msgid "deck.gl Contour" msgstr "Grafy" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 -msgid "Filter menu" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +msgid "Line width unit" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +msgid "meters" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" msgstr "" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Grafy" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "Spravovať" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" msgstr "" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 -msgid "Fixed point radius" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 -msgid "Force date format" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Forest Green" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" msgstr "" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 -msgid "Formatted date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 -msgid "Formula" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Forward values" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Generic Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 -msgid "GeoJson Column" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" msgstr "" -#: superset-frontend/src/explore/constants.ts:68 -msgid "Greater or equal (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" msgstr "" -#: superset-frontend/src/explore/constants.ts:66 -msgid "Greater than (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 -msgid "Grid" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 -msgid "Grid Size" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 -msgid "Group Key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" msgstr "" -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" msgstr "" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 -msgid "Has created by" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hide Line" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 -msgid "Hide chart description" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 -msgid "Hides the Line for the time series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "Domov" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 -msgid "Horizontal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" msgstr "" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" msgstr "" -#: superset/views/database/mixins.py:165 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -#: superset/views/database/forms.py:174 -msgid "If Table Already Exists" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" msgstr "" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" msgstr "" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Ignore cache when generating screenshot" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" msgstr "" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" msgstr "" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "Importovať dashboard" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" msgstr "" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" msgstr "" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" msgstr "" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" msgstr "" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -#: superset-frontend/src/explore/constants.ts:71 -msgid "In" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" msgstr "" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +msgid "Bubble Chart (legacy)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +#, fuzzy +msgid "Ranges" +msgstr "Spravovať" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" msgstr "" -#: superset/views/database/forms.py:200 -msgid "Interpret Datetime Format Automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" msgstr "" -#: superset/views/database/forms.py:201 -msgid "Interpret the datetime format automatically" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 -msgid "Interval" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +#, fuzzy +msgid "Sort Bars" +msgstr "Importovať dashboard" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." msgstr "" -#: superset/db_engine_specs/ocient.py:274 -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" msgstr "" -#: superset/advanced_data_type/api.py:100 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" msgstr "" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" msgstr "" -#: superset/databases/schemas.py:164 -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" msgstr "" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" msgstr "" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." msgstr "" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" msgstr "" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" msgstr "" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" msgstr "" -#: superset/utils/core.py:1373 -#, python-format -msgid "Invalid metric object: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" msgstr "" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" msgstr "" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" msgstr "" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" msgstr "" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" msgstr "" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +msgid "Pie Chart (legacy)" msgstr "" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 -msgid "Invert current page" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" msgstr "" -#: superset-frontend/src/explore/constants.ts:89 -msgid "Is false" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset/views/base_api.py:149 -msgid "Is favorite" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" -#: superset-frontend/src/explore/constants.ts:80 -msgid "Is not null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" msgstr "" -#: superset-frontend/src/explore/constants.ts:83 -msgid "Is null" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" msgstr "" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" msgstr "" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 -msgid "It’s not recommended to truncate axis in Bar chart." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" msgstr "" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" msgstr "" -#: superset/views/database/forms.py:243 -msgid "Json list of the column names that should be read" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" msgstr "" -#: superset/views/database/forms.py:474 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" -#: superset/views/database/forms.py:213 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" msgstr "" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -msgid "Key" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +#, fuzzy +msgid "Sort Series By" +msgstr "Uložené dotazy" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Kilometers" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 -msgid "LIMIT" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +#, fuzzy +msgid "Series Order" +msgstr "Uložené dotazy" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +msgid "Truncate X Axis" msgstr "" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +msgid "Minor ticks" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" msgstr "" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" msgstr "" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" msgstr "" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +msgid "Conditional Formatting" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -msgid "Legend Format" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -msgid "Legend Orientation" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -msgid "Legend Position" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" msgstr "" -#: superset-frontend/src/explore/constants.ts:63 -msgid "Less or equal (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -msgid "Light" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" msgstr "" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." msgstr "" -#: superset-frontend/src/explore/constants.ts:75 -msgid "Like (case insensitive)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" msgstr "" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." -msgstr "" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +#, fuzzy +msgid "ECharts" +msgstr "Grafy" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +msgid "Bubble size number format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +msgid "Bubble Opacity" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" msgstr "" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -msgid "Lines column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 -msgid "Lines encoding" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, python-format +msgid "% calculation" msgstr "" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +msgid "Label Contents" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:184 -msgid "List updated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +msgid "Value and Percentage" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." msgstr "" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +msgid "Show Tooltip Labels" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +msgid "Whether to display the tooltip labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -msgid "Locate the chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 -msgid "Logarithmic axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 -msgid "Logarithmic y-axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" msgstr "" -#: superset/views/log/__init__.py:21 -msgid "Logs" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 -msgid "Longitude & Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 -msgid "Longitude and Latitude" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" msgstr "" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" msgstr "" -#: superset/views/core.py:1752 -msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" msgstr "" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "Spravovať" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -msgid "Manage email report" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" msgstr "" -#: superset/viz.py:2258 -msgid "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 -msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Maximum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Mean values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 -msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -msgid "Median values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." msgstr "" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" msgstr "" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -msgid "Metric name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -msgid "Middle" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -msgid "Miles" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -msgid "Minimum Radius" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Minimum value" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +#, fuzzy +msgid "Shared query fields" +msgstr "Uložené dotazy" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" msgstr "" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -msgid "Missing URL parameters" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset/db_engine_specs/base.py:109 -msgid "Month" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" msgstr "" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 -msgid "More" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 -msgid "More filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" msgstr "" -#: superset/views/database/views.py:468 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 -msgid "Multiple filtering" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -msgid "Multiplier" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" msgstr "" -#: superset/reports/commands/exceptions.py:94 -msgid "Must choose either a chart or a dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" msgstr "" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" msgstr "" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" msgstr "" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" msgstr "" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." msgstr "" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -msgid "NUMERIC" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." msgstr "" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" msgstr "" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." msgstr "" -#: superset/views/database/forms.py:129 -msgid "Name of table to be created with CSV file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -#, fuzzy -msgid "New dataset" -msgstr "Datasety" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -msgid "New header" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 -#, fuzzy -msgid "No Rules yet" -msgstr "Grafy" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 -#, fuzzy -msgid "No annotation layers" -msgstr "Anotačná vrstva" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 -msgid "No applied filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:34 -#, fuzzy -msgid "No charts yet" -msgstr "Grafy" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -msgid "No columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 -msgid "No compatible datasets found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -msgid "No compatible schema found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" msgstr "" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "Importovať dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" msgstr "" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -msgid "No database tables found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 -msgid "No filters" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "No filters are currently added to this dashboard." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "No matching records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No recents yet" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 -msgid "No results" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -msgid "No samples were returned for this dataset" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -#, fuzzy -msgid "No saved expressions found" -msgstr "Uložené dotazy" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -#, fuzzy -msgid "No saved queries yet" -msgstr "Uložené dotazy" - -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -msgid "No table columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -msgid "No temporal columns found" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" msgstr "" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" msgstr "" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 -msgid "Not added to any dashboard" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" msgstr "" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Not equal to (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." msgstr "" -#: superset-frontend/src/explore/constants.ts:72 -msgid "Not in" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +msgid "Increase" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +msgid "Decrease" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Uložené dotazy" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Grafy" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" msgstr "" -#: superset/views/database/forms.py:211 -msgid "Null Values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 -msgid "Null imputation" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" msgstr "" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" msgstr "" -#: superset/views/database/forms.py:265 -msgid "Number of rows of file to read" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" msgstr "" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" msgstr "" -#: superset/views/database/forms.py:271 -msgid "Number of rows to skip at start of file" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +msgid "Range for Comparison" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +msgid "Filters for Comparison" msgstr "" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" msgstr "" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" msgstr "" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" msgstr "" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "Spravovať" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" msgstr "" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" msgstr "" -#: superset/views/core.py:2029 -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" msgstr "" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" msgstr "" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 -msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" msgstr "" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +msgid "Show rows subtotal" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" msgstr "" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +msgid "Show columns subtotal" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -msgid "Orientation" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -msgid "Orientation of bar chart" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -msgid "Override time grain" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -msgid "Override time range" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" msgstr "" -#: superset/views/database/forms.py:247 -msgid "Overwrite Duplicate Columns" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -msgid "Overwrite existing" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" msgstr "" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" msgstr "" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name" -" or username." -msgstr "" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" msgstr "" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" msgstr "" -#: superset/viz.py:3069 -msgid "Partition Diagram" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 -msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -msgid "Percentage change" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:126 -msgid "Periods must be a whole number" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" msgstr "" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" msgstr "" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." msgstr "" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" msgstr "" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset/viz.py:1131 -msgid "Pick a metric to display" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -msgid "Pick a nickname for how the database will display in Superset." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." msgstr "" -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." msgstr "" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." +"An error occurred while removing the table schema. Please contact your " +"administrator." msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" msgstr "" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" msgstr "" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" msgstr "" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" msgstr "" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" msgstr "" -#: superset/viz.py:3234 -msgid "Please choose at least one groupby" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" msgstr "" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" msgstr "" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +msgid "Run current query" +msgstr "" + +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +msgid "Format SQL" msgstr "" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +msgid "Find" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -#, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" msgstr "" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" msgstr "" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" msgstr "" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" msgstr "" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "Pluginy" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -msgid "Point Color" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -msgid "Point Radius Scale" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -msgid "Point Size" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -msgid "Point Unit" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -msgid "Polygon Settings" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" msgstr "" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "Port" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" msgstr "" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -msgid "Position of intermediate node label on tree" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#, fuzzy +msgid "See query details" +msgstr "Uložené dotazy" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" msgstr "" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" msgstr "" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 -msgid "Previous Line" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" msgstr "" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 -msgid "Primary y-axis Bounds" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +#, fuzzy +msgid "Save dataset" +msgstr "Datasety" + +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 -msgid "Purple" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" msgstr "" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" msgstr "" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "Uložené dotazy" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" msgstr "" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "História dotazov" - -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 #: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 msgid "Query history" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -msgid "Query imported" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" msgstr "" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." msgstr "" -#: superset/row_level_security/commands/exceptions.py:29 -msgid "RLS Rule could not be deleted." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" msgstr "" -#: superset/row_level_security/commands/exceptions.py:25 -msgid "RLS Rule not found." +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -msgid "Radius in meters" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#, fuzzy -msgid "Range" -msgstr "Spravovať" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" msgstr "" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -#, fuzzy -msgid "Ranges" -msgstr "Spravovať" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" msgstr "" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" msgstr "" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" msgstr "" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" msgstr "" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" msgstr "" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 -msgid "Refresh table list" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, python-format +msgid "Modified by: %s" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 -msgid "Refresh tables" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 -msgid "Refreshing charts" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" msgstr "" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Regex" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -msgid "Regular" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#: superset-frontend/src/components/Chart/Chart.jsx:274 msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" msgstr "" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:281 -msgid "Report Name" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" msgstr "" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" msgstr "" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" msgstr "" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" msgstr "" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +msgid "You do not have sufficient permissions to edit the chart" msgstr "" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +#, fuzzy +msgid "Edit chart" +msgstr "Grafy" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" msgstr "" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." msgstr "" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" msgstr "" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +msgid "There was an error loading the chart data" msgstr "" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" msgstr "" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" msgstr "" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" msgstr "" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" msgstr "" -#: superset/reports/commands/exceptions.py:273 -msgid "Report schedule client error" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" msgstr "" -#: superset/reports/commands/exceptions.py:267 -msgid "Report schedule system error" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" msgstr "" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:121 -msgid "Report updated" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" msgstr "" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" msgstr "" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" msgstr "" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" msgstr "" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" msgstr "" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:203 -msgid "Reset" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" msgstr "" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" msgstr "" -#: superset/temporary_cache/commands/exceptions.py:49 -msgid "Resource was not found." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" msgstr "" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" msgstr "" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -msgid "Reverse Lat & Long" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" msgstr "" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" msgstr "" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" msgstr "" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" msgstr "" -#: superset/dashboards/filters.py:200 -msgid "Role" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" msgstr "" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" 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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" msgstr "" -#: 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 " -"defined, regular access permissions apply." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" msgstr "" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" msgstr "" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 -msgid "Rotate axis label" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -#, fuzzy -msgid "Row Level Security" -msgstr "Bezpečnosť na úrovni riadkov" - -#: superset/views/database/forms.py:255 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" msgstr "" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" msgstr "" -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 -#, fuzzy -msgid "Rule Name" -msgstr "Spravovať" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +#, fuzzy +msgid "Swap dataset" +msgstr "Datasety" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" msgstr "" -#: superset/sql_lab.py:480 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" msgstr "" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" msgstr "" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 -msgid "SSH Tunnel could not be updated." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 -msgid "SSH Tunnel not found." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 #, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgid "Modified columns: %s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -msgid "STRING" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -msgid "Samples" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:194 -msgid "Samples for dataset could not be retrieved." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" msgstr "" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" msgstr "" -#: superset/viz.py:1854 -msgid "Sankey" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Satellite" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -msgid "Save & go to new dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -msgid "Save as Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -msgid "Save as dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +msgid "Normalize column names" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -msgid "Save as..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -#, fuzzy -msgid "Save dataset" -msgstr "Datasety" - -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +msgid "Metric Key" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -msgid "Save to new dashboard" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" msgstr "" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "Uložené dotazy" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -#, fuzzy -msgid "Saved expressions" -msgstr "Uložené dotazy" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" msgstr "" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" msgstr "" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." -msgstr "" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Schedule a new email report" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +#, fuzzy +msgid "Error saving dataset" +msgstr "Datasety" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" msgstr "" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" msgstr "" -#: superset/views/core.py:1186 -msgid "Schema undefined" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 -msgid "Schemas allowed for File upload" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -msgid "Search columns" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 -msgid "Search in filters" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -msgid "Search tables" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" msgstr "" -#: superset/db_engine_specs/base.py:97 -msgid "Second" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -msgid "Secondary y-axis Bounds" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, python-format -msgid "Seconds %s" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" msgstr "" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "Bezpečnosť" - -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:183 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 #, python-format -msgid "See all %(tableName)s" +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -#, fuzzy -msgid "See query details" -msgstr "Uložené dotazy" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." msgstr "" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" msgstr "" -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" msgstr "" -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -#, fuzzy -msgid "Select a dashboard" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" msgstr "" -#: superset/views/database/forms.py:138 -msgid "Select a database to upload the file to" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Select a dimension" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" msgstr "" -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:155 -msgid "Select a schema if the database supports this" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 -msgid "Select all data" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 -msgid "Select all items" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -#, fuzzy -msgid "Select chart" -msgstr "Grafy" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:208 -msgid "Select current page" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 -msgid "Select database & schema" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -msgid "Select database or type to search databases" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 -msgid "Select database table" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -msgid "Select dataset source" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -msgid "Select or type dataset name" +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -msgid "Select schema or type to search schemas" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" +#: superset-frontend/src/components/Table/index.tsx:226 +msgid "Select all data" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 -msgid "Select table or type to search tables" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 -msgid "Select the Annotation Layer you would like to use." +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -msgid "Select the geojson column" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" msgstr "" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" +#: superset-frontend/src/components/Tags/utils.tsx:72 +msgid "You do not have permission to read tags" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -#, fuzzy -msgid "Series Order" -msgstr "Uložené dotazy" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -msgid "Set up an email report" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 -msgid "Share permalink by email" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 #, fuzzy -msgid "Shared query fields" -msgstr "Uložené dotazy" +msgid "Edit the dashboard" +msgstr "Importovať dashboard" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" msgstr "" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" msgstr "" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" msgstr "" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" msgstr "" -#: superset/views/database/mixins.py:34 -msgid "Show Database" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +#, fuzzy +msgid "Filter charts" +msgstr "Grafy" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" msgstr "" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" msgstr "" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +msgid "Unknown type" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 -msgid "Show Total" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "" + +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 -msgid "Show chart description" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +msgid "Sorry, something went wrong. Please try again." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 -msgid "Show empty columns" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" msgstr "" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "Importovať dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +msgid "Export to PDF" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" +msgstr "Importovať dashboard" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" msgstr "" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" msgstr "" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" msgstr "" -#: superset/views/database/forms.py:188 -msgid "Skip blank lines rather than interpreting them as Not A Number values" +#: 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:66 +msgid "Error" msgstr "" -#: superset/views/database/forms.py:184 -msgid "Skip spaces after delimiter" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" msgstr "" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" +#: 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 "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." +"Owners is a list of users who can alter the dashboard. Searchable by name" +" or username." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" msgstr "" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" +#: 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 " +"defined, regular access permissions apply." msgstr "" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 -#, python-format -msgid "Sorry there was an error fetching database information: %s" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" msgstr "" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" msgstr "" -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." +#: 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 "" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 #, python-format -msgid "Sorry, there was an error saving this dashboard: %s" +msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -#, fuzzy -msgid "Sort Bars" -msgstr "Importovať dashboard" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 -msgid "Sort Series Ascending" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 -#, fuzzy -msgid "Sort Series By" -msgstr "Uložené dotazy" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 -#, python-format -msgid "Sort by %s" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, fuzzy, python-format +msgid "Chart Data: %s" +msgstr "Grafy" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +msgid "Export to full Excel" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." msgstr "" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" msgstr "" -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." msgstr "" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Square kilometers" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Square meters" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Square miles" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -msgid "Start (Longitude, Latitude): " +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -msgid "Start date" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -msgid "Started" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Grafy" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Stepped Line" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 -msgid "Stop running (Ctrl + e)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" msgstr "" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 -msgid "Streets" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" msgstr "" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 -msgid "Stroke Color" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -msgid "Stroke Width" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 -msgid "Stroked" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Datasety" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Sum values" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" msgstr "" -#: superset/viz.py:1805 -msgid "Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 -msgid "Sunburst Chart v2" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" msgstr "" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" msgstr "" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" msgstr "" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -#, fuzzy -msgid "Swap dataset" -msgstr "Datasety" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" msgstr "" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -msgid "TEMPORAL X-AXIS" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" msgstr "" -#: superset-frontend/src/explore/constants.ts:91 -msgid "TEMPORAL_RANGE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 +msgid "" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" msgstr "" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" msgstr "" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" msgstr "" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" msgstr "" -#: superset/viz.py:722 -msgid "Table View" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" msgstr "" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" msgstr "" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -msgid "Table loading" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" msgstr "" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" msgstr "" -#: superset/db_engine_specs/ocient.py:287 -#, python-format -msgid "Table or View \"%(table)s\" does not exist." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." msgstr "" -#: superset/tags/commands/exceptions.py:34 -msgid "Tag could not be created." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" msgstr "" -#: superset/tags/commands/exceptions.py:38 -msgid "Tag could not be deleted." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" msgstr "" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" msgstr "" -#: superset/tags/commands/exceptions.py:30 -msgid "Tag parameters are invalid." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +msgid "" +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -#: superset/tags/commands/exceptions.py:42 -msgid "Tagged Object could not be deleted." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -msgid "Target Color" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" msgstr "" -#: superset/views/css_templates.py:46 -msgid "Template Name" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." msgstr "" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." +msgid "Click to edit %s." msgstr "" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." msgstr "" -#: superset/errors.py:124 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, python-format +msgid "Use %s to open in a new tab." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" msgstr "" -#: superset/common/query_context_processor.py:585 -msgid "The chart datasource does not exist" +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" msgstr "" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" msgstr "" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" msgstr "" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" msgstr "" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -msgid "The database columns that contains lines information" +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset/sqllab/commands/estimate.py:58 -msgid "The database could not be found" +#: superset-frontend/src/explore/controls.jsx:126 +msgid "" +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "" + +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" msgstr "" -#: superset/errors.py:99 -msgid "The database is under an unusual load." +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" msgstr "" -#: superset/sqllab/commands/execute.py:172 -msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" msgstr "" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" msgstr "" -#: superset/errors.py:144 -msgid "The database was deleted." +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" +#: superset-frontend/src/explore/controls.jsx:310 +msgid "" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." +#: superset-frontend/src/explore/controls.jsx:367 +msgid "" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" +#: superset-frontend/src/explore/controls.jsx:383 +msgid "" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -#: superset/errors.py:98 -msgid "The datasource is too large to query." +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 -msgid "The encoding format of the lines" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" msgstr "" -#: superset/common/query_object.py:313 +#: superset-frontend/src/explore/actions/saveModalActions.js:142 #, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " +msgid "Chart [%s] has been saved" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, python-format +msgid "Chart [%s] has been overwritten" msgstr "" -#: superset/db_engine_specs/mysql.py:160 +#: superset-frontend/src/explore/actions/saveModalActions.js:153 #, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 +#: superset-frontend/src/explore/actions/saveModalActions.js:163 #, python-format -msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." +msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" msgstr "" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" msgstr "" -#: superset/connectors/sqla/views.py:325 -msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 +msgid "" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" msgstr "" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +msgid "An error occurred while loading dashboard information." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." msgstr "" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" msgstr "" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "Datasety" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +#, fuzzy +msgid "Select a dashboard" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "" + +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "Importovať dashboard" + +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" +msgstr "" + +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" +msgstr "" + +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +msgid "A new chart and dashboard will be created." +msgstr "" + +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +msgid "A new chart will be created." +msgstr "" + +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +msgid "A new dashboard will be created." msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" msgstr "" -#: superset/errors.py:109 -msgid "The port is closed." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" msgstr "" -#: superset/errors.py:142 -msgid "The port number is invalid." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" msgstr "" -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" msgstr "" -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" msgstr "" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." msgstr "" -#: superset/sqllab/commands/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." msgstr "" -#: superset/errors.py:135 -msgid "The query has a syntax error." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Importovať dashboard" + +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" msgstr "" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 -msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" msgstr "" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" msgstr "" -#: superset/errors.py:138 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." msgstr "" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "" + +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " msgstr "" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#, fuzzy +msgid "Chart Source" +msgstr "Grafy" + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" msgstr "" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" msgstr "" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" msgstr "" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" msgstr "" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" msgstr "" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" msgstr "" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." msgstr "" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." msgstr "" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " msgstr "" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" msgstr "" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" msgstr "" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "" + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 -msgid "The width of the lines" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" msgstr "" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" msgstr "" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 -#, python-format -msgid "There are associated alerts or reports: %s," +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 -msgid "There are no charts added to this dashboard" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +#, fuzzy +msgid "No annotation layers" +msgstr "Anotačná vrstva" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" msgstr "" -#: superset/errors.py:101 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -msgid "There was an error fetching dataset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +#, fuzzy +msgid "Annotation layer value" +msgstr "Anotačná vrstva" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -msgid "There was an error fetching dataset's related objects" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 -msgid "There was an error fetching tables" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +#, fuzzy +msgid "Annotation layer time column" +msgstr "Anotačná vrstva" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -msgid "There was an error loading the chart data" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" msgstr "" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +#, fuzzy +msgid "Annotation layer interval end" +msgstr "Anotačná vrstva" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" msgstr "" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +#, fuzzy +msgid "Annotation layer title column" +msgstr "Anotačná vrstva" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" msgstr "" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, python-format -msgid "There was an issue deleting rules: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +msgid "" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 -msgid "There was an issue duplicating the dataset." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +#, fuzzy +msgid "Annotation layer stroke" +msgstr "Anotačná vrstva" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#, fuzzy +msgid "Dashed" +msgstr "Importovať dashboard" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +#, fuzzy +msgid "Annotation layer opacity" +msgstr "Anotačná vrstva" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" msgstr "" -#: superset/viz.py:1915 -msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" msgstr "" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." msgstr "" -#: 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 " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" msgstr "" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" msgstr "" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +#, fuzzy +msgid "Annotation source type" +msgstr "Anotačná vrstva" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "Anotačná vrstva" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" msgstr "" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" msgstr "" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This database table does not contain any data. Please select a different " -"table." +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +msgid "Display" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +msgid "Number formatting" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" msgstr "" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" msgstr "" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 -msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" msgstr "" #: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" msgstr "" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" msgstr "" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -#, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +msgid "Color: " msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +msgid "Isoline" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" msgstr "" -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" msgstr "" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" msgstr "" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" msgstr "" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" msgstr "" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" msgstr "" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" msgstr "" -#: superset/viz.py:878 -msgid "Time Table View" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" msgstr "" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" msgstr "" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" msgstr "" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" msgstr "" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" msgstr "" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" msgstr "" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -msgid "Time series" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." msgstr "" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -msgid "Time-series Bar Chart (legacy)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" msgstr "" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" msgstr "" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" 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: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 -msgid "Title" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" msgstr "" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +#, fuzzy +msgid "Saved expressions" +msgstr "Uložené dotazy" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" -msgstr "" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#, fuzzy +msgid "No saved expressions found" +msgstr "Uložené dotazy" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -msgid "Top left" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top right" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" msgstr "" -#: superset/viz.py:1047 -msgid "Total" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "Anotačná vrstva" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, python-format -msgid "Total: %s" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" +msgstr "" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -msgid "Truncate Axis" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -msgid "Truncate Cells" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -msgid "Truncate Metric" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -msgid "Tukey" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 #, python-format -msgid "Type \"%s\" to confirm" +msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format +msgid "Error while fetching data: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" msgstr "" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" msgstr "" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" msgstr "" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" msgstr "" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 -msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" msgstr "" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" msgstr "" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/views.py:415 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." msgstr "" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" msgstr "" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" msgstr "" -#: superset/views/api.py:108 -#, python-format -msgid "Unexpected time range: %s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" msgstr "" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" msgstr "" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" msgstr "" -#: superset/models/helpers.py:1582 +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 #, python-format -msgid "Unknown column used in orderby: %(col)s" +msgid "Currently rendered: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 -msgid "Unknown type" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." msgstr "" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" msgstr "" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" msgstr "" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" msgstr "" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" msgstr "" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -msgid "Untitled Dataset" -msgstr "" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +#, fuzzy +msgid "Dashboards added to" +msgstr "Importovať dashboard" -#: superset/views/sql_lab/views.py:148 -msgid "Untitled Query" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" msgstr "" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" msgstr "" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" msgstr "" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" msgstr "" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -#, fuzzy -msgid "Upload CSV" -msgstr "Nahrať Excel" - -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -#, fuzzy -msgid "Upload Credentials" -msgstr "Nahrať Excel" - -#: superset/databases/filters.py:66 -#, fuzzy -msgid "Upload Enabled" -msgstr "Nahrať Excel" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -#, fuzzy -msgid "Upload Excel file" -msgstr "Nahrať Excel" - -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -#, fuzzy -msgid "Usage" -msgstr "Spravovať" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" msgstr "" -#: superset/views/database/forms.py:472 -msgid "Use Columns" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" msgstr "" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" msgstr "" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" msgstr "" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" msgstr "" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" msgstr "" -#: superset/views/access_requests.py:45 -msgid "User Roles" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" msgstr "" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" msgstr "" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -msgid "View" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" msgstr "" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "Datasety" - -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -msgid "View all charts" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -msgid "View as table" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +#, fuzzy +msgid "Queries" +msgstr "Uložené dotazy" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -msgid "Virtual" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" msgstr "" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#, fuzzy +msgid "Annotation template updated" +msgstr "Anotačná vrstva" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#, fuzzy +msgid "Annotation template created" +msgstr "Anotačná vrstva" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" msgstr "" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 -msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, python-format +msgid "Modified %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset/viz.py:140 -msgid "Viz is missing a datasource" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +msgid "" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 -msgid "Was unable to check your query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" msgstr "" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format -msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 +msgid "" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset/db_engine_specs/redshift.py:94 -#, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" msgstr "" -#: superset/db_engine_specs/base.py:108 -msgid "Week" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" msgstr "" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" msgstr "" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -msgid "Weekly Report" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 -msgid "Weight" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 +msgid "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -#: superset/views/database/forms.py:175 -msgid "What should happen if the table already exists" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" msgstr "" -#: superset/views/database/mixins.py:119 -msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 -msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" msgstr "" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +#, fuzzy +msgid "Enter Primary Credentials" +msgstr "Nahrať Excel" + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "Whether to apply filter when items are clicked" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -msgid "Whether to display the aggregate count" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -msgid "Whether to display the stroke" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -msgid "Whether to fill the objects" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 -msgid "Whether to ignore locations that are null" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 -msgid "Whether to make the grid 3D" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" msgstr "" -#: superset/connectors/sqla/views.py:357 -msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 -msgid "Whether to truncate metrics" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." msgstr "" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." msgstr "" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" msgstr "" -#: superset/views/database/forms.py:229 -msgid "Write dataframe index as a column" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." msgstr "" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +#, fuzzy +msgid "Upload Credentials" +msgstr "Nahrať Excel" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" msgstr "" -#: superset/db_engine_specs/base.py:111 -msgid "Year" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 -#, python-format -msgid "Years %s" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "Datasety" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#, fuzzy +msgid "Usage" +msgstr "Spravovať" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "Grafy" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "Importovať dashboard" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#, fuzzy +msgid "New dataset" +msgstr "Datasety" + +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +#, fuzzy +msgid "dataset name" +msgstr "Datasety" + +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +msgid "Not defined" msgstr "" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, python-format -msgid "You do not have permission to edit this %s" +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" msgstr "" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" msgstr "" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" msgstr "" -#: superset/charts/commands/exceptions.py:131 -msgid "You don't have access to this chart." +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" msgstr "" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" msgstr "" -#: superset/datasets/commands/exceptions.py:206 -msgid "You don't have access to this dataset." +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" msgstr "" -#: superset/embedded_dashboard/commands/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" msgstr "" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" msgstr "" -#: superset/security/manager.py:2262 +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 #, python-format -msgid "You don't have the rights to alter %(resource)s" +msgid "An error occurred while fetching dashboards: %s" msgstr "" -#: superset/views/core.py:945 -msgid "You don't have the rights to alter this chart" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +#, fuzzy +msgid "charts" +msgstr "Grafy" -#: superset/views/core.py:1119 -msgid "You don't have the rights to alter this dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:29 +#, fuzzy +msgid "dashboards" +msgstr "Importovať dashboard" + +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" msgstr "" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." +#: superset-frontend/src/features/home/EmptyState.tsx:31 +#, fuzzy +msgid "saved queries" +msgstr "Uložené dotazy" + +#: superset-frontend/src/features/home/EmptyState.tsx:35 +#, fuzzy +msgid "No charts yet" +msgstr "Grafy" + +#: superset-frontend/src/features/home/EmptyState.tsx:36 +#, fuzzy +msgid "No dashboards yet" +msgstr "Importovať dashboard" + +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" msgstr "" -#: superset/views/core.py:951 -msgid "You don't have the rights to create a chart" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +#, fuzzy +msgid "No saved queries yet" +msgstr "Uložené dotazy" + +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" msgstr "" -#: superset/views/core.py:1135 -msgid "You don't have the rights to create a dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" msgstr "" -#: superset/views/core.py:649 -msgid "You don't have the rights to download as csv" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" msgstr "" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -msgid "Your query was not properly saved" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" msgstr "" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 -msgid "Zero imputation" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" msgstr "" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" msgstr "" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" msgstr "" -#: superset/utils/core.py:908 +#: superset-frontend/src/features/home/SavedQueries.tsx:281 #, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" +msgid "Ran %s" msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" msgstr "" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -msgid "[asc]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -msgid "[copy]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" msgstr "" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -msgid "[untitled]" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." msgstr "" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" msgstr "" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." msgstr "" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" msgstr "" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" msgstr "" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" msgstr "" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" msgstr "" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -msgid "alert dark" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" msgstr "" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 -msgid "auto" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Bezpečnosť na úrovni riadkov" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "basis" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Edit Rule" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "Spravovať" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +msgid "The name of the rule must be unique" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "cardinal" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -#, fuzzy -msgid "change" -msgstr "Spravovať" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:27 +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 #, fuzzy -msgid "charts" -msgstr "Grafy" +msgid "Base" +msgstr "Databázy" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:415 -msgid "clear all filters" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +msgid "Failed to tag items" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +#, fuzzy +msgid "tags" +msgstr "Spravovať" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "Grafy" + +#: superset-frontend/src/features/tags/TagModal.tsx:237 +msgid "Tag updated" msgstr "" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +msgid "Tag created" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 -#, python-format -msgid "connecting to %(dbModelName)s." +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Datasety" + +#: superset-frontend/src/features/tags/TagModal.tsx:294 +msgid "Name of your tag" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:400 -msgid "create" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Importovať dashboard" + +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Uložené dotazy" + +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 -msgid "create dataset from SQL query" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" msgstr "" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -#, fuzzy -msgid "dashboards" -msgstr "Importovať dashboard" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -#, fuzzy -msgid "dataset name" -msgstr "Datasety" - -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -msgid "deck.gl 3D Hexagon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -msgid "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 -msgid "deck.gl Grid" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "Grafy" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 -msgid "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -msgid "deck.gl Path" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -msgid "deck.gl Polygon" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -msgid "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -msgid "deck.gl Screen Grid" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -#, fuzzy -msgid "deck.gl charts" -msgstr "Grafy" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -msgid "deckGL" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" msgstr "" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -msgid "deviation" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" msgstr "" -#: superset/views/log/__init__.py:32 -msgid "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +msgid "Error Fetching Tagged Objects" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" +#: superset-frontend/src/pages/AllEntities/index.tsx:234 +msgid "Edit Tag" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -msgid "entries" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "error" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" msgstr "" -#: superset/models/helpers.py:1803 -msgid "error_message" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Spravovať" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" msgstr "" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -msgid "failed" -msgstr "" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "Anotačná vrstva" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 -msgid "heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" msgstr "" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 -msgid "id" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +#: superset-frontend/src/pages/ChartList/index.tsx:102 msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" msgstr "" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" msgstr "" -#: superset/views/base.py:596 -msgid "json isn't valid" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 -msgid "linear" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" -#: superset/charts/schemas.py:735 +#: superset-frontend/src/pages/DashboardList/index.tsx:80 msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -msgid "max" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +#, fuzzy +msgid "Dashboard imported" +msgstr "Importovať dashboard" + +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -msgid "mean" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -msgid "min" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +#, fuzzy +msgid "Upload CSV" +msgstr "Nahrať Excel" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +#, fuzzy +msgid "Upload Excel file" +msgstr "Nahrať Excel" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -msgid "monotone" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "Spravovať" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" -#: superset/databases/commands/exceptions.py:147 -msgid "no SQL validator is configured" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" msgstr "" -#: superset/databases/commands/validate_sql.py:101 -msgid "no SQL validator is configured for {}" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -msgid "of parent" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -msgid "of total" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -msgid "or" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "pending" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" msgstr "" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" msgstr "" -#: superset/views/core.py:1958 -msgid "permalink state not found" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" +msgstr "" + +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "" + +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" msgstr "" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" msgstr "" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, python-format +msgid "Deleted %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +msgid "Deleted" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, python-format +msgid "There was an issue deleting rules: %s" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "rowlevelsecurity" -msgstr "Bezpečnosť na úrovni riadkov" +msgid "No Rules yet" +msgstr "Grafy" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "running" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -#, fuzzy -msgid "saved queries" -msgstr "Uložené dotazy" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." +msgstr "" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -msgid "seconds" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -#, fuzzy -msgid "series" -msgstr "Uložené dotazy" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-after" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:37 -msgid "stopped" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" +#: superset-frontend/src/pages/Tags/index.tsx:130 +msgid "No Tags created" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 -msgid "success dark" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "top" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -msgid "unknown type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" msgstr "" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" msgstr "" -#: superset-frontend/src/explore/constants.ts:85 -msgid "use latest_partition template" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -msgid "var" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" msgstr "" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -msgid "view instructions" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/translations/sl/LC_MESSAGES/messages.json b/superset/translations/sl/LC_MESSAGES/messages.json index 7fb224f154cc7..f3ec7bdd21cc8 100644 --- a/superset/translations/sl/LC_MESSAGES/messages.json +++ b/superset/translations/sl/LC_MESSAGES/messages.json @@ -5,6577 +5,6379 @@ "22": ["22"], "": { "domain": "superset", - "plural_forms": "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n%100<=4 ? 2 : 3);", + "plural_forms": "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n%100<=4 ? 2 : 3)", "lang": "sl_SI" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\n Ta filter izvira iz konteksta nadzorne plošče.\n Pri shranjevanju grafikona se ne bo shranil.\n " + "The datasource is too large to query.": [ + "Podatkovni vir je prevelik za poizvedbo." ], - "\n Error: %(text)s\n ": [ - "\n Napaka: %(text)s\n " + "The database is under an unusual load.": [ + "Podatkovni vir je neobičajno obremenjen." ], - " (excluded)": [" (ni vključeno)"], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - " Nastavite prosojnost na 0, če želite obdržati barvo določeno v GeoJSON" + "The database returned an unexpected error.": [ + "Podatkovna baza je vrnila nepričakovano napako." ], - " a dashboard OR ": [" nadzorno ploščo ALI "], - " a new one": [" novo"], - " expression which needs to adhere to the ": [" , ki mora upoštevati "], - " source code of Superset's sandboxed parser": [ - " izvorno kodo za Supersetov \"sandboxed parser\"" + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "V SQL-poizvedbi je sintaktična napaka. Mogoče ste se zatipkali." ], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - " standard, ki zagotavlja, de se leksikografsko razvrščanje\n sklada s kronološkim. Če oblika\n časovne značke ni v skladu s standardom ISO 8601,\n boste morali definirati izraz in tip za transformacijo\n znakovnega niza v datum ali časovno značko.\n Trenutno časovni pasovi niso podprti.\n Če je čas shranjen v obliki epohe, dodajte `epoch_s` ali `epoch_ms`.\n Če format ni podan, se uporabijo privzete vrednosti za\n podatkovno bazo oz. tip stolpca s pomočjo dodatnega parametra." + "The column was deleted or renamed in the database.": [ + "Stolpec je bil izbrisan ali preimenovan v podatkovni bazi." ], - " to add calculated columns": [" za dodajanje izračunanih stolpcev"], - " to add metrics": [" za dodajanje mer"], - " to edit or add columns and metrics.": [ - " za urejanje ali dodajanje stolpcev in mer." + "The table was deleted or renamed in the database.": [ + "Tabela je bila izbrisana ali preimenovana v podatkovni bazi." ], - " to mark a column as a time column": [ - " za označitev stolpca kot časovnega" + "One or more parameters specified in the query are missing.": [ + "En ali več parametrov v SQL-poizvedbi manjka." ], - " to open SQL Lab. From there you can save the query as a dataset.": [ - " za odpiranje SQL laboratorija. Tam lahko poizvedbo shranite kot podatkovni set." + "The hostname provided can't be resolved.": [ + "Imena gostitelja ni mogoče razrešiti." ], - " to visualize your data.": [" za vizualizacijo podatkov."], - "!= (Is not equal)": ["!= (ni enako)"], - "% calculation": ["% cizračun"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s ni mogoče uporabiti kot podatkovni vir zaradi varnostnih razlogov." + "The port is closed.": ["Vrata so zaprta."], + "The host might be down, and can't be reached on the provided port.": [ + "Gostitelj mogoče ne deluje in ga ni mogoče doseči preko podanih vrat." ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [ - "%(message)s\nTo je lahko sproženo z/s: \n%(issues)s" + "Superset encountered an error while running a command.": [ + "Superset je naletel na napako pri izvajanju ukaza." ], - "%(name)s.csv": ["%(name)s.csv"], - "%(object)s does not exist in this database.": [ - "%(object)s ne obstaja v tej podatkovni bazi." + "Superset encountered an unexpected error.": [ + "Superset je naletel na nepričakovano napako." ], - "%(other)s charts will appear here": [ - "%(other)s grafikoni bodo prikazani tu" + "The username provided when connecting to a database is not valid.": [ + "Uporabniško ime za povezavo s podatkovno bazo je neveljavno." ], - "%(other)s dashboards will appear here": [ - "%(other)s nadzorne plošče bodo prikazane tu" + "The password provided when connecting to a database is not valid.": [ + "Geslo za povezavo s podatkovno bazo je neveljavno." ], - "%(other)s recents will appear here": [ - "%(other)s zadnji bodo prikazani tu" + "Either the username or the password is wrong.": [ + "Uporabniško ime ali/in geslo sta napačna." ], - "%(other)s saved queries will appear here": [ - "%(other)s shranjene poizvedbe bodo prikazane tu" + "Either the database is spelled incorrectly or does not exist.": [ + "Ime podatkovne baze je zapisano napačno ali pa ne obstaja." ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": ["%(rows)d vrnjenih vrstic"], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ - "%(subtitle)s\nTo je lahko sproženo z/s: \n %(issue)s" + "The schema was deleted or renamed in the database.": [ + "Shema je bila izbrisana ali preimenovana v podatkovni bazi." ], - "%(suggestion)s instead of \"%(undefinedParameter)s?\"": [ - "%(suggestion)s namesto \"%(undefinedParameter)s?\"", - "%(firstSuggestions)s ali %(lastSuggestion)s namesto \"%(undefinedParameter)s\"?", - "%(firstSuggestions)s ali %(lastSuggestion)s namesto \"%(undefinedParameter)s\"?", - "%(firstSuggestions)s ali %(lastSuggestion)s namesto \"%(undefinedParameter)s\"?" + "User doesn't have the proper permissions.": [ + "Uporabnik nima ustreznih dovoljenj." ], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s ni mogel preveriti vaše poizvedbe.\nPonovno preverite poizvedbo.\nIzjema: %(ex)s" + "One or more parameters needed to configure a database are missing.": [ + "En ali več parametrov, potrebnih za nastavitev podatkovne baze, manjka." ], - "%s Error": ["%s napaka"], - "%s PASSWORD": ["%s GESLO"], - "%s SSH TUNNEL PASSWORD": ["%s GESLO ZA SSH TUNEL"], - "%s SSH TUNNEL PRIVATE KEY": ["%s ZASEBNI KLJUČ ZA SSH TUNEL"], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [ - "%s GESLO ZASEBNEGA KLJUČA ZA SSH TUNEL" + "The submitted payload has the incorrect format.": [ + "Podani podatki so v neustrezni obliki." ], - "%s Selected": ["Izbranih: %s"], - "%s Selected (%s Physical, %s Virtual)": [ - "Izbranih: %s (fizični: %s, virtualni: %s)" + "The submitted payload has the incorrect schema.": [ + "Podani podatki imajo neustrezno shemo." ], - "%s Selected (Physical)": ["Izbranih: %s (fizični)"], - "%s Selected (Virtual)": ["Izbranih: %s (virtualni)"], - "%s aggregates(s)": ["Agreg. funkcije: %s"], - "%s column(s)": ["Stolpci: %s"], - "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ - "%s elementov ni mogoče označiti, ker nimate pravic za urejanje vseh izbranih elementov." + "Results backend needed for asynchronous queries is not configured.": [ + "Zaledni sistem za rezultate, potreben za asinhrone poizvedbe, ni konfiguriran." ], - "%s operator(s)": ["Operatorji: %s"], - "%s option": ["%s možnost", "%s možnosti", "%s možnosti", "%s možnosti"], - "%s option(s)": ["Možnosti: %s"], - "%s row": ["%s vrstica", "%s vrstici", "%s vrstice", "%s vrstic"], - "%s saved metric(s)": ["Shranjene mere: %s"], - "%s updated": ["%s posodobljeni"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s od %s"], - "(Removed)": ["(Odstranjeno)"], - "(deleted or invalid type)": ["(izbrisan ali neveljaven tip)"], - "(no description, click to see stack trace)": [ - "(ni opisa, kliknite za ogled zapisov)" + "Database does not allow data manipulation.": [ + "Podatkovna baza ne dovoljuje manipulacije podatkov." ], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "(opcijsko) privzeta vrednost za filter, če uporabite opcijo izbire večih , lahko uporabite seznam nastavitev ločen s podpičji." + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTAS (create table as select) na koncu nima SELECT stavka. Poskrbite, da bo v poizvedbi SELECT zadnji stavek. Potem ponovno poženite poizvedbo." ], - "), and they become available in your SQL (example:": [ - "), s čimer bodo na razpolago v sklopu SQL-poizvedbe (primer:" + "CVAS (create view as select) query has more than one statement.": [ + "CVAS (create view as select) poizvedba ima več kot en stavek." ], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Razišči v Supersetu>\n\n%(table)s\n" + "CVAS (create view as select) query is not a SELECT statement.": [ + "CVAS (create view as select) poizvedba ni SELECT stavek." ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ - "*%(name)s*\n\n%(description)s\n\nnapaka: %(text)s\n" + "Query is too complex and takes too long to run.": [ + "Poizvedba je prekompleksna in se izvaja predolgo." ], - "+ %s more": ["+ %s več"], - ",": [","], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "-- Opomba: Če ne shranite poizvedbe, se ti zavihki NE bodo ohranili, ko boste počistili piškote ali zamenjali brskalnik.\n\n" + "The database is currently running too many queries.": [ + "Podatkovna baza trenutno izvaja preveč poizvedb." ], - ".": ["."], - "0 Selected": ["0 izbranih"], - "1 calendar day frequency": ["frekvenca: 1 koledarski dan"], - "1 day": ["1 dan"], - "1 day ago": ["1 day ago"], - "1 hour": ["1 ura"], - "1 hourly frequency": ["frekvenca: 1 ura"], - "1 minute": ["1 minuta"], - "1 minutely frequency": ["frekvenca: 1 minuta"], - "1 month end frequency": ["frekvenca: 1 mesec - konec"], - "1 month start frequency": ["frekvenca: 1 mesec - začetek"], - "1 week": ["1 week"], - "1 week ago": ["1 week ago"], - "1 week starting Monday (freq=W-MON)": [ - "1 teden z začetkom v ponedeljek (freq=W-MON)" + "One or more parameters specified in the query are malformed.": [ + "En ali več parametrov v SQL-poizvedbi ima napačno obliko." ], - "1 week starting Sunday (freq=W-SUN)": [ - "1 teden z začetkom v nedeljo (freq=W-SUN)" + "The object does not exist in the given database.": [ + "Objekt ne obstaja v podani podatkovni bazi." ], - "1 year": ["1 year"], - "1 year ago": ["1 year ago"], - "1 year end frequency": ["frekvenca: 1 leto - konec"], - "1 year start frequency": ["frekvenca: 1 leto - začetek"], - "10 minute": ["10 minute"], - "104 weeks": ["104 weeks"], - "104 weeks ago": ["104 weeks ago"], - "15 minute": ["15 minute"], - "156 weeks": ["156 weeks"], - "156 weeks ago": ["156 weeks ago"], - "1AS": ["1AS"], - "1D": ["1D"], - "1H": ["1H"], - "1M": ["1M"], - "1T": ["1T"], - "2 years": ["2 years"], - "2 years ago": ["2 years ago"], - "2/98 percentiles": ["2/98 percentil"], - "28 days": ["28 days"], - "28 days ago": ["28 days ago"], - "2D": ["2D"], - "3 letter code of the country": ["Tričrkovna oznaka države"], - "3 years": ["3 years"], - "3 years ago": ["3 years ago"], - "30 days": ["30 dni"], - "30 days ago": ["30 days ago"], - "30 minute": ["30 minut"], - "30 minutes": ["30 minutes"], - "30 second": ["30 second"], - "30 seconds": ["30 seconds"], - "3D": ["3D"], - "4 weeks (freq=4W-MON)": ["4 tedni (freq=4W-MON)"], - "5 minute": ["5 minute"], - "5 minutes": ["5 minutes"], - "5 second": ["5 second"], - "5 seconds": ["5 seconds"], - "52 weeks": ["52 weeks"], - "52 weeks ago": ["52 weeks ago"], - "52 weeks starting Monday (freq=52W-MON)": [ - "52 tednov z začetkom v ponedeljek (freq=52W-MON)" + "The query has a syntax error.": ["Poizvedba ima sintaktično napako."], + "The results backend no longer has the data from the query.": [ + "Zaledni sistem rezultatov nima več podatkov iz poizvedbe." ], - "6 hour": ["6 hour"], - "60 days": ["60 days"], - "7 calendar day frequency": ["frekvenca: 7 koledarskih dni"], - "7 days": ["7 days"], - "7D": ["7D"], - "9/91 percentiles": ["9/91 percentil"], - "90 days": ["90 days"], - ":": [":"], - "< (Smaller than)": ["< (manjše kot)"], - "<= (Smaller or equal)": ["<= (manjše ali enako)"], - "": [""], - "": [""], - "": [""], - "": [""], - "": [""], - "== (Is equal)": ["== (je enako)"], - "> (Larger than)": ["> (večje kot)"], - ">= (Larger or equal)": [">= (večje ali enako)"], - "A Big Number": ["Velika številka"], - "A comma separated list of columns that should be parsed as dates": [ - "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi" + "The query associated with the results was deleted.": [ + "Poizvedba, povezana z rezultati, je bila izbrisana." ], - "A comma separated list of columns that should be parsed as dates.": [ - "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Rezultati v zalednem sistemu so bili shranjeni v drugačni obliki in jih ni več mogoče deserializirati." ], - "A comma-separated list of schemas that files are allowed to upload to.": [ - "Z vejicami ločen seznam shem, kjer je dovoljeno nalaganje datotek." + "The port number is invalid.": ["Številka vrat je neveljavna."], + "Failed to start remote query on a worker.": [ + "Na delavcu ni bilo mogoče zagnati oddaljene poizvedbe." ], - "A database with the same name already exists.": [ - "Podatkovna baza z enakim imenom že obstaja." + "The database was deleted.": ["Podatkovna baza je bila izbrisana."], + "Custom SQL fields cannot contain sub-queries.": [ + "Prilagojena SQL-polja ne smejo vsebovati podpoizvedb." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "Slovar z imeni in podatkovnimi tipi stolpcev, s pomočjo katerega spremenite privzete nastavitve. Primer: {\"user_id\":\"integer\"}" + "The submitted payload failed validation.": [ + "Neuspešna validacija podanih podatkov." ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "Celoten URL, ki kaže na lokacijo zgrajenega vtičnika (lahko gostuje npr. na CDN)" + "Invalid certificate": ["Neveljaven certifikat"], + "The schema of the submitted payload is invalid.": [ + "Shema podanih podatkov je neveljavna." ], - "A handlebars template that is applied to the data": [ - "Predloga za Handlebars, ki je uporabljena za podatke" + "File size must be less than or equal to %(max_size)s bytes": [ + "Velikost datoteke mora biti manjša ali enaka %(max_size)s bajtov" ], - "A human-friendly name": ["Človeku prijazno ime"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "Seznam imen domen, ki lahko vgradijo to nadzorno ploščo. Če polje ostane prazno, je vgrajevanje dovoljeno iz vseh domen." + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Nevaren tip rezultata, ki ga vrne funkcija %(func)s: %(value_type)s" ], - "A list of tags that have been applied to this chart.": [ - "Seznam oznak, ki so povezane s tem grafikonom." - ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Seznam uporabnikov, ki lahko spreminjajo ta grafikon. Možno je iskanje po imenu ali uporabniškem imenu." + "Unsupported return value for method %(name)s": [ + "Nepodprt rezultat vračanja za metodo %(name)s" ], - "A map of the world, that can indicate values in different countries.": [ - "Zemljevid sveta, ki lahko prikazuje vrednosti po državah." + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Nevaren vzorec za ključ %(key)s: %(value_type)s" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "Zemljevid, ki na zemljepisnih koordinatah prikazuje kroge s spremenljivim polmerom" + "Unsupported template value for key %(key)s": [ + "Nepodprta vrednost vzorca za ključ %(key)s" ], - "A metric to use for color": ["Mera za barvo"], - "A new chart and dashboard will be created.": [ - "Ustvarjena bosta nov grafikon in nadzorna plošča." + "Only SELECT statements are allowed against this database.": [ + "Za to podatkovno bazo so dovoljeni le `SELECT` stavki." ], - "A new chart will be created.": ["Ustvarjen bo nov grafikon."], - "A new dashboard will be created.": [ - "Ustvarjena bo nova nadzorna plošča." + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Poizvedba je bila ustavljena po %(sqllab_timeout)s sekundah. Lahko je prekompleksna ali pa je podatkovna baza preobremenjena." ], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "Grafikon s polarnimi koordinatami, kjer je krog razdeljen na enakokotne izseke, vrednosti pa so ponazorjene s ploščino izseka (namesto polmera ali kota)." + "Results backend is not configured.": [ + "Zaledni sistem rezultatov ni konfiguriran." ], - "A readable URL for your dashboard": [ - "Berljiv URL za vašo nadzorno ploščo" + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTAS (create table as select) lahko izvajate le v poizvedbah, kjer je zadnji stavek SELECT. Poskrbite, da bo zadnji stavek v vaši poizvedbi SELECT in poskusite ponovno zagnati poizvedbo." ], - "A reference to the [Time] configuration, taking granularity into account": [ - "Sklic na nastavitve za [Čas], ki upošteva granulacijo" + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "CVAS (create view as select) lahko izvajate le v poizvedbah z enim SELECT stavkom. Poskrbite, da bo v vaši poizvedbi le en SELECT stavek in poskusite ponovno zagnati poizvedbo." ], - "A report named \"%(name)s\" already exists": [ - "Poročilo poimenovano %(name)s že obstaja" + "Running statement %(statement_num)s out of %(statement_count)s": [ + "Poganjanje izraza %(statement_num)s od %(statement_count)s" ], - "A reusable dataset will be saved with your chart.": [ - "Podatkovni set bo shranjen skupaj z grafikonom." + "Statement %(statement_num)s out of %(statement_count)s": [ + "Izraz %(statement_num)s od %(statement_count)s" ], - "A screenshot of the dashboard will be sent to your email at": [ - "Zaslonska slika nadzorne plošče bo poslana na vaš e-naslov ob" + "Viz is missing a datasource": ["Vizualizaciji manjka podatkovni vir"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Izbrano drseče okno ni vrnilo podatkov. Poskrbite, da izvorna poizvedba ustreza minimalni periodi drsečega okna." ], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Nabor parametrov, ki postanejo razpoložljivi za poizvedbo z uporabo Jinja sintakse" + "From date cannot be larger than to date": [ + "Začetni datum ne sme biti večji od končnega" ], - "A time column must be specified when using a Time Comparison.": [ - "Pri časovni primerjavi mora biti definiran časovni stolpec." + "Cached value not found": ["Predpomnjena vrednost ni najdena"], + "Columns missing in datasource: %(invalid_columns)s": [ + "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "Grafikon časovne vrste, ki prikaže kako se povezane mere skupin spreminjajo skozi čas. Vsaka skupina je prikazana s svojo barvo." + "Time Table View": ["Pogled urnika"], + "Pick at least one metric": ["Izberite vsaj eno mero"], + "When using 'Group By' you are limited to use a single metric": [ + "Ko uporabljate 'Group By', ste omejeni na uporabo ene mere" ], - "A timeout occurred while executing the query.": [ - "Pri izvajanju poizvedbe je potekel čas." + "Calendar Heatmap": ["Koledarska barvna lestvica"], + "Bubble Chart": ["Mehurčkasti grafikon"], + "Please use 3 different metric labels": [ + "Uporabite 3 različne nazive mer" ], - "A timeout occurred while generating a csv.": [ - "Pri ustvarjanju csv je potekel čas." + "Pick a metric for x, y and size": ["Izberite mere za x, y in velikost"], + "Bullet Chart": ["'Bullet' grafikon"], + "Pick a metric to display": ["Izberite mero za prikaz"], + "Time Series - Line Chart": ["Časovna vrsta - Črtni grafikon"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "Pri časovni primerjavi mora biti določeno zaprto časovno obdobje (s časom začetka in konca)." ], - "A timeout occurred while generating a dataframe.": [ - "Pri ustvarjanju podatkovnega okvira je potekel čas." + "Time Series - Bar Chart": ["Časovna vrsta - Stolpčni grafikon"], + "Time Series - Period Pivot": ["Časovna vrsta - Vrtenje period"], + "Time Series - Percent Change": [ + "Časovna vrsta - Procentualna sprememba" ], - "A timeout occurred while taking a screenshot.": [ - "Pri ustvarjanju zaslonske slike je potekel čas." + "Time Series - Stacked": ["Časovna vrsta - Naložen graf"], + "Histogram": ["Histogram"], + "Must have at least one numeric column specified": [ + "Definiran mora biti vsaj en numerični stolpec" ], - "A valid color scheme is required": [ - "Zahtevana je veljavna barvna shema" + "Distribution - Bar Chart": ["Porazdelitev - Stolpčni grafikon"], + "Can't have overlap between Series and Breakdowns": [ + "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" ], - "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ - "Grafikon slapov je način prikaza, ki pomaga razumeti\n\tkumulativni učinek zaporedja negativnih ali pozitivnih vrednosti.\n\tVmesne vrednosti so bodisi kategorične bodisi časovne." + "Pick at least one field for [Series]": [ + "Izberite vsaj eno polje za [Serije]" ], - "APPLY": ["UPORABI"], - "APR": ["APR"], - "AQE": ["AQE"], - "AUG": ["AVG"], - "AXIS TITLE MARGIN": ["OBROBA OZNAKE OSI"], - "AXIS TITLE POSITION": ["POLOŽAJ OZNAKE OSI"], - "About": ["O programu"], - "Access": ["Dostop"], - "Access to user activity data is restricted": [ - "Dostop do aktivnosti uporabnikov je omejen" + "Sankey": ["Sankey"], + "Pick exactly 2 columns as [Source / Target]": [ + "Izberite natanko dva stolpca za [Izvor / Cilj]" ], - "Access token": ["Žeton za dostop"], - "Action": ["Aktivnost"], - "Action Log": ["Dnevnik aktivnosti"], - "Actions": ["Aktivnosti"], - "Active": ["Aktiven"], - "Actual Values": ["Dejanske vrednosti"], - "Actual time range": ["Dejansko časovno obdobje"], - "Actual value": ["Dejanska vrednost"], - "Actual values": ["Dejanske vrednosti"], - "Adaptive formatting": ["Prilagodljiva oblika"], - "Add": ["Dodaj"], - "Add Alert": ["Dodaj opozorilo"], - "Add CSS Template": ["Dodaj CSS predlogo"], - "Add CSS template": ["Dodaj CSS predlogo"], - "Add Chart": ["Dodaj grafikon"], - "Add Column": ["Dodaj stolpec"], - "Add Dashboard": ["Dodaj nadzorno ploščo"], - "Add Database": ["Dodaj podatkovno bazo"], - "Add Log": ["Dodaj dnevnik"], - "Add Metric": ["Dodaj mero"], - "Add Report": ["Dodaj poročilo"], - "Add Rule": ["Dodaj pravilo"], - "Add Tag": ["Dodaj oznako"], - "Add a Plugin": ["Dodaj vtičnik"], - "Add a dataset": ["Dodaj podatkovni set"], - "Add a new tab": ["Dodaj nov zavihek"], - "Add a new tab to create SQL Query": [ - "Dodaj nov zavihek za SQL-poizvedbo" + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "V 'Sankey' je zanka, določite drevo. To je okvarjena povezava: {}" ], - "Add additional custom parameters": ["Dodaj dodatne parametre po meri"], - "Add an annotation layer": ["Dodaj sloj z oznakami"], - "Add an item": ["Dodaj element"], - "Add and edit filters": ["Dodaj in uredi filtre"], - "Add annotation": ["Dodaj oznako"], - "Add annotation layer": ["Dodaj sloj z oznakami"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [ - "Dodaj izračunan stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" + "Directed Force Layout": ["Izgled usmerjene sile"], + "Country Map": ["Zemljevid držav"], + "World Map": ["Zemljevid sveta"], + "Parallel Coordinates": ["Vzporedne koordinate"], + "Heatmap": ["Toplotni prikaz"], + "Horizon Charts": ["Horizontni grafikoni"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "[Zemljepisna dolžina] in [Zemljepisna širina] morata biti nastavljeni" ], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "Dodaj izračunan časovni stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Mora imeti stolpec [Združevanje po], da ima število (count) kot [Oznaka]" ], - "Add cross-filter": ["Dodaj medsebojni filter"], - "Add custom scoping": ["Dodaj prilagojen doseg"], - "Add dataset columns here to group the pivot table columns.": [ - "Dodaj stolpce podatkovnega seta za združevanje stolpcev vrtilne tabele." + "Choice of [Label] must be present in [Group By]": [ + "Izbira [Oznaka] mora biti prisotna v [Združevanje po]" ], - "Add delivery method": ["Dodajte način dostave"], - "Add description of your tag": ["Dodajte opis vaše oznake"], - "Add extra connection information.": ["Dodaj informacije o povezavi."], - "Add filter": ["Dodaj filter"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "Doda stavke za filtriranje izvorne poizvedbe filtra,\n vendar samo v kontekstu samodejnega izpolnjevanja.\n Ne vpliva na to kako bo filter deloval na nadzorno ploščo.\n Uporabno je, če želite izboljšati učinkovitost poizvedbe filtra\n ali pa omejiti nabor prikazanih vrednosti filtra." + "Choice of [Point Radius] must be present in [Group By]": [ + "Izbran [Radij točk] mora biti prisoten v [Združevanje po]" ], - "Add filters and dividers": ["Dodaj filtre in ločilnike"], - "Add item": ["Dodaj"], - "Add metric": ["Dodaj mero"], - "Add metrics to dataset in \"Edit datasource\" modal": [ - "Dodaj mero v podatkovni set v oknu \"Uredi podatkovni vir\"" + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "Stolpca [Zemljepisna dolžina] in [Zemljepisna širina] morata biti prisotna v [Združevanje po]" ], - "Add new color formatter": ["Dodaj novo pravilo za barvo"], - "Add new formatter": ["Dodaj novo pravilo"], - "Add notification method": ["Dodajte način obveščanja"], - "Add required control values to preview chart": [ - "Dodaj potrebne parametre za predogled grafikona" + "Deck.gl - Multiple Layers": ["Deck.gl - večplastni grafikon"], + "Bad spatial key": ["Neustrezen prostorski ključ"], + "Invalid spatial point encountered: %(latlong)s": [""], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Prišlo je do neveljavnega NULL prostorskega vnosa, poskusite ga izločiti s filtrom" ], - "Add required control values to save chart": [ - "Dodaj potrebne parametre za shranjenje grafikona" + "Deck.gl - Scatter plot": ["Deck.gl - raztreseni grafikon"], + "Deck.gl - Screen Grid": ["Deck.gl - mreža"], + "Deck.gl - 3D Grid": ["Deck.gl - 3D mreža"], + "Deck.gl - Paths": ["Deck.gl - poti"], + "Deck.gl - Polygon": ["Deck.gl - poligon"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], + "Deck.gl - Heatmap": ["Deck.gl - toplotna karta"], + "Deck.gl - Contour": ["Deck.gl - plastnice"], + "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], + "Deck.gl - Arc": ["Deck.gl - lok"], + "Event flow": ["Potek dogodkov"], + "Time Series - Paired t-test": [ + "Časovna vrsta - t-test za odvisne vzorce" ], - "Add sheet": ["Dodaj preglednico"], - "Add tag to entities": ["Dodaj oznako elementom"], - "Add the name of the chart": ["Dodajte naslov grafikona"], - "Add the name of the dashboard": ["Dodajte naziv nadzorne plošče"], - "Add to dashboard": ["Dodaj na nadzorno ploščo"], - "Add/Edit Filters": ["Dodaj/uredi filter"], - "Added": ["Dodano"], - "Added to 1 dashboard": [ - "Dodano na 1 nadzorno ploščo", - "Dodano na %s nadzorni plošči", - "Dodano na %s nadzorne plošče", - "Dodano na %s nadzornih plošč" + "Time Series - Nightingale Rose Chart": [ + "Časovna vrsta - Nightingale Rose grafikon" ], - "Additional Parameters": ["Dodatni parametri"], - "Additional fields may be required": [ - "Mogoče bodo potrebna dodatna polja" + "Partition Diagram": ["Grafikon s pravokotniki"], + "Please choose at least one groupby": ["Izberite vsaj en 'Group by'"], + "Invalid advanced data type: %(advanced_data_type)s": [ + "Neveljaven napreden tip rezultata: %(advanced_data_type)s" ], - "Additional information": ["Dodatne informacije"], - "Additional metadata": ["Dodatni metapodatki"], - "Additional padding for legend.": ["Dodatni razmak za legendo."], - "Additional parameters": ["Dodatni parametri"], - "Additional settings.": ["Dodatne nastavitve."], - "Additional text to add before or after the value, e.g. unit": [ - "Dodatno besedilo, ki ga dodate pred ali za vrednost, npr. enota" + "Deleted %(num)d annotation layer": [ + "Izbrisan je %(num)d sloj z oznakami", + "Izbrisana sta %(num)d sloja z oznakami", + "Izbrisanih so %(num)d sloji z oznakami", + "Izbrisanih je %(num)d slojev z oznakami" ], - "Additive": ["Aditivno"], - "Adjust how this database will interact with SQL Lab.": [ - "Nastavite kako bo ta podatkovna baza delovala z SQL-laboratorijem." + "All Text": ["Celotno besedilo"], + "Deleted %(num)d annotation": [ + "Izbrisana je %(num)d oznaka", + "Izbrisani sta %(num)d oznaki", + "Izbrisane so %(num)d oznake", + "Izbrisanih je %(num)d oznak" ], - "Adjust performance settings of this database.": [ - "Prilagodite nastavitve zmogljivosti te podatkovne baze." + "Deleted %(num)d chart": [ + "Izbrisan je %(num)d grafikon", + "Izbrisana sta %(num)d grafikona", + "Izbrisani so %(num)d grafikoni", + "Izbrisanih je %(num)d grafikonov" ], - "Advanced": ["Napredno"], - "Advanced Analytics": ["Napredna analitika"], - "Advanced Data type": ["Napredni podatkovni tip"], - "Advanced analytics": ["Napredna analitika"], - "Advanced analytics Query A": ["Napredna analitika za poizvedbo A"], - "Advanced analytics Query B": ["Napredna analitika za poizvedba B"], - "Advanced data type": ["Napredni podatkovni tip"], - "Advanced-Analytics": ["Napredna analitika"], - "Aesthetic": ["Estetika"], - "After": ["Potem"], - "Aggregate": ["Agregacija"], - "Aggregate Mean": ["Agregirano povprečje"], - "Aggregate Sum": ["Agregirana vsota"], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "Agregacijska funkcija za seznam točk v vsaki gruči, s katero se ustvari oznaka gruče." + "Is certified": ["Certificiran"], + "Has created by": ["Ustvarjen s strani"], + "Created by me": ["Ustvarjeno z moje strani"], + "Owned Created or Favored": ["Lastnik, Ustvaril ali Priljubljen"], + "Total (%(aggfunc)s)": ["Skupaj (%(aggfunc)s)"], + "Subtotal": ["Delna vsota"], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`confidence_interval` mora biti med 0 in 1 (odprt)" ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "Agregacijska funkcija za vrtenje in izračun vseh vrstic in stolpcev" + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "spodnji percentil mora biti večji od 0 in manjši od 100 ter mora biti manjši od zgornjega percentila." ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "Agregira podatke znotraj meja celic in agregirane vrednosti ponazori z dinamično barvno lestvico" + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "zgornji percentil mora biti večji od 0 in manjši od 100 ter mora biti večji od spodnjega percentila." ], - "Aggregation": ["Agregacija"], - "Aggregation function": ["Agregacijska funkcija"], - "Alert": ["Opozorilo"], - "Alert Triggered, In Grace Period": [ - "Opozorilo sproženo, v obdobju mirovanja" + "`width` must be greater or equal to 0": [ + "`width` mora biti večja ali enaka 0" ], - "Alert condition": ["Status opozorila"], - "Alert condition schedule": ["Urnik statusov opozoril"], - "Alert ended grace period.": ["Opozorilo je končalo obdobje mirovanja."], - "Alert failed": ["Opozorilo ni uspelo"], - "Alert fired during grace period.": [ - "Opozorilo sproženo med obdobjem mirovanja." + "`row_limit` must be greater than or equal to 0": [ + "`row_limit` mora biti večja ali enaka 0" ], - "Alert found an error while executing a query.": [ - "Opozorilo je našlo napako pri izvajanju poizvedbe." + "`row_offset` must be greater than or equal to 0": [ + "`row_offset` mora biti večja ali enaka 0" ], - "Alert name": ["Naslov opozorila"], - "Alert on grace period": ["Opozorilo v obdobju mirovanja"], - "Alert query returned a non-number value.": [ - "Poizvedba za opozorilo je vrnila neštevilsko vrednost." + "orderby column must be populated": [ + "stolpec za razvrščanje (orderby) mora biti izpolnjen" ], - "Alert query returned more than one column.": [ - "Poizvedba za opozorilo je vrnila več kot en stolpec." + "Chart has no query context saved. Please save the chart again.": [ + "Grafikon nima shranjenega konteksta poizvedbe. Ponovno shranite grafikon." ], - "Alert query returned more than one column. ": [ - "Poizvedba za opozorilo je vrnila več kot en stolpec. " + "Request is incorrect: %(error)s": ["Zahtevek je napačen: %(error)s"], + "Request is not JSON": ["Zahtevek ni JSON"], + "Empty query result": ["Rezultat prazne poizvedbe"], + "Owners are invalid": ["Lastniki niso veljavni"], + "Some roles do not exist": ["Nekatere vloge ne obstajajo"], + "Datasource type is invalid": ["Neveljaven tip podatkovnega vira"], + "Datasource does not exist": ["Podatkovni vir ne obstaja"], + "Query does not exist": ["Poizvedba ne obstaja"], + "Annotation layer parameters are invalid.": [ + "Parametri sloja z oznakami so neveljavni." ], - "Alert query returned more than one row.": [ - "Poizvedba za opozorilo je vrnila več kot eno vrstico." + "Annotation layer could not be created.": [ + "Sloja z oznakami ni mogoče ustvariti." ], - "Alert running": ["Opozorilo aktivno"], - "Alert triggered, notification sent": [ - "Opozorilo sproženo, obvestilo poslano" + "Annotation layer could not be updated.": [ + "Sloja z oznakami ni mogoče posodobiti." ], - "Alert validator config error.": [ - "Napaka nastavitev potrjevalnika opozoril." + "Annotation layer not found.": ["Sloja z oznakami ni mogoče najti."], + "Annotation layers could not be deleted.": [ + "Slojev z oznakami ni mogoče izbrisati." ], - "Alerts": ["Opozorila"], - "Alerts & Reports": ["Opozorila in poročila"], - "Alerts & reports": ["Opozorila in poročila"], - "Align +/-": ["Poravnaj +/-"], - "All": ["Vse"], - "All Text": ["Celotno besedilo"], - "All charts": ["Vsi grafikoni"], - "All charts/global scoping": ["Vsi grafikoni/globalni doseg"], - "All filters": ["Vsi filtri"], - "All filters (%(filterCount)d)": ["Vsi filtri (%(filterCount)d)"], - "All panels": ["Vsi paneli"], - "All panels with this column will be affected by this filter": [ - "Ta filter bo vplival na vse grafikone s tem stolpcem" + "Annotation layer has associated annotations.": [ + "Sloj z oznakami ima povezane oznake." ], - "Allow CREATE TABLE AS": ["Dovoli CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Dovoli opcijo CREATE TABLE AS v SQL laboratoriju" + "Name must be unique": ["Ime mora biti unikatno"], + "End date must be after start date": [ + "Končni datum mora biti za začetnim" ], - "Allow CREATE VIEW AS": ["Dovoli CREATE VIEW AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Dovoli opcijo CREATE VIEW AS v SQL laboratoriju" + "Short description must be unique for this layer": [ + "Kratek opis mora biti za ta sloj unikaten" ], - "Allow Csv Upload": ["Dovoli nalaganje CSV"], - "Allow DML": ["Dovoli DML"], - "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ - "Dovoli, da se imena stolpcev spremenijo v male tiskane črke, kjer je to podprto (npr. Oracle, Snowflake)." + "Annotation not found.": ["Oznaka ni najdena."], + "Annotation parameters are invalid.": ["Parametri oznak so neveljavni."], + "Annotation could not be created.": ["Oznake ni mogoče ustvariti."], + "Annotation could not be updated.": ["Oznake ni mogoče posodobiti."], + "Annotations could not be deleted.": ["Oznak ni mogoče izbrisati."], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Časovni niz je nejasen. Podajte [%(human_readable)s ago] ali [%(human_readable)s later]." ], - "Allow columns to be rearranged": ["Omogoči razvrščanje stolpcev"], - "Allow creation of new tables based on queries": [ - "Dovoli ustvarjanje novih tabel s poizvedbami" + "Cannot parse time string [%(human_readable)s]": [ + "Ni mogoče razčleniti časovnega izraza [%(human_readable)s]" ], - "Allow creation of new views based on queries": [ - "Dovoli ustvarjanje novih pogledov s poizvedbami" + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Časovna razlika je nejasna. Podajte [%(human_readable)s ago] ali [%(human_readable)s later]." ], - "Allow data manipulation language": [ - "Dovoli jezik za manipulacijo podatkov (DML)" + "Database does not exist": ["Podatkovna baza ne obstaja"], + "Dashboards do not exist": ["Nadzorna plošča ne obstaja"], + "Datasource type is required when datasource_id is given": [ + "Ko se podaja datasource_id, je potreben tip podatkovnega vira" ], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "Uporabniku omogočite, da s potegom razvrsti stolpce. Sprememba se ne bo ohranila, ko bo grafikon ponovno naložen." + "Chart parameters are invalid.": ["Parametri grafikona so neveljavni."], + "Chart could not be created.": ["Grafikona ni mogoče ustvariti."], + "Chart could not be updated.": ["Grafikona ni mogoče posodobiti."], + "Charts could not be deleted.": ["Grafikonov ni mogoče izbrisati."], + "There are associated alerts or reports": [ + "Prisotna so povezana opozorila in poročila" ], - "Allow file uploads to database": [ - "Dovolite nalaganje datotek v podatkovno bazo" + "You don't have access to this chart.": [ + "Nimate dostopa do tega grafikona." ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Dovoli manipulacije podatkovne baze z uporabo ne-SELECT stavkov, kot so UPDATE, DELETE, CREATE, itd." + "Changing this chart is forbidden": [ + "Spreminjanje tega grafikona ni dovoljeno" ], - "Allow multiple selections": ["Dovoli več izbir"], - "Allow node selections": ["Dovoli izbiro vozlišča"], - "Allow sending multiple polygons as a filter event": [ - "Dovoli pošiljanje več poligonov kot dogodek filtra" + "Import chart failed for an unknown reason": [ + "Uvoz grafikona ni uspel zaradi neznanega razloga" ], - "Allow this database to be explored": [ - "Dovoli raziskovanje te podatkovne baze" + "Changing one or more of these dashboards is forbidden": [ + "Spreminjanje teh nadzornih plošč ni dovoljeno" ], - "Allow this database to be queried in SQL Lab": [ - "Dovoli poizvedbo na to podatkovno bazo v SQL laboratoriju" + "Chart not found": ["Grafikon ni najden"], + "Error: %(error)s": ["Napaka: %(error)s"], + "CSS templates could not be deleted.": [ + "CSS predlog ni mogoče izbrisati." ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Dovoli uporabnikom poganjanje ne-SELECT stavkov (UPDATE, DELETE, CREATE, ...) v SQL laboratoriju" + "CSS template not found.": ["CSS predloga ni najdena."], + "Must be unique": ["Mora biti unikaten"], + "Dashboard parameters are invalid.": [ + "Parametri nadzorne plošče so neveljavni." ], - "Allowed Domains (comma separated)": [ - "Dovoljene domene (ločeno z vejico)" + "Dashboards could not be created.": [ + "Nadzornih plošč ni mogoče ustvariti." ], - "Alphabetical": ["Po abecedi"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "Znan tudi kot grafikon škatla z brki. prikaže primerjavo porazdelitev povezanih mer v različnih skupinah. Škatla na sredini predstavlja povprečje, mediano in notranja 2 kvartila. Brki na vsaki škatli prikazujejo minimum, maksimum, območje in zunanja dva kvartila." + "Dashboard could not be updated.": [ + "Nadzorne plošče ni mogoče posodobiti." ], - "Altered": ["Spremenjeno"], - "Always filter main datetime column": [ - "Vedno filtriraj glavni časovni stolpec" + "Dashboard could not be deleted.": [ + "Nadzorne plošče ni mogoče izbrisati." ], - "An Error Occurred": ["Prišlo je do napake"], - "An alert named \"%(name)s\" already exists": [ - "Opozorilo poimenovano %(name)s že obstaja" + "Changing this Dashboard is forbidden": [ + "Spreminjanje te nadzorne plošče ni dovoljeno" ], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "Pri časovni primerjavi mora biti določeno zaprto časovno obdobje (s časom začetka in konca)." + "Import dashboard failed for an unknown reason": [ + "Uvoz nadzorne plošče ni uspel zaradi neznanega razloga" ], - "An engine must be specified when passing individual parameters to a database.": [ - "Pri podajanju posameznih parametrov podatkovne baze mora biti podan njen tip." + "You don't have access to this dashboard.": [ + "Nimate dostopa do te nadzorne plošče." ], - "An error has occurred": ["Prišlo je do napake"], - "An error occurred": ["Prišlo je do napake"], - "An error occurred saving dataset": [ - "Pri shranjevanju podatkovnega seta je prišlo do napake" + "You don't have access to this embedded dashboard config.": [ + "Nimate dostopa do konfiguracije te vgrajene nadzorne plošče." ], - "An error occurred while accessing the value.": [ - "Pri dostopanju do vednosti je prišlo do težave." + "No data in file": ["V datoteki ni podatkov"], + "Database parameters are invalid.": [ + "Parametri podatkovne baze so neveljavni." ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Pri krčenju sheme tabele je prišlo do napake. Kontaktirajte administratorja." + "A database with the same name already exists.": [ + "Podatkovna baza z enakim imenom že obstaja." ], - "An error occurred while creating %ss: %s": [ - "Napaka pri ustvarjanju %s: %s" + "Field is required": ["Polje je obvezno"], + "Field cannot be decoded by JSON. %(json_error)s": [ + "Polja ni mogoče dekodirati z JSON. %(json_error)s" ], - "An error occurred while creating the data source": [ - "Pri ustvarjanju podatkovnega vira je prišlo do težave" + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %{key}s je neveljaven." ], - "An error occurred while creating the value.": [ - "Pri ustvarjanju vrednosti je prišlo do težave." + "Database not found.": ["Podatkovna baza ni najdena."], + "Database could not be created.": [ + "Podatkovne baze ni mogoče ustvariti." ], - "An error occurred while deleting the value.": [ - "Pri brisanju vrednosti je prišlo do napake." + "Database could not be updated.": [ + "Podatkovne baze ni mogoče posodobiti." ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Pri širitvi sheme tabele je prišlo do napake. Kontaktirajte administratorja." + "Connection failed, please check your connection settings": [ + "Povezava neuspešna. Preverite nastavitve povezave" ], - "An error occurred while fetching %s info: %s": [ - "Napaka pri pridobivanju informacij za %s: %s" + "Cannot delete a database that has datasets attached": [ + "Podatkovne baze s povezanimi podatkovnimi viri ni mogoče izbrisati" ], - "An error occurred while fetching %ss: %s": [ - "Napaka pri pridobivanju informacij za %s: %s" + "Database could not be deleted.": [ + "Podatkovne baze ni mogoče izbrisati." ], - "An error occurred while fetching available CSS templates": [ - "Pri pridobivanju CSS predlog je prišlo do napake" + "Stopped an unsafe database connection": [ + "Nevarna povezava s podatkovno bazo je bila ustavljena" ], - "An error occurred while fetching chart owners values: %s": [ - "Pri pridobivanju polja lastnik grafikona je prišlo do napake: %s" + "Could not load database driver": [ + "Ni mogoče naložiti gonilnika podatkovne baze" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Pri pridobivanju polja lastnik nadzorne plošče je prišlo do napake: %s" + "Unexpected error occurred, please check your logs for details": [ + "Zgodila se je nepričakovana napaka. Podrobnosti preverite v dnevnikih" ], - "An error occurred while fetching dashboards": [ - "Prišlo je do napake pri pridobivanju nadzornih plošč" + "no SQL validator is configured": ["potrjevalnik SQL ni nastavljen"], + "No validator found (configured for the engine)": [ + "Potrjevalnik ni najden (nastavljen za podatkovno bazo)" ], - "An error occurred while fetching dashboards: %s": [ - "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" + "Was unable to check your query": ["Poizvedbe ni bilo mogoče preveriti"], + "An unexpected error occurred": ["Prišlo je do nepričakovane napake"], + "Import database failed for an unknown reason": [ + "Uvoz podatkovne baze ni uspel zaradi neznanega razloga" ], - "An error occurred while fetching database related data: %s": [ - "Pri pridobivanju podatkov iz podatkovne baze je prišlo do napake: %s" + "Could not load database driver: {}": [ + "Ni mogoče naložiti gonilnika podatkovne baze: {}" ], - "An error occurred while fetching database values: %s": [ - "Pri pridobivanju vrednosti podatkovne baze je prišlo do napake: %s" + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "Podatkovne baze tipa \"%(engine)s\" ni mogoče konfigurirati s parametri." ], - "An error occurred while fetching dataset datasource values: %s": [ - "Pri pridobivanju vrednosti podatkovnega vira podatkovnega seta je prišlo do napake: %s" + "Database is offline.": ["Podatkovna baza ni povezana."], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s ni mogel preveriti vaše poizvedbe.\nPonovno preverite poizvedbo.\nIzjema: %(ex)s" ], - "An error occurred while fetching dataset owner values: %s": [ - "Pri pridobivanju polja lastnik podatkovnega seta je prišlo do napake: %s" + "SSH Tunnel could not be deleted.": ["SSH-tunela ni mogoče izbrisati."], + "SSH Tunnel not found.": ["SSH-tunela ni najden."], + "SSH Tunnel parameters are invalid.": [ + "Parametri SSH-tunela so neveljavni." ], - "An error occurred while fetching dataset related data": [ - "Napaka pri pridobivanju podatkov iz podatkovnega seta" + "SSH Tunnel could not be updated.": ["SSH-tunela ni mogoče posodobiti."], + "Creating SSH Tunnel failed for an unknown reason": [ + "Ustvarjanje SSH-tunela ni uspelo zaradi neznanega razloga" ], - "An error occurred while fetching dataset related data: %s": [ - "Napaka pri pridobivanju podatkov iz podatkovnega seta: %s" + "SSH Tunneling is not enabled": ["SSH-tunel ni omogočen"], + "Must provide credentials for the SSH Tunnel": [ + "Za SSH-tunel morate podati prijavne podatke" ], - "An error occurred while fetching datasets: %s": [ - "Prišlo je do napake pri pridobivanju podatkovnih setov: %s" + "Cannot have multiple credentials for the SSH Tunnel": [ + "Za SSH-tunel ne morete imeti več prijavnih podatkov" ], - "An error occurred while fetching function names.": [ - "Pri pridobivanju imen funkcij je prišlo do napake." + "The database was not found.": ["Podatkovna baza ni bila najdena."], + "Dataset %(name)s already exists": ["Podatkovni set %(name)s že obstaja"], + "Database not allowed to change": [ + "Podatkovne baze ni dovoljeno spreminjati" ], - "An error occurred while fetching owners values: %s": [ - "Pri pridobivanju polja lastnik je prišlo do napake: %s" + "One or more columns do not exist": ["En ali več stolpcev ne obstaja"], + "One or more columns are duplicated": [ + "En ali več stolpcev je podvojenih" ], - "An error occurred while fetching schema values: %s": [ - "Pri pridobivanju vrednosti shem je prišlo do napake: %s" + "One or more columns already exist": ["En ali več stolpcev že obstaja"], + "One or more metrics do not exist": ["Ena ali več mer ne obstaja"], + "One or more metrics are duplicated": ["Ena ali več mer je podvojenih"], + "One or more metrics already exist": ["Ena ali več mer že obstaja"], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Tabele [%(table_name)s] ni mogoče najti. Preverite povezavo, shemo in ime podatkovne baze" ], - "An error occurred while fetching tab state": [ - "Pri pridobivanju stanja zavihka je prišlo do napake" + "Dataset does not exist": ["Podatkovni set ne obstaja"], + "Dataset parameters are invalid.": [ + "Parametri podatkovnega seta so neveljavni." ], - "An error occurred while fetching table metadata": [ - "Pri pridobivanju metapodatkov tabele je prišlo do napake" + "Dataset could not be created.": [ + "Podatkovnega niza ni mogoče ustvariti." ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Pri pridobivanju metapodatkov tabele je prišlo do napake. Kontaktirajte administratorja." + "Dataset could not be updated.": [ + "Podatkovnega niza ni mogoče posodobiti." ], - "An error occurred while fetching user values: %s": [ - "Pri pridobivanju vrednosti uporabnika je prišlo do napake: %s" + "Datasets could not be deleted.": [ + "Podatkovnih nizov ni mogoče izbrisati." ], - "An error occurred while importing %s: %s": [ - "Napaka pri uvažanju %s: %s" + "Samples for dataset could not be retrieved.": [ + "Vzorcev za podatkovni set ni bilo mogoče pridobiti." ], - "An error occurred while loading dashboard information.": [ - "Prišlo je do napake pri pridobivanju informacij o nadzorni plošči." + "Changing this dataset is forbidden": [ + "Spreminjanje tega podatkovnega seta ni dovoljeno" ], - "An error occurred while loading the SQL": [ - "Pri nalaganju SQL je prišlo do napake" + "Import dataset failed for an unknown reason": [ + "Uvoz podatkovnega seta ni uspel zaradi neznanega razloga" ], - "An error occurred while opening Explore": [ - "Pri odpiranju Raziskovalca je prišlo do napake" + "You don't have access to this dataset.": [ + "Nimate dostopa do tega podatkovnega seta." ], - "An error occurred while parsing the key.": [ - "Pri branju ključa je prišlo do težave." + "Dataset could not be duplicated.": [ + "Podatkovnega niza ni mogoče duplicirati." ], - "An error occurred while pruning logs ": [ - "Pri krajšanju dnevnikov je prišlo do napake " + "Data URI is not allowed.": ["URI za podatke ni dovoljen."], + "The provided table was not found in the provided database": [ + "Podana tabela ni bila najdena v podani podatkovni bazi" ], - "An error occurred while removing query. Please contact your administrator.": [ - "Pri odstranjevanju poizvedbe je prišlo do napake. Kontaktirajte administratorja." + "Dataset column not found.": ["Stolpec podatkovnega seta ni najden."], + "Dataset column delete failed.": [ + "Brisanje stolpca podatkovnega seta neuspešno." ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Pri odstranjevanju zavihka je prišlo do napake. Kontaktirajte administratorja." + "Changing this dataset is forbidden.": [ + "Spreminjanje tega podatkovnega seta ni dovoljeno." ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Pri odstranjevanju sheme tabele je prišlo do napake. Kontaktirajte administratorja." + "Dataset metric not found.": ["Mer podatkovnega seta ni najdena."], + "Dataset metric delete failed.": [ + "Brisanje mere podatkovnega seta ni uspelo." ], - "An error occurred while rendering the visualization: %s": [ - "Pri prikazovanju vizualizacije je prišlo do napake: %s" + "Form data not found in cache, reverting to chart metadata.": [ + "Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki grafikona." ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Pri določanju aktivnega zavihka je prišlo do napake. Kontaktirajte administratorja." + "Form data not found in cache, reverting to dataset metadata.": [ + "Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki podatkovnega seta." ], - "An error occurred while starring this chart": [ - "Pri ocenjevanju grafikona je prišlo do napake" + "[Missing Dataset]": ["[Manjka podatkovni set]"], + "Saved queries could not be deleted.": [ + "Shranjenih poizvedb ni mogoče izbrisati." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "Pri shranjevanju vaše poizvedbe v sistem je prišlo do napake. Da ne izgubite sprememb, shranite poizvedbo z gumbom \"Shrani poizvedbo\"." + "Saved query not found.": ["Shranjena poizvedba ni najdena."], + "Import saved query failed for an unknown reason.": [ + "Uvoz shranjene poizvedbe ni uspel zaradi neznanega razloga." ], - "An error occurred while updating the value.": [ - "Pri posodabljanju vrednosti je prišlo do težave." + "Saved query parameters are invalid.": [ + "Parametri shranjene poizvedbe so neveljavni." ], - "An error occurred while upserting the value.": [ - "Pri posodabljanju/vstavljanju vrednosti je prišlo do težave." + "Invalid tab ids: %s(tab_ids)": [ + "Neveljavni id-ji zavihkov: %s(tab_ids)" ], - "An unexpected error occurred": ["Prišlo je do nepričakovane napake"], - "An unknown error occurred. Please contact your Superset administrator": [ - "Zgodila se je neznana napaka. Kontaktirajte svojega administratorja za Superset" + "Dashboard does not exist": ["Nadzorna plošča ne obstaja"], + "Chart does not exist": ["Grafikon ne obstaja"], + "Database is required for alerts": [ + "Podatkovna baza je obvezna za opozorila" ], - "Anchor to": ["Sidraj na"], - "Angle at which to end progress axis": [ - "Kot, pri katerem se konča številčnica" + "Type is required": ["Tip je obvezen"], + "Choose a chart or dashboard not both": [ + "Izberite grafikon ali nadzorno ploščo, ne obojega" ], - "Angle at which to start progress axis": [ - "Kot, pri katerem se začne številčnica" + "Must choose either a chart or a dashboard": [ + "Izberite bodisi grafikon bodisi nadzorno ploščo" ], - "Animation": ["Animacija"], - "Annotation": ["Oznaka"], - "Annotation Layer %s": ["Sloj z oznakami %s"], - "Annotation Layers": ["Sloji z oznakami"], - "Annotation Slice Configuration": ["Nastavitve rezine z oznakami"], - "Annotation could not be created.": ["Oznake ni mogoče ustvariti."], - "Annotation could not be updated.": ["Oznake ni mogoče posodobiti."], - "Annotation layer": ["Sloj z oznakami"], - "Annotation layer could not be created.": [ - "Sloja z oznakami ni mogoče ustvariti." + "Please save your chart first, then try creating a new email report.": [ + "Najprej shranite grafikon, potem pa poskusite ustvariti novo e-poštno poročilo." ], - "Annotation layer could not be updated.": [ - "Sloja z oznakami ni mogoče posodobiti." + "Please save your dashboard first, then try creating a new email report.": [ + "Najprej shranite nadzorno ploščo, potem pa poskusite ustvariti novo e-poštno poročilo." ], - "Annotation layer description columns": [ - "Stolpci z opisi slojev z oznakami" + "Report Schedule parameters are invalid.": [ + "Parametri urnika poročanja so neveljavni." ], - "Annotation layer has associated annotations.": [ - "Sloj z oznakami ima povezane oznake." + "Report Schedule could not be created.": [ + "Urnika poročanja ni mogoče ustvariti." ], - "Annotation layer interval end": ["Konec intervala sloja z oznakami"], - "Annotation layer name": ["Ime sloja z oznakami"], - "Annotation layer not found.": ["Sloja z oznakami ni mogoče najti."], - "Annotation layer opacity": ["Prosojnost sloja z oznakami"], - "Annotation layer parameters are invalid.": [ - "Parametri sloja z oznakami so neveljavni." + "Report Schedule could not be updated.": [ + "Urnika poročanja ni mogoče posodobiti." ], - "Annotation layer stroke": ["Obroba sloja z oznakami"], - "Annotation layer time column": ["Časovni stolpec sloja z oznakami"], - "Annotation layer title column": ["Stolpec z naslovom sloja z oznakami"], - "Annotation layer type": ["Tip sloja z oznakami"], - "Annotation layer value": ["Vrednost sloja z oznakami"], - "Annotation layers": ["Sloji z oznakami"], - "Annotation layers are still loading.": [ - "Sloj z oznakami se še vedno nalaga." + "Report Schedule not found.": ["Urnika poročanja ni najden."], + "Report Schedule delete failed.": ["Izbris urnika poročanja ni uspel."], + "Report Schedule log prune failed.": [ + "Krajšanje dnevnika urnika poročanja ni uspelo." ], - "Annotation layers could not be deleted.": [ - "Slojev z oznakami ni mogoče izbrisati." + "Report Schedule execution failed when generating a screenshot.": [ + "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju zaslonske slike." ], - "Annotation not found.": ["Oznaka ni najdena."], - "Annotation parameters are invalid.": ["Parametri oznak so neveljavni."], - "Annotation source": ["Vir oznak"], - "Annotation source type": ["Tip vira oznak"], - "Annotation template created": ["Predloga oznake ustvarjena"], - "Annotation template updated": ["Predloga oznake posodobljena"], - "Annotations and Layers": ["Oznake in sloji"], - "Annotations and layers": ["Oznake in sloji"], - "Annotations could not be deleted.": ["Oznak ni mogoče izbrisati."], - "Any": ["Katerikoli"], - "Any additional detail to show in the certification tooltip.": [ - "Prikaz dodatnih podrobnosti za certifikacijo." + "Report Schedule execution failed when generating a csv.": [ + "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju csv." ], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Na tem mestu izbrana barvna shema bo nadomestila barve posameznih grafikonov v tej nadzorni plošči" + "Report Schedule execution failed when generating a dataframe.": [ + "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju podatkovnega okvira." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL Alchemy URI-ji. " + "Report Schedule execution got an unexpected error.": [ + "Pri izvajanju urnika poročanja je prišlo do nepričakovane napake." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL Alchemy URI-ji. Naučite se kako povezati gonilnik podatkovne baze " + "Report Schedule is still working, refusing to re-compute.": [ + "Urnik poročanja se še vedno izvaja, ponovni izračun je zavrnjen." ], - "Append": ["Dodaj"], - "Applied cross-filters (%d)": ["Uporabljeni medsebojni filtri (%d)"], - "Applied filters (%d)": ["Uporabljeni filtri (%d)"], - "Applied filters: %s": ["Uporabljeni filtri: %s"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "Izbrano drseče okno ni vrnilo podatkov. Poskrbite, da izvorna poizvedba ustreza minimalni periodi drsečega okna." + "Report Schedule reached a working timeout.": [ + "Urnik poročanja je dosegel mejo časa izvedbe." ], - "Apply": ["Uporabi"], - "Apply conditional color formatting to metric": [ - "Za mere uporabi pogojno oblikovanje z barvami" + "A report named \"%(name)s\" already exists": [ + "Poročilo poimenovano %(name)s že obstaja" ], - "Apply conditional color formatting to metrics": [ - "Za mere uporabi pogojno oblikovanje z barvami" + "An alert named \"%(name)s\" already exists": [ + "Opozorilo poimenovano %(name)s že obstaja" ], - "Apply conditional color formatting to numeric columns": [ - "Za numerične stolpce uporabi pogojno oblikovanje z barvami" + "Resource already has an attached report.": [ + "Vir že ima povezano poročilo." ], - "Apply filters": ["Uporabi filtre"], - "Apply metrics on": ["Uporabi mero za"], - "Apply to all panels": ["Uporabi za vse grafikone"], - "Apply to specific panels": ["Uporabi za izbrane grafikone"], - "April": ["April"], - "Arc": ["Lok"], - "Are you sure you intend to overwrite the following values?": [ - "Ali ste prepričani, da želite prepisati naslednje vrednosti?" + "Alert query returned more than one row.": [ + "Poizvedba za opozorilo je vrnila več kot eno vrstico." ], - "Are you sure you want to cancel?": ["Ali želite prekiniti?"], - "Are you sure you want to delete": [ - "Ali ste prepričani, da želite izbrisati" + "Alert validator config error.": [ + "Napaka nastavitev potrjevalnika opozoril." ], - "Are you sure you want to delete %s?": [ - "Ali ste prepričani, da želite izbrisati %s?" + "Alert query returned more than one column.": [ + "Poizvedba za opozorilo je vrnila več kot en stolpec." ], - "Are you sure you want to delete the selected %s?": [ - "Ali ste prepričani, da želite izbrisati izbrane %s?" + "Alert query returned a non-number value.": [ + "Poizvedba za opozorilo je vrnila neštevilsko vrednost." ], - "Are you sure you want to delete the selected annotations?": [ - "Ali ste prepričani, da želite izbrisati izbrane oznake?" + "Alert found an error while executing a query.": [ + "Opozorilo je našlo napako pri izvajanju poizvedbe." ], - "Are you sure you want to delete the selected charts?": [ - "Ali ste prepričani, da želite izbrisati izbrane grafikone?" + "A timeout occurred while executing the query.": [ + "Pri izvajanju poizvedbe je potekel čas." ], - "Are you sure you want to delete the selected dashboards?": [ - "Ali ste prepričani, da želite izbrisati izbrane nadzorne plošče?" + "A timeout occurred while taking a screenshot.": [ + "Pri ustvarjanju zaslonske slike je potekel čas." ], - "Are you sure you want to delete the selected datasets?": [ - "Ali ste prepričani, da želite izbrisati izbrane podatkovne sete?" + "A timeout occurred while generating a csv.": [ + "Pri ustvarjanju csv je potekel čas." ], - "Are you sure you want to delete the selected layers?": [ - "Ali ste prepričani, da želite izbrisati izbrane sloje?" + "A timeout occurred while generating a dataframe.": [ + "Pri ustvarjanju podatkovnega okvira je potekel čas." ], - "Are you sure you want to delete the selected queries?": [ - "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?" + "Alert fired during grace period.": [ + "Opozorilo sproženo med obdobjem mirovanja." ], - "Are you sure you want to delete the selected rules?": [ - "Ali ste prepričani, da želite izbrisati izbrana pravila?" + "Alert ended grace period.": ["Opozorilo je končalo obdobje mirovanja."], + "Alert on grace period": ["Opozorilo v obdobju mirovanja"], + "Report Schedule state not found": ["Stanje urnika poročanj ni najdeno"], + "Report schedule system error": ["Sistemska napaka urnika poročanja"], + "Report schedule client error": ["Napaka klienta urnika poročanja"], + "Report schedule unexpected error": [ + "Nepričakovana napaka urnika poročanja" ], - "Are you sure you want to delete the selected tags?": [ - "Ali ste prepričani, da želite izbrisati izbrane oznake?" + "Changing this report is forbidden": [ + "Spreminjanje tega poročila ni dovoljeno" ], - "Are you sure you want to delete the selected templates?": [ - "Ali ste prepričani, da želite izbrisati izbrane predloge?" + "An error occurred while pruning logs ": [ + "Pri krajšanju dnevnikov je prišlo do napake " ], - "Are you sure you want to overwrite this dataset?": [ - "Ali ste prepričani, da želite prepisati podatkovni set?" + "RLS Rule not found.": ["RLS-pravilo ni najdeno."], + "RLS rules could not be deleted.": ["RLS-pravil ni mogoče izbrisati."], + "The database could not be found": ["Podatkovna baza ni bila najdena"], + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Ocenjevanje poizvedbe je bilo ustavljeno po %(sqllab_timeout)s sekundah. Lahko je prekompleksno ali pa je podatkovna baza preobremenjena." ], - "Are you sure you want to proceed?": ["Ali želite nadaljevati?"], - "Are you sure you want to save and apply changes?": [ - "Ali resnično želite shraniti in uporabiti spremembe?" + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "Podatkovna baza, referencirana v tej poizvedbi, ni bila najdena. Kontaktirajte administratorja za napotke ali pa poskusite znova." ], - "Area Chart": ["Ploščinski grafikon"], - "Area Chart (legacy)": ["Ploščinski grafikon (zastarelo)"], - "Area chart": ["Ploščinski grafikon"], - "Area chart opacity": ["Prosojnost ploščinskega grafikona"], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "Ploščinski grafikoni so podobni črtnim grafikonom, saj predstavljajo spremenljivke v istem razmerju, vendar se pri ploščinskih grafikonih mere nalagajo ena na drugo." + "The query associated with these results could not be found. You need to re-run the original query.": [ + "Poizvedbe, povezane s temi rezultati, ni bilo mogoče najti. Ponovno morate zagnati izvorno poizvedbo." ], - "Arrow": ["Puščica"], - "Assign a set of parameters as": ["Določi nabor parametrov kot"], - "Assist": ["Pomoč"], - "Associated Charts": ["Povezani grafikoni"], - "Async Execution": ["Asinhrono izvajanje"], - "Asynchronous query execution": ["Asinhroni zagon poizvedb"], - "August": ["Avgust"], - "Auto": ["Samodejno"], - "Auto Zoom": ["Samodejna povečava"], - "Autocomplete": ["Samodokončaj"], - "Autocomplete filters": ["Samodokončaj filtre"], - "Autocomplete query predicate": ["Predikat za samodokončanje poizvedb"], - "Automatic Color": ["Samodejne barve"], - "Available sorting modes:": ["Razpoložljivi načini razvrščanja:"], - "Average": ["Povprečje"], - "Average value": ["Povprečna vrednost"], - "Axis": ["Os"], - "Axis Bounds": ["Meje osi"], - "Axis Format": ["Oblika osi"], - "Axis Title": ["Naslov osi"], - "Axis ascending": ["Naraščajoča os"], - "Axis descending": ["Padajoča os"], - "BOOLEAN": ["BOOLEAN"], - "Back": ["Nazaj"], - "Back to all": ["Nazaj na vse"], - "Backend": ["Zaledni sistem"], - "Backward values": ["Prejšnje vrednosti"], - "Bad formula.": ["Napačna formula."], - "Bad spatial key": ["Neustrezen prostorski ključ"], - "Bar": ["Stolpec"], - "Bar Chart": ["Stolpčni grafikon"], - "Bar Chart (legacy)": ["Stolpčni graf (zastarelo)"], - "Bar Charts are used to show metrics as a series of bars.": [ - "Stolpčni grafikoni se uporabljajo za prikaz mer z nizi stolpcev." + "Cannot access the query": ["Dostop do poizvedbe ni mogoč"], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Podatkov ni bilo mogoče pridobiti iz zalednega sistema rezultatov. Ponovno morate zagnati izvorno poizvedbo." ], - "Bar Values": ["Vrednosti stolpcev"], - "Bar orientation": ["Orientacija stolpcev"], - "Base": ["Osnova"], - "Base layer map style. See Mapbox documentation: %s": [ - "Slog osnovnega zemljevida. Glej dokumentacijo Mapbox: %s" + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Podatkov ni bilo mogoče deserializirati iz zalednega sistema rezultatov. Lahko je prišlo do spremembe oblike zapisa. Ponovno zaženite izvorno poizvedbo." ], - "Based on a metric": ["Osnovan na meri"], - "Based on granularity, number of time periods to compare against": [ - "Število časovnih obdobij za primerjavo (na osnovi granulacije)" + "Tag parameters are invalid.": ["Parametri oznak so neveljavni."], + "Tag could not be created.": ["Oznake ni mogoče ustvariti."], + "Tag could not be updated.": ["Oznake ni mogoče posodobiti."], + "Tag could not be deleted.": ["Oznake ni mogoče izbrisati."], + "Tagged Object could not be deleted.": [ + "Označenega elementa ni mogoče izbrisati." ], - "Based on what should series be ordered on the chart and legend": [ - "Na osnovi česa so serije sortirane na grafikonu in legendi" + "An error occurred while creating the value.": [ + "Pri ustvarjanju vrednosti je prišlo do težave." ], - "Basic": ["Osnovno"], - "Basic information": ["Osnovne informacije"], - "Batch editing %d filters:": ["Skupinsko urejanje %d filtrov:"], - "Battery level over time": ["Napolnjenost baterije skozi čas"], - "Be careful.": ["Bodite previdni."], - "Before": ["Pred"], - "Big Number": ["Velika številka"], - "Big Number Font Size": ["Velikost pisave Velike številke"], - "Big Number with Trendline": ["Velika številka s trendno krivuljo"], - "Bottom": ["Spodaj"], - "Bottom Margin": ["Spodnji rob"], - "Bottom left": ["Spodaj levo"], - "Bottom margin, in pixels, allowing for more room for axis labels": [ - "Spodnji rob, v pikslih, s katerim povečamo prostor za oznake osi" + "An error occurred while accessing the value.": [ + "Pri dostopanju do vednosti je prišlo do težave." ], - "Bottom right": ["Spodaj desno"], - "Bottom to Top": ["Od dna proti vrhu"], - "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Meje numerične X-osi. Ni veljavno za časovne ali kategorične osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." + "An error occurred while deleting the value.": [ + "Pri brisanju vrednosti je prišlo do napake." ], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Meje Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." + "An error occurred while updating the value.": [ + "Pri posodabljanju vrednosti je prišlo do težave." ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Meje osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." + "You don't have permission to modify the value.": [ + "Nimate dovoljenja za spreminjanje vrednosti." ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Meje primarne Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." + "Resource was not found.": ["Vir ni bil najden."], + "Invalid result type: %(result_type)s": [ + "Neveljaven tip rezultata: %(result_type)s" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ - "Meje sekundarne Y-osi. Deluje le, če so omogočene odvisne meje Y-osi.\n Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov.\n Funkcija omeji le prikaz, obseg podatkov pa ostane enak." + "Columns missing in dataset: %(invalid_columns)s": [ + "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" ], - "Box Plot": ["Box Plot"], - "Breakdowns": ["Razčlenitev"], - "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ - "Razbije niz po kategorijah, določenih v tem polju.\n Na ta način lahko uporabniki razumejo, kako vsaka kategorija vpliva na skupno vrednost." + "Time Grain must be specified when using Time Shift.": [ + "Pri časovnem premiku mora biti definirana granulacija časa." ], - "Bubble Chart": ["Mehurčkasti grafikon"], - "Bubble Chart (legacy)": ["Mehurčkasti grafikon (zastarelo)"], - "Bubble Color": ["Barva mehurčka"], - "Bubble Opacity": ["Prosojnost mehurčka"], - "Bubble Size": ["Velikost mehurčka"], - "Bubble size": ["Velikost mehurčka"], - "Bubble size number format": ["Oblika zapisa velikosti mehurčka"], - "Bucket break points": ["Točke za razčlenitev razdelkov"], - "Build": ["Zgradi"], - "Bulk select": ["Izberi več"], - "Bulk tag": ["Označi več"], - "Bullet Chart": ["'Bullet' grafikon"], - "Business": ["Aktivnost"], - "Business Data Type": ["Poslovni podatkovni tip"], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "Privzeto vsak filter pri nalaganju začetne strani naloži največ 1000 možnosti. Označite polje, če imate več kot 1000 vrednosti filtra in želite omogočiti dinamično iskanje, ki nalaga vrednosti filtra ko uporabnik tipka (to lahko preobremeni vašo podatkovno bazo)." + "A time column must be specified when using a Time Comparison.": [ + "Pri časovni primerjavi mora biti definiran časovni stolpec." ], - "By key: use column names as sorting key": [ - "Po ključu: za razvrščanje uporabite imena stolpcev" + "The chart does not exist": ["Grafikon ne obstaja"], + "The chart datasource does not exist": [ + "Podatkovni vir grafikona ne obstaja" ], - "By key: use row names as sorting key": [ - "Po ključu: za razvrščanje uporabite imena vrstic" + "The chart query context does not exist": [ + "Kontekst poizvedbe grafikona ne obstaja" ], - "By value: use metric values as sorting key": [ - "Po vrednosti: za razvrščanje uporabite vrednosti mere" + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Podvojene oznake stolpcev/mer: %(labels)s. Poskrbite, da bodo imeli stolpci in mere unikatne oznake." ], - "CANCEL": ["PREKINI"], - "CREATE DATASET": ["USTVARI PODATKOVNI SET"], - "CREATE TABLE AS": ["CREATE TABLE AS"], - "CREATE VIEW AS": ["CREATE VIEW AS"], - "CREATE VIEW statement": ["CREATE VIEW stavek"], - "CRON Schedule": ["CRON urnik"], - "CRON expression": ["CRON izraz"], - "CSS": ["CSS"], - "CSS Styles": ["CSS slogi"], - "CSS Templates": ["CSS predloge"], - "CSS applied to the chart": ["CSS slogi uporabljeni za grafikon"], - "CSS template": ["CSS predloga"], - "CSS template not found.": ["CSS predloga ni najdena."], - "CSS templates": ["CSS predloge"], - "CSS templates could not be deleted.": [ - "CSS predlog ni mogoče izbrisati." + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "V 'columns' manjkajo naslednji vnosi iz 'series_columns': %(columns)s. " ], - "CSV Upload": ["Nalaganje CSV"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "CSV datoteka \"%(csv_filename)s\" naložena v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" + "`operation` property of post processing object undefined": [ + "Lastnost `operation` poprocesirnega objekta ni definirana" ], - "CSV to Database configuration": [ - "Nastavitve pretvorbe CSV v podatkovno bazo" + "Unsupported post processing operation: %(operation)s": [ + "Nepodprta poprocesirna operacija: %(operation)s" ], - "CSV upload": ["Nalaganje CSV"], - "CTAS & CVAS SCHEMA": ["CTAS & CVAS SHEMA"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTAS (create table as select) lahko izvajate le v poizvedbah, kjer je zadnji stavek SELECT. Poskrbite, da bo zadnji stavek v vaši poizvedbi SELECT in poskusite ponovno zagnati poizvedbo." + "[asc]": ["[asc]"], + "[desc]": ["[desc]"], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Napaka v jinja izrazu za pridobivanje vrednosti predikatov: %(msg)s" ], - "CTAS Schema": ["CTAS shema"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "CVAS (create view as select) lahko izvajate le v poizvedbah z enim SELECT stavkom. Poskrbite, da bo v vaši poizvedbi le en SELECT stavek in poskusite ponovno zagnati poizvedbo." + "Virtual dataset query must be read-only": [ + "Poizvedba na virtualnem podatkovnem setu mora biti samo za branje" ], - "CVAS (create view as select) query has more than one statement.": [ - "CVAS (create view as select) poizvedba ima več kot en stavek." + "Error while rendering virtual dataset query: %(msg)s": [ + "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s" ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "CVAS (create view as select) poizvedba ni SELECT stavek." - ], - "Cache Timeout": ["Trajanje predpomnilnika"], - "Cache Timeout (seconds)": ["Trajanje predpomnilnika (sekunde)"], - "Cache timeout": ["Časovna omejitev predpomnilnika"], - "Cached": ["Predpomnjeno"], - "Cached %s": ["Predpomnjeno %s"], - "Cached value not found": ["Predpomnjena vrednost ni najdena"], - "Calculate contribution per series or row": [ - "Izračunaj delež za serijo ali vrstico" + "Virtual dataset query cannot be empty": [ + "Poizvedba na virtualnem podatkovnem setu ne sme biti prazna" ], - "Calculate from first step": ["Izračunaj iz prvega koraka"], - "Calculate from previous step": ["Izračunaj iz prejšnjega koraka"], - "Calculated column [%s] requires an expression": [ - "Izračunan stolpec [%s] zahteva izraz" + "Virtual dataset query cannot consist of multiple statements": [ + "Poizvedba na virtualnem podatkovnem setu ne sme biti sestavljena iz več stavkov" ], - "Calculated columns": ["Izračunani stolpci"], - "Calculation type": ["Tip izračuna"], - "Calendar Heatmap": ["Koledarska barvna lestvica"], - "Can not move top level tab into nested tabs": [ - "Najvišjega zavihka ni mogoče premakniti v gnezdene zavihke" + "Error in jinja expression in RLS filters: %(msg)s": [ + "Napaka v jinja izrazu RLS filtrov: %(msg)s" ], - "Can select multiple values": ["Dovoli izbiro več vrednosti"], - "Can't have overlap between Series and Breakdowns": [ - "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" + "Metric '%(metric)s' does not exist": ["Mera '%(metric)s' ne obstaja"], + "Db engine did not return all queried columns": [ + "Sitem podatkovne baze ni vrnil vse stolpcev poizvedbe" ], - "Cancel": ["Prekliči"], - "Cancel query on window unload event": [ - "Prekini poizvedbo pri dogodku zaprtja okna (window unload event)" + "Only `SELECT` statements are allowed": [ + "Dovoljeni so le `SELECT` stavki" ], - "Cannot access the query": ["Dostop do poizvedbe ni mogoč"], - "Cannot delete a database that has datasets attached": [ - "Podatkovne baze s povezanimi podatkovnimi viri ni mogoče izbrisati" + "Only single queries supported": ["Podprte so le enojne poizvedbe"], + "Columns": ["Stolpci"], + "Show Column": ["Prikaži stolpec"], + "Add Column": ["Dodaj stolpec"], + "Edit Column": ["Uredi stolpec"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Če želite, da bo ta stolpec na razpolago kot možnost [Granulacija časa]. Stolpec mora biti tipa DATETIME ali DATETIME-like" ], - "Cannot have multiple credentials for the SSH Tunnel": [ - "Za SSH-tunel ne morete imeti več prijavnih podatkov" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Če želite, da je ta stolpec na voljo v sekciji `Filtri` v raziskovalnem pogledu." ], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Nadzorne plošče ni mogoče uvoziti: %(db_error)s.\nPred uvozom poskrbite za ustvarjenje podatkovne baze." + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Podatkovni tip, ki izvira iz podatkovne baze. V nekaterih primerih je potrebno ročno vnesti tip za stolpce, ki temeljijo na izrazih. V večini primerov uporabniku tega ni potrebno spreminjati." ], - "Cannot load filter": ["Filtra ni mogoče naložiti"], - "Cannot parse time string [%(human_readable)s]": [ - "Ni mogoče razčleniti časovnega izraza [%(human_readable)s]" + "Column": ["Stolpec"], + "Verbose Name": ["Podrobno ime"], + "Description": ["Opis"], + "Groupable": ["Združevanje"], + "Filterable": ["Filtriranje"], + "Table": ["Tabela"], + "Expression": ["Izraz"], + "Is temporal": ["Časoven"], + "Datetime Format": ["Oblika zapisa datuma,časa"], + "Type": ["Tip"], + "Business Data Type": ["Poslovni podatkovni tip"], + "Invalid date/timestamp format": ["Neveljaven zapis datuma/časa"], + "Metrics": ["Mere"], + "Show Metric": ["Prikaži mero"], + "Add Metric": ["Dodaj mero"], + "Edit Metric": ["Uredi mero"], + "Metric": ["Mera"], + "SQL Expression": ["SQL izraz"], + "D3 Format": ["D3 format"], + "Extra": ["Dodatno"], + "Warning Message": ["Opozorilo"], + "Tables": ["Tabele"], + "Show Table": ["Prikaži tabelo"], + "Import a table definition": ["Uvozi definicijo tabele"], + "Edit Table": ["Uredi tabelo"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Seznam grafikonov, povezanih s to tabelo. S spreminjanjem podatkovnega vira lahko spremenite, kako se povezani grafikoni obnašajo. Poleg tega morajo biti grafikoni povezani s podatkovnim virom. Če odstranite grafikon s podatkovnega vira ne bo mogoče shraniti tega vnosa. Če želite spremeniti podatkovni vir grafikona, prepišite grafikon v raziskovalnem pogledu." ], - "Categorical": ["Kategorični"], - "Categorical Color": ["Kategorična barva"], - "Categories to group by on the x-axis.": [ - "Kategorije za združevanje po x-osi." + "Timezone offset (in hours) for this datasource": [ + "Razlika časovnega pasu (v urah) za ta podatkovni vir" ], - "Category": ["Kategorija"], - "Category Name": ["Ime kategorije"], - "Category and Percentage": ["Kategorija in procent"], - "Category and Value": ["Kategorija in vrednost"], - "Category name": ["Ime kategorije"], - "Category of target nodes": ["Kategorija ciljnih vozlišč"], - "Category, Value and Percentage": ["Kategorija, vrednost in procent"], - "Cell Padding": ["Razmak med celicami"], - "Cell Radius": ["Zaobljenost celice"], - "Cell Size": ["Velikost celice"], - "Cell bars": ["Stolp. graf v celicah"], - "Cell content": ["Vsebina celice"], - "Cell limit": ["Omejitev števila celic"], - "Centroid (Longitude and Latitude): ": [ - "Centroid (zemljepisna dolžina in širina): " + "Name of the table that exists in the source database": [ + "Ime tabele, ki obstaja v izvorni podatkovni bazi" ], - "Certification": ["Certifikacija"], - "Certification details": ["Podrobnosti certifikacije"], - "Certified": ["Certificirano"], - "Certified By": ["Certificiral/a"], - "Certified by": ["Certificiral/a"], - "Certified by %s": ["Certificiral/a %s"], - "Change order of columns.": ["Spremeni vrstni red stolpcev."], - "Change order of rows.": ["Spremeni vrstni red vrstic."], - "Changed By": ["Spremenil"], - "Changed by": ["Spremenil"], - "Changes saved.": ["Spremembe shranjene."], - "Changing one or more of these dashboards is forbidden": [ - "Spreminjanje teh nadzornih plošč ni dovoljeno" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Shema, ki se uporablja pri nekaterih podatkovnih bazah, kot so Postgres, Redshift in DB2" ], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Sprememba podatkovnega seta lahko pokvari grafikon, če se le-ta zanaša na stolpce ali metapodatke, ki ne obstajajo v ciljnem podatkovnem nizu" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "To polje se obnaša kot Supersetov pogled, kar pomeni, da bo Superset izvedel poizvedbo za ta niz kot podpoizvedbo." ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "Spreminjanje teh nastavitev bo vplivalo na vse grafikone, ki uporabljajo ta podatkovni set, vključno z grafikoni v lasti drugih oseb." + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Privzeta vrednost za pridobivanje različnih vrednost pri oblikovanju filtrov. Podpira sintakso za jinja predloge. Potrebno le, ko je vključeno `Omogoči izbiro filtra`." ], - "Changing this Dashboard is forbidden": [ - "Spreminjanje te nadzorne plošče ni dovoljeno" + "Redirects to this endpoint when clicking on the table from the table list": [ + "Preusmeri v to končno točko, ko kliknete na tabelo v seznamu tabel" ], - "Changing this chart is forbidden": [ - "Spreminjanje tega grafikona ni dovoljeno" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Če želite napolniti spustni seznam filtra v raziskovalnem pogledu filtrske sekcije z različnimi vrednostmi, pridobljenimi sproti v ozadju" ], - "Changing this control takes effect instantly": [ - "Sprememba tega kontrolnika se odrazi takoj" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Če želite, da je tabela ustvarjena s postopkom 'Vizualizacija' v SQL laboratoriju" ], - "Changing this dataset is forbidden": [ - "Spreminjanje tega podatkovnega seta ni dovoljeno" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Nabor parametrov, ki postanejo razpoložljivi za poizvedbo z uporabo Jinja sintakse" ], - "Changing this dataset is forbidden.": [ - "Spreminjanje tega podatkovnega seta ni dovoljeno." + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Trajanje (v sekundah) predpomnjenja za to tabelo. Vrednost 0 označuje, da predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima nastavitev trajanja za podatkovno bazo." ], - "Changing this datasource is forbidden": [ - "Spreminjanje tega podatkovnega vira ni dovoljeno" + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "Dovoli, da se imena stolpcev spremenijo v male tiskane črke, kjer je to podprto (npr. Oracle, Snowflake)." ], - "Changing this report is forbidden": [ - "Spreminjanje tega poročila ni dovoljeno" + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "Podatkovni seti imajo lahko glavni časovni stolpec (main_dttm_col), lahko pa imajo tudi sekundarnega. Če je ta atribut izbran, se hkrati s filtriranjem sekundarnih stolpcev filtrira tudi glavni časovni stolpec." ], - "Character to interpret as decimal point": [ - "Znak, ki bo prepoznan kot decimalno ločilo" + "Associated Charts": ["Povezani grafikoni"], + "Changed By": ["Spremenil"], + "Database": ["Podatkovna baza"], + "Last Changed": ["Zadnja sprememba"], + "Enable Filter Select": ["Omogoči izbiro filtra"], + "Schema": ["Shema"], + "Default Endpoint": ["Privzeta končna točka"], + "Offset": ["Odmik"], + "Cache Timeout": ["Trajanje predpomnilnika"], + "Table Name": ["Ime tabele"], + "Fetch Values Predicate": ["Pridobi vrednosti predikatov"], + "Owners": ["Lastniki"], + "Main Datetime Column": ["Glavni stolpec Datum-Čas"], + "SQL Lab View": ["Pogled SQL laboratorija"], + "Template parameters": ["Parametri predlog"], + "Modified": ["Spremenjeno"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Tabela je ustvarjena. Sedaj morate v tem dvodelnem postopku klikniti gumb za urejanje nove tabele." ], - "Character to interpret as decimal point.": [ - "Znak, ki bo prepoznan kot decimalno ločilo." + "Deleted %(num)d css template": [ + "Izbrisana %(num)d css predloga", + "Izbrisani %(num)d css predlogi", + "Izbrisane %(num)d css predloge", + "Izbrisanih %(num)d css predlog" ], - "Chart": ["Grafikon"], - "Chart %(id)s not found": ["Grafikon %(id)s ni najden"], - "Chart Cache Timeout": ["Trajanje predpomnilnika grafikona"], - "Chart Data: %s": ["Podatki grafikona: %s"], - "Chart ID": ["ID grafikona"], - "Chart Options": ["Možnosti grafikona"], - "Chart Orientation": ["Orientacija grafikona"], - "Chart Owner: %s": [ - "Lastnik grafikona: %s", - "Lastnik grafikonov: %s", - "Lastnik grafikonov: %s", - "Lastnik grafikonov: %s" + "Dataset schema is invalid, caused by: %(error)s": [ + "Shema podatkovnega seta ni veljavna, zaradi napake: %(error)s" ], - "Chart Source": ["Podatkovni vir grafikona"], - "Chart Title": ["Naslov grafikona"], - "Chart [%s] has been overwritten": ["Grafikon [%s] je bil prepisan"], - "Chart [%s] has been saved": ["Grafikon [%s] je bil shranjen"], - "Chart [%s] was added to dashboard [%s]": [ - "Grafikon [%s] je bil dodan na nadzorno ploščo [%s]" + "Deleted %(num)d dashboard": [ + "Izbrisana je %(num)d nadzorna plošča", + "Izbrisani sta %(num)d nadzorni plošči", + "Izbrisane so %(num)d nadzorne plošče", + "Izbrisanih je %(num)d nadzornih plošč" ], - "Chart [{}] has been overwritten": ["Grafikon [{}] je bil prepisan"], - "Chart [{}] has been saved": ["Grafikon [{}] je bil shranjen"], - "Chart [{}] was added to dashboard [{}]": [ - "Grafikon [{}] je bil dodan na nadzorno ploščo [{}]" + "Title or Slug": ["Naslov ali `Slug`"], + "Role": ["Vloga"], + "Invalid state.": ["Neveljavno stanje."], + "Table name undefined": ["Ime tabele ni definirano"], + "Upload Enabled": ["Nalaganje omogočeno"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Neveljaven niz povezave - veljaven niz je običajno v obliki: backend+driver://user:password@database-host/database-name" ], - "Chart cache timeout": ["Trajanje predpomnilnika grafikona"], - "Chart changes": ["Spremembe grafikona"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "Komponenta grafikona, ki omogoča dodajanje vmesnika filtrov po meri v nadzorno ploščo. Ko je dodana na nadzorno ploščo, lahko uporabnik določi poljubne vrednosti ali obsege filtrov. Grafikoni, na katere se nanašajo filtri, so lahko precizno izbrani tudi v pogledu nadzorne plošče.\n\n Vedite, da bo ta vtičnik v prihodnosti zamenjan z novim konceptom filtrov, ki bodo živeli v kontekstu same nadzorne plošče in bodo zmogljivejši ter enostavnejši za uporabo!" + "Field cannot be decoded by JSON. %(msg)s": [ + "Polja ni mogoče dekodirati z JSON. %(msg)s" ], - "Chart could not be created.": ["Grafikona ni mogoče ustvariti."], - "Chart could not be updated.": ["Grafikona ni mogoče posodobiti."], - "Chart does not exist": ["Grafikon ne obstaja"], - "Chart has no query context saved. Please save the chart again.": [ - "Grafikon nima shranjenega konteksta poizvedbe. Ponovno shranite grafikon." + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %(key)s je neveljaven." ], - "Chart height": ["Višina grafikona"], - "Chart imported": ["Grafikon uvožen"], - "Chart last modified": ["Zadnja sprememba grafikona"], - "Chart last modified by": ["Grafikon nazadnje spremenil"], - "Chart name": ["Ime grafikona"], - "Chart not found": ["Grafikon ni najden"], - "Chart options": ["Možnosti grafikona"], - "Chart owners": ["Lastniki grafikona"], - "Chart parameters are invalid.": ["Parametri grafikona so neveljavni."], - "Chart properties updated": ["Lastnosti grafikona posodobljene"], - "Chart title": ["Naslov grafikona"], - "Chart type requires a dataset": ["Grafikon zahteva podatkovni set"], - "Chart width": ["Širina grafikona"], - "Charts": ["Grafikoni"], - "Charts could not be deleted.": ["Grafikonov ni mogoče izbrisati."], - "Check for sorting ascending": ["Označi za naraščajoče razvrščanje"], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "Če želite, da grafikon \"Rose\" uporablja površino segmenta namesto radija za proporcioniranje" + "An engine must be specified when passing individual parameters to a database.": [ + "Pri podajanju posameznih parametrov podatkovne baze mora biti podan njen tip." ], - "Check out this chart in dashboard:": [ - "Preizkusite ta grafikon v nadzorni plošči:" + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Specifikacija baze \"InvalidEngine\" ne podpira konfiguracije s posameznimi parametri." ], - "Check out this chart: ": ["Preizkusite ta grafikon: "], - "Check out this dashboard: ": ["Preizkusite to nadzorno ploščo: "], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Izberite za takojšnjo uporabo filtrov, ko se spremenijo, brez prikazovanja gumba Uveljavi" + "Deleted %(num)d dataset": [ + "Izbrisan %(num)d podatkovni set", + "Izbrisana %(num)d podatkovna niza", + "Izbrisani %(num)d podatkovni nizi", + "Izbrisanih %(num)d podatkovnih nizov" ], - "Check to force date partitions to have the same height": [ - "Če želite, da imajo datumske particije enako višino" - ], - "Check to include time column dropdown": [ - "Če želite vključiti izbirnik časovnega stolpca" - ], - "Check to include time grain dropdown": [ - "Če želite vključiti izbirnik časovne granulacije" - ], - "Child label position": ["Položaj podrejene oznake"], - "Choice of [Label] must be present in [Group By]": [ - "Izbira [Oznaka] mora biti prisotna v [Združevanje po]" + "Null or Empty": ["Nič (NULL) ali prazen"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Preverite, če ima vaša poizvedba sintaktične napake pri \"%(syntax_error)s\". Potem ponovno poženite poizvedbo." ], - "Choice of [Point Radius] must be present in [Group By]": [ - "Izbran [Radij točk] mora biti prisoten v [Združevanje po]" + "Second": ["Sekunda"], + "5 second": ["5 second"], + "30 second": ["30 second"], + "Minute": ["Minuta"], + "5 minute": ["5 minute"], + "10 minute": ["10 minute"], + "15 minute": ["15 minute"], + "30 minute": ["30 minut"], + "Hour": ["Ura"], + "6 hour": ["6 hour"], + "Day": ["Dan"], + "Week": ["Teden"], + "Month": ["Mesec"], + "Quarter": ["Četrtletje"], + "Year": ["Leto"], + "Week starting Sunday": ["Teden z začetkom v nedeljo"], + "Week starting Monday": ["Teden z začetkom v ponedeljek"], + "Week ending Saturday": ["Teden s koncem v soboto"], + "Week ending Sunday": ["Teden s koncem v nedeljo"], + "Username": ["Uporabniško ime"], + "Password": ["Geslo"], + "Hostname or IP address": ["Ime gostitelja ali IP naslov"], + "Database port": ["Vrata podatkovne baze"], + "Database name": ["Ime podatkovne baze"], + "Additional parameters": ["Dodatni parametri"], + "Use an encrypted connection to the database": [ + "Uporabite šifrirano povezavo s podatkovno bazo" ], - "Choose File": ["Izberite datoteko"], - "Choose a chart or dashboard not both": [ - "Izberite grafikon ali nadzorno ploščo, ne obojega" + "Use an ssh tunnel connection to the database": [ + "Za povezavo s podatkovno bazo uporabite ssh-tunel" ], - "Choose a database...": ["Izberite podatkovno bazo..."], - "Choose a dataset": ["Izberite podatkovni set"], - "Choose a metric for right axis": ["Izberite mero za desno os"], - "Choose a number format": ["Izberite obliko zapisa števila"], - "Choose a source": ["Izberite izvor"], - "Choose a source and a target": ["Izberite izhodišče in cilj"], - "Choose a target": ["Izberite cilj"], - "Choose chart type": ["Izberite tip grafikona"], - "Choose one of the available databases from the panel on the left.": [ - "Izberite eno od razpoložljivih podatkovnih baz v panelu na levi." + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Povezava neuspešna. Preverite če so v servisnem računu nastavljene naslednje vloge: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" in so nastavljena naslednja dovoljenja: \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" ], - "Choose the annotation layer type": ["Izberite tip sloja z oznakami"], - "Choose the format for legend values": [ - "Izberite obliko vrednosti legende" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Tabela \"%(table)s\" ne obstaja. V poizvedbi mora biti uporabljena veljavna tabela." ], - "Choose the position of the legend": ["Izberite položaj legende"], - "Choose the source of your annotations": ["Izberite vir svojih oznak"], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "Izberite, če želite barvanje držav glede na mero ali kategorično določeno barvno paleto" + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Zdi se, da ni mogoče razrešiti stolpca \"%(column)s\" v vrstici %(location)s." ], - "Chord Diagram": ["Tetivni grafikon"], - "Chosen non-numeric column": ["Izbran ne-numeričen stolpec"], - "Circle": ["Krog"], - "Circle -> Arrow": ["Krog -> Puščica"], - "Circle -> Circle": ["Krog -> Krog"], - "Circle radar shape": ["Okrogla oblika radarja"], - "Circular": ["Krožno"], - "Classic chart that visualizes how metrics change over time.": [ - "Standardni grafikon za prikaz spreminjanje mere skozi čas." + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Shema \"%(schema)s\" ne obstaja. Za poizvedbo mora biti uporabljena veljavna shema." ], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "Standardna razpredelnica za prikaz podatkovnega seta." + "Either the username \"%(username)s\" or the password is incorrect.": [ + "Uporabniško ime \"%(username)s\" ali geslo sta napačna." ], - "Clause": ["Stavek"], - "Clear": ["Počisti"], - "Clear all": ["Počisti vse"], - "Clear all data": ["Počisti vse podatke"], - "Clear form": ["Počisti polja"], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "Kliknite na gumb \"Dodaj/Uredi filtre\" za kreiranje novih filtrov nadzorne plošče" + "Unknown Doris server host \"%(hostname)s\".": [ + "Neznan Doris strežnik \"%(hostname)s\"." ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ - "Kliknite na gumb \"Ustvari grafikon\" v kontrolni plošči na levi za predogled ali" + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči." ], - "Click the lock to make changes.": [ - "Kliknite ključavnico, da omogočite spreminjanje." + "Unable to connect to database \"%(database)s\".": [ + "Povezava s podatkovno bazo \"%(database)s\" ni uspela." ], - "Click the lock to prevent further changes.": [ - "Kliknite ključavnico, da onemogočite spreminjanje." + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Preverite, če ima vaša poizvedba sintaktične napake pri \"%(server_error)s\". Potem ponovno poženite poizvedbo." ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "Kliknite to povezavo za drugo vnosno formo, ki omogoča ročni vnos SQLAlchemy URL-ja za to podatkovno bazo." + "We can't seem to resolve the column \"%(column_name)s\"": [ + "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\"" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "Kliknite to povezavo za drugo vnosno formo, ki prikaže samo zahtevana polja za povezavo s podatkovno bazo." + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Uporabniško ime \"%(username)s\", geslo ali ime podatkovne baze \"%(database)s\" so napačni." ], - "Click to add a contour": ["Klikni za dodajanje plastnice"], - "Click to cancel sorting": ["Kliknite za prekinitev razvrščanja"], - "Click to edit": ["Kliknite za urejanje"], - "Click to edit %s.": ["Kliknite za urejanje %s."], - "Click to edit chart.": ["Kliknite za urejanje grafikona."], - "Click to edit label": ["Kliknite za urejanje oznake"], - "Click to favorite/unfavorite": [ - "Kliknite za priljubljeno/nepriljubljeno" + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "Imena gostitelja \"%(hostname)s\" ni mogoče razrešiti." ], - "Click to force-refresh": ["Kliknite za prisilno osvežitev"], - "Click to see difference": ["Kliknite za prikaz razlike"], - "Click to sort ascending": ["Kliknite za naraščajoče razvrščanje"], - "Click to sort descending": ["Kliknite za padajoče razvrščanje"], - "Close": ["Zapri"], - "Close all other tabs": ["Zapri vse ostale zavihke"], - "Close tab": ["Zapri zavihek"], - "Cluster label aggregator": ["Agregator za oznako gruče"], - "Clustering Radius": ["Radij gručenja"], - "Code": ["Koda"], - "Collapse all": ["Skrči vse"], - "Collapse data panel": ["Skrij podatkovni panel"], - "Collapse row": ["Skrij vrstico"], - "Collapse tab content": ["Skrij vsebino zavihka"], - "Collapse table preview": ["Zapri predogled tabele"], - "Color": ["Barva"], - "Color +/-": ["Barva +/-"], - "Color Metric": ["Mera za barvo"], - "Color Scheme": ["Barvna shema"], - "Color Steps": ["Barvni koraki"], - "Color bounds": ["Barvne meje"], - "Color by": ["Barva glede na"], - "Color metric": ["Mera za barvo"], - "Color of the target location": ["Barva ciljne lokacije"], - "Color scheme": ["Barvna shema"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ - "Barvna lestvica bo ustvarjena na osnovi normiranih vrednosti (0% do 100%) posameznih celic glede na ostale celice v izbranem obsegu: " + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Vrata %(port)s na gostitelju \"%(hostname)s\" niso sprejela povezave." ], - "Color: ": ["Barva: "], - "Colors": ["Barve"], - "Column": ["Stolpec"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "Stolpec \"%(column)s\" ni numeričen ali ne obstaja v rezultatu poizvedbe." + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči na vratih %(port)s." ], - "Column Configuration": ["Konfiguracija stolpca"], - "Column Data Types": ["Podatkovni tipi stolpcev"], - "Column Formatting": ["Oblikovanje stolpca"], - "Column Label(s)": ["Naslovi stolpcev"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "Stolpec, ki vsebuje ISO 3166-2 oznake regij/provinc/departmajev v vaši tabeli." + "Unknown MySQL server host \"%(hostname)s\".": [ + "Neznan MySQL strežnik \"%(hostname)s\"." ], - "Column containing latitude data": [ - "Stolpec s podatki zemljepisne širine" + "The username \"%(username)s\" does not exist.": [ + "Uporabniško ime \"%(username)s\" ne obstaja." ], - "Column containing longitude data": [ - "Stolpec s podatki zemljepisne dolžine" + "The user/password combination is not valid (Incorrect password for user).": [ + "Kombinacija uporabnik/geslo ni veljavna (napačno geslo)." ], - "Column datatype": ["Podatkovni tipi stolpcev"], - "Column header tooltip": ["Opis glave stolpca"], - "Column is required": ["Zahtevan je stolpec"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi Dataframe-a obstajajo, se uporabijo imena indeksov." + "Could not connect to database: \"%(database)s\"": [ + "Neuspešna povezava s podatkovno bazo: \"%(database)s\"" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ - "Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi Dataframe-a obstajajo, se uporabijo imena slednjih" + "Could not resolve hostname: \"%(host)s\".": [ + "Gostitelj ni dosegljiv: \"%(host)s\"." ], - "Column name": ["Ime stolpca"], - "Column name [%s] is duplicated": ["Ime stolpca [%s] je podvojeno"], - "Column referenced by aggregate is undefined: %(column)s": [ - "Stolpec referenciran z agregacijo ni definiran: %(column)s" + "Port out of range 0-65535": ["Vrata v razponu 0-65535"], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Neveljaven niz povezave: pričakovan je niz oblike 'ocient://user:pass@host:port/database'." ], - "Column select": ["Izbira stolpca"], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ - "Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, če ni indeksnega stolpca" + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Napaka v sintaksi: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, če ni indeksnega stolpca." + "Table or View \"%(table)s\" does not exist.": [ + "Tabela ali pogled \"%(table)s\" ne obstaja." ], - "Columnar File": ["Stolpčna datoteka"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Stolpčna datoteka \"%(columnar_filename)s\" naložena v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" + "Invalid reference to column: \"%(column)s\"": [ + "Neveljaven sklic na stolpec: \"%(column)s\"" ], - "Columnar to Database configuration": [ - "Nastavitve pretvorbe stolpčne oblike v podatkovno bazo" + "The password provided for username \"%(username)s\" is incorrect.": [ + "Geslo za uporabniško ime \"%(username)s\" je napačno." ], - "Columns": ["Stolpci"], - "Columns To Be Parsed as Dates": [ - "Stolpci, ki bodo prepoznani kot datumi" + "Please re-enter the password.": ["Ponovno vpišite geslo."], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\" v vrstici %(location)s." ], - "Columns To Read": ["Stolpci za branje"], - "Columns missing in dataset: %(invalid_columns)s": [ - "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" + "Users are not allowed to set a search path for security reasons.": [ + "Uporabnikom ni dovoljeno nastaviti iskalne poti zaradi varnostnih razlogov." ], - "Columns missing in datasource: %(invalid_columns)s": [ - "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Tabela \"%(table_name)s\" ne obstaja. V poizvedbi mora biti uporabljena veljavna tabela." ], - "Columns subtotal position": ["Položaj delnih vsot stolpcev"], - "Columns to calculate distribution across.": [ - "Stolpci za izračun porazdelitve." + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Shema \"%(schema_name)s\" ne obstaja. Za poizvedbo mora biti uporabljena veljavna shema." ], - "Columns to display": ["Stolpci za prikaz"], - "Columns to group by": ["Stolpci za združevanje po"], - "Columns to group by on the columns": [ - "Stolpci za združevanje po stolpcih" + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "Povezava na katalog \"%(catalog_name)s\" ni uspela." ], - "Columns to group by on the rows": ["Stolpci za združevanje po vrsticah"], - "Columns to show": ["Stolpci za prikaz"], - "Combine metrics": ["Združuj mere"], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "Z vejico ločene barve za intervale, npr. 1,2,4. Cela števila predstavljajo barve iz barvne sheme (začnejo se z 1). Dolžina mora ustrezati mejam intervala." + "Unknown Presto Error": ["Neznana Presto napaka"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Povezava s podatkovno bazo \"%(database)s\" ni uspela. Preverite ime podatkovne baze in poskusite ponovno." ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "Z vejico ločeni intervali, npr. 2,4,5 za intervale 0-2, 2-4 in 4-5. Zadnja številka naj bo enaka vrednosti za MAX." + "%(object)s does not exist in this database.": [ + "%(object)s ne obstaja v tej podatkovni bazi." ], - "Comparator option": ["Možnosti komparatorja"], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "Hitra primerjava več grafikonov časovnih vrst (sparkline način) in povezanih mer." + "Samples for datasource could not be retrieved.": [ + "Vzorcev za podatkovni vir ni bilo mogoče pridobiti." ], - "Compare the same summarized metric across multiple groups.": [ - "Primerja isto mero med različnimi skupinami." + "Changing this datasource is forbidden": [ + "Spreminjanje tega podatkovnega vira ni dovoljeno" ], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ - "Primerja kako se mera spreminja s časom med različnimi skupinami. Vsaka skupina predstavlja eno vrstico, časovne spremembe pa so prikazane z dolžino stolpcev in barvami." + "Home": ["Domov"], + "Database Connections": ["Povezave na podatkovne baze"], + "Data": ["Podatki"], + "Dashboards": ["Nadzorne plošče"], + "Charts": ["Grafikoni"], + "Datasets": ["Podatkovni seti"], + "Plugins": ["Vtičniki"], + "Manage": ["Upravljaj"], + "CSS Templates": ["CSS predloge"], + "SQL Lab": ["SQL laboratorij"], + "SQL": ["SQL"], + "Saved Queries": ["Shranjene poizvedbe"], + "Query History": ["Zgodovina poizvedb"], + "Tags": ["Oznake"], + "Action Log": ["Dnevnik aktivnosti"], + "Security": ["Varnost"], + "Alerts & Reports": ["Opozorila in poročila"], + "Annotation Layers": ["Sloji z oznakami"], + "Row Level Security": ["Varnost na nivoju vrstic"], + "An error occurred while parsing the key.": [ + "Pri branju ključa je prišlo do težave." ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "Primerjava mer različnih kategorij s pomočjo stolpcev. Dolžina stolpca prestavlja višino vrednosti, z barvami pa so ločene skupine." + "An error occurred while upserting the value.": [ + "Pri posodabljanju/vstavljanju vrednosti je prišlo do težave." ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "Primerja dolžine časovno različnih aktivnosti na skupni časovnici." + "Unable to encode value": ["Vrednosti ni mogoče šifrirati"], + "Unable to decode value": ["Vrednosti ni mogoče dešifrirati"], + "Invalid permalink key": ["Neveljaven ključ povezave"], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Stolpec datum-čas ni podan kot del tabele, čeprav mora biti za ta tip grafikona" ], - "Comparison": ["Primerjava"], - "Comparison Period Lag": ["Preteklo obdobje za primerjavo"], - "Comparison suffix": ["Pripona za procent"], - "Compose multiple layers together to form complex visuals.": [ - "Združi več plasti za oblikovanje kompleksnih vizualizacij." + "Empty query?": ["Prazna poizvedba?"], + "Unknown column used in orderby: %(col)s": [ + "Za razvrščanje je uporabljen neznan stolpec: %(col)s" ], - "Compute the contribution to the total": ["Izračunaj prispevek k celoti"], - "Condition": ["Pogoj"], - "Conditional Formatting": ["Pogojno oblikovanje"], - "Conditional formatting": ["Pogojno oblikovanje"], - "Confidence interval": ["Interval zaupanja"], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "Interval zaupanja mora biti med 0 in 1 (odprt)" + "Time column \"%(col)s\" does not exist in dataset": [ + "Časovni stolpec \"%(col)s\" ne obstaja v podatkovnem setu" ], - "Configuration": ["Nastavitve"], - "Configure Advanced Time Range ": ["Nastavi napredno časovno obdobje "], - "Configure Time Range: Last...": ["Nastavi časovno obdobje: Zadnji ..."], - "Configure Time Range: Previous...": [ - "Nastavi časovno obdobje: Prejšnji ..." + "error_message": ["error_message"], + "Filter value list cannot be empty": [ + "Seznam vrednosti filtra ne sme biti prazen" ], - "Configure custom time range": ["Nastavi prilagojeno časovno obdobje"], - "Configure filter scopes": ["Nastavi doseg filtrov"], - "Configure the basics of your Annotation Layer.": [ - "Osnovne nastavitve sloja z oznakami." + "Must specify a value for filters with comparison operators": [ + "Potrebno je podati vrednost za filter s primerjalnim operandom" ], - "Configure this dashboard to embed it into an external web application.": [ - "Nastavite nadzorno ploščo za vgradnjo v zunanjo spletno aplikacijo." + "Invalid filter operation type: %(op)s": [ + "Neveljaven tip operacije filtra: %(op)s" ], - "Configure your how you overlay is displayed here.": [ - "Nastavite kako se tukaj prikazuje vrhnja plast." + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Napaka v jinja izrazu WHERE stavka: %(msg)s" ], - "Confirm overwrite": ["Potrdite prepis"], - "Confirm save": ["Potrdite shranjevanje"], - "Connect": ["Poveži"], - "Connect Google Sheet": ["Povežite Googlovo preglednico"], - "Connect Google Sheets as tables to this database": [ - "Googlove preglednice poveži s to podatkovno bazo kot tabele" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Napaka v jinja izrazu HAVING stavka: %(msg)s" ], - "Connect a database": ["Poveži se s podatkovno bazo"], - "Connect database": ["Poveži se s podatkovno bazo"], - "Connect this database using the dynamic form instead": [ - "S podatkovno bazo se povežite z dinamičnim obrazcem" + "Database does not support subqueries": [ + "Podatkovna baza ne podpira podpoizvedb" ], - "Connect this database with a SQLAlchemy URI string instead": [ - "S to podatkovno bazo se raje povežite z SQLAlchemy URI nizom" + "Deleted %(num)d saved query": [ + "Izbrisana %(num)d shranjena poizvedba", + "Izbrisani %(num)d shranjeni poizvedbi", + "Izbrisane %(num)d shranjene poizvedbe", + "Izbrisanih %(num)d shranjenih poizvedb" ], - "Connection": ["Povezava"], - "Connection failed, please check your connection settings": [ - "Povezava neuspešna. Preverite nastavitve povezave" + "Deleted %(num)d report schedule": [ + "Izbrisan %(num)d urnik poročanja", + "Izbrisana %(num)d urnika poročanja", + "Izbrisani %(num)d urniki poročanja", + "Izbrisanih %(num)d urnikov poročanja" ], - "Connection looks good!": ["Povezava izgleda v redu!"], - "Continue": ["Nadaljuj"], - "Continuous": ["Zvezno"], - "Contours": ["Plastnice"], - "Contribution": ["Prispevek"], - "Contribution Mode": ["Način prikaza deležev"], - "Control": ["Nadzor"], - "Control labeled ": ["Nastavitev "], - "Controls labeled ": ["Kontrolniki imenovani "], - "Coordinates": ["Koordinate"], - "Copied to clipboard!": ["Kopirano na odložišče!"], - "Copy": ["Kopiraj"], - "Copy SELECT statement to the clipboard": [ - "Kopiraj stavek SELECT na odložišče" + "Value must be greater than 0": ["Vrednost mora biti večja od 0"], + "Custom width of the screenshot in pixels": [ + "Poljubna širina zaslonske slike v pikslih" ], - "Copy and Paste JSON credentials": [ - "Kopiraj in prilepi JSON prijavne podatke" + "Screenshot width must be between %(min)spx and %(max)spx": [ + "Širina zaslonske slike mora biti med %(min)spx and %(max)spx" ], - "Copy and paste the entire service account .json file here": [ - "Tukaj kopirajte in prilepite celotno json datoteko servisnega računa" + "\n Error: %(text)s\n ": [ + "\n Napaka: %(text)s\n " ], - "Copy link": ["Kopiraj povezavo"], - "Copy message": ["Kopiraj sporočilo"], - "Copy of %s": ["Kopija %s"], - "Copy partition query to clipboard": [ - "Kopiraj particijsko poizvedbo na odložišče" + "EMAIL_REPORTS_CTA": ["EMAIL_REPORTS_CTA"], + "%(name)s.csv": ["%(name)s.csv"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Razišči v Supersetu>\n\n%(table)s\n" ], - "Copy permalink to clipboard": ["Kopiraj povezavo v odložišče"], - "Copy query URL": ["Kopiraj URL poizvedbe"], - "Copy query link to your clipboard": [ - "Kopiraj povezavo do poizvedbe v odložišče" + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ + "*%(name)s*\n\n%(description)s\n\nnapaka: %(text)s\n" ], - "Copy the identifier of the account you are trying to connect to.": [ - "Kopirajte ID računa, s katerim se skušate povezati." + "Deleted %(num)d rules": [ + "Izbrisano je %(num)d pravilo", + "Izbrisani sta %(num)d pravili", + "Izbrisana so %(num)d pravila", + "Izbrisanih je %(num)d pravil" ], - "Copy the name of the HTTP Path of your cluster.": [ - "Kopirajte naziv HTTP poti vaše gruče." + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s ni mogoče uporabiti kot podatkovni vir zaradi varnostnih razlogov." ], - "Copy the name of the database you are trying to connect to.": [ - "Kopirajte ime podatkovne baze, s katero se skušate povezati." + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [ + "Nimate pravic za spreminjanje %(resource)s" ], - "Copy to Clipboard": ["Kopiraj na odložišče"], - "Copy to clipboard": ["Kopiraj na odložišče"], - "Correlation": ["Korelacija"], - "Cost estimate": ["Ocena potratnosti"], - "Could not connect to database: \"%(database)s\"": [ - "Neuspešna povezava s podatkovno bazo: \"%(database)s\"" + "Failed to execute %(query)s": ["Neuspešno izvajanje %(query)s"], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Preverite, če imajo jinja parametri sintaktične napake in poskrbite, da se ujemajo znotraj SQL-poizvedbe. Potem ponovno poženite poizvedbo." ], - "Could not determine datasource type": [ - "Ni mogoče določiti tipa podatkovnega vira" + "The parameter %(parameters)s in your query is undefined.": [ + "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s.", + "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s.", + "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s.", + "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." ], - "Could not fetch all saved charts": [ - "Vseh shranjenih grafikonov ni bilo mogoče pridobiti" + "The query contains one or more malformed template parameters.": [ + "Poizvedba vsebuje enega ali več parametrov predlog z napačno obliko." ], - "Could not find viz object": [ - "Ni mogoče najti vizualizacijskega objekta" + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "V poizvedbi preverite, da so vsi parametri obdani z dvojnimi oklepaji, npr. \"{{ ds }}\". Potem poskusite ponovno." ], - "Could not load database driver": [ - "Ni mogoče naložiti gonilnika podatkovne baze" + "Tag name is invalid (cannot contain ':')": [ + "Ime oznake ni pravilno (ne sme vsebovati ':')" ], - "Could not load database driver: {}": [ - "Ni mogoče naložiti gonilnika podatkovne baze: {}" + "Tag could not be found.": ["Oznake ni mogoče najti."], + "Scheduled task executor not found": [ + "Izvajalnik urnika poročanj ni najden" ], - "Could not resolve hostname: \"%(host)s\".": [ - "Gostitelj ni dosegljiv: \"%(host)s\"." + "Record Count": ["Število zapisov"], + "No records found": ["Ni zapisov"], + "Filter List": ["Seznam filtrov"], + "Search": ["Iskanje"], + "Refresh": ["Osveži"], + "Import dashboards": ["Uvozi nadzorne plošče"], + "Import Dashboard(s)": ["Uvozi nadzorne plošče"], + "File": ["Datoteka"], + "Choose File": ["Izberite datoteko"], + "Upload": ["Naloži"], + "Use the edit button to change this field": [ + "Za spreminjanje tega polja uporabite gumb za urejanje" ], - "Count": ["Število"], - "Count Unique Values": ["Število unikatnih"], - "Count as Fraction of Columns": ["Štetje kot delež stolpcev"], - "Count as Fraction of Rows": ["Štetje kot delež vrstic"], - "Count as Fraction of Total": ["Štetje kot delež skupne vsote"], - "Country": ["Država"], - "Country Color Scheme": ["Barvna shema držav"], - "Country Column": ["Stolpec z državami"], - "Country Field Type": ["Tip polja za države"], - "Country Map": ["Zemljevid držav"], - "Create": ["Ustvari"], - "Create Chart": ["Ustvarite grafikon"], - "Create a dataset": ["Ustvarite podatkovni set"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "Ustvarite podatkovni set, da začnete vizualizacijo podatkov z grafikonom ali\n pojdite v SQL-laboratorij za poizvedovanje nad podatki." + "Test Connection": ["Preizkus povezave"], + "Unsupported clause type: %(clause)s": [ + "Nepodprt tip izraza: %(clause)s" ], - "Create a new chart": ["Ustvarite nov grafikon"], - "Create chart": ["Ustvarite grafikon"], - "Create chart with dataset": ["Ustvarite grafikon s podatkovnim setom"], - "Create dataset": ["Ustvarite podatkovni set"], - "Create dataset and create chart": [ - "Ustvarite podatkovni set in grafikon" + "Invalid metric object: %(metric)s": [ + "Neveljaven objekt mere: %(metric)s" ], - "Create new chart": ["Ustvarite nov grafikon"], - "Create new filter set": ["Ustvarite nov set filtrov"], - "Create or select schema...": ["Ustvarite ali izberite shemo..."], - "Created": ["Ustvarjene"], - "Created by": ["Ustvaril"], - "Created by me": ["Ustvarjeno z moje strani"], - "Created content": ["Ustvarjena vsebina"], - "Created on": ["Ustvarjeno"], - "Creating SSH Tunnel failed for an unknown reason": [ - "Ustvarjanje SSH-tunela ni uspelo zaradi neznanega razloga" + "Unable to find such a holiday: [%(holiday)s]": [ + "Ni mogoče najti takšnega praznika: [%(holiday)s]" ], - "Creating a data source and creating a new tab": [ - "Ustvarjanje podatkovnega vira in novega zavihka" + "DB column %(col_name)s has unknown type: %(value_type)s": [ + "Stolpec %(col_name)s ima neznan tip: %(value_type)s" ], - "Creator": ["Avtor"], - "Crimson": ["Škrlatna"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "Medsebojni filter bo uporabljen za vse grafikone, ki uporabljajo ta podatkovni set." + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "percentili morajo biti tipa list ali tuple z vsaj dvema numeričnima vrednostma, pri čemer je prva manjša od druge" ], - "Cross-filtering is not enabled for this dashboard.": [ - "Medsebojni filtri za to nadzorno ploščo niso omogočeni." + "`compare_columns` must have the same length as `source_columns`.": [ + "`compare_columns` morajo imeti enako dolžino kot `source_columns`." ], - "Cross-filtering is not enabled in this dashboard": [ - "Medsebojni filtri za to nadzorno ploščo niso omogočeni" + "`compare_type` must be `difference`, `percentage` or `ratio`": [ + "`compare_type` mora biti `difference`, `percentage` ali `ratio`" ], - "Cross-filtering scoping": ["Doseg medsebojnih filtrov"], - "Cross-filters": ["Medsebojni filtri"], - "Cumulative": ["Kumulativno"], - "Currency": ["Valuta"], - "Currency format": ["Oblika zapisa valute"], - "Currency prefix or suffix": ["Predpona ali pripona valute"], - "Currency symbol": ["Simbol valute"], - "Currently rendered: %s": ["Trenutno izrisano: %s"], - "Custom": ["Prilagojen"], - "Custom Plugin": ["Prilagojeni vtičnik"], - "Custom Plugins": ["Prilagojeni vtičniki"], - "Custom SQL": ["Prilagojen SQL"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "Ad-hoc SQL mere po meri za ta podatkovni set niso omogočene" + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Stolpec \"%(column)s\" ni numeričen ali ne obstaja v rezultatu poizvedbe." ], - "Custom SQL fields cannot contain sub-queries.": [ - "Prilagojena SQL-polja ne smejo vsebovati podpoizvedb." + "`rename_columns` must have the same length as `columns`.": [ + "`rename_columns` morajo imeti enako dolžino kot `columns`." ], - "Custom time filter plugin": ["Prilagojeni vtičnik za časovni filter"], - "Custom width of the screenshot in pixels": [ - "Poljubna širina zaslonske slike v pikslih" + "Invalid cumulative operator: %(operator)s": [ + "Neveljaven kumulativni operand: %(operator)s" ], - "Customize": ["Prilagodi"], - "Customize Metrics": ["Prilagodi mere"], - "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ - "Prilagodi mere grafikona ali stolpce s predponami ali priponami valute. Izberite simbol ali napišite lastnega." + "Invalid geohash string": ["Neveljaven niz za geohash"], + "Invalid longitude/latitude": ["Neveljavna zemljepisna dolžina/širina"], + "Invalid geodetic string": ["Neveljaven geodetski niz"], + "Pivot operation requires at least one index": [ + "Vrtilna operacija zahteva vsaj en indeks" ], - "Customize columns": ["Prilagodi stolpce"], - "Cyclic dependency detected": ["Zaznana krožna odvisnost"], - "D3 Format": ["D3 format"], - "D3 format": ["D3 format"], - "D3 format syntax: https://github.com/d3/d3-format": [ - "Sintaksa D3 formata: https://github.com/d3/d3-format" + "Pivot operation must include at least one aggregate": [ + "Vrtilna operacija mora vsebovati vsaj en agregat" ], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ - "D3 format zapisa za števila med -1.0 in 1.0. Uporabno, če želite različno število števk za majhna in velika števila" + "`prophet` package not installed": ["Knjižnica `prophet` ni nameščena"], + "Time grain missing": ["Časovna granulacija manjka"], + "Unsupported time grain: %(time_grain)s": [ + "Nepodprta časovna granulacija: %(time_grain)s" ], - "D3 time format for datetime columns": [ - "D3 format zapisa za časovne stolpce" + "Periods must be a whole number": ["Periode morajo biti celo število"], + "Confidence interval must be between 0 and 1 (exclusive)": [ + "Interval zaupanja mora biti med 0 in 1 (odprt)" ], - "D3 time format syntax: https://github.com/d3/d3-time-format": [ - "Sintaksa D3 časovnega formata: https://github.com/d3/d3-time-format" + "DataFrame must include temporal column": [ + "DataFrame mora vsebovati časovni stolpec" ], - "DATETIME": ["DATETIME"], - "DB column %(col_name)s has unknown type: %(value_type)s": [ - "Stolpec %(col_name)s ima neznan tip: %(value_type)s" + "DataFrame include at least one series": [ + "DataFrame vsebuje vsaj eno serijo" ], - "DD/MM format dates, international and European format": [ - "DD/MM oblika datumov, mednarodna ali evropska oblika" + "Label already exists": ["Oznaka že obstaja"], + "Resample operation requires DatetimeIndex": [ + "Prevzorčevalna operacija zahteva indeks tipa datumčas" ], - "DEC": ["DEC"], - "DELETE": ["IZBRIŠI"], - "DML": ["DML"], - "Daily seasonality": ["Dnevna sezonskost"], - "Dark": ["Temno"], - "Dark Cyan": ["Temno sinja"], - "Dark mode": ["Temni način"], - "Dashboard": ["Nadzorna plošča"], - "Dashboard [%s] just got created and chart [%s] was added to it": [ - "Nadzorna plošča [%s] je bila ravno ustvarjena in grafikon [%s] dodan nanjo" + "Resample method should in ": ["Metoda za prevzorčenje v Pandas mora "], + "Undefined window for rolling operation": [ + "Nedefinirano okno za drsečo operacijo" ], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "Nadzorna plošča [{}] je bila ravno ustvarjena in grafikon [{}] dodan nanjo" + "Window must be > 0": ["Okno mora biti > 0"], + "Invalid rolling_type: %(type)s": ["Neveljaven rolling_type: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Neveljavne možnosti za %(rolling_type)s: %(options)s" ], - "Dashboard could not be deleted.": [ - "Nadzorne plošče ni mogoče izbrisati." + "Referenced columns not available in DataFrame.": [ + "Referencirani stolpci niso razpoložljivi v Dataframe-u." ], - "Dashboard could not be updated.": [ - "Nadzorne plošče ni mogoče posodobiti." + "Column referenced by aggregate is undefined: %(column)s": [ + "Stolpec referenciran z agregacijo ni definiran: %(column)s" ], - "Dashboard does not exist": ["Nadzorna plošča ne obstaja"], - "Dashboard imported": ["Nadzorna plošča uvožena"], - "Dashboard parameters are invalid.": [ - "Parametri nadzorne plošče so neveljavni." + "Operator undefined for aggregator: %(name)s": [ + "Operand ni definiran za agregatorja: %(name)s" ], - "Dashboard properties": ["Lastnosti nadzorne plošče"], - "Dashboard properties updated": [ - "Lastnosti nadzorne plošče posodobljene" + "Invalid numpy function: %(operator)s": [ + "Neveljavna numpy funkcija: %(operator)s" ], - "Dashboard scheme": ["Shema nadzorne plošče"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "Filtri časovnega obdobja vplivajo na časovne stolpce, definirane v\n\tfiltrski sekciji vsakega grafikona. Filtrom grafikonov dodajte časovne stolpce,\n\t da bodo filtri nadzorne plošče imeli učinek nanje." + "json isn't valid": ["json ni veljaven"], + "Export to YAML": ["Izvozi v YAML"], + "Export to YAML?": ["Izvozim v YAML?"], + "Delete": ["Izbriši"], + "Delete all Really?": ["Ali resnično vse izbrišem?"], + "Is favorite": ["Je priljubljen"], + "Is tagged": ["Je označen"], + "The data source seems to have been deleted": [ + "Zdi se, da je bil podatkovni vir izbrisan" ], - "Dashboard title": ["Naziv nadzorne plošče"], - "Dashboard usage": ["Uporaba nadzorne plošče"], - "Dashboards": ["Nadzorne plošče"], - "Dashboards added to": ["Dodano na nadzorne plošče"], - "Dashboards could not be created.": [ - "Nadzornih plošč ni mogoče ustvariti." + "The user seems to have been deleted": [ + "Zdi se, da je bil uporabnik izbrisan" ], - "Dashboards do not exist": ["Nadzorna plošča ne obstaja"], - "Dashed": ["Črtkano"], - "Data": ["Podatki"], - "Data Table": ["Tabela podatkov"], - "Data URI is not allowed.": ["URI za podatke ni dovoljen."], - "Data Zoom": ["Zoom funkcija"], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "Podatkov ni bilo mogoče deserializirati iz zalednega sistema rezultatov. Lahko je prišlo do spremembe oblike zapisa. Ponovno zaženite izvorno poizvedbo." + "You don't have the rights to download as csv": [ + "Nimate pravic za prenos csv-ja" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Podatkov ni bilo mogoče pridobiti iz zalednega sistema rezultatov. Ponovno morate zagnati izvorno poizvedbo." + "Error: permalink state not found": [ + "Napaka: stanje povezave ni najdeno" ], - "Data preview": ["Ogled podatkov"], - "Data refreshed": ["Podatki osveženi"], - "Data type": ["Tip podatka"], - "DataFrame include at least one series": [ - "DataFrame vsebuje vsaj eno serijo" + "Error: %(msg)s": ["Napaka: %(msg)s"], + "You don't have the rights to alter this chart": [ + "Nimate pravic za spreminjanje tega grafikona" ], - "DataFrame must include temporal column": [ - "DataFrame mora vsebovati časovni stolpec" + "You don't have the rights to create a chart": [ + "Nimate pravic za ustvarjanje grafikona" ], - "Database": ["Podatkovna baza"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za nalaganje stolpčnih datotek. Kontaktirajte administratorja za Superset." + "Explore - %(table)s": ["Razišči - %(table)s"], + "Explore": ["Raziskovanje"], + "Chart [{}] has been saved": ["Grafikon [{}] je bil shranjen"], + "Chart [{}] has been overwritten": ["Grafikon [{}] je bil prepisan"], + "You don't have the rights to alter this dashboard": [ + "Nimate pravic za spreminjanje te nadzorne plošče" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za nalaganje CSV. Kontaktirajte administratorja za Superset." + "Chart [{}] was added to dashboard [{}]": [ + "Grafikon [{}] je bil dodan na nadzorno ploščo [{}]" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za nalaganje Excel datotek. Kontaktirajte administratorja za Superset." + "You don't have the rights to create a dashboard": [ + "Nimate pravic za ustvarjanje nadzorne plošče" ], - "Database Connections": ["Povezave na podatkovne baze"], - "Database Creation Error": ["Napaka pri ustvarjanju podatkovne baze"], - "Database connected": ["Podatkovna baza povezana"], - "Database could not be created.": [ - "Podatkovne baze ni mogoče ustvariti." + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "Nadzorna plošča [{}] je bila ravno ustvarjena in grafikon [{}] dodan nanjo" ], - "Database could not be deleted.": [ - "Podatkovne baze ni mogoče izbrisati." + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Deformirana zahteva. Pričakovani so argumenti slice_id ali table_name in db_name" ], - "Database could not be updated.": [ - "Podatkovne baze ni mogoče posodobiti." + "Chart %(id)s not found": ["Grafikon %(id)s ni najden"], + "Table %(table)s wasn't found in the database %(db)s": [ + "Tabela %(table)s ni bila najdena v podatkovni bazi %(db)s" ], - "Database does not allow data manipulation.": [ - "Podatkovna baza ne dovoljuje manipulacije podatkov." + "permalink state not found": ["stanje povezave ni najdeno"], + "Show CSS Template": ["Prikaži CSS-predlogo"], + "Add CSS Template": ["Dodaj CSS predlogo"], + "Edit CSS Template": ["Uredi CSS predlogo"], + "Template Name": ["Ime predloge"], + "A human-friendly name": ["Človeku prijazno ime"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Uporablja se za interno identifikacijo vtičnika. Naj bo nastavljeno na ime paketa v vtičnikovem package.json" ], - "Database does not exist": ["Podatkovna baza ne obstaja"], - "Database does not support subqueries": [ - "Podatkovna baza ne podpira podpoizvedb" + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Celoten URL, ki kaže na lokacijo zgrajenega vtičnika (lahko gostuje npr. na CDN)" ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "Gonilnik podatkovne baze za uvoz ni nameščen. Za navodila pojdite na dokumentacijo Superseta: " + "Custom Plugins": ["Prilagojeni vtičniki"], + "Custom Plugin": ["Prilagojeni vtičnik"], + "Add a Plugin": ["Dodaj vtičnik"], + "Edit Plugin": ["Uredi vtičnik"], + "The dataset associated with this chart no longer exists": [ + "Podatkovni set, povezan s tem grafikonom, ne obstaja več" ], - "Database error": ["Napaka podatkovne baze"], - "Database is offline.": ["Podatkovna baza ni povezana."], - "Database is required for alerts": [ - "Podatkovna baza je obvezna za opozorila" + "Could not determine datasource type": [ + "Ni mogoče določiti tipa podatkovnega vira" ], - "Database name": ["Ime podatkovne baze"], - "Database not allowed to change": [ - "Podatkovne baze ni dovoljeno spreminjati" + "Could not find viz object": [ + "Ni mogoče najti vizualizacijskega objekta" ], - "Database not found.": ["Podatkovna baza ni najdena."], - "Database parameters are invalid.": [ - "Parametri podatkovne baze so neveljavni." + "Show Chart": ["Prikaži grafikon"], + "Add Chart": ["Dodaj grafikon"], + "Edit Chart": ["Uredi grafikon"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Ti parametri se ustvarijo dinamično s klikom gumba Shrani ali Prepiši v raziskovalnem pogledu. Ta JSON objekt je prikazan kot vzorec za napredne uporabnike, ki želijo spreminjati posamezne parametre." ], - "Database passwords": ["Gesla podatkovne baze"], - "Database port": ["Vrata podatkovne baze"], - "Database settings updated": ["Nastavitve podatkovne baze posodobljene"], - "Databases": ["Podatkovne baze"], - "Dataframe Index": ["Indeks dataframe-a"], - "Dataset": ["Podatkovni set"], - "Dataset %(name)s already exists": ["Podatkovni set %(name)s že obstaja"], - "Dataset Name": ["Ime podatkovnega seta"], - "Dataset column delete failed.": [ - "Brisanje stolpca podatkovnega seta neuspešno." + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Trajanje (v sekundah) predpomnjenja za ta grafikon. Če ni definirana, je uporabljena vrednost za podatkovni vir/tabelo." ], - "Dataset column not found.": ["Stolpec podatkovnega seta ni najden."], - "Dataset could not be created.": [ - "Podatkovnega niza ni mogoče ustvariti." + "Creator": ["Avtor"], + "Datasource": ["Podatkovni vir"], + "Last Modified": ["Zadnja sprememba"], + "Parameters": ["Parametri"], + "Chart": ["Grafikon"], + "Name": ["Ime"], + "Visualization Type": ["Tip vizualizacije"], + "Show Dashboard": ["Prikaži nadzorno ploščo"], + "Add Dashboard": ["Dodaj nadzorno ploščo"], + "Edit Dashboard": ["Uredi nadzorno ploščo"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Ta JSON objekt opisuje postavitev pripomočkov na nadzorni plošči. Ustvari se dinamično, ko prilagajamo velikost in postavitev pripomočkov z uporabo povleci&spusti v pogledu nadzorne plošče" ], - "Dataset could not be duplicated.": [ - "Podatkovnega niza ni mogoče duplicirati." - ], - "Dataset could not be updated.": [ - "Podatkovnega niza ni mogoče posodobiti." + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "CSS za posamezne nadzorne plošče lahko spreminjamo tukaj ali pa v pogledu nadzorne plošče, kjer so spremembe vidne takoj" ], - "Dataset does not exist": ["Podatkovni set ne obstaja"], - "Dataset imported": ["Podatkovni set uvožen"], - "Dataset is required": ["Zahtevan je podatkovni set"], - "Dataset metric delete failed.": [ - "Brisanje mere podatkovnega seta ni uspelo." + "To get a readable URL for your dashboard": [ + "Za pridobitev berljivega URL-ja za nadzorno ploščo" ], - "Dataset metric not found.": ["Mer podatkovnega seta ni najdena."], - "Dataset name": ["Ime podatkovnega seta"], - "Dataset parameters are invalid.": [ - "Parametri podatkovnega seta so neveljavni." + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Ta JSON objekt se ustvari dinamično s klikom gumba Shrani ali Prepiši v pogledu nadzorne plošče. Tukaj je prikazan kot vzorec za napredne uporabnike, ki želijo spreminjati posamezne parametre." ], - "Dataset schema is invalid, caused by: %(error)s": [ - "Shema podatkovnega seta ni veljavna, zaradi napake: %(error)s" + "Owners is a list of users who can alter the dashboard.": [ + "\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo." ], - "Datasets": ["Podatkovni seti"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "Podatkovni set lahko ustvarite iz tabel podatkovne baze ali s pomočjo SQL-poizvedbe. Izberite tabelo podatkovne baze na levi ali " + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev vloge za dostop do nadzorne plošče bo obšlo preverjanje na nivoju podatkovnega seta. Če vloga ni definirana, bodo veljavna običajna pravila dostopov." ], - "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ - "Podatkovni seti imajo lahko glavni časovni stolpec (main_dttm_col), lahko pa imajo tudi sekundarnega. Če je ta atribut izbran, se hkrati s filtriranjem sekundarnih stolpcev filtrira tudi glavni časovni stolpec." + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Določa ali je nadzorna plošča vidna na seznamu vseh nadzornih plošč" ], - "Datasets could not be deleted.": [ - "Podatkovnih nizov ni mogoče izbrisati." + "Dashboard": ["Nadzorna plošča"], + "Title": ["Naslov"], + "Slug": ["Slug"], + "Roles": ["Vloge"], + "Published": ["Objavljeno"], + "Position JSON": ["JSON za postavitev"], + "CSS": ["CSS"], + "JSON Metadata": ["JSON-metapodatki"], + "Export": ["Izvoz"], + "Export dashboards?": ["Izvozim nadzorne plošče?"], + "CSV Upload": ["Nalaganje CSV"], + "Select a file to be uploaded to the database": [ + "Izberite datoteko, ki bo naložena v podatkovno bazo" ], - "Datasets do not contain a temporal column": [ - "Podatkovni seti ne vsebujejo časovnega stolpca" + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Dovoljene so le naslednje končnice: %(allowed_extensions)s" ], - "Datasource": ["Podatkovni vir"], - "Datasource & Chart Type": ["Tip podatkovnega vira in grafikona"], - "Datasource does not exist": ["Podatkovni vir ne obstaja"], - "Datasource type is invalid": ["Neveljaven tip podatkovnega vira"], - "Datasource type is required when datasource_id is given": [ - "Ko se podaja datasource_id, je potreben tip podatkovnega vira" + "Name of table to be created with CSV file": [ + "Ime tabele, ki bo ustvarjena iz CSV podatkov" ], - "Date Time Format": ["Oblika zapisa za Datum-Čas"], - "Date filter": ["Filter po datumu"], - "Date format": ["Oblika zapisa datuma"], - "Date format string": ["Niz za obliko datuma"], - "Date/Time": ["Datum/Čas"], - "Datetime Format": ["Oblika zapisa datuma,časa"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "Stolpec datum-čas ni podan kot del tabele, čeprav mora biti za ta tip grafikona" + "Table name cannot contain a schema": [ + "Ime tabele ne sme vsebovati sheme" ], - "Datetime format": ["Oblika datum-časa"], - "Day": ["Dan"], - "Day (freq=D)": ["Dan (freq=D)"], - "Day First": ["Dan prvi"], - "Days %s": ["Dnevi %s"], - "Db engine did not return all queried columns": [ - "Sitem podatkovne baze ni vrnil vse stolpcev poizvedbe" + "Select a database to upload the file to": [ + "Izberite podatkovno bazo za nalaganje datoteke" ], - "Deactivate": ["Deaktiviraj"], - "December": ["December"], - "Decides which column to sort the base axis by.": [ - "Odloči, po katerem stolpcu bo razvrščena osnovna os." + "Column Data Types": ["Podatkovni tipi stolpcev"], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "Slovar z imeni in podatkovnimi tipi stolpcev, s pomočjo katerega spremenite privzete nastavitve. Primer: {\"user_id\":\"integer\"}" ], - "Decides which measure to sort the base axis by.": [ - "Odloči, po kateri meri bo razvrščena osnovna os." + "Select a schema if the database supports this": [ + "Izberite shemo (če vrsta podatkovne baze to podpira)" ], - "Decimal Character": ["Decimalno ločilo"], - "Deck.gl - 3D Grid": ["Deck.gl - 3D mreža"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], - "Deck.gl - Arc": ["Deck.gl - lok"], - "Deck.gl - Contour": ["Deck.gl - plastnice"], - "Deck.gl - GeoJSON": ["Deck.gl - GeoJSON"], - "Deck.gl - Heatmap": ["Deck.gl - toplotna karta"], - "Deck.gl - Multiple Layers": ["Deck.gl - večplastni grafikon"], - "Deck.gl - Paths": ["Deck.gl - poti"], - "Deck.gl - Polygon": ["Deck.gl - poligon"], - "Deck.gl - Scatter plot": ["Deck.gl - raztreseni grafikon"], - "Deck.gl - Screen Grid": ["Deck.gl - mreža"], - "Decrease": ["Zmanjšaj"], - "Default": ["Privzeto"], - "Default Endpoint": ["Privzeta končna točka"], - "Default URL": ["Privzeti URL"], - "Default URL to redirect to when accessing from the dataset list page": [ - "Privzeti URL za preusmeritev, ko dostopate iz strani s seznamom podatkovnih setov" + "Delimiter": ["Ločilnik"], + "Enter a delimiter for this data": ["Vnesite ločilnik za te podatke"], + ",": [","], + ".": ["."], + "Other": ["Ostalo"], + "If Table Already Exists": ["Če tabela že obstaja"], + "What should happen if the table already exists": [ + "Kaj naj se zgodi, če tabela že obstaja" ], - "Default Value": ["Privzeta vrednost"], - "Default datetime": ["Privzet datumčas"], - "Default latitude": ["Privzeta širina"], - "Default longitude": ["Privzeta dolžina"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "Privzeta min. širina stolpca v pikslih. Dejanska širina bo lahko večja, če drugi stolpci ne potrebujejo veliko prostora" + "Fail": ["Prekini"], + "Replace": ["Zamenjaj"], + "Append": ["Dodaj"], + "Skip Initial Space": ["Izpusti začetni presledek"], + "Skip spaces after delimiter": ["Izpusti presledke za ločilnikom"], + "Skip Blank Lines": ["Izpusti prazne vrstice"], + "Skip blank lines rather than interpreting them as Not A Number values": [ + "Raje izpusti prazne vrstice, kot pa da so prepoznane kot NaN vrednosti" ], - "Default value is required": ["Zahtevana je privzeta vrednost"], - "Default value must be set when \"Filter has default value\" is checked": [ - "Privzeta vrednost mora biti določena, če je izbrano \"Filter ima privzeto vrednost\"" + "Columns To Be Parsed as Dates": [ + "Stolpci, ki bodo prepoznani kot datumi" ], - "Default value must be set when \"Filter value is required\" is checked": [ - "Privzeta vrednost mora biti določena, če je izbrano \"Vrednost filtra obvezna\"" + "A comma separated list of columns that should be parsed as dates": [ + "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi" ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ - "Privzeta vrednost je samodejno izbrana, če je izbrano \"Prvi element je izbran kot privzet\"" + "Day First": ["Dan prvi"], + "DD/MM format dates, international and European format": [ + "DD/MM oblika datumov, mednarodna ali evropska oblika" ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "Določite funkcijo, ki sprejme vhodne podatke in vrne vsebino opisa orodja" + "Decimal Character": ["Decimalno ločilo"], + "Character to interpret as decimal point": [ + "Znak, ki bo prepoznan kot decimalno ločilo" ], - "Define a function that returns a URL to navigate to when user clicks": [ - "Določite funkcijo, ki vrne URL za navigacijo, ko uporabnik klikne" + "Null Values": ["Prazne (Null) vrednosti"], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: [\"\"] za prazne nize, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna baza Hive podpira le eno vrednost" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "Določite Javascript funkcijo, ki sprejme podatkovni niz za vizualizacijo in vrne spremenjeno verzijo tega niza. Lahko se uporabi za spreminjanje lastnosti podatkov, filtra ali obogatitve niza." + "Index Column": ["Indeksni stolpec"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, če ni indeksnega stolpca" ], - "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ - "Definirajte plastnice. Plastnice predstavljajo nabor črt, ki ločujejo območje nad in pod podano mejo. Površinske plastnice predstavlja nabor poligonov, ki zapolnjujejo področje v določenem obsegu vrednosti." + "Dataframe Index": ["Indeks dataframe-a"], + "Write dataframe index as a column": [ + "Zapiši indeks dataframe-a kot stolpec" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Določi funkcijo drsečega okna. Dela skupaj s tekstovnim okvirjem [Obdobja]" + "Column Label(s)": ["Naslovi stolpcev"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi Dataframe-a obstajajo, se uporabijo imena slednjih" ], - "Defines how each series is broken down": [ - "Določa, kako se vsaka podatkovna serija razčleni" + "Columns To Read": ["Stolpci za branje"], + "Json list of the column names that should be read": [ + "Json seznam imen stolpcev, ki bodo prebrani" ], - "Defines the grid size in pixels": ["Določa velikost mreže v pikslih"], - "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ - "Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno barvo." + "Overwrite Duplicate Columns": ["Prepiši podvojene stolpce"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Če podvojeni stolpci niso izločeni, bodo označeni kot \"X.1, X.2 ...X.x\"" ], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno barvo in ima lahko prikazano legendo" + "Header Row": ["Naslovna vrstica"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). Pustite prazno, če ni naslovne vrstice" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Določi velikost funkcije drsečega okna, glede na izbrano granulacijo časa" + "Rows to Read": ["Vrstice za branje"], + "Number of rows of file to read": ["Število vrstic v datoteki za branje"], + "Skip Rows": ["Izpusti vrstice"], + "Number of rows to skip at start of file": [ + "Število vrstic, ki se izpustijo na začetku datoteke" ], - "Defines the value that determines the boundary between different regions or levels in the data ": [ - "Določa vrednost, ki razmejuje različna področja oziroma nivoje podatkov " + "Name of table to be created from excel data.": [ + "Ime tabele, ki bo ustvarjena iz Excel-ovih podatkov." ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "Določa, če se na začetku, na sredini ali na koncu pojavi stopnica med dvema točkama" + "Excel File": ["Excel-ova datoteka"], + "Select a Excel file to be uploaded to a database.": [ + "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." ], - "Delete": ["Izbriši"], - "Delete %s?": ["Izbrišem %s?"], - "Delete Annotation?": ["Izbrišem oznako?"], - "Delete Database?": ["Izbrišem podatkovno bazo?"], - "Delete Dataset?": ["Izbrišem podatkovni set?"], - "Delete Layer?": ["Izbrišem sloj?"], - "Delete Query?": ["Izbrišem poizvedbo?"], - "Delete Report?": ["Izbrišem poročilo?"], - "Delete Template?": ["Izbrišem predlogo?"], - "Delete all Really?": ["Ali resnično vse izbrišem?"], - "Delete annotation": ["Izbriši oznako"], - "Delete dashboard tab?": ["Ali izbrišem zavihek nadzorne plošče?"], - "Delete database": ["Izbriši podatkovno bazo"], - "Delete email report": ["Izbriši e-poštno poročilo"], - "Delete query": ["Izbriši poizvedbo"], - "Delete template": ["Izbriši predlogo"], - "Delete this container and save to remove this message.": [ - "Izbrišite ta okvir in shranite za odpravo tega sporočila." + "Sheet Name": ["Ime zvezka"], + "Strings used for sheet names (default is the first sheet).": [ + "Znakovni nizi uporabljeni za imena preglednic (privzeto je prva preglednica)." ], - "Deleted": ["Izbrisano"], - "Deleted %(num)d annotation": [ - "Izbrisana je %(num)d oznaka", - "Izbrisani sta %(num)d oznaki", - "Izbrisane so %(num)d oznake", - "Izbrisanih je %(num)d oznak" + "Specify a schema (if database flavor supports this).": [ + "Podajte shemo (če vrsta podatkovne baze to podpira)" ], - "Deleted %(num)d annotation layer": [ - "Izbrisan je %(num)d sloj z oznakami", - "Izbrisana sta %(num)d sloja z oznakami", - "Izbrisanih so %(num)d sloji z oznakami", - "Izbrisanih je %(num)d slojev z oznakami" + "Table Exists": ["Tabela obstaja"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Če tabela obstaja, naj se izvede naslednje: Prekini (ne naredi nič), Zamenjaj (zbriši in ponovno ustvari tabelo) ali Dodaj (vstavi podatke)." ], - "Deleted %(num)d chart": [ - "Izbrisan je %(num)d grafikon", - "Izbrisana sta %(num)d grafikona", - "Izbrisani so %(num)d grafikoni", - "Izbrisanih je %(num)d grafikonov" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). Pustite prazno, če ni naslovne vrstice." ], - "Deleted %(num)d css template": [ - "Izbrisana %(num)d css predloga", - "Izbrisani %(num)d css predlogi", - "Izbrisane %(num)d css predloge", - "Izbrisanih %(num)d css predlog" + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, če ni indeksnega stolpca." ], - "Deleted %(num)d dashboard": [ - "Izbrisana je %(num)d nadzorna plošča", - "Izbrisani sta %(num)d nadzorni plošči", - "Izbrisane so %(num)d nadzorne plošče", - "Izbrisanih je %(num)d nadzornih plošč" + "Number of rows to skip at start of file.": [ + "Število vrstic, ki se izpustijo na začetku datoteke." ], - "Deleted %(num)d dataset": [ - "Izbrisan %(num)d podatkovni set", - "Izbrisana %(num)d podatkovna niza", - "Izbrisani %(num)d podatkovni nizi", - "Izbrisanih %(num)d podatkovnih nizov" - ], - "Deleted %(num)d report schedule": [ - "Izbrisan %(num)d urnik poročanja", - "Izbrisana %(num)d urnika poročanja", - "Izbrisani %(num)d urniki poročanja", - "Izbrisanih %(num)d urnikov poročanja" - ], - "Deleted %(num)d rules": [ - "Izbrisano je %(num)d pravilo", - "Izbrisani sta %(num)d pravili", - "Izbrisana so %(num)d pravila", - "Izbrisanih je %(num)d pravil" - ], - "Deleted %(num)d saved query": [ - "Izbrisana %(num)d shranjena poizvedba", - "Izbrisani %(num)d shranjeni poizvedbi", - "Izbrisane %(num)d shranjene poizvedbe", - "Izbrisanih %(num)d shranjenih poizvedb" + "Number of rows of file to read.": [ + "Število vrstic v datoteki za branje." ], - "Deleted %s": ["Izbrisano %s"], - "Deleted: %s": ["Izbrisano: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "Izbris zavihka bo odstranil vso vsebino v njem. Še vedno boste lahko razveljavili dejanje z" + "Parse Dates": ["Prepoznaj datume"], + "A comma separated list of columns that should be parsed as dates.": [ + "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." ], - "Delimited long & lat single column": [ - "En stolpec z ločenima zemljepisno dolžino in širino" + "Character to interpret as decimal point.": [ + "Znak, ki bo prepoznan kot decimalno ločilo." ], - "Delimiter": ["Ločilnik"], - "Delivery method": ["Način dostave"], - "Demographics": ["Demografija"], - "Density": ["Gostota"], - "Dependent on": ["Odvisen od"], - "Deprecated": ["Zastarelo"], - "Description": ["Opis"], - "Description (this can be seen in the list)": [ - "Opis (viden bo na seznamu)" + "Write dataframe index as a column.": [ + "Zapiši indeks dataframe-a kot stolpec." ], - "Description Columns": ["Stolpci z opisi"], - "Description text that shows up below your Big Number": [ - "Besedilo, ki se prikaže pod veliko številko" + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi Dataframe-a obstajajo, se uporabijo imena indeksov." ], - "Deselect all": ["Počisti izbor"], - "Details": ["Podrobnosti"], - "Details of the certification": ["Podrobnosti certifikacije"], - "Determines how whiskers and outliers are calculated.": [ - "Določa kako so izračunani kvantili in izstopajoče vrednosti." + "Null values": ["Prazne (Null) vrednosti"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna baza Hive podpira le eno vrednost. Uporabite [\"\"] za prazen znakovni niz." ], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Določa ali je nadzorna plošča vidna na seznamu vseh nadzornih plošč" + "Name of table to be created from columnar data.": [ + "Ime tabele, ki bo ustvarjena iz stolpčnih podatkov." ], - "Diamond": ["Karo"], - "Did you mean:": ["Ste mislili:"], - "Difference": ["Razlika"], - "Dim Gray": ["Temno-siva"], - "Dimension": ["Dimenzija"], - "Dimension to use on x-axis.": ["Dimenzija za x-os."], - "Dimension to use on y-axis.": ["Dimenzija za y-os."], - "Dimensions": ["Dimenzije"], - "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ - "Dimenzije vsebujejo vrednosti, kot so imena, datumi ali geografski podatki. Dimenzije uporabite za kategorizacijo, segmentiranje oz. da prikažete podrobnosti podatkov. Dimenzije vplivajo na nivo podrobnosti pogleda." + "Columnar File": ["Stolpčna datoteka"], + "Select a Columnar file to be uploaded to a database.": [ + "Izberite stolpčno datoteko, ki bo naložena v podatkovno bazo." ], - "Directed Force Layout": ["Izgled usmerjene sile"], - "Directional": ["Usmerjeni"], - "Disable SQL Lab data preview queries": [ - "Izključite poizvedbe za predogled podatkov v SQL Laboratoriju" + "Use Columns": ["Uporabi stolpce"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "JSON seznam imen stolpcev, ki morajo biti prebrani. Če ni prazen, bodo iz datoteke prebrani le ti stolpci." ], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "Izključite predogled podatkov pri pridobivanju metapodatkov v SQL laboratoriju. S tem se zmanjša obremenitev brskalnika pri podatkovnih bazah z zelo širokimi tabelami." + "Databases": ["Podatkovne baze"], + "Show Database": ["Prikaži podatkovno bazo"], + "Add Database": ["Dodaj podatkovno bazo"], + "Edit Database": ["Uredi podatkovno bazo"], + "Expose this DB in SQL Lab": [ + "Uporabi to podatkovno bazo v SQL laboratoriju" ], - "Disable embedding?": ["Onemogočite vgrajevanje?"], - "Disabled": ["Onemogočeno"], - "Discard": ["Zavrzi"], - "Discrete": ["Diskretno"], - "Display": ["Prikaz"], - "Display Name": ["Ime za prikaz"], - "Display column level subtotal": [ - "Prikaži delno vsoto na nivoju stolpca" + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Upravljanje podatkovne baze v asinhronem načinu pomeni, da se poizvedbe zaženejo na oddaljenih »delavcih« in ne na samem spletnem strežniku. S tem je predpostavljeno, da imate nastavljenega »delavca« za Celery in zaledni sistem za rezultate. Več informacij je v navodilih za namestitev." ], - "Display column level total": ["Prikaži vsoto na nivoju stolpca"], - "Display configuration": ["Prikaži nastavitve"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ - "Prikazuj mere eno ob drugi ob vsakem stolpcu, drugače je vsak stolpec prikazan en ob drugem za vsako mero." + "Allow CREATE TABLE AS option in SQL Lab": [ + "Dovoli opcijo CREATE TABLE AS v SQL laboratoriju" ], - "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ - "Prikaži procente v oznakah in opisu orodja kot procent celotne vrednosti iz prve vrednosti v lijaku ali prejšnje vrednosti v lijaku." + "Allow CREATE VIEW AS option in SQL Lab": [ + "Dovoli opcijo CREATE VIEW AS v SQL laboratoriju" ], - "Display row level subtotal": ["Prikaži delno vsoto na nivoju vrstice"], - "Display row level total": ["Prikaži vsoto na nivoju vrstice"], - "Display settings": ["Nastavitve prikaza"], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ - "Prikaže povezave med entitetami v strukturi grafa. Uporabno za prikaz razmerij in pomembnih točk v omrežju. Grafikon je lahko krožnega tipa ali z usmerjenimi silami. Če imajo podatki geoprostorsko komponento, poskusite grafikon decl.gl - Arc." + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Dovoli uporabnikom poganjanje ne-SELECT stavkov (UPDATE, DELETE, CREATE, ...) v SQL laboratoriju" ], - "Distribute across": ["Porazdeli glede na"], - "Distribution": ["Porazdelitev"], - "Distribution - Bar Chart": ["Porazdelitev - Stolpčni grafikon"], - "Divider": ["Ločilnik"], - "Do you want a donut or a pie?": ["Želite kolobar ali torto?"], - "Documentation": ["Dokumentacija"], - "Domain": ["Domena"], - "Donut": ["Kolobar"], - "Dotted": ["Pikčasto"], - "Download": ["Prenesi"], - "Download as Image": ["Izvozi kot sliko"], - "Download as image": ["Izvozi kot sliko"], - "Download to CSV": ["Izvozi kot CSV"], - "Draft": ["Osnutek"], - "Drag and drop components and charts to the dashboard": [ - "Povlecite in spustite elemente in grafikone na nadzorno ploščo" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "Z dovolitvijo opcije CREATE TABLE AS v SQL laboratoriju se tabele ustvarjajo s to shemo" ], - "Drag and drop components to this tab": [ - "Povlecite in spustite elemente na zavihek" + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "V primeru Presto se vse poizvedbe v SQL laboratoriju zaženejo pod trenutno prijavljenim uporabnikom, ki mora imeti pravice za poganjanje.
Če je omogočen Hive in hive.server2.enable.doAs, poizvedbe tečejo pod servisnim računom, vendar je trenutno prijavljen uporabnik predstavljen z lastnostjo hive.server2.proxy.user." ], - "Draw a marker on data points. Only applicable for line types.": [ - "Nariši markerje na točke grafikona. Samo za črtne grafikone." + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. Vrednost 0 označuje, da predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima globalno nastavitev." ], - "Draw area under curves. Only applicable for line types.": [ - "Izriši površino pod krivuljo. Samo za črtne grafikone." + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Če je izbrano, nastavite dovoljene sheme za nalaganje CSV v razdelku \"Dodatno\"." ], - "Draw line from Pie to label when labels outside?": [ - "Ali želite črto do oznake, ko so le-te zunaj?" + "Expose in SQL Lab": ["Uporabi v SQL laboratoriju"], + "Allow CREATE TABLE AS": ["Dovoli CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["Dovoli CREATE VIEW AS"], + "Allow DML": ["Dovoli DML"], + "CTAS Schema": ["CTAS shema"], + "SQLAlchemy URI": ["SQLAlchemy URI"], + "Chart Cache Timeout": ["Trajanje predpomnilnika grafikona"], + "Secure Extra": ["Dodatna varnost"], + "Root certificate": ["Korenski certifikat"], + "Async Execution": ["Asinhrono izvajanje"], + "Impersonate the logged on user": [ + "Predstavljaj se kot prijavljeni uporabnik" ], - "Draw split lines for minor axis ticks": [ - "Izriši ločilne črte za pomožne oznake osi" + "Allow Csv Upload": ["Dovoli nalaganje CSV"], + "Backend": ["Zaledni sistem"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Dodatnega polja ni mogoče dekodirati z JSON. %(msg)s" ], - "Draw split lines for minor y-axis ticks": [ - "Izriši ločilne črte za pomožne oznake y-osi" + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Neveljaven niz povezave. Veljaven niz običajno sledi zapisu:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" ], - "Drill by": ["Vrtanje po"], - "Drill by is not available for this data point": [ - "Vrtanje po ni mogoče za to podatkovno točko" + "CSV to Database configuration": [ + "Nastavitve pretvorbe CSV v podatkovno bazo" ], - "Drill by is not yet supported for this chart type": [ - "Vrtanje po še ni podprto za grafikon tega tipa" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za nalaganje CSV. Kontaktirajte administratorja za Superset." ], - "Drill by: %s": ["Vrtanje po: %s"], - "Drill to detail": ["Vrtanje v podrobnosti"], - "Drill to detail by": ["Vrtanje v podrobnosti po"], - "Drill to detail by value is not yet supported for this chart type.": [ - "Vrtanje v podrobnosti po vrednosti še ni podprto za grafikon tega tipa." + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "CSV datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "Vrtanje v podrobnosti je onemogočeno, ker ta grafikon ne združuje podatkov po vrednosti dimenzije." + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "CSV datoteka \"%(csv_filename)s\" naložena v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" ], - "Drill to detail: %s": ["Vrtanje v podrobnosti: %s"], - "Drop a column here or click": [ - "Spustite stolpec sem ali kliknite", - "Spustite stolpce sem ali kliknite", - "Spustite stolpce sem ali kliknite", - "Spustite stolpce sem ali kliknite" - ], - "Drop a column/metric here or click": [ - "Spustite stolpec/mero sem ali kliknite", - "Spustite stolpce/mere sem ali kliknite", - "Spustite stolpce/mere sem ali kliknite", - "Spustite stolpce/mere sem ali kliknite" + "Excel to Database configuration": [ + "Nastavitve pretvorbe Excel v Podatkovno bazo" ], - "Drop a temporal column here or click": [ - "Spustite stolpec sem ali kliknite" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za nalaganje Excel datotek. Kontaktirajte administratorja za Superset." ], - "Drop columns/metrics here or click": [ - "Spustite stolpce/mere sem ali kliknite" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Excel datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" ], - "Duplicate": ["Dupliciraj"], - "Duplicate column name(s): %(columns)s": [ - "Podvojena imena stolpcev: %(columns)s" + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Excel datoteka \"%(excel_filename)s\" naložena v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "Podvojene oznake stolpcev/mer: %(labels)s. Poskrbite, da bodo imeli stolpci in mere unikatne oznake." + "Columnar to Database configuration": [ + "Nastavitve pretvorbe stolpčne oblike v podatkovno bazo" ], - "Duplicate dataset": ["Dupliciraj podatkovni set"], - "Duplicate tab": ["Podvoji zavihek"], - "Duration": ["Trajanje"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ - "Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. Vrednost 0 označuje, da predpomnilnik nikoli ne poteče, -1 pa onemogoči predpomnjenje. V primeru, da ni definirano, ima globalno nastavitev." + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Za nalaganje stolpčnih datotek niso dovoljene različne končnice. Poskrbite, da imajo vse datoteke enake končnice." ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. Vrednost 0 označuje, da predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima globalno nastavitev." + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za nalaganje stolpčnih datotek. Kontaktirajte administratorja za Superset." ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Trajanje (v sekundah) predpomnjenja za ta grafikon. Če ni definirana, je uporabljena vrednost za podatkovni vir/tabelo." + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Stolpčne datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ - "Trajanje (v sekundah) predpomnjenja za ta grafikon. Nastavite na -1, da izključite predpomnjenje. Če ni definirano, je uporabljena vrednost za podatkovni set." + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Stolpčna datoteka \"%(columnar_filename)s\" naložena v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "Trajanje (v sekundah) predpomnjenja za to tabelo. Vrednost 0 označuje, da predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima nastavitev trajanja za podatkovno bazo." + "Request missing data field.": ["Zahtevaj manjkajoča podatkovna polja."], + "Duplicate column name(s): %(columns)s": [ + "Podvojena imena stolpcev: %(columns)s" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Trajanje (v sekundah) predpomnilnika metapodatkov za sheme v tej podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče." + "Logs": ["Dnevniki"], + "Show Log": ["Prikaži dnevnik"], + "Add Log": ["Dodaj dnevnik"], + "Edit Log": ["Uredi dnevnik"], + "User": ["Uporabnik"], + "Action": ["Aktivnost"], + "dttm": ["datum-čas"], + "JSON": ["JSON"], + "Untitled Query": ["Neimenovana poizvedba"], + "Time Range": ["Časovno obdobje"], + "Time Column": ["Časovni stolpec"], + "Time Grain": ["Granulacija časa"], + "Time Granularity": ["Granulacija časa"], + "Time": ["Čas"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Sklic na nastavitve za [Čas], ki upošteva granulacijo" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "Trajanje (v sekundah) predpomnilnika metapodatkov za tabele v tej podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče. " - ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" - ], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ - "Trajanje v ms (100.40008 => 100ms 400µs 80ns)" - ], - "Duration in ms (66000 => 1m 6s)": ["Trajanje v ms (66000 => 1m 6s)"], - "Dynamic Aggregation Function": ["Dinamična agregacijska funkcija"], - "Dynamically search all filter values": [ - "Dinamično poišče vse možnosti filtra" + "Aggregate": ["Agregacija"], + "Raw records": ["Surovi podatki"], + "Category name": ["Ime kategorije"], + "Total value": ["Skupna vsota"], + "Minimum value": ["Minimalna vrednost"], + "Maximum value": ["Maksimalna vrednost"], + "Average value": ["Povprečna vrednost"], + "Certified by %s": ["Certificiral/a %s"], + "description": ["opis"], + "bolt": ["vijak"], + "Changing this control takes effect instantly": [ + "Sprememba tega kontrolnika se odrazi takoj" ], - "ECharts": ["ECharts"], - "EMAIL_REPORTS_CTA": ["EMAIL_REPORTS_CTA"], - "END (EXCLUSIVE)": ["KONEC (NI VKLJUČEN)"], - "ERROR": ["NAPAKA"], - "ERROR: %s": ["NAPAKA: %s"], - "Edge length": ["Dolžina povezave"], - "Edge length between nodes": ["Dolžina povezave med vozlišči"], - "Edge symbols": ["Simboli povezav"], - "Edge width": ["Debelina povezave"], - "Edit": ["Urejanje"], - "Edit Alert": ["Uredi opozorilo"], - "Edit CSS": ["Uredi CSS"], - "Edit CSS Template": ["Uredi CSS predlogo"], - "Edit CSS template properties": ["Uredi lastnosti CSS predloge"], - "Edit Chart": ["Uredi grafikon"], - "Edit Chart Properties": ["Uredi lastnosti grafikona"], - "Edit Column": ["Uredi stolpec"], - "Edit Dashboard": ["Uredi nadzorno ploščo"], - "Edit Database": ["Uredi podatkovno bazo"], - "Edit Dataset ": ["Uredi podatkovni set "], - "Edit Log": ["Uredi dnevnik"], - "Edit Metric": ["Uredi mero"], - "Edit Plugin": ["Uredi vtičnik"], - "Edit Report": ["Uredi poročilo"], - "Edit Rule": ["Uredi pravilo"], - "Edit Table": ["Uredi tabelo"], - "Edit Tag": ["Uredi oznako"], - "Edit annotation": ["Uredi oznako"], - "Edit annotation layer": ["Uredi sloj z oznakami"], - "Edit annotation layer properties": ["Uredi lastnosti sloja z oznakami"], - "Edit chart": ["Uredi grafikon"], - "Edit chart properties": ["Uredi lastnosti grafikona"], - "Edit dashboard": ["Uredi nadzorno ploščo"], - "Edit database": ["Uredi podatkovno bazo"], - "Edit dataset": ["Uredi podatkovni set"], - "Edit email report": ["Uredi e-poštno poročilo"], - "Edit formatter": ["Uredi oblikovanje"], - "Edit properties": ["Uredi lastnosti"], - "Edit query": ["Uredi poizvedbo"], - "Edit template": ["Uredi predlogo"], - "Edit template parameters": ["Uredi parametre predloge"], - "Edit the dashboard": ["Uredi nadzorno ploščo"], - "Edit time range": ["Uredi časovno obdobje"], - "Edited": ["Urejeno"], - "Editing 1 filter:": ["Urejanje enega filtra:"], - "Editing filter set:": ["Urejanje seta filtrov:"], - "Either the database is spelled incorrectly or does not exist.": [ - "Ime podatkovne baze je zapisano napačno ali pa ne obstaja." + "Show info tooltip": ["Prikaži opis orodja"], + "SQL expression": ["SQL-izraz"], + "Column datatype": ["Podatkovni tipi stolpcev"], + "Column name": ["Ime stolpca"], + "Label": ["Naziv"], + "Metric name": ["Ime mere"], + "unknown type icon": ["ikona neznanega tipa"], + "function type icon": ["ikona funkcijskega tipa"], + "string type icon": ["ikona znakovnega tipa"], + "numeric type icon": ["ikona numeričnega tipa"], + "boolean type icon": ["ikona binarnega tipa"], + "temporal type icon": ["ikona časovnega tipa"], + "Advanced analytics": ["Napredna analitika"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Ta sekcija vsebuje možnosti, ki omogočajo napredno analitično poprocesiranje rezultatov poizvedb" ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "Uporabniško ime \"%(username)s\" ali geslo sta napačna." + "Rolling window": ["Drseče okno"], + "Rolling function": ["Drseča funkcija"], + "None": ["Brez"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Določi funkcijo drsečega okna. Dela skupaj s tekstovnim okvirjem [Obdobja]" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "Uporabniško ime \"%(username)s\", geslo ali ime podatkovne baze \"%(database)s\" so napačni." + "Periods": ["Št. period"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Določi velikost funkcije drsečega okna, glede na izbrano granulacijo časa" ], - "Either the username or the password is wrong.": [ - "Uporabniško ime ali/in geslo sta napačna." + "Min periods": ["Min. št. period"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Minimalno število drsečih obdobij, potrebnih za prikaz vrednosti. Če računate kumulativno vsoto 7-dnevnega obdobja, boste nastavili \"Min. št. period\" na 7. Tako bodo vse prikazane točke skupaj obsegale 7 obdobij. To bo prikrilo rampo, ki bi trajala prvih 7 obdobij" ], - "Elevation": ["Višina"], - "Email reports active": ["E-poštna poročila aktivna"], - "Embed": ["Vgradi"], - "Embed code": ["Koda za vgradnjo"], - "Embed dashboard": ["Vgradi nadzorno ploščo"], - "Embedding deactivated.": ["Vgrajevanje deaktivirano."], - "Emit Filter Events": ["Oddajaj dogodke filtrov"], - "Emphasis": ["Poudari"], - "Employment and education": ["Zaposlitev in izobrazba"], - "Empty circle": ["Prazen krog"], - "Empty collection": ["Prazen izbor"], - "Empty column": ["Prazen stolpec"], - "Empty query result": ["Rezultat prazne poizvedbe"], - "Empty query?": ["Prazna poizvedba?"], - "Empty row": ["Prazna vrstica"], - "Enable 'Allow file uploads to database' in any database's settings": [ - "Omogoči 'Dovoli nalaganje podatkov' v nastavitvah vseh podatkovnih baz" + "Time comparison": ["Časovna primerjava"], + "Time shift": ["Časovni zamik"], + "1 day ago": ["1 day ago"], + "1 week ago": ["1 week ago"], + "28 days ago": ["28 days ago"], + "30 days ago": ["30 days ago"], + "52 weeks ago": ["52 weeks ago"], + "1 year ago": ["1 year ago"], + "104 weeks ago": ["104 weeks ago"], + "2 years ago": ["2 years ago"], + "156 weeks ago": ["156 weeks ago"], + "3 years ago": ["3 years ago"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša se relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 hours, 7 days, 52 weeks, 365 days). Prosto besedilo je podprto." ], - "Enable Filter Select": ["Omogoči izbiro filtra"], - "Enable cross-filtering": ["Omogoči medsebojne filtre"], - "Enable data zooming controls": [ - "Omogoči kontrolnik za povečavo podatkov" + "Calculation type": ["Tip izračuna"], + "Actual values": ["Dejanske vrednosti"], + "Difference": ["Razlika"], + "Percentage change": ["Procentualna sprememba"], + "Ratio": ["Razmerje"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Način prikaza časovnih zamikov: kot samostojne črte; kot razlike med osnovno časovno vrsto in vsakim časovnim zamikom; kot procentualna sprememba; kot razmerje med vrsto in časovnim zamikom." ], - "Enable embedding": ["Omogoči vgrajevanje"], + "Resample": ["Prevzorči"], + "Rule": ["Pravilo"], + "1 minutely frequency": ["frekvenca: 1 minuta"], + "1 hourly frequency": ["frekvenca: 1 ura"], + "1 calendar day frequency": ["frekvenca: 1 koledarski dan"], + "7 calendar day frequency": ["frekvenca: 7 koledarskih dni"], + "1 month start frequency": ["frekvenca: 1 mesec - začetek"], + "1 month end frequency": ["frekvenca: 1 mesec - konec"], + "1 year start frequency": ["frekvenca: 1 leto - začetek"], + "1 year end frequency": ["frekvenca: 1 leto - konec"], + "Pandas resample rule": ["Pravilo za prevzorčenje v Pandas"], + "Fill method": ["Način polnjenja"], + "Null imputation": ["Nadomeščanje Null-vrednosti"], + "Zero imputation": ["Nadomeščanje ničel"], + "Linear interpolation": ["Linearna interpolacija"], + "Forward values": ["Prihodnje vrednosti"], + "Backward values": ["Prejšnje vrednosti"], + "Median values": ["Mediane"], + "Mean values": ["Srednje vrednosti"], + "Sum values": ["Vsote"], + "Pandas resample method": ["Metoda za prevzorčenje v Pandas"], + "Annotations and Layers": ["Oznake in sloji"], + "Left": ["Levo"], + "Top": ["Zgoraj"], + "Chart Title": ["Naslov grafikona"], + "X Axis": ["X-os"], + "X Axis Title": ["Naslov X-osi"], + "X AXIS TITLE BOTTOM MARGIN": ["SPODNJA OBROBA NASLOVA X-OSI"], + "Y Axis": ["Y-os"], + "Y Axis Title": ["Naslov Y-osi"], + "Y Axis Title Margin": ["Rob naslova Y-osi"], + "Y Axis Title Position": ["Položaj naslova Y-osi"], + "Query": ["Poizvedba"], + "Predictive Analytics": ["Prediktivna analitika"], "Enable forecast": ["Omogoči napoved"], "Enable forecasting": ["Omogoči napovedovanje"], - "Enable graph roaming": ["Omogoči preoblikovanje grafikona"], - "Enable node dragging": ["Omogoči premikanje vozlišč"], - "Enable query cost estimation": [ - "Omogoči ocenjevanje potratnosti poizvedbe" - ], - "Enable row expansion in schemas": ["Omogoči razširitev vrstic v shemah"], - "Enable server side pagination of results (experimental feature)": [ - "Omogoči številčenje strani rezultatov na strani strežnika (preizkusna funkcija)" - ], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "Prišlo je do neveljavnega NULL prostorskega vnosa, poskusite ga izločiti s filtrom" + "Forecast periods": ["Periode napovedi"], + "How many periods into the future do we want to predict": [ + "Za koliko period v prihodnosti želite napoved" ], - "End": ["Konec"], - "End (Longitude, Latitude): ": ["Konec (zemljepisna dolžina, širina): "], - "End Longitude & Latitude": ["Končna Dolž. in Širina"], - "End angle": ["Končni kot"], - "End date": ["Končni datum"], - "End date excluded from time range": [ - "Končni datum ni vključen v časovno obdobje" + "Confidence interval": ["Interval zaupanja"], + "Width of the confidence interval. Should be between 0 and 1": [ + "Širina intervala zaupanja. Mora bit med 0 in 1" ], - "End date must be after start date": [ - "Končni datum mora biti za začetnim" + "Yearly seasonality": ["Letna sezonskost"], + "default": ["privzeto"], + "Yes": ["Da"], + "No": ["Ne"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Če želite letno sezonskost. Celo število določa Fourier-jev red sezonskosti." ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "Podatkovne baze tipa \"%(engine)s\" ni mogoče konfigurirati s parametri." + "Weekly seasonality": ["Tedenska sezonskost"], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Če želite tedensko sezonskost. Celo število določa Fourier-jev red sezonskosti." ], - "Engine Parameters": ["Parametri podatkovne baze"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ - "Specifikacija baze \"InvalidEngine\" ne podpira konfiguracije s posameznimi parametri." + "Daily seasonality": ["Dnevna sezonskost"], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Če želite dnevno sezonskost. Celo število določa Fourier-jev red sezonskosti." ], - "Enter CA_BUNDLE": ["Vnesite CA_BUNDLE"], - "Enter Primary Credentials": ["Vnesite primarne vpisne podatke"], - "Enter a delimiter for this data": ["Vnesite ločilnik za te podatke"], - "Enter a name for this sheet": ["Vnesite ime te preglednice"], - "Enter a new title for the tab": ["Vnesite novo naslov zavihka"], - "Enter duration in seconds": ["Vnesite trajanje v sekundah"], - "Enter fullscreen": ["Vklopi celozaslonski način"], - "Enter the required %(dbModelName)s credentials": [ - "Vnesite potrebne %(dbModelName)s vpisne podatke" + "Time related form attributes": ["S časom povezani atributi prikaza"], + "Datasource & Chart Type": ["Tip podatkovnega vira in grafikona"], + "Chart ID": ["ID grafikona"], + "The id of the active chart": ["Identifikator aktivnega grafikona"], + "Cache Timeout (seconds)": ["Trajanje predpomnilnika (sekunde)"], + "The number of seconds before expiring the cache": [ + "Trajanje (v sekundah) do razveljavitve predpomnilnika" ], - "Entity": ["Entiteta"], - "Entity ID": ["ID-entitete"], - "Equal Date Sizes": ["Enaki datumi"], - "Equal to (=)": ["Je enako (=)"], - "Error": ["Napaka"], - "Error Fetching Tagged Objects": [ - "Pri pridobivanju označenih elementov je prišlo do napake" + "URL Parameters": ["Parametri URL"], + "Extra url parameters for use in Jinja templated queries": [ + "Dodatni parametri za poizvedbe z Jinja predlogami" ], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Napaka v jinja izrazu HAVING stavka: %(msg)s" + "Extra Parameters": ["Dodatni parametri"], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Dodatni parametri, ki jih lahko uporabi kateri koli vtičnik za poizvedbe z Jinja predlogami" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Napaka v jinja izrazu RLS filtrov: %(msg)s" - ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Napaka v jinja izrazu WHERE stavka: %(msg)s" + "Color Scheme": ["Barvna shema"], + "Contribution Mode": ["Način prikaza deležev"], + "Row": ["Vrstica"], + "Series": ["Serije"], + "Calculate contribution per series or row": [ + "Izračunaj delež za serijo ali vrstico" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Napaka v jinja izrazu za pridobivanje vrednosti predikatov: %(msg)s" + "Y-Axis Sort By": ["\"Razvrsčanje po\" za Y-os"], + "X-Axis Sort By": ["\"Razvrsčanje po\" za X-os"], + "Decides which column to sort the base axis by.": [ + "Odloči, po katerem stolpcu bo razvrščena osnovna os." ], - "Error loading chart datasources. Filters may not work correctly.": [ - "Napaka pri nalaganju podatkovnih virov grafikona. Filtri lahko ne delujejo pravilno." + "Y-Axis Sort Ascending": ["Razvrsti Y-os naraščajoče"], + "X-Axis Sort Ascending": ["Razvrsti X-os naraščajoče"], + "Whether to sort ascending or descending on the base Axis.": [ + "Če želite padajoče ali naraščajoče razvrščanje na osnovni osi." ], - "Error message": ["Sporočilo napake"], - "Error saving dataset": [ - "Pri shranjevanju podatkovnega seta je prišlo do napake" + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [ + "Odloči, po kateri meri bo razvrščena osnovna os." ], - "Error while fetching charts": ["Napaka pri pridobivanju grafikonov"], - "Error while fetching data: %s": ["Napaka pri pridobivanju podatkov: %s"], - "Error while rendering virtual dataset query: %(msg)s": [ - "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s" + "Dimensions": ["Dimenzije"], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "Dimenzije vsebujejo vrednosti, kot so imena, datumi ali geografski podatki. Dimenzije uporabite za kategorizacijo, segmentiranje oz. da prikažete podrobnosti podatkov. Dimenzije vplivajo na nivo podrobnosti pogleda." ], - "Error: %(error)s": ["Napaka: %(error)s"], - "Error: %(msg)s": ["Napaka: %(msg)s"], - "Error: permalink state not found": [ - "Napaka: stanje povezave ni najdeno" + "Add dataset columns here to group the pivot table columns.": [ + "Dodaj stolpce podatkovnega seta za združevanje stolpcev vrtilne tabele." ], - "Estimate cost": ["Oceni potratnost"], - "Estimate selected query cost": ["Oceni potratnost izbrane poizvedbe"], - "Estimate the cost before running a query": [ - "Oceni potratnost pred zagonom poizvedbe" + "Dimension": ["Dimenzija"], + "Defines the grouping of entities. Each series is represented by a specific color in the chart.": [ + "Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno barvo." ], - "Event": ["Dogodek"], - "Event Flow": ["Potek dogodkov"], - "Event Names": ["Imena dogodkov"], - "Event definition": ["Definicija dogodka"], - "Event flow": ["Potek dogodkov"], - "Event time column": ["Stolpec časa dogodka"], - "Every": ["Vsak"], - "Evolution": ["Evolucija"], - "Exact": ["Natančno"], - "Example": ["Primer"], - "Examples": ["Vzorci"], - "Excel File": ["Excel-ova datoteka"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Excel datoteka \"%(excel_filename)s\" naložena v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" + "Entity": ["Entiteta"], + "This defines the element to be plotted on the chart": [ + "Določa element, ki bo izrisan na grafikonu" ], - "Excel to Database configuration": [ - "Nastavitve pretvorbe Excel v Podatkovno bazo" + "Filters": ["Filtri"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "Izberite eno ali več mer za prikaz. Uporabite lahko agregacijsko funkcijo ali napišete poljuben SQL-izraz za mero." ], - "Exclude selected values": ["Izloči izbrane vrednosti"], - "Excluded roles": ["Izključene vloge"], - "Executed SQL": ["Izvedena poizvedba"], - "Executed query": ["Zagnana poizvedba"], - "Execution ID": ["ID izvedbe"], - "Execution log": ["Dnevnik izvajanja"], - "Existing dataset": ["Obstoječ podatkovni set"], - "Exit fullscreen": ["Izhod iz celozaslonskega načina"], - "Expand": ["Razširi"], - "Expand all": ["Razširi vse"], - "Expand data panel": ["Razširi podatkovni panel"], - "Expand row": ["Razširi vrstico"], - "Expand table preview": ["Odpri predogled tabele"], - "Expand tool bar": ["Razširi orodno vrstico"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "Pričakovana je formula z odvisnim časovnim parametrom 'x'\n v milisekundah od epohe. Za vrednotenje formule je uporabljen mathjs.\n Primer: '2x +5'" + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "Izberite mero za prikaz. Uporabite lahko agregacijsko funkcijo na stolpcu ali napišete poljuben SQL-izraz za mero." ], - "Experimental": ["Eksperimentalno"], - "Explore": ["Raziskovanje"], - "Explore - %(table)s": ["Razišči - %(table)s"], - "Explore the result set in the data exploration view": [ - "Raziščite rezultate v pogledu za raziskovanje podatkov" + "Right Axis Metric": ["Mera desne osi"], + "Select a metric to display on the right axis": [ + "Izberite mero za prikaz na desni osi" ], - "Export": ["Izvoz"], - "Export dashboards?": ["Izvozim nadzorne plošče?"], - "Export query": ["Izvozi poizvedbe"], - "Export to .CSV": ["Izvozi v .CSV"], - "Export to .JSON": ["Izvozi v .JSON"], - "Export to Excel": ["Izvozi v Excel"], - "Export to PDF": ["Izvozi v PDF"], - "Export to YAML": ["Izvozi v YAML"], - "Export to YAML?": ["Izvozim v YAML?"], - "Export to full .CSV": ["Izvozi v celoten .CSV"], - "Export to full Excel": ["Izvozi v celoten Excel"], - "Export to original .CSV": ["Izvozi v izvorni .CSV"], - "Export to pivoted .CSV": ["Izvozi v vrtilni .CSV"], - "Expose database in SQL Lab": [ - "Razkrij podatkovno bazo v SQL laboratoriju" + "Sort by": ["Razvrščanje po"], + "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ + "Mera, ki določa kako so razvrščene vrstice, če je določena omejitev serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." ], - "Expose in SQL Lab": ["Uporabi v SQL laboratoriju"], - "Expose this DB in SQL Lab": [ - "Uporabi to podatkovno bazo v SQL laboratoriju" + "Bubble Size": ["Velikost mehurčka"], + "Metric used to calculate bubble size": [ + "Mera za izračun velikosti mehurčkov" ], - "Expression": ["Izraz"], - "Extra": ["Dodatno"], - "Extra Controls": ["Dodatni kontrolniki"], - "Extra Parameters": ["Dodatni parametri"], - "Extra data for JS": ["Dodatni podatki za JS"], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "Dodatni podatki za tabelo metapodatkov. Trenutno je podprta naslednja oblika zapisa metapodatkov: `{ \"certification\": { \"certified_by\": \"Tim za razvoj\", \"details\": \"Ta tabela je vir resnice.\" }, \"warning_markdown\": \"To je opozorilo.\" }`." + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "Stolpec/mera podatkovnega seta, ki vrne vrednosti za x-os grafikona." ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Dodatnega polja ni mogoče dekodirati z JSON. %(msg)s" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "Stolpec/mera podatkovnega seta, ki vrne vrednosti za y-os grafikona." ], - "Extra parameters for use in jinja templated queries": [ - "Dodatni parametri za poizvedbe z jinja predlogami" + "Color Metric": ["Mera za barvo"], + "A metric to use for color": ["Mera za barvo"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Časovni stolpec za vizualizacijo. Določite lahko poljuben izraz, ki vrne DATETIME stolpec v tabeli. Spodnji filter se nanaša na ta stolpec ali izraz" ], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ - "Dodatni parametri, ki jih lahko uporabi kateri koli vtičnik za poizvedbe z Jinja predlogami" + "Drop a temporal column here or click": [ + "Spustite stolpec sem ali kliknite" ], - "Extra url parameters for use in Jinja templated queries": [ - "Dodatni parametri za poizvedbe z Jinja predlogami" + "Y-axis": ["Y-os"], + "Dimension to use on y-axis.": ["Dimenzija za y-os."], + "X-axis": ["X-os"], + "Dimension to use on x-axis.": ["Dimenzija za x-os."], + "The type of visualization to display": ["Tip vizualizacije za prikaz"], + "Fixed Color": ["Fiksna barva"], + "Use this to define a static color for all circles": [ + "S tem definirate določeno barvo za vse kroge" ], - "Extruded": ["Relief"], - "FEB": ["FEB"], - "FRI": ["PET"], - "Factor": ["Faktor"], - "Factor to multiply the metric by": ["Faktor, s katerim množite mero"], - "Fail": ["Prekini"], - "Failed": ["Ni uspelo"], - "Failed at retrieving results": ["Napaka pri pridobivanju rezultatov"], - "Failed at stopping query. %s": ["Neuspešno ustavljanje poizvedbe. %s"], - "Failed to create report": ["Ustvarjanje poročila nesupešno"], - "Failed to execute %(query)s": ["Neuspešno izvajanje %(query)s"], - "Failed to generate chart edit URL": [ - "Neuspešno ustvarjanje URL za urejanje grafikona" + "Linear Color Scheme": ["Linearna barvna shema"], + "all": ["vsi"], + "5 seconds": ["5 seconds"], + "30 seconds": ["30 seconds"], + "1 minute": ["1 minuta"], + "5 minutes": ["5 minutes"], + "30 minutes": ["30 minutes"], + "1 hour": ["1 ura"], + "1 day": ["1 dan"], + "7 days": ["7 days"], + "week": ["teden"], + "week starting Sunday": ["teden z začetkom v nedeljo"], + "week ending Saturday": ["teden s koncem v soboto"], + "month": ["mesec"], + "quarter": ["četrtletje"], + "year": ["leto"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim jezikom, kot npr. `10 sekund`, `1 dni` ali `56 tednov`" ], - "Failed to load chart data": ["Neuspešno nalaganje podatkov grafikona"], - "Failed to load chart data.": ["Neuspešno nalaganje podatkov grafikona."], - "Failed to load dimensions for drill by": [ - "Neuspešno nalaganje dimenzij za \"Vrtanje po\"" + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ + "Izberite časovno granulacijo prikaza. Granulacija predstavlja časovni interval med točkami na grafikonu." ], - "Failed to retrieve advanced type": [ - "Napaka pri pridobivanju naprednega tipa" + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Ta kontrolnik filtrira celoten grafikon glede na izbrano časovno obdobje. Vsi relativni časi (npr. Zadnji mesec, Zdaj, itd.) so izračunani glede na lokalni čas strežnika (časovni pas ni upoštevan). Vsi opisi orodij in časovne oznake so izražene kot UTC. Časovne značke so potem določene glede na lokalni čas podatkovne baze. Eksplicitno lahko določite časovni pas v ISO 8601 formatu, če določite začetni in/ali končni čas." ], - "Failed to save cross-filter scoping": [ - "Shranjevanje dosega medsebojnega filtra ni uspelo" + "Row limit": ["Omejitev števila vrstic"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "Omeji število vrstic, ki se izračunajo v poizvedbi, ki je vir podatkov za ta grafikon." ], - "Failed to start remote query on a worker.": [ - "Na delavcu ni bilo mogoče zagnati oddaljene poizvedbe." + "Sort Descending": ["Razvrsti padajoče"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "Če je omogočeno, so vrednosti razvrščene padajoče, drugače pa naraščajoče." ], - "Failed to tag items": ["Napaka pri označevanju elementov"], - "Failed to update report": ["Posodabljanje poročila neuspešno"], - "Failed to verify select options: %s": [ - "Preverjanje možnosti izbire ni uspelo: %s" + "Series limit": ["Omejitev števila serij"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Omeji število časovnih vrst za prikaz. S podpoizvedbo (ali dodatno fazo, kjer podpoizvedbe niso podprte) se omeji število časovnih vrst, ki bodo pridobljene za prikaz. Ta funkcija je uporabna pri združevanju s stolpci z veliko kardinalnostjo, vendar poveča kompleksnost poizvedbe." ], - "Favorite": ["Priljubljene"], - "Favorites": ["Priljubljene"], - "February": ["Februar"], - "Fetch Values Predicate": ["Pridobi vrednosti predikatov"], - "Fetch data preview": ["Pridobi predogled podatkov"], - "Fetched %s": ["Pridobljeno %s"], - "Fetching": ["Pridobivam"], - "Field cannot be decoded by JSON. %(json_error)s": [ - "Polja ni mogoče dekodirati z JSON. %(json_error)s" + "Y Axis Format": ["Oblika Y-osi"], + "Currency format": ["Oblika zapisa valute"], + "Time format": ["Oblika zapisa časa"], + "The color scheme for rendering chart": [ + "Barvna shema za izris grafikona" ], - "Field cannot be decoded by JSON. %(msg)s": [ - "Polja ni mogoče dekodirati z JSON. %(msg)s" + "Truncate Metric": ["Odstrani mero"], + "Whether to truncate metrics": ["Če želite odstraniti naziv mere"], + "Show empty columns": ["Prikaži prazne stolpce"], + "D3 format syntax: https://github.com/d3/d3-format": [ + "Sintaksa D3 formata: https://github.com/d3/d3-format" ], - "Field is required": ["Polje je obvezno"], - "File": ["Datoteka"], - "File size must be less than or equal to %(max_size)s bytes": [ - "Velikost datoteke mora biti manjša ali enaka %(max_size)s bajtov" + "Only applies when \"Label Type\" is set to show values.": [ + "Veljavno samo, ko je izbran \"Tip oznake\" za prikaz vrednosti." ], - "Fill Color": ["Barva polnila"], - "Fill all required fields to enable \"Default Value\"": [ - "Izpolnite vsa polja, da omogočite \"Privzeto vrednost\"" + "Only applies when \"Label Type\" is not set to a percentage.": [ + "Veljavno samo, ko \"Tip oznake\" ni procent." ], - "Fill method": ["Način polnjenja"], - "Filled": ["Zapolnjeno"], - "Filter": ["Filter"], - "Filter Configuration": ["Nastavitve filtra"], - "Filter List": ["Seznam filtrov"], - "Filter Settings": ["Nastavitve filtra"], - "Filter Type": ["Tip filtra"], - "Filter box (legacy)": ["Filter box (zastarelo)"], - "Filter charts": ["Filtriraj grafikone"], - "Filter configuration": ["Nastavitve filtra"], - "Filter configuration for the filter box": ["Nastavitve za polje filtra"], - "Filter has default value": ["Filter ima privzeto vrednost"], - "Filter menu": ["Filtriraj meni"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Metapodatki filtra so se spremenili v nadzorni plošči. Ne bo uveljavljen." + "Adaptive formatting": ["Prilagodljiva oblika"], + "Original value": ["Izvorna vrednost"], + "Duration in ms (66000 => 1m 6s)": ["Trajanje v ms (66000 => 1m 6s)"], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" ], - "Filter name": ["Ime filtra"], - "Filter only displays values relevant to selections made in other filters.": [ - "Filter prikazuje samo vrednosti vezane na izbire v drugih filtrih." + "D3 time format syntax: https://github.com/d3/d3-time-format": [ + "Sintaksa D3 časovnega formata: https://github.com/d3/d3-time-format" ], - "Filter results": ["Filtriraj rezultate"], - "Filter set already exists": ["Set filtrov že obstaja"], - "Filter set with this name already exists": [ - "Set filtrov z enakim imenom že obstaja" + "Oops! An error occurred!": ["Prišlo je do napake!"], + "Stack Trace:": ["Izpis napake:"], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Poizvedba ni vrnila rezultatov. Če ste pričakovali rezultate, poskrbite, da so filtri pravilno nastavljeni in podatkovni vir vsebuje podatke za izbrano časovno obdobje." ], - "Filter sets (%(filterSetCount)d)": [ - "Nastavljeni filtri (%(filterSetCount)d)" + "No Results": ["Ni rezultatov"], + "ERROR": ["NAPAKA"], + "Found invalid orderby options": [ + "Najdene so neveljavne možnosti razvrščanja" ], - "Filter type": ["Tip filtra"], - "Filter value (case sensitive)": [ - "Vrednost filtra (razlik. velikih/malih črk)" + "is expected to be an integer": ["pričakovano je celo število"], + "is expected to be a number": ["pričakovano je število"], + "is expected to be a Mapbox URL": ["mora biti URL za Mapbox"], + "Value cannot exceed %s": ["Vrednost ne sme presegati %s"], + "cannot be empty": ["ne sme biti prazno"], + "Domain": ["Domena"], + "hour": ["ura"], + "day": ["dan"], + "The time unit used for the grouping of blocks": [ + "Časovna enota za združevanje blokov" ], - "Filter value is required": ["Vrednost filtra je obvezna"], - "Filter value list cannot be empty": [ - "Seznam vrednosti filtra ne sme biti prazen" + "Subdomain": ["Poddomena"], + "min": ["min"], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Časovna enota za vsak blok. Mora biti manjša enota kot domenska_granulacija. Mora biti večja ali enaka Granulaciji časa" ], - "Filter your charts": ["Filtriraj grafikone"], - "Filterable": ["Filtriranje"], - "Filters": ["Filtri"], - "Filters (%d)": ["Filtri (%d)"], - "Filters by columns": ["Filtrira po stolpcu"], - "Filters by metrics": ["Filtrira po merah"], - "Filters configuration": ["Nastavitve filtrov"], - "Filters out of scope (%d)": ["Filtri izven dosega (%d)"], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ - "Filtri z enakim skupinskim ključem bodo znotraj skupine združeni z OR funkcijo, medtem ko bodo različne skupine združene z AND funkcijo. Nedefinirani skupinski ključi so obravnavani kot unikatne skupine in niso združeni v svojo skupino. Npr., če ima tabela tri filtre, pri čemer sta dva za oddelka marketinga in financ (skupinski ključ = 'oddelek') tretji pa se nanaša na regijo Evropa (skupinski ključ = 'regija'), bo filtrski izraz (oddelek = 'Finance' OR oddelek = 'Marketing') AND (regija = 'Evropa')." + "Chart Options": ["Možnosti grafikona"], + "Cell Size": ["Velikost celice"], + "The size of the square cell, in pixels": [ + "Velikost kvadratne celice v pikslih" ], - "Find": ["Najdi"], - "Finish": ["Zaključi"], - "First": ["Prvi"], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "Trendna črta za celotno izbrano obdobje, v primeru, da filtrirani rezultati ne vsebujejo začetnega ali končnega datuma" + "Cell Padding": ["Razmak med celicami"], + "The distance between cells, in pixels": [ + "Razdalja med celicami v pikslih" ], - "Fix to selected Time Range": ["Za celotno časovno obdobje"], - "Fixed": ["Fiksno"], - "Fixed Color": ["Fiksna barva"], - "Fixed color": ["Izbrana barva"], - "Fixed point radius": ["Fiksni radij točk"], - "Flow": ["Potek"], - "Font size": ["Velikost pisave"], - "Font size for axis labels, detail value and other text elements": [ - "Velikost pisave za oznake osi, podrobnosti in druge besedilne elemente" + "Cell Radius": ["Zaobljenost celice"], + "The pixel radius": ["Polmer v pikslih"], + "Color Steps": ["Barvni koraki"], + "The number color \"steps\"": ["Število barvnih korakov"], + "Time Format": ["Oblika zapisa časa"], + "Legend": ["Legenda"], + "Whether to display the legend (toggles)": [ + "Preklapljanje prikaza legende" ], - "Font size for the biggest value in the list": [ - "Velikost pisave za največjo vrednost na seznamu" + "Show Values": ["Prikaži vrednosti"], + "Whether to display the numerical values within the cells": [ + "Če želite v celicah prikazati numerične vrednosti" ], - "Font size for the smallest value in the list": [ - "Velikost pisave za najmanjšo vrednost na seznamu" + "Show Metric Names": ["Prikaži imena mer"], + "Whether to display the metric name as a title": [ + "Če želite prikazati ime mere kot naslov" ], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "Za Bigquery, Presto in Postgres prikaže gumb za izračun potratnosti pred zagonom poizvedbe." + "Number Format": ["Oblika zapisa števila"], + "Correlation": ["Korelacija"], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Prikaže kako se je mera spreminjala s časom s pomočjo barvne lestvice in koledarskega pogleda. Sive vrednosti ponazarjajo manjkajoče vrednosti. Amplituda dnevnih vrednosti je ponazorjena z linearno barvno shemo." ], - "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ - "Za Trino opiši celotno shemo gnezdenih tipov vrstic, razširjeno s potmi za pikami" + "Business": ["Aktivnost"], + "Comparison": ["Primerjava"], + "Intensity": ["Intenzivnost"], + "Pattern": ["Vzorec"], + "Report": ["Poročilo"], + "Trend": ["Trend"], + "less than {min} {name}": ["manj kot {min} {name}"], + "between {down} and {up} {name}": ["med {down} in {up} {name}"], + "more than {max} {name}": ["več kot {max} {name}"], + "Sort by metric": ["Mera za razvrščanje"], + "Whether to sort results by the selected metric in descending order.": [ + "Če želite padajoče razvrstiti rezultate z izbrano mero." ], - "For further instructions, consult the": [ - "Za nadaljnja navodila se posvetujte z" + "Number format": ["Oblika zapisa števila"], + "Choose a number format": ["Izberite obliko zapisa števila"], + "Source": ["Izvor"], + "Choose a source": ["Izberite izvor"], + "Target": ["Cilj"], + "Choose a target": ["Izberite cilj"], + "Flow": ["Potek"], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Prikaže potek ali povezave med kategorijami z debelino tetiv. Vrednost in debelina sta lahko različni za vsako stran." ], - "For more information about objects are in context in the scope of this function, refer to the": [ - "Za dodatne informacije o objektih v kontekstu te funkcije si oglejte" + "Relationships between community channels": [ + "Razmerja med skupnostnimi kanali" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ - "Za regularne filtre so te vloge tiste, ki bodo filtrirane. Za osnovne filtre, so te vloge tiste, ki NE bodo filtrirane, npr. Admin, če naj administrator vidi vse podatke." + "Chord Diagram": ["Tetivni grafikon"], + "Aesthetic": ["Estetika"], + "Circular": ["Krožno"], + "Legacy": ["Zastarelo"], + "Proportional": ["Proporcionalno"], + "Relational": ["Relacijsko"], + "Country": ["Država"], + "Which country to plot the map for?": [ + "Za katero državo želite grafikon?" ], - "Force": ["Sila"], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "Vsilite, da bodo vse tabele in pogledi ustvarjeni s to shemo, ko kliknete CTAS ali CVAS v SQL laboratoriju." + "ISO 3166-2 Codes": ["Oznake po ISO 3166-2"], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Stolpec, ki vsebuje ISO 3166-2 oznake regij/provinc/departmajev v vaši tabeli." ], - "Force date format": ["Vsili obliko zapisa datuma"], - "Force refresh": ["Osveži"], - "Force refresh schema list": ["Osveži seznam shem"], - "Force refresh table list": ["Osveži seznam tabel"], - "Forecast periods": ["Periode napovedi"], - "Foreign key": ["Tuji ključ"], - "Forest Green": ["Gozdno zelena"], - "Form data not found in cache, reverting to chart metadata.": [ - "Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki grafikona." + "Metric to display bottom title": ["Mera za prikaz spodnjega naslova"], + "Map": ["Zemljevid"], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Prikaže kako se posamezna mera spreminja glede na območja države (dežele, province, itd.) na kloropletnem zemljevidu. Vsak podrazdelek se dvigne, ko z miško preidete mejo njegovega območja." ], - "Form data not found in cache, reverting to dataset metadata.": [ - "Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki podatkovnega seta." + "2D": ["2D"], + "Geo": ["Geo"], + "Range": ["Doseg"], + "Stacked": ["Naložen"], + "Sorry, there appears to be no data": ["Ni podatkov"], + "Event definition": ["Definicija dogodka"], + "Event Names": ["Imena dogodkov"], + "Columns to display": ["Stolpci za prikaz"], + "Order by entity id": ["Uredi po ID-entitete"], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Pomembno! Izberite, če tabela še ni razvrščena po ID entitete, v nasprotnem primeru ni nujno, da bodo vrnjeni vsi dogodki za posamezno entiteto." ], - "Format SQL": ["Oblikuj SQL"], - "Formatted CSV attached in email": ["Oblikovan CSV pripet e-pošti"], - "Formatted date": ["Oblikovan datum"], - "Formatted value": ["Oblikovana vrednost"], - "Formatting": ["Oblikovanje"], - "Formula": ["Formula"], - "Forward values": ["Prihodnje vrednosti"], - "Found invalid orderby options": [ - "Najdene so neveljavne možnosti razvrščanja" + "Minimum leaf node event count": ["Min. št. dogodkov končnega vozlišča"], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Končna vozlišča, ki imajo manjše število dogodkov od nastavljene vrednosti, bodo na prikazu prvotno skrita" ], - "Fraction digits": ["Število decimalk"], - "Frequency": ["Frekvenca"], - "Friction": ["Trenje"], - "Friction between nodes": ["Trenje med vozlišči"], - "Friday": ["Petek"], - "From date cannot be larger than to date": [ - "Začetni datum ne sme biti večji od končnega" + "Additional metadata": ["Dodatni metapodatki"], + "Metadata": ["Metapodatki"], + "Select any columns for metadata inspection": [ + "Izberite poljubne stolpce za pregled metapodatkov" ], - "Full name": ["Celotno ime"], - "Funnel Chart": ["Lijakasti grafikon"], - "Further customize how to display each column": [ - "Dodatne prilagoditve prikaza posameznih stolpcev" + "Entity ID": ["ID-entitete"], + "e.g., a \"user id\" column": ["npr. stolpec \"id_uporabnika\""], + "Max Events": ["Maksimalno število dogodkov"], + "The maximum number of events to return, equivalent to the number of rows": [ + "Največje število prikazanih dogodkov (enako številu vrnjenih vrstic)" ], - "Further customize how to display each metric": [ - "Dodatne prilagoditve prikaza posameznih mer" + "Compares the lengths of time different activities take in a shared timeline view.": [ + "Primerja dolžine časovno različnih aktivnosti na skupni časovnici." ], - "GROUP BY": ["GROUP BY"], - "Gauge Chart": ["Števčni grafikon"], - "General": ["Splošno"], - "Generating link, please wait..": [ - "Ustvarjam povezavo, prosim počakajte..." + "Event Flow": ["Potek dogodkov"], + "Progressive": ["Progresivno"], + "Axis ascending": ["Naraščajoča os"], + "Axis descending": ["Padajoča os"], + "Metric ascending": ["Naraščajoča mera"], + "Metric descending": ["Padajoča mera"], + "Heatmap Options": ["Možnosti toplotnega prikaza"], + "XScale Interval": ["Interval X-osi"], + "Number of steps to take between ticks when displaying the X scale": [ + "Število korakov med oznakami pri prikazu X-osi" ], - "Generic Chart": ["Generičen grafikon"], - "Geo": ["Geo"], - "GeoJson Column": ["GeoJson stolpec"], - "GeoJson Settings": ["GeoJson nastavitve"], - "Geohash": ["Geohash"], - "Get the last date by the date unit.": [ - "Pridobi zadnji datum glede na časovno enoto." + "YScale Interval": ["Interval Y-osi"], + "Number of steps to take between ticks when displaying the Y scale": [ + "Število korakov med oznakami pri prikazu Y-osi" ], - "Get the specify date for the holiday": ["Določi datum praznika"], - "Go to the edit mode to configure the dashboard and add charts": [ - "Za nastavitve nadzorne plošče in dodajanje grafikonov pojdite v način urejanja" + "Rendering": ["Izris"], + "pixelated (Sharp)": ["pikselirano (ostro)"], + "auto (Smooth)": ["samodejno (glajenje)"], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "atribut CSS za izris objekta platna, ki določa, kako brskalnik poveča sliko" ], - "Gold": ["Zlata"], - "Google Sheet Name and URL": ["Ime Googlove preglednice in URL"], - "Grace period": ["Obdobje mirovanja"], - "Graph Chart": ["Graf"], - "Graph layout": ["Izgled grafikona"], - "Gravity": ["Gravitacija"], - "Greater or equal (>=)": ["Večje ali enako (>=)"], - "Greater than (>)": ["Večje kot (>)"], - "Grid": ["Mreža"], - "Grid Size": ["Velikost mreže"], - "Group By": ["Združevanje po (Group by)"], - "Group By filter plugin": ["Vtičnik za filter združevanja po"], - "Group By, Metrics or Percentage Metrics must have a value": [ - "Združevanje po, Mera ali Procentualna mera morajo imeti vrednost" + "Normalize Across": ["Normiraj glede na"], + "heatmap": ["toplotni prikaz"], + "x": ["x"], + "y": ["y"], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Barvna lestvica bo ustvarjena na osnovi normiranih vrednosti (0% do 100%) posameznih celic glede na ostale celice v izbranem obsegu: " ], - "Group Key": ["Ključ za združevanje"], - "Group by": ["Združevanje po (Group by)"], - "Groupable": ["Združevanje"], - "Handlebars": ["Handlebars"], - "Handlebars Template": ["Predloga za Handlebars"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ - "Mejne vrednosti za barvno lestvico. Upošteva se le, če je normiranje uporabljeno glede na celotni toplotni prikaz." + "x: values are normalized within each column": [ + "x: vrednosti so normirane znotraj vsakega stolpca" ], - "Has created by": ["Ustvarjen s strani"], - "Header": ["Glava"], - "Header Row": ["Naslovna vrstica"], - "Heatmap": ["Toplotni prikaz"], - "Heatmap Options": ["Možnosti toplotnega prikaza"], - "Height": ["Višina"], - "Height of the sparkline": ["Višina hitrega grafikona"], - "Hide Line": ["Skrij črto"], - "Hide chart description": ["Skrij opis grafikona"], - "Hide layer": ["Skrij sloj"], - "Hide password.": ["Skrij geslo."], - "Hide tool bar": ["Skrij orodno vrstico"], - "Hides the Line for the time series": ["Skrije črto časovne serije"], - "Hierarchy": ["Hierarhija"], - "Histogram": ["Histogram"], - "Home": ["Domov"], - "Horizon Chart": ["Horizontni grafikon"], - "Horizon Charts": ["Horizontni grafikoni"], - "Horizontal": ["Vodoravno"], - "Horizontal (Top)": ["Vodoravno (zgoraj)"], - "Horizontal alignment": ["Vodoravna poravnava"], - "Host": ["Gostitelj"], - "Hostname or IP address": ["Ime gostitelja ali IP naslov"], - "Hour": ["Ura"], - "Hours %s": ["Ure %s"], - "Hours offset": ["Urni premik"], - "How do you want to enter service account credentials?": [ - "Kako želite vnesti prijavne podatke servisnega računa?" + "y: values are normalized within each row": [ + "y: vrednosti so normirane znotraj vsake vrstice" ], - "How many buckets should the data be grouped in.": [ - "V koliko razdelkov bodo razvrščeni podatki." + "heatmap: values are normalized across the entire heatmap": [ + "heatmap: vrednosti so normirane po celotni temperaturni lestvici" ], - "How many periods into the future do we want to predict": [ - "Za koliko period v prihodnosti želite napoved" + "Left Margin": ["Levi rob"], + "auto": ["samodejno"], + "Left margin, in pixels, allowing for more room for axis labels": [ + "Levi rob, v pikslih, s katerim povečamo prostor za oznake osi" ], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "Način prikaza časovnih zamikov: kot samostojne črte; kot razlike med osnovno časovno vrsto in vsakim časovnim zamikom; kot procentualna sprememba; kot razmerje med vrsto in časovnim zamikom." + "Bottom Margin": ["Spodnji rob"], + "Bottom margin, in pixels, allowing for more room for axis labels": [ + "Spodnji rob, v pikslih, s katerim povečamo prostor za oznake osi" ], - "Huge": ["Ogromno"], - "ISO 3166-2 Codes": ["Oznake po ISO 3166-2"], - "ISO 8601": ["ISO 8601"], - "Id": ["Id"], - "Id of root node of the tree.": ["Id korenskega vozlišča drevesa."], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "V primeru Presto ali Trino se vse poizvedbe v SQL laboratoriju zaženejo pod trenutno prijavljenim uporabnikom, ki mora imeti pravice za poganjanje. Če je omogočen Hive in hive.server2.enable.doAs, poizvedbe tečejo pod servisnim računom, vendar je trenutno prijavljen uporabnik predstavljen z lastnostjo hive.server2.proxy.user." + "Value bounds": ["Meje vrednosti"], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Mejne vrednosti za barvno lestvico. Upošteva se le, če je normiranje uporabljeno glede na celotni toplotni prikaz." ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "V primeru Presto se vse poizvedbe v SQL laboratoriju zaženejo pod trenutno prijavljenim uporabnikom, ki mora imeti pravice za poganjanje.
Če je omogočen Hive in hive.server2.enable.doAs, poizvedbe tečejo pod servisnim računom, vendar je trenutno prijavljen uporabnik predstavljen z lastnostjo hive.server2.proxy.user." + "Sort X Axis": ["Razvrsti X-os"], + "Sort Y Axis": ["Razvrsti Y-os"], + "Show percentage": ["Prikaži procente"], + "Whether to include the percentage in the tooltip": [ + "Če želite prikaz procentov v opisu orodja" ], - "If Table Already Exists": ["Če tabela že obstaja"], - "If a metric is specified, sorting will be done based on the metric value": [ - "Če je določena mera, bo razvrščanje izvedeno na podlagi vrednosti mere" + "Normalized": ["Normiran"], + "Whether to apply a normal distribution based on rank on the color scale": [ + "Če želite uporabiti normalno porazdelitev glede na stopnjo na barvni lestvici" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "Če podvojeni stolpci niso izločeni, bodo označeni kot \"X.1, X.2 ...X.x\"" + "Value Format": ["Oblika zapisa vrednosti"], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Vizualizacija povezanih mer med pari skupin." ], - "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ - "Če je omogočeno, so vrednosti razvrščene padajoče, drugače pa naraščajoče." + "Sizes of vehicles": ["Velikosti vozil"], + "Employment and education": ["Zaposlitev in izobrazba"], + "Density": ["Gostota"], + "Predictive": ["Prediktivno"], + "Single Metric": ["Ena mera"], + "to": ["do"], + "count": ["število"], + "cumulative": ["kumulativno"], + "percentile (exclusive)": ["percentil (odprt interval)"], + "Select the numeric columns to draw the histogram": [ + "Izberite numerične stolpce za izris histograma" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Če je izbrano, nastavite dovoljene sheme za nalaganje CSV v razdelku \"Dodatno\"." + "No of Bins": ["Št. razdelkov"], + "Select the number of bins for the histogram": [ + "Izberite število razdelkov za histogram" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "Če tabela obstaja, naj se izvede naslednje: Prekini (ne naredi nič), Zamenjaj (zbriši in ponovno ustvari tabelo) ali Dodaj (vstavi podatke)." + "X Axis Label": ["Naslov X-osi"], + "Y Axis Label": ["Naslov Y-osi"], + "Whether to normalize the histogram": ["Če želite normirati histogram"], + "Cumulative": ["Kumulativno"], + "Whether to make the histogram cumulative": [ + "Če želite kumulativni histogram" ], - "Ignore cache when generating report": [ - "Ne upoštevaj predpomnjenja pri ustvarjanju poročila" + "Distribution": ["Porazdelitev"], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Vzame podatkovne točke in jih razporedi v razdelke, kjer se vidi območja z največjo gostoto informacij" ], - "Ignore null locations": ["Izpusti prazne lokacije"], - "Ignore time": ["Ne upoštevaj časa"], - "Image (PNG) embedded in email": ["Slika (PNG) vključena v e-pošto"], - "Image download failed, please refresh and try again.": [ - "Prenos slike ni uspel. Osvežite in poskusite ponovno." + "Population age data": ["Podatki starosti populacije"], + "Contribution": ["Prispevek"], + "Compute the contribution to the total": ["Izračunaj prispevek k celoti"], + "Series Height": ["Višina serije"], + "Pixel height of each series": ["Višina vsake serije v pikslih"], + "Value Domain": ["Domena vrednosti"], + "series": ["serije"], + "overall": ["skupaj"], + "change": ["sprememba"], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "serije: Obravnavaj vsako podatkovno serijo neodvisno; skupno: Vse vrste uporabljajo enako skalo; razlika: Prikaži razlike glede na prvo točko vsake serije" ], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "Predstavljanje kot prijavljeni uporabnik (Presto, Trino, Drill, Hive in GSheets)" + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Primerja kako se mera spreminja s časom med različnimi skupinami. Vsaka skupina predstavlja eno vrstico, časovne spremembe pa so prikazane z dolžino stolpcev in barvami." ], - "Impersonate the logged on user": [ - "Predstavljaj se kot prijavljeni uporabnik" + "Horizon Chart": ["Horizontni grafikon"], + "Dark Cyan": ["Temno sinja"], + "Purple": ["Vijolična"], + "Gold": ["Zlata"], + "Dim Gray": ["Temno-siva"], + "Crimson": ["Škrlatna"], + "Forest Green": ["Gozdno zelena"], + "Longitude": ["Dolžina"], + "Column containing longitude data": [ + "Stolpec s podatki zemljepisne dolžine" ], - "Import": ["Uvozi"], - "Import %s": ["Uvozi %s"], - "Import Dashboard(s)": ["Uvozi nadzorne plošče"], - "Import Dashboards": ["Uvozi nadzorne plošče"], - "Import a table definition": ["Uvozi definicijo tabele"], - "Import chart failed for an unknown reason": [ - "Uvoz grafikona ni uspel zaradi neznanega razloga" + "Latitude": ["Širina"], + "Column containing latitude data": [ + "Stolpec s podatki zemljepisne širine" ], - "Import charts": ["Uvozi grafikone"], - "Import dashboard failed for an unknown reason": [ - "Uvoz nadzorne plošče ni uspel zaradi neznanega razloga" + "Clustering Radius": ["Radij gručenja"], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "Radij (v pikslih), s katerim algoritem definira gručo. Izberite 0 za izklop gručenja - veliko število točk (>1000) bo povzročilo upočasnitev." ], - "Import dashboards": ["Uvozi nadzorne plošče"], - "Import database failed for an unknown reason": [ - "Uvoz podatkovne baze ni uspel zaradi neznanega razloga" + "Points": ["Točke"], + "Point Radius": ["Radij točk"], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Radij posameznih točk (tistih, ki niso v gruči). Numerični stolpec ali `Auto` (skalira točke na osnovi največje gruče)" ], - "Import database from file": ["Uvozi podatkovno bazo iz datoteke"], - "Import dataset failed for an unknown reason": [ - "Uvoz podatkovnega seta ni uspel zaradi neznanega razloga" + "Auto": ["Samodejno"], + "Point Radius Unit": ["Enota radija točk"], + "Pixels": ["Piksli"], + "Miles": ["Milje"], + "Kilometers": ["Kilometri"], + "The unit of measure for the specified point radius": [ + "Enota merila za definiran radij točk" ], - "Import datasets": ["Uvozi podatkovne sete"], - "Import queries": ["Uvozi poizvedbe"], - "Import saved query failed for an unknown reason.": [ - "Uvoz shranjene poizvedbe ni uspel zaradi neznanega razloga." + "Labelling": ["Oznake"], + "label": ["oznaka"], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "`število` je COUNT(*), če je uporabljeno združevanje po (group by). Numerični stolpci bodo agregirani z agregatorjem. Ne-numerični stolpci, bodo uporabljeni za oznake točk. Pustite prazno, da dobite število točk v posamezni gruči." ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ - "Pomembno! Izberite, če tabela še ni razvrščena po ID entitete, v nasprotnem primeru ni nujno, da bodo vrnjeni vsi dogodki za posamezno entiteto." + "Cluster label aggregator": ["Agregator za oznako gruče"], + "sum": ["vsota"], + "mean": ["povprečje"], + "max": ["max"], + "std": ["std"], + "var": ["var"], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "Agregacijska funkcija za seznam točk v vsaki gruči, s katero se ustvari oznaka gruče." ], - "In": ["Vsebuje (IN)"], - "Include Series": ["Vključi serijo"], - "Include a description that will be sent with your report": [ - "Vključite opis, ki bo vključen v poročilo" + "Visual Tweaks": ["Nastavitve izgleda"], + "Live render": ["Sprotni izris"], + "Points and clusters will update as the viewport is being changed": [ + "Točke in gruče se bodo posodabljale, če se bo spremenil pogled" ], - "Include series name as an axis": [ - "Vključi ime podatkovne serije v naslov osi" + "Map Style": ["Slog zemljevida"], + "Streets": ["Ulice"], + "Dark": ["Temno"], + "Light": ["Svetlo"], + "Satellite Streets": ["Satelitski z ulicami"], + "Satellite": ["Satelitski"], + "Outdoors": ["Outdoors"], + "Base layer map style. See Mapbox documentation: %s": [ + "Slog osnovnega zemljevida. Glej dokumentacijo Mapbox: %s" ], - "Include time": ["Vključi čas"], - "Increase": ["Povečaj"], - "Index": ["Indeks"], - "Index Column": ["Indeksni stolpec"], - "Info": ["Informacije"], - "Inner Radius": ["Notranji polmer"], - "Inner radius of donut hole": ["Notranji polmer kolobarja"], - "Input custom width in pixels": ["Vnesi poljubno širino v pikslih"], - "Input field supports custom rotation. e.g. 30 for 30°": [ - "Vnosno polje omogoča poljubno rotacijo (vnesite 30 za 30°)" + "Opacity": ["Prosojnost"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [ + "Prosojnost vseh gruč, točk in oznak (vrednost med 0 in 1)." ], - "Instant filtering": ["Takojšnje filtriranje"], - "Intensity": ["Intenzivnost"], - "Intensity Radius": ["Radij intenzivnosti"], - "Intensity Radius is the radius at which the weight is distributed": [ - "Radij intenzivnosti je radij, po katerem je porazdeljena utež" + "RGB Color": ["RGB barva"], + "The color for points and clusters in RGB": [ + "Barva točk in gruč v RGB zapisu" ], - "Intensity is the value multiplied by the weight to obtain the final weight": [ - "Intenzivnost je vrednost, ki je pomnožena z utežjo, da dobimo končno utež" + "Viewport": ["Pogled"], + "Default longitude": ["Privzeta dolžina"], + "Longitude of default viewport": ["Dolžina privzetega pogleda"], + "Default latitude": ["Privzeta širina"], + "Latitude of default viewport": ["Širina privzetega pogleda"], + "Zoom": ["Povečava"], + "Zoom level of the map": ["Stopnja povečave zemljevida"], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Eden ali več kontrolnikov za združevanje po. Pri združevanju morata biti prisotna stolpca širine in dolžine." ], - "Interval": ["Interval"], - "Interval End column": ["Stolpec konca intervala"], - "Interval bounds": ["Meje intervalov"], - "Interval colors": ["Barve intervalov"], - "Interval start column": ["Stolpec začetka intervala"], - "Intervals": ["Intervali"], - "Intesity": ["Intenzivnost"], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ - "Neveljaven niz povezave: pričakovan je niz oblike 'ocient://user:pass@host:port/database'." + "Light mode": ["Svetli način"], + "Dark mode": ["Temni način"], + "MapBox": ["Mapbox"], + "Scatter": ["Raztreseni"], + "Transformable": ["Prilagodljiv"], + "Significance Level": ["Stopnja značilnosti"], + "Threshold alpha level for determining significance": [ + "Mejna vrednost alfa za določanje značilnosti" ], - "Invalid JSON": ["Neveljaven JSON"], - "Invalid advanced data type: %(advanced_data_type)s": [ - "Neveljaven napreden tip rezultata: %(advanced_data_type)s" + "p-value precision": ["točnost p-vrednosti"], + "Number of decimal places with which to display p-values": [ + "Število decimalnih mest za prikaz p-vrednosti" ], - "Invalid certificate": ["Neveljaven certifikat"], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ - "Neveljaven niz povezave - veljaven niz je običajno v obliki: backend+driver://user:password@database-host/database-name" + "Lift percent precision": ["Točnost procentualnega dviga"], + "Number of decimal places with which to display lift values": [ + "Število decimalnih mest za prikaz vrednosti dviga" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ - "Neveljaven niz povezave. Veljaven niz običajno sledi zapisu:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Tabela, ki prikazuje uparjene t-teste, ki se uporabljajo za prikaz statističnih razlik med skupinami." ], - "Invalid cron expression": ["Neveljaven cron izraz"], - "Invalid cumulative operator: %(operator)s": [ - "Neveljaven kumulativni operand: %(operator)s" + "Paired t-test Table": ["Tabela t-testa za odvisne vzorce"], + "Statistical": ["Statistično"], + "Tabular": ["Tabelarično"], + "Options": ["Možnosti"], + "Data Table": ["Tabela podatkov"], + "Whether to display the interactive data table": [ + "Če želite prikaz interaktivne podatkovne tabele" ], - "Invalid currency code in saved metrics": [ - "Neveljavna koda valute v shranjeni meri" + "Include Series": ["Vključi serijo"], + "Include series name as an axis": [ + "Vključi ime podatkovne serije v naslov osi" ], - "Invalid date/timestamp format": ["Neveljaven zapis datuma/časa"], - "Invalid filter configuration, please select a column": [ - "Neveljavna nastavitev filtrov, izberite stolpec" + "Ranking": ["Rangiranje"], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Izriše posamezne mere za vsako vrstico podatkov navpično in jih med seboj poveže kot črto. Grafikon je uporaben za primerjavo več mer med vsemi vzorci ali vrsticami podatkov." ], - "Invalid filter operation type: %(op)s": [ - "Neveljaven tip operacije filtra: %(op)s" + "Coordinates": ["Koordinate"], + "Directional": ["Usmerjeni"], + "Time Series Options": ["Možnosti časovne vrste"], + "Not Time Series": ["Ni časovna vrsta"], + "Ignore time": ["Ne upoštevaj časa"], + "Time Series": ["Časovna vrsta"], + "Standard time series": ["Standardna časovna vrsta"], + "Aggregate Mean": ["Agregirano povprečje"], + "Mean of values over specified period": [ + "Povprečna vrednost v dani periodi" ], - "Invalid geodetic string": ["Neveljaven geodetski niz"], - "Invalid geohash string": ["Neveljaven niz za geohash"], - "Invalid input": ["Neveljaven vnos"], - "Invalid lat/long configuration.": [ - "Neveljavna nastavitev zemljepisne dolžine/širine." + "Aggregate Sum": ["Agregirana vsota"], + "Sum of values over specified period": ["Vsota vrednosti v dani periodi"], + "Metric change in value from `since` to `until`": [ + "Sprememba mere od vrednosti \"OD\" do \"DO\"" ], - "Invalid longitude/latitude": ["Neveljavna zemljepisna dolžina/širina"], - "Invalid metric object: %(metric)s": [ - "Neveljaven objekt mere: %(metric)s" + "Percent Change": ["Procentualna sprememba"], + "Metric percent change in value from `since` to `until`": [ + "Procentualna sprememba mere od vrednosti \"OD\" do \"DO\"" ], - "Invalid numpy function: %(operator)s": [ - "Neveljavna numpy funkcija: %(operator)s" + "Factor": ["Faktor"], + "Metric factor change from `since` to `until`": [ + "Sprememba faktorja mere od vrednosti \"OD\" do \"DO\"" ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Neveljavne možnosti za %(rolling_type)s: %(options)s" + "Advanced Analytics": ["Napredna analitika"], + "Use the Advanced Analytics options below": [ + "Uporabite spodnje možnosti napredne analitike" ], - "Invalid permalink key": ["Neveljaven ključ povezave"], - "Invalid reference to column: \"%(column)s\"": [ - "Neveljaven sklic na stolpec: \"%(column)s\"" + "Settings for time series": ["Nastavitve časovne vrste"], + "Date Time Format": ["Oblika zapisa za Datum-Čas"], + "Partition Limit": ["Omejitev particij"], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "Največje število podrazdelkov posamezne skupine; nižje vrednosti so zanemarjene prve" ], - "Invalid result type: %(result_type)s": [ - "Neveljaven tip rezultata: %(result_type)s" + "Partition Threshold": ["Prag particije"], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "Particije z nižjim razmerjem med njihovo višino in dolžino starša so zanemarjene" ], - "Invalid rolling_type: %(type)s": ["Neveljaven rolling_type: %(type)s"], - "Invalid state.": ["Neveljavno stanje."], - "Invalid tab ids: %s(tab_ids)": [ - "Neveljavni id-ji zavihkov: %s(tab_ids)" + "Log Scale": ["Logaritemska skala"], + "Use a log scale": ["Uporabi logaritemsko skalo"], + "Equal Date Sizes": ["Enaki datumi"], + "Check to force date partitions to have the same height": [ + "Če želite, da imajo datumske particije enako višino" ], - "Inverse selection": ["Invertiraj izbiro"], - "Invert current page": ["Invertiraj trenutno stran"], - "Is certified": ["Certificiran"], - "Is dimension": ["Dimenzija"], - "Is false": ["Je FALSE"], - "Is favorite": ["Je priljubljen"], - "Is filterable": ["Filtriranje"], - "Is not null": ["Ni NULL"], - "Is null": ["Je NULL"], - "Is tagged": ["Je označen"], - "Is temporal": ["Časoven"], - "Is true": ["Je TRUE"], - "Isoband": ["Površinska plastnica"], - "Isoline": ["Plastnica"], - "Issue 1000 - The dataset is too large to query.": [ - "Težava 1000 - podatkovni vir je prevelik za poizvedbo." + "Rich Tooltip": ["Podroben opis orodja"], + "The rich tooltip shows a list of all series for that point in time": [ + "Podroben opis orodja prikaže seznam vseh podatkovnih serij za posamezno časovno točko" ], - "Issue 1001 - The database is under an unusual load.": [ - "Težava 1001 - podatkovni vir je neobičajno obremenjen." + "Rolling Window": ["Drseče okno"], + "Rolling Function": ["Drseča funkcija"], + "cumsum": ["kumulativna vsota"], + "Min Periods": ["Min. št. period"], + "Time Comparison": ["Časovna primerjava"], + "Time Shift": ["Časovni zamik"], + "1 week": ["1 week"], + "28 days": ["28 days"], + "30 days": ["30 dni"], + "52 weeks": ["52 weeks"], + "1 year": ["1 year"], + "104 weeks": ["104 weeks"], + "2 years": ["2 years"], + "156 weeks": ["156 weeks"], + "3 years": ["3 years"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša se relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 hours, 7 days, 52 weeks, 365 days). Prosto besedilo je podprto." ], - "It’s not recommended to truncate axis in Bar chart.": [ - "V stolpčnem grafikonu ni priporočljivo omejiti osi." + "Actual Values": ["Dejanske vrednosti"], + "1T": ["1T"], + "1H": ["1H"], + "1D": ["1D"], + "7D": ["7D"], + "1M": ["1M"], + "1AS": ["1AS"], + "Method": ["Metoda"], + "asfreq": ["asfreq"], + "bfill": ["bfill"], + "ffill": ["ffill"], + "median": ["mediana"], + "Part of a Whole": ["Del celote"], + "Compare the same summarized metric across multiple groups.": [ + "Primerja isto mero med različnimi skupinami." ], - "JAN": ["JAN"], - "JSON": ["JSON"], - "JSON Metadata": ["JSON-metapodatki"], - "JSON metadata": ["JSON-metapodatki"], - "JSON metadata is invalid!": ["JSON-metapodatki niso veljavni!"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "JSON niz, ki vsebuje dodatno konfiguracijo povezave. Uporablja se za zagotavljanje dodatnih informacij povezave za sisteme kot sta Presto in BigQuery, ki nista skladna s sintakso username:password, ki jo običajno uporablja SQLAlchemy." + "Partition Chart": ["Grafikon razdelkov"], + "Categorical": ["Kategorični"], + "Use Area Proportions": ["Uporabi razmerje površin"], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "Če želite, da grafikon \"Rose\" uporablja površino segmenta namesto radija za proporcioniranje" ], - "JUL": ["JUL"], - "JUN": ["JUN"], - "January": ["Januar"], - "JavaScript data interceptor": ["JavaScript prestreznik podatkov"], - "JavaScript onClick href": ["JavaScript onClick href"], - "JavaScript tooltip generator": ["JavaScript generator opisa orodja"], - "Jinja templating": ["Jinja"], - "Json list of the column names that should be read": [ - "Json seznam imen stolpcev, ki bodo prebrani" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Grafikon s polarnimi koordinatami, kjer je krog razdeljen na enakokotne izseke, vrednosti pa so ponazorjene s ploščino izseka (namesto polmera ali kota)." ], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "JSON seznam imen stolpcev, ki morajo biti prebrani. Če ni prazen, bodo iz datoteke prebrani le ti stolpci." + "Nightingale Rose Chart": ["Nightingale Rose grafikon"], + "Advanced-Analytics": ["Napredna analitika"], + "Multi-Layers": ["Večplastni"], + "Source / Target": ["Izhodišče/Cilj"], + "Choose a source and a target": ["Izberite izhodišče in cilj"], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Omejitev vrstic lahko povzroči nepopolne podatke in zavajajoč grafikon. Premislite o uporabi filtriranja ali združevanja imen izvorov/ciljev." ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ - "JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: [\"\"] za prazne nize, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna baza Hive podpira le eno vrednost" + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Prikaže potek vrednosti različnih skupin na različnih nivojih sistema. Novi nivoji so prikazani kot točke ali plasti. Debelina stolpcev ali povezav predstavlja prikazano mero." ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna baza Hive podpira le eno vrednost. Uporabite [\"\"] za prazen znakovni niz." + "Demographics": ["Demografija"], + "Survey Responses": ["Rezultati anket"], + "Sankey Diagram": ["Sankey grafikon"], + "Percentages": ["Procenti"], + "Sankey Diagram with Loops": ["Sankey grafikon z zankami"], + "Country Field Type": ["Tip polja za države"], + "Full name": ["Celotno ime"], + "code International Olympic Committee (cioc)": [ + "koda Mednarodnega olimpijskega komiteja (cioc)" ], - "July": ["Julij"], - "June": ["Junij"], - "KPI": ["KPI"], - "Keep control settings?": ["Obdržim nastavitve kontrolnika?"], - "Keep editing": ["Nadaljuj z urejanjem"], - "Key": ["Ključ"], - "Keyboard shortcuts": ["Bližnjice na tipkovnici"], - "Keys for table": ["Ključi za tabelo"], - "Kilometers": ["Kilometri"], - "LIMIT": ["OMEJITEV"], - "Label": ["Naziv"], - "Label Contents": ["Označi vsebino"], - "Label Line": ["Črta oznake"], - "Label Type": ["Tip oznake"], - "Label already exists": ["Oznaka že obstaja"], - "Label for your query": ["Ime vaše poizvedbe"], - "Label position": ["Položaj oznake"], - "Label threshold": ["Prag oznak"], - "Labelling": ["Oznake"], - "Labels": ["Oznake"], - "Labels for the marker lines": ["Oznake za markirne črtice"], - "Labels for the markers": ["Oznake za markerje"], - "Labels for the ranges": ["Oznake za razpone"], - "Large": ["Veliko"], - "Last": ["Zadnji"], - "Last Changed": ["Zadnja sprememba"], - "Last Modified": ["Zadnja sprememba"], - "Last Updated %s": ["Zadnja posodobitev %s"], - "Last Updated %s by %s": ["Zadnja posodobitev %s, %s"], - "Last available value seen on %s": [ - "Zadnja razpoložljiva vrednost na %s" + "code ISO 3166-1 alpha-2 (cca2)": ["koda ISO 3166-1 alpha-2 (cca2)"], + "code ISO 3166-1 alpha-3 (cca3)": ["koda ISO 3166-1 alpha-3 (cca3)"], + "The country code standard that Superset should expect to find in the [country] column": [ + "Standard za oznake držav, ki bodo podane v stolpcu z državami" ], - "Last modified": ["Zadnja sprememba"], - "Last run": ["Zadnji zagon"], - "Latitude": ["Širina"], - "Latitude of default viewport": ["Širina privzetega pogleda"], - "Layer configuration": ["Nastavitve sloja"], - "Layout": ["Izgled"], - "Layout elements": ["Postavitev elementov"], - "Layout type of graph": ["Tip izgleda grafikona"], - "Layout type of tree": ["Način izgleda drevesa"], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "Končna vozlišča, ki imajo manjše število dogodkov od nastavljene vrednosti, bodo na prikazu prvotno skrita" + "Show Bubbles": ["Prikaži mehurčke"], + "Whether to display bubbles on top of countries": [ + "Če želite prikaz mehurčkov nad državami" ], - "Least recently modified": ["Zadnje spremenjeno"], - "Left": ["Levo"], - "Left Margin": ["Levi rob"], - "Left margin, in pixels, allowing for more room for axis labels": [ - "Levi rob, v pikslih, s katerim povečamo prostor za oznake osi" + "Max Bubble Size": ["Max. velikost mehurčka"], + "Color by": ["Barva glede na"], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Izberite, če želite barvanje držav glede na mero ali kategorično določeno barvno paleto" ], - "Left to Right": ["Od leve proti desni"], - "Left value": ["Leva vrednost"], - "Legacy": ["Zastarelo"], - "Legend": ["Legenda"], - "Legend Format": ["Oblika legende"], - "Legend Orientation": ["Orientacija legende"], - "Legend Position": ["Položaj legende"], - "Legend type": ["Tip legende"], - "Less or equal (<=)": ["Manjše ali enako (<=)"], - "Less than (<)": ["Manjše kot (<)"], - "Lift percent precision": ["Točnost procentualnega dviga"], - "Light": ["Svetlo"], - "Light mode": ["Svetli način"], - "Like": ["Like"], - "Like (case insensitive)": ["Like (ni razlik. velikih/malih črk)"], - "Limit reached": ["Omejitev dosežena"], - "Limit selector values": ["Omeji vrednosti izbirnikov"], - "Limit type": ["Tip omejitve"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "Omejitev vrstic lahko povzroči nepopolne podatke in zavajajoč grafikon. Premislite o uporabi filtriranja ali združevanja imen izvorov/ciljev." + "Country Column": ["Stolpec z državami"], + "3 letter code of the country": ["Tričrkovna oznaka države"], + "Metric that defines the size of the bubble": [ + "Mera, ki določa velikost mehurčka" ], - "Limits the number of cells that get retrieved.": [ - "Omeji število pridobljenih celic." + "Bubble Color": ["Barva mehurčka"], + "Country Color Scheme": ["Barvna shema držav"], + "A map of the world, that can indicate values in different countries.": [ + "Zemljevid sveta, ki lahko prikazuje vrednosti po državah." ], - "Limits the number of rows that get displayed.": [ - "Omeji število vrstic za prikaz." + "Multi-Dimensions": ["Večdimenzionalni"], + "Multi-Variables": ["Več spremenljivk"], + "Popular": ["Priljubljeni"], + "deck.gl charts": ["deck.gl grafikoni"], + "Pick a set of deck.gl charts to layer on top of one another": [ + "Izberite nabor deck.gl grafikonov, ki bodo nanizani en na drugem" ], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "Omeji število časovnih vrst za prikaz. S podpoizvedbo (ali dodatno fazo, kjer podpoizvedbe niso podprte) se omeji število časovnih vrst, ki bodo pridobljene za prikaz. Ta funkcija je uporabna pri združevanju s stolpci z veliko kardinalnostjo, vendar poveča kompleksnost poizvedbe." + "Select charts": ["Izberi grafikone"], + "Error while fetching charts": ["Napaka pri pridobivanju grafikonov"], + "Compose multiple layers together to form complex visuals.": [ + "Združi več plasti za oblikovanje kompleksnih vizualizacij." ], - "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ - "Omeji število vrstic, ki se izračunajo v poizvedbi, ki je vir podatkov za ta grafikon." + "deck.gl Multiple Layers": ["deck.gl - večplastni grafikon"], + "deckGL": ["deckGL"], + "Start (Longitude, Latitude): ": ["Začetek (Zemlj. dolžina, širina): "], + "End (Longitude, Latitude): ": ["Konec (zemljepisna dolžina, širina): "], + "Start Longitude & Latitude": ["Začetna Dolž. in Širina"], + "Point to your spatial columns": [ + "Pokažite na stolpec z lokacijskimi podatki" ], - "Line": ["Črta"], - "Line Chart": ["Črtni grafikon"], - "Line Chart (legacy)": ["Črtni grafikon (zastarelo)"], - "Line Style": ["Slog črte"], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Črtni grafikon se uporablja se za vizualizacijo meritev zajetih skozi čas. Posamezne točke so med seboj povezane z ravnimi črtami." + "End Longitude & Latitude": ["Končna Dolž. in Širina"], + "Arc": ["Lok"], + "Target Color": ["Ciljna barva"], + "Color of the target location": ["Barva ciljne lokacije"], + "Categorical Color": ["Kategorična barva"], + "Pick a dimension from which categorical colors are defined": [ + "Izberite dimenzijo, ki bo določala kategorične barve" ], - "Line interpolation as defined by d3.js": [ - "Interpolacija krivulje na osnovi d3.js" + "Stroke Width": ["Debelina obrobe"], + "Advanced": ["Napredno"], + "Plot the distance (like flight paths) between origin and destination.": [ + "Izriši razdalje (kot letalske koridorje) med izhodiščem in ciljem." ], - "Line width": ["Debelina črte"], - "Line width unit": ["Enota debeline črte"], - "Linear Color Scheme": ["Linearna barvna shema"], - "Linear color scheme": ["Linearna barvna shema"], - "Linear interpolation": ["Linearna interpolacija"], - "Lines column": ["Stolpec črt"], - "Lines encoding": ["Kodiranje črt"], - "Link Copied!": ["Povezava kopirana!"], - "List Unique Values": ["Seznam unikatnih vrednosti"], - "List of extra columns made available in JavaScript functions": [ - "Seznam dodatnih stolpcev, ki bodo na razpolago v JavaScript funkcijah" + "deck.gl Arc": ["deck.gl - lok"], + "3D": ["3D"], + "Web": ["Mreža"], + "Centroid (Longitude and Latitude): ": [ + "Centroid (zemljepisna dolžina in širina): " ], - "List of n+1 values for bucketing metric into n buckets.": [ - "Seznam n+1 vrednosti za mero razvrščanja v n razdelkov." + "Threshold: ": ["Prag: "], + "The size of each cell in meters": ["Velikost vsake celice v metrih"], + "Aggregation": ["Agregacija"], + "The function to use when aggregating points into groups": [ + "Funkcija za agregacijo točk v skupine" ], - "List of values to mark with lines": [ - "Seznam vrednosti, ki bodo markirane s črticami" + "Contours": ["Plastnice"], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "Definirajte plastnice. Plastnice predstavljajo nabor črt, ki ločujejo območje nad in pod podano mejo. Površinske plastnice predstavlja nabor poligonov, ki zapolnjujejo področje v določenem obsegu vrednosti." ], - "List of values to mark with triangles": [ - "Seznam vrednosti, ki bodo markirane s trikotniki" + "Weight": ["Utež"], + "Metric used as a weight for the grid's coloring": [ + "Mera, ki služi kot utež za barvo mreže" ], - "List updated": ["Seznam posodobljen"], - "Live CSS editor": ["CSS urejevalnik v živo"], - "Live render": ["Sprotni izris"], - "Load a CSS template": ["Naloži CSS predlogo"], - "Loaded data cached": ["Naloženo v predpomnilnik"], - "Loaded from cache": ["Naloženo iz predpomnilnika"], - "Loading": ["Nalaganje"], - "Loading...": ["Nalagam ..."], - "Locate the chart": ["Lociraj grafikon"], - "Log Scale": ["Logaritemska skala"], - "Log retention": ["Hranjenje dnevnikov"], - "Logarithmic axis": ["Logaritemska os"], - "Logarithmic scale on primary y-axis": [ - "Logaritemska skala na primarni y-osi" + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Za prikaz prostorske porazdelitve podatkov uporablja ocenjevanje Gaussove jedrno gostote" ], - "Logarithmic scale on secondary y-axis": [ - "Logaritemska skala na sekundarni y-osi" + "Spatial": ["Prostorski"], + "Experimental": ["Eksperimentalno"], + "GeoJson Settings": ["GeoJson nastavitve"], + "Line width unit": ["Enota debeline črte"], + "meters": ["metri"], + "pixels": ["piksli"], + "Point Radius Scale": ["Skaliranje radija točk"], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "GeoJsonLayer uporablja podatke v formatu GeoJSON in jih izriše kot interaktivne poligone, črte in točke (krogi, ikone in/ali besedila)." ], - "Logarithmic x-axis": ["Logaritemska x-os"], - "Logarithmic y-axis": ["Logaritemska y-os"], - "Login": ["Prijava"], - "Login with": ["Prijava z"], - "Logout": ["Odjava"], - "Logs": ["Dnevniki"], - "Long dashed": ["Dolgo-črtkano"], - "Longitude": ["Dolžina"], - "Longitude & Latitude": ["Dolžina in širina"], - "Longitude & Latitude columns": ["Stolpci zemljepisne dolžine in širine"], + "deck.gl Geojson": ["deck.gl - GeoJson"], "Longitude and Latitude": ["Dolžina in širina"], - "Longitude of default viewport": ["Dolžina privzetega pogleda"], - "Lower Threshold": ["Spodnji prag"], - "Lower threshold must be lower than upper threshold": [ - "Spodnji prag mora biti manjši od zgornjega" + "Height": ["Višina"], + "Metric used to control height": ["Mera za določanje višine"], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Prikaz geoprostorskih podatkov kot so 3D zgradbe, parcele ali objekti v mrežnem pogledu." ], - "MAR": ["MAR"], - "MAY": ["MAJ"], - "MON": ["PON"], - "Main Datetime Column": ["Glavni stolpec Datum-Čas"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ - "Poskrbite, da so kontrolniki pravilno nastavljeni in podatkovni vir vsebuje podatke za izbrano časovno obdobje" + "deck.gl Grid": ["deck.gl - 3D mreža"], + "Intesity": ["Intenzivnost"], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Intenzivnost je vrednost, ki je pomnožena z utežjo, da dobimo končno utež" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Deformirana zahteva. Pričakovani so argumenti slice_id ali table_name in db_name" + "Intensity Radius": ["Radij intenzivnosti"], + "Intensity Radius is the radius at which the weight is distributed": [ + "Radij intenzivnosti je radij, po katerem je porazdeljena utež" ], - "Manage": ["Upravljaj"], - "Manage email report": ["Upravljaj e-poštno poročilo"], - "Manage your databases": ["Upravljajte podatkovne baze"], - "Mandatory": ["Obvezno"], - "Manually set min/max values for the y-axis.": [ - "Ročno nastavi min./max. vrednosti za y-os." + "deck.gl Heatmap": ["deck.gl - toplotna karta"], + "Dynamic Aggregation Function": ["Dinamična agregacijska funkcija"], + "variance": ["varianca"], + "deviation": ["deviacija"], + "p1": ["p1"], + "p5": ["p5"], + "p95": ["p95"], + "p99": ["p99"], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Prikaže šestkotno mrežo na zemljevidu in agregira podatke znotraj meja vsake celice." ], - "Map": ["Zemljevid"], - "Map Style": ["Slog zemljevida"], - "MapBox": ["Mapbox"], - "Mapbox": ["Mapbox"], - "March": ["Marec"], - "Margin": ["Rob"], - "Mark a column as temporal in \"Edit datasource\" modal": [ - "Označite stolpec kot časoven preko okna \"Uredi podatkovni vir\"" + "deck.gl 3D Hexagon": ["deck.gl - 3D HEX"], + "Polyline": ["Poli-linija"], + "Visualizes connected points, which form a path, on a map.": [ + "Na zemljevidu prikaže povezane točke, ki tvorijo pot." ], - "Marker": ["Marker"], - "Marker Size": ["Velikost markerja"], - "Marker labels": ["Oznake markerjev"], - "Marker line labels": ["Oznake markirnih črtic"], - "Marker lines": ["Markirne črtice"], - "Marker size": ["Velikost markerja"], - "Markers": ["Markerji"], - "Markup type": ["Tip označevanja"], - "Max": ["Max"], - "Max Bubble Size": ["Max. velikost mehurčka"], - "Max Events": ["Maksimalno število dogodkov"], - "Maximum": ["Maksimum"], - "Maximum Font Size": ["Max. velikost pisave"], - "Maximum Radius": ["Max. polmer"], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ - "Maksimalni polmer kroga v pikslih. S tem je določen maksimalni polmer kroga, ko se spreminja stopnja povečave." + "deck.gl Path": ["deck.gl - poti"], + "name": ["ime"], + "Polygon Column": ["Stolpec poligonov"], + "Polygon Encoding": ["Kodiranje poligonov"], + "Elevation": ["Višina"], + "Polygon Settings": ["Nastavitve poligonov"], + "Opacity, expects values between 0 and 100": [ + "Prosojnost, vnesite vrednosti med 0 in 100" ], - "Maximum value": ["Maksimalna vrednost"], - "Maximum value on the gauge axis": ["Največja vrednost na številčnici"], - "May": ["Maj"], - "Mean of values over specified period": [ - "Povprečna vrednost v dani periodi" + "Number of buckets to group data": [ + "Število razdelkov za združevanje podatkov" ], - "Mean values": ["Srednje vrednosti"], - "Median": ["Mediana"], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ - "Mediana debeline povezave. Najdebelejša povezava bo 4-krat debelejša od najtanjše." + "How many buckets should the data be grouped in.": [ + "V koliko razdelkov bodo razvrščeni podatki." ], - "Median node size, the largest node will be 4 times larger than the smallest": [ - "Mediana velikosti vozlišča. Največje vozlišče bo 4-krat večje od najmanjšega" + "Bucket break points": ["Točke za razčlenitev razdelkov"], + "List of n+1 values for bucketing metric into n buckets.": [ + "Seznam n+1 vrednosti za mero razvrščanja v n razdelkov." ], - "Median values": ["Mediane"], - "Medium": ["Srednje"], - "Menu actions trigger": ["Preklapljanje funkcionalnosti menijev"], - "Message content": ["Vsebina sporočila"], - "Metadata": ["Metapodatki"], - "Metadata Parameters": ["Parametri metapodatkov"], - "Metadata has been synced": ["Metapodatki so sinhronizirani"], - "Method": ["Metoda"], - "Metric": ["Mera"], - "Metric '%(metric)s' does not exist": ["Mera '%(metric)s' ne obstaja"], - "Metric Key": ["Ključ mere"], - "Metric ascending": ["Naraščajoča mera"], - "Metric assigned to the [X] axis": ["Mera za [X] os"], - "Metric assigned to the [Y] axis": ["Mera za [Y] os"], - "Metric change in value from `since` to `until`": [ - "Sprememba mere od vrednosti \"OD\" do \"DO\"" + "Emit Filter Events": ["Oddajaj dogodke filtrov"], + "Whether to apply filter when items are clicked": [ + "Če želite uporabiti filter, ko kliknete na elemente" ], - "Metric currency": ["Valuta mere"], - "Metric descending": ["Padajoča mera"], - "Metric factor change from `since` to `until`": [ - "Sprememba faktorja mere od vrednosti \"OD\" do \"DO\"" + "Multiple filtering": ["Večkratno filtriranje"], + "Allow sending multiple polygons as a filter event": [ + "Dovoli pošiljanje več poligonov kot dogodek filtra" ], - "Metric for node values": ["Mera za vrednosti vozlišč"], - "Metric name": ["Ime mere"], - "Metric name [%s] is duplicated": ["Ime mere [%s] je podvojeno"], - "Metric percent change in value from `since` to `until`": [ - "Procentualna sprememba mere od vrednosti \"OD\" do \"DO\"" + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Prikaže geografsko območje kot poligone na zemljevidu zagotovljenim preko storitve Mapbox. Poligoni so lahko obarvani glede na mero." ], - "Metric that defines the size of the bubble": [ - "Mera, ki določa velikost mehurčka" + "deck.gl Polygon": ["deck.gl - poligon"], + "Category": ["Kategorija"], + "Point Size": ["Velikost točke"], + "Point Unit": ["Enota točke"], + "Square meters": ["Kvadratni metri"], + "Square kilometers": ["Kvadratni kilometri"], + "Square miles": ["Kvadratne milje"], + "Radius in meters": ["Polmer v metrih"], + "Radius in kilometers": ["Polmer v kilometrih"], + "Radius in miles": ["Polmer v miljah"], + "Minimum Radius": ["Min. polmer"], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Minimalni polmer kroga v pikslih. S tem je določen minimalni polmer kroga, ko se spreminja stopnja povečave." ], - "Metric to display bottom title": ["Mera za prikaz spodnjega naslova"], - "Metric to sort the results by": ["Mera za razvrščanje rezultatov"], - "Metric used as a weight for the grid's coloring": [ - "Mera, ki služi kot utež za barvo mreže" + "Maximum Radius": ["Max. polmer"], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "Maksimalni polmer kroga v pikslih. S tem je določen maksimalni polmer kroga, ko se spreminja stopnja povečave." ], - "Metric used to calculate bubble size": [ - "Mera za izračun velikosti mehurčkov" + "Point Color": ["Barva točke"], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Zemljevid, ki na zemljepisnih koordinatah prikazuje kroge s spremenljivim polmerom" ], - "Metric used to control height": ["Mera za določanje višine"], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Mera, ki določa kako so razvrščene prve serije, če je določena omejitev serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." + "deck.gl Scatterplot": ["deck.gl - raztreseni grafikon"], + "Grid": ["Mreža"], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Agregira podatke znotraj meja celic in agregirane vrednosti ponazori z dinamično barvno lestvico" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Mera, ki določa kako so razvrščene prve serije, če je določena omejitev serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." + "deck.gl Screen Grid": ["deck.gl - mreža"], + "For more information about objects are in context in the scope of this function, refer to the": [ + "Za dodatne informacije o objektih v kontekstu te funkcije si oglejte" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Mera, ki določa kako je razvrščena meja, če je določena omejitev serij. Če ni določena, se uporabi prva mera (kjer je to ustrezno)." + " source code of Superset's sandboxed parser": [ + " izvorno kodo za Supersetov \"sandboxed parser\"" ], - "Metrics": ["Mere"], - "Middle": ["Sredina"], - "Midnight": ["Polnoč"], - "Miles": ["Milje"], - "Min": ["Min"], - "Min Periods": ["Min. št. period"], - "Min Width": ["Min. širina"], - "Min periods": ["Min. št. period"], - "Min/max (no outliers)": ["Min/max (brez osamelcev)"], - "Mine": ["Moje"], - "Minimum": ["Minimum"], - "Minimum Font Size": ["Min. velikost pisave"], - "Minimum Radius": ["Min. polmer"], - "Minimum leaf node event count": ["Min. št. dogodkov končnega vozlišča"], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ - "Minimalni polmer kroga v pikslih. S tem je določen minimalni polmer kroga, ko se spreminja stopnja povečave." + "This functionality is disabled in your environment for security reasons.": [ + "Ta funkcionalnost je v vašem okolju onemogočena zaradi varnosti." ], - "Minimum threshold in percentage points for showing labels.": [ - "Minimalni prag v odstotnih točkah za prikaz oznak." + "Ignore null locations": ["Izpusti prazne lokacije"], + "Whether to ignore locations that are null": [ + "Če ne želite upoštevati praznih (NULL) lokacij" ], - "Minimum value": ["Minimalna vrednost"], - "Minimum value for label to be displayed on graph.": [ - "Najmanjša vrednost, za katero bo na grafikonu prikazana oznaka." + "Auto Zoom": ["Samodejna povečava"], + "When checked, the map will zoom to your data after each query": [ + "Če želite, da se zemljevid prilagodi vašim podatkom po vsaki poizvedbi" ], - "Minimum value on the gauge axis": ["Najmanjša vrednost na številčnici"], - "Minor Split Line": ["Pomožna ločilna črta"], - "Minor ticks": ["Pomožne oznake"], - "Minute": ["Minuta"], - "Minutes %s": ["Minute %s"], - "Missing URL parameters": ["Manjkajo parametri URL-ja"], - "Missing dataset": ["Manjka podatkovni set"], - "Mixed Chart": ["Kombinirani grafikon"], - "Mixed Time-Series": ["Kombiniran grafikon časovne vrste"], - "Modified": ["Spremenjeno"], - "Modified %s": ["Zadnja sprememba %s"], - "Modified by": ["Spremenil"], - "Modified by: %s": ["Spremenil: %s"], - "Modified columns: %s": ["Spremenjeni stolpci: %s"], - "Monday": ["Ponedeljek"], - "Month": ["Mesec"], - "Months %s": ["Meseci %s"], - "More": ["Več"], - "More filters": ["Več filtrov"], - "Move only": ["Samo premikanje"], - "Moves the given set of dates by a specified interval.": [ - "Premakne dani nabor datumov za definirano obdobje." + "Select a dimension": ["Izberite dimenzijo"], + "Extra data for JS": ["Dodatni podatki za JS"], + "List of extra columns made available in JavaScript functions": [ + "Seznam dodatnih stolpcev, ki bodo na razpolago v JavaScript funkcijah" ], - "Multi-Dimensions": ["Večdimenzionalni"], - "Multi-Layers": ["Večplastni"], - "Multi-Levels": ["Večplastni"], - "Multi-Variables": ["Več spremenljivk"], - "Multiple": ["Več"], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "Za nalaganje stolpčnih datotek niso dovoljene različne končnice. Poskrbite, da imajo vse datoteke enake končnice." + "JavaScript data interceptor": ["JavaScript prestreznik podatkov"], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Določite Javascript funkcijo, ki sprejme podatkovni niz za vizualizacijo in vrne spremenjeno verzijo tega niza. Lahko se uporabi za spreminjanje lastnosti podatkov, filtra ali obogatitve niza." ], - "Multiple filtering": ["Večkratno filtriranje"], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "Sprejema različne zapise - podrobnosti najdete v Pythonovi knjižnici geopy.points" + "JavaScript tooltip generator": ["JavaScript generator opisa orodja"], + "Define a function that receives the input and outputs the content for a tooltip": [ + "Določite funkcijo, ki sprejme vhodne podatke in vrne vsebino opisa orodja" + ], + "JavaScript onClick href": ["JavaScript onClick href"], + "Define a function that returns a URL to navigate to when user clicks": [ + "Določite funkcijo, ki vrne URL za navigacijo, ko uporabnik klikne" + ], + "Legend Format": ["Oblika legende"], + "Choose the format for legend values": [ + "Izberite obliko vrednosti legende" + ], + "Legend Position": ["Položaj legende"], + "Choose the position of the legend": ["Izberite položaj legende"], + "Top left": ["Zgoraj levo"], + "Top right": ["Zgoraj desno"], + "Bottom left": ["Spodaj levo"], + "Bottom right": ["Spodaj desno"], + "Lines column": ["Stolpec črt"], + "The database columns that contains lines information": [ + "Stolpec v podatkovni bazi, ki vsebuje podatke črt" + ], + "Line width": ["Debelina črte"], + "The width of the lines": ["Debelina črt"], + "Fill Color": ["Barva polnila"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + " Nastavite prosojnost na 0, če želite obdržati barvo določeno v GeoJSON" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "Lahko izberete več elementov, drugače pa je filter omejen na eno vrednost" + "Stroke Color": ["Barva obrobe"], + "Filled": ["Zapolnjeno"], + "Whether to fill the objects": ["Če želite zapolniti objekte"], + "Stroked": ["Obrobljeno"], + "Whether to display the stroke": ["Če želite prikazati obrobe"], + "Extruded": ["Relief"], + "Whether to make the grid 3D": ["Če želite mrežo v 3D-prikazu"], + "Grid Size": ["Velikost mreže"], + "Defines the grid size in pixels": ["Določa velikost mreže v pikslih"], + "Parameters related to the view and perspective on the map": [ + "Parametri povezani s pogledom in perspektivo zemljevida" ], + "Longitude & Latitude": ["Dolžina in širina"], + "Fixed point radius": ["Fiksni radij točk"], "Multiplier": ["Množitelj"], - "Must be unique": ["Mora biti unikaten"], - "Must choose either a chart or a dashboard": [ - "Izberite bodisi grafikon bodisi nadzorno ploščo" + "Factor to multiply the metric by": ["Faktor, s katerim množite mero"], + "Lines encoding": ["Kodiranje črt"], + "The encoding format of the lines": ["Oblika kodiranja črt"], + "geohash (square)": ["geohash (kvadrat)"], + "Reverse Lat & Long": ["Zamenjaj širino in dolžino"], + "GeoJson Column": ["GeoJson stolpec"], + "Select the geojson column": ["Izberite geojson stolpec"], + "Right Axis Format": ["Oblika desne osi"], + "Show Markers": ["Prikaži markerje"], + "Show data points as circle markers on the lines": [ + "Prikaži točke kot krožne markerje na krivuljah" ], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Mora imeti stolpec [Združevanje po], da ima število (count) kot [Oznaka]" + "Y bounds": ["Meje Y-osi"], + "Whether to display the min and max values of the Y-axis": [ + "Če želite prikaz min. in max. vrednosti Y-osi" ], - "Must have at least one numeric column specified": [ - "Definiran mora biti vsaj en numerični stolpec" + "Y 2 bounds": ["Meje Y-osi 2"], + "Line Style": ["Slog črte"], + "linear": ["linearno"], + "basis": ["basis"], + "cardinal": ["cardinal"], + "monotone": ["monotone"], + "step-before": ["step-before"], + "step-after": ["step-after"], + "Line interpolation as defined by d3.js": [ + "Interpolacija krivulje na osnovi d3.js" ], - "Must provide credentials for the SSH Tunnel": [ - "Za SSH-tunel morate podati prijavne podatke" + "Show Range Filter": ["Prikaži filter obdobja"], + "Whether to display the time range interactive selector": [ + "Če želite prikaz interaktivnega izbirnika časovnega obdobja" ], - "Must specify a value for filters with comparison operators": [ - "Potrebno je podati vrednost za filter s primerjalnim operandom" + "Extra Controls": ["Dodatni kontrolniki"], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Če želite prikaz dodatnih kontrolnikov. Dodatni kontrolniki vključujejo možnost izdelave večstolpčnih grafikonov, naloženih ali drug ob drugem." ], - "My beautiful colors": ["Moje čudovite barve"], - "My column": ["Moj stolpec"], - "My metric": ["Moja mera"], - "N/A": ["N/A"], - "NOT GROUPED BY": ["NOT GROUPED BY"], - "NOV": ["NOV"], - "NOW": ["ZDAJ"], - "NUMERIC": ["NUMERIC"], - "Name": ["Ime"], - "Name is required": ["Zahtevano je ime"], - "Name must be unique": ["Ime mora biti unikatno"], - "Name of table to be created from columnar data.": [ - "Ime tabele, ki bo ustvarjena iz stolpčnih podatkov." + "X Tick Layout": ["Postavitev oznak na X-osi"], + "flat": ["ravno"], + "staggered": ["cik-cak"], + "The way the ticks are laid out on the X-axis": [ + "Način razporeditve oznak na X-osi" ], - "Name of table to be created from excel data.": [ - "Ime tabele, ki bo ustvarjena iz Excel-ovih podatkov." + "X Axis Format": ["Oblika X-osi"], + "Y Log Scale": ["Logaritemska Y-os"], + "Use a log scale for the Y-axis": ["Uporabi logaritemsko skalo za Y-os"], + "Y Axis Bounds": ["Meje Y-osi"], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Meje Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." ], - "Name of table to be created with CSV file": [ - "Ime tabele, ki bo ustvarjena iz CSV podatkov" + "Y Axis 2 Bounds": ["Meje Y-osi 2"], + "X bounds": ["Meje X-osi"], + "Whether to display the min and max values of the X-axis": [ + "Če želite prikaz min. in max. vrednosti X-osi" ], - "Name of the column containing the id of the parent node": [ - "Ime stolpca, ki vsebuje id nadrejenega vozlišča" + "Bar Values": ["Vrednosti stolpcev"], + "Show the value on top of the bar": [ + "Prikaži vrednosti na vrhu stolpcev" ], - "Name of the id column": ["Naziv id-stolpca"], - "Name of the source nodes": ["Imena izvornih vozlišč"], - "Name of the table that exists in the source database": [ - "Ime tabele, ki obstaja v izvorni podatkovni bazi" + "Stacked Bars": ["Naloženi stolpci"], + "Reduce X ticks": ["Manj oznak X-osi"], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Zmanjša število izrisanih oznak na X-osi. Če je vklopljeno, se x-os ne bo prelila in lahko oznake manjkajo. Če je izklopljeno, bo upoštevana min. širina stolpcev, ki pa se lahko prelije v horizontalni drsnik." ], - "Name of the target nodes": ["Imena ciljnih vozlišč"], - "Name of your tag": ["Ime vaše oznake"], - "Name your database": ["Poimenujte podatkovno bazo"], - "Need help? Learn how to connect your database": [ - "Potrebujete pomoč? Kako povezati vašo podatkovno bazo se naučite" + "You cannot use 45° tick layout along with the time range filter": [ + "Skupaj s filtriranjem časovnega obdobja ne morete uporabiti oznak pod 45° kotom" ], - "Need help? Learn more about": ["Potrebujete pomoč? Naučite se več o"], - "Network error": ["Napaka omrežja"], - "Network error.": ["Napaka omrežja."], - "New chart": ["Nov grafikon"], - "New columns added: %s": ["Dodani novi stolpci: %s"], - "New dataset": ["Nov podatkovni set"], - "New dataset name": ["Ime novega podatkovnega seta"], - "New filter set": ["Nov set filtrov"], - "New header": ["Nov naslov"], - "New tab": ["Nov zavihek"], - "New tab (Ctrl + q)": ["Nov zavihek (Ctrl + q)"], - "New tab (Ctrl + t)": ["Nov zavihek (Ctrl + t)"], - "Next": ["Naslednji"], - "Nightingale Rose Chart": ["Nightingale Rose grafikon"], - "No": ["Ne"], - "No %s yet": ["%s še ne obstajajo"], - "No Data": ["Ni podatkov"], - "No Results": ["Ni rezultatov"], - "No Rules yet": ["Pravil še ni"], - "No Tags created": ["Ni ustvarjenih oznak"], - "No annotation layers": ["Ni slojev z oznakami"], - "No annotation layers yet": ["Slojev z oznakami še ni"], - "No annotation yet": ["Oznak še ni"], - "No applied filters": ["Ni uporabljenih filtrov"], - "No available filters.": ["Ni razpoložljivih filtrov."], - "No charts": ["Ni grafikonov"], - "No charts yet": ["Ni še grafikonov"], - "No columns": ["Brez stolpcev"], - "No columns found": ["Ni najdenih stolpcev"], - "No compatible columns found": ["Ni najdenih skladnih stolpcev"], - "No compatible datasets found": [ - "Ni najdenih skladnih podatkovnih setov" - ], - "No compatible schema found": ["Ni najdenih skladnih shem"], - "No dashboards": ["Ni nadzornih plošč"], - "No dashboards yet": ["Ni še nadzornih plošč"], - "No data": ["Ni podatkov"], - "No data after filtering or data is NULL for the latest time record": [ - "Ni podatkov po filtriranju ali pa imajo vrednost NULL za zadnji časovni zapis" + "Stacked Style": ["Slog nalaganja"], + "stack": ["nalaganje"], + "stream": ["tok"], + "expand": ["razširi"], + "Evolution": ["Evolucija"], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Grafikon časovne vrste, ki prikaže kako se povezane mere skupin spreminjajo skozi čas. Vsaka skupina je prikazana s svojo barvo." ], - "No data in file": ["V datoteki ni podatkov"], - "No databases match your search": [ - "Nobena podatkovna baza ne ustreza iskanju" + "Stretched style": ["Raztegnjen slog"], + "Stacked style": ["Naložen slog"], + "Video game consoles": ["Igralne konzole"], + "Vehicle Types": ["Vrste vozil"], + "Area Chart (legacy)": ["Ploščinski grafikon (zastarelo)"], + "Continuous": ["Zvezno"], + "Line": ["Črta"], + "nvd3": ["nvd3"], + "Deprecated": ["Zastarelo"], + "Series Limit Sort By": ["Razvrščanje omejitev serije"], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Mera, ki določa kako je razvrščena meja, če je določena omejitev serij. Če ni določena, se uporabi prva mera (kjer je to ustrezno)." ], - "No description available.": ["Opisa ni na razpolago."], - "No entities have this tag currently assigned": [ - "Noben element trenutno nima te oznake" + "Series Limit Sort Descending": ["Razvrsti padajoče"], + "Whether to sort descending or ascending if a series limit is present": [ + "Če želite padajoče ali naraščajoče razvrščanje, ko je prisotna omejitev serije" ], - "No favorite charts yet, go click on stars!": [ - "Priljubljenih grafikonov še ni. Kliknite na zvezdice!" + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Prikaže spreminjanje mere skozi čas s pomočjo stolpcev. Dodajte stolpec za združevanje po za prikaz mer na nivoju skupin in njihovega spreminjanja." ], - "No favorite dashboards yet, go click on stars!": [ - "Priljubljenih nadzornih plošč še ni. Kliknite na zvezdice!" + "Time-series Bar Chart (legacy)": [ + "Stolpčni grafikon za časovno vrsto (zastarelo)" ], - "No filter": ["Brez filtra"], - "No filter is selected.": ["Noben filter ni izbran."], - "No filters": ["Brez filtrov"], - "No filters are currently added to this dashboard.": [ - "Trenutno na nadzorno ploščo še ni dodanih filtrov." + "Bar": ["Stolpec"], + "Vertical": ["Navpično"], + "Box Plot": ["Box Plot"], + "X Log Scale": ["Logaritemska X-os"], + "Use a log scale for the X-axis": ["Uporabi logaritemsko skalo za X-os"], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Prikaže mero v treh dimenzijah podatkov na istem grafikonu (x os, y os, velikost mehurčka). Mehurčki v isti skupini so predstavljeni z barvo." ], - "No form settings were maintained": ["Nastavitve forme se niso ohranile"], - "No global filters are currently added": [ - "Trenutno ni dodanih globalnih filtrov" + "Bubble Chart (legacy)": ["Mehurčkasti grafikon (zastarelo)"], + "Ranges": ["Razponi"], + "Ranges to highlight with shading": ["Razponi za označitev s senčenjem"], + "Range labels": ["Oznake razponov"], + "Labels for the ranges": ["Oznake za razpone"], + "Markers": ["Markerji"], + "List of values to mark with triangles": [ + "Seznam vrednosti, ki bodo markirane s trikotniki" ], - "No matching records found": ["Ni ujemajočih zapisov"], - "No of Bins": ["Št. razdelkov"], - "No recents yet": ["Ni še nedavnih"], - "No records found": ["Ni zapisov"], - "No results": ["Ni rezultatov"], - "No results found": ["Rezultati niso najdeni"], - "No results match your filter criteria": [ - "Noben rezultat ne ustreza vašim kriterijem" + "Marker labels": ["Oznake markerjev"], + "Labels for the markers": ["Oznake za markerje"], + "Marker lines": ["Markirne črtice"], + "List of values to mark with lines": [ + "Seznam vrednosti, ki bodo markirane s črticami" ], - "No results were returned for this query": [ - "Poizvedba ni vrnila rezultatov" + "Marker line labels": ["Oznake markirnih črtic"], + "Labels for the marker lines": ["Oznake za markirne črtice"], + "KPI": ["KPI"], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Prikaže napredovanje posamezne mere glede na cilj. Večja napolnjenost, pomeni, da je mera bližje cilju." ], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ - "Poizvedba ni vrnila rezultatov. Če ste pričakovali rezultate, poskrbite, da so filtri pravilno nastavljeni in podatkovni vir vsebuje podatke za izbrano časovno obdobje." + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Prikaže več različnih časovnih vrst na istem grafikonu. Grafikon se opušča, zato priporočamo uporabo Grafikona časovne vrste." ], - "No rows were returned for this dataset": [ - "Za podatkovni set ni vrnjenih vrstic" + "Time-series Percent Change": ["Časovna vrsta - Procentualna sprememba"], + "Sort Bars": ["Uredi stolpce"], + "Sort bars by x labels.": ["Uredi stolpce po x-oznakah."], + "Breakdowns": ["Razčlenitev"], + "Defines how each series is broken down": [ + "Določa, kako se vsaka podatkovna serija razčleni" ], - "No samples were returned for this dataset": [ - "Za podatkovni set ni vrnjenih vzorcev" + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Primerjava mer različnih kategorij s pomočjo stolpcev. Dolžina stolpca prestavlja višino vrednosti, z barvami pa so ločene skupine." ], - "No saved expressions found": ["Shranjeni izrazi niso najdeni"], - "No saved metrics found": ["Shranjene mere niso najdene"], - "No saved queries yet": ["Ni še shranjenih poizvedb"], - "No stored results found, you need to re-run your query": [ - "Rezultatov še ni shranjenih, ponovno morate zagnati poizvedbo" + "Bar Chart (legacy)": ["Stolpčni graf (zastarelo)"], + "Additive": ["Aditivno"], + "Discrete": ["Diskretno"], + "Propagate": ["Razširi"], + "Send range filter events to other charts": [ + "Pošlji dogodke filtra obdobja na druge grafikone" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Tak stolpec ni najden. Za filtriranje po meri uporabite prilagojen SQL zavihek." + "Classic chart that visualizes how metrics change over time.": [ + "Standardni grafikon za prikaz spreminjanje mere skozi čas." ], - "No table columns": ["Ni stolpcev tabel"], - "No temporal columns found": ["Ni najdenih časovnih stolpcev"], - "No time columns": ["Ni časovnih stolpcev"], - "No validator found (configured for the engine)": [ - "Potrjevalnik ni najden (nastavljen za podatkovno bazo)" + "Battery level over time": ["Napolnjenost baterije skozi čas"], + "Line Chart (legacy)": ["Črtni grafikon (zastarelo)"], + "Label Type": ["Tip oznake"], + "Category Name": ["Ime kategorije"], + "Value": ["Vrednost"], + "Percentage": ["Procenti"], + "Category and Value": ["Kategorija in vrednost"], + "Category and Percentage": ["Kategorija in procent"], + "Category, Value and Percentage": ["Kategorija, vrednost in procent"], + "What should be shown on the label?": ["Kaj bo prikazano na oznaki?"], + "Donut": ["Kolobar"], + "Do you want a donut or a pie?": ["Želite kolobar ali torto?"], + "Show Labels": ["Prikaži oznake"], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Če želite prikazati oznake. Oznake so prikazane le nad 5-odstotnim pragom." ], - "Node label position": ["Položaj oznake vozlišča"], - "Node select mode": ["Način izbire vozlišč"], - "Node size": ["Velikost vozlišča"], - "None": ["Brez"], - "None -> Arrow": ["Brez -> Puščica"], - "None -> None": ["Brez -> Brez"], - "Normal": ["Normalno"], - "Normalize Across": ["Normiraj glede na"], - "Normalize column names": ["Normiraj imena stolpcev"], - "Normalized": ["Normiran"], - "Not Time Series": ["Ni časovna vrsta"], - "Not added to any dashboard": ["Ni dodano na nobeno nadzorno ploščo"], - "Not available": ["Ni razpoložljivo"], - "Not defined": ["Ni definirano"], - "Not equal to (≠)": ["Ni enako (≠)"], - "Not in": ["Ne vsebuje (NOT IN)"], - "Not null": ["Ni null (IS NOT NULL)"], - "Not triggered": ["Ni sproženo"], - "Not up to date": ["Ni posodobljeno"], - "Nothing triggered": ["Ni ni sproženo"], - "Notification method": ["Način obveščanja"], - "November": ["November"], - "Now": ["Zdaj"], - "Null Values": ["Prazne (Null) vrednosti"], - "Null imputation": ["Nadomeščanje Null-vrednosti"], - "Null or Empty": ["Nič (NULL) ali prazen"], - "Null values": ["Prazne (Null) vrednosti"], - "Number Format": ["Oblika zapisa števila"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ - "Številske meje za kodiranje barv od rdeče do modre.\n\tZamenjajte števili za barve od modre do rdeče. Če želite čisto rdečo ali modro,\n\tvnesite samo min ali max." + "Put labels outside": ["Postavi oznake zunaj"], + "Put the labels outside the pie?": ["Postavim oznake zunaj torte?"], + "Pie Chart (legacy)": ["Tortni grafikon (zastarelo)"], + "Frequency": ["Frekvenca"], + "Year (freq=AS)": ["Leto (freq=AS)"], + "52 weeks starting Monday (freq=52W-MON)": [ + "52 tednov z začetkom v ponedeljek (freq=52W-MON)" ], - "Number format": ["Oblika zapisa števila"], - "Number format string": ["Niz za obliko števila"], - "Number formatting": ["Oblika zapisa števila"], - "Number of buckets to group data": [ - "Število razdelkov za združevanje podatkov" + "1 week starting Sunday (freq=W-SUN)": [ + "1 teden z začetkom v nedeljo (freq=W-SUN)" ], - "Number of decimal digits to round numbers to": [ - "Število decimalnih mest za zaokroževanje števil" + "1 week starting Monday (freq=W-MON)": [ + "1 teden z začetkom v ponedeljek (freq=W-MON)" ], - "Number of decimal places with which to display lift values": [ - "Število decimalnih mest za prikaz vrednosti dviga" + "Day (freq=D)": ["Dan (freq=D)"], + "4 weeks (freq=4W-MON)": ["4 tedni (freq=4W-MON)"], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Periodičnost za vrtenje časa. Uporabnik lahko poda\n psevdonim za zamik v \"Pandas\".\n Kliknite na mehurček za podrobnosti dovoljenih izrazov za \"freq\"." ], - "Number of decimal places with which to display p-values": [ - "Število decimalnih mest za prikaz p-vrednosti" + "Time-series Period Pivot": ["Časovna serija - Vrtenje periode"], + "Formula": ["Formula"], + "Event": ["Dogodek"], + "Interval": ["Interval"], + "Stack": ["Naloži"], + "Stream": ["Tok"], + "Expand": ["Razširi"], + "Show legend": ["Prikaži legendo"], + "Whether to display a legend for the chart": [ + "Če želite prikaz legende za grafikon" ], - "Number of periods to compare against": [ - "Število časovnih obdobij za primerjavo" + "Margin": ["Rob"], + "Additional padding for legend.": ["Dodatni razmak za legendo."], + "Scroll": ["Drsnik"], + "Plain": ["Preprosto"], + "Legend type": ["Tip legende"], + "Orientation": ["Orientacija"], + "Bottom": ["Spodaj"], + "Right": ["Desno"], + "Legend Orientation": ["Orientacija legende"], + "Show Value": ["Prikaži vrednost"], + "Show series values on the chart": [ + "Na grafikonu prikaži vrednosti serij" ], - "Number of periods to ratio against": [ - "Število časovnih obdobij za izračun deleža" + "Stack series on top of each other": ["Nalagaj serije eno na drugo"], + "Only Total": ["Samo vsota"], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "Na naloženem grafikonu prikaži samo skupno vsoto, za izbrane kategorije pa ne" ], - "Number of rows of file to read": ["Število vrstic v datoteki za branje"], - "Number of rows of file to read.": [ - "Število vrstic v datoteki za branje." + "Percentage threshold": ["Procentualni prag"], + "Minimum threshold in percentage points for showing labels.": [ + "Minimalni prag v odstotnih točkah za prikaz oznak." ], - "Number of rows to skip at start of file": [ - "Število vrstic, ki se izpustijo na začetku datoteke" + "Rich tooltip": ["Podroben opis orodja"], + "Shows a list of all series available at that point in time": [ + "Prikaže seznam vseh razpoložljivih podatkovnih serij za istočasno točko" ], - "Number of rows to skip at start of file.": [ - "Število vrstic, ki se izpustijo na začetku datoteke." + "Tooltip time format": ["Oblika zapisa časa v opisu orodja"], + "Tooltip sort by metric": ["Mera za razvrščanje opisa orodja"], + "Whether to sort tooltip by the selected metric in descending order.": [ + "Če želite padajoče razvrstiti opis orodja z izbrano mero." ], - "Number of split segments on the axis": [ - "Število razdelkov na številčnici" + "Tooltip": ["Opis orodja"], + "Sort Series By": ["Razvrsti serije po"], + "Based on what should series be ordered on the chart and legend": [ + "Na osnovi česa so serije sortirane na grafikonu in legendi" ], - "Number of steps to take between ticks when displaying the X scale": [ - "Število korakov med oznakami pri prikazu X-osi" + "Sort Series Ascending": ["Razvrsti serije naraščajoče"], + "Sort series in ascending order": ["Razvrsti serije naraščajoče"], + "Rotate x axis label": ["Zavrti oznako x-osi"], + "Input field supports custom rotation. e.g. 30 for 30°": [ + "Vnosno polje omogoča poljubno rotacijo (vnesite 30 za 30°)" ], - "Number of steps to take between ticks when displaying the Y scale": [ - "Število korakov med oznakami pri prikazu Y-osi" + "Series Order": ["Razvrščanje serij"], + "Truncate X Axis": ["Prireži X-os"], + "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ + "Prireži X-os. Če določite spodnjo ali zgornjo mejo, preprečite prirezovanje. Deluje samo za numerično X os." ], - "Numerical range": ["Številski obseg"], - "OCT": ["OKT"], - "OK": ["OK"], - "OVERWRITE": ["PREPIŠI"], - "October": ["Oktober"], - "Offline": ["Offline"], - "Offset": ["Odmik"], - "On Grace": ["V mirovanju"], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "Eden ali več stolpcev za združevanje po. Združevanje z visoko kardinalnostjo naj vsebuje omejitev serij, s čimer omejite število pridobljenih in prikazanih serij." + "X Axis Bounds": ["Meje X-osi"], + "Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Meje numerične X-osi. Ni veljavno za časovne ali kategorične osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ - "Eden ali več kontrolnikov za združevanje po. Pri združevanju morata biti prisotna stolpca širine in dolžine." + "Minor ticks": ["Pomožne oznake"], + "Show minor ticks on axes.": ["Na oseh prikaži pomožne oznake."], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [ + "Zadnja razpoložljiva vrednost na %s" ], - "One or many controls to pivot as columns": [ - "En ali več kontrolnikov za stolpčno vrtenje" + "Not up to date": ["Ni posodobljeno"], + "No data": ["Ni podatkov"], + "No data after filtering or data is NULL for the latest time record": [ + "Ni podatkov po filtriranju ali pa imajo vrednost NULL za zadnji časovni zapis" ], - "One or many metrics to display": ["Ena ali več mer za prikaz"], - "One or more columns already exist": ["En ali več stolpcev že obstaja"], - "One or more columns are duplicated": [ - "En ali več stolpcev je podvojenih" + "Try applying different filters or ensuring your datasource has data": [ + "Poskusite uporabiti druge filtre oz. zagotovite, da so v podatkovnem viru podatki" ], - "One or more columns do not exist": ["En ali več stolpcev ne obstaja"], - "One or more metrics already exist": ["Ena ali več mer že obstaja"], - "One or more metrics are duplicated": ["Ena ali več mer je podvojenih"], - "One or more metrics do not exist": ["Ena ali več mer ne obstaja"], - "One or more parameters needed to configure a database are missing.": [ - "En ali več parametrov, potrebnih za nastavitev podatkovne baze, manjka." + "Big Number Font Size": ["Velikost pisave Velike številke"], + "Tiny": ["Drobno"], + "Small": ["Majhno"], + "Normal": ["Normalno"], + "Large": ["Veliko"], + "Huge": ["Ogromno"], + "Subheader Font Size": ["Velikost pisave podnaslova"], + "Display settings": ["Nastavitve prikaza"], + "Subheader": ["Podnaslov"], + "Description text that shows up below your Big Number": [ + "Besedilo, ki se prikaže pod veliko številko" ], - "One or more parameters specified in the query are malformed.": [ - "En ali več parametrov v SQL-poizvedbi ima napačno obliko." + "Date format": ["Oblika zapisa datuma"], + "Force date format": ["Vsili obliko zapisa datuma"], + "Use date formatting even when metric value is not a timestamp": [ + "Oblikovanje datuma uporabi tudi, ko vrednost mere ni časovna značka" ], - "One or more parameters specified in the query are missing.": [ - "En ali več parametrov v SQL-poizvedbi manjka." + "Conditional Formatting": ["Pogojno oblikovanje"], + "Apply conditional color formatting to metric": [ + "Za mere uporabi pogojno oblikovanje z barvami" ], - "One ore more annotation layers failed loading.": [ - "Eden ali več slojev z oznakami se ni naložil." + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Prikaže eno vrednost. Velika številka je primerna za poudarek KPI-ja ali vrednosti, na katero želite usmeriti pozornost." ], - "Only SELECT statements are allowed against this database.": [ - "Za to podatkovno bazo so dovoljeni le `SELECT` stavki." + "A Big Number": ["Velika številka"], + "With a subheader": ["S podnaslovom"], + "Big Number": ["Velika številka"], + "Comparison Period Lag": ["Preteklo obdobje za primerjavo"], + "Based on granularity, number of time periods to compare against": [ + "Število časovnih obdobij za primerjavo (na osnovi granulacije)" ], - "Only Total": ["Samo vsota"], - "Only `SELECT` statements are allowed": [ - "Dovoljeni so le `SELECT` stavki" + "Comparison suffix": ["Pripona za procent"], + "Suffix to apply after the percentage display": [ + "Pripona za prikaz procenta" ], - "Only applies when \"Label Type\" is not set to a percentage.": [ - "Veljavno samo, ko \"Tip oznake\" ni procent." + "Show Timestamp": ["Prikaži časovno značko"], + "Whether to display the timestamp": [ + "Če želite prikazati časovno značko" ], - "Only applies when \"Label Type\" is set to show values.": [ - "Veljavno samo, ko je izbran \"Tip oznake\" za prikaz vrednosti." + "Show Trend Line": ["Prikaži trendno črto"], + "Whether to display the trend line": ["Če želite prikazati trendno črto"], + "Start y-axis at 0": ["Začni y-os z 0"], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Začni y-os z nič. Ne izberite, če želite, da se y-os začne z najmanjšo vrednostjo podatkov." ], - "Only selected panels will be affected by this filter": [ - "Ta filter bo vplival le na izbrane grafikone" + "Fix to selected Time Range": ["Za celotno časovno obdobje"], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Trendna črta za celotno izbrano obdobje, v primeru, da filtrirani rezultati ne vsebujejo začetnega ali končnega datuma" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "Na naloženem grafikonu prikaži samo skupno vsoto, za izbrane kategorije pa ne" + "TEMPORAL X-AXIS": ["ČASOVNA X-OS"], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Prikaže eno vrednost skupaj s preprostim črtnim grafikonom, za poudarek pomembne mere skupaj z njeno časovno spremembo." ], - "Only single queries supported": ["Podprte so le enojne poizvedbe"], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Dovoljene so le naslednje končnice: %(allowed_extensions)s" + "Big Number with Trendline": ["Velika številka s trendno krivuljo"], + "Whisker/outlier options": ["Možnosti grafikona kvantilov"], + "Determines how whiskers and outliers are calculated.": [ + "Določa kako so izračunani kvantili in izstopajoče vrednosti." ], - "Oops! An error occurred!": ["Prišlo je do napake!"], - "Opacity": ["Prosojnost"], - "Opacity of Area Chart. Also applies to confidence band.": [ - "Prosojnost ploščinskega grafikona. Upošteva se tudi za interval zaupanja." + "Tukey": ["Tukey"], + "Min/max (no outliers)": ["Min/max (brez osamelcev)"], + "2/98 percentiles": ["2/98 percentil"], + "9/91 percentiles": ["9/91 percentil"], + "Categories to group by on the x-axis.": [ + "Kategorije za združevanje po x-osi." ], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [ - "Prosojnost vseh gruč, točk in oznak (vrednost med 0 in 1)." + "Distribute across": ["Porazdeli glede na"], + "Columns to calculate distribution across.": [ + "Stolpci za izračun porazdelitve." ], - "Opacity of area chart.": ["Prosojnost ploščinskega grafikona."], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Znan tudi kot grafikon škatla z brki. prikaže primerjavo porazdelitev povezanih mer v različnih skupinah. Škatla na sredini predstavlja povprečje, mediano in notranja 2 kvartila. Brki na vsaki škatli prikazujejo minimum, maksimum, območje in zunanja dva kvartila." + ], + "ECharts": ["ECharts"], + "Bubble size number format": ["Oblika zapisa velikosti mehurčka"], + "Bubble Opacity": ["Prosojnost mehurčka"], "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "Vrednost 0 pomeni popolno prosojnost, 1 pa neprosojnost" ], - "Opacity, expects values between 0 and 100": [ - "Prosojnost, vnesite vrednosti med 0 in 100" + "X AXIS TITLE MARGIN": ["OBROBA NASLOVA X-OSI"], + "Logarithmic x-axis": ["Logaritemska x-os"], + "Rotate y axis label": ["Zavrti oznako y-osi"], + "Y AXIS TITLE MARGIN": ["OBROBA NASLOVA Y-OSI"], + "Logarithmic y-axis": ["Logaritemska y-os"], + "Truncate Y Axis": ["Prireži Y-os"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Prireži Y-os. Če določite spodnjo ali zgornjo mejo, preprečite prirezovanje." ], - "Open Datasource tab": ["Odpri zavihek s podatkovnim virom"], - "Open in SQL Lab": ["Odpri v SQL laboratoriju"], - "Open query in SQL Lab": ["Odpri poizvedbo v SQL laboratoriju"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "Upravljanje podatkovne baze v asinhronem načinu pomeni, da se poizvedbe zaženejo na oddaljenih »delavcih« in ne na samem spletnem strežniku. S tem je predpostavljeno, da imate nastavljenega »delavca« za Celery in zaledni sistem za rezultate. Več informacij je v navodilih za namestitev." + "% calculation": ["% cizračun"], + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "Prikaži procente v oznakah in opisu orodja kot procent celotne vrednosti iz prve vrednosti v lijaku ali prejšnje vrednosti v lijaku." ], - "Operator": ["Operator"], - "Operator undefined for aggregator: %(name)s": [ - "Operand ni definiran za agregatorja: %(name)s" + "Calculate from first step": ["Izračunaj iz prvega koraka"], + "Calculate from previous step": ["Izračunaj iz prejšnjega koraka"], + "Percent of total": ["Procent celote"], + "Labels": ["Oznake"], + "Label Contents": ["Označi vsebino"], + "What should be shown as the label": ["Kaj bo prikazano na oznaki"], + "Tooltip Contents": ["Vsebina opisa orodja"], + "What should be shown as the tooltip label": [ + "Kaj bo prikazano na opisu orodja" ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Opcijska CA_BUNDLE vsebina, za potrjevanje HTTPS zahtev. Razpoložljivo le na določenih sistemih podatkovnih baz." + "Whether to display the labels.": ["Če želite prikaz oznak."], + "Show Tooltip Labels": ["Prikaži oznake na opisu orodja"], + "Whether to display the tooltip labels.": [ + "Če želite prikaz oznak opisa orodja." ], - "Optional d3 date format string": [ - "Opcijski niz za d3-oblikovanje datuma" + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Prikaže kako se mera spreminja, ko lijak napreduje. Standardni grafikon za prikaz sprememb med nivoji v procesu ali življenjskem ciklu." ], - "Optional d3 number format string": [ - "Opcijski niz za d3-oblikovanje števila" + "Funnel Chart": ["Lijakasti grafikon"], + "Sequential": ["Sekvenčni"], + "Columns to group by": ["Stolpci za združevanje po"], + "General": ["Splošno"], + "Min": ["Min"], + "Minimum value on the gauge axis": ["Najmanjša vrednost na številčnici"], + "Max": ["Max"], + "Maximum value on the gauge axis": ["Največja vrednost na številčnici"], + "Start angle": ["Začetni kot"], + "Angle at which to start progress axis": [ + "Kot, pri katerem se začne številčnica" ], - "Optional name of the data column.": [ - "Opcijsko ime podatkovnega stolpca." + "End angle": ["Končni kot"], + "Angle at which to end progress axis": [ + "Kot, pri katerem se konča številčnica" ], - "Optional warning about use of this metric": [ - "Opcijsko opozorilo za uporabo te mere" + "Font size": ["Velikost pisave"], + "Font size for axis labels, detail value and other text elements": [ + "Velikost pisave za oznake osi, podrobnosti in druge besedilne elemente" ], - "Options": ["Možnosti"], - "Or choose from a list of other databases we support:": [ - "Ali pa izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:" + "Value format": ["Oblika zapisa vrednosti"], + "Additional text to add before or after the value, e.g. unit": [ + "Dodatno besedilo, ki ga dodate pred ali za vrednost, npr. enota" ], - "Order by entity id": ["Uredi po ID-entitete"], - "Order results by selected columns": [ - "Razvrsti rezultate glede na izbrani stolpec" + "Show pointer": ["Prikaži kazalec"], + "Whether to show the pointer": ["Če želite prikazati kazalec"], + "Animation": ["Animacija"], + "Whether to animate the progress and the value or just display them": [ + "Če želite animiran prikaz grafikona" ], - "Ordering": ["Razvrščanje"], - "Orientation": ["Orientacija"], - "Orientation of bar chart": ["Orientacija stolpčnega grafikona"], - "Orientation of filter bar": ["Orientacija vrstice s filtri"], - "Orientation of tree": ["Orientacija drevesa"], - "Original": ["Izvoren"], - "Original table column order": ["Vrstni red stolpcev izvorne tabele"], - "Original value": ["Izvorna vrednost"], - "Orthogonal": ["Pravokotna"], - "Other": ["Ostalo"], - "Outdoors": ["Outdoors"], - "Outer Radius": ["Zunanji polmer"], - "Outer edge of Pie chart": ["Veljavno samo"], - "Overlap": ["Prekrivanje"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša se relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 hours, 7 days, 52 weeks, 365 days). Prosto besedilo je podprto." + "Axis": ["Os"], + "Show axis line ticks": ["Prikaži oznake na X-osi"], + "Whether to show minor ticks on the axis": [ + "Če želite prikaz pomožnih oznak na osi" ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša se relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 hours, 7 days, 52 weeks, 365 days). Prosto besedilo je podprto." + "Show split lines": ["Prikaži razdelitvene črte"], + "Whether to show the split lines on the axis": [ + "Če želite prikazati razdelitvene črte na osi" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ - "Prikaže šestkotno mrežo na zemljevidu in agregira podatke znotraj meja vsake celice." + "Split number": ["Število razdelitev"], + "Number of split segments on the axis": [ + "Število razdelkov na številčnici" ], - "Override time grain": ["Onemogoči granulacijo časa"], - "Override time range": ["Onemogoči časovno obdobje"], - "Overwrite": ["Prepiši"], - "Overwrite & Explore": ["Prepiši & Razišči"], - "Overwrite Dashboard [%s]": ["Prepiši nadzorno ploščo [%s]"], - "Overwrite Duplicate Columns": ["Prepiši podvojene stolpce"], - "Overwrite existing": ["Prepiši obstoječe"], - "Overwrite text in the editor with a query on this table": [ - "Besedilo v urejevalniku prepišite s poizvedbo na to tabelo" - ], - "Owned Created or Favored": ["Lastnik, Ustvaril ali Priljubljen"], - "Owner": ["Lastnik"], - "Owners": ["Lastniki"], - "Owners are invalid": ["Lastniki niso veljavni"], - "Owners is a list of users who can alter the dashboard.": [ - "\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo." + "Progress": ["Napredek"], + "Show progress": ["Prikaži območje"], + "Whether to show the progress of gauge chart": [ + "Prikaži merilno območje števčnega grafikona" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo. Iskanje je možno po imenu ali uporabniškem imenu." + "Overlap": ["Prekrivanje"], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "Če želite prekrivanje območij, ko imate več skupin podatkov" ], - "PDF download failed, please refresh and try again.": [ - "Prenos PDF ni uspel. Osvežite in poskusite ponovno." + "Round cap": ["Zaobljeni konci"], + "Style the ends of the progress bar with a round cap": [ + "Zaobljena oblika koncev območja" ], - "Page length": ["Dolžina strani"], - "Paired t-test Table": ["Tabela t-testa za odvisne vzorce"], - "Pandas resample method": ["Metoda za prevzorčenje v Pandas"], - "Pandas resample rule": ["Pravilo za prevzorčenje v Pandas"], - "Parallel Coordinates": ["Vzporedne koordinate"], - "Parameter error": ["Napaka parametra"], - "Parameters": ["Parametri"], - "Parameters ": ["Parametri "], - "Parameters related to the view and perspective on the map": [ - "Parametri povezani s pogledom in perspektivo zemljevida" + "Intervals": ["Intervali"], + "Interval bounds": ["Meje intervalov"], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Z vejico ločeni intervali, npr. 2,4,5 za intervale 0-2, 2-4 in 4-5. Zadnja številka naj bo enaka vrednosti za MAX." ], - "Parent": ["Nadrejeni"], - "Parse Dates": ["Prepoznaj datume"], - "Part of a Whole": ["Del celote"], - "Partition Chart": ["Grafikon razdelkov"], - "Partition Diagram": ["Grafikon s pravokotniki"], - "Partition Limit": ["Omejitev particij"], - "Partition Threshold": ["Prag particije"], - "Partitions whose height to parent height proportions are below this value are pruned": [ - "Particije z nižjim razmerjem med njihovo višino in dolžino starša so zanemarjene" + "Interval colors": ["Barve intervalov"], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Z vejico ločene barve za intervale, npr. 1,2,4. Cela števila predstavljajo barve iz barvne sheme (začnejo se z 1). Dolžina mora ustrezati mejam intervala." ], - "Password": ["Geslo"], - "Paste Private Key here": ["Prilepite privatni ključ sem"], - "Paste content of service credentials JSON file here": [ - "Sem prilepite vsebino json-datoteke servisnega računa" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Uporablja števec za prikaz napredovanja mere k ciljni vrednosti. Položaj kazalca predstavlja napredek, končna vrednost na števcu pa ciljno vrednost." ], - "Paste the shareable Google Sheet URL here": [ - "Prilepite deljeni URL Googlove preglednice sem" + "Gauge Chart": ["Števčni grafikon"], + "Name of the source nodes": ["Imena izvornih vozlišč"], + "Name of the target nodes": ["Imena ciljnih vozlišč"], + "Source category": ["Kategorija izvora"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Kategorija izvornih vozlišč, na podlagi katere je določena barva. Če je vozlišče povezano z več kot eno kategorijo, bo uporabljena samo prva." ], - "Pattern": ["Vzorec"], - "Percent Change": ["Procentualna sprememba"], - "Percent of total": ["Procent celote"], - "Percentage": ["Procenti"], - "Percentage change": ["Procentualna sprememba"], - "Percentage metrics": ["Procentualne mere"], - "Percentage threshold": ["Procentualni prag"], - "Percentages": ["Procenti"], - "Performance": ["Zmogljivost"], - "Period average": ["Povprečje obdobja"], - "Periods": ["Št. period"], - "Periods must be a whole number": ["Periode morajo biti celo število"], - "Person or group that has certified this chart.": [ - "Oseba ali skupina, ki je certificirala ta grafikon." + "Target category": ["Kategorija cilja"], + "Category of target nodes": ["Kategorija ciljnih vozlišč"], + "Chart options": ["Možnosti grafikona"], + "Layout": ["Izgled"], + "Graph layout": ["Izgled grafikona"], + "Force": ["Sila"], + "Layout type of graph": ["Tip izgleda grafikona"], + "Edge symbols": ["Simboli povezav"], + "Symbol of two ends of edge line": ["Simbol za konca povezave"], + "None -> None": ["Brez -> Brez"], + "None -> Arrow": ["Brez -> Puščica"], + "Circle -> Arrow": ["Krog -> Puščica"], + "Circle -> Circle": ["Krog -> Krog"], + "Enable node dragging": ["Omogoči premikanje vozlišč"], + "Whether to enable node dragging in force layout mode.": [ + "Če želite omogočiti premikanje vozlišč v načinu vsiljenega prikaza." ], - "Person or group that has certified this dashboard.": [ - "Oseba ali skupina, ki je certificirala to nadzorno ploščo." + "Enable graph roaming": ["Omogoči preoblikovanje grafikona"], + "Disabled": ["Onemogočeno"], + "Scale only": ["Samo povečava"], + "Move only": ["Samo premikanje"], + "Scale and Move": ["Povečava in premikanje"], + "Whether to enable changing graph position and scaling.": [ + "Če želite omogočiti premikanje in povečevanje/zmanjševanje grafikona." ], - "Person or group that has certified this metric": [ - "Oseba ali skupina, ki je certificirala to mero" + "Node select mode": ["Način izbire vozlišč"], + "Single": ["Posamezno"], + "Multiple": ["Več"], + "Allow node selections": ["Dovoli izbiro vozlišča"], + "Label threshold": ["Prag oznak"], + "Minimum value for label to be displayed on graph.": [ + "Najmanjša vrednost, za katero bo na grafikonu prikazana oznaka." ], - "Physical": ["Fizičen"], - "Physical (table or view)": ["Fizičen (tabela ali pogled)"], - "Physical dataset": ["Fizičen podatkovni set"], - "Pick a dimension from which categorical colors are defined": [ - "Izberite dimenzijo, ki bo določala kategorične barve" + "Node size": ["Velikost vozlišča"], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "Mediana velikosti vozlišča. Največje vozlišče bo 4-krat večje od najmanjšega" ], - "Pick a metric for x, y and size": ["Izberite mere za x, y in velikost"], - "Pick a metric to display": ["Izberite mero za prikaz"], - "Pick a name to help you identify this database.": [ - "Izberite ime za lažjo prepoznavo podatkovne baze." + "Edge width": ["Debelina povezave"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Mediana debeline povezave. Najdebelejša povezava bo 4-krat debelejša od najtanjše." ], - "Pick a nickname for how the database will display in Superset.": [ - "Izberite vzdevek za to podatkovno bazo, ki bo prikazan v Supersetu." + "Edge length": ["Dolžina povezave"], + "Edge length between nodes": ["Dolžina povezave med vozlišči"], + "Gravity": ["Gravitacija"], + "Strength to pull the graph toward center": [ + "Sila privlačnosti med grafikonom in središčem" ], - "Pick a set of deck.gl charts to layer on top of one another": [ - "Izberite nabor deck.gl grafikonov, ki bodo nanizani en na drugem" + "Repulsion": ["Odbijanje"], + "Repulsion strength between nodes": ["Odbojna sila med vozlišči"], + "Friction": ["Trenje"], + "Friction between nodes": ["Trenje med vozlišči"], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Prikaže povezave med entitetami v strukturi grafa. Uporabno za prikaz razmerij in pomembnih točk v omrežju. Grafikon je lahko krožnega tipa ali z usmerjenimi silami. Če imajo podatki geoprostorsko komponento, poskusite grafikon decl.gl - Arc." ], - "Pick a title for you annotation.": ["Izberite naslov za oznako."], - "Pick at least one field for [Series]": [ - "Izberite vsaj eno polje za [Serije]" + "Graph Chart": ["Graf"], + "Structural": ["Strukturni"], + "Whether to sort descending or ascending": [ + "Če želite padajoče ali naraščajoče razvrščanje" ], - "Pick at least one metric": ["Izberite vsaj eno mero"], - "Pick exactly 2 columns as [Source / Target]": [ - "Izberite natanko dva stolpca za [Izvor / Cilj]" + "Series type": ["Tip serije"], + "Smooth Line": ["Zglajena črta"], + "Step - start": ["Stopnica - začetek"], + "Step - middle": ["Stopnica - sredina"], + "Step - end": ["Stopnica - konec"], + "Series chart type (line, bar etc)": [ + "Tip grafikona za posamezno podatkovno serijo (črtni, stolpčni, ...)" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "Izberite enega ali več stolpcev, ki bodo prikazani v oznakah. Če ne izberete stolpca, bodo prikazani vsi." + "Stack series": ["Nalagaj serije"], + "Area chart": ["Ploščinski grafikon"], + "Draw area under curves. Only applicable for line types.": [ + "Izriši površino pod krivuljo. Samo za črtne grafikone." ], - "Pick your favorite markup language": [ - "Izberite svoj priljubljen označevalni jezik" + "Opacity of area chart.": ["Prosojnost ploščinskega grafikona."], + "Marker": ["Marker"], + "Draw a marker on data points. Only applicable for line types.": [ + "Nariši markerje na točke grafikona. Samo za črtne grafikone." ], - "Pie Chart": ["Tortni grafikon"], - "Pie Chart (legacy)": ["Tortni grafikon (zastarelo)"], - "Pie shape": ["Oblika torte"], - "Pin": ["Žebljiček"], - "Pivot Table": ["Vrtilna tabela"], - "Pivot operation must include at least one aggregate": [ - "Vrtilna operacija mora vsebovati vsaj en agregat" + "Marker size": ["Velikost markerja"], + "Size of marker. Also applies to forecast observations.": [ + "Velikost markerja. Upošteva se tudi za napovedi." ], - "Pivot operation requires at least one index": [ - "Vrtilna operacija zahteva vsaj en indeks" + "Primary": ["Primarna"], + "Secondary": ["Sekundarna"], + "Primary or secondary y-axis": ["Primarna ali sekundarna y-os"], + "Shared query fields": ["Polja deljenih poizvedb"], + "Query A": ["Poizvedba A"], + "Advanced analytics Query A": ["Napredna analitika za poizvedbo A"], + "Query B": ["Poizvedba B"], + "Advanced analytics Query B": ["Napredna analitika za poizvedba B"], + "Data Zoom": ["Zoom funkcija"], + "Enable data zooming controls": [ + "Omogoči kontrolnik za povečavo podatkov" ], - "Pivoted": ["Vrtilni"], - "Pixel height of each series": ["Višina vsake serije v pikslih"], - "Pixels": ["Piksli"], - "Plain": ["Preprosto"], - "Please DO NOT overwrite the \"filter_scopes\" key.": [ - "NE SPREMINJAJTE ključa \"filter_scopes\"." + "Minor Split Line": ["Pomožna ločilna črta"], + "Draw split lines for minor y-axis ticks": [ + "Izriši ločilne črte za pomožne oznake y-osi" ], - "Please apply filter changes": ["Potrdite spremembe filtra"], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "V poizvedbi preverite, da so vsi parametri obdani z dvojnimi oklepaji, npr. \"{{ ds }}\". Potem poskusite ponovno." + "Primary y-axis Bounds": ["Meje primarne y-osi"], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Meje primarne Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "Preverite, če ima vaša poizvedba sintaktične napake pri \"%(syntax_error)s\". Potem ponovno poženite poizvedbo." + "Primary y-axis format": ["Oblika primarne y-osi"], + "Logarithmic scale on primary y-axis": [ + "Logaritemska skala na primarni y-osi" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "Preverite, če ima vaša poizvedba sintaktične napake pri \"%(server_error)s\". Potem ponovno poženite poizvedbo." + "Secondary y-axis Bounds": ["Meje sekundarne y-osi"], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Meje sekundarne Y-osi. Deluje le, če so omogočene odvisne meje Y-osi.\n Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov.\n Funkcija omeji le prikaz, obseg podatkov pa ostane enak." ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ - "Preverite, če imajo jinja parametri sintaktične napake in poskrbite, da se ujemajo znotraj SQL-poizvedbe. Potem ponovno poženite poizvedbo." + "Secondary y-axis format": ["Oblika sekundarne y-osi"], + "Secondary currency format": ["Oblika sekundarne valute"], + "Secondary y-axis title": ["Naslov sekundarne y-osi"], + "Logarithmic scale on secondary y-axis": [ + "Logaritemska skala na sekundarni y-osi" ], - "Please choose at least one groupby": ["Izberite vsaj en 'Group by'"], - "Please confirm": ["Prosim, potrdite"], - "Please confirm the overwrite values.": ["Potrdite vrednosti za prepis."], - "Please enter a SQLAlchemy URI to test": [ - "Vnesite SQLAlchemy URI za test" + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Prikaže dva različna niza na isti x-osi. Niza sta lahko prikazana z različnim tipom grafikona (npr. en s stolpci in drug s črto)." ], - "Please filter set name": ["Vnesite ime seta filtrov"], - "Please re-enter the password.": ["Ponovno vpišite geslo."], - "Please re-export your file and try importing again": [ - "Ponovno izvozite datoteko in jo nato uvozite" + "Mixed Chart": ["Kombinirani grafikon"], + "Put the labels outside of the pie?": ["Postavim oznake zunaj torte?"], + "Label Line": ["Črta oznake"], + "Draw line from Pie to label when labels outside?": [ + "Ali želite črto do oznake, ko so le-te zunaj?" ], - "Please reach out to the Chart Owner for assistance.": [ - "Za pomoč se obrnite na lastnika grafikona.", - "Za pomoč se obrnite na lastnika grafikona.", - "Za pomoč se obrnite na lastnike grafikona.", - "Za pomoč se obrnite na lastnike grafikona." + "Show Total": ["Prikaži vsoto"], + "Whether to display the aggregate count": [ + "Če želite prikazati agregirano število" ], - "Please save the query to enable sharing": [ - "Shranite poizvedbo za deljenje" + "Pie shape": ["Oblika torte"], + "Outer Radius": ["Zunanji polmer"], + "Outer edge of Pie chart": ["Veljavno samo"], + "Inner Radius": ["Notranji polmer"], + "Inner radius of donut hole": ["Notranji polmer kolobarja"], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Standardni grafikon za prikaz deležev. Tortne grafikone je težje natančno interpretirati, takrat lahko uporabite npr. stolpčni grafikon." ], - "Please save your chart first, then try creating a new email report.": [ - "Najprej shranite grafikon, potem pa poskusite ustvariti novo e-poštno poročilo." - ], - "Please save your dashboard first, then try creating a new email report.": [ - "Najprej shranite nadzorno ploščo, potem pa poskusite ustvariti novo e-poštno poročilo." + "Pie Chart": ["Tortni grafikon"], + "Total: %s": ["Skupaj: %s"], + "The maximum value of metrics. It is an optional configuration": [ + "Največja vrednost mere. To je opcijska nastavitev" ], - "Please select both a Dataset and a Chart type to proceed": [ - "Za nadaljevanje izberite podatkovni set in tip grafikona" + "Label position": ["Položaj oznake"], + "Radar": ["Radar"], + "Customize Metrics": ["Prilagodi mere"], + "Further customize how to display each metric": [ + "Dodatne prilagoditve prikaza posameznih mer" ], - "Please use 3 different metric labels": [ - "Uporabite 3 različne nazive mer" + "Circle radar shape": ["Okrogla oblika radarja"], + "Radar render type, whether to display 'circle' shape.": [ + "Prikaz radarja okrogle oblike." ], - "Plot the distance (like flight paths) between origin and destination.": [ - "Izriši razdalje (kot letalske koridorje) med izhodiščem in ciljem." + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Prikaže vzporedni nabor mer za različne skupine. Vsaka skupina je prikazana s svojim naborom točk in vsaka mera s povezavo na grafikonu." ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ - "Izriše posamezne mere za vsako vrstico podatkov navpično in jih med seboj poveže kot črto. Grafikon je uporaben za primerjavo več mer med vsemi vzorci ali vrsticami podatkov." + "Radar Chart": ["Radarski grafikon"], + "Primary Metric": ["Primarna mera"], + "The primary metric is used to define the arc segment sizes": [ + "Primarna mera določa velikost lokov segmentov" ], - "Plugins": ["Vtičniki"], - "Point Color": ["Barva točke"], - "Point Radius": ["Radij točk"], - "Point Radius Scale": ["Skaliranje radija točk"], - "Point Radius Unit": ["Enota radija točk"], - "Point Size": ["Velikost točke"], - "Point Unit": ["Enota točke"], - "Point to your spatial columns": [ - "Pokažite na stolpec z lokacijskimi podatki" + "Secondary Metric": ["Sekundarna mera"], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "[opcijsko] sekundarna mera določa barvo kot razmerje do primarne mere. Če je izpuščena, je barva določena kategorično na podlagi oznak" ], - "Points": ["Točke"], - "Points and clusters will update as the viewport is being changed": [ - "Točke in gruče se bodo posodabljale, če se bo spremenil pogled" + "When only a primary metric is provided, a categorical color scale is used.": [ + "Če je podana samo primarna metrika, je uporabljena kategorična barvna skala." ], - "Polygon Column": ["Stolpec poligonov"], - "Polygon Encoding": ["Kodiranje poligonov"], - "Polygon Settings": ["Nastavitve poligonov"], - "Polyline": ["Poli-linija"], - "Popular": ["Priljubljeni"], - "Populate \"Default value\" to enable this control": [ - "Izpolnite \"Privzeto vrednost\", da omogočite ta kontrolnik" + "When a secondary metric is provided, a linear color scale is used.": [ + "Če je podana sekundarna metrika, je uporabljena linearna barvna skala." ], - "Population age data": ["Podatki starosti populacije"], - "Port": ["Vrata"], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "Vrata %(port)s na gostitelju \"%(hostname)s\" niso sprejela povezave." + "Hierarchy": ["Hierarhija"], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Nastavi hierarhične nivoje grafikona. Vsak nivo je\n\tpredstavljen z enim obročem, pri čemer je notranji krog na vrhu hierarhije." ], - "Port out of range 0-65535": ["Vrata v razponu 0-65535"], - "Position JSON": ["JSON za postavitev"], - "Position of child node label on tree": [ - "Položaj oznake podrejenega vozlišča na drevesu" + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "S pomočjo krogov prikaže potek podatkov na različnih nivojih sistema. S premikom kurzorja prikaže vrednosti na posameznem nivoju. Uporabno za večnivojsko, večskupinsko vizualizacijo." ], - "Position of column level subtotal": [ - "Položaj delnih vsot na nivoju stolpcev" + "Sunburst Chart": ["Večnivojski tortni grafikon"], + "Multi-Levels": ["Večplastni"], + "When using other than adaptive formatting, labels may overlap": [ + "Če ne uporabljate prilagodljive oblike, se oznake lahko prekrivajo" ], - "Position of intermediate node label on tree": [ - "Položaj vmesne oznake vozlišča na drevesu" + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Univerzalni grafikon za vizualizacijo podatkov. Izbirajte med stopničastimi, črtnimi, raztresenimi in stolpčnimi grafikoni. Grafikon ima širok nabor prilagoditev." ], - "Position of row level subtotal": [ - "Položaj delnih vsot na nivoju vrstic" + "Generic Chart": ["Generičen grafikon"], + "zoom area": ["približaj območje"], + "restore zoom": ["ponastavi prikaz"], + "Series Style": ["Slog serije"], + "Area chart opacity": ["Prosojnost ploščinskega grafikona"], + "Opacity of Area Chart. Also applies to confidence band.": [ + "Prosojnost ploščinskega grafikona. Upošteva se tudi za interval zaupanja." ], - "Powered by Apache Superset": ["Omogoča Apache Superset"], - "Pre-filter": ["Predfilter"], - "Pre-filter available values": ["Predfiltriraj razpoložljive vrednosti"], - "Pre-filter is required": ["Zahtevan je predfilter"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Privzeta vrednost za pridobivanje različnih vrednost pri oblikovanju filtrov. Podpira sintakso za jinja predloge. Potrebno le, ko je vključeno `Omogoči izbiro filtra`." + "Marker Size": ["Velikost markerja"], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Ploščinski grafikoni so podobni črtnim grafikonom, saj predstavljajo spremenljivke v istem razmerju, vendar se pri ploščinskih grafikonih mere nalagajo ena na drugo." ], - "Predictive": ["Prediktivno"], - "Predictive Analytics": ["Prediktivna analitika"], - "Prefix": ["Predpona"], - "Prefix or suffix": ["Predpona ali pripona"], - "Preview": ["Predogled"], - "Preview: `%s`": ["Predogled: `%s`"], - "Previous": ["Prejšnji"], - "Previous Line": ["Prejšnja linija"], - "Primary": ["Primarna"], - "Primary Metric": ["Primarna mera"], - "Primary key": ["Primarni ključ"], - "Primary or secondary y-axis": ["Primarna ali sekundarna y-os"], - "Primary y-axis Bounds": ["Meje primarne y-osi"], - "Primary y-axis format": ["Oblika primarne y-osi"], - "Private Key": ["Privatni ključ"], - "Private Key & Password": ["Privatni ključ in geslo"], - "Private Key Password": ["Geslo privatnega ključa"], - "Proceed": ["Nadaljuj"], - "Profile": ["Profil"], - "Profile picture provided by Gravatar": [ - "Profilno sliko je zagotovil Gravatar" + "Area Chart": ["Ploščinski grafikon"], + "Axis Title": ["Naslov osi"], + "AXIS TITLE MARGIN": ["OBROBA OZNAKE OSI"], + "AXIS TITLE POSITION": ["POLOŽAJ OZNAKE OSI"], + "Axis Format": ["Oblika osi"], + "Logarithmic axis": ["Logaritemska os"], + "Draw split lines for minor axis ticks": [ + "Izriši ločilne črte za pomožne oznake osi" ], - "Progress": ["Napredek"], - "Progressive": ["Progresivno"], - "Propagate": ["Razširi"], - "Proportional": ["Proporcionalno"], - "Public and privately shared sheets": [ - "Javno in zasebno deljene preglednice" + "Truncate Axis": ["Prireži os"], + "It’s not recommended to truncate axis in Bar chart.": [ + "V stolpčnem grafikonu ni priporočljivo omejiti osi." ], - "Publicly shared sheets only": ["Samo javno deljene preglednice"], - "Published": ["Objavljeno"], - "Purple": ["Vijolična"], - "Put labels outside": ["Postavi oznake zunaj"], - "Put the labels outside of the pie?": ["Postavim oznake zunaj torte?"], - "Put the labels outside the pie?": ["Postavim oznake zunaj torte?"], - "Put your code here": ["Vstavite svojo kodo sem"], - "Python datetime string pattern": ["Pythonov format zapisa datum-časa"], - "QUERY DATA IN SQL LAB": ["POIZVEDBA V SQL-LABORATORIJU"], - "Quarter": ["Četrtletje"], - "Quarters %s": ["Četrtletja %s"], - "Queries": ["Poizvedbe"], - "Query": ["Poizvedba"], - "Query %s: %s": ["Poizvedba %s: %s"], - "Query A": ["Poizvedba A"], - "Query B": ["Poizvedba B"], - "Query History": ["Zgodovina poizvedb"], - "Query does not exist": ["Poizvedba ne obstaja"], - "Query history": ["Zgodovina poizvedb"], - "Query imported": ["Poizvedba uvožena"], - "Query in a new tab": ["Poizvedba v novem zavihku"], - "Query is too complex and takes too long to run.": [ - "Poizvedba je prekompleksna in se izvaja predolgo." + "Axis Bounds": ["Meje osi"], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Meje osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." ], - "Query mode": ["Način poizvedbe"], - "Query name": ["Ime poizvedbe"], - "Query preview": ["Predogled poizvedbe"], - "Query was stopped": ["Poizvedba je bila ustavljena"], - "Query was stopped.": ["Poizvedba je bila ustavljena."], - "RANGE TYPE": ["TIP OBDOBJA"], - "RGB Color": ["RGB barva"], - "RLS Rule not found.": ["RLS-pravilo ni najdeno."], - "RLS rules could not be deleted.": ["RLS-pravil ni mogoče izbrisati."], - "Radar": ["Radar"], - "Radar Chart": ["Radarski grafikon"], - "Radar render type, whether to display 'circle' shape.": [ - "Prikaz radarja okrogle oblike." + "Chart Orientation": ["Orientacija grafikona"], + "Bar orientation": ["Orientacija stolpcev"], + "Horizontal": ["Vodoravno"], + "Orientation of bar chart": ["Orientacija stolpčnega grafikona"], + "Bar Charts are used to show metrics as a series of bars.": [ + "Stolpčni grafikoni se uporabljajo za prikaz mer z nizi stolpcev." ], - "Radial": ["Radialna"], - "Radius in kilometers": ["Polmer v kilometrih"], - "Radius in meters": ["Polmer v metrih"], - "Radius in miles": ["Polmer v miljah"], - "Ran %s": ["Pretečeno %s"], - "Range": ["Doseg"], - "Range filter": ["Filter obdobja"], - "Range filter plugin using AntD": [ - "Vtičnik za filter obdobja z uporabo AntD" + "Bar Chart": ["Stolpčni grafikon"], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Črtni grafikon se uporablja se za vizualizacijo meritev zajetih skozi čas. Posamezne točke so med seboj povezane z ravnimi črtami." ], - "Range labels": ["Oznake razponov"], - "Ranges": ["Razponi"], - "Ranges to highlight with shading": ["Razponi za označitev s senčenjem"], - "Ranking": ["Rangiranje"], - "Ratio": ["Razmerje"], - "Raw records": ["Surovi podatki"], - "Ready to review filters in this dashboard?": [ - "Ste pripravljeni za pregled filtrov v tej nadzorni plošči?" + "Line Chart": ["Črtni grafikon"], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Raztreseni grafikon ima vodoravno os v linearnih enotah, prikazuje podatkovne točke v povezanem redu in prikazuje statistično razmerje med dvema spremenljivkama." ], - "Rebuild": ["Obnovi"], - "Recent activity": ["Nedavna aktivnost"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Nedavno ustvarjeni grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane tukaj" + "Scatter Plot": ["Raztreseni grafikon"], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Zglajeni črtni grafikon je izpeljanka črtnega grafikona, ki zgladi ostre robove krivulje." ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Nedavno urejani grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane tukaj" + "Step type": ["Stopnični tip"], + "Start": ["Začetek"], + "Middle": ["Sredina"], + "End": ["Konec"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Določa, če se na začetku, na sredini ali na koncu pojavi stopnica med dvema točkama" ], - "Recently modified": ["Nedavno spremenjeno"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Nedavno ogledani grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane tukaj" + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Stopničasti grafikon je izpeljanka črtnega grafikona, pri čemer krivuljo tvorijo stopnice med posameznimi točkami. Koristen je za prikaz sprememb na posameznih intervalih." ], - "Recents": ["Nedavno"], - "Recipients are separated by \",\" or \";\"": [ - "Prejemniki so ločeni z \",\" ali \";\"" + "Stepped Line": ["Stopničasta črta"], + "Id": ["Id"], + "Name of the id column": ["Naziv id-stolpca"], + "Parent": ["Nadrejeni"], + "Name of the column containing the id of the parent node": [ + "Ime stolpca, ki vsebuje id nadrejenega vozlišča" ], - "Recommended tags": ["Priporočene oznake"], - "Record Count": ["Število zapisov"], - "Rectangle": ["Pravokotnik"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Preusmeri v to končno točko, ko kliknete na tabelo v seznamu tabel" + "Optional name of the data column.": [ + "Opcijsko ime podatkovnega stolpca." ], - "Redo the action": ["Ponovno uveljavi dejanje"], - "Reduce X ticks": ["Manj oznak X-osi"], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ - "Zmanjša število izrisanih oznak na X-osi. Če je vklopljeno, se x-os ne bo prelila in lahko oznake manjkajo. Če je izklopljeno, bo upoštevana min. širina stolpcev, ki pa se lahko prelije v horizontalni drsnik." + "Root node id": ["Id korenskega vozlišča"], + "Id of root node of the tree.": ["Id korenskega vozlišča drevesa."], + "Metric for node values": ["Mera za vrednosti vozlišč"], + "Tree layout": ["Oblika drevesa"], + "Orthogonal": ["Pravokotna"], + "Radial": ["Radialna"], + "Layout type of tree": ["Način izgleda drevesa"], + "Tree orientation": ["Orientacija drevesa"], + "Left to Right": ["Od leve proti desni"], + "Right to Left": ["Od desne proti levi"], + "Top to Bottom": ["Od vrha proti dnu"], + "Bottom to Top": ["Od dna proti vrhu"], + "Orientation of tree": ["Orientacija drevesa"], + "Node label position": ["Položaj oznake vozlišča"], + "left": ["levo"], + "top": ["zgoraj"], + "right": ["desno"], + "bottom": ["spodaj"], + "Position of intermediate node label on tree": [ + "Položaj vmesne oznake vozlišča na drevesu" ], - "Refer to the": ["Obrnite se na"], - "Referenced columns not available in DataFrame.": [ - "Referencirani stolpci niso razpoložljivi v Dataframe-u." - ], - "Refetch results": ["Ponovno pridobi rezultate"], - "Refresh": ["Osveži"], - "Refresh dashboard": ["Osveži nadzorno ploščo"], - "Refresh frequency": ["Frekvenca osveževanja"], - "Refresh interval": ["Interval osveževanja"], - "Refresh interval saved": ["Interval osveževanja shranjen"], - "Refresh the default values": ["Osveži privzete vrednosti"], - "Refreshing charts": ["Osveževanje grafikonov"], - "Refreshing columns": ["Osveževanje stolpcev"], - "Regular": ["Navaden"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "Navadni filtri dodajo WHERE stavek v poizvedbe, če ima uporabnik vlogo podano v filtru. Osnovni filtri filtrirajo vse poizvedbe, razen vlog, definiranih v filtru, in jih je mogoče uporabiti za nastavitev tega kaj uporabnik vidi, če v skupini filtrov ni RLS-filtrov, ki bi se nanašali nanje." + "Child label position": ["Položaj podrejene oznake"], + "Position of child node label on tree": [ + "Položaj oznake podrejenega vozlišča na drevesu" ], - "Relational": ["Relacijsko"], - "Relationships between community channels": [ - "Razmerja med skupnostnimi kanali" + "Emphasis": ["Poudari"], + "ancestor": ["nadrejeni"], + "descendant": ["podrejeni"], + "Which relatives to highlight on hover": [ + "Kateri element se poudari na prehodu z miško" ], - "Relative Date/Time": ["Relativen Datum/Čas"], - "Relative period": ["Relativno obdobje"], - "Relative quantity": ["Relativne vrednosti"], - "Reload": ["Ponovno naloži"], - "Remind me in 24 hours": ["Opomni me čez 24 ur"], - "Remove": ["Odstrani"], - "Remove cross-filter": ["Odstrani medsebojne filtre"], - "Remove invalid filters": ["Odstrani neveljavne filtre"], - "Remove item": ["Odstrani element"], - "Remove query from log": ["Odstrani poizvedbo iz dnevnika"], - "Remove table preview": ["Odstrani predogled tabele"], - "Removed columns: %s": ["Odstranjeni stolpci: %s"], - "Rename tab": ["Preimenuj zavihek"], - "Rendering": ["Izris"], - "Replace": ["Zamenjaj"], - "Report": ["Poročilo"], - "Report Name": ["Naslov poročila"], - "Report Schedule could not be created.": [ - "Urnika poročanja ni mogoče ustvariti." + "Symbol": ["Simbol"], + "Empty circle": ["Prazen krog"], + "Circle": ["Krog"], + "Rectangle": ["Pravokotnik"], + "Triangle": ["Trikotnik"], + "Diamond": ["Karo"], + "Pin": ["Žebljiček"], + "Arrow": ["Puščica"], + "Symbol size": ["Velikost simbola"], + "Size of edge symbols": ["Velikost simbola povezave"], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Prikaz več hierarhičnih nivojev z drevesno strukturo." ], - "Report Schedule could not be updated.": [ - "Urnika poročanja ni mogoče posodobiti." + "Tree Chart": ["Drevesni grafikon"], + "Show Upper Labels": ["Prikaži zgornje oznake"], + "Show labels when the node has children.": [ + "Prikaži oznake, ko ima vozlišče podrejene elemente." ], - "Report Schedule delete failed.": ["Izbris urnika poročanja ni uspel."], - "Report Schedule execution failed when generating a csv.": [ - "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju csv." + "Key": ["Ključ"], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Prikaže hierarhična razmerja podatkov, pri čemer je vrednost ponazorjena s ploščino, ki predstavlja delež oz. prispevek k celoti." ], - "Report Schedule execution failed when generating a dataframe.": [ - "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju podatkovnega okvira." + "Treemap": ["Drevesni grafikon s pravokotniki"], + "Total": ["Skupaj"], + "Assist": ["Pomoč"], + "Increase": ["Povečaj"], + "Decrease": ["Zmanjšaj"], + "Series colors": ["Barve nizov"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "Razbije niz po kategorijah, določenih v tem polju.\n Na ta način lahko uporabniki razumejo, kako vsaka kategorija vpliva na skupno vrednost." ], - "Report Schedule execution failed when generating a screenshot.": [ - "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju zaslonske slike." + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "Grafikon slapov je način prikaza, ki pomaga razumeti\n\tkumulativni učinek zaporedja negativnih ali pozitivnih vrednosti.\n\tVmesne vrednosti so bodisi kategorične bodisi časovne." ], - "Report Schedule execution got an unexpected error.": [ - "Pri izvajanju urnika poročanja je prišlo do nepričakovane napake." + "Waterfall Chart": ["Grafikon slapov"], + "page_size.all": ["page_size.all"], + "Loading...": ["Nalagam ..."], + "Write a handlebars template to render the data": [ + "Napišite Handlebars-predlogo za prikaz podatkov" ], - "Report Schedule is still working, refusing to re-compute.": [ - "Urnik poročanja se še vedno izvaja, ponovni izračun je zavrnjen." + "Handlebars": ["Handlebars"], + "must have a value": ["mora imeti vrednost"], + "Handlebars Template": ["Predloga za Handlebars"], + "A handlebars template that is applied to the data": [ + "Predloga za Handlebars, ki je uporabljena za podatke" ], - "Report Schedule log prune failed.": [ - "Krajšanje dnevnika urnika poročanja ni uspelo." + "Include time": ["Vključi čas"], + "Whether to include the time granularity as defined in the time section": [ + "Če želite vključiti granulacijo časa, ki je določena v sekciji Čas" ], - "Report Schedule not found.": ["Urnika poročanja ni najden."], - "Report Schedule parameters are invalid.": [ - "Parametri urnika poročanja so neveljavni." + "Percentage metrics": ["Procentualne mere"], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "Izberite eno ali več mer za prikaz kot procent celote. Procentualna mera bo izračunana samo iz podatkov znotraj omejitve vrstic. Uporabite lahko agregacijsko funkcijo ali napišete poljuben SQL-izraz za procentualno mero." ], - "Report Schedule reached a working timeout.": [ - "Urnik poročanja je dosegel mejo časa izvedbe." + "Show totals": ["Prikaži vsote"], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Prikaži skupno agregacijo izbrane mere. Omejitev števila vrstic ne vpliva na rezultat." ], - "Report Schedule state not found": ["Stanje urnika poročanj ni najdeno"], - "Report a bug": ["Sporočite napako"], - "Report failed": ["Poročilo ni uspelo"], - "Report name": ["Naslov poročila"], - "Report schedule": ["Urnik poročanja"], - "Report schedule client error": ["Napaka klienta urnika poročanja"], - "Report schedule system error": ["Sistemska napaka urnika poročanja"], - "Report schedule unexpected error": [ - "Nepričakovana napaka urnika poročanja" + "Ordering": ["Razvrščanje"], + "Order results by selected columns": [ + "Razvrsti rezultate glede na izbrani stolpec" ], - "Report sending": ["Pošiljanje poročila"], - "Report sent": ["Poročilo poslano"], - "Report updated": ["Poročilo posodobljeno"], - "Reports": ["Poročila"], - "Repulsion": ["Odbijanje"], - "Repulsion strength between nodes": ["Odbojna sila med vozlišči"], - "Request is incorrect: %(error)s": ["Zahtevek je napačen: %(error)s"], - "Request is not JSON": ["Zahtevek ni JSON"], - "Request missing data field.": ["Zahtevaj manjkajoča podatkovna polja."], - "Request timed out": ["Zahtevek pretečen"], - "Required": ["Obvezno"], - "Required control values have been removed": [ - "Zahtevane kontrolne vrednosti so bile odstranjene" + "Sort descending": ["Razvrsti padajoče"], + "Server pagination": ["Paginacija na strani strežnika"], + "Enable server side pagination of results (experimental feature)": [ + "Omogoči številčenje strani rezultatov na strani strežnika (preizkusna funkcija)" ], - "Resample": ["Prevzorči"], - "Resample method should in ": ["Metoda za prevzorčenje v Pandas mora "], - "Resample operation requires DatetimeIndex": [ - "Prevzorčevalna operacija zahteva indeks tipa datumčas" + "Server Page Length": ["Dolžina strani strežnika"], + "Rows per page, 0 means no pagination": [ + "Vrstic na stran (0 pomeni brez številčenja strani)" ], - "Reset": ["Ponastavi"], - "Reset state": ["Ponastavi stanje"], - "Resource already has an attached report.": [ - "Vir že ima povezano poročilo." + "Query mode": ["Način poizvedbe"], + "Group By, Metrics or Percentage Metrics must have a value": [ + "Združevanje po, Mera ali Procentualna mera morajo imeti vrednost" ], - "Resource was not found.": ["Vir ni bil najden."], - "Restore Filter": ["Povrni filter"], - "Results": ["Rezultati"], - "Results %s": ["Rezultati %s"], - "Results backend is not configured.": [ - "Zaledni sistem rezultatov ni konfiguriran." + "You need to configure HTML sanitization to use CSS": [ + "Za uporabo CSS morate nastaviti sanitizacijo HTML" ], - "Results backend needed for asynchronous queries is not configured.": [ - "Zaledni sistem za rezultate, potreben za asinhrone poizvedbe, ni konfiguriran." + "CSS Styles": ["CSS slogi"], + "CSS applied to the chart": ["CSS slogi uporabljeni za grafikon"], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": [ + "Stolpci za združevanje po stolpcih" ], - "Return to specific datetime.": ["Vrne datum-čas."], - "Reverse Lat & Long": ["Zamenjaj širino in dolžino"], - "Reverse lat/long ": ["Zamenjaj zemljepisno dolžino/širino "], - "Rich Tooltip": ["Podroben opis orodja"], - "Rich tooltip": ["Podroben opis orodja"], - "Right": ["Desno"], - "Right Axis Format": ["Oblika desne osi"], - "Right Axis Metric": ["Mera desne osi"], - "Right axis metric": ["Mera desne osi"], - "Right to Left": ["Od desne proti levi"], - "Right value": ["Desna vrednost"], - "Right-click on a dimension value to drill to detail by that value.": [ - "Z desnim klikom na dimenzijo vrtajte v podrobnosti po tej vrednosti." + "Rows": ["Vrstice"], + "Columns to group by on the rows": ["Stolpci za združevanje po vrsticah"], + "Apply metrics on": ["Uporabi mero za"], + "Use metrics as a top level group for columns or for rows": [ + "Uporabi mere kot vrhovni nivo grupiranja za stolpce ali vrstice" ], - "Role": ["Vloga"], - "Roles": ["Vloge"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ - "\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev vloge za dostop do nadzorne plošče bo obšlo preverjanje na nivoju podatkovnega seta. Če vloga ni definirana, bodo veljavna običajna pravila dostopov." + "Cell limit": ["Omejitev števila celic"], + "Limits the number of cells that get retrieved.": [ + "Omeji število pridobljenih celic." ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ - "\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev vloge za dostop do nadzorne plošče bo obšlo preverjanje na nivoju podatkovnega seta. Če vloga ni definirana, bodo veljavna običajna pravila dostopov." + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Mera, ki določa kako so razvrščene prve serije, če je določena omejitev serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." ], - "Rolling Function": ["Drseča funkcija"], - "Rolling Window": ["Drseče okno"], - "Rolling function": ["Drseča funkcija"], - "Rolling window": ["Drseče okno"], - "Root certificate": ["Korenski certifikat"], - "Root node id": ["Id korenskega vozlišča"], - "Rotate x axis label": ["Zavrti oznako x-osi"], - "Rotate y axis label": ["Zavrti oznako y-osi"], - "Rotation to apply to words in the cloud": [ - "Če želite vrtenje besed v oblaku" + "Aggregation function": ["Agregacijska funkcija"], + "Count": ["Število"], + "Count Unique Values": ["Število unikatnih"], + "List Unique Values": ["Seznam unikatnih vrednosti"], + "Sum": ["Vsota"], + "Average": ["Povprečje"], + "Median": ["Mediana"], + "Sample Variance": ["Varianca vzorca"], + "Sample Standard Deviation": ["Standardna deviacija vzorca"], + "Minimum": ["Minimum"], + "Maximum": ["Maksimum"], + "First": ["Prvi"], + "Last": ["Zadnji"], + "Sum as Fraction of Total": ["Vsota kot delež celote"], + "Sum as Fraction of Rows": ["Vsota kot delež vrstic"], + "Sum as Fraction of Columns": ["Vsota kot delež stolpcev"], + "Count as Fraction of Total": ["Štetje kot delež skupne vsote"], + "Count as Fraction of Rows": ["Štetje kot delež vrstic"], + "Count as Fraction of Columns": ["Štetje kot delež stolpcev"], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "Agregacijska funkcija za vrtenje in izračun vseh vrstic in stolpcev" ], - "Round cap": ["Zaobljeni konci"], - "Row": ["Vrstica"], - "Row Level Security": ["Varnost na nivoju vrstic"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ - "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). Pustite prazno, če ni naslovne vrstice" + "Show rows total": ["Prikaži vsoto vrstic"], + "Display row level total": ["Prikaži vsoto na nivoju vrstice"], + "Show rows subtotal": ["Prikaži delne vsote vrstic"], + "Display row level subtotal": ["Prikaži delno vsoto na nivoju vrstice"], + "Show columns total": ["Prikaži vsoto stolpcev"], + "Display column level total": ["Prikaži vsoto na nivoju stolpca"], + "Show columns subtotal": ["Prikaži delne vsote stolpcev"], + "Display column level subtotal": [ + "Prikaži delno vsoto na nivoju stolpca" ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). Pustite prazno, če ni naslovne vrstice." + "Transpose pivot": ["Transponirano vrtenje"], + "Swap rows and columns": ["Zamenjaj vrstice in stolpce"], + "Combine metrics": ["Združuj mere"], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Prikazuj mere eno ob drugi ob vsakem stolpcu, drugače je vsak stolpec prikazan en ob drugem za vsako mero." ], - "Row limit": ["Omejitev števila vrstic"], - "Rows": ["Vrstice"], - "Rows per page, 0 means no pagination": [ - "Vrstic na stran (0 pomeni brez številčenja strani)" + "D3 time format for datetime columns": [ + "D3 format zapisa za časovne stolpce" ], - "Rows subtotal position": ["Položaj delnih vsot vrstic"], - "Rows to Read": ["Vrstice za branje"], - "Rule": ["Pravilo"], - "Rule Name": ["Ime pravila"], - "Rule added": ["Pravilo dodano"], - "Run": ["Zaženi"], - "Run a query to display query history": [ - "Za prikaz zgodovine poizvedb zaženite poizvedbo" - ], - "Run a query to display results": [ - "Za prikaz rezultatov morate zagnati poizvedbo" + "Sort rows by": ["Razvrsti vrstice"], + "key a-z": ["a - ž"], + "key z-a": ["ž - a"], + "value ascending": ["0 - 9"], + "value descending": ["9 - 0"], + "Change order of rows.": ["Spremeni vrstni red vrstic."], + "Available sorting modes:": ["Razpoložljivi načini razvrščanja:"], + "By key: use row names as sorting key": [ + "Po ključu: za razvrščanje uporabite imena vrstic" ], - "Run current query": ["Zaženi trenutno poizvedbo"], - "Run in SQL Lab": ["Zaženi v SQL laboratoriju"], - "Run query": ["Zaženi poizvedbo"], - "Run query (Ctrl + Return)": ["Zaženi poizvedbo (Ctrl + Return)"], - "Run query in a new tab": ["Zaženi poizvedbo v novem zavihku"], - "Run selection": ["Zaženi izbrano"], - "Running": ["V teku"], - "Running statement %(statement_num)s out of %(statement_count)s": [ - "Poganjanje izraza %(statement_num)s od %(statement_count)s" + "By value: use metric values as sorting key": [ + "Po vrednosti: za razvrščanje uporabite vrednosti mere" ], - "SAT": ["SOB"], - "SEP": ["SEP"], - "SHA": ["SHA"], - "SQL": ["SQL"], - "SQL Copied!": ["SQL kopiran!"], - "SQL Expression": ["SQL izraz"], - "SQL Lab": ["SQL laboratorij"], - "SQL Lab View": ["Pogled SQL laboratorija"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ - "SQL laboratorij uporablja lokalno shrambo brskalnika za shranjevanje poizvedb in rezultatov.\nTrenutno uporabljate %(currentUsage)s KB od %(maxStorage)d KB prostora.\nDa preprečite sesutje SQL laba, izbrišite nekaj zavihkov s poizvedbami.\nPoizvedbe lahko ponovno pridobite, če pred brisanjem uporabite funkcijo Shrani.\nPred tem morate zapreti druga okna SQL laboratorija." + "Sort columns by": ["Razvrsti stolpce"], + "Change order of columns.": ["Spremeni vrstni red stolpcev."], + "By key: use column names as sorting key": [ + "Po ključu: za razvrščanje uporabite imena stolpcev" ], - "SQL Query": ["SQL-poizvedba"], - "SQL expression": ["SQL-izraz"], - "SQL query": ["SQL-poizvedba"], - "SQLAlchemy URI": ["SQLAlchemy URI"], - "SSH Host": ["SSH-gostitelj"], - "SSH Password": ["SSH-geslo"], - "SSH Port": ["SSH-vrata"], - "SSH Tunnel": ["SSH-tunel"], - "SSH Tunnel configuration parameters": [ - "Parametri nastavitev SSH-tunela" + "Rows subtotal position": ["Položaj delnih vsot vrstic"], + "Position of row level subtotal": [ + "Položaj delnih vsot na nivoju vrstic" ], - "SSH Tunnel could not be deleted.": ["SSH-tunela ni mogoče izbrisati."], - "SSH Tunnel could not be updated.": ["SSH-tunela ni mogoče posodobiti."], - "SSH Tunnel not found.": ["SSH-tunela ni najden."], - "SSH Tunnel parameters are invalid.": [ - "Parametri SSH-tunela so neveljavni." + "Columns subtotal position": ["Položaj delnih vsot stolpcev"], + "Position of column level subtotal": [ + "Položaj delnih vsot na nivoju stolpcev" ], - "SSH Tunneling is not enabled": ["SSH-tunel ni omogočen"], - "SSL Mode \"require\" will be used.": [ - "Uporabljen bo SSL-način tipa \"require\"." + "Conditional formatting": ["Pogojno oblikovanje"], + "Apply conditional color formatting to metrics": [ + "Za mere uporabi pogojno oblikovanje z barvami" ], - "START (INCLUSIVE)": ["ZAČETEK (VKLJUČEN)"], - "STEP %(stepCurr)s OF %(stepLast)s": [ - "KORAK %(stepCurr)s OD %(stepLast)s" + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "Ponazori podatke na podlagi združevanja več statistik vzdolž dveh osi. Npr. prodaja po regijah in mesecih, opravila po statusih in izvajalcih, itd." ], - "STRING": ["STRING"], - "SUN": ["NED"], - "Sample Standard Deviation": ["Standardna deviacija vzorca"], - "Sample Variance": ["Varianca vzorca"], - "Samples": ["Vzorci"], - "Samples for dataset could not be retrieved.": [ - "Vzorcev za podatkovni set ni bilo mogoče pridobiti." + "Pivot Table": ["Vrtilna tabela"], + "Total (%(aggregatorName)s)": ["Skupaj (%(aggregatorName)s)"], + "Unknown input format": ["Neznana oblika vnosa"], + "search.num_records": [""], + "page_size.show": ["page_size.show"], + "page_size.entries": ["page_size.entries"], + "No matching records found": ["Ni ujemajočih zapisov"], + "Shift + Click to sort by multiple columns": [ + "Shift + klik za razvrščanje po več stolpcih" ], - "Samples for datasource could not be retrieved.": [ - "Vzorcev za podatkovni vir ni bilo mogoče pridobiti." + "Totals": ["Vsota"], + "Timestamp format": ["Oblika zapisa časovne značke"], + "Page length": ["Dolžina strani"], + "Search box": ["Iskalno polje"], + "Whether to include a client-side search box": [ + "Če želite vključiti iskalno polje za uporabnika" ], - "Sankey": ["Sankey"], - "Sankey Diagram": ["Sankey grafikon"], - "Sankey Diagram with Loops": ["Sankey grafikon z zankami"], - "Satellite": ["Satelitski"], - "Satellite Streets": ["Satelitski z ulicami"], - "Saturday": ["Sobota"], - "Save": ["Shrani"], - "Save & Explore": ["Shrani & Razišči"], - "Save & go to dashboard": ["Shrani in pojdi na nadzorno ploščo"], - "Save (Overwrite)": ["Shrani (prepiši)"], - "Save as": ["Shrani kot"], - "Save as Dataset": ["Shrani kot podatkovni set"], - "Save as dataset": ["Shrani kot podatkovni set"], - "Save as new": ["Shrani kot novo"], - "Save as...": ["Shrani kot ..."], - "Save as:": ["Shrani kot:"], - "Save changes": ["Shrani spremembe"], - "Save chart": ["Shrani grafikon"], - "Save dashboard": ["Shrani nadzorno ploščo"], - "Save dataset": ["Shrani podatkovni set"], - "Save for this session": ["Shranite za to sejo"], - "Save or Overwrite Dataset": ["Shrani ali prepiši podatkovni set"], - "Save query": ["Shrani poizvedbo"], - "Save the query to enable this feature": [ - "Za omogočenje te funkcije shranite poizvedbo" + "Cell bars": ["Stolp. graf v celicah"], + "Whether to display a bar chart background in table columns": [ + "Če želite omogočiti prikaz manjših stolpčnih grafikonov v ozadju stolpcev tabele" ], - "Save this query as a virtual dataset to continue exploring": [ - "Shranite poizvedbo kot virtualni podatkovni set" + "Align +/-": ["Poravnaj +/-"], + "Whether to align background charts with both positive and negative values at 0": [ + "Poravnava grafa v ozadju celic za negativne in pozitivne vrednosti pri 0" ], - "Saved": ["Shranjeno"], - "Saved Queries": ["Shranjene poizvedbe"], - "Saved expressions": ["Shranjeni izrazi"], - "Saved metric": ["Shranjena mera"], - "Saved queries": ["Shranjene poizvedbe"], - "Saved queries could not be deleted.": [ - "Shranjenih poizvedb ni mogoče izbrisati." + "Color +/-": ["Barva +/-"], + "Whether to colorize numeric values by whether they are positive or negative": [ + "Če želite obarvati številske vrednosti, ko so le-te pozitivne ali negativne" ], - "Saved query not found.": ["Shranjena poizvedba ni najdena."], - "Saved query parameters are invalid.": [ - "Parametri shranjene poizvedbe so neveljavni." + "Allow columns to be rearranged": ["Omogoči razvrščanje stolpcev"], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Uporabniku omogočite, da s potegom razvrsti stolpce. Sprememba se ne bo ohranila, ko bo grafikon ponovno naložen." ], - "Scale and Move": ["Povečava in premikanje"], - "Scale only": ["Samo povečava"], - "Scatter": ["Raztreseni"], - "Scatter Plot": ["Raztreseni grafikon"], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Raztreseni grafikon ima vodoravno os v linearnih enotah, prikazuje podatkovne točke v povezanem redu in prikazuje statistično razmerje med dvema spremenljivkama." + "Customize columns": ["Prilagodi stolpce"], + "Further customize how to display each column": [ + "Dodatne prilagoditve prikaza posameznih stolpcev" ], - "Schedule": ["Urnik"], - "Schedule a new email report": ["Dodaj novo e-poštno poročilo na urnik"], - "Schedule email report": ["Dodaj e-poštno poročilo na urnik"], - "Schedule query": ["Urnik poizvedb"], - "Schedule settings": ["Nastavitve urnika"], - "Schedule the query periodically": ["Periodično zaganjaj poizvedbo"], - "Scheduled": ["V urniku"], - "Scheduled at (UTC)": ["Izvede se ob (UTC)"], - "Scheduled task executor not found": [ - "Izvajalnik urnika poročanj ni najden" + "Apply conditional color formatting to numeric columns": [ + "Za numerične stolpce uporabi pogojno oblikovanje z barvami" ], - "Schema": ["Shema"], - "Schema cache timeout": ["Trajanje prepomnilnika sheme"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Shema, ki se uporablja pri nekaterih podatkovnih bazah, kot so Postgres, Redshift in DB2" + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Standardna razpredelnica za prikaz podatkovnega seta." ], - "Schemas allowed for File upload": [ - "Dovoljene sheme za nalaganje datotek" + "Show": ["Prikaži"], + "entries": ["vnosi"], + "Word Cloud": ["Oblak besed"], + "Minimum Font Size": ["Min. velikost pisave"], + "Font size for the smallest value in the list": [ + "Velikost pisave za najmanjšo vrednost na seznamu" ], - "Scope": ["Doseg"], - "Scoping": ["Doseg"], - "Screenshot width": ["Širina zaslonske slike"], - "Screenshot width must be between %(min)spx and %(max)spx": [ - "Širina zaslonske slike mora biti med %(min)spx and %(max)spx" + "Maximum Font Size": ["Max. velikost pisave"], + "Font size for the biggest value in the list": [ + "Velikost pisave za največjo vrednost na seznamu" ], - "Scroll": ["Drsnik"], - "Scroll down to the bottom to enable overwriting changes. ": [ - "Pomaknite se do dna, da omogočite prepis sprememb. " + "Word Rotation": ["Vrtenje besed"], + "random": ["naključno"], + "square": ["pravokotno"], + "Rotation to apply to words in the cloud": [ + "Če želite vrtenje besed v oblaku" ], - "Search": ["Iskanje"], - "Search / Filter": ["Iskanje / Filter"], - "Search Metrics & Columns": ["Iskanje mer in stolpcev"], - "Search all charts": ["Išči vse grafikone"], - "Search all filter options": ["Poišči vse možnosti filtra"], - "Search box": ["Iskalno polje"], - "Search by query text": ["Išči z besedilom poizvedbe"], - "Search columns": ["Iskanje stolpcev"], - "Search in filters": ["Iskanje v filtrih"], - "Search...": ["Iskanje ..."], - "Second": ["Sekunda"], - "Secondary": ["Sekundarna"], - "Secondary Metric": ["Sekundarna mera"], - "Secondary currency format": ["Oblika sekundarne valute"], - "Secondary y-axis Bounds": ["Meje sekundarne y-osi"], - "Secondary y-axis format": ["Oblika sekundarne y-osi"], - "Secondary y-axis title": ["Naslov sekundarne y-osi"], - "Seconds %s": ["Sekunde %s"], - "Secure Extra": ["Dodatna varnost"], - "Secure extra": ["Dodatna varnost"], - "Security": ["Varnost"], - "Security & Access": ["Varnost in Dostopi"], - "See all %(tableName)s": ["Poglej vse %(tableName)s"], - "See less": ["Oglejte si manj"], - "See more": ["Oglejte si več"], - "See query details": ["Podrobnosti poizvedbe"], - "See table schema": ["Ogled sheme tabele"], - "Select": ["Izberi"], - "Select ...": ["Izberite ..."], - "Select Delivery Method": ["Izberite način dostave"], - "Select Tags": ["Izberite oznake"], - "Select Viz Type": ["Izberite tip vizualizacije"], - "Select a Columnar file to be uploaded to a database.": [ - "Izberite stolpčno datoteko, ki bo naložena v podatkovno bazo." + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Prikaže besede v stolpcu, glede na pogostost pojavljanja. Večja pisava pomeni večjo frekvenco." ], - "Select a Excel file to be uploaded to a database.": [ - "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." + "N/A": ["N/A"], + "offline": ["offline"], + "failed": ["ni uspelo"], + "pending": ["v teku"], + "fetching": ["pridobivanje"], + "running": ["v teku"], + "stopped": ["ustavljeno"], + "success": ["uspešno"], + "The query couldn't be loaded": ["Poizvedbe ni mogoče naložiti"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Vaša poizvedba je v urniku. Za ogled podrobnosti poizvedbe pojdite na shranjene poizvedbe" ], - "Select a column": ["Izberite stolpec"], - "Select a dashboard": ["Izberite nadzorno ploščo"], - "Select a database table and create dataset": [ - "Izberite tabelo podatkovne baze in ustvarite podatkovni set" + "Your query could not be scheduled": [ + "Vaše poizvedbe ni mogoče uvrstiti v urnik" ], - "Select a database table.": ["Izberite tabelo podatkovne baze."], - "Select a database to connect": ["Izberite podatkovno bazo za povezavo"], - "Select a database to upload the file to": [ - "Izberite podatkovno bazo za nalaganje datoteke" + "Failed at retrieving results": ["Napaka pri pridobivanju rezultatov"], + "Unknown error": ["Neznana napaka"], + "Query was stopped.": ["Poizvedba je bila ustavljena."], + "Failed at stopping query. %s": ["Neuspešno ustavljanje poizvedbe. %s"], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Stanja sheme tabele ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." ], - "Select a database to write a query": [ - "Izberite podatkovno bazo za poizvedbo" + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Stanja poizvedbe ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." ], - "Select a dataset": ["Izberite podatkovni set"], - "Select a dimension": ["Izberite dimenzijo"], - "Select a file to be uploaded to the database": [ - "Izberite datoteko, ki bo naložena v podatkovno bazo" + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Stanja urejevalnika poizvedb ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." ], - "Select a metric to display on the right axis": [ - "Izberite mero za prikaz na desni osi" + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Novega zavihka ni mogoče dodati v sistem. Kontaktirajte administratorja." ], - "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ - "Izberite mero za prikaz. Uporabite lahko agregacijsko funkcijo na stolpcu ali napišete poljuben SQL-izraz za mero." + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "-- Opomba: Če ne shranite poizvedbe, se ti zavihki NE bodo ohranili, ko boste počistili piškote ali zamenjali brskalnik.\n\n" ], - "Select a schema if the database supports this": [ - "Izberite shemo (če vrsta podatkovne baze to podpira)" + "Copy of %s": ["Kopija %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Pri določanju aktivnega zavihka je prišlo do napake. Kontaktirajte administratorja." ], - "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ - "Izberite časovno granulacijo prikaza. Granulacija predstavlja časovni interval med točkami na grafikonu." + "An error occurred while fetching tab state": [ + "Pri pridobivanju stanja zavihka je prišlo do napake" ], - "Select a visualization type": ["Izberite tip vizualizacije"], - "Select aggregate options": ["Izberite agregacijske možnosti"], - "Select all data": ["Izberite vse podatke"], - "Select all items": ["Izberite vse elemente"], - "Select any columns for metadata inspection": [ - "Izberite poljubne stolpce za pregled metapodatkov" + "An error occurred while removing tab. Please contact your administrator.": [ + "Pri odstranjevanju zavihka je prišlo do napake. Kontaktirajte administratorja." ], - "Select chart": ["Izberi grafikon"], - "Select charts": ["Izberi grafikone"], - "Select color scheme": ["Izberite barvno shemo"], - "Select column": ["Izberite stolpec"], - "Select current page": ["Izberite trenutno stran"], - "Select dashboards": ["Izberite nadzorne plošče"], - "Select database or type to search databases": [ - "Izberite ali vnesite ime podatkovne baze" + "An error occurred while removing query. Please contact your administrator.": [ + "Pri odstranjevanju poizvedbe je prišlo do napake. Kontaktirajte administratorja." ], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "Izbira podatkovnih baz za uspešno povezavo zahteva izpolnitev dodatnih polj v zavihku Napredno. Kaj zahteva vaša podatkovna baza se naučite " + "Your query could not be saved": ["Vaše poizvedbe ni mogoče shraniti"], + "Your query was not properly saved": [ + "Vaša poizvedba ni bila pravilno shranjena" ], - "Select dataset source": ["Izberite podatkovni vir"], - "Select file": ["Izberite datoteko"], - "Select filter": ["Izbirni filter"], - "Select filter plugin using AntD": [ - "Izberite Vtičnik za filter z uporabo AntD" + "Your query was saved": ["Vaša poizvedba je shranjena"], + "Your query was updated": ["Vaša poizvedba je posodobljena"], + "Your query could not be updated": [ + "Vaše poizvedbe ni mogoče posodobiti" ], - "Select first filter value by default": [ - "Izberi prvo vrednost kot privzeto" + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Pri shranjevanju vaše poizvedbe v sistem je prišlo do napake. Da ne izgubite sprememb, shranite poizvedbo z gumbom \"Shrani poizvedbo\"." ], - "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ - "Izberite eno ali več mer za prikaz kot procent celote. Procentualna mera bo izračunana samo iz podatkov znotraj omejitve vrstic. Uporabite lahko agregacijsko funkcijo ali napišete poljuben SQL-izraz za procentualno mero." + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Pri pridobivanju metapodatkov tabele je prišlo do napake. Kontaktirajte administratorja." ], - "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ - "Izberite eno ali več mer za prikaz. Uporabite lahko agregacijsko funkcijo ali napišete poljuben SQL-izraz za mero." + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Pri širitvi sheme tabele je prišlo do napake. Kontaktirajte administratorja." ], - "Select operator": ["Izberite operator"], - "Select or type a value": ["Izberite ali vnesite vrednost"], - "Select or type currency symbol": ["Izberite ali vnesite simbol valute"], - "Select or type dataset name": [ - "Izberite ali vnesite naziv podatkovnega seta" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Pri krčenju sheme tabele je prišlo do napake. Kontaktirajte administratorja." ], - "Select owners": ["Izberite lastnike"], - "Select saved metrics": ["Izberite shranjene mere"], - "Select saved queries": ["Izberite shranjene poizvedbe"], - "Select schema or type to search schemas": [ - "Izberite ali vnesite ime sheme" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Pri odstranjevanju sheme tabele je prišlo do napake. Kontaktirajte administratorja." ], - "Select scheme": ["Izberite shemo"], - "Select start and end date": ["Izberite začetni in končni datum"], - "Select subject": ["Izberite zadevo"], - "Select table or type to search tables": [ - "Izberite ali vnesite ime tabele" + "Shared query": ["Deljene poizvedbe"], + "The datasource couldn't be loaded": [ + "Podatkovnega vira ni mogoče naložiti" ], - "Select the Annotation Layer you would like to use.": [ - "Izberite sloj z oznakami, ki ga želite uporabiti." + "An error occurred while creating the data source": [ + "Pri ustvarjanju podatkovnega vira je prišlo do težave" ], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "Izberite grafikone, za katere želite uporabiti medsebojne filtre v tej nadzorni plošči. Odstranitev grafikona bo izključila medsebojno filtriranje s kateregakoli grafikona na nadzorni plošči. Izberete lahko \"Vsi grafikoni\", da uporabite medsebojne filtre za vse grafikone, ki uporabljajo isti podatkovni niz ali vsebujejo stolpec z enakim nazivom." + "An error occurred while fetching function names.": [ + "Pri pridobivanju imen funkcij je prišlo do napake." ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "Izberite grafikone, za katere želite uporabiti medsebojne filtre, ko kliknete na ta grafikon. Izberete lahko \"Vsi grafikoni\", da uporabite medsebojne filtre za vse grafikone, ki uporabljajo isti podatkovni niz ali vsebujejo stolpec z enakim nazivom." + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "SQL laboratorij uporablja lokalno shrambo brskalnika za shranjevanje poizvedb in rezultatov.\nTrenutno uporabljate %(currentUsage)s KB od %(maxStorage)d KB prostora.\nDa preprečite sesutje SQL laba, izbrišite nekaj zavihkov s poizvedbami.\nPoizvedbe lahko ponovno pridobite, če pred brisanjem uporabite funkcijo Shrani.\nPred tem morate zapreti druga okna SQL laboratorija." ], - "Select the geojson column": ["Izberite geojson stolpec"], - "Select the number of bins for the histogram": [ - "Izberite število razdelkov za histogram" + "Primary key": ["Primarni ključ"], + "Foreign key": ["Tuji ključ"], + "Index": ["Indeks"], + "Estimate selected query cost": ["Oceni potratnost izbrane poizvedbe"], + "Estimate cost": ["Oceni potratnost"], + "Cost estimate": ["Ocena potratnosti"], + "Creating a data source and creating a new tab": [ + "Ustvarjanje podatkovnega vira in novega zavihka" ], - "Select the numeric columns to draw the histogram": [ - "Izberite numerične stolpce za izris histograma" + "An error occurred": ["Prišlo je do napake"], + "Explore the result set in the data exploration view": [ + "Raziščite rezultate v pogledu za raziskovanje podatkov" ], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ - "Izberite vrednosti v osvetljenih poljih na levi strani kontrolnika in zaženite poizvedbo z gumbom %s." + "explore": ["raziskovanje"], + "Create Chart": ["Ustvarite grafikon"], + "Source SQL": ["Izvorni SQL"], + "Executed SQL": ["Izvedena poizvedba"], + "Run query": ["Zaženi poizvedbo"], + "Run current query": ["Zaženi trenutno poizvedbo"], + "Stop query": ["Ustavi poizvedbo"], + "New tab": ["Nov zavihek"], + "Previous Line": ["Prejšnja linija"], + "Format SQL": ["Oblikuj SQL"], + "Find": ["Najdi"], + "Keyboard shortcuts": ["Bližnjice na tipkovnici"], + "Run a query to display query history": [ + "Za prikaz zgodovine poizvedb zaženite poizvedbo" ], - "Send as CSV": ["Pošlji kot CSV"], - "Send as PNG": ["Pošlji kot PNG"], - "Send as text": ["Pošlji kot besedilo"], - "Send range filter events to other charts": [ - "Pošlji dogodke filtra obdobja na druge grafikone" + "LIMIT": ["OMEJITEV"], + "State": ["Status"], + "Started": ["Začetek"], + "Duration": ["Trajanje"], + "Results": ["Rezultati"], + "Actions": ["Aktivnosti"], + "Success": ["Uspelo"], + "Failed": ["Ni uspelo"], + "Running": ["V teku"], + "Fetching": ["Pridobivam"], + "Offline": ["Offline"], + "Scheduled": ["V urniku"], + "Unknown Status": ["Neznan status"], + "Edit": ["Urejanje"], + "View": ["Ogled"], + "Data preview": ["Ogled podatkov"], + "Overwrite text in the editor with a query on this table": [ + "Besedilo v urejevalniku prepišite s poizvedbo na to tabelo" ], - "September": ["September"], - "Sequential": ["Sekvenčni"], - "Series": ["Serije"], - "Series Height": ["Višina serije"], - "Series Limit Sort By": ["Razvrščanje omejitev serije"], - "Series Limit Sort Descending": ["Razvrsti padajoče"], - "Series Order": ["Razvrščanje serij"], - "Series Style": ["Slog serije"], - "Series chart type (line, bar etc)": [ - "Tip grafikona za posamezno podatkovno serijo (črtni, stolpčni, ...)" + "Run query in a new tab": ["Zaženi poizvedbo v novem zavihku"], + "Remove query from log": ["Odstrani poizvedbo iz dnevnika"], + "Unable to create chart without a query id.": [ + "Grafikona ni mogoče ustvariti brez id-ja poizvedbe." ], - "Series colors": ["Barve nizov"], - "Series limit": ["Omejitev števila serij"], - "Series type": ["Tip serije"], - "Server Page Length": ["Dolžina strani strežnika"], - "Server pagination": ["Paginacija na strani strežnika"], - "Service Account": ["Servisni račun"], - "Set auto-refresh interval": ["Nastavi interval samodejnega osveževanja"], - "Set filter mapping": ["Nastavi shemo filtrov"], - "Set up an email report": ["Nastavite e-poštno poročilo"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "Nastavi hierarhične nivoje grafikona. Vsak nivo je\n\tpredstavljen z enim obročem, pri čemer je notranji krog na vrhu hierarhije." + "Save & Explore": ["Shrani & Razišči"], + "Overwrite & Explore": ["Prepiši & Razišči"], + "Save this query as a virtual dataset to continue exploring": [ + "Shranite poizvedbo kot virtualni podatkovni set" ], - "Settings": ["Nastavitve"], - "Settings for time series": ["Nastavitve časovne vrste"], - "Share": ["Deljenje"], - "Share chart by email": ["Deli grafikon po e-pošti"], - "Share permalink by email": ["Deli povezavo po e-pošti"], - "Shared query": ["Deljene poizvedbe"], - "Shared query fields": ["Polja deljenih poizvedb"], - "Sheet Name": ["Ime zvezka"], - "Shift + Click to sort by multiple columns": [ - "Shift + klik za razvrščanje po več stolpcih" + "Download to CSV": ["Izvozi kot CSV"], + "Copy to Clipboard": ["Kopiraj na odložišče"], + "Filter results": ["Filtriraj rezultate"], + "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ + "Število prikazanih rezultatov je omejeno na %(rows)d na podlagi parametra DISPLAY_MAX_ROW. V csv dodajte dodatne omejitve/filtre, da boste lahko videli več vrstic do meje %(limit)d ." ], - "Short description must be unique for this layer": [ - "Kratek opis mora biti za ta sloj unikaten" + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Število prikazanih rezultatov je omejeno na %(rows)d . V csv dodajte dodatne omejitve/filtre, da boste lahko videli več vrstic do meje %(limit)d ." ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Če želite dnevno sezonskost. Celo število določa Fourier-jev red sezonskosti." + "The number of rows displayed is limited to %(rows)d by the query": [ + "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Če želite tedensko sezonskost. Celo število določa Fourier-jev red sezonskosti." + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "Število prikazanih rezultatov je omejeno na %(rows)d s poizvedbo." ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Če želite letno sezonskost. Celo število določa Fourier-jev red sezonskosti." + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo in spustnim izbirnikom omejitev." ], - "Show": ["Prikaži"], - "Show Bubbles": ["Prikaži mehurčke"], - "Show CREATE VIEW statement": ["Prikaži CREATE VIEW stavek"], - "Show CSS Template": ["Prikaži CSS-predlogo"], - "Show Chart": ["Prikaži grafikon"], - "Show Column": ["Prikaži stolpec"], - "Show Dashboard": ["Prikaži nadzorno ploščo"], - "Show Database": ["Prikaži podatkovno bazo"], - "Show Labels": ["Prikaži oznake"], - "Show Less...": ["Prikaži manj..."], - "Show Log": ["Prikaži dnevnik"], - "Show Markers": ["Prikaži markerje"], - "Show Metric": ["Prikaži mero"], - "Show Metric Names": ["Prikaži imena mer"], - "Show Range Filter": ["Prikaži filter obdobja"], - "Show Table": ["Prikaži tabelo"], - "Show Timestamp": ["Prikaži časovno značko"], - "Show Tooltip Labels": ["Prikaži oznake na opisu orodja"], - "Show Total": ["Prikaži vsoto"], - "Show Trend Line": ["Prikaži trendno črto"], - "Show Upper Labels": ["Prikaži zgornje oznake"], - "Show Value": ["Prikaži vrednost"], - "Show Values": ["Prikaži vrednosti"], - "Show Y-axis": ["Prikaži Y-os"], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "Prikaz Y-osi na hitrem grafikonu. Če je nastavljena vrednost min/max, pokaže to, drugače pa glede na podatke." + "%(rows)d rows returned": ["%(rows)d vrnjenih vrstic"], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "Število prikazanih vrstic je omejeno na %(rows)d z izbiro v spustnem seznamu." ], - "Show all columns": ["Prikaži vse stolpce"], - "Show all...": ["Prikaži vse..."], - "Show axis line ticks": ["Prikaži oznake na X-osi"], - "Show cell bars": ["Prikaži grafe v celicah"], - "Show chart description": ["Prikaži opis grafikona"], - "Show columns subtotal": ["Prikaži delne vsote stolpcev"], - "Show columns total": ["Prikaži vsoto stolpcev"], - "Show data points as circle markers on the lines": [ - "Prikaži točke kot krožne markerje na krivuljah" + "Track job": ["Sledi opravilom"], + "See query details": ["Podrobnosti poizvedbe"], + "Query was stopped": ["Poizvedba je bila ustavljena"], + "Database error": ["Napaka podatkovne baze"], + "was created": ["ustvarjeno"], + "Query in a new tab": ["Poizvedba v novem zavihku"], + "The query returned no data": ["Poizvedba ni vrnila podatkov"], + "Fetch data preview": ["Pridobi predogled podatkov"], + "Refetch results": ["Ponovno pridobi rezultate"], + "Stop": ["Ustavi"], + "Run selection": ["Zaženi izbrano"], + "Run": ["Zaženi"], + "Stop running (Ctrl + x)": ["Ustavi (Ctrl + x)"], + "Stop running (Ctrl + e)": ["Ustavi (Ctrl + e)"], + "Run query (Ctrl + Return)": ["Zaženi poizvedbo (Ctrl + Return)"], + "Save": ["Shrani"], + "Untitled Dataset": ["Neimenovan podatkovni set"], + "An error occurred saving dataset": [ + "Pri shranjevanju podatkovnega seta je prišlo do napake" ], - "Show empty columns": ["Prikaži prazne stolpce"], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ - "Prikaže hierarhična razmerja podatkov, pri čemer je vrednost ponazorjena s ploščino, ki predstavlja delež oz. prispevek k celoti." + "Save or Overwrite Dataset": ["Shrani ali prepiši podatkovni set"], + "Back": ["Nazaj"], + "Save as new": ["Shrani kot novo"], + "Overwrite existing": ["Prepiši obstoječe"], + "Select or type dataset name": [ + "Izberite ali vnesite naziv podatkovnega seta" ], - "Show info tooltip": ["Prikaži opis orodja"], - "Show label": ["Prikaži oznako"], - "Show labels when the node has children.": [ - "Prikaži oznake, ko ima vozlišče podrejene elemente." + "Existing dataset": ["Obstoječ podatkovni set"], + "Are you sure you want to overwrite this dataset?": [ + "Ali ste prepričani, da želite prepisati podatkovni set?" ], - "Show legend": ["Prikaži legendo"], - "Show less columns": ["Prikaži manj stolpcev"], - "Show less...": ["Prikaži manj..."], - "Show minor ticks on axes.": ["Na oseh prikaži pomožne oznake."], - "Show only my charts": ["Prikaži samo moje grafikone"], - "Show password.": ["Prikaži geslo."], - "Show percentage": ["Prikaži procente"], - "Show pointer": ["Prikaži kazalec"], - "Show progress": ["Prikaži območje"], - "Show rows subtotal": ["Prikaži delne vsote vrstic"], - "Show rows total": ["Prikaži vsoto vrstic"], - "Show series values on the chart": [ - "Na grafikonu prikaži vrednosti serij" + "Undefined": ["Ni definirano"], + "Save dataset": ["Shrani podatkovni set"], + "Save as": ["Shrani kot"], + "Save query": ["Shrani poizvedbo"], + "Cancel": ["Prekliči"], + "Update": ["Posodobi"], + "Label for your query": ["Ime vaše poizvedbe"], + "Write a description for your query": ["Dodajte opis vaše poizvedbe"], + "Submit": ["Pošlji"], + "Schedule query": ["Urnik poizvedb"], + "Schedule": ["Urnik"], + "There was an error with your request": [ + "Pri zahtevi je prišlo do napake" ], - "Show split lines": ["Prikaži razdelitvene črte"], - "Show the value on top of the bar": [ - "Prikaži vrednosti na vrhu stolpcev" + "Please save the query to enable sharing": [ + "Shranite poizvedbo za deljenje" ], - "Show time column": ["Prikaži časovne stolpce"], - "Show time grain dropdown": ["Prikaži izbirnik časovne granulacije"], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "Prikaži skupno agregacijo izbrane mere. Omejitev števila vrstic ne vpliva na rezultat." + "Copy query link to your clipboard": [ + "Kopiraj povezavo do poizvedbe v odložišče" ], - "Show totals": ["Prikaži vsote"], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "Prikaže eno vrednost. Velika številka je primerna za poudarek KPI-ja ali vrednosti, na katero želite usmeriti pozornost." + "Save the query to enable this feature": [ + "Za omogočenje te funkcije shranite poizvedbo" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "Prikaže eno vrednost skupaj s preprostim črtnim grafikonom, za poudarek pomembne mere skupaj z njeno časovno spremembo." + "Copy link": ["Kopiraj povezavo"], + "No stored results found, you need to re-run your query": [ + "Rezultatov še ni shranjenih, ponovno morate zagnati poizvedbo" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "Prikaže kako se mera spreminja, ko lijak napreduje. Standardni grafikon za prikaz sprememb med nivoji v procesu ali življenjskem ciklu." + "Run a query to display results": [ + "Za prikaz rezultatov morate zagnati poizvedbo" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "Prikaže potek ali povezave med kategorijami z debelino tetiv. Vrednost in debelina sta lahko različni za vsako stran." + "Preview: `%s`": ["Predogled: `%s`"], + "Query history": ["Zgodovina poizvedb"], + "Schedule the query periodically": ["Periodično zaganjaj poizvedbo"], + "You must run the query successfully first": [ + "Najprej morate uspešno izvesti poizvedbo" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "Prikaže napredovanje posamezne mere glede na cilj. Večja napolnjenost, pomeni, da je mera bližje cilju." + "Autocomplete": ["Samodokončaj"], + "CREATE TABLE AS": ["CREATE TABLE AS"], + "CREATE VIEW AS": ["CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "Oceni potratnost pred zagonom poizvedbe" ], - "Showing %s of %s": ["Prikazanih %s od %s"], - "Shows a list of all series available at that point in time": [ - "Prikaže seznam vseh razpoložljivih podatkovnih serij za istočasno točko" + "Specify name to CREATE VIEW AS schema in: public": [ + "Podajte naziv sheme za CREATE VIEW AS: public" ], - "Shows or hides markers for the time series": [ - "Prikaže ali skrije markerje časovne serije" + "Specify name to CREATE TABLE AS schema in: public": [ + "Podajte naziv sheme za CREATE TABLE AS: public" ], - "Significance Level": ["Stopnja značilnosti"], - "Simple": ["Preprosto"], - "Simple ad-hoc metrics are not enabled for this dataset": [ - "Preproste ad-hoc mere za ta podatkovni set niso omogočene" + "Select a database to write a query": [ + "Izberite podatkovno bazo za poizvedbo" ], - "Single": ["Posamezno"], - "Single Metric": ["Ena mera"], - "Single Value": ["Ena vrednost"], - "Single value": ["Ena vrednost"], - "Single value type": ["Tip z eno vrednostjo"], - "Size of edge symbols": ["Velikost simbola povezave"], - "Size of marker. Also applies to forecast observations.": [ - "Velikost markerja. Upošteva se tudi za napovedi." + "Choose one of the available databases from the panel on the left.": [ + "Izberite eno od razpoložljivih podatkovnih baz v panelu na levi." ], - "Sizes of vehicles": ["Velikosti vozil"], - "Skip Blank Lines": ["Izpusti prazne vrstice"], - "Skip Initial Space": ["Izpusti začetni presledek"], - "Skip Rows": ["Izpusti vrstice"], - "Skip blank lines rather than interpreting them as Not A Number values": [ - "Raje izpusti prazne vrstice, kot pa da so prepoznane kot NaN vrednosti" + "Create": ["Ustvari"], + "Collapse table preview": ["Zapri predogled tabele"], + "Expand table preview": ["Odpri predogled tabele"], + "Reset state": ["Ponastavi stanje"], + "Enter a new title for the tab": ["Vnesite novo naslov zavihka"], + "Close tab": ["Zapri zavihek"], + "Rename tab": ["Preimenuj zavihek"], + "Expand tool bar": ["Razširi orodno vrstico"], + "Hide tool bar": ["Skrij orodno vrstico"], + "Close all other tabs": ["Zapri vse ostale zavihke"], + "Duplicate tab": ["Podvoji zavihek"], + "Add a new tab": ["Dodaj nov zavihek"], + "New tab (Ctrl + q)": ["Nov zavihek (Ctrl + q)"], + "New tab (Ctrl + t)": ["Nov zavihek (Ctrl + t)"], + "Add a new tab to create SQL Query": [ + "Dodaj nov zavihek za SQL-poizvedbo" ], - "Skip spaces after delimiter": ["Izpusti presledke za ločilnikom"], - "Slug": ["Slug"], - "Small": ["Majhno"], - "Small number format": ["Oblika zapisa majhnih števil"], - "Smooth Line": ["Zglajena črta"], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "Zglajeni črtni grafikon je izpeljanka črtnega grafikona, ki zgladi ostre robove krivulje." + "An error occurred while fetching table metadata": [ + "Pri pridobivanju metapodatkov tabele je prišlo do napake" ], - "Solid": ["Zapolnjen"], - "Some roles do not exist": ["Nekatere vloge ne obstajajo"], - "Something went wrong.": ["Nekaj je šlo narobe."], - "Sorry there was an error fetching database information: %s": [ - "Pri pridobivanju informacij o podatkovni bazi je prišlo do napake: %s" + "Copy partition query to clipboard": [ + "Kopiraj particijsko poizvedbo na odložišče" ], - "Sorry there was an error fetching saved charts: ": [ - "Prišlo je do napake pri pridobivanju shranjenih grafikonov: " + "latest partition:": ["zadnja particija:"], + "Keys for table": ["Ključi za tabelo"], + "View keys & indexes (%s)": ["Ogled ključev in indeksov (%s)"], + "Original table column order": ["Vrstni red stolpcev izvorne tabele"], + "Sort columns alphabetically": ["Razvrsti stolpce po abecedi"], + "Copy SELECT statement to the clipboard": [ + "Kopiraj stavek SELECT na odložišče" + ], + "Show CREATE VIEW statement": ["Prikaži CREATE VIEW stavek"], + "CREATE VIEW statement": ["CREATE VIEW stavek"], + "Remove table preview": ["Odstrani predogled tabele"], + "Assign a set of parameters as": ["Določi nabor parametrov kot"], + "below (example:": ["v polje spodaj (primer:"], + "), and they become available in your SQL (example:": [ + "), s čimer bodo na razpolago v sklopu SQL-poizvedbe (primer:" + ], + "by using": ["z uporabo"], + "Jinja templating": ["Jinja"], + "syntax.": ["sintakse."], + "Edit template parameters": ["Uredi parametre predloge"], + "Parameters ": ["Parametri "], + "Invalid JSON": ["Neveljaven JSON"], + "Untitled query": ["Neimenovana poizvedba"], + "%s%s": ["%s%s"], + "Control": ["Nadzor"], + "Before": ["Pred"], + "After": ["Potem"], + "Click to see difference": ["Kliknite za prikaz razlike"], + "Altered": ["Spremenjeno"], + "Chart changes": ["Spremembe grafikona"], + "Modified by: %s": ["Spremenil: %s"], + "Loaded data cached": ["Naloženo v predpomnilnik"], + "Loaded from cache": ["Naloženo iz predpomnilnika"], + "Click to force-refresh": ["Kliknite za prisilno osvežitev"], + "Cached": ["Predpomnjeno"], + "Add required control values to preview chart": [ + "Dodaj potrebne parametre za predogled grafikona" + ], + "Your chart is ready to go!": ["Grafikon je pripravljen!"], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Kliknite na gumb \"Ustvari grafikon\" v kontrolni plošči na levi za predogled ali" + ], + "click here": ["kliknite tukaj"], + "No results were returned for this query": [ + "Poizvedba ni vrnila rezultatov" + ], + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Poskrbite, da so kontrolniki pravilno nastavljeni in podatkovni vir vsebuje podatke za izbrano časovno obdobje" + ], + "An error occurred while loading the SQL": [ + "Pri nalaganju SQL je prišlo do napake" ], - "Sorry, An error occurred": ["Prišlo je do napake"], "Sorry, an error occurred": ["Prišlo je do napake"], - "Sorry, an unknown error occurred": ["Prišlo je do neznane napake"], - "Sorry, an unknown error occurred.": ["Prišlo je do neznane napake."], - "Sorry, something went wrong. Embedding could not be deactivated.": [ - "Nekaj je šlo narobe. Vgrajevanja ni mogoče deaktivirati." + "Updating chart was stopped": [ + "Posodabljanje grafikona je bilo ustavljeno" ], - "Sorry, something went wrong. Try again later.": [ - "Nekaj je šlo narobe. Poskusite ponovno kasneje." + "An error occurred while rendering the visualization: %s": [ + "Pri prikazovanju vizualizacije je prišlo do napake: %s" ], - "Sorry, there appears to be no data": ["Ni podatkov"], - "Sorry, there was an error saving this %s: %s": [ - "Prišlo je do napake pri shranjevanju %s: %s" + "Network error.": ["Napaka omrežja."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Medsebojni filter bo uporabljen za vse grafikone, ki uporabljajo ta podatkovni set." ], - "Sorry, there was an error saving this dashboard: %s": [ - "Prišlo je do napake pri shranjevanju nadzorne plošče: %s" + "You can also just click on the chart to apply cross-filter.": [ + "Lahko tudi samo kliknete na grafikon za medsebojno filtriranje." ], - "Sorry, your browser does not support copying.": [ - "Vaš brskalnik ne podpira kopiranja." + "Cross-filtering is not enabled for this dashboard.": [ + "Medsebojni filtri za to nadzorno ploščo niso omogočeni." ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "Vaš brskalnik ne podpira kopiranja. Uporabite Ctrl / Cmd + C!" + "This visualization type does not support cross-filtering.": [ + "Ta tip vizualizacije ni podpira medsebojnih filtrov." ], - "Sort": ["Razvrsti"], - "Sort Bars": ["Uredi stolpce"], - "Sort Descending": ["Razvrsti padajoče"], - "Sort Metric": ["Mera za razvrščanje"], - "Sort Series Ascending": ["Razvrsti serije naraščajoče"], - "Sort Series By": ["Razvrsti serije po"], - "Sort X Axis": ["Razvrsti X-os"], - "Sort Y Axis": ["Razvrsti Y-os"], - "Sort ascending": ["Razvrsti naraščajoče"], - "Sort bars by x labels.": ["Uredi stolpce po x-oznakah."], - "Sort by": ["Razvrščanje po"], - "Sort by %s": ["Razvrščanje po %s"], - "Sort by metric": ["Mera za razvrščanje"], - "Sort columns alphabetically": ["Razvrsti stolpce po abecedi"], - "Sort columns by": ["Razvrsti stolpce"], - "Sort descending": ["Razvrsti padajoče"], - "Sort filter values": ["Razvrsti vrednosti filtra"], - "Sort metric": ["Mera za razvrščanje"], - "Sort rows by": ["Razvrsti vrstice"], - "Sort series in ascending order": ["Razvrsti serije naraščajoče"], - "Sort type": ["Način razvrščanja"], - "Source": ["Izvor"], - "Source / Target": ["Izhodišče/Cilj"], - "Source SQL": ["Izvorni SQL"], - "Source category": ["Kategorija izvora"], - "Sparkline": ["Hitri grafikon"], - "Spatial": ["Prostorski"], - "Specific Date/Time": ["Fiksen Datum/Čas"], - "Specify a schema (if database flavor supports this).": [ - "Podajte shemo (če vrsta podatkovne baze to podpira)" - ], - "Specify name to CREATE TABLE AS schema in: public": [ - "Podajte naziv sheme za CREATE TABLE AS: public" - ], - "Specify name to CREATE VIEW AS schema in: public": [ - "Podajte naziv sheme za CREATE VIEW AS: public" + "You can't apply cross-filter on this data point.": [ + "Za to podatkovno točko ne morete uporabiti medsebojnega filtra." ], - "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ - "Podajte verzijo podatkovne baze. Uporablja se s Presto za potrebe ocenjevanja potratnosti poizvedbe in z Dremio za sprememba sintakse." + "Remove cross-filter": ["Odstrani medsebojne filtre"], + "Add cross-filter": ["Dodaj medsebojni filter"], + "Failed to load dimensions for drill by": [ + "Neuspešno nalaganje dimenzij za \"Vrtanje po\"" ], - "Split number": ["Število razdelitev"], - "Square kilometers": ["Kvadratni kilometri"], - "Square meters": ["Kvadratni metri"], - "Square miles": ["Kvadratne milje"], - "Stack": ["Naloži"], - "Stack Trace:": ["Izpis napake:"], - "Stack series": ["Nalagaj serije"], - "Stack series on top of each other": ["Nalagaj serije eno na drugo"], - "Stacked": ["Naložen"], - "Stacked Bars": ["Naloženi stolpci"], - "Stacked Style": ["Slog nalaganja"], - "Stacked style": ["Naložen slog"], - "Standard time series": ["Standardna časovna vrsta"], - "Start": ["Začetek"], - "Start (Longitude, Latitude): ": ["Začetek (Zemlj. dolžina, širina): "], - "Start Longitude & Latitude": ["Začetna Dolž. in Širina"], - "Start Review": ["Začetek pregleda"], - "Start angle": ["Začetni kot"], - "Start at (UTC)": ["Zažene se ob (UTC)"], - "Start date": ["Začetni datum"], - "Start date included in time range": [ - "Začetni datum je vključen v časovno obdobje" + "Drill by is not yet supported for this chart type": [ + "Vrtanje po še ni podprto za grafikon tega tipa" ], - "Start y-axis at 0": ["Začni y-os z 0"], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "Začni y-os z nič. Ne izberite, če želite, da se y-os začne z najmanjšo vrednostjo podatkov." + "Drill by is not available for this data point": [ + "Vrtanje po ni mogoče za to podatkovno točko" ], - "Started": ["Začetek"], - "State": ["Status"], - "Statement %(statement_num)s out of %(statement_count)s": [ - "Izraz %(statement_num)s od %(statement_count)s" + "Drill by": ["Vrtanje po"], + "Search columns": ["Iskanje stolpcev"], + "No columns found": ["Ni najdenih stolpcev"], + "Failed to generate chart edit URL": [ + "Neuspešno ustvarjanje URL za urejanje grafikona" ], - "Statistical": ["Statistično"], - "Status": ["Status"], - "Step - end": ["Stopnica - konec"], - "Step - middle": ["Stopnica - sredina"], - "Step - start": ["Stopnica - začetek"], - "Step type": ["Stopnični tip"], - "Stepped Line": ["Stopničasta črta"], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Stopničasti grafikon je izpeljanka črtnega grafikona, pri čemer krivuljo tvorijo stopnice med posameznimi točkami. Koristen je za prikaz sprememb na posameznih intervalih." + "Edit chart": ["Uredi grafikon"], + "Close": ["Zapri"], + "Failed to load chart data.": ["Neuspešno nalaganje podatkov grafikona."], + "Drill by: %s": ["Vrtanje po: %s"], + "There was an error loading the chart data": [ + "Napaka pri nalaganju podatkov grafikona" ], - "Stop": ["Ustavi"], - "Stop query": ["Ustavi poizvedbo"], - "Stop running (Ctrl + e)": ["Ustavi (Ctrl + e)"], - "Stop running (Ctrl + x)": ["Ustavi (Ctrl + x)"], - "Stopped an unsafe database connection": [ - "Nevarna povezava s podatkovno bazo je bila ustavljena" + "Results %s": ["Rezultati %s"], + "Drill to detail by": ["Vrtanje v podrobnosti po"], + "Drill to detail": ["Vrtanje v podrobnosti"], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Vrtanje v podrobnosti je onemogočeno, ker ta grafikon ne združuje podatkov po vrednosti dimenzije." ], - "Stream": ["Tok"], - "Streets": ["Ulice"], - "Strength to pull the graph toward center": [ - "Sila privlačnosti med grafikonom in središčem" + "Drill to detail by value is not yet supported for this chart type.": [ + "Vrtanje v podrobnosti po vrednosti še ni podprto za grafikon tega tipa." ], - "Stretched style": ["Raztegnjen slog"], - "Strings used for sheet names (default is the first sheet).": [ - "Znakovni nizi uporabljeni za imena preglednic (privzeto je prva preglednica)." + "Right-click on a dimension value to drill to detail by that value.": [ + "Z desnim klikom na dimenzijo vrtajte v podrobnosti po tej vrednosti." ], - "Stroke Color": ["Barva obrobe"], - "Stroke Width": ["Debelina obrobe"], - "Stroked": ["Obrobljeno"], - "Structural": ["Strukturni"], - "Style": ["Slog"], - "Style the ends of the progress bar with a round cap": [ - "Zaobljena oblika koncev območja" + "Drill to detail: %s": ["Vrtanje v podrobnosti: %s"], + "Formatting": ["Oblikovanje"], + "Formatted value": ["Oblikovana vrednost"], + "No rows were returned for this dataset": [ + "Za podatkovni set ni vrnjenih vrstic" ], - "Subdomain": ["Poddomena"], - "Subheader": ["Podnaslov"], - "Subheader Font Size": ["Velikost pisave podnaslova"], - "Submit": ["Pošlji"], - "Subtotal": ["Delna vsota"], - "Success": ["Uspelo"], - "Successfully changed dataset!": ["Podatkovni set uspešno spremenjen!"], - "Suffix": ["Pripona"], - "Suffix to apply after the percentage display": [ - "Pripona za prikaz procenta" + "Reload": ["Ponovno naloži"], + "Copy": ["Kopiraj"], + "Copy to clipboard": ["Kopiraj na odložišče"], + "Copied to clipboard!": ["Kopirano na odložišče!"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "Vaš brskalnik ne podpira kopiranja. Uporabite Ctrl / Cmd + C!" ], - "Sum": ["Vsota"], - "Sum as Fraction of Columns": ["Vsota kot delež stolpcev"], - "Sum as Fraction of Rows": ["Vsota kot delež vrstic"], - "Sum as Fraction of Total": ["Vsota kot delež celote"], - "Sum of values over specified period": ["Vsota vrednosti v dani periodi"], - "Sum values": ["Vsote"], - "Sunburst": ["Večnivojski tortni grafikon"], - "Sunburst Chart": ["Večnivojski tortni grafikon"], - "Sunburst Chart v2": ["Večnivojski tortni grafikon v2"], + "every": ["vsak"], + "every month": ["vsak mesec"], + "every day of the month": ["vsak dan v mesecu"], + "day of the month": ["dan v mesecu"], + "every day of the week": ["vsak dan v tednu"], + "day of the week": ["dan v tednu"], + "every hour": ["vsako uro"], + "every minute": ["vsako minuto"], + "minute": ["minuta"], + "reboot": ["ponovni zagon"], + "Every": ["Vsak"], + "in": ["v"], + "on": ["v"], + "and": ["in"], + "at": ["ob"], + ":": [":"], + "minute(s)": ["minut"], + "Invalid cron expression": ["Neveljaven cron izraz"], + "Clear": ["Počisti"], "Sunday": ["Nedelja"], - "Superset Chart": ["Superset grafikon"], - "Superset Embedded SDK documentation.": [ - "Dokumentacija SDK za vgrajevanje." + "Monday": ["Ponedeljek"], + "Tuesday": ["Torek"], + "Wednesday": ["Sreda"], + "Thursday": ["Četrtek"], + "Friday": ["Petek"], + "Saturday": ["Sobota"], + "January": ["Januar"], + "February": ["Februar"], + "March": ["Marec"], + "April": ["April"], + "May": ["Maj"], + "June": ["Junij"], + "July": ["Julij"], + "August": ["Avgust"], + "September": ["September"], + "October": ["Oktober"], + "November": ["November"], + "December": ["December"], + "SUN": ["NED"], + "MON": ["PON"], + "TUE": ["TOR"], + "WED": ["SRE"], + "THU": ["ČET"], + "FRI": ["PET"], + "SAT": ["SOB"], + "JAN": ["JAN"], + "FEB": ["FEB"], + "MAR": ["MAR"], + "APR": ["APR"], + "MAY": ["MAJ"], + "JUN": ["JUN"], + "JUL": ["JUL"], + "AUG": ["AVG"], + "SEP": ["SEP"], + "OCT": ["OKT"], + "NOV": ["NOV"], + "DEC": ["DEC"], + "There was an error loading the schemas": ["Napaka pri nalaganju shem"], + "Select database or type to search databases": [ + "Izberite ali vnesite ime podatkovne baze" ], - "Superset chart": ["Superset grafikon"], - "Superset dashboard": ["Superset nadzorna plošča"], - "Superset encountered an error while running a command.": [ - "Superset je naletel na napako pri izvajanju ukaza." + "Force refresh schema list": ["Osveži seznam shem"], + "Select schema or type to search schemas": [ + "Izberite ali vnesite ime sheme" ], - "Superset encountered an unexpected error.": [ - "Superset je naletel na nepričakovano napako." + "No compatible schema found": ["Ni najdenih skladnih shem"], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Opozorilo! Sprememba podatkovnega seta lahko pokvari grafikon, če metapodatki ne obstajajo." ], - "Supported databases": ["Podprte podatkovne baze"], - "Survey Responses": ["Rezultati anket"], + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Sprememba podatkovnega seta lahko pokvari grafikon, če se le-ta zanaša na stolpce ali metapodatke, ki ne obstajajo v ciljnem podatkovnem nizu" + ], + "dataset": ["podatkovni set"], + "Successfully changed dataset!": ["Podatkovni set uspešno spremenjen!"], + "Connection": ["Povezava"], "Swap dataset": ["Zamenjaj podatkovni set"], - "Swap rows and columns": ["Zamenjaj vrstice in stolpce"], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Univerzalni grafikon za vizualizacijo podatkov. Izbirajte med stopničastimi, črtnimi, raztresenimi in stolpčnimi grafikoni. Grafikon ima širok nabor prilagoditev." + "Proceed": ["Nadaljuj"], + "Warning!": ["Opozorilo!"], + "Search / Filter": ["Iskanje / Filter"], + "Add item": ["Dodaj"], + "STRING": ["STRING"], + "NUMERIC": ["NUMERIC"], + "DATETIME": ["DATETIME"], + "BOOLEAN": ["BOOLEAN"], + "Physical (table or view)": ["Fizičen (tabela ali pogled)"], + "Virtual (SQL)": ["Virtualen (SQL-poizvedba)"], + "Data type": ["Tip podatka"], + "Advanced data type": ["Napredni podatkovni tip"], + "Advanced Data type": ["Napredni podatkovni tip"], + "Datetime format": ["Oblika datum-časa"], + "The pattern of timestamp format. For strings use ": [ + "Format zapisa časovne značke. Za znakovne nize uporabite " ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Univerzalni grafikon za prikaz časovnih vrst. Izbirajte med stopničastimi, črtnimi, raztresenimi in stolpčnimi grafikoni. Grafikon ima širok nabor prilagoditev." + "Python datetime string pattern": ["Pythonov format zapisa datum-časa"], + " expression which needs to adhere to the ": [" , ki mora upoštevati "], + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + " standard, ki zagotavlja, de se leksikografsko razvrščanje\n sklada s kronološkim. Če oblika\n časovne značke ni v skladu s standardom ISO 8601,\n boste morali definirati izraz in tip za transformacijo\n znakovnega niza v datum ali časovno značko.\n Trenutno časovni pasovi niso podprti.\n Če je čas shranjen v obliki epohe, dodajte `epoch_s` ali `epoch_ms`.\n Če format ni podan, se uporabijo privzete vrednosti za\n podatkovno bazo oz. tip stolpca s pomočjo dodatnega parametra." ], - "Symbol": ["Simbol"], - "Symbol of two ends of edge line": ["Simbol za konca povezave"], - "Symbol size": ["Velikost simbola"], - "Sync columns from source": ["Sinhroniziraj stolpce z virom"], - "Syntax": ["Sintaksa"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ - "Napaka v sintaksi: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" - ], - "TABLES": ["TABELE"], - "TEMPORAL X-AXIS": ["ČASOVNA X-OS"], - "TEMPORAL_RANGE": ["ČASOVNI_OBSEG"], - "THU": ["ČET"], - "TUE": ["TOR"], - "Tab name": ["Naslov zavihka"], - "Tab title": ["Naslov zavihka"], - "Table": ["Tabela"], - "Table %(table)s wasn't found in the database %(db)s": [ - "Tabela %(table)s ni bila najdena v podatkovni bazi %(db)s" - ], - "Table Exists": ["Tabela obstaja"], - "Table Name": ["Ime tabele"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "Tabele [%(table_name)s] ni mogoče najti. Preverite povezavo, shemo in ime podatkovne baze" - ], - "Table cache timeout": ["Trajanje predpomnilnika tabele"], - "Table columns": ["Stolpci tabele"], - "Table name cannot contain a schema": [ - "Ime tabele ne sme vsebovati sheme" + "Certified By": ["Certificiral/a"], + "Person or group that has certified this metric": [ + "Oseba ali skupina, ki je certificirala to mero" ], - "Table name undefined": ["Ime tabele ni definirano"], - "Table or View \"%(table)s\" does not exist.": [ - "Tabela ali pogled \"%(table)s\" ne obstaja." + "Certified by": ["Certificiral/a"], + "Certification details": ["Podrobnosti certifikacije"], + "Details of the certification": ["Podrobnosti certifikacije"], + "Is dimension": ["Dimenzija"], + "Default datetime": ["Privzet datumčas"], + "Is filterable": ["Filtriranje"], + "": [""], + "Select owners": ["Izberite lastnike"], + "Modified columns: %s": ["Spremenjeni stolpci: %s"], + "Removed columns: %s": ["Odstranjeni stolpci: %s"], + "New columns added: %s": ["Dodani novi stolpci: %s"], + "Metadata has been synced": ["Metapodatki so sinhronizirani"], + "An error has occurred": ["Prišlo je do napake"], + "Column name [%s] is duplicated": ["Ime stolpca [%s] je podvojeno"], + "Metric name [%s] is duplicated": ["Ime mere [%s] je podvojeno"], + "Calculated column [%s] requires an expression": [ + "Izračunan stolpec [%s] zahteva izraz" ], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "Tabela, ki prikazuje uparjene t-teste, ki se uporabljajo za prikaz statističnih razlik med skupinami." + "Invalid currency code in saved metrics": [ + "Neveljavna koda valute v shranjeni meri" ], - "Tables": ["Tabele"], - "Tabs": ["Zavihki"], - "Tabular": ["Tabelarično"], - "Tag": ["Oznaka"], - "Tag could not be created.": ["Oznake ni mogoče ustvariti."], - "Tag could not be deleted.": ["Oznake ni mogoče izbrisati."], - "Tag could not be found.": ["Oznake ni mogoče najti."], - "Tag could not be updated.": ["Oznake ni mogoče posodobiti."], - "Tag created": ["Oznaka ustvarjena"], - "Tag name": ["Ime oznake"], - "Tag name is invalid (cannot contain ':')": [ - "Ime oznake ni pravilno (ne sme vsebovati ':')" + "Basic": ["Osnovno"], + "Default URL": ["Privzeti URL"], + "Default URL to redirect to when accessing from the dataset list page": [ + "Privzeti URL za preusmeritev, ko dostopate iz strani s seznamom podatkovnih setov" ], - "Tag parameters are invalid.": ["Parametri oznak so neveljavni."], - "Tag updated": ["Oznaka posodobljena"], - "Tagged %s %ss": ["Označen %s %s"], - "Tagged Object could not be deleted.": [ - "Označenega elementa ni mogoče izbrisati." + "Autocomplete filters": ["Samodokončaj filtre"], + "Whether to populate autocomplete filters options": [ + "Če želite napolniti možnosti za samodokončanje filtrov" ], - "Tags": ["Oznake"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "Vzame podatkovne točke in jih razporedi v razdelke, kjer se vidi območja z največjo gostoto informacij" + "Autocomplete query predicate": ["Predikat za samodokončanje poizvedb"], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "Ko uporabljate \"Samodokončaj filtre\", lahko s tem izboljšate hitrost pridobivanja rezultatov s poizvedbo. Z uporabo te možnosti dodate predikat (WHERE stavek) k poizvedbi za izbiro različnih vrednosti iz tabele. Običajno je namen omejiti poizvedbo z uporabo filtra za relativni čas na particioniranem ali indeksiranem časovnem polju." ], - "Target": ["Cilj"], - "Target Color": ["Ciljna barva"], - "Target category": ["Kategorija cilja"], - "Target value": ["Ciljna vrednost"], - "Template Name": ["Ime predloge"], - "Template parameters": ["Parametri predlog"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Vzorčna povezava, vključiti je mogoče {{ metric }} ali drugo vrednost iz kontrolnikov." + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Dodatni podatki za tabelo metapodatkov. Trenutno je podprta naslednja oblika zapisa metapodatkov: `{ \"certification\": { \"certified_by\": \"Tim za razvoj\", \"details\": \"Ta tabela je vir resnice.\" }, \"warning_markdown\": \"To je opozorilo.\" }`." ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "Ustavi zagnane poizvedbe, ko se zapre okno brskalnika ali uporabnik gre na drugo stran. Na razpolago za Presto, Hive, MySQL, Postgres in Snowflake podatkovne baze." + "Cache timeout": ["Časovna omejitev predpomnilnika"], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "Trajanje (v sekundah) do razveljavitve predpomnilnika. Nastavite -1, da onemogočite predpomnjenje." ], - "Test Connection": ["Preizkus povezave"], - "Test connection": ["Preizkus povezave"], - "Text": ["Besedilo"], - "Text align": ["Poravnava besedila"], - "Text embedded in email": ["Besedilo vključeno v e-pošto"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "Odziv API-ja iz %s se ne ujema z vmesnikom IDatabaseTable." + "Hours offset": ["Urni premik"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Število ur, negativno ali pozitivno, za zamik časovnega stolpca. Na ta način je mogoče UTC čas prestaviti na lokalni čas." ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "CSS za posamezne nadzorne plošče lahko spreminjamo tukaj ali pa v pogledu nadzorne plošče, kjer so spremembe vidne takoj" + "Normalize column names": ["Normiraj imena stolpcev"], + "Always filter main datetime column": [ + "Vedno filtriraj glavni časovni stolpec" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTAS (create table as select) na koncu nima SELECT stavka. Poskrbite, da bo v poizvedbi SELECT zadnji stavek. Potem ponovno poženite poizvedbo." + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ + "Če so sekundarni časovni stolpci filtrirani, uporabi enak filter tudi za glavni časovni stolpec." ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "GeoJsonLayer uporablja podatke v formatu GeoJSON in jih izriše kot interaktivne poligone, črte in točke (krogi, ikone in/ali besedila)." + "": [""], + "": [""], + "Click the lock to make changes.": [ + "Kliknite ključavnico, da omogočite spreminjanje." ], - "The URL is missing the dataset_id or slice_id parameters.": [ - "V URL-ju manjkata parametra dataset_id ali slice_id." + "Click the lock to prevent further changes.": [ + "Kliknite ključavnico, da onemogočite spreminjanje." ], - "The X-axis is not on the filters list": ["X-osi ni na seznamu filtrov"], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "X-osi ni na seznamu filtrov, kar preprečuje njeno uporabo v\n\tfiltrih časovnega obdobja v nadzorni plošči. Jo želite najprej dodati na seznam filtrov?" + "virtual": ["virtualen"], + "Dataset name": ["Ime podatkovnega seta"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "Ko podajate SQL, se podatkovni vir obnaša kot pogled (view). Superset bo ta zapis uporabil kot podpoizvedbo, pri čemer bo združeval in filtriral na podlagi ustvarjenih starševskih poizvedb." ], - "The annotation has been saved": ["Označba je bila shranjena"], - "The annotation has been updated": ["Označba je bila posodobljena"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "Kategorija izvornih vozlišč, na podlagi katere je določena barva. Če je vozlišče povezano z več kot eno kategorijo, bo uporabljena samo prva." + "Physical": ["Fizičen"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Kazalec na fizično tabelo (ali pogled). Grafikon bo vezan na podatkovni set, ki kaže na tukaj referencirano fizično tabelo." ], - "The chart datasource does not exist": [ - "Podatkovni vir grafikona ne obstaja" + "Metric Key": ["Ključ mere"], + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ + "To polje se uporablja kot unikaten ID za vključitev mere v grafikon. Uporablja se tudi kot alias v SQL-poizvedbi." ], - "The chart does not exist": ["Grafikon ne obstaja"], - "The chart query context does not exist": [ - "Kontekst poizvedbe grafikona ne obstaja" + "D3 format": ["D3 format"], + "Metric currency": ["Valuta mere"], + "Select or type currency symbol": ["Izberite ali vnesite simbol valute"], + "Warning": ["Opozorilo"], + "Optional warning about use of this metric": [ + "Opcijsko opozorilo za uporabo te mere" ], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "Standardni grafikon za prikaz deležev. Tortne grafikone je težje natančno interpretirati, takrat lahko uporabite npr. stolpčni grafikon." + "": [""], + "Be careful.": ["Bodite previdni."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Spreminjanje teh nastavitev bo vplivalo na vse grafikone, ki uporabljajo ta podatkovni set, vključno z grafikoni v lasti drugih oseb." ], - "The color for points and clusters in RGB": [ - "Barva točk in gruč v RGB zapisu" + "Sync columns from source": ["Sinhroniziraj stolpce z virom"], + "Calculated columns": ["Izračunani stolpci"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ + "To polje se uporablja kot unikaten ID za vključitev izračunane dimenzije v grafikon. Uporablja se tudi kot alias v SQL-poizvedbi." ], - "The color of the isoband": ["Barva površinske plastnice"], - "The color of the isoline": ["Barva plastnice"], - "The color scheme for rendering chart": [ - "Barvna shema za izris grafikona" + "": [""], + "Settings": ["Nastavitve"], + "The dataset has been saved": ["Podatkovni set je shranjen"], + "Error saving dataset": [ + "Pri shranjevanju podatkovnega seta je prišlo do napake" ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "Barvna shema je določena s povezano nadzorno ploščo.\n Barvno shemo uredite v nastavitvah nadzorne plošče." + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Tukaj prikazane nastavitve podatkovnega seta\n vplivajo na vse grafikone, ki uporabljajo\n ta podatkovni set. Spreminjanje\n nastavitev lahko nezaželeno vpliva\n na druge grafikone." ], - "The column header label": ["Naslov stolpca"], - "The column was deleted or renamed in the database.": [ - "Stolpec je bil izbrisan ali preimenovan v podatkovni bazi." + "Are you sure you want to save and apply changes?": [ + "Ali resnično želite shraniti in uporabiti spremembe?" ], - "The country code standard that Superset should expect to find in the [country] column": [ - "Standard za oznake držav, ki bodo podane v stolpcu z državami" + "Confirm save": ["Potrdite shranjevanje"], + "OK": ["OK"], + "Edit Dataset ": ["Uredi podatkovni set "], + "Use legacy datasource editor": [ + "Uporabi zastareli urejevalnik podatkovnega vira" ], - "The dashboard has been saved": ["Nadzorna plošča je bila shranjena"], - "The data source seems to have been deleted": [ - "Zdi se, da je bil podatkovni vir izbrisan" + "This dataset is managed externally, and can't be edited in Superset": [ + "Podatkovni set se upravlja eksterno in ga ni mogoče urediti znotraj Superseta" ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "Podatkovni tip, ki izvira iz podatkovne baze. V nekaterih primerih je potrebno ročno vnesti tip za stolpce, ki temeljijo na izrazih. V večini primerov uporabniku tega ni potrebno spreminjati." + "DELETE": ["IZBRIŠI"], + "delete": ["izbriši"], + "Type \"%s\" to confirm": ["Vnesite \"%s\" za potrditev"], + "More": ["Več"], + "Click to edit": ["Kliknite za urejanje"], + "You don't have the rights to alter this title.": [ + "Nimate pravic za spreminjanje tega naslova." ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "Podatkovna baza %s je povezana z %s grafikoni, ki so prisotni na %s nadzornih ploščah. Uporabniki imajo odprtih %s zavihkov SQL-laboratorija s to podatkovno bazo. Ali želite nadaljevati? Izbris podatkovne baze bo pokvaril te objekte." + "No databases match your search": [ + "Nobena podatkovna baza ne ustreza iskanju" ], - "The database columns that contains lines information": [ - "Stolpec v podatkovni bazi, ki vsebuje podatke črt" + "There are no databases available": ["Podatkovnih baz ni na voljo"], + "Manage your databases": ["Upravljajte podatkovne baze"], + "here": ["tukaj"], + "Unexpected error": ["Nepričakovana napaka"], + "This may be triggered by:": ["To je lahko sproženo z/s:"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [ + "%(message)s\nTo je lahko sproženo z/s: \n%(issues)s" ], - "The database could not be found": ["Podatkovna baza ni bila najdena"], - "The database is currently running too many queries.": [ - "Podatkovna baza trenutno izvaja preveč poizvedb." + "%s Error": ["%s napaka"], + "Missing dataset": ["Manjka podatkovni set"], + "See more": ["Oglejte si več"], + "See less": ["Oglejte si manj"], + "Copy message": ["Kopiraj sporočilo"], + "Details": ["Podrobnosti"], + "Did you mean:": ["Ste mislili:"], + "Parameter error": ["Napaka parametra"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ + "%(subtitle)s\nTo je lahko sproženo z/s: \n %(issue)s" ], - "The database is under an unusual load.": [ - "Podatkovni vir je neobičajno obremenjen." + "Timeout error": ["Napaka pretečenega časa"], + "Click to favorite/unfavorite": [ + "Kliknite za priljubljeno/nepriljubljeno" ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "Podatkovna baza, referencirana v tej poizvedbi, ni bila najdena. Kontaktirajte administratorja za napotke ali pa poskusite znova." + "Cell content": ["Vsebina celice"], + "Hide password.": ["Skrij geslo."], + "Show password.": ["Prikaži geslo."], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Gonilnik podatkovne baze za uvoz ni nameščen. Za navodila pojdite na dokumentacijo Superseta: " ], - "The database returned an unexpected error.": [ - "Podatkovna baza je vrnila nepričakovano napako." + "OVERWRITE": ["PREPIŠI"], + "Database passwords": ["Gesla podatkovne baze"], + "%s PASSWORD": ["%s GESLO"], + "%s SSH TUNNEL PASSWORD": ["%s GESLO ZA SSH TUNEL"], + "%s SSH TUNNEL PRIVATE KEY": ["%s ZASEBNI KLJUČ ZA SSH TUNEL"], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [ + "%s GESLO ZASEBNEGA KLJUČA ZA SSH TUNEL" ], - "The database was deleted.": ["Podatkovna baza je bila izbrisana."], - "The database was not found.": ["Podatkovna baza ni bila najdena."], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "Podatkovni set %s je povezan z grafikoni %s, ki so prisotni na nadzorni plošči %s. Ali želite nadaljevati? Izbris podatkovnega seta bo pokvaril te objekte." + "Overwrite": ["Prepiši"], + "Import": ["Uvozi"], + "Import %s": ["Uvozi %s"], + "Select file": ["Izberite datoteko"], + "Last Updated %s": ["Zadnja posodobitev %s"], + "Sort": ["Razvrsti"], + "+ %s more": ["+ %s več"], + "%s Selected": ["Izbranih: %s"], + "Deselect all": ["Počisti izbor"], + "Add Tag": ["Dodaj oznako"], + "No results match your filter criteria": [ + "Noben rezultat ne ustreza vašim kriterijem" ], - "The dataset associated with this chart no longer exists": [ - "Podatkovni set, povezan s tem grafikonom, ne obstaja več" + "Try different criteria to display results.": [ + "Za prikaz rezultatov poskusite z drugačnimi kriteriji." ], - "The dataset column/metric that returns the values on your chart's x-axis.": [ - "Stolpec/mera podatkovnega seta, ki vrne vrednosti za x-os grafikona." + "clear all filters": ["počisti vse filtre"], + "No Data": ["Ni podatkov"], + "%s-%s of %s": ["%s-%s od %s"], + "Start date": ["Začetni datum"], + "End date": ["Končni datum"], + "Type a value": ["Vnesite vrednost"], + "Filter": ["Filter"], + "Select or type a value": ["Izberite ali vnesite vrednost"], + "Last modified": ["Zadnja sprememba"], + "Modified by": ["Spremenil"], + "Created by": ["Ustvaril"], + "Created on": ["Ustvarjeno"], + "Menu actions trigger": ["Preklapljanje funkcionalnosti menijev"], + "Select ...": ["Izberite ..."], + "Filter menu": ["Filtriraj meni"], + "Reset": ["Ponastavi"], + "No filters": ["Brez filtrov"], + "Select all items": ["Izberite vse elemente"], + "Search in filters": ["Iskanje v filtrih"], + "Select current page": ["Izberite trenutno stran"], + "Invert current page": ["Invertiraj trenutno stran"], + "Clear all data": ["Počisti vse podatke"], + "Select all data": ["Izberite vse podatke"], + "Expand row": ["Razširi vrstico"], + "Collapse row": ["Skrij vrstico"], + "Click to sort descending": ["Kliknite za padajoče razvrščanje"], + "Click to sort ascending": ["Kliknite za naraščajoče razvrščanje"], + "Click to cancel sorting": ["Kliknite za prekinitev razvrščanja"], + "List updated": ["Seznam posodobljen"], + "There was an error loading the tables": ["Napaka pri nalaganju tabel"], + "See table schema": ["Ogled sheme tabele"], + "Select table or type to search tables": [ + "Izberite ali vnesite ime tabele" ], - "The dataset column/metric that returns the values on your chart's y-axis.": [ - "Stolpec/mera podatkovnega seta, ki vrne vrednosti za y-os grafikona." + "Force refresh table list": ["Osveži seznam tabel"], + "You do not have permission to read tags": [ + "Nimate dovoljenja za branje oznak" ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "Tukaj prikazane nastavitve podatkovnega seta\n vplivajo na vse grafikone, ki uporabljajo\n ta podatkovni set. Spreminjanje\n nastavitev lahko nezaželeno vpliva\n na druge grafikone." + "Timezone selector": ["Izbira časovnega pasa"], + "Failed to save cross-filter scoping": [ + "Shranjevanje dosega medsebojnega filtra ni uspelo" ], - "The dataset has been saved": ["Podatkovni set je shranjen"], - "The dataset linked to this chart may have been deleted.": [ - "Podatkovni set, povezan s tem grafikonom, je bil izbrisan." + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Za to komponento ni dovolj prostora. Poskusite zmanjšati širino ali pa povečati širino cilja." ], - "The datasource couldn't be loaded": [ - "Podatkovnega vira ni mogoče naložiti" + "Can not move top level tab into nested tabs": [ + "Najvišjega zavihka ni mogoče premakniti v gnezdene zavihke" ], - "The datasource is too large to query.": [ - "Podatkovni vir je prevelik za poizvedbo." + "This chart has been moved to a different filter scope.": [ + "Ta grafikon je bil prestavljen v drug doseg filtrov." ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "Opis je lahko prikazan kot glava gradnika v pogledu nadzorne plošče. Podpira markdown." + "There was an issue fetching the favorite status of this dashboard.": [ + "Pri pridobivanju statusa \"priljubljeno\" za to nadzorno ploščo je prišlo do težave." ], - "The distance between cells, in pixels": [ - "Razdalja med celicami v pikslih" + "There was an issue favoriting this dashboard.": [ + "Pri uvrščanju nadzorne plošče med priljubljene je prišlo do težave." ], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ - "Trajanje (v sekundah) do razveljavitve predpomnilnika. Nastavite -1, da onemogočite predpomnjenje." + "This dashboard is now published": [ + "Nadzorna plošča je sedaj objavljena" ], - "The encoding format of the lines": ["Oblika kodiranja črt"], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "Objekt engine_params se razširi v klic sqlalchemy.create_engine." + "This dashboard is now hidden": ["Nadzorna plošča je sedaj skrita"], + "You do not have permissions to edit this dashboard.": [ + "Nimate dovoljenj za urejanje te nadzorne plošče." ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "V 'columns' manjkajo naslednji vnosi iz 'series_columns': %(columns)s. " + "[ untitled dashboard ]": ["[ neimenovana nadzorna plošča ]"], + "This dashboard was saved successfully.": [ + "Nadzorna plošča je bila uspešno shranjena." ], - "The function to use when aggregating points into groups": [ - "Funkcija za agregacijo točk v skupine" + "Sorry, an unknown error occurred": ["Prišlo je do neznane napake"], + "Sorry, there was an error saving this dashboard: %s": [ + "Prišlo je do napake pri shranjevanju nadzorne plošče: %s" ], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči." + "You do not have permission to edit this dashboard": [ + "Nimate dovoljenja za urejanje te nadzorne plošče" ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči na vratih %(port)s." + "Please confirm the overwrite values.": ["Potrdite vrednosti za prepis."], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Uporabili ste celotno količino %(historyLength)s razveljavitev in ne boste mogli več povrniti nadaljnjih dejanj. Količino lahko resetirate, če shranite stanje." ], - "The host might be down, and can't be reached on the provided port.": [ - "Gostitelj mogoče ne deluje in ga ni mogoče doseči preko podanih vrat." + "Could not fetch all saved charts": [ + "Vseh shranjenih grafikonov ni bilo mogoče pridobiti" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "Imena gostitelja \"%(hostname)s\" ni mogoče razrešiti." + "Sorry there was an error fetching saved charts: ": [ + "Prišlo je do napake pri pridobivanju shranjenih grafikonov: " ], - "The hostname provided can't be resolved.": [ - "Imena gostitelja ni mogoče razrešiti." + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Na tem mestu izbrana barvna shema bo nadomestila barve posameznih grafikonov v tej nadzorni plošči" ], - "The id of the active chart": ["Identifikator aktivnega grafikona"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "Seznam grafikonov, povezanih s to tabelo. S spreminjanjem podatkovnega vira lahko spremenite, kako se povezani grafikoni obnašajo. Poleg tega morajo biti grafikoni povezani s podatkovnim virom. Če odstranite grafikon s podatkovnega vira ne bo mogoče shraniti tega vnosa. Če želite spremeniti podatkovni vir grafikona, prepišite grafikon v raziskovalnem pogledu." + "You have unsaved changes.": ["Imate neshranjene spremembe."], + "Drag and drop components and charts to the dashboard": [ + "Povlecite in spustite elemente in grafikone na nadzorno ploščo" ], - "The lower limit of the threshold range of the Isoband": [ - "Spodnji prag za površinske plastnice" + "You can create a new chart or use existing ones from the panel on the right": [ + "Ustvarite lahko nove grafikone ali uporabite obstoječe iz panela na desni" ], - "The maximum number of events to return, equivalent to the number of rows": [ - "Največje število prikazanih dogodkov (enako številu vrnjenih vrstic)" + "Create a new chart": ["Ustvarite nov grafikon"], + "Drag and drop components to this tab": [ + "Povlecite in spustite elemente na zavihek" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "Največje število podrazdelkov posamezne skupine; nižje vrednosti so zanemarjene prve" + "There are no components added to this tab": [ + "Na zavihku ni dodanih elementov" ], - "The maximum value of metrics. It is an optional configuration": [ - "Največja vrednost mere. To je opcijska nastavitev" + "You can add the components in the edit mode.": [ + "Elemente lahko dodate v načinu urejanja." ], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %(key)s je neveljaven." + "Edit the dashboard": ["Uredi nadzorno ploščo"], + "There is no chart definition associated with this component, could it have been deleted?": [ + "S to komponento ni povezana nobena definicija grafikona. Ali je bila izbrisana?" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %{key}s je neveljaven." + "Delete this container and save to remove this message.": [ + "Izbrišite ta okvir in shranite za odpravo tega sporočila." ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "Objekt metadata_params se razpakira v klic sqlalchemy.MetaData." + "Refresh interval saved": ["Interval osveževanja shranjen"], + "Refresh interval": ["Interval osveževanja"], + "Refresh frequency": ["Frekvenca osveževanja"], + "Are you sure you want to proceed?": ["Ali želite nadaljevati?"], + "Save for this session": ["Shranite za to sejo"], + "You must pick a name for the new dashboard": [ + "Izbrati morate ime nove nadzorne plošče" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "Minimalno število drsečih obdobij, potrebnih za prikaz vrednosti. Če računate kumulativno vsoto 7-dnevnega obdobja, boste nastavili \"Min. št. period\" na 7. Tako bodo vse prikazane točke skupaj obsegale 7 obdobij. To bo prikrilo rampo, ki bi trajala prvih 7 obdobij" + "Save dashboard": ["Shrani nadzorno ploščo"], + "Overwrite Dashboard [%s]": ["Prepiši nadzorno ploščo [%s]"], + "Save as:": ["Shrani kot:"], + "[dashboard name]": ["[ime nadzorne plošče]"], + "also copy (duplicate) charts": ["kopiraj (podvoji) tudi grafikone"], + "viz type": ["tip vizualizacije"], + "recent": ["nedavno"], + "Create new chart": ["Ustvarite nov grafikon"], + "Filter your charts": ["Filtriraj grafikone"], + "Filter charts": ["Filtriraj grafikone"], + "Sort by %s": ["Razvrščanje po %s"], + "Show only my charts": ["Prikaži samo moje grafikone"], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Lahko izberete prikaz vseh grafikonov, do katerih imate dostop ali pa samo tistih v vaši lasti.\n Izbira filtrov bo shranjena in bo ostala aktivna, dokler je ne spremenite." ], - "The number color \"steps\"": ["Število barvnih korakov"], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "Število ur, negativno ali pozitivno, za zamik časovnega stolpca. Na ta način je mogoče UTC čas prestaviti na lokalni čas." + "Added": ["Dodano"], + "Unknown type": ["Neznan tip"], + "Viz type": ["Tip vizualizacije"], + "Dataset": ["Podatkovni set"], + "Superset chart": ["Superset grafikon"], + "Check out this chart in dashboard:": [ + "Preizkusite ta grafikon v nadzorni plošči:" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "Število prikazanih rezultatov je omejeno na %(rows)d na podlagi parametra DISPLAY_MAX_ROW. V csv dodajte dodatne omejitve/filtre, da boste lahko videli več vrstic do meje %(limit)d ." + "Layout elements": ["Postavitev elementov"], + "Load a CSS template": ["Naloži CSS predlogo"], + "Live CSS editor": ["CSS urejevalnik v živo"], + "Collapse tab content": ["Skrij vsebino zavihka"], + "There are no charts added to this dashboard": [ + "V nadzorni plošči ni grafikonov" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "Število prikazanih rezultatov je omejeno na %(rows)d . V csv dodajte dodatne omejitve/filtre, da boste lahko videli več vrstic do meje %(limit)d ." + "Go to the edit mode to configure the dashboard and add charts": [ + "Za nastavitve nadzorne plošče in dodajanje grafikonov pojdite v način urejanja" ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "Število prikazanih vrstic je omejeno na %(rows)d z izbiro v spustnem seznamu." + "Changes saved.": ["Spremembe shranjene."], + "Disable embedding?": ["Onemogočite vgrajevanje?"], + "This will remove your current embed configuration.": [ + "To bo odstranilo trenutno konfiguracijo za vgrajevanje." ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "Število prikazanih rezultatov je omejeno na %(rows)d s poizvedbo." + "Embedding deactivated.": ["Vgrajevanje deaktivirano."], + "Sorry, something went wrong. Embedding could not be deactivated.": [ + "Nekaj je šlo narobe. Vgrajevanja ni mogoče deaktivirati." ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo" + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Nadzorna plošča je pripravljena za vgradnjo. V svoji aplikaciji v SDK vključite naslednji ID:" ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo in spustnim izbirnikom omejitev." + "Configure this dashboard to embed it into an external web application.": [ + "Nastavite nadzorno ploščo za vgradnjo v zunanjo spletno aplikacijo." ], - "The number of seconds before expiring the cache": [ - "Trajanje (v sekundah) do razveljavitve predpomnilnika" + "For further instructions, consult the": [ + "Za nadaljnja navodila se posvetujte z" ], - "The object does not exist in the given database.": [ - "Objekt ne obstaja v podani podatkovni bazi." + "Superset Embedded SDK documentation.": [ + "Dokumentacija SDK za vgrajevanje." ], - "The parameter %(parameters)s in your query is undefined.": [ - "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s.", - "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s.", - "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s.", - "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." + "Allowed Domains (comma separated)": [ + "Dovoljene domene (ločeno z vejico)" ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "Geslo za uporabniško ime \"%(username)s\" je napačno." + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "Seznam imen domen, ki lahko vgradijo to nadzorno ploščo. Če polje ostane prazno, je vgrajevanje dovoljeno iz vseh domen." ], - "The password provided when connecting to a database is not valid.": [ - "Geslo za povezavo s podatkovno bazo je neveljavno." + "Deactivate": ["Deaktiviraj"], + "Save changes": ["Shrani spremembe"], + "Enable embedding": ["Omogoči vgrajevanje"], + "Embed": ["Vgradi"], + "Applied cross-filters (%d)": ["Uporabljeni medsebojni filtri (%d)"], + "Applied filters (%d)": ["Uporabljeni filtri (%d)"], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Nadzorna plošča se trenutno samodejno osvežuje. Naslednja samodejna osvežitev bo čez %s." ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z grafikoni. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." + "Your dashboard is too large. Please reduce its size before saving it.": [ + "Vaša nadzorna plošča je prevelika. Pred shranjevanjem jo zmanjšajte." ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z nadzornimi ploščami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." - ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s podatkovnimi seti. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." - ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s shranjenimi poizvedbami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." - ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "Gesla za spodnje podatkovne baze so potrebna za njihov uvoz. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." + "Add the name of the dashboard": ["Dodajte naziv nadzorne plošče"], + "Dashboard title": ["Naziv nadzorne plošče"], + "Undo the action": ["Razveljavi dejanje"], + "Redo the action": ["Ponovno uveljavi dejanje"], + "Discard": ["Zavrzi"], + "Edit dashboard": ["Uredi nadzorno ploščo"], + "An error occurred while fetching available CSS templates": [ + "Pri pridobivanju CSS predlog je prišlo do napake" ], - "The pattern of timestamp format. For strings use ": [ - "Format zapisa časovne značke. Za znakovne nize uporabite " + "Refreshing charts": ["Osveževanje grafikonov"], + "Superset dashboard": ["Superset nadzorna plošča"], + "Check out this dashboard: ": ["Preizkusite to nadzorno ploščo: "], + "Refresh dashboard": ["Osveži nadzorno ploščo"], + "Exit fullscreen": ["Izhod iz celozaslonskega načina"], + "Enter fullscreen": ["Vklopi celozaslonski način"], + "Edit properties": ["Uredi lastnosti"], + "Edit CSS": ["Uredi CSS"], + "Download": ["Prenesi"], + "Export to PDF": ["Izvozi v PDF"], + "Download as Image": ["Izvozi kot sliko"], + "Share": ["Deljenje"], + "Copy permalink to clipboard": ["Kopiraj povezavo v odložišče"], + "Share permalink by email": ["Deli povezavo po e-pošti"], + "Embed dashboard": ["Vgradi nadzorno ploščo"], + "Manage email report": ["Upravljaj e-poštno poročilo"], + "Set filter mapping": ["Nastavi shemo filtrov"], + "Set auto-refresh interval": ["Nastavi interval samodejnega osveževanja"], + "Confirm overwrite": ["Potrdite prepis"], + "Scroll down to the bottom to enable overwriting changes. ": [ + "Pomaknite se do dna, da omogočite prepis sprememb. " ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "Periodičnost za vrtenje časa. Uporabnik lahko poda\n psevdonim za zamik v \"Pandas\".\n Kliknite na mehurček za podrobnosti dovoljenih izrazov za \"freq\"." + "Yes, overwrite changes": ["Da, prepiši spremembe"], + "Are you sure you intend to overwrite the following values?": [ + "Ali ste prepričani, da želite prepisati naslednje vrednosti?" ], - "The pixel radius": ["Polmer v pikslih"], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "Kazalec na fizično tabelo (ali pogled). Grafikon bo vezan na podatkovni set, ki kaže na tukaj referencirano fizično tabelo." + "Last Updated %s by %s": ["Zadnja posodobitev %s, %s"], + "Apply": ["Uporabi"], + "Error": ["Napaka"], + "A valid color scheme is required": [ + "Zahtevana je veljavna barvna shema" ], - "The port is closed.": ["Vrata so zaprta."], - "The port number is invalid.": ["Številka vrat je neveljavna."], - "The primary metric is used to define the arc segment sizes": [ - "Primarna mera določa velikost lokov segmentov" + "JSON metadata is invalid!": ["JSON-metapodatki niso veljavni!"], + "Dashboard properties updated": [ + "Lastnosti nadzorne plošče posodobljene" ], - "The provided table was not found in the provided database": [ - "Podana tabela ni bila najdena v podani podatkovni bazi" + "The dashboard has been saved": ["Nadzorna plošča je bila shranjena"], + "Access": ["Dostop"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo. Iskanje je možno po imenu ali uporabniškem imenu." ], - "The query associated with the results was deleted.": [ - "Poizvedba, povezana z rezultati, je bila izbrisana." + "Colors": ["Barve"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev vloge za dostop do nadzorne plošče bo obšlo preverjanje na nivoju podatkovnega seta. Če vloga ni definirana, bodo veljavna običajna pravila dostopov." ], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "Poizvedbe, povezane s temi rezultati, ni bilo mogoče najti. Ponovno morate zagnati izvorno poizvedbo." + "Dashboard properties": ["Lastnosti nadzorne plošče"], + "This dashboard is managed externally, and can't be edited in Superset": [ + "Nadzorna plošča se upravlja eksterno in je ni mogoče urediti znotraj Superseta" ], - "The query contains one or more malformed template parameters.": [ - "Poizvedba vsebuje enega ali več parametrov predlog z napačno obliko." + "Basic information": ["Osnovne informacije"], + "URL slug": ["URL slug"], + "A readable URL for your dashboard": [ + "Berljiv URL za vašo nadzorno ploščo" ], - "The query couldn't be loaded": ["Poizvedbe ni mogoče naložiti"], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Ocenjevanje poizvedbe je bilo ustavljeno po %(sqllab_timeout)s sekundah. Lahko je prekompleksno ali pa je podatkovna baza preobremenjena." + "Certification": ["Certifikacija"], + "Person or group that has certified this dashboard.": [ + "Oseba ali skupina, ki je certificirala to nadzorno ploščo." ], - "The query has a syntax error.": ["Poizvedba ima sintaktično napako."], - "The query returned no data": ["Poizvedba ni vrnila podatkov"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Poizvedba je bila ustavljena po %(sqllab_timeout)s sekundah. Lahko je prekompleksna ali pa je podatkovna baza preobremenjena." + "Any additional detail to show in the certification tooltip.": [ + "Prikaz dodatnih podrobnosti za certifikacijo." ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "Radij (v pikslih), s katerim algoritem definira gručo. Izberite 0 za izklop gručenja - veliko število točk (>1000) bo povzročilo upočasnitev." + "A list of tags that have been applied to this chart.": [ + "Seznam oznak, ki so povezane s tem grafikonom." ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "Radij posameznih točk (tistih, ki niso v gruči). Numerični stolpec ali `Auto` (skalira točke na osnovi največje gruče)" + "JSON metadata": ["JSON-metapodatki"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [ + "NE SPREMINJAJTE ključa \"filter_scopes\"." ], - "The report has been created": ["Poročilo je bilo ustvarjeno"], - "The result of this query should be a numeric-esque value": [ - "Rezultat te poizvedbe mora biti številska vrednost" + "Use \"%(menuName)s\" menu instead.": [ + "Namesto tega uporabite meni: \"%(menuName)s\"." ], - "The results backend no longer has the data from the query.": [ - "Zaledni sistem rezultatov nima več podatkov iz poizvedbe." + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih plošč. Kliknite tukaj za njeno objavo." ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Rezultati v zalednem sistemu so bili shranjeni v drugačni obliki in jih ni več mogoče deserializirati." + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih plošč. Uvrstite jo med priljubljene, da jo boste videli tam, ali pa uporabite URL za neposredni dostop." ], - "The rich tooltip shows a list of all series for that point in time": [ - "Podroben opis orodja prikaže seznam vseh podatkovnih serij za posamezno časovno točko" + "This dashboard is published. Click to make it a draft.": [ + "Nadzorna plošča je objavljena. Kliknite, da jo uvrstite med osnutke." ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "Shema \"%(schema)s\" ne obstaja. Za poizvedbo mora biti uporabljena veljavna shema." + "Draft": ["Osnutek"], + "Annotation layers are still loading.": [ + "Sloj z oznakami se še vedno nalaga." ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "Shema \"%(schema_name)s\" ne obstaja. Za poizvedbo mora biti uporabljena veljavna shema." + "One ore more annotation layers failed loading.": [ + "Eden ali več slojev z oznakami se ni naložil." ], - "The schema of the submitted payload is invalid.": [ - "Shema podanih podatkov je neveljavna." + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Ta grafikon medsebojno filtrira grafikone, ki imajo podatkovne sete s stolpci z istim nazivom." ], - "The schema was deleted or renamed in the database.": [ - "Shema je bila izbrisana ali preimenovana v podatkovni bazi." + "Data refreshed": ["Podatki osveženi"], + "Cached %s": ["Predpomnjeno %s"], + "Fetched %s": ["Pridobljeno %s"], + "Query %s: %s": ["Poizvedba %s: %s"], + "Force refresh": ["Osveži"], + "Hide chart description": ["Skrij opis grafikona"], + "Show chart description": ["Prikaži opis grafikona"], + "Cross-filtering scoping": ["Doseg medsebojnih filtrov"], + "View query": ["Ogled poizvedbe"], + "View as table": ["Ogled kot tabela"], + "Chart Data: %s": ["Podatki grafikona: %s"], + "Share chart by email": ["Deli grafikon po e-pošti"], + "Check out this chart: ": ["Preizkusite ta grafikon: "], + "Export to .CSV": ["Izvozi v .CSV"], + "Export to Excel": ["Izvozi v Excel"], + "Export to full .CSV": ["Izvozi v celoten .CSV"], + "Export to full Excel": ["Izvozi v celoten Excel"], + "Download as image": ["Izvozi kot sliko"], + "Something went wrong.": ["Nekaj je šlo narobe."], + "Search...": ["Iskanje ..."], + "No filter is selected.": ["Noben filter ni izbran."], + "Editing 1 filter:": ["Urejanje enega filtra:"], + "Batch editing %d filters:": ["Skupinsko urejanje %d filtrov:"], + "Configure filter scopes": ["Nastavi doseg filtrov"], + "There are no filters in this dashboard.": [ + "V nadzorni plošči ni filtrov." ], - "The size of each cell in meters": ["Velikost vsake celice v metrih"], - "The size of the square cell, in pixels": [ - "Velikost kvadratne celice v pikslih" + "Expand all": ["Razširi vse"], + "Collapse all": ["Skrči vse"], + "An error occurred while opening Explore": [ + "Pri odpiranju Raziskovalca je prišlo do napake" ], - "The submitted payload failed validation.": [ - "Neuspešna validacija podanih podatkov." + "Empty column": ["Prazen stolpec"], + "This markdown component has an error.": [ + "Markdown komponenta ima napako." ], - "The submitted payload has the incorrect format.": [ - "Podani podatki so v neustrezni obliki." + "This markdown component has an error. Please revert your recent changes.": [ + "Markdown komponenta ima napako. Povrnite nedavne spremembe." ], - "The submitted payload has the incorrect schema.": [ - "Podani podatki imajo neustrezno shemo." + "Empty row": ["Prazna vrstica"], + "You can": ["Lahko"], + "create a new chart": ["ustvarite nov grafikon"], + "or use existing ones from the panel on the right": [ + "ali uporabite obstoječe iz panela na desni" ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "Tabela \"%(table)s\" ne obstaja. V poizvedbi mora biti uporabljena veljavna tabela." + "You can add the components in the": ["Elemente lahko dodate v"], + "edit mode": ["načinu urejanja"], + "Delete dashboard tab?": ["Ali izbrišem zavihek nadzorne plošče?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Izbris zavihka bo odstranil vso vsebino v njem. Še vedno boste lahko razveljavili dejanje z" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "Tabela \"%(table_name)s\" ne obstaja. V poizvedbi mora biti uporabljena veljavna tabela." + "undo": ["razveljavitev"], + "button (cmd + z) until you save your changes.": [ + "gumb (cmd + z) dokler ne shranite sprememb." ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "Tabela je ustvarjena. Sedaj morate v tem dvodelnem postopku klikniti gumb za urejanje nove tabele." + "CANCEL": ["PREKINI"], + "Divider": ["Ločilnik"], + "Header": ["Glava"], + "Text": ["Besedilo"], + "Tabs": ["Zavihki"], + "background": ["ozadje"], + "Preview": ["Predogled"], + "Sorry, something went wrong. Try again later.": [ + "Nekaj je šlo narobe. Poskusite ponovno kasneje." ], - "The table was deleted or renamed in the database.": [ - "Tabela je bila izbrisana ali preimenovana v podatkovni bazi." + "Unknown value": ["Neznana vrednost"], + "Add/Edit Filters": ["Dodaj/uredi filter"], + "No filters are currently added to this dashboard.": [ + "Trenutno na nadzorno ploščo še ni dodanih filtrov." ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "Časovni stolpec za vizualizacijo. Določite lahko poljuben izraz, ki vrne DATETIME stolpec v tabeli. Spodnji filter se nanaša na ta stolpec ali izraz" + "No global filters are currently added": [ + "Trenutno ni dodanih globalnih filtrov" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim jezikom, kot npr. `10 sekund`, `1 dni` ali `56 tednov`" + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Kliknite na gumb \"Dodaj/Uredi filtre\" za kreiranje novih filtrov nadzorne plošče" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ - "Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim jezikom, kot npr. `10 sekund`, `1 dni` ali `56 tednov`" + "Apply filters": ["Uporabi filtre"], + "Clear all": ["Počisti vse"], + "Locate the chart": ["Lociraj grafikon"], + "Cross-filters": ["Medsebojni filtri"], + "Add custom scoping": ["Dodaj prilagojen doseg"], + "All charts/global scoping": ["Vsi grafikoni/globalni doseg"], + "Select chart": ["Izberi grafikon"], + "Cross-filtering is not enabled in this dashboard": [ + "Medsebojni filtri za to nadzorno ploščo niso omogočeni" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "Granulacija časa za to vizualizacijo. Izvede transformacijo podatkov, ki spremeni vaš časovni stolpec in določi novo časovno granulacija. Ta možnost je definirana na ravni sistema podatkovne baze v izvorni kodi Superseta." + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Izberite grafikone, za katere želite uporabiti medsebojne filtre, ko kliknete na ta grafikon. Izberete lahko \"Vsi grafikoni\", da uporabite medsebojne filtre za vse grafikone, ki uporabljajo isti podatkovni niz ali vsebujejo stolpec z enakim nazivom." ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "Časovno obdobje za vizualizacijo. Vsi relativni časi, kot npr. \"Zadnji mesec\", Zadnjih 7 dni\", \"Zdaj\" so izračunani na strežniku z njegovim lokalnim časom. Vsi opisi orodij in časi so izraženi v UTC. Časovne značke se nato izračunajo v podatkovni bazi z njenim lokalnim časovnim pasom. Eksplicitno lahko nastavite časovni pas v ISO 8601 formatu, če določite čas začetka ali konca." + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Izberite grafikone, za katere želite uporabiti medsebojne filtre v tej nadzorni plošči. Odstranitev grafikona bo izključila medsebojno filtriranje s kateregakoli grafikona na nadzorni plošči. Izberete lahko \"Vsi grafikoni\", da uporabite medsebojne filtre za vse grafikone, ki uporabljajo isti podatkovni niz ali vsebujejo stolpec z enakim nazivom." ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "Časovna enota za vsak blok. Mora biti manjša enota kot domenska_granulacija. Mora biti večja ali enaka Granulaciji časa" + "All charts": ["Vsi grafikoni"], + "Enable cross-filtering": ["Omogoči medsebojne filtre"], + "Orientation of filter bar": ["Orientacija vrstice s filtri"], + "Vertical (Left)": ["Navpično (levo)"], + "Horizontal (Top)": ["Vodoravno (zgoraj)"], + "More filters": ["Več filtrov"], + "No applied filters": ["Ni uporabljenih filtrov"], + "Applied filters: %s": ["Uporabljeni filtri: %s"], + "Cannot load filter": ["Filtra ni mogoče naložiti"], + "Filters out of scope (%d)": ["Filtri izven dosega (%d)"], + "Dependent on": ["Odvisen od"], + "Filter only displays values relevant to selections made in other filters.": [ + "Filter prikazuje samo vrednosti vezane na izbire v drugih filtrih." ], - "The time unit used for the grouping of blocks": [ - "Časovna enota za združevanje blokov" + "Scope": ["Doseg"], + "Filter type": ["Tip filtra"], + "Title is required": ["Naslov je obvezen"], + "(Removed)": ["(Odstranjeno)"], + "Undo?": ["Povrni?"], + "Add filters and dividers": ["Dodaj filtre in ločilnike"], + "[untitled]": ["[neimenovana]"], + "Cyclic dependency detected": ["Zaznana krožna odvisnost"], + "Add and edit filters": ["Dodaj in uredi filtre"], + "Column select": ["Izbira stolpca"], + "Select a column": ["Izberite stolpec"], + "No compatible columns found": ["Ni najdenih skladnih stolpcev"], + "No compatible datasets found": [ + "Ni najdenih skladnih podatkovnih setov" ], - "The type of visualization to display": ["Tip vizualizacije za prikaz"], - "The unit of measure for the specified point radius": [ - "Enota merila za definiran radij točk" + "Select a dataset": ["Izberite podatkovni set"], + "Value is required": ["Zahtevana je vrednost"], + "(deleted or invalid type)": ["(izbrisan ali neveljaven tip)"], + "Limit type": ["Tip omejitve"], + "No available filters.": ["Ni razpoložljivih filtrov."], + "Add filter": ["Dodaj filter"], + "Values are dependent on other filters": [ + "Vrednosti so odvisne od drugih filtrov" ], - "The upper limit of the threshold range of the Isoband": [ - "Zgornji prag za površinske plastnice" + "Values selected in other filters will affect the filter options to only show relevant values": [ + "Vrednosti izbrane v drugih filtrih bodo vplivale na možnosti filtra" ], - "The user seems to have been deleted": [ - "Zdi se, da je bil uporabnik izbrisan" + "Values dependent on": ["Vrednosti so odvisne od"], + "Scoping": ["Doseg"], + "Filter Configuration": ["Nastavitve filtra"], + "Filter Settings": ["Nastavitve filtra"], + "Select filter": ["Izbirni filter"], + "Range filter": ["Filter obdobja"], + "Numerical range": ["Številski obseg"], + "Time filter": ["Časovni filter"], + "Time range": ["Časovno obdobje"], + "Time column": ["Časovni stolpec"], + "Time grain": ["Granulacija časa"], + "Group By": ["Združevanje po (Group by)"], + "Group by": ["Združevanje po (Group by)"], + "Pre-filter is required": ["Zahtevan je predfilter"], + "Time column to apply dependent temporal filter to": [ + "Časovni stolpec za časovno filtriranje za" ], - "The user/password combination is not valid (Incorrect password for user).": [ - "Kombinacija uporabnik/geslo ni veljavna (napačno geslo)." + "Time column to apply time range to": [ + "Časovni stolpec za časovno obdobje za" ], - "The username \"%(username)s\" does not exist.": [ - "Uporabniško ime \"%(username)s\" ne obstaja." + "Filter name": ["Ime filtra"], + "Name is required": ["Zahtevano je ime"], + "Filter Type": ["Tip filtra"], + "Datasets do not contain a temporal column": [ + "Podatkovni seti ne vsebujejo časovnega stolpca" ], - "The username provided when connecting to a database is not valid.": [ - "Uporabniško ime za povezavo s podatkovno bazo je neveljavno." + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "Filtri časovnega obdobja vplivajo na časovne stolpce, definirane v\n\tfiltrski sekciji vsakega grafikona. Filtrom grafikonov dodajte časovne stolpce,\n\t da bodo filtri nadzorne plošče imeli učinek nanje." ], - "The way the ticks are laid out on the X-axis": [ - "Način razporeditve oznak na X-osi" + "Dataset is required": ["Zahtevan je podatkovni set"], + "Pre-filter available values": ["Predfiltriraj razpoložljive vrednosti"], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Doda stavke za filtriranje izvorne poizvedbe filtra,\n vendar samo v kontekstu samodejnega izpolnjevanja.\n Ne vpliva na to kako bo filter deloval na nadzorno ploščo.\n Uporabno je, če želite izboljšati učinkovitost poizvedbe filtra\n ali pa omejiti nabor prikazanih vrednosti filtra." ], - "The width of the Isoline in pixels": ["Debelina plastnic v pikslih"], - "The width of the lines": ["Debelina črt"], - "There are associated alerts or reports": [ - "Prisotna so povezana opozorila in poročila" + "Pre-filter": ["Predfilter"], + "No filter": ["Brez filtra"], + "Sort filter values": ["Razvrsti vrednosti filtra"], + "Sort type": ["Način razvrščanja"], + "Sort ascending": ["Razvrsti naraščajoče"], + "Sort Metric": ["Mera za razvrščanje"], + "If a metric is specified, sorting will be done based on the metric value": [ + "Če je določena mera, bo razvrščanje izvedeno na podlagi vrednosti mere" ], - "There are no charts added to this dashboard": [ - "V nadzorni plošči ni grafikonov" + "Sort metric": ["Mera za razvrščanje"], + "Single Value": ["Ena vrednost"], + "Single value type": ["Tip z eno vrednostjo"], + "Exact": ["Natančno"], + "Filter has default value": ["Filter ima privzeto vrednost"], + "Default Value": ["Privzeta vrednost"], + "Default value is required": ["Zahtevana je privzeta vrednost"], + "Refresh the default values": ["Osveži privzete vrednosti"], + "Fill all required fields to enable \"Default Value\"": [ + "Izpolnite vsa polja, da omogočite \"Privzeto vrednost\"" ], - "There are no components added to this tab": [ - "Na zavihku ni dodanih elementov" + "You have removed this filter.": ["Odstranili ste ta filter."], + "Restore Filter": ["Povrni filter"], + "Column is required": ["Zahtevan je stolpec"], + "Populate \"Default value\" to enable this control": [ + "Izpolnite \"Privzeto vrednost\", da omogočite ta kontrolnik" ], - "There are no databases available": ["Podatkovnih baz ni na voljo"], - "There are no filters in this dashboard.": [ - "V nadzorni plošči ni filtrov." + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Privzeta vrednost je samodejno izbrana, če je izbrano \"Prvi element je izbran kot privzet\"" ], - "There are unsaved changes.": ["Imate neshranjene spremembe."], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "V SQL-poizvedbi je sintaktična napaka. Mogoče ste se zatipkali." + "Default value must be set when \"Filter value is required\" is checked": [ + "Privzeta vrednost mora biti določena, če je izbrano \"Vrednost filtra obvezna\"" ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "S to komponento ni povezana nobena definicija grafikona. Ali je bila izbrisana?" + "Default value must be set when \"Filter has default value\" is checked": [ + "Privzeta vrednost mora biti določena, če je izbrano \"Filter ima privzeto vrednost\"" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Za to komponento ni dovolj prostora. Poskusite zmanjšati širino ali pa povečati širino cilja." + "Apply to all panels": ["Uporabi za vse grafikone"], + "Apply to specific panels": ["Uporabi za izbrane grafikone"], + "Only selected panels will be affected by this filter": [ + "Ta filter bo vplival le na izbrane grafikone" ], - "There was an error fetching dataset": [ - "Pri pridobivanju podatkovnega seta je prišlo do napake" + "All panels with this column will be affected by this filter": [ + "Ta filter bo vplival na vse grafikone s tem stolpcem" ], - "There was an error fetching dataset's related objects": [ - "Pri pridobivanju elementov podatkovnega seta je prišlo do napake" + "All panels": ["Vsi paneli"], + "This chart might be incompatible with the filter (datasets don't match)": [ + "Ta grafikon je lahko nekompatibilen s filtrom (podatkovni seti se ne ujemajo)" ], - "There was an error fetching the favorite status: %s": [ - "Napaka pri pridobivanju statusa \"Priljubljeno\": %s" + "Keep editing": ["Nadaljuj z urejanjem"], + "Yes, cancel": ["Da, prekini"], + "There are unsaved changes.": ["Imate neshranjene spremembe."], + "Are you sure you want to cancel?": ["Ali želite prekiniti?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "Napaka pri nalaganju podatkovnih virov grafikona. Filtri lahko ne delujejo pravilno." ], - "There was an error fetching your recent activity:": [ - "Pri pridobivanju nedavnih aktivnosti je prišlo do napake:" + "Transparent": ["Prozorno"], + "White": ["Belo"], + "All filters": ["Vsi filtri"], + "Click to edit %s.": ["Kliknite za urejanje %s."], + "Click to edit chart.": ["Kliknite za urejanje grafikona."], + "Use %s to open in a new tab.": [ + "Uporabite %s za odpiranje v novem zavihku." ], - "There was an error loading the chart data": [ - "Napaka pri nalaganju podatkov grafikona" + "Medium": ["Srednje"], + "New header": ["Nov naslov"], + "Tab title": ["Naslov zavihka"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Ta seja je bila prekinjena in nekateri kontrolniki mogoče ne delujejo kot bi morali. Če ste razvijalec te aplikacije, preverite, da je žeton za gosta pravilno generiran." ], - "There was an error loading the dataset metadata": [ - "Napaka pri nalaganju metapodatkov podatkovnega seta" + "Equal to (=)": ["Je enako (=)"], + "Not equal to (≠)": ["Ni enako (≠)"], + "Less than (<)": ["Manjše kot (<)"], + "Less or equal (<=)": ["Manjše ali enako (<=)"], + "Greater than (>)": ["Večje kot (>)"], + "Greater or equal (>=)": ["Večje ali enako (>=)"], + "In": ["Vsebuje (IN)"], + "Not in": ["Ne vsebuje (NOT IN)"], + "Like": ["Like"], + "Like (case insensitive)": ["Like (ni razlik. velikih/malih črk)"], + "Is not null": ["Ni NULL"], + "Is null": ["Je NULL"], + "use latest_partition template": ["uporaba predloge latest_partition"], + "Is true": ["Je TRUE"], + "Is false": ["Je FALSE"], + "TEMPORAL_RANGE": ["ČASOVNI_OBSEG"], + "Time granularity": ["Granulacija časa"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ + "Trajanje v ms (100.40008 => 100ms 400µs 80ns)" ], - "There was an error loading the schemas": ["Napaka pri nalaganju shem"], - "There was an error loading the tables": ["Napaka pri nalaganju tabel"], - "There was an error saving the favorite status: %s": [ - "Napaka pri shranjevanju statusa \"Priljubljeno\": %s" + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Eden ali več stolpcev za združevanje po. Združevanje z visoko kardinalnostjo naj vsebuje omejitev serij, s čimer omejite število pridobljenih in prikazanih serij." ], - "There was an error with your request": [ - "Pri zahtevi je prišlo do napake" + "One or many metrics to display": ["Ena ali več mer za prikaz"], + "Fixed color": ["Izbrana barva"], + "Right axis metric": ["Mera desne osi"], + "Choose a metric for right axis": ["Izberite mero za desno os"], + "Linear color scheme": ["Linearna barvna shema"], + "Color metric": ["Mera za barvo"], + "One or many controls to pivot as columns": [ + "En ali več kontrolnikov za stolpčno vrtenje" ], - "There was an issue deleting %s: %s": ["Težava pri brisanju %s: %s"], - "There was an issue deleting rules: %s": [ - "Težava pri brisanju pravil: %s" + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim jezikom, kot npr. `10 sekund`, `1 dni` ali `56 tednov`" ], - "There was an issue deleting the selected %s: %s": [ - "Težava pri brisanju izbranih %s: %s" + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Granulacija časa za to vizualizacijo. Izvede transformacijo podatkov, ki spremeni vaš časovni stolpec in določi novo časovno granulacija. Ta možnost je definirana na ravni sistema podatkovne baze v izvorni kodi Superseta." ], - "There was an issue deleting the selected annotations: %s": [ - "Pri brisanju izbranih oznak je prišlo do težave: %s" + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Časovno obdobje za vizualizacijo. Vsi relativni časi, kot npr. \"Zadnji mesec\", Zadnjih 7 dni\", \"Zdaj\" so izračunani na strežniku z njegovim lokalnim časom. Vsi opisi orodij in časi so izraženi v UTC. Časovne značke se nato izračunajo v podatkovni bazi z njenim lokalnim časovnim pasom. Eksplicitno lahko nastavite časovni pas v ISO 8601 formatu, če določite čas začetka ali konca." ], - "There was an issue deleting the selected charts: %s": [ - "Pri brisanju izbranih grafikonov je prišlo do težave: %s" + "Limits the number of rows that get displayed.": [ + "Omeji število vrstic za prikaz." ], - "There was an issue deleting the selected dashboards: ": [ - "Pri brisanju izbranih nadzornih plošč je prišlo do težave: " + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Mera, ki določa kako so razvrščene prve serije, če je določena omejitev serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." ], - "There was an issue deleting the selected datasets: %s": [ - "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno barvo in ima lahko prikazano legendo" ], - "There was an issue deleting the selected layers: %s": [ - "Pri brisanju izbranih slojev je prišlo do težave: %s" + "Metric assigned to the [X] axis": ["Mera za [X] os"], + "Metric assigned to the [Y] axis": ["Mera za [Y] os"], + "Bubble size": ["Velikost mehurčka"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Če je `Vrsta izračuna` nastavljena na \"Procentualna sprememba\", bo oblika Y-osi vsiljena na `.1%`" ], - "There was an issue deleting the selected queries: %s": [ - "Pri brisanju izbranih poizvedb je prišlo do težave: %s" + "Color scheme": ["Barvna shema"], + "An error occurred while starring this chart": [ + "Pri ocenjevanju grafikona je prišlo do napake" ], - "There was an issue deleting the selected templates: %s": [ - "Pri brisanju izbranih predlog je prišlo do težave: %s" + "Chart [%s] has been saved": ["Grafikon [%s] je bil shranjen"], + "Chart [%s] has been overwritten": ["Grafikon [%s] je bil prepisan"], + "Dashboard [%s] just got created and chart [%s] was added to it": [ + "Nadzorna plošča [%s] je bila ravno ustvarjena in grafikon [%s] dodan nanjo" ], - "There was an issue deleting: %s": ["Težava pri brisanju: %s"], - "There was an issue duplicating the dataset.": [ - "Pri dupliciranju podatkovnega seta je prišlo do težave." + "Chart [%s] was added to dashboard [%s]": [ + "Grafikon [%s] je bil dodan na nadzorno ploščo [%s]" ], - "There was an issue duplicating the selected datasets: %s": [ - "Pri dupliciranju izbranih podatkovnih setov je prišlo do težave: %s" + "GROUP BY": ["GROUP BY"], + "Use this section if you want a query that aggregates": [ + "Ta sklop uporabite če želite poizvedbo za agregacijo" ], - "There was an issue favoriting this dashboard.": [ - "Pri uvrščanju nadzorne plošče med priljubljene je prišlo do težave." + "NOT GROUPED BY": ["NOT GROUPED BY"], + "Use this section if you want to query atomic rows": [ + "Ta sklop uporabite, če želite poizvedbo za posamezne vrstice" ], - "There was an issue fetching reports attached to this dashboard.": [ - "Pri pridobivanju poročil za to nadzorno ploščo je prišlo do težave." + "The X-axis is not on the filters list": ["X-osi ni na seznamu filtrov"], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "X-osi ni na seznamu filtrov, kar preprečuje njeno uporabo v\n\tfiltrih časovnega obdobja v nadzorni plošči. Jo želite najprej dodati na seznam filtrov?" ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Pri pridobivanju statusa \"priljubljeno\" za to nadzorno ploščo je prišlo do težave." - ], - "There was an issue fetching your chart: %s": [ - "Prišlo je do napake pri pridobivanju grafikona: %s" + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Zadnjega časovnega filtra ni mogoče izbrisati, ker se uporablja za filtre časovnega obdobja v nadzorni plošči." ], - "There was an issue fetching your dashboards: %s": [ - "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" + "This section contains validation errors": [ + "Ta sekcija vsebuje validacijske napake" ], - "There was an issue fetching your recent activity: %s": [ - "Pri pridobivanju vaše nedavne aktivnosti je prišlo do napake: %s" + "Keep control settings?": ["Obdržim nastavitve kontrolnika?"], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Spremenili ste podatkovne sete. Vsi kontrolniki nad podatki (stolpci, mere), ki se ujemajo z novim podatkovnim setom, se bodo ohranili." ], - "There was an issue fetching your saved queries: %s": [ - "Prišlo je do težave pri pridobivanju shranjenih poizvedb: %s" + "Continue": ["Nadaljuj"], + "Clear form": ["Počisti polja"], + "No form settings were maintained": ["Nastavitve forme se niso ohranile"], + "We were unable to carry over any controls when switching to this new dataset.": [ + "Prenos kontrolnikov pri preklopu na nov podatkovni set ni bil uspešen." ], - "There was an issue previewing the selected query %s": [ - "Do težave je prišlo pri predogledu izbrane poizvedbe %s" + "Customize": ["Prilagodi"], + "Generating link, please wait..": [ + "Ustvarjam povezavo, prosim počakajte..." ], - "There was an issue previewing the selected query. %s": [ - "Pri predogledu izbrane poizvedbe je prišlo do težave. %s" + "Chart height": ["Višina grafikona"], + "Chart width": ["Širina grafikona"], + "An error occurred while loading dashboard information.": [ + "Prišlo je do napake pri pridobivanju informacij o nadzorni plošči." ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "V 'Sankey' je zanka, določite drevo. To je okvarjena povezava: {}" + "Save (Overwrite)": ["Shrani (prepiši)"], + "Save as...": ["Shrani kot ..."], + "Chart name": ["Ime grafikona"], + "Dataset Name": ["Ime podatkovnega seta"], + "A reusable dataset will be saved with your chart.": [ + "Podatkovni set bo shranjen skupaj z grafikonom." ], - "These are the datasets this filter will be applied to.": [ - "To so podatkovni seti, na katere se nanaša ta filter." + "Add to dashboard": ["Dodaj na nadzorno ploščo"], + "Select a dashboard": ["Izberite nadzorno ploščo"], + "Select": ["Izberi"], + " a dashboard OR ": [" nadzorno ploščo ALI "], + "create": ["ustvari"], + " a new one": [" novo"], + "A new chart and dashboard will be created.": [ + "Ustvarjena bosta nov grafikon in nadzorna plošča." ], - "These filters apply to the values available in the dropdowns": [ - "Ti filtri se nanašajo na vrednosti v spustnih seznamih" + "A new chart will be created.": ["Ustvarjen bo nov grafikon."], + "A new dashboard will be created.": [ + "Ustvarjena bo nova nadzorna plošča." ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Ti parametri se ustvarijo dinamično s klikom gumba Shrani ali Prepiši v raziskovalnem pogledu. Ta JSON objekt je prikazan kot vzorec za napredne uporabnike, ki želijo spreminjati posamezne parametre." + "Save & go to dashboard": ["Shrani in pojdi na nadzorno ploščo"], + "Save chart": ["Shrani grafikon"], + "Formatted date": ["Oblikovan datum"], + "Column Formatting": ["Oblikovanje stolpca"], + "Collapse data panel": ["Skrij podatkovni panel"], + "Expand data panel": ["Razširi podatkovni panel"], + "Samples": ["Vzorci"], + "No samples were returned for this dataset": [ + "Za podatkovni set ni vrnjenih vzorcev" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Ta JSON objekt se ustvari dinamično s klikom gumba Shrani ali Prepiši v pogledu nadzorne plošče. Tukaj je prikazan kot vzorec za napredne uporabnike, ki želijo spreminjati posamezne parametre." + "No results": ["Ni rezultatov"], + "Search Metrics & Columns": ["Iskanje mer in stolpcev"], + "Create a dataset": ["Ustvarite podatkovni set"], + " to edit or add columns and metrics.": [ + " za urejanje ali dodajanje stolpcev in mer." ], - "This action will permanently delete %s.": [ - "S tem dejanjem boste trajno izbrisali %s." + "Showing %s of %s": ["Prikazanih %s od %s"], + "Show less...": ["Prikaži manj..."], + "Show all...": ["Prikaži vse..."], + "Show Less...": ["Prikaži manj..."], + "Unable to retrieve dashboard colors": [ + "Neuspešno pridobivanje barv nadzorne plošče" ], - "This action will permanently delete the layer.": [ - "S tem dejanjem boste trajno izbrisali sloj." + "Not added to any dashboard": ["Ni dodano na nobeno nadzorno ploščo"], + "You can preview the list of dashboards in the chart settings dropdown.": [ + "Seznam nadzornih plošč si lahko ogledate v spustnem meniju nastavitev grafikona." ], - "This action will permanently delete the saved query.": [ - "S tem dejanjem boste trajno izbrisali shranjeno poizvedbo." + "Not available": ["Ni razpoložljivo"], + "Add the name of the chart": ["Dodajte naslov grafikona"], + "Chart title": ["Naslov grafikona"], + "Add required control values to save chart": [ + "Dodaj potrebne parametre za shranjenje grafikona" ], - "This action will permanently delete the template.": [ - "S tem dejanjem boste trajno izbrisali predlogo." + "Chart type requires a dataset": ["Grafikon zahteva podatkovni set"], + "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Tip grafikona ne podpira uporabe neshranjene poizvedbe za podatkovni vir. " ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "To je lahko bodisi IP naslov (npr. 127.0.0.1) bodisi ime domene (npr. mydatabase.com)." + " to visualize your data.": [" za vizualizacijo podatkov."], + "Required control values have been removed": [ + "Zahtevane kontrolne vrednosti so bile odstranjene" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ - "Ta grafikon medsebojno filtrira grafikone, ki imajo podatkovne sete s stolpci z istim nazivom." + "Your chart is not up to date": ["Grafikon ni aktualen"], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Posodobili ste vrednosti v kontrolni plošči, vendar se grafikon ni samodejno posodobil. Zaženite poizvedbo z gumbom \"Posodobi grafikon\" ali" ], - "This chart has been moved to a different filter scope.": [ - "Ta grafikon je bil prestavljen v drug doseg filtrov." + "Controls labeled ": ["Kontrolniki imenovani "], + "Control labeled ": ["Nastavitev "], + "Chart Source": ["Podatkovni vir grafikona"], + "Open Datasource tab": ["Odpri zavihek s podatkovnim virom"], + "Original": ["Izvoren"], + "Pivoted": ["Vrtilni"], + "You do not have permission to edit this chart": [ + "Nimate dovoljenja za urejanje tega grafikona" ], + "Chart properties updated": ["Lastnosti grafikona posodobljene"], + "Edit Chart Properties": ["Uredi lastnosti grafikona"], "This chart is managed externally, and can't be edited in Superset": [ "Ta grafikon se ne ureja znotraj Superseta" ], - "This chart might be incompatible with the filter (datasets don't match)": [ - "Ta grafikon je lahko nekompatibilen s filtrom (podatkovni seti se ne ujemajo)" - ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "Tip grafikona ne podpira uporabe neshranjene poizvedbe za podatkovni vir. " + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Opis je lahko prikazan kot glava gradnika v pogledu nadzorne plošče. Podpira markdown." ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ - "Barvna shema je bila preglasovana z barvami oznak po meri.\n Preverite JSON-metapodatke v naprednih nastavitvah" + "Person or group that has certified this chart.": [ + "Oseba ali skupina, ki je certificirala ta grafikon." ], - "This column might be incompatible with current dataset": [ - "Ta grafikon je lahko nekompatibilen s trenutnim podatkovnim setom" + "Configuration": ["Nastavitve"], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Trajanje (v sekundah) predpomnjenja za ta grafikon. Nastavite na -1, da izključite predpomnjenje. Če ni definirano, je uporabljena vrednost za podatkovni set." ], - "This column must contain date/time information.": [ - "Ta stolpec mora vsebovati informacijo o datumu/času." + "A list of users who can alter the chart. Searchable by name or username.": [ + "Seznam uporabnikov, ki lahko spreminjajo ta grafikon. Možno je iskanje po imenu ali uporabniškem imenu." ], - "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "Ta kontrolnik filtrira celoten grafikon glede na izbrano časovno obdobje. Vsi relativni časi (npr. Zadnji mesec, Zdaj, itd.) so izračunani glede na lokalni čas strežnika (časovni pas ni upoštevan). Vsi opisi orodij in časovne oznake so izražene kot UTC. Časovne značke so potem določene glede na lokalni čas podatkovne baze. Eksplicitno lahko določite časovni pas v ISO 8601 formatu, če določite začetni in/ali končni čas." + "Limit reached": ["Omejitev dosežena"], + "Create chart": ["Ustvarite grafikon"], + "Update chart": ["Posodobi grafikon"], + "Invalid lat/long configuration.": [ + "Neveljavna nastavitev zemljepisne dolžine/širine." ], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Upravlja ali je polje \"time_range\" iz trenutnega pogleda lahko\n\tposredovano grafikonu, ki vsebuje podatke oznak slojev." + "Reverse lat/long ": ["Zamenjaj zemljepisno dolžino/širino "], + "Longitude & Latitude columns": ["Stolpci zemljepisne dolžine in širine"], + "Delimited long & lat single column": [ + "En stolpec z ločenima zemljepisno dolžino in širino" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Upravlja ali je polje časovne granulacije iz trenutnega pogleda lahko\n posredovano grafikonu, ki vsebuje podatke oznak slojev." + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Sprejema različne zapise - podrobnosti najdete v Pythonovi knjižnici geopy.points" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "Nadzorna plošča se trenutno samodejno osvežuje. Naslednja samodejna osvežitev bo čez %s." + "Geohash": ["Geohash"], + "textarea": ["področje besedila"], + "in modal": ["v modalnem oknu"], + "Sorry, An error occurred": ["Prišlo je do napake"], + "Save as Dataset": ["Shrani kot podatkovni set"], + "Open in SQL Lab": ["Odpri v SQL laboratoriju"], + "Failed to verify select options: %s": [ + "Preverjanje možnosti izbire ni uspelo: %s" ], - "This dashboard is managed externally, and can't be edited in Superset": [ - "Nadzorna plošča se upravlja eksterno in je ni mogoče urediti znotraj Superseta" + "No annotation layers": ["Ni slojev z oznakami"], + "Add an annotation layer": ["Dodaj sloj z oznakami"], + "Annotation layer": ["Sloj z oznakami"], + "Select the Annotation Layer you would like to use.": [ + "Izberite sloj z oznakami, ki ga želite uporabiti." ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih plošč. Uvrstite jo med priljubljene, da jo boste videli tam, ali pa uporabite URL za neposredni dostop." + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "Uporabite enega izmed obstoječih grafikonov kot vir oznak.\n Grafikon mora biti naslednjega tipa: [%s]" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih plošč. Kliknite tukaj za njeno objavo." + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Pričakovana je formula z odvisnim časovnim parametrom 'x'\n v milisekundah od epohe. Za vrednotenje formule je uporabljen mathjs.\n Primer: '2x +5'" ], - "This dashboard is now hidden": ["Nadzorna plošča je sedaj skrita"], - "This dashboard is now published": [ - "Nadzorna plošča je sedaj objavljena" + "Annotation layer value": ["Vrednost sloja z oznakami"], + "Bad formula.": ["Napačna formula."], + "Annotation Slice Configuration": ["Nastavitve rezine z oznakami"], + "This section allows you to configure how to use the slice\n to generate annotations.": [ + "V tem sklopu lahko nastavite način uporabe rezine\n za ustvarjanje oznak." ], - "This dashboard is published. Click to make it a draft.": [ - "Nadzorna plošča je objavljena. Kliknite, da jo uvrstite med osnutke." + "Annotation layer time column": ["Časovni stolpec sloja z oznakami"], + "Interval start column": ["Stolpec začetka intervala"], + "Event time column": ["Stolpec časa dogodka"], + "This column must contain date/time information.": [ + "Ta stolpec mora vsebovati informacijo o datumu/času." ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ - "Nadzorna plošča je pripravljena za vgradnjo. V svoji aplikaciji v SDK vključite naslednji ID:" + "Annotation layer interval end": ["Konec intervala sloja z oznakami"], + "Interval End column": ["Stolpec konca intervala"], + "Annotation layer title column": ["Stolpec z naslovom sloja z oznakami"], + "Title Column": ["Stolpec z naslovi"], + "Pick a title for you annotation.": ["Izberite naslov za oznako."], + "Annotation layer description columns": [ + "Stolpci z opisi slojev z oznakami" ], - "This dashboard was saved successfully.": [ - "Nadzorna plošča je bila uspešno shranjena." + "Description Columns": ["Stolpci z opisi"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Izberite enega ali več stolpcev, ki bodo prikazani v oznakah. Če ne izberete stolpca, bodo prikazani vsi." ], - "This database is managed externally, and can't be edited in Superset": [ - "Podatkovna baza se upravlja eksterno in je ni mogoče urediti znotraj Superseta" + "Override time range": ["Onemogoči časovno obdobje"], + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Upravlja ali je polje \"time_range\" iz trenutnega pogleda lahko\n\tposredovano grafikonu, ki vsebuje podatke oznak slojev." ], - "This database table does not contain any data. Please select a different table.": [ - "Tabela podatkovne baze ne vsebuje podatkov. Izberite drugo tabelo." + "Override time grain": ["Onemogoči granulacijo časa"], + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Upravlja ali je polje časovne granulacije iz trenutnega pogleda lahko\n posredovano grafikonu, ki vsebuje podatke oznak slojev." ], - "This dataset is managed externally, and can't be edited in Superset": [ - "Podatkovni set se upravlja eksterno in ga ni mogoče urediti znotraj Superseta" + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Časovna razlika v naravnem (angleškem) jeziku\n (primer: 24 hours, 7 days, 56 weeks, 365 days)" ], - "This dataset is not used to power any charts.": [ - "Podatkovni set ni uporabljen v nobenem grafikonu." + "Display configuration": ["Prikaži nastavitve"], + "Configure your how you overlay is displayed here.": [ + "Nastavite kako se tukaj prikazuje vrhnja plast." ], - "This defines the element to be plotted on the chart": [ - "Določa element, ki bo izrisan na grafikonu" + "Annotation layer stroke": ["Obroba sloja z oznakami"], + "Style": ["Slog"], + "Solid": ["Zapolnjen"], + "Dashed": ["Črtkano"], + "Long dashed": ["Dolgo-črtkano"], + "Dotted": ["Pikčasto"], + "Annotation layer opacity": ["Prosojnost sloja z oznakami"], + "Color": ["Barva"], + "Automatic Color": ["Samodejne barve"], + "Shows or hides markers for the time series": [ + "Prikaže ali skrije markerje časovne serije" ], - "This defines the level of the hierarchy": ["Določa stopnjo hierarhije"], - "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ - "To polje se uporablja kot unikaten ID za vključitev izračunane dimenzije v grafikon. Uporablja se tudi kot alias v SQL-poizvedbi." + "Hide Line": ["Skrij črto"], + "Hides the Line for the time series": ["Skrije črto časovne serije"], + "Layer configuration": ["Nastavitve sloja"], + "Configure the basics of your Annotation Layer.": [ + "Osnovne nastavitve sloja z oznakami." ], - "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ - "To polje se uporablja kot unikaten ID za vključitev mere v grafikon. Uporablja se tudi kot alias v SQL-poizvedbi." + "Mandatory": ["Obvezno"], + "Hide layer": ["Skrij sloj"], + "Show label": ["Prikaži oznako"], + "Whether to always show the annotation label": [ + "Če želite vedno prikazati naslov oznake" ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "To polje se obnaša kot Supersetov pogled, kar pomeni, da bo Superset izvedel poizvedbo za ta niz kot podpoizvedbo." + "Annotation layer type": ["Tip sloja z oznakami"], + "Choose the annotation layer type": ["Izberite tip sloja z oznakami"], + "Annotation source type": ["Tip vira oznak"], + "Choose the source of your annotations": ["Izberite vir svojih oznak"], + "Annotation source": ["Vir oznak"], + "Remove": ["Odstrani"], + "Time series": ["Časovna vrsta"], + "Edit annotation layer": ["Uredi sloj z oznakami"], + "Add annotation layer": ["Dodaj sloj z oznakami"], + "Empty collection": ["Prazen izbor"], + "Add an item": ["Dodaj element"], + "Remove item": ["Odstrani element"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Barvna shema je bila preglasovana z barvami oznak po meri.\n Preverite JSON-metapodatke v naprednih nastavitvah" ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Ta filter ne obstaja v nadzorni plošči in ne bo uveljavljen." + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Barvna shema je določena s povezano nadzorno ploščo.\n Barvno shemo uredite v nastavitvah nadzorne plošče." ], - "This filter might be incompatible with current dataset": [ - "Ta filter je lahko nekompatibilen s trenutnim podatkovnim setom" + "dashboard": ["nadzorna plošča"], + "Dashboard scheme": ["Shema nadzorne plošče"], + "Select color scheme": ["Izberite barvno shemo"], + "Select scheme": ["Izberite shemo"], + "Show less columns": ["Prikaži manj stolpcev"], + "Show all columns": ["Prikaži vse stolpce"], + "Fraction digits": ["Število decimalk"], + "Number of decimal digits to round numbers to": [ + "Število decimalnih mest za zaokroževanje števil" ], - "This filter set is identical to: \"%s\"": [ - "Ta set filtrov je enak: \"%s\"" + "Min Width": ["Min. širina"], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Privzeta min. širina stolpca v pikslih. Dejanska širina bo lahko večja, če drugi stolpci ne potrebujejo veliko prostora" ], - "This functionality is disabled in your environment for security reasons.": [ - "Ta funkcionalnost je v vašem okolju onemogočena zaradi varnosti." + "Text align": ["Poravnava besedila"], + "Horizontal alignment": ["Vodoravna poravnava"], + "Show cell bars": ["Prikaži grafe v celicah"], + "Whether to align positive and negative values in cell bar chart at 0": [ + "Če želite poravnati pozitivne in negativne vrednosti v stolpčnem grafikonu celic pri 0" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "To je pogoj, ki bo dodan WHERE stavku. Npr., če želite dobiti vrstice za določeno stranko, lahko definirate regularni filter z izrazom 'id_stranke = 9'. Če ne želimo prikazati vrstic, razen če uporabnik pripada RLS vlogi, lahko filter ustvarimo z izrazom `1 = 0` (vedno FALSE)." + "Whether to colorize numeric values by if they are positive or negative": [ + "Če želite obarvati številske vrednosti, ko so le-te pozitivne ali negativne" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Ta JSON objekt opisuje postavitev pripomočkov na nadzorni plošči. Ustvari se dinamično, ko prilagajamo velikost in postavitev pripomočkov z uporabo povleci&spusti v pogledu nadzorne plošče" + "Truncate Cells": ["Prireži celice"], + "Truncate long cells to the \"min width\" set above": [ + "Prireži dolge celice na \"min. širino\" nastavljeno zgoraj" ], - "This markdown component has an error.": [ - "Markdown komponenta ima napako." + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ + "Prilagodi mere grafikona ali stolpce s predponami ali priponami valute. Izberite simbol ali napišite lastnega." ], - "This markdown component has an error. Please revert your recent changes.": [ - "Markdown komponenta ima napako. Povrnite nedavne spremembe." + "Small number format": ["Oblika zapisa majhnih števil"], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "D3 format zapisa za števila med -1.0 in 1.0. Uporabno, če želite različno število števk za majhna in velika števila" ], - "This may be triggered by:": ["To je lahko sproženo z/s:"], - "This metric is used to define row selection criteria (how the rows are sorted) if a series or row limit is present. If not defined, it reverts to the first metric (where appropriate).": [ - "Mera, ki določa kako so razvrščene vrstice, če je določena omejitev serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." + "Display": ["Prikaz"], + "Number formatting": ["Oblika zapisa števila"], + "Edit formatter": ["Uredi oblikovanje"], + "Add new formatter": ["Dodaj novo pravilo"], + "Add new color formatter": ["Dodaj novo pravilo za barvo"], + "alert": ["opozorilo"], + "error": ["napaka"], + "success dark": ["uspešno (temno)"], + "alert dark": ["opozorilo (temno)"], + "error dark": ["napaka (temno)"], + "This value should be smaller than the right target value": [ + "Ta vrednost mora biti manjša od desne ciljne vrednosti" ], - "This metric might be incompatible with current dataset": [ - "Ta mera je lahko nekompatibilna s trenutnim podatkovnim setom" + "This value should be greater than the left target value": [ + "Ta vrednost mora biti večja od leve ciljne vrednosti" ], - "This section allows you to configure how to use the slice\n to generate annotations.": [ - "V tem sklopu lahko nastavite način uporabe rezine\n za ustvarjanje oznak." + "Required": ["Obvezno"], + "Operator": ["Operator"], + "Left value": ["Leva vrednost"], + "Right value": ["Desna vrednost"], + "Target value": ["Ciljna vrednost"], + "Select column": ["Izberite stolpec"], + "Color: ": ["Barva: "], + "Lower threshold must be lower than upper threshold": [ + "Spodnji prag mora biti manjši od zgornjega" ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Ta sekcija vsebuje možnosti, ki omogočajo napredno analitično poprocesiranje rezultatov poizvedb" + "Upper threshold must be greater than lower threshold": [ + "Zgornji prag mora biti večji od spodnjega" ], - "This section contains validation errors": [ - "Ta sekcija vsebuje validacijske napake" + "Isoline": ["Plastnica"], + "Threshold": ["Prag"], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "Določa vrednost, ki razmejuje različna področja oziroma nivoje podatkov " ], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ - "Ta seja je bila prekinjena in nekateri kontrolniki mogoče ne delujejo kot bi morali. Če ste razvijalec te aplikacije, preverite, da je žeton za gosta pravilno generiran." + "The width of the Isoline in pixels": ["Debelina plastnic v pikslih"], + "The color of the isoline": ["Barva plastnice"], + "Isoband": ["Površinska plastnica"], + "Lower Threshold": ["Spodnji prag"], + "The lower limit of the threshold range of the Isoband": [ + "Spodnji prag za površinske plastnice" ], - "This table already has a dataset": ["Ta tabela že ima podatkovni set"], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ - "Ta tabela že ima povezan podatkovni set. S tabelo je lahko povezan le en podatkovni set.\n" + "Upper Threshold": ["Zgornji prag"], + "The upper limit of the threshold range of the Isoband": [ + "Zgornji prag za površinske plastnice" ], - "This value should be greater than the left target value": [ - "Ta vrednost mora biti večja od leve ciljne vrednosti" + "The color of the isoband": ["Barva površinske plastnice"], + "Click to add a contour": ["Klikni za dodajanje plastnice"], + "Prefix": ["Predpona"], + "Suffix": ["Pripona"], + "Currency prefix or suffix": ["Predpona ali pripona valute"], + "Prefix or suffix": ["Predpona ali pripona"], + "Currency symbol": ["Simbol valute"], + "Currency": ["Valuta"], + "Edit dataset": ["Uredi podatkovni set"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Za urejanje morate biti lastnik podatkovnega seta. Za dostop do urejanja kontaktirajte lastnika podatkovnega seta." ], - "This value should be smaller than the right target value": [ - "Ta vrednost mora biti manjša od desne ciljne vrednosti" + "View in SQL Lab": ["Ogled v SQL laboratoriju"], + "Query preview": ["Predogled poizvedbe"], + "Save as dataset": ["Shrani kot podatkovni set"], + "Missing URL parameters": ["Manjkajo parametri URL-ja"], + "The URL is missing the dataset_id or slice_id parameters.": [ + "V URL-ju manjkata parametra dataset_id ali slice_id." ], - "This visualization type does not support cross-filtering.": [ - "Ta tip vizualizacije ni podpira medsebojnih filtrov." + "The dataset linked to this chart may have been deleted.": [ + "Podatkovni set, povezan s tem grafikonom, je bil izbrisan." ], - "This visualization type is not supported.": [ - "Ta tip vizualizacije ni podprt." + "RANGE TYPE": ["TIP OBDOBJA"], + "Actual time range": ["Dejansko časovno obdobje"], + "APPLY": ["UPORABI"], + "Edit time range": ["Uredi časovno obdobje"], + "Configure Advanced Time Range ": ["Nastavi napredno časovno obdobje "], + "START (INCLUSIVE)": ["ZAČETEK (VKLJUČEN)"], + "Start date included in time range": [ + "Začetni datum je vključen v časovno obdobje" ], - "This was triggered by:": [ - "To je bilo sproženo z/s:", - "To je bilo sproženo z/s:", - "To je bilo sproženo z/s:", - "To je bilo sproženo z/s:" + "END (EXCLUSIVE)": ["KONEC (NI VKLJUČEN)"], + "End date excluded from time range": [ + "Končni datum ni vključen v časovno obdobje" ], - "This will remove your current embed configuration.": [ - "To bo odstranilo trenutno konfiguracijo za vgrajevanje." + "Configure Time Range: Previous...": [ + "Nastavi časovno obdobje: Prejšnji ..." ], - "Threshold": ["Prag"], - "Threshold alpha level for determining significance": [ - "Mejna vrednost alfa za določanje značilnosti" + "Configure Time Range: Last...": ["Nastavi časovno obdobje: Zadnji ..."], + "Configure custom time range": ["Nastavi prilagojeno časovno obdobje"], + "Relative quantity": ["Relativne vrednosti"], + "Relative period": ["Relativno obdobje"], + "Anchor to": ["Sidraj na"], + "NOW": ["ZDAJ"], + "Date/Time": ["Datum/Čas"], + "Return to specific datetime.": ["Vrne datum-čas."], + "Syntax": ["Sintaksa"], + "Example": ["Primer"], + "Moves the given set of dates by a specified interval.": [ + "Premakne dani nabor datumov za definirano obdobje." ], - "Threshold: ": ["Prag: "], - "Thumbnails": ["Sličice"], - "Thursday": ["Četrtek"], - "Time": ["Čas"], - "Time Column": ["Časovni stolpec"], - "Time Comparison": ["Časovna primerjava"], - "Time Format": ["Oblika zapisa časa"], - "Time Grain": ["Granulacija časa"], - "Time Grain must be specified when using Time Shift.": [ - "Pri časovnem premiku mora biti definirana granulacija časa." + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Zaokroži datum-čas, glede na definirano časovno enoto." ], - "Time Granularity": ["Granulacija časa"], - "Time Lag": ["Časovni zaostanek"], - "Time Range": ["Časovno obdobje"], - "Time Ratio": ["Časovno razmerje"], - "Time Series": ["Časovna vrsta"], - "Time Series - Bar Chart": ["Časovna vrsta - Stolpčni grafikon"], - "Time Series - Line Chart": ["Časovna vrsta - Črtni grafikon"], - "Time Series - Nightingale Rose Chart": [ - "Časovna vrsta - Nightingale Rose grafikon" + "Get the last date by the date unit.": [ + "Pridobi zadnji datum glede na časovno enoto." ], - "Time Series - Paired t-test": [ - "Časovna vrsta - t-test za odvisne vzorce" + "Get the specify date for the holiday": ["Določi datum praznika"], + "Previous": ["Prejšnji"], + "Custom": ["Prilagojen"], + "last day": ["zadnji dan"], + "last week": ["zadnji teden"], + "last month": ["zadnji mesec"], + "last quarter": ["zadnje četrletje"], + "last year": ["zadnje leto"], + "previous calendar week": ["prejšnji koledarski teden"], + "previous calendar month": ["prejšnji koledarski mesec"], + "previous calendar year": ["prejšnje koledarsko leto"], + "Seconds %s": ["Sekunde %s"], + "Minutes %s": ["Minute %s"], + "Hours %s": ["Ure %s"], + "Days %s": ["Dnevi %s"], + "Weeks %s": ["Tedni %s"], + "Months %s": ["Meseci %s"], + "Quarters %s": ["Četrtletja %s"], + "Years %s": ["Leta %s"], + "Specific Date/Time": ["Fiksen Datum/Čas"], + "Relative Date/Time": ["Relativen Datum/Čas"], + "Now": ["Zdaj"], + "Midnight": ["Polnoč"], + "Saved expressions": ["Shranjeni izrazi"], + "Saved": ["Shranjeno"], + "%s column(s)": ["Stolpci: %s"], + "No temporal columns found": ["Ni najdenih časovnih stolpcev"], + "No saved expressions found": ["Shranjeni izrazi niso najdeni"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "Dodaj izračunan časovni stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" ], - "Time Series - Percent Change": [ - "Časovna vrsta - Procentualna sprememba" + "Add calculated columns to dataset in \"Edit datasource\" modal": [ + "Dodaj izračunan stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" ], - "Time Series - Period Pivot": ["Časovna vrsta - Vrtenje period"], - "Time Series - Stacked": ["Časovna vrsta - Naložen graf"], - "Time Series Options": ["Možnosti časovne vrste"], - "Time Shift": ["Časovni zamik"], - "Time Table View": ["Pogled urnika"], - "Time column": ["Časovni stolpec"], - "Time column \"%(col)s\" does not exist in dataset": [ - "Časovni stolpec \"%(col)s\" ne obstaja v podatkovnem setu" + " to mark a column as a time column": [ + " za označitev stolpca kot časovnega" ], - "Time column filter plugin": ["Vtičnik za časovni filter"], - "Time column to apply dependent temporal filter to": [ - "Časovni stolpec za časovno filtriranje za" + " to add calculated columns": [" za dodajanje izračunanih stolpcev"], + "Simple": ["Preprosto"], + "Mark a column as temporal in \"Edit datasource\" modal": [ + "Označite stolpec kot časoven preko okna \"Uredi podatkovni vir\"" ], - "Time column to apply time range to": [ - "Časovni stolpec za časovno obdobje za" + "Custom SQL": ["Prilagojen SQL"], + "My column": ["Moj stolpec"], + "This filter might be incompatible with current dataset": [ + "Ta filter je lahko nekompatibilen s trenutnim podatkovnim setom" ], - "Time comparison": ["Časovna primerjava"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ - "Časovna razlika v naravnem (angleškem) jeziku\n (primer: 24 hours, 7 days, 56 weeks, 365 days)" + "This column might be incompatible with current dataset": [ + "Ta grafikon je lahko nekompatibilen s trenutnim podatkovnim setom" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Časovna razlika je nejasna. Podajte [%(human_readable)s ago] ali [%(human_readable)s later]." - ], - "Time filter": ["Časovni filter"], - "Time format": ["Oblika zapisa časa"], - "Time grain": ["Granulacija časa"], - "Time grain filter plugin": ["Vtičnik za filter časovne granulacije"], - "Time grain missing": ["Časovna granulacija manjka"], - "Time granularity": ["Granulacija časa"], - "Time in seconds": ["Čas v sekundah"], - "Time lag": ["Časovni zaostanek"], - "Time range": ["Časovno obdobje"], - "Time ratio": ["Časovno razmerje"], - "Time related form attributes": ["S časom povezani atributi prikaza"], - "Time series": ["Časovna vrsta"], - "Time series columns": ["Stolpci s časovnimi vrstami"], - "Time shift": ["Časovni zamik"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Časovni niz je nejasen. Podajte [%(human_readable)s ago] ali [%(human_readable)s later]." - ], - "Time-series Area Chart": ["Ploščinski grafikon časovne vrste"], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "Ploščinski grafikoni časovne vrste so podobni črtnim grafikonom, saj predstavljajo spremenljivke v istem razmerju, vendar se pri ploščinskih grafikonih mere nalagajo ena na drugo." - ], - "Time-series Bar Chart": ["Stolpčni grafikon za časovno vrsto"], - "Time-series Bar Chart (legacy)": [ - "Stolpčni grafikon za časovno vrsto (zastarelo)" - ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Stolpčni grafikoni časovne vrste se uporabljajo za prikaz sprememb mere skozi čas s pomočjo niza stolpcev." - ], - "Time-series Chart": ["Grafikon časovne vrste"], - "Time-series Line Chart": ["Črtni grafikon časovne vrste"], - "Time-series Percent Change": ["Časovna vrsta - Procentualna sprememba"], - "Time-series Period Pivot": ["Časovna serija - Vrtenje periode"], - "Time-series Scatter Plot": ["Raztreseni grafikon časovne vrste"], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Raztreseni grafikon časovne vrste prikazuje podatkovne točke v povezanem redu in prikazuje statistično razmerje med spremenljivkami." - ], - "Time-series Smooth Line": ["Zglajeni črtni grafikon časovne vrste"], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "Zglajeni grafikon časovne vrste je izpeljanka črtnega grafikona, ki zgladi ostre robove krivulje." + "Click to edit label": ["Kliknite za urejanje oznake"], + "Drop columns/metrics here or click": [ + "Spustite stolpce/mere sem ali kliknite" ], - "Time-series Stepped Line": ["Stopnični črtni grafikon časovne vrste"], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Stopnični grafikon časovne vrste je izpeljanka črtnega grafikona, pri čemer krivuljo tvorijo stopnice med posameznimi točkami. Koristen je za prikaz sprememb na posameznih intervalih." + "This metric might be incompatible with current dataset": [ + "Ta mera je lahko nekompatibilna s trenutnim podatkovnim setom" ], - "Time-series Table": ["Tabela s časovno vrsto"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Črtni grafikon časovne vrste je osnovni grafikon, ki se uporablja na različnih področjih. Uporablja se za vizualizacijo meritev zajetih skozi čas. Posamezne točke so med seboj povezane z ravnimi črtami." + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "\n Ta filter izvira iz konteksta nadzorne plošče.\n Pri shranjevanju grafikona se ne bo shranil.\n " ], - "Timeout error": ["Napaka pretečenega časa"], - "Timestamp format": ["Oblika zapisa časovne značke"], - "Timezone": ["Časovni pas"], - "Timezone offset (in hours) for this datasource": [ - "Razlika časovnega pasu (v urah) za ta podatkovni vir" + "%s option(s)": ["Možnosti: %s"], + "Select subject": ["Izberite zadevo"], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Tak stolpec ni najden. Za filtriranje po meri uporabite prilagojen SQL zavihek." ], - "Timezone selector": ["Izbira časovnega pasa"], - "Tiny": ["Drobno"], - "Title": ["Naslov"], - "Title Column": ["Stolpec z naslovi"], - "Title is required": ["Naslov je obvezen"], - "Title or Slug": ["Naslov ali `Slug`"], "To filter on a metric, use Custom SQL tab.": [ "Za filtriranje po meri uporabite prilagojen SQL zavihek." ], - "To get a readable URL for your dashboard": [ - "Za pridobitev berljivega URL-ja za nadzorno ploščo" - ], - "Tools": ["Orodja"], - "Tooltip": ["Opis orodja"], - "Tooltip Contents": ["Vsebina opisa orodja"], - "Tooltip sort by metric": ["Mera za razvrščanje opisa orodja"], - "Tooltip time format": ["Oblika zapisa časa v opisu orodja"], - "Top": ["Zgoraj"], - "Top left": ["Zgoraj levo"], - "Top right": ["Zgoraj desno"], - "Top to Bottom": ["Od vrha proti dnu"], - "Total": ["Skupaj"], - "Total (%(aggfunc)s)": ["Skupaj (%(aggfunc)s)"], - "Total (%(aggregatorName)s)": ["Skupaj (%(aggregatorName)s)"], - "Total value": ["Skupna vsota"], - "Total: %s": ["Skupaj: %s"], - "Totals": ["Vsota"], - "Track job": ["Sledi opravilom"], - "Transformable": ["Prilagodljiv"], - "Transparent": ["Prozorno"], - "Transpose pivot": ["Transponirano vrtenje"], - "Tree Chart": ["Drevesni grafikon"], - "Tree layout": ["Oblika drevesa"], - "Tree orientation": ["Orientacija drevesa"], - "Treemap": ["Drevesni grafikon s pravokotniki"], - "Trend": ["Trend"], - "Triangle": ["Trikotnik"], - "Trigger Alert If...": ["Sproži opozorilo v primeru ..."], - "Truncate Axis": ["Prireži os"], - "Truncate Cells": ["Prireži celice"], - "Truncate Metric": ["Odstrani mero"], - "Truncate X Axis": ["Prireži X-os"], - "Truncate X Axis. Can be overridden by specifying a min or max bound. Only applicable for numercal X axis.": [ - "Prireži X-os. Če določite spodnjo ali zgornjo mejo, preprečite prirezovanje. Deluje samo za numerično X os." - ], - "Truncate Y Axis": ["Prireži Y-os"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "Prireži Y-os. Če določite spodnjo ali zgornjo mejo, preprečite prirezovanje." + "%s operator(s)": ["Operatorji: %s"], + "Select operator": ["Izberite operator"], + "Comparator option": ["Možnosti komparatorja"], + "Type a value here": ["Vnesite vrednost sem"], + "Filter value (case sensitive)": [ + "Vrednost filtra (razlik. velikih/malih črk)" ], - "Truncate long cells to the \"min width\" set above": [ - "Prireži dolge celice na \"min. širino\" nastavljeno zgoraj" + "Failed to retrieve advanced type": [ + "Napaka pri pridobivanju naprednega tipa" ], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Zaokroži datum-čas, glede na definirano časovno enoto." + "choose WHERE or HAVING...": ["izberite WHERE ali HAVING..."], + "Filters by columns": ["Filtrira po stolpcu"], + "Filters by metrics": ["Filtrira po merah"], + "metric": ["mera"], + "Fixed": ["Fiksno"], + "Based on a metric": ["Osnovan na meri"], + "My metric": ["Moja mera"], + "Add metric": ["Dodaj mero"], + "Select aggregate options": ["Izberite agregacijske možnosti"], + "%s aggregates(s)": ["Agreg. funkcije: %s"], + "Select saved metrics": ["Izberite shranjene mere"], + "%s saved metric(s)": ["Shranjene mere: %s"], + "Saved metric": ["Shranjena mera"], + "No saved metrics found": ["Shranjene mere niso najdene"], + "Add metrics to dataset in \"Edit datasource\" modal": [ + "Dodaj mero v podatkovni set v oknu \"Uredi podatkovni vir\"" ], - "Try applying different filters or ensuring your datasource has data": [ - "Poskusite uporabiti druge filtre oz. zagotovite, da so v podatkovnem viru podatki" + " to add metrics": [" za dodajanje mer"], + "Simple ad-hoc metrics are not enabled for this dataset": [ + "Preproste ad-hoc mere za ta podatkovni set niso omogočene" ], - "Try different criteria to display results.": [ - "Za prikaz rezultatov poskusite z drugačnimi kriteriji." + "column": ["stolpec"], + "aggregate": ["agregacija"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "Ad-hoc SQL mere po meri za ta podatkovni set niso omogočene" ], - "Tuesday": ["Torek"], - "Tukey": ["Tukey"], - "Type": ["Tip"], - "Type \"%s\" to confirm": ["Vnesite \"%s\" za potrditev"], - "Type a value": ["Vnesite vrednost"], - "Type a value here": ["Vnesite vrednost sem"], - "Type is required": ["Tip je obvezen"], - "Type of Google Sheets allowed": ["Dovoljeni tipi Googlovih preglednic"], + "Error while fetching data: %s": ["Napaka pri pridobivanju podatkov: %s"], + "Time series columns": ["Stolpci s časovnimi vrstami"], + "Actual value": ["Dejanska vrednost"], + "Sparkline": ["Hitri grafikon"], + "Period average": ["Povprečje obdobja"], + "The column header label": ["Naslov stolpca"], + "Column header tooltip": ["Opis glave stolpca"], "Type of comparison, value difference or percentage": [ "Vrsta primerjave, razlike vrednosti ali procenta" ], - "Type or Select [%s]": ["Vnesite ali izberite [%s]"], - "UI Configuration": ["UI-nastavitve"], - "URL": ["URL"], - "URL Parameters": ["Parametri URL"], - "URL parameters": ["Parametri URL"], - "URL slug": ["URL slug"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "Novega zavihka ni mogoče dodati v sistem. Kontaktirajte administratorja." - ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "Povezava na katalog \"%(catalog_name)s\" ni uspela." - ], - "Unable to connect to database \"%(database)s\".": [ - "Povezava s podatkovno bazo \"%(database)s\" ni uspela." + "Width": ["Širina"], + "Width of the sparkline": ["Širina hitrega grafikona"], + "Height of the sparkline": ["Višina hitrega grafikona"], + "Time lag": ["Časovni zaostanek"], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "Povezava neuspešna. Preverite če so v servisnem računu nastavljene naslednje vloge: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" in so nastavljena naslednja dovoljenja: \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" + "Time Lag": ["Časovni zaostanek"], + "Time ratio": ["Časovno razmerje"], + "Number of periods to ratio against": [ + "Število časovnih obdobij za izračun deleža" ], - "Unable to create chart without a query id.": [ - "Grafikona ni mogoče ustvariti brez id-ja poizvedbe." + "Time Ratio": ["Časovno razmerje"], + "Show Y-axis": ["Prikaži Y-os"], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Prikaz Y-osi na hitrem grafikonu. Če je nastavljena vrednost min/max, pokaže to, drugače pa glede na podatke." ], - "Unable to decode value": ["Vrednosti ni mogoče dešifrirati"], - "Unable to encode value": ["Vrednosti ni mogoče šifrirati"], - "Unable to find such a holiday: [%(holiday)s]": [ - "Ni mogoče najti takšnega praznika: [%(holiday)s]" + "Y-axis bounds": ["Meje Y-osi"], + "Manually set min/max values for the y-axis.": [ + "Ročno nastavi min./max. vrednosti za y-os." ], - "Unable to load columns for the selected table. Please select a different table.": [ - "Stolpcev za izbrano tabelo ni bilo mogoče naložiti. Izberite drugo tabelo." + "Color bounds": ["Barvne meje"], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Številske meje za kodiranje barv od rdeče do modre.\n\tZamenjajte števili za barve od modre do rdeče. Če želite čisto rdečo ali modro,\n\tvnesite samo min ali max." ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Stanja urejevalnika poizvedb ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." + "Optional d3 number format string": [ + "Opcijski niz za d3-oblikovanje števila" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Stanja poizvedbe ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." + "Number format string": ["Niz za obliko števila"], + "Optional d3 date format string": [ + "Opcijski niz za d3-oblikovanje datuma" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Stanja sheme tabele ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." + "Date format string": ["Niz za obliko datuma"], + "Column Configuration": ["Konfiguracija stolpca"], + "Select Viz Type": ["Izberite tip vizualizacije"], + "Currently rendered: %s": ["Trenutno izrisano: %s"], + "Recommended tags": ["Priporočene oznake"], + "Search all charts": ["Išči vse grafikone"], + "No description available.": ["Opisa ni na razpolago."], + "Examples": ["Vzorci"], + "This visualization type is not supported.": [ + "Ta tip vizualizacije ni podprt." ], - "Unable to retrieve dashboard colors": [ - "Neuspešno pridobivanje barv nadzorne plošče" + "View all charts": ["Ogled vseh grafikonov"], + "Select a visualization type": ["Izberite tip vizualizacije"], + "No results found": ["Rezultati niso najdeni"], + "Superset Chart": ["Superset grafikon"], + "New chart": ["Nov grafikon"], + "Edit chart properties": ["Uredi lastnosti grafikona"], + "Dashboards added to": ["Dodano na nadzorne plošče"], + "Export to original .CSV": ["Izvozi v izvorni .CSV"], + "Export to pivoted .CSV": ["Izvozi v vrtilni .CSV"], + "Export to .JSON": ["Izvozi v .JSON"], + "Embed code": ["Koda za vgradnjo"], + "Run in SQL Lab": ["Zaženi v SQL laboratoriju"], + "Code": ["Koda"], + "Markup type": ["Tip označevanja"], + "Pick your favorite markup language": [ + "Izberite svoj priljubljen označevalni jezik" ], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "CSV datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" + "Put your code here": ["Vstavite svojo kodo sem"], + "URL parameters": ["Parametri URL"], + "Extra parameters for use in jinja templated queries": [ + "Dodatni parametri za poizvedbe z jinja predlogami" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Stolpčne datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" + "Annotations and layers": ["Oznake in sloji"], + "Annotation layers": ["Sloji z oznakami"], + "My beautiful colors": ["Moje čudovite barve"], + "< (Smaller than)": ["< (manjše kot)"], + "> (Larger than)": ["> (večje kot)"], + "<= (Smaller or equal)": ["<= (manjše ali enako)"], + ">= (Larger or equal)": [">= (večje ali enako)"], + "== (Is equal)": ["== (je enako)"], + "!= (Is not equal)": ["!= (ni enako)"], + "Not null": ["Ni null (IS NOT NULL)"], + "60 days": ["60 days"], + "90 days": ["90 days"], + "Add notification method": ["Dodajte način obveščanja"], + "Add delivery method": ["Dodajte način dostave"], + "Add": ["Dodaj"], + "Edit Report": ["Uredi poročilo"], + "Edit Alert": ["Uredi opozorilo"], + "Add Report": ["Dodaj poročilo"], + "Add Alert": ["Dodaj opozorilo"], + "Report name": ["Naslov poročila"], + "Alert name": ["Naslov opozorila"], + "Active": ["Aktiven"], + "Alert condition": ["Status opozorila"], + "SQL Query": ["SQL-poizvedba"], + "The result of this query should be a numeric-esque value": [ + "Rezultat te poizvedbe mora biti številska vrednost" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Excel datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" + "Trigger Alert If...": ["Sproži opozorilo v primeru ..."], + "Condition": ["Pogoj"], + "Report schedule": ["Urnik poročanja"], + "Alert condition schedule": ["Urnik statusov opozoril"], + "Timezone": ["Časovni pas"], + "Schedule settings": ["Nastavitve urnika"], + "Log retention": ["Hranjenje dnevnikov"], + "Working timeout": ["Pretek delovanja"], + "Time in seconds": ["Čas v sekundah"], + "seconds": ["sekunde"], + "Grace period": ["Obdobje mirovanja"], + "Message content": ["Vsebina sporočila"], + "Send as PNG": ["Pošlji kot PNG"], + "Send as CSV": ["Pošlji kot CSV"], + "Send as text": ["Pošlji kot besedilo"], + "Ignore cache when generating report": [ + "Ne upoštevaj predpomnjenja pri ustvarjanju poročila" ], - "Undefined": ["Ni definirano"], - "Undefined window for rolling operation": [ - "Nedefinirano okno za drsečo operacijo" + "Screenshot width": ["Širina zaslonske slike"], + "Input custom width in pixels": ["Vnesi poljubno širino v pikslih"], + "Notification method": ["Način obveščanja"], + "report": ["poročilo"], + "%s updated": ["%s posodobljeni"], + "CRON Schedule": ["CRON urnik"], + "CRON expression": ["CRON izraz"], + "Report sent": ["Poročilo poslano"], + "Alert triggered, notification sent": [ + "Opozorilo sproženo, obvestilo poslano" ], - "Undo the action": ["Razveljavi dejanje"], - "Undo?": ["Povrni?"], - "Unexpected error": ["Nepričakovana napaka"], - "Unexpected error occurred, please check your logs for details": [ - "Zgodila se je nepričakovana napaka. Podrobnosti preverite v dnevnikih" + "Report sending": ["Pošiljanje poročila"], + "Alert running": ["Opozorilo aktivno"], + "Report failed": ["Poročilo ni uspelo"], + "Alert failed": ["Opozorilo ni uspelo"], + "Nothing triggered": ["Ni ni sproženo"], + "Alert Triggered, In Grace Period": [ + "Opozorilo sproženo, v obdobju mirovanja" ], - "Unexpected error: ": ["Nepričakovana napaka: "], - "Unknown": ["Neznano"], - "Unknown Doris server host \"%(hostname)s\".": [ - "Neznan Doris strežnik \"%(hostname)s\"." + "Delivery method": ["Način dostave"], + "Select Delivery Method": ["Izberite način dostave"], + "Recipients are separated by \",\" or \";\"": [ + "Prejemniki so ločeni z \",\" ali \";\"" ], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Neznan MySQL strežnik \"%(hostname)s\"." + "Queries": ["Poizvedbe"], + "No entities have this tag currently assigned": [ + "Noben element trenutno nima te oznake" ], - "Unknown Presto Error": ["Neznana Presto napaka"], - "Unknown Status": ["Neznan status"], - "Unknown column used in orderby: %(col)s": [ - "Za razvrščanje je uporabljen neznan stolpec: %(col)s" + "Add tag to entities": ["Dodaj oznako elementom"], + "annotation_layer": ["annotation_layer"], + "Annotation template updated": ["Predloga oznake posodobljena"], + "Annotation template created": ["Predloga oznake ustvarjena"], + "Edit annotation layer properties": ["Uredi lastnosti sloja z oznakami"], + "Annotation layer name": ["Ime sloja z oznakami"], + "Description (this can be seen in the list)": [ + "Opis (viden bo na seznamu)" ], - "Unknown error": ["Neznana napaka"], - "Unknown input format": ["Neznana oblika vnosa"], - "Unknown type": ["Neznan tip"], - "Unknown value": ["Neznana vrednost"], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Nevaren tip rezultata, ki ga vrne funkcija %(func)s: %(value_type)s" + "annotation": ["oznaka"], + "The annotation has been updated": ["Označba je bila posodobljena"], + "The annotation has been saved": ["Označba je bila shranjena"], + "Edit annotation": ["Uredi oznako"], + "Add annotation": ["Dodaj oznako"], + "date": ["datum"], + "Additional information": ["Dodatne informacije"], + "Please confirm": ["Prosim, potrdite"], + "Are you sure you want to delete": [ + "Ali ste prepričani, da želite izbrisati" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Nevaren vzorec za ključ %(key)s: %(value_type)s" + "Modified %s": ["Zadnja sprememba %s"], + "css_template": ["css_template"], + "Edit CSS template properties": ["Uredi lastnosti CSS predloge"], + "Add CSS template": ["Dodaj CSS predlogo"], + "css": ["css"], + "published": ["objavljeno"], + "draft": ["osnutek"], + "Adjust how this database will interact with SQL Lab.": [ + "Nastavite kako bo ta podatkovna baza delovala z SQL-laboratorijem." ], - "Unsupported clause type: %(clause)s": [ - "Nepodprt tip izraza: %(clause)s" + "Expose database in SQL Lab": [ + "Razkrij podatkovno bazo v SQL laboratoriju" ], - "Unsupported post processing operation: %(operation)s": [ - "Nepodprta poprocesirna operacija: %(operation)s" + "Allow this database to be queried in SQL Lab": [ + "Dovoli poizvedbo na to podatkovno bazo v SQL laboratoriju" ], - "Unsupported return value for method %(name)s": [ - "Nepodprt rezultat vračanja za metodo %(name)s" + "Allow creation of new tables based on queries": [ + "Dovoli ustvarjanje novih tabel s poizvedbami" ], - "Unsupported template value for key %(key)s": [ - "Nepodprta vrednost vzorca za ključ %(key)s" + "Allow creation of new views based on queries": [ + "Dovoli ustvarjanje novih pogledov s poizvedbami" ], - "Unsupported time grain: %(time_grain)s": [ - "Nepodprta časovna granulacija: %(time_grain)s" + "CTAS & CVAS SCHEMA": ["CTAS & CVAS SHEMA"], + "Create or select schema...": ["Ustvarite ali izberite shemo..."], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Vsilite, da bodo vse tabele in pogledi ustvarjeni s to shemo, ko kliknete CTAS ali CVAS v SQL laboratoriju." ], - "Untitled Dataset": ["Neimenovan podatkovni set"], - "Untitled Query": ["Neimenovana poizvedba"], - "Untitled query": ["Neimenovana poizvedba"], - "Update": ["Posodobi"], - "Update chart": ["Posodobi grafikon"], - "Updating chart was stopped": [ - "Posodabljanje grafikona je bilo ustavljeno" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Dovoli manipulacije podatkovne baze z uporabo ne-SELECT stavkov, kot so UPDATE, DELETE, CREATE, itd." ], - "Upload": ["Naloži"], - "Upload CSV": ["Naloži CSV"], - "Upload CSV to database": ["Naloži CSV v podatkovno bazo"], - "Upload Credentials": ["Naloži prijavne podatke"], - "Upload Enabled": ["Nalaganje omogočeno"], - "Upload Excel file": ["Naloži Excel-ovo datoteko"], - "Upload Excel file to database": [ - "Naloži Excel-ovo datoteko v podatkovno bazo" + "Enable query cost estimation": [ + "Omogoči ocenjevanje potratnosti poizvedbe" ], - "Upload JSON file": ["Naloži JSON datoteko"], - "Upload columnar file": ["Naloži stolpčno datoteko"], - "Upload columnar file to database": [ - "Naloži stolpčno datoteko v podatkovno bazo" + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Za Bigquery, Presto in Postgres prikaže gumb za izračun potratnosti pred zagonom poizvedbe." ], - "Upload file to database": ["Naloži datoteko v podatkovno bazo"], - "Upper Threshold": ["Zgornji prag"], - "Upper threshold must be greater than lower threshold": [ - "Zgornji prag mora biti večji od spodnjega" + "Allow this database to be explored": [ + "Dovoli raziskovanje te podatkovne baze" ], - "Usage": ["Uporaba"], - "Use \"%(menuName)s\" menu instead.": [ - "Namesto tega uporabite meni: \"%(menuName)s\"." + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Ko je omogočeno, lahko uporabniki prikazujejo rezultate SQL laboratorija v raziskovalcu." ], - "Use %s to open in a new tab.": [ - "Uporabite %s za odpiranje v novem zavihku." + "Disable SQL Lab data preview queries": [ + "Izključite poizvedbe za predogled podatkov v SQL Laboratoriju" ], - "Use Area Proportions": ["Uporabi razmerje površin"], - "Use Columns": ["Uporabi stolpce"], - "Use a log scale": ["Uporabi logaritemsko skalo"], - "Use a log scale for the X-axis": ["Uporabi logaritemsko skalo za X-os"], - "Use a log scale for the Y-axis": ["Uporabi logaritemsko skalo za Y-os"], - "Use an encrypted connection to the database": [ - "Uporabite šifrirano povezavo s podatkovno bazo" + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Izključite predogled podatkov pri pridobivanju metapodatkov v SQL laboratoriju. S tem se zmanjša obremenitev brskalnika pri podatkovnih bazah z zelo širokimi tabelami." ], - "Use an ssh tunnel connection to the database": [ - "Za povezavo s podatkovno bazo uporabite ssh-tunel" + "Enable row expansion in schemas": ["Omogoči razširitev vrstic v shemah"], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ + "Za Trino opiši celotno shemo gnezdenih tipov vrstic, razširjeno s potmi za pikami" ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "Uporabite enega izmed obstoječih grafikonov kot vir oznak.\n Grafikon mora biti naslednjega tipa: [%s]" + "Performance": ["Zmogljivost"], + "Adjust performance settings of this database.": [ + "Prilagodite nastavitve zmogljivosti te podatkovne baze." ], - "Use date formatting even when metric value is not a timestamp": [ - "Oblikovanje datuma uporabi tudi, ko vrednost mere ni časovna značka" + "Chart cache timeout": ["Trajanje predpomnilnika grafikona"], + "Enter duration in seconds": ["Vnesite trajanje v sekundah"], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. Vrednost 0 označuje, da predpomnilnik nikoli ne poteče, -1 pa onemogoči predpomnjenje. V primeru, da ni definirano, ima globalno nastavitev." ], - "Use legacy datasource editor": [ - "Uporabi zastareli urejevalnik podatkovnega vira" + "Schema cache timeout": ["Trajanje prepomnilnika sheme"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Trajanje (v sekundah) predpomnilnika metapodatkov za sheme v tej podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče." ], - "Use metrics as a top level group for columns or for rows": [ - "Uporabi mere kot vrhovni nivo grupiranja za stolpce ali vrstice" + "Table cache timeout": ["Trajanje predpomnilnika tabele"], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Trajanje (v sekundah) predpomnilnika metapodatkov za tabele v tej podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče. " ], - "Use only a single value.": ["Uporabite le eno vrednost."], - "Use the Advanced Analytics options below": [ - "Uporabite spodnje možnosti napredne analitike" + "Asynchronous query execution": ["Asinhroni zagon poizvedb"], + "Cancel query on window unload event": [ + "Prekini poizvedbo pri dogodku zaprtja okna (window unload event)" ], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "Uporabite JSON datoteko, ki ste jo prenesli pri ustvarjanju servisnega računa." + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Ustavi zagnane poizvedbe, ko se zapre okno brskalnika ali uporabnik gre na drugo stran. Na razpolago za Presto, Hive, MySQL, Postgres in Snowflake podatkovne baze." ], - "Use the edit button to change this field": [ - "Za spreminjanje tega polja uporabite gumb za urejanje" + "Add extra connection information.": ["Dodaj informacije o povezavi."], + "Secure extra": ["Dodatna varnost"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "JSON niz, ki vsebuje dodatno konfiguracijo povezave. Uporablja se za zagotavljanje dodatnih informacij povezave za sisteme kot sta Presto in BigQuery, ki nista skladna s sintakso username:password, ki jo običajno uporablja SQLAlchemy." ], - "Use this section if you want a query that aggregates": [ - "Ta sklop uporabite če želite poizvedbo za agregacijo" + "Enter CA_BUNDLE": ["Vnesite CA_BUNDLE"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Opcijska CA_BUNDLE vsebina, za potrjevanje HTTPS zahtev. Razpoložljivo le na določenih sistemih podatkovnih baz." ], - "Use this section if you want to query atomic rows": [ - "Ta sklop uporabite, če želite poizvedbo za posamezne vrstice" + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Predstavljanje kot prijavljeni uporabnik (Presto, Trino, Drill, Hive in GSheets)" ], - "Use this to define a static color for all circles": [ - "S tem definirate določeno barvo za vse kroge" + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "V primeru Presto ali Trino se vse poizvedbe v SQL laboratoriju zaženejo pod trenutno prijavljenim uporabnikom, ki mora imeti pravice za poganjanje. Če je omogočen Hive in hive.server2.enable.doAs, poizvedbe tečejo pod servisnim računom, vendar je trenutno prijavljen uporabnik predstavljen z lastnostjo hive.server2.proxy.user." ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "Uporablja se za interno identifikacijo vtičnika. Naj bo nastavljeno na ime paketa v vtičnikovem package.json" + "Allow file uploads to database": [ + "Dovolite nalaganje datotek v podatkovno bazo" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "Ponazori podatke na podlagi združevanja več statistik vzdolž dveh osi. Npr. prodaja po regijah in mesecih, opravila po statusih in izvajalcih, itd." + "Schemas allowed for File upload": [ + "Dovoljene sheme za nalaganje datotek" ], - "User": ["Uporabnik"], - "User doesn't have the proper permissions.": [ - "Uporabnik nima ustreznih dovoljenj." + "A comma-separated list of schemas that files are allowed to upload to.": [ + "Z vejicami ločen seznam shem, kjer je dovoljeno nalaganje datotek." ], - "User must select a value before applying the filter": [ - "Uporabnik mora obvezno izbrati vrednost pred uveljavitvijo filtra" + "Additional settings.": ["Dodatne nastavitve."], + "Metadata Parameters": ["Parametri metapodatkov"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Objekt metadata_params se razpakira v klic sqlalchemy.MetaData." ], - "User must select a value for this filter": [ - "Uporabnik mora izbrati vrednost za ta filter" + "Engine Parameters": ["Parametri podatkovne baze"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Objekt engine_params se razširi v klic sqlalchemy.create_engine." ], - "User query": ["Uporabnikova poizvedba"], - "Username": ["Uporabniško ime"], - "Users are not allowed to set a search path for security reasons.": [ - "Uporabnikom ni dovoljeno nastaviti iskalne poti zaradi varnostnih razlogov." + "Version": ["Verzija"], + "Version number": ["Številka verzije"], + "Specify the database version. This is used with Presto for query cost estimation, and Dremio for syntax changes, among others.": [ + "Podajte verzijo podatkovne baze. Uporablja se s Presto za potrebe ocenjevanja potratnosti poizvedbe in z Dremio za sprememba sintakse." ], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "Za prikaz prostorske porazdelitve podatkov uporablja ocenjevanje Gaussove jedrno gostote" + "STEP %(stepCurr)s OF %(stepLast)s": [ + "KORAK %(stepCurr)s OD %(stepLast)s" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "Uporablja števec za prikaz napredovanja mere k ciljni vrednosti. Položaj kazalca predstavlja napredek, končna vrednost na števcu pa ciljno vrednost." + "Enter Primary Credentials": ["Vnesite primarne vpisne podatke"], + "Need help? Learn how to connect your database": [ + "Potrebujete pomoč? Kako povezati vašo podatkovno bazo se naučite" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "S pomočjo krogov prikaže potek podatkov na različnih nivojih sistema. S premikom kurzorja prikaže vrednosti na posameznem nivoju. Uporabno za večnivojsko, večskupinsko vizualizacijo." + "Database connected": ["Podatkovna baza povezana"], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Ustvarite podatkovni set, da začnete vizualizacijo podatkov z grafikonom ali\n pojdite v SQL-laboratorij za poizvedovanje nad podatki." ], - "Value": ["Vrednost"], - "Value Domain": ["Domena vrednosti"], - "Value Format": ["Oblika zapisa vrednosti"], - "Value bounds": ["Meje vrednosti"], - "Value cannot exceed %s": ["Vrednost ne sme presegati %s"], - "Value format": ["Oblika zapisa vrednosti"], - "Value is required": ["Zahtevana je vrednost"], - "Value must be greater than 0": ["Vrednost mora biti večja od 0"], - "Values are dependent on other filters": [ - "Vrednosti so odvisne od drugih filtrov" + "Enter the required %(dbModelName)s credentials": [ + "Vnesite potrebne %(dbModelName)s vpisne podatke" ], - "Values dependent on": ["Vrednosti so odvisne od"], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "Vrednosti izbrane v drugih filtrih bodo vplivale na možnosti filtra" + "Need help? Learn more about": ["Potrebujete pomoč? Naučite se več o"], + "connecting to %(dbModelName)s.": ["povezovanje z %(dbModelName)s."], + "Select a database to connect": ["Izberite podatkovno bazo za povezavo"], + "SSH Host": ["SSH-gostitelj"], + "e.g. 127.0.0.1": ["npr. 127.0.0.1"], + "SSH Port": ["SSH-vrata"], + "e.g. Analytics": ["npr. Analitika"], + "Login with": ["Prijava z"], + "Private Key & Password": ["Privatni ključ in geslo"], + "SSH Password": ["SSH-geslo"], + "e.g. ********": ["npr. ********"], + "Private Key": ["Privatni ključ"], + "Paste Private Key here": ["Prilepite privatni ključ sem"], + "Private Key Password": ["Geslo privatnega ključa"], + "SSH Tunnel": ["SSH-tunel"], + "SSH Tunnel configuration parameters": [ + "Parametri nastavitev SSH-tunela" ], - "Vehicle Types": ["Vrste vozil"], - "Verbose Name": ["Podrobno ime"], - "Version": ["Verzija"], - "Version number": ["Številka verzije"], - "Vertical": ["Navpično"], - "Vertical (Left)": ["Navpično (levo)"], - "Video game consoles": ["Igralne konzole"], - "View": ["Ogled"], - "View All »": ["Ogled vseh »"], - "View Dataset": ["Ogled podatkovnega seta"], - "View all charts": ["Ogled vseh grafikonov"], - "View as table": ["Ogled kot tabela"], - "View in SQL Lab": ["Ogled v SQL laboratoriju"], - "View keys & indexes (%s)": ["Ogled ključev in indeksov (%s)"], - "View query": ["Ogled poizvedbe"], - "Viewed": ["Ogledane"], - "Viewed %s": ["Ogledane %s"], - "Viewport": ["Pogled"], - "Virtual": ["Virtualen"], - "Virtual (SQL)": ["Virtualen (SQL-poizvedba)"], - "Virtual dataset": ["Virtualen podatkovni set"], - "Virtual dataset query cannot be empty": [ - "Poizvedba na virtualnem podatkovnem setu ne sme biti prazna" + "Display Name": ["Ime za prikaz"], + "Name your database": ["Poimenujte podatkovno bazo"], + "Pick a name to help you identify this database.": [ + "Izberite ime za lažjo prepoznavo podatkovne baze." ], - "Virtual dataset query cannot consist of multiple statements": [ - "Poizvedba na virtualnem podatkovnem setu ne sme biti sestavljena iz več stavkov" + "dialect+driver://username:password@host:port/database": [ + "dialect+driver://username:password@host:port/database" ], - "Virtual dataset query must be read-only": [ - "Poizvedba na virtualnem podatkovnem setu mora biti samo za branje" + "Refer to the": ["Obrnite se na"], + "for more information on how to structure your URI.": [ + "za več informacij o oblikovanju URI." ], - "Visual Tweaks": ["Nastavitve izgleda"], - "Visualization Type": ["Tip vizualizacije"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "Prikaže vzporedni nabor mer za različne skupine. Vsaka skupina je prikazana s svojim naborom točk in vsaka mera s povezavo na grafikonu." + "Test connection": ["Preizkus povezave"], + "database": ["podatkovna baza"], + "Please enter a SQLAlchemy URI to test": [ + "Vnesite SQLAlchemy URI za test" ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ - "Vizualizacija povezanih mer med pari skupin." + "e.g. world_population": ["npr. world_population"], + "Database settings updated": ["Nastavitve podatkovne baze posodobljene"], + "Sorry there was an error fetching database information: %s": [ + "Pri pridobivanju informacij o podatkovni bazi je prišlo do napake: %s" ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "Prikaz geoprostorskih podatkov kot so 3D zgradbe, parcele ali objekti v mrežnem pogledu." + "Or choose from a list of other databases we support:": [ + "Ali pa izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "Prikaže spreminjanje mere skozi čas s pomočjo stolpcev. Dodajte stolpec za združevanje po za prikaz mer na nivoju skupin in njihovega spreminjanja." + "Supported databases": ["Podprte podatkovne baze"], + "Choose a database...": ["Izberite podatkovno bazo..."], + "Want to add a new database?": ["Želite dodati novo podatkovno bazo?"], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL Alchemy URI-ji. " ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "Prikaz več hierarhičnih nivojev z drevesno strukturo." + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL Alchemy URI-ji. Naučite se kako povezati gonilnik podatkovne baze " ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ - "Prikaže dva različna niza na isti x-osi. Niza sta lahko prikazana z različnim tipom grafikona (npr. en s stolpci in drug s črto)." + "Connect": ["Poveži"], + "Finish": ["Zaključi"], + "This database is managed externally, and can't be edited in Superset": [ + "Podatkovna baza se upravlja eksterno in je ni mogoče urediti znotraj Superseta" ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ - "Prikaže dve različni časovni vrsti na isti x-osi. Časovni vrsti sta lahko prikazani različno (npr. ena s stolpci in druga s črto)." + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Gesla za spodnje podatkovne baze so potrebna za njihov uvoz. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ - "Prikaže mero v treh dimenzijah podatkov na istem grafikonu (x os, y os, velikost mehurčka). Mehurčki v isti skupini so predstavljeni z barvo." + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Uvažate eno ali več podatkovnih baz, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" ], - "Visualizes connected points, which form a path, on a map.": [ - "Na zemljevidu prikaže povezane točke, ki tvorijo pot." + "Database Creation Error": ["Napaka pri ustvarjanju podatkovne baze"], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ + "Neuspešna povezava z vašo podatkovno bazo. Kliknite \"Prikaži več\" za podatke s strani podatkovne baze, ki bodo mogoče v pomoč pri težavi." ], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ - "Prikaže geografsko območje kot poligone na zemljevidu zagotovljenim preko storitve Mapbox. Poligoni so lahko obarvani glede na mero." + "CREATE DATASET": ["USTVARI PODATKOVNI SET"], + "QUERY DATA IN SQL LAB": ["POIZVEDBA V SQL-LABORATORIJU"], + "Connect a database": ["Poveži se s podatkovno bazo"], + "Edit database": ["Uredi podatkovno bazo"], + "Connect this database using the dynamic form instead": [ + "S podatkovno bazo se povežite z dinamičnim obrazcem" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "Prikaže kako se je mera spreminjala s časom s pomočjo barvne lestvice in koledarskega pogleda. Sive vrednosti ponazarjajo manjkajoče vrednosti. Amplituda dnevnih vrednosti je ponazorjena z linearno barvno shemo." + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Kliknite to povezavo za drugo vnosno formo, ki prikaže samo zahtevana polja za povezavo s podatkovno bazo." ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ - "Prikaže kako se posamezna mera spreminja glede na območja države (dežele, province, itd.) na kloropletnem zemljevidu. Vsak podrazdelek se dvigne, ko z miško preidete mejo njegovega območja." + "Additional fields may be required": [ + "Mogoče bodo potrebna dodatna polja" ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ - "Prikaže več različnih časovnih vrst na istem grafikonu. Grafikon se opušča, zato priporočamo uporabo Grafikona časovne vrste." + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Izbira podatkovnih baz za uspešno povezavo zahteva izpolnitev dodatnih polj v zavihku Napredno. Kaj zahteva vaša podatkovna baza se naučite " ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "Prikaže potek vrednosti različnih skupin na različnih nivojih sistema. Novi nivoji so prikazani kot točke ali plasti. Debelina stolpcev ali povezav predstavlja prikazano mero." + "Import database from file": ["Uvozi podatkovno bazo iz datoteke"], + "Connect this database with a SQLAlchemy URI string instead": [ + "S to podatkovno bazo se raje povežite z SQLAlchemy URI nizom" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "Prikaže besede v stolpcu, glede na pogostost pojavljanja. Večja pisava pomeni večjo frekvenco." + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Kliknite to povezavo za drugo vnosno formo, ki omogoča ročni vnos SQLAlchemy URL-ja za to podatkovno bazo." ], - "Viz is missing a datasource": ["Vizualizaciji manjka podatkovni vir"], - "Viz type": ["Tip vizualizacije"], - "WED": ["SRE"], - "Want to add a new database?": ["Želite dodati novo podatkovno bazo?"], - "Warning": ["Opozorilo"], - "Warning Message": ["Opozorilo"], - "Warning!": ["Opozorilo!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Opozorilo! Sprememba podatkovnega seta lahko pokvari grafikon, če metapodatki ne obstajajo." + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "To je lahko bodisi IP naslov (npr. 127.0.0.1) bodisi ime domene (npr. mydatabase.com)." ], - "Was unable to check your query": ["Poizvedbe ni bilo mogoče preveriti"], - "Waterfall Chart": ["Grafikon slapov"], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "Neuspešna povezava z vašo podatkovno bazo. Kliknite \"Prikaži več\" za podatke s strani podatkovne baze, ki bodo mogoče v pomoč pri težavi." + "Host": ["Gostitelj"], + "e.g. 5432": ["npr. 5432"], + "Port": ["Vrata"], + "e.g. sql/protocolv1/o/12345": ["npr. sql/protocolv1/o/12345"], + "Copy the name of the HTTP Path of your cluster.": [ + "Kopirajte naziv HTTP poti vaše gruče." ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "Zdi se, da ni mogoče razrešiti stolpca \"%(column)s\" v vrstici %(location)s." + "Copy the name of the database you are trying to connect to.": [ + "Kopirajte ime podatkovne baze, s katero se skušate povezati." ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\"" + "Access token": ["Žeton za dostop"], + "Pick a nickname for how the database will display in Superset.": [ + "Izberite vzdevek za to podatkovno bazo, ki bo prikazan v Supersetu." ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\" v vrstici %(location)s." + "e.g. param1=value1¶m2=value2": ["npr. param1=value1¶m2=value2"], + "Additional Parameters": ["Dodatni parametri"], + "Add additional custom parameters": ["Dodaj dodatne parametre po meri"], + "SSL Mode \"require\" will be used.": [ + "Uporabljen bo SSL-način tipa \"require\"." ], - "We have the following keys: %s": ["Imamo naslednje ključe: %s"], - "We were unable to active or deactivate this report.": [ - "Aktiviranje ali deaktiviranje poročila ni uspelo." + "Type of Google Sheets allowed": ["Dovoljeni tipi Googlovih preglednic"], + "Publicly shared sheets only": ["Samo javno deljene preglednice"], + "Public and privately shared sheets": [ + "Javno in zasebno deljene preglednice" ], - "We were unable to carry over any controls when switching to this new dataset.": [ - "Prenos kontrolnikov pri preklopu na nov podatkovni set ni bil uspešen." + "How do you want to enter service account credentials?": [ + "Kako želite vnesti prijavne podatke servisnega računa?" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "Povezava s podatkovno bazo \"%(database)s\" ni uspela. Preverite ime podatkovne baze in poskusite ponovno." + "Upload JSON file": ["Naloži JSON datoteko"], + "Copy and Paste JSON credentials": [ + "Kopiraj in prilepi JSON prijavne podatke" ], - "Web": ["Mreža"], - "Wednesday": ["Sreda"], - "Week": ["Teden"], - "Week ending Saturday": ["Teden s koncem v soboto"], - "Week ending Sunday": ["Teden s koncem v nedeljo"], - "Week starting Monday": ["Teden z začetkom v ponedeljek"], - "Week starting Sunday": ["Teden z začetkom v nedeljo"], - "Weekly Report": ["Tedensko poročilo"], - "Weekly Report for %s": ["Tedensko poročilo za %s"], - "Weekly seasonality": ["Tedenska sezonskost"], - "Weeks %s": ["Tedni %s"], - "Weight": ["Utež"], - "We’re having trouble loading these results. Queries are set to timeout after %s second.": [ - "Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s sekundo.", - "Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s sekundi.", - "Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s sekunde.", - "Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s sekund." - ], - "We’re having trouble loading this visualization. Queries are set to timeout after %s second.": [ - "Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s sekundo.", - "Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s sekundi.", - "Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s sekunde.", - "Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s sekund." + "Service Account": ["Servisni račun"], + "Paste content of service credentials JSON file here": [ + "Sem prilepite vsebino json-datoteke servisnega računa" ], - "What should be shown as the label": ["Kaj bo prikazano na oznaki"], - "What should be shown as the tooltip label": [ - "Kaj bo prikazano na opisu orodja" + "Copy and paste the entire service account .json file here": [ + "Tukaj kopirajte in prilepite celotno json datoteko servisnega računa" ], - "What should be shown on the label?": ["Kaj bo prikazano na oznaki?"], - "What should happen if the table already exists": [ - "Kaj naj se zgodi, če tabela že obstaja" + "Upload Credentials": ["Naloži prijavne podatke"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "Uporabite JSON datoteko, ki ste jo prenesli pri ustvarjanju servisnega računa." ], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "Če je `Vrsta izračuna` nastavljena na \"Procentualna sprememba\", bo oblika Y-osi vsiljena na `.1%`" + "Connect Google Sheets as tables to this database": [ + "Googlove preglednice poveži s to podatkovno bazo kot tabele" ], - "When a secondary metric is provided, a linear color scale is used.": [ - "Če je podana sekundarna metrika, je uporabljena linearna barvna skala." + "Google Sheet Name and URL": ["Ime Googlove preglednice in URL"], + "Enter a name for this sheet": ["Vnesite ime te preglednice"], + "Paste the shareable Google Sheet URL here": [ + "Prilepite deljeni URL Googlove preglednice sem" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "Z dovolitvijo opcije CREATE TABLE AS v SQL laboratoriju se tabele ustvarjajo s to shemo" + "Add sheet": ["Dodaj preglednico"], + "Copy the identifier of the account you are trying to connect to.": [ + "Kopirajte ID računa, s katerim se skušate povezati." ], - "When checked, the map will zoom to your data after each query": [ - "Če želite, da se zemljevid prilagodi vašim podatkom po vsaki poizvedbi" + "e.g. xy12345.us-east-2.aws": ["npr. xy12345.us-east-2.aws"], + "e.g. compute_wh": ["npr. compute_wh"], + "e.g. AccountAdmin": ["npr. AccountAdmin"], + "Duplicate dataset": ["Dupliciraj podatkovni set"], + "Duplicate": ["Dupliciraj"], + "New dataset name": ["Ime novega podatkovnega seta"], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s podatkovnimi seti. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." ], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "Ko je omogočeno, lahko uporabniki prikazujejo rezultate SQL laboratorija v raziskovalcu." - ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "Če je podana samo primarna metrika, je uporabljena kategorična barvna skala." - ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "Ko podajate SQL, se podatkovni vir obnaša kot pogled (view). Superset bo ta zapis uporabil kot podpoizvedbo, pri čemer bo združeval in filtriral na podlagi ustvarjenih starševskih poizvedb." + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Uvažate enega ali več podatkovnih setov, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" ], - "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ - "Če so sekundarni časovni stolpci filtrirani, uporabi enak filter tudi za glavni časovni stolpec." + "Refreshing columns": ["Osveževanje stolpcev"], + "Table columns": ["Stolpci tabele"], + "Loading": ["Nalaganje"], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Ta tabela že ima povezan podatkovni set. S tabelo je lahko povezan le en podatkovni set.\n" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "Ko uporabljate \"Samodokončaj filtre\", lahko s tem izboljšate hitrost pridobivanja rezultatov s poizvedbo. Z uporabo te možnosti dodate predikat (WHERE stavek) k poizvedbi za izbiro različnih vrednosti iz tabele. Običajno je namen omejiti poizvedbo z uporabo filtra za relativni čas na particioniranem ali indeksiranem časovnem polju." + "View Dataset": ["Ogled podatkovnega seta"], + "This table already has a dataset": ["Ta tabela že ima podatkovni set"], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Podatkovni set lahko ustvarite iz tabel podatkovne baze ali s pomočjo SQL-poizvedbe. Izberite tabelo podatkovne baze na levi ali " ], - "When using 'Group By' you are limited to use a single metric": [ - "Ko uporabljate 'Group By', ste omejeni na uporabo ene mere" + "create dataset from SQL query": [ + "ustvari podatkovni set iz SQL-poizvedbe" ], - "When using other than adaptive formatting, labels may overlap": [ - "Če ne uporabljate prilagodljive oblike, se oznake lahko prekrivajo" + " to open SQL Lab. From there you can save the query as a dataset.": [ + " za odpiranje SQL laboratorija. Tam lahko poizvedbo shranite kot podatkovni set." ], - "When using this option, default value can’t be set": [ - "Če uporabite to možnost, privzeta vrednost ne more biti nastavljena" + "Select dataset source": ["Izberite podatkovni vir"], + "No table columns": ["Ni stolpcev tabel"], + "This database table does not contain any data. Please select a different table.": [ + "Tabela podatkovne baze ne vsebuje podatkov. Izberite drugo tabelo." ], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "Če želite prekrivanje območij, ko imate več skupin podatkov" + "An Error Occurred": ["Prišlo je do napake"], + "Unable to load columns for the selected table. Please select a different table.": [ + "Stolpcev za izbrano tabelo ni bilo mogoče naložiti. Izberite drugo tabelo." ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "Če želite, da je tabela ustvarjena s postopkom 'Vizualizacija' v SQL laboratoriju" + "The API response from %s does not match the IDatabaseTable interface.": [ + "Odziv API-ja iz %s se ne ujema z vmesnikom IDatabaseTable." ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Če želite, da je ta stolpec na voljo v sekciji `Filtri` v raziskovalnem pogledu." + "Usage": ["Uporaba"], + "Chart owners": ["Lastniki grafikona"], + "Chart last modified": ["Zadnja sprememba grafikona"], + "Chart last modified by": ["Grafikon nazadnje spremenil"], + "Dashboard usage": ["Uporaba nadzorne plošče"], + "Create chart with dataset": ["Ustvarite grafikon s podatkovnim setom"], + "chart": ["grafikona"], + "No charts": ["Ni grafikonov"], + "This dataset is not used to power any charts.": [ + "Podatkovni set ni uporabljen v nobenem grafikonu." ], - "Whether to align background charts with both positive and negative values at 0": [ - "Poravnava grafa v ozadju celic za negativne in pozitivne vrednosti pri 0" + "Select a database table.": ["Izberite tabelo podatkovne baze."], + "Create dataset and create chart": [ + "Ustvarite podatkovni set in grafikon" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "Če želite poravnati pozitivne in negativne vrednosti v stolpčnem grafikonu celic pri 0" + "New dataset": ["Nov podatkovni set"], + "Select a database table and create dataset": [ + "Izberite tabelo podatkovne baze in ustvarite podatkovni set" ], - "Whether to always show the annotation label": [ - "Če želite vedno prikazati naslov oznake" + "dataset name": ["naziv podatkovnega seta"], + "Not defined": ["Ni definirano"], + "There was an error fetching dataset": [ + "Pri pridobivanju podatkovnega seta je prišlo do napake" ], - "Whether to animate the progress and the value or just display them": [ - "Če želite animiran prikaz grafikona" + "There was an error fetching dataset's related objects": [ + "Pri pridobivanju elementov podatkovnega seta je prišlo do napake" ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "Če želite uporabiti normalno porazdelitev glede na stopnjo na barvni lestvici" + "There was an error loading the dataset metadata": [ + "Napaka pri nalaganju metapodatkov podatkovnega seta" ], - "Whether to apply filter when items are clicked": [ - "Če želite uporabiti filter, ko kliknete na elemente" + "[Untitled]": ["[Neimenovana]"], + "Unknown": ["Neznano"], + "Viewed %s": ["Ogledane %s"], + "Edited": ["Urejeno"], + "Created": ["Ustvarjene"], + "Viewed": ["Ogledane"], + "Favorite": ["Priljubljene"], + "Mine": ["Moje"], + "View All »": ["Ogled vseh »"], + "An error occurred while fetching dashboards: %s": [ + "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" ], - "Whether to colorize numeric values by if they are positive or negative": [ - "Če želite obarvati številske vrednosti, ko so le-te pozitivne ali negativne" + "charts": ["grafikoni"], + "dashboards": ["nadzorne plošče"], + "recents": ["nedavne"], + "saved queries": ["shranjene poizvedbe"], + "No charts yet": ["Ni še grafikonov"], + "No dashboards yet": ["Ni še nadzornih plošč"], + "No recents yet": ["Ni še nedavnih"], + "No saved queries yet": ["Ni še shranjenih poizvedb"], + "%(other)s charts will appear here": [ + "%(other)s grafikoni bodo prikazani tu" ], - "Whether to colorize numeric values by whether they are positive or negative": [ - "Če želite obarvati številske vrednosti, ko so le-te pozitivne ali negativne" + "%(other)s dashboards will appear here": [ + "%(other)s nadzorne plošče bodo prikazane tu" ], - "Whether to display a bar chart background in table columns": [ - "Če želite omogočiti prikaz manjših stolpčnih grafikonov v ozadju stolpcev tabele" + "%(other)s recents will appear here": [ + "%(other)s zadnji bodo prikazani tu" ], - "Whether to display a legend for the chart": [ - "Če želite prikaz legende za grafikon" + "%(other)s saved queries will appear here": [ + "%(other)s shranjene poizvedbe bodo prikazane tu" ], - "Whether to display bubbles on top of countries": [ - "Če želite prikaz mehurčkov nad državami" + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Nedavno ogledani grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane tukaj" ], - "Whether to display the aggregate count": [ - "Če želite prikazati agregirano število" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Nedavno ustvarjeni grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane tukaj" ], - "Whether to display the interactive data table": [ - "Če želite prikaz interaktivne podatkovne tabele" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Nedavno urejani grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane tukaj" ], - "Whether to display the labels.": ["Če želite prikaz oznak."], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ - "Če želite prikazati oznake. Oznake so prikazane le nad 5-odstotnim pragom." + "SQL query": ["SQL-poizvedba"], + "You don't have any favorites yet!": ["Priljubljenih še niste izbrali!"], + "See all %(tableName)s": ["Poglej vse %(tableName)s"], + "Connect database": ["Poveži se s podatkovno bazo"], + "Create dataset": ["Ustvarite podatkovni set"], + "Connect Google Sheet": ["Povežite Googlovo preglednico"], + "Upload CSV to database": ["Naloži CSV v podatkovno bazo"], + "Upload columnar file to database": [ + "Naloži stolpčno datoteko v podatkovno bazo" ], - "Whether to display the legend (toggles)": [ - "Preklapljanje prikaza legende" + "Upload Excel file to database": [ + "Naloži Excel-ovo datoteko v podatkovno bazo" ], - "Whether to display the metric name as a title": [ - "Če želite prikazati ime mere kot naslov" + "Enable 'Allow file uploads to database' in any database's settings": [ + "Omogoči 'Dovoli nalaganje podatkov' v nastavitvah vseh podatkovnih baz" ], - "Whether to display the min and max values of the X-axis": [ - "Če želite prikaz min. in max. vrednosti X-osi" + "Info": ["Informacije"], + "Logout": ["Odjava"], + "About": ["O programu"], + "Powered by Apache Superset": ["Omogoča Apache Superset"], + "SHA": ["SHA"], + "Build": ["Zgradi"], + "Documentation": ["Dokumentacija"], + "Report a bug": ["Sporočite napako"], + "Login": ["Prijava"], + "query": ["poizvedba"], + "Deleted: %s": ["Izbrisano: %s"], + "There was an issue deleting %s: %s": ["Težava pri brisanju %s: %s"], + "This action will permanently delete the saved query.": [ + "S tem dejanjem boste trajno izbrisali shranjeno poizvedbo." ], - "Whether to display the min and max values of the Y-axis": [ - "Če želite prikaz min. in max. vrednosti Y-osi" + "Delete Query?": ["Izbrišem poizvedbo?"], + "Ran %s": ["Pretečeno %s"], + "Saved queries": ["Shranjene poizvedbe"], + "Next": ["Naslednji"], + "Tab name": ["Naslov zavihka"], + "User query": ["Uporabnikova poizvedba"], + "Executed query": ["Zagnana poizvedba"], + "Query name": ["Ime poizvedbe"], + "SQL Copied!": ["SQL kopiran!"], + "Sorry, your browser does not support copying.": [ + "Vaš brskalnik ne podpira kopiranja." ], - "Whether to display the numerical values within the cells": [ - "Če želite v celicah prikazati numerične vrednosti" + "There was an issue fetching reports attached to this dashboard.": [ + "Pri pridobivanju poročil za to nadzorno ploščo je prišlo do težave." ], - "Whether to display the stroke": ["Če želite prikazati obrobe"], - "Whether to display the time range interactive selector": [ - "Če želite prikaz interaktivnega izbirnika časovnega obdobja" + "The report has been created": ["Poročilo je bilo ustvarjeno"], + "Report updated": ["Poročilo posodobljeno"], + "We were unable to active or deactivate this report.": [ + "Aktiviranje ali deaktiviranje poročila ni uspelo." ], - "Whether to display the timestamp": [ - "Če želite prikazati časovno značko" + "Your report could not be deleted": [ + "Vašega poročila ni mogoče izbrisati" ], - "Whether to display the tooltip labels.": [ - "Če želite prikaz oznak opisa orodja." + "Weekly Report for %s": ["Tedensko poročilo za %s"], + "Weekly Report": ["Tedensko poročilo"], + "Edit email report": ["Uredi e-poštno poročilo"], + "Schedule a new email report": ["Dodaj novo e-poštno poročilo na urnik"], + "Text embedded in email": ["Besedilo vključeno v e-pošto"], + "Image (PNG) embedded in email": ["Slika (PNG) vključena v e-pošto"], + "Formatted CSV attached in email": ["Oblikovan CSV pripet e-pošti"], + "Report Name": ["Naslov poročila"], + "Include a description that will be sent with your report": [ + "Vključite opis, ki bo vključen v poročilo" ], - "Whether to display the trend line": ["Če želite prikazati trendno črto"], - "Whether to enable changing graph position and scaling.": [ - "Če želite omogočiti premikanje in povečevanje/zmanjševanje grafikona." + "A screenshot of the dashboard will be sent to your email at": [ + "Zaslonska slika nadzorne plošče bo poslana na vaš e-naslov ob" ], - "Whether to enable node dragging in force layout mode.": [ - "Če želite omogočiti premikanje vozlišč v načinu vsiljenega prikaza." + "Failed to update report": ["Posodabljanje poročila neuspešno"], + "Failed to create report": ["Ustvarjanje poročila nesupešno"], + "Set up an email report": ["Nastavite e-poštno poročilo"], + "Email reports active": ["E-poštna poročila aktivna"], + "Delete email report": ["Izbriši e-poštno poročilo"], + "Schedule email report": ["Dodaj e-poštno poročilo na urnik"], + "This action will permanently delete %s.": [ + "S tem dejanjem boste trajno izbrisali %s." ], - "Whether to fill the objects": ["Če želite zapolniti objekte"], - "Whether to ignore locations that are null": [ - "Če ne želite upoštevati praznih (NULL) lokacij" + "Delete Report?": ["Izbrišem poročilo?"], + "rowlevelsecurity": ["varnost na nivoju vrstic"], + "Rule added": ["Pravilo dodano"], + "Edit Rule": ["Uredi pravilo"], + "Add Rule": ["Dodaj pravilo"], + "Rule Name": ["Ime pravila"], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Navadni filtri dodajo WHERE stavek v poizvedbe, če ima uporabnik vlogo podano v filtru. Osnovni filtri filtrirajo vse poizvedbe, razen vlog, definiranih v filtru, in jih je mogoče uporabiti za nastavitev tega kaj uporabnik vidi, če v skupini filtrov ni RLS-filtrov, ki bi se nanašali nanje." ], - "Whether to include a client-side search box": [ - "Če želite vključiti iskalno polje za uporabnika" + "These are the datasets this filter will be applied to.": [ + "To so podatkovni seti, na katere se nanaša ta filter." ], - "Whether to include a time filter": [ - "Če želite vključiti časovni filter" + "Excluded roles": ["Izključene vloge"], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Za regularne filtre so te vloge tiste, ki bodo filtrirane. Za osnovne filtre, so te vloge tiste, ki NE bodo filtrirane, npr. Admin, če naj administrator vidi vse podatke." ], - "Whether to include the percentage in the tooltip": [ - "Če želite prikaz procentov v opisu orodja" + "Group Key": ["Ključ za združevanje"], + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Filtri z enakim skupinskim ključem bodo znotraj skupine združeni z OR funkcijo, medtem ko bodo različne skupine združene z AND funkcijo. Nedefinirani skupinski ključi so obravnavani kot unikatne skupine in niso združeni v svojo skupino. Npr., če ima tabela tri filtre, pri čemer sta dva za oddelka marketinga in financ (skupinski ključ = 'oddelek') tretji pa se nanaša na regijo Evropa (skupinski ključ = 'regija'), bo filtrski izraz (oddelek = 'Finance' OR oddelek = 'Marketing') AND (regija = 'Evropa')." ], - "Whether to include the time granularity as defined in the time section": [ - "Če želite vključiti granulacijo časa, ki je določena v sekciji Čas" + "Clause": ["Stavek"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "To je pogoj, ki bo dodan WHERE stavku. Npr., če želite dobiti vrstice za določeno stranko, lahko definirate regularni filter z izrazom 'id_stranke = 9'. Če ne želimo prikazati vrstic, razen če uporabnik pripada RLS vlogi, lahko filter ustvarimo z izrazom `1 = 0` (vedno FALSE)." ], - "Whether to make the grid 3D": ["Če želite mrežo v 3D-prikazu"], - "Whether to make the histogram cumulative": [ - "Če želite kumulativni histogram" + "Regular": ["Navaden"], + "Base": ["Osnova"], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "%s elementov ni mogoče označiti, ker nimate pravic za urejanje vseh izbranih elementov." ], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Če želite, da bo ta stolpec na razpolago kot možnost [Granulacija časa]. Stolpec mora biti tipa DATETIME ali DATETIME-like" + "Tagged %s %ss": ["Označen %s %s"], + "Failed to tag items": ["Napaka pri označevanju elementov"], + "Bulk tag": ["Označi več"], + "You are adding tags to %s %ss": ["Oznake dodajate %s %ss"], + "tags": ["oznake"], + "Select Tags": ["Izberite oznake"], + "Tag updated": ["Oznaka posodobljena"], + "Tag created": ["Oznaka ustvarjena"], + "Tag name": ["Ime oznake"], + "Name of your tag": ["Ime vaše oznake"], + "Add description of your tag": ["Dodajte opis vaše oznake"], + "Select dashboards": ["Izberite nadzorne plošče"], + "Select saved queries": ["Izberite shranjene poizvedbe"], + "Chosen non-numeric column": ["Izbran ne-numeričen stolpec"], + "UI Configuration": ["UI-nastavitve"], + "Filter value is required": ["Vrednost filtra je obvezna"], + "User must select a value before applying the filter": [ + "Uporabnik mora obvezno izbrati vrednost pred uveljavitvijo filtra" ], - "Whether to normalize the histogram": ["Če želite normirati histogram"], - "Whether to populate autocomplete filters options": [ - "Če želite napolniti možnosti za samodokončanje filtrov" + "Single value": ["Ena vrednost"], + "Use only a single value.": ["Uporabite le eno vrednost."], + "Range filter plugin using AntD": [ + "Vtičnik za filter obdobja z uporabo AntD" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Če želite napolniti spustni seznam filtra v raziskovalnem pogledu filtrske sekcije z različnimi vrednostmi, pridobljenimi sproti v ozadju" + " (excluded)": [" (ni vključeno)"], + "Check for sorting ascending": ["Označi za naraščajoče razvrščanje"], + "Can select multiple values": ["Dovoli izbiro več vrednosti"], + "Select first filter value by default": [ + "Izberi prvo vrednost kot privzeto" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "Če želite prikaz dodatnih kontrolnikov. Dodatni kontrolniki vključujejo možnost izdelave večstolpčnih grafikonov, naloženih ali drug ob drugem." + "When using this option, default value can’t be set": [ + "Če uporabite to možnost, privzeta vrednost ne more biti nastavljena" ], - "Whether to show minor ticks on the axis": [ - "Če želite prikaz pomožnih oznak na osi" + "Inverse selection": ["Invertiraj izbiro"], + "Exclude selected values": ["Izloči izbrane vrednosti"], + "Dynamically search all filter values": [ + "Dinamično poišče vse možnosti filtra" ], - "Whether to show the pointer": ["Če želite prikazati kazalec"], - "Whether to show the progress of gauge chart": [ - "Prikaži merilno območje števčnega grafikona" + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "Privzeto vsak filter pri nalaganju začetne strani naloži največ 1000 možnosti. Označite polje, če imate več kot 1000 vrednosti filtra in želite omogočiti dinamično iskanje, ki nalaga vrednosti filtra ko uporabnik tipka (to lahko preobremeni vašo podatkovno bazo)." ], - "Whether to show the split lines on the axis": [ - "Če želite prikazati razdelitvene črte na osi" + "Select filter plugin using AntD": [ + "Izberite Vtičnik za filter z uporabo AntD" ], - "Whether to sort ascending or descending on the base Axis.": [ - "Če želite padajoče ali naraščajoče razvrščanje na osnovni osi." + "Custom time filter plugin": ["Prilagojeni vtičnik za časovni filter"], + "No time columns": ["Ni časovnih stolpcev"], + "Time column filter plugin": ["Vtičnik za časovni filter"], + "Time grain filter plugin": ["Vtičnik za filter časovne granulacije"], + "Working": ["Delam"], + "Not triggered": ["Ni sproženo"], + "On Grace": ["V mirovanju"], + "reports": ["poročila"], + "alerts": ["opozorila"], + "There was an issue deleting the selected %s: %s": [ + "Težava pri brisanju izbranih %s: %s" ], - "Whether to sort descending or ascending": [ - "Če želite padajoče ali naraščajoče razvrščanje" + "Last run": ["Zadnji zagon"], + "Execution log": ["Dnevnik izvajanja"], + "Bulk select": ["Izberi več"], + "No %s yet": ["%s še ne obstajajo"], + "Owner": ["Lastnik"], + "All": ["Vse"], + "An error occurred while fetching owners values: %s": [ + "Pri pridobivanju polja lastnik je prišlo do napake: %s" ], - "Whether to sort descending or ascending if a series limit is present": [ - "Če želite padajoče ali naraščajoče razvrščanje, ko je prisotna omejitev serije" + "Status": ["Status"], + "An error occurred while fetching dataset datasource values: %s": [ + "Pri pridobivanju vrednosti podatkovnega vira podatkovnega seta je prišlo do napake: %s" ], - "Whether to sort results by the selected metric in descending order.": [ - "Če želite padajoče razvrstiti rezultate z izbrano mero." + "Alerts & reports": ["Opozorila in poročila"], + "Alerts": ["Opozorila"], + "Reports": ["Poročila"], + "Delete %s?": ["Izbrišem %s?"], + "Are you sure you want to delete the selected %s?": [ + "Ali ste prepričani, da želite izbrisati izbrane %s?" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "Če želite padajoče razvrstiti opis orodja z izbrano mero." + "Error Fetching Tagged Objects": [ + "Pri pridobivanju označenih elementov je prišlo do napake" ], - "Whether to truncate metrics": ["Če želite odstraniti naziv mere"], - "Which country to plot the map for?": [ - "Za katero državo želite grafikon?" + "Edit Tag": ["Uredi oznako"], + "There was an issue deleting the selected layers: %s": [ + "Pri brisanju izbranih slojev je prišlo do težave: %s" ], - "Which relatives to highlight on hover": [ - "Kateri element se poudari na prehodu z miško" + "Edit template": ["Uredi predlogo"], + "Delete template": ["Izbriši predlogo"], + "Changed by": ["Spremenil"], + "No annotation layers yet": ["Slojev z oznakami še ni"], + "This action will permanently delete the layer.": [ + "S tem dejanjem boste trajno izbrisali sloj." ], - "Whisker/outlier options": ["Možnosti grafikona kvantilov"], - "White": ["Belo"], - "Width": ["Širina"], - "Width of the confidence interval. Should be between 0 and 1": [ - "Širina intervala zaupanja. Mora bit med 0 in 1" + "Delete Layer?": ["Izbrišem sloj?"], + "Are you sure you want to delete the selected layers?": [ + "Ali ste prepričani, da želite izbrisati izbrane sloje?" ], - "Width of the sparkline": ["Širina hitrega grafikona"], - "Window must be > 0": ["Okno mora biti > 0"], - "With a subheader": ["S podnaslovom"], - "Word Cloud": ["Oblak besed"], - "Word Rotation": ["Vrtenje besed"], - "Working": ["Delam"], - "Working timeout": ["Pretek delovanja"], - "World Map": ["Zemljevid sveta"], - "Write a description for your query": ["Dodajte opis vaše poizvedbe"], - "Write a handlebars template to render the data": [ - "Napišite Handlebars-predlogo za prikaz podatkov" + "There was an issue deleting the selected annotations: %s": [ + "Pri brisanju izbranih oznak je prišlo do težave: %s" ], - "Write dataframe index as a column": [ - "Zapiši indeks dataframe-a kot stolpec" + "Delete annotation": ["Izbriši oznako"], + "Annotation": ["Oznaka"], + "No annotation yet": ["Oznak še ni"], + "Annotation Layer %s": ["Sloj z oznakami %s"], + "Back to all": ["Nazaj na vse"], + "Are you sure you want to delete %s?": [ + "Ali ste prepričani, da želite izbrisati %s?" ], - "Write dataframe index as a column.": [ - "Zapiši indeks dataframe-a kot stolpec." + "Delete Annotation?": ["Izbrišem oznako?"], + "Are you sure you want to delete the selected annotations?": [ + "Ali ste prepričani, da želite izbrisati izbrane oznake?" + ], + "Failed to load chart data": ["Neuspešno nalaganje podatkov grafikona"], + "view instructions": ["ogled navodil"], + "Add a dataset": ["Dodaj podatkovni set"], + "or": ["ali"], + "Choose a dataset": ["Izberite podatkovni set"], + "Choose chart type": ["Izberite tip grafikona"], + "Please select both a Dataset and a Chart type to proceed": [ + "Za nadaljevanje izberite podatkovni set in tip grafikona" + ], + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z grafikoni. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." ], - "X AXIS TITLE BOTTOM MARGIN": ["SPODNJA OBROBA NASLOVA X-OSI"], - "X AXIS TITLE MARGIN": ["OBROBA NASLOVA X-OSI"], - "X Axis": ["X-os"], - "X Axis Bounds": ["Meje X-osi"], - "X Axis Format": ["Oblika X-osi"], - "X Axis Label": ["Naslov X-osi"], - "X Axis Title": ["Naslov X-osi"], - "X Log Scale": ["Logaritemska X-os"], - "X Tick Layout": ["Postavitev oznak na X-osi"], - "X bounds": ["Meje X-osi"], - "X-Axis Sort Ascending": ["Razvrsti X-os naraščajoče"], - "X-Axis Sort By": ["\"Razvrsčanje po\" za X-os"], - "X-axis": ["X-os"], - "XScale Interval": ["Interval X-osi"], - "Y 2 bounds": ["Meje Y-osi 2"], - "Y AXIS TITLE MARGIN": ["OBROBA NASLOVA Y-OSI"], - "Y Axis": ["Y-os"], - "Y Axis 2 Bounds": ["Meje Y-osi 2"], - "Y Axis Bounds": ["Meje Y-osi"], - "Y Axis Format": ["Oblika Y-osi"], - "Y Axis Label": ["Naslov Y-osi"], - "Y Axis Title": ["Naslov Y-osi"], - "Y Axis Title Margin": ["Rob naslova Y-osi"], - "Y Axis Title Position": ["Položaj naslova Y-osi"], - "Y Log Scale": ["Logaritemska Y-os"], - "Y bounds": ["Meje Y-osi"], - "Y-Axis Sort Ascending": ["Razvrsti Y-os naraščajoče"], - "Y-Axis Sort By": ["\"Razvrsčanje po\" za Y-os"], - "Y-axis": ["Y-os"], - "Y-axis bounds": ["Meje Y-osi"], - "YScale Interval": ["Interval Y-osi"], - "Year": ["Leto"], - "Year (freq=AS)": ["Leto (freq=AS)"], - "Yearly seasonality": ["Letna sezonskost"], - "Years %s": ["Leta %s"], - "Yes": ["Da"], - "Yes, cancel": ["Da, prekini"], - "Yes, overwrite changes": ["Da, prepiši spremembe"], - "You are adding tags to %s %ss": ["Oznake dodajate %s %ss"], "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "Uvažate enega ali več grafikonov, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Uvažate eno ali več nadzornih plošč, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" + "Chart imported": ["Grafikon uvožen"], + "There was an issue deleting the selected charts: %s": [ + "Pri brisanju izbranih grafikonov je prišlo do težave: %s" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Uvažate eno ali več podatkovnih baz, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" + "An error occurred while fetching dashboards": [ + "Prišlo je do napake pri pridobivanju nadzornih plošč" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Uvažate enega ali več podatkovnih setov, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" + "Any": ["Katerikoli"], + "Tag": ["Oznaka"], + "An error occurred while fetching chart owners values: %s": [ + "Pri pridobivanju polja lastnik grafikona je prišlo do napake: %s" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Uvažate eno ali več shranjenih poizvedb, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" + "Certified": ["Certificirano"], + "Alphabetical": ["Po abecedi"], + "Recently modified": ["Nedavno spremenjeno"], + "Least recently modified": ["Zadnje spremenjeno"], + "Import charts": ["Uvozi grafikone"], + "Are you sure you want to delete the selected charts?": [ + "Ali ste prepričani, da želite izbrisati izbrane grafikone?" ], - "You can": ["Lahko"], - "You can add the components in the": ["Elemente lahko dodate v"], - "You can add the components in the edit mode.": [ - "Elemente lahko dodate v načinu urejanja." + "CSS templates": ["CSS predloge"], + "There was an issue deleting the selected templates: %s": [ + "Pri brisanju izbranih predlog je prišlo do težave: %s" ], - "You can also just click on the chart to apply cross-filter.": [ - "Lahko tudi samo kliknete na grafikon za medsebojno filtriranje." + "CSS template": ["CSS predloga"], + "This action will permanently delete the template.": [ + "S tem dejanjem boste trajno izbrisali predlogo." ], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "Lahko izberete prikaz vseh grafikonov, do katerih imate dostop ali pa samo tistih v vaši lasti.\n Izbira filtrov bo shranjena in bo ostala aktivna, dokler je ne spremenite." + "Delete Template?": ["Izbrišem predlogo?"], + "Are you sure you want to delete the selected templates?": [ + "Ali ste prepričani, da želite izbrisati izbrane predloge?" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "Ustvarite lahko nove grafikone ali uporabite obstoječe iz panela na desni" + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z nadzornimi ploščami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "Seznam nadzornih plošč si lahko ogledate v spustnem meniju nastavitev grafikona." + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Uvažate eno ali več nadzornih plošč, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" ], - "You can't apply cross-filter on this data point.": [ - "Za to podatkovno točko ne morete uporabiti medsebojnega filtra." + "Dashboard imported": ["Nadzorna plošča uvožena"], + "There was an issue deleting the selected dashboards: ": [ + "Pri brisanju izbranih nadzornih plošč je prišlo do težave: " ], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "Zadnjega časovnega filtra ni mogoče izbrisati, ker se uporablja za filtre časovnega obdobja v nadzorni plošči." + "An error occurred while fetching dashboard owner values: %s": [ + "Pri pridobivanju polja lastnik nadzorne plošče je prišlo do napake: %s" ], - "You cannot use 45° tick layout along with the time range filter": [ - "Skupaj s filtriranjem časovnega obdobja ne morete uporabiti oznak pod 45° kotom" + "Are you sure you want to delete the selected dashboards?": [ + "Ali ste prepričani, da želite izbrisati izbrane nadzorne plošče?" ], - "You do not have permission to edit this %s": [ - "Nimate dovoljenja za urejanje %s" - ], - "You do not have permission to edit this chart": [ - "Nimate dovoljenja za urejanje tega grafikona" - ], - "You do not have permission to edit this dashboard": [ - "Nimate dovoljenja za urejanje te nadzorne plošče" - ], - "You do not have permission to read tags": [ - "Nimate dovoljenja za branje oznak" - ], - "You do not have permissions to edit this dashboard.": [ - "Nimate dovoljenj za urejanje te nadzorne plošče." - ], - "You don't have access to this chart.": [ - "Nimate dostopa do tega grafikona." - ], - "You don't have access to this dashboard.": [ - "Nimate dostopa do te nadzorne plošče." - ], - "You don't have access to this dataset.": [ - "Nimate dostopa do tega podatkovnega seta." - ], - "You don't have access to this embedded dashboard config.": [ - "Nimate dostopa do konfiguracije te vgrajene nadzorne plošče." - ], - "You don't have any favorites yet!": ["Priljubljenih še niste izbrali!"], - "You don't have permission to modify the value.": [ - "Nimate dovoljenja za spreminjanje vrednosti." - ], - "You don't have the rights to alter %(resource)s": [ - "Nimate pravic za spreminjanje %(resource)s" - ], - "You don't have the rights to alter this chart": [ - "Nimate pravic za spreminjanje tega grafikona" + "An error occurred while fetching database related data: %s": [ + "Pri pridobivanju podatkov iz podatkovne baze je prišlo do napake: %s" ], - "You don't have the rights to alter this dashboard": [ - "Nimate pravic za spreminjanje te nadzorne plošče" + "Upload file to database": ["Naloži datoteko v podatkovno bazo"], + "Upload CSV": ["Naloži CSV"], + "Upload columnar file": ["Naloži stolpčno datoteko"], + "Upload Excel file": ["Naloži Excel-ovo datoteko"], + "AQE": ["AQE"], + "Allow data manipulation language": [ + "Dovoli jezik za manipulacijo podatkov (DML)" ], - "You don't have the rights to alter this title.": [ - "Nimate pravic za spreminjanje tega naslova." + "DML": ["DML"], + "CSV upload": ["Nalaganje CSV"], + "Delete database": ["Izbriši podatkovno bazo"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "Podatkovna baza %s je povezana z %s grafikoni, ki so prisotni na %s nadzornih ploščah. Uporabniki imajo odprtih %s zavihkov SQL-laboratorija s to podatkovno bazo. Ali želite nadaljevati? Izbris podatkovne baze bo pokvaril te objekte." ], - "You don't have the rights to create a chart": [ - "Nimate pravic za ustvarjanje grafikona" + "Delete Database?": ["Izbrišem podatkovno bazo?"], + "Dataset imported": ["Podatkovni set uvožen"], + "An error occurred while fetching dataset related data": [ + "Napaka pri pridobivanju podatkov iz podatkovnega seta" ], - "You don't have the rights to create a dashboard": [ - "Nimate pravic za ustvarjanje nadzorne plošče" + "An error occurred while fetching dataset related data: %s": [ + "Napaka pri pridobivanju podatkov iz podatkovnega seta: %s" ], - "You don't have the rights to download as csv": [ - "Nimate pravic za prenos csv-ja" + "Physical dataset": ["Fizičen podatkovni set"], + "Virtual dataset": ["Virtualen podatkovni set"], + "Virtual": ["Virtualen"], + "An error occurred while fetching datasets: %s": [ + "Prišlo je do napake pri pridobivanju podatkovnih setov: %s" ], - "You have removed this filter.": ["Odstranili ste ta filter."], - "You have unsaved changes.": ["Imate neshranjene spremembe."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "Uporabili ste celotno količino %(historyLength)s razveljavitev in ne boste mogli več povrniti nadaljnjih dejanj. Količino lahko resetirate, če shranite stanje." + "An error occurred while fetching schema values: %s": [ + "Pri pridobivanju vrednosti shem je prišlo do napake: %s" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "Za urejanje morate biti lastnik podatkovnega seta. Za dostop do urejanja kontaktirajte lastnika podatkovnega seta." + "An error occurred while fetching dataset owner values: %s": [ + "Pri pridobivanju polja lastnik podatkovnega seta je prišlo do napake: %s" ], - "You must pick a name for the new dashboard": [ - "Izbrati morate ime nove nadzorne plošče" + "Import datasets": ["Uvozi podatkovne sete"], + "There was an issue deleting the selected datasets: %s": [ + "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" ], - "You must run the query successfully first": [ - "Najprej morate uspešno izvesti poizvedbo" + "There was an issue duplicating the dataset.": [ + "Pri dupliciranju podatkovnega seta je prišlo do težave." ], - "You need to configure HTML sanitization to use CSS": [ - "Za uporabo CSS morate nastaviti sanitizacijo HTML" + "There was an issue duplicating the selected datasets: %s": [ + "Pri dupliciranju izbranih podatkovnih setov je prišlo do težave: %s" ], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "Posodobili ste vrednosti v kontrolni plošči, vendar se grafikon ni samodejno posodobil. Zaženite poizvedbo z gumbom \"Posodobi grafikon\" ali" + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "Podatkovni set %s je povezan z grafikoni %s, ki so prisotni na nadzorni plošči %s. Ali želite nadaljevati? Izbris podatkovnega seta bo pokvaril te objekte." ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "Spremenili ste podatkovne sete. Vsi kontrolniki nad podatki (stolpci, mere), ki se ujemajo z novim podatkovnim setom, se bodo ohranili." + "Delete Dataset?": ["Izbrišem podatkovni set?"], + "Are you sure you want to delete the selected datasets?": [ + "Ali ste prepričani, da želite izbrisati izbrane podatkovne sete?" ], - "Your chart is not up to date": ["Grafikon ni aktualen"], - "Your chart is ready to go!": ["Grafikon je pripravljen!"], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "Vaša nadzorna plošča je prevelika. Pred shranjevanjem jo zmanjšajte." + "0 Selected": ["0 izbranih"], + "%s Selected (Virtual)": ["Izbranih: %s (virtualni)"], + "%s Selected (Physical)": ["Izbranih: %s (fizični)"], + "%s Selected (%s Physical, %s Virtual)": [ + "Izbranih: %s (fizični: %s, virtualni: %s)" ], - "Your query could not be saved": ["Vaše poizvedbe ni mogoče shraniti"], - "Your query could not be scheduled": [ - "Vaše poizvedbe ni mogoče uvrstiti v urnik" + "log": ["dnevnik"], + "Execution ID": ["ID izvedbe"], + "Scheduled at (UTC)": ["Izvede se ob (UTC)"], + "Start at (UTC)": ["Zažene se ob (UTC)"], + "Error message": ["Sporočilo napake"], + "Alert": ["Opozorilo"], + "There was an issue fetching your recent activity: %s": [ + "Pri pridobivanju vaše nedavne aktivnosti je prišlo do napake: %s" ], - "Your query could not be updated": [ - "Vaše poizvedbe ni mogoče posodobiti" + "There was an issue fetching your dashboards: %s": [ + "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" ], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Vaša poizvedba je v urniku. Za ogled podrobnosti poizvedbe pojdite na shranjene poizvedbe" + "There was an issue fetching your chart: %s": [ + "Prišlo je do napake pri pridobivanju grafikona: %s" ], - "Your query was not properly saved": [ - "Vaša poizvedba ni bila pravilno shranjena" + "There was an issue fetching your saved queries: %s": [ + "Prišlo je do težave pri pridobivanju shranjenih poizvedb: %s" ], - "Your query was saved": ["Vaša poizvedba je shranjena"], - "Your query was updated": ["Vaša poizvedba je posodobljena"], - "Your report could not be deleted": [ - "Vašega poročila ni mogoče izbrisati" + "Thumbnails": ["Sličice"], + "Recents": ["Nedavno"], + "There was an issue previewing the selected query. %s": [ + "Pri predogledu izbrane poizvedbe je prišlo do težave. %s" ], - "Zero imputation": ["Nadomeščanje ničel"], - "Zoom": ["Povečava"], - "Zoom level of the map": ["Stopnja povečave zemljevida"], - "[ untitled dashboard ]": ["[ neimenovana nadzorna plošča ]"], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "Stolpca [Zemljepisna dolžina] in [Zemljepisna širina] morata biti prisotna v [Združevanje po]" + "TABLES": ["TABELE"], + "Open query in SQL Lab": ["Odpri poizvedbo v SQL laboratoriju"], + "An error occurred while fetching database values: %s": [ + "Pri pridobivanju vrednosti podatkovne baze je prišlo do napake: %s" ], - "[Longitude] and [Latitude] must be set": [ - "[Zemljepisna dolžina] in [Zemljepisna širina] morata biti nastavljeni" + "An error occurred while fetching user values: %s": [ + "Pri pridobivanju vrednosti uporabnika je prišlo do napake: %s" ], - "[Missing Dataset]": ["[Manjka podatkovni set]"], - "[Untitled]": ["[Neimenovana]"], - "[asc]": ["[asc]"], - "[dashboard name]": ["[ime nadzorne plošče]"], - "[desc]": ["[desc]"], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "[opcijsko] sekundarna mera določa barvo kot razmerje do primarne mere. Če je izpuščena, je barva določena kategorično na podlagi oznak" + "Search by query text": ["Išči z besedilom poizvedbe"], + "Deleted %s": ["Izbrisano %s"], + "Deleted": ["Izbrisano"], + "There was an issue deleting rules: %s": [ + "Težava pri brisanju pravil: %s" ], - "[untitled]": ["[neimenovana]"], - "`compare_columns` must have the same length as `source_columns`.": [ - "`compare_columns` morajo imeti enako dolžino kot `source_columns`." + "No Rules yet": ["Pravil še ni"], + "Are you sure you want to delete the selected rules?": [ + "Ali ste prepričani, da želite izbrisati izbrana pravila?" ], - "`compare_type` must be `difference`, `percentage` or `ratio`": [ - "`compare_type` mora biti `difference`, `percentage` ali `ratio`" + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s shranjenimi poizvedbami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." ], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`confidence_interval` mora biti med 0 in 1 (odprt)" + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Uvažate eno ali več shranjenih poizvedb, ki že obstajajo. S prepisom lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "`število` je COUNT(*), če je uporabljeno združevanje po (group by). Numerični stolpci bodo agregirani z agregatorjem. Ne-numerični stolpci, bodo uporabljeni za oznake točk. Pustite prazno, da dobite število točk v posamezni gruči." + "Query imported": ["Poizvedba uvožena"], + "There was an issue previewing the selected query %s": [ + "Do težave je prišlo pri predogledu izbrane poizvedbe %s" ], - "`operation` property of post processing object undefined": [ - "Lastnost `operation` poprocesirnega objekta ni definirana" + "Import queries": ["Uvozi poizvedbe"], + "Link Copied!": ["Povezava kopirana!"], + "There was an issue deleting the selected queries: %s": [ + "Pri brisanju izbranih poizvedb je prišlo do težave: %s" ], - "`prophet` package not installed": ["Knjižnica `prophet` ni nameščena"], - "`rename_columns` must have the same length as `columns`.": [ - "`rename_columns` morajo imeti enako dolžino kot `columns`." + "Edit query": ["Uredi poizvedbo"], + "Copy query URL": ["Kopiraj URL poizvedbe"], + "Export query": ["Izvozi poizvedbe"], + "Delete query": ["Izbriši poizvedbo"], + "Are you sure you want to delete the selected queries?": [ + "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?" ], - "`row_limit` must be greater than or equal to 0": [ - "`row_limit` mora biti večja ali enaka 0" + "queries": ["poizvedbe"], + "tag": ["oznaka"], + "No Tags created": ["Ni ustvarjenih oznak"], + "Are you sure you want to delete the selected tags?": [ + "Ali ste prepričani, da želite izbrisati izbrane oznake?" ], - "`row_offset` must be greater than or equal to 0": [ - "`row_offset` mora biti večja ali enaka 0" + "Image download failed, please refresh and try again.": [ + "Prenos slike ni uspel. Osvežite in poskusite ponovno." ], - "`width` must be greater or equal to 0": [ - "`width` mora biti večja ali enaka 0" + "PDF download failed, please refresh and try again.": [ + "Prenos PDF ni uspel. Osvežite in poskusite ponovno." ], - "aggregate": ["agregacija"], - "alert": ["opozorilo"], - "alert dark": ["opozorilo (temno)"], - "alerts": ["opozorila"], - "all": ["vsi"], - "also copy (duplicate) charts": ["kopiraj (podvoji) tudi grafikone"], - "ancestor": ["nadrejeni"], - "and": ["in"], - "annotation": ["oznaka"], - "annotation_layer": ["annotation_layer"], - "asfreq": ["asfreq"], - "at": ["ob"], - "auto": ["samodejno"], - "auto (Smooth)": ["samodejno (glajenje)"], - "background": ["ozadje"], - "basis": ["basis"], - "below (example:": ["v polje spodaj (primer:"], - "between {down} and {up} {name}": ["med {down} in {up} {name}"], - "bfill": ["bfill"], - "bolt": ["vijak"], - "boolean type icon": ["ikona binarnega tipa"], - "bottom": ["spodaj"], - "button (cmd + z) until you save your changes.": [ - "gumb (cmd + z) dokler ne shranite sprememb." + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Izberite vrednosti v osvetljenih poljih na levi strani kontrolnika in zaženite poizvedbo z gumbom %s." ], - "by using": ["z uporabo"], - "cannot be empty": ["ne sme biti prazno"], - "cardinal": ["cardinal"], - "change": ["sprememba"], - "chart": ["grafikona"], - "charts": ["grafikoni"], - "choose WHERE or HAVING...": ["izberite WHERE ali HAVING..."], - "clear all filters": ["počisti vse filtre"], - "click here": ["kliknite tukaj"], - "code ISO 3166-1 alpha-2 (cca2)": ["koda ISO 3166-1 alpha-2 (cca2)"], - "code ISO 3166-1 alpha-3 (cca3)": ["koda ISO 3166-1 alpha-3 (cca3)"], - "code International Olympic Committee (cioc)": [ - "koda Mednarodnega olimpijskega komiteja (cioc)" + "Invalid input": ["Neveljaven vnos"], + "Unexpected error: ": ["Nepričakovana napaka: "], + "(no description, click to see stack trace)": [ + "(ni opisa, kliknite za ogled zapisov)" ], - "column": ["stolpec"], - "connecting to %(dbModelName)s.": ["povezovanje z %(dbModelName)s."], - "count": ["število"], - "create": ["ustvari"], - "create a new chart": ["ustvarite nov grafikon"], - "create dataset from SQL query": [ - "ustvari podatkovni set iz SQL-poizvedbe" + "Sorry, an unknown error occurred.": ["Prišlo je do neznane napake."], + "Sorry, there was an error saving this %s: %s": [ + "Prišlo je do napake pri shranjevanju %s: %s" ], - "css": ["css"], - "css_template": ["css_template"], - "cumsum": ["kumulativna vsota"], - "cumulative": ["kumulativno"], - "dashboard": ["nadzorna plošča"], - "dashboards": ["nadzorne plošče"], - "database": ["podatkovna baza"], - "dataset": ["podatkovni set"], - "dataset name": ["naziv podatkovnega seta"], - "date": ["datum"], - "day": ["dan"], - "day of the month": ["dan v mesecu"], - "day of the week": ["dan v tednu"], - "deck.gl 3D Hexagon": ["deck.gl - 3D HEX"], - "deck.gl Arc": ["deck.gl - lok"], - "deck.gl Countour": ["deck.gl - plastnice"], - "deck.gl Geojson": ["deck.gl - GeoJson"], - "deck.gl Grid": ["deck.gl - 3D mreža"], - "deck.gl Heatmap": ["deck.gl - toplotna karta"], - "deck.gl Multiple Layers": ["deck.gl - večplastni grafikon"], - "deck.gl Path": ["deck.gl - poti"], - "deck.gl Polygon": ["deck.gl - poligon"], - "deck.gl Scatterplot": ["deck.gl - raztreseni grafikon"], - "deck.gl Screen Grid": ["deck.gl - mreža"], - "deck.gl charts": ["deck.gl grafikoni"], - "deckGL": ["deckGL"], - "default": ["privzeto"], - "delete": ["izbriši"], - "descendant": ["podrejeni"], - "description": ["opis"], - "deviation": ["deviacija"], - "dialect+driver://username:password@host:port/database": [ - "dialect+driver://username:password@host:port/database" + "You do not have permission to edit this %s": [ + "Nimate dovoljenja za urejanje %s" ], - "draft": ["osnutek"], - "dttm": ["datum-čas"], - "e.g. ********": ["npr. ********"], - "e.g. 127.0.0.1": ["npr. 127.0.0.1"], - "e.g. 5432": ["npr. 5432"], - "e.g. AccountAdmin": ["npr. AccountAdmin"], - "e.g. Analytics": ["npr. Analitika"], - "e.g. compute_wh": ["npr. compute_wh"], - "e.g. param1=value1¶m2=value2": ["npr. param1=value1¶m2=value2"], - "e.g. sql/protocolv1/o/12345": ["npr. sql/protocolv1/o/12345"], - "e.g. world_population": ["npr. world_population"], - "e.g. xy12345.us-east-2.aws": ["npr. xy12345.us-east-2.aws"], - "e.g., a \"user id\" column": ["npr. stolpec \"id_uporabnika\""], - "edit mode": ["načinu urejanja"], - "entries": ["vnosi"], - "error": ["napaka"], - "error dark": ["napaka (temno)"], - "error_message": ["error_message"], - "every": ["vsak"], - "every day of the month": ["vsak dan v mesecu"], - "every day of the week": ["vsak dan v tednu"], - "every hour": ["vsako uro"], - "every minute": ["vsako minuto"], - "every month": ["vsak mesec"], - "expand": ["razširi"], - "explore": ["raziskovanje"], - "failed": ["ni uspelo"], - "fetching": ["pridobivanje"], - "ffill": ["ffill"], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "filter_box bo v prihodnjih verzijah Superseta opuščen. Nadomestite ga s filtri nadzorne plošče." + "Network error": ["Napaka omrežja"], + "Request timed out": ["Zahtevek pretečen"], + "Issue 1000 - The dataset is too large to query.": [ + "Težava 1000 - podatkovni vir je prevelik za poizvedbo." ], - "flat": ["ravno"], - "for more information on how to structure your URI.": [ - "za več informacij o oblikovanju URI." + "Issue 1001 - The database is under an unusual load.": [ + "Težava 1001 - podatkovni vir je neobičajno obremenjen." ], - "function type icon": ["ikona funkcijskega tipa"], - "geohash (square)": ["geohash (kvadrat)"], - "heatmap": ["toplotni prikaz"], - "heatmap: values are normalized across the entire heatmap": [ - "heatmap: vrednosti so normirane po celotni temperaturni lestvici" + "An error occurred while fetching %s info: %s": [ + "Napaka pri pridobivanju informacij za %s: %s" ], - "here": ["tukaj"], - "hour": ["ura"], - "id": ["id"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "atribut CSS za izris objekta platna, ki določa, kako brskalnik poveča sliko" + "An error occurred while fetching %ss: %s": [ + "Napaka pri pridobivanju informacij za %s: %s" ], - "in": ["v"], - "in modal": ["v modalnem oknu"], - "is expected to be a Mapbox URL": ["mora biti URL za Mapbox"], - "is expected to be a number": ["pričakovano je število"], - "is expected to be an integer": ["pričakovano je celo število"], - "joined": ["pridružen"], - "json isn't valid": ["json ni veljaven"], - "key a-z": ["a - ž"], - "key z-a": ["ž - a"], - "label": ["oznaka"], - "last day": ["zadnji dan"], - "last month": ["zadnji mesec"], - "last quarter": ["zadnje četrletje"], - "last week": ["zadnji teden"], - "last year": ["zadnje leto"], - "latest partition:": ["zadnja particija:"], - "left": ["levo"], - "less than {min} {name}": ["manj kot {min} {name}"], - "linear": ["linearno"], - "log": ["dnevnik"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "spodnji percentil mora biti večji od 0 in manjši od 100 ter mora biti manjši od zgornjega percentila." + "An error occurred while creating %ss: %s": [ + "Napaka pri ustvarjanju %s: %s" ], - "max": ["max"], - "mean": ["povprečje"], - "median": ["mediana"], - "meters": ["metri"], - "metric": ["mera"], - "min": ["min"], - "minute": ["minuta"], - "minute(s)": ["minut"], - "monotone": ["monotone"], - "month": ["mesec"], - "more than {max} {name}": ["več kot {max} {name}"], - "must have a value": ["mora imeti vrednost"], - "name": ["ime"], - "no SQL validator is configured": ["potrjevalnik SQL ni nastavljen"], - "numeric type icon": ["ikona numeričnega tipa"], - "nvd3": ["nvd3"], - "of parent": ["nadrejenega"], - "of total": ["od celote"], - "offline": ["offline"], - "on": ["v"], - "or": ["ali"], - "or use existing ones from the panel on the right": [ - "ali uporabite obstoječe iz panela na desni" + "Please re-export your file and try importing again": [ + "Ponovno izvozite datoteko in jo nato uvozite" ], - "orderby column must be populated": [ - "stolpec za razvrščanje (orderby) mora biti izpolnjen" + "An error occurred while importing %s: %s": [ + "Napaka pri uvažanju %s: %s" ], - "overall": ["skupaj"], - "p-value precision": ["točnost p-vrednosti"], - "p1": ["p1"], - "p5": ["p5"], - "p95": ["p95"], - "p99": ["p99"], - "page_size.all": ["page_size.all"], - "page_size.entries": ["page_size.entries"], - "page_size.show": ["page_size.show"], - "pending": ["v teku"], - "percentile (exclusive)": ["percentil (odprt interval)"], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "percentili morajo biti tipa list ali tuple z vsaj dvema numeričnima vrednostma, pri čemer je prva manjša od druge" + "There was an error fetching the favorite status: %s": [ + "Napaka pri pridobivanju statusa \"Priljubljeno\": %s" ], - "permalink state not found": ["stanje povezave ni najdeno"], - "pixelated (Sharp)": ["pikselirano (ostro)"], - "pixels": ["piksli"], - "previous calendar month": ["prejšnji koledarski mesec"], - "previous calendar week": ["prejšnji koledarski teden"], - "previous calendar year": ["prejšnje koledarsko leto"], - "published": ["objavljeno"], - "quarter": ["četrtletje"], - "queries": ["poizvedbe"], - "query": ["poizvedba"], - "random": ["naključno"], - "reboot": ["ponovni zagon"], - "recent": ["nedavno"], - "recents": ["nedavne"], - "report": ["poročilo"], - "reports": ["poročila"], - "restore zoom": ["ponastavi prikaz"], - "right": ["desno"], - "rowlevelsecurity": ["varnost na nivoju vrstic"], - "running": ["v teku"], - "saved queries": ["shranjene poizvedbe"], - "seconds": ["sekunde"], - "series": ["serije"], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ - "serije: Obravnavaj vsako podatkovno serijo neodvisno; skupno: Vse vrste uporabljajo enako skalo; razlika: Prikaži razlike glede na prvo točko vsake serije" + "There was an error saving the favorite status: %s": [ + "Napaka pri shranjevanju statusa \"Priljubljeno\": %s" ], - "square": ["pravokotno"], - "stack": ["nalaganje"], - "staggered": ["cik-cak"], - "std": ["std"], - "step-after": ["step-after"], - "step-before": ["step-before"], - "stopped": ["ustavljeno"], - "stream": ["tok"], - "string type icon": ["ikona znakovnega tipa"], - "success": ["uspešno"], - "success dark": ["uspešno (temno)"], - "sum": ["vsota"], - "syntax.": ["sintakse."], - "tag": ["oznaka"], - "tags": ["oznake"], - "temporal type icon": ["ikona časovnega tipa"], - "textarea": ["področje besedila"], - "to": ["do"], - "top": ["zgoraj"], - "undo": ["razveljavitev"], - "unknown type icon": ["ikona neznanega tipa"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "zgornji percentil mora biti večji od 0 in manjši od 100 ter mora biti večji od spodnjega percentila." + "Connection looks good!": ["Povezava izgleda v redu!"], + "ERROR: %s": ["NAPAKA: %s"], + "There was an error fetching your recent activity:": [ + "Pri pridobivanju nedavnih aktivnosti je prišlo do napake:" ], - "use latest_partition template": ["uporaba predloge latest_partition"], - "value ascending": ["0 - 9"], - "value descending": ["9 - 0"], - "var": ["var"], - "variance": ["varianca"], - "view instructions": ["ogled navodil"], - "virtual": ["virtualen"], - "viz type": ["tip vizualizacije"], - "was created": ["ustvarjeno"], - "week": ["teden"], - "week ending Saturday": ["teden s koncem v soboto"], - "week starting Sunday": ["teden z začetkom v nedeljo"], - "x": ["x"], - "x: values are normalized within each column": [ - "x: vrednosti so normirane znotraj vsakega stolpca" + "There was an issue deleting: %s": ["Težava pri brisanju: %s"], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Vzorčna povezava, vključiti je mogoče {{ metric }} ali drugo vrednost iz kontrolnikov." ], - "y": ["y"], - "y: values are normalized within each row": [ - "y: vrednosti so normirane znotraj vsake vrstice" + "Time-series Table": ["Tabela s časovno vrsto"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Hitra primerjava več grafikonov časovnih vrst (sparkline način) in povezanih mer." ], - "year": ["leto"], - "zoom area": ["približaj območje"] + "We have the following keys: %s": ["Imamo naslednje ključe: %s"] } } } diff --git a/superset/translations/sl/LC_MESSAGES/messages.po b/superset/translations/sl/LC_MESSAGES/messages.po index 8a40746973eab..9948332776ed8 100644 --- a/superset/translations/sl/LC_MESSAGES/messages.po +++ b/superset/translations/sl/LC_MESSAGES/messages.po @@ -15,16251 +15,16172 @@ # under the License. msgid "" msgstr "" -"Project-Id-Version: Superset\n" +"Project-Id-Version: Superset\n" "Report-Msgid-Bugs-To: dkrat7 @github.com\n" -"POT-Creation-Date: 2024-01-01 20:14+0100\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2024-01-01 23:56+0100\n" "Last-Translator: dkrat7 \n" -"Language-Team: \n" "Language: sl_SI\n" +"Language-Team: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 " +"&& n%100<=4 ? 2 : 3)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && " -"n%100<=4 ? 2 : 3);\n" -"Generated-By: Babel 2.11.0\n" -"X-Generator: Poedit 3.0.1\n" +"Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" -"\n" -" Ta filter izvira iz konteksta nadzorne plošče.\n" -" Pri shranjevanju grafikona se ne bo shranil.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "Podatkovni vir je prevelik za poizvedbo." -#: superset/reports/notifications/email.py:88 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" -"\n" -" Napaka: %(text)s\n" -" " +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "Podatkovni vir je neobičajno obremenjen." -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 -msgid " (excluded)" -msgstr " (ni vključeno)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "Podatkovna baza je vrnila nepričakovano napako." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified in the " -"GeoJSON" -msgstr " Nastavite prosojnost na 0, če želite obdržati barvo določeno v GeoJSON" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." +msgstr "V SQL-poizvedbi je sintaktična napaka. Mogoče ste se zatipkali." -#: superset-frontend/src/explore/components/SaveModal.tsx:404 -msgid " a dashboard OR " -msgstr " nadzorno ploščo ALI " +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "Stolpec je bil izbrisan ali preimenovan v podatkovni bazi." -#: superset-frontend/src/explore/components/SaveModal.tsx:406 -msgid " a new one" -msgstr " novo" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "Tabela je bila izbrisana ali preimenovana v podatkovni bazi." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 -msgid " expression which needs to adhere to the " -msgstr " , ki mora upoštevati " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "En ali več parametrov v SQL-poizvedbi manjka." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 -msgid " source code of Superset's sandboxed parser" -msgstr " izvorno kodo za Supersetov \"sandboxed parser\"" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "Imena gostitelja ni mogoče razrešiti." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "Vrata so zaprta." + +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." +msgstr "Gostitelj mogoče ne deluje in ga ni mogoče doseči preko podanih vrat." + +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "Superset je naletel na napako pri izvajanju ukaza." + +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "Superset je naletel na nepričakovano napako." + +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "Uporabniško ime za povezavo s podatkovno bazo je neveljavno." + +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "Geslo za povezavo s podatkovno bazo je neveljavno." + +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Uporabniško ime ali/in geslo sta napačna." + +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Ime podatkovne baze je zapisano napačno ali pa ne obstaja." + +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "Shema je bila izbrisana ali preimenovana v podatkovni bazi." + +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "Uporabnik nima ustreznih dovoljenj." + +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." +msgstr "En ali več parametrov, potrebnih za nastavitev podatkovne baze, manjka." + +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "Podani podatki so v neustrezni obliki." + +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "Podani podatki imajo neustrezno shemo." + +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." +msgstr "" +"Zaledni sistem za rezultate, potreben za asinhrone poizvedbe, ni " +"konfiguriran." + +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "Podatkovna baza ne dovoljuje manipulacije podatkov." + +#: superset/errors.py:127 msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. Note\n" -" currently time zones are not supported. If time is stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no " -"pattern\n" -" is specified we fall back to using the optional defaults on " -"a per\n" -" database/column name level via the extra parameter." +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -" standard, ki zagotavlja, de se leksikografsko razvrščanje\n" -" sklada s kronološkim. Če oblika\n" -" časovne značke ni v skladu s standardom ISO 8601,\n" -" boste morali definirati izraz in tip za transformacijo\n" -" znakovnega niza v datum ali časovno značko.\n" -" Trenutno časovni pasovi niso podprti.\n" -" Če je čas shranjen v obliki epohe, dodajte `epoch_s` ali " -"`epoch_ms`.\n" -" Če format ni podan, se uporabijo privzete vrednosti za\n" -" podatkovno bazo oz. tip stolpca s pomočjo dodatnega " -"parametra." +"CTAS (create table as select) na koncu nima SELECT stavka. Poskrbite, da " +"bo v poizvedbi SELECT zadnji stavek. Potem ponovno poženite poizvedbo." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 -msgid " to add calculated columns" -msgstr " za dodajanje izračunanih stolpcev" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "CVAS (create view as select) poizvedba ima več kot en stavek." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -msgid " to add metrics" -msgstr " za dodajanje mer" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "CVAS (create view as select) poizvedba ni SELECT stavek." -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:392 -msgid " to edit or add columns and metrics." -msgstr " za urejanje ali dodajanje stolpcev in mer." +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "Poizvedba je prekompleksna in se izvaja predolgo." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 -msgid " to mark a column as a time column" -msgstr " za označitev stolpca kot časovnega" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "Podatkovna baza trenutno izvaja preveč poizvedb." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 -msgid " to open SQL Lab. From there you can save the query as a dataset." -msgstr "" -" za odpiranje SQL laboratorija. Tam lahko poizvedbo shranite kot podatkovni set." +#: superset/errors.py:136 +msgid "One or more parameters specified in the query are malformed." +msgstr "En ali več parametrov v SQL-poizvedbi ima napačno obliko." -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." -msgstr " za vizualizacijo podatkov." +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "Objekt ne obstaja v podani podatkovni bazi." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 -msgid "!= (Is not equal)" -msgstr "!= (ni enako)" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "Poizvedba ima sintaktično napako." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:82 -#, python-format -msgid "% calculation" -msgstr "% cizračun" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "Zaledni sistem rezultatov nima več podatkov iz poizvedbe." -#: superset/security/analytics_db_safety.py:52 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." -msgstr "" -"%(dialect)s ni mogoče uporabiti kot podatkovni vir zaradi varnostnih razlogov." +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "Poizvedba, povezana z rezultati, je bila izbrisana." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format +#: superset/errors.py:141 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -"%(message)s\n" -"To je lahko sproženo z/s: \n" -"%(issues)s" +"Rezultati v zalednem sistemu so bili shranjeni v drugačni obliki in jih " +"ni več mogoče deserializirati." -#: superset/reports/notifications/email.py:170 -#, python-format -msgid "%(name)s.csv" -msgstr "%(name)s.csv" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "Številka vrat je neveljavna." -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." -msgstr "%(object)s ne obstaja v tej podatkovni bazi." +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "Na delavcu ni bilo mogoče zagnati oddaljene poizvedbe." -#: superset-frontend/src/features/home/EmptyState.tsx:44 -#, python-format -msgid "%(other)s charts will appear here" -msgstr "%(other)s grafikoni bodo prikazani tu" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "Podatkovna baza je bila izbrisana." -#: superset-frontend/src/features/home/EmptyState.tsx:46 +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "Prilagojena SQL-polja ne smejo vsebovati podpoizvedb." + +#: superset/errors.py:149 +msgid "The submitted payload failed validation." +msgstr "Neuspešna validacija podanih podatkov." + +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Neveljaven certifikat" + +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." +msgstr "Shema podanih podatkov je neveljavna." + +#: superset/forms.py:72 #, python-format -msgid "%(other)s dashboards will appear here" -msgstr "%(other)s nadzorne plošče bodo prikazane tu" +msgid "File size must be less than or equal to %(max_size)s bytes" +msgstr "Velikost datoteke mora biti manjša ali enaka %(max_size)s bajtov" -#: superset-frontend/src/features/home/EmptyState.tsx:48 +#: superset/jinja_context.py:344 #, python-format -msgid "%(other)s recents will appear here" -msgstr "%(other)s zadnji bodo prikazani tu" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Nevaren tip rezultata, ki ga vrne funkcija %(func)s: %(value_type)s" -#: superset-frontend/src/features/home/EmptyState.tsx:50 +#: superset/jinja_context.py:355 #, python-format -msgid "%(other)s saved queries will appear here" -msgstr "%(other)s shranjene poizvedbe bodo prikazane tu" +msgid "Unsupported return value for method %(name)s" +msgstr "Nepodprt rezultat vračanja za metodo %(name)s" -#: superset/reports/notifications/email.py:179 +#: superset/jinja_context.py:371 #, python-format -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Nevaren vzorec za ključ %(key)s: %(value_type)s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:364 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:391 +#: superset/jinja_context.py:382 #, python-format -msgid "%(rows)d rows returned" -msgstr "%(rows)d vrnjenih vrstic" +msgid "Unsupported template value for key %(key)s" +msgstr "Nepodprta vrednost vzorca za ključ %(key)s" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "Za to podatkovno bazo so dovoljeni le `SELECT` stavki." + +#: superset/sql_lab.py:302 #, python-format msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." msgstr "" -"%(subtitle)s\n" -"To je lahko sproženo z/s: \n" -" %(issue)s" +"Poizvedba je bila ustavljena po %(sqllab_timeout)s sekundah. Lahko je " +"prekompleksna ali pa je podatkovna baza preobremenjena." -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of \"%(undefinedParameter)s\"?" -msgstr[0] "%(suggestion)s namesto \"%(undefinedParameter)s?\"" -msgstr[1] "" -"%(firstSuggestions)s ali %(lastSuggestion)s namesto \"%(undefinedParameter)s\"?" -msgstr[2] "" -"%(firstSuggestions)s ali %(lastSuggestion)s namesto \"%(undefinedParameter)s\"?" -msgstr[3] "" -"%(firstSuggestions)s ali %(lastSuggestion)s namesto \"%(undefinedParameter)s\"?" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "Zaledni sistem rezultatov ni konfiguriran." -#: superset/commands/database/validate_sql.py:73 -#, python-format +#: superset/sql_lab.py:440 msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -"%(validator)s ni mogel preveriti vaše poizvedbe.\n" -"Ponovno preverite poizvedbo.\n" -"Izjema: %(ex)s" +"CTAS (create table as select) lahko izvajate le v poizvedbah, kjer je " +"zadnji stavek SELECT. Poskrbite, da bo zadnji stavek v vaši poizvedbi " +"SELECT in poskusite ponovno zagnati poizvedbo." -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s napaka" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." +msgstr "" +"CVAS (create view as select) lahko izvajate le v poizvedbah z enim SELECT" +" stavkom. Poskrbite, da bo v vaši poizvedbi le en SELECT stavek in " +"poskusite ponovno zagnati poizvedbo." -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1365 +#: superset/sql_lab.py:488 #, python-format -msgid "%s PASSWORD" -msgstr "%s GESLO" +msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgstr "Poganjanje izraza %(statement_num)s od %(statement_count)s" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1383 +#: superset/sql_lab.py:510 #, python-format -msgid "%s SSH TUNNEL PASSWORD" -msgstr "%s GESLO ZA SSH TUNEL" +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "Izraz %(statement_num)s od %(statement_count)s" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1401 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" -msgstr "%s ZASEBNI KLJUČ ZA SSH TUNEL" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Vizualizaciji manjka podatkovni vir" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1421 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "%s GESLO ZASEBNEGA KLJUČA ZA SSH TUNEL" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." +msgstr "" +"Izbrano drseče okno ni vrnilo podatkov. Poskrbite, da izvorna poizvedba " +"ustreza minimalni periodi drsečega okna." -#: superset-frontend/src/components/ListView/ListView.tsx:252 -#, python-format -msgid "%s Selected" -msgstr "Izbranih: %s" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "Začetni datum ne sme biti večji od končnega" -#: superset-frontend/src/pages/DatasetList/index.tsx:866 -#, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "Izbranih: %s (fizični: %s, virtualni: %s)" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Predpomnjena vrednost ni najdena" -#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#: superset/viz.py:577 #, python-format -msgid "%s Selected (Physical)" -msgstr "Izbranih: %s (fizični)" +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" -#: superset-frontend/src/pages/DatasetList/index.tsx:852 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "Izbranih: %s (virtualni)" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Pogled urnika" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "Agreg. funkcije: %s" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Izberite vsaj eno mero" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "Stolpci: %s" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "Ko uporabljate 'Group By', ste omejeni na uporabo ene mere" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 -#, python-format -msgid "" -"%s items could not be tagged because you don’t have edit permissions to all " -"selected objects." -msgstr "" -"%s elementov ni mogoče označiti, ker nimate pravic za urejanje vseh izbranih " -"elementov." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Koledarska barvna lestvica" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 -#, python-format -msgid "%s operator(s)" -msgstr "Operatorji: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Mehurčkasti grafikon" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s možnost" -msgstr[1] "%s možnosti" -msgstr[2] "%s možnosti" -msgstr[3] "%s možnosti" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Uporabite 3 različne nazive mer" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "Možnosti: %s" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Izberite mere za x, y in velikost" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:428 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s vrstica" -msgstr[1] "%s vrstici" -msgstr[2] "%s vrstice" -msgstr[3] "%s vrstic" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "'Bullet' grafikon" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "Shranjene mere: %s" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Izberite mero za prikaz" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 -#, python-format -msgid "%s updated" -msgstr "%s posodobljeni" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Časovna vrsta - Črtni grafikon" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 -#, python-format -msgid "%s%s" -msgstr "%s%s" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "" +"Pri časovni primerjavi mora biti določeno zaprto časovno obdobje (s časom" +" začetka in konca)." -#: superset-frontend/src/components/ListView/ListView.tsx:475 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "%s-%s od %s" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Časovna vrsta - Stolpčni grafikon" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 -msgid "(Removed)" -msgstr "(Odstranjeno)" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Časovna vrsta - Vrtenje period" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "(izbrisan ali neveljaven tip)" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Časovna vrsta - Procentualna sprememba" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "(ni opisa, kliknite za ogled zapisov)" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Časovna vrsta - Naložen graf" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 -msgid "" -"(optional) default value for the filter, when using the multiple option, you can " -"use a semicolon-delimited list of options." -msgstr "" -"(opcijsko) privzeta vrednost za filter, če uporabite opcijo izbire večih , lahko " -"uporabite seznam nastavitev ločen s podpičji." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Histogram" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "), s čimer bodo na razpolago v sklopu SQL-poizvedbe (primer:" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Definiran mora biti vsaj en numerični stolpec" -#: superset/reports/notifications/slack.py:75 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Razišči v Supersetu>\n" -"\n" -"%(table)s\n" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Porazdelitev - Stolpčni grafikon" -#: superset/reports/notifications/slack.py:92 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"napaka: %(text)s\n" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" -msgstr "+ %s več" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Izberite vsaj eno polje za [Serije]" -#: superset/views/database/forms.py:164 -msgid "," -msgstr "," +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Sankey" + +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Izberite natanko dva stolpca za [Izvor / Cilj]" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:565 +#: superset/viz.py:1421 msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you clear " -"your cookies or change browsers.\n" -"\n" -msgstr "" -"-- Opomba: Če ne shranite poizvedbe, se ti zavihki NE bodo ohranili, ko boste " -"počistili piškote ali zamenjali brskalnik.\n" -"\n" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "V 'Sankey' je zanka, določite drevo. To je okvarjena povezava: {}" -#: superset/views/database/forms.py:165 -msgid "." -msgstr "." +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Izgled usmerjene sile" -#: superset-frontend/src/pages/DatasetList/index.tsx:849 -msgid "0 Selected" -msgstr "0 izbranih" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Zemljevid držav" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 -msgid "1 calendar day frequency" -msgstr "frekvenca: 1 koledarski dan" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Zemljevid sveta" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 -#: superset-frontend/src/explore/controls.jsx:262 -msgid "1 day" -msgstr "1 dan" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Vzporedne koordinate" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "1 day ago" -msgstr "1 day ago" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Toplotni prikaz" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1 ura" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Horizontni grafikoni" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -msgid "1 hourly frequency" -msgstr "frekvenca: 1 ura" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1 minuta" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[Zemljepisna dolžina] in [Zemljepisna širina] morata biti nastavljeni" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -msgid "1 minutely frequency" -msgstr "frekvenca: 1 minuta" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Mora imeti stolpec [Združevanje po], da ima število (count) kot [Oznaka]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 -msgid "1 month end frequency" -msgstr "frekvenca: 1 mesec - konec" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "Izbira [Oznaka] mora biti prisotna v [Združevanje po]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 -msgid "1 month start frequency" -msgstr "frekvenca: 1 mesec - začetek" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "Izbran [Radij točk] mora biti prisoten v [Združevanje po]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 -#: superset-frontend/src/explore/controlPanels/sections.tsx:196 -msgid "1 week" -msgstr "1 week" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "" +"Stolpca [Zemljepisna dolžina] in [Zemljepisna širina] morata biti " +"prisotna v [Združevanje po]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -msgid "1 week ago" -msgstr "1 week ago" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - večplastni grafikon" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -msgid "1 week starting Monday (freq=W-MON)" -msgstr "1 teden z začetkom v ponedeljek (freq=W-MON)" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Neustrezen prostorski ključ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "1 teden z začetkom v nedeljo (freq=W-SUN)" +#: superset/viz.py:1902 +#, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 -#: superset-frontend/src/explore/controlPanels/sections.tsx:200 -msgid "1 year" -msgstr "1 year" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" +"Prišlo je do neveljavnega NULL prostorskega vnosa," +" poskusite ga izločiti s filtrom" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "1 year ago" -msgstr "1 year ago" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - raztreseni grafikon" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 -msgid "1 year end frequency" -msgstr "frekvenca: 1 leto - konec" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - mreža" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:248 -msgid "1 year start frequency" -msgstr "frekvenca: 1 leto - začetek" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - 3D mreža" -#: superset/db_engine_specs/base.py:104 -msgid "10 minute" -msgstr "10 minute" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - poti" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 -#: superset-frontend/src/explore/controlPanels/sections.tsx:201 -msgid "104 weeks" -msgstr "104 weeks" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - poligon" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "104 weeks ago" -msgstr "104 weeks ago" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D HEX" -#: superset/db_engine_specs/base.py:105 -msgid "15 minute" -msgstr "15 minute" +#: superset/viz.py:2271 +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - toplotna karta" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:323 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 -#: superset-frontend/src/explore/controlPanels/sections.tsx:203 -msgid "156 weeks" -msgstr "156 weeks" +#: superset/viz.py:2292 +msgid "Deck.gl - Contour" +msgstr "Deck.gl - plastnice" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 -msgid "156 weeks ago" -msgstr "156 weeks ago" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - GeoJSON" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 -#: superset-frontend/src/explore/controlPanels/sections.tsx:249 -msgid "1AS" -msgstr "1AS" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - lok" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 -#: superset-frontend/src/explore/controlPanels/sections.tsx:246 -msgid "1D" -msgstr "1D" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Potek dogodkov" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 -#: superset-frontend/src/explore/controlPanels/sections.tsx:245 -msgid "1H" -msgstr "1H" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Časovna vrsta - t-test za odvisne vzorce" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:368 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "1M" -msgstr "1M" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Časovna vrsta - Nightingale Rose grafikon" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 -#: superset-frontend/src/explore/controlPanels/sections.tsx:244 -msgid "1T" -msgstr "1T" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Grafikon s pravokotniki" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 -#: superset-frontend/src/explore/controlPanels/sections.tsx:202 -msgid "2 years" -msgstr "2 years" +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" +msgstr "Izberite vsaj en 'Group by'" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "2 years ago" -msgstr "2 years ago" +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "Neveljaven napreden tip rezultata: %(advanced_data_type)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "2/98 percentil" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "Izbrisan je %(num)d sloj z oznakami" +msgstr[1] "Izbrisana sta %(num)d sloja z oznakami" +msgstr[2] "Izbrisanih so %(num)d sloji z oznakami" +msgstr[3] "Izbrisanih je %(num)d slojev z oznakami" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "22" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Celotno besedilo" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:197 -msgid "28 days" -msgstr "28 days" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "Izbrisana je %(num)d oznaka" +msgstr[1] "Izbrisani sta %(num)d oznaki" +msgstr[2] "Izbrisane so %(num)d oznake" +msgstr[3] "Izbrisanih je %(num)d oznak" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "28 days ago" -msgstr "28 days ago" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "Izbrisan je %(num)d grafikon" +msgstr[1] "Izbrisana sta %(num)d grafikona" +msgstr[2] "Izbrisani so %(num)d grafikoni" +msgstr[3] "Izbrisanih je %(num)d grafikonov" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 -msgid "2D" -msgstr "2D" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" +msgstr "Certificiran" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:141 -msgid "3 letter code of the country" -msgstr "Tričrkovna oznaka države" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" +msgstr "Ustvarjen s strani" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 -#: superset-frontend/src/explore/controlPanels/sections.tsx:204 -msgid "3 years" -msgstr "3 years" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -msgid "3 years ago" -msgstr "3 years ago" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 -#: superset-frontend/src/explore/controlPanels/sections.tsx:198 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 -msgid "30 days" -msgstr "30 dni" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "30 days ago" -msgstr "30 days ago" - -#: superset/db_engine_specs/base.py:106 -msgid "30 minute" -msgstr "30 minut" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30 minutes" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" +msgstr "Ustvarjeno z moje strani" -#: superset/db_engine_specs/base.py:101 -msgid "30 second" -msgstr "30 second" +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" +msgstr "Lastnik, Ustvaril ali Priljubljen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30 seconds" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "Skupaj (%(aggfunc)s)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:35 -msgid "3D" -msgstr "3D" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "Delna vsota" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" -msgstr "4 tedni (freq=4W-MON)" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`confidence_interval` mora biti med 0 in 1 (odprt)" -#: superset/db_engine_specs/base.py:103 -msgid "5 minute" -msgstr "5 minute" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." +msgstr "" +"spodnji percentil mora biti večji od 0 in manjši od 100 ter mora biti " +"manjši od zgornjega percentila." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5 minutes" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" +"zgornji percentil mora biti večji od 0 in manjši od 100 ter mora biti " +"večji od spodnjega percentila." -#: superset/db_engine_specs/base.py:100 -msgid "5 second" -msgstr "5 second" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`width` mora biti večja ali enaka 0" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:255 -msgid "5 seconds" -msgstr "5 seconds" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "`row_limit` mora biti večja ali enaka 0" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 -#: superset-frontend/src/explore/controlPanels/sections.tsx:199 -msgid "52 weeks" -msgstr "52 weeks" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`row_offset` mora biti večja ali enaka 0" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "52 weeks ago" -msgstr "52 weeks ago" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" +msgstr "stolpec za razvrščanje (orderby) mora biti izpolnjen" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "52 tednov z začetkom v ponedeljek (freq=52W-MON)" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "Grafikon nima shranjenega konteksta poizvedbe. Ponovno shranite grafikon." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:108 -msgid "6 hour" -msgstr "6 hour" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "Zahtevek je napačen: %(error)s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 -msgid "60 days" -msgstr "60 days" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "Zahtevek ni JSON" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -msgid "7 calendar day frequency" -msgstr "frekvenca: 7 koledarskih dni" +#: superset/charts/data/api.py:369 +msgid "Empty query result" +msgstr "Rezultat prazne poizvedbe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/src/explore/controls.jsx:263 -msgid "7 days" -msgstr "7 days" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Lastniki niso veljavni" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 -#: superset-frontend/src/explore/controlPanels/sections.tsx:247 -msgid "7D" -msgstr "7D" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Nekatere vloge ne obstajajo" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" -msgstr "9/91 percentil" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "Neveljaven tip podatkovnega vira" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 -msgid "90 days" -msgstr "90 days" +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" +msgstr "Podatkovni vir ne obstaja" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" +msgstr "Poizvedba ne obstaja" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 -msgid "< (Smaller than)" -msgstr "< (manjše kot)" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Parametri sloja z oznakami so neveljavni." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 -msgid "<= (Smaller or equal)" -msgstr "<= (manjše ali enako)" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Sloja z oznakami ni mogoče ustvariti." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1503 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Sloja z oznakami ni mogoče posodobiti." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1500 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Sloja z oznakami ni mogoče najti." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1331 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:45 +msgid "Annotation layers could not be deleted." +msgstr "Slojev z oznakami ni mogoče izbrisati." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1030 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "Sloj z oznakami ima povezane oznake." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1031 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "Ime mora biti unikatno" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 -msgid "== (Is equal)" -msgstr "== (je enako)" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "Končni datum mora biti za začetnim" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 -msgid "> (Larger than)" -msgstr "> (večje kot)" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "Kratek opis mora biti za ta sloj unikaten" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 -msgid ">= (Larger or equal)" -msgstr ">= (večje ali enako)" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Oznaka ni najdena." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "A Big Number" -msgstr "Velika številka" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Parametri oznak so neveljavni." -#: superset/views/database/forms.py:195 -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "Oznake ni mogoče ustvariti." -#: superset/views/database/forms.py:374 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "Oznake ni mogoče posodobiti." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "Z vejicami ločen seznam shem, kjer je dovoljeno nalaganje datotek." +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Oznak ni mogoče izbrisati." -#: superset/commands/database/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "Podatkovna baza z enakim imenom že obstaja." +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Prisotna so povezana opozorila in poročila" -#: superset/views/database/forms.py:146 +#: superset/commands/chart/exceptions.py:38 +#, python-format msgid "" -"A dictionary with column names and their data types if you need to change the " -"defaults. Example: {\"user_id\":\"integer\"}" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." msgstr "" -"Slovar z imeni in podatkovnimi tipi stolpcev, s pomočjo katerega spremenite " -"privzete nastavitve. Primer: {\"user_id\":\"integer\"}" +"Časovni niz je nejasen. Podajte [%(human_readable)s ago] ali " +"[%(human_readable)s later]." -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted on a CDN " -"for example)" -msgstr "" -"Celoten URL, ki kaže na lokacijo zgrajenega vtičnika (lahko gostuje npr. na CDN)" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Ni mogoče razčleniti časovnega izraza [%(human_readable)s]" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "Predloga za Handlebars, ki je uporabljena za podatke" - -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "Človeku prijazno ime" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 +#: superset/commands/chart/exceptions.py:66 +#, python-format msgid "" -"A list of domain names that can embed this dashboard. Leaving this field empty " -"will allow embedding from any domain." +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." 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:751 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 -msgid "A list of tags that have been applied to this chart." -msgstr "Seznam oznak, ki so povezane s tem grafikonom." +"Časovna razlika je nejasna. Podajte [%(human_readable)s ago] ali " +"[%(human_readable)s later]." -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "" -"Seznam uporabnikov, ki lahko spreminjajo ta grafikon. Možno je iskanje po imenu " -"ali uporabniškem imenu." +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "Podatkovna baza ne obstaja" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "Zemljevid sveta, ki lahko prikazuje vrednosti po državah." +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Nadzorna plošča ne obstaja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:27 -msgid "" -"A map that takes rendering circles with a variable radius at latitude/longitude " -"coordinates" -msgstr "" -"Zemljevid, ki na zemljepisnih koordinatah prikazuje kroge s spremenljivim polmerom" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "Ko se podaja datasource_id, je potreben tip podatkovnega vira" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:242 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "Mera za barvo" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Parametri grafikona so neveljavni." -#: superset-frontend/src/explore/components/SaveModal.tsx:435 -msgid "A new chart and dashboard will be created." -msgstr "Ustvarjena bosta nov grafikon in nadzorna plošča." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Grafikona ni mogoče ustvariti." -#: superset-frontend/src/explore/components/SaveModal.tsx:438 -msgid "A new chart will be created." -msgstr "Ustvarjen bo nov grafikon." +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Grafikona ni mogoče posodobiti." -#: superset-frontend/src/explore/components/SaveModal.tsx:441 -msgid "A new dashboard will be created." -msgstr "Ustvarjena bo nova nadzorna plošča." +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Grafikonov ni mogoče izbrisati." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal angle, " -"and the value represented by any wedge is illustrated by its area, rather than " -"its radius or sweep angle." -msgstr "" -"Grafikon s polarnimi koordinatami, kjer je krog razdeljen na enakokotne izseke, " -"vrednosti pa so ponazorjene s ploščino izseka (namesto polmera ali kota)." +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Prisotna so povezana opozorila in poročila" -#: 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" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "Nimate dostopa do tega grafikona." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "Sklic na nastavitve za [Čas], ki upošteva granulacijo" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "Spreminjanje tega grafikona ni dovoljeno" -#: superset/commands/report/exceptions.py:180 -#, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "Poročilo poimenovano %(name)s že obstaja" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "Uvoz grafikona ni uspel zaradi neznanega razloga" -#: superset-frontend/src/explore/components/SaveModal.tsx:373 -msgid "A reusable dataset will be saved with your chart." -msgstr "Podatkovni set bo shranjen skupaj z grafikonom." +#: superset/commands/chart/exceptions.py:151 +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Spreminjanje teh nadzornih plošč ni dovoljeno" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "Zaslonska slika nadzorne plošče bo poslana na vaš e-naslov ob" +#: superset/commands/chart/exceptions.py:156 +msgid "Chart not found" +msgstr "Grafikon ni najden" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:990 -#: superset/connectors/sqla/views.py:367 -msgid "" -"A set of parameters that become available in the query using Jinja templating " -"syntax" -msgstr "" -"Nabor parametrov, ki postanejo razpoložljivi za poizvedbo z uporabo Jinja sintakse" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" +msgstr "Napaka: %(error)s" -#: superset/common/query_context_processor.py:486 -msgid "A time column must be specified when using a Time Comparison." -msgstr "Pri časovni primerjavi mora biti definiran časovni stolpec." +#: superset/commands/css/exceptions.py:23 +msgid "CSS templates could not be deleted." +msgstr "CSS predlog ni mogoče izbrisati." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple groups " -"vary over time. Each group is visualized using a different color." -msgstr "" -"Grafikon časovne vrste, ki prikaže kako se povezane mere skupin spreminjajo skozi " -"čas. Vsaka skupina je prikazana s svojo barvo." +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "CSS predloga ni najdena." -#: superset/commands/report/exceptions.py:222 -msgid "A timeout occurred while executing the query." -msgstr "Pri izvajanju poizvedbe je potekel čas." +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Mora biti unikaten" -#: superset/commands/report/exceptions.py:232 -msgid "A timeout occurred while generating a csv." -msgstr "Pri ustvarjanju csv je potekel čas." +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Parametri nadzorne plošče so neveljavni." -#: superset/commands/report/exceptions.py:237 -msgid "A timeout occurred while generating a dataframe." -msgstr "Pri ustvarjanju podatkovnega okvira je potekel čas." +#: superset/commands/dashboard/exceptions.py:54 +msgid "Dashboards could not be created." +msgstr "Nadzornih plošč ni mogoče ustvariti." -#: superset/commands/report/exceptions.py:227 -msgid "A timeout occurred while taking a screenshot." -msgstr "Pri ustvarjanju zaslonske slike je potekel čas." +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Nadzorne plošče ni mogoče posodobiti." -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" -msgstr "Zahtevana je veljavna barvna shema" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Nadzorne plošče ni mogoče izbrisati." -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 -msgid "" -"A waterfall chart is a form of data visualization that helps in understanding\n" -" the cumulative effect of sequentially introduced positive or negative " -"values.\n" -" These intermediate values can either be time based or category based." -msgstr "" -"Grafikon slapov je način prikaza, ki pomaga razumeti\n" -"\tkumulativni učinek zaporedja negativnih ali pozitivnih vrednosti.\n" -"\tVmesne vrednosti so bodisi kategorične bodisi časovne." +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Spreminjanje te nadzorne plošče ni dovoljeno" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:342 -msgid "APPLY" -msgstr "UPORABI" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "Uvoz nadzorne plošče ni uspel zaradi neznanega razloga" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "APR" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "Nimate dostopa do te nadzorne plošče." -#: superset-frontend/src/pages/DatabaseList/index.tsx:347 -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 -msgid "AQE" -msgstr "AQE" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." +msgstr "Nimate dostopa do konfiguracije te vgrajene nadzorne plošče." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "AVG" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "V datoteki ni podatkov" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -msgid "AXIS TITLE MARGIN" -msgstr "OBROBA OZNAKE OSI" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Parametri podatkovne baze so neveljavni." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -msgid "AXIS TITLE POSITION" -msgstr "POLOŽAJ OZNAKE OSI" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "Podatkovna baza z enakim imenom že obstaja." -#: superset-frontend/src/features/home/RightMenu.tsx:493 -msgid "About" -msgstr "O programu" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Polje je obvezno" -#: 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" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "Polja ni mogoče dekodirati z JSON. %(json_error)s" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "Dostop do aktivnosti uporabnikov je omejen" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "" +"Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %{key}s " +"je neveljaven." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 -msgid "Access token" -msgstr "Žeton za dostop" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "Podatkovna baza ni najdena." -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "Aktivnost" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "Podatkovne baze ni mogoče ustvariti." -#: superset/initialization/__init__.py:389 -msgid "Action Log" -msgstr "Dnevnik aktivnosti" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "Podatkovne baze ni mogoče posodobiti." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:397 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:539 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 -#: superset-frontend/src/pages/DashboardList/index.tsx:454 -#: superset-frontend/src/pages/DatabaseList/index.tsx:474 -#: superset-frontend/src/pages/DatasetList/index.tsx:508 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:432 -#: superset-frontend/src/pages/Tags/index.tsx:225 -msgid "Actions" -msgstr "Aktivnosti" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "Povezava neuspešna. Preverite nastavitve povezave" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -#: superset-frontend/src/pages/AlertReportList/index.tsx:348 -msgid "Active" -msgstr "Aktiven" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "Podatkovne baze s povezanimi podatkovnimi viri ni mogoče izbrisati" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 -msgid "Actual Values" -msgstr "Dejanske vrednosti" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "Podatkovne baze ni mogoče izbrisati." -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "Dejansko časovno obdobje" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Nevarna povezava s podatkovno bazo je bila ustavljena" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -msgid "Actual value" -msgstr "Dejanska vrednost" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Ni mogoče naložiti gonilnika podatkovne baze" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/src/explore/controlPanels/sections.tsx:221 -msgid "Actual values" -msgstr "Dejanske vrednosti" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "Zgodila se je nepričakovana napaka. Podrobnosti preverite v dnevnikih" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" -msgstr "Prilagodljiva oblika" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "potrjevalnik SQL ni nastavljen" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:329 -msgid "Add" -msgstr "Dodaj" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "Potrjevalnik ni najden (nastavljen za podatkovno bazo)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Add Alert" -msgstr "Dodaj opozorilo" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "Poizvedbe ni bilo mogoče preveriti" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "Dodaj CSS predlogo" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "Prišlo je do nepričakovane napake" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 -msgid "Add CSS template" -msgstr "Dodaj CSS predlogo" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "Uvoz podatkovne baze ni uspel zaradi neznanega razloga" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "Dodaj grafikon" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Ni mogoče naložiti gonilnika podatkovne baze: {}" -#: superset/connectors/sqla/views.py:72 -msgid "Add Column" -msgstr "Dodaj stolpec" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "Podatkovne baze tipa \"%(engine)s\" ni mogoče konfigurirati s parametri." -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "Dodaj nadzorno ploščo" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "Podatkovna baza ni povezana." -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "Dodaj podatkovno bazo" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" +"%(validator)s ni mogel preveriti vaše poizvedbe.\n" +"Ponovno preverite poizvedbo.\n" +"Izjema: %(ex)s" -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "Dodaj dnevnik" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "Potrjevalnik ni najden (nastavljen za podatkovno bazo)" -#: superset/connectors/sqla/views.py:207 -msgid "Add Metric" -msgstr "Dodaj mero" +#: superset/commands/database/validate_sql.py:111 +#, fuzzy, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "Potrjevalnik ni najden (nastavljen za podatkovno bazo)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Add Report" -msgstr "Dodaj poročilo" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." +msgstr "SSH-tunela ni mogoče izbrisati." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:341 -msgid "Add Rule" -msgstr "Dodaj pravilo" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." +msgstr "SSH-tunela ni najden." -#: superset-frontend/src/components/ListView/ListView.tsx:410 -msgid "Add Tag" -msgstr "Dodaj oznako" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." +msgstr "Parametri SSH-tunela so neveljavni." -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "Dodaj vtičnik" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." +msgstr "SSH-tunela ni mogoče posodobiti." -#: superset-frontend/src/pages/ChartCreation/index.tsx:303 -msgid "Add a dataset" -msgstr "Dodaj podatkovni set" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "Ustvarjanje SSH-tunela ni uspelo zaradi neznanega razloga" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:273 -msgid "Add a new tab" -msgstr "Dodaj nov zavihek" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "SSH-tunel ni omogočen" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:297 -msgid "Add a new tab to create SQL Query" -msgstr "Dodaj nov zavihek za SQL-poizvedbo" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "Za SSH-tunel morate podati prijavne podatke" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 -msgid "Add additional custom parameters" -msgstr "Dodaj dodatne parametre po meri" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "Za SSH-tunel ne morete imeti več prijavnih podatkov" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 -msgid "Add an annotation layer" -msgstr "Dodaj sloj z oznakami" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "Podatkovna baza ni bila najdena." -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "Dodaj element" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "Podatkovni set %(name)s že obstaja" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 -msgid "Add and edit filters" -msgstr "Dodaj in uredi filtre" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "Podatkovne baze ni dovoljeno spreminjati" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 -msgid "Add annotation" -msgstr "Dodaj oznako" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "En ali več stolpcev ne obstaja" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Add annotation layer" -msgstr "Dodaj sloj z oznakami" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "En ali več stolpcev je podvojenih" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" -msgstr "Dodaj izračunan stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "En ali več stolpcev že obstaja" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "" -"Dodaj izračunan časovni stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Ena ali več mer ne obstaja" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -msgid "Add cross-filter" -msgstr "Dodaj medsebojni filter" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Ena ali več mer je podvojenih" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "Dodaj prilagojen doseg" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Ena ali več mer že obstaja" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:112 -msgid "Add dataset columns here to group the pivot table columns." -msgstr "Dodaj stolpce podatkovnega seta za združevanje stolpcev vrtilne tabele." +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" +msgstr "" +"Tabele [%(table_name)s] ni mogoče najti. Preverite povezavo, shemo in ime" +" podatkovne baze" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 -msgid "Add delivery method" -msgstr "Dodajte način dostave" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Podatkovni set ne obstaja" -#: superset-frontend/src/features/tags/TagModal.tsx:301 -msgid "Add description of your tag" -msgstr "Dodajte opis vaše oznake" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Parametri podatkovnega seta so neveljavni." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 -msgid "Add extra connection information." -msgstr "Dodaj informacije o povezavi." +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Podatkovnega niza ni mogoče ustvariti." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "Dodaj filter" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Podatkovnega niza ni mogoče posodobiti." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:973 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., these " -"conditions\n" -" do not impact how the filter is applied to the dashboard. " -"This is useful\n" -" when you want to improve the query's performance by only " -"scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" -"Doda stavke za filtriranje izvorne poizvedbe filtra,\n" -" vendar samo v kontekstu samodejnega izpolnjevanja.\n" -" Ne vpliva na to kako bo filter deloval na nadzorno ploščo.\n" -" Uporabno je, če želite izboljšati učinkovitost poizvedbe " -"filtra\n" -" ali pa omejiti nabor prikazanih vrednosti filtra." +#: superset/commands/dataset/exceptions.py:172 +msgid "Datasets could not be deleted." +msgstr "Podatkovnih nizov ni mogoče izbrisati." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "Dodaj filtre in ločilnike" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." +msgstr "Vzorcev za podatkovni set ni bilo mogoče pridobiti." -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 -msgid "Add item" -msgstr "Dodaj" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "Spreminjanje tega podatkovnega seta ni dovoljeno" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "Dodaj mero" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "Uvoz podatkovnega seta ni uspel zaradi neznanega razloga" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "Dodaj mero v podatkovni set v oknu \"Uredi podatkovni vir\"" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." +msgstr "Nimate dostopa do tega podatkovnega seta." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "Dodaj novo pravilo za barvo" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." +msgstr "Podatkovnega niza ni mogoče duplicirati." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "Dodaj novo pravilo" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Add notification method" -msgstr "Dodajte način obveščanja" - -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "Dodaj potrebne parametre za predogled grafikona" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 -msgid "Add required control values to save chart" -msgstr "Dodaj potrebne parametre za shranjenje grafikona" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "Dodaj preglednico" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." +msgstr "URI za podatke ni dovoljen." -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 -msgid "Add tag to entities" -msgstr "Dodaj oznako elementom" +#: superset/commands/dataset/exceptions.py:205 +msgid "The provided table was not found in the provided database" +msgstr "Podana tabela ni bila najdena v podani podatkovni bazi" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 -msgid "Add the name of the chart" -msgstr "Dodajte naslov grafikona" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Stolpec podatkovnega seta ni najden." -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -msgid "Add the name of the dashboard" -msgstr "Dodajte naziv nadzorne plošče" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Brisanje stolpca podatkovnega seta neuspešno." -#: superset-frontend/src/explore/components/SaveModal.tsx:391 -msgid "Add to dashboard" -msgstr "Dodaj na nadzorno ploščo" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "Spreminjanje tega podatkovnega seta ni dovoljeno." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:133 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -msgid "Add/Edit Filters" -msgstr "Dodaj/uredi filter" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "Mer podatkovnega seta ni najdena." -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 -msgid "Added" -msgstr "Dodano" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "Brisanje mere podatkovnega seta ni uspelo." -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 -#, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "Dodano na 1 nadzorno ploščo" -msgstr[1] "Dodano na %s nadzorni plošči" -msgstr[2] "Dodano na %s nadzorne plošče" -msgstr[3] "Dodano na %s nadzornih plošč" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." +msgstr "" +"Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki " +"grafikona." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Additional Parameters" -msgstr "Dodatni parametri" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." +msgstr "" +"Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki " +"podatkovnega seta." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" -msgstr "Mogoče bodo potrebna dodatna polja" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[Manjka podatkovni set]" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 -msgid "Additional information" -msgstr "Dodatne informacije" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Shranjenih poizvedb ni mogoče izbrisati." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" -msgstr "Dodatni metapodatki" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Shranjena poizvedba ni najdena." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 -msgid "Additional padding for legend." -msgstr "Dodatni razmak za legendo." +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "Uvoz shranjene poizvedbe ni uspel zaradi neznanega razloga." -#: superset/db_engine_specs/base.py:1999 superset/db_engine_specs/clickhouse.py:220 -#: superset/db_engine_specs/databend.py:196 -msgid "Additional parameters" -msgstr "Dodatni parametri" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Parametri shranjene poizvedbe so neveljavni." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 -msgid "Additional settings." -msgstr "Dodatne nastavitve." +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "Poizvedba za opozorilo je vrnila več kot eno vrstico." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:164 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "Dodatno besedilo, ki ga dodate pred ali za vrednost, npr. enota" +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "Poizvedba za opozorilo je vrnila več kot en stolpec. " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" -msgstr "Aditivno" +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "Pri krajšanju dnevnikov je prišlo do napake " -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "Nastavite kako bo ta podatkovna baza delovala z SQL-laboratorijem." +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "Neveljavni id-ji zavihkov: %s(tab_ids)" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 -msgid "Adjust performance settings of this database." -msgstr "Prilagodite nastavitve zmogljivosti te podatkovne baze." +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Nadzorna plošča ne obstaja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:129 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:128 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:94 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:204 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:150 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:63 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:966 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "Napredno" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "Grafikon ne obstaja" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:171 -msgid "Advanced Analytics" -msgstr "Napredna analitika" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "Podatkovna baza je obvezna za opozorila" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 -msgid "Advanced Data type" -msgstr "Napredni podatkovni tip" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "Tip je obvezen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/src/explore/controlPanels/sections.tsx:120 -msgid "Advanced analytics" -msgstr "Napredna analitika" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Izberite grafikon ali nadzorno ploščo, ne obojega" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:296 -msgid "Advanced analytics Query A" -msgstr "Napredna analitika za poizvedbo A" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" +msgstr "Izberite bodisi grafikon bodisi nadzorno ploščo" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:298 -msgid "Advanced analytics Query B" -msgstr "Napredna analitika za poizvedba B" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "" +"Najprej shranite grafikon, potem pa poskusite ustvariti novo e-poštno " +"poročilo." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 -msgid "Advanced data type" -msgstr "Napredni podatkovni tip" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "" +"Najprej shranite nadzorno ploščo, potem pa poskusite ustvariti novo " +"e-poštno poročilo." -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:69 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "Napredna analitika" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Parametri urnika poročanja so neveljavni." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" -msgstr "Estetika" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Urnika poročanja ni mogoče ustvariti." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" -msgstr "Potem" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "Urnika poročanja ni mogoče posodobiti." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:59 -msgid "Aggregate" -msgstr "Agregacija" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Urnika poročanja ni najden." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 -msgid "Aggregate Mean" -msgstr "Agregirano povprečje" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "Izbris urnika poročanja ni uspel." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 -msgid "Aggregate Sum" -msgstr "Agregirana vsota" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Krajšanje dnevnika urnika poročanja ni uspelo." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:199 -msgid "" -"Aggregate function applied to the list of points in each cluster to produce the " -"cluster label." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." msgstr "" -"Agregacijska funkcija za seznam točk v vsaki gruči, s katero se ustvari oznaka " -"gruče." +"Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju zaslonske " +"slike." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows and columns" -msgstr "Agregacijska funkcija za vrtenje in izračun vseh vrstic in stolpcev" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju csv." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated values " -"to a dynamic color scale" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." msgstr "" -"Agregira podatke znotraj meja celic in agregirane vrednosti ponazori z dinamično " -"barvno lestvico" +"Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju podatkovnega" +" okvira." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -msgid "Aggregation" -msgstr "Agregacija" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "Pri izvajanju urnika poročanja je prišlo do nepričakovane napake." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" -msgstr "Agregacijska funkcija" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "Urnik poročanja se še vedno izvaja, ponovni izračun je zavrnjen." -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 -msgid "Alert" -msgstr "Opozorilo" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "Urnik poročanja je dosegel mejo časa izvedbe." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "Opozorilo sproženo, v obdobju mirovanja" +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Poročilo poimenovano %(name)s že obstaja" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Alert condition" -msgstr "Status opozorila" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -msgid "Alert condition schedule" -msgstr "Urnik statusov opozoril" - -#: superset/commands/report/exceptions.py:247 -msgid "Alert ended grace period." -msgstr "Opozorilo je končalo obdobje mirovanja." - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "Opozorilo ni uspelo" - -#: superset/commands/report/exceptions.py:242 -msgid "Alert fired during grace period." -msgstr "Opozorilo sproženo med obdobjem mirovanja." - -#: superset/commands/report/exceptions.py:217 -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:397 -msgid "Alert name" -msgstr "Naslov opozorila" - -#: superset/commands/report/exceptions.py:252 -msgid "Alert on grace period" -msgstr "Opozorilo v obdobju mirovanja" - -#: superset/commands/report/exceptions.py:208 -msgid "Alert query returned a non-number value." -msgstr "Poizvedba za opozorilo je vrnila neštevilsko vrednost." - -#: superset/commands/report/exceptions.py:203 -msgid "Alert query returned more than one column." -msgstr "Poizvedba za opozorilo je vrnila več kot en stolpec." +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Opozorilo poimenovano %(name)s že obstaja" -#: superset/commands/report/alert.py:106 -msgid "Alert query returned more than one column. " -msgstr "Poizvedba za opozorilo je vrnila več kot en stolpec. " +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "Vir že ima povezano poročilo." #: superset/commands/report/exceptions.py:193 msgid "Alert query returned more than one row." msgstr "Poizvedba za opozorilo je vrnila več kot eno vrstico." -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "Opozorilo aktivno" - -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "Opozorilo sproženo, obvestilo poslano" - #: superset/commands/report/exceptions.py:198 msgid "Alert validator config error." msgstr "Napaka nastavitev potrjevalnika opozoril." -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "Opozorila" +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "Poizvedba za opozorilo je vrnila več kot en stolpec." -#: superset/initialization/__init__.py:406 -msgid "Alerts & Reports" -msgstr "Opozorila in poročila" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "Poizvedba za opozorilo je vrnila neštevilsko vrednost." -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "Opozorila in poročila" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "Opozorilo je našlo napako pri izvajanju poizvedbe." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:446 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:121 -msgid "Align +/-" -msgstr "Poravnaj +/-" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Pri izvajanju poizvedbe je potekel čas." -#: superset-frontend/src/pages/AlertReportList/index.tsx:461 -#: superset-frontend/src/pages/AlertReportList/index.tsx:499 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 -#: superset-frontend/src/pages/ChartList/index.tsx:594 -#: superset-frontend/src/pages/ChartList/index.tsx:620 -#: superset-frontend/src/pages/ChartList/index.tsx:632 -#: superset-frontend/src/pages/ChartList/index.tsx:643 -#: superset-frontend/src/pages/ChartList/index.tsx:665 -#: superset-frontend/src/pages/ChartList/index.tsx:689 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DashboardList/index.tsx:534 -#: superset-frontend/src/pages/DashboardList/index.tsx:570 -#: superset-frontend/src/pages/DatabaseList/index.tsx:502 -#: superset-frontend/src/pages/DatabaseList/index.tsx:522 -#: superset-frontend/src/pages/DatabaseList/index.tsx:534 -#: superset-frontend/src/pages/DatasetList/index.tsx:613 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:510 -#: superset-frontend/src/pages/Tags/index.tsx:252 -msgid "All" -msgstr "Vse" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Pri ustvarjanju zaslonske slike je potekel čas." -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 superset/queries/saved_queries/filters.py:31 -#: superset/reports/filters.py:44 -msgid "All Text" -msgstr "Celotno besedilo" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Pri ustvarjanju csv je potekel čas." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "Vsi grafikoni" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "Pri ustvarjanju podatkovnega okvira je potekel čas." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "Vsi grafikoni/globalni doseg" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "Opozorilo sproženo med obdobjem mirovanja." -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "Vsi filtri" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "Opozorilo je končalo obdobje mirovanja." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "Vsi filtri (%(filterCount)d)" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Opozorilo v obdobju mirovanja" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" -msgstr "Vsi paneli" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Stanje urnika poročanj ni najdeno" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "Ta filter bo vplival na vse grafikone s tem stolpcem" +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" +msgstr "Sistemska napaka urnika poročanja" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "Dovoli CREATE TABLE AS" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" +msgstr "Napaka klienta urnika poročanja" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Dovoli opcijo CREATE TABLE AS v SQL laboratoriju" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Nepričakovana napaka urnika poročanja" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "Dovoli CREATE VIEW AS" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "Spreminjanje tega poročila ni dovoljeno" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Dovoli opcijo CREATE VIEW AS v SQL laboratoriju" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Pri krajšanju dnevnikov je prišlo do napake " -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "Dovoli nalaganje CSV" +#: superset/commands/security/exceptions.py:25 +msgid "RLS Rule not found." +msgstr "RLS-pravilo ni najdeno." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "Dovoli DML" +#: superset/commands/security/exceptions.py:29 +msgid "RLS rules could not be deleted." +msgstr "RLS-pravil ni mogoče izbrisati." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1000 -#: superset/connectors/sqla/views.py:383 +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" +msgstr "Podatkovna baza ni bila najdena" + +#: superset/commands/sql_lab/estimate.py:86 +#, python-format msgid "" -"Allow column names to be changed to case insensitive format, if supported (e.g. " -"Oracle, Snowflake)." +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -"Dovoli, da se imena stolpcev spremenijo v male tiskane črke, kjer je to podprto " -"(npr. Oracle, Snowflake)." - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:472 -msgid "Allow columns to be rearranged" -msgstr "Omogoči razvrščanje stolpcev" +"Ocenjevanje poizvedbe je bilo ustavljeno po %(sqllab_timeout)s sekundah. " +"Lahko je prekompleksno ali pa je podatkovna baza preobremenjena." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "Dovoli ustvarjanje novih tabel s poizvedbami" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." +msgstr "" +"Podatkovna baza, referencirana v tej poizvedbi, ni bila najdena. " +"Kontaktirajte administratorja za napotke ali pa poskusite znova." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "Dovoli ustvarjanje novih pogledov s poizvedbami" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "" +"Poizvedbe, povezane s temi rezultati, ni bilo mogoče najti. Ponovno " +"morate zagnati izvorno poizvedbo." -#: superset-frontend/src/pages/DatabaseList/index.tsx:364 -msgid "Allow data manipulation language" -msgstr "Dovoli jezik za manipulacijo podatkov (DML)" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "Dostop do poizvedbe ni mogoč" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:475 +#: superset/commands/sql_lab/results.py:75 msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note their " -"changes won't persist for the next time they open the chart." +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -"Uporabniku omogočite, da s potegom razvrsti stolpce. Sprememba se ne bo ohranila, " -"ko bo grafikon ponovno naložen." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 -msgid "Allow file uploads to database" -msgstr "Dovolite nalaganje datotek v podatkovno bazo" +"Podatkov ni bilo mogoče pridobiti iz zalednega sistema rezultatov. " +"Ponovno morate zagnati izvorno poizvedbo." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +#: superset/commands/sql_lab/results.py:116 msgid "" -"Allow manipulation of the database using non-SELECT statements such as UPDATE, " -"DELETE, CREATE, etc." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -"Dovoli manipulacije podatkovne baze z uporabo ne-SELECT stavkov, kot so UPDATE, " -"DELETE, CREATE, itd." +"Podatkov ni bilo mogoče deserializirati iz zalednega sistema rezultatov. " +"Lahko je prišlo do spremembe oblike zapisa. Ponovno zaženite izvorno " +"poizvedbo." -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "Dovoli več izbir" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." +msgstr "Parametri oznak so neveljavni." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:191 -msgid "Allow node selections" -msgstr "Dovoli izbiro vozlišča" +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." +msgstr "Oznake ni mogoče ustvariti." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:193 -msgid "Allow sending multiple polygons as a filter event" -msgstr "Dovoli pošiljanje več poligonov kot dogodek filtra" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +msgid "Tag could not be updated." +msgstr "Oznake ni mogoče posodobiti." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "Dovoli raziskovanje te podatkovne baze" +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." +msgstr "Oznake ni mogoče izbrisati." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "Dovoli poizvedbo na to podatkovno bazo v SQL laboratoriju" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." +msgstr "Označenega elementa ni mogoče izbrisati." -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab" -msgstr "" -"Dovoli uporabnikom poganjanje ne-SELECT stavkov (UPDATE, DELETE, CREATE, ...) v " -"SQL laboratoriju" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." +msgstr "Pri ustvarjanju vrednosti je prišlo do težave." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" -msgstr "Dovoljene domene (ločeno z vejico)" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "Pri dostopanju do vednosti je prišlo do težave." -#: superset-frontend/src/pages/ChartList/index.tsx:711 -#: superset-frontend/src/pages/DashboardList/index.tsx:592 -#: superset-frontend/src/pages/Tags/index.tsx:274 -msgid "Alphabetical" -msgstr "Po abecedi" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." +msgstr "Pri brisanju vrednosti je prišlo do napake." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the middle " -"emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box " -"visualize the min, max, range, and outer 2 quartiles." -msgstr "" -"Znan tudi kot grafikon škatla z brki. prikaže primerjavo porazdelitev povezanih " -"mer v različnih skupinah. Škatla na sredini predstavlja povprečje, mediano in " -"notranja 2 kvartila. Brki na vsaki škatli prikazujejo minimum, maksimum, območje " -"in zunanja dva kvartila." - -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "Spremenjeno" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." +msgstr "Pri posodabljanju vrednosti je prišlo do težave." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1008 -msgid "Always filter main datetime column" -msgstr "Vedno filtriraj glavni časovni stolpec" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." +msgstr "Nimate dovoljenja za spreminjanje vrednosti." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 -msgid "An Error Occurred" -msgstr "Prišlo je do napake" +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." +msgstr "Vir ni bil najden." -#: superset/commands/report/exceptions.py:182 +#: superset/common/query_actions.py:227 #, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "Opozorilo poimenovano %(name)s že obstaja" +msgid "Invalid result type: %(result_type)s" +msgstr "Neveljaven tip rezultata: %(result_type)s" -#: superset/common/query_context_processor.py:372 superset/viz.py:1067 -msgid "" -"An enclosed time range (both start and end) must be specified when using a Time " -"Comparison." -msgstr "" -"Pri časovni primerjavi mora biti določeno zaprto časovno obdobje (s časom začetka " -"in konca)." +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" -#: superset/databases/schemas.py:300 -msgid "" -"An engine must be specified when passing individual parameters to a database." -msgstr "" -"Pri podajanju posameznih parametrov podatkovne baze mora biti podan njen tip." +#: superset/common/query_context_processor.py:383 +msgid "Time Grain must be specified when using Time Shift." +msgstr "Pri časovnem premiku mora biti definirana granulacija časa." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:804 -#: superset-frontend/src/components/Tags/utils.tsx:67 -#: 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:41 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 -msgid "An error has occurred" -msgstr "Prišlo je do napake" +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." +msgstr "Pri časovni primerjavi mora biti definiran časovni stolpec." -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "Prišlo je do napake" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "Grafikon ne obstaja" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 -msgid "An error occurred saving dataset" -msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake" +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" +msgstr "Podatkovni vir grafikona ne obstaja" -#: superset/commands/temporary_cache/exceptions.py:33 -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 superset/key_value/exceptions.py:38 -msgid "An error occurred while accessing the value." -msgstr "Pri dostopanju do vednosti je prišlo do težave." +#: superset/common/query_context_processor.py:719 +msgid "The chart query context does not exist" +msgstr "Kontekst poizvedbe grafikona ne obstaja" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1108 +#: superset/common/query_object.py:290 +#, python-format msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Pri krčenju sheme tabele je prišlo do napake. Kontaktirajte administratorja." +"Podvojene oznake stolpcev/mer: %(labels)s. Poskrbite, da bodo imeli " +"stolpci in mere unikatne oznake." -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "Napaka pri ustvarjanju %s: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1283 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1305 -msgid "An error occurred while creating the data source" -msgstr "Pri ustvarjanju podatkovnega vira je prišlo do težave" - -#: superset/commands/temporary_cache/exceptions.py:29 -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 superset/key_value/exceptions.py:34 -msgid "An error occurred while creating the value." -msgstr "Pri ustvarjanju vrednosti je prišlo do težave." - -#: superset/commands/temporary_cache/exceptions.py:37 -#: superset/key_value/exceptions.py:42 -msgid "An error occurred while deleting the value." -msgstr "Pri brisanju vrednosti je prišlo do napake." - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1084 msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "" -"Pri širitvi sheme tabele je prišlo do napake. Kontaktirajte administratorja." +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " +msgstr "V 'columns' manjkajo naslednji vnosi iz 'series_columns': %(columns)s. " -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "Napaka pri pridobivanju informacij za %s: %s" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "Lastnost `operation` poprocesirnega objekta ni definirana" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "Napaka pri pridobivanju informacij za %s: %s" +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Nepodprta poprocesirna operacija: %(operation)s" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:129 -msgid "An error occurred while fetching available CSS templates" -msgstr "Pri pridobivanju CSS predlog je prišlo do napake" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" +msgstr "[asc]" -#: superset-frontend/src/pages/ChartList/index.tsx:649 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "Pri pridobivanju polja lastnik grafikona je prišlo do napake: %s" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" +msgstr "[desc]" -#: superset-frontend/src/pages/DashboardList/index.tsx:540 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "Pri pridobivanju polja lastnik nadzorne plošče je prišlo do napake: %s" - -#: superset-frontend/src/pages/ChartList/index.tsx:294 -msgid "An error occurred while fetching dashboards" -msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Napaka v jinja izrazu za pridobivanje vrednosti predikatov: %(msg)s" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:237 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "Poizvedba na virtualnem podatkovnem setu mora biti samo za branje" -#: superset-frontend/src/pages/DatabaseList/index.tsx:174 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "Pri pridobivanju podatkov iz podatkovne baze je prišlo do napake: %s" +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 -#, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "Pri pridobivanju vrednosti podatkovne baze je prišlo do napake: %s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "Poizvedba na virtualnem podatkovnem setu ne sme biti prazna" -#: superset-frontend/src/pages/AlertReportList/index.tsx:504 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 -#: superset-frontend/src/pages/ChartList/index.tsx:694 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -#: superset-frontend/src/pages/DatabaseList/index.tsx:539 -#: superset-frontend/src/pages/DatasetList/index.tsx:618 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:465 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:515 -#: superset-frontend/src/pages/Tags/index.tsx:257 -#, python-format -msgid "An error occurred while fetching dataset datasource values: %s" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -"Pri pridobivanju vrednosti podatkovnega vira podatkovnega seta je prišlo do " -"napake: %s" - -#: superset-frontend/src/pages/DatasetList/index.tsx:585 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "Pri pridobivanju polja lastnik podatkovnega seta je prišlo do napake: %s" - -#: superset-frontend/src/pages/DatasetList/index.tsx:240 -msgid "An error occurred while fetching dataset related data" -msgstr "Napaka pri pridobivanju podatkov iz podatkovnega seta" - -#: superset-frontend/src/pages/DatasetList/index.tsx:260 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Napaka pri pridobivanju podatkov iz podatkovnega seta: %s" - -#: superset-frontend/src/pages/DatasetList/index.tsx:553 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "Prišlo je do napake pri pridobivanju podatkovnih setov: %s" - -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 -msgid "An error occurred while fetching function names." -msgstr "Pri pridobivanju imen funkcij je prišlo do napake." - -#: superset-frontend/src/pages/AlertReportList/index.tsx:466 -#, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "Pri pridobivanju polja lastnik je prišlo do napake: %s" +"Poizvedba na virtualnem podatkovnem setu ne sme biti sestavljena iz več " +"stavkov" -#: superset-frontend/src/pages/DatasetList/index.tsx:569 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:486 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "Pri pridobivanju vrednosti shem je prišlo do napake: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 -msgid "An error occurred while fetching tab state" -msgstr "Pri pridobivanju stanja zavihka je prišlo do napake" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 -msgid "An error occurred while fetching table metadata" -msgstr "Pri pridobivanju metapodatkov tabele je prišlo do napake" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1037 -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" -"Pri pridobivanju metapodatkov tabele je prišlo do napake. Kontaktirajte " -"administratorja." +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Napaka v jinja izrazu RLS filtrov: %(msg)s" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "Pri pridobivanju vrednosti uporabnika je prišlo do napake: %s" +msgid "Metric '%(metric)s' does not exist" +msgstr "Mera '%(metric)s' ne obstaja" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" -msgstr "Napaka pri uvažanju %s: %s" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "Sitem podatkovne baze ni vrnil vse stolpcev poizvedbe" -#: superset-frontend/src/explore/components/SaveModal.tsx:140 -msgid "An error occurred while loading dashboard information." -msgstr "Prišlo je do napake pri pridobivanju informacij o nadzorni plošči." +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Dovoljeni so le `SELECT` stavki" -#: superset-frontend/src/components/Chart/chartAction.js:600 -msgid "An error occurred while loading the SQL" -msgstr "Pri nalaganju SQL je prišlo do napake" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Podprte so le enojne poizvedbe" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:323 -msgid "An error occurred while opening Explore" -msgstr "Pri odpiranju Raziskovalca je prišlo do napake" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Stolpci" -#: superset/key_value/exceptions.py:30 -msgid "An error occurred while parsing the key." -msgstr "Pri branju ključa je prišlo do težave." +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Prikaži stolpec" -#: superset/commands/report/exceptions.py:280 -msgid "An error occurred while pruning logs " -msgstr "Pri krajšanju dnevnikov je prišlo do napake " +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Dodaj stolpec" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:782 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "" -"Pri odstranjevanju poizvedbe je prišlo do napake. Kontaktirajte administratorja." +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Uredi stolpec" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:747 -msgid "An error occurred while removing tab. Please contact your administrator." +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" -"Pri odstranjevanju zavihka je prišlo do napake. Kontaktirajte administratorja." +"Če želite, da bo ta stolpec na razpolago kot možnost [Granulacija časa]. " +"Stolpec mora biti tipa DATETIME ali DATETIME-like" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1136 +#: superset/connectors/sqla/views.py:109 msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -"Pri odstranjevanju sheme tabele je prišlo do napake. Kontaktirajte " -"administratorja." - -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "Pri prikazovanju vizualizacije je prišlo do napake: %s" +"Če želite, da je ta stolpec na voljo v sekciji `Filtri` v raziskovalnem " +"pogledu." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:626 +#: superset/connectors/sqla/views.py:113 msgid "" -"An error occurred while setting the active tab. Please contact your administrator." +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -"Pri določanju aktivnega zavihka je prišlo do napake. Kontaktirajte " -"administratorja." +"Podatkovni tip, ki izvira iz podatkovne baze. V nekaterih primerih je " +"potrebno ročno vnesti tip za stolpce, ki temeljijo na izrazih. V večini " +"primerov uporabniku tega ni potrebno spreminjati." -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" -msgstr "Pri ocenjevanju grafikona je prišlo do napake" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Stolpec" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:897 -msgid "" -"An error occurred while storing your query in the backend. To avoid losing your " -"changes, please save your query using the \"Save Query\" button." -msgstr "" -"Pri shranjevanju vaše poizvedbe v sistem je prišlo do napake. Da ne izgubite " -"sprememb, shranite poizvedbo z gumbom \"Shrani poizvedbo\"." +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Podrobno ime" -#: superset/commands/temporary_cache/exceptions.py:41 -#: superset/key_value/exceptions.py:46 -msgid "An error occurred while updating the value." -msgstr "Pri posodabljanju vrednosti je prišlo do težave." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Opis" -#: superset/key_value/exceptions.py:50 -msgid "An error occurred while upserting the value." -msgstr "Pri posodabljanju/vstavljanju vrednosti je prišlo do težave." +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Združevanje" -#: superset/commands/database/exceptions.py:162 -msgid "An unexpected error occurred" -msgstr "Prišlo je do nepričakovane napake" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Filtriranje" -#: superset/views/core.py:376 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "" -"Zgodila se je neznana napaka. Kontaktirajte svojega administratorja za Superset" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Tabela" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "Sidraj na" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Izraz" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:118 -msgid "Angle at which to end progress axis" -msgstr "Kot, pri katerem se konča številčnica" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Časoven" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:108 -msgid "Angle at which to start progress axis" -msgstr "Kot, pri katerem se začne številčnica" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Oblika zapisa datuma,časa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:189 -msgid "Animation" -msgstr "Animacija" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Tip" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "Oznaka" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" +msgstr "Poslovni podatkovni tip" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, python-format -msgid "Annotation Layer %s" -msgstr "Sloj z oznakami %s" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Neveljaven zapis datuma/časa" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:416 -msgid "Annotation Layers" -msgstr "Sloji z oznakami" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Mere" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 -msgid "Annotation Slice Configuration" -msgstr "Nastavitve rezine z oznakami" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Prikaži mero" -#: superset/commands/annotation_layer/annotation/exceptions.py:60 -msgid "Annotation could not be created." -msgstr "Oznake ni mogoče ustvariti." +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Dodaj mero" -#: superset/commands/annotation_layer/annotation/exceptions.py:64 -msgid "Annotation could not be updated." -msgstr "Oznake ni mogoče posodobiti." +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Uredi mero" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -msgid "Annotation layer" -msgstr "Sloj z oznakami" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Mera" -#: superset/commands/annotation_layer/exceptions.py:33 -msgid "Annotation layer could not be created." -msgstr "Sloja z oznakami ni mogoče ustvariti." +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL izraz" -#: superset/commands/annotation_layer/exceptions.py:37 -msgid "Annotation layer could not be updated." -msgstr "Sloja z oznakami ni mogoče posodobiti." +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "D3 format" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 -msgid "Annotation layer description columns" -msgstr "Stolpci z opisi slojev z oznakami" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Dodatno" -#: superset/commands/annotation_layer/exceptions.py:49 -msgid "Annotation layer has associated annotations." -msgstr "Sloj z oznakami ima povezane oznake." +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Opozorilo" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 -msgid "Annotation layer interval end" -msgstr "Konec intervala sloja z oznakami" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Tabele" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 -msgid "Annotation layer name" -msgstr "Ime sloja z oznakami" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Prikaži tabelo" -#: superset/commands/annotation_layer/exceptions.py:41 -msgid "Annotation layer not found." -msgstr "Sloja z oznakami ni mogoče najti." +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Uvozi definicijo tabele" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 -msgid "Annotation layer opacity" -msgstr "Prosojnost sloja z oznakami" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Uredi tabelo" -#: superset/commands/annotation_layer/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "Parametri sloja z oznakami so neveljavni." +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" +msgstr "" +"Seznam grafikonov, povezanih s to tabelo. S spreminjanjem podatkovnega " +"vira lahko spremenite, kako se povezani grafikoni obnašajo. Poleg tega " +"morajo biti grafikoni povezani s podatkovnim virom. Če odstranite " +"grafikon s podatkovnega vira ne bo mogoče shraniti tega vnosa. Če želite " +"spremeniti podatkovni vir grafikona, prepišite grafikon v raziskovalnem " +"pogledu." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 -msgid "Annotation layer stroke" -msgstr "Obroba sloja z oznakami" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Razlika časovnega pasu (v urah) za ta podatkovni vir" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 -msgid "Annotation layer time column" -msgstr "Časovni stolpec sloja z oznakami" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Ime tabele, ki obstaja v izvorni podatkovni bazi" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 -msgid "Annotation layer title column" -msgstr "Stolpec z naslovom sloja z oznakami" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +msgstr "" +"Shema, ki se uporablja pri nekaterih podatkovnih bazah, kot so Postgres, " +"Redshift in DB2" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Annotation layer type" -msgstr "Tip sloja z oznakami" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." +msgstr "" +"To polje se obnaša kot Supersetov pogled, kar pomeni, da bo Superset " +"izvedel poizvedbo za ta niz kot podpoizvedbo." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 -msgid "Annotation layer value" -msgstr "Vrednost sloja z oznakami" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "" +"Privzeta vrednost za pridobivanje različnih vrednost pri oblikovanju " +"filtrov. Podpira sintakso za jinja predloge. Potrebno le, ko je vključeno" +" `Omogoči izbiro filtra`." -#: superset-frontend/src/explore/controlPanels/sections.tsx:86 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 -msgid "Annotation layers" -msgstr "Sloji z oznakami" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "Preusmeri v to končno točko, ko kliknete na tabelo v seznamu tabel" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 -msgid "Annotation layers are still loading." -msgstr "Sloj z oznakami se še vedno nalaga." +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "" +"Če želite napolniti spustni seznam filtra v raziskovalnem pogledu " +"filtrske sekcije z različnimi vrednostmi, pridobljenimi sproti v ozadju" -#: superset/commands/annotation_layer/exceptions.py:45 -msgid "Annotation layers could not be deleted." -msgstr "Slojev z oznakami ni mogoče izbrisati." +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "" +"Če želite, da je tabela ustvarjena s postopkom 'Vizualizacija' v SQL " +"laboratoriju" -#: superset/commands/annotation_layer/annotation/exceptions.py:52 -msgid "Annotation not found." -msgstr "Oznaka ni najdena." - -#: superset/commands/annotation_layer/annotation/exceptions.py:56 -msgid "Annotation parameters are invalid." -msgstr "Parametri oznak so neveljavni." - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Annotation source" -msgstr "Vir oznak" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 -msgid "Annotation source type" -msgstr "Tip vira oznak" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 -msgid "Annotation template created" -msgstr "Predloga oznake ustvarjena" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -msgid "Annotation template updated" -msgstr "Predloga oznake posodobljena" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" -msgstr "Oznake in sloji" - -#: superset-frontend/src/explore/controlPanels/sections.tsx:75 -msgid "Annotations and layers" -msgstr "Oznake in sloji" - -#: superset/commands/annotation_layer/annotation/exceptions.py:68 -msgid "Annotations could not be deleted." -msgstr "Oznak ni mogoče izbrisati." - -#: superset-frontend/src/pages/ChartList/index.tsx:570 -#: superset-frontend/src/pages/ChartList/index.tsx:677 -#: superset-frontend/src/pages/DashboardList/index.tsx:485 -#: superset-frontend/src/pages/DashboardList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:558 -#: superset-frontend/src/pages/DatasetList/index.tsx:601 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 -msgid "Any" -msgstr "Katerikoli" - -#: 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 "Prikaz dodatnih podrobnosti za certifikacijo." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" +msgstr "" +"Nabor parametrov, ki postanejo razpoložljivi za poizvedbo z uporabo Jinja" +" sintakse" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/connectors/sqla/views.py:371 msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -"Na tem mestu izbrana barvna shema bo nadomestila barve posameznih grafikonov v " -"tej nadzorni plošči" +"Trajanje (v sekundah) predpomnjenja za to tabelo. Vrednost 0 označuje, da" +" predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima " +"nastavitev trajanja za podatkovno bazo." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1018 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." msgstr "" -"Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL Alchemy URI-" -"ji. " +"Dovoli, da se imena stolpcev spremenijo v male tiskane črke, kjer je to " +"podprto (npr. Oracle, Snowflake)." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1032 +#: superset/connectors/sqla/views.py:387 msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. Learn " -"about how to connect a database driver " +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." msgstr "" -"Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL Alchemy URI-" -"ji. Naučite se kako povezati gonilnik podatkovne baze " +"Podatkovni seti imajo lahko glavni časovni stolpec (main_dttm_col), lahko" +" pa imajo tudi sekundarnega. Če je ta atribut izbran, se hkrati s " +"filtriranjem sekundarnih stolpcev filtrira tudi glavni časovni stolpec." -#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 -#: superset/views/database/forms.py:464 -msgid "Append" -msgstr "Dodaj" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Povezani grafikoni" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, python-format -msgid "Applied cross-filters (%d)" -msgstr "Uporabljeni medsebojni filtri (%d)" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Spremenil" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, python-format -msgid "Applied filters (%d)" -msgstr "Uporabljeni filtri (%d)" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "Podatkovna baza" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:263 -#, python-format -msgid "Applied filters: %s" -msgstr "Uporabljeni filtri: %s" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Zadnja sprememba" -#: superset/viz.py:237 -msgid "" -"Applied rolling window did not return any data. Please make sure the source query " -"satisfies the minimum periods defined in the rolling window." -msgstr "" -"Izbrano drseče okno ni vrnilo podatkov. Poskrbite, da izvorna poizvedba ustreza " -"minimalni periodi drsečega okna." +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Omogoči izbiro filtra" -#: 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:855 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:468 -msgid "Apply" -msgstr "Uporabi" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Shema" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:101 -msgid "Apply conditional color formatting to metric" -msgstr "Za mere uporabi pogojno oblikovanje z barvami" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Privzeta končna točka" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:411 -msgid "Apply conditional color formatting to metrics" -msgstr "Za mere uporabi pogojno oblikovanje z barvami" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Odmik" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:511 -msgid "Apply conditional color formatting to numeric columns" -msgstr "Za numerične stolpce uporabi pogojno oblikovanje z barvami" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Trajanje predpomnilnika" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -msgid "Apply filters" -msgstr "Uporabi filtre" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Ime tabele" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" -msgstr "Uporabi mero za" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Pridobi vrednosti predikatov" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "Uporabi za vse grafikone" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Lastniki" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "Uporabi za izbrane grafikone" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Glavni stolpec Datum-Čas" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "April" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "Pogled SQL laboratorija" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:82 -msgid "Arc" -msgstr "Lok" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Parametri predlog" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Ali ste prepričani, da želite prepisati naslednje vrednosti?" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Spremenjeno" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "Ali želite prekiniti?" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" +"Tabela je ustvarjena. Sedaj morate v tem dvodelnem postopku klikniti gumb" +" za urejanje nove tabele." -#: superset-frontend/src/features/charts/ChartCard.tsx:82 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:71 -#: superset-frontend/src/pages/ChartList/index.tsx:479 -#: superset-frontend/src/pages/DashboardList/index.tsx:395 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 -#: superset-frontend/src/pages/Tags/index.tsx:182 -msgid "Are you sure you want to delete" -msgstr "Ali ste prepričani, da želite izbrisati" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Izbrisana %(num)d css predloga" +msgstr[1] "Izbrisani %(num)d css predlogi" +msgstr[2] "Izbrisane %(num)d css predloge" +msgstr[3] "Izbrisanih %(num)d css predlog" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#: superset/dashboards/api.py:390 #, python-format -msgid "Are you sure you want to delete %s?" -msgstr "Ali ste prepričani, da želite izbrisati %s?" +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "Shema podatkovnega seta ni veljavna, zaradi napake: %(error)s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#: superset/dashboards/api.py:697 #, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane %s?" +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Izbrisana je %(num)d nadzorna plošča" +msgstr[1] "Izbrisani sta %(num)d nadzorni plošči" +msgstr[2] "Izbrisane so %(num)d nadzorne plošče" +msgstr[3] "Izbrisanih je %(num)d nadzornih plošč" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane oznake?" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Naslov ali `Slug`" -#: superset-frontend/src/pages/ChartList/index.tsx:812 -msgid "Are you sure you want to delete the selected charts?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane grafikone?" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Vloga" -#: superset-frontend/src/pages/DashboardList/index.tsx:683 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane nadzorne plošče?" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "Neveljavno stanje." -#: superset-frontend/src/pages/DatasetList/index.tsx:796 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane podatkovne sete?" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Ime tabele ni definirano" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 -msgid "Are you sure you want to delete the selected layers?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane sloje?" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "Nalaganje omogočeno" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:558 -msgid "Are you sure you want to delete the selected queries?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" +"Neveljaven niz povezave - veljaven niz je običajno v obliki: " +"backend+driver://user:password@database-host/database-name" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 -msgid "Are you sure you want to delete the selected rules?" -msgstr "Ali ste prepričani, da želite izbrisati izbrana pravila?" - -#: superset-frontend/src/pages/Tags/index.tsx:334 -msgid "Are you sure you want to delete the selected tags?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane oznake?" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -msgid "Are you sure you want to delete the selected templates?" -msgstr "Ali ste prepričani, da želite izbrisati izbrane predloge?" - -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Ali ste prepričani, da želite prepisati podatkovni set?" - -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "Ali želite nadaljevati?" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Polja ni mogoče dekodirati z JSON. %(msg)s" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Are you sure you want to save and apply changes?" -msgstr "Ali resnično želite shraniti in uporabiti spremembe?" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" +"Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %(key)s " +"je neveljaven." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:95 -msgid "Area Chart" -msgstr "Ploščinski grafikon" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" +"Pri podajanju posameznih parametrov podatkovne baze mora biti podan njen " +"tip." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 -msgid "Area Chart (legacy)" -msgstr "Ploščinski grafikon (zastarelo)" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" +"Specifikacija baze \"InvalidEngine\" ne podpira konfiguracije s " +"posameznimi parametri." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 -msgid "Area chart" -msgstr "Ploščinski grafikon" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Izbrisan %(num)d podatkovni set" +msgstr[1] "Izbrisana %(num)d podatkovna niza" +msgstr[2] "Izbrisani %(num)d podatkovni nizi" +msgstr[3] "Izbrisanih %(num)d podatkovnih nizov" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:109 -msgid "Area chart opacity" -msgstr "Prosojnost ploščinskega grafikona" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Nič (NULL) ali prazen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:60 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Area charts are similar to line charts in that they represent variables with the " -"same scale, but area charts stack the metrics on top of each other." +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." msgstr "" -"Ploščinski grafikoni so podobni črtnim grafikonom, saj predstavljajo " -"spremenljivke v istem razmerju, vendar se pri ploščinskih grafikonih mere " -"nalagajo ena na drugo." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 -msgid "Arrow" -msgstr "Puščica" +"Preverite, če ima vaša poizvedba sintaktične napake pri " +"\"%(syntax_error)s\". Potem ponovno poženite poizvedbo." -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -msgid "Assign a set of parameters as" -msgstr "Določi nabor parametrov kot" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Sekunda" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 -msgid "Assist" -msgstr "Pomoč" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5 second" -#: superset/connectors/sqla/views.py:395 -msgid "Associated Charts" -msgstr "Povezani grafikoni" +#: superset/db_engine_specs/base.py:100 +msgid "30 second" +msgstr "30 second" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "Asinhrono izvajanje" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Minuta" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 -#: superset-frontend/src/pages/DatabaseList/index.tsx:512 -msgid "Asynchronous query execution" -msgstr "Asinhroni zagon poizvedb" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 minute" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "Avgust" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 minute" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 -msgid "Auto" -msgstr "Samodejno" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 minute" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 -msgid "Auto Zoom" -msgstr "Samodejna povečava" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" +msgstr "30 minut" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:622 -msgid "Autocomplete" -msgstr "Samodokončaj" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Ura" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:907 -msgid "Autocomplete filters" -msgstr "Samodokončaj filtre" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6 hour" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:914 -msgid "Autocomplete query predicate" -msgstr "Predikat za samodokončanje poizvedb" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "Dan" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 -msgid "Automatic Color" -msgstr "Samodejne barve" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Teden" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:332 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:360 -msgid "Available sorting modes:" -msgstr "Razpoložljivi načini razvrščanja:" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Mesec" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 -msgid "Average" -msgstr "Povprečje" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Četrtletje" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 -msgid "Average value" -msgstr "Povprečna vrednost" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Leto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:198 -msgid "Axis" -msgstr "Os" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Teden z začetkom v nedeljo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 -msgid "Axis Bounds" -msgstr "Meje osi" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Teden z začetkom v ponedeljek" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 -msgid "Axis Format" -msgstr "Oblika osi" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Teden s koncem v soboto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 -msgid "Axis Title" -msgstr "Naslov osi" +#: superset/db_engine_specs/base.py:116 +msgid "Week ending Sunday" +msgstr "Teden s koncem v nedeljo" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis ascending" -msgstr "Naraščajoča os" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Uporabniško ime" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Axis descending" -msgstr "Padajoča os" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Geslo" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "BOOLEAN" -msgstr "BOOLEAN" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Ime gostitelja ali IP naslov" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1116 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1133 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1153 -msgid "Back" -msgstr "Nazaj" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Vrata podatkovne baze" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 -msgid "Back to all" -msgstr "Nazaj na vse" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Ime podatkovne baze" -#: superset-frontend/src/pages/DatabaseList/index.tsx:335 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "Zaledni sistem" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "Dodatni parametri" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 -msgid "Backward values" -msgstr "Prejšnje vrednosti" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Uporabite šifrirano povezavo s podatkovno bazo" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 -msgid "Bad formula." -msgstr "Napačna formula." +#: superset/db_engine_specs/base.py:2004 +msgid "Use an ssh tunnel connection to the database" +msgstr "Za povezavo s podatkovno bazo uporabite ssh-tunel" -#: superset/viz.py:2008 superset/viz.py:2048 -msgid "Bad spatial key" -msgstr "Neustrezen prostorski ključ" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" +"Povezava neuspešna. Preverite če so v servisnem računu nastavljene " +"naslednje vloge: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" in so nastavljena naslednja dovoljenja: " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 -msgid "Bar" -msgstr "Stolpec" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" +"Tabela \"%(table)s\" ne obstaja. V poizvedbi mora biti uporabljena " +"veljavna tabela." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 -msgid "Bar Chart" -msgstr "Stolpčni grafikon" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "" +"Zdi se, da ni mogoče razrešiti stolpca \"%(column)s\" v vrstici " +"%(location)s." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 -msgid "Bar Chart (legacy)" -msgstr "Stolpčni graf (zastarelo)" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" +"Shema \"%(schema)s\" ne obstaja. Za poizvedbo mora biti uporabljena " +"veljavna shema." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:66 -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "Stolpčni grafikoni se uporabljajo za prikaz mer z nizi stolpcev." - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 -msgid "Bar Values" -msgstr "Vrednosti stolpcev" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "Uporabniško ime \"%(username)s\" ali geslo sta napačna." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:273 -msgid "Bar orientation" -msgstr "Orientacija stolpcev" +#: superset/db_engine_specs/doris.py:216 +#, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Neznan Doris strežnik \"%(hostname)s\"." -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 -msgid "Base" -msgstr "Osnova" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:246 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 #, python-format -msgid "Base layer map style. See Mapbox documentation: %s" -msgstr "Slog osnovnega zemljevida. Glej dokumentacijo Mapbox: %s" +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Povezava s podatkovno bazo \"%(database)s\" ni uspela." -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "Osnovan na meri" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" +"Preverite, če ima vaša poizvedba sintaktične napake pri " +"\"%(server_error)s\". Potem ponovno poženite poizvedbo." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:57 -msgid "Based on granularity, number of time periods to compare against" -msgstr "Število časovnih obdobij za primerjavo (na osnovi granulacije)" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 -msgid "Based on what should series be ordered on the chart and legend" -msgstr "Na osnovi česa so serije sortirane na grafikonu in legendi" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"Uporabniško ime \"%(username)s\", geslo ali ime podatkovne baze " +"\"%(database)s\" so napačni." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "Osnovno" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "Imena gostitelja \"%(hostname)s\" ni mogoče razrešiti." -#: 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:246 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 -msgid "Basic information" -msgstr "Osnovne informacije" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Vrata %(port)s na gostitelju \"%(hostname)s\" niso sprejela povezave." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 #, python-format -msgid "Batch editing %d filters:" -msgstr "Skupinsko urejanje %d filtrov:" +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" +"Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči na " +"vratih %(port)s." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "Napolnjenost baterije skozi čas" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Neznan MySQL strežnik \"%(hostname)s\"." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1407 -msgid "Be careful." -msgstr "Bodite previdni." +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "Uporabniško ime \"%(username)s\" ne obstaja." -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "Pred" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "Kombinacija uporabnik/geslo ni veljavna (napačno geslo)." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 -msgid "Big Number" -msgstr "Velika številka" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Neuspešna povezava s podatkovno bazo: \"%(database)s\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "Velikost pisave Velike številke" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "Gostitelj ni dosegljiv: \"%(host)s\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 -msgid "Big Number with Trendline" -msgstr "Velika številka s trendno krivuljo" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "Vrata v razponu 0-65535" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:380 -msgid "Bottom" -msgstr "Spodaj" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Neveljaven niz povezave: pričakovan je niz oblike " +"'ocient://user:pass@host:port/database'." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 -msgid "Bottom Margin" -msgstr "Spodnji rob" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" +"Napaka v sintaksi: %(qualifier)s input \"%(input)s\" expecting " +"\"%(expected)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -msgid "Bottom left" -msgstr "Spodaj levo" +#: superset/db_engine_specs/ocient.py:284 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Tabela ali pogled \"%(table)s\" ne obstaja." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "Spodnji rob, v pikslih, s katerim povečamo prostor za oznake osi" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "Neveljaven sklic na stolpec: \"%(column)s\"" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 -msgid "Bottom right" -msgstr "Spodaj desno" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "Geslo za uporabniško ime \"%(username)s\" je napačno." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:142 -msgid "Bottom to Top" -msgstr "Od dna proti vrhu" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "Ponovno vpišite geslo." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format msgid "" -"Bounds for numerical X axis. Not applicable for temporal or categorical axes. " -"When left empty, the bounds are dynamically defined based on the min/max of the " -"data. Note that this feature will only expand the axis range. It won't narrow the " -"data's extent." -msgstr "" -"Meje numerične X-osi. Ni veljavno za časovne ali kategorične osi. Če je prazno, " -"se meje nastavijo dinamično na podlagi min./max. vrednosti podatkov. Funkcija " -"omeji le prikaz, obseg podatkov pa ostane enak." - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:252 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:240 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:234 -msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically defined based " -"on the min/max of the data. Note that this feature will only expand the axis " -"range. It won't narrow the data's extent." +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -"Meje Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. " -"vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." +"Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\" v vrstici " +"%(location)s." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined based on " -"the min/max of the data. Note that this feature will only expand the axis range. " -"It won't narrow the data's extent." +#: superset/db_engine_specs/postgres.py:289 +msgid "Users are not allowed to set a search path for security reasons." msgstr "" -"Meje osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. " -"vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." +"Uporabnikom ni dovoljeno nastaviti iskalne poti zaradi varnostnih " +"razlogov." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:364 +#: superset/db_engine_specs/presto.py:664 +#, python-format msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will only expand " -"the axis range. It won't narrow the data's extent." +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -"Meje primarne Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi min./" -"max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." +"Tabela \"%(table_name)s\" ne obstaja. V poizvedbi mora biti uporabljena " +"veljavna tabela." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:403 +#: superset/db_engine_specs/presto.py:672 +#, python-format msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are dynamically " -"defined\n" -" based on the min/max of the data. Note that this feature will " -"only expand\n" -" the axis range. It won't narrow the data's extent." +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -"Meje sekundarne Y-osi. Deluje le, če so omogočene odvisne meje Y-osi.\n" -" Če je prazno, se meje nastavijo dinamično na podlagi min./max. " -"vrednosti podatkov.\n" -" Funkcija omeji le prikaz, obseg podatkov pa ostane enak." +"Shema \"%(schema_name)s\" ne obstaja. Za poizvedbo mora biti uporabljena " +"veljavna shema." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Box Plot" -msgstr "Box Plot" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "Povezava na katalog \"%(catalog_name)s\" ni uspela." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 -msgid "Breakdowns" -msgstr "Razčlenitev" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Neznana Presto napaka" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:161 +#: superset/db_engine_specs/redshift.py:97 +#, python-format msgid "" -"Breaks down the series by the category specified in this control.\n" -" This can help viewers understand how each category affects the overall " -"value." +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -"Razbije niz po kategorijah, določenih v tem polju.\n" -" Na ta način lahko uporabniki razumejo, kako vsaka kategorija vpliva na " -"skupno vrednost." +"Povezava s podatkovno bazo \"%(database)s\" ni uspela. Preverite ime " +"podatkovne baze in poskusite ponovno." -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 -#: superset/viz.py:844 -msgid "Bubble Chart" -msgstr "Mehurčkasti grafikon" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s ne obstaja v tej podatkovni bazi." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 -msgid "Bubble Chart (legacy)" -msgstr "Mehurčkasti grafikon (zastarelo)" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." +msgstr "Vzorcev za podatkovni vir ni bilo mogoče pridobiti." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:148 -msgid "Bubble Color" -msgstr "Barva mehurčka" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" +msgstr "Spreminjanje tega podatkovnega vira ni dovoljeno" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 -msgid "Bubble Opacity" -msgstr "Prosojnost mehurčka" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Domov" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:144 -msgid "Bubble Size" -msgstr "Velikost mehurčka" +#: superset/initialization/__init__.py:242 +msgid "Database Connections" +msgstr "Povezave na podatkovne baze" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "Velikost mehurčka" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Podatki" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 -msgid "Bubble size number format" -msgstr "Oblika zapisa velikosti mehurčka" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Nadzorne plošče" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:164 -msgid "Bucket break points" -msgstr "Točke za razčlenitev razdelkov" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Grafikoni" -#: superset-frontend/src/features/home/RightMenu.tsx:512 -msgid "Build" -msgstr "Zgradi" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Podatkovni seti" -#: superset-frontend/src/pages/AlertReportList/index.tsx:428 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:763 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 -#: superset-frontend/src/pages/DashboardList/index.tsx:643 -#: superset-frontend/src/pages/DatasetList/index.tsx:640 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:192 -#: superset-frontend/src/pages/Tags/index.tsx:295 -msgid "Bulk select" -msgstr "Izberi več" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Vtičniki" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 -msgid "Bulk tag" -msgstr "Označi več" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Upravljaj" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:897 -msgid "Bullet Chart" -msgstr "'Bullet' grafikon" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "Aktivnost" - -#: superset/connectors/sqla/views.py:163 -msgid "Business Data Type" -msgstr "Poslovni podatkovni tip" - -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 -msgid "" -"By default, each filter loads at most 1000 choices at the initial page load. " -"Check this box if you have more than 1000 filter values and want to enable " -"dynamically searching that loads filter values as users type (may add stress to " -"your database)." -msgstr "" -"Privzeto vsak filter pri nalaganju začetne strani naloži največ 1000 možnosti. " -"Označite polje, če imate več kot 1000 vrednosti filtra in želite omogočiti " -"dinamično iskanje, ki nalaga vrednosti filtra ko uporabnik tipka (to lahko " -"preobremeni vašo podatkovno bazo)." - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:362 -msgid "By key: use column names as sorting key" -msgstr "Po ključu: za razvrščanje uporabite imena stolpcev" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "By key: use row names as sorting key" -msgstr "Po ključu: za razvrščanje uporabite imena vrstic" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:363 -msgid "By value: use metric values as sorting key" -msgstr "Po vrednosti: za razvrščanje uporabite vrednosti mere" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:332 -msgid "CANCEL" -msgstr "PREKINI" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS predloge" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "CREATE DATASET" -msgstr "USTVARI PODATKOVNI SET" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL laboratorij" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:682 -msgid "CREATE TABLE AS" -msgstr "CREATE TABLE AS" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:693 -msgid "CREATE VIEW AS" -msgstr "CREATE VIEW AS" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Shranjene poizvedbe" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 -msgid "CREATE VIEW statement" -msgstr "CREATE VIEW stavek" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Zgodovina poizvedb" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -msgid "CRON Schedule" -msgstr "CRON urnik" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "Oznake" -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "CRON izraz" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Dnevnik aktivnosti" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Varnost" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -msgid "CSS Styles" -msgstr "CSS slogi" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Opozorila in poročila" -#: superset/initialization/__init__.py:292 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS predloge" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Sloji z oznakami" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" -msgstr "CSS slogi uporabljeni za grafikon" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "Varnost na nivoju vrstic" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 -msgid "CSS template" -msgstr "CSS predloga" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." +msgstr "Pri branju ključa je prišlo do težave." -#: superset/commands/css/exceptions.py:27 -msgid "CSS template not found." -msgstr "CSS predloga ni najdena." +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." +msgstr "Pri posodabljanju/vstavljanju vrednosti je prišlo do težave." -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 -msgid "CSS templates" -msgstr "CSS predloge" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "Vrednosti ni mogoče šifrirati" -#: superset/commands/css/exceptions.py:23 -msgid "CSS templates could not be deleted." -msgstr "CSS predlog ni mogoče izbrisati." +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "Vrednosti ni mogoče dešifrirati" -#: superset/views/database/forms.py:109 -msgid "CSV Upload" -msgstr "Nalaganje CSV" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" +msgstr "Neveljaven ključ povezave" -#: superset/views/database/views.py:289 -#, python-format +#: superset/models/helpers.py:1525 msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database " -"\"%(db_name)s\"" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" msgstr "" -"CSV datoteka \"%(csv_filename)s\" naložena v tabelo \"%(table_name)s\" v " -"podatkovni bazi \"%(db_name)s\"" - -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "Nastavitve pretvorbe CSV v podatkovno bazo" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:379 -msgid "CSV upload" -msgstr "Nalaganje CSV" +"Stolpec datum-čas ni podan kot del tabele, čeprav mora biti za ta tip " +"grafikona" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "CTAS & CVAS SHEMA" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Prazna poizvedba?" -#: superset/sql_lab.py:445 -msgid "" -"CTAS (create table as select) can only be run with a query where the last " -"statement is a SELECT. Please make sure your query has a SELECT as its last " -"statement. Then, try running your query again." -msgstr "" -"CTAS (create table as select) lahko izvajate le v poizvedbah, kjer je zadnji " -"stavek SELECT. Poskrbite, da bo zadnji stavek v vaši poizvedbi SELECT in " -"poskusite ponovno zagnati poizvedbo." +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Za razvrščanje je uporabljen neznan stolpec: %(col)s" -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "CTAS shema" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "Časovni stolpec \"%(col)s\" ne obstaja v podatkovnem setu" -#: superset/sql_lab.py:462 -msgid "" -"CVAS (create view as select) can only be run with a query with a single SELECT " -"statement. Please make sure your query has only a SELECT statement. Then, try " -"running your query again." -msgstr "" -"CVAS (create view as select) lahko izvajate le v poizvedbah z enim SELECT " -"stavkom. Poskrbite, da bo v vaši poizvedbi le en SELECT stavek in poskusite " -"ponovno zagnati poizvedbo." +#: superset/models/helpers.py:1821 +msgid "error_message" +msgstr "error_message" -#: superset/errors.py:131 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "CVAS (create view as select) poizvedba ima več kot en stavek." +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "Seznam vrednosti filtra ne sme biti prazen" -#: superset/errors.py:132 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "CVAS (create view as select) poizvedba ni SELECT stavek." +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "Potrebno je podati vrednost za filter s primerjalnim operandom" -#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "Trajanje predpomnilnika" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Neveljaven tip operacije filtra: %(op)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:44 -msgid "Cache Timeout (seconds)" -msgstr "Trajanje predpomnilnika (sekunde)" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Napaka v jinja izrazu WHERE stavka: %(msg)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:972 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "Časovna omejitev predpomnilnika" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Napaka v jinja izrazu HAVING stavka: %(msg)s" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -msgid "Cached" -msgstr "Predpomnjeno" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "Podatkovna baza ne podpira podpoizvedb" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:356 +#: superset/queries/saved_queries/api.py:225 #, python-format -msgid "Cached %s" -msgstr "Predpomnjeno %s" +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "Izbrisana %(num)d shranjena poizvedba" +msgstr[1] "Izbrisani %(num)d shranjeni poizvedbi" +msgstr[2] "Izbrisane %(num)d shranjene poizvedbe" +msgstr[3] "Izbrisanih %(num)d shranjenih poizvedb" -#: superset/viz.py:562 -msgid "Cached value not found" -msgstr "Predpomnjena vrednost ni najdena" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "Izbrisan %(num)d urnik poročanja" +msgstr[1] "Izbrisana %(num)d urnika poročanja" +msgstr[2] "Izbrisani %(num)d urniki poročanja" +msgstr[3] "Izbrisanih %(num)d urnikov poročanja" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -msgid "Calculate contribution per series or row" -msgstr "Izračunaj delež za serijo ali vrstico" +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "Vrednost mora biti večja od 0" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:87 -msgid "Calculate from first step" -msgstr "Izračunaj iz prvega koraka" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "Poljubna širina zaslonske slike v pikslih" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 -msgid "Calculate from previous step" -msgstr "Izračunaj iz prejšnjega koraka" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" +msgstr "Širina zaslonske slike mora biti med %(min)spx and %(max)spx" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:848 +#: superset/reports/notifications/email.py:88 #, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "Izračunan stolpec [%s] zahteva izraz" +msgid "" +"\n" +" Error: %(text)s\n" +" " +msgstr "" +"\n" +" Napaka: %(text)s\n" +" " -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1475 -msgid "Calculated columns" -msgstr "Izračunani stolpci" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" +msgstr "EMAIL_REPORTS_CTA" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:338 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 -#: superset-frontend/src/explore/controlPanels/sections.tsx:218 -msgid "Calculation type" -msgstr "Tip izračuna" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:753 -msgid "Calendar Heatmap" -msgstr "Koledarska barvna lestvica" - -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "Najvišjega zavihka ni mogoče premakniti v gnezdene zavihke" - -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 -msgid "Can select multiple values" -msgstr "Dovoli izbiro več vrednosti" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" -#: superset/viz.py:1282 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" +msgstr "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Razišči v Supersetu>\n" +"\n" +"%(table)s\n" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:862 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: 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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 -#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 -#: superset-frontend/src/features/tags/TagModal.tsx:277 -msgid "Cancel" -msgstr "Prekliči" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" +msgstr "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"napaka: %(text)s\n" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -msgid "Cancel query on window unload event" -msgstr "Prekini poizvedbo pri dogodku zaprtja okna (window unload event)" +#: superset/row_level_security/api.py:355 +#, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Izbrisano je %(num)d pravilo" +msgstr[1] "Izbrisani sta %(num)d pravili" +msgstr[2] "Izbrisana so %(num)d pravila" +msgstr[3] "Izbrisanih je %(num)d pravil" -#: superset/commands/sql_lab/export.py:78 -msgid "Cannot access the query" -msgstr "Dostop do poizvedbe ni mogoč" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "" +"%(dialect)s ni mogoče uporabiti kot podatkovni vir zaradi varnostnih " +"razlogov." -#: superset/commands/database/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "Podatkovne baze s povezanimi podatkovnimi viri ni mogoče izbrisati" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -#: superset/commands/database/ssh_tunnel/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" -msgstr "Za SSH-tunel ne morete imeti več prijavnih podatkov" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Nimate pravic za spreminjanje %(resource)s" -#: superset/views/core.py:365 +#: superset/sqllab/exceptions.py:66 #, python-format +msgid "Failed to execute %(query)s" +msgstr "Neuspešno izvajanje %(query)s" + +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -"Nadzorne plošče ni mogoče uvoziti: %(db_error)s.\n" -"Pred uvozom poskrbite za ustvarjenje podatkovne baze." - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1244 -msgid "Cannot load filter" -msgstr "Filtra ni mogoče naložiti" +"Preverite, če imajo jinja parametri sintaktične napake in poskrbite, da " +"se ujemajo znotraj SQL-poizvedbe. Potem ponovno poženite poizvedbo." -#: superset/commands/chart/exceptions.py:51 +#: superset/sqllab/query_render.py:100 #, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Ni mogoče razčleniti časovnega izraza [%(human_readable)s]" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "Kategorični" +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." +msgstr[1] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." +msgstr[2] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." +msgstr[3] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 -msgid "Categorical Color" -msgstr "Kategorična barva" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "Poizvedba vsebuje enega ali več parametrov predlog z napačno obliko." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "Kategorije za združevanje po x-osi." +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" +"V poizvedbi preverite, da so vsi parametri obdani z dvojnimi oklepaji, " +"npr. \"{{ ds }}\". Potem poskusite ponovno." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" -msgstr "Kategorija" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "Ime oznake ni pravilno (ne sme vsebovati ':')" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -msgid "Category Name" -msgstr "Ime kategorije" +#: superset/tags/exceptions.py:39 +msgid "Tag could not be found." +msgstr "Oznake ni mogoče najti." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:121 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category and Percentage" -msgstr "Kategorija in procent" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "Nastavi prilagojeno časovno obdobje" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 -msgid "Category and Value" -msgstr "Kategorija in vrednost" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" +msgstr "Izvajalnik urnika poročanj ni najden" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -msgid "Category name" -msgstr "Ime kategorije" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Število zapisov" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:89 -msgid "Category of target nodes" -msgstr "Kategorija ciljnih vozlišč" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Ni zapisov" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:125 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:109 -msgid "Category, Value and Percentage" -msgstr "Kategorija, vrednost in procent" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Seznam filtrov" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "Razmak med celicami" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Iskanje" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "Zaobljenost celice" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Osveži" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:62 -msgid "Cell Size" -msgstr "Velikost celice" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Uvozi nadzorne plošče" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:432 -msgid "Cell bars" -msgstr "Stolp. graf v celicah" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Uvozi nadzorne plošče" -#: superset-frontend/src/components/FilterableTable/utils.tsx:49 -msgid "Cell content" -msgstr "Vsebina celice" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Datoteka" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 -msgid "Cell limit" -msgstr "Omejitev števila celic" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Izberite datoteko" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 -msgid "Centroid (Longitude and Latitude): " -msgstr "Centroid (zemljepisna dolžina in širina): " +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Naloži" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" -msgstr "Certifikacija" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "Za spreminjanje tega polja uporabite gumb za urejanje" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1301 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 -#: 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" -msgstr "Podrobnosti certifikacije" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Preizkus povezave" -#: superset-frontend/src/pages/ChartList/index.tsx:671 -#: superset-frontend/src/pages/DashboardList/index.tsx:552 -#: superset-frontend/src/pages/DatasetList/index.tsx:595 -msgid "Certified" -msgstr "Certificirano" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "Nepodprt tip izraza: %(clause)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 -msgid "Certified By" -msgstr "Certificiral/a" +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "Neveljaven objekt mere: %(metric)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1288 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 -#: 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" -msgstr "Certificiral/a" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/utils/date_parser.py:393 #, python-format -msgid "Certified by %s" -msgstr "Certificiral/a %s" +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Ni mogoče najti takšnega praznika: [%(holiday)s]" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:359 -msgid "Change order of columns." -msgstr "Spremeni vrstni red stolpcev." +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" +msgstr "Stolpec %(col_name)s ima neznan tip: %(value_type)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:331 -msgid "Change order of rows." -msgstr "Spremeni vrstni red vrstic." +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" +msgstr "" +"percentili morajo biti tipa list ali tuple z vsaj dvema numeričnima " +"vrednostma, pri čemer je prva manjša od druge" -#: superset/connectors/sqla/views.py:397 -msgid "Changed By" -msgstr "Spremenil" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "`compare_columns` morajo imeti enako dolžino kot `source_columns`." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 -msgid "Changed by" -msgstr "Spremenil" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "`compare_type` mora biti `difference`, `percentage` ali `ratio`" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "Spremembe shranjene." +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "Stolpec \"%(column)s\" ni numeričen ali ne obstaja v rezultatu poizvedbe." -#: superset/commands/chart/exceptions.py:151 -msgid "Changing one or more of these dashboards is forbidden" -msgstr "Spreminjanje teh nadzornih plošč ni dovoljeno" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "`rename_columns` morajo imeti enako dolžino kot `columns`." -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns or " -"metadata that does not exist in the target dataset" -msgstr "" -"Sprememba podatkovnega seta lahko pokvari grafikon, če se le-ta zanaša na stolpce " -"ali metapodatke, ki ne obstajajo v ciljnem podatkovnem nizu" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Neveljaven kumulativni operand: %(operator)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1408 -msgid "" -"Changing these settings will affect all charts using this dataset, including " -"charts owned by other people." -msgstr "" -"Spreminjanje teh nastavitev bo vplivalo na vse grafikone, ki uporabljajo ta " -"podatkovni set, vključno z grafikoni v lasti drugih oseb." +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Neveljaven niz za geohash" -#: superset/commands/dashboard/exceptions.py:70 -msgid "Changing this Dashboard is forbidden" -msgstr "Spreminjanje te nadzorne plošče ni dovoljeno" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Neveljavna zemljepisna dolžina/širina" -#: superset/commands/chart/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "Spreminjanje tega grafikona ni dovoljeno" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Neveljaven geodetski niz" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "Sprememba tega kontrolnika se odrazi takoj" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "Vrtilna operacija zahteva vsaj en indeks" -#: superset/commands/dataset/exceptions.py:177 -msgid "Changing this dataset is forbidden" -msgstr "Spreminjanje tega podatkovnega seta ni dovoljeno" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "Vrtilna operacija mora vsebovati vsaj en agregat" -#: superset/commands/dataset/columns/exceptions.py:31 -#: superset/commands/dataset/metrics/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "Spreminjanje tega podatkovnega seta ni dovoljeno." +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "Knjižnica `prophet` ni nameščena" -#: superset/explore/exceptions.py:49 -msgid "Changing this datasource is forbidden" -msgstr "Spreminjanje tega podatkovnega vira ni dovoljeno" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Časovna granulacija manjka" -#: superset/commands/report/exceptions.py:276 -msgid "Changing this report is forbidden" -msgstr "Spreminjanje tega poročila ni dovoljeno" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Nepodprta časovna granulacija: %(time_grain)s" -#: superset/views/database/forms.py:207 -msgid "Character to interpret as decimal point" -msgstr "Znak, ki bo prepoznan kot decimalno ločilo" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "Periode morajo biti celo število" -#: superset/views/database/forms.py:382 -msgid "Character to interpret as decimal point." -msgstr "Znak, ki bo prepoznan kot decimalno ločilo." +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "Interval zaupanja mora biti med 0 in 1 (odprt)" -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 -#: 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:220 -#: superset-frontend/src/pages/ChartList/index.tsx:773 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "Grafikon" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "DataFrame mora vsebovati časovni stolpec" -#: superset/views/core.py:774 -#, python-format -msgid "Chart %(id)s not found" -msgstr "Grafikon %(id)s ni najden" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "DataFrame vsebuje vsaj eno serijo" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "Trajanje predpomnilnika grafikona" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" +msgstr "Oznaka že obstaja" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:447 -#, python-format -msgid "Chart Data: %s" -msgstr "Podatki grafikona: %s" +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" +msgstr "Prevzorčevalna operacija zahteva indeks tipa datumčas" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:35 -msgid "Chart ID" -msgstr "ID grafikona" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " +msgstr "Metoda za prevzorčenje v Pandas mora " -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:134 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:133 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:132 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:48 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" -msgstr "Možnosti grafikona" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Nedefinirano okno za drsečo operacijo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:264 -msgid "Chart Orientation" -msgstr "Orientacija grafikona" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "Okno mora biti > 0" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#: superset/utils/pandas_postprocessing/rolling.py:84 #, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "Lastnik grafikona: %s" -msgstr[1] "Lastnik grafikonov: %s" -msgstr[2] "Lastnik grafikonov: %s" -msgstr[3] "Lastnik grafikonov: %s" +msgid "Invalid rolling_type: %(type)s" +msgstr "Neveljaven rolling_type: %(type)s" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -msgid "Chart Source" -msgstr "Podatkovni vir grafikona" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Neveljavne možnosti za %(rolling_type)s: %(options)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:286 -msgid "Chart Title" -msgstr "Naslov grafikona" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "Referencirani stolpci niso razpoložljivi v Dataframe-u." -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset/utils/pandas_postprocessing/utils.py:153 #, python-format -msgid "Chart [%s] has been overwritten" -msgstr "Grafikon [%s] je bil prepisan" +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "Stolpec referenciran z agregacijo ni definiran: %(column)s" -#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#: superset/utils/pandas_postprocessing/utils.py:160 #, python-format -msgid "Chart [%s] has been saved" -msgstr "Grafikon [%s] je bil shranjen" +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Operand ni definiran za agregatorja: %(name)s" -#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#: superset/utils/pandas_postprocessing/utils.py:172 #, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "Grafikon [%s] je bil dodan na nadzorno ploščo [%s]" - -#: superset/views/core.py:672 -msgid "Chart [{}] has been overwritten" -msgstr "Grafikon [{}] je bil prepisan" +msgid "Invalid numpy function: %(operator)s" +msgstr "Neveljavna numpy funkcija: %(operator)s" -#: superset/views/core.py:668 -msgid "Chart [{}] has been saved" -msgstr "Grafikon [{}] je bil shranjen" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Nepodprta časovna granulacija: %(time_grain)s" -#: superset/views/core.py:697 -msgid "Chart [{}] was added to dashboard [{}]" -msgstr "Grafikon [{}] je bil dodan na nadzorno ploščo [{}]" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "json ni veljaven" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 -msgid "Chart cache timeout" -msgstr "Trajanje predpomnilnika grafikona" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Izvozi v YAML" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "Spremembe grafikona" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Izvozim v YAML?" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:31 -msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. When " -"added to dashboard, a filter box lets users specify specific values or ranges to " -"filter charts by. The charts that each filter box is applied to can be fine tuned " -"as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature that " -"lives in the dashboard view itself. It's easier to use and has more capabilities!" -msgstr "" -"Komponenta grafikona, ki omogoča dodajanje vmesnika filtrov po meri v nadzorno " -"ploščo. Ko je dodana na nadzorno ploščo, lahko uporabnik določi poljubne " -"vrednosti ali obsege filtrov. Grafikoni, na katere se nanašajo filtri, so lahko " -"precizno izbrani tudi v pogledu nadzorne plošče.\n" -"\n" -" Vedite, da bo ta vtičnik v prihodnosti zamenjan z novim konceptom filtrov, ki " -"bodo živeli v kontekstu same nadzorne plošče in bodo zmogljivejši ter " -"enostavnejši za uporabo!" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Izbriši" -#: superset/commands/chart/exceptions.py:115 -msgid "Chart could not be created." -msgstr "Grafikona ni mogoče ustvariti." - -#: superset/commands/chart/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "Grafikona ni mogoče posodobiti." - -#: superset/commands/report/exceptions.py:55 -msgid "Chart does not exist" -msgstr "Grafikon ne obstaja" - -#: superset/charts/data/api.py:132 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "Grafikon nima shranjenega konteksta poizvedbe. Ponovno shranite grafikon." - -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -msgid "Chart height" -msgstr "Višina grafikona" - -#: superset-frontend/src/pages/ChartList/index.tsx:231 -msgid "Chart imported" -msgstr "Grafikon uvožen" - -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -msgid "Chart last modified" -msgstr "Zadnja sprememba grafikona" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Ali resnično vse izbrišem?" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -msgid "Chart last modified by" -msgstr "Grafikon nazadnje spremenil" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Je priljubljen" -#: superset-frontend/src/explore/components/SaveModal.tsx:360 -msgid "Chart name" -msgstr "Ime grafikona" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "Je označen" -#: superset/commands/chart/exceptions.py:156 -msgid "Chart not found" -msgstr "Grafikon ni najden" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "Zdi se, da je bil podatkovni vir izbrisan" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:109 -msgid "Chart options" -msgstr "Možnosti grafikona" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "Zdi se, da je bil uporabnik izbrisan" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -msgid "Chart owners" -msgstr "Lastniki grafikona" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" +msgstr "Nimate pravic za prenos csv-ja" -#: superset/commands/chart/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "Parametri grafikona so neveljavni." +#: superset/views/core.py:420 +msgid "Error: permalink state not found" +msgstr "Napaka: stanje povezave ni najdeno" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -msgid "Chart properties updated" -msgstr "Lastnosti grafikona posodobljene" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +msgstr "Napaka: %(msg)s" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 -msgid "Chart title" -msgstr "Naslov grafikona" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" +msgstr "Nimate pravic za spreminjanje tega grafikona" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "Grafikon zahteva podatkovni set" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" +msgstr "Nimate pravic za ustvarjanje grafikona" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -msgid "Chart width" -msgstr "Širina grafikona" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "Razišči - %(table)s" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 -#: superset-frontend/src/features/profile/CreatedContent.tsx:104 -#: superset-frontend/src/features/profile/Favorites.tsx:102 -#: superset-frontend/src/features/tags/TagModal.tsx:328 -#: superset-frontend/src/pages/ChartList/index.tsx:801 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset/initialization/__init__.py:263 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "Grafikoni" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Raziskovanje" -#: superset/commands/chart/exceptions.py:123 -msgid "Charts could not be deleted." -msgstr "Grafikonov ni mogoče izbrisati." +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "Grafikon [{}] je bil shranjen" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "Označi za naraščajoče razvrščanje" +#: superset/views/core.py:625 +msgid "Chart [{}] has been overwritten" +msgstr "Grafikon [{}] je bil prepisan" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 -#: superset-frontend/src/explore/fixtures.tsx:44 -msgid "" -"Check if the Rose Chart should use segment area instead of segment radius for " -"proportioning" -msgstr "" -"Če želite, da grafikon \"Rose\" uporablja površino segmenta namesto radija za " -"proporcioniranje" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" +msgstr "Nimate pravic za spreminjanje te nadzorne plošče" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "Preizkusite ta grafikon v nadzorni plošči:" +#: superset/views/core.py:650 +msgid "Chart [{}] was added to dashboard [{}]" +msgstr "Grafikon [{}] je bil dodan na nadzorno ploščo [{}]" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:479 -msgid "Check out this chart: " -msgstr "Preizkusite ta grafikon: " +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" +msgstr "Nimate pravic za ustvarjanje nadzorne plošče" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:217 -msgid "Check out this dashboard: " -msgstr "Preizkusite to nadzorno ploščo: " +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Nadzorna plošča [{}] je bila ravno ustvarjena in grafikon [{}] dodan nanjo" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 +#: superset/views/core.py:716 msgid "" -"Check to apply filters instantly as they change instead of displaying [Apply] " -"button" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -"Izberite za takojšnjo uporabo filtrov, ko se spremenijo, brez prikazovanja gumba " -"Uveljavi" +"Deformirana zahteva. Pričakovani so argumenti slice_id ali table_name in " +"db_name" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:213 -msgid "Check to force date partitions to have the same height" -msgstr "Če želite, da imajo datumske particije enako višino" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "Če želite vključiti izbirnik časovnega stolpca" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Grafikon %(id)s ni najden" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "Če želite vključiti izbirnik časovne granulacije" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "Tabela %(table)s ni bila najdena v podatkovni bazi %(db)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 -msgid "Child label position" -msgstr "Položaj podrejene oznake" +#: superset/views/core.py:836 +msgid "permalink state not found" +msgstr "stanje povezave ni najdeno" -#: superset/viz.py:1863 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "Izbira [Oznaka] mora biti prisotna v [Združevanje po]" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Prikaži CSS-predlogo" -#: superset/viz.py:1871 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "Izbran [Radij točk] mora biti prisoten v [Združevanje po]" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Dodaj CSS predlogo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "Izberite datoteko" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Uredi CSS predlogo" -#: superset/commands/report/exceptions.py:82 -msgid "Choose a chart or dashboard not both" -msgstr "Izberite grafikon ali nadzorno ploščo, ne obojega" +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Ime predloge" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:989 -msgid "Choose a database..." -msgstr "Izberite podatkovno bazo..." +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Človeku prijazno ime" -#: superset-frontend/src/pages/ChartCreation/index.tsx:336 -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -msgid "Choose a dataset" -msgstr "Izberite podatkovni set" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "" +"Uporablja se za interno identifikacijo vtičnika. Naj bo nastavljeno na " +"ime paketa v vtičnikovem package.json" -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "Izberite mero za desno os" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" +msgstr "" +"Celoten URL, ki kaže na lokacijo zgrajenega vtičnika (lahko gostuje npr. " +"na CDN)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" -msgstr "Izberite obliko zapisa števila" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Prilagojeni vtičniki" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" -msgstr "Izberite izvor" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Prilagojeni vtičnik" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" -msgstr "Izberite izhodišče in cilj" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Dodaj vtičnik" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" -msgstr "Izberite cilj" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Uredi vtičnik" -#: superset-frontend/src/pages/ChartCreation/index.tsx:356 -msgid "Choose chart type" -msgstr "Izberite tip grafikona" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "Podatkovni set, povezan s tem grafikonom, ne obstaja več" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:848 -msgid "Choose one of the available databases from the panel on the left." -msgstr "Izberite eno od razpoložljivih podatkovnih baz v panelu na levi." +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Ni mogoče določiti tipa podatkovnega vira" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 -msgid "Choose the annotation layer type" -msgstr "Izberite tip sloja z oznakami" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Ni mogoče najti vizualizacijskega objekta" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 -msgid "Choose the format for legend values" -msgstr "Izberite obliko vrednosti legende" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Prikaži grafikon" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 -msgid "Choose the position of the legend" -msgstr "Izberite položaj legende" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Dodaj grafikon" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 -msgid "Choose the source of your annotations" -msgstr "Izberite vir svojih oznak" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Uredi grafikon" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 +#: superset/views/chart/mixin.py:63 msgid "" -"Choose whether a country should be shaded by the metric, or assigned a color " -"based on a categorical color palette" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -"Izberite, če želite barvanje držav glede na mero ali kategorično določeno barvno " -"paleto" +"Ti parametri se ustvarijo dinamično s klikom gumba Shrani ali Prepiši v " +"raziskovalnem pogledu. Ta JSON objekt je prikazan kot vzorec za napredne " +"uporabnike, ki želijo spreminjati posamezne parametre." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "Tetivni grafikon" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" +"Trajanje (v sekundah) predpomnjenja za ta grafikon. Če ni definirana, je " +"uporabljena vrednost za podatkovni vir/tabelo." -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "Izbran ne-numeričen stolpec" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Avtor" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 -msgid "Circle" -msgstr "Krog" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Podatkovni vir" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Arrow" -msgstr "Krog -> Puščica" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Zadnja sprememba" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:133 -msgid "Circle -> Circle" -msgstr "Krog -> Krog" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:200 -msgid "Circle radar shape" -msgstr "Okrogla oblika radarja" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -msgid "Circular" -msgstr "Krožno" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." -msgstr "Standardni grafikon za prikaz spreminjanje mere skozi čas." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Parametri" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 -msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase " -"a view into the underlying data or to show aggregated metrics." -msgstr "Standardna razpredelnica za prikaz podatkovnega seta." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Grafikon" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:458 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 -msgid "Clause" -msgstr "Stavek" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Ime" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "Počisti" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Tip vizualizacije" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "Počisti vse" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Prikaži nadzorno ploščo" -#: superset-frontend/src/components/Table/index.tsx:225 -msgid "Clear all data" -msgstr "Počisti vse podatke" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Dodaj nadzorno ploščo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:673 -msgid "Clear form" -msgstr "Počisti polja" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Uredi nadzorno ploščo" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" -"Kliknite na gumb \"Dodaj/Uredi filtre\" za kreiranje novih filtrov nadzorne plošče" +"Ta JSON objekt opisuje postavitev pripomočkov na nadzorni plošči. Ustvari" +" se dinamično, ko prilagajamo velikost in postavitev pripomočkov z " +"uporabo povleci&spusti v pogledu nadzorne plošče" -#: superset-frontend/src/components/Chart/Chart.jsx:286 +#: superset/views/dashboard/mixin.py:52 msgid "" -"Click on \"Create chart\" button in the control panel on the left to preview a " -"visualization or" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" -"Kliknite na gumb \"Ustvari grafikon\" v kontrolni plošči na levi za predogled ali" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1063 -msgid "Click the lock to make changes." -msgstr "Kliknite ključavnico, da omogočite spreminjanje." +"CSS za posamezne nadzorne plošče lahko spreminjamo tukaj ali pa v pogledu" +" nadzorne plošče, kjer so spremembe vidne takoj" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1066 -msgid "Click the lock to prevent further changes." -msgstr "Kliknite ključavnico, da onemogočite spreminjanje." +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Za pridobitev berljivega URL-ja za nadzorno ploščo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 msgid "" -"Click this link to switch to an alternate form that allows you to input the " -"SQLAlchemy URL for this database manually." +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -"Kliknite to povezavo za drugo vnosno formo, ki omogoča ročni vnos SQLAlchemy URL-" -"ja za to podatkovno bazo." +"Ta JSON objekt se ustvari dinamično s klikom gumba Shrani ali Prepiši v " +"pogledu nadzorne plošče. Tukaj je prikazan kot vzorec za napredne " +"uporabnike, ki želijo spreminjati posamezne parametre." + +#: superset/views/dashboard/mixin.py:64 +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/features/databases/DatabaseModal/index.tsx:1827 +#: superset/views/dashboard/mixin.py:65 msgid "" -"Click this link to switch to an alternate form that exposes only the required " -"fields needed to connect this database." +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." msgstr "" -"Kliknite to povezavo za drugo vnosno formo, ki prikaže samo zahtevana polja za " -"povezavo s podatkovno bazo." - -#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 -msgid "Click to add a contour" -msgstr "Klikni za dodajanje plastnice" +"\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev " +"vloge za dostop do nadzorne plošče bo obšlo preverjanje na nivoju " +"podatkovnega seta. Če vloga ni definirana, bodo veljavna običajna pravila" +" dostopov." -#: superset-frontend/src/components/Table/index.tsx:232 -msgid "Click to cancel sorting" -msgstr "Kliknite za prekinitev razvrščanja" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "Določa ali je nadzorna plošča vidna na seznamu vseh nadzornih plošč" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "Kliknite za urejanje" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Nadzorna plošča" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s." -msgstr "Kliknite za urejanje %s." +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Naslov" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -msgid "Click to edit chart." -msgstr "Kliknite za urejanje grafikona." +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "Kliknite za urejanje oznake" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Vloge" -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "Kliknite za priljubljeno/nepriljubljeno" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Objavljeno" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "Kliknite za prisilno osvežitev" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "JSON za postavitev" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "Kliknite za prikaz razlike" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset-frontend/src/components/Table/index.tsx:231 -msgid "Click to sort ascending" -msgstr "Kliknite za naraščajoče razvrščanje" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSON-metapodatki" -#: superset-frontend/src/components/Table/index.tsx:230 -msgid "Click to sort descending" -msgstr "Kliknite za padajoče razvrščanje" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Izvoz" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:225 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "Close" -msgstr "Zapri" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Izvozim nadzorne plošče?" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "Zapri vse ostale zavihke" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" +msgstr "Nalaganje CSV" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "Zapri zavihek" +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "Izberite datoteko, ki bo naložena v podatkovno bazo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -msgid "Cluster label aggregator" -msgstr "Agregator za oznako gruče" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "Dovoljene so le naslednje končnice: %(allowed_extensions)s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:89 -msgid "Clustering Radius" -msgstr "Radij gručenja" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" +msgstr "Ime tabele, ki bo ustvarjena iz CSV podatkov" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "Koda" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "Ime tabele ne sme vsebovati sheme" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "Skrči vse" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "Izberite podatkovno bazo za nalaganje datoteke" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Collapse data panel" -msgstr "Skrij podatkovni panel" +#: superset/views/database/forms.py:145 +msgid "Column Data Types" +msgstr "Podatkovni tipi stolpcev" -#: superset-frontend/src/components/Table/index.tsx:229 -msgid "Collapse row" -msgstr "Skrij vrstico" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" +"Slovar z imeni in podatkovnimi tipi stolpcev, s pomočjo katerega " +"spremenite privzete nastavitve. Primer: {\"user_id\":\"integer\"}" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:601 -msgid "Collapse tab content" -msgstr "Skrij vsebino zavihka" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "Izberite shemo (če vrsta podatkovne baze to podpira)" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:199 -msgid "Collapse table preview" -msgstr "Zapri predogled tabele" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Ločilnik" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 -msgid "Color" -msgstr "Barva" +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" +msgstr "Vnesite ločilnik za te podatke" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:458 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:131 -msgid "Color +/-" -msgstr "Barva +/-" +#: superset/views/database/forms.py:164 +msgid "," +msgstr "," -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:239 -msgid "Color Metric" -msgstr "Mera za barvo" +#: superset/views/database/forms.py:165 +msgid "." +msgstr "." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:351 -msgid "Color Scheme" -msgstr "Barvna shema" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "Ostalo" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" -msgstr "Barvni koraki" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" +msgstr "Če tabela že obstaja" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 -msgid "Color bounds" -msgstr "Barvne meje" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" +msgstr "Kaj naj se zgodi, če tabela že obstaja" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 -msgid "Color by" -msgstr "Barva glede na" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Prekini" -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "Mera za barvo" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Zamenjaj" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:90 -msgid "Color of the target location" -msgstr "Barva ciljne lokacije" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Dodaj" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:63 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "Barvna shema" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Izpusti začetni presledek" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:177 -msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given cell " -"against the other cells in the selected range: " -msgstr "" -"Barvna lestvica bo ustvarjena na osnovi normiranih vrednosti (0% do 100%) " -"posameznih celic glede na ostale celice v izbranem obsegu: " +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" +msgstr "Izpusti presledke za ločilnikom" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 -msgid "Color: " -msgstr "Barva: " +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Izpusti prazne vrstice" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "Barve" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "Raje izpusti prazne vrstice, kot pa da so prepoznane kot NaN vrednosti" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:153 -msgid "Column" -msgstr "Stolpec" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" +msgstr "Stolpci, ki bodo prepoznani kot datumi" -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" +msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi" + +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "Dan prvi" + +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "DD/MM oblika datumov, mednarodna ali evropska oblika" + +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Decimalno ločilo" + +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" +msgstr "Znak, ki bo prepoznan kot decimalno ločilo" + +#: superset/views/database/forms.py:212 +msgid "Null Values" +msgstr "Prazne (Null) vrednosti" + +#: superset/views/database/forms.py:214 msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query results." -msgstr "Stolpec \"%(column)s\" ni numeričen ali ne obstaja v rezultatu poizvedbe." +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: " +"[\"\"] za prazne nize, [\"None\", \"N/A\"], [\"nan\", \"null\"]. " +"Opozorilo: Podatkovna baza Hive podpira le eno vrednost" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 -msgid "Column Configuration" -msgstr "Konfiguracija stolpca" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Indeksni stolpec" -#: superset/views/database/forms.py:145 -msgid "Column Data Types" -msgstr "Podatkovni tipi stolpcev" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" +"Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, " +"če ni indeksnega stolpca" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 -msgid "Column Formatting" -msgstr "Oblikovanje stolpca" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Indeks dataframe-a" + +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "Zapiši indeks dataframe-a kot stolpec" #: superset/views/database/forms.py:233 superset/views/database/forms.py:390 #: superset/views/database/forms.py:481 msgid "Column Label(s)" msgstr "Naslovi stolpcev" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 +#: superset/views/database/forms.py:234 msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your table." +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" -"Stolpec, ki vsebuje ISO 3166-2 oznake regij/provinc/departmajev v vaši tabeli." +"Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi " +"Dataframe-a obstajajo, se uporabijo imena slednjih" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:79 -msgid "Column containing latitude data" -msgstr "Stolpec s podatki zemljepisne širine" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" +msgstr "Stolpci za branje" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:69 -msgid "Column containing longitude data" -msgstr "Stolpec s podatki zemljepisne dolžine" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" +msgstr "Json seznam imen stolpcev, ki bodo prebrani" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 -msgid "Column datatype" -msgstr "Podatkovni tipi stolpcev" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" +msgstr "Prepiši podvojene stolpce" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -msgid "Column header tooltip" -msgstr "Opis glave stolpca" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" +msgstr "Če podvojeni stolpci niso izločeni, bodo označeni kot \"X.1, X.2 ...X.x\"" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "Zahtevan je stolpec" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Naslovna vrstica" -#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +#: superset/views/database/forms.py:256 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is True, " -"Index Names are used." +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" msgstr "" -"Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi Dataframe-a " -"obstajajo, se uporabijo imena indeksov." +"Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica " +"podatkov). Pustite prazno, če ni naslovne vrstice" -#: superset/views/database/forms.py:234 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is " -"checked, Index Names are used" -msgstr "" -"Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi Dataframe-a " -"obstajajo, se uporabijo imena slednjih" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Vrstice za branje" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 -msgid "Column name" -msgstr "Ime stolpca" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" +msgstr "Število vrstic v datoteki za branje" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:833 -#, python-format -msgid "Column name [%s] is duplicated" -msgstr "Ime stolpca [%s] je podvojeno" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Izpusti vrstice" -#: superset/utils/pandas_postprocessing/utils.py:153 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "Stolpec referenciran z agregacijo ni definiran: %(column)s" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "Število vrstic, ki se izpustijo na začetku datoteke" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" -msgstr "Izbira stolpca" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Ime tabele, ki bo ustvarjena iz Excel-ovih podatkov." -#: superset/views/database/forms.py:222 -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index column" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Excel-ova datoteka" + +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." + +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Ime zvezka" + +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." msgstr "" -"Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, če ni " -"indeksnega stolpca" +"Znakovni nizi uporabljeni za imena preglednic (privzeto je prva " +"preglednica)." -#: superset/views/database/forms.py:353 +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Podajte shemo (če vrsta podatkovne baze to podpira)" + +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "Tabela obstaja" + +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index column." +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" -"Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, če ni " -"indeksnega stolpca." +"Če tabela obstaja, naj se izvede naslednje: Prekini (ne naredi nič), " +"Zamenjaj (zbriši in ponovno ustvari tabelo) ali Dodaj (vstavi podatke)." -#: superset/views/database/forms.py:421 -msgid "Columnar File" -msgstr "Stolpčna datoteka" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." +msgstr "" +"Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica " +"podatkov). Pustite prazno, če ni naslovne vrstice." -#: superset/views/database/views.py:566 -#, python-format +#: superset/views/database/forms.py:353 msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" -"Stolpčna datoteka \"%(columnar_filename)s\" naložena v tabelo \"%(table_name)s\" " -"v podatkovni bazi \"%(db_name)s\"" +"Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, " +"če ni indeksnega stolpca." -#: superset/views/database/views.py:440 -msgid "Columnar to Database configuration" -msgstr "Nastavitve pretvorbe stolpčne oblike v podatkovno bazo" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Število vrstic, ki se izpustijo na začetku datoteke." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1439 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:442 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:70 -msgid "Columns" -msgstr "Stolpci" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Število vrstic v datoteki za branje." -#: superset/views/database/forms.py:194 -msgid "Columns To Be Parsed as Dates" -msgstr "Stolpci, ki bodo prepoznani kot datumi" - -#: superset/views/database/forms.py:242 -msgid "Columns To Read" -msgstr "Stolpci za branje" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Prepoznaj datume" -#: superset/common/query_context_processor.py:150 -#, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." +msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." -#: superset/viz.py:577 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Znak, ki bo prepoznan kot decimalno ločilo." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 -msgid "Columns subtotal position" -msgstr "Položaj delnih vsot stolpcev" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Zapiši indeks dataframe-a kot stolpec." -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -msgid "Columns to calculate distribution across." -msgstr "Stolpci za izračun porazdelitve." +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." +msgstr "" +"Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi " +"Dataframe-a obstajajo, se uporabijo imena indeksov." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:56 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" -msgstr "Stolpci za prikaz" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Prazne (Null) vrednosti" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:43 -msgid "Columns to group by" -msgstr "Stolpci za združevanje po" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" +"JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: " +"[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna " +"baza Hive podpira le eno vrednost. Uporabite [\"\"] za prazen znakovni " +"niz." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "Stolpci za združevanje po stolpcih" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "Ime tabele, ki bo ustvarjena iz stolpčnih podatkov." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "Stolpci za združevanje po vrsticah" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "Stolpčna datoteka" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -msgid "Columns to show" -msgstr "Stolpci za prikaz" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "Izberite stolpčno datoteko, ki bo naložena v podatkovno bazo." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:274 -msgid "Combine metrics" -msgstr "Združuj mere" +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "Uporabi stolpce" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:299 +#: superset/views/database/forms.py:471 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors " -"from the chosen color scheme and are 1-indexed. Length must be matching that of " -"interval bounds." +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" -"Z vejico ločene barve za intervale, npr. 1,2,4. Cela števila predstavljajo barve " -"iz barvne sheme (začnejo se z 1). Dolžina mora ustrezati mejam intervala." +"JSON seznam imen stolpcev, ki morajo biti prebrani. Če ni prazen, bodo iz" +" datoteke prebrani le ti stolpci." + +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Podatkovne baze" + +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Prikaži podatkovno bazo" + +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Dodaj podatkovno bazo" + +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Uredi podatkovno bazo" + +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Uporabi to podatkovno bazo v SQL laboratoriju" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:285 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last " -"number should match the value provided for MAX." +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -"Z vejico ločeni intervali, npr. 2,4,5 za intervale 0-2, 2-4 in 4-5. Zadnja " -"številka naj bo enaka vrednosti za MAX." +"Upravljanje podatkovne baze v asinhronem načinu pomeni, da se poizvedbe " +"zaženejo na oddaljenih »delavcih« in ne na samem spletnem strežniku. S " +"tem je predpostavljeno, da imate nastavljenega »delavca« za Celery in " +"zaledni sistem za rezultate. Več informacij je v navodilih za namestitev." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" -msgstr "Možnosti komparatorja" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Dovoli opcijo CREATE TABLE AS v SQL laboratoriju" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Dovoli opcijo CREATE VIEW AS v SQL laboratoriju" + +#: superset/views/database/mixins.py:114 msgid "" -"Compare multiple time series charts (as sparklines) and related metrics quickly." +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" -"Hitra primerjava več grafikonov časovnih vrst (sparkline način) in povezanih mer." - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "Primerja isto mero med različnimi skupinami." +"Dovoli uporabnikom poganjanje ne-SELECT stavkov (UPDATE, DELETE, CREATE, " +"...) v SQL laboratoriju" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +#: superset/views/database/mixins.py:119 msgid "" -"Compares how a metric changes over time between different groups. Each group is " -"mapped to a row and change over time is visualized bar lengths and color." +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" msgstr "" -"Primerja kako se mera spreminja s časom med različnimi skupinami. Vsaka skupina " -"predstavlja eno vrstico, časovne spremembe pa so prikazane z dolžino stolpcev in " -"barvami." +"Z dovolitvijo opcije CREATE TABLE AS v SQL laboratoriju se tabele " +"ustvarjajo s to shemo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +#: superset/views/database/mixins.py:165 msgid "" -"Compares metrics from different categories using bars. Bar lengths are used to " -"indicate the magnitude of each value and color is used to differentiate groups." +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -"Primerjava mer različnih kategorij s pomočjo stolpcev. Dolžina stolpca prestavlja " -"višino vrednosti, z barvami pa so ločene skupine." +"V primeru Presto se vse poizvedbe v SQL laboratoriju zaženejo pod " +"trenutno prijavljenim uporabnikom, ki mora imeti pravice za " +"poganjanje.
Če je omogočen Hive in hive.server2.enable.doAs, " +"poizvedbe tečejo pod servisnim računom, vendar je trenutno prijavljen " +"uporabnik predstavljen z lastnostjo hive.server2.proxy.user." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +#: superset/views/database/mixins.py:172 msgid "" -"Compares the lengths of time different activities take in a shared timeline view." -msgstr "Primerja dolžine časovno različnih aktivnosti na skupni časovnici." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "" +"Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. " +"Vrednost 0 označuje, da predpomnilnik nikoli ne poteče. V primeru, da ni " +"definirano, ima globalno nastavitev." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" -msgstr "Primerjava" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "" +"Če je izbrano, nastavite dovoljene sheme za nalaganje CSV v razdelku " +"\"Dodatno\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 -msgid "Comparison Period Lag" -msgstr "Preteklo obdobje za primerjavo" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Uporabi v SQL laboratoriju" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Comparison suffix" -msgstr "Pripona za procent" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Dovoli CREATE TABLE AS" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:27 -msgid "Compose multiple layers together to form complex visuals." -msgstr "Združi več plasti za oblikovanje kompleksnih vizualizacij." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Dovoli CREATE VIEW AS" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 -#: superset-frontend/src/explore/controlPanels/sections.tsx:112 -msgid "Compute the contribution to the total" -msgstr "Izračunaj prispevek k celoti" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Dovoli DML" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Condition" -msgstr "Pogoj" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "CTAS shema" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -msgid "Conditional Formatting" -msgstr "Pogojno oblikovanje" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "SQLAlchemy URI" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:410 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:510 -msgid "Conditional formatting" -msgstr "Pogojno oblikovanje" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "Trajanje predpomnilnika grafikona" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" -msgstr "Interval zaupanja" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Dodatna varnost" -#: superset/utils/pandas_postprocessing/prophet.py:130 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "Interval zaupanja mora biti med 0 in 1 (odprt)" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Korenski certifikat" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "Nastavitve" +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Asinhrono izvajanje" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "Nastavi napredno časovno obdobje " +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Predstavljaj se kot prijavljeni uporabnik" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "Nastavi časovno obdobje: Zadnji ..." +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Dovoli nalaganje CSV" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "Nastavi časovno obdobje: Prejšnji ..." +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Zaledni sistem" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "Nastavi prilagojeno časovno obdobje" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Dodatnega polja ni mogoče dekodirati z JSON. %(msg)s" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "Nastavi doseg filtrov" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" +msgstr "" +"Neveljaven niz povezave. Veljaven niz običajno sledi " +"zapisu:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Configure the basics of your Annotation Layer." -msgstr "Osnovne nastavitve sloja z oznakami." +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "Nastavitve pretvorbe CSV v podatkovno bazo" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." -msgstr "Nastavite nadzorno ploščo za vgradnjo v zunanjo spletno aplikacijo." +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." +msgstr "" +"Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni " +"dovoljena za nalaganje CSV. Kontaktirajte administratorja za Superset." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Configure your how you overlay is displayed here." -msgstr "Nastavite kako se tukaj prikazuje vrhnja plast." +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"CSV datoteke \"%(filename)s\" ni mogoče naložiti v tabelo " +"\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: " +"%(error_msg)s" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -msgid "Confirm overwrite" -msgstr "Potrdite prepis" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" +msgstr "" +"CSV datoteka \"%(csv_filename)s\" naložena v tabelo \"%(table_name)s\" v " +"podatkovni bazi \"%(db_name)s\"" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 -msgid "Confirm save" -msgstr "Potrdite shranjevanje" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1124 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1162 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "Poveži" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Nastavitve pretvorbe Excel v Podatkovno bazo" -#: superset-frontend/src/features/home/RightMenu.tsx:185 -msgid "Connect Google Sheet" -msgstr "Povežite Googlovo preglednico" +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." +msgstr "" +"Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni " +"dovoljena za nalaganje Excel datotek. Kontaktirajte administratorja za " +"Superset." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "Googlove preglednice poveži s to podatkovno bazo kot tabele" +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Excel datoteke \"%(filename)s\" ni mogoče naložiti v tabelo " +"\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: " +"%(error_msg)s" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" -msgstr "Poveži se s podatkovno bazo" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Excel datoteka \"%(excel_filename)s\" naložena v tabelo " +"\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" -#: superset-frontend/src/features/home/RightMenu.tsx:174 -msgid "Connect database" -msgstr "Poveži se s podatkovno bazo" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "Nastavitve pretvorbe stolpčne oblike v podatkovno bazo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" -msgstr "S podatkovno bazo se povežite z dinamičnim obrazcem" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." +msgstr "" +"Za nalaganje stolpčnih datotek niso dovoljene različne končnice. " +"Poskrbite, da imajo vse datoteke enake končnice." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "S to podatkovno bazo se raje povežite z SQLAlchemy URI nizom" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." +msgstr "" +"Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni " +"dovoljena za nalaganje stolpčnih datotek. Kontaktirajte administratorja " +"za Superset." -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "Povezava" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" +"Stolpčne datoteke \"%(filename)s\" ni mogoče naložiti v tabelo " +"\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: " +"%(error_msg)s" -#: superset/commands/database/exceptions.py:107 -#: superset/commands/database/exceptions.py:124 -msgid "Connection failed, please check your connection settings" -msgstr "Povezava neuspešna. Preverite nastavitve povezave" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" +msgstr "" +"Stolpčna datoteka \"%(columnar_filename)s\" naložena v tabelo " +"\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -msgid "Connection looks good!" -msgstr "Povezava izgleda v redu!" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "Zahtevaj manjkajoča podatkovna polja." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:672 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:683 -msgid "Continue" -msgstr "Nadaljuj" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "Podvojena imena stolpcev: %(columns)s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -msgid "Continuous" -msgstr "Zvezno" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Dnevniki" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 -msgid "Contours" -msgstr "Plastnice" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Prikaži dnevnik" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:110 -msgid "Contribution" -msgstr "Prispevek" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Dodaj dnevnik" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" -msgstr "Način prikaza deležev" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Uredi dnevnik" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -msgid "Control" -msgstr "Nadzor" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Uporabnik" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "Nastavitev " +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Aktivnost" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " -msgstr "Kontrolniki imenovani " +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "datum-čas" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -msgid "Coordinates" -msgstr "Koordinate" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 -msgid "Copied to clipboard!" -msgstr "Kopirano na odložišče!" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" +msgstr "Neimenovana poizvedba" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 -msgid "Copy" -msgstr "Kopiraj" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "Časovno obdobje" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 -msgid "Copy SELECT statement to the clipboard" -msgstr "Kopiraj stavek SELECT na odložišče" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" +msgstr "Časovni stolpec" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "Kopiraj in prilepi JSON prijavne podatke" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "Granulacija časa" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "Tukaj kopirajte in prilepite celotno json datoteko servisnega računa" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "Granulacija časa" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 -msgid "Copy link" -msgstr "Kopiraj povezavo" +# SUPERSET UI +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Čas" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 -msgid "Copy message" -msgstr "Kopiraj sporočilo" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "Sklic na nastavitve za [Čas], ki upošteva granulacijo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:599 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1208 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 -#, python-format -msgid "Copy of %s" -msgstr "Kopija %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "Agregacija" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 -msgid "Copy partition query to clipboard" -msgstr "Kopiraj particijsko poizvedbo na odložišče" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "Surovi podatki" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:316 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 -msgid "Copy permalink to clipboard" -msgstr "Kopiraj povezavo v odložišče" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +msgid "Category name" +msgstr "Ime kategorije" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:409 -msgid "Copy query URL" -msgstr "Kopiraj URL poizvedbe" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +msgid "Total value" +msgstr "Skupna vsota" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 -msgid "Copy query link to your clipboard" -msgstr "Kopiraj povezavo do poizvedbe v odložišče" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" +msgstr "Minimalna vrednost" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the identifier of the account you are trying to connect to." -msgstr "Kopirajte ID računa, s katerim se skušate povezati." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" +msgstr "Maksimalna vrednost" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "Kopirajte naziv HTTP poti vaše gruče." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" +msgstr "Povprečna vrednost" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 -msgid "Copy the name of the database you are trying to connect to." -msgstr "Kopirajte ime podatkovne baze, s katero se skušate povezati." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "Certificiral/a %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 -msgid "Copy to Clipboard" -msgstr "Kopiraj na odložišče" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "opis" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "Kopiraj na odložišče" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "vijak" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 -msgid "Correlation" -msgstr "Korelacija" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Sprememba tega kontrolnika se odrazi takoj" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "Ocena potratnosti" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "Prikaži opis orodja" -#: superset/db_engine_specs/ocient.py:257 -#, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "Neuspešna povezava s podatkovno bazo: \"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "SQL-izraz" -#: superset/views/utils.py:493 -msgid "Could not determine datasource type" -msgstr "Ni mogoče določiti tipa podatkovnega vira" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +msgid "Column datatype" +msgstr "Podatkovni tipi stolpcev" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "Vseh shranjenih grafikonov ni bilo mogoče pridobiti" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" +msgstr "Ime stolpca" -#: superset/views/utils.py:509 -msgid "Could not find viz object" -msgstr "Ni mogoče najti vizualizacijskega objekta" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Naziv" -#: superset/commands/database/exceptions.py:132 -msgid "Could not load database driver" -msgstr "Ni mogoče naložiti gonilnika podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" +msgstr "Ime mere" -#: superset/commands/database/test_connection.py:177 -msgid "Could not load database driver: {}" -msgstr "Ni mogoče naložiti gonilnika podatkovne baze: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" +msgstr "ikona neznanega tipa" -#: superset/db_engine_specs/ocient.py:262 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "Gostitelj ni dosegljiv: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "ikona funkcijskega tipa" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -msgid "Count" -msgstr "Število" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "ikona znakovnega tipa" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -msgid "Count Unique Values" -msgstr "Število unikatnih" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "ikona numeričnega tipa" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" -msgstr "Štetje kot delež stolpcev" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "ikona binarnega tipa" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" -msgstr "Štetje kot delež vrstic" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "ikona časovnega tipa" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" -msgstr "Štetje kot delež skupne vsote" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Napredna analitika" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" -msgstr "Država" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"Ta sekcija vsebuje možnosti, ki omogočajo napredno analitično " +"poprocesiranje rezultatov poizvedb" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:156 -msgid "Country Color Scheme" -msgstr "Barvna shema držav" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Drseče okno" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Country Column" -msgstr "Stolpec z državami" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Drseča funkcija" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" -msgstr "Tip polja za države" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Brez" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1524 -msgid "Country Map" -msgstr "Zemljevid držav" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" +msgstr "Določi funkcijo drsečega okna. Dela skupaj s tekstovnim okvirjem [Obdobja]" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:870 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:879 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "Ustvari" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Št. period" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -msgid "Create Chart" -msgstr "Ustvarite grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "Določi velikost funkcije drsečega okna, glede na izbrano granulacijo časa" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:390 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -msgid "Create a dataset" -msgstr "Ustvarite podatkovni set" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Min. št. period" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -"Ustvarite podatkovni set, da začnete vizualizacijo podatkov z grafikonom ali\n" -" pojdite v SQL-laboratorij za poizvedovanje nad podatki." +"Minimalno število drsečih obdobij, potrebnih za prikaz vrednosti. Če " +"računate kumulativno vsoto 7-dnevnega obdobja, boste nastavili \"Min. št." +" period\" na 7. Tako bodo vse prikazane točke skupaj obsegale 7 obdobij. " +"To bo prikrilo rampo, ki bi trajala prvih 7 obdobij" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:333 -msgid "Create a new chart" -msgstr "Ustvarite nov grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Časovna primerjava" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -msgid "Create chart" -msgstr "Ustvarite grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Časovni zamik" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" -msgstr "Ustvarite grafikon s podatkovnim setom" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "1 day ago" -#: superset-frontend/src/features/home/RightMenu.tsx:179 -msgid "Create dataset" -msgstr "Ustvarite podatkovni set" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "1 week ago" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -msgid "Create dataset and create chart" -msgstr "Ustvarite podatkovni set in grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "28 days ago" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:382 -msgid "Create new chart" -msgstr "Ustvarite nov grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" +msgstr "30 days ago" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "Ustvarite nov set filtrov" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "52 weeks ago" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "Ustvarite ali izberite shemo..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "1 year ago" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "Ustvarjene" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "104 weeks ago" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -msgid "Created by" -msgstr "Ustvaril" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "2 years ago" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -msgid "Created by me" -msgstr "Ustvarjeno z moje strani" - -#: superset-frontend/src/pages/Profile/index.tsx:62 -msgid "Created content" -msgstr "Ustvarjena vsebina" - -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 -msgid "Created on" -msgstr "Ustvarjeno" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "156 weeks ago" -#: superset/commands/database/ssh_tunnel/exceptions.py:46 -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "Ustvarjanje SSH-tunela ni uspelo zaradi neznanega razloga" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "3 years ago" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "Ustvarjanje podatkovnega vira in novega zavihka" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša " +"se relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 " +"hours, 7 days, 52 weeks, 365 days). Prosto besedilo je podprto." -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "Avtor" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Tip izračuna" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:52 -msgid "Crimson" -msgstr "Škrlatna" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" +msgstr "Dejanske vrednosti" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." -msgstr "" -"Medsebojni filter bo uporabljen za vse grafikone, ki uporabljajo ta podatkovni " -"set." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" +msgstr "Razlika" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Medsebojni filtri za to nadzorno ploščo niso omogočeni." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" +msgstr "Procentualna sprememba" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Medsebojni filtri za to nadzorno ploščo niso omogočeni" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" +msgstr "Razmerje" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:419 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -msgid "Cross-filtering scoping" -msgstr "Doseg medsebojnih filtrov" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "" +"Način prikaza časovnih zamikov: kot samostojne črte; kot razlike med " +"osnovno časovno vrsto in vsakim časovnim zamikom; kot procentualna " +"sprememba; kot razmerje med vrsto in časovnim zamikom." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -msgid "Cross-filters" -msgstr "Medsebojni filtri" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "Prevzorči" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" -msgstr "Kumulativno" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Pravilo" -#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 -msgid "Currency" -msgstr "Valuta" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "frekvenca: 1 minuta" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:330 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:149 -msgid "Currency format" -msgstr "Oblika zapisa valute" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" +msgstr "frekvenca: 1 ura" -#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 -msgid "Currency prefix or suffix" -msgstr "Predpona ali pripona valute" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "frekvenca: 1 koledarski dan" -#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 -msgid "Currency symbol" -msgstr "Simbol valute" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "frekvenca: 7 koledarskih dni" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" -msgstr "Trenutno izrisano: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "frekvenca: 1 mesec - začetek" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" -msgstr "Prilagojen" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "frekvenca: 1 mesec - konec" -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "Prilagojeni vtičnik" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" +msgstr "frekvenca: 1 leto - začetek" -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "Prilagojeni vtičniki" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" +msgstr "frekvenca: 1 leto - konec" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "Prilagojen SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Pravilo za prevzorčenje v Pandas" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" -msgstr "Ad-hoc SQL mere po meri za ta podatkovni set niso omogočene" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "Način polnjenja" -#: superset/errors.py:147 superset/models/helpers.py:132 -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "Prilagojena SQL-polja ne smejo vsebovati podpoizvedb." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" +msgstr "Nadomeščanje Null-vrednosti" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "Prilagojeni vtičnik za časovni filter" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" +msgstr "Nadomeščanje ničel" -#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 -msgid "Custom width of the screenshot in pixels" -msgstr "Poljubna širina zaslonske slike v pikslih" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "Linearna interpolacija" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:763 -msgid "Customize" -msgstr "Prilagodi" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" +msgstr "Prihodnje vrednosti" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Customize Metrics" -msgstr "Prilagodi mere" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" +msgstr "Prejšnje vrednosti" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 -msgid "" -"Customize chart metrics or columns with currency symbols as prefixes or suffixes. " -"Choose a symbol from dropdown or type your own." -msgstr "" -"Prilagodi mere grafikona ali stolpce s predponami ali priponami valute. Izberite " -"simbol ali napišite lastnega." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" +msgstr "Mediane" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:486 -msgid "Customize columns" -msgstr "Prilagodi stolpce" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" +msgstr "Srednje vrednosti" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 -msgid "Cyclic dependency detected" -msgstr "Zaznana krožna odvisnost" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" +msgstr "Vsote" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Metoda za prevzorčenje v Pandas" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1268 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:46 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:60 -msgid "D3 format" -msgstr "D3 format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "Oznake in sloji" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:147 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "Sintaksa D3 formata: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" +msgstr "Levo" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want to have " -"different significant digits for small and large numbers" -msgstr "" -"D3 format zapisa za števila med -1.0 in 1.0. Uporabno, če želite različno število " -"števk za majhna in velika števila" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" +msgstr "Zgoraj" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:396 -msgid "D3 time format for datetime columns" -msgstr "D3 format zapisa za časovne stolpce" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "Naslov grafikona" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "Sintaksa D3 časovnega formata: https://github.com/d3/d3-time-format" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 -msgid "DATETIME" -msgstr "DATETIME" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "X-os" -#: superset/utils/encrypt.py:121 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" -msgstr "Stolpec %(col_name)s ima neznan tip: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "Naslov X-osi" -#: superset/views/database/forms.py:202 -msgid "DD/MM format dates, international and European format" -msgstr "DD/MM oblika datumov, mednarodna ali evropska oblika" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "SPODNJA OBROBA NASLOVA X-OSI" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "DEC" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Y-os" -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "IZBRIŠI" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "Naslov Y-osi" -#: superset-frontend/src/pages/DatabaseList/index.tsx:367 -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "Rob naslova Y-osi" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "Dnevna sezonskost" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +msgid "Y Axis Title Position" +msgstr "Položaj naslova Y-osi" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 -msgid "Dark" -msgstr "Temno" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Poizvedba" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 -msgid "Dark Cyan" -msgstr "Temno sinja" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "Prediktivna analitika" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" -msgstr "Temni način" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "Omogoči napoved" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 -#: superset-frontend/src/features/home/DashboardTable.tsx:194 -#: superset-frontend/src/features/home/RightMenu.tsx:229 -#: superset-frontend/src/pages/ChartList/index.tsx:660 -#: superset-frontend/src/pages/DashboardList/index.tsx:653 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 -msgid "Dashboard" -msgstr "Nadzorna plošča" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "Omogoči napovedovanje" -#: superset-frontend/src/explore/actions/saveModalActions.js:153 -#, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "Nadzorna plošča [%s] je bila ravno ustvarjena in grafikon [%s] dodan nanjo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "Periode napovedi" -#: superset/views/core.py:717 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Nadzorna plošča [{}] je bila ravno ustvarjena in grafikon [{}] dodan nanjo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "Za koliko period v prihodnosti želite napoved" -#: superset/commands/dashboard/exceptions.py:62 -msgid "Dashboard could not be deleted." -msgstr "Nadzorne plošče ni mogoče izbrisati." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "Interval zaupanja" -#: superset/commands/dashboard/exceptions.py:58 -msgid "Dashboard could not be updated." -msgstr "Nadzorne plošče ni mogoče posodobiti." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "Širina intervala zaupanja. Mora bit med 0 in 1" -#: superset/commands/report/exceptions.py:46 -msgid "Dashboard does not exist" -msgstr "Nadzorna plošča ne obstaja" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "Letna sezonskost" -#: superset-frontend/src/pages/DashboardList/index.tsx:177 -msgid "Dashboard imported" -msgstr "Nadzorna plošča uvožena" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" +msgstr "privzeto" -#: superset/commands/dashboard/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "Parametri nadzorne plošče so neveljavni." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Da" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "Lastnosti nadzorne plošče" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Ne" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -msgid "Dashboard properties updated" -msgstr "Lastnosti nadzorne plošče posodobljene" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Če želite letno sezonskost. Celo število določa Fourier-jev red " +"sezonskosti." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" -msgstr "Shema nadzorne plošče" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "Tedenska sezonskost" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:873 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the chart\n" -" filters to have this dashboard filter impact those charts." +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -"Filtri časovnega obdobja vplivajo na časovne stolpce, definirane v\n" -"\tfiltrski sekciji vsakega grafikona. Filtrom grafikonov dodajte časovne " -"stolpce,\n" -"\t da bodo filtri nadzorne plošče imeli učinek nanje." +"Če želite tedensko sezonskost. Celo število določa Fourier-jev red " +"sezonskosti." -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 -msgid "Dashboard title" -msgstr "Naziv nadzorne plošče" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "Dnevna sezonskost" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -msgid "Dashboard usage" -msgstr "Uporaba nadzorne plošče" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Če želite dnevno sezonskost. Celo število določa Fourier-jev red " +"sezonskosti." -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 -#: superset-frontend/src/features/profile/CreatedContent.tsx:101 -#: superset-frontend/src/features/profile/Favorites.tsx:99 -#: superset-frontend/src/features/tags/TagModal.tsx:316 -#: superset-frontend/src/pages/DashboardList/index.tsx:680 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset/initialization/__init__.py:255 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "Nadzorne plošče" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "S časom povezani atributi prikaza" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 -#: superset-frontend/src/pages/ChartList/index.tsx:406 -msgid "Dashboards added to" -msgstr "Dodano na nadzorne plošče" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" +msgstr "Tip podatkovnega vira in grafikona" -#: superset/commands/dashboard/exceptions.py:54 -msgid "Dashboards could not be created." -msgstr "Nadzornih plošč ni mogoče ustvariti." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "ID grafikona" -#: superset/commands/chart/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "Nadzorna plošča ne obstaja" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "Identifikator aktivnega grafikona" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -msgid "Dashed" -msgstr "Črtkano" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Trajanje predpomnilnika (sekunde)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:706 -#: superset-frontend/src/features/home/RightMenu.tsx:170 -#: superset/initialization/__init__.py:250 -msgid "Data" -msgstr "Podatki" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "Trajanje (v sekundah) do razveljavitve predpomnilnika" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" -msgstr "Tabela podatkov" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "Parametri URL" -#: superset/commands/dataset/exceptions.py:193 -msgid "Data URI is not allowed." -msgstr "URI za podatke ni dovoljen." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Dodatni parametri za poizvedbe z Jinja predlogami" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:179 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:108 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:108 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:160 -msgid "Data Zoom" -msgstr "Zoom funkcija" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "Dodatni parametri" -#: superset/commands/sql_lab/results.py:116 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 msgid "" -"Data could not be deserialized from the results backend. The storage format might " -"have changed, rendering the old data stake. You need to re-run the original query." +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -"Podatkov ni bilo mogoče deserializirati iz zalednega sistema rezultatov. Lahko je " -"prišlo do spremembe oblike zapisa. Ponovno zaženite izvorno poizvedbo." +"Dodatni parametri, ki jih lahko uporabi kateri koli vtičnik za poizvedbe " +"z Jinja predlogami" -#: superset/commands/sql_lab/results.py:75 -msgid "" -"Data could not be retrieved from the results backend. You need to re-run the " -"original query." -msgstr "" -"Podatkov ni bilo mogoče pridobiti iz zalednega sistema rezultatov. Ponovno morate " -"zagnati izvorno poizvedbo." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "Barvna shema" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 -msgid "Data preview" -msgstr "Ogled podatkov" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:279 -msgid "Data refreshed" -msgstr "Podatki osveženi" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "Način prikaza deležev" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 -msgid "Data type" -msgstr "Tip podatka" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Vrstica" -#: superset/utils/pandas_postprocessing/prophet.py:135 -msgid "DataFrame include at least one series" -msgstr "DataFrame vsebuje vsaj eno serijo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Serije" -#: superset/utils/pandas_postprocessing/prophet.py:133 -msgid "DataFrame must include temporal column" -msgstr "DataFrame mora vsebovati časovni stolpec" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "Izračunaj delež za serijo ali vrstico" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 -#: superset-frontend/src/pages/DatabaseList/index.tsx:302 -#: superset-frontend/src/pages/DatasetList/index.tsx:376 -#: superset-frontend/src/pages/DatasetList/index.tsx:543 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:303 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:454 -#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 -#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 -msgid "Database" -msgstr "Podatkovna baza" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "\"Razvrsčanje po\" za Y-os" -#: superset/views/database/views.py:479 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for " -"columnar uploads. Please contact your Superset Admin." -msgstr "" -"Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za " -"nalaganje stolpčnih datotek. Kontaktirajte administratorja za Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "\"Razvrsčanje po\" za X-os" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv " -"uploads. Please contact your Superset Admin." -msgstr "" -"Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za " -"nalaganje CSV. Kontaktirajte administratorja za Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "Odloči, po katerem stolpcu bo razvrščena osnovna os." -#: superset/views/database/views.py:319 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for " -"excel uploads. Please contact your Superset Admin." -msgstr "" -"Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni dovoljena za " -"nalaganje Excel datotek. Kontaktirajte administratorja za Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" +msgstr "Razvrsti Y-os naraščajoče" -#: superset/initialization/__init__.py:247 -msgid "Database Connections" -msgstr "Povezave na podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" +msgstr "Razvrsti X-os naraščajoče" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1532 -msgid "Database Creation Error" -msgstr "Napaka pri ustvarjanju podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Če želite padajoče ali naraščajoče razvrščanje na osnovni osi." -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:886 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:908 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1215 -msgid "Database connected" -msgstr "Podatkovna baza povezana" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Kategorija izvora" -#: superset/commands/database/exceptions.py:96 -msgid "Database could not be created." -msgstr "Podatkovne baze ni mogoče ustvariti." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." +msgstr "" -#: superset/commands/database/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "Podatkovne baze ni mogoče izbrisati." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." +msgstr "Odloči, po kateri meri bo razvrščena osnovna os." -#: superset/commands/database/exceptions.py:100 -msgid "Database could not be updated." -msgstr "Podatkovne baze ni mogoče posodobiti." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" +msgstr "Dimenzije" -#: superset/errors.py:125 -msgid "Database does not allow data manipulation." -msgstr "Podatkovna baza ne dovoljuje manipulacije podatkov." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." +msgstr "" +"Dimenzije vsebujejo vrednosti, kot so imena, datumi ali geografski " +"podatki. Dimenzije uporabite za kategorizacijo, segmentiranje oz. da " +"prikažete podrobnosti podatkov. Dimenzije vplivajo na nivo podrobnosti " +"pogleda." -#: superset/commands/chart/exceptions.py:82 -#: superset/commands/dataset/exceptions.py:41 -#: superset/commands/report/exceptions.py:37 -msgid "Database does not exist" -msgstr "Podatkovna baza ne obstaja" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +msgid "Add dataset columns here to group the pivot table columns." +msgstr "Dodaj stolpce podatkovnega seta za združevanje stolpcev vrtilne tabele." -#: superset/models/helpers.py:2085 -msgid "Database does not support subqueries" -msgstr "Podatkovna baza ne podpira podpoizvedb" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" +msgstr "Dimenzija" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." msgstr "" -"Gonilnik podatkovne baze za uvoz ni nameščen. Za navodila pojdite na " -"dokumentacijo Superseta: " +"Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno " +"barvo." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:481 -msgid "Database error" -msgstr "Napaka podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Entiteta" -#: superset/commands/database/validate.py:124 -msgid "Database is offline." -msgstr "Podatkovna baza ni povezana." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Določa element, ki bo izrisan na grafikonu" -#: superset/commands/report/exceptions.py:64 -msgid "Database is required for alerts" -msgstr "Podatkovna baza je obvezna za opozorila" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Filtri" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 -#: superset/db_engine_specs/base.py:1994 superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databend.py:191 -msgid "Database name" -msgstr "Ime podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" +"Izberite eno ali več mer za prikaz. Uporabite lahko agregacijsko funkcijo" +" ali napišete poljuben SQL-izraz za mero." -#: superset/commands/dataset/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "Podatkovne baze ni dovoljeno spreminjati" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" +"Izberite mero za prikaz. Uporabite lahko agregacijsko funkcijo na stolpcu" +" ali napišete poljuben SQL-izraz za mero." -#: superset/commands/database/exceptions.py:92 -msgid "Database not found." -msgstr "Podatkovna baza ni najdena." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "Mera desne osi" -#: superset/commands/database/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "Parametri podatkovne baze so neveljavni." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +msgid "Select a metric to display on the right axis" +msgstr "Izberite mero za prikaz na desni osi" -#: superset-frontend/src/components/ImportModal/index.tsx:291 -msgid "Database passwords" -msgstr "Gesla podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Razvrščanje po" -#: superset/db_engine_specs/base.py:1990 superset/db_engine_specs/clickhouse.py:207 -#: superset/db_engine_specs/databend.py:188 -#: superset/db_engine_specs/databricks.py:53 -msgid "Database port" -msgstr "Vrata podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" +"Mera, ki določa kako so razvrščene vrstice, če je določena omejitev serij" +" ali vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:857 -msgid "Database settings updated" -msgstr "Nastavitve podatkovne baze posodobljene" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "Velikost mehurčka" -#: superset-frontend/src/features/profile/Security.tsx:47 -#: superset-frontend/src/pages/DatabaseList/index.tsx:293 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "Podatkovne baze" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "Mera za izračun velikosti mehurčkov" -#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 -#: superset/views/database/forms.py:478 -msgid "Dataframe Index" -msgstr "Indeks dataframe-a" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "Stolpec/mera podatkovnega seta, ki vrne vrednosti za x-os grafikona." -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:883 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:920 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:342 -#: superset-frontend/src/pages/ChartList/index.tsx:386 -#: superset-frontend/src/pages/ChartList/index.tsx:615 -#: superset-frontend/src/pages/DatasetList/index.tsx:650 -msgid "Dataset" -msgstr "Podatkovni set" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "Stolpec/mera podatkovnega seta, ki vrne vrednosti za y-os grafikona." -#: superset/commands/dataset/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "Podatkovni set %(name)s že obstaja" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "Mera za barvo" -#: superset-frontend/src/explore/components/SaveModal.tsx:371 -msgid "Dataset Name" -msgstr "Ime podatkovnega seta" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Mera za barvo" -#: superset/commands/dataset/columns/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "Brisanje stolpca podatkovnega seta neuspešno." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "" +"Časovni stolpec za vizualizacijo. Določite lahko poljuben izraz, ki vrne " +"DATETIME stolpec v tabeli. Spodnji filter se nanaša na ta stolpec ali " +"izraz" -#: superset/commands/dataset/columns/exceptions.py:23 -msgid "Dataset column not found." -msgstr "Stolpec podatkovnega seta ni najden." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "Spustite stolpec sem ali kliknite" -#: superset/commands/dataset/exceptions.py:157 -msgid "Dataset could not be created." -msgstr "Podatkovnega niza ni mogoče ustvariti." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "Y-os" -#: superset/commands/dataset/exceptions.py:189 -msgid "Dataset could not be duplicated." -msgstr "Podatkovnega niza ni mogoče duplicirati." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "Dimenzija za y-os." -#: superset/commands/dataset/exceptions.py:161 -#: superset/commands/dataset/exceptions.py:169 -msgid "Dataset could not be updated." -msgstr "Podatkovnega niza ni mogoče posodobiti." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "X-os" -#: superset/commands/dataset/exceptions.py:149 -msgid "Dataset does not exist" -msgstr "Podatkovni set ne obstaja" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "Dimenzija za x-os." -#: superset-frontend/src/pages/DatasetList/index.tsx:203 -msgid "Dataset imported" -msgstr "Podatkovni set uvožen" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Tip vizualizacije za prikaz" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:901 -msgid "Dataset is required" -msgstr "Zahtevan je podatkovni set" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "Fiksna barva" -#: superset/commands/dataset/metrics/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "Brisanje mere podatkovnega seta ni uspelo." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "S tem definirate določeno barvo za vse kroge" -#: superset/commands/dataset/metrics/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "Mer podatkovnega seta ni najdena." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "Linearna barvna shema" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1124 -msgid "Dataset name" -msgstr "Ime podatkovnega seta" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "vsi" -#: superset/commands/dataset/exceptions.py:153 -msgid "Dataset parameters are invalid." -msgstr "Parametri podatkovnega seta so neveljavni." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" +msgstr "5 seconds" -#: superset/dashboards/api.py:412 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" -msgstr "Shema podatkovnega seta ni veljavna, zaradi napake: %(error)s" - -#: superset-frontend/src/features/profile/Security.tsx:61 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:388 -#: superset-frontend/src/pages/DatasetList/index.tsx:633 -#: superset/initialization/__init__.py:271 -msgid "Datasets" -msgstr "Podatkovni seti" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 seconds" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 -msgid "" -"Datasets can be created from database tables or SQL queries. Select a database " -"table to the left or " -msgstr "" -"Podatkovni set lahko ustvarite iz tabel podatkovne baze ali s pomočjo SQL-" -"poizvedbe. Izberite tabelo podatkovne baze na levi ali " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 minuta" -#: superset/connectors/sqla/views.py:387 -msgid "" -"Datasets can have a main temporal column (main_dttm_col), but can also have " -"secondary time columns. When this attribute is true, whenever the secondary " -"columns are filtered, the same filter is applied to the main datetime column." -msgstr "" -"Podatkovni seti imajo lahko glavni časovni stolpec (main_dttm_col), lahko pa " -"imajo tudi sekundarnega. Če je ta atribut izbran, se hkrati s filtriranjem " -"sekundarnih stolpcev filtrira tudi glavni časovni stolpec." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 minutes" -#: superset/commands/dataset/exceptions.py:165 -msgid "Datasets could not be deleted." -msgstr "Podatkovnih nizov ni mogoče izbrisati." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 minutes" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:852 -msgid "Datasets do not contain a temporal column" -msgstr "Podatkovni seti ne vsebujejo časovnega stolpca" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 ura" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:111 -#: superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "Podatkovni vir" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" +msgstr "1 dan" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" -msgstr "Tip podatkovnega vira in grafikona" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" +msgstr "7 days" -#: superset/commands/exceptions.py:135 -msgid "Datasource does not exist" -msgstr "Podatkovni vir ne obstaja" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "teden" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" -msgstr "Neveljaven tip podatkovnega vira" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "teden z začetkom v nedeljo" -#: superset/commands/chart/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "Ko se podaja datasource_id, je potreben tip podatkovnega vira" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "teden s koncem v soboto" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:157 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 -msgid "Date Time Format" -msgstr "Oblika zapisa za Datum-Čas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "mesec" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "Filter po datumu" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" -msgstr "Oblika zapisa datuma" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" +msgstr "četrtletje" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 -msgid "Date format string" -msgstr "Niz za obliko datuma" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "leto" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "Datum/Čas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "" +"Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim " +"jezikom, kot npr. `10 sekund`, `1 dni` ali `56 tednov`" -#: superset/connectors/sqla/views.py:161 -msgid "Datetime Format" -msgstr "Oblika zapisa datuma,časa" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" +"Izberite časovno granulacijo prikaza. Granulacija predstavlja časovni " +"interval med točkami na grafikonu." -#: superset/models/helpers.py:1521 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 msgid "" -"Datetime column not provided as part table configuration and is required by this " -"type of chart" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." msgstr "" -"Stolpec datum-čas ni podan kot del tabele, čeprav mora biti za ta tip grafikona" +"Ta kontrolnik filtrira celoten grafikon glede na izbrano časovno obdobje." +" Vsi relativni časi (npr. Zadnji mesec, Zdaj, itd.) so izračunani glede " +"na lokalni čas strežnika (časovni pas ni upoštevan). Vsi opisi orodij in " +"časovne oznake so izražene kot UTC. Časovne značke so potem določene " +"glede na lokalni čas podatkovne baze. Eksplicitno lahko določite časovni " +"pas v ISO 8601 formatu, če določite začetni in/ali končni čas." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Datetime format" -msgstr "Oblika datum-časa" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Omejitev števila vrstic" -#: superset/db_engine_specs/base.py:109 -msgid "Day" -msgstr "Dan" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" +"Omeji število vrstic, ki se izračunajo v poizvedbi, ki je vir podatkov za" +" ta grafikon." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "Dan (freq=D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "Razvrsti padajoče" -#: superset/views/database/forms.py:201 -msgid "Day First" -msgstr "Dan prvi" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "Če je omogočeno, so vrednosti razvrščene padajoče, drugače pa naraščajoče." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "Dnevi %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Omejitev števila serij" -#: superset/connectors/sqla/models.py:1787 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "Sitem podatkovne baze ni vrnil vse stolpcev poizvedbe" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" +"Omeji število časovnih vrst za prikaz. S podpoizvedbo (ali dodatno fazo, " +"kjer podpoizvedbe niso podprte) se omeji število časovnih vrst, ki bodo " +"pridobljene za prikaz. Ta funkcija je uporabna pri združevanju s stolpci " +"z veliko kardinalnostjo, vendar poveča kompleksnost poizvedbe." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 -msgid "Deactivate" -msgstr "Deaktiviraj" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Oblika Y-osi" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "December" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +msgid "Currency format" +msgstr "Oblika zapisa valute" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "Odloči, po katerem stolpcu bo razvrščena osnovna os." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" +msgstr "Oblika zapisa časa" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "Odloči, po kateri meri bo razvrščena osnovna os." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "Barvna shema za izris grafikona" -#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 -msgid "Decimal Character" -msgstr "Decimalno ločilo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" +msgstr "Odstrani mero" -#: superset/viz.py:2252 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - 3D mreža" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "Če želite odstraniti naziv mere" -#: superset/viz.py:2375 -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D HEX" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" +msgstr "Prikaži prazne stolpce" -#: superset/viz.py:2461 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - lok" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "Sintaksa D3 formata: https://github.com/d3/d3-format" -#: superset/viz.py:2419 -msgid "Deck.gl - Contour" -msgstr "Deck.gl - plastnice" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." +msgstr "Veljavno samo, ko je izbran \"Tip oznake\" za prikaz vrednosti." -#: superset/viz.py:2440 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - GeoJSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." +msgstr "Veljavno samo, ko \"Tip oznake\" ni procent." -#: superset/viz.py:2398 -msgid "Deck.gl - Heatmap" -msgstr "Deck.gl - toplotna karta" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" +msgstr "Prilagodljiva oblika" -#: superset/viz.py:1962 -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - večplastni grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Izvorna vrednost" -#: superset/viz.py:2287 -msgid "Deck.gl - Paths" -msgstr "Deck.gl - poti" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "Trajanje v ms (66000 => 1m 6s)" -#: superset/viz.py:2339 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - poligon" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" -#: superset/viz.py:2168 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - raztreseni grafikon" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "Sintaksa D3 časovnega formata: https://github.com/d3/d3-time-format" -#: superset/viz.py:2222 -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - mreža" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "Prišlo je do napake!" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:82 -msgid "Decrease" -msgstr "Zmanjšaj" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "Izpis napake:" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "Privzeto" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "" +"Poizvedba ni vrnila rezultatov. Če ste pričakovali rezultate, poskrbite, " +"da so filtri pravilno nastavljeni in podatkovni vir vsebuje podatke za " +"izbrano časovno obdobje." -#: superset/connectors/sqla/views.py:403 -msgid "Default Endpoint" -msgstr "Privzeta končna točka" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" +msgstr "Ni rezultatov" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:898 -msgid "Default URL" -msgstr "Privzeti URL" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" +msgstr "NAPAKA" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:899 -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "" -"Privzeti URL za preusmeritev, ko dostopate iz strani s seznamom podatkovnih setov" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" +msgstr "Najdene so neveljavne možnosti razvrščanja" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1202 -msgid "Default Value" -msgstr "Privzeta vrednost" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "pričakovano je celo število" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 -msgid "Default datetime" -msgstr "Privzet datumčas" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "pričakovano je število" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:305 -msgid "Default latitude" -msgstr "Privzeta širina" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +msgid "is expected to be a Mapbox URL" +msgstr "mora biti URL za Mapbox" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 -msgid "Default longitude" -msgstr "Privzeta dolžina" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" +msgstr "Vrednost ne sme presegati %s" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 -msgid "" -"Default minimal column width in pixels, actual width may still be larger than " -"this if other columns don't need much space" -msgstr "" -"Privzeta min. širina stolpca v pikslih. Dejanska širina bo lahko večja, če drugi " -"stolpci ne potrebujejo veliko prostora" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "ne sme biti prazno" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1231 -msgid "Default value is required" -msgstr "Zahtevana je privzeta vrednost" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "Domena" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "" -"Privzeta vrednost mora biti določena, če je izbrano \"Filter ima privzeto " -"vrednost\"" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "ura" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "" -"Privzeta vrednost mora biti določena, če je izbrano \"Vrednost filtra obvezna\"" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "dan" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 -msgid "" -"Default value set automatically when \"Select first filter value by default\" is " -"checked" -msgstr "" -"Privzeta vrednost je samodejno izbrana, če je izbrano \"Prvi element je izbran " -"kot privzet\"" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "Časovna enota za združevanje blokov" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 -msgid "" -"Define a function that receives the input and outputs the content for a tooltip" -msgstr "Določite funkcijo, ki sprejme vhodne podatke in vrne vsebino opisa orodja" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "Poddomena" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "Določite funkcijo, ki vrne URL za navigacijo, ko uporabnik klikne" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" +msgstr "min" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array. This " -"can be used to alter properties of the data, filter, or enrich the array." +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" msgstr "" -"Določite Javascript funkcijo, ki sprejme podatkovni niz za vizualizacijo in vrne " -"spremenjeno verzijo tega niza. Lahko se uporabi za spreminjanje lastnosti " -"podatkov, filtra ali obogatitve niza." +"Časovna enota za vsak blok. Mora biti manjša enota kot " +"domenska_granulacija. Mora biti večja ali enaka Granulaciji časa" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:99 -msgid "" -"Define contour layers. Isolines represent a collection of line segments that " -"serparate the area above and below a given threshold. Isobands represent a " -"collection of polygons that fill the are containing values in a given threshold " -"range." -msgstr "" -"Definirajte plastnice. Plastnice predstavljajo nabor črt, ki ločujejo območje nad " -"in pod podano mejo. Površinske plastnice predstavlja nabor poligonov, ki " -"zapolnjujejo področje v določenem obsegu vrednosti." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "Možnosti grafikona" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:264 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:194 -#: superset-frontend/src/explore/controlPanels/sections.tsx:147 -msgid "" -"Defines a rolling window function to apply, works along with the [Periods] text " -"box" -msgstr "Določi funkcijo drsečega okna. Dela skupaj s tekstovnim okvirjem [Obdobja]" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "Velikost celice" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "Določa, kako se vsaka podatkovna serija razčleni" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "Velikost kvadratne celice v pikslih" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 -msgid "Defines the grid size in pixels" -msgstr "Določa velikost mreže v pikslih" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "Razmak med celicami" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:120 -msgid "" -"Defines the grouping of entities. Each series is represented by a specific color " -"in the chart." -msgstr "" -"Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno barvo." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "Razdalja med celicami v pikslih" -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific color on the " -"chart and has a legend toggle" -msgstr "" -"Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno barvo in " -"ima lahko prikazano legendo" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "Zaobljenost celice" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:278 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:208 -#: superset-frontend/src/explore/controlPanels/sections.tsx:159 -msgid "" -"Defines the size of the rolling window function, relative to the time granularity " -"selected" -msgstr "Določi velikost funkcije drsečega okna, glede na izbrano granulacijo časa" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "Polmer v pikslih" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 -msgid "" -"Defines the value that determines the boundary between different regions or " -"levels in the data " -msgstr "Določa vrednost, ki razmejuje različna področja oziroma nivoje podatkov " +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "Barvni koraki" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:83 -msgid "" -"Defines whether the step should appear at the beginning, middle or end between " -"two data points" -msgstr "" -"Določa, če se na začetku, na sredini ali na koncu pojavi stopnica med dvema " -"točkama" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "Število barvnih korakov" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:105 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:217 -#: superset-frontend/src/features/tags/TagCard.tsx:84 -#: superset-frontend/src/pages/AlertReportList/index.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:488 -#: superset-frontend/src/pages/ChartList/index.tsx:820 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 -#: superset-frontend/src/pages/DashboardList/index.tsx:404 -#: superset-frontend/src/pages/DashboardList/index.tsx:693 -#: superset-frontend/src/pages/DatasetList/index.tsx:438 -#: superset-frontend/src/pages/DatasetList/index.tsx:806 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:566 -#: superset-frontend/src/pages/Tags/index.tsx:191 -#: superset-frontend/src/pages/Tags/index.tsx:342 superset/views/base.py:652 -msgid "Delete" -msgstr "Izbriši" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "Oblika zapisa časa" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "Izbrišem %s?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "Legenda" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "Izbrišem oznako?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "Preklapljanje prikaza legende" -#: superset-frontend/src/pages/DatabaseList/index.tsx:590 -msgid "Delete Database?" -msgstr "Izbrišem podatkovno bazo?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "Prikaži vrednosti" -#: superset-frontend/src/pages/DatasetList/index.tsx:778 -msgid "Delete Dataset?" -msgstr "Izbrišem podatkovni set?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "Če želite v celicah prikazati numerične vrednosti" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 -msgid "Delete Layer?" -msgstr "Izbrišem sloj?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "Prikaži imena mer" -#: superset-frontend/src/features/home/SavedQueries.tsx:240 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:543 -msgid "Delete Query?" -msgstr "Izbrišem poizvedbo?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "Če želite prikazati ime mere kot naslov" -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:336 -msgid "Delete Report?" -msgstr "Izbrišem poročilo?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "Oblika zapisa števila" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -msgid "Delete Template?" -msgstr "Izbrišem predlogo?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "Korelacija" -#: superset/views/base.py:652 -msgid "Delete all Really?" -msgstr "Ali resnično vse izbrišem?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." +msgstr "" +"Prikaže kako se je mera spreminjala s časom s pomočjo barvne lestvice in " +"koledarskega pogleda. Sive vrednosti ponazarjajo manjkajoče vrednosti. " +"Amplituda dnevnih vrednosti je ponazorjena z linearno barvno shemo." -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "Izbriši oznako" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "Aktivnost" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "Ali izbrišem zavihek nadzorne plošče?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "Primerjava" -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -msgid "Delete database" -msgstr "Izbriši podatkovno bazo" - -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:247 -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 -msgid "Delete email report" -msgstr "Izbriši e-poštno poročilo" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:423 -msgid "Delete query" -msgstr "Izbriši poizvedbo" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 -msgid "Delete template" -msgstr "Izbriši predlogo" - -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "Izbrišite ta okvir in shranite za odpravo tega sporočila." - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 -msgid "Deleted" -msgstr "Izbrisano" - -#: superset/annotation_layers/annotations/api.py:488 -#, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "Izbrisana je %(num)d oznaka" -msgstr[1] "Izbrisani sta %(num)d oznaki" -msgstr[2] "Izbrisane so %(num)d oznake" -msgstr[3] "Izbrisanih je %(num)d oznak" - -#: superset/annotation_layers/api.py:346 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "Izbrisan je %(num)d sloj z oznakami" -msgstr[1] "Izbrisana sta %(num)d sloja z oznakami" -msgstr[2] "Izbrisanih so %(num)d sloji z oznakami" -msgstr[3] "Izbrisanih je %(num)d slojev z oznakami" - -#: superset/charts/api.py:522 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "Izbrisan je %(num)d grafikon" -msgstr[1] "Izbrisana sta %(num)d grafikona" -msgstr[2] "Izbrisani so %(num)d grafikoni" -msgstr[3] "Izbrisanih je %(num)d grafikonov" - -#: superset/css_templates/api.py:142 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "Izbrisana %(num)d css predloga" -msgstr[1] "Izbrisani %(num)d css predlogi" -msgstr[2] "Izbrisane %(num)d css predloge" -msgstr[3] "Izbrisanih %(num)d css predlog" - -#: superset/dashboards/api.py:737 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "Izbrisana je %(num)d nadzorna plošča" -msgstr[1] "Izbrisani sta %(num)d nadzorni plošči" -msgstr[2] "Izbrisane so %(num)d nadzorne plošče" -msgstr[3] "Izbrisanih je %(num)d nadzornih plošč" - -#: superset/datasets/api.py:803 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "Izbrisan %(num)d podatkovni set" -msgstr[1] "Izbrisana %(num)d podatkovna niza" -msgstr[2] "Izbrisani %(num)d podatkovni nizi" -msgstr[3] "Izbrisanih %(num)d podatkovnih nizov" - -#: superset/reports/api.py:506 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "Izbrisan %(num)d urnik poročanja" -msgstr[1] "Izbrisana %(num)d urnika poročanja" -msgstr[2] "Izbrisani %(num)d urniki poročanja" -msgstr[3] "Izbrisanih %(num)d urnikov poročanja" - -#: superset/row_level_security/api.py:355 -#, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "Izbrisano je %(num)d pravilo" -msgstr[1] "Izbrisani sta %(num)d pravili" -msgstr[2] "Izbrisana so %(num)d pravila" -msgstr[3] "Izbrisanih je %(num)d pravil" - -#: superset/queries/saved_queries/api.py:225 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "Izbrisana %(num)d shranjena poizvedba" -msgstr[1] "Izbrisani %(num)d shranjeni poizvedbi" -msgstr[2] "Izbrisane %(num)d shranjene poizvedbe" -msgstr[3] "Izbrisanih %(num)d shranjenih poizvedb" - -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 -#, python-format -msgid "Deleted %s" -msgstr "Izbrisano %s" - -#: superset-frontend/src/features/home/SavedQueries.tsx:173 -#: superset-frontend/src/features/reports/ReportModal/actions.js:158 -#: superset-frontend/src/pages/AlertReportList/index.tsx:185 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:188 -#: superset-frontend/src/pages/DatasetList/index.tsx:697 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:258 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "Izbrisano: %s" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse this " -"action with the" -msgstr "" -"Izbris zavihka bo odstranil vso vsebino v njem. Še vedno boste lahko razveljavili " -"dejanje z" - -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "En stolpec z ločenima zemljepisno dolžino in širino" - -#: superset/views/database/forms.py:161 -msgid "Delimiter" -msgstr "Ločilnik" - -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "Način dostave" - -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" -msgstr "Demografija" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" -msgstr "Gostota" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -msgid "Dependent on" -msgstr "Odvisen od" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:37 -msgid "Deprecated" -msgstr "Zastarelo" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1258 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1262 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1171 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:469 -#: superset-frontend/src/features/tags/TagModal.tsx:297 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 -msgid "Description" -msgstr "Opis" - -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 -msgid "Description (this can be seen in the list)" -msgstr "Opis (viden bo na seznamu)" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 -msgid "Description Columns" -msgstr "Stolpci z opisi" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "Besedilo, ki se prikaže pod veliko številko" - -#: superset-frontend/src/components/ListView/ListView.tsx:384 -msgid "Deselect all" -msgstr "Počisti izbor" - -#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 -msgid "Details" -msgstr "Podrobnosti" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1303 -msgid "Details of the certification" -msgstr "Podrobnosti certifikacije" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." -msgstr "Določa kako so izračunani kvantili in izstopajoče vrednosti." - -#: superset/views/dashboard/mixin.py:70 -msgid "" -"Determines whether or not this dashboard is visible in the list of all dashboards" -msgstr "Določa ali je nadzorna plošča vidna na seznamu vseh nadzornih plošč" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 -msgid "Diamond" -msgstr "Karo" - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "Ste mislili:" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:222 -msgid "Difference" -msgstr "Razlika" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 -msgid "Dim Gray" -msgstr "Temno-siva" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 -msgid "Dimension" -msgstr "Dimenzija" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." -msgstr "Dimenzija za x-os." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." -msgstr "Dimenzija za y-os." - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -msgid "Dimensions" -msgstr "Dimenzije" +msgid "Intensity" +msgstr "Intenzivnost" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"Dimensions contain qualitative values such as names, dates, or geographical data. " -"Use dimensions to categorize, segment, and reveal the details in your data. " -"Dimensions affect the level of detail in the view." -msgstr "" -"Dimenzije vsebujejo vrednosti, kot so imena, datumi ali geografski podatki. " -"Dimenzije uporabite za kategorizacijo, segmentiranje oz. da prikažete podrobnosti " -"podatkov. Dimenzije vplivajo na nivo podrobnosti pogleda." - -#: superset/viz.py:1483 -msgid "Directed Force Layout" -msgstr "Izgled usmerjene sile" - -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -msgid "Directional" -msgstr "Usmerjeni" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" -msgstr "Izključite poizvedbe za predogled podatkov v SQL Laboratoriju" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to avoid " -"browser performance issues when using databases with very wide tables." -msgstr "" -"Izključite predogled podatkov pri pridobivanju metapodatkov v SQL laboratoriju. S " -"tem se zmanjša obremenitev brskalnika pri podatkovnih bazah z zelo širokimi " -"tabelami." - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" -msgstr "Onemogočite vgrajevanje?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Disabled" -msgstr "Onemogočeno" - -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -msgid "Discard" -msgstr "Zavrzi" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -msgid "Discrete" -msgstr "Diskretno" - -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:189 -msgid "Display" -msgstr "Prikaz" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 -msgid "Display Name" -msgstr "Ime za prikaz" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:253 -msgid "Display column level subtotal" -msgstr "Prikaži delno vsoto na nivoju stolpca" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:241 -msgid "Display column level total" -msgstr "Prikaži vsoto na nivoju stolpca" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 -msgid "Display configuration" -msgstr "Prikaži nastavitve" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:276 -msgid "" -"Display metrics side by side within each column, as opposed to each column being " -"displayed side by side for each metric." -msgstr "" -"Prikazuj mere eno ob drugi ob vsakem stolpcu, drugače je vsak stolpec prikazan en " -"ob drugem za vsako mero." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:83 -msgid "" -"Display percents in the label and tooltip as the percent of the total value, from " -"the first step of the funnel, or from the previous step in the funnel." -msgstr "" -"Prikaži procente v oznakah in opisu orodja kot procent celotne vrednosti iz prve " -"vrednosti v lijaku ali prejšnje vrednosti v lijaku." - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display row level subtotal" -msgstr "Prikaži delno vsoto na nivoju vrstice" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" -msgstr "Prikaži vsoto na nivoju vrstice" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -msgid "Display settings" -msgstr "Nastavitve prikaza" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 -msgid "" -"Displays connections between entities in a graph structure. Useful for mapping " -"relationships and showing which nodes are important in a network. Graph charts " -"can be configured to be force-directed or circulate. If your data has a " -"geospatial component, try the deck.gl Arc chart." -msgstr "" -"Prikaže povezave med entitetami v strukturi grafa. Uporabno za prikaz razmerij in " -"pomembnih točk v omrežju. Grafikon je lahko krožnega tipa ali z usmerjenimi " -"silami. Če imajo podatki geoprostorsko komponento, poskusite grafikon decl.gl - " -"Arc." - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" -msgstr "Porazdeli glede na" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 -msgid "Distribution" -msgstr "Porazdelitev" - -#: superset/viz.py:1272 -msgid "Distribution - Bar Chart" -msgstr "Porazdelitev - Stolpčni grafikon" - -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "Ločilnik" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:224 -msgid "Do you want a donut or a pie?" -msgstr "Želite kolobar ali torto?" - -#: superset-frontend/src/features/home/RightMenu.tsx:532 -msgid "Documentation" -msgstr "Dokumentacija" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "Domena" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:221 -msgid "Donut" -msgstr "Kolobar" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Dotted" -msgstr "Pikčasto" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:297 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 -msgid "Download" -msgstr "Prenesi" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:302 -msgid "Download as Image" -msgstr "Izvozi kot sliko" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:525 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 -msgid "Download as image" -msgstr "Izvozi kot sliko" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Download to CSV" -msgstr "Izvozi kot CSV" - -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:322 -#: superset-frontend/src/pages/DashboardList/index.tsx:512 -msgid "Draft" -msgstr "Osnutek" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "Povlecite in spustite elemente in grafikone na nadzorno ploščo" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "Povlecite in spustite elemente na zavihek" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:131 -msgid "Draw a marker on data points. Only applicable for line types." -msgstr "Nariši markerje na točke grafikona. Samo za črtne grafikone." - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:98 -msgid "Draw area under curves. Only applicable for line types." -msgstr "Izriši površino pod krivuljo. Samo za črtne grafikone." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:179 -msgid "Draw line from Pie to label when labels outside?" -msgstr "Ali želite črto do oznake, ko so le-te zunaj?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 -msgid "Draw split lines for minor axis ticks" -msgstr "Izriši ločilne črte za pomožne oznake osi" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:336 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:224 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:212 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:206 -msgid "Draw split lines for minor y-axis ticks" -msgstr "Izriši ločilne črte za pomožne oznake y-osi" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" -msgstr "Vrtanje po" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" -msgstr "Vrtanje po ni mogoče za to podatkovno točko" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "Vrtanje po še ni podprto za grafikon tega tipa" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, python-format -msgid "Drill by: %s" -msgstr "Vrtanje po: %s" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 -msgid "Drill to detail" -msgstr "Vrtanje v podrobnosti" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 -msgid "Drill to detail by" -msgstr "Vrtanje v podrobnosti po" - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "Vrtanje v podrobnosti po vrednosti še ni podprto za grafikon tega tipa." - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 -msgid "" -"Drill to detail is disabled because this chart does not group data by dimension " -"value." -msgstr "" -"Vrtanje v podrobnosti je onemogočeno, ker ta grafikon ne združuje podatkov po " -"vrednosti dimenzije." - -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" -msgstr "Vrtanje v podrobnosti: %s" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "Spustite stolpec sem ali kliknite" -msgstr[1] "Spustite stolpce sem ali kliknite" -msgstr[2] "Spustite stolpce sem ali kliknite" -msgstr[3] "Spustite stolpce sem ali kliknite" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "Spustite stolpec/mero sem ali kliknite" -msgstr[1] "Spustite stolpce/mere sem ali kliknite" -msgstr[2] "Spustite stolpce/mere sem ali kliknite" -msgstr[3] "Spustite stolpce/mere sem ali kliknite" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:259 -msgid "Drop a temporal column here or click" -msgstr "Spustite stolpec sem ali kliknite" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" -msgstr "Spustite stolpce/mere sem ali kliknite" - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:492 -msgid "Duplicate" -msgstr "Dupliciraj" - -#: superset/views/datasource/views.py:112 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "Podvojena imena stolpcev: %(columns)s" - -#: superset/common/query_object.py:290 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns and " -"metrics have a unique label." -msgstr "" -"Podvojene oznake stolpcev/mer: %(labels)s. Poskrbite, da bodo imeli stolpci in " -"mere unikatne oznake." - -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -msgid "Duplicate dataset" -msgstr "Dupliciraj podatkovni set" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "Podvoji zavihek" - -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 -msgid "Duration" -msgstr "Trajanje" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. A " -"timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. " -"Note this defaults to the global timeout if undefined." -msgstr "" -"Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. Vrednost 0 " -"označuje, da predpomnilnik nikoli ne poteče, -1 pa onemogoči predpomnjenje. V " -"primeru, da ni definirano, ima globalno nastavitev." - -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. A " -"timeout of 0 indicates that the cache never expires. Note this defaults to the " -"global timeout if undefined." -msgstr "" -"Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. Vrednost 0 " -"označuje, da predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima " -"globalno nastavitev." - -#: superset/views/chart/mixin.py:69 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this defaults " -"to the datasource/table timeout if undefined." -msgstr "" -"Trajanje (v sekundah) predpomnjenja za ta grafikon. Če ni definirana, je " -"uporabljena vrednost za podatkovni vir/tabelo." - -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass " -"the cache. Note this defaults to the dataset's timeout if undefined." -msgstr "" -"Trajanje (v sekundah) predpomnjenja za ta grafikon. Nastavite na -1, da " -"izključite predpomnjenje. Če ni definirano, je uporabljena vrednost za podatkovni " -"set." - -#: superset/connectors/sqla/views.py:371 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of 0 " -"indicates that the cache never expires. Note this defaults to the database " -"timeout if undefined." -msgstr "" -"Trajanje (v sekundah) predpomnjenja za to tabelo. Vrednost 0 označuje, da " -"predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima nastavitev " -"trajanja za podatkovno bazo." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this " -"database. If left unset, the cache never expires." -msgstr "" -"Trajanje (v sekundah) predpomnilnika metapodatkov za sheme v tej podatkovni bazi. " -"Če ni nastavljeno, predpomnilnik ne poteče." - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "" -"Trajanje (v sekundah) predpomnilnika metapodatkov za tabele v tej podatkovni " -"bazi. Če ni nastavljeno, predpomnilnik ne poteče. " - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" - -#: superset-frontend/src/explore/controls.jsx:90 -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "Trajanje v ms (100.40008 => 100ms 400µs 80ns)" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "Trajanje v ms (66000 => 1m 6s)" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 -msgid "Dynamic Aggregation Function" -msgstr "Dinamična agregacijska funkcija" - -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "Dinamično poišče vse možnosti filtra" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" +msgstr "Vzorec" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" -msgstr "ECharts" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" +msgstr "Poročilo" -#: superset/reports/notifications/email.py:132 -msgid "EMAIL_REPORTS_CTA" -msgstr "EMAIL_REPORTS_CTA" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Trend" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "KONEC (NI VKLJUČEN)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "manj kot {min} {name}" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -msgid "ERROR" -msgstr "NAPAKA" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "med {down} in {up} {name}" -#: superset-frontend/src/views/CRUD/hooks.ts:707 -#, python-format -msgid "ERROR: %s" -msgstr "NAPAKA: %s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "več kot {max} {name}" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:243 -msgid "Edge length" -msgstr "Dolžina povezave" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "Mera za razvrščanje" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:249 -msgid "Edge length between nodes" -msgstr "Dolžina povezave med vozlišči" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "Če želite padajoče razvrstiti rezultate z izbrano mero." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Edge symbols" -msgstr "Simboli povezav" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" +msgstr "Oblika zapisa števila" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:228 -msgid "Edge width" -msgstr "Debelina povezave" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" +msgstr "Izberite obliko zapisa števila" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:130 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 -#: superset-frontend/src/features/home/SavedQueries.tsx:198 -#: superset-frontend/src/pages/AlertReportList/index.tsx:378 -#: superset-frontend/src/pages/ChartList/index.tsx:523 -#: superset-frontend/src/pages/DashboardList/index.tsx:438 -#: superset-frontend/src/pages/DatabaseList/index.tsx:457 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 -#: superset-frontend/src/pages/Tags/index.tsx:209 -msgid "Edit" -msgstr "Urejanje" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Izvor" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -msgid "Edit Alert" -msgstr "Uredi opozorilo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" +msgstr "Izberite izvor" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:261 -msgid "Edit CSS" -msgstr "Uredi CSS" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" +msgstr "Cilj" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "Uredi CSS predlogo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" +msgstr "Izberite cilj" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 -msgid "Edit CSS template properties" -msgstr "Uredi lastnosti CSS predloge" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" +msgstr "Potek" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "Uredi grafikon" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." +msgstr "" +"Prikaže potek ali povezave med kategorijami z debelino tetiv. Vrednost in" +" debelina sta lahko različni za vsako stran." -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 -msgid "Edit Chart Properties" -msgstr "Uredi lastnosti grafikona" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "Razmerja med skupnostnimi kanali" -#: superset/connectors/sqla/views.py:73 -msgid "Edit Column" -msgstr "Uredi stolpec" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "Tetivni grafikon" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "Uredi nadzorno ploščo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "Estetika" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "Uredi podatkovno bazo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "Krožno" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 -msgid "Edit Dataset " -msgstr "Uredi podatkovni set " +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "Zastarelo" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "Uredi dnevnik" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "Proporcionalno" -#: superset/connectors/sqla/views.py:208 -msgid "Edit Metric" -msgstr "Uredi mero" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" +msgstr "Relacijsko" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "Uredi vtičnik" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "Država" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Edit Report" -msgstr "Uredi poročilo" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "Za katero državo želite grafikon?" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:341 -msgid "Edit Rule" -msgstr "Uredi pravilo" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "Oznake po ISO 3166-2" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "Uredi tabelo" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." +msgstr "" +"Stolpec, ki vsebuje ISO 3166-2 oznake regij/provinc/departmajev v vaši " +"tabeli." -#: superset-frontend/src/pages/AllEntities/index.tsx:234 -msgid "Edit Tag" -msgstr "Uredi oznako" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" +msgstr "Mera za prikaz spodnjega naslova" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "Uredi oznako" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "Zemljevid" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "Uredi sloj z oznakami" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." +msgstr "" +"Prikaže kako se posamezna mera spreminja glede na območja države (dežele," +" province, itd.) na kloropletnem zemljevidu. Vsak podrazdelek se dvigne, " +"ko z miško preidete mejo njegovega območja." -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 -msgid "Edit annotation layer properties" -msgstr "Uredi lastnosti sloja z oznakami" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "2D" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:218 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:410 -msgid "Edit chart" -msgstr "Uredi grafikon" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "Geo" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 -msgid "Edit chart properties" -msgstr "Uredi lastnosti grafikona" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "Doseg" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "Uredi nadzorno ploščo" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "Naložen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "Uredi podatkovno bazo" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "Ni podatkov" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 -msgid "Edit dataset" -msgstr "Uredi podatkovni set" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "Definicija dogodka" -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:244 -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:265 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 -msgid "Edit email report" -msgstr "Uredi e-poštno poročilo" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" +msgstr "Imena dogodkov" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" -msgstr "Uredi oblikovanje" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "Stolpci za prikaz" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Edit properties" -msgstr "Uredi lastnosti" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "Uredi po ID-entitete" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:402 -msgid "Edit query" -msgstr "Uredi poizvedbo" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." +msgstr "" +"Pomembno! Izberite, če tabela še ni razvrščena po ID entitete, v " +"nasprotnem primeru ni nujno, da bodo vrnjeni vsi dogodki za posamezno " +"entiteto." -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 -msgid "Edit template" -msgstr "Uredi predlogo" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "Min. št. dogodkov končnega vozlišča" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "Uredi parametre predloge" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "" +"Končna vozlišča, ki imajo manjše število dogodkov od nastavljene " +"vrednosti, bodo na prikazu prvotno skrita" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:720 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 -msgid "Edit the dashboard" -msgstr "Uredi nadzorno ploščo" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "Dodatni metapodatki" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:351 -msgid "Edit time range" -msgstr "Uredi časovno obdobje" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" +msgstr "Metapodatki" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "Urejeno" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" +msgstr "Izberite poljubne stolpce za pregled metapodatkov" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "Urejanje enega filtra:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "ID-entitete" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "Urejanje seta filtrov:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" +msgstr "npr. stolpec \"id_uporabnika\"" -#: superset/errors.py:118 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Ime podatkovne baze je zapisano napačno ali pa ne obstaja." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "Maksimalno število dogodkov" -#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 -#: superset/db_engine_specs/presto.py:681 superset/db_engine_specs/redshift.py:74 -#: superset/db_engine_specs/starrocks.py:154 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "Uporabniško ime \"%(username)s\" ali geslo sta napačna." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "Največje število prikazanih dogodkov (enako številu vrnjenih vrstic)" -#: superset/db_engine_specs/mssql.py:93 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 msgid "" -"Either the username \"%(username)s\", password, or database name \"%(database)s\" " -"is incorrect." -msgstr "" -"Uporabniško ime \"%(username)s\", geslo ali ime podatkovne baze \"%(database)s\" " -"so napačni." +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "Primerja dolžine časovno različnih aktivnosti na skupni časovnici." -#: superset/errors.py:117 -msgid "Either the username or the password is wrong." -msgstr "Uporabniško ime ali/in geslo sta napačna." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" +msgstr "Potek dogodkov" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -msgid "Elevation" -msgstr "Višina" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "Progresivno" -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:240 -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:255 -msgid "Email reports active" -msgstr "E-poštna poročila aktivna" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "Naraščajoča os" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 -msgid "Embed" -msgstr "Vgradi" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "Padajoča os" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 -msgid "Embed code" -msgstr "Koda za vgradnjo" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" +msgstr "Naraščajoča mera" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:331 -msgid "Embed dashboard" -msgstr "Vgradi nadzorno ploščo" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" +msgstr "Padajoča mera" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." -msgstr "Vgrajevanje deaktivirano." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "Možnosti toplotnega prikaza" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:178 -msgid "Emit Filter Events" -msgstr "Oddajaj dogodke filtrov" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" +msgstr "Interval X-osi" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 -msgid "Emphasis" -msgstr "Poudari" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" +msgstr "Število korakov med oznakami pri prikazu X-osi" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" -msgstr "Zaposlitev in izobrazba" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" +msgstr "Interval Y-osi" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 -msgid "Empty circle" -msgstr "Prazen krog" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "Število korakov med oznakami pri prikazu Y-osi" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "Prazen izbor" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" +msgstr "Izris" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -msgid "Empty column" -msgstr "Prazen stolpec" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "pikselirano (ostro)" -#: superset/charts/data/api.py:363 -msgid "Empty query result" -msgstr "Rezultat prazne poizvedbe" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "samodejno (glajenje)" -#: superset/models/helpers.py:1527 -msgid "Empty query?" -msgstr "Prazna poizvedba?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "" +"atribut CSS za izris objekta platna, ki določa, kako brskalnik poveča " +"sliko" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" -msgstr "Prazna vrstica" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "Normiraj glede na" -#: superset-frontend/src/features/home/RightMenu.tsx:300 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" -msgstr "Omogoči 'Dovoli nalaganje podatkov' v nastavitvah vseh podatkovnih baz" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" +msgstr "toplotni prikaz" -#: superset/connectors/sqla/views.py:401 -msgid "Enable Filter Select" -msgstr "Omogoči izbiro filtra" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "x" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 -msgid "Enable cross-filtering" -msgstr "Omogoči medsebojne filtre" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "y" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:312 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:163 -msgid "Enable data zooming controls" -msgstr "Omogoči kontrolnik za povečavo podatkov" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 +msgid "" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" +"Barvna lestvica bo ustvarjena na osnovi normiranih vrednosti (0% do 100%)" +" posameznih celic glede na ostale celice v izbranem obsegu: " -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 -msgid "Enable embedding" -msgstr "Omogoči vgrajevanje" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "x: vrednosti so normirane znotraj vsakega stolpca" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" -msgstr "Omogoči napoved" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "y: vrednosti so normirane znotraj vsake vrstice" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" -msgstr "Omogoči napovedovanje" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "heatmap: vrednosti so normirane po celotni temperaturni lestvici" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 -msgid "Enable graph roaming" -msgstr "Omogoči preoblikovanje grafikona" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "Levi rob" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:143 -msgid "Enable node dragging" -msgstr "Omogoči premikanje vozlišč" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" +msgstr "samodejno" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "Omogoči ocenjevanje potratnosti poizvedbe" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "Levi rob, v pikslih, s katerim povečamo prostor za oznake osi" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 -msgid "Enable row expansion in schemas" -msgstr "Omogoči razširitev vrstic v shemah" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "Spodnji rob" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:301 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "" -"Omogoči številčenje strani rezultatov na strani strežnika (preizkusna funkcija)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "Spodnji rob, v pikslih, s katerim povečamo prostor za oznake osi" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "Meje vrednosti" -#: superset/viz.py:2070 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 msgid "" -"Encountered invalid NULL spatial entry, " -"please consider filtering those out" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." msgstr "" -"Prišlo je do neveljavnega NULL prostorskega " -"vnosa, poskusite ga izločiti s filtrom" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:81 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "Konec" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 -msgid "End (Longitude, Latitude): " -msgstr "Konec (zemljepisna dolžina, širina): " +"Mejne vrednosti za barvno lestvico. Upošteva se le, če je normiranje " +"uporabljeno glede na celotni toplotni prikaz." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -msgid "End Longitude & Latitude" -msgstr "Končna Dolž. in Širina" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "Razvrsti X-os" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "End angle" -msgstr "Končni kot" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "Razvrsti Y-os" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 -msgid "End date" -msgstr "Končni datum" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "Prikaži procente" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "Končni datum ni vključen v časovno obdobje" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "Če želite prikaz procentov v opisu orodja" -#: superset/commands/annotation_layer/annotation/exceptions.py:35 -msgid "End date must be after start date" -msgstr "Končni datum mora biti za začetnim" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "Normiran" -#: superset/commands/database/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "Podatkovne baze tipa \"%(engine)s\" ni mogoče konfigurirati s parametri." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" +msgstr "" +"Če želite uporabiti normalno porazdelitev glede na stopnjo na barvni " +"lestvici" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 -msgid "Engine Parameters" -msgstr "Parametri podatkovne baze" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" +msgstr "Oblika zapisa vrednosti" -#: superset/databases/schemas.py:313 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via individual " -"parameters." -msgstr "" -"Specifikacija baze \"InvalidEngine\" ne podpira konfiguracije s posameznimi " -"parametri." +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "Vizualizacija povezanih mer med pari skupin." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 -msgid "Enter CA_BUNDLE" -msgstr "Vnesite CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" +msgstr "Velikosti vozil" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -msgid "Enter Primary Credentials" -msgstr "Vnesite primarne vpisne podatke" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "Zaposlitev in izobrazba" -#: superset/views/database/forms.py:162 -msgid "Enter a delimiter for this data" -msgstr "Vnesite ločilnik za te podatke" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "Gostota" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" -msgstr "Vnesite ime te preglednice" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" +msgstr "Prediktivno" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "Vnesite novo naslov zavihka" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "Ena mera" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 -msgid "Enter duration in seconds" -msgstr "Vnesite trajanje v sekundah" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" +msgstr "do" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:247 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:374 -msgid "Enter fullscreen" -msgstr "Vklopi celozaslonski način" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" +msgstr "število" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" -msgstr "Vnesite potrebne %(dbModelName)s vpisne podatke" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "kumulativno" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "Entiteta" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "percentil (odprt interval)" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" -msgstr "ID-entitete" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "Izberite numerične stolpce za izris histograma" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:210 -msgid "Equal Date Sizes" -msgstr "Enaki datumi" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" +msgstr "Št. razdelkov" -#: superset-frontend/src/explore/constants.ts:58 -msgid "Equal to (=)" -msgstr "Je enako (=)" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "Izberite število razdelkov za histogram" -#: 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:66 -msgid "Error" -msgstr "Napaka" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "Naslov X-osi" -#: superset-frontend/src/pages/AllEntities/index.tsx:180 -msgid "Error Fetching Tagged Objects" -msgstr "Pri pridobivanju označenih elementov je prišlo do napake" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "Naslov Y-osi" -#: superset/models/helpers.py:1941 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Napaka v jinja izrazu HAVING stavka: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "Če želite normirati histogram" -#: superset/connectors/sqla/models.py:1670 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Napaka v jinja izrazu RLS filtrov: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "Kumulativno" -#: superset/models/helpers.py:1923 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Napaka v jinja izrazu WHERE stavka: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "Če želite kumulativni histogram" -#: superset/connectors/sqla/models.py:1395 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Napaka v jinja izrazu za pridobivanje vrednosti predikatov: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "Porazdelitev" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:216 -msgid "Error loading chart datasources. Filters may not work correctly." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -"Napaka pri nalaganju podatkovnih virov grafikona. Filtri lahko ne delujejo " -"pravilno." +"Vzame podatkovne točke in jih razporedi v razdelke, kjer se vidi območja " +"z največjo gostoto informacij" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 -msgid "Error message" -msgstr "Sporočilo napake" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "Podatki starosti populacije" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 -msgid "Error saving dataset" -msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Prispevek" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:47 -msgid "Error while fetching charts" -msgstr "Napaka pri pridobivanju grafikonov" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Izračunaj prispevek k celoti" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" -msgstr "Napaka pri pridobivanju podatkov: %s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "Višina serije" -#: superset/connectors/sqla/models.py:1492 superset/models/helpers.py:1070 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "Višina vsake serije v pikslih" -#: superset/commands/chart/data/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" -msgstr "Napaka: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "Domena vrednosti" -#: superset/views/core.py:469 superset/views/core.py:881 -#, python-format -msgid "Error: %(msg)s" -msgstr "Napaka: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" +msgstr "serije" -#: superset/views/core.py:466 -msgid "Error: permalink state not found" -msgstr "Napaka: stanje povezave ni najdeno" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" +msgstr "skupaj" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "Oceni potratnost" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "change" +msgstr "sprememba" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "Oceni potratnost izbrane poizvedbe" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" +"serije: Obravnavaj vsako podatkovno serijo neodvisno; skupno: Vse vrste " +"uporabljajo enako skalo; razlika: Prikaži razlike glede na prvo točko " +"vsake serije" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:718 -msgid "Estimate the cost before running a query" -msgstr "Oceni potratnost pred zagonom poizvedbe" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." +msgstr "" +"Primerja kako se mera spreminja s časom med različnimi skupinami. Vsaka " +"skupina predstavlja eno vrstico, časovne spremembe pa so prikazane z " +"dolžino stolpcev in barvami." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 -msgid "Event" -msgstr "Dogodek" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" +msgstr "Horizontni grafikon" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "Temno sinja" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" +msgstr "Vijolična" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "Zlata" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" -msgstr "Potek dogodkov" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" +msgstr "Temno-siva" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" -msgstr "Imena dogodkov" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" +msgstr "Škrlatna" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" -msgstr "Definicija dogodka" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" +msgstr "Gozdno zelena" -#: superset/viz.py:2496 -msgid "Event flow" -msgstr "Potek dogodkov" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "Dolžina" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Event time column" -msgstr "Stolpec časa dogodka" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "Stolpec s podatki zemljepisne dolžine" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "Vsak" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "Širina" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 -msgid "Evolution" -msgstr "Evolucija" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "Stolpec s podatki zemljepisne širine" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1151 -msgid "Exact" -msgstr "Natančno" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "Radij gručenja" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "Primer" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "" +"Radij (v pikslih), s katerim algoritem definira gručo. Izberite 0 za " +"izklop gručenja - veliko število točk (>1000) bo povzročilo upočasnitev." -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "Vzorci" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "Točke" -#: superset/views/database/forms.py:289 -msgid "Excel File" -msgstr "Excel-ova datoteka" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "Radij točk" -#: superset/views/database/views.py:424 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" -"Excel datoteka \"%(excel_filename)s\" naložena v tabelo \"%(table_name)s\" v " -"podatkovni bazi \"%(db_name)s\"" +"Radij posameznih točk (tistih, ki niso v gruči). Numerični stolpec ali " +"`Auto` (skalira točke na osnovi največje gruče)" -#: superset/views/database/views.py:305 -msgid "Excel to Database configuration" -msgstr "Nastavitve pretvorbe Excel v Podatkovno bazo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" +msgstr "Samodejno" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" -msgstr "Izloči izbrane vrednosti" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "Enota radija točk" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:409 -msgid "Excluded roles" -msgstr "Izključene vloge" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" +msgstr "Piksli" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" -msgstr "Izvedena poizvedba" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" +msgstr "Milje" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "Zagnana poizvedba" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" +msgstr "Kilometri" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 -msgid "Execution ID" -msgstr "ID izvedbe" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "Enota merila za definiran radij točk" -#: superset-frontend/src/pages/AlertReportList/index.tsx:369 -msgid "Execution log" -msgstr "Dnevnik izvajanja" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "Oznake" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 -msgid "Existing dataset" -msgstr "Obstoječ podatkovni set" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" +msgstr "oznaka" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:246 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:373 -msgid "Exit fullscreen" -msgstr "Izhod iz celozaslonskega načina" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" +"`število` je COUNT(*), če je uporabljeno združevanje po (group by). " +"Numerični stolpci bodo agregirani z agregatorjem. Ne-numerični stolpci, " +"bodo uporabljeni za oznake točk. Pustite prazno, da dobite število točk v" +" posamezni gruči." -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -msgid "Expand" -msgstr "Razširi" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "Agregator za oznako gruče" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "Razširi vse" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "vsota" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 -msgid "Expand data panel" -msgstr "Razširi podatkovni panel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "povprečje" -#: superset-frontend/src/components/Table/index.tsx:228 -msgid "Expand row" -msgstr "Razširi vrstico" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" +msgstr "max" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:199 -msgid "Expand table preview" -msgstr "Odpri predogled tabele" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" +msgstr "std" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "Razširi orodno vrstico" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "var" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the formulas.\n" -" Example: '2x+5'" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -"Pričakovana je formula z odvisnim časovnim parametrom 'x'\n" -" v milisekundah od epohe. Za vrednotenje formule je uporabljen mathjs.\n" -" Primer: '2x +5'" +"Agregacijska funkcija za seznam točk v vsaki gruči, s katero se ustvari " +"oznaka gruče." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" -msgstr "Eksperimentalno" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" +msgstr "Nastavitve izgleda" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:619 -msgid "Explore" -msgstr "Raziskovanje" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "Sprotni izris" -#: superset/views/core.py:617 -#, python-format -msgid "Explore - %(table)s" -msgstr "Razišči - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "Točke in gruče se bodo posodabljale, če se bo spremenil pogled" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "Raziščite rezultate v pogledu za raziskovanje podatkov" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" +msgstr "Slog zemljevida" -#: superset-frontend/src/features/charts/ChartCard.tsx:118 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:507 -#: superset-frontend/src/pages/ChartList/index.tsx:828 -#: superset-frontend/src/pages/DashboardList/index.tsx:422 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DatabaseList/index.tsx:441 -#: superset-frontend/src/pages/DatasetList/index.tsx:454 -#: superset-frontend/src/pages/DatasetList/index.tsx:814 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:574 -#: superset/views/dashboard/views.py:66 -msgid "Export" -msgstr "Izvoz" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" +msgstr "Ulice" -#: superset/views/dashboard/views.py:66 -msgid "Export dashboards?" -msgstr "Izvozim nadzorne plošče?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" +msgstr "Temno" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:416 -msgid "Export query" -msgstr "Izvozi poizvedbe" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" +msgstr "Svetlo" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:492 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 -msgid "Export to .CSV" -msgstr "Izvozi v .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" +msgstr "Satelitski z ulicami" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 -msgid "Export to .JSON" -msgstr "Izvozi v .JSON" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" +msgstr "Satelitski" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "Outdoors" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "Slog osnovnega zemljevida. Glej dokumentacijo Mapbox: %s" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Prosojnost" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "Prosojnost vseh gruč, točk in oznak (vrednost med 0 in 1)." + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "RGB barva" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "Barva točk in gruč v RGB zapisu" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 -msgid "Export to Excel" -msgstr "Izvozi v Excel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" +msgstr "Pogled" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:301 -msgid "Export to PDF" -msgstr "Izvozi v PDF" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "Privzeta dolžina" -#: superset/views/base.py:595 -msgid "Export to YAML" -msgstr "Izvozi v YAML" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "Dolžina privzetega pogleda" -#: superset/views/base.py:595 -msgid "Export to YAML?" -msgstr "Izvozim v YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "Privzeta širina" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:510 -msgid "Export to full .CSV" -msgstr "Izvozi v celoten .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "Širina privzetega pogleda" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:516 -msgid "Export to full Excel" -msgstr "Izvozi v celoten Excel" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "Povečava" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 -msgid "Export to original .CSV" -msgstr "Izvozi v izvorni .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "Stopnja povečave zemljevida" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -msgid "Export to pivoted .CSV" -msgstr "Izvozi v vrtilni .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" +"Eden ali več kontrolnikov za združevanje po. Pri združevanju morata biti " +"prisotna stolpca širine in dolžine." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" -msgstr "Razkrij podatkovno bazo v SQL laboratoriju" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "Svetli način" -#: superset-frontend/src/pages/DatabaseList/index.tsx:389 -#: superset-frontend/src/pages/DatabaseList/index.tsx:497 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "Uporabi v SQL laboratoriju" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "Temni način" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "Uporabi to podatkovno bazo v SQL laboratoriju" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "Mapbox" -#: superset/connectors/sqla/views.py:159 -msgid "Expression" -msgstr "Izraz" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "Raztreseni" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:935 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "Dodatno" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "Prilagodljiv" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:130 -msgid "Extra Controls" -msgstr "Dodatni kontrolniki" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "Stopnja značilnosti" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" -msgstr "Dodatni parametri" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "Mejna vrednost alfa za določanje značilnosti" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 -msgid "Extra data for JS" -msgstr "Dodatni podatki za JS" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "točnost p-vrednosti" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:936 -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the format: " -"`{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": " -"\"This table is the source of truth.\" }, \"warning_markdown\": \"This is a " -"warning.\" }`." -msgstr "" -"Dodatni podatki za tabelo metapodatkov. Trenutno je podprta naslednja oblika " -"zapisa metapodatkov: `{ \"certification\": { \"certified_by\": \"Tim za razvoj\", " -"\"details\": \"Ta tabela je vir resnice.\" }, \"warning_markdown\": \"To je " -"opozorilo.\" }`." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" +msgstr "Število decimalnih mest za prikaz p-vrednosti" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Dodatnega polja ni mogoče dekodirati z JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "Točnost procentualnega dviga" -#: superset-frontend/src/explore/controlPanels/sections.tsx:55 -msgid "Extra parameters for use in jinja templated queries" -msgstr "Dodatni parametri za poizvedbe z jinja predlogami" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "Število decimalnih mest za prikaz vrednosti dviga" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja templated " -"queries" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." msgstr "" -"Dodatni parametri, ki jih lahko uporabi kateri koli vtičnik za poizvedbe z Jinja " -"predlogami" +"Tabela, ki prikazuje uparjene t-teste, ki se uporabljajo za prikaz " +"statističnih razlik med skupinami." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Dodatni parametri za poizvedbe z Jinja predlogami" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "Tabela t-testa za odvisne vzorce" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 -msgid "Extruded" -msgstr "Relief" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "Statistično" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "FEB" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "Tabelarično" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "PET" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "Možnosti" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 -msgid "Factor" -msgstr "Faktor" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "Tabela podatkov" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 -msgid "Factor to multiply the metric by" -msgstr "Faktor, s katerim množite mero" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "Če želite prikaz interaktivne podatkovne tabele" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:462 -msgid "Fail" -msgstr "Prekini" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "Vključi serijo" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Failed" -msgstr "Ni uspelo" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "Vključi ime podatkovne serije v naslov osi" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:218 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:310 -msgid "Failed at retrieving results" -msgstr "Napaka pri pridobivanju rezultatov" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "Rangiranje" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:413 -#, python-format -msgid "Failed at stopping query. %s" -msgstr "Neuspešno ustavljanje poizvedbe. %s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." +msgstr "" +"Izriše posamezne mere za vsako vrstico podatkov navpično in jih med seboj" +" poveže kot črto. Grafikon je uporaben za primerjavo več mer med vsemi " +"vzorci ali vrsticami podatkov." -#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 -msgid "Failed to create report" -msgstr "Ustvarjanje poročila nesupešno" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" +msgstr "Koordinate" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" -msgstr "Neuspešno izvajanje %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "Usmerjeni" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" -msgstr "Neuspešno ustvarjanje URL za urejanje grafikona" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "Možnosti časovne vrste" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" -msgstr "Neuspešno nalaganje podatkov grafikona" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "Ni časovna vrsta" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." -msgstr "Neuspešno nalaganje podatkov grafikona." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "Ne upoštevaj časa" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" -msgstr "Neuspešno nalaganje dimenzij za \"Vrtanje po\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" +msgstr "Časovna vrsta" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -msgid "Failed to retrieve advanced type" -msgstr "Napaka pri pridobivanju naprednega tipa" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "Standardna časovna vrsta" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -msgid "Failed to save cross-filter scoping" -msgstr "Shranjevanje dosega medsebojnega filtra ni uspelo" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "Agregirano povprečje" -#: superset/errors.py:145 superset/sqllab/sql_json_executer.py:190 -msgid "Failed to start remote query on a worker." -msgstr "Na delavcu ni bilo mogoče zagnati oddaljene poizvedbe." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "Povprečna vrednost v dani periodi" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 -msgid "Failed to tag items" -msgstr "Napaka pri označevanju elementov" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "Agregirana vsota" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 -msgid "Failed to update report" -msgstr "Posodabljanje poročila neuspešno" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "Vsota vrednosti v dani periodi" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "Preverjanje možnosti izbire ni uspelo: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "Sprememba mere od vrednosti \"OD\" do \"DO\"" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:564 -#: superset-frontend/src/pages/DashboardList/index.tsx:479 -msgid "Favorite" -msgstr "Priljubljene" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" +msgstr "Procentualna sprememba" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "Procentualna sprememba mere od vrednosti \"OD\" do \"DO\"" -#: superset-frontend/src/pages/Profile/index.tsx:52 -msgid "Favorites" -msgstr "Priljubljene" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "Faktor" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "Februar" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "Sprememba faktorja mere od vrednosti \"OD\" do \"DO\"" -#: superset/connectors/sqla/views.py:407 -msgid "Fetch Values Predicate" -msgstr "Pridobi vrednosti predikatov" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "Napredna analitika" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:626 -msgid "Fetch data preview" -msgstr "Pridobi predogled podatkov" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "Uporabite spodnje možnosti napredne analitike" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:359 -#, python-format -msgid "Fetched %s" -msgstr "Pridobljeno %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "Nastavitve časovne vrste" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 -msgid "Fetching" -msgstr "Pridobivam" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "Oblika zapisa za Datum-Čas" -#: superset/commands/database/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "Polja ni mogoče dekodirati z JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" +msgstr "Omejitev particij" -#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Polja ni mogoče dekodirati z JSON. %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "" +"Največje število podrazdelkov posamezne skupine; nižje vrednosti so " +"zanemarjene prve" -#: superset/commands/database/exceptions.py:50 -#: superset/commands/database/ssh_tunnel/exceptions.py:57 -msgid "Field is required" -msgstr "Polje je obvezno" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "Prag particije" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "Datoteka" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "" +"Particije z nižjim razmerjem med njihovo višino in dolžino starša so " +"zanemarjene" -#: superset/forms.py:72 -#, python-format -msgid "File size must be less than or equal to %(max_size)s bytes" -msgstr "Velikost datoteke mora biti manjša ali enaka %(max_size)s bajtov" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "Logaritemska skala" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -msgid "Fill Color" -msgstr "Barva polnila" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "Uporabi logaritemsko skalo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1284 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "Izpolnite vsa polja, da omogočite \"Privzeto vrednost\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "Enaki datumi" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 -msgid "Fill method" -msgstr "Način polnjenja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "Če želite, da imajo datumske particije enako višino" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 -msgid "Filled" -msgstr "Zapolnjeno" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "Podroben opis orodja" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" -msgstr "Filter" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "" +"Podroben opis orodja prikaže seznam vseh podatkovnih serij za posamezno " +"časovno točko" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 -msgid "Filter Configuration" -msgstr "Nastavitve filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "Drseče okno" -#: superset/templates/appbuilder/general/widgets/search.html:25 -msgid "Filter List" -msgstr "Seznam filtrov" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "Drseča funkcija" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 -msgid "Filter Settings" -msgstr "Nastavitve filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" +msgstr "kumulativna vsota" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:830 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:366 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:376 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:377 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 -msgid "Filter Type" -msgstr "Tip filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "Min. št. period" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:29 -msgid "Filter box (legacy)" -msgstr "Filter box (zastarelo)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "Časovna primerjava" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 -msgid "Filter charts" -msgstr "Filtriraj grafikone" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "Časovni zamik" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "Nastavitve filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" +msgstr "1 week" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "Nastavitve za polje filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" +msgstr "28 days" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1185 -msgid "Filter has default value" -msgstr "Filter ima privzeto vrednost" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 dni" -#: superset-frontend/src/components/Table/index.tsx:216 -msgid "Filter menu" -msgstr "Filtriraj meni" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" +msgstr "52 weeks" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "Metapodatki filtra so se spremenili v nadzorni plošči. Ne bo uveljavljen." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" +msgstr "1 year" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 -msgid "Filter name" -msgstr "Ime filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" +msgstr "104 weeks" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." -msgstr "Filter prikazuje samo vrednosti vezane na izbire v drugih filtrih." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" +msgstr "2 years" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 -msgid "Filter results" -msgstr "Filtriraj rezultate" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" +msgstr "156 weeks" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "Set filtrov že obstaja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" +msgstr "3 years" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "Set filtrov z enakim imenom že obstaja" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša " +"se relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 " +"hours, 7 days, 52 weeks, 365 days). Prosto besedilo je podprto." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" -msgstr "Nastavljeni filtri (%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" +msgstr "Dejanske vrednosti" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:834 -msgid "Filter type" -msgstr "Tip filtra" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "1T" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "Vrednost filtra (razlik. velikih/malih črk)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "1H" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 -msgid "Filter value is required" -msgstr "Vrednost filtra je obvezna" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "1D" -#: superset/models/helpers.py:1830 -msgid "Filter value list cannot be empty" -msgstr "Seznam vrednosti filtra ne sme biti prazen" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "7D" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "Filtriraj grafikone" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "1M" -#: superset/connectors/sqla/views.py:157 -msgid "Filterable" -msgstr "Filtriranje" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "1AS" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:116 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:1626 -msgid "Filters" -msgstr "Filtri" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Metoda" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "Filtri (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "asfreq" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "Filtrira po stolpcu" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "bfill" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "Filtrira po merah" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "ffill" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "Nastavitve filtrov" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "mediana" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" -msgstr "Filtri izven dosega (%d)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "Del celote" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:439 -msgid "" -"Filters with the same group key will be ORed together within the group, while " -"different filter groups will be ANDed together. Undefined group keys are treated " -"as unique groups, i.e. are not grouped together. For example, if a table has " -"three filters, of which two are for departments Finance and Marketing (group key " -"= 'department'), and one refers to the region Europe (group key = 'region'), the " -"filter clause would apply the filter (department = 'Finance' OR department = " -"'Marketing') AND (region = 'Europe')." -msgstr "" -"Filtri z enakim skupinskim ključem bodo znotraj skupine združeni z OR funkcijo, " -"medtem ko bodo različne skupine združene z AND funkcijo. Nedefinirani skupinski " -"ključi so obravnavani kot unikatne skupine in niso združeni v svojo skupino. " -"Npr., če ima tabela tri filtre, pri čemer sta dva za oddelka marketinga in financ " -"(skupinski ključ = 'oddelek') tretji pa se nanaša na regijo Evropa (skupinski " -"ključ = 'regija'), bo filtrski izraz (oddelek = 'Finance' OR oddelek = " -"'Marketing') AND (regija = 'Evropa')." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "Primerja isto mero med različnimi skupinami." -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 -msgid "Find" -msgstr "Najdi" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" +msgstr "Grafikon razdelkov" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1142 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1190 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "Zaključi" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "Kategorični" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" -msgstr "Prvi" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" +msgstr "Uporabi razmerje površin" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:117 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 msgid "" -"Fix the trend line to the full time range specified in case filtered results do " -"not include the start or end dates" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -"Trendna črta za celotno izbrano obdobje, v primeru, da filtrirani rezultati ne " -"vsebujejo začetnega ali končnega datuma" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 -msgid "Fix to selected Time Range" -msgstr "Za celotno časovno obdobje" - -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "Fiksno" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -msgid "Fixed Color" -msgstr "Fiksna barva" +"Če želite, da grafikon \"Rose\" uporablja površino segmenta namesto " +"radija za proporcioniranje" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "Izbrana barva" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 -msgid "Fixed point radius" -msgstr "Fiksni radij točk" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" +"Grafikon s polarnimi koordinatami, kjer je krog razdeljen na enakokotne " +"izseke, vrednosti pa so ponazorjene s ploščino izseka (namesto polmera " +"ali kota)." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 -msgid "Flow" -msgstr "Potek" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "Nightingale Rose grafikon" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size" -msgstr "Velikost pisave" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "Napredna analitika" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:131 -msgid "Font size for axis labels, detail value and other text elements" -msgstr "Velikost pisave za oznake osi, podrobnosti in druge besedilne elemente" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "Večplastni" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" -msgstr "Velikost pisave za največjo vrednost na seznamu" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "Izhodišče/Cilj" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" -msgstr "Velikost pisave za najmanjšo vrednost na seznamu" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "Izberite izhodišče in cilj" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before running " -"a query." +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." msgstr "" -"Za Bigquery, Presto in Postgres prikaže gumb za izračun potratnosti pred zagonom " -"poizvedbe." +"Omejitev vrstic lahko povzroči nepopolne podatke in zavajajoč grafikon. " +"Premislite o uporabi filtriranja ali združevanja imen izvorov/ciljev." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 msgid "" -"For Trino, describe full schemas of nested ROW types, expanding them with dotted " -"paths" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -"Za Trino opiši celotno shemo gnezdenih tipov vrstic, razširjeno s potmi za pikami" +"Prikaže potek vrednosti različnih skupin na različnih nivojih sistema. " +"Novi nivoji so prikazani kot točke ali plasti. Debelina stolpcev ali " +"povezav predstavlja prikazano mero." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" -msgstr "Za nadaljnja navodila se posvetujte z" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "Demografija" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 -msgid "" -"For more information about objects are in context in the scope of this function, " -"refer to the" -msgstr "Za dodatne informacije o objektih v kontekstu te funkcije si oglejte" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "Rezultati anket" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:412 -msgid "" -"For regular filters, these are the roles this filter will be applied to. For base " -"filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if " -"admin should see all data." -msgstr "" -"Za regularne filtre so te vloge tiste, ki bodo filtrirane. Za osnovne filtre, so " -"te vloge tiste, ki NE bodo filtrirane, npr. Admin, če naj administrator vidi vse " -"podatke." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "Sankey grafikon" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -msgid "Force" -msgstr "Sila" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "Procenti" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking CTAS or " -"CVAS in SQL Lab." -msgstr "" -"Vsilite, da bodo vse tabele in pogledi ustvarjeni s to shemo, ko kliknete CTAS " -"ali CVAS v SQL laboratoriju." +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "Sankey grafikon z zankami" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:159 -msgid "Force date format" -msgstr "Vsili obliko zapisa datuma" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "Tip polja za države" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:388 -msgid "Force refresh" -msgstr "Osveži" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" +msgstr "Celotno ime" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 -msgid "Force refresh schema list" -msgstr "Osveži seznam shem" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" +msgstr "koda Mednarodnega olimpijskega komiteja (cioc)" -#: superset-frontend/src/components/TableSelector/index.tsx:313 -msgid "Force refresh table list" -msgstr "Osveži seznam tabel" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" +msgstr "koda ISO 3166-1 alpha-2 (cca2)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" -msgstr "Periode napovedi" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "koda ISO 3166-1 alpha-3 (cca3)" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" -msgstr "Tuji ključ" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "Standard za oznake držav, ki bodo podane v stolpcu z državami" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:53 -msgid "Forest Green" -msgstr "Gozdno zelena" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" +msgstr "Prikaži mehurčke" -#: superset/commands/explore/get.py:87 superset/views/core.py:483 -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "" -"Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki grafikona." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "Če želite prikaz mehurčkov nad državami" -#: superset/commands/explore/get.py:95 superset/views/core.py:489 -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "" -"Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki " -"podatkovnega seta." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "Max. velikost mehurčka" -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:639 -msgid "Format SQL" -msgstr "Oblikuj SQL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" +msgstr "Barva glede na" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 -msgid "Formatted CSV attached in email" -msgstr "Oblikovan CSV pripet e-pošti" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" +msgstr "" +"Izberite, če želite barvanje držav glede na mero ali kategorično določeno" +" barvno paleto" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -msgid "Formatted date" -msgstr "Oblikovan datum" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "Stolpec z državami" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 -msgid "Formatted value" -msgstr "Oblikovana vrednost" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" +msgstr "Tričrkovna oznaka države" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "Mera, ki določa velikost mehurčka" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 -msgid "Formatting" -msgstr "Oblikovanje" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "Barva mehurčka" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 -msgid "Formula" -msgstr "Formula" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "Barvna shema držav" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -msgid "Forward values" -msgstr "Prihodnje vrednosti" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "Zemljevid sveta, ki lahko prikazuje vrednosti po državah." -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" -msgstr "Najdene so neveljavne možnosti razvrščanja" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "Večdimenzionalni" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:74 -msgid "Fraction digits" -msgstr "Število decimalk" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "Več spremenljivk" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" -msgstr "Frekvenca" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "Priljubljeni" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:306 -msgid "Friction" -msgstr "Trenje" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" +msgstr "deck.gl grafikoni" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:312 -msgid "Friction between nodes" -msgstr "Trenje med vozlišči" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" +msgstr "Izberite nabor deck.gl grafikonov, ki bodo nanizani en na drugem" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "Petek" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "Izberi grafikone" -#: superset/utils/date_parser.py:267 superset/viz.py:387 -msgid "From date cannot be larger than to date" -msgstr "Začetni datum ne sme biti večji od končnega" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" +msgstr "Napaka pri pridobivanju grafikonov" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 -msgid "Full name" -msgstr "Celotno ime" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "Združi več plasti za oblikovanje kompleksnih vizualizacij." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 -msgid "Funnel Chart" -msgstr "Lijakasti grafikon" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "deck.gl - večplastni grafikon" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:487 -msgid "Further customize how to display each column" -msgstr "Dodatne prilagoditve prikaza posameznih stolpcev" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "deckGL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:167 -msgid "Further customize how to display each metric" -msgstr "Dodatne prilagoditve prikaza posameznih mer" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " +msgstr "Začetek (Zemlj. dolžina, širina): " -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 -msgid "GROUP BY" -msgstr "GROUP BY" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " +msgstr "Konec (zemljepisna dolžina, širina): " -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 -msgid "Gauge Chart" -msgstr "Števčni grafikon" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "Začetna Dolž. in Širina" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:77 -msgid "General" -msgstr "Splošno" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "Pokažite na stolpec z lokacijskimi podatki" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." -msgstr "Ustvarjam povezavo, prosim počakajte..." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "Končna Dolž. in Širina" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:67 -msgid "Generic Chart" -msgstr "Generičen grafikon" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" +msgstr "Lok" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 -msgid "Geo" -msgstr "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" +msgstr "Ciljna barva" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 -msgid "GeoJson Column" -msgstr "GeoJson stolpec" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" +msgstr "Barva ciljne lokacije" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 -msgid "GeoJson Settings" -msgstr "GeoJson nastavitve" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" +msgstr "Kategorična barva" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "Izberite dimenzijo, ki bo določala kategorične barve" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "Pridobi zadnji datum glede na časovno enoto." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" +msgstr "Debelina obrobe" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" -msgstr "Določi datum praznika" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Napredno" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:716 -msgid "Go to the edit mode to configure the dashboard and add charts" -msgstr "" -"Za nastavitve nadzorne plošče in dodajanje grafikonov pojdite v način urejanja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." +msgstr "Izriši razdalje (kot letalske koridorje) med izhodiščem in ciljem." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 -msgid "Gold" -msgstr "Zlata" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "deck.gl - lok" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "Ime Googlove preglednice in URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "3D" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 -msgid "Grace period" -msgstr "Obdobje mirovanja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "Mreža" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 -msgid "Graph Chart" -msgstr "Graf" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " +msgstr "Centroid (zemljepisna dolžina in širina): " -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:110 -msgid "Graph layout" -msgstr "Izgled grafikona" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +msgid "Threshold: " +msgstr "Prag: " -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:264 -msgid "Gravity" -msgstr "Gravitacija" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +msgid "The size of each cell in meters" +msgstr "Velikost vsake celice v metrih" -#: superset-frontend/src/explore/constants.ts:67 -msgid "Greater or equal (>=)" -msgstr "Večje ali enako (>=)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +msgid "Aggregation" +msgstr "Agregacija" -#: superset-frontend/src/explore/constants.ts:65 -msgid "Greater than (>)" -msgstr "Večje kot (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "Funkcija za agregacijo točk v skupine" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:58 -msgid "Grid" -msgstr "Mreža" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +msgid "Contours" +msgstr "Plastnice" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 -msgid "Grid Size" -msgstr "Velikost mreže" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" +"Definirajte plastnice. Plastnice predstavljajo nabor črt, ki ločujejo " +"območje nad in pod podano mejo. Površinske plastnice predstavlja nabor " +"poligonov, ki zapolnjujejo področje v določenem obsegu vrednosti." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "Združevanje po (Group by)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" +msgstr "Utež" -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" -msgstr "Vtičnik za filter združevanja po" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "Mera, ki služi kot utež za barvo mreže" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "Združevanje po, Mera ali Procentualna mera morajo imeti vrednost" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" +"Za prikaz prostorske porazdelitve podatkov uporablja ocenjevanje Gaussove" +" jedrno gostote" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:437 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 -msgid "Group Key" -msgstr "Ključ za združevanje" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "deck.gl - plastnice" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 -msgid "Group by" -msgstr "Združevanje po (Group by)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Prostorski" -#: superset/connectors/sqla/views.py:156 -msgid "Groupable" -msgstr "Združevanje" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "Eksperimentalno" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" -msgstr "Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" +msgstr "GeoJson nastavitve" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 -msgid "Handlebars Template" -msgstr "Predloga za Handlebars" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +msgid "Line width unit" +msgstr "Enota debeline črte" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:253 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied when the " -"normalization is applied against the whole heatmap." -msgstr "" -"Mejne vrednosti za barvno lestvico. Upošteva se le, če je normiranje uporabljeno " -"glede na celotni toplotni prikaz." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +msgid "meters" +msgstr "metri" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 -msgid "Has created by" -msgstr "Ustvarjen s strani" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" +msgstr "piksli" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "Glava" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "Skaliranje radija točk" -#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 -msgid "Header Row" -msgstr "Naslovna vrstica" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" +"GeoJsonLayer uporablja podatke v formatu GeoJSON in jih izriše kot " +"interaktivne poligone, črte in točke (krogi, ikone in/ali besedila)." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:1739 -msgid "Heatmap" -msgstr "Toplotni prikaz" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "deck.gl - GeoJson" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:106 -msgid "Heatmap Options" -msgstr "Možnosti toplotnega prikaza" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" +msgstr "Dolžina in širina" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 msgid "Height" msgstr "Višina" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 -msgid "Height of the sparkline" -msgstr "Višina hitrega grafikona" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 -msgid "Hide Line" -msgstr "Skrij črto" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:401 -msgid "Hide chart description" -msgstr "Skrij opis grafikona" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" +msgstr "Mera za določanje višine" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 -msgid "Hide layer" -msgstr "Skrij sloj" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." +msgstr "" +"Prikaz geoprostorskih podatkov kot so 3D zgradbe, parcele ali objekti v " +"mrežnem pogledu." -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 -msgid "Hide password." -msgstr "Skrij geslo." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" +msgstr "deck.gl - 3D mreža" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "Skrij orodno vrstico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" +msgstr "Intenzivnost" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 -msgid "Hides the Line for the time series" -msgstr "Skrije črto časovne serije" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "Intenzivnost je vrednost, ki je pomnožena z utežjo, da dobimo končno utež" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:194 -msgid "Hierarchy" -msgstr "Hierarhija" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" +msgstr "Radij intenzivnosti" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1211 -msgid "Histogram" -msgstr "Histogram" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "Radij intenzivnosti je radij, po katerem je porazdeljena utež" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:239 -msgid "Home" -msgstr "Domov" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +msgid "deck.gl Heatmap" +msgstr "deck.gl - toplotna karta" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" -msgstr "Horizontni grafikon" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" +msgstr "Dinamična agregacijska funkcija" -#: superset/viz.py:1802 -msgid "Horizon Charts" -msgstr "Horizontni grafikoni" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" +msgstr "varianca" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:277 -msgid "Horizontal" -msgstr "Vodoravno" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" +msgstr "deviacija" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 -msgid "Horizontal (Top)" -msgstr "Vodoravno (zgoraj)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "p1" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 -msgid "Horizontal alignment" -msgstr "Vodoravna poravnava" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" +msgstr "p5" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 -msgid "Host" -msgstr "Gostitelj" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "p95" -#: superset/db_engine_specs/base.py:1986 superset/db_engine_specs/clickhouse.py:203 -#: superset/db_engine_specs/databend.py:185 -msgid "Hostname or IP address" -msgstr "Ime gostitelja ali IP naslov" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" +msgstr "p99" -#: superset/db_engine_specs/base.py:107 -msgid "Hour" -msgstr "Ura" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" +"Prikaže šestkotno mrežo na zemljevidu in agregira podatke znotraj meja " +"vsake celice." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" -msgstr "Ure %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" +msgstr "deck.gl - 3D HEX" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:980 -msgid "Hours offset" -msgstr "Urni premik" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "Poli-linija" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "Kako želite vnesti prijavne podatke servisnega računa?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "Na zemljevidu prikaže povezane točke, ki tvorijo pot." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:152 -msgid "How many buckets should the data be grouped in." -msgstr "V koliko razdelkov bodo razvrščeni podatki." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" +msgstr "deck.gl - poti" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" -msgstr "Za koliko period v prihodnosti želite napoved" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +msgid "name" +msgstr "ime" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:346 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 -#: superset-frontend/src/explore/controlPanels/sections.tsx:226 -msgid "" -"How to display time shifts: as individual lines; as the difference between the " -"main time series and each time shift; as the percentage change; or as the ratio " -"between series and time shifts." -msgstr "" -"Način prikaza časovnih zamikov: kot samostojne črte; kot razlike med osnovno " -"časovno vrsto in vsakim časovnim zamikom; kot procentualna sprememba; kot " -"razmerje med vrsto in časovnim zamikom." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" +msgstr "Stolpec poligonov" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" -msgstr "Ogromno" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" +msgstr "Kodiranje poligonov" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "Oznake po ISO 3166-2" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" +msgstr "Višina" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" +msgstr "Nastavitve poligonov" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Id" -msgstr "Id" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" +msgstr "Prosojnost, vnesite vrednosti med 0 in 100" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:87 -msgid "Id of root node of the tree." -msgstr "Id korenskega vozlišča drevesa." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "Število razdelkov za združevanje podatkov" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them. If Hive and hive." -"server2.enable.doAs is enabled, will run the queries as service account, but " -"impersonate the currently logged on user via hive.server2.proxy.user property." -msgstr "" -"V primeru Presto ali Trino se vse poizvedbe v SQL laboratoriju zaženejo pod " -"trenutno prijavljenim uporabnikom, ki mora imeti pravice za poganjanje. Če je " -"omogočen Hive in hive.server2.enable.doAs, poizvedbe tečejo pod servisnim " -"računom, vendar je trenutno prijavljen uporabnik predstavljen z lastnostjo hive." -"server2.proxy.user." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "V koliko razdelkov bodo razvrščeni podatki." -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the currently " -"logged on user who must have permission to run them.
If Hive and hive.server2." -"enable.doAs is enabled, will run the queries as service account, but impersonate " -"the currently logged on user via hive.server2.proxy.user property." -msgstr "" -"V primeru Presto se vse poizvedbe v SQL laboratoriju zaženejo pod trenutno " -"prijavljenim uporabnikom, ki mora imeti pravice za poganjanje.
Če je omogočen " -"Hive in hive.server2.enable.doAs, poizvedbe tečejo pod servisnim računom, vendar " -"je trenutno prijavljen uporabnik predstavljen z lastnostjo hive.server2.proxy." -"user." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" +msgstr "Točke za razčlenitev razdelkov" -#: superset/views/database/forms.py:175 -msgid "If Table Already Exists" -msgstr "Če tabela že obstaja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." +msgstr "Seznam n+1 vrednosti za mero razvrščanja v n razdelkov." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1089 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "Če je določena mera, bo razvrščanje izvedeno na podlagi vrednosti mere" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" +msgstr "Oddajaj dogodke filtrov" -#: superset/views/database/forms.py:249 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ..." -"X.x\"" -msgstr "Če podvojeni stolpci niso izločeni, bodo označeni kot \"X.1, X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" +msgstr "Če želite uporabiti filter, ko kliknete na elemente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:264 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:356 -msgid "" -"If enabled, this control sorts the results/values descending, otherwise it sorts " -"the results ascending." -msgstr "Če je omogočeno, so vrednosti razvrščene padajoče, drugače pa naraščajoče." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" +msgstr "Večkratno filtriranje" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "" -"Če je izbrano, nastavite dovoljene sheme za nalaganje CSV v razdelku \"Dodatno\"." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" +msgstr "Dovoli pošiljanje več poligonov kot dogodek filtra" -#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop and " -"recreate table) or Append (insert data)." +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -"Če tabela obstaja, naj se izvede naslednje: Prekini (ne naredi nič), Zamenjaj " -"(zbriši in ponovno ustvari tabelo) ali Dodaj (vstavi podatke)." - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 -msgid "Ignore cache when generating report" -msgstr "Ne upoštevaj predpomnjenja pri ustvarjanju poročila" +"Prikaže geografsko območje kot poligone na zemljevidu zagotovljenim preko" +" storitve Mapbox. Poligoni so lahko obarvani glede na mero." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 -msgid "Ignore null locations" -msgstr "Izpusti prazne lokacije" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:77 -msgid "Ignore time" -msgstr "Ne upoštevaj časa" - -#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 -msgid "Image (PNG) embedded in email" -msgstr "Slika (PNG) vključena v e-pošto" - -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." -msgstr "Prenos slike ni uspel. Osvežite in poskusite ponovno." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "deck.gl - poligon" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "" -"Predstavljanje kot prijavljeni uporabnik (Presto, Trino, Drill, Hive in GSheets)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "Kategorija" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "Predstavljaj se kot prijavljeni uporabnik" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" +msgstr "Velikost točke" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "Uvozi" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "Enota točke" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "Uvozi %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" +msgstr "Kvadratni metri" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "Uvozi nadzorne plošče" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" +msgstr "Kvadratni kilometri" -#: superset/initialization/__init__.py:338 -msgid "Import Dashboards" -msgstr "Uvozi nadzorne plošče" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" +msgstr "Kvadratne milje" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "Uvozi definicijo tabele" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" +msgstr "Polmer v metrih" -#: superset/commands/chart/exceptions.py:147 -msgid "Import chart failed for an unknown reason" -msgstr "Uvoz grafikona ni uspel zaradi neznanega razloga" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "Polmer v kilometrih" -#: superset-frontend/src/pages/ChartList/index.tsx:787 -msgid "Import charts" -msgstr "Uvozi grafikone" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" +msgstr "Polmer v miljah" -#: superset/commands/dashboard/exceptions.py:74 -msgid "Import dashboard failed for an unknown reason" -msgstr "Uvoz nadzorne plošče ni uspel zaradi neznanega razloga" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "Min. polmer" -#: superset-frontend/src/pages/DashboardList/index.tsx:667 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "Uvozi nadzorne plošče" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" +"Minimalni polmer kroga v pikslih. S tem je določen minimalni polmer " +"kroga, ko se spreminja stopnja povečave." -#: superset/commands/database/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "Uvoz podatkovne baze ni uspel zaradi neznanega razloga" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "Max. polmer" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" -msgstr "Uvozi podatkovno bazo iz datoteke" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" +"Maksimalni polmer kroga v pikslih. S tem je določen maksimalni polmer " +"kroga, ko se spreminja stopnja povečave." -#: superset/commands/dataset/exceptions.py:181 -msgid "Import dataset failed for an unknown reason" -msgstr "Uvoz podatkovnega seta ni uspel zaradi neznanega razloga" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "Barva točke" -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -msgid "Import datasets" -msgstr "Uvozi podatkovne sete" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "" +"Zemljevid, ki na zemljepisnih koordinatah prikazuje kroge s spremenljivim" +" polmerom" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:212 -msgid "Import queries" -msgstr "Uvozi poizvedbe" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "deck.gl - raztreseni grafikon" -#: superset/commands/query/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "Uvoz shranjene poizvedbe ni uspel zaradi neznanega razloga." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" +msgstr "Mreža" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 msgid "" -"Important! Select this if the table is not already sorted by entity id, else " -"there is no guarantee that all events for each entity are returned." +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" -"Pomembno! Izberite, če tabela še ni razvrščena po ID entitete, v nasprotnem " -"primeru ni nujno, da bodo vrnjeni vsi dogodki za posamezno entiteto." +"Agregira podatke znotraj meja celic in agregirane vrednosti ponazori z " +"dinamično barvno lestvico" -#: superset-frontend/src/explore/constants.ts:70 -msgid "In" -msgstr "Vsebuje (IN)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" +msgstr "deck.gl - mreža" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" -msgstr "Vključi serijo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "Za dodatne informacije o objektih v kontekstu te funkcije si oglejte" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 -msgid "Include a description that will be sent with your report" -msgstr "Vključite opis, ki bo vključen v poročilo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr " izvorno kodo za Supersetov \"sandboxed parser\"" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" -msgstr "Vključi ime podatkovne serije v naslov osi" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "Ta funkcionalnost je v vašem okolju onemogočena zaradi varnosti." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:338 -msgid "Include time" -msgstr "Vključi čas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "Izpusti prazne lokacije" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:73 -msgid "Increase" -msgstr "Povečaj" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "Če ne želite upoštevati praznih (NULL) lokacij" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -msgid "Index" -msgstr "Indeks" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "Samodejna povečava" -#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 -msgid "Index Column" -msgstr "Indeksni stolpec" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "Če želite, da se zemljevid prilagodi vašim podatkom po vsaki poizvedbi" -#: superset-frontend/src/features/home/RightMenu.tsx:483 -msgid "Info" -msgstr "Informacije" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "Izberite dimenzijo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:233 -msgid "Inner Radius" -msgstr "Notranji polmer" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "Dodatni podatki za JS" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:239 -msgid "Inner radius of donut hole" -msgstr "Notranji polmer kolobarja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "Seznam dodatnih stolpcev, ki bodo na razpolago v JavaScript funkcijah" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 -msgid "Input custom width in pixels" -msgstr "Vnesi poljubno širino v pikslih" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" +msgstr "JavaScript prestreznik podatkov" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "Vnosno polje omogoča poljubno rotacijo (vnesite 30 za 30°)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." +msgstr "" +"Določite Javascript funkcijo, ki sprejme podatkovni niz za vizualizacijo " +"in vrne spremenjeno verzijo tega niza. Lahko se uporabi za spreminjanje " +"lastnosti podatkov, filtra ali obogatitve niza." -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "Takojšnje filtriranje" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "JavaScript generator opisa orodja" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 -msgid "Intensity" -msgstr "Intenzivnost" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" +msgstr "Določite funkcijo, ki sprejme vhodne podatke in vrne vsebino opisa orodja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 -msgid "Intensity Radius" -msgstr "Radij intenzivnosti" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" +msgstr "JavaScript onClick href" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" -msgstr "Radij intenzivnosti je radij, po katerem je porazdeljena utež" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "Določite funkcijo, ki vrne URL za navigacijo, ko uporabnik klikne" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "Intenzivnost je vrednost, ki je pomnožena z utežjo, da dobimo končno utež" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" +msgstr "Oblika legende" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 -msgid "Interval" -msgstr "Interval" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" +msgstr "Izberite obliko vrednosti legende" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 -msgid "Interval End column" -msgstr "Stolpec konca intervala" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" +msgstr "Položaj legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:284 -msgid "Interval bounds" -msgstr "Meje intervalov" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" +msgstr "Izberite položaj legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:298 -msgid "Interval colors" -msgstr "Barve intervalov" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" +msgstr "Zgoraj levo" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 -msgid "Interval start column" -msgstr "Stolpec začetka intervala" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" +msgstr "Zgoraj desno" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:278 -msgid "Intervals" -msgstr "Intervali" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" +msgstr "Spodaj levo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -msgid "Intesity" -msgstr "Intenzivnost" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" +msgstr "Spodaj desno" -#: superset/db_engine_specs/ocient.py:272 -msgid "" -"Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:" -"port/database'." -msgstr "" -"Neveljaven niz povezave: pričakovan je niz oblike 'ocient://user:pass@host:port/" -"database'." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" +msgstr "Stolpec črt" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "Neveljaven JSON" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" +msgstr "Stolpec v podatkovni bazi, ki vsebuje podatke črt" -#: superset/advanced_data_type/api.py:101 -#, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "Neveljaven napreden tip rezultata: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Debelina črte" -#: superset/databases/schemas.py:197 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "Neveljaven certifikat" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" +msgstr "Debelina črt" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" +msgstr "Barva polnila" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" +msgstr " Nastavite prosojnost na 0, če želite obdržati barvo določeno v GeoJSON" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" +msgstr "Barva obrobe" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" +msgstr "Zapolnjeno" -#: superset/databases/schemas.py:175 -msgid "" -"Invalid connection string, a valid string usually follows: backend+driver://user:" -"password@database-host/database-name" -msgstr "" -"Neveljaven niz povezave - veljaven niz je običajno v obliki: backend+driver://" -"user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" +msgstr "Če želite zapolniti objekte" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually follows:'DRIVER://USER:" -"PASSWORD@DB-HOST/DATABASE-NAME'

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

" -msgstr "" -"Neveljaven niz povezave. Veljaven niz običajno sledi zapisu:'DRIVER://USER:" -"PASSWORD@DB-HOST/DATABASE-NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" +msgstr "Obrobljeno" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "Neveljaven cron izraz" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" +msgstr "Če želite prikazati obrobe" -#: superset/utils/pandas_postprocessing/cum.py:54 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Neveljaven kumulativni operand: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" +msgstr "Relief" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:863 -msgid "Invalid currency code in saved metrics" -msgstr "Neveljavna koda valute v shranjeni meri" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" +msgstr "Če želite mrežo v 3D-prikazu" -#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:58 -msgid "Invalid date/timestamp format" -msgstr "Neveljaven zapis datuma/časa" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +msgid "Grid Size" +msgstr "Velikost mreže" -#: superset/viz.py:1646 -msgid "Invalid filter configuration, please select a column" -msgstr "Neveljavna nastavitev filtrov, izberite stolpec" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "Določa velikost mreže v pikslih" -#: superset/models/helpers.py:1913 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "Neveljaven tip operacije filtra: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "Parametri povezani s pogledom in perspektivo zemljevida" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "Neveljaven geodetski niz" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" +msgstr "Dolžina in širina" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "Neveljaven niz za geohash" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" +msgstr "Fiksni radij točk" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" -msgstr "Neveljaven vnos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "Množitelj" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "Neveljavna nastavitev zemljepisne dolžine/širine." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "Faktor, s katerim množite mero" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "Neveljavna zemljepisna dolžina/širina" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "Kodiranje črt" -#: superset/utils/core.py:1246 -#, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "Neveljaven objekt mere: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" +msgstr "Oblika kodiranja črt" -#: superset/utils/pandas_postprocessing/utils.py:172 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "Neveljavna numpy funkcija: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "geohash (kvadrat)" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Neveljavne možnosti za %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" +msgstr "Zamenjaj širino in dolžino" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" -msgstr "Neveljaven ključ povezave" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" +msgstr "GeoJson stolpec" -#: superset/db_engine_specs/ocient.py:290 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" -msgstr "Neveljaven sklic na stolpec: \"%(column)s\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "Izberite geojson stolpec" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "Neveljaven tip rezultata: %(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "Oblika desne osi" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "Neveljaven rolling_type: %(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "Prikaži markerje" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -msgid "Invalid state." -msgstr "Neveljavno stanje." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "Prikaži točke kot krožne markerje na krivuljah" -#: superset/commands/report/create.py:141 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" -msgstr "Neveljavni id-ji zavihkov: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "Meje Y-osi" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" -msgstr "Invertiraj izbiro" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "Če želite prikaz min. in max. vrednosti Y-osi" -#: superset-frontend/src/components/Table/index.tsx:224 -msgid "Invert current page" -msgstr "Invertiraj trenutno stran" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "Meje Y-osi 2" -#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 -#: superset/datasets/filters.py:39 -msgid "Is certified" -msgstr "Certificiran" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "Slog črte" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 -msgid "Is dimension" -msgstr "Dimenzija" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" +msgstr "linearno" -#: superset-frontend/src/explore/constants.ts:87 -msgid "Is false" -msgstr "Je FALSE" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" +msgstr "basis" -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "Je priljubljen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" +msgstr "cardinal" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 -msgid "Is filterable" -msgstr "Filtriranje" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" +msgstr "monotone" -#: superset-frontend/src/explore/constants.ts:78 -msgid "Is not null" -msgstr "Ni NULL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" +msgstr "step-before" -#: superset-frontend/src/explore/constants.ts:81 -msgid "Is null" -msgstr "Je NULL" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" +msgstr "step-after" -#: superset/views/base_api.py:177 -msgid "Is tagged" -msgstr "Je označen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "Interpolacija krivulje na osnovi d3.js" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 -#: superset/connectors/sqla/views.py:160 -msgid "Is temporal" -msgstr "Časoven" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" +msgstr "Prikaži filter obdobja" -#: superset-frontend/src/explore/constants.ts:86 -msgid "Is true" -msgstr "Je TRUE" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "Če želite prikaz interaktivnega izbirnika časovnega obdobja" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 -msgid "Isoband" -msgstr "Površinska plastnica" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "Dodatni kontrolniki" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 -msgid "Isoline" -msgstr "Plastnica" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "" +"Če želite prikaz dodatnih kontrolnikov. Dodatni kontrolniki vključujejo " +"možnost izdelave večstolpčnih grafikonov, naloženih ali drug ob drugem." -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Težava 1000 - podatkovni vir je prevelik za poizvedbo." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "Postavitev oznak na X-osi" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Težava 1001 - podatkovni vir je neobičajno obremenjen." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" +msgstr "ravno" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 -msgid "It’s not recommended to truncate axis in Bar chart." -msgstr "V stolpčnem grafikonu ni priporočljivo omejiti osi." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" +msgstr "cik-cak" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "JAN" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "Način razporeditve oznak na X-osi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" +msgstr "Oblika X-osi" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSON-metapodatki" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "Logaritemska Y-os" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 -msgid "JSON metadata" -msgstr "JSON-metapodatki" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "Uporabi logaritemsko skalo za Y-os" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 -msgid "JSON metadata is invalid!" -msgstr "JSON-metapodatki niso veljavni!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "Meje Y-osi" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"JSON string containing additional connection configuration. This is used to " -"provide connection information for systems like Hive, Presto and BigQuery which " -"do not conform to the username:password syntax normally used by SQLAlchemy." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -"JSON niz, ki vsebuje dodatno konfiguracijo povezave. Uporablja se za " -"zagotavljanje dodatnih informacij povezave za sisteme kot sta Presto in BigQuery, " -"ki nista skladna s sintakso username:password, ki jo običajno uporablja " -"SQLAlchemy." - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "JUL" +"Meje Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi " +"min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa" +" ostane enak." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "JUN" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "Januar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "Meje Y-osi 2" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "JavaScript data interceptor" -msgstr "JavaScript prestreznik podatkov" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "Meje X-osi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "JavaScript onClick href" -msgstr "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "Če želite prikaz min. in max. vrednosti X-osi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "JavaScript tooltip generator" -msgstr "JavaScript generator opisa orodja" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "Vrednosti stolpcev" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 -msgid "Jinja templating" -msgstr "Jinja" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "Prikaži vrednosti na vrhu stolpcev" -#: superset/views/database/forms.py:244 -msgid "Json list of the column names that should be read" -msgstr "Json seznam imen stolpcev, ki bodo prebrani" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "Naloženi stolpci" -#: superset/views/database/forms.py:471 -msgid "" -"Json list of the column names that should be read. If not None, only these " -"columns will be read from the file." -msgstr "" -"JSON seznam imen stolpcev, ki morajo biti prebrani. Če ni prazen, bodo iz " -"datoteke prebrani le ti stolpci." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "Manj oznak X-osi" -#: superset/views/database/forms.py:214 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] for " -"empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only a single value" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -"JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: [\"\"] za " -"prazne nize, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna baza " -"Hive podpira le eno vrednost" +"Zmanjša število izrisanih oznak na X-osi. Če je vklopljeno, se x-os ne bo" +" prelila in lahko oznake manjkajo. Če je izklopljeno, bo upoštevana min. " +"širina stolpcev, ki pa se lahko prelije v horizontalni drsnik." -#: superset/views/database/forms.py:401 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"], " -"[\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only " -"single value. Use [\"\"] for empty string." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -"JSON seznam vrednosti, ki bodo obravnavane kot prazne (Null). Primeri: [\"\"], " -"[\"None\", \"N/A\"], [\"nan\", \"null\"]. Opozorilo: Podatkovna baza Hive podpira " -"le eno vrednost. Uporabite [\"\"] za prazen znakovni niz." - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "Julij" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "Junij" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 -msgid "KPI" -msgstr "KPI" +"Skupaj s filtriranjem časovnega obdobja ne morete uporabiti oznak pod 45°" +" kotom" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:666 -msgid "Keep control settings?" -msgstr "Obdržim nastavitve kontrolnika?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "Slog nalaganja" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 -msgid "Keep editing" -msgstr "Nadaljuj z urejanjem" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" +msgstr "nalaganje" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -msgid "Key" -msgstr "Ključ" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" +msgstr "tok" -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:656 -msgid "Keyboard shortcuts" -msgstr "Bližnjice na tipkovnici" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" +msgstr "razširi" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 -msgid "Keys for table" -msgstr "Ključi za tabelo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "Evolucija" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:150 -msgid "Kilometers" -msgstr "Kilometri" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." +msgstr "" +"Grafikon časovne vrste, ki prikaže kako se povezane mere skupin " +"spreminjajo skozi čas. Vsaka skupina je prikazana s svojo barvo." -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 -msgid "LIMIT" -msgstr "OMEJITEV" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "Raztegnjen slog" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1243 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -msgid "Label" -msgstr "Naziv" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "Naložen slog" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:111 -msgid "Label Contents" -msgstr "Označi vsebino" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "Igralne konzole" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:176 -msgid "Label Line" -msgstr "Črta oznake" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" +msgstr "Vrste vozil" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:96 -msgid "Label Type" -msgstr "Tip oznake" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" +msgstr "Ploščinski grafikon (zastarelo)" -#: superset/utils/pandas_postprocessing/rename.py:53 -msgid "Label already exists" -msgstr "Oznaka že obstaja" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "Zvezno" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "Ime vaše poizvedbe" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" +msgstr "Črta" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:124 -msgid "Label position" -msgstr "Položaj oznake" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "nvd3" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:200 -msgid "Label threshold" -msgstr "Prag oznak" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "Zastarelo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:161 -msgid "Labelling" -msgstr "Oznake" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" +msgstr "Razvrščanje omejitev serije" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:105 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:66 -msgid "Labels" -msgstr "Oznake" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." +msgstr "" +"Mera, ki določa kako je razvrščena meja, če je določena omejitev serij. " +"Če ni določena, se uporabi prva mera (kjer je to ustrezno)." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" -msgstr "Oznake za markirne črtice" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" +msgstr "Razvrsti padajoče" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" -msgstr "Oznake za markerje" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "" +"Če želite padajoče ali naraščajoče razvrščanje, ko je prisotna omejitev " +"serije" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" -msgstr "Oznake za razpone" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." +msgstr "" +"Prikaže spreminjanje mere skozi čas s pomočjo stolpcev. Dodajte stolpec " +"za združevanje po za prikaz mer na nivoju skupin in njihovega " +"spreminjanja." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" -msgstr "Veliko" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" +msgstr "Stolpčni grafikon za časovno vrsto (zastarelo)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" -msgstr "Zadnji" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "Stolpec" -#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "Zadnja sprememba" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "Navpično" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "Zadnja sprememba" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Box Plot" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "Zadnja posodobitev %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "Logaritemska X-os" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, python-format -msgid "Last Updated %s by %s" -msgstr "Zadnja posodobitev %s, %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "Uporabi logaritemsko skalo za X-os" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" -msgstr "Zadnja razpoložljiva vrednost na %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "" +"Prikaže mero v treh dimenzijah podatkov na istem grafikonu (x os, y os, " +"velikost mehurčka). Mehurčki v isti skupini so predstavljeni z barvo." -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AlertReportList/index.tsx:328 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 -#: superset-frontend/src/pages/ChartList/index.tsx:453 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 -#: superset-frontend/src/pages/DashboardList/index.tsx:372 -#: superset-frontend/src/pages/DatabaseList/index.tsx:406 -#: superset-frontend/src/pages/DatasetList/index.tsx:410 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:377 -#: superset-frontend/src/pages/Tags/index.tsx:168 -msgid "Last modified" -msgstr "Zadnja sprememba" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +msgid "Bubble Chart (legacy)" +msgstr "Mehurčkasti grafikon (zastarelo)" -#: superset-frontend/src/pages/AlertReportList/index.tsx:269 -msgid "Last run" -msgstr "Zadnji zagon" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" +msgstr "Razponi" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:78 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" -msgstr "Širina" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "Razponi za označitev s senčenjem" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:309 -msgid "Latitude of default viewport" -msgstr "Širina privzetega pogleda" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "Oznake razponov" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 -msgid "Layer configuration" -msgstr "Nastavitve sloja" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "Oznake za razpone" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:112 -msgid "Layout" -msgstr "Izgled" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "Markerji" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" -msgstr "Postavitev elementov" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "Seznam vrednosti, ki bodo markirane s trikotniki" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:116 -msgid "Layout type of graph" -msgstr "Tip izgleda grafikona" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "Oznake markerjev" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:125 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:248 -msgid "Layout type of tree" -msgstr "Način izgleda drevesa" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "Oznake za markerje" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 -msgid "" -"Leaf nodes that represent fewer than this number of events will be initially " -"hidden in the visualization" -msgstr "" -"Končna vozlišča, ki imajo manjše število dogodkov od nastavljene vrednosti, bodo " -"na prikazu prvotno skrita" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "Markirne črtice" -#: superset-frontend/src/pages/ChartList/index.tsx:723 -#: superset-frontend/src/pages/DashboardList/index.tsx:604 -#: superset-frontend/src/pages/Tags/index.tsx:286 -msgid "Least recently modified" -msgstr "Zadnje spremenjeno" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "Seznam vrednosti, ki bodo markirane s črticami" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:396 -msgid "Left" -msgstr "Levo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "Oznake markirnih črtic" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:202 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 -msgid "Left Margin" -msgstr "Levi rob" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "Oznake za markirne črtice" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 -msgid "Left margin, in pixels, allowing for more room for axis labels" -msgstr "Levi rob, v pikslih, s katerim povečamo prostor za oznake osi" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "KPI" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Left to Right" -msgstr "Od leve proti desni" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" +"Prikaže napredovanje posamezne mere glede na cilj. Večja napolnjenost, " +"pomeni, da je mera bližje cilju." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" -msgstr "Leva vrednost" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" +"Prikaže več različnih časovnih vrst na istem grafikonu. Grafikon se " +"opušča, zato priporočamo uporabo Grafikona časovne vrste." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:37 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "Zastarelo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "Časovna vrsta - Procentualna sprememba" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 -msgid "Legend" -msgstr "Legenda" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "Uredi stolpce" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -msgid "Legend Format" -msgstr "Oblika legende" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "Uredi stolpce po x-oznakah." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 -msgid "Legend Orientation" -msgstr "Orientacija legende" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" +msgstr "Razčlenitev" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -msgid "Legend Position" -msgstr "Položaj legende" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "Določa, kako se vsaka podatkovna serija razčleni" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 -msgid "Legend type" -msgstr "Tip legende" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "" +"Primerjava mer različnih kategorij s pomočjo stolpcev. Dolžina stolpca " +"prestavlja višino vrednosti, z barvami pa so ločene skupine." -#: superset-frontend/src/explore/constants.ts:62 -msgid "Less or equal (<=)" -msgstr "Manjše ali enako (<=)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "Stolpčni graf (zastarelo)" -#: superset-frontend/src/explore/constants.ts:60 -msgid "Less than (<)" -msgstr "Manjše kot (<)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" +msgstr "Aditivno" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" -msgstr "Točnost procentualnega dviga" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" +msgstr "Diskretno" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:237 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Light" -msgstr "Svetlo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "Razširi" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" -msgstr "Svetli način" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "Pošlji dogodke filtra obdobja na druge grafikone" -#: superset-frontend/src/explore/constants.ts:72 -msgid "Like" -msgstr "Like" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "Standardni grafikon za prikaz spreminjanje mere skozi čas." -#: superset-frontend/src/explore/constants.ts:74 -msgid "Like (case insensitive)" -msgstr "Like (ni razlik. velikih/malih črk)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" +msgstr "Napolnjenost baterije skozi čas" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "Omejitev dosežena" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" +msgstr "Črtni grafikon (zastarelo)" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "Omeji vrednosti izbirnikov" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" +msgstr "Tip oznake" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 -msgid "Limit type" -msgstr "Tip omejitve" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" +msgstr "Ime kategorije" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 -msgid "" -"Limiting rows may result in incomplete data and misleading charts. Consider " -"filtering or grouping source/target names instead." -msgstr "" -"Omejitev vrstic lahko povzroči nepopolne podatke in zavajajoč grafikon. " -"Premislite o uporabi filtriranja ali združevanja imen izvorov/ciljev." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Vrednost" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -msgid "Limits the number of cells that get retrieved." -msgstr "Omeji število pridobljenih celic." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" +msgstr "Procenti" -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "Omeji število vrstic za prikaz." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "Kategorija in vrednost" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:282 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:297 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an extra " -"phase where subqueries are not supported) is applied to limit the number of " -"series that get fetched and rendered. This feature is useful when grouping by " -"high cardinality column(s) though does increase the query complexity and cost." -msgstr "" -"Omeji število časovnih vrst za prikaz. S podpoizvedbo (ali dodatno fazo, kjer " -"podpoizvedbe niso podprte) se omeji število časovnih vrst, ki bodo pridobljene za " -"prikaz. Ta funkcija je uporabna pri združevanju s stolpci z veliko " -"kardinalnostjo, vendar poveča kompleksnost poizvedbe." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "Kategorija in procent" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:255 -msgid "" -"Limits the number of the rows that are computed in the query that is the source " -"of the data used for this chart." -msgstr "" -"Omeji število vrstic, ki se izračunajo v poizvedbi, ki je vir podatkov za ta " -"grafikon." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "Kategorija, vrednost in procent" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -msgid "Line" -msgstr "Črta" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "Kaj bo prikazano na oznaki?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:79 -msgid "Line Chart" -msgstr "Črtni grafikon" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "Kolobar" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 -msgid "Line Chart (legacy)" -msgstr "Črtni grafikon (zastarelo)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "Želite kolobar ali torto?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 -msgid "Line Style" -msgstr "Slog črte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "Prikaži oznake" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 msgid "" -"Line chart is used to visualize measurements taken over a given category. Line " -"chart is a type of chart which displays information as a series of data points " -"connected by straight line segments. It is a basic type of chart common in many " -"fields." -msgstr "" -"Črtni grafikon se uporablja se za vizualizacijo meritev zajetih skozi čas. " -"Posamezne točke so med seboj povezane z ravnimi črtami." +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." +msgstr "Če želite prikazati oznake. Oznake so prikazane le nad 5-odstotnim pragom." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 -msgid "Line interpolation as defined by d3.js" -msgstr "Interpolacija krivulje na osnovi d3.js" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "Postavi oznake zunaj" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 -msgid "Line width" -msgstr "Debelina črte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "Postavim oznake zunaj torte?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:116 -msgid "Line width unit" -msgstr "Enota debeline črte" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +msgid "Pie Chart (legacy)" +msgstr "Tortni grafikon (zastarelo)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:138 -msgid "Linear Color Scheme" -msgstr "Linearna barvna shema" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" +msgstr "Frekvenca" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "Linearna barvna shema" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "Leto (freq=AS)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 -msgid "Linear interpolation" -msgstr "Linearna interpolacija" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "52 tednov z začetkom v ponedeljek (freq=52W-MON)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 -msgid "Lines column" -msgstr "Stolpec črt" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "1 teden z začetkom v nedeljo (freq=W-SUN)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 -msgid "Lines encoding" -msgstr "Kodiranje črt" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" +msgstr "1 teden z začetkom v ponedeljek (freq=W-MON)" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Link Copied!" -msgstr "Povezava kopirana!" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "Dan (freq=D)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 -msgid "List Unique Values" -msgstr "Seznam unikatnih vrednosti" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "4 tedni (freq=4W-MON)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 -msgid "List of extra columns made available in JavaScript functions" -msgstr "Seznam dodatnih stolpcev, ki bodo na razpolago v JavaScript funkcijah" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." +msgstr "" +"Periodičnost za vrtenje časa. Uporabnik lahko poda\n" +" psevdonim za zamik v \"Pandas\".\n" +" Kliknite na mehurček za podrobnosti dovoljenih izrazov za " +"\"freq\"." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -msgid "List of n+1 values for bucketing metric into n buckets." -msgstr "Seznam n+1 vrednosti za mero razvrščanja v n razdelkov." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" +msgstr "Časovna serija - Vrtenje periode" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" -msgstr "Seznam vrednosti, ki bodo markirane s črticami" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" +msgstr "Formula" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" -msgstr "Seznam vrednosti, ki bodo markirane s trikotniki" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" +msgstr "Dogodek" -#: superset-frontend/src/components/TableSelector/index.tsx:187 -msgid "List updated" -msgstr "Seznam posodobljen" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" +msgstr "Interval" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "CSS urejevalnik v živo" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" +msgstr "Naloži" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:216 -msgid "Live render" -msgstr "Sprotni izris" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" +msgstr "Tok" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "Naloži CSS predlogo" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" +msgstr "Razširi" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "Naloženo v predpomnilnik" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "Prikaži legendo" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "Naloženo iz predpomnilnika" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "Če želite prikaz legende za grafikon" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 -msgid "Loading" -msgstr "Nalaganje" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "Rob" -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:584 -#: superset-frontend/src/components/Select/Select.tsx:597 -#: superset-frontend/src/components/Select/utils.tsx:158 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "Nalagam ..." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "Dodatni razmak za legendo." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 -msgid "Locate the chart" -msgstr "Lociraj grafikon" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" +msgstr "Drsnik" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:198 -msgid "Log Scale" -msgstr "Logaritemska skala" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "Preprosto" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 -msgid "Log retention" -msgstr "Hranjenje dnevnikov" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "Tip legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 -msgid "Logarithmic axis" -msgstr "Logaritemska os" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" +msgstr "Orientacija" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:391 -msgid "Logarithmic scale on primary y-axis" -msgstr "Logaritemska skala na primarni y-osi" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" +msgstr "Spodaj" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:450 -msgid "Logarithmic scale on secondary y-axis" -msgstr "Logaritemska skala na sekundarni y-osi" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" +msgstr "Desno" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 -msgid "Logarithmic x-axis" -msgstr "Logaritemska x-os" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" +msgstr "Orientacija legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:438 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:209 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:212 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:197 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:194 -msgid "Logarithmic y-axis" -msgstr "Logaritemska y-os" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" +msgstr "Prikaži vrednost" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" +msgstr "Na grafikonu prikaži vrednosti serij" -#: superset-frontend/src/features/home/RightMenu.tsx:563 -msgid "Login" -msgstr "Prijava" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "Nalagaj serije eno na drugo" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -msgid "Login with" -msgstr "Prijava z" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "Samo vsota" -#: superset-frontend/src/features/home/RightMenu.tsx:487 -msgid "Logout" -msgstr "Odjava" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "" +"Na naloženem grafikonu prikaži samo skupno vsoto, za izbrane kategorije " +"pa ne" -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "Dnevniki" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" +msgstr "Procentualni prag" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -msgid "Long dashed" -msgstr "Dolgo-črtkano" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "Minimalni prag v odstotnih točkah za prikaz oznak." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:68 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "Dolžina" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "Podroben opis orodja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 -msgid "Longitude & Latitude" -msgstr "Dolžina in širina" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "Prikaže seznam vseh razpoložljivih podatkovnih serij za istočasno točko" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "Stolpci zemljepisne dolžine in širine" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" +msgstr "Oblika zapisa časa v opisu orodja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 -msgid "Longitude and Latitude" -msgstr "Dolžina in širina" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "Mera za razvrščanje opisa orodja" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Longitude of default viewport" -msgstr "Dolžina privzetega pogleda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "Če želite padajoče razvrstiti opis orodja z izbrano mero." -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 -msgid "Lower Threshold" -msgstr "Spodnji prag" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "Opis orodja" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 -msgid "Lower threshold must be lower than upper threshold" -msgstr "Spodnji prag mora biti manjši od zgornjega" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" +msgstr "Razvrsti serije po" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "MAR" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "Na osnovi česa so serije sortirane na grafikonu in legendi" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "MAJ" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" +msgstr "Razvrsti serije naraščajoče" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "PON" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "Razvrsti serije naraščajoče" -#: superset/connectors/sqla/views.py:409 -msgid "Main Datetime Column" -msgstr "Glavni stolpec Datum-Čas" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "Zavrti oznako x-osi" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 -msgid "" -"Make sure that the controls are configured properly and the datasource contains " -"data for the selected time range" -msgstr "" -"Poskrbite, da so kontrolniki pravilno nastavljeni in podatkovni vir vsebuje " -"podatke za izbrano časovno obdobje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "Vnosno polje omogoča poljubno rotacijo (vnesite 30 za 30°)" -#: superset/views/core.py:764 -msgid "Malformed request. slice_id or table_name and db_name arguments are expected" -msgstr "" -"Deformirana zahteva. Pričakovani so argumenti slice_id ali table_name in db_name" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" +msgstr "Razvrščanje serij" -#: superset/initialization/__init__.py:283 superset/initialization/__init__.py:295 -#: superset/initialization/__init__.py:342 superset/initialization/__init__.py:408 -#: superset/initialization/__init__.py:421 -msgid "Manage" -msgstr "Upravljaj" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +msgid "Truncate X Axis" +msgstr "Prireži X-os" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:338 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 -msgid "Manage email report" -msgstr "Upravljaj e-poštno poročilo" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." +msgstr "" +"Prireži X-os. Če določite spodnjo ali zgornjo mejo, preprečite " +"prirezovanje. Deluje samo za numerično X os." -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" -msgstr "Upravljajte podatkovne baze" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +msgid "X Axis Bounds" +msgstr "Meje X-osi" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 -msgid "Mandatory" -msgstr "Obvezno" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +msgid "" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." +msgstr "" +"Meje numerične X-osi. Ni veljavno za časovne ali kategorične osi. Če je " +"prazno, se meje nastavijo dinamično na podlagi min./max. vrednosti " +"podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane enak." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -msgid "Manually set min/max values for the y-axis." -msgstr "Ročno nastavi min./max. vrednosti za y-os." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +msgid "Minor ticks" +msgstr "Pomožne oznake" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:52 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:25 -msgid "Map" -msgstr "Zemljevid" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +msgid "Show minor ticks on axes." +msgstr "Na oseh prikaži pomožne oznake." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 -msgid "Map Style" -msgstr "Slog zemljevida" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" +msgstr "Zadnja razpoložljiva vrednost na %s" -#: superset/viz.py:1814 -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" +msgstr "Ni posodobljeno" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "Marec" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Ni podatkov" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 -msgid "Margin" -msgstr "Rob" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" +msgstr "" +"Ni podatkov po filtriranju ali pa imajo vrednost NULL za zadnji časovni " +"zapis" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 -msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "Označite stolpec kot časoven preko okna \"Uredi podatkovni vir\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" +"Poskusite uporabiti druge filtre oz. zagotovite, da so v podatkovnem viru" +" podatki" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:134 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:128 -msgid "Marker" -msgstr "Marker" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "Velikost pisave Velike številke" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:142 -msgid "Marker Size" -msgstr "Velikost markerja" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "Drobno" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" -msgstr "Oznake markerjev" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "Majhno" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" -msgstr "Oznake markirnih črtic" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "Normalno" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" -msgstr "Markirne črtice" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" +msgstr "Veliko" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 -msgid "Marker size" -msgstr "Velikost markerja" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "Ogromno" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" -msgstr "Markerji" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "Velikost pisave podnaslova" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Tip označevanja" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" +msgstr "Nastavitve prikaza" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "Max" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" +msgstr "Podnaslov" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 -msgid "Max Bubble Size" -msgstr "Max. velikost mehurčka" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "Besedilo, ki se prikaže pod veliko številko" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" -msgstr "Maksimalno število dogodkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" +msgstr "Oblika zapisa datuma" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1154 -msgid "Maximum" -msgstr "Maksimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" +msgstr "Vsili obliko zapisa datuma" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" -msgstr "Max. velikost pisave" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" +msgstr "Oblikovanje datuma uporabi tudi, ko vrednost mere ni časovna značka" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:113 -msgid "Maximum Radius" -msgstr "Max. polmer" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +msgid "Conditional Formatting" +msgstr "Pogojno oblikovanje" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" +msgstr "Za mere uporabi pogojno oblikovanje z barvami" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, this " -"insures that the circle respects this maximum radius." +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" -"Maksimalni polmer kroga v pikslih. S tem je določen maksimalni polmer kroga, ko " -"se spreminja stopnja povečave." +"Prikaže eno vrednost. Velika številka je primerna za poudarek KPI-ja ali " +"vrednosti, na katero želite usmeriti pozornost." -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 -msgid "Maximum value" -msgstr "Maksimalna vrednost" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "Velika številka" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:98 -msgid "Maximum value on the gauge axis" -msgstr "Največja vrednost na številčnici" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "S podnaslovom" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "Maj" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Velika številka" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:87 -msgid "Mean of values over specified period" -msgstr "Povprečna vrednost v dani periodi" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "Preteklo obdobje za primerjavo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:270 -msgid "Mean values" -msgstr "Srednje vrednosti" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "Število časovnih obdobij za primerjavo (na osnovi granulacije)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" -msgstr "Mediana" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "Pripona za procent" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:232 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the thinnest." -msgstr "" -"Mediana debeline povezave. Najdebelejša povezava bo 4-krat debelejša od najtanjše." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "Pripona za prikaz procenta" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:219 -msgid "Median node size, the largest node will be 4 times larger than the smallest" -msgstr "" -"Mediana velikosti vozlišča. Največje vozlišče bo 4-krat večje od najmanjšega" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "Prikaži časovno značko" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 -msgid "Median values" -msgstr "Mediane" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "Če želite prikazati časovno značko" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" -msgstr "Srednje" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "Prikaži trendno črto" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 -msgid "Menu actions trigger" -msgstr "Preklapljanje funkcionalnosti menijev" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "Če želite prikazati trendno črto" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 -msgid "Message content" -msgstr "Vsebina sporočila" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "Začni y-os z 0" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" -msgstr "Metapodatki" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" +"Začni y-os z nič. Ne izberite, če želite, da se y-os začne z najmanjšo " +"vrednostjo podatkov." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 -msgid "Metadata Parameters" -msgstr "Parametri metapodatkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "Za celotno časovno obdobje" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:798 -msgid "Metadata has been synced" -msgstr "Metapodatki so sinhronizirani" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" +"Trendna črta za celotno izbrano obdobje, v primeru, da filtrirani " +"rezultati ne vsebujejo začetnega ali končnega datuma" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:379 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 -#: superset-frontend/src/explore/controlPanels/sections.tsx:259 -msgid "Method" -msgstr "Metoda" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" +msgstr "ČASOVNA X-OS" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:179 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "Mera" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "" +"Prikaže eno vrednost skupaj s preprostim črtnim grafikonom, za poudarek " +"pomembne mere skupaj z njeno časovno spremembo." -#: superset/connectors/sqla/models.py:1698 superset/models/helpers.py:1241 -#: superset/models/helpers.py:1548 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "Mera '%(metric)s' ne obstaja" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Velika številka s trendno krivuljo" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 -msgid "Metric Key" -msgstr "Ključ mere" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "Možnosti grafikona kvantilov" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric ascending" -msgstr "Naraščajoča mera" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "Določa kako so izračunani kvantili in izstopajoče vrednosti." -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "Mera za [X] os" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" +msgstr "Tukey" -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "Mera za [Y] os" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "Min/max (brez osamelcev)" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:97 -msgid "Metric change in value from `since` to `until`" -msgstr "Sprememba mere od vrednosti \"OD\" do \"DO\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "2/98 percentil" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1275 -msgid "Metric currency" -msgstr "Valuta mere" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "9/91 percentil" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:41 -msgid "Metric descending" -msgstr "Padajoča mera" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "Kategorije za združevanje po x-osi." -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:111 -msgid "Metric factor change from `since` to `until`" -msgstr "Sprememba faktorja mere od vrednosti \"OD\" do \"DO\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" +msgstr "Porazdeli glede na" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:100 -msgid "Metric for node values" -msgstr "Mera za vrednosti vozlišč" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." +msgstr "Stolpci za izračun porazdelitve." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 -msgid "Metric name" -msgstr "Ime mere" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." +msgstr "" +"Znan tudi kot grafikon škatla z brki. prikaže primerjavo porazdelitev " +"povezanih mer v različnih skupinah. Škatla na sredini predstavlja " +"povprečje, mediano in notranja 2 kvartila. Brki na vsaki škatli " +"prikazujejo minimum, maksimum, območje in zunanja dva kvartila." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:839 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "Ime mere [%s] je podvojeno" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "ECharts" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:104 -msgid "Metric percent change in value from `since` to `until`" -msgstr "Procentualna sprememba mere od vrednosti \"OD\" do \"DO\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +msgid "Bubble size number format" +msgstr "Oblika zapisa velikosti mehurčka" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:145 -msgid "Metric that defines the size of the bubble" -msgstr "Mera, ki določa velikost mehurčka" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +msgid "Bubble Opacity" +msgstr "Prosojnost mehurčka" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" -msgstr "Mera za prikaz spodnjega naslova" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" +msgstr "Vrednost 0 pomeni popolno prosojnost, 1 pa neprosojnost" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "Mera za razvrščanje rezultatov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" +msgstr "OBROBA NASLOVA X-OSI" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:123 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:140 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:75 -msgid "Metric used as a weight for the grid's coloring" -msgstr "Mera, ki služi kot utež za barvo mreže" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +msgid "Logarithmic x-axis" +msgstr "Logaritemska x-os" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 -msgid "Metric used to calculate bubble size" -msgstr "Mera za izračun velikosti mehurčkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +msgid "Rotate y axis label" +msgstr "Zavrti oznako y-osi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:77 -msgid "Metric used to control height" -msgstr "Mera za določanje višine" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "OBROBA NASLOVA Y-OSI" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -msgid "" -"Metric used to define how the top series are sorted if a series or cell limit is " -"present. If undefined reverts to the first metric (where appropriate)." -msgstr "" -"Mera, ki določa kako so razvrščene prve serije, če je določena omejitev serij ali " -"vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "Logaritemska y-os" -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row limit is " -"present. If undefined reverts to the first metric (where appropriate)." -msgstr "" -"Mera, ki določa kako so razvrščene prve serije, če je določena omejitev serij ali " -"vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "Prireži Y-os" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -msgid "" -"Metric used to order the limit if a series limit is present. If undefined reverts " -"to the first metric (where appropriate)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -"Mera, ki določa kako je razvrščena meja, če je določena omejitev serij. Če ni " -"določena, se uporabi prva mera (kjer je to ustrezno)." +"Prireži Y-os. Če določite spodnjo ali zgornjo mejo, preprečite " +"prirezovanje." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1428 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:405 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:205 -msgid "Metrics" -msgstr "Mere" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, python-format +msgid "% calculation" +msgstr "% cizračun" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 -msgid "Middle" -msgstr "Sredina" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." +msgstr "" +"Prikaži procente v oznakah in opisu orodja kot procent celotne vrednosti " +"iz prve vrednosti v lijaku ali prejšnje vrednosti v lijaku." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" -msgstr "Polnoč" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" +msgstr "Izračunaj iz prvega koraka" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:149 -msgid "Miles" -msgstr "Milje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "Izračunaj iz prejšnjega koraka" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "Min" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +msgid "Percent of total" +msgstr "Procent celote" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 -msgid "Min Periods" -msgstr "Min. št. period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" +msgstr "Oznake" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:84 -msgid "Min Width" -msgstr "Min. širina" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +msgid "Label Contents" +msgstr "Označi vsebino" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/src/explore/controlPanels/sections.tsx:169 -msgid "Min periods" -msgstr "Min. št. period" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Kategorija in procent" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" -msgstr "Min/max (brez osamelcev)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +msgid "What should be shown as the label" +msgstr "Kaj bo prikazano na oznaki" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:248 -msgid "Mine" -msgstr "Moje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +msgid "Tooltip Contents" +msgstr "Vsebina opisa orodja" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1148 -msgid "Minimum" -msgstr "Minimum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +msgid "What should be shown as the tooltip label" +msgstr "Kaj bo prikazano na opisu orodja" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" -msgstr "Min. velikost pisave" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "Če želite prikaz oznak." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:98 -msgid "Minimum Radius" -msgstr "Min. polmer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +msgid "Show Tooltip Labels" +msgstr "Prikaži oznake na opisu orodja" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" -msgstr "Min. št. dogodkov končnega vozlišča" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +msgid "Whether to display the tooltip labels." +msgstr "Če želite prikaz oznak opisa orodja." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, this " -"insures that the circle respects this minimum radius." +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" -"Minimalni polmer kroga v pikslih. S tem je določen minimalni polmer kroga, ko se " -"spreminja stopnja povečave." +"Prikaže kako se mera spreminja, ko lijak napreduje. Standardni grafikon " +"za prikaz sprememb med nivoji v procesu ali življenjskem ciklu." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 -msgid "Minimum threshold in percentage points for showing labels." -msgstr "Minimalni prag v odstotnih točkah za prikaz oznak." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" +msgstr "Lijakasti grafikon" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -msgid "Minimum value" -msgstr "Minimalna vrednost" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "Sekvenčni" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:204 -msgid "Minimum value for label to be displayed on graph." -msgstr "Najmanjša vrednost, za katero bo na grafikonu prikazana oznaka." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "Stolpci za združevanje po" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:87 -msgid "Minimum value on the gauge axis" -msgstr "Najmanjša vrednost na številčnici" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "Splošno" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:209 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:153 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:153 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:203 -msgid "Minor Split Line" -msgstr "Pomožna ločilna črta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Min" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 -msgid "Minor ticks" -msgstr "Pomožne oznake" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "Najmanjša vrednost na številčnici" -#: superset/db_engine_specs/base.py:102 -msgid "Minute" -msgstr "Minuta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Max" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" -msgstr "Minute %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "Največja vrednost na številčnici" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 -msgid "Missing URL parameters" -msgstr "Manjkajo parametri URL-ja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "Začetni kot" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 -msgid "Missing dataset" -msgstr "Manjka podatkovni set" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "Kot, pri katerem se začne številčnica" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 -msgid "Mixed Chart" -msgstr "Kombinirani grafikon" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "Končni kot" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 -msgid "Mixed Time-Series" -msgstr "Kombiniran grafikon časovne vrste" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "Kot, pri katerem se konča številčnica" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 -#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 -msgid "Modified" -msgstr "Spremenjeno" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "Velikost pisave" -#: superset-frontend/src/features/charts/ChartCard.tsx:157 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:104 -#, python-format -msgid "Modified %s" -msgstr "Zadnja sprememba %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "Velikost pisave za oznake osi, podrobnosti in druge besedilne elemente" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/AlertReportList/index.tsx:494 -#: superset-frontend/src/pages/ChartList/index.tsx:684 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 -#: superset-frontend/src/pages/DashboardList/index.tsx:565 -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#: superset-frontend/src/pages/DatasetList/index.tsx:608 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:505 -#: superset-frontend/src/pages/Tags/index.tsx:247 -msgid "Modified by" -msgstr "Spremenil" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "Oblika zapisa vrednosti" -#: superset-frontend/src/components/AuditInfo/index.tsx:22 -#, python-format -msgid "Modified by: %s" -msgstr "Spremenil: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "Dodatno besedilo, ki ga dodate pred ali za vrednost, npr. enota" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -#, python-format -msgid "Modified columns: %s" -msgstr "Spremenjeni stolpci: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "Prikaži kazalec" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "Ponedeljek" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "Če želite prikazati kazalec" -#: superset/db_engine_specs/base.py:111 -msgid "Month" -msgstr "Mesec" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" +msgstr "Animacija" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" -msgstr "Meseci %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "Če želite animiran prikaz grafikona" -#: superset-frontend/src/components/DropdownContainer/index.tsx:125 -msgid "More" -msgstr "Več" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "Os" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:254 -msgid "More filters" -msgstr "Več filtrov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "Prikaži oznake na X-osi" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Move only" -msgstr "Samo premikanje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "Če želite prikaz pomožnih oznak na osi" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "Premakne dani nabor datumov za definirano obdobje." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "Prikaži razdelitvene črte" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 -msgid "Multi-Dimensions" -msgstr "Večdimenzionalni" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "Če želite prikazati razdelitvene črte na osi" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:31 -msgid "Multi-Layers" -msgstr "Večplastni" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" +msgstr "Število razdelitev" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -msgid "Multi-Levels" -msgstr "Večplastni" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "Število razdelkov na številčnici" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" -msgstr "Več spremenljivk" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "Napredek" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 -msgid "Multiple" -msgstr "Več" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "Prikaži območje" -#: superset/views/database/views.py:466 -msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please make sure " -"all files are of the same extension." -msgstr "" -"Za nalaganje stolpčnih datotek niso dovoljene različne končnice. Poskrbite, da " -"imajo vse datoteke enake končnice." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "Prikaži merilno območje števčnega grafikona" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:190 -msgid "Multiple filtering" -msgstr "Večkratno filtriranje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" +msgstr "Prekrivanje" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more details" -msgstr "" -"Sprejema različne zapise - podrobnosti najdete v Pythonovi knjižnici geopy.points" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" +msgstr "Če želite prekrivanje območij, ko imate več skupin podatkov" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" -msgstr "Lahko izberete več elementov, drugače pa je filter omejen na eno vrednost" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "Zaobljeni konci" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 -msgid "Multiplier" -msgstr "Množitelj" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "Zaobljena oblika koncev območja" -#: superset/commands/dashboard/exceptions.py:39 -msgid "Must be unique" -msgstr "Mora biti unikaten" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" +msgstr "Intervali" -#: superset/commands/report/exceptions.py:92 -msgid "Must choose either a chart or a dashboard" -msgstr "Izberite bodisi grafikon bodisi nadzorno ploščo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "Meje intervalov" -#: superset/viz.py:1839 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Mora imeti stolpec [Združevanje po], da ima število (count) kot [Oznaka]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." +msgstr "" +"Z vejico ločeni intervali, npr. 2,4,5 za intervale 0-2, 2-4 in 4-5. " +"Zadnja številka naj bo enaka vrednosti za MAX." -#: superset/viz.py:1221 -msgid "Must have at least one numeric column specified" -msgstr "Definiran mora biti vsaj en numerični stolpec" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" +msgstr "Barve intervalov" -#: superset/commands/database/ssh_tunnel/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" -msgstr "Za SSH-tunel morate podati prijavne podatke" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." +msgstr "" +"Z vejico ločene barve za intervale, npr. 1,2,4. Cela števila " +"predstavljajo barve iz barvne sheme (začnejo se z 1). Dolžina mora " +"ustrezati mejam intervala." -#: superset/models/helpers.py:1863 -msgid "Must specify a value for filters with comparison operators" -msgstr "Potrebno je podati vrednost za filter s primerjalnim operandom" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." +msgstr "" +"Uporablja števec za prikaz napredovanja mere k ciljni vrednosti. Položaj " +"kazalca predstavlja napredek, končna vrednost na števcu pa ciljno " +"vrednost." -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 -msgid "My beautiful colors" -msgstr "Moje čudovite barve" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" +msgstr "Števčni grafikon" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" -msgstr "Moj stolpec" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "Imena izvornih vozlišč" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "Moja mera" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "Imena ciljnih vozlišč" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:86 -#: superset-frontend/src/constants.ts:143 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 -msgid "N/A" -msgstr "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "Kategorija izvora" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -msgid "NOT GROUPED BY" -msgstr "NOT GROUPED BY" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." +msgstr "" +"Kategorija izvornih vozlišč, na podlagi katere je določena barva. Če je " +"vozlišče povezano z več kot eno kategorijo, bo uporabljena samo prva." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "NOV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "Kategorija cilja" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "ZDAJ" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "Kategorija ciljnih vozlišč" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 -msgid "NUMERIC" -msgstr "NUMERIC" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "Možnosti grafikona" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:885 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1117 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 -#: superset-frontend/src/pages/AlertReportList/index.tsx:274 -#: superset-frontend/src/pages/AlertReportList/index.tsx:449 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset-frontend/src/pages/ChartList/index.tsx:364 -#: superset-frontend/src/pages/ChartList/index.tsx:582 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 -#: superset-frontend/src/pages/DashboardList/index.tsx:313 -#: superset-frontend/src/pages/DashboardList/index.tsx:497 -#: superset-frontend/src/pages/DatabaseList/index.tsx:331 -#: superset-frontend/src/pages/DatabaseList/index.tsx:490 -#: superset-frontend/src/pages/DatasetList/index.tsx:361 -#: superset-frontend/src/pages/DatasetList/index.tsx:524 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:299 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:447 -#: superset-frontend/src/pages/Tags/index.tsx:156 -#: superset-frontend/src/pages/Tags/index.tsx:241 superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "Ime" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "Izgled" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:822 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 -msgid "Name is required" -msgstr "Zahtevano je ime" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "Izgled grafikona" -#: superset/commands/annotation_layer/exceptions.py:58 -msgid "Name must be unique" -msgstr "Ime mora biti unikatno" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "Sila" -#: superset/views/database/forms.py:413 -msgid "Name of table to be created from columnar data." -msgstr "Ime tabele, ki bo ustvarjena iz stolpčnih podatkov." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "Tip izgleda grafikona" -#: superset/views/database/forms.py:281 -msgid "Name of table to be created from excel data." -msgstr "Ime tabele, ki bo ustvarjena iz Excel-ovih podatkov." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "Simboli povezav" -#: superset/views/database/forms.py:130 -msgid "Name of table to be created with CSV file" -msgstr "Ime tabele, ki bo ustvarjena iz CSV podatkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "Simbol za konca povezave" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:63 -msgid "Name of the column containing the id of the parent node" -msgstr "Ime stolpca, ki vsebuje id nadrejenega vozlišča" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "Brez -> Brez" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:53 -msgid "Name of the id column" -msgstr "Naziv id-stolpca" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "Brez -> Puščica" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:55 -msgid "Name of the source nodes" -msgstr "Imena izvornih vozlišč" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "Krog -> Puščica" -#: superset/connectors/sqla/views.py:337 -msgid "Name of the table that exists in the source database" -msgstr "Ime tabele, ki obstaja v izvorni podatkovni bazi" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "Krog -> Krog" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:65 -msgid "Name of the target nodes" -msgstr "Imena ciljnih vozlišč" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "Omogoči premikanje vozlišč" -#: superset-frontend/src/features/tags/TagModal.tsx:294 -msgid "Name of your tag" -msgstr "Ime vaše oznake" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "Če želite omogočiti premikanje vozlišč v načinu vsiljenega prikaza." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 -msgid "Name your database" -msgstr "Poimenujte podatkovno bazo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "Omogoči preoblikovanje grafikona" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" -msgstr "Potrebujete pomoč? Kako povezati vašo podatkovno bazo se naučite" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "Onemogočeno" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" -msgstr "Potrebujete pomoč? Naučite se več o" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "Samo povečava" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -msgid "Network error" -msgstr "Napaka omrežja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "Samo premikanje" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "Napaka omrežja." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "Povečava in premikanje" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 -msgid "New chart" -msgstr "Nov grafikon" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "Če želite omogočiti premikanje in povečevanje/zmanjševanje grafikona." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 -#, python-format -msgid "New columns added: %s" -msgstr "Dodani novi stolpci: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "Način izbire vozlišč" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 -msgid "New dataset" -msgstr "Nov podatkovni set" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "Posamezno" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 -msgid "New dataset name" -msgstr "Ime novega podatkovnega seta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "Več" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "Nov set filtrov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "Dovoli izbiro vozlišča" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 -msgid "New header" -msgstr "Nov naslov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "Prag oznak" -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 -msgid "New tab" -msgstr "Nov zavihek" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "Najmanjša vrednost, za katero bo na grafikonu prikazana oznaka." -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + q)" -msgstr "Nov zavihek (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" +msgstr "Velikost vozlišča" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:280 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:322 -msgid "New tab (Ctrl + t)" -msgstr "Nov zavihek (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "" +"Mediana velikosti vozlišča. Največje vozlišče bo 4-krat večje od " +"najmanjšega" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "Naslednji" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" +msgstr "Debelina povezave" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" -msgstr "Nightingale Rose grafikon" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "" +"Mediana debeline povezave. Najdebelejša povezava bo 4-krat debelejša od " +"najtanjše." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:573 -#: superset-frontend/src/pages/ChartList/index.tsx:680 -#: superset-frontend/src/pages/DashboardList/index.tsx:488 -#: superset-frontend/src/pages/DashboardList/index.tsx:561 -#: superset-frontend/src/pages/DatabaseList/index.tsx:505 -#: superset-frontend/src/pages/DatabaseList/index.tsx:525 -#: superset-frontend/src/pages/DatasetList/index.tsx:604 -msgid "No" -msgstr "Ne" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "Dolžina povezave" -#: superset-frontend/src/pages/AlertReportList/index.tsx:436 -#, python-format -msgid "No %s yet" -msgstr "%s še ne obstajajo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "Dolžina povezave med vozlišči" -#: superset-frontend/src/components/ListView/ListView.tsx:455 -#: superset-frontend/src/features/profile/RecentActivity.tsx:51 -msgid "No Data" -msgstr "Ni podatkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "Gravitacija" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" -msgstr "Ni rezultatov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "Sila privlačnosti med grafikonom in središčem" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 -msgid "No Rules yet" -msgstr "Pravil še ni" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" +msgstr "Odbijanje" -#: superset-frontend/src/pages/Tags/index.tsx:112 -msgid "No Tags created" -msgstr "Ni ustvarjenih oznak" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "Odbojna sila med vozlišči" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 -msgid "No annotation layers" -msgstr "Ni slojev z oznakami" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" +msgstr "Trenje" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 -msgid "No annotation layers yet" -msgstr "Slojev z oznakami še ni" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "Trenje med vozlišči" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "Oznak še ni" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" +"Prikaže povezave med entitetami v strukturi grafa. Uporabno za prikaz " +"razmerij in pomembnih točk v omrežju. Grafikon je lahko krožnega tipa ali" +" z usmerjenimi silami. Če imajo podatki geoprostorsko komponento, " +"poskusite grafikon decl.gl - Arc." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:258 -msgid "No applied filters" -msgstr "Ni uporabljenih filtrov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "Graf" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 -msgid "No available filters." -msgstr "Ni razpoložljivih filtrov." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "Strukturni" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/features/profile/CreatedContent.tsx:61 -msgid "No charts" -msgstr "Ni grafikonov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Če želite padajoče ali naraščajoče razvrščanje" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -msgid "No charts yet" -msgstr "Ni še grafikonov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" +msgstr "Tip serije" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "Brez stolpcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "Zglajena črta" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 -msgid "No columns found" -msgstr "Ni najdenih stolpcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "Stopnica - začetek" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" -msgstr "Ni najdenih skladnih stolpcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "Stopnica - sredina" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 -msgid "No compatible datasets found" -msgstr "Ni najdenih skladnih podatkovnih setov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "Stopnica - konec" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 -msgid "No compatible schema found" -msgstr "Ni najdenih skladnih shem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "Tip grafikona za posamezno podatkovno serijo (črtni, stolpčni, ...)" -#: superset-frontend/src/features/profile/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "Ni nadzornih plošč" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "Nalagaj serije" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -msgid "No dashboards yet" -msgstr "Ni še nadzornih plošč" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" +msgstr "Ploščinski grafikon" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:222 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "Ni podatkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "Izriši površino pod krivuljo. Samo za črtne grafikone." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" -msgstr "" -"Ni podatkov po filtriranju ali pa imajo vrednost NULL za zadnji časovni zapis" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "Prosojnost ploščinskega grafikona." -#: superset/commands/dashboard/importers/v0.py:304 -msgid "No data in file" -msgstr "V datoteki ni podatkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "Marker" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "Nobena podatkovna baza ne ustreza iskanju" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "Nariši markerje na točke grafikona. Samo za črtne grafikone." -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." -msgstr "Opisa ni na razpolago." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "Velikost markerja" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 -msgid "No entities have this tag currently assigned" -msgstr "Noben element trenutno nima te oznake" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "Velikost markerja. Upošteva se tudi za napovedi." + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "Primarna" -#: superset-frontend/src/features/profile/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "Priljubljenih grafikonov še ni. Kliknite na zvezdice!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "Sekundarna" -#: superset-frontend/src/features/profile/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Priljubljenih nadzornih plošč še ni. Kliknite na zvezdice!" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "Primarna ali sekundarna y-os" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1024 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:313 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" -msgstr "Brez filtra" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +msgid "Shared query fields" +msgstr "Polja deljenih poizvedb" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "Noben filter ni izbran." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" +msgstr "Poizvedba A" -#: superset-frontend/src/components/Table/index.tsx:219 -msgid "No filters" -msgstr "Brez filtrov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" +msgstr "Napredna analitika za poizvedbo A" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:158 -msgid "No filters are currently added to this dashboard." -msgstr "Trenutno na nadzorno ploščo še ni dodanih filtrov." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" +msgstr "Poizvedba B" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:678 -msgid "No form settings were maintained" -msgstr "Nastavitve forme se niso ohranile" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" +msgstr "Napredna analitika za poizvedba B" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" -msgstr "Trenutno ni dodanih globalnih filtrov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "Zoom funkcija" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 -msgid "No matching records found" -msgstr "Ni ujemajočih zapisov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "Omogoči kontrolnik za povečavo podatkov" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" -msgstr "Št. razdelkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "Pomožna ločilna črta" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -msgid "No recents yet" -msgstr "Ni še nedavnih" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "Izriši ločilne črte za pomožne oznake y-osi" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 -#: superset/templates/appbuilder/general/widgets/base_list.html:65 -msgid "No records found" -msgstr "Ni zapisov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "Meje primarne y-osi" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 -msgid "No results" -msgstr "Ni rezultatov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Meje primarne Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi" +" min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov " +"pa ostane enak." -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:417 -msgid "No results found" -msgstr "Rezultati niso najdeni" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "Oblika primarne y-osi" -#: superset-frontend/src/components/ListView/ListView.tsx:446 -msgid "No results match your filter criteria" -msgstr "Noben rezultat ne ustreza vašim kriterijem" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "Logaritemska skala na primarni y-osi" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" -msgstr "Poizvedba ni vrnila rezultatov" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "Meje sekundarne y-osi" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 msgid "" -"No results were returned for this query. If you expected results to be returned, " -"ensure any filters are configured properly and the datasource contains data for " -"the selected time range." +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." msgstr "" -"Poizvedba ni vrnila rezultatov. Če ste pričakovali rezultate, poskrbite, da so " -"filtri pravilno nastavljeni in podatkovni vir vsebuje podatke za izbrano časovno " -"obdobje." +"Meje sekundarne Y-osi. Deluje le, če so omogočene odvisne meje Y-osi.\n" +" Če je prazno, se meje nastavijo dinamično na podlagi " +"min./max. vrednosti podatkov.\n" +" Funkcija omeji le prikaz, obseg podatkov pa ostane enak." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" -msgstr "Za podatkovni set ni vrnjenih vrstic" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "Oblika sekundarne y-osi" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 -msgid "No samples were returned for this dataset" -msgstr "Za podatkovni set ni vrnjenih vzorcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +msgid "Secondary currency format" +msgstr "Oblika sekundarne valute" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 -msgid "No saved expressions found" -msgstr "Shranjeni izrazi niso najdeni" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "Naslov sekundarne y-osi" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -msgid "No saved metrics found" -msgstr "Shranjene mere niso najdene" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "Logaritemska skala na sekundarni y-osi" -#: superset-frontend/src/features/home/EmptyState.tsx:38 -msgid "No saved queries yet" -msgstr "Ni še shranjenih poizvedb" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" +"Prikaže dva različna niza na isti x-osi. Niza sta lahko prikazana z " +"različnim tipom grafikona (npr. en s stolpci in drug s črto)." -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 -msgid "No stored results found, you need to re-run your query" -msgstr "Rezultatov še ni shranjenih, ponovno morate zagnati poizvedbo" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "Mixed Chart" +msgstr "Kombinirani grafikon" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." -msgstr "" -"Tak stolpec ni najden. Za filtriranje po meri uporabite prilagojen SQL zavihek." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "Postavim oznake zunaj torte?" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 -msgid "No table columns" -msgstr "Ni stolpcev tabel" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "Črta oznake" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 -msgid "No temporal columns found" -msgstr "Ni najdenih časovnih stolpcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "Ali želite črto do oznake, ko so le-te zunaj?" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "Ni časovnih stolpcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" +msgstr "Prikaži vsoto" -#: superset/commands/database/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "Potrjevalnik ni najden (nastavljen za podatkovno bazo)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "Če želite prikazati agregirano število" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 -msgid "Node label position" -msgstr "Položaj oznake vozlišča" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "Oblika torte" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:184 -msgid "Node select mode" -msgstr "Način izbire vozlišč" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "Zunanji polmer" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:215 -msgid "Node size" -msgstr "Velikost vozlišča" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "Veljavno samo" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:188 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:278 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -#: 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:141 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 -msgid "None" -msgstr "Brez" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "Notranji polmer" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "None -> Arrow" -msgstr "Brez -> Puščica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "Notranji polmer kolobarja" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> None" -msgstr "Brez -> Brez" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "" +"Standardni grafikon za prikaz deležev. Tortne grafikone je težje natančno" +" interpretirati, takrat lahko uporabite npr. stolpčni grafikon." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "Normalno" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "Tortni grafikon" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:167 -msgid "Normalize Across" -msgstr "Normiraj glede na" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" +msgstr "Skupaj: %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:999 -msgid "Normalize column names" -msgstr "Normiraj imena stolpcev" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "Največja vrednost mere. To je opcijska nastavitev" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:341 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" -msgstr "Normiran" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "Položaj oznake" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 -msgid "Not Time Series" -msgstr "Ni časovna vrsta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "Radar" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -msgid "Not added to any dashboard" -msgstr "Ni dodano na nobeno nadzorno ploščo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "Prilagodi mere" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 -msgid "Not available" -msgstr "Ni razpoložljivo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "Dodatne prilagoditve prikaza posameznih mer" -#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 -#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 -msgid "Not defined" -msgstr "Ni definirano" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "Okrogla oblika radarja" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Not equal to (≠)" -msgstr "Ni enako (≠)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "Prikaz radarja okrogle oblike." -#: superset-frontend/src/explore/constants.ts:71 -msgid "Not in" -msgstr "Ne vsebuje (NOT IN)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" +"Prikaže vzporedni nabor mer za različne skupine. Vsaka skupina je " +"prikazana s svojim naborom točk in vsaka mera s povezavo na grafikonu." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 -msgid "Not null" -msgstr "Ni null (IS NOT NULL)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" +msgstr "Radarski grafikon" -#: superset-frontend/src/pages/AlertReportList/index.tsx:67 -msgid "Not triggered" -msgstr "Ni sproženo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "Primarna mera" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" -msgstr "Ni posodobljeno" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "Primarna mera določa velikost lokov segmentov" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "Ni ni sproženo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "Sekundarna mera" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 -#: superset-frontend/src/pages/AlertReportList/index.tsx:304 -msgid "Notification method" -msgstr "Način obveščanja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" +msgstr "" +"[opcijsko] sekundarna mera določa barvo kot razmerje do primarne mere. Če" +" je izpuščena, je barva določena kategorično na podlagi oznak" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "November" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" +"Če je podana samo primarna metrika, je uporabljena kategorična barvna " +"skala." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" -msgstr "Zdaj" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "Če je podana sekundarna metrika, je uporabljena linearna barvna skala." -#: superset/views/database/forms.py:212 -msgid "Null Values" -msgstr "Prazne (Null) vrednosti" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "Hierarhija" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -msgid "Null imputation" -msgstr "Nadomeščanje Null-vrednosti" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" +"Nastavi hierarhične nivoje grafikona. Vsak nivo je\n" +"\tpredstavljen z enim obročem, pri čemer je notranji krog na vrhu " +"hierarhije." -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Nič (NULL) ali prazen" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "" +"S pomočjo krogov prikaže potek podatkov na različnih nivojih sistema. S " +"premikom kurzorja prikaže vrednosti na posameznem nivoju. Uporabno za " +"večnivojsko, večskupinsko vizualizacijo." -#: superset/views/database/forms.py:399 -msgid "Null values" -msgstr "Prazne (Null) vrednosti" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "Večnivojski tortni grafikon" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" -msgstr "Oblika zapisa števila" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "Večplastni" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "Če ne uporabljate prilagodljive oblike, se oznake lahko prekrivajo" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or blue,\n" -" you can enter either only min or max." +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -"Številske meje za kodiranje barv od rdeče do modre.\n" -"\tZamenjajte števili za barve od modre do rdeče. Če želite čisto rdečo ali " -"modro,\n" -"\tvnesite samo min ali max." +"Univerzalni grafikon za vizualizacijo podatkov. Izbirajte med " +"stopničastimi, črtnimi, raztresenimi in stolpčnimi grafikoni. Grafikon " +"ima širok nabor prilagoditev." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:282 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:121 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:114 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" -msgstr "Oblika zapisa števila" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" +msgstr "Generičen grafikon" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -msgid "Number format string" -msgstr "Niz za obliko števila" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "približaj območje" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:201 -msgid "Number formatting" -msgstr "Oblika zapisa števila" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" +msgstr "ponastavi prikaz" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Number of buckets to group data" -msgstr "Število razdelkov za združevanje podatkov" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" +msgstr "Slog serije" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 -msgid "Number of decimal digits to round numbers to" -msgstr "Število decimalnih mest za zaokroževanje števil" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" +msgstr "Prosojnost ploščinskega grafikona" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "Število decimalnih mest za prikaz vrednosti dviga" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "Prosojnost ploščinskega grafikona. Upošteva se tudi za interval zaupanja." -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "Število decimalnih mest za prikaz p-vrednosti" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "Velikost markerja" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 -msgid "Number of periods to compare against" -msgstr "Število časovnih obdobij za primerjavo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "" +"Ploščinski grafikoni so podobni črtnim grafikonom, saj predstavljajo " +"spremenljivke v istem razmerju, vendar se pri ploščinskih grafikonih mere" +" nalagajo ena na drugo." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 -msgid "Number of periods to ratio against" -msgstr "Število časovnih obdobij za izračun deleža" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "Ploščinski grafikon" -#: superset/views/database/forms.py:266 -msgid "Number of rows of file to read" -msgstr "Število vrstic v datoteki za branje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" +msgstr "Naslov osi" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "OBROBA OZNAKE OSI" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" +msgstr "POLOŽAJ OZNAKE OSI" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" +msgstr "Oblika osi" -#: superset/views/database/forms.py:368 -msgid "Number of rows of file to read." -msgstr "Število vrstic v datoteki za branje." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" +msgstr "Logaritemska os" -#: superset/views/database/forms.py:272 -msgid "Number of rows to skip at start of file" -msgstr "Število vrstic, ki se izpustijo na začetku datoteke" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "Izriši ločilne črte za pomožne oznake osi" -#: superset/views/database/forms.py:362 -msgid "Number of rows to skip at start of file." -msgstr "Število vrstic, ki se izpustijo na začetku datoteke." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" +msgstr "Prireži os" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:229 -msgid "Number of split segments on the axis" -msgstr "Število razdelkov na številčnici" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "V stolpčnem grafikonu ni priporočljivo omejiti osi." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:121 -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "Število korakov med oznakami pri prikazu X-osi" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" +msgstr "Meje osi" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:137 -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "Število korakov med oznakami pri prikazu Y-osi" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Meje osi. Če je prazno, se meje nastavijo dinamično na podlagi min./max. " +"vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane " +"enak." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 -msgid "Numerical range" -msgstr "Številski obseg" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" +msgstr "Orientacija grafikona" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "OKT" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" +msgstr "Orientacija stolpcev" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:217 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 -msgid "OK" -msgstr "OK" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" +msgstr "Vodoravno" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1444 -msgid "OVERWRITE" -msgstr "PREPIŠI" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" +msgstr "Orientacija stolpčnega grafikona" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "Oktober" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "Stolpčni grafikoni se uporabljajo za prikaz mer z nizi stolpcev." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 -msgid "Offline" -msgstr "Offline" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" +msgstr "Stolpčni grafikon" -#: superset/connectors/sqla/views.py:404 -msgid "Offset" -msgstr "Odmik" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." +msgstr "" +"Črtni grafikon se uporablja se za vizualizacijo meritev zajetih skozi " +"čas. Posamezne točke so med seboj povezane z ravnimi črtami." -#: superset-frontend/src/pages/AlertReportList/index.tsx:68 -msgid "On Grace" -msgstr "V mirovanju" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" +msgstr "Črtni grafikon" -#: superset-frontend/src/explore/controls.jsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 msgid "" -"One or many columns to group by. High cardinality groupings should include a " -"series limit to limit the number of fetched and rendered series." +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." msgstr "" -"Eden ali več stolpcev za združevanje po. Združevanje z visoko kardinalnostjo naj " -"vsebuje omejitev serij, s čimer omejite število pridobljenih in prikazanih serij." +"Raztreseni grafikon ima vodoravno os v linearnih enotah, prikazuje " +"podatkovne točke v povezanem redu in prikazuje statistično razmerje med " +"dvema spremenljivkama." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:338 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "Raztreseni grafikon" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 msgid "" -"One or many controls to group by. If grouping, latitude and longitude columns " -"must be present." +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -"Eden ali več kontrolnikov za združevanje po. Pri združevanju morata biti prisotna " -"stolpca širine in dolžine." +"Zglajeni črtni grafikon je izpeljanka črtnega grafikona, ki zgladi ostre " +"robove krivulje." -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "En ali več kontrolnikov za stolpčno vrtenje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "Stopnični tip" -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "Ena ali več mer za prikaz" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Začetek" -#: superset/commands/dataset/exceptions.py:90 -msgid "One or more columns already exist" -msgstr "En ali več stolpcev že obstaja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" +msgstr "Sredina" -#: superset/commands/dataset/exceptions.py:80 -msgid "One or more columns are duplicated" -msgstr "En ali več stolpcev je podvojenih" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Konec" -#: superset/commands/dataset/exceptions.py:70 -msgid "One or more columns do not exist" -msgstr "En ali več stolpcev ne obstaja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "" +"Določa, če se na začetku, na sredini ali na koncu pojavi stopnica med " +"dvema točkama" -#: superset/commands/dataset/exceptions.py:119 -msgid "One or more metrics already exist" -msgstr "Ena ali več mer že obstaja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" +"Stopničasti grafikon je izpeljanka črtnega grafikona, pri čemer krivuljo " +"tvorijo stopnice med posameznimi točkami. Koristen je za prikaz sprememb " +"na posameznih intervalih." -#: superset/commands/dataset/exceptions.py:109 -msgid "One or more metrics are duplicated" -msgstr "Ena ali več mer je podvojenih" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" +msgstr "Stopničasta črta" -#: superset/commands/dataset/exceptions.py:99 -msgid "One or more metrics do not exist" -msgstr "Ena ali več mer ne obstaja" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "Id" -#: superset/errors.py:121 -msgid "One or more parameters needed to configure a database are missing." -msgstr "En ali več parametrov, potrebnih za nastavitev podatkovne baze, manjka." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "Naziv id-stolpca" -#: superset/errors.py:135 -msgid "One or more parameters specified in the query are malformed." -msgstr "En ali več parametrov v SQL-poizvedbi ima napačno obliko." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" +msgstr "Nadrejeni" -#: superset/errors.py:109 -msgid "One or more parameters specified in the query are missing." -msgstr "En ali več parametrov v SQL-poizvedbi manjka." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "Ime stolpca, ki vsebuje id nadrejenega vozlišča" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 -msgid "One ore more annotation layers failed loading." -msgstr "Eden ali več slojev z oznakami se ni naložil." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "Opcijsko ime podatkovnega stolpca." -#: superset/sql_lab.py:244 -msgid "Only SELECT statements are allowed against this database." -msgstr "Za to podatkovno bazo so dovoljeni le `SELECT` stavki." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "Id korenskega vozlišča" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 -msgid "Only Total" -msgstr "Samo vsota" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "Id korenskega vozlišča drevesa." -#: superset/connectors/sqla/utils.py:119 -msgid "Only `SELECT` statements are allowed" -msgstr "Dovoljeni so le `SELECT` stavki" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "Mera za vrednosti vozlišč" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." -msgstr "Veljavno samo, ko \"Tip oznake\" ni procent." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "Oblika drevesa" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "Veljavno samo, ko je izbran \"Tip oznake\" za prikaz vrednosti." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "Pravokotna" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "Ta filter bo vplival le na izbrane grafikone" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" +msgstr "Radialna" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 -msgid "" -"Only show the total value on the stacked chart, and not show on the selected " -"category" -msgstr "" -"Na naloženem grafikonu prikaži samo skupno vsoto, za izbrane kategorije pa ne" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "Način izgleda drevesa" -#: superset/connectors/sqla/utils.py:128 -msgid "Only single queries supported" -msgstr "Podprte so le enojne poizvedbe" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" +msgstr "Orientacija drevesa" -#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 -#: superset/views/database/forms.py:433 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "Dovoljene so le naslednje končnice: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" +msgstr "Od leve proti desni" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -msgid "Oops! An error occurred!" -msgstr "Prišlo je do napake!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "Od desne proti levi" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:132 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 -msgid "Opacity" -msgstr "Prosojnost" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "Od vrha proti dnu" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:121 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:115 -msgid "Opacity of Area Chart. Also applies to confidence band." -msgstr "Prosojnost ploščinskega grafikona. Upošteva se tudi za interval zaupanja." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "Od dna proti vrhu" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:261 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "Prosojnost vseh gruč, točk in oznak (vrednost med 0 in 1)." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "Orientacija drevesa" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 -msgid "Opacity of area chart." -msgstr "Prosojnost ploščinskega grafikona." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "Položaj oznake vozlišča" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 -msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" -msgstr "Vrednost 0 pomeni popolno prosojnost, 1 pa neprosojnost" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "levo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:138 -msgid "Opacity, expects values between 0 and 100" -msgstr "Prosojnost, vnesite vrednosti med 0 in 100" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" +msgstr "zgoraj" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "Odpri zavihek s podatkovnim virom" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" +msgstr "desno" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 -msgid "Open in SQL Lab" -msgstr "Odpri v SQL laboratoriju" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" +msgstr "spodaj" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" +msgstr "Položaj vmesne oznake vozlišča na drevesu" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 -msgid "Open query in SQL Lab" -msgstr "Odpri poizvedbo v SQL laboratoriju" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "Položaj podrejene oznake" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are executed " -"on remote workers as opposed to on the web server itself. This assumes that you " -"have a Celery worker setup as well as a results backend. Refer to the " -"installation docs for more information." -msgstr "" -"Upravljanje podatkovne baze v asinhronem načinu pomeni, da se poizvedbe zaženejo " -"na oddaljenih »delavcih« in ne na samem spletnem strežniku. S tem je " -"predpostavljeno, da imate nastavljenega »delavca« za Celery in zaledni sistem za " -"rezultate. Več informacij je v navodilih za namestitev." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "Položaj oznake podrejenega vozlišča na drevesu" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" -msgstr "Operator" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "Poudari" -#: superset/utils/pandas_postprocessing/utils.py:160 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Operand ni definiran za agregatorja: %(name)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "nadrejeni" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain " -"database engines." -msgstr "" -"Opcijska CA_BUNDLE vsebina, za potrjevanje HTTPS zahtev. Razpoložljivo le na " -"določenih sistemih podatkovnih baz." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" +msgstr "podrejeni" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -msgid "Optional d3 date format string" -msgstr "Opcijski niz za d3-oblikovanje datuma" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "Kateri element se poudari na prehodu z miško" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -msgid "Optional d3 number format string" -msgstr "Opcijski niz za d3-oblikovanje števila" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" +msgstr "Simbol" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:75 -msgid "Optional name of the data column." -msgstr "Opcijsko ime podatkovnega stolpca." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "Prazen krog" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1314 -msgid "Optional warning about use of this metric" -msgstr "Opcijsko opozorilo za uporabo te mere" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" +msgstr "Krog" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:69 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:46 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:287 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:382 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" -msgstr "Možnosti" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" +msgstr "Pravokotnik" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 -msgid "Or choose from a list of other databases we support:" -msgstr "Ali pa izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "Trikotnik" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" -msgstr "Uredi po ID-entitete" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "Karo" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:280 -msgid "Order results by selected columns" -msgstr "Razvrsti rezultate glede na izbrani stolpec" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "Žebljiček" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:279 -msgid "Ordering" -msgstr "Razvrščanje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "Puščica" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -msgid "Orientation" -msgstr "Orientacija" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" +msgstr "Velikost simbola" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:279 -msgid "Orientation of bar chart" -msgstr "Orientacija stolpčnega grafikona" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "Velikost simbola povezave" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 -msgid "Orientation of filter bar" -msgstr "Orientacija vrstice s filtri" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "Prikaz več hierarhičnih nivojev z drevesno strukturo." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:144 -msgid "Orientation of tree" -msgstr "Orientacija drevesa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "Drevesni grafikon" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" -msgstr "Izvoren" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "Prikaži zgornje oznake" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 -msgid "Original table column order" -msgstr "Vrstni red stolpcev izvorne tabele" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "Prikaži oznake, ko ima vozlišče podrejene elemente." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "Izvorna vrednost" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "Ključ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Orthogonal" -msgstr "Pravokotna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" +"Prikaže hierarhična razmerja podatkov, pri čemer je vrednost ponazorjena " +"s ploščino, ki predstavlja delež oz. prispevek k celoti." -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -#: superset-frontend/src/features/home/EmptyState.tsx:113 -#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 -msgid "Other" -msgstr "Ostalo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Drevesni grafikon s pravokotniki" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Outdoors" -msgstr "Outdoors" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" +msgstr "Skupaj" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:206 -msgid "Outer Radius" -msgstr "Zunanji polmer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +msgid "Assist" +msgstr "Pomoč" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:212 -msgid "Outer edge of Pie chart" -msgstr "Veljavno samo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +msgid "Increase" +msgstr "Povečaj" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:255 -msgid "Overlap" -msgstr "Prekrivanje" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +msgid "Decrease" +msgstr "Zmanjšaj" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 -msgid "" -"Overlay one or more timeseries from a relative time period. Expects relative time " -"deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free " -"text is supported." -msgstr "" -"Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša se " -"relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 hours, 7 days, " -"52 weeks, 365 days). Prosto besedilo je podprto." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +msgid "Series colors" +msgstr "Barve nizov" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:326 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 -#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 msgid "" -"Overlay one or more timeseries from a relative time period. Expects relative time " -"deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free " -"text is supported." +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." msgstr "" -"Zamaknite eno ali več časovnih vrst za relativno časovno obdobje. Vnaša se " -"relativne časovne razlike v naravnem (angleškem) jeziku (npr. 24 hours, 7 days, " -"52 weeks, 365 days). Prosto besedilo je podprto." +"Razbije niz po kategorijah, določenih v tem polju.\n" +" Na ta način lahko uporabniki razumejo, kako vsaka kategorija vpliva" +" na skupno vrednost." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the boundary of " -"each cell." +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." msgstr "" -"Prikaže šestkotno mrežo na zemljevidu in agregira podatke znotraj meja vsake " -"celice." +"Grafikon slapov je način prikaza, ki pomaga razumeti\n" +"\tkumulativni učinek zaporedja negativnih ali pozitivnih vrednosti.\n" +"\tVmesne vrednosti so bodisi kategorične bodisi časovne." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 -msgid "Override time grain" -msgstr "Onemogoči granulacijo časa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +msgid "Waterfall Chart" +msgstr "Grafikon slapov" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 -msgid "Override time range" -msgstr "Onemogoči časovno obdobje" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "page_size.all" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:503 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "Prepiši" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Nalagam ..." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 -msgid "Overwrite & Explore" -msgstr "Prepiši & Razišči" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" +msgstr "Napišite Handlebars-predlogo za prikaz podatkov" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "Prepiši nadzorno ploščo [%s]" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "Handlebars" -#: superset/views/database/forms.py:248 -msgid "Overwrite Duplicate Columns" -msgstr "Prepiši podvojene stolpce" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "mora imeti vrednost" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 -msgid "Overwrite existing" -msgstr "Prepiši obstoječe" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" +msgstr "Predloga za Handlebars" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 -msgid "Overwrite text in the editor with a query on this table" -msgstr "Besedilo v urejevalniku prepišite s poizvedbo na to tabelo" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "Predloga za Handlebars, ki je uporabljena za podatke" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" -msgstr "Lastnik, Ustvaril ali Priljubljen" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" +msgstr "Vključi čas" -#: superset-frontend/src/pages/AlertReportList/index.tsx:456 -#: superset-frontend/src/pages/ChartList/index.tsx:638 -#: superset-frontend/src/pages/DashboardList/index.tsx:529 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Owner" -msgstr "Lastnik" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" +msgstr "Če želite vključiti granulacijo časa, ki je določena v sekciji Čas" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 -#: 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: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:398 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:314 -#: superset-frontend/src/pages/ChartList/index.tsx:439 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DatasetList/index.tsx:396 -#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "Lastniki" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "Procentualne mere" -#: superset/commands/dataset/exceptions.py:144 superset/commands/exceptions.py:112 -msgid "Owners are invalid" -msgstr "Lastniki niso veljavni" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." +msgstr "" +"Izberite eno ali več mer za prikaz kot procent celote. Procentualna mera " +"bo izračunana samo iz podatkov znotraj omejitve vrstic. Uporabite lahko " +"agregacijsko funkcijo ali napišete poljuben SQL-izraz za procentualno " +"mero." -#: superset/views/dashboard/mixin.py:64 -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/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "Prikaži vsote" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:491 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:539 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name or " -"username." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" -"\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo. Iskanje " -"je možno po imenu ali uporabniškem imenu." +"Prikaži skupno agregacijo izbrane mere. Omejitev števila vrstic ne vpliva" +" na rezultat." -#: superset-frontend/src/utils/downloadAsPdf.ts:55 -msgid "PDF download failed, please refresh and try again." -msgstr "Prenos PDF ni uspel. Osvežite in poskusite ponovno." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" +msgstr "Razvrščanje" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:407 -msgid "Page length" -msgstr "Dolžina strani" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "Razvrsti rezultate glede na izbrani stolpec" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" -msgstr "Tabela t-testa za odvisne vzorce" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Razvrsti padajoče" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:389 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:273 -#: superset-frontend/src/explore/controlPanels/sections.tsx:269 -msgid "Pandas resample method" -msgstr "Metoda za prevzorčenje v Pandas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "Paginacija na strani strežnika" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:371 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:251 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "Pandas resample rule" -msgstr "Pravilo za prevzorčenje v Pandas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" +msgstr "" +"Omogoči številčenje strani rezultatov na strani strežnika (preizkusna " +"funkcija)" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:1708 -msgid "Parallel Coordinates" -msgstr "Vzporedne koordinate" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "Dolžina strani strežnika" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "Napaka parametra" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "Vrstic na stran (0 pomeni brez številčenja strani)" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "Parametri" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "Način poizvedbe" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " -msgstr "Parametri " +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "Združevanje po, Mera ali Procentualna mera morajo imeti vrednost" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 -msgid "Parameters related to the view and perspective on the map" -msgstr "Parametri povezani s pogledom in perspektivo zemljevida" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "Za uporabo CSS morate nastaviti sanitizacijo HTML" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Parent" -msgstr "Nadrejeni" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "CSS slogi" -#: superset/views/database/forms.py:373 -msgid "Parse Dates" -msgstr "Prepoznaj datume" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "CSS slogi uporabljeni za grafikon" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 -msgid "Part of a Whole" -msgstr "Del celote" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" -msgstr "Grafikon razdelkov" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +#, fuzzy +msgid "Range for Comparison" +msgstr "Časovna primerjava" -#: superset/viz.py:2638 -msgid "Partition Diagram" -msgstr "Grafikon s pravokotniki" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "Časovna primerjava" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:170 -msgid "Partition Limit" -msgstr "Omejitev particij" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:183 -msgid "Partition Threshold" -msgstr "Prag particije" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "Stolpci za združevanje po stolpcih" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Vrstice" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "Stolpci za združevanje po vrsticah" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" +msgstr "Uporabi mero za" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "Uporabi mere kot vrhovni nivo grupiranja za stolpce ali vrstice" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" +msgstr "Omejitev števila celic" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." +msgstr "Omeji število pridobljenih celic." + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 msgid "" -"Partitions whose height to parent height proportions are below this value are " -"pruned" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Particije z nižjim razmerjem med njihovo višino in dolžino starša so zanemarjene" +"Mera, ki določa kako so razvrščene prve serije, če je določena omejitev " +"serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je " +"ustrezno)." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1984 superset/db_engine_specs/clickhouse.py:201 -#: superset/db_engine_specs/databend.py:184 -msgid "Password" -msgstr "Geslo" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "Agregacijska funkcija" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" -msgstr "Prilepite privatni ključ sem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" +msgstr "Število" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -msgid "Paste content of service credentials JSON file here" -msgstr "Sem prilepite vsebino json-datoteke servisnega računa" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "Število unikatnih" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "Prilepite deljeni URL Googlove preglednice sem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" +msgstr "Seznam unikatnih vrednosti" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Pattern" -msgstr "Vzorec" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "Vsota" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 -msgid "Percent Change" -msgstr "Procentualna sprememba" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" +msgstr "Povprečje" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:89 -msgid "Percent of total" -msgstr "Procent celote" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "Mediana" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -msgid "Percentage" -msgstr "Procenti" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "Varianca vzorca" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:343 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Percentage change" -msgstr "Procentualna sprememba" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "Standardna deviacija vzorca" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" -msgstr "Procentualne mere" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "Minimum" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 -msgid "Percentage threshold" -msgstr "Procentualni prag" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "Maksimum" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" -msgstr "Procenti" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "Prvi" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 -msgid "Performance" -msgstr "Zmogljivost" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "Zadnji" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" -msgstr "Povprečje obdobja" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "Vsota kot delež celote" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 -#: superset-frontend/src/explore/controlPanels/sections.tsx:157 -msgid "Periods" -msgstr "Št. period" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "Vsota kot delež vrstic" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "Vsota kot delež stolpcev" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "Štetje kot delež skupne vsote" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "Štetje kot delež vrstic" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "Štetje kot delež stolpcev" -#: superset/utils/pandas_postprocessing/prophet.py:127 -msgid "Periods must be a whole number" -msgstr "Periode morajo biti celo število" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "Agregacijska funkcija za vrtenje in izračun vseh vrstic in stolpcev" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." -msgstr "Oseba ali skupina, ki je certificirala ta grafikon." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "Prikaži vsoto vrstic" -#: 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." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "Prikaži vsoto na nivoju vrstice" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1290 -msgid "Person or group that has certified this metric" -msgstr "Oseba ali skupina, ki je certificirala to mero" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +msgid "Show rows subtotal" +msgstr "Prikaži delne vsote vrstic" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1159 -#: superset-frontend/src/pages/DatasetList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:539 -msgid "Physical" -msgstr "Fizičen" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +msgid "Display row level subtotal" +msgstr "Prikaži delno vsoto na nivoju vrstice" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 -msgid "Physical (table or view)" -msgstr "Fizičen (tabela ali pogled)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "Prikaži vsoto stolpcev" -#: superset-frontend/src/pages/DatasetList/index.tsx:291 -msgid "Physical dataset" -msgstr "Fizičen podatkovni set" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "Prikaži vsoto na nivoju stolpca" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:103 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:140 -msgid "Pick a dimension from which categorical colors are defined" -msgstr "Izberite dimenzijo, ki bo določala kategorične barve" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +msgid "Show columns subtotal" +msgstr "Prikaži delne vsote stolpcev" -#: superset/viz.py:869 -msgid "Pick a metric for x, y and size" -msgstr "Izberite mere za x, y in velikost" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +msgid "Display column level subtotal" +msgstr "Prikaži delno vsoto na nivoju stolpca" -#: superset/viz.py:910 -msgid "Pick a metric to display" -msgstr "Izberite mero za prikaz" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "Transponirano vrtenje" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 -msgid "Pick a name to help you identify this database." -msgstr "Izberite ime za lažjo prepoznavo podatkovne baze." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "Zamenjaj vrstice in stolpce" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 -msgid "Pick a nickname for how the database will display in Superset." -msgstr "Izberite vzdevek za to podatkovno bazo, ki bo prikazan v Supersetu." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" +msgstr "Združuj mere" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:41 -msgid "Pick a set of deck.gl charts to layer on top of one another" -msgstr "Izberite nabor deck.gl grafikonov, ki bodo nanizani en na drugem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." +msgstr "" +"Prikazuj mere eno ob drugi ob vsakem stolpcu, drugače je vsak stolpec " +"prikazan en ob drugem za vsako mero." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Pick a title for you annotation." -msgstr "Izberite naslov za oznako." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "D3 format zapisa za časovne stolpce" -#: superset/viz.py:1287 -msgid "Pick at least one field for [Series]" -msgstr "Izberite vsaj eno polje za [Serije]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" +msgstr "Razvrsti vrstice" -#: superset/viz.py:715 superset/viz.py:1285 -msgid "Pick at least one metric" -msgstr "Izberite vsaj eno mero" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "a - ž" -#: superset/viz.py:1418 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Izberite natanko dva stolpca za [Izvor / Cilj]" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "ž - a" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you don't " -"select a column all of them will be shown." -msgstr "" -"Izberite enega ali več stolpcev, ki bodo prikazani v oznakah. Če ne izberete " -"stolpca, bodo prikazani vsi." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" +msgstr "0 - 9" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "Izberite svoj priljubljen označevalni jezik" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "9 - 0" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 -msgid "Pie Chart" -msgstr "Tortni grafikon" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "Spremeni vrstni red vrstic." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 -msgid "Pie Chart (legacy)" -msgstr "Tortni grafikon (zastarelo)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" +msgstr "Razpoložljivi načini razvrščanja:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:200 -msgid "Pie shape" -msgstr "Oblika torte" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "Po ključu: za razvrščanje uporabite imena vrstic" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 -msgid "Pin" -msgstr "Žebljiček" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "Po vrednosti: za razvrščanje uporabite vrednosti mere" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "Vrtilna tabela" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" +msgstr "Razvrsti stolpce" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "Vrtilna operacija mora vsebovati vsaj en agregat" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "Spremeni vrstni red stolpcev." -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "Vrtilna operacija zahteva vsaj en indeks" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "Po ključu: za razvrščanje uporabite imena stolpcev" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" -msgstr "Vrtilni" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "Položaj delnih vsot vrstic" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "Višina vsake serije v pikslih" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "Položaj delnih vsot na nivoju vrstic" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:148 -msgid "Pixels" -msgstr "Piksli" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "Položaj delnih vsot stolpcev" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 -msgid "Plain" -msgstr "Preprosto" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "Položaj delnih vsot na nivoju stolpcev" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." -msgstr "NE SPREMINJAJTE ključa \"filter_scopes\"." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" +msgstr "Pogojno oblikovanje" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" -msgstr "Potrdite spremembe filtra" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "Za mere uporabi pogojno oblikovanje z barvami" -#: superset/sqllab/query_render.py:120 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" -"Please check your query and confirm that all template parameters are surround by " -"double braces, for example, \"{{ ds }}\". Then, try running your query again." +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -"V poizvedbi preverite, da so vsi parametri obdani z dvojnimi oklepaji, npr. " -"\"{{ ds }}\". Potem poskusite ponovno." +"Ponazori podatke na podlagi združevanja več statistik vzdolž dveh osi. " +"Npr. prodaja po regijah in mesecih, opravila po statusih in izvajalcih, " +"itd." -#: superset/db_engine_specs/athena.py:58 superset/db_engine_specs/bigquery.py:212 -#: superset/db_engine_specs/postgres.py:166 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, " -"try running your query again." -msgstr "" -"Preverite, če ima vaša poizvedba sintaktične napake pri \"%(syntax_error)s\". " -"Potem ponovno poženite poizvedbo." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Vrtilna tabela" -#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 -#: superset/db_engine_specs/mysql.py:177 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". Then, try " -"running your query again." -msgstr "" -"Preverite, če ima vaša poizvedba sintaktične napake pri \"%(server_error)s\". " -"Potem ponovno poženite poizvedbo." +msgid "Total (%(aggregatorName)s)" +msgstr "Skupaj (%(aggregatorName)s)" -#: superset/sqllab/query_render.py:39 superset/views/core.py:117 -msgid "" -"Please check your template parameters for syntax errors and make sure they match " -"across your SQL query and Set Parameters. Then, try running your query again." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "Neznana oblika vnosa" + +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" msgstr "" -"Preverite, če imajo jinja parametri sintaktične napake in poskrbite, da se " -"ujemajo znotraj SQL-poizvedbe. Potem ponovno poženite poizvedbo." -#: superset/viz.py:2803 -msgid "Please choose at least one groupby" -msgstr "Izberite vsaj en 'Group by'" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "page_size.show" -#: superset-frontend/src/features/charts/ChartCard.tsx:79 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:68 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:476 -#: superset-frontend/src/pages/ChartList/index.tsx:811 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 -#: superset-frontend/src/pages/DashboardList/index.tsx:392 -#: superset-frontend/src/pages/DashboardList/index.tsx:682 -#: superset-frontend/src/pages/DashboardList/index.tsx:737 -#: superset-frontend/src/pages/DatasetList/index.tsx:795 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 -#: superset-frontend/src/pages/Tags/index.tsx:179 -#: superset-frontend/src/pages/Tags/index.tsx:333 -msgid "Please confirm" -msgstr "Prosim, potrdite" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" +msgstr "page_size.entries" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." -msgstr "Potrdite vrednosti za prepis." +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" +msgstr "Ni ujemajočih zapisov" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:653 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Vnesite SQLAlchemy URI za test" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "Shift + klik za razvrščanje po več stolpcih" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "Vnesite ime seta filtrov" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Vsota" -#: superset/db_engine_specs/postgres.py:130 -msgid "Please re-enter the password." -msgstr "Ponovno vpišite geslo." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "Oblika zapisa časovne značke" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" -msgstr "Ponovno izvozite datoteko in jo nato uvozite" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "Dolžina strani" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "Za pomoč se obrnite na lastnika grafikona." -msgstr[1] "Za pomoč se obrnite na lastnika grafikona." -msgstr[2] "Za pomoč se obrnite na lastnike grafikona." -msgstr[3] "Za pomoč se obrnite na lastnike grafikona." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" +msgstr "Iskalno polje" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 -msgid "Please save the query to enable sharing" -msgstr "Shranite poizvedbo za deljenje" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "Če želite vključiti iskalno polje za uporabnika" -#: superset/commands/report/exceptions.py:103 -msgid "Please save your chart first, then try creating a new email report." -msgstr "" -"Najprej shranite grafikon, potem pa poskusite ustvariti novo e-poštno poročilo." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "Stolp. graf v celicah" -#: superset/commands/report/exceptions.py:115 -msgid "Please save your dashboard first, then try creating a new email report." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" msgstr "" -"Najprej shranite nadzorno ploščo, potem pa poskusite ustvariti novo e-poštno " -"poročilo." +"Če želite omogočiti prikaz manjših stolpčnih grafikonov v ozadju stolpcev" +" tabele" -#: superset-frontend/src/pages/ChartCreation/index.tsx:374 -msgid "Please select both a Dataset and a Chart type to proceed" -msgstr "Za nadaljevanje izberite podatkovni set in tip grafikona" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "Poravnaj +/-" -#: superset/viz.py:867 -msgid "Please use 3 different metric labels" -msgstr "Uporabite 3 različne nazive mer" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 +msgid "" +"Whether to align background charts with both positive and negative values" +" at 0" +msgstr "Poravnava grafa v ozadju celic za negativne in pozitivne vrednosti pri 0" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:27 -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "Izriši razdalje (kot letalske koridorje) med izhodiščem in ciljem." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "Barva +/-" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 msgid "" -"Plots the individual metrics for each row in the data vertically and links them " -"together as a line. This chart is useful for comparing multiple metrics across " -"all of the samples or rows in the data." +"Whether to colorize numeric values by whether they are positive or " +"negative" msgstr "" -"Izriše posamezne mere za vsako vrstico podatkov navpično in jih med seboj poveže " -"kot črto. Grafikon je uporaben za primerjavo več mer med vsemi vzorci ali " -"vrsticami podatkov." +"Če želite obarvati številske vrednosti, ko so le-te pozitivne ali " +"negativne" -#: superset/initialization/__init__.py:281 -msgid "Plugins" -msgstr "Vtičniki" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:129 -msgid "Point Color" -msgstr "Barva točke" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:123 -msgid "Point Radius" -msgstr "Radij točk" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "Omogoči razvrščanje stolpcev" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:95 -msgid "Point Radius Scale" -msgstr "Skaliranje radija točk" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" +"Uporabniku omogočite, da s potegom razvrsti stolpce. Sprememba se ne bo " +"ohranila, ko bo grafikon ponovno naložen." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -msgid "Point Radius Unit" -msgstr "Enota radija točk" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" +msgstr "Prilagodi stolpce" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:68 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 -msgid "Point Size" -msgstr "Velikost točke" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "Dodatne prilagoditve prikaza posameznih stolpcev" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:76 -msgid "Point Unit" -msgstr "Enota točke" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "Za numerične stolpce uporabi pogojno oblikovanje z barvami" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 -msgid "Point to your spatial columns" -msgstr "Pokažite na stolpec z lokacijskimi podatki" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "Standardna razpredelnica za prikaz podatkovnega seta." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:116 -msgid "Points" -msgstr "Točke" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" +msgstr "Prikaži" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "Točke in gruče se bodo posodabljale, če se bo spremenil pogled" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" +msgstr "vnosi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -msgid "Polygon Column" -msgstr "Stolpec poligonov" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "Oblak besed" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -msgid "Polygon Encoding" -msgstr "Kodiranje poligonov" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "Min. velikost pisave" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:103 -msgid "Polygon Settings" -msgstr "Nastavitve poligonov" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "Velikost pisave za najmanjšo vrednost na seznamu" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -msgid "Polyline" -msgstr "Poli-linija" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "Max. velikost pisave" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "Priljubljeni" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "Velikost pisave za največjo vrednost na seznamu" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "Izpolnite \"Privzeto vrednost\", da omogočite ta kontrolnik" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" +msgstr "Vrtenje besed" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" -msgstr "Podatki starosti populacije" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" +msgstr "naključno" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 -msgid "Port" -msgstr "Vrata" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" +msgstr "pravokotno" -#: superset/db_engine_specs/mssql.py:106 superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:699 superset/db_engine_specs/redshift.py:84 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "Vrata %(port)s na gostitelju \"%(hostname)s\" niso sprejela povezave." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" +msgstr "Če želite vrtenje besed v oblaku" -#: superset/db_engine_specs/ocient.py:267 -msgid "Port out of range 0-65535" -msgstr "Vrata v razponu 0-65535" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." +msgstr "" +"Prikaže besede v stolpcu, glede na pogostost pojavljanja. Večja pisava " +"pomeni večjo frekvenco." -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "JSON za postavitev" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "N/A" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:183 -msgid "Position of child node label on tree" -msgstr "Položaj oznake podrejenega vozlišča na drevesu" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" +msgstr "offline" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:400 -msgid "Position of column level subtotal" -msgstr "Položaj delnih vsot na nivoju stolpcev" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" +msgstr "ni uspelo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:165 -msgid "Position of intermediate node label on tree" -msgstr "Položaj vmesne oznake vozlišča na drevesu" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" +msgstr "v teku" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:383 -msgid "Position of row level subtotal" -msgstr "Položaj delnih vsot na nivoju vrstic" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" +msgstr "pridobivanje" -#: superset-frontend/src/features/home/RightMenu.tsx:497 -msgid "Powered by Apache Superset" -msgstr "Omogoča Apache Superset" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" +msgstr "v teku" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1013 -msgid "Pre-filter" -msgstr "Predfilter" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" +msgstr "ustavljeno" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:972 -msgid "Pre-filter available values" -msgstr "Predfiltriraj razpoložljive vrednosti" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" +msgstr "uspešno" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:652 -msgid "Pre-filter is required" -msgstr "Zahtevan je predfilter" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "Poizvedbe ni mogoče naložiti" -#: superset/connectors/sqla/views.py:349 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 msgid "" -"Predicate applied when fetching distinct value to populate the filter control " -"component. Supports jinja template syntax. Applies only when `Enable Filter " -"Select` is on." +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" msgstr "" -"Privzeta vrednost za pridobivanje različnih vrednost pri oblikovanju filtrov. " -"Podpira sintakso za jinja predloge. Potrebno le, ko je vključeno `Omogoči izbiro " -"filtra`." - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Predictive" -msgstr "Prediktivno" +"Vaša poizvedba je v urniku. Za ogled podrobnosti poizvedbe pojdite na " +"shranjene poizvedbe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" -msgstr "Prediktivna analitika" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Vaše poizvedbe ni mogoče uvrstiti v urnik" -#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 -msgid "Prefix" -msgstr "Predpona" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Napaka pri pridobivanju rezultatov" -#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 -msgid "Prefix or suffix" -msgstr "Predpona ali pripona" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Neznana napaka" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "Predogled" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "Poizvedba je bila ustavljena." -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 #, python-format -msgid "Preview: `%s`" -msgstr "Predogled: `%s`" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "Prejšnji" - -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 -msgid "Previous Line" -msgstr "Prejšnja linija" - -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 -msgid "Primary" -msgstr "Primarna" - -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:159 -msgid "Primary Metric" -msgstr "Primarna mera" - -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 -msgid "Primary key" -msgstr "Primarni ključ" +msgid "Failed at stopping query. %s" +msgstr "Neuspešno ustavljanje poizvedbe. %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 -msgid "Primary or secondary y-axis" -msgstr "Primarna ali sekundarna y-os" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Stanja sheme tabele ni mogoče prenesti v sistem. Superset bo ponovil " +"poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 -msgid "Primary y-axis Bounds" -msgstr "Meje primarne y-osi" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." +msgstr "" +"Stanja poizvedbe ni mogoče prenesti v sistem. Superset bo ponovil poskus " +"kasneje. Če se težava ponavlja, kontaktirajte administratorja." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:378 -msgid "Primary y-axis format" -msgstr "Oblika primarne y-osi" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Stanja urejevalnika poizvedb ni mogoče prenesti v sistem. Superset bo " +"ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte " +"administratorja." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "Privatni ključ" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "Novega zavihka ni mogoče dodati v sistem. Kontaktirajte administratorja." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "Privatni ključ in geslo" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "" +"-- Opomba: Če ne shranite poizvedbe, se ti zavihki NE bodo ohranili, ko " +"boste počistili piškote ali zamenjali brskalnik.\n" +"\n" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -msgid "Private Key Password" -msgstr "Geslo privatnega ključa" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "Kopija %s" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -msgid "Proceed" -msgstr "Nadaljuj" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" +"Pri določanju aktivnega zavihka je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/src/features/home/RightMenu.tsx:478 -msgid "Profile" -msgstr "Profil" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Pri pridobivanju stanja zavihka je prišlo do napake" -#: superset-frontend/src/features/profile/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "Profilno sliko je zagotovil Gravatar" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "" +"Pri odstranjevanju zavihka je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:237 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "Napredek" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "" +"Pri odstranjevanju poizvedbe je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -msgid "Progressive" -msgstr "Progresivno" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Vaše poizvedbe ni mogoče shraniti" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "Razširi" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" +msgstr "Vaša poizvedba ni bila pravilno shranjena" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 -msgid "Proportional" -msgstr "Proporcionalno" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Vaša poizvedba je shranjena" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "Javno in zasebno deljene preglednice" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Vaša poizvedba je posodobljena" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "Samo javno deljene preglednice" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Vaše poizvedbe ni mogoče posodobiti" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:322 -#: superset-frontend/src/pages/DashboardList/index.tsx:511 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "Objavljeno" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." +msgstr "" +"Pri shranjevanju vaše poizvedbe v sistem je prišlo do napake. Da ne " +"izgubite sprememb, shranite poizvedbo z gumbom \"Shrani poizvedbo\"." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:49 -msgid "Purple" -msgstr "Vijolična" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "" +"Pri pridobivanju metapodatkov tabele je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:162 -msgid "Put labels outside" -msgstr "Postavi oznake zunaj" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "" +"Pri širitvi sheme tabele je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:165 -msgid "Put the labels outside of the pie?" -msgstr "Postavim oznake zunaj torte?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "" +"Pri krčenju sheme tabele je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" -msgstr "Postavim oznake zunaj torte?" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Pri odstranjevanju sheme tabele je prišlo do napake. Kontaktirajte " +"administratorja." -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "Vstavite svojo kodo sem" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Deljene poizvedbe" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 -msgid "Python datetime string pattern" -msgstr "Pythonov format zapisa datum-časa" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "Podatkovnega vira ni mogoče naložiti" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1595 -msgid "QUERY DATA IN SQL LAB" -msgstr "POIZVEDBA V SQL-LABORATORIJU" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Pri ustvarjanju podatkovnega vira je prišlo do težave" -#: superset/db_engine_specs/base.py:112 -msgid "Quarter" -msgstr "Četrtletje" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Pri pridobivanju imen funkcij je prišlo do napake." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 #, python-format -msgid "Quarters %s" -msgstr "Četrtletja %s" +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" +"SQL laboratorij uporablja lokalno shrambo brskalnika za shranjevanje " +"poizvedb in rezultatov.\n" +"Trenutno uporabljate %(currentUsage)s KB od %(maxStorage)d KB prostora.\n" +"Da preprečite sesutje SQL laba, izbrišite nekaj zavihkov s poizvedbami.\n" +"Poizvedbe lahko ponovno pridobite, če pred brisanjem uporabite funkcijo " +"Shrani.\n" +"Pred tem morate zapreti druga okna SQL laboratorija." -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 -msgid "Queries" -msgstr "Poizvedbe" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" +msgstr "Primarni ključ" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:36 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1218 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:97 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:201 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "Poizvedba" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" +msgstr "Tuji ključ" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -#, python-format -msgid "Query %s: %s" -msgstr "Poizvedba %s: %s" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" +msgstr "Indeks" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -msgid "Query A" -msgstr "Poizvedba A" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Oceni potratnost izbrane poizvedbe" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:307 -msgid "Query B" -msgstr "Poizvedba B" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Oceni potratnost" -#: superset/initialization/__init__.py:369 -msgid "Query History" -msgstr "Zgodovina poizvedb" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Ocena potratnosti" -#: superset/commands/exceptions.py:142 -msgid "Query does not exist" -msgstr "Poizvedba ne obstaja" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Ustvarjanje podatkovnega vira in novega zavihka" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 -msgid "Query history" -msgstr "Zgodovina poizvedb" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Prišlo je do napake" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 -msgid "Query imported" -msgstr "Poizvedba uvožena" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Raziščite rezultate v pogledu za raziskovanje podatkov" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:517 -msgid "Query in a new tab" -msgstr "Poizvedba v novem zavihku" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" +msgstr "raziskovanje" -#: superset/errors.py:133 -msgid "Query is too complex and takes too long to run." -msgstr "Poizvedba je prekompleksna in se izvaja predolgo." +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" +msgstr "Ustvarite grafikon" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" -msgstr "Način poizvedbe" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Izvorni SQL" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 -msgid "Query name" -msgstr "Ime poizvedbe" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "Izvedena poizvedba" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:395 -msgid "Query preview" -msgstr "Predogled poizvedbe" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Zaženi poizvedbo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:474 -msgid "Query was stopped" -msgstr "Poizvedba je bila ustavljena" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +msgid "Run current query" +msgstr "Zaženi trenutno poizvedbo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:411 -msgid "Query was stopped." -msgstr "Poizvedba je bila ustavljena." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Ustavi poizvedbo" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "TIP OBDOBJA" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Nov zavihek" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -msgid "RGB Color" -msgstr "RGB barva" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" +msgstr "Prejšnja linija" -#: superset/commands/security/exceptions.py:25 -msgid "RLS Rule not found." -msgstr "RLS-pravilo ni najdeno." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +msgid "Format SQL" +msgstr "Oblikuj SQL" -#: superset/commands/security/exceptions.py:29 -msgid "RLS rules could not be deleted." -msgstr "RLS-pravil ni mogoče izbrisati." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +msgid "Find" +msgstr "Najdi" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:160 -msgid "Radar" -msgstr "Radar" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "Bližnjice na tipkovnici" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 -msgid "Radar Chart" -msgstr "Radarski grafikon" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "Za prikaz zgodovine poizvedb zaženite poizvedbo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:203 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "Prikaz radarja okrogle oblike." +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" +msgstr "OMEJITEV" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:123 -msgid "Radial" -msgstr "Radialna" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Status" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 -msgid "Radius in kilometers" -msgstr "Polmer v kilometrih" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" +msgstr "Začetek" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -msgid "Radius in meters" -msgstr "Polmer v metrih" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Trajanje" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -msgid "Radius in miles" -msgstr "Polmer v miljah" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Rezultati" -#: superset-frontend/src/features/home/SavedQueries.tsx:281 -#, python-format -msgid "Ran %s" -msgstr "Pretečeno %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Aktivnosti" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 -msgid "Range" -msgstr "Doseg" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Uspelo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" -msgstr "Filter obdobja" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Ni uspelo" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" -msgstr "Vtičnik za filter obdobja z uporabo AntD" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "V teku" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "Oznake razponov" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" +msgstr "Pridobivam" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" -msgstr "Razponi" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Offline" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "Razponi za označitev s senčenjem" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "V urniku" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" -msgstr "Rangiranje" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "Neznan status" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 -#: superset-frontend/src/explore/controlPanels/sections.tsx:224 -msgid "Ratio" -msgstr "Razmerje" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Urejanje" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 -msgid "Raw records" -msgstr "Surovi podatki" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" +msgstr "Ogled" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" -msgstr "Ste pripravljeni za pregled filtrov v tej nadzorni plošči?" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Ogled podatkov" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" -msgstr "Obnovi" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Besedilo v urejevalniku prepišite s poizvedbo na to tabelo" -#: superset-frontend/src/pages/Profile/index.tsx:72 -msgid "Recent activity" -msgstr "Nedavna aktivnost" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Zaženi poizvedbo v novem zavihku" -#: superset-frontend/src/features/home/EmptyState.tsx:108 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "" -"Nedavno ustvarjeni grafikoni, nadzorne plošče in shranjene poizvedbe bodo " -"prikazane tukaj" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Odstrani poizvedbo iz dnevnika" -#: superset-frontend/src/features/home/EmptyState.tsx:117 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "" -"Nedavno urejani grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane " -"tukaj" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "Grafikona ni mogoče ustvariti brez id-ja poizvedbe." -#: superset-frontend/src/pages/ChartList/index.tsx:717 -#: superset-frontend/src/pages/DashboardList/index.tsx:598 -#: superset-frontend/src/pages/Tags/index.tsx:280 -msgid "Recently modified" -msgstr "Nedavno spremenjeno" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Shrani & Razišči" -#: superset-frontend/src/features/home/EmptyState.tsx:103 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "" -"Nedavno ogledani grafikoni, nadzorne plošče in shranjene poizvedbe bodo prikazane " -"tukaj" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Prepiši & Razišči" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "Nedavno" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "Shranite poizvedbo kot virtualni podatkovni set" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Prejemniki so ločeni z \",\" ali \";\"" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Izvozi kot CSV" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "Priporočene oznake" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "Kopiraj na odložišče" -#: superset/templates/appbuilder/general/widgets/base_list.html:56 -msgid "Record Count" -msgstr "Število zapisov" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Filtriraj rezultate" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 -msgid "Rectangle" -msgstr "Pravokotnik" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" +"Število prikazanih rezultatov je omejeno na %(rows)d na podlagi parametra" +" DISPLAY_MAX_ROW. V csv dodajte dodatne omejitve/filtre, da boste lahko " +"videli več vrstic do meje %(limit)d ." -#: superset/connectors/sqla/views.py:355 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "Preusmeri v to končno točko, ko kliknete na tabelo v seznamu tabel" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." +msgstr "" +"Število prikazanih rezultatov je omejeno na %(rows)d . V csv dodajte " +"dodatne omejitve/filtre, da boste lahko videli več vrstic do meje " +"%(limit)d ." -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" -msgstr "Ponovno uveljavi dejanje" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 -msgid "Reduce X ticks" -msgstr "Manj oznak X-osi" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "Število prikazanih rezultatov je omejeno na %(rows)d s poizvedbo." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not " -"overflow and labels may be missing. If false, a minimum width will be applied to " -"columns and the width may overflow into an horizontal scroll." +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "" +"Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo in spustnim " +"izbirnikom omejitev." + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "%(rows)d vrnjenih vrstic" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -"Zmanjša število izrisanih oznak na X-osi. Če je vklopljeno, se x-os ne bo prelila " -"in lahko oznake manjkajo. Če je izklopljeno, bo upoštevana min. širina stolpcev, " -"ki pa se lahko prelije v horizontalni drsnik." +"Število prikazanih vrstic je omejeno na %(rows)d z izbiro v spustnem " +"seznamu." -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 -msgid "Refer to the" -msgstr "Obrnite se na" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s vrstica" -#: superset/utils/pandas_postprocessing/utils.py:127 -msgid "Referenced columns not available in DataFrame." -msgstr "Referencirani stolpci niso razpoložljivi v Dataframe-u." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Sledi opravilom" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:637 -msgid "Refetch results" -msgstr "Ponovno pridobi rezultate" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" +msgstr "Podrobnosti poizvedbe" -#: superset/templates/appbuilder/general/widgets/search.html:58 -msgid "Refresh" -msgstr "Osveži" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "Poizvedba je bila ustavljena" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Napaka podatkovne baze" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:237 -msgid "Refresh dashboard" -msgstr "Osveži nadzorno ploščo" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "ustvarjeno" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "Frekvenca osveževanja" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Poizvedba v novem zavihku" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "Interval osveževanja" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "Poizvedba ni vrnila podatkov" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -msgid "Refresh interval saved" -msgstr "Interval osveževanja shranjen" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Pridobi predogled podatkov" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1278 -msgid "Refresh the default values" -msgstr "Osveži privzete vrednosti" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Ponovno pridobi rezultate" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:162 -msgid "Refreshing charts" -msgstr "Osveževanje grafikonov" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "Ustavi" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 -msgid "Refreshing columns" -msgstr "Osveževanje stolpcev" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Zaženi izbrano" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 -msgid "Regular" -msgstr "Navaden" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Zaženi" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:368 -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries except the " -"roles defined in the filter, and can be used to define what users can see if no " -"RLS filters within a filter group apply to them." -msgstr "" -"Navadni filtri dodajo WHERE stavek v poizvedbe, če ima uporabnik vlogo podano v " -"filtru. Osnovni filtri filtrirajo vse poizvedbe, razen vlog, definiranih v " -"filtru, in jih je mogoče uporabiti za nastavitev tega kaj uporabnik vidi, če v " -"skupini filtrov ni RLS-filtrov, ki bi se nanašali nanje." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Ustavi (Ctrl + x)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Relational" -msgstr "Relacijsko" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" +msgstr "Ustavi (Ctrl + e)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "Razmerja med skupnostnimi kanali" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Zaženi poizvedbo (Ctrl + Return)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "Relativen Datum/Čas" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Shrani" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "Relativno obdobje" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" +msgstr "Neimenovan podatkovni set" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "Relativne vrednosti" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 -msgid "Reload" -msgstr "Ponovno naloži" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "Shrani ali prepiši podatkovni set" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "Opomni me čez 24 ur" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" +msgstr "Nazaj" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 -msgid "Remove" -msgstr "Odstrani" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Shrani kot novo" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 -msgid "Remove cross-filter" -msgstr "Odstrani medsebojne filtre" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" +msgstr "Prepiši obstoječe" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "Odstrani neveljavne filtre" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" +msgstr "Izberite ali vnesite naziv podatkovnega seta" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "Odstrani element" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" +msgstr "Obstoječ podatkovni set" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 -msgid "Remove query from log" -msgstr "Odstrani poizvedbo iz dnevnika" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Ali ste prepričani, da želite prepisati podatkovni set?" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 -msgid "Remove table preview" -msgstr "Odstrani predogled tabele" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Ni definirano" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:790 -#, python-format -msgid "Removed columns: %s" -msgstr "Odstranjeni stolpci: %s" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" +msgstr "Shrani podatkovni set" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "Preimenuj zavihek" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Shrani kot" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 -msgid "Rendering" -msgstr "Izris" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Shrani poizvedbo" -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:463 -msgid "Replace" -msgstr "Zamenjaj" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Prekliči" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 -msgid "Report" -msgstr "Poročilo" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Posodobi" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 -msgid "Report Name" -msgstr "Naslov poročila" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Ime vaše poizvedbe" -#: superset/commands/report/exceptions.py:128 -msgid "Report Schedule could not be created." -msgstr "Urnika poročanja ni mogoče ustvariti." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Dodajte opis vaše poizvedbe" -#: superset/commands/report/exceptions.py:132 -msgid "Report Schedule could not be updated." -msgstr "Urnika poročanja ni mogoče posodobiti." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "Pošlji" -#: superset/commands/report/exceptions.py:141 -msgid "Report Schedule delete failed." -msgstr "Izbris urnika poročanja ni uspel." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Urnik poizvedb" -#: superset/commands/report/exceptions.py:153 -msgid "Report Schedule execution failed when generating a csv." -msgstr "Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju csv." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Urnik" -#: superset/commands/report/exceptions.py:157 -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "" -"Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju podatkovnega okvira." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Pri zahtevi je prišlo do napake" -#: superset/commands/report/exceptions.py:149 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "" -"Izvajanje urnika poročanja je bilo neuspešno pri ustvarjanju zaslonske slike." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Shranite poizvedbo za deljenje" -#: superset/commands/report/exceptions.py:161 -msgid "Report Schedule execution got an unexpected error." -msgstr "Pri izvajanju urnika poročanja je prišlo do nepričakovane napake." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Kopiraj povezavo do poizvedbe v odložišče" -#: superset/commands/report/exceptions.py:166 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "Urnik poročanja se še vedno izvaja, ponovni izračun je zavrnjen." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Za omogočenje te funkcije shranite poizvedbo" -#: superset/commands/report/exceptions.py:145 -msgid "Report Schedule log prune failed." -msgstr "Krajšanje dnevnika urnika poročanja ni uspelo." +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Kopiraj povezavo" -#: superset/commands/report/exceptions.py:137 -msgid "Report Schedule not found." -msgstr "Urnika poročanja ni najden." +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "Rezultatov še ni shranjenih, ponovno morate zagnati poizvedbo" -#: superset/commands/report/exceptions.py:124 -msgid "Report Schedule parameters are invalid." -msgstr "Parametri urnika poročanja so neveljavni." +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "Za prikaz rezultatov morate zagnati poizvedbo" -#: superset/commands/report/exceptions.py:171 -msgid "Report Schedule reached a working timeout." -msgstr "Urnik poročanja je dosegel mejo časa izvedbe." +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Predogled: `%s`" -#: superset/commands/report/exceptions.py:256 -msgid "Report Schedule state not found" -msgstr "Stanje urnika poročanj ni najdeno" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Zgodovina poizvedb" -#: superset-frontend/src/features/home/RightMenu.tsx:549 -msgid "Report a bug" -msgstr "Sporočite napako" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Periodično zaganjaj poizvedbo" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "Poročilo ni uspelo" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Najprej morate uspešno izvesti poizvedbo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Report name" -msgstr "Naslov poročila" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Samodokončaj" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -msgid "Report schedule" -msgstr "Urnik poročanja" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "CREATE TABLE AS" -#: superset/commands/report/exceptions.py:267 -msgid "Report schedule client error" -msgstr "Napaka klienta urnika poročanja" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "CREATE VIEW AS" -#: superset/commands/report/exceptions.py:261 -msgid "Report schedule system error" -msgstr "Sistemska napaka urnika poročanja" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Oceni potratnost pred zagonom poizvedbe" -#: superset/commands/report/exceptions.py:271 -msgid "Report schedule unexpected error" -msgstr "Nepričakovana napaka urnika poročanja" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "Podajte naziv sheme za CREATE VIEW AS: public" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "Pošiljanje poročila" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "Podajte naziv sheme za CREATE TABLE AS: public" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "Poročilo poslano" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "Izberite podatkovno bazo za poizvedbo" -#: superset-frontend/src/features/reports/ReportModal/actions.js:121 -msgid "Report updated" -msgstr "Poročilo posodobljeno" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "Izberite eno od razpoložljivih podatkovnih baz v panelu na levi." -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "Poročila" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Ustvari" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:285 -msgid "Repulsion" -msgstr "Odbijanje" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "Zapri predogled tabele" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:291 -msgid "Repulsion strength between nodes" -msgstr "Odbojna sila med vozlišči" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" +msgstr "Odpri predogled tabele" -#: superset/charts/data/api.py:155 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:313 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "Zahtevek je napačen: %(error)s" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Ponastavi stanje" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "Zahtevek ni JSON" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Vnesite novo naslov zavihka" -#: superset/views/datasource/views.py:75 -msgid "Request missing data field." -msgstr "Zahtevaj manjkajoča podatkovna polja." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Zapri zavihek" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -msgid "Request timed out" -msgstr "Zahtevek pretečen" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Preimenuj zavihek" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "Obvezno" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Razširi orodno vrstico" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" -msgstr "Zahtevane kontrolne vrednosti so bile odstranjene" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Skrij orodno vrstico" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:354 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:232 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "Resample" -msgstr "Prevzorči" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Zapri vse ostale zavihke" -#: superset/utils/pandas_postprocessing/resample.py:46 -msgid "Resample method should in " -msgstr "Metoda za prevzorčenje v Pandas mora " +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Podvoji zavihek" -#: superset/utils/pandas_postprocessing/resample.py:43 -msgid "Resample operation requires DatetimeIndex" -msgstr "Prevzorčevalna operacija zahteva indeks tipa datumčas" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" +msgstr "Dodaj nov zavihek" -#: superset-frontend/src/components/Table/index.tsx:218 -msgid "Reset" -msgstr "Ponastavi" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Nov zavihek (Ctrl + q)" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:285 -msgid "Reset state" -msgstr "Ponastavi stanje" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Nov zavihek (Ctrl + t)" -#: superset/commands/report/exceptions.py:188 -msgid "Resource already has an attached report." -msgstr "Vir že ima povezano poročilo." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "Dodaj nov zavihek za SQL-poizvedbo" -#: superset/commands/temporary_cache/exceptions.py:49 -msgid "Resource was not found." -msgstr "Vir ni bil najden." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Pri pridobivanju metapodatkov tabele je prišlo do napake" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "Povrni filter" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Kopiraj particijsko poizvedbo na odložišče" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "Rezultati" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "zadnja particija:" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, python-format -msgid "Results %s" -msgstr "Rezultati %s" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Ključi za tabelo" -#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:415 -msgid "Results backend is not configured." -msgstr "Zaledni sistem rezultatov ni konfiguriran." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Ogled ključev in indeksov (%s)" -#: superset/errors.py:124 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "" -"Zaledni sistem za rezultate, potreben za asinhrone poizvedbe, ni konfiguriran." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Vrstni red stolpcev izvorne tabele" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "Vrne datum-čas." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Razvrsti stolpce po abecedi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 -msgid "Reverse Lat & Long" -msgstr "Zamenjaj širino in dolžino" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Kopiraj stavek SELECT na odložišče" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "Zamenjaj zemljepisno dolžino/širino " +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Prikaži CREATE VIEW stavek" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:224 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 -msgid "Rich Tooltip" -msgstr "Podroben opis orodja" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "CREATE VIEW stavek" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 -msgid "Rich tooltip" -msgstr "Podroben opis orodja" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Odstrani predogled tabele" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:397 -msgid "Right" -msgstr "Desno" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" +msgstr "Določi nabor parametrov kot" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 -msgid "Right Axis Format" -msgstr "Oblika desne osi" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "v polje spodaj (primer:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:189 -msgid "Right Axis Metric" -msgstr "Mera desne osi" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" +msgstr "), s čimer bodo na razpolago v sklopu SQL-poizvedbe (primer:" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "Mera desne osi" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "z uporabo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Right to Left" -msgstr "Od desne proti levi" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" +msgstr "Jinja" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "Desna vrednost" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." +msgstr "sintakse." -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "Z desnim klikom na dimenzijo vrtajte v podrobnosti po tej vrednosti." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Uredi parametre predloge" -#: superset/dashboards/filters.py:193 -msgid "Role" -msgstr "Vloga" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " +msgstr "Parametri " -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 -#: superset-frontend/src/features/profile/Security.tsx:35 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:419 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "Vloge" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "Neveljaven JSON" -#: 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 defined, regular " -"access permissions apply." -msgstr "" -"\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev vloge za " -"dostop do nadzorne plošče bo obšlo preverjanje na nivoju podatkovnega seta. Če " -"vloga ni definirana, bodo veljavna običajna pravila dostopov." +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Neimenovana poizvedba" -#: superset/views/dashboard/mixin.py:65 -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role access to " -"a dashboard will bypass dataset level checks.If no roles are defined, regular " -"access permissions apply." -msgstr "" -"\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev vloge za " -"dostop do nadzorne plošče bo obšlo preverjanje na nivoju podatkovnega seta. Če " -"vloga ni definirana, bodo veljavna običajna pravila dostopov." +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -msgid "Rolling Function" -msgstr "Drseča funkcija" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" +msgstr "Nadzor" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:247 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:177 -msgid "Rolling Window" -msgstr "Drseče okno" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "Pred" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "Rolling function" -msgstr "Drseča funkcija" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "Potem" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 -#: superset-frontend/src/explore/controlPanels/sections.tsx:130 -msgid "Rolling window" -msgstr "Drseče okno" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Kliknite za prikaz razlike" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "Korenski certifikat" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Spremenjeno" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Root node id" -msgstr "Id korenskega vozlišča" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Spremembe grafikona" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 -msgid "Rotate x axis label" -msgstr "Zavrti oznako x-osi" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, python-format +msgid "Modified by: %s" +msgstr "Spremenil: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 -msgid "Rotate y axis label" -msgstr "Zavrti oznako y-osi" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Naloženo v predpomnilnik" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "Če želite vrtenje besed v oblaku" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Naloženo iz predpomnilnika" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:269 -msgid "Round cap" -msgstr "Zaobljeni konci" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Kliknite za prisilno osvežitev" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "Vrstica" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" +msgstr "Predpomnjeno" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 -#: superset/initialization/__init__.py:428 -msgid "Row Level Security" -msgstr "Varnost na nivoju vrstic" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" +msgstr "Dodaj potrebne parametre za predogled grafikona" -#: superset/views/database/forms.py:256 +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "Grafikon je pripravljen!" + +#: superset-frontend/src/components/Chart/Chart.jsx:274 msgid "" -"Row containing the headers to use as column names (0 is first line of data). " -"Leave empty if there is no header row" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -"Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). " -"Pustite prazno, če ni naslovne vrstice" +"Kliknite na gumb \"Ustvari grafikon\" v kontrolni plošči na levi za " +"predogled ali" -#: superset/views/database/forms.py:343 +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "kliknite tukaj" + +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "Poizvedba ni vrnila rezultatov" + +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 msgid "" -"Row containing the headers to use as column names (0 is first line of data). " -"Leave empty if there is no header row." +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" msgstr "" -"Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). " -"Pustite prazno, če ni naslovne vrstice." +"Poskrbite, da so kontrolniki pravilno nastavljeni in podatkovni vir " +"vsebuje podatke za izbrano časovno obdobje" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:246 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "Omejitev števila vrstic" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Pri nalaganju SQL je prišlo do napake" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 -msgid "Rows" -msgstr "Vrstice" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "Prišlo je do napake" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:326 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:410 -msgid "Rows per page, 0 means no pagination" -msgstr "Vrstic na stran (0 pomeni brez številčenja strani)" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "Posodabljanje grafikona je bilo ustavljeno" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Rows subtotal position" -msgstr "Položaj delnih vsot vrstic" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Pri prikazovanju vizualizacije je prišlo do napake: %s" -#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 -msgid "Rows to Read" -msgstr "Vrstice za branje" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Napaka omrežja." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:361 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -#: superset-frontend/src/explore/controlPanels/sections.tsx:241 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 -msgid "Rule" -msgstr "Pravilo" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" +"Medsebojni filter bo uporabljen za vse grafikone, ki uporabljajo ta " +"podatkovni set." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:359 -msgid "Rule Name" -msgstr "Ime pravila" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "Lahko tudi samo kliknete na grafikon za medsebojno filtriranje." -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:257 -msgid "Rule added" -msgstr "Pravilo dodano" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Medsebojni filtri za to nadzorno ploščo niso omogočeni." -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 -msgid "Run" -msgstr "Zaženi" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." +msgstr "Ta tip vizualizacije ni podpira medsebojnih filtrov." -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -msgid "Run a query to display query history" -msgstr "Za prikaz zgodovine poizvedb zaženite poizvedbo" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." +msgstr "Za to podatkovno točko ne morete uporabiti medsebojnega filtra." -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -msgid "Run a query to display results" -msgstr "Za prikaz rezultatov morate zagnati poizvedbo" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" +msgstr "Odstrani medsebojne filtre" -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 -msgid "Run current query" -msgstr "Zaženi trenutno poizvedbo" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" +msgstr "Dodaj medsebojni filter" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 -msgid "Run in SQL Lab" -msgstr "Zaženi v SQL laboratoriju" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "Neuspešno nalaganje dimenzij za \"Vrtanje po\"" -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 -msgid "Run query" -msgstr "Zaženi poizvedbo" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "Vrtanje po še ni podprto za grafikon tega tipa" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 -msgid "Run query (Ctrl + Return)" -msgstr "Zaženi poizvedbo (Ctrl + Return)" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "Vrtanje po ni mogoče za to podatkovno točko" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 -msgid "Run query in a new tab" -msgstr "Zaženi poizvedbo v novem zavihku" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "Vrtanje po" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" +msgstr "Iskanje stolpcev" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 -msgid "Run selection" -msgstr "Zaženi izbrano" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" +msgstr "Ni najdenih stolpcev" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 -msgid "Running" -msgstr "V teku" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" +msgstr "Neuspešno ustvarjanje URL za urejanje grafikona" -#: superset/sql_lab.py:493 -#, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "Poganjanje izraza %(statement_num)s od %(statement_count)s" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Nimate dovoljenja za urejanje tega grafikona" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "SOB" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" +msgstr "Uredi grafikon" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "SEP" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Zapri" -#: superset-frontend/src/features/home/RightMenu.tsx:507 -msgid "SHA" -msgstr "SHA" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "Neuspešno nalaganje podatkov grafikona." -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1133 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 -#: superset/initialization/__init__.py:357 superset/initialization/__init__.py:365 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" +msgstr "Vrtanje po: %s" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL kopiran!" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +msgid "There was an error loading the chart data" +msgstr "Napaka pri nalaganju podatkov grafikona" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL izraz" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Rezultati %s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:352 superset/initialization/__init__.py:374 -msgid "SQL Lab" -msgstr "SQL laboratorij" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "Vrtanje v podrobnosti po" -#: superset/connectors/sqla/views.py:411 -msgid "SQL Lab View" -msgstr "Pogled SQL laboratorija" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "Vrtanje v podrobnosti" -#: superset-frontend/src/SqlLab/components/App/index.jsx:171 -#, python-format +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage " -"space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you delete the " -"tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." +"Drill to detail is disabled because this chart does not group data by " +"dimension value." msgstr "" -"SQL laboratorij uporablja lokalno shrambo brskalnika za shranjevanje poizvedb in " -"rezultatov.\n" -"Trenutno uporabljate %(currentUsage)s KB od %(maxStorage)d KB prostora.\n" -"Da preprečite sesutje SQL laba, izbrišite nekaj zavihkov s poizvedbami.\n" -"Poizvedbe lahko ponovno pridobite, če pred brisanjem uporabite funkcijo Shrani.\n" -"Pred tem morate zapreti druga okna SQL laboratorija." +"Vrtanje v podrobnosti je onemogočeno, ker ta grafikon ne združuje " +"podatkov po vrednosti dimenzije." -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -#: superset-frontend/src/features/home/SavedQueries.tsx:258 -msgid "SQL Query" -msgstr "SQL-poizvedba" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "Vrtanje v podrobnosti po vrednosti še ni podprto za grafikon tega tipa." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1244 -msgid "SQL expression" -msgstr "SQL-izraz" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "Z desnim klikom na dimenzijo vrtajte v podrobnosti po tej vrednosti." -#: superset-frontend/src/features/home/EmptyState.tsx:148 -#: superset-frontend/src/features/home/RightMenu.tsx:213 -msgid "SQL query" -msgstr "SQL-poizvedba" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "Vrtanje v podrobnosti: %s" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "SQLAlchemy URI" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" +msgstr "Oblikovanje" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" -msgstr "SSH-gostitelj" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" +msgstr "Oblikovana vrednost" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -msgid "SSH Password" -msgstr "SSH-geslo" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "Za podatkovni set ni vrnjenih vrstic" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" -msgstr "SSH-vrata" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" +msgstr "Ponovno naloži" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" -msgstr "SSH-tunel" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "Kopiraj" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" -msgstr "Parametri nastavitev SSH-tunela" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Kopiraj na odložišče" -#: superset/commands/database/ssh_tunnel/exceptions.py:29 -msgid "SSH Tunnel could not be deleted." -msgstr "SSH-tunela ni mogoče izbrisati." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "Kopirano na odložišče!" -#: superset/commands/database/ssh_tunnel/exceptions.py:42 -msgid "SSH Tunnel could not be updated." -msgstr "SSH-tunela ni mogoče posodobiti." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "Vaš brskalnik ne podpira kopiranja. Uporabite Ctrl / Cmd + C!" -#: superset/commands/database/ssh_tunnel/exceptions.py:34 -msgid "SSH Tunnel not found." -msgstr "SSH-tunela ni najden." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "vsak" -#: superset/commands/database/ssh_tunnel/exceptions.py:38 -msgid "SSH Tunnel parameters are invalid." -msgstr "Parametri SSH-tunela so neveljavni." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "vsak mesec" -#: superset/commands/database/ssh_tunnel/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "SSH-tunel ni omogočen" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "vsak dan v mesecu" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 -msgid "SSL Mode \"require\" will be used." -msgstr "Uporabljen bo SSL-način tipa \"require\"." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "dan v mesecu" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "ZAČETEK (VKLJUČEN)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "vsak dan v tednu" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "KORAK %(stepCurr)s OD %(stepLast)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "dan v tednu" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 -msgid "STRING" -msgstr "STRING" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "vsako uro" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "NED" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" +msgstr "vsako minuto" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 -msgid "Sample Standard Deviation" -msgstr "Standardna deviacija vzorca" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "minuta" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" -msgstr "Varianca vzorca" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "ponovni zagon" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 -msgid "Samples" -msgstr "Vzorci" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Vsak" -#: superset/commands/dataset/exceptions.py:173 -msgid "Samples for dataset could not be retrieved." -msgstr "Vzorcev za podatkovni set ni bilo mogoče pridobiti." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "v" -#: superset/explore/exceptions.py:45 -msgid "Samples for datasource could not be retrieved." -msgstr "Vzorcev za podatkovni vir ni bilo mogoče pridobiti." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "v" -#: superset/viz.py:1409 -msgid "Sankey" -msgstr "Sankey" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "in" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "Sankey grafikon" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "ob" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" -msgstr "Sankey grafikon z zankami" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:242 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 -msgid "Satellite" -msgstr "Satelitski" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "minut" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 -msgid "Satellite Streets" -msgstr "Satelitski z ulicami" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Neveljaven cron izraz" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "Sobota" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Počisti" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 -#: 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: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:502 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:479 -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:329 -#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 -#: superset-frontend/src/features/tags/TagModal.tsx:284 -msgid "Save" -msgstr "Shrani" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Nedelja" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 -msgid "Save & Explore" -msgstr "Shrani & Razišči" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Ponedeljek" -#: superset-frontend/src/explore/components/SaveModal.tsx:464 -msgid "Save & go to dashboard" -msgstr "Shrani in pojdi na nadzorno ploščo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "Torek" -#: superset-frontend/src/explore/components/SaveModal.tsx:348 -msgid "Save (Overwrite)" -msgstr "Shrani (prepiši)" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Sreda" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:288 -msgid "Save as" -msgstr "Shrani kot" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Četrtek" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -msgid "Save as Dataset" -msgstr "Shrani kot podatkovni set" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "Petek" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 -msgid "Save as dataset" -msgstr "Shrani kot podatkovni set" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "Sobota" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 -msgid "Save as new" -msgstr "Shrani kot novo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Januar" -#: superset-frontend/src/explore/components/SaveModal.tsx:356 -msgid "Save as..." -msgstr "Shrani kot ..." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Februar" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "Shrani kot:" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Marec" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -msgid "Save changes" -msgstr "Shrani spremembe" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "April" -#: superset-frontend/src/explore/components/SaveModal.tsx:489 -msgid "Save chart" -msgstr "Shrani grafikon" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Maj" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "Shrani nadzorno ploščo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Junij" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 -msgid "Save dataset" -msgstr "Shrani podatkovni set" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Julij" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "Shranite za to sejo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Avgust" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 -msgid "Save or Overwrite Dataset" -msgstr "Shrani ali prepiši podatkovni set" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "September" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -msgid "Save query" -msgstr "Shrani poizvedbo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Oktober" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 -msgid "Save the query to enable this feature" -msgstr "Za omogočenje te funkcije shranite poizvedbo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "November" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "Shranite poizvedbo kot virtualni podatkovni set" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "December" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "Shranjeno" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "NED" -#: superset/initialization/__init__.py:361 -msgid "Saved Queries" -msgstr "Shranjene poizvedbe" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "PON" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 -msgid "Saved expressions" -msgstr "Shranjeni izrazi" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "TOR" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "Shranjena mera" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "SRE" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/features/tags/TagModal.tsx:342 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 -msgid "Saved queries" -msgstr "Shranjene poizvedbe" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "ČET" -#: superset/commands/query/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "Shranjenih poizvedb ni mogoče izbrisati." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "PET" -#: superset/commands/query/exceptions.py:32 -msgid "Saved query not found." -msgstr "Shranjena poizvedba ni najdena." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "SOB" -#: superset/commands/query/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "Parametri shranjene poizvedbe so neveljavni." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "JAN" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:279 -msgid "Scale and Move" -msgstr "Povečava in premikanje" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "FEB" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Scale only" -msgstr "Samo povečava" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "MAR" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -msgid "Scatter" -msgstr "Raztreseni" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "APR" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:78 -msgid "Scatter Plot" -msgstr "Raztreseni grafikon" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "MAJ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:64 -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two variables." -msgstr "" -"Raztreseni grafikon ima vodoravno os v linearnih enotah, prikazuje podatkovne " -"točke v povezanem redu in prikazuje statistično razmerje med dvema " -"spremenljivkama." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "JUN" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 -#: superset-frontend/src/pages/AlertReportList/index.tsx:278 -msgid "Schedule" -msgstr "Urnik" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "JUL" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 -msgid "Schedule a new email report" -msgstr "Dodaj novo e-poštno poročilo na urnik" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "AVG" -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:280 -msgid "Schedule email report" -msgstr "Dodaj e-poštno poročilo na urnik" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "SEP" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "Urnik poizvedb" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "OKT" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 -msgid "Schedule settings" -msgstr "Nastavitve urnika" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:616 -msgid "Schedule the query periodically" -msgstr "Periodično zaganjaj poizvedbo" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "DEC" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 -msgid "Scheduled" -msgstr "V urniku" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "Napaka pri nalaganju shem" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 -msgid "Scheduled at (UTC)" -msgstr "Izvede se ob (UTC)" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" +msgstr "Izberite ali vnesite ime podatkovne baze" -#: superset/tasks/exceptions.py:24 -msgid "Scheduled task executor not found" -msgstr "Izvajalnik urnika poročanj ni najden" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Osveži seznam shem" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 -#: superset-frontend/src/pages/DatasetList/index.tsx:381 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:475 -#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 -#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 -msgid "Schema" -msgstr "Shema" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" +msgstr "Izberite ali vnesite ime sheme" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 -msgid "Schema cache timeout" -msgstr "Trajanje prepomnilnika sheme" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" +msgstr "Ni najdenih skladnih shem" -#: superset/connectors/sqla/views.py:338 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." msgstr "" -"Shema, ki se uporablja pri nekaterih podatkovnih bazah, kot so Postgres, Redshift " -"in DB2" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 -msgid "Schemas allowed for File upload" -msgstr "Dovoljene sheme za nalaganje datotek" +"Opozorilo! Sprememba podatkovnega seta lahko pokvari grafikon, če " +"metapodatki ne obstajajo." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 -msgid "Scope" -msgstr "Doseg" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" +"Sprememba podatkovnega seta lahko pokvari grafikon, če se le-ta zanaša na" +" stolpce ali metapodatke, ki ne obstajajo v ciljnem podatkovnem nizu" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 -msgid "Scoping" -msgstr "Doseg" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "podatkovni set" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 -msgid "Screenshot width" -msgstr "Širina zaslonske slike" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" +msgstr "Podatkovni set uspešno spremenjen!" -#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 -#, python-format -msgid "Screenshot width must be between %(min)spx and %(max)spx" -msgstr "Širina zaslonske slike mora biti med %(min)spx and %(max)spx" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "Povezava" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 -msgid "Scroll" -msgstr "Drsnik" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" +msgstr "Zamenjaj podatkovni set" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "Pomaknite se do dna, da omogočite prepis sprememb. " +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" +msgstr "Nadaljuj" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset/templates/appbuilder/general/widgets/search.html:41 -msgid "Search" -msgstr "Iskanje" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "Opozorilo!" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Iskanje / Filter" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:366 -msgid "Search Metrics & Columns" -msgstr "Iskanje mer in stolpcev" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Dodaj" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" -msgstr "Išči vse grafikone" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "STRING" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "Poišči vse možnosti filtra" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" +msgstr "NUMERIC" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 -msgid "Search box" -msgstr "Iskalno polje" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" +msgstr "DATETIME" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 -msgid "Search by query text" -msgstr "Išči z besedilom poizvedbe" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" +msgstr "BOOLEAN" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 -msgid "Search columns" -msgstr "Iskanje stolpcev" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Fizičen (tabela ali pogled)" -#: superset-frontend/src/components/Table/index.tsx:221 -msgid "Search in filters" -msgstr "Iskanje v filtrih" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "Virtualen (SQL-poizvedba)" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "Iskanje ..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Tip podatka" -#: superset/db_engine_specs/base.py:99 -msgid "Second" -msgstr "Sekunda" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" +msgstr "Napredni podatkovni tip" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 -msgid "Secondary" -msgstr "Sekundarna" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" +msgstr "Napredni podatkovni tip" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "Secondary Metric" -msgstr "Sekundarna mera" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Oblika datum-časa" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:426 -msgid "Secondary currency format" -msgstr "Oblika sekundarne valute" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Format zapisa časovne značke. Za znakovne nize uporabite " -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 -msgid "Secondary y-axis Bounds" -msgstr "Meje sekundarne y-osi" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Pythonov format zapisa datum-časa" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 -msgid "Secondary y-axis format" -msgstr "Oblika sekundarne y-osi" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr " , ki mora upoštevati " -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 -msgid "Secondary y-axis title" -msgstr "Naslov sekundarne y-osi" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 -#, python-format -msgid "Seconds %s" -msgstr "Sekunde %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" +" standard, ki zagotavlja, de se leksikografsko razvrščanje\n" +" sklada s kronološkim. Če oblika\n" +" časovne značke ni v skladu s standardom ISO 8601,\n" +" boste morali definirati izraz in tip za " +"transformacijo\n" +" znakovnega niza v datum ali časovno značko.\n" +" Trenutno časovni pasovi niso podprti.\n" +" Če je čas shranjen v obliki epohe, dodajte " +"`epoch_s` ali `epoch_ms`.\n" +" Če format ni podan, se uporabijo privzete vrednosti" +" za\n" +" podatkovno bazo oz. tip stolpca s pomočjo dodatnega" +" parametra." -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "Dodatna varnost" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "Certificiral/a" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 -msgid "Secure extra" -msgstr "Dodatna varnost" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Oseba ali skupina, ki je certificirala to mero" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Certificiral/a" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 -#: superset/initialization/__init__.py:391 superset/initialization/__init__.py:430 -msgid "Security" -msgstr "Varnost" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Podrobnosti certifikacije" -#: superset-frontend/src/pages/Profile/index.tsx:82 -msgid "Security & Access" -msgstr "Varnost in Dostopi" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Podrobnosti certifikacije" -#: superset-frontend/src/features/home/EmptyState.tsx:181 -#, python-format -msgid "See all %(tableName)s" -msgstr "Poglej vse %(tableName)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Dimenzija" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 -msgid "See less" -msgstr "Oglejte si manj" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" +msgstr "Privzet datumčas" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 -msgid "See more" -msgstr "Oglejte si več" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Filtriranje" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:459 -msgid "See query details" -msgstr "Podrobnosti poizvedbe" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" +msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:283 -msgid "See table schema" -msgstr "Ogled sheme tabele" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" +msgstr "Izberite lastnike" -#: superset-frontend/src/explore/components/SaveModal.tsx:403 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:140 -msgid "Select" -msgstr "Izberi" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Spremenjeni stolpci: %s" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:133 -#: superset-frontend/src/components/Select/Select.tsx:114 -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 -msgid "Select ..." -msgstr "Izberite ..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Odstranjeni stolpci: %s" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "Izberite način dostave" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "Dodani novi stolpci: %s" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 -msgid "Select Tags" -msgstr "Izberite oznake" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Metapodatki so sinhronizirani" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" -msgstr "Izberite tip vizualizacije" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Prišlo je do napake" -#: superset/views/database/forms.py:422 -msgid "Select a Columnar file to be uploaded to a database." -msgstr "Izberite stolpčno datoteko, ki bo naložena v podatkovno bazo." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Ime stolpca [%s] je podvojeno" -#: superset/views/database/forms.py:290 -msgid "Select a Excel file to be uploaded to a database." -msgstr "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Ime mere [%s] je podvojeno" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" -msgstr "Izberite stolpec" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "Izračunan stolpec [%s] zahteva izraz" -#: superset-frontend/src/explore/components/SaveModal.tsx:397 -msgid "Select a dashboard" -msgstr "Izberite nadzorno ploščo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "Neveljavna koda valute v shranjeni meri" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 -msgid "Select a database table and create dataset" -msgstr "Izberite tabelo podatkovne baze in ustvarite podatkovni set" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Osnovno" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 -msgid "Select a database table." -msgstr "Izberite tabelo podatkovne baze." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "Privzeti URL" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" -msgstr "Izberite podatkovno bazo za povezavo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" +"Privzeti URL za preusmeritev, ko dostopate iz strani s seznamom " +"podatkovnih setov" -#: superset/views/database/forms.py:139 -msgid "Select a database to upload the file to" -msgstr "Izberite podatkovno bazo za nalaganje datoteke" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Samodokončaj filtre" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:847 -msgid "Select a database to write a query" -msgstr "Izberite podatkovno bazo za poizvedbo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Če želite napolniti možnosti za samodokončanje filtrov" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 -msgid "Select a dataset" -msgstr "Izberite podatkovni set" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Predikat za samodokončanje poizvedb" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 -msgid "Select a dimension" -msgstr "Izberite dimenzijo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" +"Ko uporabljate \"Samodokončaj filtre\", lahko s tem izboljšate hitrost " +"pridobivanja rezultatov s poizvedbo. Z uporabo te možnosti dodate " +"predikat (WHERE stavek) k poizvedbi za izbiro različnih vrednosti iz " +"tabele. Običajno je namen omejiti poizvedbo z uporabo filtra za relativni" +" čas na particioniranem ali indeksiranem časovnem polju." -#: superset/views/database/forms.py:110 -msgid "Select a file to be uploaded to the database" -msgstr "Izberite datoteko, ki bo naložena v podatkovno bazo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." +msgstr "" +"Dodatni podatki za tabelo metapodatkov. Trenutno je podprta naslednja " +"oblika zapisa metapodatkov: `{ \"certification\": { \"certified_by\": " +"\"Tim za razvoj\", \"details\": \"Ta tabela je vir resnice.\" }, " +"\"warning_markdown\": \"To je opozorilo.\" }`." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:191 -msgid "Select a metric to display on the right axis" -msgstr "Izberite mero za prikaz na desni osi" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Časovna omejitev predpomnilnika" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 msgid "" -"Select a metric to display. You can use an aggregation function on a column or " -"write custom SQL to create a metric." +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" -"Izberite mero za prikaz. Uporabite lahko agregacijsko funkcijo na stolpcu ali " -"napišete poljuben SQL-izraz za mero." +"Trajanje (v sekundah) do razveljavitve predpomnilnika. Nastavite -1, da " +"onemogočite predpomnjenje." -#: superset/views/database/forms.py:156 -msgid "Select a schema if the database supports this" -msgstr "Izberite shemo (če vrsta podatkovne baze to podpira)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Urni premik" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:201 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 msgid "" -"Select a time grain for the visualization. The grain is the time interval " -"represented by a single point on the chart." +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" -"Izberite časovno granulacijo prikaza. Granulacija predstavlja časovni interval " -"med točkami na grafikonu." +"Število ur, negativno ali pozitivno, za zamik časovnega stolpca. Na ta " +"način je mogoče UTC čas prestaviti na lokalni čas." -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:139 -msgid "Select a visualization type" -msgstr "Izberite tip vizualizacije" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +msgid "Normalize column names" +msgstr "Normiraj imena stolpcev" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" -msgstr "Izberite agregacijske možnosti" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +msgid "Always filter main datetime column" +msgstr "Vedno filtriraj glavni časovni stolpec" -#: superset-frontend/src/components/Table/index.tsx:226 -msgid "Select all data" -msgstr "Izberite vse podatke" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" +"Če so sekundarni časovni stolpci filtrirani, uporabi enak filter tudi za " +"glavni časovni stolpec." -#: superset-frontend/src/components/Table/index.tsx:220 -msgid "Select all items" -msgstr "Izberite vse elemente" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" -msgstr "Izberite poljubne stolpce za pregled metapodatkov" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 -msgid "Select chart" -msgstr "Izberi grafikon" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Kliknite ključavnico, da omogočite spreminjanje." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:46 -#: superset-frontend/src/features/tags/TagModal.tsx:321 -msgid "Select charts" -msgstr "Izberi grafikone" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Kliknite ključavnico, da onemogočite spreminjanje." -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" -msgstr "Izberite barvno shemo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "virtualen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" -msgstr "Izberite stolpec" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Ime podatkovnega seta" -#: superset-frontend/src/components/Table/index.tsx:223 -msgid "Select current page" -msgstr "Izberite trenutno stran" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" +"Ko podajate SQL, se podatkovni vir obnaša kot pogled (view). Superset bo " +"ta zapis uporabil kot podpoizvedbo, pri čemer bo združeval in filtriral " +"na podlagi ustvarjenih starševskih poizvedb." -#: superset-frontend/src/features/tags/TagModal.tsx:307 -msgid "Select dashboards" -msgstr "Izberite nadzorne plošče" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Fizičen" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 -msgid "Select database or type to search databases" -msgstr "Izberite ali vnesite ime podatkovne baze" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" +"Kazalec na fizično tabelo (ali pogled). Grafikon bo vezan na podatkovni " +"set, ki kaže na tukaj referencirano fizično tabelo." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +msgid "Metric Key" +msgstr "Ključ mere" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 msgid "" -"Select databases require additional fields to be completed in the Advanced tab to " -"successfully connect the database. Learn what requirements your databases has " +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -"Izbira podatkovnih baz za uspešno povezavo zahteva izpolnitev dodatnih polj v " -"zavihku Napredno. Kaj zahteva vaša podatkovna baza se naučite " +"To polje se uporablja kot unikaten ID za vključitev mere v grafikon. " +"Uporablja se tudi kot alias v SQL-poizvedbi." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 -msgid "Select dataset source" -msgstr "Izberite podatkovni vir" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "D3 format" -#: superset-frontend/src/components/ImportModal/index.tsx:445 -msgid "Select file" -msgstr "Izberite datoteko" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "Valuta mere" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "Izbirni filter" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +msgid "Select or type currency symbol" +msgstr "Izberite ali vnesite simbol valute" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "Izberite Vtičnik za filter z uporabo AntD" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "Opozorilo" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "Izberi prvo vrednost kot privzeto" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Opcijsko opozorilo za uporabo te mere" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Bodite previdni." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 msgid "" -"Select one or many metrics to display, that will be displayed in the percentages " -"of total. Percentage metrics will be calculated only from data within the row " -"limit. You can use an aggregation function on a column or write custom SQL to " -"create a percentage metric." +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -"Izberite eno ali več mer za prikaz kot procent celote. Procentualna mera bo " -"izračunana samo iz podatkov znotraj omejitve vrstic. Uporabite lahko agregacijsko " -"funkcijo ali napišete poljuben SQL-izraz za procentualno mero." +"Spreminjanje teh nastavitev bo vplivalo na vse grafikone, ki uporabljajo " +"ta podatkovni set, vključno z grafikoni v lasti drugih oseb." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Sinhroniziraj stolpce z virom" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Izračunani stolpci" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 msgid "" -"Select one or many metrics to display. You can use an aggregation function on a " -"column or write custom SQL to create a metric." +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." msgstr "" -"Izberite eno ali več mer za prikaz. Uporabite lahko agregacijsko funkcijo ali " -"napišete poljuben SQL-izraz za mero." +"To polje se uporablja kot unikaten ID za vključitev izračunane dimenzije " +"v grafikon. Uporablja se tudi kot alias v SQL-poizvedbi." -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "Izberite operator" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" -msgstr "Izberite ali vnesite vrednost" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Nastavitve" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1279 -msgid "Select or type currency symbol" -msgstr "Izberite ali vnesite simbol valute" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "Podatkovni set je shranjen" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 -msgid "Select or type dataset name" -msgstr "Izberite ali vnesite naziv podatkovnega seta" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +msgid "Error saving dataset" +msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -msgid "Select owners" -msgstr "Izberite lastnike" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." +msgstr "" +"Tukaj prikazane nastavitve podatkovnega seta\n" +" vplivajo na vse grafikone, ki uporabljajo\n" +" ta podatkovni set. Spreminjanje\n" +" nastavitev lahko nezaželeno vpliva\n" +" na druge grafikone." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" -msgstr "Izberite shranjene mere" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Ali resnično želite shraniti in uporabiti spremembe?" -#: superset-frontend/src/features/tags/TagModal.tsx:333 -msgid "Select saved queries" -msgstr "Izberite shranjene poizvedbe" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Potrdite shranjevanje" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 -msgid "Select schema or type to search schemas" -msgstr "Izberite ali vnesite ime sheme" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "OK" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" -msgstr "Izberite shemo" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Uredi podatkovni set " -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "Izberite začetni in končni datum" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Uporabi zastareli urejevalnik podatkovnega vira" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "Izberite zadevo" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" +"Podatkovni set se upravlja eksterno in ga ni mogoče urediti znotraj " +"Superseta" -#: superset-frontend/src/components/TableSelector/index.tsx:290 -#: superset-frontend/src/components/TableSelector/index.tsx:301 -msgid "Select table or type to search tables" -msgstr "Izberite ali vnesite ime tabele" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "IZBRIŠI" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -msgid "Select the Annotation Layer you would like to use." -msgstr "Izberite sloj z oznakami, ki ga želite uporabiti." +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "izbriši" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this dashboard. " -"Deselecting a chart will exclude it from being filtered when applying cross-" -"filters from any chart on the dashboard. You can select \"All charts\" to apply " -"cross-filters to all charts that use the same dataset or contain the same column " -"name in the dashboard." -msgstr "" -"Izberite grafikone, za katere želite uporabiti medsebojne filtre v tej nadzorni " -"plošči. Odstranitev grafikona bo izključila medsebojno filtriranje s kateregakoli " -"grafikona na nadzorni plošči. Izberete lahko \"Vsi grafikoni\", da uporabite " -"medsebojne filtre za vse grafikone, ki uporabljajo isti podatkovni niz ali " -"vsebujejo stolpec z enakim nazivom." +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Vnesite \"%s\" za potrditev" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 -msgid "" -"Select the charts to which you want to apply cross-filters when interacting with " -"this chart. You can select \"All charts\" to apply filters to all charts that use " -"the same dataset or contain the same column name in the dashboard." -msgstr "" -"Izberite grafikone, za katere želite uporabiti medsebojne filtre, ko kliknete na " -"ta grafikon. Izberete lahko \"Vsi grafikoni\", da uporabite medsebojne filtre za " -"vse grafikone, ki uporabljajo isti podatkovni niz ali vsebujejo stolpec z enakim " -"nazivom." +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" +msgstr "Več" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 -msgid "Select the geojson column" -msgstr "Izberite geojson stolpec" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Kliknite za urejanje" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" -msgstr "Izberite število razdelkov za histogram" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Nimate pravic za spreminjanje tega naslova." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "Izberite numerične stolpce za izris histograma" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "Nobena podatkovna baza ne ustreza iskanju" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format -msgid "" -"Select values in highlighted field(s) in the control panel. Then run the query by " -"clicking on the %s button." -msgstr "" -"Izberite vrednosti v osvetljenih poljih na levi strani kontrolnika in zaženite " -"poizvedbo z gumbom %s." +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "Podatkovnih baz ni na voljo" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 -msgid "Send as CSV" -msgstr "Pošlji kot CSV" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" +msgstr "Upravljajte podatkovne baze" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 -msgid "Send as PNG" -msgstr "Pošlji kot PNG" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" +msgstr "tukaj" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 -msgid "Send as text" -msgstr "Pošlji kot besedilo" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Nepričakovana napaka" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" -msgstr "Pošlji dogodke filtra obdobja na druge grafikone" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "To je lahko sproženo z/s:" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "September" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." +msgstr "Za pomoč se obrnite na lastnika grafikona." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -msgid "Sequential" -msgstr "Sekvenčni" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "Lastnik grafikona: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "Serije" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" +msgstr "" +"%(message)s\n" +"To je lahko sproženo z/s: \n" +"%(issues)s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "Višina serije" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s napaka" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 -msgid "Series Limit Sort By" -msgstr "Razvrščanje omejitev serije" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Manjka podatkovni set" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -msgid "Series Limit Sort Descending" -msgstr "Razvrsti padajoče" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Oglejte si več" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 -msgid "Series Order" -msgstr "Razvrščanje serij" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Oglejte si manj" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -msgid "Series Style" -msgstr "Slog serije" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Kopiraj sporočilo" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:91 -msgid "Series chart type (line, bar etc)" -msgstr "Tip grafikona za posamezno podatkovno serijo (črtni, stolpčni, ...)" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +msgid "Details" +msgstr "Podrobnosti" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:66 -msgid "Series colors" -msgstr "Barve nizov" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" +msgstr "To je bilo sproženo z/s:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:277 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:293 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "Omejitev števila serij" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Ste mislili:" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -msgid "Series type" -msgstr "Tip serije" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s namesto \"%(undefinedParameter)s?\"" + +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Napaka parametra" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgstr "" +"Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen " +"na %s sekundo." + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgstr "" +"Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na " +"%s sekundo." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:323 -msgid "Server Page Length" -msgstr "Dolžina strani strežnika" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "" +"%(subtitle)s\n" +"To je lahko sproženo z/s: \n" +" %(issue)s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:300 -msgid "Server pagination" -msgstr "Paginacija na strani strežnika" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Napaka pretečenega časa" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" -msgstr "Servisni račun" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Kliknite za priljubljeno/nepriljubljeno" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:384 -msgid "Set auto-refresh interval" -msgstr "Nastavi interval samodejnega osveževanja" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Vsebina celice" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:370 -msgid "Set filter mapping" -msgstr "Nastavi shemo filtrov" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." +msgstr "Skrij geslo." -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:222 -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:226 -msgid "Set up an email report" -msgstr "Nastavite e-poštno poročilo" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." +msgstr "Prikaži geslo." -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:195 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of the " -"hierarchy." +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " msgstr "" -"Nastavi hierarhične nivoje grafikona. Vsak nivo je\n" -"\tpredstavljen z enim obročem, pri čemer je notranji krog na vrhu hierarhije." +"Gonilnik podatkovne baze za uvoz ni nameščen. Za navodila pojdite na " +"dokumentacijo Superseta: " -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1509 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:440 -msgid "Settings" -msgstr "Nastavitve" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "PREPIŠI" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:127 -msgid "Settings for time series" -msgstr "Nastavitve časovne vrste" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" +msgstr "Gesla podatkovne baze" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:312 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 -#: superset-frontend/src/features/home/SavedQueries.tsx:208 -msgid "Share" -msgstr "Deljenje" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" +msgstr "%s GESLO" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:477 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 -msgid "Share chart by email" -msgstr "Deli grafikon po e-pošti" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" +msgstr "%s GESLO ZA SSH TUNEL" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -msgid "Share permalink by email" -msgstr "Deli povezavo po e-pošti" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" +msgstr "%s ZASEBNI KLJUČ ZA SSH TUNEL" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1169 -msgid "Shared query" -msgstr "Deljene poizvedbe" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "%s GESLO ZASEBNEGA KLJUČA ZA SSH TUNEL" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -msgid "Shared query fields" -msgstr "Polja deljenih poizvedb" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Prepiši" -#: superset/views/database/forms.py:309 -msgid "Sheet Name" -msgstr "Ime zvezka" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Uvozi" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 -msgid "Shift + Click to sort by multiple columns" -msgstr "Shift + klik za razvrščanje po več stolpcih" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Uvozi %s" -#: superset/commands/annotation_layer/annotation/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "Kratek opis mora biti za ta sloj unikaten" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" +msgstr "Izberite datoteko" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify Fourier order " -"of seasonality." -msgstr "" -"Če želite dnevno sezonskost. Celo število določa Fourier-jev red sezonskosti." +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Zadnja posodobitev %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify Fourier order " -"of seasonality." -msgstr "" -"Če želite tedensko sezonskost. Celo število določa Fourier-jev red sezonskosti." +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "Razvrsti" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify Fourier order " -"of seasonality." -msgstr "" -"Če želite letno sezonskost. Celo število določa Fourier-jev red sezonskosti." +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "+ %s več" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" -msgstr "Prikaži" +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "Izbranih: %s" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" -msgstr "Prikaži mehurčke" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Počisti izbor" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 -msgid "Show CREATE VIEW statement" -msgstr "Prikaži CREATE VIEW stavek" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" +msgstr "Dodaj oznako" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "Prikaži CSS-predlogo" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "Noben rezultat ne ustreza vašim kriterijem" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "Prikaži grafikon" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "Za prikaz rezultatov poskusite z drugačnimi kriteriji." -#: superset/connectors/sqla/views.py:71 -msgid "Show Column" -msgstr "Prikaži stolpec" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" +msgstr "počisti vse filtre" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "Prikaži nadzorno ploščo" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Ni podatkov" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "Prikaži podatkovno bazo" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s od %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:150 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:95 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:72 -msgid "Show Labels" -msgstr "Prikaži oznake" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" +msgstr "Začetni datum" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:470 -msgid "Show Less..." -msgstr "Prikaži manj..." +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" +msgstr "Končni datum" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "Prikaži dnevnik" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "Vnesite vrednost" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 -msgid "Show Markers" -msgstr "Prikaži markerje" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "Filter" -#: superset/connectors/sqla/views.py:206 -msgid "Show Metric" -msgstr "Prikaži mero" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "Izberite ali vnesite vrednost" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" -msgstr "Prikaži imena mer" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Zadnja sprememba" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 -msgid "Show Range Filter" -msgstr "Prikaži filter obdobja" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Spremenil" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "Prikaži tabelo" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Ustvaril" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:78 -msgid "Show Timestamp" -msgstr "Prikaži časovno značko" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Ustvarjeno" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:190 -msgid "Show Tooltip Labels" -msgstr "Prikaži oznake na opisu orodja" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "Preklapljanje funkcionalnosti menijev" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:101 -msgid "Show Total" -msgstr "Prikaži vsoto" +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Izberite ..." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:90 -msgid "Show Trend Line" -msgstr "Prikaži trendno črto" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" +msgstr "Filtriraj meni" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:84 -msgid "Show Upper Labels" -msgstr "Prikaži zgornje oznake" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" +msgstr "Ponastavi" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 -msgid "Show Value" -msgstr "Prikaži vrednost" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" +msgstr "Brez filtrov" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:327 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 -msgid "Show Values" -msgstr "Prikaži vrednosti" +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" +msgstr "Izberite vse elemente" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "Prikaži Y-os" +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" +msgstr "Iskanje v filtrih" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 -msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if set or min/" -"max values in the data otherwise." -msgstr "" -"Prikaz Y-osi na hitrem grafikonu. Če je nastavljena vrednost min/max, pokaže to, " -"drugače pa glede na podatke." +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" +msgstr "Izberite trenutno stran" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 -msgid "Show all columns" -msgstr "Prikaži vse stolpce" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" +msgstr "Invertiraj trenutno stran" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:433 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:470 -msgid "Show all..." -msgstr "Prikaži vse..." +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" +msgstr "Počisti vse podatke" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:204 -msgid "Show axis line ticks" -msgstr "Prikaži oznake na X-osi" +#: superset-frontend/src/components/Table/index.tsx:226 +msgid "Select all data" +msgstr "Izberite vse podatke" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:113 -msgid "Show cell bars" -msgstr "Prikaži grafe v celicah" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" +msgstr "Razširi vrstico" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:402 -msgid "Show chart description" -msgstr "Prikaži opis grafikona" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" +msgstr "Skrij vrstico" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Show columns subtotal" -msgstr "Prikaži delne vsote stolpcev" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" +msgstr "Kliknite za padajoče razvrščanje" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Show columns total" -msgstr "Prikaži vsoto stolpcev" +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" +msgstr "Kliknite za naraščajoče razvrščanje" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 -msgid "Show data points as circle markers on the lines" -msgstr "Prikaži točke kot krožne markerje na krivuljah" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "Kliknite za prekinitev razvrščanja" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:371 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:373 -msgid "Show empty columns" -msgstr "Prikaži prazne stolpce" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" +msgstr "Seznam posodobljen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 -msgid "" -"Show hierarchical relationships of data, with the value represented by area, " -"showing proportion and contribution to the whole." -msgstr "" -"Prikaže hierarhična razmerja podatkov, pri čemer je vrednost ponazorjena s " -"ploščino, ki predstavlja delež oz. prispevek k celoti." +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "Napaka pri nalaganju tabel" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "Prikaži opis orodja" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Ogled sheme tabele" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 -msgid "Show label" -msgstr "Prikaži oznako" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" +msgstr "Izberite ali vnesite ime tabele" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:87 -msgid "Show labels when the node has children." -msgstr "Prikaži oznake, ko ima vozlišče podrejene elemente." +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Osveži seznam tabel" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 -msgid "Show legend" -msgstr "Prikaži legendo" +#: superset-frontend/src/components/Tags/utils.tsx:72 +msgid "You do not have permission to read tags" +msgstr "Nimate dovoljenja za branje oznak" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 -msgid "Show less columns" -msgstr "Prikaži manj stolpcev" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Izbira časovnega pasa" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:433 -msgid "Show less..." -msgstr "Prikaži manj..." +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" +msgstr "Shranjevanje dosega medsebojnega filtra ni uspelo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 -msgid "Show minor ticks on axes." -msgstr "Na oseh prikaži pomožne oznake." +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" +"Za to komponento ni dovolj prostora. Poskusite zmanjšati širino ali pa " +"povečati širino cilja." -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "Prikaži samo moje grafikone" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "Najvišjega zavihka ni mogoče premakniti v gnezdene zavihke" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 -msgid "Show password." -msgstr "Prikaži geslo." +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Ta grafikon je bil prestavljen v drug doseg filtrov." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:313 -msgid "Show percentage" -msgstr "Prikaži procente" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "" +"Pri pridobivanju statusa \"priljubljeno\" za to nadzorno ploščo je prišlo" +" do težave." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:177 -msgid "Show pointer" -msgstr "Prikaži kazalec" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Pri uvrščanju nadzorne plošče med priljubljene je prišlo do težave." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:243 -msgid "Show progress" -msgstr "Prikaži območje" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" +msgstr "Nadzorna plošča je sedaj objavljena" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show rows subtotal" -msgstr "Prikaži delne vsote vrstic" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "Nadzorna plošča je sedaj skrita" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "Prikaži vsoto vrstic" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "Nimate dovoljenj za urejanje te nadzorne plošče." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 -msgid "Show series values on the chart" -msgstr "Na grafikonu prikaži vrednosti serij" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" +msgstr "[ neimenovana nadzorna plošča ]" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:216 -msgid "Show split lines" -msgstr "Prikaži razdelitvene črte" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Nadzorna plošča je bila uspešno shranjena." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 -msgid "Show the value on top of the bar" -msgstr "Prikaži vrednosti na vrhu stolpcev" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" +msgstr "Prišlo je do neznane napake" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "Prišlo je do napake pri shranjevanju nadzorne plošče: %s" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "Prikaži časovne stolpce" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "Nimate dovoljenja za urejanje te nadzorne plošče" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "Prikaži izbirnik časovne granulacije" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." +msgstr "Potrdite vrednosti za prepis." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:371 +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format msgid "" -"Show total aggregations of selected metrics. Note that row limit does not apply " -"to the result." +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -"Prikaži skupno agregacijo izbrane mere. Omejitev števila vrstic ne vpliva na " -"rezultat." +"Uporabili ste celotno količino %(historyLength)s razveljavitev in ne " +"boste mogli več povrniti nadaljnjih dejanj. Količino lahko resetirate, če" +" shranite stanje." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 -msgid "Show totals" -msgstr "Prikaži vsote" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Vseh shranjenih grafikonov ni bilo mogoče pridobiti" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to call " -"attention to a KPI or the one thing you want your audience to focus on." -msgstr "" -"Prikaže eno vrednost. Velika številka je primerna za poudarek KPI-ja ali " -"vrednosti, na katero želite usmeriti pozornost." +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "Prišlo je do napake pri pridobivanju shranjenih grafikonov: " -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Showcases a single number accompanied by a simple line chart, to call attention " -"to an important metric along with its change over time or other dimension." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -"Prikaže eno vrednost skupaj s preprostim črtnim grafikonom, za poudarek pomembne " -"mere skupaj z njeno časovno spremembo." +"Na tem mestu izbrana barvna shema bo nadomestila barve posameznih " +"grafikonov v tej nadzorni plošči" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic chart is " -"useful for visualizing drop-off between stages in a pipeline or lifecycle." -msgstr "" -"Prikaže kako se mera spreminja, ko lijak napreduje. Standardni grafikon za prikaz " -"sprememb med nivoji v procesu ali življenjskem ciklu." +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "Imate neshranjene spremembe." -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. The " -"value and corresponding thickness can be different for each side." -msgstr "" -"Prikaže potek ali povezave med kategorijami z debelino tetiv. Vrednost in " -"debelina sta lahko različni za vsako stran." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "Povlecite in spustite elemente in grafikone na nadzorno ploščo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 msgid "" -"Showcases the progress of a single metric against a given target. The higher the " -"fill, the closer the metric is to the target." -msgstr "" -"Prikaže napredovanje posamezne mere glede na cilj. Večja napolnjenost, pomeni, da " -"je mera bližje cilju." +"You can create a new chart or use existing ones from the panel on the " +"right" +msgstr "Ustvarite lahko nove grafikone ali uporabite obstoječe iz panela na desni" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:409 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:446 -#, python-format -msgid "Showing %s of %s" -msgstr "Prikazanih %s od %s" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Ustvarite nov grafikon" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 -msgid "Shows a list of all series available at that point in time" -msgstr "Prikaže seznam vseh razpoložljivih podatkovnih serij za istočasno točko" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" +msgstr "Povlecite in spustite elemente na zavihek" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Shows or hides markers for the time series" -msgstr "Prikaže ali skrije markerje časovne serije" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "Na zavihku ni dodanih elementov" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "Stopnja značilnosti" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "Elemente lahko dodate v načinu urejanja." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "Preprosto" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" +msgstr "Uredi nadzorno ploščo" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "" +"S to komponento ni povezana nobena definicija grafikona. Ali je bila " +"izbrisana?" + +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "Izbrišite ta okvir in shranite za odpravo tega sporočila." -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "Preproste ad-hoc mere za ta podatkovni set niso omogočene" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" +msgstr "Interval osveževanja shranjen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Single" -msgstr "Posamezno" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Interval osveževanja" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" -msgstr "Ena mera" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Frekvenca osveževanja" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1122 -msgid "Single Value" -msgstr "Ena vrednost" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Ali želite nadaljevati?" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" -msgstr "Ena vrednost" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Shranite za to sejo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1139 -msgid "Single value type" -msgstr "Tip z eno vrednostjo" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Izbrati morate ime nove nadzorne plošče" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:263 -msgid "Size of edge symbols" -msgstr "Velikost simbola povezave" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Shrani nadzorno ploščo" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:153 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:95 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:95 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:147 -msgid "Size of marker. Also applies to forecast observations." -msgstr "Velikost markerja. Upošteva se tudi za napovedi." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Prepiši nadzorno ploščo [%s]" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "Velikosti vozil" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Shrani kot:" -#: superset/views/database/forms.py:188 -msgid "Skip Blank Lines" -msgstr "Izpusti prazne vrstice" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[ime nadzorne plošče]" -#: superset/views/database/forms.py:185 -msgid "Skip Initial Space" -msgstr "Izpusti začetni presledek" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "kopiraj (podvoji) tudi grafikone" -#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 -msgid "Skip Rows" -msgstr "Izpusti vrstice" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" +msgstr "tip vizualizacije" -#: superset/views/database/forms.py:189 -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "Raje izpusti prazne vrstice, kot pa da so prepoznane kot NaN vrednosti" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "nedavno" -#: superset/views/database/forms.py:185 -msgid "Skip spaces after delimiter" -msgstr "Izpusti presledke za ločilnikom" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Ustvarite nov grafikon" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Filtriraj grafikone" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "Majhno" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +msgid "Filter charts" +msgstr "Filtriraj grafikone" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:162 -msgid "Small number format" -msgstr "Oblika zapisa majhnih števil" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "Razvrščanje po %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:78 -msgid "Smooth Line" -msgstr "Zglajena črta" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" +msgstr "Prikaži samo moje grafikone" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:64 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard edges, " -"Smooth-line sometimes looks smarter and more professional." +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -"Zglajeni črtni grafikon je izpeljanka črtnega grafikona, ki zgladi ostre robove " -"krivulje." +"Lahko izberete prikaz vseh grafikonov, do katerih imate dostop ali pa " +"samo tistih v vaši lasti.\n" +" Izbira filtrov bo shranjena in bo ostala aktivna, dokler je" +" ne spremenite." -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 -msgid "Solid" -msgstr "Zapolnjen" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Dodano" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "Nekatere vloge ne obstajajo" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +msgid "Unknown type" +msgstr "Neznan tip" -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 -msgid "Something went wrong." -msgstr "Nekaj je šlo narobe." +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Tip vizualizacije" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:923 -#, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "Pri pridobivanju informacij o podatkovni bazi je prišlo do napake: %s" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Podatkovni set" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "Prišlo je do napake pri pridobivanju shranjenih grafikonov: " +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Superset grafikon" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "Prišlo je do napake" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Preizkusite ta grafikon v nadzorni plošči:" -#: superset-frontend/src/components/Chart/chartAction.js:660 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -msgid "Sorry, an error occurred" -msgstr "Prišlo je do napake" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "Postavitev elementov" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 -msgid "Sorry, an unknown error occurred" -msgstr "Prišlo je do neznane napake" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Naloži CSS predlogo" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 -msgid "Sorry, an unknown error occurred." -msgstr "Prišlo je do neznane napake." +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "CSS urejevalnik v živo" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "Nekaj je šlo narobe. Vgrajevanja ni mogoče deaktivirati." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "Skrij vsebino zavihka" -#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:25 -#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:25 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 -msgid "Sorry, something went wrong. Try again later." -msgstr "Nekaj je šlo narobe. Poskusite ponovno kasneje." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" +msgstr "V nadzorni plošči ni grafikonov" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "Ni podatkov" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" +msgstr "" +"Za nastavitve nadzorne plošče in dodajanje grafikonov pojdite v način " +"urejanja" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 -#, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Prišlo je do napake pri shranjevanju %s: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "Spremembe shranjene." -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "Prišlo je do napake pri shranjevanju nadzorne plošče: %s" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" +msgstr "Onemogočite vgrajevanje?" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/hooks.ts:683 -msgid "Sorry, your browser does not support copying." -msgstr "Vaš brskalnik ne podpira kopiranja." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." +msgstr "To bo odstranilo trenutno konfiguracijo za vgrajevanje." -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Vaš brskalnik ne podpira kopiranja. Uporabite Ctrl / Cmd + C!" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "Vgrajevanje deaktivirano." -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:227 -msgid "Sort" -msgstr "Razvrsti" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "Nekaj je šlo narobe. Vgrajevanja ni mogoče deaktivirati." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" -msgstr "Uredi stolpce" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." +msgstr "Nekaj je šlo narobe. Poskusite ponovno kasneje." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:262 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" -msgstr "Razvrsti padajoče" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" +msgstr "" +"Nadzorna plošča je pripravljena za vgradnjo. V svoji aplikaciji v SDK " +"vključite naslednji ID:" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -msgid "Sort Metric" -msgstr "Mera za razvrščanje" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "Nastavite nadzorno ploščo za vgradnjo v zunanjo spletno aplikacijo." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 -msgid "Sort Series Ascending" -msgstr "Razvrsti serije naraščajoče" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "Za nadaljnja navodila se posvetujte z" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 -msgid "Sort Series By" -msgstr "Razvrsti serije po" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." +msgstr "Dokumentacija SDK za vgrajevanje." -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort X Axis" -msgstr "Razvrsti X-os" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "Dovoljene domene (ločeno z vejico)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -msgid "Sort Y Axis" -msgstr "Razvrsti Y-os" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." +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/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "Razvrsti naraščajoče" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" +msgstr "Deaktiviraj" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." -msgstr "Uredi stolpce po x-oznakah." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" +msgstr "Shrani spremembe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:198 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "Razvrščanje po" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" +msgstr "Omogoči vgrajevanje" + +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" +msgstr "Vgradi" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 #, python-format -msgid "Sort by %s" -msgstr "Razvrščanje po %s" +msgid "Applied cross-filters (%d)" +msgstr "Uporabljeni medsebojni filtri (%d)" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" -msgstr "Mera za razvrščanje" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" +msgstr "Uporabljeni filtri (%d)" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 -msgid "Sort columns alphabetically" -msgstr "Razvrsti stolpce po abecedi" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" +"Nadzorna plošča se trenutno samodejno osvežuje. Naslednja samodejna " +"osvežitev bo čez %s." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 -msgid "Sort columns by" -msgstr "Razvrsti stolpce" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "Vaša nadzorna plošča je prevelika. Pred shranjevanjem jo zmanjšajte." -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1077 -msgid "Sort descending" -msgstr "Razvrsti padajoče" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" +msgstr "Dodajte naziv nadzorne plošče" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1055 -msgid "Sort filter values" -msgstr "Razvrsti vrednosti filtra" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" +msgstr "Naziv nadzorne plošče" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1099 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "Mera za razvrščanje" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" +msgstr "Razveljavi dejanje" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 -msgid "Sort rows by" -msgstr "Razvrsti vrstice" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "Ponovno uveljavi dejanje" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 -msgid "Sort series in ascending order" -msgstr "Razvrsti serije naraščajoče" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" +msgstr "Zavrzi" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1069 -msgid "Sort type" -msgstr "Način razvrščanja" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Uredi nadzorno ploščo" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1421 -msgid "Source" -msgstr "Izvor" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Pri pridobivanju CSS predlog je prišlo do napake" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" -msgstr "Izhodišče/Cilj" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" +msgstr "Osveževanje grafikonov" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "Izvorni SQL" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Superset nadzorna plošča" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "Source category" -msgstr "Kategorija izvora" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Preizkusite to nadzorno ploščo: " -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 -msgid "Sparkline" -msgstr "Hitri grafikon" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Osveži nadzorno ploščo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1023 -msgid "Spatial" -msgstr "Prostorski" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "Izhod iz celozaslonskega načina" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "Fiksen Datum/Čas" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "Vklopi celozaslonski način" -#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 -msgid "Specify a schema (if database flavor supports this)." -msgstr "Podajte shemo (če vrsta podatkovne baze to podpira)" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Uredi lastnosti" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:814 -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "Podajte naziv sheme za CREATE TABLE AS: public" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Uredi CSS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:813 -msgid "Specify name to CREATE VIEW AS schema in: public" -msgstr "Podajte naziv sheme za CREATE VIEW AS: public" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "Prenesi" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 -msgid "" -"Specify the database version. This is used with Presto for query cost estimation, " -"and Dremio for syntax changes, among others." -msgstr "" -"Podajte verzijo podatkovne baze. Uporablja se s Presto za potrebe ocenjevanja " -"potratnosti poizvedbe in z Dremio za sprememba sintakse." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +msgid "Export to PDF" +msgstr "Izvozi v PDF" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:228 -msgid "Split number" -msgstr "Število razdelitev" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +msgid "Download as Image" +msgstr "Izvozi kot sliko" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 -msgid "Square kilometers" -msgstr "Kvadratni kilometri" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Deljenje" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 -msgid "Square meters" -msgstr "Kvadratni metri" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" +msgstr "Kopiraj povezavo v odložišče" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 -msgid "Square miles" -msgstr "Kvadratne milje" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "Deli povezavo po e-pošti" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 -msgid "Stack" -msgstr "Naloži" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +msgid "Embed dashboard" +msgstr "Vgradi nadzorno ploščo" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" -msgstr "Izpis napake:" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" +msgstr "Upravljaj e-poštno poročilo" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 -msgid "Stack series" -msgstr "Nalagaj serije" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Nastavi shemo filtrov" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 -msgid "Stack series on top of each other" -msgstr "Nalagaj serije eno na drugo" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Nastavi interval samodejnega osveževanja" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -msgid "Stacked" -msgstr "Naložen" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" +msgstr "Potrdite prepis" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 -msgid "Stacked Bars" -msgstr "Naloženi stolpci" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " +msgstr "Pomaknite se do dna, da omogočite prepis sprememb. " -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "Slog nalaganja" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" +msgstr "Da, prepiši spremembe" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" -msgstr "Naložen slog" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Ali ste prepričani, da želite prepisati naslednje vrednosti?" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:82 -msgid "Standard time series" -msgstr "Standardna časovna vrsta" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" +msgstr "Zadnja posodobitev %s, %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "Začetek" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Uporabi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 -msgid "Start (Longitude, Latitude): " -msgstr "Začetek (Zemlj. dolžina, širina): " +#: 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:66 +msgid "Error" +msgstr "Napaka" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 -msgid "Start Longitude & Latitude" -msgstr "Začetna Dolž. in Širina" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "Zahtevana je veljavna barvna shema" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" -msgstr "Začetek pregleda" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "JSON-metapodatki niso veljavni!" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Start angle" -msgstr "Začetni kot" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" +msgstr "Lastnosti nadzorne plošče posodobljene" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 -msgid "Start at (UTC)" -msgstr "Zažene se ob (UTC)" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Nadzorna plošča je bila shranjena" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 -msgid "Start date" -msgstr "Začetni datum" +#: 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" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "Začetni datum je vključen v časovno obdobje" +#: 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." +msgstr "" +"\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo." +" Iskanje je možno po imenu ali uporabniškem imenu." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:102 -msgid "Start y-axis at 0" -msgstr "Začni y-os z 0" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Barve" + +#: 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 " +"defined, regular access permissions apply." +msgstr "" +"\"Vloge\" je seznam, ki definira dostop do nadzorne plošče. Dodelitev " +"vloge za dostop do nadzorne plošče bo obšlo preverjanje na nivoju " +"podatkovnega seta. Če vloga ni definirana, bodo veljavna običajna pravila" +" dostopov." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:105 -msgid "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data." +#: 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:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" -"Začni y-os z nič. Ne izberite, če želite, da se y-os začne z najmanjšo vrednostjo " -"podatkov." +"Nadzorna plošča se upravlja eksterno in je ni mogoče urediti znotraj " +"Superseta" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 -msgid "Started" -msgstr "Začetek" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Osnovne informacije" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 -msgid "State" -msgstr "Status" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "URL slug" -#: superset/sql_lab.py:516 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" -msgstr "Izraz %(statement_num)s od %(statement_count)s" +#: 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" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 -msgid "Statistical" -msgstr "Statistično" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "Certifikacija" -#: superset-frontend/src/pages/AlertReportList/index.tsx:473 -#: superset-frontend/src/pages/DashboardList/index.tsx:323 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -msgid "Status" -msgstr "Status" +#: 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." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:89 -msgid "Step - end" -msgstr "Stopnica - konec" +#: 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 "Prikaz dodatnih podrobnosti za certifikacijo." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 -msgid "Step - middle" -msgstr "Stopnica - sredina" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." +msgstr "Seznam oznak, ki so povezane s tem grafikonom." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Step - start" -msgstr "Stopnica - začetek" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "JSON-metapodatki" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -msgid "Step type" -msgstr "Stopnični tip" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." +msgstr "NE SPREMINJAJTE ključa \"filter_scopes\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:69 -msgid "Stepped Line" -msgstr "Stopničasta črta" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "Namesto tega uporabite meni: \"%(menuName)s\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:55 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart but with " -"the line forming a series of steps between data points. A step chart can be " -"useful when you want to show the changes that occur at irregular intervals." +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." msgstr "" -"Stopničasti grafikon je izpeljanka črtnega grafikona, pri čemer krivuljo tvorijo " -"stopnice med posameznimi točkami. Koristen je za prikaz sprememb na posameznih " -"intervalih." - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "Ustavi" - -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 -#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 -msgid "Stop query" -msgstr "Ustavi poizvedbo" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + e)" -msgstr "Ustavi (Ctrl + e)" - -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 -msgid "Stop running (Ctrl + x)" -msgstr "Ustavi (Ctrl + x)" +"Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih " +"plošč. Kliknite tukaj za njeno objavo." -#: superset/commands/database/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "Nevarna povezava s podatkovno bazo je bila ustavljena" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" +"Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih " +"plošč. Uvrstite jo med priljubljene, da jo boste videli tam, ali pa " +"uporabite URL za neposredni dostop." -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 -msgid "Stream" -msgstr "Tok" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Nadzorna plošča je objavljena. Kliknite, da jo uvrstite med osnutke." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Streets" -msgstr "Ulice" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Osnutek" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:270 -msgid "Strength to pull the graph toward center" -msgstr "Sila privlačnosti med grafikonom in središčem" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Sloj z oznakami se še vedno nalaga." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" -msgstr "Raztegnjen slog" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Eden ali več slojev z oznakami se ni naložil." -#: superset/views/database/forms.py:310 -msgid "Strings used for sheet names (default is the first sheet)." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -"Znakovni nizi uporabljeni za imena preglednic (privzeto je prva preglednica)." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 -msgid "Stroke Color" -msgstr "Barva obrobe" +"Ta grafikon medsebojno filtrira grafikone, ki imajo podatkovne sete s " +"stolpci z istim nazivom." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:116 -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 -msgid "Stroke Width" -msgstr "Debelina obrobe" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "Podatki osveženi" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 -msgid "Stroked" -msgstr "Obrobljeno" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "Predpomnjeno %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 -msgid "Structural" -msgstr "Strukturni" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "Pridobljeno %s" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 -msgid "Style" -msgstr "Slog" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "Poizvedba %s: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:270 -msgid "Style the ends of the progress bar with a round cap" -msgstr "Zaobljena oblika koncev območja" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Osveži" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" -msgstr "Poddomena" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" +msgstr "Skrij opis grafikona" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" -msgstr "Podnaslov" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" +msgstr "Prikaži opis grafikona" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "Velikost pisave podnaslova" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" +msgstr "Doseg medsebojnih filtrov" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" -msgstr "Pošlji" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Ogled poizvedbe" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:160 superset/charts/post_processing.py:177 -msgid "Subtotal" -msgstr "Delna vsota" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" +msgstr "Ogled kot tabela" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 -#: superset-frontend/src/pages/AlertReportList/index.tsx:64 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 -msgid "Success" -msgstr "Uspelo" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, python-format +msgid "Chart Data: %s" +msgstr "Podatki grafikona: %s" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 -msgid "Successfully changed dataset!" -msgstr "Podatkovni set uspešno spremenjen!" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Deli grafikon po e-pošti" -#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 -msgid "Suffix" -msgstr "Pripona" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " +msgstr "Preizkusite ta grafikon: " -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:69 -msgid "Suffix to apply after the percentage display" -msgstr "Pripona za prikaz procenta" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" +msgstr "Izvozi v .CSV" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" -msgstr "Vsota" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" +msgstr "Izvozi v Excel" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "Vsota kot delež stolpcev" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" +msgstr "Izvozi v celoten .CSV" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" -msgstr "Vsota kot delež vrstic" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +msgid "Export to full Excel" +msgstr "Izvozi v celoten Excel" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" -msgstr "Vsota kot delež celote" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Izvozi kot sliko" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:92 -msgid "Sum of values over specified period" -msgstr "Vsota vrednosti v dani periodi" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." +msgstr "Nekaj je šlo narobe." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 -msgid "Sum values" -msgstr "Vsote" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Iskanje ..." -#: superset/viz.py:1360 -msgid "Sunburst" -msgstr "Večnivojski tortni grafikon" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Noben filter ni izbran." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "Večnivojski tortni grafikon" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Urejanje enega filtra:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 -msgid "Sunburst Chart v2" -msgstr "Večnivojski tortni grafikon v2" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Skupinsko urejanje %d filtrov:" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "Nedelja" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Nastavi doseg filtrov" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 -msgid "Superset Chart" -msgstr "Superset grafikon" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "V nadzorni plošči ni filtrov." -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "Dokumentacija SDK za vgrajevanje." +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Razširi vse" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 -msgid "Superset chart" -msgstr "Superset grafikon" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Skrči vse" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:215 -msgid "Superset dashboard" -msgstr "Superset nadzorna plošča" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" +msgstr "Pri odpiranju Raziskovalca je prišlo do napake" -#: superset/errors.py:113 -msgid "Superset encountered an error while running a command." -msgstr "Superset je naletel na napako pri izvajanju ukaza." +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" +msgstr "Prazen stolpec" -#: superset/errors.py:114 -msgid "Superset encountered an unexpected error." -msgstr "Superset je naletel na nepričakovano napako." +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Markdown komponenta ima napako." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:985 -msgid "Supported databases" -msgstr "Podprte podatkovne baze" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "Markdown komponenta ima napako. Povrnite nedavne spremembe." -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "Rezultati anket" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "Prazna vrstica" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 -msgid "Swap dataset" -msgstr "Zamenjaj podatkovni set" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" +msgstr "Lahko" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:264 -msgid "Swap rows and columns" -msgstr "Zamenjaj vrstice in stolpce" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" +msgstr "ustvarite nov grafikon" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:54 -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, scatter, and " -"bar charts. This viz type has many customization options as well." -msgstr "" -"Univerzalni grafikon za vizualizacijo podatkov. Izbirajte med stopničastimi, " -"črtnimi, raztresenimi in stolpčnimi grafikoni. Grafikon ima širok nabor " -"prilagoditev." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" +msgstr "ali uporabite obstoječe iz panela na desni" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:57 -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as well." -msgstr "" -"Univerzalni grafikon za prikaz časovnih vrst. Izbirajte med stopničastimi, " -"črtnimi, raztresenimi in stolpčnimi grafikoni. Grafikon ima širok nabor " -"prilagoditev." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" +msgstr "Elemente lahko dodate v" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 -msgid "Symbol" -msgstr "Simbol" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" +msgstr "načinu urejanja" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:127 -msgid "Symbol of two ends of edge line" -msgstr "Simbol za konca povezave" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Ali izbrišem zavihek nadzorne plošče?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:257 -msgid "Symbol size" -msgstr "Velikost simbola" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" +"Izbris zavihka bo odstranil vso vsebino v njem. Še vedno boste lahko " +"razveljavili dejanje z" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1455 -msgid "Sync columns from source" -msgstr "Sinhroniziraj stolpce z virom" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "razveljavitev" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "Sintaksa" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "gumb (cmd + z) dokler ne shranite sprememb." -#: superset/db_engine_specs/ocient.py:280 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" -msgstr "" -"Napaka v sintaksi: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "PREKINI" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:331 -msgid "TABLES" -msgstr "TABELE" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Ločilnik" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:285 -msgid "TEMPORAL X-AXIS" -msgstr "ČASOVNA X-OS" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Glava" -#: superset-frontend/src/explore/constants.ts:89 -msgid "TEMPORAL_RANGE" -msgstr "ČASOVNI_OBSEG" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" +msgstr "Besedilo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "ČET" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Zavihki" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "TOR" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "ozadje" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 -msgid "Tab name" -msgstr "Naslov zavihka" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Predogled" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "Naslov zavihka" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Nekaj je šlo narobe. Poskusite ponovno kasneje." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:285 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "Tabela" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" +msgstr "Neznana vrednost" -#: superset/views/core.py:787 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "Tabela %(table)s ni bila najdena v podatkovni bazi %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" +msgstr "Dodaj/uredi filter" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 -msgid "Table Exists" -msgstr "Tabela obstaja" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." +msgstr "Trenutno na nadzorno ploščo še ni dodanih filtrov." -#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 -#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 -msgid "Table Name" -msgstr "Ime tabele" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" +msgstr "Trenutno ni dodanih globalnih filtrov" -#: superset/commands/dataset/exceptions.py:130 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your database " -"connection, schema, and table name" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" -"Tabele [%(table_name)s] ni mogoče najti. Preverite povezavo, shemo in ime " -"podatkovne baze" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 -msgid "Table cache timeout" -msgstr "Trajanje predpomnilnika tabele" +"Kliknite na gumb \"Dodaj/Uredi filtre\" za kreiranje novih filtrov " +"nadzorne plošče" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -msgid "Table columns" -msgstr "Stolpci tabele" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" +msgstr "Uporabi filtre" -#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 -#: superset/views/database/forms.py:416 -msgid "Table name cannot contain a schema" -msgstr "Ime tabele ne sme vsebovati sheme" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Počisti vse" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "Ime tabele ni definirano" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" +msgstr "Lociraj grafikon" -#: superset/db_engine_specs/ocient.py:285 -#, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "Tabela ali pogled \"%(table)s\" ne obstaja." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" +msgstr "Medsebojni filtri" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand statistical " -"differences between groups." -msgstr "" -"Tabela, ki prikazuje uparjene t-teste, ki se uporabljajo za prikaz statističnih " -"razlik med skupinami." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "Dodaj prilagojen doseg" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:397 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:350 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "Tabele" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "Vsi grafikoni/globalni doseg" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "Zavihki" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +msgid "Select chart" +msgstr "Izberi grafikon" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" -msgstr "Tabelarično" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Medsebojni filtri za to nadzorno ploščo niso omogočeni" -#: superset-frontend/src/pages/ChartList/index.tsx:627 -#: superset-frontend/src/pages/DashboardList/index.tsx:518 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:495 -#: superset-frontend/src/pages/Tags/index.tsx:306 -msgid "Tag" -msgstr "Oznaka" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" +"Izberite grafikone, za katere želite uporabiti medsebojne filtre, ko " +"kliknete na ta grafikon. Izberete lahko \"Vsi grafikoni\", da uporabite " +"medsebojne filtre za vse grafikone, ki uporabljajo isti podatkovni niz " +"ali vsebujejo stolpec z enakim nazivom." -#: superset/commands/tag/exceptions.py:36 -msgid "Tag could not be created." -msgstr "Oznake ni mogoče ustvariti." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" +"Izberite grafikone, za katere želite uporabiti medsebojne filtre v tej " +"nadzorni plošči. Odstranitev grafikona bo izključila medsebojno " +"filtriranje s kateregakoli grafikona na nadzorni plošči. Izberete lahko " +"\"Vsi grafikoni\", da uporabite medsebojne filtre za vse grafikone, ki " +"uporabljajo isti podatkovni niz ali vsebujejo stolpec z enakim nazivom." -#: superset/commands/tag/exceptions.py:44 -msgid "Tag could not be deleted." -msgstr "Oznake ni mogoče izbrisati." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Vsi grafikoni" -#: superset/tags/exceptions.py:39 -msgid "Tag could not be found." -msgstr "Oznake ni mogoče najti." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" +msgstr "Omogoči medsebojne filtre" -#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 -msgid "Tag could not be updated." -msgstr "Oznake ni mogoče posodobiti." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" +msgstr "Orientacija vrstice s filtri" -#: superset-frontend/src/features/tags/TagModal.tsx:255 -msgid "Tag created" -msgstr "Oznaka ustvarjena" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" +msgstr "Navpično (levo)" -#: superset-frontend/src/features/tags/TagModal.tsx:290 -msgid "Tag name" -msgstr "Ime oznake" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" +msgstr "Vodoravno (zgoraj)" -#: superset/tags/exceptions.py:30 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "Ime oznake ni pravilno (ne sme vsebovati ':')" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" +msgstr "Več filtrov" -#: superset/commands/tag/exceptions.py:32 -msgid "Tag parameters are invalid." -msgstr "Parametri oznak so neveljavni." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" +msgstr "Ni uporabljenih filtrov" -#: superset-frontend/src/features/tags/TagModal.tsx:237 -msgid "Tag updated" -msgstr "Oznaka posodobljena" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" +msgstr "Uporabljeni filtri: %s" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Filtra ni mogoče naložiti" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 #, python-format -msgid "Tagged %s %ss" -msgstr "Označen %s %s" +msgid "Filters out of scope (%d)" +msgstr "Filtri izven dosega (%d)" -#: superset/commands/tag/exceptions.py:48 -msgid "Tagged Object could not be deleted." -msgstr "Označenega elementa ni mogoče izbrisati." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "Odvisen od" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 -#: 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:682 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 -#: superset-frontend/src/pages/ChartList/index.tsx:428 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:363 -#: superset-frontend/src/pages/Tags/index.tsx:331 -#: superset/initialization/__init__.py:379 -msgid "Tags" -msgstr "Oznake" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "Filter prikazuje samo vrednosti vezane na izbire v drugih filtrih." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the densest " -"areas of information lie" -msgstr "" -"Vzame podatkovne točke in jih razporedi v razdelke, kjer se vidi območja z " -"največjo gostoto informacij" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Doseg" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Target" -msgstr "Cilj" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "Tip filtra" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 -msgid "Target Color" -msgstr "Ciljna barva" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "Naslov je obvezen" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Target category" -msgstr "Kategorija cilja" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Odstranjeno)" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "Ciljna vrednost" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Povrni?" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "Ime predloge" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "Dodaj filtre in ločilnike" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:989 -#: superset/connectors/sqla/views.py:412 -msgid "Template parameters" -msgstr "Parametri predlog" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" +msgstr "[neimenovana]" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values coming from " -"the controls." -msgstr "" -"Vzorčna povezava, vključiti je mogoče {{ metric }} ali drugo vrednost iz " -"kontrolnikov." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "Zaznana krožna odvisnost" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 -msgid "" -"Terminate running queries when browser window closed or navigated to another " -"page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases." -msgstr "" -"Ustavi zagnane poizvedbe, ko se zapre okno brskalnika ali uporabnik gre na drugo " -"stran. Na razpolago za Presto, Hive, MySQL, Postgres in Snowflake podatkovne baze." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" +msgstr "Dodaj in uredi filtre" -#: superset/templates/superset/models/database/macros.html:23 -msgid "Test Connection" -msgstr "Preizkus povezave" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "Izbira stolpca" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 -msgid "Test connection" -msgstr "Preizkus povezave" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "Izberite stolpec" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" -msgstr "Besedilo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "Ni najdenih skladnih stolpcev" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:99 -msgid "Text align" -msgstr "Poravnava besedila" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" +msgstr "Ni najdenih skladnih podatkovnih setov" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 -msgid "Text embedded in email" -msgstr "Besedilo vključeno v e-pošto" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +msgid "Select a dataset" +msgstr "Izberite podatkovni set" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "Odziv API-ja iz %s se ne ujema z vmesnikom IDatabaseTable." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "Zahtevana je vrednost" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the dashboard view " -"where changes are immediately visible" -msgstr "" -"CSS za posamezne nadzorne plošče lahko spreminjamo tukaj ali pa v pogledu " -"nadzorne plošče, kjer so spremembe vidne takoj" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" +msgstr "(izbrisan ali neveljaven tip)" -#: superset/errors.py:126 -msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the end. " -"Please make sure your query has a SELECT as its last statement. Then, try running " -"your query again." -msgstr "" -"CTAS (create table as select) na koncu nima SELECT stavka. Poskrbite, da bo v " -"poizvedbi SELECT zadnji stavek. Potem ponovno poženite poizvedbo." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" +msgstr "Tip omejitve" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive " -"polygons, lines and points (circles, icons and/or texts)." -msgstr "" -"GeoJsonLayer uporablja podatke v formatu GeoJSON in jih izriše kot interaktivne " -"poligone, črte in točke (krogi, ikone in/ali besedila)." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." +msgstr "Ni razpoložljivih filtrov." -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "V URL-ju manjkata parametra dataset_id ali slice_id." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Dodaj filter" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 -msgid "The X-axis is not on the filters list" -msgstr "X-osi ni na seznamu filtrov" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "Vrednosti so odvisne od drugih filtrov" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 msgid "" -"The X-axis is not on the filters list which will prevent it from being used in\n" -" time range filters in dashboards. Would you like to add it to the " -"filters list?" -msgstr "" -"X-osi ni na seznamu filtrov, kar preprečuje njeno uporabo v\n" -"\tfiltrih časovnega obdobja v nadzorni plošči. Jo želite najprej dodati na seznam " -"filtrov?" +"Values selected in other filters will affect the filter options to only " +"show relevant values" +msgstr "Vrednosti izbrane v drugih filtrih bodo vplivale na možnosti filtra" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "Označba je bila shranjena" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Vrednosti so odvisne od" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" -msgstr "Označba je bila posodobljena" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Doseg" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:76 -msgid "" -"The category of source nodes used to assign colors. If a node is associated with " -"more than one category, only the first will be used." -msgstr "" -"Kategorija izvornih vozlišč, na podlagi katere je določena barva. Če je vozlišče " -"povezano z več kot eno kategorijo, bo uporabljena samo prva." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Nastavitve filtra" -#: superset/common/query_context_processor.py:694 -msgid "The chart datasource does not exist" -msgstr "Podatkovni vir grafikona ne obstaja" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "Nastavitve filtra" -#: superset/common/query_context_processor.py:688 -msgid "The chart does not exist" -msgstr "Grafikon ne obstaja" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "Izbirni filter" -#: superset/common/query_context_processor.py:711 -msgid "The chart query context does not exist" -msgstr "Kontekst poizvedbe grafikona ne obstaja" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "Filter obdobja" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "Številski obseg" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "Časovni filter" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 -msgid "" -"The classic. Great for showing how much of a company each investor gets, what " -"demographics follow your blog, or what portion of the budget goes to the military " -"industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of " -"relative proportion is important, consider using a bar or other chart type " -"instead." -msgstr "" -"Standardni grafikon za prikaz deležev. Tortne grafikone je težje natančno " -"interpretirati, takrat lahko uporabite npr. stolpčni grafikon." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Časovno obdobje" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:276 -msgid "The color for points and clusters in RGB" -msgstr "Barva točk in gruč v RGB zapisu" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Časovni stolpec" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 -msgid "The color of the isoband" -msgstr "Barva površinske plastnice" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Granulacija časa" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 -msgid "The color of the isoline" -msgstr "Barva plastnice" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "Združevanje po (Group by)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:355 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "Barvna shema za izris grafikona" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Združevanje po (Group by)" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." -msgstr "" -"Barvna shema je določena s povezano nadzorno ploščo.\n" -" Barvno shemo uredite v nastavitvah nadzorne plošče." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "Zahtevan je predfilter" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 -msgid "The column header label" -msgstr "Naslov stolpca" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" +msgstr "Časovni stolpec za časovno filtriranje za" -#: superset/errors.py:107 -msgid "The column was deleted or renamed in the database." -msgstr "Stolpec je bil izbrisan ali preimenovan v podatkovni bazi." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "Časovni stolpec za časovno obdobje za" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 -msgid "" -"The country code standard that Superset should expect to find in the [country] " -"column" -msgstr "Standard za oznake držav, ki bodo podane v stolpcu z državami" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Ime filtra" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "Nadzorna plošča je bila shranjena" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Zahtevano je ime" -#: superset/views/core.py:115 -msgid "The data source seems to have been deleted" -msgstr "Zdi se, da je bil podatkovni vir izbrisan" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Tip filtra" -#: superset/connectors/sqla/views.py:113 -msgid "" -"The data type that was inferred by the database. It may be necessary to input a " -"type manually for expression-defined columns in some cases. In most case users " -"should not need to alter this." -msgstr "" -"Podatkovni tip, ki izvira iz podatkovne baze. V nekaterih primerih je potrebno " -"ročno vnesti tip za stolpce, ki temeljijo na izrazih. V večini primerov " -"uporabniku tega ni potrebno spreminjati." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "Podatkovni seti ne vsebujejo časovnega stolpca" -#: superset-frontend/src/pages/DatabaseList/index.tsx:568 -#, python-format +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and users " -"have %s SQL Lab tabs using this database open. Are you sure you want to continue? " -"Deleting the database will break those objects." +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -"Podatkovna baza %s je povezana z %s grafikoni, ki so prisotni na %s nadzornih " -"ploščah. Uporabniki imajo odprtih %s zavihkov SQL-laboratorija s to podatkovno " -"bazo. Ali želite nadaljevati? Izbris podatkovne baze bo pokvaril te objekte." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 -msgid "The database columns that contains lines information" -msgstr "Stolpec v podatkovni bazi, ki vsebuje podatke črt" - -#: superset/commands/sql_lab/estimate.py:58 -msgid "The database could not be found" -msgstr "Podatkovna baza ni bila najdena" +"Filtri časovnega obdobja vplivajo na časovne stolpce, definirane v\n" +"\tfiltrski sekciji vsakega grafikona. Filtrom grafikonov dodajte časovne " +"stolpce,\n" +"\t da bodo filtri nadzorne plošče imeli učinek nanje." -#: superset/errors.py:134 -msgid "The database is currently running too many queries." -msgstr "Podatkovna baza trenutno izvaja preveč poizvedb." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "Zahtevan je podatkovni set" -#: superset/errors.py:101 -msgid "The database is under an unusual load." -msgstr "Podatkovni vir je neobičajno obremenjen." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "Predfiltriraj razpoložljive vrednosti" -#: superset/commands/sql_lab/execute.py:172 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." msgstr "" -"Podatkovna baza, referencirana v tej poizvedbi, ni bila najdena. Kontaktirajte " -"administratorja za napotke ali pa poskusite znova." +"Doda stavke za filtriranje izvorne poizvedbe filtra,\n" +" vendar samo v kontekstu samodejnega izpolnjevanja.\n" +" Ne vpliva na to kako bo filter deloval na nadzorno " +"ploščo.\n" +" Uporabno je, če želite izboljšati učinkovitost " +"poizvedbe filtra\n" +" ali pa omejiti nabor prikazanih vrednosti filtra." -#: superset/errors.py:102 -msgid "The database returned an unexpected error." -msgstr "Podatkovna baza je vrnila nepričakovano napako." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" +msgstr "Predfilter" -#: superset/errors.py:146 -msgid "The database was deleted." -msgstr "Podatkovna baza je bila izbrisana." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "Brez filtra" -#: superset/commands/dataset/duplicate.py:60 -msgid "The database was not found." -msgstr "Podatkovna baza ni bila najdena." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "Razvrsti vrednosti filtra" -#: superset-frontend/src/pages/DatasetList/index.tsx:757 -#, python-format -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure " -"you want to continue? Deleting the dataset will break those objects." -msgstr "" -"Podatkovni set %s je povezan z grafikoni %s, ki so prisotni na nadzorni plošči " -"%s. Ali želite nadaljevati? Izbris podatkovnega seta bo pokvaril te objekte." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "Način razvrščanja" -#: superset-frontend/src/components/Chart/Chart.jsx:88 superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "Podatkovni set, povezan s tem grafikonom, ne obstaja več" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Razvrsti naraščajoče" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:222 -msgid "The dataset column/metric that returns the values on your chart's x-axis." -msgstr "Stolpec/mera podatkovnega seta, ki vrne vrednosti za x-os grafikona." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Mera za razvrščanje" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:231 -msgid "The dataset column/metric that returns the values on your chart's y-axis." -msgstr "Stolpec/mera podatkovnega seta, ki vrne vrednosti za y-os grafikona." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" +msgstr "Če je določena mera, bo razvrščanje izvedeno na podlagi vrednosti mere" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." -msgstr "" -"Tukaj prikazane nastavitve podatkovnega seta\n" -" vplivajo na vse grafikone, ki uporabljajo\n" -" ta podatkovni set. Spreminjanje\n" -" nastavitev lahko nezaželeno vpliva\n" -" na druge grafikone." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Mera za razvrščanje" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 -#: superset-frontend/src/pages/ChartCreation/index.tsx:226 -msgid "The dataset has been saved" -msgstr "Podatkovni set je shranjen" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "Ena vrednost" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 -msgid "The dataset linked to this chart may have been deleted." -msgstr "Podatkovni set, povezan s tem grafikonom, je bil izbrisan." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "Tip z eno vrednostjo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1241 -msgid "The datasource couldn't be loaded" -msgstr "Podatkovnega vira ni mogoče naložiti" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "Natančno" -#: superset/errors.py:100 -msgid "The datasource is too large to query." -msgstr "Podatkovni vir je prevelik za poizvedbo." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "Filter ima privzeto vrednost" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view. " -"Supports markdown." -msgstr "" -"Opis je lahko prikazan kot glava gradnika v pogledu nadzorne plošče. Podpira " -"markdown." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Privzeta vrednost" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "Razdalja med celicami v pikslih" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "Zahtevana je privzeta vrednost" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:973 -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to -1 to " -"bypass the cache." -msgstr "" -"Trajanje (v sekundah) do razveljavitve predpomnilnika. Nastavite -1, da " -"onemogočite predpomnjenje." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "Osveži privzete vrednosti" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 -msgid "The encoding format of the lines" -msgstr "Oblika kodiranja črt" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "Izpolnite vsa polja, da omogočite \"Privzeto vrednost\"" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 -msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine call." -msgstr "Objekt engine_params se razširi v klic sqlalchemy.create_engine." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Odstranili ste ta filter." -#: superset/common/query_object.py:312 -#, python-format -msgid "" -"The following entries in `series_columns` are missing in `columns`: %(columns)s. " -msgstr "V 'columns' manjkajo naslednji vnosi iz 'series_columns': %(columns)s. " +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Povrni filter" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" -msgstr "Funkcija za agregacijo točk v skupine" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "Zahtevan je stolpec" -#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "Izpolnite \"Privzeto vrednost\", da omogočite ta kontrolnik" -#: superset/db_engine_specs/mssql.py:111 superset/db_engine_specs/postgres.py:145 -#: superset/db_engine_specs/presto.py:691 superset/db_engine_specs/redshift.py:89 -#, python-format +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s." +"Default value set automatically when \"Select first filter value by " +"default\" is checked" msgstr "" -"Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči na vratih " -"%(port)s." - -#: superset/errors.py:112 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "Gostitelj mogoče ne deluje in ga ni mogoče doseči preko podanih vrat." +"Privzeta vrednost je samodejno izbrana, če je izbrano \"Prvi element je " +"izbran kot privzet\"" -#: superset/db_engine_specs/mssql.py:101 superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:686 superset/db_engine_specs/redshift.py:79 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "Imena gostitelja \"%(hostname)s\" ni mogoče razrešiti." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" +msgstr "" +"Privzeta vrednost mora biti določena, če je izbrano \"Vrednost filtra " +"obvezna\"" -#: superset/errors.py:110 -msgid "The hostname provided can't be resolved." -msgstr "Imena gostitelja ni mogoče razrešiti." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" +msgstr "" +"Privzeta vrednost mora biti določena, če je izbrano \"Filter ima privzeto" +" vrednost\"" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:37 -msgid "The id of the active chart" -msgstr "Identifikator aktivnega grafikona" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Uporabi za vse grafikone" -#: superset/connectors/sqla/views.py:327 -msgid "" -"The list of charts associated with this table. By altering this datasource, you " -"may change how these associated charts behave. Also note that charts need to " -"point to a datasource, so this form will fail at saving if removing charts from a " -"datasource. If you want to change the datasource for a chart, overwrite the chart " -"from the 'explore view'" -msgstr "" -"Seznam grafikonov, povezanih s to tabelo. S spreminjanjem podatkovnega vira lahko " -"spremenite, kako se povezani grafikoni obnašajo. Poleg tega morajo biti grafikoni " -"povezani s podatkovnim virom. Če odstranite grafikon s podatkovnega vira ne bo " -"mogoče shraniti tega vnosa. Če želite spremeniti podatkovni vir grafikona, " -"prepišite grafikon v raziskovalnem pogledu." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Uporabi za izbrane grafikone" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 -msgid "The lower limit of the threshold range of the Isoband" -msgstr "Spodnji prag za površinske plastnice" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "Ta filter bo vplival le na izbrane grafikone" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "Največje število prikazanih dogodkov (enako številu vrnjenih vrstic)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "Ta filter bo vplival na vse grafikone s tem stolpcem" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:173 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned first" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "Vsi paneli" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -"Največje število podrazdelkov posamezne skupine; nižje vrednosti so zanemarjene " -"prve" +"Ta grafikon je lahko nekompatibilen s filtrom (podatkovni seti se ne " +"ujemajo)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:51 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "Največja vrednost mere. To je opcijska nastavitev" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Nadaljuj z urejanjem" -#: superset/databases/schemas.py:233 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key %(key)s " -"is invalid." -msgstr "" -"Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %(key)s je " -"neveljaven." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Da, prekini" -#: superset/commands/database/exceptions.py:80 superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key %{key}s " -"is invalid." -msgstr "" -"Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %{key}s je " -"neveljaven." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "Imate neshranjene spremembe." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 -msgid "The metadata_params object gets unpacked into the sqlalchemy.MetaData call." -msgstr "Objekt metadata_params se razpakira v klic sqlalchemy.MetaData." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Ali želite prekiniti?" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:290 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:222 -#: superset-frontend/src/explore/controlPanels/sections.tsx:171 -msgid "" -"The minimum number of rolling periods required to show a value. For instance if " -"you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so " -"that all data points shown are the total of 7 periods. This will hide the \"ramp " -"up\" taking place over the first 7 periods" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -"Minimalno število drsečih obdobij, potrebnih za prikaz vrednosti. Če računate " -"kumulativno vsoto 7-dnevnega obdobja, boste nastavili \"Min. št. period\" na 7. " -"Tako bodo vse prikazane točke skupaj obsegale 7 obdobij. To bo prikrilo rampo, ki " -"bi trajala prvih 7 obdobij" +"Napaka pri nalaganju podatkovnih virov grafikona. Filtri lahko ne " +"delujejo pravilno." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "Število barvnih korakov" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "Prozorno" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:982 -msgid "" -"The number of hours, negative or positive, to shift the time column. This can be " -"used to move UTC time to local time." -msgstr "" -"Število ur, negativno ali pozitivno, za zamik časovnega stolpca. Na ta način je " -"mogoče UTC čas prestaviti na lokalni čas." +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "Belo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the configuration " -"DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see " -"more rows up to the %(limit)d limit." -msgstr "" -"Število prikazanih rezultatov je omejeno na %(rows)d na podlagi parametra " -"DISPLAY_MAX_ROW. V csv dodajte dodatne omejitve/filtre, da boste lahko videli več " -"vrstic do meje %(limit)d ." +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Vsi filtri" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add additional " -"limits/filters, download to csv, or contact an admin to see more rows up to the " -"%(limit)d limit." -msgstr "" -"Število prikazanih rezultatov je omejeno na %(rows)d . V csv dodajte dodatne " -"omejitve/filtre, da boste lahko videli več vrstic do meje %(limit)d ." +msgid "Click to edit %s." +msgstr "Kliknite za urejanje %s." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:379 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "" -"Število prikazanih vrstic je omejeno na %(rows)d z izbiro v spustnem seznamu." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." +msgstr "Kliknite za urejanje grafikona." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:353 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "Število prikazanih rezultatov je omejeno na %(rows)d s poizvedbo." +msgid "Use %s to open in a new tab." +msgstr "Uporabite %s za odpiranje v novem zavihku." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" +msgstr "Srednje" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, python-format +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" +msgstr "Nov naslov" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Naslov zavihka" + +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The number of rows displayed is limited to %(rows)d by the query and limit " -"dropdown." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo in spustnim " -"izbirnikom omejitev." - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:46 -msgid "The number of seconds before expiring the cache" -msgstr "Trajanje (v sekundah) do razveljavitve predpomnilnika" +"Ta seja je bila prekinjena in nekateri kontrolniki mogoče ne delujejo kot" +" bi morali. Če ste razvijalec te aplikacije, preverite, da je žeton za " +"gosta pravilno generiran." -#: superset/errors.py:136 -msgid "The object does not exist in the given database." -msgstr "Objekt ne obstaja v podani podatkovni bazi." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" +msgstr "Je enako (=)" -#: superset/sqllab/query_render.py:96 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." -msgstr[1] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." -msgstr[2] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." -msgstr[3] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" +msgstr "Ni enako (≠)" -#: superset/db_engine_specs/postgres.py:125 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "Geslo za uporabniško ime \"%(username)s\" je napačno." +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" +msgstr "Manjše kot (<)" -#: superset/errors.py:116 -msgid "The password provided when connecting to a database is not valid." -msgstr "Geslo za povezavo s podatkovno bazo je neveljavno." +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" +msgstr "Manjše ali enako (<=)" -#: superset-frontend/src/pages/ChartList/index.tsx:95 -msgid "" -"The passwords for the databases below are needed in order to import them together " -"with the charts. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and " -"should be added manually after the import if they are needed." -msgstr "" -"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z grafikoni. Sekciji " -"\"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista " -"prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to " -"potrebno." +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" +msgstr "Večje kot (>)" -#: superset-frontend/src/pages/DashboardList/index.tsx:73 -msgid "" -"The passwords for the databases below are needed in order to import them together " -"with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and " -"should be added manually after the import if they are needed." -msgstr "" -"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z nadzornimi " -"ploščami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne " -"baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po " -"uvozu, če je to potrebno." +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" +msgstr "Večje ali enako (>=)" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them together " -"with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and " -"should be added manually after the import if they are needed." -msgstr "" -"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s podatkovnimi seti. " -"Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze " -"nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če " -"je to potrebno." +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" +msgstr "Vsebuje (IN)" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 -msgid "" -"The passwords for the databases below are needed in order to import them together " -"with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and " -"should be added manually after the import if they are needed." -msgstr "" -"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s shranjenimi " -"poizvedbami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah " -"podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno dodati " -"ročno po uvozu, če je to potrebno." +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" +msgstr "Ne vsebuje (NOT IN)" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1349 -msgid "" -"The passwords for the databases below are needed in order to import them. Please " -"note that the \"Secure Extra\" and \"Certificate\" sections of the database " -"configuration are not present in explore files and should be added manually after " -"the import if they are needed." -msgstr "" -"Gesla za spodnje podatkovne baze so potrebna za njihov uvoz. Sekciji \"Dodatna " -"varnost\" in \"Certifikati\" v nastavitvah podatkovne baze nista prisotni v " -"izvoženih datotekah in jih je potrebno dodati ročno po uvozu, če je to potrebno." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" +msgstr "Like" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "The pattern of timestamp format. For strings use " -msgstr "Format zapisa časovne značke. Za znakovne nize uporabite " +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" +msgstr "Like (ni razlik. velikih/malih črk)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted \"freq\" " -"expressions." -msgstr "" -"Periodičnost za vrtenje časa. Uporabnik lahko poda\n" -" psevdonim za zamik v \"Pandas\".\n" -" Kliknite na mehurček za podrobnosti dovoljenih izrazov za \"freq\"." +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" +msgstr "Ni NULL" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "Polmer v pikslih" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" +msgstr "Je NULL" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1200 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is " -"associated to this Superset logical table, and this logical table points the " -"physical table referenced here." -msgstr "" -"Kazalec na fizično tabelo (ali pogled). Grafikon bo vezan na podatkovni set, ki " -"kaže na tukaj referencirano fizično tabelo." +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" +msgstr "uporaba predloge latest_partition" -#: superset/errors.py:111 -msgid "The port is closed." -msgstr "Vrata so zaprta." +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" +msgstr "Je TRUE" -#: superset/errors.py:144 -msgid "The port number is invalid." -msgstr "Številka vrat je neveljavna." +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" +msgstr "Je FALSE" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:160 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "Primarna mera določa velikost lokov segmentov" +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" +msgstr "ČASOVNI_OBSEG" -#: superset/commands/dataset/exceptions.py:198 -msgid "The provided table was not found in the provided database" -msgstr "Podana tabela ni bila najdena v podani podatkovni bazi" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Granulacija časa" -#: superset/errors.py:139 -msgid "The query associated with the results was deleted." -msgstr "Poizvedba, povezana z rezultati, je bila izbrisana." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "Trajanje v ms (100.40008 => 100ms 400µs 80ns)" -#: superset/commands/sql_lab/export.py:63 superset/commands/sql_lab/results.py:91 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The query associated with these results could not be found. You need to re-run " -"the original query." +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -"Poizvedbe, povezane s temi rezultati, ni bilo mogoče najti. Ponovno morate " -"zagnati izvorno poizvedbo." +"Eden ali več stolpcev za združevanje po. Združevanje z visoko " +"kardinalnostjo naj vsebuje omejitev serij, s čimer omejite število " +"pridobljenih in prikazanih serij." -#: superset/sqllab/query_render.py:117 -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/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Ena ali več mer za prikaz" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:113 -msgid "The query couldn't be loaded" -msgstr "Poizvedbe ni mogoče naložiti" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Izbrana barva" -#: superset/commands/sql_lab/estimate.py:86 -#, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "" -"Ocenjevanje poizvedbe je bilo ustavljeno po %(sqllab_timeout)s sekundah. Lahko je " -"prekompleksno ali pa je podatkovna baza preobremenjena." +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Mera desne osi" -#: superset/errors.py:137 -msgid "The query has a syntax error." -msgstr "Poizvedba ima sintaktično napako." +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Izberite mero za desno os" + +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Linearna barvna shema" + +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Mera za barvo" + +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "En ali več kontrolnikov za stolpčno vrtenje" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:607 -msgid "The query returned no data" -msgstr "Poizvedba ni vrnila podatkov" +#: superset-frontend/src/explore/controls.jsx:271 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +msgstr "" +"Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim " +"jezikom, kot npr. `10 sekund`, `1 dni` ali `56 tednov`" -#: superset/sql_lab.py:310 -#, python-format +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too complex, " -"or the database might be under heavy load." +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -"Poizvedba je bila ustavljena po %(sqllab_timeout)s sekundah. Lahko je " -"prekompleksna ali pa je podatkovna baza preobremenjena." +"Granulacija časa za to vizualizacijo. Izvede transformacijo podatkov, ki " +"spremeni vaš časovni stolpec in določi novo časovno granulacija. Ta " +"možnost je definirana na ravni sistema podatkovne baze v izvorni kodi " +"Superseta." + +#: superset-frontend/src/explore/controls.jsx:327 +msgid "" +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." +msgstr "" +"Časovno obdobje za vizualizacijo. Vsi relativni časi, kot npr. \"Zadnji " +"mesec\", Zadnjih 7 dni\", \"Zdaj\" so izračunani na strežniku z njegovim " +"lokalnim časom. Vsi opisi orodij in časi so izraženi v UTC. Časovne " +"značke se nato izračunajo v podatkovni bazi z njenim lokalnim časovnim " +"pasom. Eksplicitno lahko nastavite časovni pas v ISO 8601 formatu, če " +"določite čas začetka ali konca." + +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Omeji število vrstic za prikaz." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:102 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn " -"off clustering, but beware that a large number of points (>1000) will cause lag." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Radij (v pikslih), s katerim algoritem definira gručo. Izberite 0 za izklop " -"gručenja - veliko število točk (>1000) bo povzročilo upočasnitev." +"Mera, ki določa kako so razvrščene prve serije, če je določena omejitev " +"serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je " +"ustrezno)." -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:125 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The radius of individual points (ones that are not in a cluster). Either a " -"numerical column or `Auto`, which scales the point based on the largest cluster" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" -"Radij posameznih točk (tistih, ki niso v gruči). Numerični stolpec ali `Auto` " -"(skalira točke na osnovi največje gruče)" +"Določa združevanje entitet. Vsak niz je na grafikonu prikazan z določeno " +"barvo in ima lahko prikazano legendo" -#: superset-frontend/src/features/reports/ReportModal/actions.js:110 -msgid "The report has been created" -msgstr "Poročilo je bilo ustvarjeno" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Mera za [X] os" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 -msgid "The result of this query should be a numeric-esque value" -msgstr "Rezultat te poizvedbe mora biti številska vrednost" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Mera za [Y] os" -#: superset/errors.py:138 -msgid "The results backend no longer has the data from the query." -msgstr "Zaledni sistem rezultatov nima več podatkov iz poizvedbe." +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Velikost mehurčka" -#: superset/errors.py:140 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The results stored in the backend were stored in a different format, and no " -"longer can be deserialized." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -"Rezultati v zalednem sistemu so bili shranjeni v drugačni obliki in jih ni več " -"mogoče deserializirati." +"Če je `Vrsta izračuna` nastavljena na \"Procentualna sprememba\", bo " +"oblika Y-osi vsiljena na `.1%`" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "" -"Podroben opis orodja prikaže seznam vseh podatkovnih serij za posamezno časovno " -"točko" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Barvna shema" -#: superset/db_engine_specs/bigquery.py:204 +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "Pri ocenjevanju grafikona je prišlo do napake" + +#: superset-frontend/src/explore/actions/saveModalActions.js:142 #, python-format -msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to run this " -"query." -msgstr "" -"Shema \"%(schema)s\" ne obstaja. Za poizvedbo mora biti uporabljena veljavna " -"shema." +msgid "Chart [%s] has been saved" +msgstr "Grafikon [%s] je bil shranjen" -#: superset/db_engine_specs/presto.py:673 +#: superset-frontend/src/explore/actions/saveModalActions.js:145 #, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run " -"this query." -msgstr "" -"Shema \"%(schema_name)s\" ne obstaja. Za poizvedbo mora biti uporabljena veljavna " -"shema." +msgid "Chart [%s] has been overwritten" +msgstr "Grafikon [%s] je bil prepisan" -#: superset/exceptions.py:292 -msgid "The schema of the submitted payload is invalid." -msgstr "Shema podanih podatkov je neveljavna." +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "Nadzorna plošča [%s] je bila ravno ustvarjena in grafikon [%s] dodan nanjo" -#: superset/errors.py:119 -msgid "The schema was deleted or renamed in the database." -msgstr "Shema je bila izbrisana ali preimenovana v podatkovni bazi." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "Grafikon [%s] je bil dodan na nadzorno ploščo [%s]" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:65 -msgid "The size of each cell in meters" -msgstr "Velikost vsake celice v metrih" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" +msgstr "GROUP BY" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "Velikost kvadratne celice v pikslih" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" +msgstr "Ta sklop uporabite če želite poizvedbo za agregacijo" -#: superset/errors.py:148 -msgid "The submitted payload failed validation." -msgstr "Neuspešna validacija podanih podatkov." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" +msgstr "NOT GROUPED BY" -#: superset/errors.py:122 -msgid "The submitted payload has the incorrect format." -msgstr "Podani podatki so v neustrezni obliki." +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "Ta sklop uporabite, če želite poizvedbo za posamezne vrstice" -#: superset/errors.py:123 -msgid "The submitted payload has the incorrect schema." -msgstr "Podani podatki imajo neustrezno shemo." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "X-osi ni na seznamu filtrov" -#: superset/db_engine_specs/bigquery.py:191 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run this " -"query." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"Tabela \"%(table)s\" ne obstaja. V poizvedbi mora biti uporabljena veljavna " -"tabela." +"X-osi ni na seznamu filtrov, kar preprečuje njeno uporabo v\n" +"\tfiltrih časovnega obdobja v nadzorni plošči. Jo želite najprej dodati " +"na seznam filtrov?" -#: superset/db_engine_specs/presto.py:665 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used to run " -"this query." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -"Tabela \"%(table_name)s\" ne obstaja. V poizvedbi mora biti uporabljena veljavna " -"tabela." +"Zadnjega časovnega filtra ni mogoče izbrisati, ker se uporablja za filtre" +" časovnega obdobja v nadzorni plošči." -#: superset/connectors/sqla/views.py:435 -msgid "" -"The table was created. As part of this two-phase configuration process, you " -"should now click the edit button by the new table to configure it." -msgstr "" -"Tabela je ustvarjena. Sedaj morate v tem dvodelnem postopku klikniti gumb za " -"urejanje nove tabele." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "Ta sekcija vsebuje validacijske napake" -#: superset/errors.py:108 -msgid "The table was deleted or renamed in the database." -msgstr "Tabela je bila izbrisana ali preimenovana v podatkovni bazi." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" +msgstr "Obdržim nastavitve kontrolnika?" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:249 -#: superset-frontend/src/explore/controls.jsx:281 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The time column for the visualization. Note that you can define arbitrary " -"expression that return a DATETIME column in the table. Also note that the filter " -"below is applied against this column or expression" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." msgstr "" -"Časovni stolpec za vizualizacijo. Določite lahko poljuben izraz, ki vrne DATETIME " -"stolpec v tabeli. Spodnji filter se nanaša na ta stolpec ali izraz" +"Spremenili ste podatkovne sete. Vsi kontrolniki nad podatki (stolpci, " +"mere), ki se ujemajo z novim podatkovnim setom, se bodo ohranili." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:178 -msgid "" -"The time granularity for the visualization. Note that you can type and use simple " -"natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "" -"Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim jezikom, kot " -"npr. `10 sekund`, `1 dni` ali `56 tednov`" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" +msgstr "Nadaljuj" -#: superset-frontend/src/explore/controls.jsx:271 -msgid "" -"The time granularity for the visualization. Note that you can type and use simple " -"natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "" -"Granulacija časa za vizualizacijo. Uporabite lahko vnos z naravnim jezikom, kot " -"npr. `10 sekund`, `1 dni` ali `56 tednov`" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" +msgstr "Počisti polja" -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date transformation to " -"alter your time column and defines a new time granularity. The options here are " -"defined on a per database engine basis in the Superset source code." -msgstr "" -"Granulacija časa za to vizualizacijo. Izvede transformacijo podatkov, ki spremeni " -"vaš časovni stolpec in določi novo časovno granulacija. Ta možnost je definirana " -"na ravni sistema podatkovne baze v izvorni kodi Superseta." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "Nastavitve forme se niso ohranile" -#: superset-frontend/src/explore/controls.jsx:327 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The time range for the visualization. All relative times, e.g. \"Last month\", " -"\"Last 7 days\", \"now\", etc. are evaluated on the server using the server's " -"local time (sans timezone). All tooltips and placeholder times are expressed in " -"UTC (sans timezone). The timestamps are then evaluated by the database using the " -"engine's local timezone. Note one can explicitly set the timezone per the ISO " -"8601 format if specifying either the start and/or end time." -msgstr "" -"Časovno obdobje za vizualizacijo. Vsi relativni časi, kot npr. \"Zadnji mesec\", " -"Zadnjih 7 dni\", \"Zdaj\" so izračunani na strežniku z njegovim lokalnim časom. " -"Vsi opisi orodij in časi so izraženi v UTC. Časovne značke se nato izračunajo v " -"podatkovni bazi z njenim lokalnim časovnim pasom. Eksplicitno lahko nastavite " -"časovni pas v ISO 8601 formatu, če določite čas začetka ali konca." +"We were unable to carry over any controls when switching to this new " +"dataset." +msgstr "Prenos kontrolnikov pri preklopu na nov podatkovni set ni bil uspešen." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than domain_granularity. " -"Should be larger or equal to Time Grain" -msgstr "" -"Časovna enota za vsak blok. Mora biti manjša enota kot domenska_granulacija. Mora " -"biti večja ali enaka Granulaciji časa" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Prilagodi" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" -msgstr "Časovna enota za združevanje blokov" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "Ustvarjam povezavo, prosim počakajte..." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:125 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "Tip vizualizacije za prikaz" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "Višina grafikona" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:152 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "The unit of measure for the specified point radius" -msgstr "Enota merila za definiran radij točk" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" +msgstr "Širina grafikona" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 -msgid "The upper limit of the threshold range of the Isoband" -msgstr "Zgornji prag za površinske plastnice" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +msgid "An error occurred while loading dashboard information." +msgstr "Prišlo je do napake pri pridobivanju informacij o nadzorni plošči." -#: superset/views/core.py:116 -msgid "The user seems to have been deleted" -msgstr "Zdi se, da je bil uporabnik izbrisan" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Shrani (prepiši)" -#: superset/db_engine_specs/ocient.py:249 -msgid "The user/password combination is not valid (Incorrect password for user)." -msgstr "Kombinacija uporabnik/geslo ni veljavna (napačno geslo)." +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." +msgstr "Shrani kot ..." -#: superset/db_engine_specs/ocient.py:244 superset/db_engine_specs/postgres.py:120 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "Uporabniško ime \"%(username)s\" ne obstaja." +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Ime grafikona" -#: superset/errors.py:115 -msgid "The username provided when connecting to a database is not valid." -msgstr "Uporabniško ime za povezavo s podatkovno bazo je neveljavno." +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" +msgstr "Ime podatkovnega seta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:136 -msgid "The way the ticks are laid out on the X-axis" -msgstr "Način razporeditve oznak na X-osi" +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." +msgstr "Podatkovni set bo shranjen skupaj z grafikonom." -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 -msgid "The width of the Isoline in pixels" -msgstr "Debelina plastnic v pikslih" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Dodaj na nadzorno ploščo" + +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "Izberite nadzorno ploščo" + +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "Izberi" + +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +msgid " a dashboard OR " +msgstr " nadzorno ploščo ALI " + +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" +msgstr "ustvari" + +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" +msgstr " novo" + +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +msgid "A new chart and dashboard will be created." +msgstr "Ustvarjena bosta nov grafikon in nadzorna plošča." + +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +msgid "A new chart will be created." +msgstr "Ustvarjen bo nov grafikon." + +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +msgid "A new dashboard will be created." +msgstr "Ustvarjena bo nova nadzorna plošča." + +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Shrani in pojdi na nadzorno ploščo" + +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Shrani grafikon" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" +msgstr "Oblikovan datum" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" +msgstr "Oblikovanje stolpca" + +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" +msgstr "Skrij podatkovni panel" + +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" +msgstr "Razširi podatkovni panel" + +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" +msgstr "Vzorci" + +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" +msgstr "Za podatkovni set ni vrnjenih vzorcev" + +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" +msgstr "Ni rezultatov" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 -msgid "The width of the lines" -msgstr "Debelina črt" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Iskanje mer in stolpcev" -#: superset/commands/chart/exceptions.py:127 -#: superset/commands/dashboard/exceptions.py:66 -#: superset/commands/database/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "Prisotna so povezana opozorila in poročila" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +msgid "Create a dataset" +msgstr "Ustvarite podatkovni set" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 -msgid "There are no charts added to this dashboard" -msgstr "V nadzorni plošči ni grafikonov" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." +msgstr " za urejanje ali dodajanje stolpcev in mer." -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "Na zavihku ni dodanih elementov" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" +msgstr "Prikazanih %s od %s" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "Podatkovnih baz ni na voljo" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "Prikaži manj..." -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "V nadzorni plošči ni filtrov." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "Prikaži vse..." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." -msgstr "Imate neshranjene spremembe." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "Prikaži manj..." -#: superset/errors.py:103 -msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling or a " -"typo." -msgstr "V SQL-poizvedbi je sintaktična napaka. Mogoče ste se zatipkali." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "Neuspešno pridobivanje barv nadzorne plošče" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 -msgid "" -"There is no chart definition associated with this component, could it have been " -"deleted?" -msgstr "" -"S to komponento ni povezana nobena definicija grafikona. Ali je bila izbrisana?" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "Dodano na 1 nadzorno ploščo" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, or " -"increasing the destination width." -msgstr "" -"Za to komponento ni dovolj prostora. Poskusite zmanjšati širino ali pa povečati " -"širino cilja." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" +msgstr "Ni dodano na nobeno nadzorno ploščo" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -msgid "There was an error fetching dataset" -msgstr "Pri pridobivanju podatkovnega seta je prišlo do napake" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." +msgstr "" +"Seznam nadzornih plošč si lahko ogledate v spustnem meniju nastavitev " +"grafikona." -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -msgid "There was an error fetching dataset's related objects" -msgstr "Pri pridobivanju elementov podatkovnega seta je prišlo do napake" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" +msgstr "Ni razpoložljivo" -#: superset-frontend/src/views/CRUD/hooks.ts:598 -#, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "Napaka pri pridobivanju statusa \"Priljubljeno\": %s" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" +msgstr "Dodajte naslov grafikona" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "Pri pridobivanju nedavnih aktivnosti je prišlo do napake:" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" +msgstr "Naslov grafikona" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -msgid "There was an error loading the chart data" -msgstr "Napaka pri nalaganju podatkov grafikona" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "Dodaj potrebne parametre za shranjenje grafikona" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -msgid "There was an error loading the dataset metadata" -msgstr "Napaka pri nalaganju metapodatkov podatkovnega seta" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "Grafikon zahteva podatkovni set" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 -msgid "There was an error loading the schemas" -msgstr "Napaka pri nalaganju shem" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +msgid "" +"This chart type is not supported when using an unsaved query as a chart " +"source. " +msgstr "Tip grafikona ne podpira uporabe neshranjene poizvedbe za podatkovni vir. " -#: superset-frontend/src/components/TableSelector/index.tsx:194 -msgid "There was an error loading the tables" -msgstr "Napaka pri nalaganju tabel" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." +msgstr " za vizualizacijo podatkov." -#: superset-frontend/src/views/CRUD/hooks.ts:621 -#, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "Napaka pri shranjevanju statusa \"Priljubljeno\": %s" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "Zahtevane kontrolne vrednosti so bile odstranjene" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 -msgid "There was an error with your request" -msgstr "Pri zahtevi je prišlo do napake" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "Grafikon ni aktualen" -#: superset-frontend/src/features/home/SavedQueries.tsx:176 -#: superset-frontend/src/pages/AlertReportList/index.tsx:188 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 -#: superset-frontend/src/pages/DatasetList/index.tsx:701 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:261 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "Težava pri brisanju %s: %s" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 +msgid "" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" +msgstr "" +"Posodobili ste vrednosti v kontrolni plošči, vendar se grafikon ni " +"samodejno posodobil. Zaženite poizvedbo z gumbom \"Posodobi grafikon\" " +"ali" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 -#, python-format -msgid "There was an issue deleting rules: %s" -msgstr "Težava pri brisanju pravil: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "Kontrolniki imenovani " -#: superset-frontend/src/pages/AlertReportList/index.tsx:203 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "Težava pri brisanju izbranih %s: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "Nastavitev " -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "Pri brisanju izbranih oznak je prišlo do težave: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +msgid "Chart Source" +msgstr "Podatkovni vir grafikona" -#: superset-frontend/src/pages/ChartList/index.tsx:260 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "Pri brisanju izbranih grafikonov je prišlo do težave: %s" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Odpri zavihek s podatkovnim virom" -#: superset-frontend/src/pages/DashboardList/index.tsx:263 -msgid "There was an issue deleting the selected dashboards: " -msgstr "Pri brisanju izbranih nadzornih plošč je prišlo do težave: " +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" +msgstr "Izvoren" -#: superset-frontend/src/pages/DatasetList/index.tsx:719 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "Vrtilni" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "Pri brisanju izbranih slojev je prišlo do težave: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Nimate dovoljenja za urejanje tega grafikona" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:288 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "Pri brisanju izbranih poizvedb je prišlo do težave: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" +msgstr "Lastnosti grafikona posodobljene" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "Pri brisanju izbranih predlog je prišlo do težave: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" +msgstr "Uredi lastnosti grafikona" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "Težava pri brisanju: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "Ta grafikon se ne ureja znotraj Superseta" -#: superset-frontend/src/pages/DatasetList/index.tsx:727 -msgid "There was an issue duplicating the dataset." -msgstr "Pri dupliciranju podatkovnega seta je prišlo do težave." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." +msgstr "" +"Opis je lahko prikazan kot glava gradnika v pogledu nadzorne plošče. " +"Podpira markdown." -#: superset-frontend/src/pages/DatasetList/index.tsx:743 -#, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Pri dupliciranju izbranih podatkovnih setov je prišlo do težave: %s" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "Oseba ali skupina, ki je certificirala ta grafikon." -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "Pri uvrščanju nadzorne plošče med priljubljene je prišlo do težave." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Nastavitve" -#: superset-frontend/src/features/reports/ReportModal/actions.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "Pri pridobivanju poročil za to nadzorno ploščo je prišlo do težave." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "" +"Trajanje (v sekundah) predpomnjenja za ta grafikon. Nastavite na -1, da " +"izključite predpomnjenje. Če ni definirano, je uporabljena vrednost za " +"podatkovni set." -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -"Pri pridobivanju statusa \"priljubljeno\" za to nadzorno ploščo je prišlo do " -"težave." +"Seznam uporabnikov, ki lahko spreminjajo ta grafikon. Možno je iskanje po" +" imenu ali uporabniškem imenu." -#: superset-frontend/src/pages/Home/index.tsx:281 -#, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "Prišlo je do napake pri pridobivanju grafikona: %s" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Omejitev dosežena" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" +msgstr "Ustvarite grafikon" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "Pri pridobivanju vaše nedavne aktivnosti je prišlo do napake: %s" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" +msgstr "Posodobi grafikon" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "Prišlo je do težave pri pridobivanju shranjenih poizvedb: %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Neveljavna nastavitev zemljepisne dolžine/širine." + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "Zamenjaj zemljepisno dolžino/širino " -#: superset-frontend/src/pages/SavedQueryList/index.tsx:175 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "Do težave je prišlo pri predogledu izbrane poizvedbe %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Stolpci zemljepisne dolžine in širine" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "Pri predogledu izbrane poizvedbe je prišlo do težave. %s" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "En stolpec z ločenima zemljepisno dolžino in širino" -#: superset/viz.py:1470 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}" -msgstr "V 'Sankey' je zanka, določite drevo. To je okvarjena povezava: {}" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "" +"Sprejema različne zapise - podrobnosti najdete v Pythonovi knjižnici " +"geopy.points" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 -msgid "These are the datasets this filter will be applied to." -msgstr "To so podatkovni seti, na katere se nanaša ta filter." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geohash" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "Ti filtri se nanašajo na vrednosti v spustnih seznamih" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "področje besedila" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or overwrite " -"button in the explore view. This JSON object is exposed here for reference and " -"for power users who may want to alter specific parameters." -msgstr "" -"Ti parametri se ustvarijo dinamično s klikom gumba Shrani ali Prepiši v " -"raziskovalnem pogledu. Ta JSON objekt je prikazan kot vzorec za napredne " -"uporabnike, ki želijo spreminjati posamezne parametre." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "v modalnem oknu" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 -#: superset/views/dashboard/mixin.py:58 -msgid "" -"This JSON object is generated dynamically when clicking the save or overwrite " -"button in the dashboard view. It is exposed here for reference and for power " -"users who may want to alter specific parameters." -msgstr "" -"Ta JSON objekt se ustvari dinamično s klikom gumba Shrani ali Prepiši v pogledu " -"nadzorne plošče. Tukaj je prikazan kot vzorec za napredne uporabnike, ki želijo " -"spreminjati posamezne parametre." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Prišlo je do napake" -#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:325 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" +msgstr "Shrani kot podatkovni set" + +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Odpri v SQL laboratoriju" + +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "This action will permanently delete %s." -msgstr "S tem dejanjem boste trajno izbrisali %s." +msgid "Failed to verify select options: %s" +msgstr "Preverjanje možnosti izbire ni uspelo: %s" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 -msgid "This action will permanently delete the layer." -msgstr "S tem dejanjem boste trajno izbrisali sloj." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +msgid "No annotation layers" +msgstr "Ni slojev z oznakami" -#: superset-frontend/src/features/home/SavedQueries.tsx:228 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -msgid "This action will permanently delete the saved query." -msgstr "S tem dejanjem boste trajno izbrisali shranjeno poizvedbo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +msgid "Add an annotation layer" +msgstr "Dodaj sloj z oznakami" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 -msgid "This action will permanently delete the template." -msgstr "S tem dejanjem boste trajno izbrisali predlogo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Sloj z oznakami" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." +msgstr "Izberite sloj z oznakami, ki ga želite uporabiti." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -"To je lahko bodisi IP naslov (npr. 127.0.0.1) bodisi ime domene (npr. mydatabase." -"com)." +"Uporabite enega izmed obstoječih grafikonov kot vir oznak.\n" +" Grafikon mora biti naslednjega tipa: [%s]" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"This chart applies cross-filters to charts whose datasets contain columns with " -"the same name." +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Ta grafikon medsebojno filtrira grafikone, ki imajo podatkovne sete s stolpci z " -"istim nazivom." - -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "Ta grafikon je bil prestavljen v drug doseg filtrov." +"Pričakovana je formula z odvisnim časovnim parametrom 'x'\n" +" v milisekundah od epohe. Za vrednotenje formule je uporabljen " +"mathjs.\n" +" Primer: '2x +5'" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "Ta grafikon se ne ureja znotraj Superseta" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "Vrednost sloja z oznakami" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "" -"Ta grafikon je lahko nekompatibilen s filtrom (podatkovni seti se ne ujemajo)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." +msgstr "Napačna formula." -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart source. " -msgstr "Tip grafikona ne podpira uporabe neshranjene poizvedbe za podatkovni vir. " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Nastavitve rezine z oznakami" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" +"This section allows you to configure how to use the slice\n" +" to generate annotations." msgstr "" -"Barvna shema je bila preglasovana z barvami oznak po meri.\n" -" Preverite JSON-metapodatke v naprednih nastavitvah" +"V tem sklopu lahko nastavite način uporabe rezine\n" +" za ustvarjanje oznak." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 -msgid "This column might be incompatible with current dataset" -msgstr "Ta grafikon je lahko nekompatibilen s trenutnim podatkovnim setom" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "Časovni stolpec sloja z oznakami" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "Stolpec začetka intervala" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "Stolpec časa dogodka" #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 msgid "This column must contain date/time information." msgstr "Ta stolpec mora vsebovati informacijo o datumu/času." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:233 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "Konec intervala sloja z oznakami" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "Stolpec konca intervala" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" +msgstr "Stolpec z naslovom sloja z oznakami" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "Stolpec z naslovi" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "Izberite naslov za oznako." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "Stolpci z opisi slojev z oznakami" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "Stolpci z opisi" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "" -"This control filters the whole chart based on the selected time range. All " -"relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated " -"on the server using the server's local time (sans timezone). All tooltips and " -"placeholder times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can " -"explicitly set the timezone per the ISO 8601 format if specifying either the " -"start and/or end time." +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." msgstr "" -"Ta kontrolnik filtrira celoten grafikon glede na izbrano časovno obdobje. Vsi " -"relativni časi (npr. Zadnji mesec, Zdaj, itd.) so izračunani glede na lokalni čas " -"strežnika (časovni pas ni upoštevan). Vsi opisi orodij in časovne oznake so " -"izražene kot UTC. Časovne značke so potem določene glede na lokalni čas " -"podatkovne baze. Eksplicitno lahko določite časovni pas v ISO 8601 formatu, če " -"določite začetni in/ali končni čas." +"Izberite enega ali več stolpcev, ki bodo prikazani v oznakah. Če ne " +"izberete stolpca, bodo prikazani vsi." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" +msgstr "Onemogoči časovno obdobje" #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "" @@ -16270,6 +16191,10 @@ msgstr "" "Upravlja ali je polje \"time_range\" iz trenutnega pogleda lahko\n" "\tposredovano grafikonu, ki vsebuje podatke oznak slojev." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" +msgstr "Onemogoči granulacijo časa" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 msgid "" "This controls whether the time grain field from the current\n" @@ -16279,4075 +16204,4007 @@ msgstr "" "Upravlja ali je polje časovne granulacije iz trenutnega pogleda lahko\n" " posredovano grafikonu, ki vsebuje podatke oznak slojev." -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will be in %s." +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" msgstr "" -"Nadzorna plošča se trenutno samodejno osvežuje. Naslednja samodejna osvežitev bo " -"čez %s." +"Časovna razlika v naravnem (angleškem) jeziku\n" +" (primer: 24 hours, 7 days, 56 weeks, 365 days)" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Prikaži nastavitve" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Nastavite kako se tukaj prikazuje vrhnja plast." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "Obroba sloja z oznakami" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Slog" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "Zapolnjen" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" +msgstr "Črtkano" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "Dolgo-črtkano" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" +msgstr "Pikčasto" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "Prosojnost sloja z oznakami" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Barva" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "Samodejne barve" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "Prikaže ali skrije markerje časovne serije" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" +msgstr "Skrij črto" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" +msgstr "Skrije črto časovne serije" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Nastavitve sloja" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Osnovne nastavitve sloja z oznakami." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Obvezno" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "" -"Nadzorna plošča se upravlja eksterno in je ni mogoče urediti znotraj Superseta" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Skrij sloj" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the list of " -"dashboards. Favorite it to see it there or access it by using the URL directly." -msgstr "" -"Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih plošč. " -"Uvrstite jo med priljubljene, da jo boste videli tam, ali pa uporabite URL za " -"neposredni dostop." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "Prikaži oznako" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 -msgid "" -"This dashboard is not published, it will not show up in the list of dashboards. " -"Click here to publish this dashboard." -msgstr "" -"Nadzorna plošča ni objavljena in se ne bo prikazala na seznamu nadzornih plošč. " -"Kliknite tukaj za njeno objavo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "Če želite vedno prikazati naslov oznake" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" -msgstr "Nadzorna plošča je sedaj skrita" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Tip sloja z oznakami" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" -msgstr "Nadzorna plošča je sedaj objavljena" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Izberite tip sloja z oznakami" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "Nadzorna plošča je objavljena. Kliknite, da jo uvrstite med osnutke." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "Tip vira oznak" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following id to " -"the SDK:" -msgstr "" -"Nadzorna plošča je pripravljena za vgradnjo. V svoji aplikaciji v SDK vključite " -"naslednji ID:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "Izberite vir svojih oznak" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "Nadzorna plošča je bila uspešno shranjena." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" +msgstr "Vir oznak" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1184 -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "" -"Podatkovna baza se upravlja eksterno in je ni mogoče urediti znotraj Superseta" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Odstrani" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 -msgid "" -"This database table does not contain any data. Please select a different table." -msgstr "Tabela podatkovne baze ne vsebuje podatkov. Izberite drugo tabelo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" +msgstr "Časovna vrsta" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" -"Podatkovni set se upravlja eksterno in ga ni mogoče urediti znotraj Superseta" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Uredi sloj z oznakami" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "Podatkovni set ni uporabljen v nobenem grafikonu." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Dodaj sloj z oznakami" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "Določa element, ki bo izrisan na grafikonu" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Prazen izbor" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "Določa stopnjo hierarhije" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Dodaj element" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1487 -msgid "" -"This field is used as a unique identifier to attach the calculated dimension to " -"charts. It is also used as the alias in the SQL query." -msgstr "" -"To polje se uporablja kot unikaten ID za vključitev izračunane dimenzije v " -"grafikon. Uporablja se tudi kot alias v SQL-poizvedbi." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Odstrani element" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1247 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"This field is used as a unique identifier to attach the metric to charts. It is " -"also used as the alias in the SQL query." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -"To polje se uporablja kot unikaten ID za vključitev mere v grafikon. Uporablja se " -"tudi kot alias v SQL-poizvedbi." +"Barvna shema je bila preglasovana z barvami oznak po meri.\n" +" Preverite JSON-metapodatke v naprednih nastavitvah" -#: superset/connectors/sqla/views.py:345 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This fields acts a Superset view, meaning that Superset will run a query against " -"this string as a subquery." +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -"To polje se obnaša kot Supersetov pogled, kar pomeni, da bo Superset izvedel " -"poizvedbo za ta niz kot podpoizvedbo." +"Barvna shema je določena s povezano nadzorno ploščo.\n" +" Barvno shemo uredite v nastavitvah nadzorne plošče." -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Ta filter ne obstaja v nadzorni plošči in ne bo uveljavljen." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "nadzorna plošča" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 -msgid "This filter might be incompatible with current dataset" -msgstr "Ta filter je lahko nekompatibilen s trenutnim podatkovnim setom" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" +msgstr "Shema nadzorne plošče" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "Ta set filtrov je enak: \"%s\"" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "Izberite barvno shemo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "Ta funkcionalnost je v vašem okolju onemogočena zaradi varnosti." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" +msgstr "Izberite shemo" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:460 -msgid "" -"This is the condition that will be added to the WHERE clause. For example, to " -"only return rows for a particular client, you might define a regular filter with " -"the clause `client_id = 9`. To display no rows unless a user belongs to a RLS " -"filter role, a base filter can be created with the clause `1 = 0` (always false)." -msgstr "" -"To je pogoj, ki bo dodan WHERE stavku. Npr., če želite dobiti vrstice za določeno " -"stranko, lahko definirate regularni filter z izrazom 'id_stranke = 9'. Če ne " -"želimo prikazati vrstic, razen če uporabnik pripada RLS vlogi, lahko filter " -"ustvarimo z izrazom `1 = 0` (vedno FALSE)." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" +msgstr "Prikaži manj stolpcev" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the dashboard. It is " -"dynamically generated when adjusting the widgets size and positions by using drag " -"& drop in the dashboard view" -msgstr "" -"Ta JSON objekt opisuje postavitev pripomočkov na nadzorni plošči. Ustvari se " -"dinamično, ko prilagajamo velikost in postavitev pripomočkov z uporabo " -"povleci&spusti v pogledu nadzorne plošče" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" +msgstr "Prikaži vse stolpce" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "Markdown komponenta ima napako." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "Število decimalk" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "Markdown komponenta ima napako. Povrnite nedavne spremembe." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "Število decimalnih mest za zaokroževanje števil" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "To je lahko sproženo z/s:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" +msgstr "Min. širina" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:200 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This metric is used to define row selection criteria (how the rows are sorted) if " -"a series or row limit is present. If not defined, it reverts to the first metric " -"(where appropriate)." +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -"Mera, ki določa kako so razvrščene vrstice, če je določena omejitev serij ali " -"vrstic. Če ni določena, se uporabi prva mera (kjer je ustrezno)." +"Privzeta min. širina stolpca v pikslih. Dejanska širina bo lahko večja, " +"če drugi stolpci ne potrebujejo veliko prostora" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -msgid "This metric might be incompatible with current dataset" -msgstr "Ta mera je lahko nekompatibilna s trenutnim podatkovnim setom" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "Poravnava besedila" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "Vodoravna poravnava" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "Prikaži grafe v celicah" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -"V tem sklopu lahko nastavite način uporabe rezine\n" -" za ustvarjanje oznak." +"Če želite poravnati pozitivne in negativne vrednosti v stolpčnem " +"grafikonu celic pri 0" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 -#: superset-frontend/src/explore/controlPanels/sections.tsx:122 -msgid "" -"This section contains options that allow for advanced analytical post processing " -"of query results" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -"Ta sekcija vsebuje možnosti, ki omogočajo napredno analitično poprocesiranje " -"rezultatov poizvedb" +"Če želite obarvati številske vrednosti, ko so le-te pozitivne ali " +"negativne" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:581 -msgid "This section contains validation errors" -msgstr "Ta sekcija vsebuje validacijske napake" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" +msgstr "Prireži celice" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" +msgstr "Prireži dolge celice na \"min. širino\" nastavljeno zgoraj" -#: superset-frontend/src/embedded/index.tsx:109 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"This session has encountered an interruption, and some controls may not work as " -"intended. If you are the developer of this app, please check that the guest token " -"is being generated correctly." +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -"Ta seja je bila prekinjena in nekateri kontrolniki mogoče ne delujejo kot bi " -"morali. Če ste razvijalec te aplikacije, preverite, da je žeton za gosta pravilno " -"generiran." +"Prilagodi mere grafikona ali stolpce s predponami ali priponami valute. " +"Izberite simbol ali napišite lastnega." -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 -msgid "This table already has a dataset" -msgstr "Ta tabela že ima podatkovni set" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "Oblika zapisa majhnih števil" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 msgid "" -"This table already has a dataset associated with it. You can only associate one " -"dataset with a table.\n" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -"Ta tabela že ima povezan podatkovni set. S tabelo je lahko povezan le en " -"podatkovni set.\n" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "Ta vrednost mora biti večja od leve ciljne vrednosti" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" -msgstr "Ta vrednost mora biti manjša od desne ciljne vrednosti" - -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 -msgid "This visualization type does not support cross-filtering." -msgstr "Ta tip vizualizacije ni podpira medsebojnih filtrov." - -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:73 -msgid "This visualization type is not supported." -msgstr "Ta tip vizualizacije ni podprt." - -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "To je bilo sproženo z/s:" -msgstr[1] "To je bilo sproženo z/s:" -msgstr[2] "To je bilo sproženo z/s:" -msgstr[3] "To je bilo sproženo z/s:" +"D3 format zapisa za števila med -1.0 in 1.0. Uporabno, če želite različno" +" število števk za majhna in velika števila" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." -msgstr "To bo odstranilo trenutno konfiguracijo za vgrajevanje." - -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 -msgid "Threshold" -msgstr "Prag" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +msgid "Display" +msgstr "Prikaz" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" -msgstr "Mejna vrednost alfa za določanje značilnosti" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +msgid "Number formatting" +msgstr "Oblika zapisa števila" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 -#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 -msgid "Threshold: " -msgstr "Prag: " +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" +msgstr "Uredi oblikovanje" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" -msgstr "Sličice" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "Dodaj novo pravilo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "Četrtek" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "Dodaj novo pravilo za barvo" -# SUPERSET UI -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:40 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -#: superset-frontend/src/explore/controlPanels/sections.tsx:68 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 -msgid "Time" -msgstr "Čas" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "opozorilo" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Column" -msgstr "Časovni stolpec" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" +msgstr "napaka" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:303 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 -msgid "Time Comparison" -msgstr "Časovna primerjava" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "uspešno (temno)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" -msgstr "Oblika zapisa časa" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" +msgstr "opozorilo (temno)" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 -msgid "Time Grain" -msgstr "Granulacija časa" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "napaka (temno)" -#: superset/common/query_context_processor.py:383 -msgid "Time Grain must be specified when using Time Shift." -msgstr "Pri časovnem premiku mora biti definirana granulacija časa." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "Ta vrednost mora biti manjša od desne ciljne vrednosti" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:36 -msgid "Time Granularity" -msgstr "Granulacija časa" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "Ta vrednost mora biti večja od leve ciljne vrednosti" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -msgid "Time Lag" -msgstr "Časovni zaostanek" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Obvezno" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "Časovno obdobje" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Operator" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 -msgid "Time Ratio" -msgstr "Časovno razmerje" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "Leva vrednost" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" -msgstr "Časovna vrsta" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "Desna vrednost" -#: superset/viz.py:1136 -msgid "Time Series - Bar Chart" -msgstr "Časovna vrsta - Stolpčni grafikon" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Ciljna vrednost" -#: superset/viz.py:929 -msgid "Time Series - Line Chart" -msgstr "Časovna vrsta - Črtni grafikon" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "Izberite stolpec" -#: superset/viz.py:2602 -msgid "Time Series - Nightingale Rose Chart" -msgstr "Časovna vrsta - Nightingale Rose grafikon" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +msgid "Color: " +msgstr "Barva: " -#: superset/viz.py:2530 -msgid "Time Series - Paired t-test" -msgstr "Časovna vrsta - t-test za odvisne vzorce" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" +msgstr "Spodnji prag mora biti manjši od zgornjega" -#: superset/viz.py:1193 -msgid "Time Series - Percent Change" -msgstr "Časovna vrsta - Procentualna sprememba" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +msgid "Upper threshold must be greater than lower threshold" +msgstr "Zgornji prag mora biti večji od spodnjega" -#: superset/viz.py:1145 -msgid "Time Series - Period Pivot" -msgstr "Časovna vrsta - Vrtenje period" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +msgid "Isoline" +msgstr "Plastnica" -#: superset/viz.py:1201 -msgid "Time Series - Stacked" -msgstr "Časovna vrsta - Naložen graf" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +msgid "Threshold" +msgstr "Prag" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:61 -msgid "Time Series Options" -msgstr "Možnosti časovne vrste" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 +msgid "" +"Defines the value that determines the boundary between different regions " +"or levels in the data " +msgstr "Določa vrednost, ki razmejuje različna področja oziroma nivoje podatkov " -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 -msgid "Time Shift" -msgstr "Časovni zamik" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +msgid "The width of the Isoline in pixels" +msgstr "Debelina plastnic v pikslih" -#: superset/viz.py:706 -msgid "Time Table View" -msgstr "Pogled urnika" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +msgid "The color of the isoline" +msgstr "Barva plastnice" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -#: superset-frontend/src/explore/constants.ts:129 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "Časovni stolpec" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +msgid "Isoband" +msgstr "Površinska plastnica" -#: superset/models/helpers.py:1678 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "Časovni stolpec \"%(col)s\" ne obstaja v podatkovnem setu" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +msgid "Lower Threshold" +msgstr "Spodnji prag" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "Vtičnik za časovni filter" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +msgstr "Spodnji prag za površinske plastnice" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:773 -msgid "Time column to apply dependent temporal filter to" -msgstr "Časovni stolpec za časovno filtriranje za" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +msgid "Upper Threshold" +msgstr "Zgornji prag" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:774 -msgid "Time column to apply time range to" -msgstr "Časovni stolpec za časovno obdobje za" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" +msgstr "Zgornji prag za površinske plastnice" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:183 -msgid "Time comparison" -msgstr "Časovna primerjava" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +msgid "The color of the isoband" +msgstr "Barva površinske plastnice" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" -msgstr "" -"Časovna razlika v naravnem (angleškem) jeziku\n" -" (primer: 24 hours, 7 days, 56 weeks, 365 days)" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" +msgstr "Klikni za dodajanje plastnice" -#: superset/commands/chart/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." -msgstr "" -"Časovna razlika je nejasna. Podajte [%(human_readable)s ago] ali " -"[%(human_readable)s later]." +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "Predpona" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" -msgstr "Časovni filter" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "Pripona" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:340 -msgid "Time format" -msgstr "Oblika zapisa časa" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "Predpona ali pripona valute" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 -#: superset-frontend/src/explore/constants.ts:130 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "Granulacija časa" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "Predpona ali pripona" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" -msgstr "Vtičnik za filter časovne granulacije" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "Simbol valute" -#: superset/utils/pandas_postprocessing/prophet.py:115 -msgid "Time grain missing" -msgstr "Časovna granulacija manjka" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "Valuta" -#: superset-frontend/src/explore/constants.ts:131 -msgid "Time granularity" -msgstr "Granulacija časa" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Uredi podatkovni set" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 -msgid "Time in seconds" -msgstr "Čas v sekundah" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +msgstr "" +"Za urejanje morate biti lastnik podatkovnega seta. Za dostop do urejanja " +"kontaktirajte lastnika podatkovnega seta." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -msgid "Time lag" -msgstr "Časovni zaostanek" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Ogled v SQL laboratoriju" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 -#: superset-frontend/src/explore/constants.ts:128 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 -msgid "Time range" -msgstr "Časovno obdobje" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Predogled poizvedbe" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" +msgstr "Shrani kot podatkovni set" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" +msgstr "Manjkajo parametri URL-ja" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "V URL-ju manjkata parametra dataset_id ali slice_id." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -msgid "Time ratio" -msgstr "Časovno razmerje" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "Podatkovni set, povezan s tem grafikonom, je bil izbrisan." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:69 -msgid "Time related form attributes" -msgstr "S časom povezani atributi prikaza" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "TIP OBDOBJA" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 -msgid "Time series" -msgstr "Časovna vrsta" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Dejansko časovno obdobje" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "Stolpci s časovnimi vrstami" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "UPORABI" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 -msgid "Time shift" -msgstr "Časovni zamik" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Uredi časovno obdobje" -#: superset/commands/chart/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." -msgstr "" -"Časovni niz je nejasen. Podajte [%(human_readable)s ago] ali [%(human_readable)s " -"later]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "Nastavi napredno časovno obdobje " -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -msgid "Time-series Area Chart" -msgstr "Ploščinski grafikon časovne vrste" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "ZAČETEK (VKLJUČEN)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:63 -msgid "" -"Time-series Area chart are similar to line chart in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each other. An " -"area chart in Superset can be stream, stack, or expand." -msgstr "" -"Ploščinski grafikoni časovne vrste so podobni črtnim grafikonom, saj " -"predstavljajo spremenljivke v istem razmerju, vendar se pri ploščinskih " -"grafikonih mere nalagajo ena na drugo." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Začetni datum je vključen v časovno obdobje" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 -msgid "Time-series Bar Chart" -msgstr "Stolpčni grafikon za časovno vrsto" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "KONEC (NI VKLJUČEN)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 -msgid "Time-series Bar Chart (legacy)" -msgstr "Stolpčni grafikon za časovno vrsto (zastarelo)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Končni datum ni vključen v časovno obdobje" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time as a " -"series of bars." -msgstr "" -"Stolpčni grafikoni časovne vrste se uporabljajo za prikaz sprememb mere skozi čas " -"s pomočjo niza stolpcev." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Nastavi časovno obdobje: Prejšnji ..." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:67 -msgid "Time-series Chart" -msgstr "Grafikon časovne vrste" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Nastavi časovno obdobje: Zadnji ..." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Time-series Line Chart" -msgstr "Črtni grafikon časovne vrste" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Nastavi prilagojeno časovno obdobje" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" -msgstr "Časovna vrsta - Procentualna sprememba" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Relativne vrednosti" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" -msgstr "Časovna serija - Vrtenje periode" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "Relativno obdobje" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Time-series Scatter Plot" -msgstr "Raztreseni grafikon časovne vrste" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "Sidraj na" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:67 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units, and the " -"points are connected in order. It shows a statistical relationship between two " -"variables." -msgstr "" -"Raztreseni grafikon časovne vrste prikazuje podatkovne točke v povezanem redu in " -"prikazuje statistično razmerje med spremenljivkami." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "ZDAJ" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Time-series Smooth Line" -msgstr "Zglajeni črtni grafikon časovne vrste" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Datum/Čas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:67 -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." -msgstr "" -"Zglajeni grafikon časovne vrste je izpeljanka črtnega grafikona, ki zgladi ostre " -"robove krivulje." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "Vrne datum-čas." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 -msgid "Time-series Stepped Line" -msgstr "Stopnični črtni grafikon časovne vrste" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "Sintaksa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:58 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of line " -"chart but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at irregular " -"intervals." -msgstr "" -"Stopnični grafikon časovne vrste je izpeljanka črtnega grafikona, pri čemer " -"krivuljo tvorijo stopnice med posameznimi točkami. Koristen je za prikaz sprememb " -"na posameznih intervalih." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Primer" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "Tabela s časovno vrsto" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "Premakne dani nabor datumov za definirano obdobje." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:68 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken over " -"regular time intervals. Line chart is a type of chart which displays information " -"as a series of data points connected by straight line segments. It is a basic " -"type of chart common in many fields." -msgstr "" -"Črtni grafikon časovne vrste je osnovni grafikon, ki se uporablja na različnih " -"področjih. Uporablja se za vizualizacijo meritev zajetih skozi čas. Posamezne " -"točke so med seboj povezane z ravnimi črtami." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "Zaokroži datum-čas, glede na definirano časovno enoto." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "Napaka pretečenega časa" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "Pridobi zadnji datum glede na časovno enoto." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:391 -msgid "Timestamp format" -msgstr "Oblika zapisa časovne značke" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "Določi datum praznika" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 -#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 -msgid "Timezone" -msgstr "Časovni pas" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Prejšnji" -#: superset/connectors/sqla/views.py:336 -msgid "Timezone offset (in hours) for this datasource" -msgstr "Razlika časovnega pasu (v urah) za ta podatkovni vir" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "Prilagojen" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "Izbira časovnega pasa" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "zadnji dan" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" -msgstr "Drobno" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "zadnji teden" -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 -#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 -#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 -msgid "Title" -msgstr "Naslov" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "zadnji mesec" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 -msgid "Title Column" -msgstr "Stolpec z naslovi" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "zadnje četrletje" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" -msgstr "Naslov je obvezen" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "zadnje leto" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "Naslov ali `Slug`" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "prejšnji koledarski teden" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Za filtriranje po meri uporabite prilagojen SQL zavihek." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "prejšnji koledarski mesec" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "Za pridobitev berljivega URL-ja za nadzorno ploščo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "prejšnje koledarsko leto" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "Orodja" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "Sekunde %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "Opis orodja" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" +msgstr "Minute %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:137 -msgid "Tooltip Contents" -msgstr "Vsebina opisa orodja" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "Ure %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 -msgid "Tooltip sort by metric" -msgstr "Mera za razvrščanje opisa orodja" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Dnevi %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 -msgid "Tooltip time format" -msgstr "Oblika zapisa časa v opisu orodja" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Tedni %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:379 -msgid "Top" -msgstr "Zgoraj" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "Meseci %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 -msgid "Top left" -msgstr "Zgoraj levo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr "Četrtletja %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 -msgid "Top right" -msgstr "Zgoraj desno" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" +msgstr "Leta %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Top to Bottom" -msgstr "Od vrha proti dnu" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "Fiksen Datum/Čas" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:91 -msgid "Total" -msgstr "Skupaj" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "Relativen Datum/Čas" -#: superset/charts/post_processing.py:72 -#, python-format -msgid "Total (%(aggfunc)s)" -msgstr "Skupaj (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "Zdaj" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 -#, python-format -msgid "Total (%(aggregatorName)s)" -msgstr "Skupaj (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "Polnoč" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -msgid "Total value" -msgstr "Skupna vsota" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "Shranjeni izrazi" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:337 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Shranjeno" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format -msgid "Total: %s" -msgstr "Skupaj: %s" +msgid "%s column(s)" +msgstr "Stolpci: %s" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 -msgid "Totals" -msgstr "Vsota" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" +msgstr "Ni najdenih časovnih stolpcev" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Track job" -msgstr "Sledi opravilom" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" +msgstr "Shranjeni izrazi niso najdeni" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -msgid "Transformable" -msgstr "Prilagodljiv" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" +"Dodaj izračunan časovni stolpec v podatkovni set v oknu \"Uredi " +"podatkovni vir\"" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "Prozorno" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +msgstr "Dodaj izračunan stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:262 -msgid "Transpose pivot" -msgstr "Transponirano vrtenje" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" +msgstr " za označitev stolpca kot časovnega" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 -msgid "Tree Chart" -msgstr "Drevesni grafikon" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" +msgstr " za dodajanje izračunanih stolpcev" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 -msgid "Tree layout" -msgstr "Oblika drevesa" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Preprosto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 -msgid "Tree orientation" -msgstr "Orientacija drevesa" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" +msgstr "Označite stolpec kot časoven preko okna \"Uredi podatkovni vir\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 -msgid "Treemap" -msgstr "Drevesni grafikon s pravokotniki" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "Prilagojen SQL" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" -msgstr "Trend" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "Moj stolpec" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 -msgid "Triangle" -msgstr "Trikotnik" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" +msgstr "Ta filter je lahko nekompatibilen s trenutnim podatkovnim setom" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Trigger Alert If..." -msgstr "Sproži opozorilo v primeru ..." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" +msgstr "Ta grafikon je lahko nekompatibilen s trenutnim podatkovnim setom" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 -msgid "Truncate Axis" -msgstr "Prireži os" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "Spustite stolpec sem ali kliknite" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:141 -msgid "Truncate Cells" -msgstr "Prireži celice" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "Kliknite za urejanje oznake" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:364 -msgid "Truncate Metric" -msgstr "Odstrani mero" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "Spustite stolpce/mere sem ali kliknite" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 -msgid "Truncate X Axis" -msgstr "Prireži X-os" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "Ta mera je lahko nekompatibilna s trenutnim podatkovnim setom" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +#, fuzzy +msgid "Drop a column/metric here or click" +msgstr "Spustite stolpec/mero sem ali kliknite" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 msgid "" -"Truncate X Axis. Can be overridden by specifying a min or max bound. Only " -"applicable for numercal X axis." +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" -"Prireži X-os. Če določite spodnjo ali zgornjo mejo, preprečite prirezovanje. " -"Deluje samo za numerično X os." +"\n" +" Ta filter izvira iz konteksta nadzorne plošče.\n" +" Pri shranjevanju grafikona se ne bo shranil.\n" +" " -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:235 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:223 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:217 -msgid "Truncate Y Axis" -msgstr "Prireži Y-os" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" +msgstr "Možnosti: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:350 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:238 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:220 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "Izberite zadevo" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -"Prireži Y-os. Če določite spodnjo ali zgornjo mejo, preprečite prirezovanje." +"Tak stolpec ni najden. Za filtriranje po meri uporabite prilagojen SQL " +"zavihek." -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 -msgid "Truncate long cells to the \"min width\" set above" -msgstr "Prireži dolge celice na \"min. širino\" nastavljeno zgoraj" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Za filtriranje po meri uporabite prilagojen SQL zavihek." -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." -msgstr "Zaokroži datum-čas, glede na definirano časovno enoto." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" +msgstr "Operatorji: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "" -"Poskusite uporabiti druge filtre oz. zagotovite, da so v podatkovnem viru podatki" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "Izberite operator" -#: superset-frontend/src/components/ListView/ListView.tsx:447 -msgid "Try different criteria to display results." -msgstr "Za prikaz rezultatov poskusite z drugačnimi kriteriji." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "Možnosti komparatorja" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "Torek" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Vnesite vrednost sem" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -msgid "Tukey" -msgstr "Tukey" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Vrednost filtra (razlik. velikih/malih črk)" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/ChartList/index.tsx:373 -#: superset-frontend/src/pages/ChartList/index.tsx:589 -#: superset-frontend/src/pages/DatasetList/index.tsx:370 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "Tip" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" +msgstr "Napaka pri pridobivanju naprednega tipa" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1470 -#, python-format -msgid "Type \"%s\" to confirm" -msgstr "Vnesite \"%s\" za potrditev" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "izberite WHERE ali HAVING..." -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" -msgstr "Vnesite vrednost" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Filtrira po stolpcu" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Filtrira po merah" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "Vnesite vrednost sem" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" +msgstr "mera" -#: superset/commands/report/exceptions.py:73 -msgid "Type is required" -msgstr "Tip je obvezen" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Fiksno" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "Dovoljeni tipi Googlovih preglednic" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "Osnovan na meri" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 -msgid "Type of comparison, value difference or percentage" -msgstr "Vrsta primerjave, razlike vrednosti ali procenta" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Moja mera" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:396 -#, python-format -msgid "Type or Select [%s]" -msgstr "Vnesite ali izberite [%s]" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Dodaj mero" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "UI-nastavitve" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" +msgstr "Izberite agregacijske možnosti" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" +msgstr "Agreg. funkcije: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "Parametri URL" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "Izberite shranjene mere" -#: superset-frontend/src/explore/controlPanels/sections.tsx:53 -msgid "URL parameters" -msgstr "Parametri URL" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" +msgstr "Shranjene mere: %s" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "URL slug" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Shranjena mera" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:536 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "Novega zavihka ni mogoče dodati v sistem. Kontaktirajte administratorja." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" +msgstr "Shranjene mere niso najdene" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "Povezava na katalog \"%(catalog_name)s\" ni uspela." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" +msgstr "Dodaj mero v podatkovni set v oknu \"Uredi podatkovni vir\"" -#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/starrocks.py:159 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Povezava s podatkovno bazo \"%(database)s\" ni uspela." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" +msgstr " za dodajanje mer" -#: superset/db_engine_specs/bigquery.py:179 -msgid "" -"Unable to connect. Verify that the following roles are set on the service " -"account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job " -"User\" and the following permissions are set \"bigquery.readsessions.create\", " -"\"bigquery.readsessions.getData\"" -msgstr "" -"Povezava neuspešna. Preverite če so v servisnem računu nastavljene naslednje " -"vloge: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job " -"User\" in so nastavljena naslednja dovoljenja: \"bigquery.readsessions.create\", " -"\"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "Preproste ad-hoc mere za ta podatkovni set niso omogočene" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 -msgid "Unable to create chart without a query id." -msgstr "Grafikona ni mogoče ustvariti brez id-ja poizvedbe." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "stolpec" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" -msgstr "Vrednosti ni mogoče dešifrirati" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "agregacija" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" -msgstr "Vrednosti ni mogoče šifrirati" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "Ad-hoc SQL mere po meri za ta podatkovni set niso omogočene" -#: superset/utils/date_parser.py:393 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 #, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Ni mogoče najti takšnega praznika: [%(holiday)s]" - -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 -msgid "" -"Unable to load columns for the selected table. Please select a different table." -msgstr "Stolpcev za izbrano tabelo ni bilo mogoče naložiti. Izberite drugo tabelo." +msgid "Error while fetching data: %s" +msgstr "Napaka pri pridobivanju podatkov: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:502 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." -msgstr "" -"Stanja urejevalnika poizvedb ni mogoče prenesti v sistem. Superset bo ponovil " -"poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Stolpci s časovnimi vrstami" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:456 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. Please " -"contact your administrator if this problem persists." -msgstr "" -"Stanja poizvedbe ni mogoče prenesti v sistem. Superset bo ponovil poskus kasneje. " -"Če se težava ponavlja, kontaktirajte administratorja." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" +msgstr "Dejanska vrednost" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:438 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." -msgstr "" -"Stanja sheme tabele ni mogoče prenesti v sistem. Superset bo ponovil poskus " -"kasneje. Če se težava ponavlja, kontaktirajte administratorja." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "Hitri grafikon" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 -msgid "Unable to retrieve dashboard colors" -msgstr "Neuspešno pridobivanje barv nadzorne plošče" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "Povprečje obdobja" -#: superset/views/database/views.py:277 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in " -"database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"CSV datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v " -"podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" +msgstr "Naslov stolpca" -#: superset/views/database/views.py:554 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in " -"database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Stolpčne datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" " -"v podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "Opis glave stolpca" -#: superset/views/database/views.py:412 -#, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in " -"database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Excel datoteke \"%(filename)s\" ni mogoče naložiti v tabelo \"%(table_name)s\" v " -"podatkovni bazi \"%(db_name)s\". Sporočilo napake: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 +msgid "Type of comparison, value difference or percentage" +msgstr "Vrsta primerjave, razlike vrednosti ali procenta" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "Ni definirano" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Širina" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "Nedefinirano okno za drsečo operacijo" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "Širina hitrega grafikona" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -msgid "Undo the action" -msgstr "Razveljavi dejanje" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "Višina hitrega grafikona" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 -msgid "Undo?" -msgstr "Povrni?" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" +msgstr "Časovni zaostanek" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "Nepričakovana napaka" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset/commands/database/exceptions.py:137 -#: superset/commands/database/exceptions.py:142 -msgid "Unexpected error occurred, please check your logs for details" -msgstr "Zgodila se je nepričakovana napaka. Podrobnosti preverite v dnevnikih" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" +msgstr "Časovni zaostanek" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " -msgstr "Nepričakovana napaka: " +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" +msgstr "Časovno razmerje" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "Neznano" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" +msgstr "Število časovnih obdobij za izračun deleža" -#: superset/db_engine_specs/doris.py:216 -#, python-format -msgid "Unknown Doris server host \"%(hostname)s\"." -msgstr "Neznan Doris strežnik \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" +msgstr "Časovno razmerje" -#: superset/db_engine_specs/mysql.py:162 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Neznan MySQL strežnik \"%(hostname)s\"." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "Prikaži Y-os" -#: superset/db_engine_specs/presto.py:1356 -msgid "Unknown Presto Error" -msgstr "Neznana Presto napaka" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." +msgstr "" +"Prikaz Y-osi na hitrem grafikonu. Če je nastavljena vrednost min/max, " +"pokaže to, drugače pa glede na podatke." -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 -msgid "Unknown Status" -msgstr "Neznan status" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "Meje Y-osi" -#: superset/models/helpers.py:1601 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "Za razvrščanje je uporabljen neznan stolpec: %(col)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "Ročno nastavi min./max. vrednosti za y-os." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:358 -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 -msgid "Unknown error" -msgstr "Neznana napaka" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "Barvne meje" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" -msgstr "Neznana oblika vnosa" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" +"Številske meje za kodiranje barv od rdeče do modre.\n" +"\tZamenjajte števili za barve od modre do rdeče. Če želite čisto rdečo " +"ali modro,\n" +"\tvnesite samo min ali max." -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 -msgid "Unknown type" -msgstr "Neznan tip" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" +msgstr "Opcijski niz za d3-oblikovanje števila" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" -msgstr "Neznana vrednost" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" +msgstr "Niz za obliko števila" -#: superset/jinja_context.py:345 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Nevaren tip rezultata, ki ga vrne funkcija %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" +msgstr "Opcijski niz za d3-oblikovanje datuma" -#: superset/jinja_context.py:372 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Nevaren vzorec za ključ %(key)s: %(value_type)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" +msgstr "Niz za obliko datuma" -#: superset/utils/core.py:993 -#, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "Nepodprt tip izraza: %(clause)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" +msgstr "Konfiguracija stolpca" -#: superset/common/query_object.py:439 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Nepodprta poprocesirna operacija: %(operation)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "Izberite tip vizualizacije" -#: superset/jinja_context.py:356 +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 #, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "Nepodprt rezultat vračanja za metodo %(name)s" +msgid "Currently rendered: %s" +msgstr "Trenutno izrisano: %s" -#: superset/jinja_context.py:383 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "Nepodprta vrednost vzorca za ključ %(key)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "Priporočene oznake" -#: superset/utils/pandas_postprocessing/prophet.py:118 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Nepodprta časovna granulacija: %(time_grain)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "Išči vse grafikone" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 -msgid "Untitled Dataset" -msgstr "Neimenovan podatkovni set" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "Opisa ni na razpolago." -#: superset/views/sql_lab/views.py:93 -msgid "Untitled Query" -msgstr "Neimenovana poizvedba" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Vzorci" -#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 -msgid "Untitled query" -msgstr "Neimenovana poizvedba" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Ta tip vizualizacije ni podprt." -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 -msgid "Update" -msgstr "Posodobi" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" +msgstr "Ogled vseh grafikonov" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -msgid "Update chart" -msgstr "Posodobi grafikon" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Izberite tip vizualizacije" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "Posodabljanje grafikona je bilo ustavljeno" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Rezultati niso najdeni" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "Naloži" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "Superset grafikon" -#: superset-frontend/src/pages/DatabaseList/index.tsx:237 -msgid "Upload CSV" -msgstr "Naloži CSV" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Nov grafikon" -#: superset-frontend/src/features/home/RightMenu.tsx:190 -msgid "Upload CSV to database" -msgstr "Naloži CSV v podatkovno bazo" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Uredi lastnosti grafikona" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "Naloži prijavne podatke" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" +msgstr "Dodano na nadzorne plošče" -#: superset/databases/filters.py:79 -msgid "Upload Enabled" -msgstr "Nalaganje omogočeno" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" +msgstr "Izvozi v izvorni .CSV" -#: superset-frontend/src/pages/DatabaseList/index.tsx:251 -msgid "Upload Excel file" -msgstr "Naloži Excel-ovo datoteko" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "Izvozi v vrtilni .CSV" -#: superset-frontend/src/features/home/RightMenu.tsx:204 -msgid "Upload Excel file to database" -msgstr "Naloži Excel-ovo datoteko v podatkovno bazo" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" +msgstr "Izvozi v .JSON" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "Naloži JSON datoteko" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "Koda za vgradnjo" -#: superset-frontend/src/pages/DatabaseList/index.tsx:244 -msgid "Upload columnar file" -msgstr "Naloži stolpčno datoteko" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Zaženi v SQL laboratoriju" -#: superset-frontend/src/features/home/RightMenu.tsx:197 -msgid "Upload columnar file to database" -msgstr "Naloži stolpčno datoteko v podatkovno bazo" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Koda" -#: superset-frontend/src/pages/DatabaseList/index.tsx:234 -msgid "Upload file to database" -msgstr "Naloži datoteko v podatkovno bazo" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Tip označevanja" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 -msgid "Upper Threshold" -msgstr "Zgornji prag" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Izberite svoj priljubljen označevalni jezik" -#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 -msgid "Upper threshold must be greater than lower threshold" -msgstr "Zgornji prag mora biti večji od spodnjega" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Vstavite svojo kodo sem" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -msgid "Usage" -msgstr "Uporaba" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Parametri URL" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." -msgstr "Namesto tega uporabite meni: \"%(menuName)s\"." +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Dodatni parametri za poizvedbe z jinja predlogami" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, python-format -msgid "Use %s to open in a new tab." -msgstr "Uporabite %s za odpiranje v novem zavihku." +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Oznake in sloji" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" -msgstr "Uporabi razmerje površin" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Sloji z oznakami" -#: superset/views/database/forms.py:469 -msgid "Use Columns" -msgstr "Uporabi stolpce" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "Moje čudovite barve" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:201 -msgid "Use a log scale" -msgstr "Uporabi logaritemsko skalo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (manjše kot)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "Uporabi logaritemsko skalo za X-os" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (večje kot)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 -msgid "Use a log scale for the Y-axis" -msgstr "Uporabi logaritemsko skalo za Y-os" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (manjše ali enako)" -#: superset/db_engine_specs/base.py:2003 superset/db_engine_specs/clickhouse.py:215 -#: superset/db_engine_specs/databend.py:193 -#: superset/db_engine_specs/databricks.py:59 -msgid "Use an encrypted connection to the database" -msgstr "Uporabite šifrirano povezavo s podatkovno bazo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (večje ali enako)" -#: superset/db_engine_specs/base.py:2007 -msgid "Use an ssh tunnel connection to the database" -msgstr "Za povezavo s podatkovno bazo uporabite ssh-tunel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (je enako)" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" -"Uporabite enega izmed obstoječih grafikonov kot vir oznak.\n" -" Grafikon mora biti naslednjega tipa: [%s]" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (ni enako)" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:162 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "Oblikovanje datuma uporabi tudi, ko vrednost mere ni časovna značka" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Ni null (IS NOT NULL)" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 -msgid "Use legacy datasource editor" -msgstr "Uporabi zastareli urejevalnik podatkovnega vira" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 days" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "Uporabi mere kot vrhovni nivo grupiranja za stolpce ali vrstice" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 days" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "Uporabite le eno vrednost." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Dodajte način obveščanja" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:118 -msgid "Use the Advanced Analytics options below" -msgstr "Uporabite spodnje možnosti napredne analitike" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Dodajte način dostave" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service account." -msgstr "" -"Uporabite JSON datoteko, ki ste jo prenesli pri ustvarjanju servisnega računa." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Dodaj" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 -msgid "Use the edit button to change this field" -msgstr "Za spreminjanje tega polja uporabite gumb za urejanje" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" +msgstr "Uredi poročilo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" -msgstr "Ta sklop uporabite če želite poizvedbo za agregacijo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "Uredi opozorilo" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" -msgstr "Ta sklop uporabite, če želite poizvedbo za posamezne vrstice" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "Dodaj poročilo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:131 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "S tem definirate določeno barvo za vse kroge" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "Dodaj opozorilo" -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name from " -"the pluginʼs package.json" -msgstr "" -"Uporablja se za interno identifikacijo vtičnika. Naj bo nastavljeno na ime paketa " -"v vtičnikovem package.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Naslov poročila" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics along " -"two axes. Examples: Sales numbers by region and month, tasks by status and " -"assignee, active users by age and location. Not the most visually stunning " -"visualization, but highly informative and versatile." -msgstr "" -"Ponazori podatke na podlagi združevanja več statistik vzdolž dveh osi. Npr. " -"prodaja po regijah in mesecih, opravila po statusih in izvajalcih, itd." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Naslov opozorila" -#: superset-frontend/src/features/home/RightMenu.tsx:475 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 -#: superset/views/log/__init__.py:30 -msgid "User" -msgstr "Uporabnik" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Aktiven" -#: superset/errors.py:120 -msgid "User doesn't have the proper permissions." -msgstr "Uporabnik nima ustreznih dovoljenj." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Status opozorila" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" -msgstr "Uporabnik mora obvezno izbrati vrednost pred uveljavitvijo filtra" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQL-poizvedba" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "Uporabnik mora izbrati vrednost za ta filter" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" +msgstr "Rezultat te poizvedbe mora biti številska vrednost" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "Uporabnikova poizvedba" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Sproži opozorilo v primeru ..." -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1982 superset/db_engine_specs/clickhouse.py:200 -#: superset/db_engine_specs/databend.py:183 -msgid "Username" -msgstr "Uporabniško ime" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "Pogoj" -#: superset/db_engine_specs/postgres.py:289 -msgid "Users are not allowed to set a search path for security reasons." -msgstr "Uporabnikom ni dovoljeno nastaviti iskalne poti zaradi varnostnih razlogov." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Urnik poročanja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data" -msgstr "" -"Za prikaz prostorske porazdelitve podatkov uporablja ocenjevanje Gaussove jedrno " -"gostote" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Urnik statusov opozoril" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The position of " -"the dial represents the progress and the terminal value in the gauge represents " -"the target value." -msgstr "" -"Uporablja števec za prikaz napredovanja mere k ciljni vrednosti. Položaj kazalca " -"predstavlja napredek, končna vrednost na števcu pa ciljno vrednost." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "Časovni pas" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 -msgid "" -"Uses circles to visualize the flow of data through different stages of a system. " -"Hover over individual paths in the visualization to understand the stages a value " -"took. Useful for multi-stage, multi-group visualizing funnels and pipelines." -msgstr "" -"S pomočjo krogov prikaže potek podatkov na različnih nivojih sistema. S premikom " -"kurzorja prikaže vrednosti na posameznem nivoju. Uporabno za večnivojsko, " -"večskupinsko vizualizacijo." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Nastavitve urnika" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Value" -msgstr "Vrednost" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Hranjenje dnevnikov" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" -msgstr "Domena vrednosti" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Pretek delovanja" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:355 -msgid "Value Format" -msgstr "Oblika zapisa vrednosti" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Čas v sekundah" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:250 -msgid "Value bounds" -msgstr "Meje vrednosti" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" +msgstr "sekunde" -#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:5 -#, python-format -msgid "Value cannot exceed %s" -msgstr "Vrednost ne sme presegati %s" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Obdobje mirovanja" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:163 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:295 -msgid "Value format" -msgstr "Oblika zapisa vrednosti" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Vsebina sporočila" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "Zahtevana je vrednost" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "Pošlji kot PNG" -#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 -#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 -#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 -msgid "Value must be greater than 0" -msgstr "Vrednost mora biti večja od 0" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "Pošlji kot CSV" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "Vrednosti so odvisne od drugih filtrov" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "Pošlji kot besedilo" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 -msgid "Values dependent on" -msgstr "Vrednosti so odvisne od" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +msgid "Ignore cache when generating report" +msgstr "Ne upoštevaj predpomnjenja pri ustvarjanju poročila" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only show " -"relevant values" -msgstr "Vrednosti izbrane v drugih filtrih bodo vplivale na možnosti filtra" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" +msgstr "Širina zaslonske slike" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "Vrste vozil" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" +msgstr "Vnesi poljubno širino v pikslih" -#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "Podrobno ime" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Način obveščanja" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 -#: superset-frontend/src/features/home/RightMenu.tsx:502 -msgid "Version" -msgstr "Verzija" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "poročilo" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 -msgid "Version number" -msgstr "Številka verzije" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" +msgstr "%s posodobljeni" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -msgid "Vertical" -msgstr "Navpično" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" +msgstr "CRON urnik" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -msgid "Vertical (Left)" -msgstr "Navpično (levo)" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "CRON izraz" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "Igralne konzole" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Poročilo poslano" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 -#: superset-frontend/src/pages/AlertReportList/index.tsx:378 -msgid "View" -msgstr "Ogled" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Opozorilo sproženo, obvestilo poslano" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:264 -msgid "View All »" -msgstr "Ogled vseh »" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Pošiljanje poročila" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -msgid "View Dataset" -msgstr "Ogled podatkovnega seta" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Opozorilo aktivno" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Poročilo ni uspelo" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:133 -msgid "View all charts" -msgstr "Ogled vseh grafikonov" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Opozorilo ni uspelo" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:445 -msgid "View as table" -msgstr "Ogled kot tabela" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Ni ni sproženo" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 -msgid "View in SQL Lab" -msgstr "Ogled v SQL laboratoriju" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Opozorilo sproženo, v obdobju mirovanja" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "Ogled ključev in indeksov (%s)" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "Način dostave" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:429 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 -msgid "View query" -msgstr "Ogled poizvedbe" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "Izberite način dostave" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "Ogledane" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Prejemniki so ločeni z \",\" ali \";\"" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 -#, python-format -msgid "Viewed %s" -msgstr "Ogledane %s" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +msgid "Queries" +msgstr "Poizvedbe" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:283 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "Pogled" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" +msgstr "Noben element trenutno nima te oznake" -#: superset-frontend/src/pages/DatasetList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:538 -msgid "Virtual" -msgstr "Virtualen" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "Dodaj oznako elementom" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 -msgid "Virtual (SQL)" -msgstr "Virtualen (SQL-poizvedba)" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "annotation_layer" -#: superset-frontend/src/pages/DatasetList/index.tsx:299 -msgid "Virtual dataset" -msgstr "Virtualen podatkovni set" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" +msgstr "Predloga oznake posodobljena" -#: superset/connectors/sqla/models.py:1499 superset/connectors/sqla/utils.py:107 -#: superset/models/helpers.py:1077 -msgid "Virtual dataset query cannot be empty" -msgstr "Poizvedba na virtualnem podatkovnem setu ne sme biti prazna" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" +msgstr "Predloga oznake ustvarjena" -#: superset/connectors/sqla/models.py:1502 superset/models/helpers.py:1080 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "" -"Poizvedba na virtualnem podatkovnem setu ne sme biti sestavljena iz več stavkov" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Uredi lastnosti sloja z oznakami" -#: superset/connectors/sqla/models.py:1467 superset/models/helpers.py:1103 -msgid "Virtual dataset query must be read-only" -msgstr "Poizvedba na virtualnem podatkovnem setu mora biti samo za branje" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Ime sloja z oznakami" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:209 -msgid "Visual Tweaks" -msgstr "Nastavitve izgleda" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Opis (viden bo na seznamu)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:123 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "Tip vizualizacije" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "oznaka" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is " -"visualized using its own line of points and each metric is represented as an edge " -"in the chart." -msgstr "" -"Prikaže vzporedni nabor mer za različne skupine. Vsaka skupina je prikazana s " -"svojim naborom točk in vsaka mera s povezavo na grafikonu." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "Označba je bila posodobljena" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at showcasing " -"the correlation or strength between two groups. Color is used to emphasize the " -"strength of the link between each pair of groups." -msgstr "Vizualizacija povezanih mer med pari skupin." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "Označba je bila shranjena" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in grid view." -msgstr "" -"Prikaz geoprostorskih podatkov kot so 3D zgradbe, parcele ali objekti v mrežnem " -"pogledu." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Uredi oznako" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 -msgid "" -"Visualize how a metric changes over time using bars. Add a group by column to " -"visualize group level metrics and how they change over time." -msgstr "" -"Prikaže spreminjanje mere skozi čas s pomočjo stolpcev. Dodajte stolpec za " -"združevanje po za prikaz mer na nivoju skupin in njihovega spreminjanja." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Dodaj oznako" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 -msgid "Visualize multiple levels of hierarchy using a familiar tree-like structure." -msgstr "Prikaz več hierarhičnih nivojev z drevesno strukturo." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "datum" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:64 -msgid "" -"Visualize two different series using the same x-axis. Note that both series can " -"be visualized with a different chart type (e.g. 1 using bars and 1 using a line)." -msgstr "" -"Prikaže dva različna niza na isti x-osi. Niza sta lahko prikazana z različnim " -"tipom grafikona (npr. en s stolpci in drug s črto)." +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Dodatne informacije" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:67 -msgid "" -"Visualize two different time series using the same x-axis. Note that each time " -"series can be visualized differently (e.g. 1 using bars and 1 using a line)." -msgstr "" -"Prikaže dve različni časovni vrsti na isti x-osi. Časovni vrsti sta lahko " -"prikazani različno (npr. ena s stolpci in druga s črto)." +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Prosim, potrdite" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X axis, Y " -"axis, and bubble size). Bubbles from the same group can be showcased using bubble " -"color." -msgstr "" -"Prikaže mero v treh dimenzijah podatkov na istem grafikonu (x os, y os, velikost " -"mehurčka). Mehurčki v isti skupini so predstavljeni z barvo." +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Ali ste prepričani, da želite izbrisati" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:27 -msgid "Visualizes connected points, which form a path, on a map." -msgstr "Na zemljevidu prikaže povezane točke, ki tvorijo pot." +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, python-format +msgid "Modified %s" +msgstr "Zadnja sprememba %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:27 -msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox rendered map. " -"Polygons can be colored using a metric." -msgstr "" -"Prikaže geografsko območje kot poligone na zemljevidu zagotovljenim preko " -"storitve Mapbox. Poligoni so lahko obarvani glede na mero." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css_template" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a " -"calendar view. Gray values are used to indicate missing values and the linear " -"color scheme is used to encode the magnitude of each day's value." -msgstr "" -"Prikaže kako se je mera spreminjala s časom s pomočjo barvne lestvice in " -"koledarskega pogleda. Sive vrednosti ponazarjajo manjkajoče vrednosti. Amplituda " -"dnevnih vrednosti je ponazorjena z linearno barvno shemo." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Uredi lastnosti CSS predloge" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -msgid "" -"Visualizes how a single metric varies across a country's principal subdivisions " -"(states, provinces, etc) on a choropleth map. Each subdivision's value is " -"elevated when you hover over the corresponding geographic boundary." -msgstr "" -"Prikaže kako se posamezna mera spreminja glede na območja države (dežele, " -"province, itd.) na kloropletnem zemljevidu. Vsak podrazdelek se dvigne, ko z " -"miško preidete mejo njegovega območja." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Dodaj CSS predlogo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This chart is " -"being deprecated and we recommend using the Time-series Chart instead." -msgstr "" -"Prikaže več različnih časovnih vrst na istem grafikonu. Grafikon se opušča, zato " -"priporočamo uporabo Grafikona časovne vrste." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages of a " -"system. New stages in the pipeline are visualized as nodes or layers. The " -"thickness of the bars or edges represent the metric being visualized." -msgstr "" -"Prikaže potek vrednosti različnih skupin na različnih nivojih sistema. Novi " -"nivoji so prikazani kot točke ali plasti. Debelina stolpcev ali povezav " -"predstavlja prikazano mero." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "objavljeno" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 -msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." -msgstr "" -"Prikaže besede v stolpcu, glede na pogostost pojavljanja. Večja pisava pomeni " -"večjo frekvenco." +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "osnutek" -#: superset/viz.py:127 -msgid "Viz is missing a datasource" -msgstr "Vizualizaciji manjka podatkovni vir" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "Nastavite kako bo ta podatkovna baza delovala z SQL-laboratorijem." -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 -msgid "Viz type" -msgstr "Tip vizualizacije" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "Razkrij podatkovno bazo v SQL laboratoriju" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "SRE" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Dovoli poizvedbo na to podatkovno bazo v SQL laboratoriju" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1013 -msgid "Want to add a new database?" -msgstr "Želite dodati novo podatkovno bazo?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Dovoli ustvarjanje novih tabel s poizvedbami" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1312 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "Opozorilo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Dovoli ustvarjanje novih pogledov s poizvedbami" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "Opozorilo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "CTAS & CVAS SHEMA" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "Opozorilo!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Ustvarite ali izberite shemo..." -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"Warning! Changing the dataset may break the chart if the metadata does not exist." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -"Opozorilo! Sprememba podatkovnega seta lahko pokvari grafikon, če metapodatki ne " -"obstajajo." +"Vsilite, da bodo vse tabele in pogledi ustvarjeni s to shemo, ko kliknete" +" CTAS ali CVAS v SQL laboratoriju." -#: superset/commands/database/exceptions.py:157 -#: superset/commands/database/exceptions.py:167 -msgid "Was unable to check your query" -msgstr "Poizvedbe ni bilo mogoče preveriti" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +msgid "" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." +msgstr "" +"Dovoli manipulacije podatkovne baze z uporabo ne-SELECT stavkov, kot so " +"UPDATE, DELETE, CREATE, itd." -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 -msgid "Waterfall Chart" -msgstr "Grafikon slapov" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "Omogoči ocenjevanje potratnosti poizvedbe" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1533 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"We are unable to connect to your database. Click \"See more\" for database-" -"provided information that may help troubleshoot the issue." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -"Neuspešna povezava z vašo podatkovno bazo. Kliknite \"Prikaži več\" za podatke s " -"strani podatkovne baze, ki bodo mogoče v pomoč pri težavi." +"Za Bigquery, Presto in Postgres prikaže gumb za izračun potratnosti pred " +"zagonom poizvedbe." -#: superset/db_engine_specs/bigquery.py:199 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "Dovoli raziskovanje te podatkovne baze" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -"Zdi se, da ni mogoče razrešiti stolpca \"%(column)s\" v vrstici %(location)s." +"Ko je omogočeno, lahko uporabniki prikazujejo rezultate SQL laboratorija " +"v raziskovalcu." -#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\"" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "Izključite poizvedbe za predogled podatkov v SQL Laboratoriju" -#: superset/db_engine_specs/postgres.py:158 superset/db_engine_specs/presto.py:657 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line %(location)s." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -"Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\" v vrstici %(location)s." - -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" -msgstr "Imamo naslednje ključe: %s" - -#: superset-frontend/src/features/reports/ReportModal/actions.js:136 -msgid "We were unable to active or deactivate this report." -msgstr "Aktiviranje ali deaktiviranje poročila ni uspelo." +"Izključite predogled podatkov pri pridobivanju metapodatkov v SQL " +"laboratoriju. S tem se zmanjša obremenitev brskalnika pri podatkovnih " +"bazah z zelo širokimi tabelami." -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:679 -msgid "" -"We were unable to carry over any controls when switching to this new dataset." -msgstr "Prenos kontrolnikov pri preklopu na nov podatkovni set ni bil uspešen." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" +msgstr "Omogoči razširitev vrstic v shemah" -#: superset/db_engine_specs/redshift.py:97 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"We were unable to connect to your database named \"%(database)s\". Please verify " -"your database name and try again." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -"Povezava s podatkovno bazo \"%(database)s\" ni uspela. Preverite ime podatkovne " -"baze in poskusite ponovno." - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -msgid "Web" -msgstr "Mreža" +"Za Trino opiši celotno shemo gnezdenih tipov vrstic, razširjeno s potmi " +"za pikami" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "Sreda" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "Zmogljivost" -#: superset/db_engine_specs/base.py:110 -msgid "Week" -msgstr "Teden" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." +msgstr "Prilagodite nastavitve zmogljivosti te podatkovne baze." -#: superset/db_engine_specs/base.py:116 -msgid "Week ending Saturday" -msgstr "Teden s koncem v soboto" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "Trajanje predpomnilnika grafikona" -#: superset/db_engine_specs/base.py:117 -msgid "Week ending Sunday" -msgstr "Teden s koncem v nedeljo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "Vnesite trajanje v sekundah" -#: superset/db_engine_specs/base.py:115 -msgid "Week starting Monday" -msgstr "Teden z začetkom v ponedeljek" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." +msgstr "" +"Trajanje (v sekundah) predpomnjenja za grafikon v tej podatkovni bazi. " +"Vrednost 0 označuje, da predpomnilnik nikoli ne poteče, -1 pa onemogoči " +"predpomnjenje. V primeru, da ni definirano, ima globalno nastavitev." -#: superset/db_engine_specs/base.py:114 -msgid "Week starting Sunday" -msgstr "Teden z začetkom v nedeljo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "Trajanje prepomnilnika sheme" -#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 -msgid "Weekly Report" -msgstr "Tedensko poročilo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "" +"Trajanje (v sekundah) predpomnilnika metapodatkov za sheme v tej " +"podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče." -#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 -#, python-format -msgid "Weekly Report for %s" -msgstr "Tedensko poročilo za %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "Trajanje predpomnilnika tabele" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" -msgstr "Tedenska sezonskost" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "" +"Trajanje (v sekundah) predpomnilnika metapodatkov za tabele v tej " +"podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče. " -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" -msgstr "Tedni %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Asinhroni zagon poizvedb" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:122 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:74 -msgid "Weight" -msgstr "Utež" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "Prekini poizvedbo pri dogodku zaprtja okna (window unload event)" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"We’re having trouble loading these results. Queries are set to timeout after %s " -"second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout after %s " -"seconds." -msgstr[0] "" -"Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s " -"sekundo." -msgstr[1] "" -"Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s " -"sekundi." -msgstr[2] "" -"Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s " -"sekunde." -msgstr[3] "" -"Težava pri nalaganju rezultatov. Časovni iztek poizvedb je nastavljen na %s " -"sekund." +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." +msgstr "" +"Ustavi zagnane poizvedbe, ko se zapre okno brskalnika ali uporabnik gre " +"na drugo stran. Na razpolago za Presto, Hive, MySQL, Postgres in " +"Snowflake podatkovne baze." -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, python-format -msgid "" -"We’re having trouble loading this visualization. Queries are set to timeout after " -"%s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to timeout after " -"%s seconds." -msgstr[0] "" -"Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s " -"sekundo." -msgstr[1] "" -"Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s " -"sekundi." -msgstr[2] "" -"Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s " -"sekunde." -msgstr[3] "" -"Težava pri nalaganju vizualizacije. Časovni iztek poizvedb je nastavljen na %s " -"sekund." - -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:128 -msgid "What should be shown as the label" -msgstr "Kaj bo prikazano na oznaki" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." +msgstr "Dodaj informacije o povezavi." -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:154 -msgid "What should be shown as the tooltip label" -msgstr "Kaj bo prikazano na opisu orodja" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Dodatna varnost" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:114 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:121 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:104 -msgid "What should be shown on the label?" -msgstr "Kaj bo prikazano na oznaki?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." +msgstr "" +"JSON niz, ki vsebuje dodatno konfiguracijo povezave. Uporablja se za " +"zagotavljanje dodatnih informacij povezave za sisteme kot sta Presto in " +"BigQuery, ki nista skladna s sintakso username:password, ki jo običajno " +"uporablja SQLAlchemy." -#: superset/views/database/forms.py:176 -msgid "What should happen if the table already exists" -msgstr "Kaj naj se zgodi, če tabela že obstaja" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "Vnesite CA_BUNDLE" -#: superset-frontend/src/explore/controls.jsx:434 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis Format is " -"forced to `.1%`" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -"Če je `Vrsta izračuna` nastavljena na \"Procentualna sprememba\", bo oblika Y-osi " -"vsiljena na `.1%`" +"Opcijska CA_BUNDLE vsebina, za potrjevanje HTTPS zahtev. Razpoložljivo le" +" na določenih sistemih podatkovnih baz." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:184 -msgid "When a secondary metric is provided, a linear color scale is used." -msgstr "Če je podana sekundarna metrika, je uporabljena linearna barvna skala." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "" +"Predstavljanje kot prijavljeni uporabnik (Presto, Trino, Drill, Hive in " +"GSheets)" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to " -"be created in this schema" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" -"Z dovolitvijo opcije CREATE TABLE AS v SQL laboratoriju se tabele ustvarjajo s to " -"shemo" +"V primeru Presto ali Trino se vse poizvedbe v SQL laboratoriju zaženejo " +"pod trenutno prijavljenim uporabnikom, ki mora imeti pravice za " +"poganjanje. Če je omogočen Hive in hive.server2.enable.doAs, poizvedbe " +"tečejo pod servisnim računom, vendar je trenutno prijavljen uporabnik " +"predstavljen z lastnostjo hive.server2.proxy.user." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 -msgid "When checked, the map will zoom to your data after each query" -msgstr "Če želite, da se zemljevid prilagodi vašim podatkom po vsaki poizvedbi" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" +msgstr "Dovolite nalaganje datotek v podatkovno bazo" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." -msgstr "" -"Ko je omogočeno, lahko uporabniki prikazujejo rezultate SQL laboratorija v " -"raziskovalcu." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" +msgstr "Dovoljene sheme za nalaganje datotek" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:174 -msgid "When only a primary metric is provided, a categorical color scale is used." -msgstr "" -"Če je podana samo primarna metrika, je uporabljena kategorična barvna skala." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." +msgstr "Z vejicami ločen seznam shem, kjer je dovoljeno nalaganje datotek." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." +msgstr "Dodatne nastavitve." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "Parametri metapodatkov" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1134 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use this " -"statement as a subquery while grouping and filtering on the generated parent " -"queries." -msgstr "" -"Ko podajate SQL, se podatkovni vir obnaša kot pogled (view). Superset bo ta zapis " -"uporabil kot podpoizvedbo, pri čemer bo združeval in filtriral na podlagi " -"ustvarjenih starševskih poizvedb." +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." +msgstr "Objekt metadata_params se razpakira v klic sqlalchemy.MetaData." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "Parametri podatkovne baze" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1009 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 msgid "" -"When the secondary temporal columns are filtered, apply the same filter to the " -"main datetime column." -msgstr "" -"Če so sekundarni časovni stolpci filtrirani, uporabi enak filter tudi za glavni " -"časovni stolpec." +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." +msgstr "Objekt engine_params se razširi v klic sqlalchemy.create_engine." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "Verzija" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "Številka verzije" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:915 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 msgid "" -"When using \"Autocomplete filters\", this can be used to improve performance of " -"the query fetching the values. Use this option to apply a predicate (WHERE " -"clause) to the query selecting the distinct values from the table. Typically the " -"intent would be to limit the scan by applying a relative time filter on a " -"partitioned or indexed time-related field." +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." msgstr "" -"Ko uporabljate \"Samodokončaj filtre\", lahko s tem izboljšate hitrost " -"pridobivanja rezultatov s poizvedbo. Z uporabo te možnosti dodate predikat (WHERE " -"stavek) k poizvedbi za izbiro različnih vrednosti iz tabele. Običajno je namen " -"omejiti poizvedbo z uporabo filtra za relativni čas na particioniranem ali " -"indeksiranem časovnem polju." - -#: superset/viz.py:719 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "Ko uporabljate 'Group By', ste omejeni na uporabo ene mere" +"Podajte verzijo podatkovne baze. Uporablja se s Presto za potrebe " +"ocenjevanja potratnosti poizvedbe in z Dremio za sprememba sintakse." -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:76 -msgid "When using other than adaptive formatting, labels may overlap" -msgstr "Če ne uporabljate prilagodljive oblike, se oznake lahko prekrivajo" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "KORAK %(stepCurr)s OD %(stepLast)s" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 -msgid "When using this option, default value can’t be set" -msgstr "Če uporabite to možnost, privzeta vrednost ne more biti nastavljena" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" +msgstr "Vnesite primarne vpisne podatke" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:256 -msgid "Whether the progress bar overlaps when there are multiple groups of data" -msgstr "Če želite prekrivanje območij, ko imate več skupin podatkov" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "Potrebujete pomoč? Kako povezati vašo podatkovno bazo se naučite" -#: superset/connectors/sqla/views.py:364 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "" -"Če želite, da je tabela ustvarjena s postopkom 'Vizualizacija' v SQL laboratoriju" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" +msgstr "Podatkovna baza povezana" -#: superset/connectors/sqla/views.py:109 -msgid "Whether this column is exposed in the `Filters` section of the explore view." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +msgid "" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -"Če želite, da je ta stolpec na voljo v sekciji `Filtri` v raziskovalnem pogledu." +"Ustvarite podatkovni set, da začnete vizualizacijo podatkov z grafikonom " +"ali\n" +" pojdite v SQL-laboratorij za poizvedovanje nad podatki." -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:449 -msgid "" -"Whether to align background charts with both positive and negative values at 0" -msgstr "Poravnava grafa v ozadju celic za negativne in pozitivne vrednosti pri 0" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "Vnesite potrebne %(dbModelName)s vpisne podatke" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 -msgid "Whether to align positive and negative values in cell bar chart at 0" -msgstr "" -"Če želite poravnati pozitivne in negativne vrednosti v stolpčnem grafikonu celic " -"pri 0" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "Potrebujete pomoč? Naučite se več o" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 -msgid "Whether to always show the annotation label" -msgstr "Če želite vedno prikazati naslov oznake" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." +msgstr "povezovanje z %(dbModelName)s." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:190 -msgid "Whether to animate the progress and the value or just display them" -msgstr "Če želite animiran prikaz grafikona" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" +msgstr "Izberite podatkovno bazo za povezavo" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "" -"Če želite uporabiti normalno porazdelitev glede na stopnjo na barvni lestvici" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" +msgstr "SSH-gostitelj" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:181 -msgid "Whether to apply filter when items are clicked" -msgstr "Če želite uporabiti filter, ko kliknete na elemente" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" +msgstr "npr. 127.0.0.1" -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 -msgid "Whether to colorize numeric values by if they are positive or negative" -msgstr "Če želite obarvati številske vrednosti, ko so le-te pozitivne ali negativne" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" +msgstr "SSH-vrata" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:461 -msgid "Whether to colorize numeric values by whether they are positive or negative" -msgstr "Če želite obarvati številske vrednosti, ko so le-te pozitivne ali negativne" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "22" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:435 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 -msgid "Whether to display a bar chart background in table columns" -msgstr "" -"Če želite omogočiti prikaz manjših stolpčnih grafikonov v ozadju stolpcev tabele" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" +msgstr "npr. Analitika" -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 -msgid "Whether to display a legend for the chart" -msgstr "Če želite prikaz legende za grafikon" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" +msgstr "Prijava z" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" -msgstr "Če želite prikaz mehurčkov nad državami" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" +msgstr "Privatni ključ in geslo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:104 -msgid "Whether to display the aggregate count" -msgstr "Če želite prikazati agregirano število" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" +msgstr "SSH-geslo" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" -msgstr "Če želite prikaz interaktivne podatkovne tabele" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "npr. ********" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:153 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:75 -msgid "Whether to display the labels." -msgstr "Če želite prikaz oznak." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "Privatni ključ" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -msgid "" -"Whether to display the labels. Note that the label only displays when the 5% " -"threshold." -msgstr "Če želite prikazati oznake. Oznake so prikazane le nad 5-odstotnim pragom." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" +msgstr "Prilepite privatni ključ sem" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 -msgid "Whether to display the legend (toggles)" -msgstr "Preklapljanje prikaza legende" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" +msgstr "Geslo privatnega ključa" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" -msgstr "Če želite prikazati ime mere kot naslov" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" +msgstr "SSH-tunel" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 -msgid "Whether to display the min and max values of the X-axis" -msgstr "Če želite prikaz min. in max. vrednosti X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" +msgstr "Parametri nastavitev SSH-tunela" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "Če želite prikaz min. in max. vrednosti Y-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Ime za prikaz" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 -msgid "Whether to display the numerical values within the cells" -msgstr "Če želite v celicah prikazati numerične vrednosti" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "Poimenujte podatkovno bazo" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 -msgid "Whether to display the stroke" -msgstr "Če želite prikazati obrobe" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "Izberite ime za lažjo prepoznavo podatkovne baze." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 -msgid "Whether to display the time range interactive selector" -msgstr "Če želite prikaz interaktivnega izbirnika časovnega obdobja" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "dialect+driver://username:password@host:port/database" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:81 -msgid "Whether to display the timestamp" -msgstr "Če želite prikazati časovno značko" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "Obrnite se na" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:193 -msgid "Whether to display the tooltip labels." -msgstr "Če želite prikaz oznak opisa orodja." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr "za več informacij o oblikovanju URI." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:93 -msgid "Whether to display the trend line" -msgstr "Če želite prikazati trendno črto" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Preizkus povezave" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:172 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:281 -msgid "Whether to enable changing graph position and scaling." -msgstr "Če želite omogočiti premikanje in povečevanje/zmanjševanje grafikona." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "podatkovna baza" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:146 -msgid "Whether to enable node dragging in force layout mode." -msgstr "Če želite omogočiti premikanje vozlišč v načinu vsiljenega prikaza." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Vnesite SQLAlchemy URI za test" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 -msgid "Whether to fill the objects" -msgstr "Če želite zapolniti objekte" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" +msgstr "npr. world_population" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 -msgid "Whether to ignore locations that are null" -msgstr "Če ne želite upoštevati praznih (NULL) lokacij" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" +msgstr "Nastavitve podatkovne baze posodobljene" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:425 -msgid "Whether to include a client-side search box" -msgstr "Če želite vključiti iskalno polje za uporabnika" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" +msgstr "Pri pridobivanju informacij o podatkovni bazi je prišlo do napake: %s" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "Če želite vključiti časovni filter" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" +msgstr "Ali pa izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -msgid "Whether to include the percentage in the tooltip" -msgstr "Če želite prikaz procentov v opisu orodja" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" +msgstr "Podprte podatkovne baze" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:339 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "Če želite vključiti granulacijo časa, ki je določena v sekciji Čas" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." +msgstr "Izberite podatkovno bazo..." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 -msgid "Whether to make the grid 3D" -msgstr "Če želite mrežo v 3D-prikazu" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "Želite dodati novo podatkovno bazo?" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "Če želite kumulativni histogram" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "" +"Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL " +"Alchemy URI-ji. " -#: superset/connectors/sqla/views.py:104 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 msgid "" -"Whether to make this column available as a [Time Granularity] option, column has " -"to be DATETIME or DATETIME-like" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " msgstr "" -"Če želite, da bo ta stolpec na razpolago kot možnost [Granulacija časa]. Stolpec " -"mora biti tipa DATETIME ali DATETIME-like" +"Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL " +"Alchemy URI-ji. Naučite se kako povezati gonilnik podatkovne baze " -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "Če želite normirati histogram" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "Poveži" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -msgid "Whether to populate autocomplete filters options" -msgstr "Če želite napolniti možnosti za samodokončanje filtrov" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "Zaključi" -#: superset/connectors/sqla/views.py:359 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "" +"Podatkovna baza se upravlja eksterno in je ni mogoče urediti znotraj " +"Superseta" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 msgid "" -"Whether to populate the filter's dropdown in the explore view's filter section " -"with a list of distinct values fetched from the backend on the fly" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" -"Če želite napolniti spustni seznam filtra v raziskovalnem pogledu filtrske " -"sekcije z različnimi vrednostmi, pridobljenimi sproti v ozadju" +"Gesla za spodnje podatkovne baze so potrebna za njihov uvoz. Sekciji " +"\"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne baze " +"nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno po " +"uvozu, če je to potrebno." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:133 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Uvažate eno ali več podatkovnih baz, ki že obstajajo. S prepisom lahko " +"izgubite podatke. Ali ste prepričani, da želite prepisati?" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" +msgstr "Napaka pri ustvarjanju podatkovne baze" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 msgid "" -"Whether to show extra controls or not. Extra controls include things like making " -"mulitBar charts stacked or side by side." +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -"Če želite prikaz dodatnih kontrolnikov. Dodatni kontrolniki vključujejo možnost " -"izdelave večstolpčnih grafikonov, naloženih ali drug ob drugem." +"Neuspešna povezava z vašo podatkovno bazo. Kliknite \"Prikaži več\" za " +"podatke s strani podatkovne baze, ki bodo mogoče v pomoč pri težavi." -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:205 -msgid "Whether to show minor ticks on the axis" -msgstr "Če želite prikaz pomožnih oznak na osi" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" +msgstr "USTVARI PODATKOVNI SET" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:178 -msgid "Whether to show the pointer" -msgstr "Če želite prikazati kazalec" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" +msgstr "POIZVEDBA V SQL-LABORATORIJU" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:244 -msgid "Whether to show the progress of gauge chart" -msgstr "Prikaži merilno območje števčnega grafikona" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "Poveži se s podatkovno bazo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:217 -msgid "Whether to show the split lines on the axis" -msgstr "Če želite prikazati razdelitvene črte na osi" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Uredi podatkovno bazo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Če želite padajoče ali naraščajoče razvrščanje na osnovni osi." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" +msgstr "S podatkovno bazo se povežite z dinamičnim obrazcem" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -msgid "Whether to sort descending or ascending" -msgstr "Če želite padajoče ali naraščajoče razvrščanje" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." +msgstr "" +"Kliknite to povezavo za drugo vnosno formo, ki prikaže samo zahtevana " +"polja za povezavo s podatkovno bazo." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 -msgid "Whether to sort descending or ascending if a series limit is present" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "Mogoče bodo potrebna dodatna polja" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -"Če želite padajoče ali naraščajoče razvrščanje, ko je prisotna omejitev serije" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:97 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." -msgstr "Če želite padajoče razvrstiti rezultate z izbrano mero." +"Izbira podatkovnih baz za uspešno povezavo zahteva izpolnitev dodatnih " +"polj v zavihku Napredno. Kaj zahteva vaša podatkovna baza se naučite " -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 -msgid "Whether to sort tooltip by the selected metric in descending order." -msgstr "Če želite padajoče razvrstiti opis orodja z izbrano mero." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" +msgstr "Uvozi podatkovno bazo iz datoteke" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:366 -msgid "Whether to truncate metrics" -msgstr "Če želite odstraniti naziv mere" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" +msgstr "S to podatkovno bazo se raje povežite z SQLAlchemy URI nizom" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" -msgstr "Za katero državo želite grafikon?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "" +"Kliknite to povezavo za drugo vnosno formo, ki omogoča ročni vnos " +"SQLAlchemy URL-ja za to podatkovno bazo." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:199 -msgid "Which relatives to highlight on hover" -msgstr "Kateri element se poudari na prehodu z miško" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" +"To je lahko bodisi IP naslov (npr. 127.0.0.1) bodisi ime domene (npr. " +"mydatabase.com)." + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "Gostitelj" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" -msgstr "Možnosti grafikona kvantilov" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "npr. 5432" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" -msgstr "Belo" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" +msgstr "Vrata" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "Širina" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" +msgstr "npr. sql/protocolv1/o/12345" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "Širina intervala zaupanja. Mora bit med 0 in 1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." +msgstr "Kopirajte naziv HTTP poti vaše gruče." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" -msgstr "Širina hitrega grafikona" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." +msgstr "Kopirajte ime podatkovne baze, s katero se skušate povezati." -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "Okno mora biti > 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" +msgstr "Žeton za dostop" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 -msgid "With a subheader" -msgstr "S podnaslovom" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." +msgstr "Izberite vzdevek za to podatkovno bazo, ki bo prikazan v Supersetu." -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" -msgstr "Oblak besed" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" +msgstr "npr. param1=value1¶m2=value2" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" -msgstr "Vrtenje besed" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" +msgstr "Dodatni parametri" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Working" -msgstr "Delam" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "Dodaj dodatne parametre po meri" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 -msgid "Working timeout" -msgstr "Pretek delovanja" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "Uporabljen bo SSL-način tipa \"require\"." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:1561 -msgid "World Map" -msgstr "Zemljevid sveta" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "Dovoljeni tipi Googlovih preglednic" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "Dodajte opis vaše poizvedbe" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "Samo javno deljene preglednice" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" -msgstr "Napišite Handlebars-predlogo za prikaz podatkov" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "Javno in zasebno deljene preglednice" -#: superset/views/database/forms.py:230 -msgid "Write dataframe index as a column" -msgstr "Zapiši indeks dataframe-a kot stolpec" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" +msgstr "Kako želite vnesti prijavne podatke servisnega računa?" -#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 -msgid "Write dataframe index as a column." -msgstr "Zapiši indeks dataframe-a kot stolpec." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "Naloži JSON datoteko" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 -msgid "X AXIS TITLE BOTTOM MARGIN" -msgstr "SPODNJA OBROBA NASLOVA X-OSI" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "Kopiraj in prilepi JSON prijavne podatke" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 -msgid "X AXIS TITLE MARGIN" -msgstr "OBROBA NASLOVA X-OSI" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "Servisni račun" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:75 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:322 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:317 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:175 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:98 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "X-os" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" +msgstr "Sem prilepite vsebino json-datoteke servisnega računa" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 -msgid "X Axis Bounds" -msgstr "Meje X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "Tukaj kopirajte in prilepite celotno json datoteko servisnega računa" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 -msgid "X Axis Format" -msgstr "Oblika X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "Naloži prijavne podatke" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:104 -msgid "X Axis Label" -msgstr "Naslov X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." +msgstr "" +"Uporabite JSON datoteko, ki ste jo prenesli pri ustvarjanju servisnega " +"računa." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 -msgid "X Axis Title" -msgstr "Naslov X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "Googlove preglednice poveži s to podatkovno bazo kot tabele" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" -msgstr "Logaritemska X-os" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Ime Googlove preglednice in URL" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:125 -msgid "X Tick Layout" -msgstr "Postavitev oznak na X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "Vnesite ime te preglednice" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 -msgid "X bounds" -msgstr "Meje X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "Prilepite deljeni URL Googlove preglednice sem" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -msgid "X-Axis Sort Ascending" -msgstr "Razvrsti X-os naraščajoče" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "Dodaj preglednico" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" -msgstr "\"Razvrsčanje po\" za X-os" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "Kopirajte ID računa, s katerim se skušate povezati." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "X-axis" -msgstr "X-os" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" +msgstr "npr. xy12345.us-east-2.aws" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:116 -msgid "XScale Interval" -msgstr "Interval X-osi" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" +msgstr "npr. compute_wh" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 -msgid "Y 2 bounds" -msgstr "Meje Y-osi 2" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" +msgstr "npr. AccountAdmin" -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 -msgid "Y AXIS TITLE MARGIN" -msgstr "OBROBA NASLOVA Y-OSI" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" +msgstr "Dupliciraj podatkovni set" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:327 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:292 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:320 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:132 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:183 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:140 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Y-os" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" +msgstr "Dupliciraj" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 -msgid "Y Axis 2 Bounds" -msgstr "Meje Y-osi 2" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" +msgstr "Ime novega podatkovnega seta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Y Axis Bounds" -msgstr "Meje Y-osi" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s " +"podatkovnimi seti. Sekciji \"Dodatna varnost\" in \"Certifikati\" v " +"nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih " +"je potrebno dodati ročno po uvozu, če je to potrebno." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:309 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Oblika Y-osi" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Uvažate enega ali več podatkovnih setov, ki že obstajajo. S prepisom " +"lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 -#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:146 -msgid "Y Axis Label" -msgstr "Naslov Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" +msgstr "Osveževanje stolpcev" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 -msgid "Y Axis Title" -msgstr "Naslov Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" +msgstr "Stolpci tabele" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 -msgid "Y Axis Title Margin" -msgstr "Rob naslova Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" +msgstr "Nalaganje" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 -msgid "Y Axis Title Position" -msgstr "Položaj naslova Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" +msgstr "" +"Ta tabela že ima povezan podatkovni set. S tabelo je lahko povezan le en " +"podatkovni set.\n" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 -msgid "Y Log Scale" -msgstr "Logaritemska Y-os" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" +msgstr "Ogled podatkovnega seta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 -msgid "Y bounds" -msgstr "Meje Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" +msgstr "Ta tabela že ima podatkovni set" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 -msgid "Y-Axis Sort Ascending" -msgstr "Razvrsti Y-os naraščajoče" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " +msgstr "" +"Podatkovni set lahko ustvarite iz tabel podatkovne baze ali s pomočjo " +"SQL-poizvedbe. Izberite tabelo podatkovne baze na levi ali " -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" -msgstr "\"Razvrsčanje po\" za Y-os" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" +msgstr "ustvari podatkovni set iz SQL-poizvedbe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Y-axis" -msgstr "Y-os" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." +msgstr "" +" za odpiranje SQL laboratorija. Tam lahko poizvedbo shranite kot " +"podatkovni set." -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 -msgid "Y-axis bounds" -msgstr "Meje Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" +msgstr "Izberite podatkovni vir" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 -msgid "YScale Interval" -msgstr "Interval Y-osi" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" +msgstr "Ni stolpcev tabel" -#: superset/db_engine_specs/base.py:113 -msgid "Year" -msgstr "Leto" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." +msgstr "Tabela podatkovne baze ne vsebuje podatkov. Izberite drugo tabelo." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" -msgstr "Leto (freq=AS)" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" +msgstr "Prišlo je do napake" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" -msgstr "Letna sezonskost" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." +msgstr "Stolpcev za izbrano tabelo ni bilo mogoče naložiti. Izberite drugo tabelo." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 #, python-format -msgid "Years %s" -msgstr "Leta %s" +msgid "The API response from %s does not match the IDatabaseTable interface." +msgstr "Odziv API-ja iz %s se ne ujema z vmesnikom IDatabaseTable." -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/pages/ChartList/index.tsx:572 -#: superset-frontend/src/pages/ChartList/index.tsx:679 -#: superset-frontend/src/pages/DashboardList/index.tsx:487 -#: superset-frontend/src/pages/DashboardList/index.tsx:560 -#: superset-frontend/src/pages/DatabaseList/index.tsx:504 -#: superset-frontend/src/pages/DatabaseList/index.tsx:524 -#: superset-frontend/src/pages/DatasetList/index.tsx:603 -msgid "Yes" -msgstr "Da" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" +msgstr "Uporaba" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 -msgid "Yes, cancel" -msgstr "Da, prekini" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +msgid "Chart owners" +msgstr "Lastniki grafikona" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 -msgid "Yes, overwrite changes" -msgstr "Da, prepiši spremembe" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" +msgstr "Zadnja sprememba grafikona" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 -#, python-format -msgid "You are adding tags to %s %ss" -msgstr "Oznake dodajate %s %ss" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" +msgstr "Grafikon nazadnje spremenil" -#: superset-frontend/src/pages/ChartList/index.tsx:102 -msgid "" -"You are importing one or more charts that already exist. Overwriting might cause " -"you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Uvažate enega ali več grafikonov, ki že obstajajo. S prepisom lahko izgubite " -"podatke. Ali ste prepričani, da želite prepisati?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" +msgstr "Uporaba nadzorne plošče" -#: superset-frontend/src/pages/DashboardList/index.tsx:80 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting might " -"cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Uvažate eno ali več nadzornih plošč, ki že obstajajo. S prepisom lahko izgubite " -"podatke. Ali ste prepričani, da želite prepisati?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" +msgstr "Ustvarite grafikon s podatkovnim setom" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1459 -msgid "" -"You are importing one or more databases that already exist. Overwriting might " -"cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Uvažate eno ali več podatkovnih baz, ki že obstajajo. S prepisom lahko izgubite " -"podatke. Ali ste prepričani, da želite prepisati?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "grafikona" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting might " -"cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Uvažate enega ali več podatkovnih setov, ki že obstajajo. S prepisom lahko " -"izgubite podatke. Ali ste prepričani, da želite prepisati?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Ni grafikonov" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 -msgid "" -"You are importing one or more saved queries that already exist. Overwriting might " -"cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Uvažate eno ali več shranjenih poizvedb, ki že obstajajo. S prepisom lahko " -"izgubite podatke. Ali ste prepričani, da želite prepisati?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "Podatkovni set ni uporabljen v nobenem grafikonu." -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 -msgid "You can" -msgstr "Lahko" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." +msgstr "Izberite tabelo podatkovne baze." -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "Elemente lahko dodate v" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" +msgstr "Ustvarite podatkovni set in grafikon" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "Elemente lahko dodate v načinu urejanja." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" +msgstr "Nov podatkovni set" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "Lahko tudi samo kliknete na grafikon za medsebojno filtriranje." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "Izberite tabelo podatkovne baze in ustvarite podatkovni set" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the ones you " -"own.\n" -" Your filter selection will be saved and remain active until you " -"choose to change it." -msgstr "" -"Lahko izberete prikaz vseh grafikonov, do katerih imate dostop ali pa samo tistih " -"v vaši lasti.\n" -" Izbira filtrov bo shranjena in bo ostala aktivna, dokler je ne " -"spremenite." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" +msgstr "naziv podatkovnega seta" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "You can create a new chart or use existing ones from the panel on the right" -msgstr "Ustvarite lahko nove grafikone ali uporabite obstoječe iz panela na desni" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +msgid "Not defined" +msgstr "Ni definirano" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 -msgid "You can preview the list of dashboards in the chart settings dropdown." -msgstr "" -"Seznam nadzornih plošč si lahko ogledate v spustnem meniju nastavitev grafikona." +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" +msgstr "Pri pridobivanju podatkovnega seta je prišlo do napake" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." -msgstr "Za to podatkovno točko ne morete uporabiti medsebojnega filtra." +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" +msgstr "Pri pridobivanju elementov podatkovnega seta je prišlo do napake" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:499 -msgid "" -"You cannot delete the last temporal filter as it's used for time range filters in " -"dashboards." -msgstr "" -"Zadnjega časovnega filtra ni mogoče izbrisati, ker se uporablja za filtre " -"časovnega obdobja v nadzorni plošči." +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" +msgstr "Napaka pri nalaganju metapodatkov podatkovnega seta" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 -msgid "You cannot use 45° tick layout along with the time range filter" -msgstr "" -"Skupaj s filtriranjem časovnega obdobja ne morete uporabiti oznak pod 45° kotom" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Neimenovana]" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, python-format -msgid "You do not have permission to edit this %s" -msgstr "Nimate dovoljenja za urejanje %s" +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Neznano" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "Nimate dovoljenja za urejanje tega grafikona" +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" +msgstr "Ogledane %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 -msgid "You do not have permission to edit this dashboard" -msgstr "Nimate dovoljenja za urejanje te nadzorne plošče" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Urejeno" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#, python-format -msgid "You do not have permission to read tags" -msgstr "Nimate dovoljenja za branje oznak" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Ustvarjene" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "Nimate dovoljenj za urejanje te nadzorne plošče." +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Ogledane" -#: superset/commands/chart/exceptions.py:131 -msgid "You don't have access to this chart." -msgstr "Nimate dostopa do tega grafikona." +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Priljubljene" -#: superset/commands/dashboard/exceptions.py:78 -msgid "You don't have access to this dashboard." -msgstr "Nimate dostopa do te nadzorne plošče." +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Moje" -#: superset/commands/dataset/exceptions.py:185 -msgid "You don't have access to this dataset." -msgstr "Nimate dostopa do tega podatkovnega seta." +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "Ogled vseh »" -#: superset/commands/dashboard/embedded/exceptions.py:34 -msgid "You don't have access to this embedded dashboard config." -msgstr "Nimate dostopa do konfiguracije te vgrajene nadzorne plošče." +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" -#: superset-frontend/src/features/home/EmptyState.tsx:168 -msgid "You don't have any favorites yet!" -msgstr "Priljubljenih še niste izbrali!" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" +msgstr "grafikoni" -#: superset/commands/temporary_cache/exceptions.py:45 -#: superset/key_value/exceptions.py:54 -msgid "You don't have permission to modify the value." -msgstr "Nimate dovoljenja za spreminjanje vrednosti." +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" +msgstr "nadzorne plošče" -#: superset/security/manager.py:2309 -#, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "Nimate pravic za spreminjanje %(resource)s" +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "nedavne" -#: superset/views/core.py:556 -msgid "You don't have the rights to alter this chart" -msgstr "Nimate pravic za spreminjanje tega grafikona" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "shranjene poizvedbe" -#: superset/views/core.py:692 -msgid "You don't have the rights to alter this dashboard" -msgstr "Nimate pravic za spreminjanje te nadzorne plošče" +#: superset-frontend/src/features/home/EmptyState.tsx:35 +msgid "No charts yet" +msgstr "Ni še grafikonov" -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "Nimate pravic za spreminjanje tega naslova." +#: superset-frontend/src/features/home/EmptyState.tsx:36 +msgid "No dashboards yet" +msgstr "Ni še nadzornih plošč" -#: superset/views/core.py:562 -msgid "You don't have the rights to create a chart" -msgstr "Nimate pravic za ustvarjanje grafikona" +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" +msgstr "Ni še nedavnih" -#: superset/views/core.py:708 -msgid "You don't have the rights to create a dashboard" -msgstr "Nimate pravic za ustvarjanje nadzorne plošče" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +msgid "No saved queries yet" +msgstr "Ni še shranjenih poizvedb" -#: superset/views/core.py:286 -msgid "You don't have the rights to download as csv" -msgstr "Nimate pravic za prenos csv-ja" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" +msgstr "%(other)s grafikoni bodo prikazani tu" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "Odstranili ste ta filter." +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" +msgstr "%(other)s nadzorne plošče bodo prikazane tu" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 -msgid "You have unsaved changes." -msgstr "Imate neshranjene spremembe." +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" +msgstr "%(other)s zadnji bodo prikazani tu" -#: superset-frontend/src/dashboard/actions/dashboardState.js:655 +#: superset-frontend/src/features/home/EmptyState.tsx:50 #, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to fully undo " -"subsequent actions. You may save your current state to reset the history." +msgid "%(other)s saved queries will appear here" +msgstr "%(other)s shranjene poizvedbe bodo prikazane tu" + +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" -"Uporabili ste celotno količino %(historyLength)s razveljavitev in ne boste mogli " -"več povrniti nadaljnjih dejanj. Količino lahko resetirate, če shranite stanje." +"Nedavno ogledani grafikoni, nadzorne plošče in shranjene poizvedbe bodo " +"prikazane tukaj" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/pages/DatasetList/index.tsx:473 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a dataset owner " -"to request modifications or edit access." +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -"Za urejanje morate biti lastnik podatkovnega seta. Za dostop do urejanja " -"kontaktirajte lastnika podatkovnega seta." +"Nedavno ustvarjeni grafikoni, nadzorne plošče in shranjene poizvedbe bodo" +" prikazane tukaj" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "Izbrati morate ime nove nadzorne plošče" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "" +"Nedavno urejani grafikoni, nadzorne plošče in shranjene poizvedbe bodo " +"prikazane tukaj" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:617 -msgid "You must run the query successfully first" -msgstr "Najprej morate uspešno izvesti poizvedbo" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQL-poizvedba" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" -msgstr "Za uporabo CSS morate nastaviti sanitizacijo HTML" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "Priljubljenih še niste izbrali!" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not updated " -"automatically. Run the query by clicking on the \"Update chart\" button or" -msgstr "" -"Posodobili ste vrednosti v kontrolni plošči, vendar se grafikon ni samodejno " -"posodobil. Zaženite poizvedbo z gumbom \"Posodobi grafikon\" ali" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" +msgstr "Poglej vse %(tableName)s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:667 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that match " -"this new dataset have been retained." -msgstr "" -"Spremenili ste podatkovne sete. Vsi kontrolniki nad podatki (stolpci, mere), ki " -"se ujemajo z novim podatkovnim setom, se bodo ohranili." +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "Poveži se s podatkovno bazo" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 -msgid "Your chart is not up to date" -msgstr "Grafikon ni aktualen" +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" +msgstr "Ustvarite podatkovni set" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" -msgstr "Grafikon je pripravljen!" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "Povežite Googlovo preglednico" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "Vaša nadzorna plošča je prevelika. Pred shranjevanjem jo zmanjšajte." +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "Naloži CSV v podatkovno bazo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:838 -msgid "Your query could not be saved" -msgstr "Vaše poizvedbe ni mogoče shraniti" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "Naloži stolpčno datoteko v podatkovno bazo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:186 -msgid "Your query could not be scheduled" -msgstr "Vaše poizvedbe ni mogoče uvrstiti v urnik" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "Naloži Excel-ovo datoteko v podatkovno bazo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:873 -msgid "Your query could not be updated" -msgstr "Vaše poizvedbe ni mogoče posodobiti" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" +msgstr "Omogoči 'Dovoli nalaganje podatkov' v nastavitvah vseh podatkovnih baz" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:179 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to Saved " -"queries" -msgstr "" -"Vaša poizvedba je v urniku. Za ogled podrobnosti poizvedbe pojdite na shranjene " -"poizvedbe" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Informacije" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "Your query was not properly saved" -msgstr "Vaša poizvedba ni bila pravilno shranjena" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Odjava" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:856 -msgid "Your query was saved" -msgstr "Vaša poizvedba je shranjena" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "O programu" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:869 -msgid "Your query was updated" -msgstr "Vaša poizvedba je posodobljena" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "Omogoča Apache Superset" -#: superset-frontend/src/features/reports/ReportModal/actions.js:154 -msgid "Your report could not be deleted" -msgstr "Vašega poročila ni mogoče izbrisati" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" +msgstr "SHA" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 -msgid "Zero imputation" -msgstr "Nadomeščanje ničel" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" +msgstr "Zgradi" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:321 -msgid "Zoom" -msgstr "Povečava" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "Dokumentacija" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:325 -msgid "Zoom level of the map" -msgstr "Stopnja povečave zemljevida" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "Sporočite napako" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -msgid "[ untitled dashboard ]" -msgstr "[ neimenovana nadzorna plošča ]" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Prijava" -#: superset/viz.py:1879 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "" -"Stolpca [Zemljepisna dolžina] in [Zemljepisna širina] morata biti prisotna v " -"[Združevanje po]" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "poizvedba" -#: superset/viz.py:1829 -msgid "[Longitude] and [Latitude] must be set" -msgstr "[Zemljepisna dolžina] in [Zemljepisna širina] morata biti nastavljeni" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Izbrisano: %s" -#: superset/commands/explore/get.py:119 superset/views/core.py:518 -msgid "[Missing Dataset]" -msgstr "[Manjka podatkovni set]" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Težava pri brisanju %s: %s" -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "[Neimenovana]" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "S tem dejanjem boste trajno izbrisali shranjeno poizvedbo." -#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 -msgid "[asc]" -msgstr "[asc]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Izbrišem poizvedbo?" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[ime nadzorne plošče]" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "Pretečeno %s" -#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "[desc]" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Shranjene poizvedbe" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:167 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio against " -"the primary metric. When omitted, the color is categorical and based on labels" -msgstr "" -"[opcijsko] sekundarna mera določa barvo kot razmerje do primarne mere. Če je " -"izpuščena, je barva določena kategorično na podlagi oznak" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Naslednji" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 -msgid "[untitled]" -msgstr "[neimenovana]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Naslov zavihka" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "`compare_columns` morajo imeti enako dolžino kot `source_columns`." +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Uporabnikova poizvedba" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "`compare_type` mora biti `difference`, `percentage` ali `ratio`" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Zagnana poizvedba" -#: superset/charts/schemas.py:647 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`confidence_interval` mora biti med 0 in 1 (odprt)" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Ime poizvedbe" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:171 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated " -"with the aggregator. Non-numerical columns will be used to label points. Leave " -"empty to get a count of points in each cluster." -msgstr "" -"`število` je COUNT(*), če je uporabljeno združevanje po (group by). Numerični " -"stolpci bodo agregirani z agregatorjem. Ne-numerični stolpci, bodo uporabljeni za " -"oznake točk. Pustite prazno, da dobite število točk v posamezni gruči." +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL kopiran!" -#: superset/common/query_object.py:435 -msgid "`operation` property of post processing object undefined" -msgstr "Lastnost `operation` poprocesirnega objekta ni definirana" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Vaš brskalnik ne podpira kopiranja." -#: superset/utils/pandas_postprocessing/prophet.py:62 -msgid "`prophet` package not installed" -msgstr "Knjižnica `prophet` ni nameščena" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "Pri pridobivanju poročil za to nadzorno ploščo je prišlo do težave." -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "`rename_columns` morajo imeti enako dolžino kot `columns`." +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "Poročilo je bilo ustvarjeno" -#: superset/charts/schemas.py:1266 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "`row_limit` mora biti večja ali enaka 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" +msgstr "Poročilo posodobljeno" -#: superset/charts/schemas.py:1273 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`row_offset` mora biti večja ali enaka 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "Aktiviranje ali deaktiviranje poročila ni uspelo." -#: superset/charts/schemas.py:1093 -msgid "`width` must be greater or equal to 0" -msgstr "`width` mora biti večja ali enaka 0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "Vašega poročila ni mogoče izbrisati" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "agregacija" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "Tedensko poročilo za %s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:112 -msgid "alert" -msgstr "opozorilo" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" +msgstr "Tedensko poročilo" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 -msgid "alert dark" -msgstr "opozorilo (temno)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "Uredi e-poštno poročilo" -#: superset-frontend/src/pages/AlertReportList/index.tsx:113 -msgid "alerts" -msgstr "opozorila" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" +msgstr "Dodaj novo e-poštno poročilo na urnik" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 -#: superset-frontend/src/explore/controls.jsx:254 -msgid "all" -msgstr "vsi" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "Besedilo vključeno v e-pošto" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "kopiraj (podvoji) tudi grafikone" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "Slika (PNG) vključena v e-pošto" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "ancestor" -msgstr "nadrejeni" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "Oblikovan CSV pripet e-pošti" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "in" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" +msgstr "Naslov poročila" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "oznaka" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" +msgstr "Vključite opis, ki bo vključen v poročilo" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "annotation_layer" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "Zaslonska slika nadzorne plošče bo poslana na vaš e-naslov ob" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 -#: superset-frontend/src/explore/controlPanels/sections.tsx:262 -msgid "asfreq" -msgstr "asfreq" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" +msgstr "Posodabljanje poročila neuspešno" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "ob" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" +msgstr "Ustvarjanje poročila nesupešno" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:229 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:55 -#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:89 -msgid "auto" -msgstr "samodejno" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" +msgstr "Nastavite e-poštno poročilo" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:152 -msgid "auto (Smooth)" -msgstr "samodejno (glajenje)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "E-poštna poročila aktivna" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" -msgstr "ozadje" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "Izbriši e-poštno poročilo" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 -msgid "basis" -msgstr "basis" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "Dodaj e-poštno poročilo na urnik" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "v polje spodaj (primer:" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "S tem dejanjem boste trajno izbrisali %s." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "med {down} in {up} {name}" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "Izbrišem poročilo?" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 -#: superset-frontend/src/explore/controlPanels/sections.tsx:263 -msgid "bfill" -msgstr "bfill" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +msgid "rowlevelsecurity" +msgstr "varnost na nivoju vrstic" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "vijak" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" +msgstr "Pravilo dodano" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "boolean type icon" -msgstr "ikona binarnega tipa" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Edit Rule" +msgstr "Uredi pravilo" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:181 -msgid "bottom" -msgstr "spodaj" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" +msgstr "Dodaj pravilo" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." -msgstr "gumb (cmd + z) dokler ne shranite sprememb." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +msgid "Rule Name" +msgstr "Ime pravila" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "z uporabo" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "Ime mora biti unikatno" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" -msgstr "ne sme biti prazno" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "" +"Navadni filtri dodajo WHERE stavek v poizvedbe, če ima uporabnik vlogo " +"podano v filtru. Osnovni filtri filtrirajo vse poizvedbe, razen vlog, " +"definiranih v filtru, in jih je mogoče uporabiti za nastavitev tega kaj " +"uporabnik vidi, če v skupini filtrov ni RLS-filtrov, ki bi se nanašali " +"nanje." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -msgid "cardinal" -msgstr "cardinal" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +msgid "These are the datasets this filter will be applied to." +msgstr "To so podatkovni seti, na katere se nanaša ta filter." -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 -msgid "change" -msgstr "sprememba" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" +msgstr "Izključene vloge" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:181 -#: superset-frontend/src/pages/ChartList/index.tsx:871 -msgid "chart" -msgstr "grafikona" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "" +"Za regularne filtre so te vloge tiste, ki bodo filtrirane. Za osnovne " +"filtre, so te vloge tiste, ki NE bodo filtrirane, npr. Admin, če naj " +"administrator vidi vse podatke." -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "charts" -msgstr "grafikoni" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" +msgstr "Ključ za združevanje" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "izberite WHERE ali HAVING..." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" +"Filtri z enakim skupinskim ključem bodo znotraj skupine združeni z OR " +"funkcijo, medtem ko bodo različne skupine združene z AND funkcijo. " +"Nedefinirani skupinski ključi so obravnavani kot unikatne skupine in niso" +" združeni v svojo skupino. Npr., če ima tabela tri filtre, pri čemer sta " +"dva za oddelka marketinga in financ (skupinski ključ = 'oddelek') tretji " +"pa se nanaša na regijo Evropa (skupinski ključ = 'regija'), bo filtrski " +"izraz (oddelek = 'Finance' OR oddelek = 'Marketing') AND (regija = " +"'Evropa')." + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Stavek" -#: superset-frontend/src/components/ListView/ListView.tsx:450 -msgid "clear all filters" -msgstr "počisti vse filtre" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"To je pogoj, ki bo dodan WHERE stavku. Npr., če želite dobiti vrstice za " +"določeno stranko, lahko definirate regularni filter z izrazom 'id_stranke" +" = 9'. Če ne želimo prikazati vrstic, razen če uporabnik pripada RLS " +"vlogi, lahko filter ustvarimo z izrazom `1 = 0` (vedno FALSE)." -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" -msgstr "kliknite tukaj" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" +msgstr "Navaden" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" -msgstr "koda ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +msgid "Base" +msgstr "Osnova" + +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." +msgstr "" +"%s elementov ni mogoče označiti, ker nimate pravic za urejanje vseh " +"izbranih elementov." -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "koda ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" +msgstr "Označen %s %s" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" -msgstr "koda Mednarodnega olimpijskega komiteja (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +msgid "Failed to tag items" +msgstr "Napaka pri označevanju elementov" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "stolpec" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "Označi več" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 #, python-format -msgid "connecting to %(dbModelName)s." -msgstr "povezovanje z %(dbModelName)s." +msgid "You are adding tags to %s %ss" +msgstr "Oznake dodajate %s %ss" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" -msgstr "število" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +msgid "tags" +msgstr "oznake" -#: superset-frontend/src/explore/components/SaveModal.tsx:405 -msgid "create" -msgstr "ustvari" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +msgid "Select Tags" +msgstr "Izberite oznake" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 -msgid "create a new chart" -msgstr "ustvarite nov grafikon" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +msgid "Tag updated" +msgstr "Oznaka posodobljena" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid "create dataset from SQL query" -msgstr "ustvari podatkovni set iz SQL-poizvedbe" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +msgid "Tag created" +msgstr "Oznaka ustvarjena" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +msgid "Tag name" +msgstr "Ime oznake" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "css_template" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +msgid "Name of your tag" +msgstr "Ime vaše oznake" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 -#: superset-frontend/src/explore/controlPanels/sections.tsx:145 -msgid "cumsum" -msgstr "kumulativna vsota" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +msgid "Add description of your tag" +msgstr "Dodajte opis vaše oznake" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" -msgstr "kumulativno" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +msgid "Select dashboards" +msgstr "Izberite nadzorne plošče" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:136 -#: superset-frontend/src/pages/DashboardList/index.tsx:778 -msgid "dashboard" -msgstr "nadzorna plošča" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +msgid "Select saved queries" +msgstr "Izberite shranjene poizvedbe" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "dashboards" -msgstr "nadzorne plošče" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Izbran ne-numeričen stolpec" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:554 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:730 -#: superset-frontend/src/pages/DatabaseList/index.tsx:120 -msgid "database" -msgstr "podatkovna baza" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "UI-nastavitve" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:161 -#: superset-frontend/src/pages/DatasetList/index.tsx:880 -msgid "dataset" -msgstr "podatkovni set" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" +msgstr "Vrednost filtra je obvezna" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 -#: superset-frontend/src/pages/AllEntities/index.tsx:122 -msgid "dataset name" -msgstr "naziv podatkovnega seta" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "Uporabnik mora obvezno izbrati vrednost pred uveljavitvijo filtra" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 -msgid "date" -msgstr "datum" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" +msgstr "Ena vrednost" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "dan" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "Uporabite le eno vrednost." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "dan v mesecu" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "Vtičnik za filter obdobja z uporabo AntD" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "dan v tednu" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr " (ni vključeno)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:30 -msgid "deck.gl 3D Hexagon" -msgstr "deck.gl - 3D HEX" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s možnost" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:30 -msgid "deck.gl Arc" -msgstr "deck.gl - lok" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Označi za naraščajoče razvrščanje" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:30 -msgid "deck.gl Countour" -msgstr "deck.gl - plastnice" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "Dovoli izbiro več vrednosti" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:30 -msgid "deck.gl Geojson" -msgstr "deck.gl - GeoJson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "Izberi prvo vrednost kot privzeto" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:30 -msgid "deck.gl Grid" -msgstr "deck.gl - 3D mreža" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" +msgstr "Če uporabite to možnost, privzeta vrednost ne more biti nastavljena" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -msgid "deck.gl Heatmap" -msgstr "deck.gl - toplotna karta" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "Invertiraj izbiro" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 -msgid "deck.gl Multiple Layers" -msgstr "deck.gl - večplastni grafikon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" +msgstr "Izloči izbrane vrednosti" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 -msgid "deck.gl Path" -msgstr "deck.gl - poti" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "Dinamično poišče vse možnosti filtra" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:30 -msgid "deck.gl Polygon" -msgstr "deck.gl - poligon" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" +"Privzeto vsak filter pri nalaganju začetne strani naloži največ 1000 " +"možnosti. Označite polje, če imate več kot 1000 vrednosti filtra in " +"želite omogočiti dinamično iskanje, ki nalaga vrednosti filtra ko " +"uporabnik tipka (to lahko preobremeni vašo podatkovno bazo)." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:30 -msgid "deck.gl Scatterplot" -msgstr "deck.gl - raztreseni grafikon" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "Izberite Vtičnik za filter z uporabo AntD" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:30 -msgid "deck.gl Screen Grid" -msgstr "deck.gl - mreža" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "Prilagojeni vtičnik za časovni filter" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:38 -msgid "deck.gl charts" -msgstr "deck.gl grafikoni" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Ni časovnih stolpcev" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:34 -msgid "deckGL" -msgstr "deckGL" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" +msgstr "Vtičnik za časovni filter" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -msgid "default" -msgstr "privzeto" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "Vtičnik za filter časovne granulacije" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "izbriši" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "Delam" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:197 -msgid "descendant" -msgstr "podrejeni" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" +msgstr "Ni sproženo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 -msgid "description" -msgstr "opis" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "V mirovanju" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -msgid "deviation" -msgstr "deviacija" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "poročila" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 -msgid "dialect+driver://username:password@host:port/database" -msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "opozorila" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Težava pri brisanju izbranih %s: %s" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Zadnji zagon" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 -msgid "draft" -msgstr "osnutek" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Dnevnik izvajanja" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "datum-čas" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Izberi več" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "npr. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "%s še ne obstajajo" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "npr. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Lastnik" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 -msgid "e.g. 5432" -msgstr "npr. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Vse" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "npr. AccountAdmin" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Pri pridobivanju polja lastnik je prišlo do napake: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" -msgstr "npr. Analitika" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Status" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "npr. compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "" +"Pri pridobivanju vrednosti podatkovnega vira podatkovnega seta je prišlo " +"do napake: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 -msgid "e.g. param1=value1¶m2=value2" -msgstr "npr. param1=value1¶m2=value2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Opozorila in poročila" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "npr. sql/protocolv1/o/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Opozorila" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:682 -msgid "e.g. world_population" -msgstr "npr. world_population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Poročila" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "npr. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Izbrišem %s?" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "npr. stolpec \"id_uporabnika\"" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane %s?" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 -msgid "edit mode" -msgstr "načinu urejanja" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +msgid "Error Fetching Tagged Objects" +msgstr "Pri pridobivanju označenih elementov je prišlo do napake" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 -msgid "entries" -msgstr "vnosi" +#: superset-frontend/src/pages/AllEntities/index.tsx:234 +msgid "Edit Tag" +msgstr "Uredi oznako" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "error" -msgstr "napaka" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Pri brisanju izbranih slojev je prišlo do težave: %s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "napaka (temno)" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Uredi predlogo" -#: superset/models/helpers.py:1818 -msgid "error_message" -msgstr "error_message" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Izbriši predlogo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "vsak" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +msgid "Changed by" +msgstr "Spremenil" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "vsak dan v mesecu" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Slojev z oznakami še ni" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "vsak dan v tednu" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "S tem dejanjem boste trajno izbrisali sloj." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "vsako uro" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Izbrišem sloj?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" -msgstr "vsako minuto" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane sloje?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "vsak mesec" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "Pri brisanju izbranih oznak je prišlo do težave: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -msgid "expand" -msgstr "razširi" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Izbriši oznako" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -msgid "explore" -msgstr "raziskovanje" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Oznaka" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:52 -msgid "failed" -msgstr "ni uspelo" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Oznak še ni" -#: superset-frontend/src/SqlLab/constants.ts:36 -msgid "fetching" -msgstr "pridobivanje" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format +msgid "Annotation Layer %s" +msgstr "Sloj z oznakami %s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 -#: superset-frontend/src/explore/controlPanels/sections.tsx:264 -msgid "ffill" -msgstr "ffill" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" +msgstr "Nazaj na vse" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please replace " -"filter_box by dashboard filter components." -msgstr "" -"filter_box bo v prihodnjih verzijah Superseta opuščen. Nadomestite ga s filtri " -"nadzorne plošče." +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Ali ste prepričani, da želite izbrisati %s?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -msgid "flat" -msgstr "ravno" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Izbrišem oznako?" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 -msgid "for more information on how to structure your URI." -msgstr "za več informacij o oblikovanju URI." +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane oznake?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "function type icon" -msgstr "ikona funkcijskega tipa" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "Neuspešno nalaganje podatkov grafikona" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 -msgid "geohash (square)" -msgstr "geohash (kvadrat)" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" +msgstr "ogled navodil" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "heatmap" -msgstr "toplotni prikaz" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" +msgstr "Dodaj podatkovni set" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:185 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "heatmap: vrednosti so normirane po celotni temperaturni lestvici" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" +msgstr "ali" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1040 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -msgid "here" -msgstr "tukaj" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Izberite podatkovni set" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "ura" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "Izberite tip grafikona" -#: superset-frontend/src/features/profile/UserInfo.tsx:76 -msgid "id" -msgstr "id" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "Za nadaljevanje izberite podatkovni set in tip grafikona" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:155 +#: superset-frontend/src/pages/ChartList/index.tsx:95 msgid "" -"image-rendering CSS attribute of the canvas object that defines how the browser " -"scales up the image" -msgstr "atribut CSS za izris objekta platna, ki določa, kako brskalnik poveča sliko" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z grafikoni. " +"Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah podatkovne " +"baze nista prisotni v izvoženih datotekah in jih je potrebno dodati ročno" +" po uvozu, če je to potrebno." -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "v" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Uvažate enega ali več grafikonov, ki že obstajajo. S prepisom lahko " +"izgubite podatke. Ali ste prepričani, da želite prepisati?" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "v modalnem oknu" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" +msgstr "Grafikon uvožen" -#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 -msgid "is expected to be a Mapbox URL" -msgstr "mora biti URL za Mapbox" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Pri brisanju izbranih grafikonov je prišlo do težave: %s" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "pričakovano je število" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" -msgstr "pričakovano je celo število" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "Katerikoli" -#: superset-frontend/src/features/profile/UserInfo.tsx:64 -msgid "joined" -msgstr "pridružen" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" +msgstr "Oznaka" -#: superset/views/base.py:583 -msgid "json isn't valid" -msgstr "json ni veljaven" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "Pri pridobivanju polja lastnik grafikona je prišlo do napake: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:351 -msgid "key a-z" -msgstr "a - ž" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "Certificirano" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:352 -msgid "key z-a" -msgstr "ž - a" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "Po abecedi" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:169 -msgid "label" -msgstr "oznaka" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Nedavno spremenjeno" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" -msgstr "zadnji dan" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Zadnje spremenjeno" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" -msgstr "zadnji mesec" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Uvozi grafikone" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "zadnje četrletje" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane grafikone?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "zadnji teden" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSS predloge" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" -msgstr "zadnje leto" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Pri brisanju izbranih predlog je prišlo do težave: %s" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 -msgid "latest partition:" -msgstr "zadnja particija:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSS predloga" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 -msgid "left" -msgstr "levo" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "S tem dejanjem boste trajno izbrisali predlogo." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" -msgstr "manj kot {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Izbrišem predlogo?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 -msgid "linear" -msgstr "linearno" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane predloge?" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 -msgid "log" -msgstr "dnevnik" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj z nadzornimi " +"ploščami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v nastavitvah " +"podatkovne baze nista prisotni v izvoženih datotekah in jih je potrebno " +"dodati ročno po uvozu, če je to potrebno." -#: superset/charts/schemas.py:728 +#: superset-frontend/src/pages/DashboardList/index.tsx:80 msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower than " -"upper percentile." +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -"spodnji percentil mora biti večji od 0 in manjši od 100 ter mora biti manjši od " -"zgornjega percentila." +"Uvažate eno ali več nadzornih plošč, ki že obstajajo. S prepisom lahko " +"izgubite podatke. Ali ste prepričani, da želite prepisati?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:86 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -msgid "max" -msgstr "max" +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" +msgstr "Nadzorna plošča uvožena" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:192 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:386 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:87 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:120 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 -#: superset-frontend/src/explore/controlPanels/sections.tsx:142 -#: superset-frontend/src/explore/controlPanels/sections.tsx:266 -msgid "mean" -msgstr "povprečje" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Pri brisanju izbranih nadzornih plošč je prišlo do težave: " -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 -#: superset-frontend/src/explore/controlPanels/sections.tsx:265 -msgid "median" -msgstr "mediana" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "Pri pridobivanju polja lastnik nadzorne plošče je prišlo do napake: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:82 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:82 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -msgid "meters" -msgstr "metri" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane nadzorne plošče?" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -msgid "metric" -msgstr "mera" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Pri pridobivanju podatkov iz podatkovne baze je prišlo do napake: %s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:193 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -msgid "min" -msgstr "min" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" +msgstr "Naloži datoteko v podatkovno bazo" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "minuta" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" +msgstr "Naloži CSV" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" -msgstr "minut" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" +msgstr "Naloži stolpčno datoteko" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "monotone" -msgstr "monotone" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" +msgstr "Naloži Excel-ovo datoteko" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "mesec" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "več kot {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Dovoli jezik za manipulacijo podatkov (DML)" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "mora imeti vrednost" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -msgid "name" -msgstr "ime" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "Nalaganje CSV" -#: superset/commands/database/exceptions.py:147 -msgid "no SQL validator is configured" -msgstr "potrjevalnik SQL ni nastavljen" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Izbriši podatkovno bazo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "numeric type icon" -msgstr "ikona numeričnega tipa" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" +"Podatkovna baza %s je povezana z %s grafikoni, ki so prisotni na %s " +"nadzornih ploščah. Uporabniki imajo odprtih %s zavihkov SQL-laboratorija " +"s to podatkovno bazo. Ali želite nadaljevati? Izbris podatkovne baze bo " +"pokvaril te objekte." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "nvd3" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Izbrišem podatkovno bazo?" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:389 -msgid "of parent" -msgstr "nadrejenega" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" +msgstr "Podatkovni set uvožen" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:387 -msgid "of total" -msgstr "od celote" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Napaka pri pridobivanju podatkov iz podatkovnega seta" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:54 -msgid "offline" -msgstr "offline" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Napaka pri pridobivanju podatkov iz podatkovnega seta: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "v" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Fizičen podatkovni set" -#: superset-frontend/src/pages/ChartCreation/index.tsx:305 -msgid "or" -msgstr "ali" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Virtualen podatkovni set" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "ali uporabite obstoječe iz panela na desni" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" +msgstr "Virtualen" -#: superset/charts/schemas.py:1295 -msgid "orderby column must be populated" -msgstr "stolpec za razvrščanje (orderby) mora biti izpolnjen" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Prišlo je do napake pri pridobivanju podatkovnih setov: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -msgid "overall" -msgstr "skupaj" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Pri pridobivanju vrednosti shem je prišlo do napake: %s" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "točnost p-vrednosti" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "Pri pridobivanju polja lastnik podatkovnega seta je prišlo do napake: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Uvozi podatkovne sete" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." +msgstr "Pri dupliciranju podatkovnega seta je prišlo do težave." -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Pri dupliciranju izbranih podatkovnih setov je prišlo do težave: %s" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." +msgstr "" +"Podatkovni set %s je povezan z grafikoni %s, ki so prisotni na nadzorni " +"plošči %s. Ali želite nadaljevati? Izbris podatkovnega seta bo pokvaril " +"te objekte." -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -msgid "page_size.entries" -msgstr "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Izbrišem podatkovni set?" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 -msgid "page_size.show" -msgstr "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane podatkovne sete?" -#: superset-frontend/src/SqlLab/constants.ts:35 -#: superset-frontend/src/SqlLab/constants.ts:55 -msgid "pending" -msgstr "v teku" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 izbranih" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "percentil (odprt interval)" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "Izbranih: %s (virtualni)" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the first " -"is lower than the second value" -msgstr "" -"percentili morajo biti tipa list ali tuple z vsaj dvema numeričnima vrednostma, " -"pri čemer je prva manjša od druge" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "Izbranih: %s (fizični)" -#: superset/views/core.py:884 -msgid "permalink state not found" -msgstr "stanje povezave ni najdeno" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "Izbranih: %s (fizični: %s, virtualni: %s)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "pixelated (Sharp)" -msgstr "pikselirano (ostro)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "dnevnik" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:83 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:83 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:120 -msgid "pixels" -msgstr "piksli" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "ID izvedbe" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "prejšnji koledarski mesec" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Izvede se ob (UTC)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "prejšnji koledarski teden" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Zažene se ob (UTC)" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "prejšnje koledarsko leto" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Sporočilo napake" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 -msgid "published" -msgstr "objavljeno" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" +msgstr "Opozorilo" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/src/explore/controls.jsx:268 -msgid "quarter" -msgstr "četrtletje" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Pri pridobivanju vaše nedavne aktivnosti je prišlo do napake: %s" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:606 -msgid "queries" -msgstr "poizvedbe" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" -#: superset-frontend/src/features/home/SavedQueries.tsx:132 -msgid "query" -msgstr "poizvedba" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Prišlo je do napake pri pridobivanju grafikona: %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -msgid "random" -msgstr "naključno" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Prišlo je do težave pri pridobivanju shranjenih poizvedb: %s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "ponovni zagon" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "Sličice" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -msgid "recent" -msgstr "nedavno" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "Nedavno" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "recents" -msgstr "nedavne" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Pri predogledu izbrane poizvedbe je prišlo do težave. %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 -#: superset-frontend/src/pages/AlertReportList/index.tsx:112 -msgid "report" -msgstr "poročilo" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "TABELE" -#: superset-frontend/src/pages/AlertReportList/index.tsx:113 -#: superset-frontend/src/pages/AlertReportList/index.tsx:140 -#: superset-frontend/src/pages/AlertReportList/index.tsx:149 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 -msgid "reports" -msgstr "poročila" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Odpri poizvedbo v SQL laboratoriju" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:577 -msgid "restore zoom" -msgstr "ponastavi prikaz" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Pri pridobivanju vrednosti podatkovne baze je prišlo do napake: %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "right" -msgstr "desno" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Pri pridobivanju vrednosti uporabnika je prišlo do napake: %s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:143 -msgid "rowlevelsecurity" -msgstr "varnost na nivoju vrstic" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Išči z besedilom poizvedbe" -#: superset-frontend/src/SqlLab/constants.ts:37 -#: superset-frontend/src/SqlLab/constants.ts:53 -msgid "running" -msgstr "v teku" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, python-format +msgid "Deleted %s" +msgstr "Izbrisano %s" -#: superset-frontend/src/features/home/EmptyState.tsx:31 -msgid "saved queries" -msgstr "shranjene poizvedbe" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +msgid "Deleted" +msgstr "Izbrisano" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 -msgid "seconds" -msgstr "sekunde" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Težava pri brisanju pravil: %s" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 -msgid "series" -msgstr "serije" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +msgid "No Rules yet" +msgstr "Pravil še ni" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" +msgstr "Ali ste prepričani, da želite izbrisati izbrana pravila?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 msgid "" -"series: Treat each series independently; overall: All series use the same scale; " -"change: Show changes compared to the first data point in each series" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -"serije: Obravnavaj vsako podatkovno serijo neodvisno; skupno: Vse vrste " -"uporabljajo enako skalo; razlika: Prikaži razlike glede na prvo točko vsake serije" - -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -msgid "square" -msgstr "pravokotno" +"Gesla za spodnje podatkovne baze so potrebna za uvoz skupaj s shranjenimi" +" poizvedbami. Sekciji \"Dodatna varnost\" in \"Certifikati\" v " +"nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih " +"je potrebno dodati ročno po uvozu, če je to potrebno." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -msgid "stack" -msgstr "nalaganje" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "" +"Uvažate eno ali več shranjenih poizvedb, ki že obstajajo. S prepisom " +"lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -msgid "staggered" -msgstr "cik-cak" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" +msgstr "Poizvedba uvožena" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:195 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:261 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:191 -#: superset-frontend/src/explore/controlPanels/sections.tsx:144 -msgid "std" -msgstr "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Do težave je prišlo pri predogledu izbrane poizvedbe %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 -msgid "step-after" -msgstr "step-after" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Uvozi poizvedbe" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -msgid "step-before" -msgstr "step-before" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Povezava kopirana!" -#: superset-frontend/src/SqlLab/constants.ts:38 -msgid "stopped" -msgstr "ustavljeno" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Pri brisanju izbranih poizvedb je prišlo do težave: %s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -msgid "stream" -msgstr "tok" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Uredi poizvedbo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "string type icon" -msgstr "ikona znakovnega tipa" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Kopiraj URL poizvedbe" -#: superset-frontend/src/SqlLab/constants.ts:39 -#: superset-frontend/src/SqlLab/constants.ts:51 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "success" -msgstr "uspešno" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Izvozi poizvedbe" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 -msgid "success dark" -msgstr "uspešno (temno)" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Izbriši poizvedbo" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 -#: superset-frontend/src/explore/controlPanels/sections.tsx:143 -#: superset-frontend/src/explore/controlPanels/sections.tsx:267 -msgid "sum" -msgstr "vsota" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 -msgid "syntax." -msgstr "sintakse." +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "poizvedbe" -#: superset-frontend/src/pages/Tags/index.tsx:73 +#: superset-frontend/src/pages/Tags/index.tsx:86 msgid "tag" msgstr "oznaka" -#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 -msgid "tags" -msgstr "oznake" +#: superset-frontend/src/pages/Tags/index.tsx:130 +msgid "No Tags created" +msgstr "Ni ustvarjenih oznak" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 -msgid "temporal type icon" -msgstr "ikona časovnega tipa" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane oznake?" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "področje besedila" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." +msgstr "Prenos slike ni uspel. Osvežite in poskusite ponovno." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -msgid "to" -msgstr "do" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +msgid "PDF download failed, please refresh and try again." +msgstr "Prenos PDF ni uspel. Osvežite in poskusite ponovno." -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "top" -msgstr "zgoraj" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." +msgstr "" +"Izberite vrednosti v osvetljenih poljih na levi strani kontrolnika in " +"zaženite poizvedbo z gumbom %s." -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -msgid "undo" -msgstr "razveljavitev" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "Neveljaven vnos" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 -msgid "unknown type icon" -msgstr "ikona neznanega tipa" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " +msgstr "Nepričakovana napaka: " -#: superset/charts/schemas.py:743 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher than " -"lower percentile." -msgstr "" -"zgornji percentil mora biti večji od 0 in manjši od 100 ter mora biti večji od " -"spodnjega percentila." +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "(ni opisa, kliknite za ogled zapisov)" -#: superset-frontend/src/explore/constants.ts:83 -msgid "use latest_partition template" -msgstr "uporaba predloge latest_partition" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." +msgstr "Prišlo je do neznane napake." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:325 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:353 -msgid "value ascending" -msgstr "0 - 9" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Prišlo je do napake pri shranjevanju %s: %s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "value descending" -msgstr "9 - 0" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" +msgstr "Nimate dovoljenja za urejanje %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:196 -msgid "var" -msgstr "var" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" +msgstr "Napaka omrežja" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -msgid "variance" -msgstr "varianca" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" +msgstr "Zahtevek pretečen" -#: superset-frontend/src/pages/ChartCreation/index.tsx:299 -msgid "view instructions" -msgstr "ogled navodil" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Težava 1000 - podatkovni vir je prevelik za poizvedbo." -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1093 -msgid "virtual" -msgstr "virtualen" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Težava 1001 - podatkovni vir je neobičajno obremenjen." -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -msgid "viz type" -msgstr "tip vizualizacije" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Napaka pri pridobivanju informacij za %s: %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:510 -msgid "was created" -msgstr "ustvarjeno" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Napaka pri pridobivanju informacij za %s: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "teden" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Napaka pri ustvarjanju %s: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/src/explore/controls.jsx:266 -msgid "week ending Saturday" -msgstr "teden s koncem v soboto" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "Ponovno izvozite datoteko in jo nato uvozite" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:265 -msgid "week starting Sunday" -msgstr "teden z začetkom v nedeljo" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Napaka pri uvažanju %s: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "x" -msgstr "x" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Napaka pri pridobivanju statusa \"Priljubljeno\": %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "x: values are normalized within each column" -msgstr "x: vrednosti so normirane znotraj vsakega stolpca" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Napaka pri shranjevanju statusa \"Priljubljeno\": %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:171 -msgid "y" -msgstr "y" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "Povezava izgleda v redu!" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:183 -msgid "y: values are normalized within each row" -msgstr "y: vrednosti so normirane znotraj vsake vrstice" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "NAPAKA: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "leto" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Pri pridobivanju nedavnih aktivnosti je prišlo do napake:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:576 -msgid "zoom area" -msgstr "približaj območje" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Težava pri brisanju: %s" + +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" + +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." +msgstr "" +"Vzorčna povezava, vključiti je mogoče {{ metric }} ali drugo vrednost iz " +"kontrolnikov." + +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Tabela s časovno vrsto" + +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" +"Hitra primerjava več grafikonov časovnih vrst (sparkline način) in " +"povezanih mer." + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" +msgstr "Imamo naslednje ključe: %s" diff --git a/superset/translations/uk/LC_MESSAGES/messages.json b/superset/translations/uk/LC_MESSAGES/messages.json index ad80234afcf4d..c24dfff45a3b4 100644 --- a/superset/translations/uk/LC_MESSAGES/messages.json +++ b/superset/translations/uk/LC_MESSAGES/messages.json @@ -3,6417 +3,6133 @@ "locale_data": { "superset": { "22": ["22"], - "": { "domain": "superset", "lang": "uk" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\n Цей фільтр був успадкований із контексту панелі приладної панелі.\n Це не буде збережено під час збереження діаграми.\n " - ], - "\n Error: %(text)s\n ": [ - "\n Помилка: %(text)s\n " + "": { + "domain": "superset", + "plural_forms": "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", + "lang": "uk" + }, + "The datasource is too large to query.": [ + "DataSource занадто великий, щоб запитувати." ], - " (excluded)": [" (виключається)"], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - " Встановіть непрозорість на 0, якщо ви не хочете перекрити колір, вказаний у Geojson" + "The database is under an unusual load.": [ + "База даних знаходиться під незвичним навантаженням." ], - " a dashboard OR ": [" інформаційна панель або "], - " a new one": [" новий"], - " expression which needs to adhere to the ": [ - " вираз, який повинен дотримуватися до " + "The database returned an unexpected error.": [ + "База даних повернула несподівану помилку." ], - " source code of Superset's sandboxed parser": [ - " Вихідний код аналізатора пісочниці Superset" + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "У запиті SQL є помилка синтаксису. Можливо, було неправильне написання чи друкарську помилку." ], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - " стандарт для забезпечення лексикографічного впорядкування\n збігається з хронологічним впорядкуванням. Якщо\n Формат часової позначки не дотримується стандарту ISO 8601\n Вам потрібно буде визначити вираз і ввести для\n перетворення рядка на дату або часову позначку. Примітка\n В даний час часові пояси не підтримуються. Якщо час зберігається\n У форматі епохи поставте `epoch_s` або` epoch_ms`. Якщо немає шаблону\n вказано, що ми повертаємось до використання додаткових за замовчуванням на Per\n Рівень імені даних/стовпця через додатковий параметр." + "The column was deleted or renamed in the database.": [ + "Стовпчик був видалений або перейменований у базу даних." ], - " to add calculated columns": [" Для додавання обчислених стовпців"], - " to add metrics": [" Додати показники"], - " to edit or add columns and metrics.": [ - " редагувати або додати стовпці та показники." + "The table was deleted or renamed in the database.": [ + "Таблицю було видалено або перейменовано в базу даних." ], - " to mark a column as a time column": [ - " Щоб позначити стовпець як стовпчик часу" + "One or more parameters specified in the query are missing.": [ + "Один або кілька параметрів, зазначених у запиті, відсутні." ], - " to open SQL Lab. From there you can save the query as a dataset.": [ - " відкрити SQL Lab. Звідти ви можете зберегти запит як набір даних." + "The hostname provided can't be resolved.": [ + "Ім'я хоста неможливо вирішити." ], - " to visualize your data.": [" Візуалізувати свої дані."], - "!= (Is not equal)": ["! = (Не рівний)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки." + "The port is closed.": ["Порт закритий."], + "The host might be down, and can't be reached on the provided port.": [ + "Хост може бути вниз, і його неможливо дістатися на наданий порт." ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [ - "%(message)s\nЦе може бути спровоковано:\n%(issues)s" + "Superset encountered an error while running a command.": [ + "Суперсет зіткнувся з помилкою під час запуску команди." ], - "%(name)s.csv": ["%(name)s.CSV"], - "%(object)s does not exist in this database.": [ - "%(object)s не існує в цій базі даних." + "Superset encountered an unexpected error.": [ + "Суперсет зіткнувся з несподіваною помилкою." ], - "%(other)s charts will appear here": [ - "%(other)s -діаграми з’являться тут" + "The username provided when connecting to a database is not valid.": [ + "Ім'я користувача, що надається при підключенні до бази даних, не є дійсним." ], - "%(other)s dashboards will appear here": [ - "%(other)s інформаційні панелі з’являться тут" + "The password provided when connecting to a database is not valid.": [ + "Пароль, наданий при підключенні до бази даних, не є дійсним." ], - "%(other)s recents will appear here": ["%(other)s останнє з’явиться тут"], - "%(other)s saved queries will appear here": [ - "%(other)s збережені запити з’являться тут" + "Either the username or the password is wrong.": [ + "Або ім'я користувача, або пароль неправильні." ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], - "%(rows)d rows returned": ["%(rows)d рядки повернулися"], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ - "%(subtitle)s\nЦе може бути спровоковано:\n %(issue)s" + "Either the database is spelled incorrectly or does not exist.": [ + "Або база даних написана неправильно, або не існує." ], - "%(suggestion)s instead of \"%(undefinedParameter)s?\"": [ - "%(suggestion)s замість “%(undefinedParameter)s?\"" + "The schema was deleted or renamed in the database.": [ + "Схема була видалена або перейменована в базу даних." ], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "%(user)s було надано роль %(role)s, яка надає доступ до %(datasource)s" + "User doesn't have the proper permissions.": [ + "Користувач не має належних дозволів." ], - "%(user)s's profile": ["%(user)s профіль"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s не зміг перевірити ваш запит.\nБудь ласка, перегляньте свій запит.\nВиняток: %(ex)s" + "One or more parameters needed to configure a database are missing.": [ + "Не вистачає одного або декількох параметрів, необхідних для налаштування бази даних." ], - "%s Error": ["%s помилка"], - "%s PASSWORD": ["%s пароль"], - "%s SSH TUNNEL PASSWORD": ["%s SSH Тунельний пароль"], - "%s SSH TUNNEL PRIVATE KEY": ["%s SSH Tunnel Private Key"], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": ["%s SSH тунель приватного пароля"], - "%s Selected": ["%s вибраний"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s вибраний ( %s фізичний, %s віртуальний)" + "The submitted payload has the incorrect format.": [ + "Надістоване корисне навантаження має неправильний формат." ], - "%s Selected (Physical)": ["%s вибраний (фізичний)"], - "%s Selected (Virtual)": ["%s вибраний (віртуальний)"], - "%s aggregates(s)": ["%s агреговані"], - "%s column(s)": ["%s стовпці"], - "%s operator(s)": ["%s Оператор(и)"], - "%s option": ["%s варіант"], - "%s option(s)": ["%s варіант(и)"], - "%s row": ["%s рядок"], - "%s saved metric(s)": ["%s збережені метрики"], - "%s updated": ["%s оновлено"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s з %s"], - "(Removed)": ["(Видалено)"], - "(deleted or invalid type)": ["(видалений або недійсний тип)"], - "(no description, click to see stack trace)": [ - "(Немає опису, натисніть, щоб побачити Trace Stack)" + "The submitted payload has the incorrect schema.": [ + "Надіслане корисне навантаження має неправильну схему." ], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "(Необов’язково) Значення за замовчуванням для фільтра при використанні декількох опцій ви можете використовувати список параметрів, що обмежується комою." + "Results backend needed for asynchronous queries is not configured.": [ + "Результати, необхідні для асинхронних запитів, не налаштована." ], - "), and they become available in your SQL (example:": [ - "), і вони стають доступними у вашому SQL (приклад:" + "Database does not allow data manipulation.": [ + "База даних не дозволяє маніпулювати даними." ], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "*%(name)s*\n\n%(description)s\n\n<%(URL)s | Ознайомтеся з Superset>\n\n%(table)s\n" + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTA (створити таблицю як Select) не має оператора SELECT в кінці. Будь ласка, переконайтеся, що ваш запит має вибір як останнє твердження. Потім спробуйте знову запустити свій запит." ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ - "*%(name)s*\n\n%(description)s\n\nПомилка: %(text)s\n" + "CVAS (create view as select) query has more than one statement.": [ + "CVAS (створити перегляд як SELECT) Запит має більше одного оператора." ], - "+ %s more": ["+ %s більше"], - ",": [","], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "- Примітка. Якщо ви не зберегли свій запит, ці вкладки не будуть зберігатись, якщо ви очистите файли cookie або змінить браузери.\n\n" + "CVAS (create view as select) query is not a SELECT statement.": [ + "CVAS (Створіть перегляд як SELECT) Запит не є оператором SELECT." ], - ".": ["."], - "0 Selected": ["0 Вибрано"], - "1 calendar day frequency": ["1 Календарний день частота"], - "1 day": ["1 день"], - "1 day ago": ["1 день тому"], - "1 hour": ["1 година"], - "1 hourly frequency": ["1 погодинна частота"], - "1 minute": ["1 хвилина"], - "1 minutely frequency": ["1 хвилинна частота"], - "1 month end frequency": ["Кінцева частота 1 місяця"], - "1 month start frequency": ["Частота початку 1 місяця"], - "1 week": ["1 тиждень"], - "1 week ago": ["1 тиждень тому"], - "1 week starting Monday (freq=W-MON)": [ - "1 тиждень, починаючи з понеділка (FREQ = W-Mon)" + "Query is too complex and takes too long to run.": [ + "Запит занадто складний і займає занадто багато часу." ], - "1 week starting Sunday (freq=W-SUN)": [ - "1 тиждень, починаючи з неділі (FREQ = W-SUN)" + "The database is currently running too many queries.": [ + "В даний час база даних працює занадто багато запитів." ], - "1 year": ["1 рік"], - "1 year ago": ["1 рік тому"], - "1 year end frequency": ["Кінцева частота 1 рік"], - "1 year start frequency": ["1 рік старту частоти"], - "10 minute": ["10 хвилин"], - "104 weeks": ["104 тижні"], - "104 weeks ago": ["104 тижні тому"], - "15 minute": ["15 хвилин"], - "156 weeks": ["156 тижнів"], - "156 weeks ago": ["156 тижнів тому"], - "1AS": ["1AS"], - "1D": ["1D"], - "1H": ["1H"], - "1M": ["1M"], - "1T": ["1T"], - "2 years": ["2 роки"], - "2 years ago": ["2 роки тому"], - "2/98 percentiles": ["2/98 процентиль"], - "28 days": ["28 днів"], - "28 days ago": ["28 днів тому"], - "2D": ["2d"], - "3 letter code of the country": ["3х символьний код країни"], - "3 years": ["3 роки"], - "3 years ago": ["3 роки тому"], - "30 days": ["30 днів"], - "30 days ago": ["30 днів тому"], - "30 minute": ["30 хвилин"], - "30 minutes": ["30 хвилин"], - "30 second": ["30 секунд"], - "30 seconds": ["30 секунд"], - "3D": ["3D"], - "4 weeks (freq=4W-MON)": ["4 тижні (частота=4W-MON)"], - "5 minute": ["5 -хвилинний"], - "5 minutes": ["5 хвилин"], - "5 second": ["5 секунд"], - "5 seconds": ["5 секунд"], - "52 weeks": ["52 тижні"], - "52 weeks ago": ["52 тижні тому"], - "52 weeks starting Monday (freq=52W-MON)": [ - "52 тижні, починаючи з понеділка (частота=52W-MON)" + "The object does not exist in the given database.": [ + "Об'єкт не існує в даній базі даних." ], - "6 hour": ["6 годин"], - "60 days": ["60 днів"], - "7 calendar day frequency": ["7 Календарний день частота"], - "7 days": ["7 днів"], - "7D": ["7d"], - "9/91 percentiles": ["9/91 відсотків"], - "90 days": ["90 днів"], - ":": [":"], - "< (Smaller than)": ["<(Менше, ніж)"], - "<= (Smaller or equal)": ["<= (Менший або рівний)"], - "": ["<введіть вираз SQL тут>"], - "": ["<новий стовпець>"], - "": ["<Новий метрик>"], - "": ["<новий просторовий>"], - "": ["<без типу>"], - "== (Is equal)": ["== (рівний)"], - "> (Larger than)": ["> (Більше, ніж)"], - ">= (Larger or equal)": ["> = (Більший або рівний)"], - "A Big Number": ["Велика кількість"], - "A comma separated list of columns that should be parsed as dates": [ - "Кома -розділений список стовпців, які слід проаналізувати як дати" + "The query has a syntax error.": ["Запит має помилку синтаксису."], + "The results backend no longer has the data from the query.": [ + "Результати, що бекрономиться, більше не мають даних із запиту." ], - "A comma separated list of columns that should be parsed as dates.": [ - "Список стовпців, відокремлений комою, які слід проаналізувати як дати." + "The query associated with the results was deleted.": [ + "Запит, пов’язаний з результатами, було видалено." ], - "A comma-separated list of schemas that files are allowed to upload to.": [ - "Список схем, відокремлений комами, до яких файли дозволяють завантажувати." + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Результати, що зберігаються в бекенді, зберігалися в іншому форматі, і більше не можуть бути дезеріалізовані." ], - "A database with the same name already exists.": [ - "База даних з тим самим іменем вже існує." + "The port number is invalid.": ["Номер порту недійсний."], + "Failed to start remote query on a worker.": [ + "Не вдалося запустити віддалений запит на працівника." ], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "Словник із назвами стовпців та їх типами даних, якщо вам потрібно змінити за замовчуванням. Приклад: {\"user_id\": \"Integer\"}" + "The database was deleted.": ["База даних була видалена."], + "Custom SQL fields cannot contain sub-queries.": [ + "Спеціальні поля SQL не можуть містити підзапити." ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "Повна URL -адреса, що вказує на розташування вбудованого плагіна (наприклад, може бути розміщена на CDN)" + "Invalid certificate": ["Недійсний сертифікат"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "Небезпечний тип повернення для функції %(func)s: %(value_type)s" ], - "A handlebars template that is applied to the data": [ - "Шаблон ручки, який застосовується до даних" + "Unsupported return value for method %(name)s": [ + "Непідтримуване повернення значення для методу %(name)s" ], - "A human-friendly name": ["Зручне для людини ім’я"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "Список доменних імен, які можуть вбудувати цю інформаційну панель. Якщо лишити це поле порожнім, це дозволить вбудувати панель з будь-якого домену." + "Unsafe template value for key %(key)s: %(value_type)s": [ + "Небезпечне значення шаблону для ключа %(key)s: %(value_type)s" ], - "A list of tags that have been applied to this chart.": [ - "Список тегів, які були застосовані до цієї діаграми." + "Unsupported template value for key %(key)s": [ + "Небудова значення шаблону для ключа %(key)s" ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "Список користувачів, які можуть змінити діаграму. Шукати за іменем або іменем користувача." + "Only SELECT statements are allowed against this database.": [ + "Протягом цієї бази даних допускаються лише вибору." ], - "A map of the world, that can indicate values in different countries.": [ - "Карта світу, яка може вказувати на цінності в різних країнах." + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Запит був убитий після %(sqllab_timeout)s секунд. Це може бути занадто складно, або база даних може бути під великим навантаженням." ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "Карта, яка приймає кола з рендерінгу зі змінною радіусом на координатах широти/довготи" + "Results backend is not configured.": [ + "Бекенд результатів не налаштовано." ], - "A metric to use for color": ["Показник для використання для кольору"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "Полярна координатна діаграма, де коло розбивається на клини з рівним кутом, а значення, представлене будь -яким клином, проілюстровано його областю, а не його радіусом або кутом підмітання." + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTA (створити таблицю як Select) можна запустити лише за допомогою запиту, де останнє твердження - це вибір. Будь ласка, переконайтеся, що ваш запит має вибір як останнє твердження. Потім спробуйте знову запустити свій запит." ], - "A readable URL for your dashboard": [ - "Читабельна URL адреса для вашої інформаційної панелі" + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "CVA (створити перегляд як Select) можна запустити лише за допомогою запиту з одним оператором SELECT. Будь ласка, переконайтеся, що ваш запит має лише оператор SELECT. Потім спробуйте знову запустити свій запит." ], - "A reference to the [Time] configuration, taking granularity into account": [ - "Посилання на конфігурацію [часу], враховуючи деталізацію" + "Running statement %(statement_num)s out of %(statement_count)s": [ + "Запуск оператора %(statement_num)s з %(statement_count)s" ], - "A report named \"%(name)s\" already exists": [ - "Звіт під назвою “%(name)s” вже існує" + "Statement %(statement_num)s out of %(statement_count)s": [ + "Заява %(statement_num)s з %(statement_count)s" ], - "A reusable dataset will be saved with your chart.": [ - "Набору даних багаторазового використання буде збережено за допомогою вашої діаграми." + "Viz is missing a datasource": ["А саме відсутній даних"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "Застосоване вікно прокатки не повернуло жодних даних. Будь ласка, переконайтесь, що запит джерела задовольняє мінімальні періоди, визначені у вікні прокатки." ], - "A screenshot of the dashboard will be sent to your email at": [ - "Скріншот інформаційної панелі буде надіслано на ваш електронний лист за адресою" + "From date cannot be larger than to date": [ + "З дати не може бути більшим, ніж на сьогоднішній день" ], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "Набір параметрів, які стають доступними у запиті за допомогою синтаксису шаблону Jinja" + "Cached value not found": ["Кешоване значення не знайдено"], + "Columns missing in datasource: %(invalid_columns)s": [ + "Стовпці відсутні в даних datasource: %(invalid_columns)s" ], - "A time column must be specified when using a Time Comparison.": [ - "Стовпчик часу повинен бути вказаний при використанні порівняння часу." + "Time Table View": ["Перегляд таблиці часу"], + "Pick at least one metric": ["Виберіть хоча б одну метрику"], + "When using 'Group By' you are limited to use a single metric": [ + "При використанні \"Group за\" ви обмежені для використання однієї метрики" ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "Діаграма часових рядів, яка візуалізує, як пов'язана метрика з декількох груп різниться з часом. Кожна група візуалізується за допомогою іншого кольору." + "Calendar Heatmap": ["Календарна теплова карта"], + "Bubble Chart": ["Міхурна діаграма"], + "Please use 3 different metric labels": [ + "Будь ласка, використовуйте 3 різні метричні етикетки" ], - "A timeout occurred while executing the query.": [ - "Під час виконання запиту стався таймаут." + "Pick a metric for x, y and size": [ + "Виберіть показник для X, Y та розміру" ], - "A timeout occurred while generating a csv.": [ - "Під час генерування CSV стався таймаут." + "Bullet Chart": ["Куляна діаграма"], + "Pick a metric to display": ["Виберіть показник для відображення"], + "Time Series - Line Chart": ["Часовий ряд - Лінійна діаграма"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "При використанні порівняння часу вкладений діапазон часу (як стартовий, так і кінець)." ], - "A timeout occurred while generating a dataframe.": [ - "Під час генерування даних даних траплявся таймаут." + "Time Series - Bar Chart": ["Часові серії - Барна діаграма"], + "Time Series - Period Pivot": ["Часовий ряд - Період"], + "Time Series - Percent Change": ["Часовий ряд - відсоток зміни"], + "Time Series - Stacked": ["Часовий ряд - складений"], + "Histogram": ["Гістограма"], + "Must have at least one numeric column specified": [ + "Повинен мати щонайменше один числовий стовпчик" ], - "A timeout occurred while taking a screenshot.": [ - "Під час зняття скріншота стався таймаут." + "Distribution - Bar Chart": ["Розповсюдження - штрих -діаграма"], + "Can't have overlap between Series and Breakdowns": [ + "Не може бути перекриття між серіями та розбиттями" ], - "A valid color scheme is required": ["Потрібна дійсна кольорова гама"], - "APPLY": ["Застосовувати"], - "APR": ["Квітня"], - "AQE": ["AQE"], - "AUG": ["Серпень"], - "AXIS TITLE MARGIN": ["ЗАВДАННЯ ВІСІВ"], - "AXIS TITLE POSITION": ["Позиція заголовка вісь"], - "About": ["Про"], - "Access": ["Доступ"], - "Access requests": ["Запити доступу"], - "Access to user activity data is restricted": [ - "Доступ до даних про активність користувача обмежений" + "Pick at least one field for [Series]": [ + "Виберіть принаймні одне поле для [серії]" ], - "Access token": ["Маркер доступу"], - "Access was requested": ["Доступ вимагав"], - "Action": ["Дія"], - "Action Log": ["Журнал дій"], - "Actions": ["Дії"], - "Active": ["Активний"], - "Actual Values": ["Фактичні значення"], - "Actual time range": ["Фактичний часовий діапазон"], - "Actual value": ["Фактичне значення"], - "Actual values": ["Фактичні значення"], - "Adaptive formatting": ["Адаптивне форматування"], - "Add": ["Додавання"], - "Add Alert": ["Додати сповіщення"], - "Add CSS Template": ["Додайте шаблон CSS"], - "Add CSS template": ["Додайте шаблон CSS"], - "Add Chart": ["Додайте діаграму"], - "Add Column": ["Додайте стовпчик"], - "Add Dashboard": ["Додайте Інформаційну панель"], - "Add Database": ["Додати базу даних"], - "Add Log": ["Додати журнал"], - "Add Metric": ["Додати показник"], - "Add Report": ["Додайте звіт"], - "Add Rule": ["Додайте правило"], - "Add Saved Query": ["Додайте збережений запит"], - "Add a Plugin": ["Додайте плагін"], - "Add a dataset": ["Додайте набір даних"], - "Add a new tab": ["Додайте нову вкладку"], - "Add a new tab to create SQL Query": [ - "Додайте нову вкладку, щоб створити запит SQL" + "Sankey": ["Санкі"], + "Pick exactly 2 columns as [Source / Target]": [ + "Виберіть рівно 2 стовпці як [джерело / ціль]" ], - "Add additional custom parameters": [ - "Додайте додаткові спеціальні параметри" + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "У вашому Санкі є петля, будь ласка, надайте дерево. Ось несправне посилання: {}" ], - "Add an annotation layer": ["Додайте шар анотації"], - "Add an item": ["Додайте предмет"], - "Add and edit filters": ["Додати та редагувати фільтри"], - "Add annotation": ["Додати анотацію"], - "Add annotation layer": ["Додайте шар анотації"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [ - "Додайте обчислені стовпці до набору даних у модалі \"Редагувати DataSource\"" + "Directed Force Layout": ["Спрямований макет сили"], + "Country Map": ["Карта країни"], + "World Map": ["Карта світу"], + "Parallel Coordinates": ["Паралельні координати"], + "Heatmap": ["Теплова карта"], + "Horizon Charts": ["Horizon Charts"], + "Mapbox": ["Mapbox"], + "[Longitude] and [Latitude] must be set": [ + "[Longitude] та [Latitude] повинні бути встановлені" ], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "Додайте обчислені тимчасові стовпці до набору даних у модалі \"редагувати дані\"" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "Повинен мати стовпець [група за], щоб мати \"рахувати\" як [мітку]" ], - "Add cross-filter": ["Додати перехресний фільтр"], - "Add custom scoping": ["Додайте власні сфери застосування"], - "Add delivery method": ["Додайте метод доставки"], - "Add extra connection information.": [ - "Додайте додаткову інформацію про з'єднання." + "Choice of [Label] must be present in [Group By]": [ + "Вибір [мітки] повинен бути присутнім у [групі]" ], - "Add filter": ["Додати фільтр"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "Додайте застереження про фільтр для контролю запиту джерела фільтра,\n Хоча лише в контексті автозаповнення, тобто ці умови\n Не впливайте на те, як фільтр застосовується на інформаційній панелі. Це корисно\n Коли ви хочете покращити продуктивність запиту, лише скануючи підмножину\n базових даних або обмежити наявні значення, відображені у фільтрі." + "Choice of [Point Radius] must be present in [Group By]": [ + "Вибір [радіуса точки] повинен бути присутнім у [групі]" ], - "Add filters and dividers": ["Додайте фільтри та роздільники"], - "Add item": ["Додати елемент"], - "Add metric": ["Додати показник"], - "Add metrics to dataset in \"Edit datasource\" modal": [ - "Додайте показники до набору даних у модал \"Редагувати DataSource\"" + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "[Longitude] та [Latitude] стовпці повинні бути присутніми в [Group By]" ], - "Add new color formatter": ["Додайте новий кольоровий форматер"], - "Add new formatter": ["Додати новий форматер"], - "Add notification method": ["Додайте метод сповіщення"], - "Add required control values to preview chart": [ - "Додайте необхідні контрольні значення для попереднього перегляду діаграми" + "Deck.gl - Multiple Layers": ["Deck.gl - кілька шарів"], + "Bad spatial key": ["Поганий просторовий ключ"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "Зіткнувшись недійсний нульовий просторовий запис, будь ласка, подумайте про фільтрування їх" ], - "Add required control values to save chart": [ - "Додайте необхідні контрольні значення для збереження діаграми" + "Deck.gl - Scatter plot": ["Колода.gl - сюжет розсіювання"], + "Deck.gl - Screen Grid": ["Deck.gl - сітка екрана"], + "Deck.gl - 3D Grid": ["Палуба.gl - 3D сітка"], + "Deck.gl - Paths": ["Deck.gl - шляхи"], + "Deck.gl - Polygon": ["Палуба.gl - багатокутник"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D -шестигранник"], + "Deck.gl - Heatmap": ["Палуба.gl - Теплова карта"], + "Deck.gl - GeoJSON": ["Deck.gl - Geojson"], + "Deck.gl - Arc": ["Колода.gl - дуга"], + "Event flow": ["Потік подій"], + "Time Series - Paired t-test": ["Часовий ряд - парний t -тест"], + "Time Series - Nightingale Rose Chart": [ + "Часові серії - Соловейна діаграма троянд" ], - "Add sheet": ["Додати аркуш"], - "Add the name of the chart": ["Додайте назву діаграми"], - "Add the name of the dashboard": ["Додайте назву інформаційної панелі"], - "Add to dashboard": ["Додайте до інформаційної панелі"], - "Add/Edit Filters": ["Додати/редагувати фільтри"], - "Added": ["Доданий"], - "Added to 1 dashboard": ["Додано до 1 інформаційної панелі"], - "Additional Parameters": ["Додаткові параметри"], - "Additional fields may be required": [ - "Можуть знадобитися додаткові поля" + "Partition Diagram": ["Діаграма розділів"], + "Please choose at least one groupby": [ + "Будь ласка, виберіть хоча б одну групу" ], - "Additional information": ["Додаткова інформація"], - "Additional metadata": ["Додаткові метадані"], - "Additional padding for legend.": ["Додаткові прокладки для легенди."], - "Additional parameters": ["Додаткові параметри"], - "Additional settings.": ["Додаткові налаштування."], - "Additional text to add before or after the value, e.g. unit": [ - "Додатковий текст, який можна додати до або після значення, наприклад одиниця" + "Invalid advanced data type: %(advanced_data_type)s": [ + "Недійсний тип даних про розширені дані: %(advanced_data_type)s" ], - "Additive": ["Добавка"], - "Adjust how this database will interact with SQL Lab.": [ - "Відрегулюйте, як ця база даних буде взаємодіяти з лабораторією SQL." + "All Text": ["Весь текст"], + "Is certified": ["Є сертифікованим"], + "Has created by": ["Створив"], + "Created by me": ["Створений мною"], + "Owned Created or Favored": ["Належить створеним або прихильним"], + "Total (%(aggfunc)s)": ["Всього (%(aggfunc)s)"], + "Subtotal": ["Суттєвий"], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`confidence_interval` повинна бути між 0 і 1 (ексклюзивна)" ], - "Adjust performance settings of this database.": [ - "Налаштуйте налаштування продуктивності цієї бази даних." + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "нижній percentile повинен бути більше 0 і менше 100. Повинен бути нижчим, ніж верхній percentile." ], - "Advanced": ["Просунутий"], - "Advanced Analytics": ["Розширена аналітика"], - "Advanced Data type": ["Розширений тип даних"], - "Advanced analytics": ["Розширена аналітика"], - "Advanced analytics Query A": ["Розширений запит аналітики a"], - "Advanced analytics Query B": ["Розширений запит аналітики b"], - "Advanced data type": ["Розширений тип даних"], - "Advanced-Analytics": ["Розширена аналітика"], - "Aesthetic": ["Естетичний"], - "After": ["Після"], - "Aggregate": ["Сукупний"], - "Aggregate Mean": ["Сукупне середнє значення"], - "Aggregate Sum": ["Сукупна сума"], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "Агрегатна функція, застосована до списку точок у кожному кластері для отримання етикетки кластера." + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "верхній percentile повинен бути більшим за 0 і менше 100. Повинен бути вищим, ніж нижчий percentile." ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "Сукупна функція, яка застосовується при повороті та обчисленні загальних рядків та стовпців" + "`width` must be greater or equal to 0": [ + "`width` повинна бути більшою або рівною 0" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "Агрегує дані в межах кордону клітин сітки та відображають агреговані значення до динамічної кольорової шкали" + "`row_limit` must be greater than or equal to 0": [ + "`row_limit` повинен бути більшим або рівним 0" ], - "Aggregation": ["Агрегація"], - "Aggregation function": ["Функція агрегації"], - "Alert": ["Насторожений"], - "Alert Triggered, In Grace Period": [ - "Попередження, спрацьоване, в пільговий період" + "`row_offset` must be greater than or equal to 0": [ + "`row_offset` повинен бути більшим або рівним 0" ], - "Alert condition": ["Умова попередження"], - "Alert condition schedule": ["Розклад умови попередження"], - "Alert ended grace period.": [ - "Попередження закінчився пільговим періодом." + "orderby column must be populated": [ + "стовпчик orderby повинен бути заповнений" ], - "Alert failed": ["Попередження не вдалося"], - "Alert fired during grace period.": [ - "Попередження, вистрілене під час витонченого періоду." + "Chart has no query context saved. Please save the chart again.": [ + "Діаграма не має збереженого контексту запиту. Будь ласка, збережіть діаграму ще раз." ], - "Alert found an error while executing a query.": [ - "Попередження знайшло помилку під час виконання запиту." + "Request is incorrect: %(error)s": ["Запит невірний: %(error)s"], + "Request is not JSON": ["Запит - це не json"], + "Empty query result": ["Порожній результат запиту"], + "Owners are invalid": ["Власники недійсні"], + "Some roles do not exist": ["Деяких ролей не існує"], + "Datasource type is invalid": ["Тип даних недійсний"], + "Datasource does not exist": ["DataSource не існує"], + "Query does not exist": ["Запити не існує"], + "Annotation layer parameters are invalid.": [ + "Параметри шару анотації недійсні." ], - "Alert name": ["Ім'я сповіщення"], - "Alert on grace period": ["Попередження про період Грейс"], - "Alert query returned a non-number value.": [ - "Попередній запит повернув значення безлічів." + "Annotation layer could not be created.": [ + "Анотаційний шар не вдалося створити." ], - "Alert query returned more than one column.": [ - "Попередній запит повернув більше одного стовпця." + "Annotation layer could not be updated.": [ + "Анотаційний шар не вдалося оновити." ], - "Alert query returned more than one column. %s columns returned": [ - "Попередній запит повернув більше одного стовпця. повернуті стовпці %s" + "Annotation layer not found.": ["Анотаційний шар не знайдено."], + "Annotation layer has associated annotations.": [ + "Анотаційний шар має пов’язані анотації." ], - "Alert query returned more than one row.": [ - "Попередній запит повернув більше одного ряду." + "Name must be unique": ["Ім'я повинно бути унікальним"], + "End date must be after start date": [ + "Дата закінчення повинна бути після дати початку" ], - "Alert query returned more than one row. %s rows returned": [ - "Попередній запит повернув більше одного ряду. %s Рядки повернулися" + "Short description must be unique for this layer": [ + "Короткий опис повинен бути унікальним для цього шару" ], - "Alert running": ["Попередження"], - "Alert triggered, notification sent": [ - "Попередження, спрацьоване, повідомлення надіслано" + "Annotation not found.": ["Анотація не знайдена."], + "Annotation parameters are invalid.": ["Параметри анотації недійсні."], + "Annotation could not be created.": ["Анотація не вдалося створити."], + "Annotation could not be updated.": ["Анотацію не вдалося оновити."], + "Annotations could not be deleted.": ["Анотації не можна було видалити."], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Рядок часу неоднозначний. Будь ласка, вкажіть [%(human_readable)s тому] або [%(human_readable)s пізніше]." ], - "Alert validator config error.": ["Помилка конфігурації валідатора."], - "Alerts": ["Попередження"], - "Alerts & Reports": ["Попередження та звіти"], - "Alerts & reports": ["Попередження та звіти"], - "Align +/-": ["Вирівняти +/-"], - "All": ["Всі"], - "All Entities": ["Всі сутності"], - "All Text": ["Весь текст"], - "All charts": ["Усі діаграми"], - "All charts/global scoping": ["Усі діаграми/глобальні обсяги"], - "All filters": ["Всі фільтри"], - "All filters (%(filterCount)d)": ["Усі фільтри (%(Filtercount) D)"], - "All panels": ["Всі панелі"], - "All panels with this column will be affected by this filter": [ - "На всі панелі з цим стовпцем впливатимуть цей фільтр" + "Cannot parse time string [%(human_readable)s]": [ + "Не вдається розбирати часовий рядок [%(human_readable)s]" ], - "Allow CREATE TABLE AS": ["Дозволити створити таблицю як"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "Дозволити створювати таблицю як опцію в лабораторії SQL" + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "Дельта часу неоднозначна. Будь ласка, вкажіть [%(human_readable)s тому] або [%(human_readable)s пізніше]." ], - "Allow CREATE VIEW AS": ["Дозволити створити перегляд як"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "Дозволити створити перегляд як опцію в лабораторії SQL" + "Database does not exist": ["Бази даних не існує"], + "Dashboards do not exist": ["Дашбордів не існує"], + "Datasource type is required when datasource_id is given": [ + "Тип даних потрібен, коли задається DataSource_ID" ], - "Allow Csv Upload": ["Дозволити завантаження CSV"], - "Allow DML": ["Дозволити DML"], - "Allow columns to be rearranged": ["Дозволити перестановку стовпців"], - "Allow creation of new tables based on queries": [ - "Дозволити створення нових таблиць на основі запитів" + "Chart parameters are invalid.": ["Параметри діаграми недійсні."], + "Chart could not be created.": ["Діаграма не вдалося створити."], + "Chart could not be updated.": ["Діаграма не вдалося оновити."], + "Charts could not be deleted.": ["Діаграми не можна було видалити."], + "There are associated alerts or reports": [ + "Є пов'язані сповіщення або звіти" ], - "Allow creation of new views based on queries": [ - "Дозволити створення нових поглядів на основі запитів" + "You don't have access to this chart.": [ + "Ви не маєте доступу до цієї діаграми." ], - "Allow data manipulation language": [ - "Дозволити мову маніпулювання даними" + "Changing this chart is forbidden": ["Зміна цієї діаграми заборонена"], + "Import chart failed for an unknown reason": [ + "Діаграма імпорту не вдалася з невідомих причин" ], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "Дозвольте кінцевому користувачеві перетягувати заголовки стовпців, щоб переставити їх. Зверніть увагу, що їх зміни не будуть зберігатись наступного разу, коли вони відкриють діаграму." + "Error: %(error)s": ["Помилка: %(error)s"], + "CSS template not found.": ["Шаблон CSS не знайдено."], + "Must be unique": ["Має бути унікальним"], + "Dashboard parameters are invalid.": [ + "Параметри інформаційної панелі недійсні." ], - "Allow file uploads to database": [ - "Дозволити завантаження файлів у базу даних" + "Dashboard could not be updated.": [ + "Не вдалося оновити інформаційну панель." ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Дозволити маніпулювання базою даних за допомогою операторів, що не вибирають, такі як оновлення, видалення, створення тощо." + "Dashboard could not be deleted.": [ + "Не вдалося видалити інформаційну панель." ], - "Allow multiple selections": ["Дозвольте кілька виборів"], - "Allow node selections": ["Дозволити вибір вузлів"], - "Allow sending multiple polygons as a filter event": [ - "Дозволити надсилання декількох багатокутників як події фільтра" + "Changing this Dashboard is forbidden": [ + "Зміна цієї інформаційної панелі заборонена" ], - "Allow this database to be explored": [ - "Дозволити досліджувати цю базу даних" + "Import dashboard failed for an unknown reason": [ + "Не вдалося імпортувати інформаційну панель з невідомих причин" ], - "Allow this database to be queried in SQL Lab": [ - "Дозволити цю базу даних запитувати в лабораторії SQL" + "You don't have access to this dashboard.": [ + "У вас немає доступу до цієї інформаційної панелі." ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "Дозволити користувачам запускати оператори, що не вибирали (оновити, видаляти, створювати, ...) у лабораторії SQL" + "You don't have access to this embedded dashboard config.": [ + "У вас немає доступу до цієї вбудованої конфігурації інформаційної панелі." ], - "Allowed Domains (comma separated)": [ - "Дозволені домени (розділені кома)" + "No data in file": ["Немає даних у файлі"], + "Database parameters are invalid.": ["Параметри бази даних недійсні."], + "A database with the same name already exists.": [ + "База даних з тим самим іменем вже існує." ], - "Alphabetical": ["Алфавітний"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "Також відома як графік коробки та вусів, ця візуалізація порівнює розподіл спорідненої метрики для декількох груп. Коробка в середині підкреслює середні, медіани та внутрішні 2 кварталі. Вуси навколо кожної коробки візуалізують мінімальний, максимум, діапазон та зовнішні 2 квартали." + "Field is required": ["Потрібне поле"], + "Field cannot be decoded by JSON. %(json_error)s": [ + "Поле не може розшифрувати JSON. %(json_error)s" ], - "Altered": ["Змінений"], - "An Error Occurred": ["Виникла помилка"], - "An alert named \"%(name)s\" already exists": [ - "Попередження під назвою “%(name)s” вже існує" + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "Metadata_params у додатковому полі налаштовані не правильно. Ключ %{key} s є недійсним." ], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "При використанні порівняння часу вкладений діапазон часу (як стартовий, так і кінець)." + "Database not found.": ["База даних не знайдена."], + "Database could not be created.": ["База даних не вдалося створити."], + "Database could not be updated.": ["База даних не вдалося оновити."], + "Connection failed, please check your connection settings": [ + "Не вдалося підключити, будь ласка, перевірте налаштування з'єднання" ], - "An engine must be specified when passing individual parameters to a database.": [ - "Двигун повинен бути вказаний при передачі окремих параметрів до бази даних." + "Cannot delete a database that has datasets attached": [ + "Не вдається видалити базу даних, в якій додаються набори даних" ], - "An error has occurred": ["Сталася помилка"], - "An error occurred": ["Виникла помилка"], - "An error occurred saving dataset": [ - "Сталася помилка збереження набору даних" + "Database could not be deleted.": ["База даних не вдалося видалити."], + "Stopped an unsafe database connection": [ + "Зупинив небезпечне з'єднання бази даних" ], - "An error occurred while accessing the value.": [ - "Під час доступу до значення сталася помилка." + "Could not load database driver": [ + "Не вдалося завантажити драйвер бази даних" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Помилка сталася під час руйнування схеми таблиці. Зверніться до свого адміністратора." + "Unexpected error occurred, please check your logs for details": [ + "Сталася несподівана помилка, будь ласка, перевірте свої журнали на детальну інформацію" ], - "An error occurred while creating %ss: %s": [ - "Помилка сталася під час створення %ss: %s" + "no SQL validator is configured": ["жоден SQL валідатор не налаштований"], + "No validator found (configured for the engine)": [ + "Жодного валідатора не знайдено (налаштовано для двигуна)" ], - "An error occurred while creating the data source": [ - "Під час створення джерела даних сталася помилка" + "Was unable to check your query": ["Не зміг перевірити ваш запит"], + "An unexpected error occurred": ["Сталася несподівана помилка"], + "Import database failed for an unknown reason": [ + "Імпортувати базу даних не вдалося з незрозумілої причини" ], - "An error occurred while creating the value.": [ - "Під час створення значення сталася помилка." + "Could not load database driver: {}": [ + "Не вдалося завантажити драйвер бази даних: {}" ], - "An error occurred while deleting the value.": [ - "Під час видалення значення сталася помилка." + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "Двигун “%(engine)s” не може бути налаштований за параметрами." ], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "Під час розширення схеми таблиці сталася помилка. Зверніться до свого адміністратора." + "Database is offline.": ["База даних офлайн."], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s не зміг перевірити ваш запит.\nБудь ласка, перегляньте свій запит.\nВиняток: %(ex)s" ], - "An error occurred while fetching %s info: %s": [ - "Помилка сталася під час отримання %s Інформація: %s" + "SSH Tunnel could not be deleted.": ["Тунель SSH не вдалося видалити."], + "SSH Tunnel not found.": ["Тунель SSH не знайдено."], + "SSH Tunnel parameters are invalid.": ["Параметри тунелю SSH недійсні."], + "SSH Tunnel could not be updated.": ["Тунель SSH не вдалося оновити."], + "Creating SSH Tunnel failed for an unknown reason": [ + "Створення тунелю SSH не вдалося з незрозумілої причини" ], - "An error occurred while fetching %ss: %s": [ - "Помилка сталася під час отримання %ss: %s" + "SSH Tunneling is not enabled": ["Тунелювання SSH не ввімкнено"], + "Must provide credentials for the SSH Tunnel": [ + "Повинен надати облікові дані для тунелю SSH" ], - "An error occurred while fetching available CSS templates": [ - "Помилка сталася під час отримання доступних шаблонів CSS" + "Cannot have multiple credentials for the SSH Tunnel": [ + "Не може бути декількох облікових даних для тунелю SSH" ], - "An error occurred while fetching chart created by values: %s": [ - "Помилка сталася під час отримання діаграми, створеної значеннями: %s" + "The database was not found.": ["База даних не була знайдена."], + "Dataset %(name)s already exists": ["Набір даних %(name)s вже існує"], + "Database not allowed to change": [ + "База даних не дозволяється змінювати" ], - "An error occurred while fetching chart owners values: %s": [ - "Помилка сталася під час отримання цінностей власників діаграм: %s" + "One or more columns do not exist": [ + "Одного або декількох стовпців не існує" ], - "An error occurred while fetching created by values: %s": [ - "Помилка сталася під час отримання, створеного за значеннями: %s" + "One or more columns are duplicated": [ + "Один або кілька стовпців дублюються" ], - "An error occurred while fetching dashboard created by values: %s": [ - "Помилка сталася під час отримання інформаційної панелі, створеного за значеннями: %s" + "One or more columns already exist": [ + "Один або кілька стовпців вже існують" ], - "An error occurred while fetching dashboard owner values: %s": [ - "Помилка сталася під час отримання значення власника інформаційної панелі: %s" + "One or more metrics do not exist": [ + "Одного або декількох показників не існує" ], - "An error occurred while fetching dashboards": [ - "Під час отримання інформаційної панелі сталася помилка" + "One or more metrics are duplicated": [ + "Один або кілька показників дублюються" ], - "An error occurred while fetching dashboards: %s": [ - "Під час отримання інформаційної панелі сталася помилка: %s" + "One or more metrics already exist": [ + "Один або кілька показників вже існують" ], - "An error occurred while fetching database related data: %s": [ - "Помилка сталася під час отримання даних, пов’язаних з базою даних: %s" + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "Таблиця [%(table_name)s] Не вдалося знайти, будь ласка, перевірте підключення до бази даних, схеми та назву таблиці" ], - "An error occurred while fetching database values: %s": [ - "Помилка сталася під час отримання значень бази даних: %s" + "Dataset does not exist": ["Набір даних не існує"], + "Dataset parameters are invalid.": ["Параметри набору даних недійсні."], + "Dataset could not be created.": ["Не вдалося створити набір даних."], + "Dataset could not be updated.": ["Набір даних не вдалося оновити."], + "Samples for dataset could not be retrieved.": [ + "Зразки для набору даних не вдалося отримати." ], - "An error occurred while fetching dataset datasource values: %s": [ - "Помилка сталася під час отримання значень набору даних набору даних: %s" - ], - "An error occurred while fetching dataset owner values: %s": [ - "Помилка сталася під час отримання значень власника набору даних: %s" + "Changing this dataset is forbidden": [ + "Зміна цього набору даних заборонена" ], - "An error occurred while fetching dataset related data": [ - "Помилка сталася під час отримання даних, пов’язаних з наборами" + "Import dataset failed for an unknown reason": [ + "Імпортувати набір даних не вдалося з незрозумілої причини" ], - "An error occurred while fetching dataset related data: %s": [ - "Помилка сталася під час отримання даних, пов’язаних з набором даних: %s" + "You don't have access to this dataset.": [ + "Ви не маєте доступу до цього набору даних." ], - "An error occurred while fetching datasets: %s": [ - "Помилка сталася під час отримання наборів даних: %s" + "Dataset could not be duplicated.": [ + "Набір даних не можна було дублювати." ], - "An error occurred while fetching function names.": [ - "Помилка сталася під час отримання імен функцій." + "Data URI is not allowed.": ["URI даних заборонено."], + "Dataset column not found.": ["Стовпчик набору даних не знайдено."], + "Dataset column delete failed.": [ + "Видалення стовпця набору даних не вдалося." ], - "An error occurred while fetching owners values: %s": [ - "Помилка сталася під час отримання цінностей власників: %s" + "Changing this dataset is forbidden.": [ + "Зміна цього набору даних заборонена." ], - "An error occurred while fetching schema values: %s": [ - "Помилка сталася під час отримання значень схеми: %s" + "Dataset metric not found.": ["Мета даних не знайдено."], + "Dataset metric delete failed.": [ + "Видалення метрики набору даних не вдалося." ], - "An error occurred while fetching tab state": [ - "Під час отримання стану вкладки сталася помилка" + "Form data not found in cache, reverting to chart metadata.": [ + "Дані форми, які не містяться в кеші, повертаючись до метаданих діаграм." ], - "An error occurred while fetching table metadata": [ - "Помилка сталася під час отримання метаданих таблиці" + "Form data not found in cache, reverting to dataset metadata.": [ + "Дані форми, які не знайдені в кеші, повертаючись до метаданих набору даних." ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Помилка сталася під час отримання метаданих таблиці. Зверніться до свого адміністратора." + "[Missing Dataset]": ["[Відсутній набір даних]"], + "Saved queries could not be deleted.": [ + "Збережені запити не можливо видалити." ], - "An error occurred while fetching tag created by values: %s": [ - "Помилка сталася під час отримання тегу, створеного значеннями: %s" + "Saved query not found.": ["Збережений запит не знайдено."], + "Import saved query failed for an unknown reason.": [ + "Збережений імпорт не вдалося з невідомих причин." ], - "An error occurred while fetching user values: %s": [ - "Помилка сталася під час отримання значень користувачів: %s" + "Saved query parameters are invalid.": [ + "Збережені параметри запиту недійсні." ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "Помилка сталася під час приховування лівої смуги. Зверніться до свого адміністратора." + "Invalid tab ids: %s(tab_ids)": [ + "Недійсні ідентифікатори вкладки: %s (tab_ids)" ], - "An error occurred while importing %s: %s": [ - "Помилка сталася під час імпорту %s: %s" + "Dashboard does not exist": ["Дашборд не існує"], + "Chart does not exist": ["Діаграма не існує"], + "Database is required for alerts": ["База даних необхідна для сповіщень"], + "Type is required": ["Потрібен тип"], + "Choose a chart or dashboard not both": [ + "Виберіть діаграму або інформаційну панель, а не обидва" ], - "An error occurred while loading dashboard information.": [ - "Під час завантаження інформації про інформаційну панель сталася помилка." + "Must choose either a chart or a dashboard": [ + "Потрібно вибрати або діаграму, або інформаційну панель" ], - "An error occurred while loading the SQL": [ - "Під час завантаження SQL сталася помилка" + "Please save your chart first, then try creating a new email report.": [ + "Спочатку збережіть свою діаграму, а потім спробуйте створити новий звіт електронної пошти." ], - "An error occurred while opening Explore": [ - "Під час відкриття досліджувати сталася помилка" + "Please save your dashboard first, then try creating a new email report.": [ + "Спочатку збережіть свою інформаційну панель, а потім спробуйте створити новий звіт на електронну пошту." ], - "An error occurred while parsing the key.": [ - "Під час розбору ключа сталася помилка." + "Report Schedule parameters are invalid.": [ + "Параметри розкладу звіту недійсні." ], - "An error occurred while pruning logs ": [ - "Помилка сталася під час обрізки журналів " + "Report Schedule could not be created.": [ + "Графік звітів не вдалося створити." ], - "An error occurred while removing query. Please contact your administrator.": [ - "Під час зняття запиту сталася помилка. Зверніться до свого адміністратора." + "Report Schedule could not be updated.": [ + "Графік звіту не можна було оновити." ], - "An error occurred while removing tab. Please contact your administrator.": [ - "Під час видалення вкладки сталася помилка. Зверніться до свого адміністратора." + "Report Schedule not found.": ["Розклад звіту не знайдено."], + "Report Schedule delete failed.": ["Графік звіту Видалити не вдалося."], + "Report Schedule log prune failed.": [ + "Не вдалося очистити логи Звіту Розкладу." ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "Під час зняття схеми таблиці сталася помилка. Зверніться до свого адміністратора." + "Report Schedule execution failed when generating a screenshot.": [ + "Виконання графіку звіту не вдалося при створенні скріншота." ], - "An error occurred while rendering the visualization: %s": [ - "Під час візуалізації сталася помилка: %s" + "Report Schedule execution failed when generating a csv.": [ + "Виконання графіку звіту не вдалося при створенні CSV." ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Під час встановлення вкладки Active сталася помилка. Зверніться до свого адміністратора." + "Report Schedule execution failed when generating a dataframe.": [ + "Виконання графіку звіту не вдалося при створенні даних даних." ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Під час встановлення вкладки Autorun сталася помилка. Зверніться до свого адміністратора." + "Report Schedule execution got an unexpected error.": [ + "Виконання графіку звіту Отримано несподівану помилку." ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Під час встановлення ідентифікатора бази даних вкладки сталася помилка. Зверніться до свого адміністратора." + "Report Schedule is still working, refusing to re-compute.": [ + "Графік звіту все ще працює, відмовляючись від повторного складання." ], - "An error occurred while setting the tab name. Please contact your administrator.": [ - "Під час встановлення назви вкладки сталася помилка. Зверніться до свого адміністратора." + "Report Schedule reached a working timeout.": [ + "Графік звітів досяг робочого тайм -ауту." ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Під час встановлення схеми вкладки сталася помилка. Зверніться до свого адміністратора." + "A report named \"%(name)s\" already exists": [ + "Звіт під назвою “%(name)s” вже існує" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "Під час встановлення параметрів шаблону вкладки сталася помилка. Зверніться до свого адміністратора." + "An alert named \"%(name)s\" already exists": [ + "Попередження під назвою “%(name)s” вже існує" ], - "An error occurred while starring this chart": [ - "Під час головної частини цього діаграми сталася помилка" + "Resource already has an attached report.": [ + "Ресурс вже має доданий звіт." ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "Помилка сталася під час зберігання останнього ідентифікатора запиту в бекенді. Зверніться до свого адміністратора, якщо ця проблема зберігається." + "Alert query returned more than one row.": [ + "Попередній запит повернув більше одного ряду." ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "Під час зберігання вашого запиту сталася помилка. Щоб уникнути втрати змін, збережіть свій запит за допомогою кнопки \"Зберегти запит\"." + "Alert validator config error.": ["Помилка конфігурації валідатора."], + "Alert query returned more than one column.": [ + "Попередній запит повернув більше одного стовпця." ], - "An error occurred while updating the value.": [ - "Під час оновлення значення сталася помилка." + "Alert query returned a non-number value.": [ + "Попередній запит повернув значення безлічів." ], - "An error occurred while upserting the value.": [ - "Помилка сталася під час збільшення значення." + "Alert found an error while executing a query.": [ + "Попередження знайшло помилку під час виконання запиту." ], - "An unexpected error occurred": ["Сталася несподівана помилка"], - "An unknown error occurred. Please contact your Superset administrator": [ - "Сталася невідома помилка. Зверніться до свого адміністратора Superset" + "A timeout occurred while executing the query.": [ + "Під час виконання запиту стався таймаут." ], - "Anchor to": ["Прив’язати до"], - "Angle at which to end progress axis": [ - "Кут, з яким слід закінчити вісь прогресу" + "A timeout occurred while taking a screenshot.": [ + "Під час зняття скріншота стався таймаут." ], - "Angle at which to start progress axis": [ - "Кут, з яким почати прогрес вісь" + "A timeout occurred while generating a csv.": [ + "Під час генерування CSV стався таймаут." ], - "Animation": ["Анімація"], - "Annotation": ["Анотація"], - "Annotation Layer %s": ["Анотаційний шар %s"], - "Annotation Layers": ["Анотаційні шари"], - "Annotation Slice Configuration": ["Конфігурація анотаційних шматочків"], - "Annotation could not be created.": ["Анотація не вдалося створити."], - "Annotation could not be updated.": ["Анотацію не вдалося оновити."], - "Annotation delete failed.": ["Анотація Видалення не вдалося."], - "Annotation layer": ["Анотаційний шар"], - "Annotation layer could not be created.": [ - "Анотаційний шар не вдалося створити." + "A timeout occurred while generating a dataframe.": [ + "Під час генерування даних даних траплявся таймаут." ], - "Annotation layer could not be deleted.": [ - "Анотаційний шар не міг бути видалений." + "Alert fired during grace period.": [ + "Попередження, вистрілене під час витонченого періоду." ], - "Annotation layer could not be updated.": [ - "Анотаційний шар не вдалося оновити." + "Alert ended grace period.": [ + "Попередження закінчився пільговим періодом." ], - "Annotation layer delete failed.": [ - "Видалення шару анотації не вдалося." + "Alert on grace period": ["Попередження про період Грейс"], + "Report Schedule state not found": [ + "Держава розкладу звітів не знайдена" ], - "Annotation layer description columns": ["Анотація Шар Опис Стовпці"], - "Annotation layer has associated annotations.": [ - "Анотаційний шар має пов’язані анотації." + "Report schedule system error": ["Помилка системи розкладу звітів"], + "Report schedule client error": ["Помилка звіту про графік звітів"], + "Report schedule unexpected error": [ + "Графік звіту про несподівану помилку" ], - "Annotation layer interval end": ["Анотаційний шар інтервалу кінця"], - "Annotation layer name": ["Назва шару анотації"], - "Annotation layer not found.": ["Анотаційний шар не знайдено."], - "Annotation layer opacity": ["Анотація Шар непрозорості"], - "Annotation layer parameters are invalid.": [ - "Параметри шару анотації недійсні." + "Changing this report is forbidden": ["Зміна цього звіту заборонена"], + "An error occurred while pruning logs ": [ + "Помилка сталася під час обрізки журналів " ], - "Annotation layer stroke": ["Анотаційний шлюб"], - "Annotation layer time column": ["Стовпчик часу анотації"], - "Annotation layer title column": ["Стовпчик заголовка шару анотації"], - "Annotation layer type": ["Тип шару анотації"], - "Annotation layer value": ["Значення шару анотації"], - "Annotation layers": ["Анотаційні шари"], - "Annotation layers are still loading.": [ - "Анотаційні шари все ще завантажуються." + "RLS Rule not found.": ["Правило RLS не знайдено."], + "The database could not be found": ["Бази даних не вдалося знайти"], + "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "Оцінка запитів була вбита після %(sqllab_timeout)s секунд. Це може бути занадто складно, або база даних може бути під великим навантаженням." ], - "Annotation name": ["Назва анотації"], - "Annotation not found.": ["Анотація не знайдена."], - "Annotation parameters are invalid.": ["Параметри анотації недійсні."], - "Annotation source": ["Джерело анотації"], - "Annotation source type": ["Тип джерела анотації"], - "Annotation template created": ["Створений шаблон анотації"], - "Annotation template updated": ["Шаблон анотації оновлений"], - "Annotations and Layers": ["Анотації та шари"], - "Annotations and layers": ["Анотації та шари"], - "Annotations could not be deleted.": ["Анотації не можна було видалити."], - "Any": ["Будь -який"], - "Any additional detail to show in the certification tooltip.": [ - "Будь -яка додаткова деталь для показу в підказці сертифікації." + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "База даних, на яку посилається в цьому запиті, не було знайдено. Зверніться до адміністратора для отримання додаткової допомоги або повторіть спробу." ], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "Будь-яка вибрана тут палітра перевищить кольори, застосовані до окремих діаграм цієї інформаційної панелі" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "Не вдалося знайти запит, пов'язаний з цими результатами. Потрібно повторно запустити оригінальний запит." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. " + "Cannot access the query": ["Не вдається отримати доступ до запиту"], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Дані не можна було отримати з результатів результатів. Потрібно повторно запустити оригінальний запит." ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. Дізнайтеся, як підключити драйвер бази даних " + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "Дані не могли бути дезеріалізовані з результатів результатів. Формат зберігання, можливо, змінився, зробивши стару частку даних. Потрібно повторно запустити оригінальний запит." ], - "Append": ["Додаватися"], - "Applied cross-filters (%d)": ["Застосовані перехресні фільти (%d)"], - "Applied filters (%d)": ["Застосовані фільтри (%d)"], - "Applied filters: %s": ["Застосовані фільтри: %s"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "Застосоване вікно прокатки не повернуло жодних даних. Будь ласка, переконайтесь, що запит джерела задовольняє мінімальні періоди, визначені у вікні прокатки." + "Tag parameters are invalid.": ["Параметри тегів недійсні."], + "Tag could not be created.": ["Тег не вдалося створити."], + "Tag could not be deleted.": ["Тег не вдалося видалити."], + "Tagged Object could not be deleted.": [ + "Позначений об’єкт не можна було видалити." ], - "Apply": ["Застосовувати"], - "Apply conditional color formatting to metric": [ - "Застосувати умовне форматування кольорів до метрики" + "An error occurred while creating the value.": [ + "Під час створення значення сталася помилка." ], - "Apply conditional color formatting to metrics": [ - "Застосувати умовне форматування кольорів до показників" + "An error occurred while accessing the value.": [ + "Під час доступу до значення сталася помилка." ], - "Apply conditional color formatting to numeric columns": [ - "Застосовуйте умовне форматування кольорів до числових стовпців" + "An error occurred while deleting the value.": [ + "Під час видалення значення сталася помилка." ], - "Apply filters": ["Застосувати фільтри"], - "Apply metrics on": ["Застосувати показники на"], - "Apply to all panels": ["Застосовуйте до всіх панелей"], - "Apply to specific panels": ["Застосовуйте до певних панелей"], - "April": ["Квітень"], - "Arc": ["Дуга"], - "Are you sure you intend to overwrite the following values?": [ - "Ви впевнені, що маєте намір перезаписати наступні значення?" + "An error occurred while updating the value.": [ + "Під час оновлення значення сталася помилка." ], - "Are you sure you want to cancel?": ["Ви впевнені, що хочете скасувати?"], - "Are you sure you want to delete": ["Ви впевнені, що хочете видалити"], - "Are you sure you want to delete %s?": [ - "Ви впевнені, що хочете видалити %s?" - ], - "Are you sure you want to delete the selected %s?": [ - "Ви впевнені, що хочете видалити вибрані %s?" + "You don't have permission to modify the value.": [ + "У вас немає дозволу на зміну значення." ], - "Are you sure you want to delete the selected annotations?": [ - "Ви впевнені, що хочете видалити вибрані анотації?" + "Resource was not found.": ["Ресурс не був знайдений."], + "Invalid result type: %(result_type)s": [ + "Недійсний тип результату: %(result_type)s" ], - "Are you sure you want to delete the selected charts?": [ - "Ви впевнені, що хочете видалити вибрані діаграми?" + "Columns missing in dataset: %(invalid_columns)s": [ + "Стовпці відсутні в наборі даних: %(invalid_columns)s" ], - "Are you sure you want to delete the selected dashboards?": [ - "Ви впевнені, що хочете видалити вибрані інформаційні панелі?" + "A time column must be specified when using a Time Comparison.": [ + "Стовпчик часу повинен бути вказаний при використанні порівняння часу." ], - "Are you sure you want to delete the selected datasets?": [ - "Ви впевнені, що хочете видалити вибрані набори даних?" + "The chart does not exist": ["Діаграма не існує"], + "The chart datasource does not exist": ["Діаграма даних не існує"], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "Дублікат стовпців/метричних міток: %(labels)s. Будь ласка, переконайтеся, що всі стовпці та показники мають унікальну мітку." ], - "Are you sure you want to delete the selected layers?": [ - "Ви впевнені, що хочете видалити вибрані шари?" + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + "Наступні записи в `series_columns` відсутні у ґcolumnsґ: %(columns)s. " ], - "Are you sure you want to delete the selected queries?": [ - "Ви впевнені, що хочете видалити вибрані запити?" + "`operation` property of post processing object undefined": [ + "`operation` властивість об'єкта після обробки не визначений" ], - "Are you sure you want to delete the selected rules?": [ - "Ви впевнені, що хочете видалити вибрані правила?" + "Unsupported post processing operation: %(operation)s": [ + "Непідтримувана операція після обробки: %(operation)s" ], - "Are you sure you want to delete the selected tags?": [ - "Ви впевнені, що хочете видалити вибрані теги?" + "[asc]": ["[asc]"], + "[desc]": ["[desc]"], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "Помилка в експресії jinja у значеннях вибору предикат: %(msg)s" ], - "Are you sure you want to delete the selected templates?": [ - "Ви впевнені, що хочете видалити вибрані шаблони?" + "Virtual dataset query must be read-only": [ + "Віртуальний запит набору даних повинен бути лише для читання" ], - "Are you sure you want to overwrite this dataset?": [ - "Ви впевнені, що хочете перезаписати цей набір даних?" + "Error while rendering virtual dataset query: %(msg)s": [ + "Помилка під час надання віртуального запиту набору даних: %(msg)s" ], - "Are you sure you want to proceed?": [ - "Ви впевнені, що хочете продовжити?" + "Virtual dataset query cannot be empty": [ + "Віртуальний запит набору даних не може бути порожнім" ], - "Are you sure you want to save and apply changes?": [ - "Ви впевнені, що хочете зберегти та застосувати зміни?" + "Virtual dataset query cannot consist of multiple statements": [ + "Віртуальний запит набору даних не може складатися з декількох тверджень" ], - "Area Chart": ["Діаграма"], - "Area Chart (legacy)": ["Діаграма області (спадщина)"], - "Area chart": ["Діаграма"], - "Area chart opacity": ["Область прозоість діаграми"], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "Діаграми області схожі на лінійні діаграми тим, що вони представляють змінні з однаковою шкалою, але діаграми області складають показники один до одного." + "Error in jinja expression in RLS filters: %(msg)s": [ + "Помилка в виразі jinja у фільтрах RLS: %(msg)s" ], - "Arrow": ["Стрілка"], - "Assign a set of parameters as": ["Призначити набір параметрів як"], - "Associated Charts": ["Асоційовані діаграми"], - "Async Execution": ["Виконання асинхронізації"], - "Asynchronous query execution": ["Асинхронне виконання запитів"], - "August": ["Серпень"], - "Auto": ["Автоматичний"], - "Auto Zoom": ["Автомобільний масштаб"], - "Autocomplete": ["Автозаповнення"], - "Autocomplete filters": ["Автоматичні фільтри"], - "Autocomplete query predicate": ["Auto -Complete Query Prediac"], - "Automatic Color": ["Автоматичний колір"], - "Available sorting modes:": ["Доступні режими сортування:"], - "Average": ["Середній"], - "Average value": ["Середнє значення"], - "Axis": ["Вісь"], - "Axis Bounds": ["Межі вісь"], - "Axis Format": ["Формат вісь"], - "Axis Title": ["Назва вісь"], - "Axis ascending": ["Осі висхідна"], - "Axis descending": ["Осі, що спускається"], - "BOOLEAN": ["Булевий"], - "Back": ["Спинка"], - "Back to all": ["Назад до всіх"], - "Backend": ["Бекен"], - "Backward values": ["Назад значення"], - "Bad formula.": ["Погана формула."], - "Bad spatial key": ["Поганий просторовий ключ"], - "Bar": ["Бар"], - "Bar Chart": ["Гістограма"], - "Bar Chart (legacy)": ["Діаграма (спадщина)"], - "Bar Charts are used to show metrics as a series of bars.": [ - "Барські діаграми використовуються для показу показників як серії барів." + "Metric '%(metric)s' does not exist": ["Метрика ‘%(metric)s' не існує"], + "Db engine did not return all queried columns": [ + "БД двигун не повернув усі запити стовпчики" ], - "Bar Values": ["Значення планки"], - "Bar orientation": ["Орієнтація"], - "Base": ["Базовий"], - "Base layer map style": ["Стиль карти базового шару"], - "Based on a metric": ["На основі метрики"], - "Based on granularity, number of time periods to compare against": [ - "На основі деталізації, кількість часових періодів для порівняння" + "Only `SELECT` statements are allowed": ["Дозволено лише `вибору"], + "Only single queries supported": ["Підтримуються лише одиночні запити"], + "Columns": ["Колони"], + "Show Column": ["Показати колонку"], + "Add Column": ["Додайте стовпчик"], + "Edit Column": ["Редагувати стовпчик"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "Незалежно від того, щоб зробити цей стовпець доступним як параметр [Час деталізації], стовпець повинен бути датетом або датетом" ], - "Based on what should series be ordered on the chart and legend": [ - "Виходячи з того, як слід впорядкувати серії на діаграмі та легенді" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "Чи викривається цей стовпець у розділі \"Фільтри\" перегляду \"Вивчення\"." ], - "Basic": ["Основний"], - "Basic information": ["Основна інформація"], - "Batch editing %d filters:": ["Редагування партії %d фільтрів:"], - "Battery level over time": ["Рівень акумулятора з часом"], - "Be careful.": ["Будь обережний."], - "Before": ["До"], - "Big Number": ["Велике число"], - "Big Number Font Size": ["Розмір шрифту великого числа"], - "Big Number with Trendline": ["Велика кількість з Trendline"], - "Bottom": ["Дно"], - "Bottom Margin": ["Нижня маржа"], - "Bottom left": ["Знизу зліва"], - "Bottom margin, in pixels, allowing for more room for axis labels": [ - "Нижній запас, в пікселях, що дозволяє отримати більше місця для етикетки осі" + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "Тип даних, який висловився в базі даних. У деяких випадках може знадобитися вводити тип вручну для визначені виразами стовпців. У більшості випадків користувачам не потрібно це змінювати." ], - "Bottom right": ["Знизу праворуч"], - "Bottom to Top": ["Дно вгорі"], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Межі для осі y. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить ступінь даних." + "Column": ["Стовпчик"], + "Verbose Name": ["Назва багатослів'я"], + "Description": ["Опис"], + "Groupable": ["Груповий"], + "Filterable": ["Фільтруваний"], + "Table": ["Стіл"], + "Expression": ["Вираз"], + "Is temporal": ["Є тимчасовим"], + "Datetime Format": ["Формат DateTime"], + "Type": ["Тип"], + "Business Data Type": ["Тип даних бізнесу"], + "Invalid date/timestamp format": [ + "Недійсна дата/формат часової позначки" ], - "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Межі для осі. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить ступінь даних." + "Metrics": ["Показники"], + "Show Metric": ["Показати показник"], + "Add Metric": ["Додати показник"], + "Edit Metric": ["Метрика редагування"], + "Metric": ["Метричний"], + "SQL Expression": ["Вираз SQL"], + "D3 Format": ["Формат D3"], + "Extra": ["Додатковий"], + "Warning Message": ["Попереджувальне повідомлення"], + "Tables": ["Столи"], + "Show Table": ["Показати таблицю"], + "Import a table definition": ["Імпортувати визначення таблиці"], + "Edit Table": ["Редагувати таблицю"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "Список діаграм, пов’язаних з цією таблицею. Змінюючи цю дані, ви можете змінити, як поводяться ці пов'язані діаграми. Також зауважте, що діаграми повинні вказати на даний момент, тому ця форма не зможе зберегти, якщо видалити діаграми з даних. Якщо ви хочете змінити дані для діаграми, перезапишіть діаграму з \"Вивчення перегляду\"" ], - "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Межі для первинної осі y. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить ступінь даних." + "Timezone offset (in hours) for this datasource": [ + "Зсув часового поясу (у годинах) для цього даних" ], - "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ - "Межі для вторинної осі y. Працює лише тоді, коли незалежна вісь Y\n Межі увімкнено. Якщо залишити порожні, межі динамічно визначені\n на основі міні/максимуму даних. Зауважте, що ця функція лише розшириться\n діапазон осі. Це не звузить ступінь даних." + "Name of the table that exists in the source database": [ + "Назва таблиці, яка існує у вихідній базі даних" ], - "Box Plot": ["Ділянка коробки"], - "Breakdowns": ["Розбиття"], - "Bubble Chart": ["Міхурна діаграма"], - "Bubble Color": ["Бульбашковий колір"], - "Bubble Size": ["Розмір міхура"], - "Bubble size": ["Розмір міхура"], - "Bucket break points": ["Точки розриву відра"], - "Build": ["Побудувати"], - "Bulk select": ["Виберіть декілька"], - "Bullet Chart": ["Куляна діаграма"], - "Business": ["Бізнес"], - "Business Data Type": ["Тип даних бізнесу"], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "За замовчуванням кожен фільтр завантажує щонайменше 1000 варіантів при первинному завантаженні сторінки. Постановіть це поле, чи є у вас більше 1000 значень фільтра і хочете ввімкнути динамічний пошук, який завантажує значення фільтра, як вводить користувачі (може додавати напругу до вашої бази даних)." + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "Схема, як використовується лише в деяких базах даних, таких як Postgres, Redshift та DB2" ], - "By key: use column names as sorting key": [ - "За ключем: Використовуйте імена стовпців як ключ сортування" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "Ця поля діє на суперсетний вигляд, що означає, що Superset буде виконувати запит проти цього рядка як підзапит." ], - "By key: use row names as sorting key": [ - "За ключем: Використовуйте імена рядків як ключ сортування" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "Приклад застосовується при отримання чіткого значення для заповнення компонента управління фільтром. Підтримує синтаксис шаблону Jinja. Застосовується лише тоді, коли увімкнено `Увімкнути Filter Select`." ], - "By value: use metric values as sorting key": [ - "За значенням: Використовуйте метричні значення як ключ сортування" + "Redirects to this endpoint when clicking on the table from the table list": [ + "Перенаправлення до цієї кінцевої точки при натисканні на таблицю зі списку таблиці" ], - "CANCEL": ["Скасувати"], - "CREATE DATASET": ["Створити набір даних"], - "CREATE TABLE AS": ["Створити таблицю як"], - "CREATE VIEW AS": ["Створити перегляд як"], - "CREATE VIEW statement": ["Створіть оператор перегляду"], - "CRON Schedule": ["Графік крон"], - "CRON expression": ["Вираження крон"], - "CSS": ["CSS"], - "CSS Styles": ["Стилі CSS"], - "CSS Templates": ["Шаблони CSS"], - "CSS applied to the chart": ["CSS, застосований до діаграми"], - "CSS template": ["Шаблон CSS"], - "CSS template could not be deleted.": [ - "Шаблон CSS не можна було видалити." + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "Чи заповнити спадне місце у розділі фільтра «Дослідження перегляду» зі списком різних значень, отриманих з бекенду на льоту" ], - "CSS template name": ["Назва шаблону CSS"], - "CSS template not found.": ["Шаблон CSS не знайдено."], - "CSS templates": ["Шаблони CSS"], - "CSV Upload": ["Завантаження CSV"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "CSV файл “%(csv_filename)s\" Завантажено в таблицю \"%(table_name)s\" в базі даних “%(db_name)s”" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "Чи створена таблиця за допомогою \"візуалізації\" потоку в лабораторії SQL" ], - "CSV to Database configuration": ["CSV до конфігурації бази даних"], - "CSV upload": ["Завантаження CSV"], - "CTAS & CVAS SCHEMA": ["Схема CTAS & CVAS"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTA (створити таблицю як Select) можна запустити лише за допомогою запиту, де останнє твердження - це вибір. Будь ласка, переконайтеся, що ваш запит має вибір як останнє твердження. Потім спробуйте знову запустити свій запит." + "A set of parameters that become available in the query using Jinja templating syntax": [ + "Набір параметрів, які стають доступними у запиті за допомогою синтаксису шаблону Jinja" ], - "CTAS Schema": ["Схема CTAS"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "CVA (створити перегляд як Select) можна запустити лише за допомогою запиту з одним оператором SELECT. Будь ласка, переконайтеся, що ваш запит має лише оператор SELECT. Потім спробуйте знову запустити свій запит." + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "Тривалість (за секунди) тайм -ауту кешування для цієї таблиці. Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу на цей час очікування бази даних, якщо він не визначений." ], - "CVAS (create view as select) query has more than one statement.": [ - "CVAS (створити перегляд як SELECT) Запит має більше одного оператора." + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "" ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "CVAS (Створіть перегляд як SELECT) Запит не є оператором SELECT." + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "" ], + "Associated Charts": ["Асоційовані діаграми"], + "Changed By": ["Змінений"], + "Database": ["База даних"], + "Last Changed": ["Востаннє змінився"], + "Enable Filter Select": ["Увімкнути фільтр Виберіть"], + "Schema": ["Схема"], + "Default Endpoint": ["Кінцева точка за замовчуванням"], + "Offset": ["Компенсація"], "Cache Timeout": ["Тайм -аут кешу"], - "Cache Timeout (seconds)": ["Час кешу (секунди)"], - "Cache timeout": ["Тайм -аут кешу"], - "Cached": ["Кешевий"], - "Cached %s": ["Кешовані %s"], - "Cached value not found": ["Кешоване значення не знайдено"], - "Calculate contribution per series or row": [ - "Обчисліть внесок на серію або ряд" + "Table Name": ["Назва таблиці"], + "Fetch Values Predicate": ["Значення отримання предикатів"], + "Owners": ["Власники"], + "Main Datetime Column": ["Основний стовпець DateTime"], + "SQL Lab View": ["Перегляд лабораторії SQL"], + "Template parameters": ["Параметри шаблону"], + "Modified": ["Змінений"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "Стол був створений. У рамках цього двофазного процесу конфігурації тепер слід натиснути кнопку Редагувати за новою таблицею, щоб налаштувати її." ], - "Calculated column [%s] requires an expression": [ - "Обчислений стовпчик [%s] вимагає виразу" + "Dataset schema is invalid, caused by: %(error)s": [ + "Схема набору даних недійсна, викликана: %(error)s" ], - "Calculated columns": ["Обчислені стовпці"], - "Calculation type": ["Тип обчислення"], - "Calendar Heatmap": ["Календарна теплова карта"], - "Can not move top level tab into nested tabs": [ - "Не можна переміщувати вкладку верхнього рівня на вкладені вкладки" + "Title or Slug": ["Назва або слим"], + "Role": ["Роль"], + "Invalid state.": ["Недійсна держава."], + "Table name undefined": ["Назва таблиці не визначена"], + "Upload Enabled": ["Завантажити увімкнено"], + "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ + "Недійсний рядок підключення, дійсне рядок зазвичай випливає: Backend+драйвер: // користувач: пароль@база даних-розміщення/ім'я бази даних-name" ], - "Can select multiple values": ["Може вибрати кілька значень"], - "Can't have overlap between Series and Breakdowns": [ - "Не може бути перекриття між серіями та розбиттями" + "Field cannot be decoded by JSON. %(msg)s": [ + "Поле не може розшифрувати JSON. %(msg)s" ], - "Cancel": ["Скасувати"], - "Cancel query on window unload event": [ - "Скасувати запит на подію Window Unload" + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "Metadata_params у додатковому полі налаштовані не правильно. Ключ %(key)s є недійсним." ], - "Cannot access the query": ["Не вдається отримати доступ до запиту"], - "Cannot delete a database that has datasets attached": [ - "Не вдається видалити базу даних, в якій додаються набори даних" + "An engine must be specified when passing individual parameters to a database.": [ + "Двигун повинен бути вказаний при передачі окремих параметрів до бази даних." ], - "Cannot have multiple credentials for the SSH Tunnel": [ - "Не може бути декількох облікових даних для тунелю SSH" + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "Специфікація двигуна \"Invalidengine\" не підтримує налаштування за допомогою окремих параметрів." ], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "Не вдається імпортувати інформаційну панель: %(db_error)s.\nПереконайтеся, що створили базу даних перед імпортом інформаційної панелі." + "Null or Empty": ["Нульовий або порожній"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "Будь ласка, перевірте свій запит на наявність помилок синтаксису на або поблизу “%(syntax_error)s\". Потім спробуйте знову запустити свій запит." ], - "Cannot load filter": ["Не вдається завантажувати фільтр"], - "Cannot parse time string [%(human_readable)s]": [ - "Не вдається розбирати часовий рядок [%(human_readable)s]" + "Second": ["Другий"], + "5 second": ["5 секунд"], + "30 second": ["30 секунд"], + "Minute": ["Хвилина"], + "5 minute": ["5 -хвилинний"], + "10 minute": ["10 хвилин"], + "15 minute": ["15 хвилин"], + "30 minute": ["30 хвилин"], + "Hour": ["Година"], + "6 hour": ["6 годин"], + "Day": ["День"], + "Week": ["Тиждень"], + "Month": ["Місяць"], + "Quarter": ["Чверть"], + "Year": ["Рік"], + "Week starting Sunday": ["Тиждень, починаючи з неділі"], + "Week starting Monday": ["Тиждень, починаючи з понеділка"], + "Week ending Saturday": ["Тиждень, що закінчується в суботу"], + "Username": ["Ім'я користувача"], + "Password": ["Пароль"], + "Hostname or IP address": ["Ім'я хоста або IP -адреса"], + "Database port": ["Порт бази даних"], + "Database name": ["Назва бази даних"], + "Additional parameters": ["Додаткові параметри"], + "Use an encrypted connection to the database": [ + "Використовуйте зашифроване з'єднання з базою даних" ], - "Categorical": ["Категоричний"], - "Categorical Color": ["Категоричний колір"], - "Categories to group by on the x-axis.": [ - "Категорії групуватися на осі x." + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Не може підключитися. Переконайтеся, що на обліковому записі служби встановлюються такі ролі: \"Переглядач даних BigQuery\", \"Переглядач метаданих BigQuery\", \"Користувач роботи з великою роботою\" та наступні дозволи встановлюються \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" ], - "Category": ["Категорія"], - "Category Name": ["Назва категорії"], - "Category and Percentage": ["Категорія та відсоток"], - "Category and Value": ["Категорія та значення"], - "Category name": ["Назва категорії"], - "Category of target nodes": ["Категорія цільових вузлів"], - "Category, Value and Percentage": ["Категорія, вартість та відсоток"], - "Cell Padding": ["Комірка"], - "Cell Radius": ["Радіус клітин"], - "Cell Size": ["Розмір клітини"], - "Cell bars": ["Клітинні смуги"], - "Cell content": ["Вміст клітин"], - "Cell limit": ["Обмеження клітин"], - "Center": ["Центр"], - "Centroid (Longitude and Latitude): ": ["Центроїд (довгота та широта): "], - "Certification": ["Сертифікація"], - "Certification details": ["Деталі сертифікації"], - "Certified": ["Сертифікований"], - "Certified By": ["Сертифікований"], - "Certified by": ["Сертифікований"], - "Certified by %s": ["Сертифікований %s"], - "Change order of columns.": ["Змінити порядок стовпців."], - "Change order of rows.": ["Змінити порядок рядків."], - "Changed By": ["Змінений"], - "Changed on": ["Змінюватися"], - "Changes saved.": ["Збережені зміни."], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "Зміна набору даних може зламати діаграму, якщо діаграма покладається на стовпці або метадані, які не існують у цільовому наборі даних" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "Таблиця “%(table)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну таблицю." ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "Зміна цих налаштувань вплине на всі діаграми за допомогою цього набору даних, включаючи діаграми, що належать іншим людям." + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "Ми, здається, не можемо вирішити стовпчик \"%(column)s” на лінії %(location)s." ], - "Changing this Dashboard is forbidden": [ - "Зміна цієї інформаційної панелі заборонена" + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "Схеми “%(schema)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну схему." ], - "Changing this chart is forbidden": ["Зміна цієї діаграми заборонена"], - "Changing this control takes effect instantly": [ - "Зміна цього контролю набуває чинності миттєво" + "Either the username \"%(username)s\" or the password is incorrect.": [ + "Або ім'я користувача “%(username)s”, або пароль невірний." ], - "Changing this dataset is forbidden": [ - "Зміна цього набору даних заборонена" + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "Хост “%(hostname)s” може бути знижений і неможливо досягти." ], - "Changing this dataset is forbidden.": [ - "Зміна цього набору даних заборонена." + "Unable to connect to database \"%(database)s\".": [ + "Неможливо підключитися до бази даних “%(database)s”." ], - "Changing this datasource is forbidden": [ - "Зміна цього даних забороняється" + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "Будь ласка, перевірте свій запит на наявність помилок синтаксису поблизу \"%(server_error)s\". Потім спробуйте знову запустити свій запит." ], - "Changing this report is forbidden": ["Зміна цього звіту заборонена"], - "Character to interpret as decimal point": [ - "Характер тлумачити як десяткову точку" + "We can't seem to resolve the column \"%(column_name)s\"": [ + "Ми не можемо вирішити стовпець “%(column_name)s”" ], - "Character to interpret as decimal point.": [ - "Характер тлумачити як десяткову точку." + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "Або ім'я користувача “%(username)s”, пароль або ім'я бази даних “%(database)s\" є неправильним." ], - "Chart": ["Графік"], - "Chart %(id)s not found": ["Діаграма %(id)s не знайдено"], - "Chart Cache Timeout": ["ЧАС КАХ ЧАСУВАННЯ"], - "Chart Data: %s": ["Дані діаграми: %s"], - "Chart ID": ["Ідентифікатор діаграми"], - "Chart Options": ["Параметри діаграми"], - "Chart Orientation": ["Орієнтація діаграми"], - "Chart Owner: %s": ["Власник діаграми: %s"], - "Chart Source": ["Джерело діаграми"], - "Chart Title": ["Назва діаграми"], - "Chart [%s] has been overwritten": ["Діаграма [%s] була перезаписана"], - "Chart [%s] has been saved": ["Діаграма [%s] збережена"], - "Chart [%s] was added to dashboard [%s]": [ - "Діаграма [%s] була додана до інформаційної панелі [%s]" + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "Ім'я хоста \"%(ім'я хоста)s\" неможливо вирішити." ], - "Chart [{}] has been overwritten": ["Діаграма [{}] була перезаписана"], - "Chart [{}] has been saved": ["Діаграма [{}] збережена"], - "Chart [{}] was added to dashboard [{}]": [ - "Діаграма [{}] була додана до інформаційної панелі [{}]" + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "Порт %(port)s на ім'я хоста \" %(hostname)s” відмовився від з'єднання." ], - "Chart cache timeout": ["ЧАС КАХ ЧАСУВАННЯ"], - "Chart changes": ["Зміни діаграми"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "Компонент діаграми, який дозволяє додавати користувальницький фільтр інтерфейс на інформаційній панелі. При додаванні на інформаційну панель, поле фільтру дозволяє користувачам вказувати конкретні значення або діапазони для фільтра діаграм. Діаграми, до яких застосовується кожне поле фільтру, можна також налаштувати на панелі.\n\n Зауважте, що цей плагін замінюється новою функцією фільтрів, яка живе на самому поданні приладової панелі. Це простіше використовувати і має більше можливостей!" + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "Хост \" %(hostname)s” може бути знижений, і його не можна дістатися на порт %(port)s." ], - "Chart could not be created.": ["Діаграма не вдалося створити."], - "Chart could not be deleted.": ["Діаграму не можна було видалити."], - "Chart could not be updated.": ["Діаграма не вдалося оновити."], - "Chart does not exist": ["Діаграма не існує"], - "Chart has no query context saved. Please save the chart again.": [ - "Діаграма не має збереженого контексту запиту. Будь ласка, збережіть діаграму ще раз." + "Unknown MySQL server host \"%(hostname)s\".": [ + "Невідомий хост MySQL Server “%(hostname)s”." ], - "Chart height": ["Висота діаграми"], - "Chart imported": ["Діаграма імпорту"], - "Chart last modified": ["Діаграма востаннє модифікована"], - "Chart last modified by": ["Діаграма востаннє модифікована за допомогою"], - "Chart name": ["Назва діаграми"], - "Chart options": ["Параметри діаграми"], - "Chart owners": ["Власники діаграм"], - "Chart parameters are invalid.": ["Параметри діаграми недійсні."], - "Chart properties updated": ["Властивості діаграми оновлені"], - "Chart title": ["Назва діаграми"], - "Chart type": ["Тип діаграми"], - "Chart type requires a dataset": ["Тип діаграми вимагає набору даних"], - "Chart width": ["Ширина діаграми"], - "Charts": ["Діаграми"], - "Charts could not be deleted.": ["Діаграми не можна було видалити."], - "Check configuration": ["Перевірте конфігурацію"], - "Check for sorting ascending": [ - "Перевірте наявність сортування висхідного" + "The username \"%(username)s\" does not exist.": [ + "Ім'я користувача “%(username)s\" не існує." ], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "Перевірте, чи повинна діаграма троянд використовувати область сегмента замість радіуса сегмента для пропорції" + "The user/password combination is not valid (Incorrect password for user).": [ + "Комбінація користувача/пароля не є дійсною (неправильний пароль для користувача)." ], - "Check out this chart in dashboard:": [ - "Перегляньте цю діаграму на інформаційній панелі:" + "Could not connect to database: \"%(database)s\"": [ + "Не вдалося підключитися до бази даних: “%(database)s”" ], - "Check out this chart: ": ["Перегляньте цю діаграму: "], - "Check out this dashboard: ": ["Перегляньте цю інформаційну панель: "], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "Перевірте, щоб застосувати фільтри миттєво, коли вони змінюються, а не відображати кнопку [Застосувати]" + "Could not resolve hostname: \"%(host)s\".": [ + "Не вдалося вирішити ім'я хоста: “%(host)s\"." ], - "Check to force date partitions to have the same height": [ - "Перевірте, щоб змусити датні розділи мати однакову висоту" + "Port out of range 0-65535": ["Порт поза діапазоном 0-65535"], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "Недійсний рядок підключення: очікуючи рядка форми 'ocient: // user: pass@host: port/database'." ], - "Check to include time column dropdown": [ - "Перевірте, щоб включити спадне падіння стовпчика часу" + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Помилка синтаксису:%(qualifier)s введення “%(input)s” очікування “%(expected)s" ], - "Check to include time grain dropdown": [ - "Перевірте, щоб включити спадне падіння зерна" + "Table or View \"%(table)s\" does not exist.": [ + "Таблиця або переглянути \"%(таблиця)s\" не існує." ], - "Child label position": ["Позиція дочірньої етикетки"], - "Choice of [Label] must be present in [Group By]": [ - "Вибір [мітки] повинен бути присутнім у [групі]" + "Invalid reference to column: \"%(column)s\"": [ + "Недійсне посилання на стовпець: “%(column)s”" ], - "Choice of [Point Radius] must be present in [Group By]": [ - "Вибір [радіуса точки] повинен бути присутнім у [групі]" + "The password provided for username \"%(username)s\" is incorrect.": [ + "Пароль, що надається для імені користувача \"%(ім'я користувача)s\", є неправильним." ], - "Choose File": ["Виберіть файл"], - "Choose a chart or dashboard not both": [ - "Виберіть діаграму або інформаційну панель, а не обидва" + "Please re-enter the password.": ["Будь ласка, повторно введіть пароль."], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "Ми, здається, не можемо вирішити стовпець \" %(column_name)s” на лінії %(location)s." ], - "Choose a database...": ["Виберіть базу даних ..."], - "Choose a dataset": ["Виберіть набір даних"], - "Choose a metric for right axis": ["Виберіть метрику для правої осі"], - "Choose a number format": ["Виберіть формат числа"], - "Choose a source": ["Виберіть джерело"], - "Choose a source and a target": ["Виберіть джерело та ціль"], - "Choose a target": ["Виберіть ціль"], - "Choose chart type": ["Виберіть тип діаграми"], - "Choose one of the available databases from the panel on the left.": [ - "Виберіть одну з доступних баз даних з панелі зліва." + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "Таблиця “%(table_name)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну таблицю." ], - "Choose the annotation layer type": ["Виберіть тип шару анотації"], - "Choose the format for legend values": [ - "Виберіть формат для значень легенди" + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "Схема \"%(schema_name)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну схему." ], - "Choose the position of the legend": ["Виберіть положення легенди"], - "Choose the source of your annotations": [ - "Виберіть джерело своїх анотацій" + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "Неможливо підключитися до каталогу під назвою “%(catalog_name)s”." ], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "Виберіть, чи повинна країна затінювати метрику, або призначати колір на основі категоричної кольорової палітру" + "Unknown Presto Error": ["Невідома помилка Престо"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "Ми не змогли підключитися до вашої бази даних під назвою “%(database)s\". Будь ласка, перевірте ім’я бази даних та спробуйте ще раз." ], - "Chord Diagram": ["Акордна діаграма"], - "Chosen non-numeric column": ["Обраний не-чим’яний стовпчик"], - "Circle": ["Кола"], - "Circle -> Arrow": ["Коло -> Стрілка"], - "Circle -> Circle": ["Коло -> Коло"], - "Circle radar shape": ["Форма радіолокаційного кола"], - "Circular": ["Круговий"], - "Classic chart that visualizes how metrics change over time.": [ - "Класична діаграма, яка візуалізує, як змінюються показники з часом." + "%(object)s does not exist in this database.": [ + "%(object)s не існує в цій базі даних." ], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "Класична електронна таблиця за стовпцем, як перегляд набору даних. Використовуйте таблиці, щоб продемонструвати перегляд у основних даних або для показу сукупних показників." + "Samples for datasource could not be retrieved.": [ + "Зразки для даних не вдалося отримати." ], - "Clause": ["Застереження"], - "Clear": ["Чіткий"], - "Clear all": ["Очистити всі"], - "Clear all data": ["Очистіть усі дані"], - "Clear form": ["Чітка форма"], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "Натисніть кнопку \"+додавання/редагування фільтрів\", щоб створити нові фільтри для інформаційної панелі" + "Changing this datasource is forbidden": [ + "Зміна цього даних забороняється" ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ - "Натисніть кнопку \"Створити діаграму\" на панелі управління зліва, щоб переглянути візуалізацію або" + "Home": ["Домашня сторінка"], + "Database Connections": ["З'єднання бази даних"], + "Data": ["Дані"], + "Dashboards": ["Дашборди"], + "Charts": ["Діаграми"], + "Datasets": ["Набори даних"], + "Plugins": ["Плагіни"], + "Manage": ["Керувати"], + "CSS Templates": ["Шаблони CSS"], + "SQL Lab": ["SQL LAB"], + "SQL": ["SQL"], + "Saved Queries": ["Збережені запити"], + "Query History": ["Історія запитів"], + "Tags": ["Теги"], + "Action Log": ["Журнал дій"], + "Security": ["Безпека"], + "Alerts & Reports": ["Попередження та звіти"], + "Annotation Layers": ["Анотаційні шари"], + "Row Level Security": ["Безпека на рівні рядків"], + "An error occurred while parsing the key.": [ + "Під час розбору ключа сталася помилка." ], - "Click the lock to make changes.": ["Клацніть замок, щоб внести зміни."], - "Click the lock to prevent further changes.": [ - "Клацніть замок, щоб запобігти подальшим змінам." + "An error occurred while upserting the value.": [ + "Помилка сталася під час збільшення значення." ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "Клацніть на це посилання, щоб перейти на альтернативну форму, яка дозволяє вводити URL -адресу SQLALCHEMY для цієї бази даних вручну." + "Unable to encode value": ["Неможливо кодувати значення"], + "Unable to decode value": ["Не в змозі розшифрувати значення"], + "Invalid permalink key": ["Недійсний ключ постійного посилання"], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "Стовпчик DateTime не надається як конфігурація таблиці деталей і вимагається цим типом діаграми" ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "Клацніть на це посилання, щоб перейти на альтернативну форму, яка розкриває лише необхідні поля, необхідні для підключення цієї бази даних." + "Empty query?": ["Порожній запит?"], + "Unknown column used in orderby: %(col)s": [ + "Невідомий стовпчик, що використовується в порядку: %(col)s" ], - "Click to cancel sorting": ["Клацніть, щоб скасувати сортування"], - "Click to edit": ["Клацніть, щоб редагувати"], - "Click to edit %s.": ["Клацніть на редагування %s."], - "Click to edit chart.": ["Клацніть на Редагувати діаграму."], - "Click to edit label": ["Клацніть, щоб редагувати мітку"], - "Click to favorite/unfavorite": ["Клацніть на улюблений/несправедливий"], - "Click to force-refresh": ["Клацніть, щоб примусити-рефреш"], - "Click to see difference": ["Клацніть, щоб побачити різницю"], - "Click to sort ascending": ["Клацніть, щоб сортувати висхід"], - "Click to sort descending": ["Клацніть, щоб сортувати низхід"], - "Close": ["Закривати"], - "Close all other tabs": ["Закрийте всі інші вкладки"], - "Close tab": ["Вкладка Закрийте"], - "Cluster label aggregator": ["Агрегатор кластерної етикетки"], - "Clustering Radius": ["Радій кластеризації"], - "Code": ["Кодування"], - "Collapse all": ["Згорнути всі"], - "Collapse data panel": ["Панель даних про крах"], - "Collapse row": ["Колапс ряд"], - "Collapse tab content": ["Вміст вкладки колапсу"], - "Collapse table preview": ["Попередній перегляд таблиці колапсу"], - "Color": ["Забарвлення"], - "Color +/-": ["Колір +/-"], - "Color Metric": ["Кольоровий показник"], - "Color Scheme": ["Кольорова схема"], - "Color Steps": ["Кольорові кроки"], - "Color bounds": ["Кольорові межі"], - "Color by": ["Забарвляти"], - "Color metric": ["Кольоровий показник"], - "Color of the target location": ["Колір цільового розташування"], - "Color scheme": ["Кольорова схема"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ - "Колір буде затінений на основі нормалізованого (0% до 100%) значення даної клітини проти інших клітин у вибраному діапазоні: " + "Time column \"%(col)s\" does not exist in dataset": [ + "Стовпчик часу “%(col)s” не існує в наборі даних" ], - "Colors": ["Кольори"], - "Column": ["Стовпчик"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "Стовпчик “%(column)s” не є числовим або не існує в результатах запиту." + "error_message": ["повідомлення про помилку"], + "Filter value list cannot be empty": [ + "Список значень фільтра не може бути порожнім" ], - "Column Configuration": ["Конфігурація стовпців"], - "Column Data Types": ["Типи даних стовпців"], - "Column Formatting": ["Форматування стовпців"], - "Column Label(s)": ["Мітки стовпців"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "Стовпчик, що містить ISO 3166-2 Коди регіону/провінції/відділення у вашій таблиці." + "Must specify a value for filters with comparison operators": [ + "Потрібно вказати значення для фільтрів з операторами порівняння" ], - "Column containing latitude data": [ - "Стовпчик, що містить дані про широту" + "Invalid filter operation type: %(op)s": [ + "Недійсний тип функції фільтра: %(op)s" ], - "Column containing longitude data": ["Стовпчик, що містить дані довготи"], - "Column datatype": ["Тип даних стовпців"], - "Column header tooltip": ["Підказка заголовка стовпців"], - "Column is required": ["Потрібна колонка"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Мітка стовпця для індексу стовпців (ів). Якщо жодного не дано і індекс даних даних є правдивим, використовуються імена індексу." + "Error in jinja expression in WHERE clause: %(msg)s": [ + "Помилка в виразі jinja WHERE: %(msg)s" ], - "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ - "Мітка стовпця для індексу стовпців (ів). Якщо жодного не дається та перевіряється індекс даних" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "Помилка в виразі jinja у HAVING фразі: %(msg)s" ], - "Column name": ["Назва стовпця"], - "Column name [%s] is duplicated": ["Назва стовпця [%s] дублюється"], - "Column referenced by aggregate is undefined: %(column)s": [ - "Стовпчик, на який посилається агрегат, не визначений: %(column)s" + "Database does not support subqueries": [ + "База даних не підтримує підрозділи" ], - "Column select": ["Вибір стовпця"], - "Column to use as the row labels of the dataframe. Leave empty if no index column": [ - "Стовпчик для використання в якості рядків рядків даних даних. Залиште порожній, якщо немає стовпця індексу" + "Value must be greater than 0": ["Значення повинно бути більше 0"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [ + "\n Помилка: %(text)s\n " ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Стовпчик для використання в якості рядків рядків даних даних. Залиште порожній, якщо немає стовпця індексу." + "EMAIL_REPORTS_CTA": ["Email_reports_cta"], + "%(name)s.csv": ["%(name)s.CSV"], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ + "*%(name)s*\n\n%(description)s\n\n<%(URL)s | Ознайомтеся з Superset>\n\n%(table)s\n" ], - "Columnar File": ["Стовпчик"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Солодкий файл “%(columnar_filename)s\" завантажено в таблицю \"%(table_name)s\" в базі даних \"%(db_name)s\"" + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ + "*%(name)s*\n\n%(description)s\n\nПомилка: %(text)s\n" ], - "Columnar to Database configuration": [ - "Conturear в конфігурацію бази даних" + "%(dialect)s cannot be used as a data source for security reasons.": [ + "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки." ], - "Columns": ["Колони"], - "Columns To Be Parsed as Dates": [ - "Стовпці, які слід проаналізувати як дати" + "Guest user cannot modify chart payload": [""], + "You don't have the rights to alter %(resource)s": [ + "Ви не маєте прав на зміну %(ресурси)s" ], - "Columns To Read": ["Стовпці для читання"], - "Columns missing in dataset: %(invalid_columns)s": [ - "Стовпці відсутні в наборі даних: %(invalid_columns)s" + "Failed to execute %(query)s": ["Не вдалося виконати %(query)s"], + "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ + "Будь ласка, перевірте свої параметри шаблону на наявність помилок синтаксису та переконайтеся, що вони відповідають вашому запиту SQL та встановіть параметри. Потім спробуйте знову запустити свій запит." ], - "Columns missing in datasource: %(invalid_columns)s": [ - "Стовпці відсутні в даних datasource: %(invalid_columns)s" + "The query contains one or more malformed template parameters.": [ + "Запит містить один або кілька неправильно сформованих параметрів шаблону." ], - "Columns subtotal position": ["Стовпці субтотального положення"], - "Columns to calculate distribution across.": [ - "Стовпці для обчислення розподілу поперек." + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "Будь ласка, перевірте свій запит і підтвердьте, що всі параметри шаблону оточують подвійні брекети, наприклад, \"{{ds}}\". Потім спробуйте знову запустити свій запит." ], - "Columns to display": ["Стовпці для відображення"], - "Columns to group by": ["Стовпці до групи"], - "Columns to group by on the columns": ["Стовпці до групи на стовпцях"], - "Columns to group by on the rows": ["Стовпці до групи на рядках"], - "Columns to show": ["Колонки для показу"], - "Combine metrics": ["Поєднати показники"], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "Вибір кольору, розділених комою для інтервалів, наприклад 1,2,4. Цілі числа позначають кольори з обраної кольорової гами і є 1-індексованими. Довжина повинна відповідати межі інтервалу." + "Tag name is invalid (cannot contain ':')": [ + "Назва тегу недійсна (не може містити ':')" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "Кома-розділені інтервальні межі, наприклад 2,4,5 для інтервалів 0-2, 2-4 та 4-5. Останнє число повинно відповідати значенням, передбаченим для максимуму." + "Scheduled task executor not found": [ + "Запланований виконавець завдань не знайдено" ], - "Comparator option": ["Параметр порівняння"], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "Порівняйте кілька діаграм часових рядів (як іскричні лінії) та пов'язані з ними показники." + "Record Count": ["Реєстрація"], + "No records found": ["Записів не знайдено"], + "Filter List": ["Список фільтрів"], + "Search": ["Пошук"], + "Refresh": ["Оновлювати"], + "Import dashboards": ["Імпортувати інформаційні панелі"], + "Import Dashboard(s)": ["Імпортувати Дашборд(и)"], + "File": ["Файл"], + "Choose File": ["Виберіть файл"], + "Upload": ["Завантажувати"], + "Use the edit button to change this field": [ + "Використовуйте кнопку Редагувати, щоб змінити це поле" ], - "Compare the same summarized metric across multiple groups.": [ - "Порівняйте однакову узагальнену метрику для декількох груп." + "Test Connection": ["Тестове з'єднання"], + "Unsupported clause type: %(clause)s": [ + "Небудова тип пункту: %(clause)s" ], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ - "Порівняється, як метрика змінюється з часом між різними групами. Кожна група відображається на ряд, і змінюється з часом, візуалізується довжини планки та колір." + "Invalid metric object: %(metric)s": [ + "Недійсний метричний об’єкт: %(metric)s" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "Порівнює показники різних категорій за допомогою барів. Довжина смуги використовується для позначення величини кожного значення, а колір використовується для диференціації груп." + "Unable to find such a holiday: [%(holiday)s]": [ + "Не в змозі знайти таке свято: [%(holiday)s]" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "Порівняйте тривалість часу, коли різні види діяльності займаються спільним переглядом часової шкали." + "DB column %(col_name)s has unknown type: %(value_type)s": [ + "Стовпчик DB %(col_name)s має невідомий тип: %(value_type)s" ], - "Comparison": ["Порівняння"], - "Comparison Period Lag": ["Порівняльний період відставання"], - "Comparison suffix": ["Суфікс порівняння"], - "Compose multiple layers together to form complex visuals.": [ - "Складіть кілька шарів разом для формування складних візуальних зображень." + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "відсотки повинні бути списком або кортежом з двома числовими значеннями, з яких перша нижча за друге значення" ], - "Compute the contribution to the total": ["Обчисліть внесок у загальний"], - "Condition": ["Хвороба"], - "Conditional Formatting": ["Умовне форматування"], - "Conditional formatting": ["Умовне форматування"], - "Confidence interval": ["Довірчий інтервал"], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "Інтервал довіри повинен бути від 0 до 1 (ексклюзивний)" + "`compare_columns` must have the same length as `source_columns`.": [ + "`compare_columns` повинні мати таку ж довжину, що і `source_columns`." ], - "Configuration": ["Конфігурація"], - "Configure Advanced Time Range ": [ - "Налаштування розширеного діапазону часу " + "`compare_type` must be `difference`, `percentage` or `ratio`": [ + "`compare_type` повинно бути `difference`, `percentage` або `ratio`" ], - "Configure Time Range: Last...": [ - "Налаштування діапазону часу: Останнє ..." + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "Стовпчик “%(column)s” не є числовим або не існує в результатах запиту." ], - "Configure Time Range: Previous...": [ - "Налаштування діапазону часу: Попередній ..." + "`rename_columns` must have the same length as `columns`.": [ + "`rename_columns` повинен мати таку ж довжину, що і `columns`." ], - "Configure custom time range": ["Налаштуйте спеціальний діапазон часу"], - "Configure filter scopes": ["Налаштуйте фільтрувальні сфери"], - "Configure the basics of your Annotation Layer.": [ - "Налаштуйте основи вашого шару анотації." + "Invalid cumulative operator: %(operator)s": [ + "Недійсний кумулятивний оператор: %(operator)s" ], - "Configure this dashboard to embed it into an external web application.": [ - "Налаштуйте цю інформаційну панель, щоб вставити її у зовнішній веб додаток." + "Invalid geohash string": ["Недійсна геохашна струна"], + "Invalid longitude/latitude": ["Недійсна довгота/широта"], + "Invalid geodetic string": ["Недійсна геодезна струна"], + "Pivot operation requires at least one index": [ + "Робота повороту вимагає щонайменше одного індексу" ], - "Configure your how you overlay is displayed here.": [ - "Налаштуйте, як тут відображається накладка." + "Pivot operation must include at least one aggregate": [ + "Робота повороту повинна включати щонайменше одну сукупність" ], - "Confirm overwrite": ["Підтвердити перезапис"], - "Confirm save": ["Підтвердьте збереження"], - "Connect": ["З'єднувати"], - "Connect Google Sheet": ["Підключіть аркуш Google"], - "Connect Google Sheets as tables to this database": [ - "Підключіть аркуші Google як таблиці до цієї бази даних" + "`prophet` package not installed": ["`prophet` модуль не встановлений"], + "Time grain missing": ["Часове зерно відсутнє"], + "Unsupported time grain: %(time_grain)s": [ + "Непідтримуване зерно часу: %(time_grain)s" ], - "Connect a database": ["Підключіть базу даних"], - "Connect database": ["Підключіть базу даних"], - "Connect this database using the dynamic form instead": [ - "Підключіть цю базу даних за допомогою динамічної форми" + "Periods must be a whole number": ["Періоди повинні бути цілим числом"], + "Confidence interval must be between 0 and 1 (exclusive)": [ + "Інтервал довіри повинен бути від 0 до 1 (ексклюзивний)" ], - "Connect this database with a SQLAlchemy URI string instead": [ - "Підключіть цю базу даних за допомогою рядка URI SQLALCHEMY" + "DataFrame must include temporal column": [ + "Dataframe повинен включати часовий стовпчик" ], - "Connection": ["З'єднання"], - "Connection failed, please check your connection settings": [ - "Не вдалося підключити, будь ласка, перевірте налаштування з'єднання" + "DataFrame include at least one series": [ + "Dataframe включає щонайменше одну серію" ], - "Connection looks good!": ["З'єднання виглядає добре!"], - "Continue": ["Продовжувати"], - "Continuous": ["Безперервний"], - "Contribution": ["Внесок"], - "Contribution Mode": ["Режим внеску"], - "Control": ["КОНТРОЛЬ"], - "Control labeled ": ["Метод контролю позначено "], - "Controls labeled ": ["Методи керування позначені "], - "Coordinates": ["Координує"], - "Copied to clipboard!": ["Скопіюється в буфер обміну!"], - "Copy": ["Копіювати"], - "Copy SELECT statement to the clipboard": [ - "Скопіюйте оператор SELECT у буфер обміну" + "Label already exists": ["Етикетка вже існує"], + "Resample operation requires DatetimeIndex": [ + "REPAMBLE ORTERCTION вимагає DateTimeIndex" ], - "Copy and Paste JSON credentials": [ - "Копіювати та вставити облікові дані JSON" + "Resample method should in ": ["Метод REPAMBLE повинен в "], + "Undefined window for rolling operation": [ + "Невизначене вікно для операції прокатки" ], - "Copy and paste the entire service account .json file here": [ - "Скопіюйте та вставте весь обліковий запис служби .json файл тут" + "Window must be > 0": ["Вікно повинно бути> 0"], + "Invalid rolling_type: %(type)s": ["Недійсне Rolling_Type: %(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "Недійсні варіанти для %(rolling_type)s: %(options)s" ], - "Copy link": ["Копіювати посилання"], - "Copy message": ["Скопіюйте повідомлення"], - "Copy of %s": ["Копія %s"], - "Copy partition query to clipboard": [ - "Скопіюйте запит на розділ у буфер обміну" + "Referenced columns not available in DataFrame.": [ + "Посилання на стовпці недоступні в даних даних." ], - "Copy permalink to clipboard": [ - "Скопіюйте постійне посилання на буфер обміну" + "Column referenced by aggregate is undefined: %(column)s": [ + "Стовпчик, на який посилається агрегат, не визначений: %(column)s" ], - "Copy query URL": ["Скопіюйте URL -адресу запитів"], - "Copy query link to your clipboard": [ - "Скопіюйте посилання на запит у свій буфер обміну" + "Operator undefined for aggregator: %(name)s": [ + "Оператор, не визначений для агрегатора: %(ім'я)s" ], - "Copy the account name of that database you are trying to connect to.": [ - "Скопіюйте назву облікового запису тієї бази даних, до якої ви намагаєтесь підключитися." + "Invalid numpy function: %(operator)s": [ + "Недійсна функція Numpy: %(operator)s" ], - "Copy the name of the HTTP Path of your cluster.": [ - "Скопіюйте назву HTTP -шляху кластера." + "json isn't valid": ["json не є дійсним"], + "Export to YAML": ["Експорт до Ямла"], + "Export to YAML?": ["Експорт до Ямла?"], + "Delete": ["Видаляти"], + "Delete all Really?": ["Видалити все справді?"], + "Is favorite": ["Є улюбленим"], + "Is tagged": ["Позначено"], + "The data source seems to have been deleted": [ + "Джерело даних, здається, було видалено" ], - "Copy the name of the database you are trying to connect to.": [ - "Скопіюйте назву бази даних, до якої ви намагаєтесь підключитися." + "The user seems to have been deleted": ["Здається, користувач видалив"], + "You don't have the rights to download as csv": [ + "Ви не маєте прав на завантаження як CSV" ], - "Copy to Clipboard": ["Копіювати в буфер обміну"], - "Copy to clipboard": ["Копіювати в буфер обміну"], - "Correlation": ["Співвідношення"], - "Cost estimate": ["Оцінка витрат"], - "Could not connect to database: \"%(database)s\"": [ - "Не вдалося підключитися до бази даних: “%(database)s”" + "Error: permalink state not found": [ + "Помилка: стан постійного посилання не знайдено" ], - "Could not determine datasource type": ["Не вдалося визначити тип даних"], - "Could not fetch all saved charts": [ - "Не міг отримати всі збережених діаграм" + "Error: %(msg)s": ["Помилка: %(msg)s"], + "You don't have the rights to alter this chart": [ + "Ви не маєте прав на зміну цієї діаграми" ], - "Could not find viz object": ["Не вдалося знайти об'єкт Viz"], - "Could not load database driver": [ - "Не вдалося завантажити драйвер бази даних" + "You don't have the rights to create a chart": [ + "Ви не маєте прав на створення діаграми" ], - "Could not load database driver: %(driver_name)s": [ - "Не вдалося завантажити драйвер бази даних: %(driver_name)s" + "Explore - %(table)s": ["Дослідити - %(table)s"], + "Explore": ["Досліджувати"], + "Chart [{}] has been saved": ["Діаграма [{}] збережена"], + "Chart [{}] has been overwritten": ["Діаграма [{}] була перезаписана"], + "You don't have the rights to alter this dashboard": [ + "Ви не маєте прав на зміну цієї інформаційної панелі" ], - "Could not load database driver: {}": [ - "Не вдалося завантажити драйвер бази даних: {}" + "Chart [{}] was added to dashboard [{}]": [ + "Діаграма [{}] була додана до інформаційної панелі [{}]" ], - "Could not resolve hostname: \"%(host)s\".": [ - "Не вдалося вирішити ім'я хоста: “%(host)s\"." + "You don't have the rights to create a dashboard": [ + "Ви не маєте прав на створення інформаційної панелі" ], - "Count": ["Рахувати"], - "Count Unique Values": ["Порахуйте унікальні значення"], - "Count as Fraction of Columns": ["Вважати як частка стовпців"], - "Count as Fraction of Rows": ["Порахуйте як частку рядків"], - "Count as Fraction of Total": ["Вважається часткою загальної кількості"], - "Country": ["Країна"], - "Country Color Scheme": ["Колірна гамма країни"], - "Country Column": ["Стовпчик країни"], - "Country Field Type": ["Тип поля країни"], - "Country Map": ["Карта країни"], - "Create": ["Створити"], - "Create Chart": ["Створити діаграму"], - "Create a dataset": ["Створіть набір даних"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "Створіть набір даних, щоб почати візуалізувати свої дані як діаграму або перейти до\n SQL Lab, щоб запитати ваші дані." + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "Дашборд [{}] був щойно створений, і діаграма [{}] була додана до нього" ], - "Create a new chart": ["Створіть нову діаграму"], - "Create chart": ["Створити діаграму"], - "Create chart with dataset": [ - "Створіть діаграму за допомогою набору даних" + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "Неправильно сформований запит. Очікуються аргументи slice_id або table_name та db_name" ], - "Create dataset": ["Створити набір даних"], - "Create dataset and create chart": [ - "Створити набір даних та створити діаграму" + "Chart %(id)s not found": ["Діаграма %(id)s не знайдено"], + "Table %(table)s wasn't found in the database %(db)s": [ + "Таблиця %(table)s не знайдено в базі даних %(db)s" ], - "Create new chart": ["Створіть нову діаграму"], - "Create new filter set": ["Створіть новий набір фільтра"], - "Create or select schema...": ["Створити або вибрати схему ..."], - "Created": ["Створений"], - "Created On": ["Створений на"], - "Created by": ["Створений"], - "Created by me": ["Створений мною"], - "Created content": ["Створений вміст"], - "Created on": ["Створений на"], - "Creating SSH Tunnel failed for an unknown reason": [ - "Створення тунелю SSH не вдалося з незрозумілої причини" + "permalink state not found": ["стан постійного посилання не знайдено"], + "Show CSS Template": ["Показати шаблон CSS"], + "Add CSS Template": ["Додайте шаблон CSS"], + "Edit CSS Template": ["Редагувати шаблон CSS"], + "Template Name": ["Назва шаблону"], + "A human-friendly name": ["Зручне для людини ім’я"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "Використовується внутрішньо для ідентифікації плагіна. Має бути встановлено на ім'я пакету з пакету Plugin.json" ], - "Creating a data source and creating a new tab": [ - "Створення джерела даних та створення нової вкладки" + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "Повна URL -адреса, що вказує на розташування вбудованого плагіна (наприклад, може бути розміщена на CDN)" ], - "Creator": ["Творець"], - "Crimson": ["Малиновий"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "Перехресний фільтр буде застосований до всіх діаграм, які використовують цей набір даних." + "Custom Plugins": ["Спеціальні плагіни"], + "Custom Plugin": ["Спеціальний плагін"], + "Add a Plugin": ["Додайте плагін"], + "Edit Plugin": ["Редагувати плагін"], + "The dataset associated with this chart no longer exists": [ + "Набір даних, пов'язаний з цією діаграмою, більше не існує" ], - "Cross-filtering is not enabled for this dashboard.": [ - "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі." + "Could not determine datasource type": ["Не вдалося визначити тип даних"], + "Could not find viz object": ["Не вдалося знайти об'єкт Viz"], + "Show Chart": ["Показати діаграму"], + "Add Chart": ["Додайте діаграму"], + "Edit Chart": ["Редагувати діаграму"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Ці параметри генеруються динамічно при натисканні кнопки збереження або перезапис у перегляді. Цей об’єкт JSON викривають тут для довідок та для користувачів живлення, які можуть захотіти змінити конкретні параметри." ], - "Cross-filtering is not enabled in this dashboard": [ - "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі" + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Зверніть увагу на за замовчуванням до часу очікування даних/таблиці, якщо він не визначений." ], - "Cross-filtering scoping": ["Перехресне фільтрування"], - "Cross-filters": ["Перехресні фільтри"], - "Cumulative": ["Кумулятивний"], - "Currently rendered: %s": ["В даний час надано: %s"], - "Custom": ["Звичайний"], - "Custom Plugin": ["Спеціальний плагін"], - "Custom Plugins": ["Спеціальні плагіни"], - "Custom SQL": ["Спеціальний SQL"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "Спеціальні спеціальні показники SQL не ввімкнено для цього набору даних" + "Creator": ["Творець"], + "Datasource": ["Джерело даних"], + "Last Modified": ["Останнє змінено"], + "Parameters": ["Параметри"], + "Chart": ["Графік"], + "Name": ["Назва"], + "Visualization Type": ["Тип візуалізації"], + "Show Dashboard": ["Показати приладову панель"], + "Add Dashboard": ["Додайте Інформаційну панель"], + "Edit Dashboard": ["Редагувати Дашборд"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "Цей об’єкт JSON описує позиціонування віджетів на приладовій панелі. Він динамічно генерується при регулюванні розміру та позицій віджетів, використовуючи перетягування в інформаційній панелі" ], - "Custom SQL fields cannot contain sub-queries.": [ - "Спеціальні поля SQL не можуть містити підзапити." + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "CSS для окремих інформаційних панелей може бути змінений тут, або на поданні приладової панелі, де зміни негайно видно" ], - "Custom time filter plugin": ["Спеціальний плагін фільтра часу"], - "Customize": ["Налаштувати"], - "Customize Metrics": ["Налаштуйте показники"], - "Customize columns": ["Налаштуйте стовпці"], - "Cyclic dependency detected": ["Виявлена ​​циклічна залежність"], - "D3 Format": ["Формат D3"], - "D3 format": ["Формат D3"], - "D3 format syntax: https://github.com/d3/d3-format": [ - "D3 Формат Синтаксис: https://github.com/d3/d3-format" + "To get a readable URL for your dashboard": [ + "Щоб отримати читабельну URL адресу для вашої інформаційної панелі" ], - "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ - "Формат чисел D3 для чисел між -1,0 до 1,0, корисний, коли ви хочете мати різні значні цифри для невеликої та великої кількості" + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "Цей об’єкт JSON генерується динамічно при натисканні кнопки збереження або перезапис у поданні панелі приладної панелі. Тут викрито для довідок та для користувачів живлення, які можуть захотіти змінити конкретні параметри." ], - "D3 time format for datetime columns": [ - "D3 Формат часу для стовпців DateTime" + "Owners is a list of users who can alter the dashboard.": [ + "Власники - це список користувачів, які можуть змінити інформаційну панель." ], - "D3 time format syntax: https://github.com/d3/d3-time-format": [ - "D3 Синтаксис формату часу: https://github.com/d3/d3-time-format" + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ + "Ролі - це список, який визначає доступ до інформаційної панелі. Надання ролі доступу до інформаційної панелі буде обходити перевірки рівня набору даних. Якщо визначаються жодні ролі, застосовуються регулярні дозволи на доступ." ], - "DATETIME": ["ДАТА, ЧАС"], - "DB column %(col_name)s has unknown type: %(value_type)s": [ - "Стовпчик DB %(col_name)s має невідомий тип: %(value_type)s" + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "Визначає, чи видно цю інформаційну панель у списку всіх інформаційних панелей" ], - "DEC": ["Ухвала"], - "DELETE": ["Видаляти"], - "DML": ["DML"], - "Daily seasonality": ["Щоденна сезонність"], - "Dark": ["Темний"], - "Dark Cyan": ["Темний блакит"], - "Dark mode": ["Темний режим"], "Dashboard": ["Дашборд"], - "Dashboard [%s] just got created and chart [%s] was added to it": [ - "Дашборд [%s] був щойно створений, а діаграма [%s] була додана до нього" - ], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "Дашборд [{}] був щойно створений, і діаграма [{}] була додана до нього" + "Title": ["Титул"], + "Slug": ["Слимак"], + "Roles": ["Ролі"], + "Published": ["Опублікований"], + "Position JSON": ["Позиція JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["Метадані JSON"], + "Export": ["Експорт"], + "Export dashboards?": ["Експортувати інформаційні панелі?"], + "CSV Upload": ["Завантаження CSV"], + "Select a file to be uploaded to the database": [ + "Виберіть файл, який потрібно завантажити в базу даних" ], - "Dashboard could not be created.": [ - "Не вдалося створити інформаційну панель." + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "Дозволено лише наступні розширення файлу: %(allowed_extensions)s" ], - "Dashboard could not be deleted.": [ - "Не вдалося видалити інформаційну панель." + "Name of table to be created with CSV file": [ + "Ім'я таблиці, яке потрібно створити за допомогою файлу CSV" ], - "Dashboard could not be updated.": [ - "Не вдалося оновити інформаційну панель." + "Table name cannot contain a schema": [ + "Назва таблиці не може містити схему" ], - "Dashboard does not exist": ["Дашборд не існує"], - "Dashboard imported": ["Дашборд імпортовано"], - "Dashboard parameters are invalid.": [ - "Параметри інформаційної панелі недійсні." + "Select a database to upload the file to": [ + "Виберіть базу даних для завантаження файлу в" ], - "Dashboard properties": ["Властивості інформаційної панелі"], - "Dashboard properties updated": [ - "Оновлені властивості інформаційної панелі" + "Column Data Types": ["Типи даних стовпців"], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "Словник із назвами стовпців та їх типами даних, якщо вам потрібно змінити за замовчуванням. Приклад: {\"user_id\": \"Integer\"}" ], - "Dashboard scheme": ["Схема інформаційної панелі"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "Фільтри діапазону часу на інформаційній панелі застосовуються до тимчасових стовпців, визначених у\n розділ фільтра кожної діаграми. Додайте тимчасові стовпці до діаграми\n Фільтри, щоб цей фільтр на інформаційній панелі впливав на ці діаграми." + "Select a schema if the database supports this": [ + "Виберіть схему, якщо база даних підтримує це" ], - "Dashboard title": ["Назва інформаційної панелі"], - "Dashboard usage": ["Використання інформаційної панелі"], - "Dashboards": ["Дашборди"], - "Dashboards added to": ["Дашборди були додані до"], - "Dashboards could not be deleted.": ["Дашборди не можливо видалити."], - "Dashboards do not exist": ["Дашбордів не існує"], - "Dashed": ["Бридкий"], - "Data": ["Дані"], - "Data Table": ["Таблиця даних"], - "Data URI is not allowed.": ["URI даних заборонено."], - "Data Zoom": ["Масштаб даних"], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "Дані не могли бути дезеріалізовані з результатів результатів. Формат зберігання, можливо, змінився, зробивши стару частку даних. Потрібно повторно запустити оригінальний запит." + "Delimiter": ["Розмежування"], + "Enter a delimiter for this data": ["Введіть розмежування цих даних"], + ",": [","], + ".": ["."], + "Other": ["Інший"], + "If Table Already Exists": ["Якщо таблиця вже існує"], + "What should happen if the table already exists": [ + "Що має статися, якщо стіл вже існує" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Дані не можна було отримати з результатів результатів. Потрібно повторно запустити оригінальний запит." + "Fail": ["Провалити"], + "Replace": ["Замінити"], + "Append": ["Додаватися"], + "Skip Initial Space": ["Пропустити початковий простір"], + "Skip spaces after delimiter": ["Пропустити простори після розмежування"], + "Skip Blank Lines": ["Пропустити порожні лінії"], + "Skip blank lines rather than interpreting them as Not A Number values": [ + "Пропустити порожні рядки, а не інтерпретувати їх як не значення числа" ], - "Data has no time steps": ["Дані не мають часу"], - "Data preview": ["Попередній перегляд даних"], - "Data refreshed": ["Дані оновлені"], - "Data type": ["Тип даних"], - "DataFrame include at least one series": [ - "Dataframe включає щонайменше одну серію" + "Columns To Be Parsed as Dates": [ + "Стовпці, які слід проаналізувати як дати" ], - "DataFrame must include temporal column": [ - "Dataframe повинен включати часовий стовпчик" + "A comma separated list of columns that should be parsed as dates": [ + "Кома -розділений список стовпців, які слід проаналізувати як дати" ], - "Database": ["База даних"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження стовпців. Зверніться до свого адміністратора Superset." + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["Десятковий характер"], + "Character to interpret as decimal point": [ + "Характер тлумачити як десяткову точку" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження CSV. Зверніться до свого адміністратора Superset." + "Null Values": ["Нульові значення"], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"] для порожніх рядків, [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE підтримує лише одне значення" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження Excel. Зверніться до свого адміністратора Superset." + "Index Column": ["Стовпчик індексу"], + "Column to use as the row labels of the dataframe. Leave empty if no index column": [ + "Стовпчик для використання в якості рядків рядків даних даних. Залиште порожній, якщо немає стовпця індексу" ], - "Database Connections": ["З'єднання бази даних"], - "Database Creation Error": ["Помилка створення бази даних"], - "Database URL": ["URL -адреса бази даних"], - "Database connected": ["База даних підключена"], - "Database could not be created.": ["База даних не вдалося створити."], - "Database could not be deleted.": ["База даних не вдалося видалити."], - "Database could not be updated.": ["База даних не вдалося оновити."], - "Database does not allow data manipulation.": [ - "База даних не дозволяє маніпулювати даними." + "Dataframe Index": ["Індекс даних даних"], + "Write dataframe index as a column": [ + "Запишіть індекс даних даних як стовпець" ], - "Database does not exist": ["Бази даних не існує"], - "Database does not support subqueries": [ - "База даних не підтримує підрозділи" + "Column Label(s)": ["Мітки стовпців"], + "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ + "Мітка стовпця для індексу стовпців (ів). Якщо жодного не дається та перевіряється індекс даних" ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "Драйвер бази даних для імпорту, можливо, не встановлений. Відвідайте сторінку документації Superset для інструкцій щодо встановлення: " + "Columns To Read": ["Стовпці для читання"], + "Json list of the column names that should be read": [ + "Json список імен стовпців, які слід прочитати" ], - "Database error": ["Помилка бази даних"], - "Database is offline.": ["База даних офлайн."], - "Database is required for alerts": ["База даних необхідна для сповіщень"], - "Database name": ["Назва бази даних"], - "Database not allowed to change": [ - "База даних не дозволяється змінювати" + "Overwrite Duplicate Columns": ["Перезаписати дублікат стовпців"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Якщо дублікат стовпців не перекриваються, вони будуть представлені як \"x.1, x.2 ... x.x\"" ], - "Database not found.": ["База даних не знайдена."], - "Database not found: %(id)s": ["База даних не знайдена: %(id)s"], - "Database parameters are invalid.": ["Параметри бази даних недійсні."], - "Database passwords": ["Паролі бази даних"], - "Database port": ["Порт бази даних"], - "Database settings updated": ["Оновлені параметри бази даних"], - "Databases": ["Бази даних"], - "Dataframe Index": ["Індекс даних даних"], - "Dataset": ["Набір даних"], - "Dataset %(name)s already exists": ["Набір даних %(name)s вже існує"], - "Dataset Name": ["Назва набору даних"], - "Dataset column delete failed.": [ - "Видалення стовпця набору даних не вдалося." + "Header Row": ["Заголовок"], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ + "Рядок, що містить заголовки, які використовуються як імена стовпців (0 - це перший рядок даних). Залиште порожнім, якщо немає рядка заголовка" ], - "Dataset column not found.": ["Стовпчик набору даних не знайдено."], - "Dataset could not be created.": ["Не вдалося створити набір даних."], - "Dataset could not be deleted.": ["Набір даних не можна було видалити."], - "Dataset could not be duplicated.": [ - "Набір даних не можна було дублювати." + "Rows to Read": ["Ряди для читання"], + "Number of rows of file to read": ["Кількість рядків файлу для читання"], + "Skip Rows": ["Пропустити ряди"], + "Number of rows to skip at start of file": [ + "Кількість рядків для пропускання на початку файлу" ], - "Dataset could not be updated.": ["Набір даних не вдалося оновити."], - "Dataset does not exist": ["Набір даних не існує"], - "Dataset imported": ["Імпортний набір даних"], - "Dataset is required": ["Необхідний набір даних"], - "Dataset metric delete failed.": [ - "Видалення метрики набору даних не вдалося." + "Name of table to be created from excel data.": [ + "Назва таблиці, яка повинна бути створена з даних Excel." ], - "Dataset metric not found.": ["Мета даних не знайдено."], - "Dataset name": ["Назва набору даних"], - "Dataset parameters are invalid.": ["Параметри набору даних недійсні."], - "Dataset schema is invalid, caused by: %(error)s": [ - "Схема набору даних недійсна, викликана: %(error)s" + "Excel File": ["Файл Excel"], + "Select a Excel file to be uploaded to a database.": [ + "Виберіть файл Excel, щоб завантажуватися в базу даних." ], - "Dataset(s) could not be bulk deleted.": [ - "Набір даних (ів) не міг бути вилучений масовим." + "Sheet Name": ["Назва аркуша"], + "Strings used for sheet names (default is the first sheet).": [ + "Рядки, що використовуються для імен аркушів (за замовчуванням - це перший аркуш)." ], - "Datasets": ["Набори даних"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "Набори даних можна створити з таблиць баз даних або запитів SQL. Виберіть таблицю бази даних зліва або " + "Specify a schema (if database flavor supports this).": [ + "Вкажіть схему (якщо аромат бази даних підтримує це)." ], - "Datasets do not contain a temporal column": [ - "Набори даних не містять тимчасового стовпця" + "Table Exists": ["Таблиця існує"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "Якщо таблиця існує одне з наступних: не вдасться (нічого не робіть), замініть (падайте та відтворіть таблицю) або додайте (вставте дані)." ], - "Datasource": ["Джерело даних"], - "Datasource & Chart Type": ["Тип даних та тип діаграми"], - "Datasource does not exist": ["DataSource не існує"], - "Datasource type is invalid": ["Тип даних недійсний"], - "Datasource type is required when datasource_id is given": [ - "Тип даних потрібен, коли задається DataSource_ID" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Рядок, що містить заголовки, які використовуються як імена стовпців (0 - це перший рядок даних). Залиште порожній, якщо немає рядка заголовка." ], - "Date Time Format": ["Формат часу дати"], - "Date filter": ["Фільтр дати"], - "Date format": ["Формат дати"], - "Date format string": ["Рядок формату дати"], - "Date/Time": ["Дата, час"], - "Datetime Format": ["Формат DateTime"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "Стовпчик DateTime не надається як конфігурація таблиці деталей і вимагається цим типом діаграми" + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Стовпчик для використання в якості рядків рядків даних даних. Залиште порожній, якщо немає стовпця індексу." ], - "Datetime format": ["Формат DateTime"], - "Day": ["День"], - "Day (freq=D)": ["День (Freq = D)"], - "Days %s": ["Дні %s"], - "Db engine did not return all queried columns": [ - "БД двигун не повернув усі запити стовпчики" + "Number of rows to skip at start of file.": [ + "Кількість рядків для пропускання на початку файлу." ], - "Deactivate": ["Деактивувати"], - "December": ["Грудень"], - "Decides which column to sort the base axis by.": [ - "Вирішує, який стовпець для сортування базової осі за." + "Number of rows of file to read.": [ + "Кількість рядків файлу для читання." ], - "Decides which measure to sort the base axis by.": [ - "Вирішує, яка міра для сортування базової осі за." + "Parse Dates": ["Дати розбору"], + "A comma separated list of columns that should be parsed as dates.": [ + "Список стовпців, відокремлений комою, які слід проаналізувати як дати." ], - "Decimal Character": ["Десятковий характер"], - "Deck.gl - 3D Grid": ["Палуба.gl - 3D сітка"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D -шестигранник"], - "Deck.gl - Arc": ["Колода.gl - дуга"], - "Deck.gl - GeoJSON": ["Deck.gl - Geojson"], - "Deck.gl - Heatmap": ["Палуба.gl - Теплова карта"], - "Deck.gl - Multiple Layers": ["Deck.gl - кілька шарів"], - "Deck.gl - Paths": ["Deck.gl - шляхи"], - "Deck.gl - Polygon": ["Палуба.gl - багатокутник"], - "Deck.gl - Scatter plot": ["Колода.gl - сюжет розсіювання"], - "Deck.gl - Screen Grid": ["Deck.gl - сітка екрана"], - "Default": ["За замовчуванням"], - "Default Endpoint": ["Кінцева точка за замовчуванням"], - "Default URL": ["URL -адреса за замовчуванням"], - "Default URL to redirect to when accessing from the dataset list page": [ - "URL -адреса за замовчуванням для перенаправлення на доступ до доступу зі сторінки списку даних" + "Character to interpret as decimal point.": [ + "Характер тлумачити як десяткову точку." ], - "Default Value": ["Значення за замовчуванням"], - "Default datetime": ["DateTime за замовчуванням"], - "Default latitude": ["Широта за замовчуванням"], - "Default longitude": ["Довгота за замовчуванням"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "Мінімальна ширина стовпців за замовчуванням у пікселях фактична ширина все ще може бути більша, ніж це, якщо іншим стовпцям не потрібно багато місця" - ], - "Default value is required": ["Значення за замовчуванням необхідне"], - "Default value must be set when \"Filter has default value\" is checked": [ - "Значення за замовчуванням повинно бути встановлено, коли перевіряється \"Фільтр має значення за замовчуванням\"" - ], - "Default value must be set when \"Filter value is required\" is checked": [ - "Значення за замовчуванням повинно бути встановлено, коли перевіряється \"значення фільтра\"" - ], - "Default value set automatically when \"Select first filter value by default\" is checked": [ - "Налаштування значення за замовчуванням автоматично, коли перевіряється \"Виберіть значення першого фільтра\"" - ], - "Define a function that receives the input and outputs the content for a tooltip": [ - "Визначте функцію, яка отримує вхід і виводить вміст для підказки" - ], - "Define a function that returns a URL to navigate to when user clicks": [ - "Визначте функцію, яка повертає URL -адресу, щоб перейти до того, коли користувач клацає" - ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "Визначте функцію JavaScript, яка отримує масив даних, що використовується у візуалізації, і, як очікується, поверне модифіковану версію цього масиву. Це може бути використане для зміни властивостей даних, фільтра або збагачення масиву." - ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "Визначає функцію котячого вікна для застосування, працює разом із текстовим полем [періоди]" - ], - "Defines how each series is broken down": [ - "Визначає, як розбивається кожна серія" - ], - "Defines the grid size in pixels": ["Визначає розмір сітки в пікселях"], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "Визначає групування суб'єктів. Кожна серія відображається як конкретний колір на діаграмі і має легенду перемикання" + "Write dataframe index as a column.": [ + "Запишіть індекс даних даних як стовпець." ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "Визначає розмір функції котячого вікна, відносно вибитої деталізації часу" + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Мітка стовпця для індексу стовпців (ів). Якщо жодного не дано і індекс даних даних є правдивим, використовуються імена індексу." ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "Визначає, чи повинен крок з’являтися на початку, середній або кінець між двома точками даних" + "Null values": ["Нульові значення"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"], [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE підтримує лише одне значення. Використовуйте [\"\"] для порожнього рядка." ], - "Delete": ["Видаляти"], - "Delete %s?": ["Видалити %s?"], - "Delete Annotation?": ["Видалити анотацію?"], - "Delete Database?": ["Видалити базу даних?"], - "Delete Dataset?": ["Видалити набір даних?"], - "Delete Layer?": ["Видалити шар?"], - "Delete Query?": ["Видалити запит?"], - "Delete Report?": ["Видалити звіт?"], - "Delete Template?": ["Видалити шаблон?"], - "Delete all Really?": ["Видалити все справді?"], - "Delete annotation": ["Видалити анотацію"], - "Delete dashboard tab?": ["Видалити вкладку для інформаційної панелі?"], - "Delete database": ["Видалити базу даних"], - "Delete email report": ["Видалити звіт електронної пошти"], - "Delete query": ["Видалити запит"], - "Delete template": ["Видалити шаблон"], - "Delete this container and save to remove this message.": [ - "Видаліть цей контейнер і збережіть, щоб видалити це повідомлення." + "Name of table to be created from columnar data.": [ + "Назва таблиці, яка повинна бути створена з стовпчастих даних." ], - "Deleted": ["Видалений"], - "Deleted %(num)d annotation": ["Видалено %(число) d анотація"], - "Deleted %(num)d annotation layer": ["Видалений %(число) D шар анотації"], - "Deleted %(num)d chart": ["Видалено %(число) D діаграми"], - "Deleted %(num)d css template": ["Видалений %(num) d шаблон CSS"], - "Deleted %(num)d dashboard": ["Видалено %(num)d інформаційних панелей"], - "Deleted %(num)d dataset": ["Видалено %(число) D набору даних"], - "Deleted %(num)d report schedule": ["Видалений %(число) d Розклад звіту"], - "Deleted %(num)d rules": ["Видалено %(число) D Правила"], - "Deleted %(num)d saved query": ["Видалений %(число) d Зберегти запит"], - "Deleted %s": ["Видалено %s"], - "Deleted: %s": ["Видалено: %s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "Видалення вкладки видалить весь вміст всередині неї. Ви все ще можете змінити цю дію за допомогою" + "Columnar File": ["Стовпчик"], + "Select a Columnar file to be uploaded to a database.": [ + "Виберіть стовпчастий файл, щоб завантажуватися в базу даних." ], - "Delimited long & lat single column": [ - "Розмежований одиночний стовпчик Long & Lat" + "Use Columns": ["Використовуйте стовпці"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Список JSON імен стовпців, які слід прочитати. Якщо ні, то з файлу будуть прочитані лише ці стовпці." ], - "Delimiter": ["Розмежування"], - "Delivery method": ["Метод доставки"], - "Demographics": ["Демографія"], - "Density": ["Щільність"], - "Dependent on": ["Залежить від"], - "Deprecated": ["Застарілий"], - "Description": ["Опис"], - "Description (this can be seen in the list)": [ - "Опис (це можна побачити у списку)" + "Databases": ["Бази даних"], + "Show Database": ["Показати базу даних"], + "Add Database": ["Додати базу даних"], + "Edit Database": ["Редагувати базу даних"], + "Expose this DB in SQL Lab": ["Викрити цей БД у лабораторії SQL"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "Керуйте базою даних в асинхронному режимі, що означає, що запити виконуються на віддалених працівниках на відміну від самого веб -сервера. Це передбачає, що у вас є налаштування працівника селери, а також резервні результати. Для отримання додаткової інформації зверніться до документів про встановлення." ], - "Description Columns": ["Опис стовпців"], - "Description text that shows up below your Big Number": [ - "Опис текст, який відображається нижче вашого великого номера" + "Allow CREATE TABLE AS option in SQL Lab": [ + "Дозволити створювати таблицю як опцію в лабораторії SQL" ], - "Deselect all": ["Скасувати всі"], - "Details of the certification": ["Деталі сертифікації"], - "Determines how whiskers and outliers are calculated.": [ - "Визначає, як обчислюються вуса та переживчі." + "Allow CREATE VIEW AS option in SQL Lab": [ + "Дозволити створити перегляд як опцію в лабораторії SQL" ], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "Визначає, чи видно цю інформаційну панель у списку всіх інформаційних панелей" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "Дозволити користувачам запускати оператори, що не вибирали (оновити, видаляти, створювати, ...) у лабораторії SQL" ], - "Diamond": ["Алмаз"], - "Did you mean:": ["Ти мав на увазі:"], - "Difference": ["Різниця"], - "Dim Gray": ["Тьмяно сірий"], - "Dimension": ["Вимір"], - "Dimension to use on x-axis.": ["Розмір використання на осі x."], - "Dimension to use on y-axis.": ["Розмір використання в осі Y."], - "Dimensions": ["Розміри"], - "Directed Force Layout": ["Спрямований макет сили"], - "Directional": ["Спрямований"], - "Disable SQL Lab data preview queries": [ - "Вимкнути запити попереднього перегляду даних SQL" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "При дозволі створювати таблицю як опцію в лабораторії SQL, ця опція змушує створювати таблицю в цій схемі" ], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "Вимкнути попередній перегляд даних під час отримання метаданих таблиці в лабораторії SQL. Корисно, щоб уникнути проблем з продуктивністю браузера при використанні баз даних з дуже широкими таблицями." + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Якщо Presto, всі запити в лабораторії SQL будуть виконані як в даний час реєстрували користувача, який повинен мати дозвіл на їх запуск. Обліковий запис служби, але представляє себе в даний час зафіксовано користувача через властивість hive.server2.proxy.user." ], - "Disable embedding?": ["Вимкнути вбудовування?"], - "Disabled": ["Інвалід"], - "Discard": ["Відкинути"], - "Discrete": ["Дискретний"], - "Display Name": ["Назва відображення"], - "Display column level total": ["Загальний рівень стовпців відображення"], - "Display configuration": ["Конфігурація відображення"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ - "Показники дисплея поруч у кожному стовпці, на відміну від кожного стовпця, що відображається поруч для кожної метрики." + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ + "Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних. Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу на це за замовчуванням до глобального тайм -ауту, якщо він не визначений." ], - "Display row level total": ["Відображення рівня рядка загалом"], - "Display settings": ["Налаштування дисплею"], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ - "Відображає з'єднання між об'єктами в структурі графів. Корисно для відображення відносин та показ, які вузли важливі в мережі. Діаграми графів можуть бути налаштовані на спрямування сили або циркуляцію. Якщо ваші дані мають геопросторову складову, спробуйте діаграму дуги Deck.gl." + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "Якщо вибрано, встановіть схеми, дозволені для завантаження CSV додатково." ], - "Distribute across": ["Розповсюджувати"], - "Distribution": ["Розподіл"], - "Distribution - Bar Chart": ["Розповсюдження - штрих -діаграма"], - "Divider": ["Роздільник"], - "Do you want a donut or a pie?": ["Ви хочете пончик чи пиріг?"], - "Documentation": ["Документація"], - "Domain": ["Домен"], - "Donut": ["Пончик"], - "Dotted": ["Пунктирний"], - "Download": ["Завантажувати"], - "Download as image": ["Завантажте як зображення"], - "Download to CSV": ["Завантажте в CSV"], - "Draft": ["Розтягувати"], - "Drag and drop components and charts to the dashboard": [ - "Перетягніть компоненти та діаграми на інформаційну панель" + "Expose in SQL Lab": ["Викриття в лабораторії SQL"], + "Allow CREATE TABLE AS": ["Дозволити створити таблицю як"], + "Allow CREATE VIEW AS": ["Дозволити створити перегляд як"], + "Allow DML": ["Дозволити DML"], + "CTAS Schema": ["Схема CTAS"], + "SQLAlchemy URI": ["Sqlalchemy uri"], + "Chart Cache Timeout": ["ЧАС КАХ ЧАСУВАННЯ"], + "Secure Extra": ["Забезпечити додаткове"], + "Root certificate": ["Кореневий сертифікат"], + "Async Execution": ["Виконання асинхронізації"], + "Impersonate the logged on user": [ + "Видати себе за реєстрацію користувача" ], - "Drag and drop components to this tab": [ - "Перетягніть компоненти на цю вкладку" + "Allow Csv Upload": ["Дозволити завантаження CSV"], + "Backend": ["Бекен"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "Додаткове поле не може розшифровувати JSON. %(msg)s" ], - "Draw a marker on data points. Only applicable for line types.": [ - "Накресліть маркер на точках даних. Застосовується лише для типів ліній." + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "Недійсний рядок підключення, дійсний рядок зазвичай випливає: 'Драйвер: // користувач: пароль@db-host/database-name'

Приклад: 'postgresql: // user: password@your-postgres-db/база даних' < /p>" ], - "Draw area under curves. Only applicable for line types.": [ - "Накресліть область під кривими. Застосовується лише для типів ліній." + "CSV to Database configuration": ["CSV до конфігурації бази даних"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження CSV. Зверніться до свого адміністратора Superset." ], - "Draw line from Pie to label when labels outside?": [ - "Намалювати лінію з пирога до етикетки, коли етикетки зовні?" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Неможливо завантажити файл CSV “%(filename)s” до таблиці “%(table_name)s” в базі даних “%(db_name)s”. Повідомлення про помилку: %(error_msg)s" ], - "Draw split lines for minor axis ticks": [ - "Накресліть розділені лінії для незначних кліщів" + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "CSV файл “%(csv_filename)s\" Завантажено в таблицю \"%(table_name)s\" в базі даних “%(db_name)s”" ], - "Draw split lines for minor y-axis ticks": [ - "Накресліть розділені лінії для незначних кліщів у осі Y" + "Excel to Database configuration": ["Excel до конфігурації бази даних"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження Excel. Зверніться до свого адміністратора Superset." ], - "Drill by": ["Свердлити"], - "Drill by is not available for this data point": [ - "Свердло не доступне для цієї точки даних" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Неможливо завантажити файл Excel “%(filename)s” до таблиці “%(table_name)s” в базі даних “%(db_name)s\". Повідомлення про помилку: %(error_msg)s" ], - "Drill by is not yet supported for this chart type": [ - "Свердло ще не підтримується для цього типу діаграми" + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Файл Excel \"%(excel_filename)s\" завантажено в таблицю \"%(table_name)s\" в базі даних \"%(db_name)s\"" ], - "Drill by: %s": ["Свердлити: %s"], - "Drill to detail": ["Свердлити до деталей"], - "Drill to detail by": ["Свердлити до деталей"], - "Drill to detail by value is not yet supported for this chart type.": [ - "Свердло до деталей за значенням ще не підтримується для цього типу діаграми." + "Columnar to Database configuration": [ + "Conturear в конфігурацію бази даних" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "Дріль до деталей вимкнено, оскільки ця діаграма не групує дані за значенням розмірності." + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "Для завантаження стовпців заборонено кілька розширень файлу. Будь ласка, переконайтеся, що всі файли мають однакове розширення." ], - "Drill to detail: %s": ["Свердло до деталей: %s"], - "Drop a column here or click": ["Зайдіть сюди або натисніть кнопку"], - "Drop a column/metric here or click": [ - "Спустіть сюди стовпець/метрику або натисніть" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження стовпців. Зверніться до свого адміністратора Superset." ], - "Drop a temporal column here or click": [ - "Спустіть тимчасовий стовпець або натисніть" + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "Не в змозі завантажити стовпчастий файл “%(filename)s” до таблиці “%(table_name)s\" в базі даних “%(db_name)s\". Повідомлення про помилку: %(error_msg)s" ], - "Drop columns/metrics here or click": [ - "Спустіть тут стовпці/метрики або натисніть" + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Солодкий файл “%(columnar_filename)s\" завантажено в таблицю \"%(table_name)s\" в базі даних \"%(db_name)s\"" ], - "Dual Line Chart": ["Діаграма подвійної лінії"], - "Duplicate": ["Дублікат"], + "Request missing data field.": ["Запит пропущеного поля даних."], "Duplicate column name(s): %(columns)s": [ "Дублікат назви стовпців: %(columns)s" ], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "Дублікат стовпців/метричних міток: %(labels)s. Будь ласка, переконайтеся, що всі стовпці та показники мають унікальну мітку." + "Logs": ["Журнали"], + "Show Log": ["Показувати журнал"], + "Add Log": ["Додати журнал"], + "Edit Log": ["Редагувати журнал"], + "User": ["Користувач"], + "Action": ["Дія"], + "dttm": ["dttm"], + "JSON": ["Json"], + "Untitled Query": ["Неправлений запит"], + "Time Range": ["Часовий діапазон"], + "Time Column": ["Стовпчик часу"], + "Time Grain": ["Зерно часу"], + "Time Granularity": ["Час деталізація"], + "Time": ["Час"], + "A reference to the [Time] configuration, taking granularity into account": [ + "Посилання на конфігурацію [часу], враховуючи деталізацію" ], - "Duplicate dataset": ["Дублікат набору даних"], - "Duplicate tab": ["Вкладка дублікатів"], - "Duration": ["Тривалість"], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ - "Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних. Час очікування 0 вказує на те, що кеш ніколи не закінчується, і -1 обходить кеш. Зверніть увагу на це за замовчуванням до глобального тайм -ауту, якщо він не визначений." + "Aggregate": ["Сукупний"], + "Raw records": ["RAW Records"], + "Category name": ["Назва категорії"], + "Total value": ["Загальна вартість"], + "Minimum value": ["Мінімальне значення"], + "Maximum value": ["Максимальне значення"], + "Average value": ["Середнє значення"], + "Certified by %s": ["Сертифікований %s"], + "description": ["опис"], + "bolt": ["болт"], + "Changing this control takes effect instantly": [ + "Зміна цього контролю набуває чинності миттєво" ], - "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ - "Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних. Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу на це за замовчуванням до глобального тайм -ауту, якщо він не визначений." + "Show info tooltip": ["Показати інформацію про підказку"], + "SQL expression": ["Вираз SQL"], + "Column datatype": ["Тип даних стовпців"], + "Column name": ["Назва стовпця"], + "Label": ["Мітка"], + "Metric name": ["Метрична назва"], + "unknown type icon": ["іконка невідомого типу"], + "function type icon": ["іконка типу функції"], + "string type icon": ["іконка типу рядка"], + "numeric type icon": ["значок числового типу"], + "boolean type icon": ["значок булевого типу"], + "temporal type icon": ["іконка тимчасового типу"], + "Advanced analytics": ["Розширена аналітика"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "Цей розділ містить варіанти, які дозволяють отримати розширену аналітичну обробку результатів запитів" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Зверніть увагу на за замовчуванням до часу очікування даних/таблиці, якщо він не визначений." + "Rolling window": ["Коктейльне вікно"], + "Rolling function": ["Функція прокатки"], + "None": ["Ні"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "Визначає функцію котячого вікна для застосування, працює разом із текстовим полем [періоди]" ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ - "Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Встановіть -1, щоб обійти кеш. Зверніть увагу на за замовчуванням до часу очікування набору даних, якщо він не визначений." + "Periods": ["Періоди"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "Визначає розмір функції котячого вікна, відносно вибитої деталізації часу" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "Тривалість (за секунди) тайм -ауту кешування для цієї таблиці. Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу на цей час очікування бази даних, якщо він не визначений." + "Min periods": ["Мінські періоди"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "Мінімальна кількість періодів прокатки, необхідні для показу значення. Наприклад, якщо ви робите накопичувальну суму на 7 днів, ви можете захотіти, щоб ваш \"мінливий період\" був 7, так що всі показані точки даних - це загальна кількість 7 періодів. Це приховає \"рампу\", що відбудеться протягом перших 7 періодів" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Тривалість (за лічені секунди) таймаут кешування метаданих для схем цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується." + "Time comparison": ["Порівняння часу"], + "Time shift": ["Зрушення в часі"], + "1 day ago": ["1 день тому"], + "1 week ago": ["1 тиждень тому"], + "28 days ago": ["28 днів тому"], + "30 days ago": ["30 днів тому"], + "52 weeks ago": ["52 тижні тому"], + "1 year ago": ["1 рік тому"], + "104 weeks ago": ["104 тижні тому"], + "2 years ago": ["2 роки тому"], + "156 weeks ago": ["156 тижнів тому"], + "3 years ago": ["3 роки тому"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Накладіть один або кілька разів з відносного періоду часу. Очікує відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 тижні, 365 днів). Підтримується безкоштовний текст." ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "Тривалість (за лічені секунди) таймаут кешування метаданих для таблиць цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується. " + "Calculation type": ["Тип обчислення"], + "Actual values": ["Фактичні значення"], + "Difference": ["Різниця"], + "Percentage change": ["Зміна відсотків"], + "Ratio": ["Співвідношення"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "Як відобразити зміни часу: як окремі лінії; як різниця між основним часовим рядом та кожною зміною часу; як відсоткова зміна; або як співвідношення між серіями та часом змінюється." ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "Тривалість в МС (1,40008 => 1 мс 400 мк 80ns)" + "Resample": ["Перепродаж"], + "Rule": ["Правити"], + "1 minutely frequency": ["1 хвилинна частота"], + "1 hourly frequency": ["1 погодинна частота"], + "1 calendar day frequency": ["1 Календарний день частота"], + "7 calendar day frequency": ["7 Календарний день частота"], + "1 month start frequency": ["Частота початку 1 місяця"], + "1 month end frequency": ["Кінцева частота 1 місяця"], + "1 year start frequency": ["1 рік старту частоти"], + "1 year end frequency": ["Кінцева частота 1 рік"], + "Pandas resample rule": ["Pandas resamplable Правило"], + "Fill method": ["Метод заповнення"], + "Null imputation": ["Нульова імпутація"], + "Zero imputation": ["Нульова імпутація"], + "Linear interpolation": ["Лінійна інтерполяція"], + "Forward values": ["Значення вперед"], + "Backward values": ["Назад значення"], + "Median values": ["Середні цінності"], + "Mean values": ["Середні значення"], + "Sum values": ["Значення суми"], + "Pandas resample method": ["Метод Pandas Resample"], + "Annotations and Layers": ["Анотації та шари"], + "Left": ["Лівий"], + "Top": ["Топ"], + "Chart Title": ["Назва діаграми"], + "X Axis": ["X Вісь"], + "X Axis Title": ["Назва X Axis"], + "X AXIS TITLE BOTTOM MARGIN": ["X Осі Назва Нижня краю"], + "Y Axis": ["Y Вісь"], + "Y Axis Title": ["Y Назва вісь"], + "Y Axis Title Margin": [""], + "Query": ["Запит"], + "Predictive Analytics": ["Прогнозування аналітики"], + "Enable forecast": ["Увімкнути прогноз"], + "Enable forecasting": ["Увімкнути прогнозування"], + "Forecast periods": ["Прогнозна періоди"], + "How many periods into the future do we want to predict": [ + "Скільки періодів у майбутньому ми хочемо передбачити" ], - "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ - "Тривалість у MS (100,40008 => 100 мс 400 мкс 80ns)" + "Confidence interval": ["Довірчий інтервал"], + "Width of the confidence interval. Should be between 0 and 1": [ + "Ширина довірчого інтервалу. Має бути від 0 до 1" ], - "Duration in ms (66000 => 1m 6s)": ["Тривалість у MS (66000 => 1 м 6с)"], - "Duration: %s": ["Тривалість: %s"], - "Dynamic Aggregation Function": ["Функція динамічної агрегації"], - "Dynamically search all filter values": [ - "Динамічно шукайте всі значення фільтра" + "Yearly seasonality": ["Щорічна сезонність"], + "default": ["за замовчуванням"], + "Yes": ["Так"], + "No": ["Немає"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Якщо щорічно застосовувати сезонність. Цінне значення буде визначати порядок сезонності Фур'є." ], - "ECharts": ["Echarts"], - "EMAIL_REPORTS_CTA": ["Email_reports_cta"], - "END (EXCLUSIVE)": ["Кінець (ексклюзивний)"], - "ERROR": ["Помилка"], - "ERROR: %s": ["Помилка: %s"], - "Edge length": ["Довжина краю"], - "Edge length between nodes": ["Довжина краю між вузлами"], - "Edge symbols": ["Символи краю"], - "Edge width": ["Ширина краю"], - "Edit": ["Редагувати"], - "Edit Alert": ["Редагувати попередження"], - "Edit CSS": ["Редагувати CSS"], - "Edit CSS Template": ["Редагувати шаблон CSS"], - "Edit CSS template properties": ["Редагувати властивості шаблону CSS"], - "Edit Chart": ["Редагувати діаграму"], - "Edit Chart Properties": ["Редагувати властивості діаграми"], - "Edit Column": ["Редагувати стовпчик"], - "Edit Dashboard": ["Редагувати Дашборд"], - "Edit Database": ["Редагувати базу даних"], - "Edit Dataset ": ["Редагувати набір даних "], - "Edit Log": ["Редагувати журнал"], - "Edit Metric": ["Метрика редагування"], - "Edit Plugin": ["Редагувати плагін"], - "Edit Report": ["Редагувати звіт"], - "Edit Rule": ["Правило редагування"], - "Edit Saved Query": ["Редагувати збережений запит"], - "Edit Table": ["Редагувати таблицю"], - "Edit annotation": ["Редагувати анотацію"], - "Edit annotation layer": ["Редагувати шар анотації"], - "Edit annotation layer properties": [ - "Редагувати властивості шару анотації" + "Weekly seasonality": ["Щотижнева сезонність"], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Якщо застосовуватися щотижнева сезонність. Цінне значення буде визначати порядок сезонності Фур'є." ], - "Edit chart": ["Редагувати діаграму"], - "Edit chart properties": ["Редагувати властивості діаграми"], - "Edit dashboard": ["Редагувати інформаційну панель"], - "Edit database": ["Редагувати базу даних"], - "Edit dataset": ["Редагувати набір даних"], - "Edit email report": ["Редагувати звіт електронної пошти"], - "Edit formatter": ["Редагувати форматер"], - "Edit properties": ["Редагувати властивості"], - "Edit query": ["Редагувати запит"], - "Edit template": ["Редагувати шаблон"], - "Edit template parameters": ["Редагувати параметри шаблону"], - "Edit the dashboard": ["Відредагуйте інформаційну панель"], - "Edit time range": ["Редагувати часовий діапазон"], - "Edited": ["Редаговані"], - "Editing 1 filter:": ["Редагування 1 фільтр:"], - "Editing filter set:": ["Набір фільтрів редагування:"], - "Either the database is spelled incorrectly or does not exist.": [ - "Або база даних написана неправильно, або не існує." + "Daily seasonality": ["Щоденна сезонність"], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "Якщо щоденна сезонність застосовувати. Цінне значення буде визначати порядок сезонності Фур'є." ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "Або ім'я користувача “%(username)s”, або пароль невірний." + "Time related form attributes": ["Атрибути, пов’язані з часом"], + "Datasource & Chart Type": ["Тип даних та тип діаграми"], + "Chart ID": ["Ідентифікатор діаграми"], + "The id of the active chart": ["Ідентифікатор активної діаграми"], + "Cache Timeout (seconds)": ["Час кешу (секунди)"], + "The number of seconds before expiring the cache": [ + "Кількість секунд до закінчення кешу" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "Або ім'я користувача “%(username)s”, пароль або ім'я бази даних “%(database)s\" є неправильним." + "URL Parameters": ["Параметри URL -адреси"], + "Extra url parameters for use in Jinja templated queries": [ + "Додаткові параметри URL -адреси для використання в шаблонних запитах Jinja" ], - "Either the username or the password is wrong.": [ - "Або ім'я користувача, або пароль неправильні." + "Extra Parameters": ["Додаткові параметри"], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "Додаткові параметри, які будь -які плагіни можуть вибрати для використання в шаблонних запитах Jinja" ], - "Elevation": ["Піднесення"], - "Email reports active": ["Звіти про електронну пошту активні"], - "Embed": ["Вбудувати"], - "Embed code": ["Вбудувати код"], - "Embed dashboard": ["Вбудувати інформаційну панель"], - "Embedding deactivated.": ["Вбудовування деактивовано."], - "Emit Filter Events": ["Виносити подій фільтра"], - "Emphasis": ["Наголос"], - "Employment and education": ["Зайнятість та освіта"], - "Empty circle": ["Порожнє коло"], - "Empty collection": ["Порожня колекція"], - "Empty column": ["Порожній стовпчик"], - "Empty query result": ["Порожній результат запиту"], - "Empty query?": ["Порожній запит?"], - "Empty row": ["Порожній ряд"], - "Enable 'Allow file uploads to database' in any database's settings": [ - "Увімкніть \"Дозволити завантаження файлів у базу даних\" в налаштуваннях будь -якої бази даних" + "Color Scheme": ["Кольорова схема"], + "Contribution Mode": ["Режим внеску"], + "Row": ["Рядок"], + "Series": ["Серія"], + "Calculate contribution per series or row": [ + "Обчисліть внесок на серію або ряд" ], - "Enable Filter Select": ["Увімкнути фільтр Виберіть"], - "Enable cross-filtering": ["Увімкнути перехресне фільтрування"], - "Enable data zooming controls": [ - "Увімкнути контроль за масштабуванням даних" + "Y-Axis Sort By": ["Y-осі сорт"], + "X-Axis Sort By": ["X-осі сорт"], + "Decides which column to sort the base axis by.": [ + "Вирішує, який стовпець для сортування базової осі за." ], - "Enable embedding": ["Увімкнути вбудовування"], - "Enable forecast": ["Увімкнути прогноз"], - "Enable forecasting": ["Увімкнути прогнозування"], - "Enable graph roaming": ["Увімкнути роумінг графів"], - "Enable node dragging": ["Увімкнути перетягування вузла"], - "Enable query cost estimation": ["Увімкнути оцінку витрат на запит"], - "Enable server side pagination of results (experimental feature)": [ - "Увімкнути серверну пагінування результатів (експериментальна функція)" + "Y-Axis Sort Ascending": ["Y-осі сорт піднімається"], + "X-Axis Sort Ascending": ["X-осі сорт висхідного"], + "Whether to sort ascending or descending on the base Axis.": [ + "Чи сортувати висхідну чи спускатися на осі бази." ], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "Зіткнувшись недійсний нульовий просторовий запис, будь ласка, подумайте про фільтрування їх" + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [ + "Вирішує, яка міра для сортування базової осі за." ], - "End": ["Кінець"], - "End (Longitude, Latitude): ": ["Кінець (довгота, широта): "], - "End Longitude & Latitude": ["Кінцева довгота та широта"], - "End Time": ["Закінчити час"], - "End angle": ["Кінцевий кут"], - "End date": ["Дата закінчення"], - "End date excluded from time range": [ - "Дата закінчення виключається з часового діапазону" + "Dimensions": ["Розміри"], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "" ], - "End date must be after start date": [ - "Дата закінчення повинна бути після дати початку" + "Dimension": ["Вимір"], + "Entity": ["Об'єкт"], + "This defines the element to be plotted on the chart": [ + "Це визначає елемент, який потрібно побудувати на діаграмі" ], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "Двигун “%(engine)s” не може бути налаштований за параметрами." + "Filters": ["Фільтри"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Engine Parameters": ["Параметри двигуна"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ - "Специфікація двигуна \"Invalidengine\" не підтримує налаштування за допомогою окремих параметрів." + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Enter CA_BUNDLE": ["Введіть ca_bundle"], - "Enter Primary Credentials": ["Введіть первинні дані"], - "Enter a delimiter for this data": ["Введіть розмежування цих даних"], - "Enter a name for this sheet": ["Введіть ім’я для цього аркуша"], - "Enter a new title for the tab": ["Введіть новий заголовок для вкладки"], - "Enter duration in seconds": ["Введіть тривалість за лічені секунди"], - "Enter fullscreen": ["Введіть повноекранний"], - "Enter the required %(dbModelName)s credentials": [ - "Введіть необхідні дані %(dbModelName)s" + "Right Axis Metric": ["Метрика правої осі"], + "Sort by": ["Сортувати за"], + "Bubble Size": ["Розмір міхура"], + "Metric used to calculate bubble size": [ + "Метрика, що використовується для обчислення розміру міхура" ], - "Entity": ["Об'єкт"], - "Entity ID": ["Ідентифікатор сутності"], - "Equal Date Sizes": ["Рівні розміри дати"], - "Equal to (=)": ["Дорівнює (=)"], - "Error": ["Помилка"], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "Помилка в виразі jinja у HAVING фразі: %(msg)s" + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "Помилка в виразі jinja у фільтрах RLS: %(msg)s" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "Помилка в виразі jinja WHERE: %(msg)s" + "Color Metric": ["Кольоровий показник"], + "A metric to use for color": ["Показник для використання для кольору"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "Стовпчик часу для візуалізації. Зауважте, що ви можете визначити довільний вираз, який повертає стовпець DateTime в таблиці. Також зауважте, що фільтр нижче застосовується проти цього стовпця або виразу" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "Помилка в експресії jinja у значеннях вибору предикат: %(msg)s" + "Drop a temporal column here or click": [ + "Спустіть тимчасовий стовпець або натисніть" ], - "Error loading chart datasources. Filters may not work correctly.": [ - "Помилка завантаження діаграм даних. Фільтри можуть працювати не правильно." + "Y-axis": ["Y-вісь"], + "Dimension to use on y-axis.": ["Розмір використання в осі Y."], + "X-axis": ["X-вісь"], + "Dimension to use on x-axis.": ["Розмір використання на осі x."], + "The type of visualization to display": [ + "Тип візуалізації для відображення" ], - "Error message": ["Повідомлення про помилку"], - "Error while fetching charts": ["Помилка під час отримання діаграм"], - "Error while fetching data: %s": ["Помилка під час отримання даних: %s"], - "Error while rendering virtual dataset query: %(msg)s": [ - "Помилка під час надання віртуального запиту набору даних: %(msg)s" + "Fixed Color": ["Фіксований колір"], + "Use this to define a static color for all circles": [ + "Використовуйте це для визначення статичного кольору для всіх кола" ], - "Error: %(error)s": ["Помилка: %(error)s"], - "Error: %(msg)s": ["Помилка: %(msg)s"], - "Error: permalink state not found": [ - "Помилка: стан постійного посилання не знайдено" + "Linear Color Scheme": ["Лінійна кольорова гамма"], + "all": ["всі"], + "5 seconds": ["5 секунд"], + "30 seconds": ["30 секунд"], + "1 minute": ["1 хвилина"], + "5 minutes": ["5 хвилин"], + "30 minutes": ["30 хвилин"], + "1 hour": ["1 година"], + "1 day": ["1 день"], + "7 days": ["7 днів"], + "week": ["тиждень"], + "week starting Sunday": ["тиждень, починаючи з неділі"], + "week ending Saturday": ["тиждень, що закінчується в суботу"], + "month": ["місяць"], + "quarter": ["чверть"], + "year": ["рік"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "Часова деталізація для візуалізації. Зауважте, що ви можете вводити та використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 тижнів'" ], - "Estimate cost": ["Оцінка вартості"], - "Estimate selected query cost": ["Оцініть вибрані вартість запиту"], - "Estimate the cost before running a query": [ - "Оцініть вартість перед проведенням запиту" + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ + "" ], - "Event": ["Подія"], - "Event Flow": ["Потік подій"], - "Event Names": ["Назви подій"], - "Event definition": ["Визначення події"], - "Event flow": ["Потік подій"], - "Event time column": ["Стовпчик часу події"], - "Every": ["Кожен"], - "Evolution": ["Еволюція"], - "Exact": ["Точний"], - "Example": ["Приклад"], - "Examples": ["Приклади"], - "Excel File": ["Файл Excel"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Файл Excel \"%(excel_filename)s\" завантажено в таблицю \"%(table_name)s\" в базі даних \"%(db_name)s\"" + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "" ], - "Excel to Database configuration": ["Excel до конфігурації бази даних"], - "Exclude selected values": ["Виключіть вибрані значення"], - "Excluded roles": ["Виключені ролі"], - "Executed SQL": ["Виконаний SQL"], - "Executed query": ["Виконаний запит"], - "Execution ID": ["Ідентифікатор виконання"], - "Execution log": ["Журнал виконання"], - "Existing dataset": ["Існуючий набір даних"], - "Exit fullscreen": ["Вийти на повне екран"], - "Expand": ["Розширити"], - "Expand all": ["Розширити всі"], - "Expand data panel": ["Розгорнути панель даних"], - "Expand row": ["Розширити ряд"], - "Expand table preview": ["Розширити попередній перегляд таблиці"], - "Expand tool bar": ["Розгорнути панель інструментів"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "Очікує формули з параметром залежно від часу 'x'\n У мілісекундах з моменту епохи. MathJS використовується для оцінки формул.\n Приклад: '2x+5'" + "Row limit": ["Межа рядка"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Experimental": ["Експериментальний"], - "Explore": ["Досліджувати"], - "Explore - %(table)s": ["Дослідити - %(table)s"], - "Explore the result set in the data exploration view": [ - "Вивчіть результат, встановлений у поданні досліджень даних" + "Sort Descending": ["Сортувати низхід"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "" ], - "Export": ["Експорт"], - "Export dashboards?": ["Експортувати інформаційні панелі?"], - "Export query": ["Експортний запит"], - "Export to .CSV": ["Експорт до .csv"], - "Export to .JSON": ["Експорт до .json"], - "Export to Excel": ["Експорт до Excel"], - "Export to YAML": ["Експорт до Ямла"], - "Export to YAML?": ["Експорт до Ямла?"], - "Export to full .CSV": ["Експорт до повного .csv"], - "Export to original .CSV": ["Експорт до оригіналу .csv"], - "Export to pivoted .CSV": ["Експорт до повороту .csv"], - "Expose database in SQL Lab": ["Викрити базу даних у лабораторії SQL"], - "Expose in SQL Lab": ["Викриття в лабораторії SQL"], - "Expose this DB in SQL Lab": ["Викрити цей БД у лабораторії SQL"], - "Expression": ["Вираз"], - "Extra": ["Додатковий"], - "Extra Controls": ["Додаткові елементи управління"], - "Extra Parameters": ["Додаткові параметри"], - "Extra data for JS": ["Додаткові дані для JS"], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "Додаткові дані для визначення метаданих таблиць. В даний час підтримує метадані формату: `{\" Сертифікація \": {\" сертифікат_by \":\" Команда платформи даних \",\" Деталі \":\" Ця таблиця є джерелом істини \". }, \"попередження_markdown\": \"Це попередження\". } `." + "Series limit": ["Ліміт серії"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "Обмежує кількість серій, які відображаються. Приєднаний підзапит (або додаткова фаза, де підтримуються підрозділи) застосовується для обмеження кількості серій, які отримують та надаються. Ця функція корисна при групуванні за допомогою стовпців (ів) високої кардинальності, хоча збільшує складність та вартість запитів." ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "Додаткове поле не може розшифровувати JSON. %(msg)s" + "Y Axis Format": ["Формат y Axis"], + "Time format": ["Формат часу"], + "The color scheme for rendering chart": [ + "Колірна гама для діаграми візуалізації" ], - "Extra parameters for use in jinja templated queries": [ - "Додаткові параметри для використання в шаблонних запитах Jinja" + "Truncate Metric": ["Укорочений метрик"], + "Whether to truncate metrics": ["Чи варто обрізати показники"], + "Show empty columns": ["Показати порожні стовпці"], + "D3 format syntax: https://github.com/d3/d3-format": [ + "D3 Формат Синтаксис: https://github.com/d3/d3-format" ], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ - "Додаткові параметри, які будь -які плагіни можуть вибрати для використання в шаблонних запитах Jinja" + "Only applies when \"Label Type\" is set to show values.": [ + "Застосовується лише тоді, коли \"тип мітки\" встановлюється для показу значень." ], - "Extra url parameters for use in Jinja templated queries": [ - "Додаткові параметри URL -адреси для використання в шаблонних запитах Jinja" + "Only applies when \"Label Type\" is not set to a percentage.": [ + "Застосовується лише тоді, коли \"тип мітки\" не встановлений на відсоток." ], - "Extruded": ["Екструдований"], - "FEB": ["Лютий"], - "FRI": ["Пт"], - "Factor": ["Фактор"], - "Factor to multiply the metric by": [ - "Коефіцієнт для множення метрики на" + "Adaptive formatting": ["Адаптивне форматування"], + "Original value": ["Початкове значення"], + "Duration in ms (66000 => 1m 6s)": ["Тривалість у MS (66000 => 1 м 6с)"], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "Тривалість в МС (1,40008 => 1 мс 400 мк 80ns)" ], - "Fail": ["Провалити"], - "Failed": ["Провалився"], - "Failed at retrieving results": ["Не вдалося отримати результати"], - "Failed at stopping query. %s": ["Не вдалося зупинити запит. %s"], - "Failed to create report": ["Не вдалося створити звіт"], - "Failed to execute %(query)s": ["Не вдалося виконати %(query)s"], - "Failed to generate chart edit URL": [ - "Не вдалося створити URL -адресу редагування діаграм" + "D3 time format syntax: https://github.com/d3/d3-time-format": [ + "D3 Синтаксис формату часу: https://github.com/d3/d3-time-format" ], - "Failed to load chart data": ["Не вдалося завантажити дані діаграми"], - "Failed to load chart data.": ["Не вдалося завантажити дані діаграми."], - "Failed to load dimensions for drill by": [ - "Не вдалося завантажити розміри для свердління" + "Oops! An error occurred!": ["На жаль! Виникла помилка!"], + "Stack Trace:": ["Стечко слід:"], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "Для цього запиту жодних результатів не було. Якщо ви очікували повернення результатів, переконайтеся, що будь -які фільтри налаштовані належним чином, а дані містять дані для вибраного діапазону часу." ], - "Failed to retrieve advanced type": [ - "Не вдалося отримати розширений тип" + "No Results": ["Немає результатів"], + "ERROR": ["Помилка"], + "Found invalid orderby options": [ + "Знайдені недійсні параметри замовлення" ], - "Failed to save cross-filter scoping": [ - "Не вдалося зберегти перехресне фільтрування" + "is expected to be an integer": ["очікується, що буде цілим числом"], + "is expected to be a number": ["очікується, що буде числом"], + "Value cannot exceed %s": [""], + "cannot be empty": ["не може бути порожнім"], + "Domain": ["Домен"], + "hour": ["година"], + "day": ["день"], + "The time unit used for the grouping of blocks": [ + "Одиниця часу, що використовується для групування блоків" ], - "Failed to start remote query on a worker.": [ - "Не вдалося запустити віддалений запит на працівника." + "Subdomain": ["Субдомен"], + "min": ["хв"], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "Одиниця часу для кожного блоку. Має бути меншим одиницею, ніж домен_гранулярність. Має бути більшим або рівним часовим зерном" ], - "Failed to update report": ["Не вдалося оновити звіт"], - "Failed to verify select options: %s": [ - "Не вдалося перевірити вибрати параметри: %s" + "Chart Options": ["Параметри діаграми"], + "Cell Size": ["Розмір клітини"], + "The size of the square cell, in pixels": [ + "Розмір квадратної клітини, пікселів" ], - "Favorite": ["Улюблені"], - "Favorites": ["Улюблені"], - "February": ["Лютий"], - "Fetch Values Predicate": ["Значення отримання предикатів"], - "Fetch data preview": ["Попередній перегляд даних"], - "Fetched %s": ["Витягнутий %s"], - "Fetching": ["Приплив"], - "Field cannot be decoded by JSON. %(json_error)s": [ - "Поле не може розшифрувати JSON. %(json_error)s" + "Cell Padding": ["Комірка"], + "The distance between cells, in pixels": [ + "Відстань між клітинами, в пікселях" ], - "Field cannot be decoded by JSON. %(msg)s": [ - "Поле не може розшифрувати JSON. %(msg)s" + "Cell Radius": ["Радіус клітин"], + "The pixel radius": ["Радіус пікселя"], + "Color Steps": ["Кольорові кроки"], + "The number color \"steps\"": ["Колір числа \"кроки\""], + "Time Format": ["Формат часу"], + "Legend": ["Легенда"], + "Whether to display the legend (toggles)": [ + "Чи відображати легенду (перемикає)" ], - "Field is required": ["Потрібне поле"], - "File": ["Файл"], - "Fill Color": ["Заповнити колір"], - "Fill all required fields to enable \"Default Value\"": [ - "Заповніть усі необхідні поля, щоб увімкнути \"значення за замовчуванням\"" + "Show Values": ["Показувати значення"], + "Whether to display the numerical values within the cells": [ + "Чи відображати числові значення всередині комірок" ], - "Fill method": ["Метод заповнення"], - "Filled": ["Наповнений"], - "Filter": ["Фільтрувати"], - "Filter Configuration": ["Конфігурація фільтра"], - "Filter List": ["Список фільтрів"], - "Filter Settings": ["Налаштування фільтра"], - "Filter Type": ["Тип фільтру"], - "Filter box (deprecated)": ["Поле фільтру (застаріло)"], - "Filter charts": ["Фільтр -діаграми"], - "Filter configuration": ["Конфігурація фільтра"], - "Filter configuration for the filter box": [ - "Конфігурація фільтра для поля фільтра" - ], - "Filter has default value": ["Фільтр має значення за замовчуванням"], - "Filter menu": ["Меню фільтра"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "Метадані фільтра змінюються на інформаційній панелі. Це не буде застосовуватися." + "Show Metric Names": ["Показати метричні назви"], + "Whether to display the metric name as a title": [ + "Чи відображати метричну назву як заголовок" ], - "Filter name": ["Назва фільтра"], - "Filter only displays values relevant to selections made in other filters.": [ - "Фільтр відображає лише значення, що стосуються вибору, зроблених в інших фільтрах." + "Number Format": ["Формат числа"], + "Correlation": ["Співвідношення"], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "Візуалізує, як метрика змінювалася за час, використовуючи кольорову шкалу та подання календаря. Сірі значення використовуються для позначення відсутніх значень, а лінійна кольорова гама використовується для кодування величини значення кожного дня." ], - "Filter results": ["Результати фільтрів"], - "Filter set already exists": ["Набір фільтра вже існує"], - "Filter set with this name already exists": [ - "Набір фільтра з цим іменем вже існує" + "Business": ["Бізнес"], + "Comparison": ["Порівняння"], + "Intensity": ["Інтенсивність"], + "Pattern": ["Зразок"], + "Report": ["Доповідь"], + "Trend": ["Тенденція"], + "less than {min} {name}": ["менше {min} {name}"], + "between {down} and {up} {name}": ["між {down} і {up} {name}"], + "more than {max} {name}": ["більше {max} {name}"], + "Sort by metric": ["Сортування за метрикою"], + "Whether to sort results by the selected metric in descending order.": [ + "Чи слід сортувати результати за вибраним показником у порядку зменшення." ], - "Filter sets (%(filterSetCount)d)": [ - "Набори фільтрів (%(filtersetcount) d)" + "Number format": ["Формат числа"], + "Choose a number format": ["Виберіть формат числа"], + "Source": ["Джерело"], + "Choose a source": ["Виберіть джерело"], + "Target": ["Цільовий"], + "Choose a target": ["Виберіть ціль"], + "Flow": ["Протікати"], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "Демонструє потік або зв’язок між категоріями, використовуючи товщину акордів. Значення та відповідна товщина можуть бути різними для кожної сторони." ], - "Filter type": ["Тип фільтру"], - "Filter value (case sensitive)": [ - "Значення фільтра (чутливе до випадку)" + "Relationships between community channels": [ + "Відносини між каналами громади" ], - "Filter value is required": ["Потрібне значення фільтра"], - "Filter value list cannot be empty": [ - "Список значень фільтра не може бути порожнім" + "Chord Diagram": ["Акордна діаграма"], + "Aesthetic": ["Естетичний"], + "Circular": ["Круговий"], + "Legacy": ["Спадщина"], + "Proportional": ["Пропорційний"], + "Relational": ["Реляційний"], + "Country": ["Країна"], + "Which country to plot the map for?": [ + "Для якої країни побудувати карту?" ], - "Filter your charts": ["Відфільтруйте свої діаграми"], - "Filterable": ["Фільтруваний"], - "Filters": ["Фільтри"], - "Filters (%d)": ["Фільтри (%d)"], - "Filters by columns": ["Фільтри за колонками"], - "Filters by metrics": ["Фільтри за метриками"], - "Filters configuration": ["Конфігурація фільтрів"], - "Filters out of scope (%d)": ["Фільтри поза обсягом (%d)"], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ - "Фільтри з тим самим груповим ключем будуть розглянуті разом у групі, тоді як різні групи фільтрів будуть та разом. Невизначені групові ключі трактуються як унікальні групи, тобто не згруповані разом. Наприклад, якщо в таблиці є три фільтри, з яких два - для відділів фінансування та маркетинг (груповий ключ = 'відділ'), а один відноситься до регіону Європи (груповий ключ = 'регіон'), застереження про фільтр застосовуватиметься фільтр (відділ = \"фінанси\" або відділ = \"маркетинг\") та (регіон = \"Європа\")." + "ISO 3166-2 Codes": ["ISO 3166-2 Коди"], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "Стовпчик, що містить ISO 3166-2 Коди регіону/провінції/відділення у вашій таблиці." ], - "Finish": ["Закінчити"], - "First": ["Перший"], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "Зафіксуйте лінію тенденції до повного часу, зазначеного у відфільтрованих результатах" + "Metric to display bottom title": [ + "Метрика для відображення нижньої назви" ], - "Fix to selected Time Range": ["Виправте до вибраного діапазону часу"], - "Fixed": ["Нерухомий"], - "Fixed Color": ["Фіксований колір"], - "Fixed color": ["Фіксований колір"], - "Fixed point radius": ["Фіксований радіус точки"], - "Flow": ["Протікати"], - "Font size": ["Розмір шрифту"], - "Font size for axis labels, detail value and other text elements": [ - "Розмір шрифту для етикетки осі, детальне значення та інші текстові елементи" + "Map": ["Карта"], + "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ + "Візуалізує, як одна метрика змінюється в основних підрозділах країни (держави, провінції тощо) на карті хороплета. Значення кожного підрозділу підвищується, коли ви наведете на відповідну географічну межу." ], - "Font size for the biggest value in the list": [ - "Розмір шрифту за найбільшим значенням у списку" + "2D": ["2d"], + "Geo": ["Гео"], + "Range": ["Діапазон"], + "Stacked": ["Складений"], + "Sorry, there appears to be no data": [ + "Вибачте, даних, як видається, немає" ], - "Font size for the smallest value in the list": [ - "Розмір шрифту для найменшого значення у списку" + "Event definition": ["Визначення події"], + "Event Names": ["Назви подій"], + "Columns to display": ["Стовпці для відображення"], + "Order by entity id": ["Замовлення за сутністю ідентифікатор"], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Важливо! Виберіть це, якщо таблиця ще не відсортована за ідентифікатором сутності, інакше немає гарантії, що всі події для кожної сутності повертаються." ], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "Для BigQuery, Presto та Postgres показує кнопку для обчислення вартості перед запуском запиту." + "Minimum leaf node event count": [ + "Мінімальний кількість подій вузла листя" ], - "For further instructions, consult the": [ - "Для отримання додаткових інструкцій проконсультуйтеся" + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "Листові вузли, що представляють менше, ніж ця кількість подій, спочатку будуть приховані у візуалізації" ], - "For more information about objects are in context in the scope of this function, refer to the": [ - "Для отримання додаткової інформації про об'єкти в контексті в обсязі цієї функції, див. " + "Additional metadata": ["Додаткові метадані"], + "Metadata": ["Метадані"], + "Select any columns for metadata inspection": [ + "Виберіть будь -які стовпці для перевірки метаданих" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ - "Для регулярних фільтрів це ролі, до яких цей фільтр буде застосований. Для базових фільтрів це ролі, до яких фільтр не застосовується, наприклад Адміністратор, якщо адміністратор повинен побачити всі дані." + "Entity ID": ["Ідентифікатор сутності"], + "e.g., a \"user id\" column": ["наприклад, стовпець “user id”"], + "Max Events": ["Максимальні події"], + "The maximum number of events to return, equivalent to the number of rows": [ + "Максимальна кількість подій, що повертаються, еквівалентні кількості рядків" ], - "Force": ["Примушувати"], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "Примушіть всі таблиці та перегляди в цій схемі, натиснувши CTA або CVA в лабораторії SQL." + "Compares the lengths of time different activities take in a shared timeline view.": [ + "Порівняйте тривалість часу, коли різні види діяльності займаються спільним переглядом часової шкали." ], - "Force date format": ["Формат дат сили"], - "Force refresh": ["Оновити"], - "Force refresh schema list": ["Список схеми оновлення сили"], - "Force refresh table list": ["Список таблиць оновлення сили оновлення"], - "Forecast periods": ["Прогнозна періоди"], - "Foreign key": ["Зовнішній ключ"], - "Forest Green": ["Лісовий зелений"], - "Form data not found in cache, reverting to chart metadata.": [ - "Дані форми, які не містяться в кеші, повертаючись до метаданих діаграм." + "Event Flow": ["Потік подій"], + "Progressive": ["Прогресивний"], + "Axis ascending": ["Осі висхідна"], + "Axis descending": ["Осі, що спускається"], + "Metric ascending": ["Метричний висхід"], + "Metric descending": ["Метричний спуск"], + "Heatmap Options": ["Варіанти теплової карти"], + "XScale Interval": ["Xscale Interval"], + "Number of steps to take between ticks when displaying the X scale": [ + "Кількість кроків, які потрібно зробити між кліщами при відображенні шкали X" ], - "Form data not found in cache, reverting to dataset metadata.": [ - "Дані форми, які не знайдені в кеші, повертаючись до метаданих набору даних." + "YScale Interval": ["ІНСПАЛЬНИЙ ІНТЕРВАЛЬ"], + "Number of steps to take between ticks when displaying the Y scale": [ + "Кількість кроків, які потрібно зробити між кліщами при відображенні шкали Y" ], - "Formattable": ["Формальний"], - "Formatted CSV attached in email": [ - "Відформатовано CSV, доданий електронною поштою" + "Rendering": ["Візуалізація"], + "pixelated (Sharp)": ["пікселізований (різкий)"], + "auto (Smooth)": ["авто (Smooth)"], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "CSS атрибут об'єкта canvas, який визначає, як браузер збільшує зображення" ], - "Formatted date": ["Відформатована дата"], - "Formatted value": ["Відформатоване значення"], - "Formatting": ["Форматування"], - "Formula": ["Формула"], - "Forward values": ["Значення вперед"], - "Found invalid orderby options": [ - "Знайдені недійсні параметри замовлення" + "Normalize Across": ["Нормалізувати"], + "heatmap": ["теплова карта"], + "x": ["x"], + "y": ["у"], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "Колір буде затінений на основі нормалізованого (0% до 100%) значення даної клітини проти інших клітин у вибраному діапазоні: " ], - "Fraction digits": ["Фракційні цифри"], - "Frequency": ["Частота"], - "Friction": ["Тертя"], - "Friction between nodes": ["Тертя між вузлами"], - "Friday": ["П’ятниця"], - "From date cannot be larger than to date": [ - "З дати не може бути більшим, ніж на сьогоднішній день" + "x: values are normalized within each column": [ + "x: Значення нормалізуються в кожному стовпці" ], - "Full name": ["Повне ім'я"], - "Funnel Chart": ["Графік воронки"], - "Further customize how to display each column": [ - "Далі налаштувати, як відобразити кожен стовпець" + "y: values are normalized within each row": [ + "y: Значення нормалізуються в кожному рядку" ], - "Further customize how to display each metric": [ - "Далі налаштувати, як відобразити кожну метрику" + "heatmap: values are normalized across the entire heatmap": [ + "heatmap: значення нормалізуються по всьому heatmap" ], - "GROUP BY": ["Група"], - "Gauge Chart": ["Діаграма калібру"], - "General": ["Загальний"], - "Generating link, please wait..": [ - "Генеруючи посилання, будь ласка, зачекайте .." + "Left Margin": ["Залишив націнку"], + "auto": ["автоматичний"], + "Left margin, in pixels, allowing for more room for axis labels": [ + "Лівий запас у пікселях, що дозволяє отримати більше місця для етикетки Axis" ], - "Generic Chart": ["Загальна діаграма"], - "Geo": ["Гео"], - "GeoJson Column": ["Колонка Geojson"], - "GeoJson Settings": ["Налаштування Geojson"], - "Geohash": ["Геохаш"], - "Get the last date by the date unit.": [ - "Отримайте останню дату до одиниці дати." + "Bottom Margin": ["Нижня маржа"], + "Bottom margin, in pixels, allowing for more room for axis labels": [ + "Нижній запас, в пікселях, що дозволяє отримати більше місця для етикетки осі" ], - "Get the specify date for the holiday": [ - "Отримайте дату вказати на свято" + "Value bounds": ["Значення цінності"], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "Межі жорсткого значення застосовуються для кольорового кодування. Є актуальним і застосовується лише тоді, коли нормалізація застосовується проти всієї теплової карти." ], - "Go to the edit mode to configure the dashboard and add charts": [ - "Перейдіть у режим редагування, щоб налаштувати інформаційну панель та додати діаграми" + "Sort X Axis": ["Сортуйте вісь x"], + "Sort Y Axis": ["Сортуйте вісь"], + "Show percentage": ["Показати відсоток"], + "Whether to include the percentage in the tooltip": [ + "Чи включати відсоток у підказку" ], - "Gold": ["Золото"], - "Google Sheet Name and URL": ["Назва та URL адреса Google Sheet"], - "Grace period": ["Період витонченості"], - "Graph Chart": ["Діаграма графа"], - "Graph layout": ["Розположення графу"], - "Gravity": ["Тяжкість"], - "Greater or equal (>=)": ["Більший або рівний (> =)"], - "Greater than (>)": ["Більше (>)"], - "Grid": ["Сітка"], - "Grid Size": ["Розмір сітки"], - "Group By": ["Група"], - "Group By filter plugin": ["Група плагіна фільтрів"], - "Group By, Metrics or Percentage Metrics must have a value": [ - "Група за, показники або відсоткові показники повинні мати значення" + "Normalized": ["Нормалізований"], + "Whether to apply a normal distribution based on rank on the color scale": [ + "Чи застосовувати нормальний розподіл на основі рангу за кольоровою шкалою" ], - "Group Key": ["Груповий ключ"], - "Group by": ["Група"], - "Groupable": ["Груповий"], - "Handlebars": ["Ручка"], - "Handlebars Template": ["Шаблон ручки"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ - "Межі жорсткого значення застосовуються для кольорового кодування. Є актуальним і застосовується лише тоді, коли нормалізація застосовується проти всієї теплової карти." + "Value Format": ["Формат значення"], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "Візуалізуйте пов'язаний показник по парах груп. Теплові карти перевершують кореляцію або міцність між двома групами. Колір використовується для підкреслення сили зв'язку між кожною парою груп." ], - "Has created by": ["Створив"], - "Header": ["Заголовок"], - "Header Row": ["Заголовок"], - "Heatmap": ["Теплова карта"], - "Heatmap Options": ["Варіанти теплової карти"], - "Height": ["Висота"], - "Height of the sparkline": ["Висота іскрової лінії"], - "Hide Line": ["Приховувати лінію"], - "Hide chart description": ["Сховати опис діаграми"], - "Hide layer": ["Сховати шар"], - "Hide password.": ["Приховати пароль."], - "Hide tool bar": ["Сховати панель інструментів"], - "Hides the Line for the time series": [ - "Приховує лінію для часових рядів" - ], - "Hierarchy": ["Ієрархія"], - "Histogram": ["Гістограма"], - "Home": ["Домашня сторінка"], - "Horizon Chart": ["Діаграма горизонту"], - "Horizon Charts": ["Horizon Charts"], - "Horizontal": ["Горизонтальний"], - "Horizontal (Top)": ["Горизонтальний (вгорі)"], - "Horizontal alignment": ["Горизонтальне вирівнювання"], - "Host": ["Господар"], - "Hostname or IP address": ["Ім'я хоста або IP -адреса"], - "Hour": ["Година"], - "Hours %s": ["Години %s"], - "Hours offset": ["Години зміщення"], - "How do you want to enter service account credentials?": [ - "Як ви хочете ввести облікові дані облікового запису служби?" + "Sizes of vehicles": ["Розміри транспортних засобів"], + "Employment and education": ["Зайнятість та освіта"], + "Density": ["Щільність"], + "Predictive": ["Прогнозний"], + "Single Metric": ["Єдиний метрик"], + "to": ["до"], + "count": ["рахувати"], + "cumulative": ["кумулятивний"], + "percentile (exclusive)": ["відсотковий (ексклюзивний)"], + "Select the numeric columns to draw the histogram": [ + "Виберіть числові стовпці, щоб намалювати гістограму" ], - "How many buckets should the data be grouped in.": [ - "Скільки відра слід згрупувати дані." + "No of Bins": ["Немає бункерів"], + "Select the number of bins for the histogram": [ + "Виберіть кількість бункерів для гістограми" ], - "How many periods into the future do we want to predict": [ - "Скільки періодів у майбутньому ми хочемо передбачити" + "X Axis Label": ["X мітка вісь"], + "Y Axis Label": ["Y мітка вісь"], + "Whether to normalize the histogram": ["Чи нормалізувати гістограму"], + "Cumulative": ["Кумулятивний"], + "Whether to make the histogram cumulative": [ + "Чи робити гістограму кумулятивною" ], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "Як відобразити зміни часу: як окремі лінії; як різниця між основним часовим рядом та кожною зміною часу; як відсоткова зміна; або як співвідношення між серіями та часом змінюється." + "Distribution": ["Розподіл"], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "Візьміть свої точки даних та групуйте їх у \"бункери\", щоб побачити, де лежать найгустіші області інформації" ], - "Huge": ["Величезний"], - "ISO 3166-2 Codes": ["ISO 3166-2 Коди"], - "ISO 8601": ["ISO 8601"], - "Id": ["Ідентифікатор"], - "Id of root node of the tree.": ["Id кореневого вузла дерева."], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Якщо Presto або Trino, всі запити в лабораторії SQL будуть виконані як реєстрація в даний час користувачеві, який повинен мати дозвіл на їх запуск. Якщо hive and hive.server2.enable.doas увімкнено, запустить запити в якості облікового запису послуг, але представлять себе в даний час в даний час користувачеві через властивість hive.server2.proxy.user." + "Population age data": ["Дані віку населення"], + "Contribution": ["Внесок"], + "Compute the contribution to the total": ["Обчисліть внесок у загальний"], + "Series Height": ["Висота серії"], + "Pixel height of each series": ["Висота пікселів кожної серії"], + "Value Domain": ["Домен значення"], + "series": ["серія"], + "overall": ["загальний"], + "change": ["зміна"], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "series: Ставтеся до кожної серії незалежно; Загалом: усі серії використовують однакову шкалу; Зміна: Показати зміни порівняно з першою точкою даних у кожній серії" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "Якщо Presto, всі запити в лабораторії SQL будуть виконані як в даний час реєстрували користувача, який повинен мати дозвіл на їх запуск. Обліковий запис служби, але представляє себе в даний час зафіксовано користувача через властивість hive.server2.proxy.user." + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "Порівняється, як метрика змінюється з часом між різними групами. Кожна група відображається на ряд, і змінюється з часом, візуалізується довжини планки та колір." ], - "If Table Already Exists": ["Якщо таблиця вже існує"], - "If a metric is specified, sorting will be done based on the metric value": [ - "Якщо вказано метрику, сортування буде здійснено на основі метричного значення" + "Horizon Chart": ["Діаграма горизонту"], + "Dark Cyan": ["Темний блакит"], + "Purple": ["Фіолетовий"], + "Gold": ["Золото"], + "Dim Gray": ["Тьмяно сірий"], + "Crimson": ["Малиновий"], + "Forest Green": ["Лісовий зелений"], + "Longitude": ["Довгота"], + "Column containing longitude data": ["Стовпчик, що містить дані довготи"], + "Latitude": ["Широта"], + "Column containing latitude data": [ + "Стовпчик, що містить дані про широту" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "Якщо дублікат стовпців не перекриваються, вони будуть представлені як \"x.1, x.2 ... x.x\"" + "Clustering Radius": ["Радій кластеризації"], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "Радіус (у пікселях) алгоритм використовує для визначення кластера. Виберіть 0, щоб вимкнути кластеризацію, але будьте обережні, що велика кількість балів (> 1000) спричинить відставання." ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "Якщо вибрано, встановіть схеми, дозволені для завантаження CSV додатково." + "Points": ["Очки"], + "Point Radius": ["Радіус точки"], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "Радіус окремих точок (тих, які не в кластері). Або чисельна колонка, або `auto`, що масштабує точку на основі найбільшого кластера" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "Якщо таблиця існує одне з наступних: не вдасться (нічого не робіть), замініть (падайте та відтворіть таблицю) або додайте (вставте дані)." + "Auto": ["Автоматичний"], + "Point Radius Unit": ["Блок радіуса точки"], + "Pixels": ["Пікселі"], + "Miles": ["Милі"], + "Kilometers": ["Кілометри"], + "The unit of measure for the specified point radius": [ + "Одиниця виміру для заданого радіуса точки" ], - "Ignore cache when generating screenshot": [ - "Ігноруйте кеш при генеруванні скріншоту" + "Labelling": ["Маркування"], + "label": ["мітка"], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "`Count` - це кількість (*), якщо група використовується. Числові стовпці будуть агреговані з агрегатором. Для маркування точок будуть використані нечислові стовпчики. Залиште порожнім, щоб отримати кількість балів у кожному кластері." ], - "Ignore null locations": ["Ігноруйте нульові місця"], - "Ignore time": ["Ігноруйте час"], - "Image (PNG) embedded in email": [ - "Зображення (PNG), вбудоване в електронну пошту" + "Cluster label aggregator": ["Агрегатор кластерної етикетки"], + "sum": ["сума"], + "mean": ["середній"], + "max": ["максимум"], + "std": ["std"], + "var": ["var"], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "Агрегатна функція, застосована до списку точок у кожному кластері для отримання етикетки кластера." ], - "Image download failed, please refresh and try again.": [ - "Завантажити зображення не вдалося, оновити та повторіть спробу." + "Visual Tweaks": ["Візуальні зміни"], + "Live render": ["Жива візуалізація"], + "Points and clusters will update as the viewport is being changed": [ + "Бали та кластери оновляться, коли змінюється ViewPort" ], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "Видання себе в системі в системі (Presto, Trino, Drill, Hive та Gsheets)" + "Map Style": ["Стиль карти"], + "Streets": ["Вулиці"], + "Dark": ["Темний"], + "Light": ["Світлий"], + "Satellite Streets": ["Супутникові вулиці"], + "Satellite": ["Супутник"], + "Outdoors": ["На відкритому повітрі"], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["Непрозорість"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [ + "Прозоість усіх кластерів, балів та мітків. Між 0 і 1." ], - "Impersonate the logged on user": [ - "Видати себе за реєстрацію користувача" + "RGB Color": ["RGB Колір"], + "The color for points and clusters in RGB": [ + "Колір для точок і кластерів у RGB" ], - "Import": ["Імпорт"], - "Import %s": ["Імпорт %s"], - "Import Dashboard(s)": ["Імпортувати Дашборд(и)"], - "Import Dashboards": ["Імпортувати Дашборди"], - "Import a table definition": ["Імпортувати визначення таблиці"], - "Import chart failed for an unknown reason": [ - "Діаграма імпорту не вдалася з невідомих причин" + "Viewport": ["Viewport"], + "Default longitude": ["Довгота за замовчуванням"], + "Longitude of default viewport": ["Довгота перегляду за замовчуванням"], + "Default latitude": ["Широта за замовчуванням"], + "Latitude of default viewport": ["Широта перегляду за замовчуванням"], + "Zoom": ["Масштаб"], + "Zoom level of the map": ["Рівень масштабу карти"], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "Один або багато елементів керування групами за. Якщо групування, широта та довгота повинні бути присутніми." ], - "Import charts": ["Імпортувати діаграми"], - "Import dashboard failed for an unknown reason": [ - "Не вдалося імпортувати інформаційну панель з невідомих причин" + "Light mode": ["Світловий режим"], + "Dark mode": ["Темний режим"], + "MapBox": ["Mapbox"], + "Scatter": ["Розсіювати"], + "Transformable": ["Перетворений"], + "Significance Level": ["Рівень значущості"], + "Threshold alpha level for determining significance": [ + "Пороговий рівень альфа для визначення значущості" ], - "Import dashboards": ["Імпортувати інформаційні панелі"], - "Import database failed for an unknown reason": [ - "Імпортувати базу даних не вдалося з незрозумілої причини" + "p-value precision": ["точність p-value"], + "Number of decimal places with which to display p-values": [ + "Кількість десяткових місць, з якими можна відобразити p-значення" ], - "Import database from file": ["Імпортувати базу даних з файлу"], - "Import dataset failed for an unknown reason": [ - "Імпортувати набір даних не вдалося з незрозумілої причини" + "Lift percent precision": ["Підніміть відсоткову точність"], + "Number of decimal places with which to display lift values": [ + "Кількість десяткових місць, з якими можна відобразити значення підйому" ], - "Import datasets": ["Імпортувати набори даних"], - "Import queries": ["Імпортувати запити"], - "Import saved query failed for an unknown reason.": [ - "Збережений імпорт не вдалося з невідомих причин." + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "Таблиця, яка візуалізує парні t-тести, які використовуються для розуміння статистичних відмінностей між групами." ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ - "Важливо! Виберіть це, якщо таблиця ще не відсортована за ідентифікатором сутності, інакше немає гарантії, що всі події для кожної сутності повертаються." + "Paired t-test Table": ["Парна таблиця t-тесту"], + "Statistical": ["Статистичний"], + "Tabular": ["Табличний"], + "Options": ["Варіанти"], + "Data Table": ["Таблиця даних"], + "Whether to display the interactive data table": [ + "Чи відображати таблицю інтерактивних даних" ], - "In": ["У"], "Include Series": ["Включіть серію"], - "Include a description that will be sent with your report": [ - "Включіть опис, який буде надіслано з вашим звітом" - ], "Include series name as an axis": ["Включіть назву серії як вісь"], - "Include time": ["Включіть час"], - "Index": ["Індекс"], - "Index Column": ["Стовпчик індексу"], - "Info": ["Інформація"], - "Inner Radius": ["Внутрішній радіус"], - "Inner radius of donut hole": ["Внутрішній радіус пончиків"], - "Input field supports custom rotation. e.g. 30 for 30°": [ - "Поле введення підтримує власне обертання. напр. 30 на 30 °" + "Ranking": ["Рейтинг"], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "Розраховує окремі показники для кожного рядка в даних вертикально і пов'язують їх як ряд. Ця діаграма корисна для порівняння декількох показників у всіх зразках або рядах у даних." ], - "Instant filtering": ["Миттєва фільтрація"], - "Intensity": ["Інтенсивність"], - "Intensity Radius": ["Радіус інтенсивності"], - "Intensity Radius is the radius at which the weight is distributed": [ - "Радіус інтенсивності - радіус, на якому розподіляється вага" + "Coordinates": ["Координує"], + "Directional": ["Спрямований"], + "Time Series Options": ["Параметри часових рядів"], + "Not Time Series": ["Не часовий ряд"], + "Ignore time": ["Ігноруйте час"], + "Time Series": ["Часовий ряд"], + "Standard time series": ["Стандартний часовий ряд"], + "Aggregate Mean": ["Сукупне середнє значення"], + "Mean of values over specified period": [ + "Середнє значення за визначений період" ], - "Intensity is the value multiplied by the weight to obtain the final weight": [ - "Інтенсивність - це значення, помножене на вагу, щоб отримати кінцеву вагу" + "Aggregate Sum": ["Сукупна сума"], + "Sum of values over specified period": [ + "Сума значень протягом визначеного періоду" ], - "Interpret Datetime Format Automatically": [ - "Інтерпретувати формат DateTime автоматично" + "Metric change in value from `since` to `until`": [ + "Метрична зміна значення від `з` `` до '" ], - "Interpret the datetime format automatically": [ - "Інтерпретувати формат DateTime автоматично" + "Percent Change": ["Відсоткова зміна"], + "Metric percent change in value from `since` to `until`": [ + "Метрична відсоткова зміна вартості з `з моменту` `до '" ], - "Interval": ["Інтервал"], - "Interval End column": ["Інтервальний кінцевий стовпчик"], - "Interval bounds": ["Інтервальні межі"], - "Interval colors": ["Інтервальні кольори"], - "Interval start column": ["Стовпчик запуску інтервалу"], - "Intervals": ["Інтервали"], - "Intesity": ["Нечіткість"], - "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ - "Недійсний рядок підключення: очікуючи рядка форми 'ocient: // user: pass@host: port/database'." + "Factor": ["Фактор"], + "Metric factor change from `since` to `until`": [ + "Зміна метричного фактора від `з` `до` до '" ], - "Invalid JSON": ["Недійсний JSON"], - "Invalid advanced data type: %(advanced_data_type)s": [ - "Недійсний тип даних про розширені дані: %(advanced_data_type)s" - ], - "Invalid certificate": ["Недійсний сертифікат"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "Недійсний рядок підключення, зазвичай випливає дійсна рядок:\n'Драйвер: // користувач: пароль@db-host/database-name'" + "Advanced Analytics": ["Розширена аналітика"], + "Use the Advanced Analytics options below": [ + "Використовуйте наведені нижче варіанти аналітики" ], - "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name": [ - "Недійсний рядок підключення, дійсне рядок зазвичай випливає: Backend+драйвер: // користувач: пароль@база даних-розміщення/ім'я бази даних-name" + "Settings for time series": ["Налаштування часових рядів"], + "Date Time Format": ["Формат часу дати"], + "Partition Limit": ["Обмеження розділу"], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "Максимальна кількість підрозділів кожної групи; Нижні значення обрізаються спочатку" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ - "Недійсний рядок підключення, дійсний рядок зазвичай випливає: 'Драйвер: // користувач: пароль@db-host/database-name'

Приклад: 'postgresql: // user: password@your-postgres-db/база даних' < /p>" + "Partition Threshold": ["Поріг розділення"], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "Перегородки, пропорції висоти, висота батьківства нижче цього значення обрізаються" ], - "Invalid cron expression": ["Недійсний вираз Cron"], - "Invalid cumulative operator: %(operator)s": [ - "Недійсний кумулятивний оператор: %(operator)s" + "Log Scale": ["Журнал"], + "Use a log scale": ["Використовуйте шкалу журналу"], + "Equal Date Sizes": ["Рівні розміри дати"], + "Check to force date partitions to have the same height": [ + "Перевірте, щоб змусити датні розділи мати однакову висоту" ], - "Invalid date/timestamp format": [ - "Недійсна дата/формат часової позначки" + "Rich Tooltip": ["Багатий підказки"], + "The rich tooltip shows a list of all series for that point in time": [ + "Багата підказка показує список усіх серій для цього моменту часу" ], - "Invalid filter configuration, please select a column": [ - "Недійсна конфігурація фільтра, будь ласка, виберіть стовпець" + "Rolling Window": ["Коктейльне вікно"], + "Rolling Function": ["Функція прокатки"], + "cumsum": ["кумсум"], + "Min Periods": ["Мінські періоди"], + "Time Comparison": ["Порівняння часу"], + "Time Shift": ["Зрушення в часі"], + "1 week": ["1 тиждень"], + "28 days": ["28 днів"], + "30 days": ["30 днів"], + "52 weeks": ["52 тижні"], + "1 year": ["1 рік"], + "104 weeks": ["104 тижні"], + "2 years": ["2 роки"], + "156 weeks": ["156 тижнів"], + "3 years": ["3 роки"], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Накладіть один або кілька разів з відносного періоду часу. Очікує відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 тижні, 365 днів). Підтримується безкоштовний текст." ], - "Invalid filter operation type: %(op)s": [ - "Недійсний тип функції фільтра: %(op)s" + "Actual Values": ["Фактичні значення"], + "1T": ["1T"], + "1H": ["1H"], + "1D": ["1D"], + "7D": ["7d"], + "1M": ["1M"], + "1AS": ["1AS"], + "Method": ["Метод"], + "asfreq": ["асфрек"], + "bfill": ["блюд"], + "ffill": ["ффіл"], + "median": ["медіана"], + "Part of a Whole": ["Частина цілого"], + "Compare the same summarized metric across multiple groups.": [ + "Порівняйте однакову узагальнену метрику для декількох груп." ], - "Invalid geodetic string": ["Недійсна геодезна струна"], - "Invalid geohash string": ["Недійсна геохашна струна"], - "Invalid input": ["Неправильні дані"], - "Invalid lat/long configuration.": ["Недійсна конфігурація LAT/Довга."], - "Invalid longitude/latitude": ["Недійсна довгота/широта"], - "Invalid metric object: %(metric)s": [ - "Недійсний метричний об’єкт: %(metric)s" + "Partition Chart": ["Діаграма розділів"], + "Categorical": ["Категоричний"], + "Use Area Proportions": ["Використовуйте пропорції площі"], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "Перевірте, чи повинна діаграма троянд використовувати область сегмента замість радіуса сегмента для пропорції" ], - "Invalid numpy function: %(operator)s": [ - "Недійсна функція Numpy: %(operator)s" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "Полярна координатна діаграма, де коло розбивається на клини з рівним кутом, а значення, представлене будь -яким клином, проілюстровано його областю, а не його радіусом або кутом підмітання." ], - "Invalid options for %(rolling_type)s: %(options)s": [ - "Недійсні варіанти для %(rolling_type)s: %(options)s" + "Nightingale Rose Chart": ["Sowingale Rose Chart"], + "Advanced-Analytics": ["Розширена аналітика"], + "Multi-Layers": ["Багатошарові"], + "Source / Target": ["Джерело / ціль"], + "Choose a source and a target": ["Виберіть джерело та ціль"], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "Обмеження рядків може призвести до неповних даних та оманливих діаграм. Подумайте про фільтрацію або групування джерел/цільових імен." ], - "Invalid permalink key": ["Недійсний ключ постійного посилання"], - "Invalid reference to column: \"%(column)s\"": [ - "Недійсне посилання на стовпець: “%(column)s”" + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "Візуалізує потік значень різних груп через різні етапи системи. Нові етапи в трубопроводі візуалізуються як вузли або шари. Товщина брусків або країв представляє показник, який візуалізується." ], - "Invalid result type: %(result_type)s": [ - "Недійсний тип результату: %(result_type)s" + "Demographics": ["Демографія"], + "Survey Responses": ["Відповіді на опитування"], + "Sankey Diagram": ["Діаграма Санкі"], + "Percentages": ["Відсотки"], + "Sankey Diagram with Loops": ["Діаграма Санкі з петлями"], + "Country Field Type": ["Тип поля країни"], + "Full name": ["Повне ім'я"], + "code International Olympic Committee (cioc)": [ + "код міжнародного олімпійського комітету (cioc)" ], - "Invalid rolling_type: %(type)s": ["Недійсне Rolling_Type: %(type)s"], - "Invalid spatial point encountered: %s": [ - "Недійсна просторова точка, що зустрічається: %s" + "code ISO 3166-1 alpha-2 (cca2)": ["код ISO 3166-1 Альфа-2 (CCA2)"], + "code ISO 3166-1 alpha-3 (cca3)": ["код ISO 3166-1 Alpha-3 (CCA3)"], + "The country code standard that Superset should expect to find in the [country] column": [ + "Стандарт коду країни, який суперсет повинен очікувати, що у стовпці [країна]" ], - "Invalid state.": ["Недійсна держава."], - "Invalid tab ids: %s(tab_ids)": [ - "Недійсні ідентифікатори вкладки: %s (tab_ids)" + "Show Bubbles": ["Показати бульбашки"], + "Whether to display bubbles on top of countries": [ + "Чи відображати бульбашки поверх країн" ], - "Inverse selection": ["Зворотний вибір"], - "Invert current page": ["Інвертуйте поточну сторінку"], - "Is certified": ["Є сертифікованим"], - "Is dimension": ["Це розмір"], - "Is false": ["Є помилковим"], - "Is favorite": ["Є улюбленим"], - "Is filterable": ["Є фільтруючим"], - "Is not null": ["Не нульова"], - "Is null": ["Є нульовим"], - "Is tagged": ["Позначено"], - "Is temporal": ["Є тимчасовим"], - "Is true": ["Правда"], - "Issue 1000 - The dataset is too large to query.": [ - "Випуск 1000 - набір даних занадто великий, щоб запитувати." + "Max Bubble Size": ["Максимальний розмір міхура"], + "Color by": ["Забарвляти"], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "Виберіть, чи повинна країна затінювати метрику, або призначати колір на основі категоричної кольорової палітру" ], - "Issue 1001 - The database is under an unusual load.": [ - "Випуск 1001 - База даних знаходиться під незвичним навантаженням." + "Country Column": ["Стовпчик країни"], + "3 letter code of the country": ["3х символьний код країни"], + "Metric that defines the size of the bubble": [ + "Метрика, яка визначає розмір міхура" ], - "It’s not recommended to truncate axis in Bar chart.": [ - "Не рекомендується скоротити вісь у гістограмі." + "Bubble Color": ["Бульбашковий колір"], + "Country Color Scheme": ["Колірна гамма країни"], + "A map of the world, that can indicate values in different countries.": [ + "Карта світу, яка може вказувати на цінності в різних країнах." ], - "JAN": ["Ян"], - "JSON": ["Json"], - "JSON Metadata": ["Метадані JSON"], - "JSON metadata": ["Метадані JSON"], - "JSON metadata is invalid!": ["Метадані JSON недійсні!"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "Рядок JSON, що містить додаткову конфігурацію з'єднання. Це використовується для надання інформації про з'єднання для таких систем, як Hive, Presto та BigQuery, які не відповідають імені користувача: синтаксис пароля, як правило, використовується SQLALCHEMY." + "Multi-Dimensions": ["Мультимір"], + "Multi-Variables": ["Багаторазові"], + "Popular": ["Популярний"], + "deck.gl charts": ["deck.gl charts"], + "Pick a set of deck.gl charts to layer on top of one another": [ + "Виберіть набір діаграм палуби" ], - "JUL": ["Липень"], - "JUN": ["Червень"], - "January": ["Січень"], - "JavaScript data interceptor": ["Перехоплювач даних JavaScript"], - "JavaScript onClick href": ["Javascript onclick href"], - "JavaScript tooltip generator": ["Generator JavaScript"], - "Jinja templating": ["Шаблон джинджа"], - "Json list of the column names that should be read": [ - "Json список імен стовпців, які слід прочитати" + "Select charts": ["Виберіть діаграми"], + "Error while fetching charts": ["Помилка під час отримання діаграм"], + "Compose multiple layers together to form complex visuals.": [ + "Складіть кілька шарів разом для формування складних візуальних зображень." ], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "Список JSON імен стовпців, які слід прочитати. Якщо ні, то з файлу будуть прочитані лише ці стовпці." + "deck.gl Multiple Layers": ["deck.gl Multiple Layers"], + "deckGL": ["палуба"], + "Start (Longitude, Latitude): ": ["Початок (довгота, широта): "], + "End (Longitude, Latitude): ": ["Кінець (довгота, широта): "], + "Start Longitude & Latitude": ["Почніть довготу та широту"], + "Point to your spatial columns": ["Вкажіть на свої просторові стовпці"], + "End Longitude & Latitude": ["Кінцева довгота та широта"], + "Arc": ["Дуга"], + "Target Color": ["Цільовий колір"], + "Color of the target location": ["Колір цільового розташування"], + "Categorical Color": ["Категоричний колір"], + "Pick a dimension from which categorical colors are defined": [ + "Виберіть вимір, з якого визначені категоричні кольори" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ - "Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"] для порожніх рядків, [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE підтримує лише одне значення" + "Stroke Width": ["Ширина інсульту"], + "Advanced": ["Просунутий"], + "Plot the distance (like flight paths) between origin and destination.": [ + "Наведіть відстань (як доріжки польоту) між походженням та пунктом призначення." ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"], [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE підтримує лише одне значення. Використовуйте [\"\"] для порожнього рядка." + "deck.gl Arc": ["deck.gl Arc"], + "3D": ["3D"], + "Web": ["Павутина"], + "Centroid (Longitude and Latitude): ": ["Центроїд (довгота та широта): "], + "Aggregation": ["Агрегація"], + "The function to use when aggregating points into groups": [ + "Функція, яку слід використовувати при агрегуванні точок у групи" ], - "July": ["Липень"], - "June": ["Червень"], - "KPI": ["KPI"], - "Keep control settings?": ["Продовжувати налаштування контролю?"], - "Keep editing": ["Продовжуйте редагувати"], - "Key": ["Ключ"], - "Keys for table": ["Ключі для столу"], - "Kilometers": ["Кілометри"], - "LIMIT": ["Обмежувати"], - "Label": ["Мітка"], - "Label Line": ["Лінія мітки"], - "Label Type": ["Тип етикетки"], - "Label already exists": ["Етикетка вже існує"], - "Label for your query": ["Етикетка для вашого запиту"], - "Label position": ["Позиція мітки"], - "Label threshold": ["Поріг мітки"], - "Labelling": ["Маркування"], - "Labels": ["Етикетки"], - "Labels for the marker lines": ["Мітки для ліній маркера"], - "Labels for the markers": ["Етикетки для маркерів"], - "Labels for the ranges": ["Мітки для діапазонів"], - "Large": ["Великий"], - "Last": ["Останній"], - "Last Changed": ["Востаннє змінився"], - "Last Modified": ["Останнє змінено"], - "Last Updated %s": ["Останній оновлений %s"], - "Last Updated %s by %s": ["Останній оновлений %s на %s"], - "Last available value seen on %s": [ - "Остання доступна вартість, що спостерігається на %s" + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "Last modified": ["Останнє змінено"], - "Last modified by %s": ["Останнє змінено на %s"], - "Last run": ["Останній пробіг"], - "Latitude": ["Широта"], - "Latitude of default viewport": ["Широта перегляду за замовчуванням"], - "Layer configuration": ["Конфігурація шару"], - "Layout": ["Макет"], - "Layout elements": ["Елементи макета"], - "Layout type of graph": ["Тип макета графа"], - "Layout type of tree": ["Тип макета дерева"], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "Листові вузли, що представляють менше, ніж ця кількість подій, спочатку будуть приховані у візуалізації" + "Weight": ["Вага"], + "Metric used as a weight for the grid's coloring": [ + "Метрика, що використовується як вага для забарвлення сітки" ], - "Least recently modified": ["Найменше нещодавно модифіковано"], - "Left": ["Лівий"], - "Left Axis Format": ["Формат лівої осі"], - "Left Axis chart(s)": ["Діаграма лівої осі"], - "Left Margin": ["Залишив націнку"], - "Left margin, in pixels, allowing for more room for axis labels": [ - "Лівий запас у пікселях, що дозволяє отримати більше місця для етикетки Axis" + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "Використання оцінки щільності ядра Гаусса для візуалізації просторового розподілу даних" ], - "Left to Right": ["Зліва направо"], - "Left value": ["Ліва цінність"], - "Legacy": ["Спадщина"], - "Legend": ["Легенда"], - "Legend Format": ["Легенда формат"], - "Legend Orientation": ["Орієнтація на легенду"], - "Legend Position": ["Легенда позиція"], - "Legend type": ["Тип легенди"], - "Less or equal (<=)": ["Менше або рівне (<=)"], - "Less than (<)": ["Менше (<)"], - "Lift percent precision": ["Підніміть відсоткову точність"], - "Light": ["Світлий"], - "Light mode": ["Світловий режим"], - "Like": ["Люблю"], - "Like (case insensitive)": ["Як (нечутливий до випадків)"], - "Limit reached": ["Обмеження досягнуто"], - "Limit selector values": ["Обмежте значення селектора"], - "Limit type": ["Тип обмеження"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "Обмеження рядків може призвести до неповних даних та оманливих діаграм. Подумайте про фільтрацію або групування джерел/цільових імен." - ], - "Limits the number of cells that get retrieved.": [ - "Обмежує кількість клітин, які отримують." + "Spatial": ["Просторовий"], + "Experimental": ["Експериментальний"], + "GeoJson Settings": ["Налаштування Geojson"], + "Point Radius Scale": ["Шкала радіуса точки"], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "Geojsonlayer приймає дані, відформатовані Geojson, і представляє їх як інтерактивні багатокутники, лінії та точки (кола, ікони та/або тексти)." ], - "Limits the number of rows that get displayed.": [ - "Обмежує кількість рядків, які відображаються." + "deck.gl Geojson": ["deck.gl Geojson"], + "Longitude and Latitude": ["Довгота і широта"], + "Height": ["Висота"], + "Metric used to control height": [ + "Метрика, що використовується для контролю висоти" ], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "Обмежує кількість серій, які відображаються. Приєднаний підзапит (або додаткова фаза, де підтримуються підрозділи) застосовується для обмеження кількості серій, які отримують та надаються. Ця функція корисна при групуванні за допомогою стовпців (ів) високої кардинальності, хоча збільшує складність та вартість запитів." + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "Візуалізуйте геопросторові дані, такі як 3D -будівлі, ландшафти або предмети в View." ], - "Line": ["Лінія"], - "Line Chart": ["Лінійна діаграма"], - "Line Chart (legacy)": ["Лінійна діаграма (спадщина)"], - "Line Style": ["Лінійний стиль"], - "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Лінійна діаграма використовується для візуалізації вимірювань, взяті на задану категорію. Лінійна діаграма - це тип діаграми, яка відображає інформацію як ряд точок даних, підключених за допомогою прямих сегментів. Це основний тип діаграми, поширений у багатьох полях." + "deck.gl Grid": ["колода.gl сітка"], + "Intesity": ["Нечіткість"], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "Інтенсивність - це значення, помножене на вагу, щоб отримати кінцеву вагу" ], - "Line interpolation as defined by d3.js": [ - "Лінійна інтерполяція, визначена D3.js" + "Intensity Radius": ["Радіус інтенсивності"], + "Intensity Radius is the radius at which the weight is distributed": [ + "Радіус інтенсивності - радіус, на якому розподіляється вага" ], - "Line width": ["Ширина лінії"], - "Linear Color Scheme": ["Лінійна кольорова гамма"], - "Linear color scheme": ["Лінійна кольорова гамма"], - "Linear interpolation": ["Лінійна інтерполяція"], - "Lines column": ["Стовпчик рядків"], - "Lines encoding": ["Лінії кодування"], - "Link Copied!": ["Посилання скопійовано!"], - "List Saved Query": ["Список збережених запитів"], - "List Unique Values": ["Перелічіть унікальні значення"], - "List of extra columns made available in JavaScript functions": [ - "Список додаткових стовпців, доступних у функціях JavaScript" + "deck.gl Heatmap": ["deck.gl Heatmap"], + "Dynamic Aggregation Function": ["Функція динамічної агрегації"], + "variance": ["дисперсія"], + "deviation": ["відхилення"], + "p1": ["p1"], + "p5": ["p5"], + "p95": ["p95"], + "p99": ["p99"], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ + "Накладає шестикутну сітку на карті та агрегує дані в межах кордону кожної комірки." ], - "List of n+1 values for bucketing metric into n buckets.": [ - "Список значення N+1 для метрики відра в N відра." + "deck.gl 3D Hexagon": ["deck.gl 3D шестикутник"], + "Polyline": ["Полілінія"], + "Visualizes connected points, which form a path, on a map.": [ + "Візуалізує підключені точки, які утворюють шлях, на карті." ], - "List of values to mark with lines": [ - "Перелік значень для позначення рядками" + "deck.gl Path": ["deck.gl Path"], + "name": ["назва"], + "Polygon Column": ["Полігонна колонка"], + "Polygon Encoding": ["Кодування багатокутника"], + "Elevation": ["Піднесення"], + "Polygon Settings": ["Налаштування багатокутників"], + "Opacity, expects values between 0 and 100": [ + "Непрозорість, очікує значення від 0 до 100" ], - "List of values to mark with triangles": [ - "Список значень, які слід позначити трикутниками" + "Number of buckets to group data": [ + "Кількість відр для групування даних" ], - "List updated": ["Список оновлено"], - "Live CSS editor": ["Живий редактор CSS"], - "Live render": ["Жива візуалізація"], - "Load a CSS template": ["Завантажте шаблон CSS"], - "Loaded data cached": ["Завантажені дані кешуються"], - "Loaded from cache": ["Завантажений з кешу"], - "Loading": ["Навантаження"], - "Loading...": ["Завантаження ..."], - "Locate the chart": ["Знайдіть діаграму"], - "Log Scale": ["Журнал"], - "Log retention": ["Затримка журналу"], - "Logarithmic axis": ["Логарифмічна вісь"], - "Logarithmic scale on primary y-axis": [ - "Логарифмічна шкала на первинній осі Y" + "How many buckets should the data be grouped in.": [ + "Скільки відра слід згрупувати дані." ], - "Logarithmic scale on secondary y-axis": [ - "Логарифмічна шкала на вторинній осі Y" + "Bucket break points": ["Точки розриву відра"], + "List of n+1 values for bucketing metric into n buckets.": [ + "Список значення N+1 для метрики відра в N відра." ], - "Logarithmic y-axis": ["Логарифмічна вісь Y"], - "Login": ["Логін"], - "Login with": ["Увійти за допомогою"], - "Logout": ["Вийти"], - "Logs": ["Журнали"], - "Long dashed": ["Довгий пункт"], - "Longitude": ["Довгота"], - "Longitude & Latitude": ["Довгота та широта"], - "Longitude & Latitude columns": ["Стовпці довготи та широти"], - "Longitude and Latitude": ["Довгота і широта"], - "Longitude of default viewport": ["Довгота перегляду за замовчуванням"], - "MAR": ["Марнотратство"], - "MAY": ["МОЖЕ"], - "MON": ["Мн"], - "Main Datetime Column": ["Основний стовпець DateTime"], - "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ - "Переконайтесь, що елементи керування налаштовано належним чином, а DataSource містить дані для вибраного часового діапазону" + "Emit Filter Events": ["Виносити подій фільтра"], + "Whether to apply filter when items are clicked": [ + "Чи слід застосовувати фільтр, коли елементи клацають" ], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "Неправильно сформований запит. Очікуються аргументи slice_id або table_name та db_name" + "Multiple filtering": ["Багаторазова фільтрація"], + "Allow sending multiple polygons as a filter event": [ + "Дозволити надсилання декількох багатокутників як події фільтра" ], - "Manage": ["Керувати"], - "Manage email report": ["Керуйте звітом електронної пошти"], - "Manage your databases": ["Керуйте своїми базами даних"], - "Mandatory": ["Обов'язковий"], - "Mangle Duplicate Columns": ["Mangle Duply Colums"], - "Manually set min/max values for the y-axis.": [ - "Вручну встановити значення min/max для осі y." + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "Візуалізує географічні області з ваших даних як багатокутників на карті, що надається Mapbox. Полігони можна забарвити за допомогою метрики." ], - "Map": ["Карта"], - "Map Style": ["Стиль карти"], - "MapBox": ["Mapbox"], - "Mapbox": ["Mapbox"], - "March": ["Марш"], - "Margin": ["Націнка"], - "Mark a column as temporal in \"Edit datasource\" modal": [ - "Позначте стовпець як тимчасовий у модальному режимі \"редагувати дані\"" + "deck.gl Polygon": ["deck.gl Polygon"], + "Category": ["Категорія"], + "Point Size": ["Розмір точки"], + "Point Unit": ["Точкова одиниця"], + "Square meters": ["Квадратних метрів"], + "Square kilometers": ["Квадратні кілометри"], + "Square miles": ["Квадратні милі"], + "Radius in meters": ["Радіус у метрах"], + "Radius in kilometers": ["Радіус у кілометрах"], + "Radius in miles": ["Радіус у милях"], + "Minimum Radius": ["Мінімальний радіус"], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "Мінімальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу це гарантує, що коло поважає цей мінімальний радіус." ], - "Marker": ["Маркер"], - "Marker Size": ["Розмір маркера"], - "Marker labels": ["Маркерні етикетки"], - "Marker line labels": ["Мітки маркерної лінії"], - "Marker lines": ["Маркерні лінії"], - "Marker size": ["Розмір маркера"], - "Markers": ["Маркери"], - "Markup type": ["Тип розмітки"], - "Max": ["Максимум"], - "Max Bubble Size": ["Максимальний розмір міхура"], - "Max Events": ["Максимальні події"], - "Maximum": ["Максимум"], - "Maximum Font Size": ["Максимальний розмір шрифту"], "Maximum Radius": ["Максимальний радіус"], "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ "Максимальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу це гарантує, що коло поважає цей максимальний радіус." ], - "Maximum value": ["Максимальне значення"], - "Maximum value on the gauge axis": [ - "Максимальне значення на осі датчика" - ], - "May": ["Може"], - "Mean of values over specified period": [ - "Середнє значення за визначений період" + "Point Color": ["Точковий колір"], + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "Карта, яка приймає кола з рендерінгу зі змінною радіусом на координатах широти/довготи" ], - "Mean values": ["Середні значення"], - "Median": ["Медіана"], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ - "Середня ширина краю, найгустіший край буде в 4 рази товстіший, ніж найтонший." + "deck.gl Scatterplot": ["deck.gl Scatterplot"], + "Grid": ["Сітка"], + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "Агрегує дані в межах кордону клітин сітки та відображають агреговані значення до динамічної кольорової шкали" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ - "Середній розмір вузла, найбільший вузол буде в 4 рази більший, ніж найменший" + "deck.gl Screen Grid": ["deck.gl Screen Grid"], + "For more information about objects are in context in the scope of this function, refer to the": [ + "Для отримання додаткової інформації про об'єкти в контексті в обсязі цієї функції, див. " ], - "Median values": ["Середні цінності"], - "Medium": ["Середній"], - "Menu actions trigger": ["Дії меню запускають"], - "Message content": ["Вміст повідомлення"], - "Metadata": ["Метадані"], - "Metadata Parameters": ["Параметри метаданих"], - "Metadata has been synced": ["Метадані синхронізовані"], - "Method": ["Метод"], - "Metric": ["Метричний"], - "Metric '%(metric)s' does not exist": ["Метрика ‘%(metric)s' не існує"], - "Metric ascending": ["Метричний висхід"], - "Metric assigned to the [X] axis": ["Метрика, призначена до осі [x]"], - "Metric assigned to the [Y] axis": ["Метрика, присвоєна вісь [y]"], - "Metric change in value from `since` to `until`": [ - "Метрична зміна значення від `з` `` до '" + " source code of Superset's sandboxed parser": [ + " Вихідний код аналізатора пісочниці Superset" ], - "Metric descending": ["Метричний спуск"], - "Metric factor change from `since` to `until`": [ - "Зміна метричного фактора від `з` `до` до '" + "This functionality is disabled in your environment for security reasons.": [ + "Ця функціональність відключена у вашому середовищі з міркувань безпеки." ], - "Metric for node values": ["Метрика для значень вузла"], - "Metric name": ["Метрична назва"], - "Metric name [%s] is duplicated": ["Метрична назва [%s] дублюється"], - "Metric percent change in value from `since` to `until`": [ - "Метрична відсоткова зміна вартості з `з моменту` `до '" + "Ignore null locations": ["Ігноруйте нульові місця"], + "Whether to ignore locations that are null": [ + "Чи потрібно ігнорувати місця, які є нульовими" ], - "Metric that defines the size of the bubble": [ - "Метрика, яка визначає розмір міхура" + "Auto Zoom": ["Автомобільний масштаб"], + "When checked, the map will zoom to your data after each query": [ + "Після перевірки карта збільшиться до ваших даних після кожного запиту" ], - "Metric to display bottom title": [ - "Метрика для відображення нижньої назви" + "Select a dimension": ["Виберіть вимір"], + "Extra data for JS": ["Додаткові дані для JS"], + "List of extra columns made available in JavaScript functions": [ + "Список додаткових стовпців, доступних у функціях JavaScript" ], - "Metric to sort the results by": [ - "Метрика для сортування результатів за" + "JavaScript data interceptor": ["Перехоплювач даних JavaScript"], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "Визначте функцію JavaScript, яка отримує масив даних, що використовується у візуалізації, і, як очікується, поверне модифіковану версію цього масиву. Це може бути використане для зміни властивостей даних, фільтра або збагачення масиву." ], - "Metric used as a weight for the grid's coloring": [ - "Метрика, що використовується як вага для забарвлення сітки" + "JavaScript tooltip generator": ["Generator JavaScript"], + "Define a function that receives the input and outputs the content for a tooltip": [ + "Визначте функцію, яка отримує вхід і виводить вміст для підказки" ], - "Metric used to calculate bubble size": [ - "Метрика, що використовується для обчислення розміру міхура" + "JavaScript onClick href": ["Javascript onclick href"], + "Define a function that returns a URL to navigate to when user clicks": [ + "Визначте функцію, яка повертає URL -адресу, щоб перейти до того, коли користувач клацає" ], - "Metric used to control height": [ - "Метрика, що використовується для контролю висоти" + "Legend Format": ["Легенда формат"], + "Choose the format for legend values": [ + "Виберіть формат для значень легенди" ], - "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Метрика, яка використовується для визначення того, як сортується верхня серія, якщо присутня ліміт серії або комірки. Якщо невизначений повернення до першої метрики (де це доречно)." + "Legend Position": ["Легенда позиція"], + "Choose the position of the legend": ["Виберіть положення легенди"], + "Top left": ["Зверху ліворуч"], + "Top right": ["Праворуч зверху"], + "Bottom left": ["Знизу зліва"], + "Bottom right": ["Знизу праворуч"], + "Lines column": ["Стовпчик рядків"], + "The database columns that contains lines information": [ + "Стовпці бази даних, що містить інформацію про рядки" ], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Metric, що використовується для визначення того, як сортується верхня серія, якщо присутній ліміт серії або рядка. Якщо невизначений повернення до першої метрики (де це доречно)." + "Line width": ["Ширина лінії"], + "The width of the lines": ["Ширина ліній"], + "Fill Color": ["Заповнити колір"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + " Встановіть непрозорість на 0, якщо ви не хочете перекрити колір, вказаний у Geojson" ], - "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ - "Метрика, яка використовується для замовлення ліміту, якщо присутній ліміт серії. Якщо невизначений повернення до першої метрики (де це доречно)." + "Stroke Color": ["Колір удару"], + "Filled": ["Наповнений"], + "Whether to fill the objects": ["Чи заповнювати об'єкти"], + "Stroked": ["Погладжений"], + "Whether to display the stroke": ["Чи відображати хід"], + "Extruded": ["Екструдований"], + "Whether to make the grid 3D": ["Чи робити сітку 3D"], + "Grid Size": ["Розмір сітки"], + "Defines the grid size in pixels": ["Визначає розмір сітки в пікселях"], + "Parameters related to the view and perspective on the map": [ + "Параметри, пов’язані з переглядом та перспективою на карті" ], - "Metrics": ["Показники"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ - "Показники, на які слід відображати відсоток від загальної кількості. Обчислюється лише з даних в межах рядка." + "Longitude & Latitude": ["Довгота та широта"], + "Fixed point radius": ["Фіксований радіус точки"], + "Multiplier": ["Множник"], + "Factor to multiply the metric by": [ + "Коефіцієнт для множення метрики на" ], - "Middle": ["Середина"], - "Midnight": ["Опівночі"], - "Miles": ["Милі"], - "Min": ["Хв"], - "Min Periods": ["Мінські періоди"], - "Min Width": ["Мінина ширина"], - "Min periods": ["Мінські періоди"], - "Min/max (no outliers)": ["Мін/Макс (без переживань)"], - "Mine": ["Мої"], - "Minimum": ["Мінімум"], - "Minimum Font Size": ["Мінімальний розмір шрифту"], - "Minimum Radius": ["Мінімальний радіус"], - "Minimum leaf node event count": [ - "Мінімальний кількість подій вузла листя" + "Lines encoding": ["Лінії кодування"], + "The encoding format of the lines": ["Формат кодування ліній"], + "geohash (square)": ["geohash (square)"], + "Reverse Lat & Long": ["Зворотний лат і довгий"], + "GeoJson Column": ["Колонка Geojson"], + "Select the geojson column": ["Виберіть стовпчик Geojson"], + "Right Axis Format": ["Формат правої осі"], + "Show Markers": ["Шоу маркерів"], + "Show data points as circle markers on the lines": [ + "Показати точки даних як маркери кола на лініях" ], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ - "Мінімальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу це гарантує, що коло поважає цей мінімальний радіус." + "Y bounds": ["Y межі"], + "Whether to display the min and max values of the Y-axis": [ + "Чи відображати значення min та максимально вісь y" ], - "Minimum threshold in percentage points for showing labels.": [ - "Мінімальний поріг у відсотковому пункті для показу мітків." + "Y 2 bounds": ["Y 2 межі"], + "Line Style": ["Лінійний стиль"], + "linear": ["лінійний"], + "basis": ["основа"], + "cardinal": ["кардинальний"], + "monotone": ["монотонний"], + "step-before": ["ступінь"], + "step-after": ["накопичувач"], + "Line interpolation as defined by d3.js": [ + "Лінійна інтерполяція, визначена D3.js" ], - "Minimum value": ["Мінімальне значення"], - "Minimum value for label to be displayed on graph.": [ - "Мінімальне значення для мітки для відображення на графі." + "Show Range Filter": ["Показати фільтр діапазону"], + "Whether to display the time range interactive selector": [ + "Чи відображати інтерактивний селектор часу" ], - "Minimum value on the gauge axis": ["Мінімальне значення на осі датчика"], - "Minor Split Line": ["Незначна лінія розколу"], - "Minute": ["Хвилина"], - "Minutes %s": ["Хвилини %s"], - "Missing URL parameters": ["Відсутні параметри URL -адреси"], - "Missing dataset": ["Відсутній набір даних"], - "Mixed Chart": ["Змішана діаграма"], - "Mixed Time-Series": ["Змішані часові серії"], - "Modified": ["Змінений"], - "Modified %s": ["Модифіковані %s"], - "Modified by": ["Змінений"], - "Modified columns: %s": ["Модифіковані стовпці: %s"], - "Monday": ["Понеділок"], - "Month": ["Місяць"], - "Months %s": ["Місяці %s"], - "More": ["Більше"], - "More filters": ["Більше фільтрів"], - "Move only": ["Тільки рухатися"], - "Moves the given set of dates by a specified interval.": [ - "Переміщує заданий набір дати заданим інтервалом." + "Extra Controls": ["Додаткові елементи управління"], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "Проявляти додаткові елементи управління чи ні. Додаткові елементи керування включають такі речі, як створення мулітбарів, складеними або поруч." ], - "Multi-Dimensions": ["Мультимір"], - "Multi-Layers": ["Багатошарові"], - "Multi-Levels": ["Багаторівневі"], - "Multi-Variables": ["Багаторазові"], - "Multiple": ["Багаторазовий"], - "Multiple Line Charts": ["Кілька рядків рядків"], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "Для завантаження стовпців заборонено кілька розширень файлу. Будь ласка, переконайтеся, що всі файли мають однакове розширення." + "X Tick Layout": ["X макет галочки"], + "flat": ["рівномірний"], + "staggered": ["здивований"], + "The way the ticks are laid out on the X-axis": [ + "Те, як кліщі викладені на осі x" ], - "Multiple filtering": ["Багаторазова фільтрація"], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "Прийняті кілька форматів, подивіться на бібліотеку Python Geopy.points для отримання детальної інформації" + "X Axis Format": ["Формат X Axis"], + "Y Log Scale": ["Y Шкала журналу"], + "Use a log scale for the Y-axis": [ + "Використовуйте шкалу журналу для осі y" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "Дозволено декілька вибору, інакше фільтр обмежується одним значенням" + "Y Axis Bounds": ["Y межі осі"], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Межі для осі y. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить ступінь даних." ], - "Multiplier": ["Множник"], - "Must be unique": ["Має бути унікальним"], - "Must choose either a chart or a dashboard": [ - "Потрібно вибрати або діаграму, або інформаційну панель" + "Y Axis 2 Bounds": ["Y Axis 2 Межі"], + "X bounds": ["X межі"], + "Whether to display the min and max values of the X-axis": [ + "Чи відображати значення min та максимально вісь x" ], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "Повинен мати стовпець [група за], щоб мати \"рахувати\" як [мітку]" + "Bar Values": ["Значення планки"], + "Show the value on top of the bar": ["Покажіть значення на вершині бару"], + "Stacked Bars": ["Складені бари"], + "Reduce X ticks": ["Зменшіть X кліщів"], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "Зменшує кількість кліщів осі, які потрібно надати. Якщо це правда, осі x не переповнюється, а мітки можуть відсутні. Якщо помилково, до стовпців буде застосовано мінімальна ширина, а ширина може переливатися в горизонтальний сувій." ], - "Must have at least one numeric column specified": [ - "Повинен мати щонайменше один числовий стовпчик" + "You cannot use 45° tick layout along with the time range filter": [ + "Ви не можете використовувати макет кліщів 45 ° разом із фільтром часу часу" ], - "Must provide credentials for the SSH Tunnel": [ - "Повинен надати облікові дані для тунелю SSH" + "Stacked Style": ["Складений стиль"], + "stack": ["стек"], + "stream": ["потік"], + "expand": ["розширити"], + "Evolution": ["Еволюція"], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Діаграма часових рядів, яка візуалізує, як пов'язана метрика з декількох груп різниться з часом. Кожна група візуалізується за допомогою іншого кольору." ], - "Must specify a value for filters with comparison operators": [ - "Потрібно вказати значення для фільтрів з операторами порівняння" + "Stretched style": ["Розтягнутий стиль"], + "Stacked style": ["Складений стиль"], + "Video game consoles": ["Консолі відеоігор"], + "Vehicle Types": ["Типи транспортних засобів"], + "Area Chart (legacy)": ["Діаграма області (спадщина)"], + "Continuous": ["Безперервний"], + "Line": ["Лінія"], + "nvd3": ["nvd3"], + "Deprecated": ["Застарілий"], + "Series Limit Sort By": ["Серія ліміту сортування"], + "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Метрика, яка використовується для замовлення ліміту, якщо присутній ліміт серії. Якщо невизначений повернення до першої метрики (де це доречно)." ], - "My beautiful colors": ["Мої прекрасні кольори"], - "My column": ["Моя колонка"], - "My metric": ["Мій показник"], - "N/A": ["N/a"], - "NOT GROUPED BY": ["Не згрупований"], - "NOV": ["Листопада"], - "NOW": ["Тепер"], - "NUMERIC": ["Числовий"], - "Name": ["Назва"], - "Name is required": ["Ім'я потрібно"], - "Name must be unique": ["Ім'я повинно бути унікальним"], - "Name of table to be created from columnar data.": [ - "Назва таблиці, яка повинна бути створена з стовпчастих даних." + "Series Limit Sort Descending": ["Серія обмежує сортування"], + "Whether to sort descending or ascending if a series limit is present": [ + "Чи слід сортувати низхідну чи підніматися, якщо присутній ліміт серії" ], - "Name of table to be created from excel data.": [ - "Назва таблиці, яка повинна бути створена з даних Excel." + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "Візуалізуйте, як метрика змінюється з часом за допомогою брусків. Додайте групу за стовпцем для візуалізації показників групи та того, як вони змінюються з часом." ], - "Name of table to be created with CSV file": [ - "Ім'я таблиці, яке потрібно створити за допомогою файлу CSV" + "Time-series Bar Chart (legacy)": ["Діаграма штрих часу (Legacy)"], + "Bar": ["Бар"], + "Vertical": ["Вертикальний"], + "Box Plot": ["Ділянка коробки"], + "X Log Scale": ["X шкала журналу"], + "Use a log scale for the X-axis": [ + "Використовуйте шкалу журналу для осі x" ], - "Name of the column containing the id of the parent node": [ - "Назва стовпця, що містить ідентифікатор батьківського вузла" + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "Візуалізує метрику в трьох вимірах даних в одній діаграмі (x вісь, осі y та розміру міхура). Бульбашки з однієї групи можна демонструвати за допомогою кольору бульбашок." ], - "Name of the id column": ["Ім'я стовпця ідентифікатора"], - "Name of the source nodes": ["Назва вихідних вузлів"], - "Name of the table that exists in the source database": [ - "Назва таблиці, яка існує у вихідній базі даних" + "Ranges": ["Діапазони"], + "Ranges to highlight with shading": [ + "Діапазони, щоб виділити за допомогою затінення" ], - "Name of the target nodes": ["Назва цільових вузлів"], - "Name your database": ["Назвіть свою базу даних"], - "Need help? Learn how to connect your database": [ - "Потрібна допомога? Дізнайтеся, як підключити базу даних" + "Range labels": ["Етикетки діапазону"], + "Labels for the ranges": ["Мітки для діапазонів"], + "Markers": ["Маркери"], + "List of values to mark with triangles": [ + "Список значень, які слід позначити трикутниками" ], - "Need help? Learn more about": [ - "Потрібна допомога? Дізнайтеся більше про" + "Marker labels": ["Маркерні етикетки"], + "Labels for the markers": ["Етикетки для маркерів"], + "Marker lines": ["Маркерні лінії"], + "List of values to mark with lines": [ + "Перелік значень для позначення рядками" ], - "Network error": ["Помилка мережі"], - "Network error.": ["Помилка мережі."], - "New chart": ["Нова діаграма"], - "New columns added: %s": ["Додано нові стовпці: %s"], - "New dataset": ["Новий набір даних"], - "New dataset name": ["Нове ім'я набору даних"], - "New filter set": ["Новий набір фільтра"], - "New header": ["Новий заголовок"], - "New tab": ["Нова вкладка"], - "New tab (Ctrl + q)": ["Нова вкладка (Ctrl + Q)"], - "New tab (Ctrl + t)": ["Нова вкладка (Ctrl + T)"], - "Next": ["Наступний"], - "Nightingale Rose Chart": ["Sowingale Rose Chart"], - "No": ["Немає"], - "No %s yet": ["Ще немає %s"], - "No Access!": ["Немає доступу!"], - "No Data": ["Немає даних"], - "No Results": ["Немає результатів"], - "No Rules yet": ["Ще немає правил"], - "No annotation layers": ["Ніяких шарів анотації"], - "No annotation layers yet": ["Ще немає анотаційних шарів"], - "No annotation yet": ["Ще немає анотації"], - "No applied filters": ["Немає застосованих фільтрів"], - "No available filters.": ["Немає доступних фільтрів."], - "No charts": ["Немає діаграм"], - "No charts yet": ["Ще немає діаграм"], - "No columns": ["Немає стовпців"], - "No columns found": ["Не знайдено стовпців"], - "No compatible columns found": ["Не знайдено сумісних стовпців"], - "No compatible datasets found": ["Не знайдено сумісних наборів даних"], - "No compatible schema found": ["Не знайдено сумісної схеми"], - "No dashboards": ["Немає інформаційних панелей"], - "No dashboards yet": ["Ще немає інформаційних панелей"], - "No data": ["Немає даних"], - "No data after filtering or data is NULL for the latest time record": [ - "Ніякі дані після фільтрації або даних є нульовими для останнього запису часу" - ], - "No data in file": ["Немає даних у файлі"], - "No database tables found": ["Таблиць баз даних не знайдено"], - "No databases match your search": [ - "Жодне бази даних не відповідає вашому пошуку" + "Marker line labels": ["Мітки маркерної лінії"], + "Labels for the marker lines": ["Мітки для ліній маркера"], + "KPI": ["KPI"], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "Демонструє прогрес однієї метрики проти заданої цілі. Чим вище заливка, тим ближче метрика до цілі." ], - "No description available.": ["Опис не доступний."], - "No favorite charts yet, go click on stars!": [ - "Ще немає улюблених діаграм, перейдіть на зірки!" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "Візуалізує багато різних об'єктів часових рядів в одній діаграмі. Ця діаграма застаріла, і ми рекомендуємо використовувати замість цього діаграму часових рядів." ], - "No favorite dashboards yet, go click on stars!": [ - "Ще немає улюблених інформаційних панелей, натисніть на зірку!" + "Time-series Percent Change": ["Зміна відсотків часових рядів"], + "Sort Bars": ["Сортування барів"], + "Sort bars by x labels.": ["Сортуйте смуги за x мітками."], + "Breakdowns": ["Розбиття"], + "Defines how each series is broken down": [ + "Визначає, як розбивається кожна серія" ], - "No filter": ["Без фільтра"], - "No filter is selected.": ["Фільтр не вибирається."], - "No filters": ["Немає фільтрів"], - "No filters are currently added to this dashboard.": [ - "Наразі на цю інформаційну панель не додано жодних фільтрів." + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "Порівнює показники різних категорій за допомогою барів. Довжина смуги використовується для позначення величини кожного значення, а колір використовується для диференціації груп." ], - "No form settings were maintained": ["Налаштування форми не зберігалися"], - "No global filters are currently added": [ - "Наразі глобальні фільтри не додаються" + "Bar Chart (legacy)": ["Діаграма (спадщина)"], + "Additive": ["Добавка"], + "Discrete": ["Дискретний"], + "Propagate": ["Розповсюджувати"], + "Send range filter events to other charts": [ + "Надіслати події фільтра діапазону на інші діаграми" ], - "No matching records found": ["Не знайдено відповідних записів"], - "No of Bins": ["Немає бункерів"], - "No recents yet": ["Ще немає жодних випадків"], - "No records found": ["Записів не знайдено"], - "No results": ["Немає результатів"], - "No results found": ["Нічого не знайдено"], - "No results match your filter criteria": [ - "Ніякі результати не відповідають вашим критеріям фільтра" + "Classic chart that visualizes how metrics change over time.": [ + "Класична діаграма, яка візуалізує, як змінюються показники з часом." ], - "No results were returned for this query": [ - "Для цього запиту не було повернуто жодних результатів" + "Battery level over time": ["Рівень акумулятора з часом"], + "Line Chart (legacy)": ["Лінійна діаграма (спадщина)"], + "Label Type": ["Тип етикетки"], + "Category Name": ["Назва категорії"], + "Value": ["Цінність"], + "Percentage": ["Відсоток"], + "Category and Value": ["Категорія та значення"], + "Category and Percentage": ["Категорія та відсоток"], + "Category, Value and Percentage": ["Категорія, вартість та відсоток"], + "What should be shown on the label?": ["Що слід показати на етикетці?"], + "Donut": ["Пончик"], + "Do you want a donut or a pie?": ["Ви хочете пончик чи пиріг?"], + "Show Labels": ["Показувати етикетки"], + "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ + "Чи відображати мітки. Зауважте, що мітка відображається лише тоді, коли поріг 5%." ], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ - "Для цього запиту жодних результатів не було. Якщо ви очікували повернення результатів, переконайтеся, що будь -які фільтри налаштовані належним чином, а дані містять дані для вибраного діапазону часу." + "Put labels outside": ["Покладіть етикетки назовні"], + "Put the labels outside the pie?": ["Поставити етикетки поза пирогом?"], + "Frequency": ["Частота"], + "Year (freq=AS)": ["Рік (freq = as)"], + "52 weeks starting Monday (freq=52W-MON)": [ + "52 тижні, починаючи з понеділка (частота=52W-MON)" ], - "No rows were returned for this dataset": [ - "Для цього набору даних не було повернуто рядків" + "1 week starting Sunday (freq=W-SUN)": [ + "1 тиждень, починаючи з неділі (FREQ = W-SUN)" ], - "No samples were returned for this dataset": [ - "Для цього набору даних не було повернуто жодних зразків" + "1 week starting Monday (freq=W-MON)": [ + "1 тиждень, починаючи з понеділка (FREQ = W-Mon)" ], - "No saved expressions found": ["Збережених виразів не знайдено"], - "No saved metrics found": ["Збережених показників не знайдено"], - "No saved queries yet": ["Ще немає врятованих запитів"], - "No stored results found, you need to re-run your query": [ - "Не знайдено жодних збережених результатів, вам потрібно повторно запустити свій запит" + "Day (freq=D)": ["День (Freq = D)"], + "4 weeks (freq=4W-MON)": ["4 тижні (частота=4W-MON)"], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "Періодичність, протягом якої врізати час. Користувачі можуть надати\n Псевдонім \"Панди\".\n Клацніть на міхур Info для отримання більш детальної інформації про прийняті вирази \"Freq\"." ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "Такого стовпця не знайдено. Щоб фільтрувати метрику, спробуйте спеціальну вкладку SQL." + "Time-series Period Pivot": ["Часові періоди періоду повороту"], + "Formula": ["Формула"], + "Event": ["Подія"], + "Interval": ["Інтервал"], + "Stack": ["Стек"], + "Stream": ["Потік"], + "Expand": ["Розширити"], + "Show legend": ["Показати легенду"], + "Whether to display a legend for the chart": [ + "Чи відображати легенду для діаграми" ], - "No table columns": ["Немає стовпців таблиці"], - "No temporal columns found": ["Не знайдено тимчасових стовпців"], - "No time columns": ["Немає часу стовпців"], - "No validator found (configured for the engine)": [ - "Жодного валідатора не знайдено (налаштовано для двигуна)" + "Margin": ["Націнка"], + "Additional padding for legend.": ["Додаткові прокладки для легенди."], + "Scroll": ["Прокрутити"], + "Plain": ["Простий"], + "Legend type": ["Тип легенди"], + "Orientation": ["Орієнтація"], + "Bottom": ["Дно"], + "Right": ["Право"], + "Legend Orientation": ["Орієнтація на легенду"], + "Show Value": ["Показувати цінність"], + "Show series values on the chart": [ + "Показувати значення серії на діаграмі" ], - "No validator named {} found (configured for the {} engine)": [ - "Немає валідатора названого {} знайдено (налаштовано для двигуна {})" + "Stack series on top of each other": ["Серія стека один на одного"], + "Only Total": ["Тільки повне"], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "Показати лише загальну вартість у складеній діаграмі, а не показати у вибраній категорії" ], - "Node label position": ["Положення мітки вузлів"], - "Node select mode": ["Режим вибору вузла"], - "Node size": ["Розмір вузла"], - "None": ["Ні"], - "None -> Arrow": ["Жоден -> Стрілка"], - "None -> None": ["Жоден -> Жоден"], - "Normal": ["Нормальний"], - "Normalize Across": ["Нормалізувати"], - "Normalized": ["Нормалізований"], - "Not Time Series": ["Не часовий ряд"], - "Not added to any dashboard": [ - "Не додано на будь-яку інформаційну панель" + "Percentage threshold": ["Відсоток поріг"], + "Minimum threshold in percentage points for showing labels.": [ + "Мінімальний поріг у відсотковому пункті для показу мітків." ], - "Not available": ["Недоступний"], - "Not equal to (≠)": ["Не дорівнює (≠)"], - "Not in": ["Не в"], - "Not null": ["Не нульовий"], - "Not triggered": ["Не спрацьований"], - "Not up to date": ["Не в курсі"], - "Nothing triggered": ["Ніщо не спрацювало"], - "Notification method": ["Метод сповіщення"], - "November": ["Листопад"], - "Now": ["Тепер"], - "Null Values": ["Нульові значення"], - "Null imputation": ["Нульова імпутація"], - "Null or Empty": ["Нульовий або порожній"], - "Null values": ["Нульові значення"], - "Number Format": ["Формат числа"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ - "Межі числа, що використовуються для кодування кольору від червоного до синього.\n Поверніть числа для синього до червоного. Щоб отримати чистий червоний або синій,\n Ви можете ввести лише хв, або максимум." + "Rich tooltip": ["Багатий підказки"], + "Shows a list of all series available at that point in time": [ + "Показує список усіх серій, доступних на той момент часу" ], - "Number format": ["Формат числа"], - "Number format string": ["Рядок формату числа"], - "Number of buckets to group data": [ - "Кількість відр для групування даних" + "Tooltip time format": ["Формат часу підказки"], + "Tooltip sort by metric": ["Сортування підказок за метрикою"], + "Whether to sort tooltip by the selected metric in descending order.": [ + "Чи сортувати підказку за вибраним показником у порядку зменшення." ], - "Number of decimal digits to round numbers to": [ - "Кількість десяткових цифр до круглих чисел до" + "Tooltip": ["Підказка"], + "Sort Series By": ["Сортування серії"], + "Based on what should series be ordered on the chart and legend": [ + "Виходячи з того, як слід впорядкувати серії на діаграмі та легенді" ], - "Number of decimal places with which to display lift values": [ - "Кількість десяткових місць, з якими можна відобразити значення підйому" + "Sort Series Ascending": ["Сортування серії, що піднімається"], + "Sort series in ascending order": [ + "Сортування серії у зростаючому порядку" ], - "Number of decimal places with which to display p-values": [ - "Кількість десяткових місць, з якими можна відобразити p-значення" + "Rotate x axis label": ["Обертати мітку осі X"], + "Input field supports custom rotation. e.g. 30 for 30°": [ + "Поле введення підтримує власне обертання. напр. 30 на 30 °" ], - "Number of periods to compare against": [ - "Кількість періодів порівняння з" + "Series Order": ["Замовлення серії"], + "Make the x-axis categorical": [""], + "Last available value seen on %s": [ + "Остання доступна вартість, що спостерігається на %s" ], - "Number of periods to ratio against": [ - "Кількість періодів до співвідношення проти" + "Not up to date": ["Не в курсі"], + "No data": ["Немає даних"], + "No data after filtering or data is NULL for the latest time record": [ + "Ніякі дані після фільтрації або даних є нульовими для останнього запису часу" ], - "Number of rows of file to read": ["Кількість рядків файлу для читання"], - "Number of rows of file to read.": [ - "Кількість рядків файлу для читання." + "Try applying different filters or ensuring your datasource has data": [ + "Спробуйте застосувати різні фільтри або забезпечити, щоб ваш DataSource має дані" ], - "Number of rows to skip at start of file": [ - "Кількість рядків для пропускання на початку файлу" + "Big Number Font Size": ["Розмір шрифту великого числа"], + "Tiny": ["Крихітний"], + "Small": ["Невеликий"], + "Normal": ["Нормальний"], + "Large": ["Великий"], + "Huge": ["Величезний"], + "Subheader Font Size": ["Розмір шрифту підзаголовка"], + "Display settings": ["Налаштування дисплею"], + "Subheader": ["Підзаголовка"], + "Description text that shows up below your Big Number": [ + "Опис текст, який відображається нижче вашого великого номера" ], - "Number of rows to skip at start of file.": [ - "Кількість рядків для пропускання на початку файлу." + "Date format": ["Формат дати"], + "Force date format": ["Формат дат сили"], + "Use date formatting even when metric value is not a timestamp": [ + "Використовуйте форматування дати навіть тоді, коли метричне значення не є часовою позначкою" ], - "Number of split segments on the axis": [ - "Кількість розділених сегментів на осі" + "Conditional Formatting": ["Умовне форматування"], + "Apply conditional color formatting to metric": [ + "Застосувати умовне форматування кольорів до метрики" ], - "Number of steps to take between ticks when displaying the X scale": [ - "Кількість кроків, які потрібно зробити між кліщами при відображенні шкали X" + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "Демонструє єдиний метричний передній і центр. Велика кількість найкраще використовується для звернення уваги на KPI або одне, на що ви хочете зосередитись на вашій аудиторії." ], - "Number of steps to take between ticks when displaying the Y scale": [ - "Кількість кроків, які потрібно зробити між кліщами при відображенні шкали Y" + "A Big Number": ["Велика кількість"], + "With a subheader": ["З підзаголовком"], + "Big Number": ["Велике число"], + "Comparison Period Lag": ["Порівняльний період відставання"], + "Based on granularity, number of time periods to compare against": [ + "На основі деталізації, кількість часових періодів для порівняння" ], - "Numerical range": ["Чисельний діапазон"], - "OCT": ["Жовт"], - "OK": ["в порядку"], - "OVERWRITE": ["Переписувати"], - "October": ["Жовтень"], - "Offline": ["Офлайн"], - "Offset": ["Компенсація"], - "On Grace": ["На благодать"], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "Один або багато стовпців до групи за. Високі угруповання кардинальності повинні включати ліміт серії для обмеження кількості витягнутих та наданих рядів." + "Comparison suffix": ["Суфікс порівняння"], + "Suffix to apply after the percentage display": [ + "Суфікс подати заявку після відсоткового дисплея" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ - "Один або багато стовпців до групи за. Високі угруповання кардинальності повинні включати сорт за метрикою та лімітом серії, щоб обмежити кількість вилучених та наданих рядів." + "Show Timestamp": ["Показати часову позначку"], + "Whether to display the timestamp": ["Чи відображати часову позначку"], + "Show Trend Line": ["Показати лінію тренду"], + "Whether to display the trend line": ["Чи відображати лінію тренду"], + "Start y-axis at 0": ["Почніть осі y о 0"], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "Почніть осі y на нуль. Зніміть прапорець, щоб запустити вісь y з мінімальним значенням у даних." ], - "One or many columns to pivot as columns": [ - "Один або багато стовпців, що скручуються як стовпці" + "Fix to selected Time Range": ["Виправте до вибраного діапазону часу"], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "Зафіксуйте лінію тенденції до повного часу, зазначеного у відфільтрованих результатах" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ - "Один або багато елементів керування групами за. Якщо групування, широта та довгота повинні бути присутніми." + "TEMPORAL X-AXIS": ["Тимчасова осі x"], + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "Демонструє єдине число, що супроводжується простою лінійною діаграмою, щоб звернути увагу на важливу метрику разом із її зміною в часі чи іншим виміром." ], - "One or many controls to pivot as columns": [ - "Один або багато елементів керування, щоб стригти як стовпці" + "Big Number with Trendline": ["Велика кількість з Trendline"], + "Whisker/outlier options": ["Варіанти Віскера/Зовнішнього"], + "Determines how whiskers and outliers are calculated.": [ + "Визначає, як обчислюються вуса та переживчі." ], - "One or many metrics to display": [ - "Один або багато показників для відображення" + "Tukey": ["Тюкі"], + "Min/max (no outliers)": ["Мін/Макс (без переживань)"], + "2/98 percentiles": ["2/98 процентиль"], + "9/91 percentiles": ["9/91 відсотків"], + "Categories to group by on the x-axis.": [ + "Категорії групуватися на осі x." ], - "One or more columns already exist": [ - "Один або кілька стовпців вже існують" + "Distribute across": ["Розповсюджувати"], + "Columns to calculate distribution across.": [ + "Стовпці для обчислення розподілу поперек." ], - "One or more columns are duplicated": [ - "Один або кілька стовпців дублюються" + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "Також відома як графік коробки та вусів, ця візуалізація порівнює розподіл спорідненої метрики для декількох груп. Коробка в середині підкреслює середні, медіани та внутрішні 2 кварталі. Вуси навколо кожної коробки візуалізують мінімальний, максимум, діапазон та зовнішні 2 квартали." ], - "One or more columns do not exist": [ - "Одного або декількох стовпців не існує" + "ECharts": ["Echarts"], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ + "" ], - "One or more metrics already exist": [ - "Один або кілька показників вже існують" + "X AXIS TITLE MARGIN": [""], + "Y AXIS TITLE MARGIN": ["Y Exis title Margin"], + "Logarithmic y-axis": ["Логарифмічна вісь Y"], + "Truncate Y Axis": ["Укорочення y вісь"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "Укоротився вісь. Можна перекрити, вказавши мінімальну або максимальну межу." ], - "One or more metrics are duplicated": [ - "Один або кілька показників дублюються" + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ + "" ], - "One or more metrics do not exist": [ - "Одного або декількох показників не існує" + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Labels": ["Етикетки"], + "Whether to display the labels.": ["Чи відображати мітки."], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "Демонструє, як метрика змінюється в міру просування воронки. Ця класична діаграма корисна для візуалізації випадання між етапами в трубопроводі або життєвому циклі." ], - "One or more parameters needed to configure a database are missing.": [ - "Не вистачає одного або декількох параметрів, необхідних для налаштування бази даних." + "Funnel Chart": ["Графік воронки"], + "Sequential": ["Послідовний"], + "Columns to group by": ["Стовпці до групи"], + "General": ["Загальний"], + "Min": ["Хв"], + "Minimum value on the gauge axis": ["Мінімальне значення на осі датчика"], + "Max": ["Максимум"], + "Maximum value on the gauge axis": [ + "Максимальне значення на осі датчика" ], - "One or more parameters specified in the query are malformatted.": [ - "Один або кілька параметрів, зазначених у запиті, є неправильними." + "Start angle": ["Почати кут"], + "Angle at which to start progress axis": [ + "Кут, з яким почати прогрес вісь" ], - "One or more parameters specified in the query are missing.": [ - "Один або кілька параметрів, зазначених у запиті, відсутні." + "End angle": ["Кінцевий кут"], + "Angle at which to end progress axis": [ + "Кут, з яким слід закінчити вісь прогресу" ], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ - "У запиті відсутні один або кілька необхідних полів. Будь ласка, спробуйте ще раз, і якщо проблема наполегливо звертається до вашого адміністратора." + "Font size": ["Розмір шрифту"], + "Font size for axis labels, detail value and other text elements": [ + "Розмір шрифту для етикетки осі, детальне значення та інші текстові елементи" ], - "One ore more annotation layers failed loading.": [ - "Один руду більше анотаційних шарів не вдалося завантажити." + "Value format": ["Формат значення"], + "Additional text to add before or after the value, e.g. unit": [ + "Додатковий текст, який можна додати до або після значення, наприклад одиниця" ], - "Only SELECT statements are allowed against this database.": [ - "Протягом цієї бази даних допускаються лише вибору." + "Show pointer": ["Покажіть вказівник"], + "Whether to show the pointer": ["Чи показувати вказівник"], + "Animation": ["Анімація"], + "Whether to animate the progress and the value or just display them": [ + "Чи варто оживити прогрес і значення, чи просто відображати їх" ], - "Only Total": ["Тільки повне"], - "Only `SELECT` statements are allowed": ["Дозволено лише `вибору"], - "Only applies when \"Label Type\" is not set to a percentage.": [ - "Застосовується лише тоді, коли \"тип мітки\" не встановлений на відсоток." + "Axis": ["Вісь"], + "Show axis line ticks": ["Показати кліщі лінії осі"], + "Whether to show minor ticks on the axis": [ + "Чи слід показувати незначні кліщі на осі" ], - "Only applies when \"Label Type\" is set to show values.": [ - "Застосовується лише тоді, коли \"тип мітки\" встановлюється для показу значень." + "Show split lines": ["Показати розділені лінії"], + "Whether to show the split lines on the axis": [ + "Чи відображати розділені лінії на осі" ], - "Only selected panels will be affected by this filter": [ - "На цей фільтр вплине лише вибрані панелі" + "Split number": ["Розділений номер"], + "Number of split segments on the axis": [ + "Кількість розділених сегментів на осі" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "Показати лише загальну вартість у складеній діаграмі, а не показати у вибраній категорії" + "Progress": ["Прогресувати"], + "Show progress": ["Показати прогрес"], + "Whether to show the progress of gauge chart": [ + "Чи показувати хід датчика діаграми" ], - "Only single queries supported": ["Підтримуються лише одиночні запити"], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "Дозволено лише наступні розширення файлу: %(allowed_extensions)s" + "Overlap": ["Перетинати"], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "Чи перекривається панель прогресу, коли існує кілька груп даних" ], - "Oops! An error occurred!": ["На жаль! Виникла помилка!"], - "Opacity": ["Непрозорість"], - "Opacity of Area Chart. Also applies to confidence band.": [ - "Прозоість діаграми області. Також застосовується до групи довіри." + "Round cap": ["Круглий cap"], + "Style the ends of the progress bar with a round cap": [ + "Стильні кінці смуги прогресу з круглою шапкою" ], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [ - "Прозоість усіх кластерів, балів та мітків. Між 0 і 1." + "Intervals": ["Інтервали"], + "Interval bounds": ["Інтервальні межі"], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "Кома-розділені інтервальні межі, наприклад 2,4,5 для інтервалів 0-2, 2-4 та 4-5. Останнє число повинно відповідати значенням, передбаченим для максимуму." ], - "Opacity of area chart.": ["Прозоість діаграми області."], - "Opacity, expects values between 0 and 100": [ - "Непрозорість, очікує значення від 0 до 100" + "Interval colors": ["Інтервальні кольори"], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "Вибір кольору, розділених комою для інтервалів, наприклад 1,2,4. Цілі числа позначають кольори з обраної кольорової гами і є 1-індексованими. Довжина повинна відповідати межі інтервалу." ], - "Open Datasource tab": ["Вкладка Відкрийте DataSource"], - "Open in SQL Lab": ["Відкрито в лабораторії SQL"], - "Open query in SQL Lab": ["Відкритий запит у лабораторії SQL"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "Керуйте базою даних в асинхронному режимі, що означає, що запити виконуються на віддалених працівниках на відміну від самого веб -сервера. Це передбачає, що у вас є налаштування працівника селери, а також резервні результати. Для отримання додаткової інформації зверніться до документів про встановлення." + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "Використовує датчик для демонстрації прогресу метрики до цілі. Положення циферблату представляє прогрес, а значення терміналу в калібрі являє собою цільове значення." ], - "Operator": ["Оператор"], - "Operator undefined for aggregator: %(name)s": [ - "Оператор, не визначений для агрегатора: %(ім'я)s" + "Gauge Chart": ["Діаграма калібру"], + "Name of the source nodes": ["Назва вихідних вузлів"], + "Name of the target nodes": ["Назва цільових вузлів"], + "Source category": ["Категорія джерела"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "Категорія вихідних вузлів, що використовуються для призначення кольорів. Якщо вузол пов'язаний з більш ніж однією категорією, буде використано лише перший." ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "Необов’язковий вміст Ca_bundle для перевірки запитів HTTPS. Доступний лише в певних двигунах бази даних." + "Target category": ["Цільова категорія"], + "Category of target nodes": ["Категорія цільових вузлів"], + "Chart options": ["Параметри діаграми"], + "Layout": ["Макет"], + "Graph layout": ["Розположення графу"], + "Force": ["Примушувати"], + "Layout type of graph": ["Тип макета графа"], + "Edge symbols": ["Символи краю"], + "Symbol of two ends of edge line": ["Символ двох кінців лінії краю"], + "None -> None": ["Жоден -> Жоден"], + "None -> Arrow": ["Жоден -> Стрілка"], + "Circle -> Arrow": ["Коло -> Стрілка"], + "Circle -> Circle": ["Коло -> Коло"], + "Enable node dragging": ["Увімкнути перетягування вузла"], + "Whether to enable node dragging in force layout mode.": [ + "Чи ввімкнути вузол перетягування в режимі макета." ], - "Optional d3 date format string": ["Необов’язковий рядок формату D3 D3"], - "Optional d3 number format string": [ - "Необов’язковий рядок формату числа D3" + "Enable graph roaming": ["Увімкнути роумінг графів"], + "Disabled": ["Інвалід"], + "Scale only": ["Лише масштаб"], + "Move only": ["Тільки рухатися"], + "Scale and Move": ["Масштаб і рухайтеся"], + "Whether to enable changing graph position and scaling.": [ + "Чи можна змінювати положення графіку та масштабування." ], - "Optional name of the data column.": [ - "Необов’язкове ім'я стовпця даних." + "Node select mode": ["Режим вибору вузла"], + "Single": ["Поодинокий"], + "Multiple": ["Багаторазовий"], + "Allow node selections": ["Дозволити вибір вузлів"], + "Label threshold": ["Поріг мітки"], + "Minimum value for label to be displayed on graph.": [ + "Мінімальне значення для мітки для відображення на графі." ], - "Optional warning about use of this metric": [ - "Необов’язкове попередження про використання цієї метрики" + "Node size": ["Розмір вузла"], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "Середній розмір вузла, найбільший вузол буде в 4 рази більший, ніж найменший" ], - "Options": ["Варіанти"], - "Or choose from a list of other databases we support:": [ - "Або виберіть зі списку інших баз даних, які ми підтримуємо:" + "Edge width": ["Ширина краю"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "Середня ширина краю, найгустіший край буде в 4 рази товстіший, ніж найтонший." ], - "Order by entity id": ["Замовлення за сутністю ідентифікатор"], - "Order results by selected columns": [ - "Результати замовлення за вибраними стовпцями" + "Edge length": ["Довжина краю"], + "Edge length between nodes": ["Довжина краю між вузлами"], + "Gravity": ["Тяжкість"], + "Strength to pull the graph toward center": [ + "Сила, щоб потягнути граф до центру" ], - "Ordering": ["Замовлення"], - "Orientation": ["Орієнтація"], - "Orientation of bar chart": ["Орієнтація гістограмної діаграми"], - "Orientation of filter bar": ["Орієнтація панелі фільтра"], - "Orientation of tree": ["Орієнтація дерева"], - "Original": ["Оригінальний"], - "Original table column order": ["Оригінальне замовлення стовпця таблиці"], - "Original value": ["Початкове значення"], - "Orthogonal": ["Ортогональний"], - "Other": ["Інший"], - "Outdoors": ["На відкритому повітрі"], - "Outer Radius": ["Зовнішній радіус"], - "Outer edge of Pie chart": ["Зовнішній край кругообігу"], - "Overlap": ["Перетинати"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Накладіть один або кілька разів з відносного періоду часу. Очікує відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 тижні, 365 днів). Підтримується безкоштовний текст." + "Repulsion": ["Відштовхування"], + "Repulsion strength between nodes": ["Сила відштовхування між вузлами"], + "Friction": ["Тертя"], + "Friction between nodes": ["Тертя між вузлами"], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "Відображає з'єднання між об'єктами в структурі графів. Корисно для відображення відносин та показ, які вузли важливі в мережі. Діаграми графів можуть бути налаштовані на спрямування сили або циркуляцію. Якщо ваші дані мають геопросторову складову, спробуйте діаграму дуги Deck.gl." ], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Накладіть один або кілька разів з відносного періоду часу. Очікує відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 тижні, 365 днів). Підтримується безкоштовний текст." + "Graph Chart": ["Діаграма графа"], + "Structural": ["Структурний"], + "Whether to sort descending or ascending": [ + "Чи сортувати низхідну чи висхідну" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ - "Накладає шестикутну сітку на карті та агрегує дані в межах кордону кожної комірки." + "Series type": ["Тип серії"], + "Smooth Line": ["Гладка лінія"], + "Step - start": ["Крок - Почати"], + "Step - middle": ["Крок - Середній"], + "Step - end": ["Крок - Кінець"], + "Series chart type (line, bar etc)": [ + "Тип діаграми серії (рядок, бар тощо)" ], - "Override time grain": ["Переоцінка зерна часу"], - "Override time range": ["Переоцінка часового діапазону"], - "Overwrite": ["Переписувати"], - "Overwrite & Explore": ["Переписати та досліджувати"], - "Overwrite Dashboard [%s]": ["Перезаписати Інформаційну панель [%s]"], - "Overwrite Duplicate Columns": ["Перезаписати дублікат стовпців"], - "Overwrite existing": ["Переписати існуючі"], - "Overwrite text in the editor with a query on this table": [ - "Переписати текст у редакторі із запитом на цій таблиці" + "Stack series": ["Серія стека"], + "Area chart": ["Діаграма"], + "Draw area under curves. Only applicable for line types.": [ + "Накресліть область під кривими. Застосовується лише для типів ліній." ], - "Owned Created or Favored": ["Належить створеним або прихильним"], - "Owner": ["Власник"], - "Owners": ["Власники"], - "Owners are invalid": ["Власники недійсні"], - "Owners is a list of users who can alter the dashboard.": [ - "Власники - це список користувачів, які можуть змінити інформаційну панель." + "Opacity of area chart.": ["Прозоість діаграми області."], + "Marker": ["Маркер"], + "Draw a marker on data points. Only applicable for line types.": [ + "Накресліть маркер на точках даних. Застосовується лише для типів ліній." ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "Власники - це список користувачів, які можуть змінити інформаційну панель. Шукати за іменем або іменем користувача." + "Marker size": ["Розмір маркера"], + "Size of marker. Also applies to forecast observations.": [ + "Розмір маркера. Також застосовується до прогнозних спостережень." ], - "Page length": ["Довжина сторінки"], - "Paired t-test Table": ["Парна таблиця t-тесту"], - "Pandas resample method": ["Метод Pandas Resample"], - "Pandas resample rule": ["Pandas resamplable Правило"], - "Parallel Coordinates": ["Паралельні координати"], - "Parameter error": ["Помилка параметра"], - "Parameters": ["Параметри"], - "Parameters ": ["Параметри "], - "Parameters related to the view and perspective on the map": [ - "Параметри, пов’язані з переглядом та перспективою на карті" + "Primary": ["Первинний"], + "Secondary": ["Вторинний"], + "Primary or secondary y-axis": ["Первинна або вторинна осі Y"], + "Shared query fields": ["Поля спільного запиту"], + "Query A": ["Запит a"], + "Advanced analytics Query A": ["Розширений запит аналітики a"], + "Query B": ["Запит B"], + "Advanced analytics Query B": ["Розширений запит аналітики b"], + "Data Zoom": ["Масштаб даних"], + "Enable data zooming controls": [ + "Увімкнути контроль за масштабуванням даних" ], - "Parent": ["Батько"], - "Parse Dates": ["Дати розбору"], - "Part of a Whole": ["Частина цілого"], - "Partition Chart": ["Діаграма розділів"], - "Partition Diagram": ["Діаграма розділів"], - "Partition Limit": ["Обмеження розділу"], - "Partition Threshold": ["Поріг розділення"], - "Partitions whose height to parent height proportions are below this value are pruned": [ - "Перегородки, пропорції висоти, висота батьківства нижче цього значення обрізаються" + "Minor Split Line": ["Незначна лінія розколу"], + "Draw split lines for minor y-axis ticks": [ + "Накресліть розділені лінії для незначних кліщів у осі Y" ], - "Password": ["Пароль"], - "Paste Private Key here": ["Вставте тут приватний ключ"], - "Paste content of service credentials JSON file here": [ - "Вставте вміст службових облікових даних JSON Файл тут" + "Primary y-axis Bounds": ["Первинні межі вісь Y"], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Межі для первинної осі y. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить ступінь даних." ], - "Paste the shareable Google Sheet URL here": [ - "Вставте сюди спільну URL -адресу Google Sheet" + "Primary y-axis format": ["Первинний формат осі Y"], + "Logarithmic scale on primary y-axis": [ + "Логарифмічна шкала на первинній осі Y" ], - "Pattern": ["Зразок"], - "Percent Change": ["Відсоткова зміна"], - "Percentage": ["Відсоток"], - "Percentage change": ["Зміна відсотків"], - "Percentage metrics": ["Відсоткові показники"], - "Percentage threshold": ["Відсоток поріг"], - "Percentages": ["Відсотки"], - "Performance": ["Виконання"], - "Period average": ["Середній період"], - "Periods": ["Періоди"], - "Periods must be a whole number": ["Періоди повинні бути цілим числом"], - "Person or group that has certified this chart.": [ - "Особа або група, яка сертифікувала цю діаграму." + "Secondary y-axis Bounds": ["Вторинні межі осі y"], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "Межі для вторинної осі y. Працює лише тоді, коли незалежна вісь Y\n Межі увімкнено. Якщо залишити порожні, межі динамічно визначені\n на основі міні/максимуму даних. Зауважте, що ця функція лише розшириться\n діапазон осі. Це не звузить ступінь даних." ], - "Person or group that has certified this dashboard.": [ - "Особа або група, яка сертифікувала цю інформаційну панель." + "Secondary y-axis format": ["Вторинний формат осі Y"], + "Secondary y-axis title": ["Вторинна назва осі Y"], + "Logarithmic scale on secondary y-axis": [ + "Логарифмічна шкала на вторинній осі Y" ], - "Person or group that has certified this metric": [ - "Особа або група, яка сертифікувала цей показник" + "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ + "Візуалізуйте дві різні серії, використовуючи одну і ту ж осі x. Зауважте, що обидві серії можна візуалізувати за допомогою іншого типу діаграми (наприклад, 1 за допомогою смуг та 1 за допомогою рядка)." ], - "Physical": ["Фізичний"], - "Physical (table or view)": ["Фізичний (таблиця або перегляд)"], - "Physical dataset": ["Фізичний набір даних"], - "Pick a dimension from which categorical colors are defined": [ - "Виберіть вимір, з якого визначені категоричні кольори" + "Mixed Chart": ["Змішана діаграма"], + "Put the labels outside of the pie?": [ + "Поставити етикетки поза пирогом?" ], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "Виберіть деталізацію в розділі часу або зняти прапорець \"Включити час\"" + "Label Line": ["Лінія мітки"], + "Draw line from Pie to label when labels outside?": [ + "Намалювати лінію з пирога до етикетки, коли етикетки зовні?" ], - "Pick a metric for left axis!": ["Виберіть метрику для лівої осі!"], - "Pick a metric for right axis!": ["Виберіть метрику для правої осі!"], - "Pick a metric for x, y and size": [ - "Виберіть показник для X, Y та розміру" + "Show Total": ["Показати загалом"], + "Whether to display the aggregate count": [ + "Чи відображати кількість сукупності" ], - "Pick a metric to display": ["Виберіть показник для відображення"], - "Pick a metric!": ["Виберіть показник!"], - "Pick a name to help you identify this database.": [ - "Виберіть ім’я, яке допоможе вам визначити цю базу даних." + "Pie shape": ["Форма пирога"], + "Outer Radius": ["Зовнішній радіус"], + "Outer edge of Pie chart": ["Зовнішній край кругообігу"], + "Inner Radius": ["Внутрішній радіус"], + "Inner radius of donut hole": ["Внутрішній радіус пончиків"], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "Класик. Відмінно підходить для показу, скільки компанії отримує кожен інвестор, яка демографія слідує за вашим блогом, або яку частину бюджету йде до військового промислового комплексу.\n\n Діаграми пирогів можуть бути важко точно інтерпретувати. Якщо чіткість відносної пропорції важлива, подумайте про використання смуги або іншого типу діаграми." ], - "Pick a nickname for how the database will display in Superset.": [ - "Виберіть прізвисько, як база даних відображатиметься в суперсеті." + "Pie Chart": ["Кругова діаграма"], + "Total: %s": ["Всього: %s"], + "The maximum value of metrics. It is an optional configuration": [ + "Максимальне значення показників. Це необов'язкова конфігурація" ], - "Pick a set of deck.gl charts to layer on top of one another": [ - "Виберіть набір діаграм палуби" + "Label position": ["Позиція мітки"], + "Radar": ["Радар"], + "Customize Metrics": ["Налаштуйте показники"], + "Further customize how to display each metric": [ + "Далі налаштувати, як відобразити кожну метрику" ], - "Pick a time granularity for your time series": [ - "Виберіть деталізацію часу для своїх часових рядів" + "Circle radar shape": ["Форма радіолокаційного кола"], + "Radar render type, whether to display 'circle' shape.": [ + "Тип радіолокаційного візуалізації, чи відображати форму \"кола\"." ], - "Pick a title for you annotation.": [ - "Виберіть заголовок для вас анотацію." + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "Візуалізуйте паралельний набір показників у різних групах. Кожна група візуалізується за допомогою власної лінії точок, і кожна метрика представлена ​​як край на діаграмі." ], - "Pick at least one field for [Series]": [ - "Виберіть принаймні одне поле для [серії]" + "Radar Chart": ["Радарна діаграма"], + "Primary Metric": ["Первинний показник"], + "The primary metric is used to define the arc segment sizes": [ + "Первинний показник використовується для визначення розмірів сегмента дуги" ], - "Pick at least one metric": ["Виберіть хоча б одну метрику"], - "Pick exactly 2 columns as [Source / Target]": [ - "Виберіть рівно 2 стовпці як [джерело / ціль]" + "Secondary Metric": ["Вторинна метрика"], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "[Необов’язково] Ця вторинна метрика використовується для визначення кольору як співвідношення проти первинної метрики. При опущенні кольори є категоричним і на основі мітків" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "Виберіть один або кілька стовпців, які слід показати в анотації. Якщо ви не вибрали стовпець, всі вони будуть показані." + "When only a primary metric is provided, a categorical color scale is used.": [ + "Коли надається лише первинна метрика, використовується категорична кольорова шкала." ], - "Pick your favorite markup language": ["Виберіть улюблену мову розмітки"], - "Pie Chart": ["Кругова діаграма"], - "Pie shape": ["Форма пирога"], - "Pin": ["Шпилька"], - "Pivot Table": ["Поворотна таблиця"], - "Pivot operation must include at least one aggregate": [ - "Робота повороту повинна включати щонайменше одну сукупність" + "When a secondary metric is provided, a linear color scale is used.": [ + "Коли надається вторинна метрика, використовується лінійна кольорова шкала." ], - "Pivot operation requires at least one index": [ - "Робота повороту вимагає щонайменше одного індексу" + "Hierarchy": ["Ієрархія"], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "Встановлює рівні ієрархії діаграми. Кожен рівень є\n Представлений одним кільцем з найпотаємнішим колом як верхівка ієрархії." ], - "Pivoted": ["Обрізаний"], - "Pixel height of each series": ["Висота пікселів кожної серії"], - "Pixels": ["Пікселі"], - "Plain": ["Простий"], - "Please DO NOT overwrite the \"filter_scopes\" key.": [ - "Будь ласка, не перезапишіть клавішу \"filter_scopes\"." + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "Використовує кола для візуалізації потоку даних через різні етапи системи. Наведіть курсор на окремі шляхи візуалізації, щоб зрозуміти етапи, які взяла значення. Корисно для багатоступеневої, багатогрупової візуалізації воронки та трубопроводів." ], - "Please apply filter changes": ["Будь ласка, застосуйте зміни фільтра"], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "Будь ласка, перевірте свій запит і підтвердьте, що всі параметри шаблону оточують подвійні брекети, наприклад, \"{{ds}}\". Потім спробуйте знову запустити свій запит." + "Sunburst Chart": ["Діаграма Sunburst"], + "Multi-Levels": ["Багаторівневі"], + "When using other than adaptive formatting, labels may overlap": [ + "При використанні, крім адаптивного форматування, мітки можуть перекриватися" ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "Будь ласка, перевірте свій запит на наявність помилок синтаксису на або поблизу “%(syntax_error)s\". Потім спробуйте знову запустити свій запит." + "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ + "Швейцарський армійський ніж для візуалізації даних. Виберіть між крок, рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів налаштування." ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "Будь ласка, перевірте свій запит на наявність помилок синтаксису поблизу \"%(server_error)s\". Потім спробуйте знову запустити свій запит." + "Generic Chart": ["Загальна діаграма"], + "zoom area": ["масштаб"], + "restore zoom": ["відновити масштаб"], + "Series Style": ["Стиль серії"], + "Area chart opacity": ["Область прозоість діаграми"], + "Opacity of Area Chart. Also applies to confidence band.": [ + "Прозоість діаграми області. Також застосовується до групи довіри." ], - "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ - "Будь ласка, перевірте свої параметри шаблону на наявність помилок синтаксису та переконайтеся, що вони відповідають вашому запиту SQL та встановіть параметри. Потім спробуйте знову запустити свій запит." + "Marker Size": ["Розмір маркера"], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Діаграми області схожі на лінійні діаграми тим, що вони представляють змінні з однаковою шкалою, але діаграми області складають показники один до одного." ], - "Please choose at least one groupby": [ - "Будь ласка, виберіть хоча б одну групу" + "Area Chart": ["Діаграма"], + "Axis Title": ["Назва вісь"], + "AXIS TITLE MARGIN": ["ЗАВДАННЯ ВІСІВ"], + "AXIS TITLE POSITION": ["Позиція заголовка вісь"], + "Axis Format": ["Формат вісь"], + "Logarithmic axis": ["Логарифмічна вісь"], + "Draw split lines for minor axis ticks": [ + "Накресліть розділені лінії для незначних кліщів" ], - "Please choose different metrics on left and right axis": [ - "Будь ласка, виберіть різні показники зліва та права вісь" + "Truncate Axis": ["Усікатна вісь"], + "It’s not recommended to truncate axis in Bar chart.": [ + "Не рекомендується скоротити вісь у гістограмі." ], - "Please confirm": ["Будь-ласка підтвердіть"], - "Please confirm the overwrite values.": [ - "Будь ласка, підтвердьте значення перезапису." + "Axis Bounds": ["Межі вісь"], + "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Межі для осі. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить ступінь даних." ], - "Please enter a SQLAlchemy URI to test": [ - "Будь ласка, введіть URI SQLALCHEMY для тестування" + "Chart Orientation": ["Орієнтація діаграми"], + "Bar orientation": ["Орієнтація"], + "Horizontal": ["Горизонтальний"], + "Orientation of bar chart": ["Орієнтація гістограмної діаграми"], + "Bar Charts are used to show metrics as a series of bars.": [ + "Барські діаграми використовуються для показу показників як серії барів." ], - "Please filter set name": ["Будь ласка, відфільтруйте ім'я набору"], - "Please re-enter the password.": ["Будь ласка, повторно введіть пароль."], - "Please re-export your file and try importing again": [ - "Будь ласка, повторно експортуйте файл і спробуйте знову імпортувати" + "Bar Chart": ["Гістограма"], + "Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ + "Лінійна діаграма використовується для візуалізації вимірювань, взяті на задану категорію. Лінійна діаграма - це тип діаграми, яка відображає інформацію як ряд точок даних, підключених за допомогою прямих сегментів. Це основний тип діаграми, поширений у багатьох полях." ], - "Please reach out to the Chart Owner for assistance.": [ - "Будь ласка, зверніться до власника діаграми за допомогою." + "Line Chart": ["Лінійна діаграма"], + "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ + "Сюжет розсіювання має горизонтальну вісь у лінійних одиницях, а точки з'єднані в порядку. Він показує статистичну залежність між двома змінними." ], - "Please save the query to enable sharing": [ - "Збережіть запит, щоб увімкнути обмін" + "Scatter Plot": ["Діаграма розкиду"], + "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ + "Гладка лінія-це варіація лінійної діаграми. Без кутів і жорстких країв, гладка лінія іноді виглядає розумнішими та професійнішими." ], - "Please save your chart first, then try creating a new email report.": [ - "Спочатку збережіть свою діаграму, а потім спробуйте створити новий звіт електронної пошти." + "Step type": ["Тип кроку"], + "Start": ["Почати"], + "Middle": ["Середина"], + "End": ["Кінець"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "Визначає, чи повинен крок з’являтися на початку, середній або кінець між двома точками даних" ], - "Please save your dashboard first, then try creating a new email report.": [ - "Спочатку збережіть свою інформаційну панель, а потім спробуйте створити новий звіт на електронну пошту." + "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ + "Графік ступінчастої лінії (також називається крок діаграми)-це варіація лінійної діаграми, але з лінією, що утворює ряд кроків між точками даних. Крок діаграми може бути корисною, коли ви хочете показати зміни, які відбуваються з нерегулярними інтервалами." ], - "Please select both a Dataset and a Chart type to proceed": [ - "Виберіть як набір даних, так і тип діаграми, щоб продовжити" + "Stepped Line": ["Ступінчаста лінія"], + "Id": ["Ідентифікатор"], + "Name of the id column": ["Ім'я стовпця ідентифікатора"], + "Parent": ["Батько"], + "Name of the column containing the id of the parent node": [ + "Назва стовпця, що містить ідентифікатор батьківського вузла" ], - "Please use 3 different metric labels": [ - "Будь ласка, використовуйте 3 різні метричні етикетки" - ], - "Plot the distance (like flight paths) between origin and destination.": [ - "Наведіть відстань (як доріжки польоту) між походженням та пунктом призначення." - ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ - "Розраховує окремі показники для кожного рядка в даних вертикально і пов'язують їх як ряд. Ця діаграма корисна для порівняння декількох показників у всіх зразках або рядах у даних." - ], - "Plugins": ["Плагіни"], - "Point Color": ["Точковий колір"], - "Point Radius": ["Радіус точки"], - "Point Radius Scale": ["Шкала радіуса точки"], - "Point Radius Unit": ["Блок радіуса точки"], - "Point Size": ["Розмір точки"], - "Point Unit": ["Точкова одиниця"], - "Point to your spatial columns": ["Вкажіть на свої просторові стовпці"], - "Points": ["Очки"], - "Points and clusters will update as the viewport is being changed": [ - "Бали та кластери оновляться, коли змінюється ViewPort" - ], - "Polygon Column": ["Полігонна колонка"], - "Polygon Encoding": ["Кодування багатокутника"], - "Polygon Settings": ["Налаштування багатокутників"], - "Polyline": ["Полілінія"], - "Pop Tab Link": ["Посилання на поп -вкладку"], - "Popular": ["Популярний"], - "Populate \"Default value\" to enable this control": [ - "Населення \"значення за замовчуванням\", щоб увімкнути цей контроль" + "Optional name of the data column.": [ + "Необов’язкове ім'я стовпця даних." ], - "Population age data": ["Дані віку населення"], - "Port": ["Порт"], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "Порт %(port)s на ім'я хоста \" %(hostname)s” відмовився від з'єднання." + "Root node id": ["Ідентифікатор кореневого вузла"], + "Id of root node of the tree.": ["Id кореневого вузла дерева."], + "Metric for node values": ["Метрика для значень вузла"], + "Tree layout": ["Макет дерева"], + "Orthogonal": ["Ортогональний"], + "Radial": ["Радіальний"], + "Layout type of tree": ["Тип макета дерева"], + "Tree orientation": ["Орієнтація на дерева"], + "Left to Right": ["Зліва направо"], + "Right to Left": ["Праворуч зліва"], + "Top to Bottom": ["Зверху вниз"], + "Bottom to Top": ["Дно вгорі"], + "Orientation of tree": ["Орієнтація дерева"], + "Node label position": ["Положення мітки вузлів"], + "left": ["лівий"], + "top": ["топ"], + "right": ["право"], + "bottom": ["дно"], + "Position of intermediate node label on tree": [ + "Положення мітки проміжного вузла на дереві" ], - "Port out of range 0-65535": ["Порт поза діапазоном 0-65535"], - "Position JSON": ["Позиція JSON"], + "Child label position": ["Позиція дочірньої етикетки"], "Position of child node label on tree": [ "Положення етикетки дитячого вузла на дереві" ], - "Position of column level subtotal": [ - "Положення субтотального рівня стовпця" - ], - "Position of intermediate node label on tree": [ - "Положення мітки проміжного вузла на дереві" + "Emphasis": ["Наголос"], + "ancestor": ["предок"], + "descendant": ["нащадок"], + "Which relatives to highlight on hover": [ + "Які родичі, щоб виділити на курсі" ], - "Position of row level subtotal": ["Положення субтотального рівня рядка"], - "Powered by Apache Superset": ["Працює від Superset Apache"], - "Pre-filter": ["Попередній фільтр"], - "Pre-filter available values": ["Доступні значення попереднього фільтра"], - "Pre-filter is required": ["Потрібен попередній фільтр"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "Приклад застосовується при отримання чіткого значення для заповнення компонента управління фільтром. Підтримує синтаксис шаблону Jinja. Застосовується лише тоді, коли увімкнено `Увімкнути Filter Select`." + "Symbol": ["Символ"], + "Empty circle": ["Порожнє коло"], + "Circle": ["Кола"], + "Rectangle": ["Прямокутник"], + "Triangle": ["Трикутник"], + "Diamond": ["Алмаз"], + "Pin": ["Шпилька"], + "Arrow": ["Стрілка"], + "Symbol size": ["Розмір символу"], + "Size of edge symbols": ["Розмір символів краю"], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "Візуалізуйте декілька рівнів ієрархії, використовуючи звичну деревоподібну структуру." ], - "Predictive": ["Прогнозний"], - "Predictive Analytics": ["Прогнозування аналітики"], - "Preview": ["Попередній перегляд"], - "Preview: `%s`": ["Попередній перегляд: `%S`"], - "Previous": ["Попередній"], - "Previous Line": ["Попередній рядок"], - "Primary": ["Первинний"], - "Primary Metric": ["Первинний показник"], - "Primary key": ["Первинний ключ"], - "Primary or secondary y-axis": ["Первинна або вторинна осі Y"], - "Primary y-axis Bounds": ["Первинні межі вісь Y"], - "Primary y-axis format": ["Первинний формат осі Y"], - "Private Key": ["Приватний ключ"], - "Private Key & Password": ["Приватний ключ та пароль"], - "Private Key Password": ["Пароль приватного ключа"], - "Proceed": ["Тривати"], - "Profile": ["Профіль"], - "Profile picture provided by Gravatar": [ - "Зображення профілю, надане Gravatar" + "Tree Chart": ["Деревна діаграма"], + "Show Upper Labels": ["Показати верхні етикетки"], + "Show labels when the node has children.": [ + "Показати етикетки, коли у вузла є діти." ], - "Progress": ["Прогресувати"], - "Progressive": ["Прогресивний"], - "Propagate": ["Розповсюджувати"], - "Proportional": ["Пропорційний"], - "Public and privately shared sheets": [ - "Громадські та приватні діляться аркушами" + "Key": ["Ключ"], + "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ + "Показати ієрархічні зв’язки даних із значенням, представленим областю, показуючи пропорцію та внесок у ціле." ], - "Publicly shared sheets only": ["Публічно поділяються лише аркушами"], - "Published": ["Опублікований"], - "Purple": ["Фіолетовий"], - "Put labels outside": ["Покладіть етикетки назовні"], - "Put the labels outside of the pie?": [ - "Поставити етикетки поза пирогом?" + "Treemap": ["Подумати"], + "Total": ["Загальний"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ + "" ], - "Put the labels outside the pie?": ["Поставити етикетки поза пирогом?"], - "Put your code here": ["Покладіть свій код сюди"], - "Python datetime string pattern": ["Python DateTime String шаблон"], - "QUERY DATA IN SQL LAB": ["Дані запиту в лабораторії SQL"], - "Quarter": ["Чверть"], - "Quarters %s": ["Квартали %s"], - "Queries": ["Запити"], - "Query": ["Запит"], - "Query %s: %s": ["Запит %s: %s"], - "Query A": ["Запит a"], - "Query B": ["Запит B"], - "Query History": ["Історія запитів"], - "Query does not exist": ["Запити не існує"], - "Query history": ["Історія запитів"], - "Query imported": ["Імпортний запит"], - "Query in a new tab": ["Запит на новій вкладці"], - "Query is too complex and takes too long to run.": [ - "Запит занадто складний і займає занадто багато часу." + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "" ], - "Query mode": ["Режим запиту"], - "Query name": ["Назва запиту"], - "Query preview": ["Попередній перегляд запитів"], - "Query was stopped": ["Запит був зупинений"], - "Query was stopped.": ["Запит зупинився."], - "RANGE TYPE": ["Тип дальності"], - "RGB Color": ["RGB Колір"], - "RLS Rule could not be deleted.": ["Правило RLS не можна було видалити."], - "RLS Rule not found.": ["Правило RLS не знайдено."], - "Radar": ["Радар"], - "Radar Chart": ["Радарна діаграма"], - "Radar render type, whether to display 'circle' shape.": [ - "Тип радіолокаційного візуалізації, чи відображати форму \"кола\"." + "page_size.all": ["page_size.all"], + "Loading...": ["Завантаження ..."], + "Write a handlebars template to render the data": [ + "Напишіть шаблон ручки для надання даних" ], - "Radial": ["Радіальний"], - "Radius in kilometers": ["Радіус у кілометрах"], - "Radius in meters": ["Радіус у метрах"], - "Radius in miles": ["Радіус у милях"], - "Ran %s": ["Ran %s"], - "Range": ["Діапазон"], - "Range filter": ["Фільтр діапазону"], - "Range filter plugin using AntD": [ - "Діапазон фільтрів плагін за допомогою ANTD" + "Handlebars": ["Ручка"], + "must have a value": ["повинен мати значення"], + "Handlebars Template": ["Шаблон ручки"], + "A handlebars template that is applied to the data": [ + "Шаблон ручки, який застосовується до даних" ], - "Range labels": ["Етикетки діапазону"], - "Ranges": ["Діапазони"], - "Ranges to highlight with shading": [ - "Діапазони, щоб виділити за допомогою затінення" + "Include time": ["Включіть час"], + "Whether to include the time granularity as defined in the time section": [ + "Чи включати часову деталізацію, визначену в розділі часу" ], - "Ranking": ["Рейтинг"], - "Ratio": ["Співвідношення"], - "Raw records": ["RAW Records"], - "Ready to review filters in this dashboard?": [ - "Готові переглянути фільтри на цій інформаційній панелі?" + "Percentage metrics": ["Відсоткові показники"], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "" ], - "Rebuild": ["Відновлювати"], - "Recent activity": ["Остання активність"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "Нещодавно створені діаграми, інформаційні панелі та збережені запити з’являться тут" + "Show totals": ["Показати підсумки"], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "Показати загальну сукупність вибраних показників. Зауважте, що обмеження рядка не застосовується до результату." ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "Нещодавно відредаговані діаграми, інформаційні панелі та збереженні запити з’являться тут" + "Ordering": ["Замовлення"], + "Order results by selected columns": [ + "Результати замовлення за вибраними стовпцями" ], - "Recently modified": ["Нещодавно змінений"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "Нещодавно переглянуті діаграми, інформаційні панелі та збережені запити з’являться тут" + "Sort descending": ["Сортувати низхід"], + "Server pagination": ["Сервер Пагінування"], + "Enable server side pagination of results (experimental feature)": [ + "Увімкнути серверну пагінування результатів (експериментальна функція)" ], - "Recents": ["Втілення"], - "Recipients are separated by \",\" or \";\"": [ - "Одержувачі розділені \",\" або \";\"" + "Server Page Length": ["Довжина сторінки сервера"], + "Rows per page, 0 means no pagination": [ + "Рядки на сторінку, 0 означає, що немає пагінації" ], - "Recommended tags": ["Рекомендовані теги"], - "Record Count": ["Реєстрація"], - "Rectangle": ["Прямокутник"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "Перенаправлення до цієї кінцевої точки при натисканні на таблицю зі списку таблиці" + "Query mode": ["Режим запиту"], + "Group By, Metrics or Percentage Metrics must have a value": [ + "Група за, показники або відсоткові показники повинні мати значення" ], - "Redo the action": ["Переробити дію"], - "Reduce X ticks": ["Зменшіть X кліщів"], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ - "Зменшує кількість кліщів осі, які потрібно надати. Якщо це правда, осі x не переповнюється, а мітки можуть відсутні. Якщо помилково, до стовпців буде застосовано мінімальна ширина, а ширина може переливатися в горизонтальний сувій." + "You need to configure HTML sanitization to use CSS": [ + "Вам потрібно налаштувати санітарію HTML для використання CSS" ], - "Refer to the": ["Зверніться до"], - "Referenced columns not available in DataFrame.": [ - "Посилання на стовпці недоступні в даних даних." + "CSS Styles": ["Стилі CSS"], + "CSS applied to the chart": ["CSS, застосований до діаграми"], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": ["Стовпці до групи на стовпцях"], + "Rows": ["Ряди"], + "Columns to group by on the rows": ["Стовпці до групи на рядках"], + "Apply metrics on": ["Застосувати показники на"], + "Use metrics as a top level group for columns or for rows": [ + "Використовуйте показники як групу вищого рівня для стовпців або для рядків" ], - "Refetch results": ["Результати переробки"], - "Refresh": ["Оновлювати"], - "Refresh dashboard": ["Оновити інформаційну панель"], - "Refresh frequency": ["Частота оновлення"], - "Refresh interval": ["Інтервал оновлення"], - "Refresh interval saved": ["Оновити інтервал збережено"], - "Refresh table list": ["Список оновлення таблиці"], - "Refresh tables": ["Оновити столи"], - "Refresh the default values": ["Оновити значення за замовчуванням"], - "Refreshing charts": ["Освіжаючі діаграми"], - "Refreshing columns": ["Освіжаючі стовпці"], - "Regex": ["Регекс"], - "Regular": ["Регулярний"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "Регулярні фільтри додають, де до запитів, якщо користувач належить до ролі, що посилається у фільтрі, базові фільтри застосовують фільтри до всіх запитів, крім ролей, визначених у фільтрі, і можуть бути використані для визначення того, що користувачі можуть побачити, чи немає фільтрів RLS у межах a Група фільтрів застосовується до них." + "Cell limit": ["Обмеження клітин"], + "Limits the number of cells that get retrieved.": [ + "Обмежує кількість клітин, які отримують." ], - "Relational": ["Реляційний"], - "Relationships between community channels": [ - "Відносини між каналами громади" + "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Метрика, яка використовується для визначення того, як сортується верхня серія, якщо присутня ліміт серії або комірки. Якщо невизначений повернення до першої метрики (де це доречно)." ], - "Relative Date/Time": ["Відносна дата/час"], - "Relative period": ["Відносний період"], - "Relative quantity": ["Відносна кількість"], - "Reload": ["Перезавантажувати"], - "Remind me in 24 hours": ["Нагадайте мені через 24 години"], - "Remove": ["Видалити"], - "Remove cross-filter": ["Видаліть перехресний фільтр"], - "Remove invalid filters": ["Видаліть недійсні фільтри"], - "Remove item": ["Видаліть елемент"], - "Remove query from log": ["Видаліть запит з журналу"], - "Remove table preview": ["Видалити попередній перегляд таблиці"], - "Removed columns: %s": ["Видалені стовпці: %s"], - "Rename tab": ["Перейменуйте вкладку"], - "Rendering": ["Візуалізація"], - "Replace": ["Замінити"], - "Report": ["Доповідь"], - "Report Name": ["Назва звіту"], - "Report Schedule could not be created.": [ - "Графік звітів не вдалося створити." - ], - "Report Schedule could not be deleted.": [ - "Графік звітів не можна було видалити." - ], - "Report Schedule could not be updated.": [ - "Графік звіту не можна було оновити." - ], - "Report Schedule delete failed.": ["Графік звіту Видалити не вдалося."], - "Report Schedule execution failed when generating a csv.": [ - "Виконання графіку звіту не вдалося при створенні CSV." + "Aggregation function": ["Функція агрегації"], + "Count": ["Рахувати"], + "Count Unique Values": ["Порахуйте унікальні значення"], + "List Unique Values": ["Перелічіть унікальні значення"], + "Sum": ["Сума"], + "Average": ["Середній"], + "Median": ["Медіана"], + "Sample Variance": ["Дисперсія зразка"], + "Sample Standard Deviation": ["Зразок стандартного відхилення"], + "Minimum": ["Мінімум"], + "Maximum": ["Максимум"], + "First": ["Перший"], + "Last": ["Останній"], + "Sum as Fraction of Total": ["Сума як частка загальної кількості"], + "Sum as Fraction of Rows": ["Сума як частка рядків"], + "Sum as Fraction of Columns": ["Сума як частка стовпців"], + "Count as Fraction of Total": ["Вважається часткою загальної кількості"], + "Count as Fraction of Rows": ["Порахуйте як частку рядків"], + "Count as Fraction of Columns": ["Вважати як частка стовпців"], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "Сукупна функція, яка застосовується при повороті та обчисленні загальних рядків та стовпців" ], - "Report Schedule execution failed when generating a dataframe.": [ - "Виконання графіку звіту не вдалося при створенні даних даних." + "Show rows total": ["Показати ціє рядки"], + "Display row level total": ["Відображення рівня рядка загалом"], + "Show columns total": ["Показати стовпці Всього"], + "Display column level total": ["Загальний рівень стовпців відображення"], + "Transpose pivot": ["Перекладіть поворот"], + "Swap rows and columns": ["Поміняйте ряди та стовпці"], + "Combine metrics": ["Поєднати показники"], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "Показники дисплея поруч у кожному стовпці, на відміну від кожного стовпця, що відображається поруч для кожної метрики." ], - "Report Schedule execution failed when generating a screenshot.": [ - "Виконання графіку звіту не вдалося при створенні скріншота." + "D3 time format for datetime columns": [ + "D3 Формат часу для стовпців DateTime" ], - "Report Schedule execution got an unexpected error.": [ - "Виконання графіку звіту Отримано несподівану помилку." + "Sort rows by": ["Сортувати ряди за"], + "key a-z": ["літера A-Z"], + "key z-a": ["літера Z-A"], + "value ascending": ["значення збільшення"], + "value descending": ["значення зменшення"], + "Change order of rows.": ["Змінити порядок рядків."], + "Available sorting modes:": ["Доступні режими сортування:"], + "By key: use row names as sorting key": [ + "За ключем: Використовуйте імена рядків як ключ сортування" ], - "Report Schedule is still working, refusing to re-compute.": [ - "Графік звіту все ще працює, відмовляючись від повторного складання." + "By value: use metric values as sorting key": [ + "За значенням: Використовуйте метричні значення як ключ сортування" ], - "Report Schedule log prune failed.": [ - "Не вдалося очистити логи Звіту Розкладу." + "Sort columns by": ["Сортувати стовпці за"], + "Change order of columns.": ["Змінити порядок стовпців."], + "By key: use column names as sorting key": [ + "За ключем: Використовуйте імена стовпців як ключ сортування" ], - "Report Schedule not found.": ["Розклад звіту не знайдено."], - "Report Schedule parameters are invalid.": [ - "Параметри розкладу звіту недійсні." + "Rows subtotal position": ["Рядки субтотального положення"], + "Position of row level subtotal": ["Положення субтотального рівня рядка"], + "Columns subtotal position": ["Стовпці субтотального положення"], + "Position of column level subtotal": [ + "Положення субтотального рівня стовпця" ], - "Report Schedule reached a working timeout.": [ - "Графік звітів досяг робочого тайм -ауту." + "Conditional formatting": ["Умовне форматування"], + "Apply conditional color formatting to metrics": [ + "Застосувати умовне форматування кольорів до показників" ], - "Report Schedule state not found": [ - "Держава розкладу звітів не знайдена" + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "Використовується для узагальнення набору даних шляхом групування кількох статистичних даних уздовж двох осей. Приклади: Номери продажів за регіоном та місяцем, завдання за статусом та правонаступником, активними користувачами за віком та місцезнаходженням. Не найбільш візуально приголомшлива візуалізація, але дуже інформативна та універсальна." ], - "Report a bug": ["Повідомте про помилку"], - "Report failed": ["Звіт не вдалося"], - "Report name": ["Назва звіту"], - "Report schedule": ["Розклад звіту"], - "Report schedule client error": ["Помилка звіту про графік звітів"], - "Report schedule system error": ["Помилка системи розкладу звітів"], - "Report schedule unexpected error": [ - "Графік звіту про несподівану помилку" + "Pivot Table": ["Поворотна таблиця"], + "Total (%(aggregatorName)s)": ["Всього (%(aggregatorName)s)"], + "Unknown input format": ["Невідомий формат введення"], + "search.num_records": [""], + "page_size.show": ["page_size.show"], + "page_size.entries": ["page_size.entries"], + "No matching records found": ["Не знайдено відповідних записів"], + "Shift + Click to sort by multiple columns": [ + "Shift + Клацніть, щоб сортувати на кілька стовпців" ], - "Report sending": ["Надсилання звітів"], - "Report sent": ["Звіт надісланий"], - "Report updated": ["Звіт про оновлений"], - "Reports": ["Звіти"], - "Repulsion": ["Відштовхування"], - "Repulsion strength between nodes": ["Сила відштовхування між вузлами"], - "Request Permissions": ["Попросити дозволи"], - "Request is incorrect: %(error)s": ["Запит невірний: %(error)s"], - "Request is not JSON": ["Запит - це не json"], - "Request missing data field.": ["Запит пропущеного поля даних."], - "Request timed out": ["Час запиту вичерпано"], - "Required": ["Вимагається"], - "Required control values have been removed": [ - "Необхідні контрольні значення були видалені" + "Totals": ["Підсумки"], + "Timestamp format": ["Формат часової позначки"], + "Page length": ["Довжина сторінки"], + "Search box": ["Поле пошуку"], + "Whether to include a client-side search box": [ + "Чи включати вікно пошуку на стороні клієнта" ], - "Resample": ["Перепродаж"], - "Resample method should in ": ["Метод REPAMBLE повинен в "], - "Resample operation requires DatetimeIndex": [ - "REPAMBLE ORTERCTION вимагає DateTimeIndex" + "Cell bars": ["Клітинні смуги"], + "Whether to display a bar chart background in table columns": [ + "Чи відображати фон гастрольної діаграми у стовпцях таблиці" ], - "Reset": ["Скинути"], - "Reset state": ["Скидання стану"], - "Resource already has an attached report.": [ - "Ресурс вже має доданий звіт." + "Align +/-": ["Вирівняти +/-"], + "Whether to align background charts with both positive and negative values at 0": [ + "Чи вирівнювати фонові діаграми з позитивними, так і негативними значеннями на 0" ], - "Resource was not found.": ["Ресурс не був знайдений."], - "Restore Filter": ["Відновити фільтр"], - "Results": ["Результат"], - "Results %s": ["Результати %s"], - "Results backend is not configured.": [ - "Бекенд результатів не налаштовано." + "Color +/-": ["Колір +/-"], + "Allow columns to be rearranged": ["Дозволити перестановку стовпців"], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "Дозвольте кінцевому користувачеві перетягувати заголовки стовпців, щоб переставити їх. Зверніть увагу, що їх зміни не будуть зберігатись наступного разу, коли вони відкриють діаграму." ], - "Results backend needed for asynchronous queries is not configured.": [ - "Результати, необхідні для асинхронних запитів, не налаштована." + "Customize columns": ["Налаштуйте стовпці"], + "Further customize how to display each column": [ + "Далі налаштувати, як відобразити кожен стовпець" ], - "Return to specific datetime.": ["Повернення до конкретного часу."], - "Reverse Lat & Long": ["Зворотний лат і довгий"], - "Reverse lat/long ": ["Зворотня шир/довгота "], - "Rich Tooltip": ["Багатий підказки"], - "Rich tooltip": ["Багатий підказки"], - "Right": ["Право"], - "Right Axis Format": ["Формат правої осі"], - "Right Axis Metric": ["Метрика правої осі"], - "Right axis metric": ["Метрика правої осі"], - "Right to Left": ["Праворуч зліва"], - "Right value": ["Правильне значення"], - "Right-click on a dimension value to drill to detail by that value.": [ - "Клацніть правою кнопкою миші на значення виміру, щоб до деталей за цим значенням." + "Apply conditional color formatting to numeric columns": [ + "Застосовуйте умовне форматування кольорів до числових стовпців" ], - "Role": ["Роль"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "Роль %(r)s була розширена для забезпечення доступу до даних %(ds)s" + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "Класична електронна таблиця за стовпцем, як перегляд набору даних. Використовуйте таблиці, щоб продемонструвати перегляд у основних даних або для показу сукупних показників." ], - "Roles": ["Ролі"], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ - "Ролі - це список, який визначає доступ до інформаційної панелі. Надання ролі доступу до інформаційної панелі буде обходити перевірки рівня набору даних. Якщо не визначено ролей, застосовуються регулярні дозволи на доступ." + "Show": ["Показувати"], + "entries": ["записи"], + "Word Cloud": ["Слово хмара"], + "Minimum Font Size": ["Мінімальний розмір шрифту"], + "Font size for the smallest value in the list": [ + "Розмір шрифту для найменшого значення у списку" ], - "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access permissions apply.": [ - "Ролі - це список, який визначає доступ до інформаційної панелі. Надання ролі доступу до інформаційної панелі буде обходити перевірки рівня набору даних. Якщо визначаються жодні ролі, застосовуються регулярні дозволи на доступ." + "Maximum Font Size": ["Максимальний розмір шрифту"], + "Font size for the biggest value in the list": [ + "Розмір шрифту за найбільшим значенням у списку" ], - "Roles to grant": ["Ролі для надання"], - "Rolling Function": ["Функція прокатки"], - "Rolling Window": ["Коктейльне вікно"], - "Rolling function": ["Функція прокатки"], - "Rolling window": ["Коктейльне вікно"], - "Root certificate": ["Кореневий сертифікат"], - "Root node id": ["Ідентифікатор кореневого вузла"], - "Rotate axis label": ["Обертати мітку осі"], - "Rotate x axis label": ["Обертати мітку осі X"], + "Word Rotation": ["Обертання слів"], + "random": ["випадковий"], + "square": ["квадрат"], "Rotation to apply to words in the cloud": [ "Обертання, щоб застосувати до слів у хмарі" ], - "Round cap": ["Круглий cap"], - "Row": ["Рядок"], - "Row Level Security": ["Безпека на рівні рядків"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ - "Рядок, що містить заголовки, які використовуються як імена стовпців (0 - це перший рядок даних). Залиште порожнім, якщо немає рядка заголовка" + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "Візуалізує слова в стовпці, які з’являються найчастіше. Більший шрифт відповідає більш високій частоті." ], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Рядок, що містить заголовки, які використовуються як імена стовпців (0 - це перший рядок даних). Залиште порожній, якщо немає рядка заголовка." + "N/A": ["N/a"], + "offline": ["офлайн"], + "failed": ["провалився"], + "pending": ["що очікує"], + "fetching": ["приплив"], + "running": ["біг"], + "stopped": ["зупинений"], + "success": ["успіх"], + "The query couldn't be loaded": ["Запит не вдалося завантажити"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "Ваш запит запланований. Щоб переглянути деталі вашого запиту, перейдіть до збережених запитів" ], - "Row limit": ["Межа рядка"], - "Rows": ["Ряди"], - "Rows per page, 0 means no pagination": [ - "Рядки на сторінку, 0 означає, що немає пагінації" + "Your query could not be scheduled": [ + "Ваша запит не вдалося запланувати" ], - "Rows subtotal position": ["Рядки субтотального положення"], - "Rows to Read": ["Ряди для читання"], - "Rule": ["Правити"], - "Rule Name": ["Назва права"], - "Rule added": ["Додано правило"], - "Run": ["Пробігати"], - "Run a query to display query history": [ - "Запустіть запит для відображення історії запитів" + "Failed at retrieving results": ["Не вдалося отримати результати"], + "Unknown error": ["Невідома помилка"], + "Query was stopped.": ["Запит зупинився."], + "Failed at stopping query. %s": ["Не вдалося зупинити запит. %s"], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Не в змозі перенести схему таблиці схеми, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." ], - "Run a query to display results": [ - "Запустіть запит для відображення результатів" + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Не в змозі перенести державу запитів, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." ], - "Run in SQL Lab": ["Запустити в SQL Lab"], - "Run query": ["Запустити запит"], - "Run query (Ctrl + Return)": ["Запустіть запит (Ctrl + return)"], - "Run query in a new tab": ["Запустіть запит на новій вкладці"], - "Run selection": ["Вибір запуску"], - "Running": ["Біг"], - "Running statement %(statement_num)s out of %(statement_count)s": [ - "Запуск оператора %(statement_num)s з %(statement_count)s" + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "Не в змозі перенести державу редактора запитів, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." ], - "SAT": ["Сидіти"], - "SEP": ["Сеп"], - "SHA": ["Ша"], - "SQL": ["SQL"], - "SQL Copied!": ["SQL скопійований!"], - "SQL Expression": ["Вираз SQL"], - "SQL Lab": ["SQL LAB"], - "SQL Lab View": ["Перегляд лабораторії SQL"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ - "SQL Lab використовує місцеве сховище вашого браузера для зберігання запитів та результатів.\nВ даний час ви використовуєте %(currentUsage)s KB з %(maxStorage)d KB зберігання.\nЩоб не зійти в лабораторію SQL, будь ласка, видаліть кілька вкладок запитів.\nВи можете повторно отримати ці запити, використовуючи функцію збереження, перш ніж видалити вкладку.\nЗауважте, що вам потрібно буде закрити інші вікна лабораторії SQL, перш ніж це зробити." - ], - "SQL Query": ["SQL -запит"], - "SQL expression": ["Вираз SQL"], - "SQL query": ["SQL -запит"], - "SQLAlchemy URI": ["Sqlalchemy uri"], - "SSH Host": ["SSH -хост"], - "SSH Password": ["Пароль SSH"], - "SSH Port": ["SSH -порт"], - "SSH Tunnel": ["SSH тунель"], - "SSH Tunnel configuration parameters": [ - "Параметри конфігурації тунелю SSH" + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "Неможливо додати нову вкладку до бекенду. Зверніться до свого адміністратора." ], - "SSH Tunnel could not be deleted.": ["Тунель SSH не вдалося видалити."], - "SSH Tunnel could not be updated.": ["Тунель SSH не вдалося оновити."], - "SSH Tunnel not found.": ["Тунель SSH не знайдено."], - "SSH Tunnel parameters are invalid.": ["Параметри тунелю SSH недійсні."], - "SSH Tunneling is not enabled": ["Тунелювання SSH не ввімкнено"], - "SSL Mode \"require\" will be used.": [ - "Буде використаний режим SSL \"вимагати\"." + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "- Примітка. Якщо ви не зберегли свій запит, ці вкладки не будуть зберігатись, якщо ви очистите файли cookie або змінить браузери.\n\n" ], - "START (INCLUSIVE)": ["Почати (включно)"], - "STEP %(stepCurr)s OF %(stepLast)s": ["Крок %(stepCurr)s %(stepLast)s"], - "STRING": ["Нитка"], - "SUN": ["Сонце"], - "Sample Standard Deviation": ["Зразок стандартного відхилення"], - "Sample Variance": ["Дисперсія зразка"], - "Samples": ["Зразки"], - "Samples for dataset could not be retrieved.": [ - "Зразки для набору даних не вдалося отримати." + "Copy of %s": ["Копія %s"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Під час встановлення вкладки Active сталася помилка. Зверніться до свого адміністратора." ], - "Samples for datasource could not be retrieved.": [ - "Зразки для даних не вдалося отримати." + "An error occurred while fetching tab state": [ + "Під час отримання стану вкладки сталася помилка" ], - "Sankey": ["Санкі"], - "Sankey Diagram": ["Діаграма Санкі"], - "Sankey Diagram with Loops": ["Діаграма Санкі з петлями"], - "Satellite": ["Супутник"], - "Satellite Streets": ["Супутникові вулиці"], - "Saturday": ["Субота"], - "Save": ["Заощадити"], - "Save & Explore": ["Зберегти та досліджувати"], - "Save & go to dashboard": [ - "Збережіть та перейдіть на інформаційну панель" + "An error occurred while removing tab. Please contact your administrator.": [ + "Під час видалення вкладки сталася помилка. Зверніться до свого адміністратора." ], - "Save & go to new dashboard": [ - "Збережіть та перейдіть на нову інформаційну панель" + "An error occurred while removing query. Please contact your administrator.": [ + "Під час зняття запиту сталася помилка. Зверніться до свого адміністратора." ], - "Save (Overwrite)": ["Зберегти (перезапис)"], - "Save as": ["Зберегти як"], - "Save as Dataset": ["Збережіть як набір даних"], - "Save as dataset": ["Збережіть як набір даних"], - "Save as new": ["Зберегти як нове"], - "Save as new chart": ["Збережіть як нову діаграму"], - "Save as...": ["Зберегти як..."], - "Save as:": ["Зберегти як:"], - "Save changes": ["Зберегти зміни"], - "Save chart": ["Зберегти діаграму"], - "Save dashboard": ["Зберегти приладову панель"], - "Save dataset": ["Зберегти набір даних"], - "Save for this session": ["Збережіть для цього сеансу"], - "Save or Overwrite Dataset": ["Зберегти або перезаписати набір даних"], - "Save query": ["Зберегти запит"], - "Save the query to enable this feature": [ - "Збережіть запит, щоб увімкнути цю функцію" + "Your query could not be saved": ["Ваш запит не вдалося зберегти"], + "Your query was not properly saved": [ + "Ваш запит не був належним чином збережений" ], - "Save this query as a virtual dataset to continue exploring": [ - "Збережіть цей запит як віртуальний набір даних для продовження вивчення" + "Your query was saved": ["Ваш запит був збережений"], + "Your query was updated": ["Ваш запит був оновлений"], + "Your query could not be updated": ["Ваш запит не вдалося оновити"], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "Під час зберігання вашого запиту сталася помилка. Щоб уникнути втрати змін, збережіть свій запит за допомогою кнопки \"Зберегти запит\"." ], - "Save to new dashboard": ["Збережіть на новій інформаційній панелі"], - "Saved": ["Врятований"], - "Saved Queries": ["Збережені запити"], - "Saved expressions": ["Збережені вирази"], - "Saved metric": ["Збережені метрики"], - "Saved queries": ["Збережені запити"], - "Saved queries could not be deleted.": [ - "Збережені запити не можливо видалити." + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Помилка сталася під час отримання метаданих таблиці. Зверніться до свого адміністратора." ], - "Saved query not found.": ["Збережений запит не знайдено."], - "Saved query parameters are invalid.": [ - "Збережені параметри запиту недійсні." + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "Під час розширення схеми таблиці сталася помилка. Зверніться до свого адміністратора." ], - "Scale and Move": ["Масштаб і рухайтеся"], - "Scale only": ["Лише масштаб"], - "Scatter": ["Розсіювати"], - "Scatter Plot": ["Діаграма розкиду"], - "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Сюжет розсіювання має горизонтальну вісь у лінійних одиницях, а точки з'єднані в порядку. Він показує статистичну залежність між двома змінними." + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Помилка сталася під час руйнування схеми таблиці. Зверніться до свого адміністратора." ], - "Schedule": ["Розклад"], - "Schedule a new email report": [ - "Заплануйте новий звіт електронної пошти" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "Під час зняття схеми таблиці сталася помилка. Зверніться до свого адміністратора." ], - "Schedule email report": ["Розклад звіту електронної пошти"], - "Schedule query": ["Запит на розклад"], - "Schedule settings": ["Налаштування розкладу"], - "Schedule the query periodically": ["Періодично планувати запит"], - "Scheduled": ["Запланований"], - "Scheduled at (UTC)": ["Запланований за адресою (UTC)"], - "Scheduled task executor not found": [ - "Запланований виконавець завдань не знайдено" + "Shared query": ["Спільний запит"], + "The datasource couldn't be loaded": ["Дані не вдалося завантажити"], + "An error occurred while creating the data source": [ + "Під час створення джерела даних сталася помилка" ], - "Schema": ["Схема"], - "Schema cache timeout": ["Час очікування кешу схеми"], - "Schema undefined": ["Схема невизначена"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "Схема, як використовується лише в деяких базах даних, таких як Postgres, Redshift та DB2" + "An error occurred while fetching function names.": [ + "Помилка сталася під час отримання імен функцій." ], - "Schemas allowed for File upload": [ - "Схеми дозволені для завантаження файлів" + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "SQL Lab використовує місцеве сховище вашого браузера для зберігання запитів та результатів.\nВ даний час ви використовуєте %(currentUsage)s KB з %(maxStorage)d KB зберігання.\nЩоб не зійти в лабораторію SQL, будь ласка, видаліть кілька вкладок запитів.\nВи можете повторно отримати ці запити, використовуючи функцію збереження, перш ніж видалити вкладку.\nЗауважте, що вам потрібно буде закрити інші вікна лабораторії SQL, перш ніж це зробити." ], - "Scope": ["Область"], - "Scoping": ["Виділення області"], - "Scroll": ["Прокрутити"], - "Scroll down to the bottom to enable overwriting changes. ": [ - "Прокрутіть донизу, щоб увімкнути перезапис змін. " + "Primary key": ["Первинний ключ"], + "Foreign key": ["Зовнішній ключ"], + "Index": ["Індекс"], + "Estimate selected query cost": ["Оцініть вибрані вартість запиту"], + "Estimate cost": ["Оцінка вартості"], + "Cost estimate": ["Оцінка витрат"], + "Creating a data source and creating a new tab": [ + "Створення джерела даних та створення нової вкладки" ], - "Search": ["Пошук"], - "Search / Filter": ["Пошук / фільтр"], - "Search Metrics & Columns": ["Пошук показників та стовпців"], - "Search all charts": ["Шукайте всі діаграми"], - "Search all filter options": ["Шукайте всі параметри фільтра"], - "Search box": ["Поле пошуку"], - "Search by query text": ["Пошук за текстом запитів"], - "Search columns": ["Пошук стовпців"], - "Search in filters": ["Пошук у фільтрах"], - "Search tables": ["Пошукові таблиці"], - "Search...": ["Пошук ..."], - "Second": ["Другий"], - "Secondary": ["Вторинний"], - "Secondary Metric": ["Вторинна метрика"], - "Secondary y-axis Bounds": ["Вторинні межі осі y"], - "Secondary y-axis format": ["Вторинний формат осі Y"], - "Secondary y-axis title": ["Вторинна назва осі Y"], - "Seconds %s": ["Секунди %s"], - "Secure Extra": ["Забезпечити додаткове"], - "Secure extra": ["Забезпечити додаткове"], - "Security": ["Безпека"], - "Security & Access": ["Безпека та доступ"], - "See all %(tableName)s": ["Див. All %(tableName)s"], - "See less": ["Див. Менше"], - "See more": ["Побачити більше"], - "See query details": ["Див. Деталі запиту"], - "See table schema": ["Див. Схему таблиці"], - "Select": ["Обраний"], - "Select ...": ["Виберіть ..."], - "Select Delivery Method": ["Виберіть метод доставки"], - "Select Viz Type": ["Виберіть тип ITE"], - "Select a Columnar file to be uploaded to a database.": [ - "Виберіть стовпчастий файл, щоб завантажуватися в базу даних." + "An error occurred": ["Виникла помилка"], + "Explore the result set in the data exploration view": [ + "Вивчіть результат, встановлений у поданні досліджень даних" ], - "Select a Excel file to be uploaded to a database.": [ - "Виберіть файл Excel, щоб завантажуватися в базу даних." + "explore": ["досліджувати"], + "Create Chart": ["Створити діаграму"], + "Source SQL": ["Джерело SQL"], + "Executed SQL": ["Виконаний SQL"], + "Run query": ["Запустити запит"], + "Stop query": ["Зупиніть запит"], + "New tab": ["Нова вкладка"], + "Previous Line": ["Попередній рядок"], + "Keyboard shortcuts": [""], + "Run a query to display query history": [ + "Запустіть запит для відображення історії запитів" ], - "Select a column": ["Виберіть стовпець"], - "Select a dashboard": ["Виберіть приладову панель"], - "Select a database table and create dataset": [ - "Виберіть таблицю бази даних та створіть набір даних" + "LIMIT": ["Обмежувати"], + "State": ["Держави"], + "Started": ["Розпочато"], + "Duration": ["Тривалість"], + "Results": ["Результат"], + "Actions": ["Дії"], + "Success": ["Успіх"], + "Failed": ["Провалився"], + "Running": ["Біг"], + "Fetching": ["Приплив"], + "Offline": ["Офлайн"], + "Scheduled": ["Запланований"], + "Unknown Status": ["Невідомий статус"], + "Edit": ["Редагувати"], + "View": ["Переглянути"], + "Data preview": ["Попередній перегляд даних"], + "Overwrite text in the editor with a query on this table": [ + "Переписати текст у редакторі із запитом на цій таблиці" ], - "Select a database table.": ["Виберіть таблицю бази даних."], - "Select a database to connect": ["Виберіть базу даних для підключення"], - "Select a database to upload the file to": [ - "Виберіть базу даних для завантаження файлу в" + "Run query in a new tab": ["Запустіть запит на новій вкладці"], + "Remove query from log": ["Видаліть запит з журналу"], + "Unable to create chart without a query id.": [ + "Неможливо створити діаграму без ідентифікатора запиту." ], - "Select a database to write a query": [ - "Виберіть базу даних, щоб записати запит" + "Save & Explore": ["Зберегти та досліджувати"], + "Overwrite & Explore": ["Переписати та досліджувати"], + "Save this query as a virtual dataset to continue exploring": [ + "Збережіть цей запит як віртуальний набір даних для продовження вивчення" ], - "Select a dimension": ["Виберіть вимір"], - "Select a file to be uploaded to the database": [ - "Виберіть файл, який потрібно завантажити в базу даних" + "Download to CSV": ["Завантажте в CSV"], + "Copy to Clipboard": ["Копіювати в буфер обміну"], + "Filter results": ["Результати фільтрів"], + "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ + "Кількість відображених результатів обмежена %(рядки) d. Будь ласка, додайте додаткові ліміти/фільтри, завантажте в CSV або зв’яжіться з адміністратором, щоб побачити більше рядків до обмеження (ліміт) D." ], - "Select a schema if the database supports this": [ - "Виберіть схему, якщо база даних підтримує це" + "The number of rows displayed is limited to %(rows)d by the query": [ + "Кількість відображених рядків обмежена %(рядами) d за запитом" ], - "Select a visualization type": ["Виберіть тип візуалізації"], - "Select aggregate options": ["Виберіть параметри сукупності"], - "Select all data": ["Виберіть усі дані"], - "Select all items": ["Виберіть усі елементи"], - "Select any columns for metadata inspection": [ - "Виберіть будь -які стовпці для перевірки метаданих" + "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ + "Кількість відображених рядків обмежена %(рядами) d шляхом спадного краплі." ], - "Select chart": ["Виберіть діаграму"], - "Select charts": ["Виберіть діаграми"], - "Select color scheme": ["Виберіть кольорову гаму"], - "Select column": ["Виберіть стовпець"], - "Select current page": ["Виберіть Поточну сторінку"], - "Select database & schema": ["Виберіть базу даних та схеми"], - "Select database or type to search databases": [ - "Виберіть базу даних або введіть у пошукові бази даних" + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "Кількість відображених рядків обмежена %(рядами) d шляхом запиту та спадного падіння." ], - "Select database table": ["Виберіть таблицю баз даних"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "Виберіть бази даних потребують додаткових полів для завершення на вкладці «Додаткові» для успішного підключення бази даних. Дізнайтеся, які вимоги мають ваші бази даних " - ], - "Select dataset source": ["Виберіть джерело набору даних"], - "Select file": ["Виберіть Файл"], - "Select filter": ["Виберіть фільтр"], - "Select filter plugin using AntD": [ - "Виберіть плагін фільтра за допомогою ANTD" + "%(rows)d rows returned": ["%(rows)d рядки повернулися"], + "The number of rows displayed is limited to %(rows)d by the dropdown.": [ + "Кількість відображених рядків обмежена %(рядами) d шляхом спадного падіння." ], - "Select first filter value by default": [ - "Виберіть за замовчуванням значення First Filter" + "%s row": ["%s рядок"], + "Track job": ["Відстежувати"], + "See query details": ["Див. Деталі запиту"], + "Query was stopped": ["Запит був зупинений"], + "Database error": ["Помилка бази даних"], + "was created": ["було створено"], + "Query in a new tab": ["Запит на новій вкладці"], + "The query returned no data": ["Запит не повертав даних"], + "Fetch data preview": ["Попередній перегляд даних"], + "Refetch results": ["Результати переробки"], + "Stop": ["СТІЙ"], + "Run selection": ["Вибір запуску"], + "Run": ["Пробігати"], + "Stop running (Ctrl + x)": ["Перестаньте бігати (Ctrl + x)"], + "Stop running (Ctrl + e)": ["Перестаньте бігати (Ctrl + E)"], + "Run query (Ctrl + Return)": ["Запустіть запит (Ctrl + return)"], + "Save": ["Заощадити"], + "Untitled Dataset": ["Без назви набору даних"], + "An error occurred saving dataset": [ + "Сталася помилка збереження набору даних" ], - "Select operator": ["Виберіть оператор"], - "Select or type a value": ["Виберіть або введіть значення"], + "Save or Overwrite Dataset": ["Зберегти або перезаписати набір даних"], + "Back": ["Спинка"], + "Save as new": ["Зберегти як нове"], + "Overwrite existing": ["Переписати існуючі"], "Select or type dataset name": ["Виберіть або введіть ім'я набору даних"], - "Select owners": ["Виберіть власників"], - "Select saved metrics": ["Виберіть Збережена показниця"], - "Select schema or type to search schemas": [ - "Виберіть схему або введіть для схем пошуку" + "Existing dataset": ["Існуючий набір даних"], + "Are you sure you want to overwrite this dataset?": [ + "Ви впевнені, що хочете перезаписати цей набір даних?" ], - "Select scheme": ["Виберіть схему"], - "Select start and end date": ["Виберіть дату початку та закінчення"], - "Select subject": ["Виберіть тему"], - "Select table or type to search tables": [ - "Виберіть таблицю або введіть для пошукових таблиць" + "Undefined": ["Невизначений"], + "Save dataset": ["Зберегти набір даних"], + "Save as": ["Зберегти як"], + "Save query": ["Зберегти запит"], + "Cancel": ["Скасувати"], + "Update": ["Оновлення"], + "Label for your query": ["Етикетка для вашого запиту"], + "Write a description for your query": ["Напишіть опис свого запиту"], + "Submit": ["Подавати"], + "Schedule query": ["Запит на розклад"], + "Schedule": ["Розклад"], + "There was an error with your request": ["Була помилка з вашим запитом"], + "Please save the query to enable sharing": [ + "Збережіть запит, щоб увімкнути обмін" ], - "Select the Annotation Layer you would like to use.": [ - "Виберіть шар анотації, який ви хочете використовувати." + "Copy query link to your clipboard": [ + "Скопіюйте посилання на запит у свій буфер обміну" ], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "Виберіть діаграми, до яких потрібно застосувати перехресні фільтри на цій інформаційній панелі. Скасування діаграми виключає її з фільтрування при застосуванні перехресних фільтрів з будь-якої діаграми на приладовій панелі. Ви можете вибрати \"всі діаграми\", щоб застосувати перехресні фільтри до всіх діаграм, які використовують один і той же набір даних, або містять одне і те ж ім'я стовпця на інформаційній панелі." + "Save the query to enable this feature": [ + "Збережіть запит, щоб увімкнути цю функцію" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "Виберіть діаграми, до яких потрібно застосувати перехресні фільтри під час взаємодії з цією діаграмою. Ви можете вибрати \"всі діаграми\", щоб застосувати фільтри до всіх діаграм, які використовують один і той же набір даних, або містити одне і те ж ім'я стовпця на інформаційній панелі." + "Copy link": ["Копіювати посилання"], + "No stored results found, you need to re-run your query": [ + "Не знайдено жодних збережених результатів, вам потрібно повторно запустити свій запит" ], - "Select the geojson column": ["Виберіть стовпчик Geojson"], - "Select the number of bins for the histogram": [ - "Виберіть кількість бункерів для гістограми" + "Run a query to display results": [ + "Запустіть запит для відображення результатів" ], - "Select the numeric columns to draw the histogram": [ - "Виберіть числові стовпці, щоб намалювати гістограму" + "Preview: `%s`": ["Попередній перегляд: `%S`"], + "Query history": ["Історія запитів"], + "Schedule the query periodically": ["Періодично планувати запит"], + "You must run the query successfully first": [ + "Ви повинні спочатку успішно запустити запит" ], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ - "Виберіть значення у виділеному полі на панелі управління. Потім запустіть запит, натиснувши кнопку %s." + "Autocomplete": ["Автозаповнення"], + "CREATE TABLE AS": ["Створити таблицю як"], + "CREATE VIEW AS": ["Створити перегляд як"], + "Estimate the cost before running a query": [ + "Оцініть вартість перед проведенням запиту" ], - "Send as CSV": ["Надіслати як CSV"], - "Send as PNG": ["Надіслати як PNG"], - "Send as text": ["Надіслати як текст"], - "Send range filter events to other charts": [ - "Надіслати події фільтра діапазону на інші діаграми" + "Specify name to CREATE VIEW AS schema in: public": [ + "Вкажіть ім'я, щоб створити перегляд як схему в: public" ], - "September": ["Вересень"], - "Sequential": ["Послідовний"], - "Series": ["Серія"], - "Series Height": ["Висота серії"], - "Series Limit Sort By": ["Серія ліміту сортування"], - "Series Limit Sort Descending": ["Серія обмежує сортування"], - "Series Order": ["Замовлення серії"], - "Series Style": ["Стиль серії"], - "Series chart type (line, bar etc)": [ - "Тип діаграми серії (рядок, бар тощо)" + "Specify name to CREATE TABLE AS schema in: public": [ + "Вкажіть ім'я, щоб створити таблицю як схему в: Public" ], - "Series limit": ["Ліміт серії"], - "Series type": ["Тип серії"], - "Server Page Length": ["Довжина сторінки сервера"], - "Server pagination": ["Сервер Пагінування"], - "Service Account": ["Рахунок служби"], - "Set auto-refresh interval": [ - "Встановіть інтервал автоматичного рефреша" + "Select a database to write a query": [ + "Виберіть базу даних, щоб записати запит" ], - "Set filter mapping": ["Встановіть картографування фільтра"], - "Set up an email report": ["Налаштування звіту електронної пошти"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "Встановлює рівні ієрархії діаграми. Кожен рівень є\n Представлений одним кільцем з найпотаємнішим колом як верхівка ієрархії." + "Choose one of the available databases from the panel on the left.": [ + "Виберіть одну з доступних баз даних з панелі зліва." ], - "Settings": ["Налаштування"], - "Settings for time series": ["Налаштування часових рядів"], - "Share": ["Розподіляти"], - "Share chart by email": ["Поділитися діаграмою електронною поштою"], - "Share permalink by email": [ - "Поділитися постійним посиланням електронною поштою" + "Create": ["Створити"], + "Collapse table preview": ["Попередній перегляд таблиці колапсу"], + "Expand table preview": ["Розширити попередній перегляд таблиці"], + "Reset state": ["Скидання стану"], + "Enter a new title for the tab": ["Введіть новий заголовок для вкладки"], + "Close tab": ["Вкладка Закрийте"], + "Rename tab": ["Перейменуйте вкладку"], + "Expand tool bar": ["Розгорнути панель інструментів"], + "Hide tool bar": ["Сховати панель інструментів"], + "Close all other tabs": ["Закрийте всі інші вкладки"], + "Duplicate tab": ["Вкладка дублікатів"], + "Add a new tab": ["Додайте нову вкладку"], + "New tab (Ctrl + q)": ["Нова вкладка (Ctrl + Q)"], + "New tab (Ctrl + t)": ["Нова вкладка (Ctrl + T)"], + "Add a new tab to create SQL Query": [ + "Додайте нову вкладку, щоб створити запит SQL" ], - "Shared query": ["Спільний запит"], - "Shared query fields": ["Поля спільного запиту"], - "Sheet Name": ["Назва аркуша"], - "Shift + Click to sort by multiple columns": [ - "Shift + Клацніть, щоб сортувати на кілька стовпців" + "An error occurred while fetching table metadata": [ + "Помилка сталася під час отримання метаданих таблиці" ], - "Short description must be unique for this layer": [ - "Короткий опис повинен бути унікальним для цього шару" + "Copy partition query to clipboard": [ + "Скопіюйте запит на розділ у буфер обміну" ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Якщо щоденна сезонність застосовувати. Цінне значення буде визначати порядок сезонності Фур'є." + "latest partition:": ["останній розділ:"], + "Keys for table": ["Ключі для столу"], + "View keys & indexes (%s)": ["Переглянути ключі та індекси (%s)"], + "Original table column order": ["Оригінальне замовлення стовпця таблиці"], + "Sort columns alphabetically": ["Сортувати стовпці в алфавітному"], + "Copy SELECT statement to the clipboard": [ + "Скопіюйте оператор SELECT у буфер обміну" ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Якщо застосовуватися щотижнева сезонність. Цінне значення буде визначати порядок сезонності Фур'є." + "Show CREATE VIEW statement": ["Показати заяву про створення перегляду"], + "CREATE VIEW statement": ["Створіть оператор перегляду"], + "Remove table preview": ["Видалити попередній перегляд таблиці"], + "Assign a set of parameters as": ["Призначити набір параметрів як"], + "below (example:": ["нижче (приклад:"], + "), and they become available in your SQL (example:": [ + "), і вони стають доступними у вашому SQL (приклад:" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "Якщо щорічно застосовувати сезонність. Цінне значення буде визначати порядок сезонності Фур'є." + "by using": ["з допомогою"], + "Jinja templating": ["Шаблон джинджа"], + "syntax.": ["синтаксис."], + "Edit template parameters": ["Редагувати параметри шаблону"], + "Parameters ": ["Параметри "], + "Invalid JSON": ["Недійсний JSON"], + "Untitled query": ["Неправлений запит"], + "%s%s": ["%s%s"], + "Control": ["КОНТРОЛЬ"], + "Before": ["До"], + "After": ["Після"], + "Click to see difference": ["Клацніть, щоб побачити різницю"], + "Altered": ["Змінений"], + "Chart changes": ["Зміни діаграми"], + "Loaded data cached": ["Завантажені дані кешуються"], + "Loaded from cache": ["Завантажений з кешу"], + "Click to force-refresh": ["Клацніть, щоб примусити-рефреш"], + "Cached": ["Кешевий"], + "Add required control values to preview chart": [ + "Додайте необхідні контрольні значення для попереднього перегляду діаграми" ], - "Show": ["Показувати"], - "Show Bubbles": ["Показати бульбашки"], - "Show CREATE VIEW statement": ["Показати заяву про створення перегляду"], - "Show CSS Template": ["Показати шаблон CSS"], - "Show Chart": ["Показати діаграму"], - "Show Column": ["Показати колонку"], - "Show Dashboard": ["Показати приладову панель"], - "Show Database": ["Показати базу даних"], - "Show Labels": ["Показувати етикетки"], - "Show Less...": ["Показувати менше ..."], - "Show Log": ["Показувати журнал"], - "Show Markers": ["Шоу маркерів"], - "Show Metric": ["Показати показник"], - "Show Metric Names": ["Показати метричні назви"], - "Show Range Filter": ["Показати фільтр діапазону"], - "Show Saved Query": ["Показати збережений запит"], - "Show Table": ["Показати таблицю"], - "Show Timestamp": ["Показати часову позначку"], - "Show Total": ["Показати загалом"], - "Show Trend Line": ["Показати лінію тренду"], - "Show Upper Labels": ["Показати верхні етикетки"], - "Show Value": ["Показувати цінність"], - "Show Values": ["Показувати значення"], - "Show Y-axis": ["Показати вісь Y"], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "Покажіть осі Y на Sparkline. Відобразить вручну встановити min/max, якщо встановити значення або min/max значення в даних в іншому випадку." + "Your chart is ready to go!": ["Ваша діаграма готова йти!"], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "Натисніть кнопку \"Створити діаграму\" на панелі управління зліва, щоб переглянути візуалізацію або" ], - "Show all columns": ["Показати всі стовпці"], - "Show all...": ["Покажи все..."], - "Show axis line ticks": ["Показати кліщі лінії осі"], - "Show cell bars": ["Показати стільникові смуги"], - "Show chart description": ["Показати опис діаграми"], - "Show columns total": ["Показати стовпці Всього"], - "Show data points as circle markers on the lines": [ - "Показати точки даних як маркери кола на лініях" + "click here": ["натисніть тут"], + "No results were returned for this query": [ + "Для цього запиту не було повернуто жодних результатів" ], - "Show empty columns": ["Показати порожні стовпці"], - "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ - "Показати ієрархічні зв’язки даних із значенням, представленим областю, показуючи пропорцію та внесок у ціле." + "Make sure that the controls are configured properly and the datasource contains data for the selected time range": [ + "Переконайтесь, що елементи керування налаштовано належним чином, а DataSource містить дані для вибраного часового діапазону" ], - "Show info tooltip": ["Показати інформацію про підказку"], - "Show label": ["Лейбл шоу"], - "Show labels when the node has children.": [ - "Показати етикетки, коли у вузла є діти." + "An error occurred while loading the SQL": [ + "Під час завантаження SQL сталася помилка" ], - "Show legend": ["Показати легенду"], - "Show less columns": ["Показати менше стовпців"], - "Show less...": ["Показувати менше ..."], - "Show only my charts": ["Показати лише мої діаграми"], - "Show password.": ["Показати пароль."], - "Show percentage": ["Показати відсоток"], - "Show pointer": ["Покажіть вказівник"], - "Show progress": ["Показати прогрес"], - "Show rows total": ["Показати ціє рядки"], - "Show series values on the chart": [ - "Показувати значення серії на діаграмі" + "Sorry, an error occurred": ["Вибачте, сталася помилка"], + "Updating chart was stopped": ["Оновлення діаграми було припинено"], + "An error occurred while rendering the visualization: %s": [ + "Під час візуалізації сталася помилка: %s" ], - "Show split lines": ["Показати розділені лінії"], - "Show the value on top of the bar": ["Покажіть значення на вершині бару"], - "Show time column": ["Показати стовпчик Time"], - "Show time grain dropdown": ["Показати випадання часу зерна"], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "Показати загальну сукупність вибраних показників. Зауважте, що обмеження рядка не застосовується до результату." + "Network error.": ["Помилка мережі."], + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "Перехресний фільтр буде застосований до всіх діаграм, які використовують цей набір даних." ], - "Show totals": ["Показати підсумки"], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "Демонструє єдиний метричний передній і центр. Велика кількість найкраще використовується для звернення уваги на KPI або одне, на що ви хочете зосередитись на вашій аудиторії." + "You can also just click on the chart to apply cross-filter.": [ + "Ви також можете просто натиснути на діаграму, щоб застосувати перехресний фільтр." ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "Демонструє єдине число, що супроводжується простою лінійною діаграмою, щоб звернути увагу на важливу метрику разом із її зміною в часі чи іншим виміром." + "Cross-filtering is not enabled for this dashboard.": [ + "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі." ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "Демонструє, як метрика змінюється в міру просування воронки. Ця класична діаграма корисна для візуалізації випадання між етапами в трубопроводі або життєвому циклі." + "This visualization type does not support cross-filtering.": [ + "Цей тип візуалізації не підтримує перехресне фільтрування." ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "Демонструє потік або зв’язок між категоріями, використовуючи товщину акордів. Значення та відповідна товщина можуть бути різними для кожної сторони." + "You can't apply cross-filter on this data point.": [ + "Ви не можете застосувати перехресний фільтр у цій точці даних." ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "Демонструє прогрес однієї метрики проти заданої цілі. Чим вище заливка, тим ближче метрика до цілі." + "Remove cross-filter": ["Видаліть перехресний фільтр"], + "Add cross-filter": ["Додати перехресний фільтр"], + "Failed to load dimensions for drill by": [ + "Не вдалося завантажити розміри для свердління" ], - "Showing %s of %s": ["Показуючи %s %s"], - "Shows a list of all series available at that point in time": [ - "Показує список усіх серій, доступних на той момент часу" + "Drill by is not yet supported for this chart type": [ + "Свердло ще не підтримується для цього типу діаграми" ], - "Shows or hides markers for the time series": [ - "Показує або приховує маркери для часових рядів" + "Drill by is not available for this data point": [ + "Свердло не доступне для цієї точки даних" ], - "Significance Level": ["Рівень значущості"], - "Simple": ["Простий"], - "Simple ad-hoc metrics are not enabled for this dataset": [ - "Прості спеціальні показники не ввімкнено для цього набору даних" + "Drill by": ["Свердлити"], + "Search columns": ["Пошук стовпців"], + "No columns found": ["Не знайдено стовпців"], + "Failed to generate chart edit URL": [ + "Не вдалося створити URL -адресу редагування діаграм" ], - "Single": ["Поодинокий"], - "Single Metric": ["Єдиний метрик"], - "Single Value": ["Єдине значення"], - "Single value": ["Єдине значення"], - "Single value type": ["Тип єдиного значення"], - "Size of edge symbols": ["Розмір символів краю"], - "Size of marker. Also applies to forecast observations.": [ - "Розмір маркера. Також застосовується до прогнозних спостережень." + "Edit chart": ["Редагувати діаграму"], + "Close": ["Закривати"], + "Failed to load chart data.": ["Не вдалося завантажити дані діаграми."], + "Drill by: %s": ["Свердлити: %s"], + "There was an error loading the chart data": [ + "Була помилка завантаження даних діаграми" ], - "Sizes of vehicles": ["Розміри транспортних засобів"], - "Skip Blank Lines": ["Пропустити порожні лінії"], - "Skip Initial Space": ["Пропустити початковий простір"], - "Skip Rows": ["Пропустити ряди"], - "Skip blank lines rather than interpreting them as Not A Number values": [ - "Пропустити порожні рядки, а не інтерпретувати їх як не значення числа" + "Results %s": ["Результати %s"], + "Drill to detail by": ["Свердлити до деталей"], + "Drill to detail": ["Свердлити до деталей"], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "Дріль до деталей вимкнено, оскільки ця діаграма не групує дані за значенням розмірності." ], - "Skip spaces after delimiter": ["Пропустити простори після розмежування"], - "Slug": ["Слимак"], - "Small": ["Невеликий"], - "Small number format": ["Формат невеликого числа"], - "Smooth Line": ["Гладка лінія"], - "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "Гладка лінія-це варіація лінійної діаграми. Без кутів і жорстких країв, гладка лінія іноді виглядає розумнішими та професійнішими." + "Drill to detail by value is not yet supported for this chart type.": [ + "Свердло до деталей за значенням ще не підтримується для цього типу діаграми." ], - "Solid": ["Суцільний"], - "Some roles do not exist": ["Деяких ролей не існує"], - "Something went wrong.": ["Щось пішло не так."], - "Sorry there was an error fetching database information: %s": [ - "Вибачте, була помилка отримання інформації про базу даних: %s" + "Right-click on a dimension value to drill to detail by that value.": [ + "Клацніть правою кнопкою миші на значення виміру, щоб до деталей за цим значенням." ], - "Sorry there was an error fetching saved charts: ": [ - "На жаль, була помилка, яка отримала збережені діаграми: " + "Drill to detail: %s": ["Свердло до деталей: %s"], + "Formatting": ["Форматування"], + "Formatted value": ["Відформатоване значення"], + "No rows were returned for this dataset": [ + "Для цього набору даних не було повернуто рядків" ], - "Sorry, An error occurred": ["Вибачте, сталася помилка"], - "Sorry, an error occurred": ["Вибачте, сталася помилка"], - "Sorry, an unknown error occurred": ["Вибачте, сталася невідома помилка"], - "Sorry, an unknown error occurred.": [ - "Вибачте, сталася невідома помилка." + "Reload": ["Перезавантажувати"], + "Copy": ["Копіювати"], + "Copy to clipboard": ["Копіювати в буфер обміну"], + "Copied to clipboard!": ["Скопіюється в буфер обміну!"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "Вибачте, ваш браузер не підтримує копіювання. Використовуйте CTRL / CMD + C!" ], - "Sorry, something went wrong. Embedding could not be deactivated.": [ - "Вибач, щось пішло не так. Вбудовування не можна було деактивувати." + "every": ["кожен"], + "every month": ["щомісяця"], + "every day of the month": ["кожен день місяця"], + "day of the month": ["день місяця"], + "every day of the week": ["кожен день тижня"], + "day of the week": ["день тижня"], + "every hour": ["щогодини"], + "every minute": ["щохвилини"], + "minute": ["хвилина"], + "reboot": ["перезавантажити"], + "Every": ["Кожен"], + "in": ["у"], + "on": ["на"], + "and": ["і"], + "at": ["в"], + ":": [":"], + "minute(s)": ["хвилини"], + "Invalid cron expression": ["Недійсний вираз Cron"], + "Clear": ["Чіткий"], + "Sunday": ["Неділя"], + "Monday": ["Понеділок"], + "Tuesday": ["У вівторок"], + "Wednesday": ["Середа"], + "Thursday": ["Четвер"], + "Friday": ["П’ятниця"], + "Saturday": ["Субота"], + "January": ["Січень"], + "February": ["Лютий"], + "March": ["Марш"], + "April": ["Квітень"], + "May": ["Може"], + "June": ["Червень"], + "July": ["Липень"], + "August": ["Серпень"], + "September": ["Вересень"], + "October": ["Жовтень"], + "November": ["Листопад"], + "December": ["Грудень"], + "SUN": ["Сонце"], + "MON": ["Мн"], + "TUE": ["Зміст"], + "WED": ["Одружуватися"], + "THU": ["Чт"], + "FRI": ["Пт"], + "SAT": ["Сидіти"], + "JAN": ["Ян"], + "FEB": ["Лютий"], + "MAR": ["Марнотратство"], + "APR": ["Квітня"], + "MAY": ["МОЖЕ"], + "JUN": ["Червень"], + "JUL": ["Липень"], + "AUG": ["Серпень"], + "SEP": ["Сеп"], + "OCT": ["Жовт"], + "NOV": ["Листопада"], + "DEC": ["Ухвала"], + "There was an error loading the schemas": [ + "Сталася помилка, що завантажує схеми" ], - "Sorry, something went wrong. Try again later.": [ - "Вибач, щось пішло не так. Спробуйте ще раз пізніше." + "Select database or type to search databases": [ + "Виберіть базу даних або введіть у пошукові бази даних" ], - "Sorry, there appears to be no data": [ - "Вибачте, даних, як видається, немає" + "Force refresh schema list": ["Список схеми оновлення сили"], + "Select schema or type to search schemas": [ + "Виберіть схему або введіть для схем пошуку" ], - "Sorry, there was an error saving this %s: %s": [ - "Вибачте, була помилка, заощадивши цей %s: %s" + "No compatible schema found": ["Не знайдено сумісної схеми"], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "УВАГА! Зміна набору даних може порушити діаграму, якщо метаданих не існує." ], - "Sorry, there was an error saving this dashboard: %s": [ - "Вибачте, була помилка збереження цієї інформаційної панелі: %s" + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "Зміна набору даних може зламати діаграму, якщо діаграма покладається на стовпці або метадані, які не існують у цільовому наборі даних" ], - "Sorry, your browser does not support copying.": [ - "Вибачте, ваш браузер не підтримує копіювання." + "dataset": ["набір даних"], + "Successfully changed dataset!": ["Успішно змінили набір даних!"], + "Connection": ["З'єднання"], + "Swap dataset": ["Swap DataSet"], + "Proceed": ["Тривати"], + "Warning!": ["УВАГА!"], + "Search / Filter": ["Пошук / фільтр"], + "Add item": ["Додати елемент"], + "STRING": ["Нитка"], + "NUMERIC": ["Числовий"], + "DATETIME": ["ДАТА, ЧАС"], + "BOOLEAN": ["Булевий"], + "Physical (table or view)": ["Фізичний (таблиця або перегляд)"], + "Virtual (SQL)": ["Віртуальний (SQL)"], + "Data type": ["Тип даних"], + "Advanced data type": ["Розширений тип даних"], + "Advanced Data type": ["Розширений тип даних"], + "Datetime format": ["Формат DateTime"], + "The pattern of timestamp format. For strings use ": [ + "Візерунок формату часової позначки. Для використання рядків " ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "Вибачте, ваш браузер не підтримує копіювання. Використовуйте CTRL / CMD + C!" + "Python datetime string pattern": ["Python DateTime String шаблон"], + " expression which needs to adhere to the ": [ + " вираз, який повинен дотримуватися до " ], - "Sort": ["Сортувати"], - "Sort Bars": ["Сортування барів"], - "Sort Descending": ["Сортувати низхід"], - "Sort Metric": ["Метрика сортування"], - "Sort Series Ascending": ["Сортування серії, що піднімається"], - "Sort Series By": ["Сортування серії"], - "Sort X Axis": ["Сортуйте вісь x"], - "Sort Y Axis": ["Сортуйте вісь"], - "Sort ascending": ["Сортувати висхід"], - "Sort bars by x labels.": ["Сортуйте смуги за x мітками."], - "Sort by": ["Сортувати за"], - "Sort by %s": ["Сортувати на %s"], - "Sort by metric": ["Сортування за метрикою"], - "Sort columns alphabetically": ["Сортувати стовпці в алфавітному"], - "Sort columns by": ["Сортувати стовпці за"], - "Sort descending": ["Сортувати низхід"], - "Sort filter values": ["Сортувати значення фільтра"], - "Sort metric": ["Метрика сортування"], - "Sort rows by": ["Сортувати ряди за"], - "Sort series in ascending order": [ - "Сортування серії у зростаючому порядку" + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + " стандарт для забезпечення лексикографічного впорядкування\n збігається з хронологічним впорядкуванням. Якщо\n Формат часової позначки не дотримується стандарту ISO 8601\n Вам потрібно буде визначити вираз і ввести для\n перетворення рядка на дату або часову позначку. Примітка\n В даний час часові пояси не підтримуються. Якщо час зберігається\n У форматі епохи поставте `epoch_s` або` epoch_ms`. Якщо немає шаблону\n вказано, що ми повертаємось до використання додаткових за замовчуванням на Per\n Рівень імені даних/стовпця через додатковий параметр." ], - "Sort type": ["Тип сортування"], - "Source": ["Джерело"], - "Source / Target": ["Джерело / ціль"], - "Source SQL": ["Джерело SQL"], - "Source category": ["Категорія джерела"], - "Sparkline": ["Іскрова лінія"], - "Spatial": ["Просторовий"], - "Specific Date/Time": ["Конкретна дата/час"], - "Specify a schema (if database flavor supports this).": [ - "Вкажіть схему (якщо аромат бази даних підтримує це)." + "Certified By": ["Сертифікований"], + "Person or group that has certified this metric": [ + "Особа або група, яка сертифікувала цей показник" ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "Вкажіть дублікат стовпців як \"x.0, x.1\"." + "Certified by": ["Сертифікований"], + "Certification details": ["Деталі сертифікації"], + "Details of the certification": ["Деталі сертифікації"], + "Is dimension": ["Це розмір"], + "Default datetime": ["DateTime за замовчуванням"], + "Is filterable": ["Є фільтруючим"], + "": ["<новий стовпець>"], + "Select owners": ["Виберіть власників"], + "Modified columns: %s": ["Модифіковані стовпці: %s"], + "Removed columns: %s": ["Видалені стовпці: %s"], + "New columns added: %s": ["Додано нові стовпці: %s"], + "Metadata has been synced": ["Метадані синхронізовані"], + "An error has occurred": ["Сталася помилка"], + "Column name [%s] is duplicated": ["Назва стовпця [%s] дублюється"], + "Metric name [%s] is duplicated": ["Метрична назва [%s] дублюється"], + "Calculated column [%s] requires an expression": [ + "Обчислений стовпчик [%s] вимагає виразу" ], - "Specify name to CREATE TABLE AS schema in: public": [ - "Вкажіть ім'я, щоб створити таблицю як схему в: Public" + "Invalid currency code in saved metrics": [""], + "Basic": ["Основний"], + "Default URL": ["URL -адреса за замовчуванням"], + "Default URL to redirect to when accessing from the dataset list page": [ + "URL -адреса за замовчуванням для перенаправлення на доступ до доступу зі сторінки списку даних" ], - "Specify name to CREATE VIEW AS schema in: public": [ - "Вкажіть ім'я, щоб створити перегляд як схему в: public" + "Autocomplete filters": ["Автоматичні фільтри"], + "Whether to populate autocomplete filters options": [ + "Чи заповнити автозаповнення параметрів фільтрів" ], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "Вкажіть версію бази даних. Це слід використовувати з Presto для того, щоб забезпечити оцінку витрат на запит." + "Autocomplete query predicate": ["Auto -Complete Query Prediac"], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "При використанні \"автозаповнених фільтрів\" це може бути використане для підвищення продуктивності запиту отримання значень. Використовуйте цю опцію, щоб застосувати предикат (де пункт) до запиту, що вибирає різні значення з таблиці. Зазвичай наміром було б обмежити сканування, застосовуючи відносний часовий фільтр на розділеному або індексованому поле, пов’язаному з часом." ], - "Split number": ["Розділений номер"], - "Square kilometers": ["Квадратні кілометри"], - "Square meters": ["Квадратних метрів"], - "Square miles": ["Квадратні милі"], - "Stack": ["Стек"], - "Stack Trace:": ["Стечко слід:"], - "Stack series": ["Серія стека"], - "Stack series on top of each other": ["Серія стека один на одного"], - "Stacked": ["Складений"], - "Stacked Bars": ["Складені бари"], - "Stacked Style": ["Складений стиль"], - "Stacked style": ["Складений стиль"], - "Standard time series": ["Стандартний часовий ряд"], - "Start": ["Почати"], - "Start (Longitude, Latitude): ": ["Початок (довгота, широта): "], - "Start Longitude & Latitude": ["Почніть довготу та широту"], - "Start Review": ["Почніть огляд"], - "Start angle": ["Почати кут"], - "Start at (UTC)": ["Почніть з (UTC)"], - "Start date": ["Дата початку"], - "Start date included in time range": [ - "Дата початку, що входить у часовий діапазон" + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "Додаткові дані для визначення метаданих таблиць. В даний час підтримує метадані формату: `{\" Сертифікація \": {\" сертифікат_by \":\" Команда платформи даних \",\" Деталі \":\" Ця таблиця є джерелом істини \". }, \"попередження_markdown\": \"Це попередження\". } `." ], - "Start y-axis at 0": ["Почніть осі y о 0"], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "Почніть осі y на нуль. Зніміть прапорець, щоб запустити вісь y з мінімальним значенням у даних." + "Cache timeout": ["Тайм -аут кешу"], + "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ + "Тривалість часу за секунди до кешу недійсна. Встановіть -1, щоб обійти кеш." ], - "Started": ["Розпочато"], - "State": ["Держави"], - "Statement %(statement_num)s out of %(statement_count)s": [ - "Заява %(statement_num)s з %(statement_count)s" + "Hours offset": ["Години зміщення"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "Кількість годин, негативна чи позитивна, щоб змістити стовпчик часу. Це можна використовувати для переміщення часу UTC до місцевого часу." ], - "Statistical": ["Статистичний"], - "Status": ["Статус"], - "Step - end": ["Крок - Кінець"], - "Step - middle": ["Крок - Середній"], - "Step - start": ["Крок - Почати"], - "Step type": ["Тип кроку"], - "Stepped Line": ["Ступінчаста лінія"], - "Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Графік ступінчастої лінії (також називається крок діаграми)-це варіація лінійної діаграми, але з лінією, що утворює ряд кроків між точками даних. Крок діаграми може бути корисною, коли ви хочете показати зміни, які відбуваються з нерегулярними інтервалами." + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ + "" ], - "Stop": ["СТІЙ"], - "Stop query": ["Зупиніть запит"], - "Stop running (Ctrl + e)": ["Перестаньте бігати (Ctrl + E)"], - "Stop running (Ctrl + x)": ["Перестаньте бігати (Ctrl + x)"], - "Stopped an unsafe database connection": [ - "Зупинив небезпечне з'єднання бази даних" + "": ["<новий просторовий>"], + "": ["<без типу>"], + "Click the lock to make changes.": ["Клацніть замок, щоб внести зміни."], + "Click the lock to prevent further changes.": [ + "Клацніть замок, щоб запобігти подальшим змінам." ], - "Stream": ["Потік"], - "Streets": ["Вулиці"], - "Strength to pull the graph toward center": [ - "Сила, щоб потягнути граф до центру" + "virtual": ["віртуальний"], + "Dataset name": ["Назва набору даних"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "При вказівці SQL, DataSource виступає як погляд. Superset використовуватиме це твердження як підрозділ під час групування та фільтрації на створених батьківських запитах." ], - "Stretched style": ["Розтягнутий стиль"], - "Strings used for sheet names (default is the first sheet).": [ - "Рядки, що використовуються для імен аркушів (за замовчуванням - це перший аркуш)." + "Physical": ["Фізичний"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "Вказівник на фізичну таблицю (або переглянути). Майте на увазі, що діаграма пов'язана з цією логічною таблицею Superset, і ця логічна таблиця вказує на фізичну таблицю, на яку посилається тут." ], - "Stroke Color": ["Колір удару"], - "Stroke Width": ["Ширина інсульту"], - "Stroked": ["Погладжений"], - "Structural": ["Структурний"], - "Style": ["Стиль"], - "Style the ends of the progress bar with a round cap": [ - "Стильні кінці смуги прогресу з круглою шапкою" + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ + "" ], - "Subdomain": ["Субдомен"], - "Subheader": ["Підзаголовка"], - "Subheader Font Size": ["Розмір шрифту підзаголовка"], - "Submit": ["Подавати"], - "Subtotal": ["Суттєвий"], - "Success": ["Успіх"], - "Successfully changed dataset!": ["Успішно змінили набір даних!"], - "Suffix to apply after the percentage display": [ - "Суфікс подати заявку після відсоткового дисплея" + "D3 format": ["Формат D3"], + "Metric currency": [""], + "Warning": ["УВАГА"], + "Optional warning about use of this metric": [ + "Необов’язкове попередження про використання цієї метрики" ], - "Sum": ["Сума"], - "Sum as Fraction of Columns": ["Сума як частка стовпців"], - "Sum as Fraction of Rows": ["Сума як частка рядків"], - "Sum as Fraction of Total": ["Сума як частка загальної кількості"], - "Sum of values over specified period": [ - "Сума значень протягом визначеного періоду" + "": ["<Новий метрик>"], + "Be careful.": ["Будь обережний."], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "Зміна цих налаштувань вплине на всі діаграми за допомогою цього набору даних, включаючи діаграми, що належать іншим людям." ], - "Sum values": ["Значення суми"], - "Sunburst": ["Сонячний вибух"], - "Sunburst Chart": ["Діаграма Sunburst"], - "Sunburst Chart v2": ["Sunburst Chart V2"], - "Sunday": ["Неділя"], - "Superset Chart": ["Суперсетна діаграма"], - "Superset Embedded SDK documentation.": [ - "Суперсет вбудована документація SDK." + "Sync columns from source": ["Синхронізовані стовпці з джерела"], + "Calculated columns": ["Обчислені стовпці"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ + "" ], - "Superset chart": ["Суперсетна діаграма"], - "Superset dashboard": ["Інформаційна панель суперсетів"], - "Superset encountered an error while running a command.": [ - "Суперсет зіткнувся з помилкою під час запуску команди." + "": ["<введіть вираз SQL тут>"], + "Settings": ["Налаштування"], + "The dataset has been saved": ["Набір даних зберігається"], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "Конфігурація набору даних, викрита тут\n впливає на всі діаграми за допомогою цього набору даних.\n Пам’ятайте, що зміна налаштувань\n Тут може вплинути на інші діаграми\n небажаними способами." ], - "Superset encountered an unexpected error.": [ - "Суперсет зіткнувся з несподіваною помилкою." + "Are you sure you want to save and apply changes?": [ + "Ви впевнені, що хочете зберегти та застосувати зміни?" ], - "Supported databases": ["Підтримувані бази даних"], - "Survey Responses": ["Відповіді на опитування"], - "Swap dataset": ["Swap DataSet"], - "Swap rows and columns": ["Поміняйте ряди та стовпці"], - "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Швейцарський армійський ніж для візуалізації даних. Виберіть між крок, рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів налаштування." + "Confirm save": ["Підтвердьте збереження"], + "OK": ["в порядку"], + "Edit Dataset ": ["Редагувати набір даних "], + "Use legacy datasource editor": [ + "Використовуйте редактор Legacy DataSource" ], - "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ - "Швейцарський армійський ніж для візуалізації даних часових рядів. Виберіть між крок, рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів налаштування." + "This dataset is managed externally, and can't be edited in Superset": [ + "Цей набір даних керує зовні, і його не можна редагувати в суперсеті" ], - "Symbol": ["Символ"], - "Symbol of two ends of edge line": ["Символ двох кінців лінії краю"], - "Symbol size": ["Розмір символу"], - "Sync columns from source": ["Синхронізовані стовпці з джерела"], - "Syntax": ["Синтаксис"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ - "Помилка синтаксису:%(qualifier)s введення “%(input)s” очікування “%(expected)s" + "DELETE": ["Видаляти"], + "delete": ["видаляти"], + "Type \"%s\" to confirm": ["Введіть “%s” для підтвердження"], + "More": ["Більше"], + "Click to edit": ["Клацніть, щоб редагувати"], + "You don't have the rights to alter this title.": [ + "Ви не маєте прав на зміну цієї назви." ], - "TABLES": ["Столи"], - "TEMPORAL X-AXIS": ["Тимчасова осі x"], - "TEMPORAL_RANGE": ["Temporal_range"], - "THU": ["Чт"], - "TUE": ["Зміст"], - "Tab name": ["Назва вкладки"], - "Tab title": ["Назва вкладки"], - "Table": ["Стіл"], - "Table %(table)s wasn't found in the database %(db)s": [ - "Таблиця %(table)s не знайдено в базі даних %(db)s" + "No databases match your search": [ + "Жодне бази даних не відповідає вашому пошуку" ], - "Table Exists": ["Таблиця існує"], - "Table Name": ["Назва таблиці"], - "Table View": ["Перегляд таблиці"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "Таблиця [%(table_name)s] Не вдалося знайти, будь ласка, перевірте підключення до бази даних, схеми та назву таблиці" + "There are no databases available": ["Баз даних немає"], + "Manage your databases": ["Керуйте своїми базами даних"], + "here": ["ось"], + "Unexpected error": ["Неочікувана помилка"], + "This may be triggered by:": ["Це може бути спровоковано:"], + "Please reach out to the Chart Owner for assistance.": [ + "Будь ласка, зверніться до власника діаграми за допомогою." ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "Таблиця [%{table} s] не вдалося знайти, будь ласка, перевірте з'єднання з базою даних, схему та назву таблиці, помилка: {}" + "Chart Owner: %s": ["Власник діаграми: %s"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [ + "%(message)s\nЦе може бути спровоковано:\n%(issues)s" ], - "Table cache timeout": ["Тайм -аут кешу таблиці"], - "Table columns": ["Стовпці таблиці"], - "Table loading": ["Завантаження таблиці"], - "Table name cannot contain a schema": [ - "Назва таблиці не може містити схему" + "%s Error": ["%s помилка"], + "Missing dataset": ["Відсутній набір даних"], + "See more": ["Побачити більше"], + "See less": ["Див. Менше"], + "Copy message": ["Скопіюйте повідомлення"], + "This was triggered by:": ["Це викликало:"], + "Did you mean:": ["Ти мав на увазі:"], + "%(suggestion)s instead of \"%(undefinedParameter)s?\"": [ + "%(suggestion)s замість “%(undefinedParameter)s?\"" ], - "Table name undefined": ["Назва таблиці не визначена"], - "Table or View \"%(table)s\" does not exist.": [ - "Таблиця або переглянути \"%(таблиця)s\" не існує." + "Parameter error": ["Помилка параметра"], + "We’re having trouble loading this visualization. Queries are set to timeout after %s second.": [ + "У нас виникають проблеми з завантаженням цієї візуалізації. Запити встановлюються на таймаут після %s секунди." ], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "Таблиця, яка візуалізує парні t-тести, які використовуються для розуміння статистичних відмінностей між групами." + "We’re having trouble loading these results. Queries are set to timeout after %s second.": [ + "У нас виникають проблеми з завантаженням цих результатів. Запити встановлюються на таймаут після %s секунди." ], - "Tables": ["Столи"], - "Tabs": ["Вкладки"], - "Tabular": ["Табличний"], - "Tag could not be created.": ["Тег не вдалося створити."], - "Tag could not be deleted.": ["Тег не вдалося видалити."], - "Tag name is invalid (cannot contain ':')": [ - "Назва тегу недійсна (не може містити ':')" + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ + "%(subtitle)s\nЦе може бути спровоковано:\n %(issue)s" ], - "Tag parameters are invalid.": ["Параметри тегів недійсні."], - "Tagged Object could not be deleted.": [ - "Позначений об’єкт не можна було видалити." + "Timeout error": ["Помилка тайм -ауту"], + "Click to favorite/unfavorite": ["Клацніть на улюблений/несправедливий"], + "Cell content": ["Вміст клітин"], + "Hide password.": ["Приховати пароль."], + "Show password.": ["Показати пароль."], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "Драйвер бази даних для імпорту, можливо, не встановлений. Відвідайте сторінку документації Superset для інструкцій щодо встановлення: " ], - "Tags": ["Теги"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "Візьміть свої точки даних та групуйте їх у \"бункери\", щоб побачити, де лежать найгустіші області інформації" + "OVERWRITE": ["Переписувати"], + "Database passwords": ["Паролі бази даних"], + "%s PASSWORD": ["%s пароль"], + "%s SSH TUNNEL PASSWORD": ["%s SSH Тунельний пароль"], + "%s SSH TUNNEL PRIVATE KEY": ["%s SSH Tunnel Private Key"], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": ["%s SSH тунель приватного пароля"], + "Overwrite": ["Переписувати"], + "Import": ["Імпорт"], + "Import %s": ["Імпорт %s"], + "Select file": ["Виберіть Файл"], + "Last Updated %s": ["Останній оновлений %s"], + "Sort": ["Сортувати"], + "+ %s more": ["+ %s більше"], + "%s Selected": ["%s вибраний"], + "Deselect all": ["Скасувати всі"], + "No results match your filter criteria": [ + "Ніякі результати не відповідають вашим критеріям фільтра" ], - "Target": ["Цільовий"], - "Target Color": ["Цільовий колір"], - "Target category": ["Цільова категорія"], - "Target value": ["Цільове значення"], - "Template Name": ["Назва шаблону"], - "Template parameters": ["Параметри шаблону"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "Шаблове посилання, можна включити {{metric}} або інші значення, що надходять з елементів управління." + "Try different criteria to display results.": [ + "Спробуйте різні критерії для відображення результатів." ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "Закінчуйте запущені запити, коли вікно браузера закрилося або орієнтувалося на іншу сторінку. Доступні для бази даних Presto, Hive, MySQL, Postgres та Snowflake." + "clear all filters": ["очистіть усі фільтри"], + "No Data": ["Немає даних"], + "%s-%s of %s": ["%s-%s з %s"], + "Start date": ["Дата початку"], + "End date": ["Дата закінчення"], + "Type a value": ["Введіть значення"], + "Filter": ["Фільтрувати"], + "Select or type a value": ["Виберіть або введіть значення"], + "Last modified": ["Останнє змінено"], + "Modified by": ["Змінений"], + "Created by": ["Створений"], + "Created on": ["Створений на"], + "Menu actions trigger": ["Дії меню запускають"], + "Select ...": ["Виберіть ..."], + "Filter menu": ["Меню фільтра"], + "Reset": ["Скинути"], + "No filters": ["Немає фільтрів"], + "Select all items": ["Виберіть усі елементи"], + "Search in filters": ["Пошук у фільтрах"], + "Select current page": ["Виберіть Поточну сторінку"], + "Invert current page": ["Інвертуйте поточну сторінку"], + "Clear all data": ["Очистіть усі дані"], + "Select all data": ["Виберіть усі дані"], + "Expand row": ["Розширити ряд"], + "Collapse row": ["Колапс ряд"], + "Click to sort descending": ["Клацніть, щоб сортувати низхід"], + "Click to sort ascending": ["Клацніть, щоб сортувати висхід"], + "Click to cancel sorting": ["Клацніть, щоб скасувати сортування"], + "List updated": ["Список оновлено"], + "There was an error loading the tables": [ + "Сталася помилка, що завантажує таблиці" ], - "Test Connection": ["Тестове з'єднання"], - "Test connection": ["Тестове з'єднання"], - "Text": ["Текст"], - "Text align": ["Текст вирівнює"], - "Text embedded in email": ["Текст, вбудований в електронну пошту"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "Відповідь API від %s не відповідає інтерфейсу IDATABASETABLE." + "See table schema": ["Див. Схему таблиці"], + "Select table or type to search tables": [ + "Виберіть таблицю або введіть для пошукових таблиць" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "CSS для окремих інформаційних панелей може бути змінений тут, або на поданні приладової панелі, де зміни негайно видно" + "Force refresh table list": ["Список таблиць оновлення сили оновлення"], + "Timezone selector": ["Вибір часу"], + "Failed to save cross-filter scoping": [ + "Не вдалося зберегти перехресне фільтрування" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTA (створити таблицю як Select) не має оператора SELECT в кінці. Будь ласка, переконайтеся, що ваш запит має вибір як останнє твердження. Потім спробуйте знову запустити свій запит." + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Для цього компонента недостатньо місця. Спробуйте зменшити його ширину або збільшити ширину призначення." ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "Geojsonlayer приймає дані, відформатовані Geojson, і представляє їх як інтерактивні багатокутники, лінії та точки (кола, ікони та/або тексти)." + "Can not move top level tab into nested tabs": [ + "Не можна переміщувати вкладку верхнього рівня на вкладені вкладки" ], - "The URL is missing the dataset_id or slice_id parameters.": [ - "У URL -адреси відсутні параметри DataSet_ID або Slice_ID." + "This chart has been moved to a different filter scope.": [ + "Ця діаграма була переміщена до іншої області фільтра." ], - "The X-axis is not on the filters list": [ - "Осі x немає у списку фільтрів" + "There was an issue fetching the favorite status of this dashboard.": [ + "Була проблема, яка отримала улюблений статус цієї інформаційної панелі." ], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "Осі x не знаходиться в списку фільтрів, які заважають його використати в\n Фільтри часового діапазону на інформаційних панелях. Ви хотіли б додати його до списку фільтрів?" + "There was an issue favoriting this dashboard.": [ + "Була проблема, яка сприяла цій інформаційній панелі." ], - "The access requests seem to have been deleted": [ - "Запити на доступ, здається, були видалені" + "This dashboard is now published": [ + "Ця інформаційна панель зараз опублікована" ], - "The annotation has been saved": ["Анотація врятована"], - "The annotation has been updated": ["Анотація оновлена"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "Категорія вихідних вузлів, що використовуються для призначення кольорів. Якщо вузол пов'язаний з більш ніж однією категорією, буде використано лише перший." + "This dashboard is now hidden": [ + "Ця інформаційна панель зараз прихована" ], - "The chart datasource does not exist": ["Діаграма даних не існує"], - "The chart does not exist": ["Діаграма не існує"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "Класик. Відмінно підходить для показу, скільки компанії отримує кожен інвестор, яка демографія слідує за вашим блогом, або яку частину бюджету йде до військового промислового комплексу.\n\n Діаграми пирогів можуть бути важко точно інтерпретувати. Якщо чіткість відносної пропорції важлива, подумайте про використання смуги або іншого типу діаграми." + "You do not have permissions to edit this dashboard.": [ + "У вас немає дозволів на редагування цієї інформаційної панелі." ], - "The color for points and clusters in RGB": [ - "Колір для точок і кластерів у RGB" + "[ untitled dashboard ]": ["[untitled dashboard]"], + "This dashboard was saved successfully.": [ + "Ця інформаційна панель була успішно збережена." ], - "The color scheme for rendering chart": [ - "Колірна гама для діаграми візуалізації" + "Sorry, an unknown error occurred": ["Вибачте, сталася невідома помилка"], + "Sorry, there was an error saving this dashboard: %s": [ + "Вибачте, була помилка збереження цієї інформаційної панелі: %s" ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "Колірна гамма визначається спорідненою інформаційною панеллю.\n Відредагуйте кольорову гаму у властивостях приладної панелі." + "You do not have permission to edit this dashboard": [ + "У вас немає дозволу на редагування цієї інформаційної панелі" ], - "The column header label": ["Мітка заголовка стовпчика"], - "The column was deleted or renamed in the database.": [ - "Стовпчик був видалений або перейменований у базу даних." + "Please confirm the overwrite values.": [ + "Будь ласка, підтвердьте значення перезапису." ], - "The country code standard that Superset should expect to find in the [country] column": [ - "Стандарт коду країни, який суперсет повинен очікувати, що у стовпці [країна]" + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ + "Ви використали всі %(довжина історії)s скасування слотів і не зможете повністю скасувати наступні дії. Ви можете зберегти свій поточний стан для скидання історії." ], - "The dashboard has been saved": ["Приладна панель збережена"], - "The data source seems to have been deleted": [ - "Джерело даних, здається, було видалено" + "Could not fetch all saved charts": [ + "Не міг отримати всі збережених діаграм" ], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "Тип даних, який висловився в базі даних. У деяких випадках може знадобитися вводити тип вручну для визначені виразами стовпців. У більшості випадків користувачам не потрібно це змінювати." + "Sorry there was an error fetching saved charts: ": [ + "На жаль, була помилка, яка отримала збережені діаграми: " ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "База даних %s пов'язана з діаграмами %s, які з’являються на інформаційних панелях %s, а користувачі мають %s SQL Lab вкладки, використовуючи цю базу даних. Ви впевнені, що хочете продовжувати? Видалення бази даних порушить ці об'єкти." + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "Будь-яка вибрана тут палітра перевищить кольори, застосовані до окремих діаграм цієї інформаційної панелі" ], - "The database columns that contains lines information": [ - "Стовпці бази даних, що містить інформацію про рядки" + "You have unsaved changes.": ["У вас були незберечені зміни."], + "Drag and drop components and charts to the dashboard": [ + "Перетягніть компоненти та діаграми на інформаційну панель" ], - "The database could not be found": ["Бази даних не вдалося знайти"], - "The database is currently running too many queries.": [ - "В даний час база даних працює занадто багато запитів." + "You can create a new chart or use existing ones from the panel on the right": [ + "Ви можете створити нову діаграму або використовувати існуючі з панелі праворуч" ], - "The database is under an unusual load.": [ - "База даних знаходиться під незвичним навантаженням." + "Create a new chart": ["Створіть нову діаграму"], + "Drag and drop components to this tab": [ + "Перетягніть компоненти на цю вкладку" ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "База даних, на яку посилається в цьому запиті, не було знайдено. Зверніться до адміністратора для отримання додаткової допомоги або повторіть спробу." + "There are no components added to this tab": [ + "На цю вкладку немає компонентів" ], - "The database returned an unexpected error.": [ - "База даних повернула несподівану помилку." + "You can add the components in the edit mode.": [ + "Ви можете додати компоненти в режим редагування." ], - "The database was deleted.": ["База даних була видалена."], - "The database was not found.": ["База даних не була знайдена."], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "DataSet %s пов'язаний з діаграмами %s, які з’являються на інформаційних панелях %s. Ви впевнені, що хочете продовжувати? Видалення набору даних порушить ці об'єкти." + "Edit the dashboard": ["Відредагуйте інформаційну панель"], + "There is no chart definition associated with this component, could it have been deleted?": [ + "Не існує визначення діаграми, пов’язаного з цим компонентом, чи могло його видалити?" ], - "The dataset associated with this chart no longer exists": [ - "Набір даних, пов'язаний з цією діаграмою, більше не існує" + "Delete this container and save to remove this message.": [ + "Видаліть цей контейнер і збережіть, щоб видалити це повідомлення." ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "Конфігурація набору даних, викрита тут\n впливає на всі діаграми за допомогою цього набору даних.\n Пам’ятайте, що зміна налаштувань\n Тут може вплинути на інші діаграми\n небажаними способами." + "Refresh interval saved": ["Оновити інтервал збережено"], + "Refresh interval": ["Інтервал оновлення"], + "Refresh frequency": ["Частота оновлення"], + "Are you sure you want to proceed?": [ + "Ви впевнені, що хочете продовжити?" ], - "The dataset has been saved": ["Набір даних зберігається"], - "The dataset linked to this chart may have been deleted.": [ - "Набір даних, пов'язаний з цією діаграмою, можливо, був видалений." + "Save for this session": ["Збережіть для цього сеансу"], + "You must pick a name for the new dashboard": [ + "Ви повинні вибрати ім’я для нової інформаційної панелі" ], - "The datasource couldn't be loaded": ["Дані не вдалося завантажити"], - "The datasource is too large to query.": [ - "DataSource занадто великий, щоб запитувати." + "Save dashboard": ["Зберегти приладову панель"], + "Overwrite Dashboard [%s]": ["Перезаписати Інформаційну панель [%s]"], + "Save as:": ["Зберегти як:"], + "[dashboard name]": ["[Назва приладної панелі]"], + "also copy (duplicate) charts": [ + "також скопіюйте (зробіть дублікат) діаграм" ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "Опис може відображатися як заголовки віджетів на поданні приладової панелі. Підтримує відміток." + "viz type": ["тип з -за"], + "recent": ["недавній"], + "Create new chart": ["Створіть нову діаграму"], + "Filter your charts": ["Відфільтруйте свої діаграми"], + "Filter charts": ["Фільтр -діаграми"], + "Sort by %s": ["Сортувати на %s"], + "Show only my charts": ["Показати лише мої діаграми"], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "Ви можете вибрати, щоб відобразити всі діаграми, які у вас є доступ або лише тих, у кого ви володієте.\n Вибір фільтра буде збережено і залишатиметься активним, поки ви не вирішите його змінити." ], - "The distance between cells, in pixels": [ - "Відстань між клітинами, в пікселях" + "Added": ["Доданий"], + "Unknown type": ["Невідомий тип"], + "Viz type": ["Тип з -за"], + "Dataset": ["Набір даних"], + "Superset chart": ["Суперсетна діаграма"], + "Check out this chart in dashboard:": [ + "Перегляньте цю діаграму на інформаційній панелі:" ], - "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ - "Тривалість часу за секунди до кешу недійсна. Встановіть -1, щоб обійти кеш." + "Layout elements": ["Елементи макета"], + "Load a CSS template": ["Завантажте шаблон CSS"], + "Live CSS editor": ["Живий редактор CSS"], + "Collapse tab content": ["Вміст вкладки колапсу"], + "There are no charts added to this dashboard": [ + "На цю інформаційну панель не додано діаграм" ], - "The encoding format of the lines": ["Формат кодування ліній"], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "Об'єкт Engine_Params розпаковується в дзвінок SQLALCHEMY.CREATE_ENGINE." + "Go to the edit mode to configure the dashboard and add charts": [ + "Перейдіть у режим редагування, щоб налаштувати інформаційну панель та додати діаграми" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "Наступні записи в `series_columns` відсутні у ґcolumnsґ: %(columns)s. " + "Changes saved.": ["Збережені зміни."], + "Disable embedding?": ["Вимкнути вбудовування?"], + "This will remove your current embed configuration.": [ + "Це видалить вашу поточну вбудовану конфігурацію." ], - "The function to use when aggregating points into groups": [ - "Функція, яку слід використовувати при агрегуванні точок у групи" + "Embedding deactivated.": ["Вбудовування деактивовано."], + "Sorry, something went wrong. Embedding could not be deactivated.": [ + "Вибач, щось пішло не так. Вбудовування не можна було деактивувати." ], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "Хост “%(hostname)s” може бути знижений і неможливо досягти." + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Ця інформаційна панель готова до вбудовування. У своїй заявці передайте наступний ідентифікатор SDK:" ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "Хост \" %(hostname)s” може бути знижений, і його не можна дістатися на порт %(port)s." + "Configure this dashboard to embed it into an external web application.": [ + "Налаштуйте цю інформаційну панель, щоб вставити її у зовнішній веб додаток." ], - "The host might be down, and can't be reached on the provided port.": [ - "Хост може бути вниз, і його неможливо дістатися на наданий порт." + "For further instructions, consult the": [ + "Для отримання додаткових інструкцій проконсультуйтеся" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "Ім'я хоста \"%(ім'я хоста)s\" неможливо вирішити." + "Superset Embedded SDK documentation.": [ + "Суперсет вбудована документація SDK." ], - "The hostname provided can't be resolved.": [ - "Ім'я хоста неможливо вирішити." + "Allowed Domains (comma separated)": [ + "Дозволені домени (розділені кома)" ], - "The id of the active chart": ["Ідентифікатор активної діаграми"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "Список діаграм, пов’язаних з цією таблицею. Змінюючи цю дані, ви можете змінити, як поводяться ці пов'язані діаграми. Також зауважте, що діаграми повинні вказати на даний момент, тому ця форма не зможе зберегти, якщо видалити діаграми з даних. Якщо ви хочете змінити дані для діаграми, перезапишіть діаграму з \"Вивчення перегляду\"" + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "Список доменних імен, які можуть вбудувати цю інформаційну панель. Якщо лишити це поле порожнім, це дозволить вбудувати панель з будь-якого домену." ], - "The maximum number of events to return, equivalent to the number of rows": [ - "Максимальна кількість подій, що повертаються, еквівалентні кількості рядків" + "Deactivate": ["Деактивувати"], + "Save changes": ["Зберегти зміни"], + "Enable embedding": ["Увімкнути вбудовування"], + "Embed": ["Вбудувати"], + "Applied cross-filters (%d)": ["Застосовані перехресні фільти (%d)"], + "Applied filters (%d)": ["Застосовані фільтри (%d)"], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "На даний момент ця інформаційна панель автоматично освіжає; Наступне автоматичне оновлення буде у %s." ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "Максимальна кількість підрозділів кожної групи; Нижні значення обрізаються спочатку" + "Your dashboard is too large. Please reduce its size before saving it.": [ + "Ваша інформаційна панель занадто велика. Будь ласка, зменшіть його розмір, перш ніж економити." ], - "The maximum value of metrics. It is an optional configuration": [ - "Максимальне значення показників. Це необов'язкова конфігурація" + "Add the name of the dashboard": ["Додайте назву інформаційної панелі"], + "Dashboard title": ["Назва інформаційної панелі"], + "Undo the action": ["Скасувати дію"], + "Redo the action": ["Переробити дію"], + "Discard": ["Відкинути"], + "Edit dashboard": ["Редагувати інформаційну панель"], + "An error occurred while fetching available CSS templates": [ + "Помилка сталася під час отримання доступних шаблонів CSS" ], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "Metadata_params у додатковому полі налаштовані не правильно. Ключ %(key)s є недійсним." + "Refreshing charts": ["Освіжаючі діаграми"], + "Superset dashboard": ["Інформаційна панель суперсетів"], + "Check out this dashboard: ": ["Перегляньте цю інформаційну панель: "], + "Refresh dashboard": ["Оновити інформаційну панель"], + "Exit fullscreen": ["Вийти на повне екран"], + "Enter fullscreen": ["Введіть повноекранний"], + "Edit properties": ["Редагувати властивості"], + "Edit CSS": ["Редагувати CSS"], + "Download": ["Завантажувати"], + "Share": ["Розподіляти"], + "Copy permalink to clipboard": [ + "Скопіюйте постійне посилання на буфер обміну" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "Metadata_params у додатковому полі налаштовані не правильно. Ключ %{key} s є недійсним." + "Share permalink by email": [ + "Поділитися постійним посиланням електронною поштою" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "Об'єкт Metadata_Params розпаковується в дзвінок SQLALCHEMY.METADATA." + "Embed dashboard": ["Вбудувати інформаційну панель"], + "Manage email report": ["Керуйте звітом електронної пошти"], + "Set filter mapping": ["Встановіть картографування фільтра"], + "Set auto-refresh interval": [ + "Встановіть інтервал автоматичного рефреша" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "Мінімальна кількість періодів прокатки, необхідні для показу значення. Наприклад, якщо ви робите накопичувальну суму на 7 днів, ви можете захотіти, щоб ваш \"мінливий період\" був 7, так що всі показані точки даних - це загальна кількість 7 періодів. Це приховає \"рампу\", що відбудеться протягом перших 7 періодів" + "Confirm overwrite": ["Підтвердити перезапис"], + "Scroll down to the bottom to enable overwriting changes. ": [ + "Прокрутіть донизу, щоб увімкнути перезапис змін. " ], - "The number color \"steps\"": ["Колір числа \"кроки\""], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "Кількість годин, негативна чи позитивна, щоб змістити стовпчик часу. Це можна використовувати для переміщення часу UTC до місцевого часу." + "Yes, overwrite changes": ["Так, переписати зміни"], + "Are you sure you intend to overwrite the following values?": [ + "Ви впевнені, що маєте намір перезаписати наступні значення?" ], - "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROWS. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ - "Кількість відображених результатів обмежена %(рядами) d за допомогою конфігурації Display_max_Rows. Будь ласка, додайте додаткові обмеження/фільтри або завантажте в CSV, щоб побачити більше рядків до обмеження %(ліміт) D." + "Last Updated %s by %s": ["Останній оновлений %s на %s"], + "Apply": ["Застосовувати"], + "Error": ["Помилка"], + "A valid color scheme is required": ["Потрібна дійсна кольорова гама"], + "JSON metadata is invalid!": ["Метадані JSON недійсні!"], + "Dashboard properties updated": [ + "Оновлені властивості інформаційної панелі" ], - "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ - "Кількість відображених результатів обмежена %(рядки) d. Будь ласка, додайте додаткові ліміти/фільтри, завантажте в CSV або зв’яжіться з адміністратором, щоб побачити більше рядків до обмеження (ліміт) D." + "The dashboard has been saved": ["Приладна панель збережена"], + "Access": ["Доступ"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "Власники - це список користувачів, які можуть змінити інформаційну панель. Шукати за іменем або іменем користувача." ], - "The number of rows displayed is limited to %(rows)d by the dropdown.": [ - "Кількість відображених рядків обмежена %(рядами) d шляхом спадного падіння." + "Colors": ["Кольори"], + "Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular access permissions apply.": [ + "Ролі - це список, який визначає доступ до інформаційної панелі. Надання ролі доступу до інформаційної панелі буде обходити перевірки рівня набору даних. Якщо не визначено ролей, застосовуються регулярні дозволи на доступ." ], - "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ - "Кількість відображених рядків обмежена %(рядами) d шляхом спадного краплі." + "Dashboard properties": ["Властивості інформаційної панелі"], + "This dashboard is managed externally, and can't be edited in Superset": [ + "Ця інформаційна панель керує зовні, і не може бути відредагована в суперсеті" ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "Кількість відображених рядків обмежена %(рядами) d за запитом" + "Basic information": ["Основна інформація"], + "URL slug": ["URL -адреса"], + "A readable URL for your dashboard": [ + "Читабельна URL адреса для вашої інформаційної панелі" ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "Кількість відображених рядків обмежена %(рядами) d шляхом запиту та спадного падіння." + "Certification": ["Сертифікація"], + "Person or group that has certified this dashboard.": [ + "Особа або група, яка сертифікувала цю інформаційну панель." ], - "The number of seconds before expiring the cache": [ - "Кількість секунд до закінчення кешу" + "Any additional detail to show in the certification tooltip.": [ + "Будь -яка додаткова деталь для показу в підказці сертифікації." ], - "The object does not exist in the given database.": [ - "Об'єкт не існує в даній базі даних." + "A list of tags that have been applied to this chart.": [ + "Список тегів, які були застосовані до цієї діаграми." ], - "The parameter %(parameters)s in your query is undefined.": [ - "Параметр %(parameters)s у вашому запиті не визначений." + "JSON metadata": ["Метадані JSON"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [ + "Будь ласка, не перезапишіть клавішу \"filter_scopes\"." ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "Пароль, що надається для імені користувача \"%(ім'я користувача)s\", є неправильним." + "Use \"%(menuName)s\" menu instead.": [ + "Натомість використовуйте меню “%(menuName)s”." ], - "The password provided when connecting to a database is not valid.": [ - "Пароль, наданий при підключенні до бази даних, не є дійсним." + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "Ця інформаційна панель не опублікована, вона не з’явиться у списку інформаційних панелей. Клацніть тут, щоб опублікувати цю інформаційну панель." ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Паролі для баз даних нижче потрібні для імпорту їх разом із діаграмами. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "Ця інформаційна панель не опублікована, що означає, що вона не з’явиться у списку інформаційних панелей. Улюблене його, щоб побачити його там або отримати доступ, використовуючи URL -адресу безпосередньо." ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Паролі для баз даних нижче потрібні для імпорту їх разом із інформаційними панелями. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." + "This dashboard is published. Click to make it a draft.": [ + "Ця інформаційна панель опублікована. Клацніть, щоб зробити це проектом." ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Паролі для баз даних нижче потрібні для імпорту їх разом із наборами даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." + "Draft": ["Розтягувати"], + "Annotation layers are still loading.": [ + "Анотаційні шари все ще завантажуються." ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "Для імпорту їх разом із збереженими запитами потрібні паролі для баз даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." + "One ore more annotation layers failed loading.": [ + "Один руду більше анотаційних шарів не вдалося завантажити." ], - "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ - "Паролі для баз даних нижче потрібні для їх імпорту. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні у дослідженні файли, і його слід додавати вручну після імпорту, якщо вони потрібні." + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "Ця діаграма застосовує перехресні фільти до діаграм, набори даних яких містять стовпці з однойменною назвою." ], - "The pattern of timestamp format. For strings use ": [ - "Візерунок формату часової позначки. Для використання рядків " + "Data refreshed": ["Дані оновлені"], + "Cached %s": ["Кешовані %s"], + "Fetched %s": ["Витягнутий %s"], + "Query %s: %s": ["Запит %s: %s"], + "Force refresh": ["Оновити"], + "Hide chart description": ["Сховати опис діаграми"], + "Show chart description": ["Показати опис діаграми"], + "Cross-filtering scoping": ["Перехресне фільтрування"], + "View query": ["Переглянути запит"], + "View as table": ["Переглянути як таблицю"], + "Chart Data: %s": ["Дані діаграми: %s"], + "Share chart by email": ["Поділитися діаграмою електронною поштою"], + "Check out this chart: ": ["Перегляньте цю діаграму: "], + "Export to .CSV": ["Експорт до .csv"], + "Export to Excel": ["Експорт до Excel"], + "Export to full .CSV": ["Експорт до повного .csv"], + "Download as image": ["Завантажте як зображення"], + "Something went wrong.": ["Щось пішло не так."], + "Search...": ["Пошук ..."], + "No filter is selected.": ["Фільтр не вибирається."], + "Editing 1 filter:": ["Редагування 1 фільтр:"], + "Batch editing %d filters:": ["Редагування партії %d фільтрів:"], + "Configure filter scopes": ["Налаштуйте фільтрувальні сфери"], + "There are no filters in this dashboard.": [ + "На цій інформаційній панелі немає фільтрів." ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "Періодичність, протягом якої врізати час. Користувачі можуть надати\n Псевдонім \"Панди\".\n Клацніть на міхур Info для отримання більш детальної інформації про прийняті вирази \"Freq\"." + "Expand all": ["Розширити всі"], + "Collapse all": ["Згорнути всі"], + "An error occurred while opening Explore": [ + "Під час відкриття досліджувати сталася помилка" ], - "The pixel radius": ["Радіус пікселя"], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "Вказівник на фізичну таблицю (або переглянути). Майте на увазі, що діаграма пов'язана з цією логічною таблицею Superset, і ця логічна таблиця вказує на фізичну таблицю, на яку посилається тут." + "Empty column": ["Порожній стовпчик"], + "This markdown component has an error.": [ + "Цей компонент відмітки має помилку." ], - "The port is closed.": ["Порт закритий."], - "The port number is invalid.": ["Номер порту недійсний."], - "The primary metric is used to define the arc segment sizes": [ - "Первинний показник використовується для визначення розмірів сегмента дуги" + "This markdown component has an error. Please revert your recent changes.": [ + "Цей компонент відмітки має помилку. Будь ласка, поверніть свої останні зміни." ], - "The provided `rows` argument is not a valid integer.": [ - "Забезпечений аргумент `Rows` не є дійсним цілим числом." + "Empty row": ["Порожній ряд"], + "You can": ["Ти можеш"], + "create a new chart": ["cтворіть нову діаграму"], + "or use existing ones from the panel on the right": [ + "або використовуйте існуючі з панелі праворуч" ], - "The query associated with the results was deleted.": [ - "Запит, пов’язаний з результатами, було видалено." + "You can add the components in the": ["Ви можете додати компоненти в"], + "edit mode": ["режим редагування"], + "Delete dashboard tab?": ["Видалити вкладку для інформаційної панелі?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "Видалення вкладки видалить весь вміст всередині неї. Ви все ще можете змінити цю дію за допомогою" ], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "Не вдалося знайти запит, пов'язаний з цими результатами. Потрібно повторно запустити оригінальний запит." + "undo": ["скасувати"], + "button (cmd + z) until you save your changes.": [ + "кнопка (CMD + Z), поки не збережеш свої зміни." ], - "The query contains one or more malformed template parameters.": [ - "Запит містить один або кілька неправильно сформованих параметрів шаблону." + "CANCEL": ["Скасувати"], + "Divider": ["Роздільник"], + "Header": ["Заголовок"], + "Text": ["Текст"], + "Tabs": ["Вкладки"], + "background": ["фон"], + "Preview": ["Попередній перегляд"], + "Sorry, something went wrong. Try again later.": [ + "Вибач, щось пішло не так. Спробуйте ще раз пізніше." ], - "The query couldn't be loaded": ["Запит не вдалося завантажити"], - "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Оцінка запитів була вбита після %(sqllab_timeout)s секунд. Це може бути занадто складно, або база даних може бути під великим навантаженням." + "Unknown value": ["Невідоме значення"], + "Add/Edit Filters": ["Додати/редагувати фільтри"], + "No filters are currently added to this dashboard.": [ + "Наразі на цю інформаційну панель не додано жодних фільтрів." ], - "The query has a syntax error.": ["Запит має помилку синтаксису."], - "The query returned no data": ["Запит не повертав даних"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "Запит був убитий після %(sqllab_timeout)s секунд. Це може бути занадто складно, або база даних може бути під великим навантаженням." + "No global filters are currently added": [ + "Наразі глобальні фільтри не додаються" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "Радіус (у пікселях) алгоритм використовує для визначення кластера. Виберіть 0, щоб вимкнути кластеризацію, але будьте обережні, що велика кількість балів (> 1000) спричинить відставання." + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "Натисніть кнопку \"+додавання/редагування фільтрів\", щоб створити нові фільтри для інформаційної панелі" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "Радіус окремих точок (тих, які не в кластері). Або чисельна колонка, або `auto`, що масштабує точку на основі найбільшого кластера" + "Apply filters": ["Застосувати фільтри"], + "Clear all": ["Очистити всі"], + "Locate the chart": ["Знайдіть діаграму"], + "Cross-filters": ["Перехресні фільтри"], + "Add custom scoping": ["Додайте власні сфери застосування"], + "All charts/global scoping": ["Усі діаграми/глобальні обсяги"], + "Select chart": ["Виберіть діаграму"], + "Cross-filtering is not enabled in this dashboard": [ + "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі" ], - "The report has been created": ["Звіт створений"], - "The results backend no longer has the data from the query.": [ - "Результати, що бекрономиться, більше не мають даних із запиту." + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Виберіть діаграми, до яких потрібно застосувати перехресні фільтри під час взаємодії з цією діаграмою. Ви можете вибрати \"всі діаграми\", щоб застосувати фільтри до всіх діаграм, які використовують один і той же набір даних, або містити одне і те ж ім'я стовпця на інформаційній панелі." ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Результати, що зберігаються в бекенді, зберігалися в іншому форматі, і більше не можуть бути дезеріалізовані." + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "Виберіть діаграми, до яких потрібно застосувати перехресні фільтри на цій інформаційній панелі. Скасування діаграми виключає її з фільтрування при застосуванні перехресних фільтрів з будь-якої діаграми на приладовій панелі. Ви можете вибрати \"всі діаграми\", щоб застосувати перехресні фільтри до всіх діаграм, які використовують один і той же набір даних, або містять одне і те ж ім'я стовпця на інформаційній панелі." ], - "The rich tooltip shows a list of all series for that point in time": [ - "Багата підказка показує список усіх серій для цього моменту часу" + "All charts": ["Усі діаграми"], + "Enable cross-filtering": ["Увімкнути перехресне фільтрування"], + "Orientation of filter bar": ["Орієнтація панелі фільтра"], + "Vertical (Left)": ["Вертикальний (зліва)"], + "Horizontal (Top)": ["Горизонтальний (вгорі)"], + "More filters": ["Більше фільтрів"], + "No applied filters": ["Немає застосованих фільтрів"], + "Applied filters: %s": ["Застосовані фільтри: %s"], + "Cannot load filter": ["Не вдається завантажувати фільтр"], + "Filters out of scope (%d)": ["Фільтри поза обсягом (%d)"], + "Dependent on": ["Залежить від"], + "Filter only displays values relevant to selections made in other filters.": [ + "Фільтр відображає лише значення, що стосуються вибору, зроблених в інших фільтрах." ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "Схеми “%(schema)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну схему." + "Scope": ["Область"], + "Filter type": ["Тип фільтру"], + "Title is required": ["Потрібна назва"], + "(Removed)": ["(Видалено)"], + "Undo?": ["Скасувати?"], + "Add filters and dividers": ["Додайте фільтри та роздільники"], + "[untitled]": ["[Без назви]"], + "Cyclic dependency detected": ["Виявлена ​​циклічна залежність"], + "Add and edit filters": ["Додати та редагувати фільтри"], + "Column select": ["Вибір стовпця"], + "Select a column": ["Виберіть стовпець"], + "No compatible columns found": ["Не знайдено сумісних стовпців"], + "No compatible datasets found": ["Не знайдено сумісних наборів даних"], + "Value is required": ["Значення потрібно"], + "(deleted or invalid type)": ["(видалений або недійсний тип)"], + "Limit type": ["Тип обмеження"], + "No available filters.": ["Немає доступних фільтрів."], + "Add filter": ["Додати фільтр"], + "Values are dependent on other filters": [ + "Значення залежать від інших фільтрів" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "Схема \"%(schema_name)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну схему." + "Values selected in other filters will affect the filter options to only show relevant values": [ + "Значення, вибрані в інших фільтрах, впливатимуть на параметри фільтра, щоб показати лише відповідні значення" ], - "The schema was deleted or renamed in the database.": [ - "Схема була видалена або перейменована в базу даних." + "Values dependent on": ["Значення, залежні від"], + "Scoping": ["Виділення області"], + "Filter Configuration": ["Конфігурація фільтра"], + "Filter Settings": ["Налаштування фільтра"], + "Select filter": ["Виберіть фільтр"], + "Range filter": ["Фільтр діапазону"], + "Numerical range": ["Чисельний діапазон"], + "Time filter": ["Час фільтр"], + "Time range": ["Часовий діапазон"], + "Time column": ["Стовпчик часу"], + "Time grain": ["Зерно часу"], + "Group By": ["Група"], + "Group by": ["Група"], + "Pre-filter is required": ["Потрібен попередній фільтр"], + "Time column to apply dependent temporal filter to": [ + "Стовпчик часу для застосування залежного тимчасового фільтра до" ], - "The size of the square cell, in pixels": [ - "Розмір квадратної клітини, пікселів" + "Time column to apply time range to": [ + "Стовпчик часу, щоб застосувати часовий діапазон до" ], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ - "Подана URL -адреса не вважається безпечною, використовуйте лише URL -адреси з тим самим доменом, що і суперсет." + "Filter name": ["Назва фільтра"], + "Name is required": ["Ім'я потрібно"], + "Filter Type": ["Тип фільтру"], + "Datasets do not contain a temporal column": [ + "Набори даних не містять тимчасового стовпця" ], - "The submitted payload has the incorrect format.": [ - "Надістоване корисне навантаження має неправильний формат." + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "Фільтри діапазону часу на інформаційній панелі застосовуються до тимчасових стовпців, визначених у\n розділ фільтра кожної діаграми. Додайте тимчасові стовпці до діаграми\n Фільтри, щоб цей фільтр на інформаційній панелі впливав на ці діаграми." ], - "The submitted payload has the incorrect schema.": [ - "Надіслане корисне навантаження має неправильну схему." + "Dataset is required": ["Необхідний набір даних"], + "Pre-filter available values": ["Доступні значення попереднього фільтра"], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "Додайте застереження про фільтр для контролю запиту джерела фільтра,\n Хоча лише в контексті автозаповнення, тобто ці умови\n Не впливайте на те, як фільтр застосовується на інформаційній панелі. Це корисно\n Коли ви хочете покращити продуктивність запиту, лише скануючи підмножину\n базових даних або обмежити наявні значення, відображені у фільтрі." ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "Таблиця “%(table)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну таблицю." + "Pre-filter": ["Попередній фільтр"], + "No filter": ["Без фільтра"], + "Sort filter values": ["Сортувати значення фільтра"], + "Sort type": ["Тип сортування"], + "Sort ascending": ["Сортувати висхід"], + "Sort Metric": ["Метрика сортування"], + "If a metric is specified, sorting will be done based on the metric value": [ + "Якщо вказано метрику, сортування буде здійснено на основі метричного значення" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "Таблиця “%(table_name)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну таблицю." + "Sort metric": ["Метрика сортування"], + "Single Value": ["Єдине значення"], + "Single value type": ["Тип єдиного значення"], + "Exact": ["Точний"], + "Filter has default value": ["Фільтр має значення за замовчуванням"], + "Default Value": ["Значення за замовчуванням"], + "Default value is required": ["Значення за замовчуванням необхідне"], + "Refresh the default values": ["Оновити значення за замовчуванням"], + "Fill all required fields to enable \"Default Value\"": [ + "Заповніть усі необхідні поля, щоб увімкнути \"значення за замовчуванням\"" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "Стол був створений. У рамках цього двофазного процесу конфігурації тепер слід натиснути кнопку Редагувати за новою таблицею, щоб налаштувати її." + "You have removed this filter.": ["Ви видалили цей фільтр."], + "Restore Filter": ["Відновити фільтр"], + "Column is required": ["Потрібна колонка"], + "Populate \"Default value\" to enable this control": [ + "Населення \"значення за замовчуванням\", щоб увімкнути цей контроль" ], - "The table was deleted or renamed in the database.": [ - "Таблицю було видалено або перейменовано в базу даних." + "Default value set automatically when \"Select first filter value by default\" is checked": [ + "Налаштування значення за замовчуванням автоматично, коли перевіряється \"Виберіть значення першого фільтра\"" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "Стовпчик часу для візуалізації. Зауважте, що ви можете визначити довільний вираз, який повертає стовпець DateTime в таблиці. Також зауважте, що фільтр нижче застосовується проти цього стовпця або виразу" + "Default value must be set when \"Filter value is required\" is checked": [ + "Значення за замовчуванням повинно бути встановлено, коли перевіряється \"значення фільтра\"" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "Часова деталізація для візуалізації. Зауважте, що ви можете вводити та використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 тижнів'" + "Default value must be set when \"Filter has default value\" is checked": [ + "Значення за замовчуванням повинно бути встановлено, коли перевіряється \"Фільтр має значення за замовчуванням\"" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ - "Часова деталізація для візуалізації. Зауважте, що ви можете вводити та використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 тижнів'" + "Apply to all panels": ["Застосовуйте до всіх панелей"], + "Apply to specific panels": ["Застосовуйте до певних панелей"], + "Only selected panels will be affected by this filter": [ + "На цей фільтр вплине лише вибрані панелі" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "Часова деталізація для візуалізації. Це стосується перетворення дати для зміни стовпчика часу та визначає нову деталізацію часу. Параметри тут визначаються на основі двигуна на базу даних у вихідному коді суперсета." + "All panels with this column will be affected by this filter": [ + "На всі панелі з цим стовпцем впливатимуть цей фільтр" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "Часовий діапазон для візуалізації. Усі відносні часи, напр. \"Минулого місяця\", \"Останні 7 днів\", \"тепер\" тощо. На сервері оцінюються за допомогою локального часу сервера (SANS Timezone). Усі часи підказки та часи заповнювача виражаються в UTC (SANS Timezone). Потім часові позначки оцінюються базою даних за допомогою локального часу двигуна. Примітка можна чітко встановити часовий пояс на формат ISO 8601, якщо вказати або час запуску та/або кінця." + "All panels": ["Всі панелі"], + "This chart might be incompatible with the filter (datasets don't match)": [ + "Ця діаграма може бути несумісною з фільтром (набори даних не відповідають)" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "Одиниця часу для кожного блоку. Має бути меншим одиницею, ніж домен_гранулярність. Має бути більшим або рівним часовим зерном" + "Keep editing": ["Продовжуйте редагувати"], + "Yes, cancel": ["Так, скасувати"], + "There are unsaved changes.": ["Є незберечені зміни."], + "Are you sure you want to cancel?": ["Ви впевнені, що хочете скасувати?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "Помилка завантаження діаграм даних. Фільтри можуть працювати не правильно." ], - "The time unit used for the grouping of blocks": [ - "Одиниця часу, що використовується для групування блоків" + "Transparent": ["Прозорий"], + "White": ["Білий"], + "All filters": ["Всі фільтри"], + "Click to edit %s.": ["Клацніть на редагування %s."], + "Click to edit chart.": ["Клацніть на Редагувати діаграму."], + "Use %s to open in a new tab.": [ + "Використовуйте %s, щоб відкрити на новій вкладці." ], - "The type of visualization to display": [ - "Тип візуалізації для відображення" + "Medium": ["Середній"], + "New header": ["Новий заголовок"], + "Tab title": ["Назва вкладки"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Цей сеанс зіткнувся з перериванням, і деякі елементи управління можуть не працювати за призначенням. Якщо ви розробник цього додатка, будь ласка, перевірте, чи правильно генерується маркер." ], - "The unit of measure for the specified point radius": [ - "Одиниця виміру для заданого радіуса точки" + "Equal to (=)": ["Дорівнює (=)"], + "Not equal to (≠)": ["Не дорівнює (≠)"], + "Less than (<)": ["Менше (<)"], + "Less or equal (<=)": ["Менше або рівне (<=)"], + "Greater than (>)": ["Більше (>)"], + "Greater or equal (>=)": ["Більший або рівний (> =)"], + "In": ["У"], + "Not in": ["Не в"], + "Like": ["Люблю"], + "Like (case insensitive)": ["Як (нечутливий до випадків)"], + "Is not null": ["Не нульова"], + "Is null": ["Є нульовим"], + "use latest_partition template": [ + "використовуйте шаблон latest_partition" ], - "The user seems to have been deleted": ["Здається, користувач видалив"], - "The user/password combination is not valid (Incorrect password for user).": [ - "Комбінація користувача/пароля не є дійсною (неправильний пароль для користувача)." + "Is true": ["Правда"], + "Is false": ["Є помилковим"], + "TEMPORAL_RANGE": ["Temporal_range"], + "Time granularity": ["Час деталізація"], + "Duration in ms (100.40008 => 100ms 400µs 80ns)": [ + "Тривалість у MS (100,40008 => 100 мс 400 мкс 80ns)" ], - "The username \"%(username)s\" does not exist.": [ - "Ім'я користувача “%(username)s\" не існує." + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "Один або багато стовпців до групи за. Високі угруповання кардинальності повинні включати ліміт серії для обмеження кількості витягнутих та наданих рядів." ], - "The username provided when connecting to a database is not valid.": [ - "Ім'я користувача, що надається при підключенні до бази даних, не є дійсним." + "One or many metrics to display": [ + "Один або багато показників для відображення" ], - "The way the ticks are laid out on the X-axis": [ - "Те, як кліщі викладені на осі x" + "Fixed color": ["Фіксований колір"], + "Right axis metric": ["Метрика правої осі"], + "Choose a metric for right axis": ["Виберіть метрику для правої осі"], + "Linear color scheme": ["Лінійна кольорова гамма"], + "Color metric": ["Кольоровий показник"], + "One or many controls to pivot as columns": [ + "Один або багато елементів керування, щоб стригти як стовпці" ], - "The width of the lines": ["Ширина ліній"], - "There are associated alerts or reports": [ - "Є пов'язані сповіщення або звіти" + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "Часова деталізація для візуалізації. Зауважте, що ви можете вводити та використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 тижнів'" ], - "There are associated alerts or reports: %s,": [ - "Існують пов'язані сповіщення або звіти: %s," + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "Часова деталізація для візуалізації. Це стосується перетворення дати для зміни стовпчика часу та визначає нову деталізацію часу. Параметри тут визначаються на основі двигуна на базу даних у вихідному коді суперсета." ], - "There are no charts added to this dashboard": [ - "На цю інформаційну панель не додано діаграм" + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "Часовий діапазон для візуалізації. Усі відносні часи, напр. \"Минулого місяця\", \"Останні 7 днів\", \"тепер\" тощо. На сервері оцінюються за допомогою локального часу сервера (SANS Timezone). Усі часи підказки та часи заповнювача виражаються в UTC (SANS Timezone). Потім часові позначки оцінюються базою даних за допомогою локального часу двигуна. Примітка можна чітко встановити часовий пояс на формат ISO 8601, якщо вказати або час запуску та/або кінця." ], - "There are no components added to this tab": [ - "На цю вкладку немає компонентів" + "Limits the number of rows that get displayed.": [ + "Обмежує кількість рядків, які відображаються." ], - "There are no databases available": ["Баз даних немає"], - "There are no filters in this dashboard.": [ - "На цій інформаційній панелі немає фільтрів." + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "Metric, що використовується для визначення того, як сортується верхня серія, якщо присутній ліміт серії або рядка. Якщо невизначений повернення до першої метрики (де це доречно)." ], - "There are unsaved changes.": ["Є незберечені зміни."], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "У запиті SQL є помилка синтаксису. Можливо, було неправильне написання чи друкарську помилку." + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "Визначає групування суб'єктів. Кожна серія відображається як конкретний колір на діаграмі і має легенду перемикання" ], - "There is no chart definition associated with this component, could it have been deleted?": [ - "Не існує визначення діаграми, пов’язаного з цим компонентом, чи могло його видалити?" + "Metric assigned to the [X] axis": ["Метрика, призначена до осі [x]"], + "Metric assigned to the [Y] axis": ["Метрика, присвоєна вісь [y]"], + "Bubble size": ["Розмір міхура"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "Коли `тип обчислення\" встановлено на \"відсоткову зміну\", формат осі y змушений до `.1%` `" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Для цього компонента недостатньо місця. Спробуйте зменшити його ширину або збільшити ширину призначення." + "Color scheme": ["Кольорова схема"], + "An error occurred while starring this chart": [ + "Під час головної частини цього діаграми сталася помилка" ], - "There was an error fetching dataset": ["Був набір даних про помилку"], - "There was an error fetching dataset's related objects": [ - "Були помилкові об'єкти, пов’язані з набором даних" + "Chart [%s] has been saved": ["Діаграма [%s] збережена"], + "Chart [%s] has been overwritten": ["Діаграма [%s] була перезаписана"], + "Dashboard [%s] just got created and chart [%s] was added to it": [ + "Дашборд [%s] був щойно створений, а діаграма [%s] була додана до нього" ], - "There was an error fetching tables": [ - "Були таблиці для отримання помилок" + "Chart [%s] was added to dashboard [%s]": [ + "Діаграма [%s] була додана до інформаційної панелі [%s]" ], - "There was an error fetching the favorite status: %s": [ - "Була помилка, яка отримала улюблений статус: %s" + "GROUP BY": ["Група"], + "Use this section if you want a query that aggregates": [ + "Використовуйте цей розділ, якщо ви хочете запит, який агрегує" ], - "There was an error fetching your recent activity:": [ - "Була помилка, яка отримала вашу недавню діяльність:" - ], - "There was an error loading the chart data": [ - "Була помилка завантаження даних діаграми" - ], - "There was an error loading the dataset metadata": [ - "Була помилка, що завантажує метадані набору даних" - ], - "There was an error loading the schemas": [ - "Сталася помилка, що завантажує схеми" - ], - "There was an error loading the tables": [ - "Сталася помилка, що завантажує таблиці" - ], - "There was an error saving the favorite status: %s": [ - "Була помилка, щоб зберегти улюблений статус: %s" - ], - "There was an error with your request": ["Була помилка з вашим запитом"], - "There was an issue deleting %s: %s": [ - "Виникло питання видалення %s: %s" - ], - "There was an issue deleting rules: %s": [ - "Існували правила видалення проблеми: %s" - ], - "There was an issue deleting the selected %s: %s": [ - "Виникла проблема з видалення вибраного %s: %s" - ], - "There was an issue deleting the selected annotations: %s": [ - "Виникло питання, що видалив вибрані анотації: %s" - ], - "There was an issue deleting the selected charts: %s": [ - "Виникла проблема з видалення вибраних діаграм: %s" - ], - "There was an issue deleting the selected dashboards: ": [ - "Була проблема, яка видалила вибрані інформаційні панелі: " + "NOT GROUPED BY": ["Не згрупований"], + "Use this section if you want to query atomic rows": [ + "Використовуйте цей розділ, якщо ви хочете запитувати атомні ряди" ], - "There was an issue deleting the selected datasets: %s": [ - "Виникла проблема з видалення вибраних наборів даних: %s" + "The X-axis is not on the filters list": [ + "Осі x немає у списку фільтрів" ], - "There was an issue deleting the selected layers: %s": [ - "Виникла проблема з видалення вибраних шарів: %s" + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ + "Осі x не знаходиться в списку фільтрів, які заважають його використати в\n Фільтри часового діапазону на інформаційних панелях. Ви хотіли б додати його до списку фільтрів?" ], - "There was an issue deleting the selected queries: %s": [ - "Виникла проблема, що видалив вибрані запити: %s" + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ + "Ви не можете видалити останній часовий фільтр, оскільки він використовується для фільтрів часового діапазону на інформаційних панелях." ], - "There was an issue deleting the selected templates: %s": [ - "Виникла проблема з видалення вибраних шаблонів: %s" + "This section contains validation errors": [ + "Цей розділ містить помилки перевірки" ], - "There was an issue deleting: %s": ["Видаляло проблему: %s"], - "There was an issue duplicating the dataset.": [ - "Існувала проблема, що дублювання набору даних." + "Keep control settings?": ["Продовжувати налаштування контролю?"], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ + "Ви змінили набори даних. Будь -які елементи керування з даними (стовпчики, метрики), які відповідають цьому новому наборі даних, були зберігаються." ], - "There was an issue duplicating the selected datasets: %s": [ - "Існувала проблема, що дублювання вибраних наборів даних: %s" + "Continue": ["Продовжувати"], + "Clear form": ["Чітка форма"], + "No form settings were maintained": ["Налаштування форми не зберігалися"], + "We were unable to carry over any controls when switching to this new dataset.": [ + "Ми не змогли перенести будь -які елементи керування при переході на цей новий набір даних." ], - "There was an issue favoriting this dashboard.": [ - "Була проблема, яка сприяла цій інформаційній панелі." + "Customize": ["Налаштувати"], + "Generating link, please wait..": [ + "Генеруючи посилання, будь ласка, зачекайте .." ], - "There was an issue fetching reports attached to this dashboard.": [ - "На цій інформаційній панелі було додано питання про отримання звітів." + "Chart height": ["Висота діаграми"], + "Chart width": ["Ширина діаграми"], + "An error occurred while loading dashboard information.": [ + "Під час завантаження інформації про інформаційну панель сталася помилка." ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Була проблема, яка отримала улюблений статус цієї інформаційної панелі." + "Save (Overwrite)": ["Зберегти (перезапис)"], + "Save as...": ["Зберегти як..."], + "Chart name": ["Назва діаграми"], + "Dataset Name": ["Назва набору даних"], + "A reusable dataset will be saved with your chart.": [ + "Набору даних багаторазового використання буде збережено за допомогою вашої діаграми." ], - "There was an issue fetching your chart: %s": [ - "Виникла проблема з отриманням вашої діаграми: %s" + "Add to dashboard": ["Додайте до інформаційної панелі"], + "Select a dashboard": ["Виберіть приладову панель"], + "Select": ["Обраний"], + " a dashboard OR ": [" інформаційна панель або "], + "create": ["створити"], + " a new one": [" новий"], + "Save & go to dashboard": [ + "Збережіть та перейдіть на інформаційну панель" ], - "There was an issue fetching your dashboards: %s": [ - "Виникла проблема з отриманням інформаційних панелей: %s" + "Save chart": ["Зберегти діаграму"], + "Formatted date": ["Відформатована дата"], + "Column Formatting": ["Форматування стовпців"], + "Collapse data panel": ["Панель даних про крах"], + "Expand data panel": ["Розгорнути панель даних"], + "Samples": ["Зразки"], + "No samples were returned for this dataset": [ + "Для цього набору даних не було повернуто жодних зразків" ], - "There was an issue fetching your recent activity: %s": [ - "Існувало проблему, що витягує вашу недавню діяльність: %s" + "No results": ["Немає результатів"], + "Search Metrics & Columns": ["Пошук показників та стовпців"], + "Create a dataset": ["Створіть набір даних"], + " to edit or add columns and metrics.": [ + " редагувати або додати стовпці та показники." ], - "There was an issue fetching your saved queries: %s": [ - "Виникла проблема з отриманням збережених запитів: %s" + "Showing %s of %s": ["Показуючи %s %s"], + "Show less...": ["Показувати менше ..."], + "Show all...": ["Покажи все..."], + "Show Less...": ["Показувати менше ..."], + "Unable to retrieve dashboard colors": [ + "Не в змозі отримати кольори панелі панелі" ], - "There was an issue previewing the selected query %s": [ - "Існувала проблема, що переглядає вибраний запит %s" + "Added to 1 dashboard": ["Додано до 1 інформаційної панелі"], + "Not added to any dashboard": [ + "Не додано на будь-яку інформаційну панель" ], - "There was an issue previewing the selected query. %s": [ - "Була проблема, що переглядає вибраний запит. %s" + "You can preview the list of dashboards in the chart settings dropdown.": [ + "Ви можете переглянути список інформаційних панелей у спадному порядку налаштувань діаграми." ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "У вашому Санкі є петля, будь ласка, надайте дерево. Ось несправне посилання: {}" + "Not available": ["Недоступний"], + "Add the name of the chart": ["Додайте назву діаграми"], + "Chart title": ["Назва діаграми"], + "Add required control values to save chart": [ + "Додайте необхідні контрольні значення для збереження діаграми" ], - "These are the tables this filter will be applied to.": [ - "Це таблиці, до яких цей фільтр буде застосований." + "Chart type requires a dataset": ["Тип діаграми вимагає набору даних"], + "This chart type is not supported when using an unsaved query as a chart source. ": [ + "Цей тип діаграми не підтримується при використанні незбереженого запиту як джерела діаграми. " ], - "These filters apply to the values available in the dropdowns": [ - "Ці фільтри застосовуються до значень, наявних у спадних випадках" + " to visualize your data.": [" Візуалізувати свої дані."], + "Required control values have been removed": [ + "Необхідні контрольні значення були видалені" ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Ці параметри генеруються динамічно при натисканні кнопки збереження або перезапис у перегляді. Цей об’єкт JSON викривають тут для довідок та для користувачів живлення, які можуть захотіти змінити конкретні параметри." + "Your chart is not up to date": ["Ваша діаграма не оновлена"], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Ви оновили значення на панелі управління, але діаграма не оновлювалася автоматично. Запустіть запит, натиснувши кнопку \"Оновлення діаграми\" або" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "Цей об’єкт JSON генерується динамічно при натисканні кнопки збереження або перезапис у поданні панелі приладної панелі. Тут викрито для довідок та для користувачів живлення, які можуть захотіти змінити конкретні параметри." + "Controls labeled ": ["Методи керування позначені "], + "Control labeled ": ["Метод контролю позначено "], + "Chart Source": ["Джерело діаграми"], + "Open Datasource tab": ["Вкладка Відкрийте DataSource"], + "Original": ["Оригінальний"], + "Pivoted": ["Обрізаний"], + "You do not have permission to edit this chart": [ + "Ви не маєте дозволу на редагування цієї діаграми" ], - "This action will permanently delete %s.": [ - "Ця дія назавжди видаляє %s." + "Chart properties updated": ["Властивості діаграми оновлені"], + "Edit Chart Properties": ["Редагувати властивості діаграми"], + "This chart is managed externally, and can't be edited in Superset": [ + "Ця діаграма керується зовні і не може бути відредагована в суперсеті" ], - "This action will permanently delete the layer.": [ - "Ця дія назавжди видаляє шар." + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "Опис може відображатися як заголовки віджетів на поданні приладової панелі. Підтримує відміток." ], - "This action will permanently delete the saved query.": [ - "Ця дія назавжди видаляє збережений запит." + "Person or group that has certified this chart.": [ + "Особа або група, яка сертифікувала цю діаграму." ], - "This action will permanently delete the template.": [ - "Ця дія назавжди видаляє шаблон." + "Configuration": ["Конфігурація"], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Встановіть -1, щоб обійти кеш. Зверніть увагу на за замовчуванням до часу очікування набору даних, якщо він не визначений." ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "Це може бути IP -адреса (наприклад, 127.0.0.1), або доменне ім'я (наприклад, mydatabase.com)." + "A list of users who can alter the chart. Searchable by name or username.": [ + "Список користувачів, які можуть змінити діаграму. Шукати за іменем або іменем користувача." ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ - "Ця діаграма застосовує перехресні фільти до діаграм, набори даних яких містять стовпці з однойменною назвою." + "Limit reached": ["Обмеження досягнуто"], + "Create chart": ["Створити діаграму"], + "Update chart": ["Оновлення діаграми"], + "Invalid lat/long configuration.": ["Недійсна конфігурація LAT/Довга."], + "Reverse lat/long ": ["Зворотня шир/довгота "], + "Longitude & Latitude columns": ["Стовпці довготи та широти"], + "Delimited long & lat single column": [ + "Розмежований одиночний стовпчик Long & Lat" ], - "This chart has been moved to a different filter scope.": [ - "Ця діаграма була переміщена до іншої області фільтра." + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "Прийняті кілька форматів, подивіться на бібліотеку Python Geopy.points для отримання детальної інформації" ], - "This chart is managed externally, and can't be edited in Superset": [ - "Ця діаграма керується зовні і не може бути відредагована в суперсеті" + "Geohash": ["Геохаш"], + "textarea": ["textarea"], + "in modal": ["у модальному"], + "Sorry, An error occurred": ["Вибачте, сталася помилка"], + "Save as Dataset": ["Збережіть як набір даних"], + "Open in SQL Lab": ["Відкрито в лабораторії SQL"], + "Failed to verify select options: %s": [ + "Не вдалося перевірити вибрати параметри: %s" ], - "This chart might be incompatible with the filter (datasets don't match)": [ - "Ця діаграма може бути несумісною з фільтром (набори даних не відповідають)" + "No annotation layers": ["Ніяких шарів анотації"], + "Add an annotation layer": ["Додайте шар анотації"], + "Annotation layer": ["Анотаційний шар"], + "Select the Annotation Layer you would like to use.": [ + "Виберіть шар анотації, який ви хочете використовувати." ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "Цей тип діаграми не підтримується при використанні незбереженого запиту як джерела діаграми. " + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "Використовуйте іншу існуючу діаграму як джерело для анотацій та накладок.\n Ваша діаграма повинна бути одним із цих типів візуалізації: [%s]" ], - "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ - "Ця кольорова гамма перекривається за допомогою спеціальних кольорів етикетки.\n Перевірте метадані JSON у розширених налаштуваннях" + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ + "Очікує формули з параметром залежно від часу 'x'\n У мілісекундах з моменту епохи. MathJS використовується для оцінки формул.\n Приклад: '2x+5'" ], - "This column might be incompatible with current dataset": [ - "Цей стовпець може бути несумісним з поточним набором даних" + "Annotation layer value": ["Значення шару анотації"], + "Bad formula.": ["Погана формула."], + "Annotation Slice Configuration": ["Конфігурація анотаційних шматочків"], + "This section allows you to configure how to use the slice\n to generate annotations.": [ + "Цей розділ дозволяє налаштувати, як користуватися шматочком\n генерувати анотації." ], + "Annotation layer time column": ["Стовпчик часу анотації"], + "Interval start column": ["Стовпчик запуску інтервалу"], + "Event time column": ["Стовпчик часу події"], "This column must contain date/time information.": [ "Цей стовпець повинен містити інформацію про дату/час." ], + "Annotation layer interval end": ["Анотаційний шар інтервалу кінця"], + "Interval End column": ["Інтервальний кінцевий стовпчик"], + "Annotation layer title column": ["Стовпчик заголовка шару анотації"], + "Title Column": ["Стовпчик заголовок"], + "Pick a title for you annotation.": [ + "Виберіть заголовок для вас анотацію." + ], + "Annotation layer description columns": ["Анотація Шар Опис Стовпці"], + "Description Columns": ["Опис стовпців"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "Виберіть один або кілька стовпців, які слід показати в анотації. Якщо ви не вибрали стовпець, всі вони будуть показані." + ], + "Override time range": ["Переоцінка часового діапазону"], "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ "Це контролює, чи поле \"time_range\" з струму\n Переглянути слід передати на діаграму, що містить дані анотації." ], + "Override time grain": ["Переоцінка зерна часу"], "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "Це контролює, чи час зерна з струму\n Переглянути слід передати на діаграму, що містить дані анотації." ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "На даний момент ця інформаційна панель автоматично освіжає; Наступне автоматичне оновлення буде у %s." - ], - "This dashboard is managed externally, and can't be edited in Superset": [ - "Ця інформаційна панель керує зовні, і не може бути відредагована в суперсеті" + "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ + "Дельта часу на природній мові\n (Приклад: 24 години, 7 днів, 56 тижнів, 365 днів)" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "Ця інформаційна панель не опублікована, що означає, що вона не з’явиться у списку інформаційних панелей. Улюблене його, щоб побачити його там або отримати доступ, використовуючи URL -адресу безпосередньо." + "Display configuration": ["Конфігурація відображення"], + "Configure your how you overlay is displayed here.": [ + "Налаштуйте, як тут відображається накладка." ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "Ця інформаційна панель не опублікована, вона не з’явиться у списку інформаційних панелей. Клацніть тут, щоб опублікувати цю інформаційну панель." - ], - "This dashboard is now hidden": [ - "Ця інформаційна панель зараз прихована" + "Annotation layer stroke": ["Анотаційний шлюб"], + "Style": ["Стиль"], + "Solid": ["Суцільний"], + "Dashed": ["Бридкий"], + "Long dashed": ["Довгий пункт"], + "Dotted": ["Пунктирний"], + "Annotation layer opacity": ["Анотація Шар непрозорості"], + "Color": ["Забарвлення"], + "Automatic Color": ["Автоматичний колір"], + "Shows or hides markers for the time series": [ + "Показує або приховує маркери для часових рядів" ], - "This dashboard is now published": [ - "Ця інформаційна панель зараз опублікована" + "Hide Line": ["Приховувати лінію"], + "Hides the Line for the time series": [ + "Приховує лінію для часових рядів" ], - "This dashboard is published. Click to make it a draft.": [ - "Ця інформаційна панель опублікована. Клацніть, щоб зробити це проектом." + "Layer configuration": ["Конфігурація шару"], + "Configure the basics of your Annotation Layer.": [ + "Налаштуйте основи вашого шару анотації." ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ - "Ця інформаційна панель готова до вбудовування. У своїй заявці передайте наступний ідентифікатор SDK:" + "Mandatory": ["Обов'язковий"], + "Hide layer": ["Сховати шар"], + "Show label": ["Лейбл шоу"], + "Whether to always show the annotation label": [ + "Чи завжди показувати анотаційну етикетку" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "Ця інформаційна панель була змінена нещодавно. Будь ласка, перезавантажте інформаційну панель, щоб отримати останню версію." + "Annotation layer type": ["Тип шару анотації"], + "Choose the annotation layer type": ["Виберіть тип шару анотації"], + "Annotation source type": ["Тип джерела анотації"], + "Choose the source of your annotations": [ + "Виберіть джерело своїх анотацій" ], - "This dashboard was saved successfully.": [ - "Ця інформаційна панель була успішно збережена." + "Annotation source": ["Джерело анотації"], + "Remove": ["Видалити"], + "Time series": ["Часовий ряд"], + "Edit annotation layer": ["Редагувати шар анотації"], + "Add annotation layer": ["Додайте шар анотації"], + "Empty collection": ["Порожня колекція"], + "Add an item": ["Додайте предмет"], + "Remove item": ["Видаліть елемент"], + "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ + "Ця кольорова гамма перекривається за допомогою спеціальних кольорів етикетки.\n Перевірте метадані JSON у розширених налаштуваннях" ], - "This database is managed externally, and can't be edited in Superset": [ - "Ця база даних керує зовні, і не може бути відредагована в суперсеті" + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "Колірна гамма визначається спорідненою інформаційною панеллю.\n Відредагуйте кольорову гаму у властивостях приладної панелі." ], - "This database table does not contain any data. Please select a different table.": [ - "Ця таблиця баз даних не містить жодних даних. Виберіть іншу таблицю." + "dashboard": ["панель приладів"], + "Dashboard scheme": ["Схема інформаційної панелі"], + "Select color scheme": ["Виберіть кольорову гаму"], + "Select scheme": ["Виберіть схему"], + "Show less columns": ["Показати менше стовпців"], + "Show all columns": ["Показати всі стовпці"], + "Fraction digits": ["Фракційні цифри"], + "Number of decimal digits to round numbers to": [ + "Кількість десяткових цифр до круглих чисел до" ], - "This dataset is managed externally, and can't be edited in Superset": [ - "Цей набір даних керує зовні, і його не можна редагувати в суперсеті" + "Min Width": ["Мінина ширина"], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "Мінімальна ширина стовпців за замовчуванням у пікселях фактична ширина все ще може бути більша, ніж це, якщо іншим стовпцям не потрібно багато місця" ], - "This dataset is not used to power any charts.": [ - "Цей набір даних не використовується для живлення будь -яких діаграм." + "Text align": ["Текст вирівнює"], + "Horizontal alignment": ["Горизонтальне вирівнювання"], + "Show cell bars": ["Показати стільникові смуги"], + "Whether to align positive and negative values in cell bar chart at 0": [ + "Чи вирівнювати позитивні та негативні значення в діаграмі клітинної штрих на 0" ], - "This defines the element to be plotted on the chart": [ - "Це визначає елемент, який потрібно побудувати на діаграмі" + "Whether to colorize numeric values by if they are positive or negative": [ + "Будьте кольорові числові значення, якщо вони є позитивними чи негативними" ], - "This defines the level of the hierarchy": [ - "Це визначає рівень ієрархії" + "Truncate Cells": ["Усікатні клітини"], + "Truncate long cells to the \"min width\" set above": [ + "Урізати довгі клітини до встановленої вище “min width”" ], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "Ця поля діє на суперсетний вигляд, що означає, що Superset буде виконувати запит проти цього рядка як підзапит." + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ + "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "Цей фільтр не існує на інформаційній панелі. Це не буде застосовуватися." + "Small number format": ["Формат невеликого числа"], + "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers": [ + "Формат чисел D3 для чисел між -1,0 до 1,0, корисний, коли ви хочете мати різні значні цифри для невеликої та великої кількості" ], - "This filter might be incompatible with current dataset": [ - "Цей фільтр може бути несумісним із поточним набором даних" + "Edit formatter": ["Редагувати форматер"], + "Add new formatter": ["Додати новий форматер"], + "Add new color formatter": ["Додайте новий кольоровий форматер"], + "alert": ["насторожений"], + "error": ["помилка"], + "success dark": ["успіх темний"], + "alert dark": ["насторожити темно"], + "error dark": ["помилка темна"], + "This value should be smaller than the right target value": [ + "Це значення повинно бути меншим, ніж правильне цільове значення" ], - "This filter set is identical to: \"%s\"": [ - "Цей набір фільтра ідентичний: \"%s\"" + "This value should be greater than the left target value": [ + "Це значення повинно бути більшим, ніж ліве цільове значення" ], - "This functionality is disabled in your environment for security reasons.": [ - "Ця функціональність відключена у вашому середовищі з міркувань безпеки." + "Required": ["Вимагається"], + "Operator": ["Оператор"], + "Left value": ["Ліва цінність"], + "Right value": ["Правильне значення"], + "Target value": ["Цільове значення"], + "Select column": ["Виберіть стовпець"], + "Lower threshold must be lower than upper threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" + ], + "The lower limit of the threshold range of the Isoband": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["Редагувати набір даних"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ + "Ви повинні бути власником набору даних для редагування. Будь ласка, зверніться до власника набору даних, щоб вимагати модифікацій або редагувати доступ." ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "Це умова, яка буде додана до пункту «Де». Наприклад, щоб повернути лише рядки для певного клієнта, ви можете визначити звичайний фільтр із пунктом `client_id = 9`. Щоб не відображати рядків, якщо користувач не належить до ролі фільтра RLS, базовий фільтр може бути створений із пунктом `1 = 0` (завжди помилково)." + "View in SQL Lab": ["Переглянути в лабораторії SQL"], + "Query preview": ["Попередній перегляд запитів"], + "Save as dataset": ["Збережіть як набір даних"], + "Missing URL parameters": ["Відсутні параметри URL -адреси"], + "The URL is missing the dataset_id or slice_id parameters.": [ + "У URL -адреси відсутні параметри DataSet_ID або Slice_ID." ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "Цей об’єкт JSON описує позиціонування віджетів на приладовій панелі. Він динамічно генерується при регулюванні розміру та позицій віджетів, використовуючи перетягування в інформаційній панелі" + "The dataset linked to this chart may have been deleted.": [ + "Набір даних, пов'язаний з цією діаграмою, можливо, був видалений." ], - "This markdown component has an error.": [ - "Цей компонент відмітки має помилку." + "RANGE TYPE": ["Тип дальності"], + "Actual time range": ["Фактичний часовий діапазон"], + "APPLY": ["Застосовувати"], + "Edit time range": ["Редагувати часовий діапазон"], + "Configure Advanced Time Range ": [ + "Налаштування розширеного діапазону часу " ], - "This markdown component has an error. Please revert your recent changes.": [ - "Цей компонент відмітки має помилку. Будь ласка, поверніть свої останні зміни." + "START (INCLUSIVE)": ["Почати (включно)"], + "Start date included in time range": [ + "Дата початку, що входить у часовий діапазон" ], - "This may be triggered by:": ["Це може бути спровоковано:"], - "This metric might be incompatible with current dataset": [ - "Цей показник може бути несумісним із поточним набором даних" + "END (EXCLUSIVE)": ["Кінець (ексклюзивний)"], + "End date excluded from time range": [ + "Дата закінчення виключається з часового діапазону" ], - "This section allows you to configure how to use the slice\n to generate annotations.": [ - "Цей розділ дозволяє налаштувати, як користуватися шматочком\n генерувати анотації." + "Configure Time Range: Previous...": [ + "Налаштування діапазону часу: Попередній ..." ], - "This section contains options that allow for advanced analytical post processing of query results": [ - "Цей розділ містить варіанти, які дозволяють отримати розширену аналітичну обробку результатів запитів" + "Configure Time Range: Last...": [ + "Налаштування діапазону часу: Останнє ..." ], - "This section contains validation errors": [ - "Цей розділ містить помилки перевірки" + "Configure custom time range": ["Налаштуйте спеціальний діапазон часу"], + "Relative quantity": ["Відносна кількість"], + "Relative period": ["Відносний період"], + "Anchor to": ["Прив’язати до"], + "NOW": ["Тепер"], + "Date/Time": ["Дата, час"], + "Return to specific datetime.": ["Повернення до конкретного часу."], + "Syntax": ["Синтаксис"], + "Example": ["Приклад"], + "Moves the given set of dates by a specified interval.": [ + "Переміщує заданий набір дати заданим інтервалом." ], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ - "Цей сеанс зіткнувся з перериванням, і деякі елементи управління можуть не працювати за призначенням. Якщо ви розробник цього додатка, будь ласка, перевірте, чи правильно генерується маркер." + "Truncates the specified date to the accuracy specified by the date unit.": [ + "Обрізає вказану дату до точності, визначеної одиницею дати." ], - "This table already has a dataset": ["Ця таблиця вже має набір даних"], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ - "У цій таблиці вже є набір даних, пов'язаний з ним. Ви можете асоціювати лише один набір даних із таблицею.\n" + "Get the last date by the date unit.": [ + "Отримайте останню дату до одиниці дати." ], - "This value should be greater than the left target value": [ - "Це значення повинно бути більшим, ніж ліве цільове значення" + "Get the specify date for the holiday": [ + "Отримайте дату вказати на свято" ], - "This value should be smaller than the right target value": [ - "Це значення повинно бути меншим, ніж правильне цільове значення" + "Previous": ["Попередній"], + "Custom": ["Звичайний"], + "last day": ["останній день"], + "last week": ["минулого тижня"], + "last month": ["минулого місяця"], + "last quarter": ["останній чверть"], + "last year": ["минулого року"], + "previous calendar week": ["попередній календарний тиждень"], + "previous calendar month": ["попередній календарний місяць"], + "previous calendar year": ["попередній календарний рік"], + "Seconds %s": ["Секунди %s"], + "Minutes %s": ["Хвилини %s"], + "Hours %s": ["Години %s"], + "Days %s": ["Дні %s"], + "Weeks %s": ["Тиждень %s"], + "Months %s": ["Місяці %s"], + "Quarters %s": ["Квартали %s"], + "Years %s": ["Роки %s"], + "Specific Date/Time": ["Конкретна дата/час"], + "Relative Date/Time": ["Відносна дата/час"], + "Now": ["Тепер"], + "Midnight": ["Опівночі"], + "Saved expressions": ["Збережені вирази"], + "Saved": ["Врятований"], + "%s column(s)": ["%s стовпці"], + "No temporal columns found": ["Не знайдено тимчасових стовпців"], + "No saved expressions found": ["Збережених виразів не знайдено"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ + "Додайте обчислені тимчасові стовпці до набору даних у модалі \"редагувати дані\"" ], - "This visualization type does not support cross-filtering.": [ - "Цей тип візуалізації не підтримує перехресне фільтрування." + "Add calculated columns to dataset in \"Edit datasource\" modal": [ + "Додайте обчислені стовпці до набору даних у модалі \"Редагувати DataSource\"" ], - "This visualization type is not supported.": [ - "Цей тип візуалізації не підтримується." + " to mark a column as a time column": [ + " Щоб позначити стовпець як стовпчик часу" ], - "This was triggered by:": ["Це викликало:"], - "This will remove your current embed configuration.": [ - "Це видалить вашу поточну вбудовану конфігурацію." + " to add calculated columns": [" Для додавання обчислених стовпців"], + "Simple": ["Простий"], + "Mark a column as temporal in \"Edit datasource\" modal": [ + "Позначте стовпець як тимчасовий у модальному режимі \"редагувати дані\"" ], - "Threshold alpha level for determining significance": [ - "Пороговий рівень альфа для визначення значущості" + "Custom SQL": ["Спеціальний SQL"], + "My column": ["Моя колонка"], + "This filter might be incompatible with current dataset": [ + "Цей фільтр може бути несумісним із поточним набором даних" ], - "Threshold value should be double precision number": [ - "Порогове значення повинно бути подвійним точним номером" + "This column might be incompatible with current dataset": [ + "Цей стовпець може бути несумісним з поточним набором даних" ], - "Thumbnails": ["Мініатюри"], - "Thursday": ["Четвер"], - "Time": ["Час"], - "Time Column": ["Стовпчик часу"], - "Time Comparison": ["Порівняння часу"], - "Time Format": ["Формат часу"], - "Time Grain": ["Зерно часу"], - "Time Granularity": ["Час деталізація"], - "Time Lag": ["Затримка"], - "Time Range": ["Часовий діапазон"], - "Time Ratio": ["Співвідношення часу"], - "Time Series": ["Часовий ряд"], - "Time Series - Bar Chart": ["Часові серії - Барна діаграма"], - "Time Series - Dual Axis Line Chart": [ - "Часовий ряд - діаграма подвійної осі" + "Drop a column here or click": ["Зайдіть сюди або натисніть кнопку"], + "Click to edit label": ["Клацніть, щоб редагувати мітку"], + "Drop columns/metrics here or click": [ + "Спустіть тут стовпці/метрики або натисніть" ], - "Time Series - Line Chart": ["Часовий ряд - Лінійна діаграма"], - "Time Series - Multiple Line Charts": [ - "Часові серії - кілька рядків рядків" + "This metric might be incompatible with current dataset": [ + "Цей показник може бути несумісним із поточним набором даних" ], - "Time Series - Nightingale Rose Chart": [ - "Часові серії - Соловейна діаграма троянд" + "Drop a column/metric here or click": [ + "Спустіть сюди стовпець/метрику або натисніть" ], - "Time Series - Paired t-test": ["Часовий ряд - парний t -тест"], - "Time Series - Percent Change": ["Часовий ряд - відсоток зміни"], - "Time Series - Period Pivot": ["Часовий ряд - Період"], - "Time Series - Stacked": ["Часовий ряд - складений"], - "Time Series Options": ["Параметри часових рядів"], - "Time Shift": ["Зрушення в часі"], - "Time Table View": ["Перегляд таблиці часу"], - "Time column": ["Стовпчик часу"], - "Time column \"%(col)s\" does not exist in dataset": [ - "Стовпчик часу “%(col)s” не існує в наборі даних" - ], - "Time column filter plugin": ["Плагін фільтра у стовпці часу"], - "Time column to apply dependent temporal filter to": [ - "Стовпчик часу для застосування залежного тимчасового фільтра до" - ], - "Time column to apply time range to": [ - "Стовпчик часу, щоб застосувати часовий діапазон до" - ], - "Time comparison": ["Порівняння часу"], - "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ - "Дельта часу на природній мові\n (Приклад: 24 години, 7 днів, 56 тижнів, 365 днів)" - ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Дельта часу неоднозначна. Будь ласка, вкажіть [%(human_readable)s тому] або [%(human_readable)s пізніше]." - ], - "Time filter": ["Час фільтр"], - "Time format": ["Формат часу"], - "Time grain": ["Зерно часу"], - "Time grain filter plugin": ["Плагін зерна зерна"], - "Time grain missing": ["Часове зерно відсутнє"], - "Time granularity": ["Час деталізація"], - "Time in seconds": ["Час за секундами"], - "Time lag": ["Затримка"], - "Time range": ["Часовий діапазон"], - "Time ratio": ["Співвідношення часу"], - "Time related form attributes": ["Атрибути, пов’язані з часом"], - "Time series": ["Часовий ряд"], - "Time series columns": ["Стовпці часових рядів"], - "Time shift": ["Зрушення в часі"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "Рядок часу неоднозначний. Будь ласка, вкажіть [%(human_readable)s тому] або [%(human_readable)s пізніше]." - ], - "Time-series Area Chart": ["Діаграма району часових рядів"], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "Діаграма області часових рядів схожа на лінійну діаграму тим, що вони представляють змінні з однаковою шкалою, але діаграми області складають показники один до одного. Діаграма області в суперсеті може бути потоком, стеком або розширенням." - ], - "Time-series Bar Chart": ["Діаграма штрих часу"], - "Time-series Bar Chart (legacy)": ["Діаграма штрих часу (Legacy)"], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Діаграми часових рядів використовуються для показу змін у метриці з часом як серія барів." - ], - "Time-series Chart": ["Діаграма часових рядів"], - "Time-series Line Chart": ["Лінійна діаграма часових рядів"], - "Time-series Percent Change": ["Зміна відсотків часових рядів"], - "Time-series Period Pivot": ["Часові періоди періоду повороту"], - "Time-series Scatter Plot": ["Сорія розкидання сюжету"], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "Ділянка розсіювання часових рядів має час на горизонтальній осі в лінійних одиницях, а точки з'єднані в порядку. Він показує статистичну залежність між двома змінними." - ], - "Time-series Smooth Line": ["Гладка лінія часових рядів"], - "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ - "Гладка лінія часових рядів-це варіація лінійної діаграми. Без кутів і жорстких країв, гладка лінія іноді виглядає розумнішими та професійнішими." - ], - "Time-series Stepped Line": ["Серія часу ступінчаста лінія"], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "Поступається графік часових рядів (також називається крок діаграми)-це варіація лінійної діаграми, але з лінією, що утворює ряд кроків між точками даних. Крок діаграми може бути корисною, коли ви хочете показати зміни, які відбуваються з нерегулярними інтервалами." - ], - "Time-series Table": ["Таблиця часових рядів"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "Лінійна діаграма часових рядів використовується для візуалізації повторних вимірювань, здійснених через регулярні інтервали часу. Лінійна діаграма - це тип діаграми, яка відображає інформацію як ряд точок даних, підключених за допомогою прямих сегментів. Це основний тип діаграми, поширений у багатьох полях." + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "\n Цей фільтр був успадкований із контексту панелі приладної панелі.\n Це не буде збережено під час збереження діаграми.\n " ], - "Timeout error": ["Помилка тайм -ауту"], - "Timestamp format": ["Формат часової позначки"], - "Timezone": ["Часовий пояс"], - "Timezone offset (in hours) for this datasource": [ - "Зсув часового поясу (у годинах) для цього даних" + "%s option(s)": ["%s варіант(и)"], + "Select subject": ["Виберіть тему"], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "Такого стовпця не знайдено. Щоб фільтрувати метрику, спробуйте спеціальну вкладку SQL." ], - "Timezone selector": ["Вибір часу"], - "Tiny": ["Крихітний"], - "Title": ["Титул"], - "Title Column": ["Стовпчик заголовок"], - "Title is required": ["Потрібна назва"], - "Title or Slug": ["Назва або слим"], "To filter on a metric, use Custom SQL tab.": [ "Щоб фільтрувати метрику, використовуйте власну вкладку SQL." ], - "To get a readable URL for your dashboard": [ - "Щоб отримати читабельну URL адресу для вашої інформаційної панелі" - ], - "Tools": ["Інструменти"], - "Tooltip": ["Підказка"], - "Tooltip sort by metric": ["Сортування підказок за метрикою"], - "Tooltip time format": ["Формат часу підказки"], - "Top": ["Топ"], - "Top left": ["Зверху ліворуч"], - "Top right": ["Праворуч зверху"], - "Top to Bottom": ["Зверху вниз"], - "Total": ["Загальний"], - "Total (%(aggfunc)s)": ["Всього (%(aggfunc)s)"], - "Total (%(aggregatorName)s)": ["Всього (%(aggregatorName)s)"], - "Total value": ["Загальна вартість"], - "Total: %s": ["Всього: %s"], - "Totals": ["Підсумки"], - "Track job": ["Відстежувати"], - "Transformable": ["Перетворений"], - "Transparent": ["Прозорий"], - "Transpose pivot": ["Перекладіть поворот"], - "Tree Chart": ["Деревна діаграма"], - "Tree layout": ["Макет дерева"], - "Tree orientation": ["Орієнтація на дерева"], - "Treemap": ["Подумати"], - "Trend": ["Тенденція"], - "Triangle": ["Трикутник"], - "Trigger Alert If...": ["Тригер, якщо ..."], - "Truncate Axis": ["Усікатна вісь"], - "Truncate Cells": ["Усікатні клітини"], - "Truncate Metric": ["Укорочений метрик"], - "Truncate Y Axis": ["Укорочення y вісь"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "Укоротився вісь. Можна перекрити, вказавши мінімальну або максимальну межу." + "%s operator(s)": ["%s Оператор(и)"], + "Select operator": ["Виберіть оператор"], + "Comparator option": ["Параметр порівняння"], + "Type a value here": ["Введіть тут значення"], + "Filter value (case sensitive)": [ + "Значення фільтра (чутливе до випадку)" ], - "Truncate long cells to the \"min width\" set above": [ - "Урізати довгі клітини до встановленої вище “min width”" + "Failed to retrieve advanced type": [ + "Не вдалося отримати розширений тип" ], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "Обрізає вказану дату до точності, визначеної одиницею дати." + "choose WHERE or HAVING...": ["виберіть WHERE або HAVING ..."], + "Filters by columns": ["Фільтри за колонками"], + "Filters by metrics": ["Фільтри за метриками"], + "metric": ["метричний"], + "Fixed": ["Нерухомий"], + "Based on a metric": ["На основі метрики"], + "My metric": ["Мій показник"], + "Add metric": ["Додати показник"], + "Select aggregate options": ["Виберіть параметри сукупності"], + "%s aggregates(s)": ["%s агреговані"], + "Select saved metrics": ["Виберіть Збережена показниця"], + "%s saved metric(s)": ["%s збережені метрики"], + "Saved metric": ["Збережені метрики"], + "No saved metrics found": ["Збережених показників не знайдено"], + "Add metrics to dataset in \"Edit datasource\" modal": [ + "Додайте показники до набору даних у модал \"Редагувати DataSource\"" ], - "Try applying different filters or ensuring your datasource has data": [ - "Спробуйте застосувати різні фільтри або забезпечити, щоб ваш DataSource має дані" + " to add metrics": [" Додати показники"], + "Simple ad-hoc metrics are not enabled for this dataset": [ + "Прості спеціальні показники не ввімкнено для цього набору даних" ], - "Try different criteria to display results.": [ - "Спробуйте різні критерії для відображення результатів." + "column": ["стовпчик"], + "aggregate": ["сукупний"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "Спеціальні спеціальні показники SQL не ввімкнено для цього набору даних" ], - "Try selecting a different schema": ["Спробуйте вибрати іншу схему"], - "Tuesday": ["У вівторок"], - "Tukey": ["Тюкі"], - "Type": ["Тип"], - "Type \"%s\" to confirm": ["Введіть “%s” для підтвердження"], - "Type a value": ["Введіть значення"], - "Type a value here": ["Введіть тут значення"], - "Type is required": ["Потрібен тип"], - "Type of Google Sheets allowed": ["Тип аркушів Google дозволено"], + "Error while fetching data: %s": ["Помилка під час отримання даних: %s"], + "Time series columns": ["Стовпці часових рядів"], + "Actual value": ["Фактичне значення"], + "Sparkline": ["Іскрова лінія"], + "Period average": ["Середній період"], + "The column header label": ["Мітка заголовка стовпчика"], + "Column header tooltip": ["Підказка заголовка стовпців"], "Type of comparison, value difference or percentage": [ "Тип порівняння, різниця у цінності або відсоток" ], - "Type or Select [%s]": ["Введіть або виберіть [%s]"], - "UI Configuration": ["Конфігурація інтерфейсу"], - "URL": ["URL"], - "URL Parameters": ["Параметри URL -адреси"], - "URL parameters": ["Параметри URL -адреси"], - "URL slug": ["URL -адреса"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "Неможливо додати нову вкладку до бекенду. Зверніться до свого адміністратора." - ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "Неможливо підключитися до каталогу під назвою “%(catalog_name)s”." - ], - "Unable to connect to database \"%(database)s\".": [ - "Неможливо підключитися до бази даних “%(database)s”." - ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "Не може підключитися. Переконайтеся, що на обліковому записі служби встановлюються такі ролі: \"Переглядач даних BigQuery\", \"Переглядач метаданих BigQuery\", \"Користувач роботи з великою роботою\" та наступні дозволи встановлюються \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" - ], - "Unable to create chart without a query id.": [ - "Неможливо створити діаграму без ідентифікатора запиту." - ], - "Unable to decode value": ["Не в змозі розшифрувати значення"], - "Unable to encode value": ["Неможливо кодувати значення"], - "Unable to find such a holiday: [%(holiday)s]": [ - "Не в змозі знайти таке свято: [%(holiday)s]" - ], - "Unable to load columns for the selected table. Please select a different table.": [ - "Неможливо завантажити стовпці для вибраної таблиці. Виберіть іншу таблицю." - ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Не в змозі перенести державу редактора запитів, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." + "Width": ["Ширина"], + "Width of the sparkline": ["Ширина іскрової лінії"], + "Height of the sparkline": ["Висота іскрової лінії"], + "Time lag": ["Затримка"], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Не в змозі перенести державу запитів, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." + "Time Lag": ["Затримка"], + "Time ratio": ["Співвідношення часу"], + "Number of periods to ratio against": [ + "Кількість періодів до співвідношення проти" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "Не в змозі перенести схему таблиці схеми, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." + "Time Ratio": ["Співвідношення часу"], + "Show Y-axis": ["Показати вісь Y"], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "Покажіть осі Y на Sparkline. Відобразить вручну встановити min/max, якщо встановити значення або min/max значення в даних в іншому випадку." ], - "Unable to retrieve dashboard colors": [ - "Не в змозі отримати кольори панелі панелі" + "Y-axis bounds": ["Y-осі межі"], + "Manually set min/max values for the y-axis.": [ + "Вручну встановити значення min/max для осі y." ], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Неможливо завантажити файл CSV “%(filename)s” до таблиці “%(table_name)s” в базі даних “%(db_name)s”. Повідомлення про помилку: %(error_msg)s" + "Color bounds": ["Кольорові межі"], + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Межі числа, що використовуються для кодування кольору від червоного до синього.\n Поверніть числа для синього до червоного. Щоб отримати чистий червоний або синій,\n Ви можете ввести лише хв, або максимум." ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Не в змозі завантажити стовпчастий файл “%(filename)s” до таблиці “%(table_name)s\" в базі даних “%(db_name)s\". Повідомлення про помилку: %(error_msg)s" + "Optional d3 number format string": [ + "Необов’язковий рядок формату числа D3" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Неможливо завантажити файл Excel “%(filename)s” до таблиці “%(table_name)s” в базі даних “%(db_name)s\". Повідомлення про помилку: %(error_msg)s" + "Number format string": ["Рядок формату числа"], + "Optional d3 date format string": ["Необов’язковий рядок формату D3 D3"], + "Date format string": ["Рядок формату дати"], + "Column Configuration": ["Конфігурація стовпців"], + "Select Viz Type": ["Виберіть тип ITE"], + "Currently rendered: %s": ["В даний час надано: %s"], + "Recommended tags": ["Рекомендовані теги"], + "Search all charts": ["Шукайте всі діаграми"], + "No description available.": ["Опис не доступний."], + "Examples": ["Приклади"], + "This visualization type is not supported.": [ + "Цей тип візуалізації не підтримується." ], - "Undefined": ["Невизначений"], - "Undefined window for rolling operation": [ - "Невизначене вікно для операції прокатки" + "View all charts": ["Переглянути всі діаграми"], + "Select a visualization type": ["Виберіть тип візуалізації"], + "No results found": ["Нічого не знайдено"], + "Superset Chart": ["Суперсетна діаграма"], + "New chart": ["Нова діаграма"], + "Edit chart properties": ["Редагувати властивості діаграми"], + "Dashboards added to": ["Дашборди були додані до"], + "Export to original .CSV": ["Експорт до оригіналу .csv"], + "Export to pivoted .CSV": ["Експорт до повороту .csv"], + "Export to .JSON": ["Експорт до .json"], + "Embed code": ["Вбудувати код"], + "Run in SQL Lab": ["Запустити в SQL Lab"], + "Code": ["Кодування"], + "Markup type": ["Тип розмітки"], + "Pick your favorite markup language": ["Виберіть улюблену мову розмітки"], + "Put your code here": ["Покладіть свій код сюди"], + "URL parameters": ["Параметри URL -адреси"], + "Extra parameters for use in jinja templated queries": [ + "Додаткові параметри для використання в шаблонних запитах Jinja" ], - "Undo the action": ["Скасувати дію"], - "Undo?": ["Скасувати?"], - "Unexpected error": ["Неочікувана помилка"], - "Unexpected error occurred, please check your logs for details": [ - "Сталася несподівана помилка, будь ласка, перевірте свої журнали на детальну інформацію" + "Annotations and layers": ["Анотації та шари"], + "Annotation layers": ["Анотаційні шари"], + "My beautiful colors": ["Мої прекрасні кольори"], + "< (Smaller than)": ["<(Менше, ніж)"], + "> (Larger than)": ["> (Більше, ніж)"], + "<= (Smaller or equal)": ["<= (Менший або рівний)"], + ">= (Larger or equal)": ["> = (Більший або рівний)"], + "== (Is equal)": ["== (рівний)"], + "!= (Is not equal)": ["! = (Не рівний)"], + "Not null": ["Не нульовий"], + "60 days": ["60 днів"], + "90 days": ["90 днів"], + "Add notification method": ["Додайте метод сповіщення"], + "Add delivery method": ["Додайте метод доставки"], + "Add": ["Додавання"], + "Edit Report": ["Редагувати звіт"], + "Edit Alert": ["Редагувати попередження"], + "Add Report": ["Додайте звіт"], + "Add Alert": ["Додати сповіщення"], + "Report name": ["Назва звіту"], + "Alert name": ["Ім'я сповіщення"], + "Active": ["Активний"], + "Alert condition": ["Умова попередження"], + "SQL Query": ["SQL -запит"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["Тригер, якщо ..."], + "Condition": ["Хвороба"], + "Report schedule": ["Розклад звіту"], + "Alert condition schedule": ["Розклад умови попередження"], + "Timezone": ["Часовий пояс"], + "Schedule settings": ["Налаштування розкладу"], + "Log retention": ["Затримка журналу"], + "Working timeout": ["Робочий таймаут"], + "Time in seconds": ["Час за секундами"], + "seconds": ["секунди"], + "Grace period": ["Період витонченості"], + "Message content": ["Вміст повідомлення"], + "Send as PNG": ["Надіслати як PNG"], + "Send as CSV": ["Надіслати як CSV"], + "Send as text": ["Надіслати як текст"], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["Метод сповіщення"], + "report": ["доповідь"], + "%s updated": ["%s оновлено"], + "CRON Schedule": ["Графік крон"], + "CRON expression": ["Вираження крон"], + "Report sent": ["Звіт надісланий"], + "Alert triggered, notification sent": [ + "Попередження, спрацьоване, повідомлення надіслано" ], - "Unexpected error: ": ["Неочікувана помилка: "], - "Unexpected time range: %s": ["Несподіваний часовий діапазон: %s"], - "Unknown": ["Невідомий"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "Невідомий хост MySQL Server “%(hostname)s”." + "Report sending": ["Надсилання звітів"], + "Alert running": ["Попередження"], + "Report failed": ["Звіт не вдалося"], + "Alert failed": ["Попередження не вдалося"], + "Nothing triggered": ["Ніщо не спрацювало"], + "Alert Triggered, In Grace Period": [ + "Попередження, спрацьоване, в пільговий період" ], - "Unknown Presto Error": ["Невідома помилка Престо"], - "Unknown Status": ["Невідомий статус"], - "Unknown column used in orderby: %(col)s": [ - "Невідомий стовпчик, що використовується в порядку: %(col)s" + "Delivery method": ["Метод доставки"], + "Select Delivery Method": ["Виберіть метод доставки"], + "Recipients are separated by \",\" or \";\"": [ + "Одержувачі розділені \",\" або \";\"" ], - "Unknown error": ["Невідома помилка"], - "Unknown input format": ["Невідомий формат введення"], - "Unknown type": ["Невідомий тип"], - "Unknown value": ["Невідоме значення"], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "Небезпечний тип повернення для функції %(func)s: %(value_type)s" + "Queries": ["Запити"], + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["анотація_layer"], + "Annotation template updated": ["Шаблон анотації оновлений"], + "Annotation template created": ["Створений шаблон анотації"], + "Edit annotation layer properties": [ + "Редагувати властивості шару анотації" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "Небезпечне значення шаблону для ключа %(key)s: %(value_type)s" + "Annotation layer name": ["Назва шару анотації"], + "Description (this can be seen in the list)": [ + "Опис (це можна побачити у списку)" ], - "Unsupported clause type: %(clause)s": [ - "Небудова тип пункту: %(clause)s" + "annotation": ["анотація"], + "The annotation has been updated": ["Анотація оновлена"], + "The annotation has been saved": ["Анотація врятована"], + "Edit annotation": ["Редагувати анотацію"], + "Add annotation": ["Додати анотацію"], + "date": ["дата"], + "Additional information": ["Додаткова інформація"], + "Please confirm": ["Будь-ласка підтвердіть"], + "Are you sure you want to delete": ["Ви впевнені, що хочете видалити"], + "Modified %s": ["Модифіковані %s"], + "css_template": ["css_template"], + "Edit CSS template properties": ["Редагувати властивості шаблону CSS"], + "Add CSS template": ["Додайте шаблон CSS"], + "css": ["css"], + "published": ["опублікований"], + "draft": ["розтягувати"], + "Adjust how this database will interact with SQL Lab.": [ + "Відрегулюйте, як ця база даних буде взаємодіяти з лабораторією SQL." ], - "Unsupported post processing operation: %(operation)s": [ - "Непідтримувана операція після обробки: %(operation)s" + "Expose database in SQL Lab": ["Викрити базу даних у лабораторії SQL"], + "Allow this database to be queried in SQL Lab": [ + "Дозволити цю базу даних запитувати в лабораторії SQL" ], - "Unsupported return value for method %(name)s": [ - "Непідтримуване повернення значення для методу %(name)s" + "Allow creation of new tables based on queries": [ + "Дозволити створення нових таблиць на основі запитів" ], - "Unsupported template value for key %(key)s": [ - "Небудова значення шаблону для ключа %(key)s" + "Allow creation of new views based on queries": [ + "Дозволити створення нових поглядів на основі запитів" ], - "Unsupported time grain: %(time_grain)s": [ - "Непідтримуване зерно часу: %(time_grain)s" + "CTAS & CVAS SCHEMA": ["Схема CTAS & CVAS"], + "Create or select schema...": ["Створити або вибрати схему ..."], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "Примушіть всі таблиці та перегляди в цій схемі, натиснувши CTA або CVA в лабораторії SQL." ], - "Untitled Dataset": ["Без назви набору даних"], - "Untitled Query": ["Неправлений запит"], - "Untitled query": ["Неправлений запит"], - "Update": ["Оновлення"], - "Update chart": ["Оновлення діаграми"], - "Updating chart was stopped": ["Оновлення діаграми було припинено"], - "Upload": ["Завантажувати"], - "Upload CSV": ["Завантажте CSV"], - "Upload CSV to database": ["Завантажте CSV у базу даних"], - "Upload Credentials": ["Завантажити облікові дані"], - "Upload Enabled": ["Завантажити увімкнено"], - "Upload Excel file": ["Завантажте файл Excel"], - "Upload Excel file to database": ["Завантажте файл Excel у базу даних"], - "Upload JSON file": ["Завантажити файл JSON"], - "Upload columnar file": ["Завантажте стовпчастий файл"], - "Upload columnar file to database": [ - "Завантажте стовпчастий файл у базу даних" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Дозволити маніпулювання базою даних за допомогою операторів, що не вибирають, такі як оновлення, видалення, створення тощо." ], - "Upload file to database": ["Завантажте файл у базу даних"], - "Usage": ["Використання"], - "Use \"%(menuName)s\" menu instead.": [ - "Натомість використовуйте меню “%(menuName)s”." + "Enable query cost estimation": ["Увімкнути оцінку витрат на запит"], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "Для BigQuery, Presto та Postgres показує кнопку для обчислення вартості перед запуском запиту." ], - "Use %s to open in a new tab.": [ - "Використовуйте %s, щоб відкрити на новій вкладці." + "Allow this database to be explored": [ + "Дозволити досліджувати цю базу даних" ], - "Use Area Proportions": ["Використовуйте пропорції площі"], - "Use Columns": ["Використовуйте стовпці"], - "Use a log scale": ["Використовуйте шкалу журналу"], - "Use a log scale for the X-axis": [ - "Використовуйте шкалу журналу для осі x" + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "Коли ввімкнено, користувачі можуть візуалізувати результати SQL Lab в дослідженні." ], - "Use a log scale for the Y-axis": [ - "Використовуйте шкалу журналу для осі y" + "Disable SQL Lab data preview queries": [ + "Вимкнути запити попереднього перегляду даних SQL" ], - "Use an encrypted connection to the database": [ - "Використовуйте зашифроване з'єднання з базою даних" + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ + "Вимкнути попередній перегляд даних під час отримання метаданих таблиці в лабораторії SQL. Корисно, щоб уникнути проблем з продуктивністю браузера при використанні баз даних з дуже широкими таблицями." ], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ - "Використовуйте іншу існуючу діаграму як джерело для анотацій та накладок.\n Ваша діаграма повинна бути одним із цих типів візуалізації: [%s]" + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ + "" ], - "Use date formatting even when metric value is not a timestamp": [ - "Використовуйте форматування дати навіть тоді, коли метричне значення не є часовою позначкою" + "Performance": ["Виконання"], + "Adjust performance settings of this database.": [ + "Налаштуйте налаштування продуктивності цієї бази даних." ], - "Use legacy datasource editor": [ - "Використовуйте редактор Legacy DataSource" + "Chart cache timeout": ["ЧАС КАХ ЧАСУВАННЯ"], + "Enter duration in seconds": ["Введіть тривалість за лічені секунди"], + "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ + "Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних. Час очікування 0 вказує на те, що кеш ніколи не закінчується, і -1 обходить кеш. Зверніть увагу на це за замовчуванням до глобального тайм -ауту, якщо він не визначений." ], - "Use metrics as a top level group for columns or for rows": [ - "Використовуйте показники як групу вищого рівня для стовпців або для рядків" + "Schema cache timeout": ["Час очікування кешу схеми"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Тривалість (за лічені секунди) таймаут кешування метаданих для схем цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується." ], - "Use only a single value.": ["Використовуйте лише одне значення."], - "Use the Advanced Analytics options below": [ - "Використовуйте наведені нижче варіанти аналітики" + "Table cache timeout": ["Тайм -аут кешу таблиці"], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "Тривалість (за лічені секунди) таймаут кешування метаданих для таблиць цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується. " ], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "Використовуйте файл JSON, який ви автоматично завантажили під час створення облікового запису послуги." + "Asynchronous query execution": ["Асинхронне виконання запитів"], + "Cancel query on window unload event": [ + "Скасувати запит на подію Window Unload" ], - "Use the edit button to change this field": [ - "Використовуйте кнопку Редагувати, щоб змінити це поле" + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "Закінчуйте запущені запити, коли вікно браузера закрилося або орієнтувалося на іншу сторінку. Доступні для бази даних Presto, Hive, MySQL, Postgres та Snowflake." ], - "Use this section if you want a query that aggregates": [ - "Використовуйте цей розділ, якщо ви хочете запит, який агрегує" + "Add extra connection information.": [ + "Додайте додаткову інформацію про з'єднання." ], - "Use this section if you want to query atomic rows": [ - "Використовуйте цей розділ, якщо ви хочете запитувати атомні ряди" + "Secure extra": ["Забезпечити додаткове"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Рядок JSON, що містить додаткову конфігурацію з'єднання. Це використовується для надання інформації про з'єднання для таких систем, як Hive, Presto та BigQuery, які не відповідають імені користувача: синтаксис пароля, як правило, використовується SQLALCHEMY." ], - "Use this to define a static color for all circles": [ - "Використовуйте це для визначення статичного кольору для всіх кола" + "Enter CA_BUNDLE": ["Введіть ca_bundle"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "Необов’язковий вміст Ca_bundle для перевірки запитів HTTPS. Доступний лише в певних двигунах бази даних." ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "Використовується внутрішньо для ідентифікації плагіна. Має бути встановлено на ім'я пакету з пакету Plugin.json" + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "Видання себе в системі в системі (Presto, Trino, Drill, Hive та Gsheets)" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "Використовується для узагальнення набору даних шляхом групування кількох статистичних даних уздовж двох осей. Приклади: Номери продажів за регіоном та місяцем, завдання за статусом та правонаступником, активними користувачами за віком та місцезнаходженням. Не найбільш візуально приголомшлива візуалізація, але дуже інформативна та універсальна." + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "Якщо Presto або Trino, всі запити в лабораторії SQL будуть виконані як реєстрація в даний час користувачеві, який повинен мати дозвіл на їх запуск. Якщо hive and hive.server2.enable.doas увімкнено, запустить запити в якості облікового запису послуг, але представлять себе в даний час в даний час користувачеві через властивість hive.server2.proxy.user." ], - "User": ["Користувач"], - "User Roles": ["Ролі користувача"], - "User doesn't have the proper permissions.": [ - "Користувач не має належних дозволів." + "Allow file uploads to database": [ + "Дозволити завантаження файлів у базу даних" ], - "User must select a value before applying the filter": [ - "Користувач повинен вибрати значення перед застосуванням фільтра" + "Schemas allowed for File upload": [ + "Схеми дозволені для завантаження файлів" ], - "User must select a value for this filter": [ - "Користувач повинен вибрати значення для цього фільтра" + "A comma-separated list of schemas that files are allowed to upload to.": [ + "Список схем, відокремлений комами, до яких файли дозволяють завантажувати." ], - "User query": ["Запит користувача"], - "Username": ["Ім'я користувача"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "Використання оцінки щільності ядра Гаусса для візуалізації просторового розподілу даних" + "Additional settings.": ["Додаткові налаштування."], + "Metadata Parameters": ["Параметри метаданих"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "Об'єкт Metadata_Params розпаковується в дзвінок SQLALCHEMY.METADATA." ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "Використовує датчик для демонстрації прогресу метрики до цілі. Положення циферблату представляє прогрес, а значення терміналу в калібрі являє собою цільове значення." + "Engine Parameters": ["Параметри двигуна"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "Об'єкт Engine_Params розпаковується в дзвінок SQLALCHEMY.CREATE_ENGINE." ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "Використовує кола для візуалізації потоку даних через різні етапи системи. Наведіть курсор на окремі шляхи візуалізації, щоб зрозуміти етапи, які взяла значення. Корисно для багатоступеневої, багатогрупової візуалізації воронки та трубопроводів." + "Version": ["Версія"], + "Version number": ["Номер версії"], + "STEP %(stepCurr)s OF %(stepLast)s": ["Крок %(stepCurr)s %(stepLast)s"], + "Enter Primary Credentials": ["Введіть первинні дані"], + "Need help? Learn how to connect your database": [ + "Потрібна допомога? Дізнайтеся, як підключити базу даних" ], - "Value": ["Цінність"], - "Value Domain": ["Домен значення"], - "Value Format": ["Формат значення"], - "Value bounds": ["Значення цінності"], - "Value format": ["Формат значення"], - "Value is required": ["Значення потрібно"], - "Value must be greater than 0": ["Значення повинно бути більше 0"], - "Values are dependent on other filters": [ - "Значення залежать від інших фільтрів" - ], - "Values dependent on": ["Значення, залежні від"], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "Значення, вибрані в інших фільтрах, впливатимуть на параметри фільтра, щоб показати лише відповідні значення" - ], - "Vehicle Types": ["Типи транспортних засобів"], - "Verbose Name": ["Назва багатослів'я"], - "Version": ["Версія"], - "Version number": ["Номер версії"], - "Vertical": ["Вертикальний"], - "Vertical (Left)": ["Вертикальний (зліва)"], - "Video game consoles": ["Консолі відеоігор"], - "View": ["Переглянути"], - "View All »": ["Подивитись всі »"], - "View Dataset": ["Переглянути набір даних"], - "View all charts": ["Переглянути всі діаграми"], - "View as table": ["Переглянути як таблицю"], - "View in SQL Lab": ["Переглянути в лабораторії SQL"], - "View keys & indexes (%s)": ["Переглянути ключі та індекси (%s)"], - "View query": ["Переглянути запит"], - "Viewed": ["Переглянуті"], - "Viewed %s": ["Переглянуті %s"], - "Viewport": ["Viewport"], - "Virtual": ["Віртуальний"], - "Virtual (SQL)": ["Віртуальний (SQL)"], - "Virtual dataset": ["Віртуальний набір даних"], - "Virtual dataset query cannot be empty": [ - "Віртуальний запит набору даних не може бути порожнім" - ], - "Virtual dataset query cannot consist of multiple statements": [ - "Віртуальний запит набору даних не може складатися з декількох тверджень" - ], - "Virtual dataset query must be read-only": [ - "Віртуальний запит набору даних повинен бути лише для читання" - ], - "Visual Tweaks": ["Візуальні зміни"], - "Visualization Type": ["Тип візуалізації"], - "Visualization type": ["Тип візуалізації"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "Візуалізуйте паралельний набір показників у різних групах. Кожна група візуалізується за допомогою власної лінії точок, і кожна метрика представлена ​​як край на діаграмі." - ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ - "Візуалізуйте пов'язаний показник по парах груп. Теплові карти перевершують кореляцію або міцність між двома групами. Колір використовується для підкреслення сили зв'язку між кожною парою груп." + "Database connected": ["База даних підключена"], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ + "Створіть набір даних, щоб почати візуалізувати свої дані як діаграму або перейти до\n SQL Lab, щоб запитати ваші дані." ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "Візуалізуйте геопросторові дані, такі як 3D -будівлі, ландшафти або предмети в View." + "Enter the required %(dbModelName)s credentials": [ + "Введіть необхідні дані %(dbModelName)s" ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "Візуалізуйте, як метрика змінюється з часом за допомогою брусків. Додайте групу за стовпцем для візуалізації показників групи та того, як вони змінюються з часом." + "Need help? Learn more about": [ + "Потрібна допомога? Дізнайтеся більше про" ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "Візуалізуйте декілька рівнів ієрархії, використовуючи звичну деревоподібну структуру." + "connecting to %(dbModelName)s.": ["підключення до %(dbModelName)s."], + "Select a database to connect": ["Виберіть базу даних для підключення"], + "SSH Host": ["SSH -хост"], + "e.g. 127.0.0.1": ["напр. 127.0.0.1"], + "SSH Port": ["SSH -порт"], + "e.g. Analytics": ["напр. Аналітика"], + "Login with": ["Увійти за допомогою"], + "Private Key & Password": ["Приватний ключ та пароль"], + "SSH Password": ["Пароль SSH"], + "e.g. ********": ["напр. ********"], + "Private Key": ["Приватний ключ"], + "Paste Private Key here": ["Вставте тут приватний ключ"], + "Private Key Password": ["Пароль приватного ключа"], + "SSH Tunnel": ["SSH тунель"], + "SSH Tunnel configuration parameters": [ + "Параметри конфігурації тунелю SSH" ], - "Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line).": [ - "Візуалізуйте дві різні серії, використовуючи одну і ту ж осі x. Зауважте, що обидві серії можна візуалізувати за допомогою іншого типу діаграми (наприклад, 1 за допомогою смуг та 1 за допомогою рядка)." + "Display Name": ["Назва відображення"], + "Name your database": ["Назвіть свою базу даних"], + "Pick a name to help you identify this database.": [ + "Виберіть ім’я, яке допоможе вам визначити цю базу даних." ], - "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line).": [ - "Візуалізуйте два різні часові ряди, використовуючи одну і ту ж осі x. Зауважте, що кожен часовий ряд може бути візуалізований по -різному (наприклад, 1 за допомогою смуг та 1 за допомогою рядка)." + "dialect+driver://username:password@host:port/database": [ + "dialect+driver://username:password@host:port/database" ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ - "Візуалізує метрику в трьох вимірах даних в одній діаграмі (x вісь, осі y та розміру міхура). Бульбашки з однієї групи можна демонструвати за допомогою кольору бульбашок." + "Refer to the": ["Зверніться до"], + "for more information on how to structure your URI.": [ + "для отримання додаткової інформації про те, як структурувати свій URI." ], - "Visualizes connected points, which form a path, on a map.": [ - "Візуалізує підключені точки, які утворюють шлях, на карті." + "Test connection": ["Тестове з'єднання"], + "database": ["база даних"], + "Please enter a SQLAlchemy URI to test": [ + "Будь ласка, введіть URI SQLALCHEMY для тестування" ], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ - "Візуалізує географічні області з ваших даних як багатокутників на карті, що надається Mapbox. Полігони можна забарвити за допомогою метрики." + "e.g. world_population": ["напр. World_Population"], + "Database settings updated": ["Оновлені параметри бази даних"], + "Sorry there was an error fetching database information: %s": [ + "Вибачте, була помилка отримання інформації про базу даних: %s" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "Візуалізує, як метрика змінювалася за час, використовуючи кольорову шкалу та подання календаря. Сірі значення використовуються для позначення відсутніх значень, а лінійна кольорова гама використовується для кодування величини значення кожного дня." + "Or choose from a list of other databases we support:": [ + "Або виберіть зі списку інших баз даних, які ми підтримуємо:" ], - "Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.": [ - "Візуалізує, як одна метрика змінюється в основних підрозділах країни (держави, провінції тощо) на карті хороплета. Значення кожного підрозділу підвищується, коли ви наведете на відповідну географічну межу." + "Supported databases": ["Підтримувані бази даних"], + "Choose a database...": ["Виберіть базу даних ..."], + "Want to add a new database?": ["Хочете додати нову базу даних?"], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. " ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ - "Візуалізує багато різних об'єктів часових рядів в одній діаграмі. Ця діаграма застаріла, і ми рекомендуємо використовувати замість цього діаграму часових рядів." + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. Дізнайтеся, як підключити драйвер бази даних " ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "Візуалізує потік значень різних груп через різні етапи системи. Нові етапи в трубопроводі візуалізуються як вузли або шари. Товщина брусків або країв представляє показник, який візуалізується." + "Connect": ["З'єднувати"], + "Finish": ["Закінчити"], + "This database is managed externally, and can't be edited in Superset": [ + "Ця база даних керує зовні, і не може бути відредагована в суперсеті" ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "Візуалізує слова в стовпці, які з’являються найчастіше. Більший шрифт відповідає більш високій частоті." + "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ + "Паролі для баз даних нижче потрібні для їх імпорту. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні у дослідженні файли, і його слід додавати вручну після імпорту, якщо вони потрібні." ], - "Viz is missing a datasource": ["А саме відсутній даних"], - "Viz type": ["Тип з -за"], - "WED": ["Одружуватися"], - "Want to add a new database?": ["Хочете додати нову базу даних?"], - "Warning": ["УВАГА"], - "Warning Message": ["Попереджувальне повідомлення"], - "Warning!": ["УВАГА!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "УВАГА! Зміна набору даних може порушити діаграму, якщо метаданих не існує." + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Ви імпортуєте одну або кілька баз даних, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" ], - "Was unable to check your query": ["Не зміг перевірити ваш запит"], + "Database Creation Error": ["Помилка створення бази даних"], "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "Ми не можемо підключитися до вашої бази даних. Клацніть \"Дивіться більше\", щоб отримати інформацію, надану базою даних, яка може допомогти усунути проблеми." ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "Ми, здається, не можемо вирішити стовпчик \"%(column)s” на лінії %(location)s." + "CREATE DATASET": ["Створити набір даних"], + "QUERY DATA IN SQL LAB": ["Дані запиту в лабораторії SQL"], + "Connect a database": ["Підключіть базу даних"], + "Edit database": ["Редагувати базу даних"], + "Connect this database using the dynamic form instead": [ + "Підключіть цю базу даних за допомогою динамічної форми" ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "Ми не можемо вирішити стовпець “%(column_name)s”" + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "Клацніть на це посилання, щоб перейти на альтернативну форму, яка розкриває лише необхідні поля, необхідні для підключення цієї бази даних." ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "Ми, здається, не можемо вирішити стовпець \" %(column_name)s” на лінії %(location)s." + "Additional fields may be required": [ + "Можуть знадобитися додаткові поля" ], - "We have the following keys: %s": ["У нас є такі ключі: %s"], - "We were unable to active or deactivate this report.": [ - "Ми не змогли активно чи деактивувати цей звіт." + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "Виберіть бази даних потребують додаткових полів для завершення на вкладці «Додаткові» для успішного підключення бази даних. Дізнайтеся, які вимоги мають ваші бази даних " ], - "We were unable to carry over any controls when switching to this new dataset.": [ - "Ми не змогли перенести будь -які елементи керування при переході на цей новий набір даних." + "Import database from file": ["Імпортувати базу даних з файлу"], + "Connect this database with a SQLAlchemy URI string instead": [ + "Підключіть цю базу даних за допомогою рядка URI SQLALCHEMY" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "Ми не змогли підключитися до вашої бази даних під назвою “%(database)s\". Будь ласка, перевірте ім’я бази даних та спробуйте ще раз." + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "Клацніть на це посилання, щоб перейти на альтернативну форму, яка дозволяє вводити URL -адресу SQLALCHEMY для цієї бази даних вручну." ], - "Web": ["Павутина"], - "Wednesday": ["Середа"], - "Week": ["Тиждень"], - "Week ending Saturday": ["Тиждень, що закінчується в суботу"], - "Week starting Monday": ["Тиждень, починаючи з понеділка"], - "Week starting Sunday": ["Тиждень, починаючи з неділі"], - "Week_ending Sunday": ["Week_endnd Sunday"], - "Weekly Report": ["Тижневий звіт"], - "Weekly Report for %s": ["Щотижневий звіт за %s"], - "Weekly seasonality": ["Щотижнева сезонність"], - "Weeks %s": ["Тиждень %s"], - "Weight": ["Вага"], - "We’re having trouble loading these results. Queries are set to timeout after %s second.": [ - "У нас виникають проблеми з завантаженням цих результатів. Запити встановлюються на таймаут після %s секунди." + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "Це може бути IP -адреса (наприклад, 127.0.0.1), або доменне ім'я (наприклад, mydatabase.com)." ], - "We’re having trouble loading this visualization. Queries are set to timeout after %s second.": [ - "У нас виникають проблеми з завантаженням цієї візуалізації. Запити встановлюються на таймаут після %s секунди." + "Host": ["Господар"], + "e.g. 5432": ["напр. 5432"], + "Port": ["Порт"], + "e.g. sql/protocolv1/o/12345": ["напр. SQL/PROTOCOLV1/O/12345"], + "Copy the name of the HTTP Path of your cluster.": [ + "Скопіюйте назву HTTP -шляху кластера." ], - "What should be shown on the label?": ["Що слід показати на етикетці?"], - "What should happen if the table already exists": [ - "Що має статися, якщо стіл вже існує" + "Copy the name of the database you are trying to connect to.": [ + "Скопіюйте назву бази даних, до якої ви намагаєтесь підключитися." ], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "Коли `тип обчислення\" встановлено на \"відсоткову зміну\", формат осі y змушений до `.1%` `" + "Access token": ["Маркер доступу"], + "Pick a nickname for how the database will display in Superset.": [ + "Виберіть прізвисько, як база даних відображатиметься в суперсеті." ], - "When a secondary metric is provided, a linear color scale is used.": [ - "Коли надається вторинна метрика, використовується лінійна кольорова шкала." + "e.g. param1=value1¶m2=value2": [ + "напр. param1 = value1 & param2 = значення2" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "При дозволі створювати таблицю як опцію в лабораторії SQL, ця опція змушує створювати таблицю в цій схемі" + "Additional Parameters": ["Додаткові параметри"], + "Add additional custom parameters": [ + "Додайте додаткові спеціальні параметри" ], - "When checked, the map will zoom to your data after each query": [ - "Після перевірки карта збільшиться до ваших даних після кожного запиту" + "SSL Mode \"require\" will be used.": [ + "Буде використаний режим SSL \"вимагати\"." ], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "Коли ввімкнено, користувачі можуть візуалізувати результати SQL Lab в дослідженні." + "Type of Google Sheets allowed": ["Тип аркушів Google дозволено"], + "Publicly shared sheets only": ["Публічно поділяються лише аркушами"], + "Public and privately shared sheets": [ + "Громадські та приватні діляться аркушами" ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "Коли надається лише первинна метрика, використовується категорична кольорова шкала." + "How do you want to enter service account credentials?": [ + "Як ви хочете ввести облікові дані облікового запису служби?" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "При вказівці SQL, DataSource виступає як погляд. Superset використовуватиме це твердження як підрозділ під час групування та фільтрації на створених батьківських запитах." + "Upload JSON file": ["Завантажити файл JSON"], + "Copy and Paste JSON credentials": [ + "Копіювати та вставити облікові дані JSON" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "При використанні \"автозаповнених фільтрів\" це може бути використане для підвищення продуктивності запиту отримання значень. Використовуйте цю опцію, щоб застосувати предикат (де пункт) до запиту, що вибирає різні значення з таблиці. Зазвичай наміром було б обмежити сканування, застосовуючи відносний часовий фільтр на розділеному або індексованому поле, пов’язаному з часом." + "Service Account": ["Рахунок служби"], + "Paste content of service credentials JSON file here": [ + "Вставте вміст службових облікових даних JSON Файл тут" ], - "When using 'Group By' you are limited to use a single metric": [ - "При використанні \"Group за\" ви обмежені для використання однієї метрики" + "Copy and paste the entire service account .json file here": [ + "Скопіюйте та вставте весь обліковий запис служби .json файл тут" ], - "When using other than adaptive formatting, labels may overlap": [ - "При використанні, крім адаптивного форматування, мітки можуть перекриватися" + "Upload Credentials": ["Завантажити облікові дані"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "Використовуйте файл JSON, який ви автоматично завантажили під час створення облікового запису послуги." ], - "When using this option, default value can’t be set": [ - "При використанні цієї опції значення за замовчуванням не можна встановити" + "Connect Google Sheets as tables to this database": [ + "Підключіть аркуші Google як таблиці до цієї бази даних" ], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "Чи перекривається панель прогресу, коли існує кілька груп даних" + "Google Sheet Name and URL": ["Назва та URL адреса Google Sheet"], + "Enter a name for this sheet": ["Введіть ім’я для цього аркуша"], + "Paste the shareable Google Sheet URL here": [ + "Вставте сюди спільну URL -адресу Google Sheet" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "Чи створена таблиця за допомогою \"візуалізації\" потоку в лабораторії SQL" + "Add sheet": ["Додати аркуш"], + "e.g. xy12345.us-east-2.aws": ["напр. xy12345.us-east-2.aws"], + "e.g. compute_wh": ["напр. compute_wh"], + "e.g. AccountAdmin": ["напр. Рахунок"], + "Duplicate dataset": ["Дублікат набору даних"], + "Duplicate": ["Дублікат"], + "New dataset name": ["Нове ім'я набору даних"], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Паролі для баз даних нижче потрібні для імпорту їх разом із наборами даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "Чи викривається цей стовпець у розділі \"Фільтри\" перегляду \"Вивчення\"." + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Ви імпортуєте один або кілька наборів даних, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" ], - "Whether to align background charts with both positive and negative values at 0": [ - "Чи вирівнювати фонові діаграми з позитивними, так і негативними значеннями на 0" + "Refreshing columns": ["Освіжаючі стовпці"], + "Table columns": ["Стовпці таблиці"], + "Loading": ["Навантаження"], + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "У цій таблиці вже є набір даних, пов'язаний з ним. Ви можете асоціювати лише один набір даних із таблицею.\n" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "Чи вирівнювати позитивні та негативні значення в діаграмі клітинної штрих на 0" + "View Dataset": ["Переглянути набір даних"], + "This table already has a dataset": ["Ця таблиця вже має набір даних"], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "Набори даних можна створити з таблиць баз даних або запитів SQL. Виберіть таблицю бази даних зліва або " ], - "Whether to always show the annotation label": [ - "Чи завжди показувати анотаційну етикетку" + "create dataset from SQL query": ["cтворити набір даних із запиту SQL"], + " to open SQL Lab. From there you can save the query as a dataset.": [ + " відкрити SQL Lab. Звідти ви можете зберегти запит як набір даних." ], - "Whether to animate the progress and the value or just display them": [ - "Чи варто оживити прогрес і значення, чи просто відображати їх" + "Select dataset source": ["Виберіть джерело набору даних"], + "No table columns": ["Немає стовпців таблиці"], + "This database table does not contain any data. Please select a different table.": [ + "Ця таблиця баз даних не містить жодних даних. Виберіть іншу таблицю." ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "Чи застосовувати нормальний розподіл на основі рангу за кольоровою шкалою" + "An Error Occurred": ["Виникла помилка"], + "Unable to load columns for the selected table. Please select a different table.": [ + "Неможливо завантажити стовпці для вибраної таблиці. Виберіть іншу таблицю." ], - "Whether to apply filter when items are clicked": [ - "Чи слід застосовувати фільтр, коли елементи клацають" + "The API response from %s does not match the IDatabaseTable interface.": [ + "Відповідь API від %s не відповідає інтерфейсу IDATABASETABLE." ], - "Whether to colorize numeric values by if they are positive or negative": [ - "Будьте кольорові числові значення, якщо вони є позитивними чи негативними" + "Usage": ["Використання"], + "Chart owners": ["Власники діаграм"], + "Chart last modified": ["Діаграма востаннє модифікована"], + "Chart last modified by": ["Діаграма востаннє модифікована за допомогою"], + "Dashboard usage": ["Використання інформаційної панелі"], + "Create chart with dataset": [ + "Створіть діаграму за допомогою набору даних" ], - "Whether to display a bar chart background in table columns": [ - "Чи відображати фон гастрольної діаграми у стовпцях таблиці" + "chart": ["діаграма"], + "No charts": ["Немає діаграм"], + "This dataset is not used to power any charts.": [ + "Цей набір даних не використовується для живлення будь -яких діаграм." ], - "Whether to display a legend for the chart": [ - "Чи відображати легенду для діаграми" + "Select a database table.": ["Виберіть таблицю бази даних."], + "Create dataset and create chart": [ + "Створити набір даних та створити діаграму" ], - "Whether to display bubbles on top of countries": [ - "Чи відображати бульбашки поверх країн" + "New dataset": ["Новий набір даних"], + "Select a database table and create dataset": [ + "Виберіть таблицю бази даних та створіть набір даних" ], - "Whether to display the aggregate count": [ - "Чи відображати кількість сукупності" + "dataset name": ["назва набору даних"], + "There was an error fetching dataset": ["Був набір даних про помилку"], + "There was an error fetching dataset's related objects": [ + "Були помилкові об'єкти, пов’язані з набором даних" ], - "Whether to display the interactive data table": [ - "Чи відображати таблицю інтерактивних даних" + "There was an error loading the dataset metadata": [ + "Була помилка, що завантажує метадані набору даних" ], - "Whether to display the labels.": ["Чи відображати мітки."], - "Whether to display the labels. Note that the label only displays when the 5% threshold.": [ - "Чи відображати мітки. Зауважте, що мітка відображається лише тоді, коли поріг 5%." + "[Untitled]": ["[Без назви]"], + "Unknown": ["Невідомий"], + "Viewed %s": ["Переглянуті %s"], + "Edited": ["Редаговані"], + "Created": ["Створений"], + "Viewed": ["Переглянуті"], + "Favorite": ["Улюблені"], + "Mine": ["Мої"], + "View All »": ["Подивитись всі »"], + "An error occurred while fetching dashboards: %s": [ + "Під час отримання інформаційної панелі сталася помилка: %s" ], - "Whether to display the legend (toggles)": [ - "Чи відображати легенду (перемикає)" + "charts": ["діаграми"], + "dashboards": ["інформаційні панелі"], + "recents": ["недавні"], + "saved queries": ["збережені запити"], + "No charts yet": ["Ще немає діаграм"], + "No dashboards yet": ["Ще немає інформаційних панелей"], + "No recents yet": ["Ще немає жодних випадків"], + "No saved queries yet": ["Ще немає врятованих запитів"], + "%(other)s charts will appear here": [ + "%(other)s -діаграми з’являться тут" ], - "Whether to display the metric name as a title": [ - "Чи відображати метричну назву як заголовок" + "%(other)s dashboards will appear here": [ + "%(other)s інформаційні панелі з’являться тут" ], - "Whether to display the min and max values of the X-axis": [ - "Чи відображати значення min та максимально вісь x" + "%(other)s recents will appear here": ["%(other)s останнє з’явиться тут"], + "%(other)s saved queries will appear here": [ + "%(other)s збережені запити з’являться тут" ], - "Whether to display the min and max values of the Y-axis": [ - "Чи відображати значення min та максимально вісь y" + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "Нещодавно переглянуті діаграми, інформаційні панелі та збережені запити з’являться тут" ], - "Whether to display the numerical values within the cells": [ - "Чи відображати числові значення всередині комірок" + "Recently created charts, dashboards, and saved queries will appear here": [ + "Нещодавно створені діаграми, інформаційні панелі та збережені запити з’являться тут" ], - "Whether to display the stroke": ["Чи відображати хід"], - "Whether to display the time range interactive selector": [ - "Чи відображати інтерактивний селектор часу" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "Нещодавно відредаговані діаграми, інформаційні панелі та збереженні запити з’являться тут" ], - "Whether to display the timestamp": ["Чи відображати часову позначку"], - "Whether to display the trend line": ["Чи відображати лінію тренду"], - "Whether to enable changing graph position and scaling.": [ - "Чи можна змінювати положення графіку та масштабування." + "SQL query": ["SQL -запит"], + "You don't have any favorites yet!": ["У вас ще немає улюблених!"], + "See all %(tableName)s": ["Див. All %(tableName)s"], + "Connect database": ["Підключіть базу даних"], + "Create dataset": ["Створити набір даних"], + "Connect Google Sheet": ["Підключіть аркуш Google"], + "Upload CSV to database": ["Завантажте CSV у базу даних"], + "Upload columnar file to database": [ + "Завантажте стовпчастий файл у базу даних" ], - "Whether to enable node dragging in force layout mode.": [ - "Чи ввімкнути вузол перетягування в режимі макета." + "Upload Excel file to database": ["Завантажте файл Excel у базу даних"], + "Enable 'Allow file uploads to database' in any database's settings": [ + "Увімкніть \"Дозволити завантаження файлів у базу даних\" в налаштуваннях будь -якої бази даних" ], - "Whether to fill the objects": ["Чи заповнювати об'єкти"], - "Whether to ignore locations that are null": [ - "Чи потрібно ігнорувати місця, які є нульовими" + "Info": ["Інформація"], + "Logout": ["Вийти"], + "About": ["Про"], + "Powered by Apache Superset": ["Працює від Superset Apache"], + "SHA": ["Ша"], + "Build": ["Побудувати"], + "Documentation": ["Документація"], + "Report a bug": ["Повідомте про помилку"], + "Login": ["Логін"], + "query": ["запит"], + "Deleted: %s": ["Видалено: %s"], + "There was an issue deleting %s: %s": [ + "Виникло питання видалення %s: %s" ], - "Whether to include a client-side search box": [ - "Чи включати вікно пошуку на стороні клієнта" + "This action will permanently delete the saved query.": [ + "Ця дія назавжди видаляє збережений запит." ], - "Whether to include a time filter": ["Чи включати часовий фільтр"], - "Whether to include the percentage in the tooltip": [ - "Чи включати відсоток у підказку" + "Delete Query?": ["Видалити запит?"], + "Ran %s": ["Ran %s"], + "Saved queries": ["Збережені запити"], + "Next": ["Наступний"], + "Tab name": ["Назва вкладки"], + "User query": ["Запит користувача"], + "Executed query": ["Виконаний запит"], + "Query name": ["Назва запиту"], + "SQL Copied!": ["SQL скопійований!"], + "Sorry, your browser does not support copying.": [ + "Вибачте, ваш браузер не підтримує копіювання." ], - "Whether to include the time granularity as defined in the time section": [ - "Чи включати часову деталізацію, визначену в розділі часу" + "There was an issue fetching reports attached to this dashboard.": [ + "На цій інформаційній панелі було додано питання про отримання звітів." ], - "Whether to make the grid 3D": ["Чи робити сітку 3D"], - "Whether to make the histogram cumulative": [ - "Чи робити гістограму кумулятивною" + "The report has been created": ["Звіт створений"], + "Report updated": ["Звіт про оновлений"], + "We were unable to active or deactivate this report.": [ + "Ми не змогли активно чи деактивувати цей звіт." ], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "Незалежно від того, щоб зробити цей стовпець доступним як параметр [Час деталізації], стовпець повинен бути датетом або датетом" + "Your report could not be deleted": ["Ваш звіт не можна було видалити"], + "Weekly Report for %s": ["Щотижневий звіт за %s"], + "Weekly Report": ["Тижневий звіт"], + "Edit email report": ["Редагувати звіт електронної пошти"], + "Schedule a new email report": [ + "Заплануйте новий звіт електронної пошти" ], - "Whether to normalize the histogram": ["Чи нормалізувати гістограму"], - "Whether to populate autocomplete filters options": [ - "Чи заповнити автозаповнення параметрів фільтрів" + "Text embedded in email": ["Текст, вбудований в електронну пошту"], + "Image (PNG) embedded in email": [ + "Зображення (PNG), вбудоване в електронну пошту" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "Чи заповнити спадне місце у розділі фільтра «Дослідження перегляду» зі списком різних значень, отриманих з бекенду на льоту" + "Formatted CSV attached in email": [ + "Відформатовано CSV, доданий електронною поштою" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "Проявляти додаткові елементи управління чи ні. Додаткові елементи керування включають такі речі, як створення мулітбарів, складеними або поруч." + "Report Name": ["Назва звіту"], + "Include a description that will be sent with your report": [ + "Включіть опис, який буде надіслано з вашим звітом" ], - "Whether to show minor ticks on the axis": [ - "Чи слід показувати незначні кліщі на осі" + "A screenshot of the dashboard will be sent to your email at": [ + "Скріншот інформаційної панелі буде надіслано на ваш електронний лист за адресою" ], - "Whether to show the pointer": ["Чи показувати вказівник"], - "Whether to show the progress of gauge chart": [ - "Чи показувати хід датчика діаграми" + "Failed to update report": ["Не вдалося оновити звіт"], + "Failed to create report": ["Не вдалося створити звіт"], + "Set up an email report": ["Налаштування звіту електронної пошти"], + "Email reports active": ["Звіти про електронну пошту активні"], + "Delete email report": ["Видалити звіт електронної пошти"], + "Schedule email report": ["Розклад звіту електронної пошти"], + "This action will permanently delete %s.": [ + "Ця дія назавжди видаляє %s." ], - "Whether to show the split lines on the axis": [ - "Чи відображати розділені лінії на осі" + "Delete Report?": ["Видалити звіт?"], + "rowlevelsecurity": ["rowlevelsecurity"], + "Rule added": ["Додано правило"], + "Edit Rule": ["Правило редагування"], + "Add Rule": ["Додайте правило"], + "Rule Name": ["Назва права"], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Регулярні фільтри додають, де до запитів, якщо користувач належить до ролі, що посилається у фільтрі, базові фільтри застосовують фільтри до всіх запитів, крім ролей, визначених у фільтрі, і можуть бути використані для визначення того, що користувачі можуть побачити, чи немає фільтрів RLS у межах a Група фільтрів застосовується до них." ], - "Whether to sort ascending or descending on the base Axis.": [ - "Чи сортувати висхідну чи спускатися на осі бази." + "Excluded roles": ["Виключені ролі"], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "Для регулярних фільтрів це ролі, до яких цей фільтр буде застосований. Для базових фільтрів це ролі, до яких фільтр не застосовується, наприклад Адміністратор, якщо адміністратор повинен побачити всі дані." ], - "Whether to sort descending or ascending": [ - "Чи сортувати низхідну чи висхідну" + "Group Key": ["Груповий ключ"], + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "Фільтри з тим самим груповим ключем будуть розглянуті разом у групі, тоді як різні групи фільтрів будуть та разом. Невизначені групові ключі трактуються як унікальні групи, тобто не згруповані разом. Наприклад, якщо в таблиці є три фільтри, з яких два - для відділів фінансування та маркетинг (груповий ключ = 'відділ'), а один відноситься до регіону Європи (груповий ключ = 'регіон'), застереження про фільтр застосовуватиметься фільтр (відділ = \"фінанси\" або відділ = \"маркетинг\") та (регіон = \"Європа\")." ], - "Whether to sort descending or ascending if a series limit is present": [ - "Чи слід сортувати низхідну чи підніматися, якщо присутній ліміт серії" + "Clause": ["Застереження"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "Це умова, яка буде додана до пункту «Де». Наприклад, щоб повернути лише рядки для певного клієнта, ви можете визначити звичайний фільтр із пунктом `client_id = 9`. Щоб не відображати рядків, якщо користувач не належить до ролі фільтра RLS, базовий фільтр може бути створений із пунктом `1 = 0` (завжди помилково)." ], - "Whether to sort results by the selected metric in descending order.": [ - "Чи слід сортувати результати за вибраним показником у порядку зменшення." + "Regular": ["Регулярний"], + "Base": ["Базовий"], + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "Чи сортувати підказку за вибраним показником у порядку зменшення." + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": ["Обраний не-чим’яний стовпчик"], + "UI Configuration": ["Конфігурація інтерфейсу"], + "Filter value is required": ["Потрібне значення фільтра"], + "User must select a value before applying the filter": [ + "Користувач повинен вибрати значення перед застосуванням фільтра" ], - "Whether to truncate metrics": ["Чи варто обрізати показники"], - "Which country to plot the map for?": [ - "Для якої країни побудувати карту?" + "Single value": ["Єдине значення"], + "Use only a single value.": ["Використовуйте лише одне значення."], + "Range filter plugin using AntD": [ + "Діапазон фільтрів плагін за допомогою ANTD" ], - "Which relatives to highlight on hover": [ - "Які родичі, щоб виділити на курсі" + " (excluded)": [" (виключається)"], + "%s option": ["%s варіант"], + "Check for sorting ascending": [ + "Перевірте наявність сортування висхідного" ], - "Whisker/outlier options": ["Варіанти Віскера/Зовнішнього"], - "White": ["Білий"], - "Width": ["Ширина"], - "Width of the confidence interval. Should be between 0 and 1": [ - "Ширина довірчого інтервалу. Має бути від 0 до 1" + "Can select multiple values": ["Може вибрати кілька значень"], + "Select first filter value by default": [ + "Виберіть за замовчуванням значення First Filter" ], - "Width of the sparkline": ["Ширина іскрової лінії"], - "Window must be > 0": ["Вікно повинно бути> 0"], - "With a subheader": ["З підзаголовком"], - "Word Cloud": ["Слово хмара"], - "Word Rotation": ["Обертання слів"], - "Working": ["Робочий"], - "Working timeout": ["Робочий таймаут"], - "World Map": ["Карта світу"], - "Write a description for your query": ["Напишіть опис свого запиту"], - "Write a handlebars template to render the data": [ - "Напишіть шаблон ручки для надання даних" + "When using this option, default value can’t be set": [ + "При використанні цієї опції значення за замовчуванням не можна встановити" ], - "Write dataframe index as a column": [ - "Запишіть індекс даних даних як стовпець" + "Inverse selection": ["Зворотний вибір"], + "Exclude selected values": ["Виключіть вибрані значення"], + "Dynamically search all filter values": [ + "Динамічно шукайте всі значення фільтра" ], - "Write dataframe index as a column.": [ - "Запишіть індекс даних даних як стовпець." + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "За замовчуванням кожен фільтр завантажує щонайменше 1000 варіантів при первинному завантаженні сторінки. Постановіть це поле, чи є у вас більше 1000 значень фільтра і хочете ввімкнути динамічний пошук, який завантажує значення фільтра, як вводить користувачі (може додавати напругу до вашої бази даних)." ], - "X AXIS TITLE BOTTOM MARGIN": ["X Осі Назва Нижня краю"], - "X Axis": ["X Вісь"], - "X Axis Format": ["Формат X Axis"], - "X Axis Label": ["X мітка вісь"], - "X Axis Title": ["Назва X Axis"], - "X Log Scale": ["X шкала журналу"], - "X Tick Layout": ["X макет галочки"], - "X bounds": ["X межі"], - "X-Axis Sort Ascending": ["X-осі сорт висхідного"], - "X-Axis Sort By": ["X-осі сорт"], - "X-axis": ["X-вісь"], - "XScale Interval": ["Xscale Interval"], - "Y 2 bounds": ["Y 2 межі"], - "Y AXIS TITLE MARGIN": ["Y Exis title Margin"], - "Y AXIS TITLE POSITION": ["Y Позиція на осі"], - "Y Axis": ["Y Вісь"], - "Y Axis 2 Bounds": ["Y Axis 2 Межі"], - "Y Axis Bounds": ["Y межі осі"], - "Y Axis Format": ["Формат y Axis"], - "Y Axis Label": ["Y мітка вісь"], - "Y Axis Title": ["Y Назва вісь"], - "Y Log Scale": ["Y Шкала журналу"], - "Y bounds": ["Y межі"], - "Y-Axis Sort Ascending": ["Y-осі сорт піднімається"], - "Y-Axis Sort By": ["Y-осі сорт"], - "Y-axis": ["Y-вісь"], - "Y-axis bounds": ["Y-осі межі"], - "YScale Interval": ["ІНСПАЛЬНИЙ ІНТЕРВАЛЬ"], - "Year": ["Рік"], - "Year (freq=AS)": ["Рік (freq = as)"], - "Yearly seasonality": ["Щорічна сезонність"], - "Years %s": ["Роки %s"], - "Yes": ["Так"], - "Yes, cancel": ["Так, скасувати"], - "Yes, overwrite changes": ["Так, переписати зміни"], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Ви імпортуєте один або кілька діаграм, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" + "Select filter plugin using AntD": [ + "Виберіть плагін фільтра за допомогою ANTD" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Ви імпортуєте одну або кілька інформаційних панелей, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" + "Custom time filter plugin": ["Спеціальний плагін фільтра часу"], + "No time columns": ["Немає часу стовпців"], + "Time column filter plugin": ["Плагін фільтра у стовпці часу"], + "Time grain filter plugin": ["Плагін зерна зерна"], + "Working": ["Робочий"], + "Not triggered": ["Не спрацьований"], + "On Grace": ["На благодать"], + "reports": ["звіти"], + "alerts": ["попередження"], + "There was an issue deleting the selected %s: %s": [ + "Виникла проблема з видалення вибраного %s: %s" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Ви імпортуєте одну або кілька баз даних, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" + "Last run": ["Останній пробіг"], + "Execution log": ["Журнал виконання"], + "Bulk select": ["Виберіть декілька"], + "No %s yet": ["Ще немає %s"], + "Owner": ["Власник"], + "All": ["Всі"], + "An error occurred while fetching owners values: %s": [ + "Помилка сталася під час отримання цінностей власників: %s" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Ви імпортуєте один або кілька наборів даних, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" + "Status": ["Статус"], + "An error occurred while fetching dataset datasource values: %s": [ + "Помилка сталася під час отримання значень набору даних набору даних: %s" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "Ви імпортуєте один або кілька збережених запитів, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" + "Alerts & reports": ["Попередження та звіти"], + "Alerts": ["Попередження"], + "Reports": ["Звіти"], + "Delete %s?": ["Видалити %s?"], + "Are you sure you want to delete the selected %s?": [ + "Ви впевнені, що хочете видалити вибрані %s?" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "Ви не уповноважені бачити цей запит. Якщо ви вважаєте, що це помилка, будь ласка, зверніться до свого адміністратора." + "There was an issue deleting the selected layers: %s": [ + "Виникла проблема з видалення вибраних шарів: %s" ], - "You can": ["Ти можеш"], - "You can add the components in the": ["Ви можете додати компоненти в"], - "You can add the components in the edit mode.": [ - "Ви можете додати компоненти в режим редагування." + "Edit template": ["Редагувати шаблон"], + "Delete template": ["Видалити шаблон"], + "No annotation layers yet": ["Ще немає анотаційних шарів"], + "This action will permanently delete the layer.": [ + "Ця дія назавжди видаляє шар." ], - "You can also just click on the chart to apply cross-filter.": [ - "Ви також можете просто натиснути на діаграму, щоб застосувати перехресний фільтр." + "Delete Layer?": ["Видалити шар?"], + "Are you sure you want to delete the selected layers?": [ + "Ви впевнені, що хочете видалити вибрані шари?" ], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "Ви можете вибрати, щоб відобразити всі діаграми, які у вас є доступ або лише тих, у кого ви володієте.\n Вибір фільтра буде збережено і залишатиметься активним, поки ви не вирішите його змінити." + "There was an issue deleting the selected annotations: %s": [ + "Виникло питання, що видалив вибрані анотації: %s" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "Ви можете створити нову діаграму або використовувати існуючі з панелі праворуч" + "Delete annotation": ["Видалити анотацію"], + "Annotation": ["Анотація"], + "No annotation yet": ["Ще немає анотації"], + "Annotation Layer %s": ["Анотаційний шар %s"], + "Back to all": ["Назад до всіх"], + "Are you sure you want to delete %s?": [ + "Ви впевнені, що хочете видалити %s?" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "Ви можете переглянути список інформаційних панелей у спадному порядку налаштувань діаграми." + "Delete Annotation?": ["Видалити анотацію?"], + "Are you sure you want to delete the selected annotations?": [ + "Ви впевнені, що хочете видалити вибрані анотації?" ], - "You can't apply cross-filter on this data point.": [ - "Ви не можете застосувати перехресний фільтр у цій точці даних." + "Failed to load chart data": ["Не вдалося завантажити дані діаграми"], + "view instructions": ["переглянути інструкції"], + "Add a dataset": ["Додайте набір даних"], + "or": ["або"], + "Choose a dataset": ["Виберіть набір даних"], + "Choose chart type": ["Виберіть тип діаграми"], + "Please select both a Dataset and a Chart type to proceed": [ + "Виберіть як набір даних, так і тип діаграми, щоб продовжити" ], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "Ви не можете видалити останній часовий фільтр, оскільки він використовується для фільтрів часового діапазону на інформаційних панелях." + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Паролі для баз даних нижче потрібні для імпорту їх разом із діаграмами. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." ], - "You cannot use 45° tick layout along with the time range filter": [ - "Ви не можете використовувати макет кліщів 45 ° разом із фільтром часу часу" + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Ви імпортуєте один або кілька діаграм, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" ], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "Ви не можете використовувати [Columns] у поєднанні з [Group By]/[Metrics]/[Percentage Metrics]. Будь ласка, виберіть той чи інший." + "Chart imported": ["Діаграма імпорту"], + "There was an issue deleting the selected charts: %s": [ + "Виникла проблема з видалення вибраних діаграм: %s" ], - "You do not have permission to edit this %s": [ - "Ви не маєте дозволу на редагування цього %s" + "An error occurred while fetching dashboards": [ + "Під час отримання інформаційної панелі сталася помилка" ], - "You do not have permission to edit this chart": [ - "Ви не маєте дозволу на редагування цієї діаграми" + "Any": ["Будь -який"], + "An error occurred while fetching chart owners values: %s": [ + "Помилка сталася під час отримання цінностей власників діаграм: %s" ], - "You do not have permission to edit this dashboard": [ - "У вас немає дозволу на редагування цієї інформаційної панелі" + "Certified": ["Сертифікований"], + "Alphabetical": ["Алфавітний"], + "Recently modified": ["Нещодавно змінений"], + "Least recently modified": ["Найменше нещодавно модифіковано"], + "Import charts": ["Імпортувати діаграми"], + "Are you sure you want to delete the selected charts?": [ + "Ви впевнені, що хочете видалити вибрані діаграми?" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "У вас немає дозволів на доступ до даних: %(ім'я)s." + "CSS templates": ["Шаблони CSS"], + "There was an issue deleting the selected templates: %s": [ + "Виникла проблема з видалення вибраних шаблонів: %s" ], - "You do not have permissions to edit this dashboard.": [ - "У вас немає дозволів на редагування цієї інформаційної панелі." + "CSS template": ["Шаблон CSS"], + "This action will permanently delete the template.": [ + "Ця дія назавжди видаляє шаблон." ], - "You don't have access to this chart.": [ - "Ви не маєте доступу до цієї діаграми." + "Delete Template?": ["Видалити шаблон?"], + "Are you sure you want to delete the selected templates?": [ + "Ви впевнені, що хочете видалити вибрані шаблони?" ], - "You don't have access to this dashboard.": [ - "У вас немає доступу до цієї інформаційної панелі." + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Паролі для баз даних нижче потрібні для імпорту їх разом із інформаційними панелями. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." ], - "You don't have access to this dataset.": [ - "Ви не маєте доступу до цього набору даних." + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Ви імпортуєте одну або кілька інформаційних панелей, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" ], - "You don't have access to this embedded dashboard config.": [ - "У вас немає доступу до цієї вбудованої конфігурації інформаційної панелі." + "Dashboard imported": ["Дашборд імпортовано"], + "There was an issue deleting the selected dashboards: ": [ + "Була проблема, яка видалила вибрані інформаційні панелі: " ], - "You don't have any favorites yet!": ["У вас ще немає улюблених!"], - "You don't have permission to modify the value.": [ - "У вас немає дозволу на зміну значення." + "An error occurred while fetching dashboard owner values: %s": [ + "Помилка сталася під час отримання значення власника інформаційної панелі: %s" ], - "You don't have the rights to alter %(resource)s": [ - "Ви не маєте прав на зміну %(ресурси)s" + "Are you sure you want to delete the selected dashboards?": [ + "Ви впевнені, що хочете видалити вибрані інформаційні панелі?" ], - "You don't have the rights to alter this chart": [ - "Ви не маєте прав на зміну цієї діаграми" + "An error occurred while fetching database related data: %s": [ + "Помилка сталася під час отримання даних, пов’язаних з базою даних: %s" ], - "You don't have the rights to alter this dashboard": [ - "Ви не маєте прав на зміну цієї інформаційної панелі" + "Upload file to database": ["Завантажте файл у базу даних"], + "Upload CSV": ["Завантажте CSV"], + "Upload columnar file": ["Завантажте стовпчастий файл"], + "Upload Excel file": ["Завантажте файл Excel"], + "AQE": ["AQE"], + "Allow data manipulation language": [ + "Дозволити мову маніпулювання даними" ], - "You don't have the rights to alter this title.": [ - "Ви не маєте прав на зміну цієї назви." + "DML": ["DML"], + "CSV upload": ["Завантаження CSV"], + "Delete database": ["Видалити базу даних"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "База даних %s пов'язана з діаграмами %s, які з’являються на інформаційних панелях %s, а користувачі мають %s SQL Lab вкладки, використовуючи цю базу даних. Ви впевнені, що хочете продовжувати? Видалення бази даних порушить ці об'єкти." ], - "You don't have the rights to create a chart": [ - "Ви не маєте прав на створення діаграми" - ], - "You don't have the rights to create a dashboard": [ - "Ви не маєте прав на створення інформаційної панелі" - ], - "You don't have the rights to download as csv": [ - "Ви не маєте прав на завантаження як CSV" - ], - "You have no permission to approve this request": [ - "Ви не маєте дозволу на затвердження цього запиту" + "Delete Database?": ["Видалити базу даних?"], + "Dataset imported": ["Імпортний набір даних"], + "An error occurred while fetching dataset related data": [ + "Помилка сталася під час отримання даних, пов’язаних з наборами" ], - "You have removed this filter.": ["Ви видалили цей фільтр."], - "You have unsaved changes.": ["У вас були незберечені зміни."], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "Ви використали всі %(довжина історії)s скасування слотів і не зможете повністю скасувати наступні дії. Ви можете зберегти свій поточний стан для скидання історії." + "An error occurred while fetching dataset related data: %s": [ + "Помилка сталася під час отримання даних, пов’язаних з набором даних: %s" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "Ви повинні бути власником набору даних для редагування. Будь ласка, зверніться до власника набору даних, щоб вимагати модифікацій або редагувати доступ." + "Physical dataset": ["Фізичний набір даних"], + "Virtual dataset": ["Віртуальний набір даних"], + "Virtual": ["Віртуальний"], + "An error occurred while fetching datasets: %s": [ + "Помилка сталася під час отримання наборів даних: %s" ], - "You must pick a name for the new dashboard": [ - "Ви повинні вибрати ім’я для нової інформаційної панелі" + "An error occurred while fetching schema values: %s": [ + "Помилка сталася під час отримання значень схеми: %s" ], - "You must run the query successfully first": [ - "Ви повинні спочатку успішно запустити запит" + "An error occurred while fetching dataset owner values: %s": [ + "Помилка сталася під час отримання значень власника набору даних: %s" ], - "You need to configure HTML sanitization to use CSS": [ - "Вам потрібно налаштувати санітарію HTML для використання CSS" + "Import datasets": ["Імпортувати набори даних"], + "There was an issue deleting the selected datasets: %s": [ + "Виникла проблема з видалення вибраних наборів даних: %s" ], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "Ви оновили значення на панелі управління, але діаграма не оновлювалася автоматично. Запустіть запит, натиснувши кнопку \"Оновлення діаграми\" або" + "There was an issue duplicating the dataset.": [ + "Існувала проблема, що дублювання набору даних." ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "Ви змінили набори даних. Будь -які елементи керування з даними (стовпчики, метрики), які відповідають цьому новому наборі даних, були зберігаються." + "There was an issue duplicating the selected datasets: %s": [ + "Існувала проблема, що дублювання вибраних наборів даних: %s" ], - "Your chart is not up to date": ["Ваша діаграма не оновлена"], - "Your chart is ready to go!": ["Ваша діаграма готова йти!"], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "Ваша інформаційна панель занадто велика. Будь ласка, зменшіть його розмір, перш ніж економити." + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "DataSet %s пов'язаний з діаграмами %s, які з’являються на інформаційних панелях %s. Ви впевнені, що хочете продовжувати? Видалення набору даних порушить ці об'єкти." ], - "Your query could not be saved": ["Ваш запит не вдалося зберегти"], - "Your query could not be scheduled": [ - "Ваша запит не вдалося запланувати" + "Delete Dataset?": ["Видалити набір даних?"], + "Are you sure you want to delete the selected datasets?": [ + "Ви впевнені, що хочете видалити вибрані набори даних?" ], - "Your query could not be updated": ["Ваш запит не вдалося оновити"], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "Ваш запит запланований. Щоб переглянути деталі вашого запиту, перейдіть до збережених запитів" + "0 Selected": ["0 Вибрано"], + "%s Selected (Virtual)": ["%s вибраний (віртуальний)"], + "%s Selected (Physical)": ["%s вибраний (фізичний)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s вибраний ( %s фізичний, %s віртуальний)" ], - "Your query was not properly saved": [ - "Ваш запит не був належним чином збережений" + "log": ["журнал"], + "Execution ID": ["Ідентифікатор виконання"], + "Scheduled at (UTC)": ["Запланований за адресою (UTC)"], + "Start at (UTC)": ["Почніть з (UTC)"], + "Error message": ["Повідомлення про помилку"], + "Alert": ["Насторожений"], + "There was an issue fetching your recent activity: %s": [ + "Існувало проблему, що витягує вашу недавню діяльність: %s" ], - "Your query was saved": ["Ваш запит був збережений"], - "Your query was updated": ["Ваш запит був оновлений"], - "Your report could not be deleted": ["Ваш звіт не можна було видалити"], - "Zero imputation": ["Нульова імпутація"], - "Zoom": ["Масштаб"], - "Zoom level of the map": ["Рівень масштабу карти"], - "[ untitled dashboard ]": ["[untitled dashboard]"], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "[Longitude] та [Latitude] стовпці повинні бути присутніми в [Group By]" + "There was an issue fetching your dashboards: %s": [ + "Виникла проблема з отриманням інформаційних панелей: %s" ], - "[Longitude] and [Latitude] must be set": [ - "[Longitude] та [Latitude] повинні бути встановлені" + "There was an issue fetching your chart: %s": [ + "Виникла проблема з отриманням вашої діаграми: %s" ], - "[Missing Dataset]": ["[Відсутній набір даних]"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] Доступ до даних %(ім'я)s був наданий" + "There was an issue fetching your saved queries: %s": [ + "Виникла проблема з отриманням збережених запитів: %s" ], - "[Untitled]": ["[Без назви]"], - "[asc]": ["[asc]"], - "[copy]": ["[копія]"], - "[dashboard name]": ["[Назва приладної панелі]"], - "[desc]": ["[desc]"], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "[Необов’язково] Ця вторинна метрика використовується для визначення кольору як співвідношення проти первинної метрики. При опущенні кольори є категоричним і на основі мітків" + "Thumbnails": ["Мініатюри"], + "Recents": ["Втілення"], + "There was an issue previewing the selected query. %s": [ + "Була проблема, що переглядає вибраний запит. %s" ], - "[untitled]": ["[Без назви]"], - "`compare_columns` must have the same length as `source_columns`.": [ - "`compare_columns` повинні мати таку ж довжину, що і `source_columns`." + "TABLES": ["Столи"], + "Open query in SQL Lab": ["Відкритий запит у лабораторії SQL"], + "An error occurred while fetching database values: %s": [ + "Помилка сталася під час отримання значень бази даних: %s" ], - "`compare_type` must be `difference`, `percentage` or `ratio`": [ - "`compare_type` повинно бути `difference`, `percentage` або `ratio`" + "An error occurred while fetching user values: %s": [ + "Помилка сталася під час отримання значень користувачів: %s" ], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`confidence_interval` повинна бути між 0 і 1 (ексклюзивна)" + "Search by query text": ["Пошук за текстом запитів"], + "Deleted %s": ["Видалено %s"], + "Deleted": ["Видалений"], + "There was an issue deleting rules: %s": [ + "Існували правила видалення проблеми: %s" ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "`Count` - це кількість (*), якщо група використовується. Числові стовпці будуть агреговані з агрегатором. Для маркування точок будуть використані нечислові стовпчики. Залиште порожнім, щоб отримати кількість балів у кожному кластері." + "No Rules yet": ["Ще немає правил"], + "Are you sure you want to delete the selected rules?": [ + "Ви впевнені, що хочете видалити вибрані правила?" ], - "`operation` property of post processing object undefined": [ - "`operation` властивість об'єкта після обробки не визначений" + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "Для імпорту їх разом із збереженими запитами потрібні паролі для баз даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." ], - "`prophet` package not installed": ["`prophet` модуль не встановлений"], - "`rename_columns` must have the same length as `columns`.": [ - "`rename_columns` повинен мати таку ж довжину, що і `columns`." + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "Ви імпортуєте один або кілька збережених запитів, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" ], - "`row_limit` must be greater than or equal to 0": [ - "`row_limit` повинен бути більшим або рівним 0" + "Query imported": ["Імпортний запит"], + "There was an issue previewing the selected query %s": [ + "Існувала проблема, що переглядає вибраний запит %s" ], - "`row_offset` must be greater than or equal to 0": [ - "`row_offset` повинен бути більшим або рівним 0" + "Import queries": ["Імпортувати запити"], + "Link Copied!": ["Посилання скопійовано!"], + "There was an issue deleting the selected queries: %s": [ + "Виникла проблема, що видалив вибрані запити: %s" ], - "`width` must be greater or equal to 0": [ - "`width` повинна бути більшою або рівною 0" + "Edit query": ["Редагувати запит"], + "Copy query URL": ["Скопіюйте URL -адресу запитів"], + "Export query": ["Експортний запит"], + "Delete query": ["Видалити запит"], + "Are you sure you want to delete the selected queries?": [ + "Ви впевнені, що хочете видалити вибрані запити?" ], - "aggregate": ["сукупний"], - "alert": ["насторожений"], - "alert dark": ["насторожити темно"], - "alerts": ["попередження"], - "all": ["всі"], - "also copy (duplicate) charts": [ - "також скопіюйте (зробіть дублікат) діаграм" + "queries": ["запити"], + "tag": ["мітка"], + "Are you sure you want to delete the selected tags?": [ + "Ви впевнені, що хочете видалити вибрані теги?" ], - "ancestor": ["предок"], - "and": ["і"], - "annotation": ["анотація"], - "annotation_layer": ["анотація_layer"], - "asfreq": ["асфрек"], - "at": ["в"], - "auto": ["автоматичний"], - "auto (Smooth)": ["авто (Smooth)"], - "background": ["фон"], - "basis": ["основа"], - "below (example:": ["нижче (приклад:"], - "between {down} and {up} {name}": ["між {down} і {up} {name}"], - "bfill": ["блюд"], - "bolt": ["болт"], - "boolean type icon": ["значок булевого типу"], - "bottom": ["дно"], - "button (cmd + z) until you save your changes.": [ - "кнопка (CMD + Z), поки не збережеш свої зміни." + "Image download failed, please refresh and try again.": [ + "Завантажити зображення не вдалося, оновити та повторіть спробу." ], - "by using": ["з допомогою"], - "cannot be empty": ["не може бути порожнім"], - "cardinal": ["кардинальний"], - "change": ["зміна"], - "chart": ["діаграма"], - "charts": ["діаграми"], - "choose WHERE or HAVING...": ["виберіть WHERE або HAVING ..."], - "clear all filters": ["очистіть усі фільтри"], - "click here": ["натисніть тут"], - "code ISO 3166-1 alpha-2 (cca2)": ["код ISO 3166-1 Альфа-2 (CCA2)"], - "code ISO 3166-1 alpha-3 (cca3)": ["код ISO 3166-1 Alpha-3 (CCA3)"], - "code International Olympic Committee (cioc)": [ - "код міжнародного олімпійського комітету (cioc)" + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Виберіть значення у виділеному полі на панелі управління. Потім запустіть запит, натиснувши кнопку %s." ], - "column": ["стовпчик"], - "connecting to %(dbModelName)s.": ["підключення до %(dbModelName)s."], - "count": ["рахувати"], - "create": ["створити"], - "create a new chart": ["cтворіть нову діаграму"], - "create dataset from SQL query": ["cтворити набір даних із запиту SQL"], - "css": ["css"], - "css_template": ["css_template"], - "cumsum": ["кумсум"], - "cumulative": ["кумулятивний"], - "dashboard": ["панель приладів"], - "dashboards": ["інформаційні панелі"], - "database": ["база даних"], - "dataset": ["набір даних"], - "dataset name": ["назва набору даних"], - "date": ["дата"], - "day": ["день"], - "day of the month": ["день місяця"], - "day of the week": ["день тижня"], - "deck.gl 3D Hexagon": ["deck.gl 3D шестикутник"], - "deck.gl Arc": ["deck.gl Arc"], - "deck.gl Geojson": ["deck.gl Geojson"], - "deck.gl Grid": ["колода.gl сітка"], - "deck.gl Heatmap": ["deck.gl Heatmap"], - "deck.gl Multiple Layers": ["deck.gl Multiple Layers"], - "deck.gl Path": ["deck.gl Path"], - "deck.gl Polygon": ["deck.gl Polygon"], - "deck.gl Scatterplot": ["deck.gl Scatterplot"], - "deck.gl Screen Grid": ["deck.gl Screen Grid"], - "deck.gl charts": ["deck.gl charts"], - "deckGL": ["палуба"], - "default": ["за замовчуванням"], - "delete": ["видаляти"], - "descendant": ["нащадок"], - "description": ["опис"], - "deviation": ["відхилення"], - "dialect+driver://username:password@host:port/database": [ - "dialect+driver://username:password@host:port/database" + "Invalid input": ["Неправильні дані"], + "Unexpected error: ": ["Неочікувана помилка: "], + "(no description, click to see stack trace)": [ + "(Немає опису, натисніть, щоб побачити Trace Stack)" ], - "draft": ["розтягувати"], - "dttm": ["dttm"], - "e.g. ********": ["напр. ********"], - "e.g. 127.0.0.1": ["напр. 127.0.0.1"], - "e.g. 5432": ["напр. 5432"], - "e.g. AccountAdmin": ["напр. Рахунок"], - "e.g. Analytics": ["напр. Аналітика"], - "e.g. compute_wh": ["напр. compute_wh"], - "e.g. param1=value1¶m2=value2": [ - "напр. param1 = value1 & param2 = значення2" + "Sorry, an unknown error occurred.": [ + "Вибачте, сталася невідома помилка." ], - "e.g. sql/protocolv1/o/12345": ["напр. SQL/PROTOCOLV1/O/12345"], - "e.g. world_population": ["напр. World_Population"], - "e.g. xy12345.us-east-2.aws": ["напр. xy12345.us-east-2.aws"], - "e.g., a \"user id\" column": ["наприклад, стовпець “user id”"], - "edit mode": ["режим редагування"], - "entries": ["записи"], - "error": ["помилка"], - "error dark": ["помилка темна"], - "error_message": ["повідомлення про помилку"], - "every": ["кожен"], - "every day of the month": ["кожен день місяця"], - "every day of the week": ["кожен день тижня"], - "every hour": ["щогодини"], - "every minute": ["щохвилини"], - "every month": ["щомісяця"], - "expand": ["розширити"], - "explore": ["досліджувати"], - "failed": ["провалився"], - "fetching": ["приплив"], - "ffill": ["ффіл"], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "filter_box буде застарілий у майбутній версії Superset. Будь ласка, замініть filter_box компонентою фільтра інформаційної панелі." + "Sorry, there was an error saving this %s: %s": [ + "Вибачте, була помилка, заощадивши цей %s: %s" ], - "flat": ["рівномірний"], - "for more information on how to structure your URI.": [ - "для отримання додаткової інформації про те, як структурувати свій URI." + "You do not have permission to edit this %s": [ + "Ви не маєте дозволу на редагування цього %s" ], - "function type icon": ["іконка типу функції"], - "geohash (square)": ["geohash (square)"], - "heatmap": ["теплова карта"], - "heatmap: values are normalized across the entire heatmap": [ - "heatmap: значення нормалізуються по всьому heatmap" + "Network error": ["Помилка мережі"], + "Request timed out": ["Час запиту вичерпано"], + "Issue 1000 - The dataset is too large to query.": [ + "Випуск 1000 - набір даних занадто великий, щоб запитувати." ], - "here": ["ось"], - "hour": ["година"], - "id": ["ідентифікатор"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "CSS атрибут об'єкта canvas, який визначає, як браузер збільшує зображення" + "Issue 1001 - The database is under an unusual load.": [ + "Випуск 1001 - База даних знаходиться під незвичним навантаженням." ], - "in": ["у"], - "in modal": ["у модальному"], - "is expected to be a number": ["очікується, що буде числом"], - "is expected to be an integer": ["очікується, що буде цілим числом"], - "joined": ["об'єднаний"], - "json isn't valid": ["json не є дійсним"], - "key a-z": ["літера A-Z"], - "key z-a": ["літера Z-A"], - "label": ["мітка"], - "last day": ["останній день"], - "last month": ["минулого місяця"], - "last quarter": ["останній чверть"], - "last week": ["минулого тижня"], - "last year": ["минулого року"], - "latest partition:": ["останній розділ:"], - "left": ["лівий"], - "less than {min} {name}": ["менше {min} {name}"], - "linear": ["лінійний"], - "log": ["журнал"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "нижній percentile повинен бути більше 0 і менше 100. Повинен бути нижчим, ніж верхній percentile." + "An error occurred while fetching %s info: %s": [ + "Помилка сталася під час отримання %s Інформація: %s" ], - "max": ["максимум"], - "mean": ["середній"], - "median": ["медіана"], - "metric": ["метричний"], - "min": ["хв"], - "minute": ["хвилина"], - "minute(s)": ["хвилини"], - "monotone": ["монотонний"], - "month": ["місяць"], - "more than {max} {name}": ["більше {max} {name}"], - "must have a value": ["повинен мати значення"], - "name": ["назва"], - "no SQL validator is configured": ["жоден SQL валідатор не налаштований"], - "no SQL validator is configured for {}": [ - "жоден SQL валідатор не налаштований для {}" + "An error occurred while fetching %ss: %s": [ + "Помилка сталася під час отримання %ss: %s" ], - "numeric type icon": ["значок числового типу"], - "nvd3": ["nvd3"], - "of parent": ["батьків"], - "of total": ["загалом"], - "offline": ["офлайн"], - "on": ["на"], - "or": ["або"], - "or use existing ones from the panel on the right": [ - "або використовуйте існуючі з панелі праворуч" + "An error occurred while creating %ss: %s": [ + "Помилка сталася під час створення %ss: %s" ], - "orderby column must be populated": [ - "стовпчик orderby повинен бути заповнений" + "Please re-export your file and try importing again": [ + "Будь ласка, повторно експортуйте файл і спробуйте знову імпортувати" ], - "overall": ["загальний"], - "p-value precision": ["точність p-value"], - "p1": ["p1"], - "p5": ["p5"], - "p95": ["p95"], - "p99": ["p99"], - "page_size.all": ["page_size.all"], - "page_size.entries": ["page_size.entries"], - "page_size.show": ["page_size.show"], - "pending": ["що очікує"], - "percentile (exclusive)": ["відсотковий (ексклюзивний)"], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "відсотки повинні бути списком або кортежом з двома числовими значеннями, з яких перша нижча за друге значення" + "An error occurred while importing %s: %s": [ + "Помилка сталася під час імпорту %s: %s" ], - "permalink state not found": ["стан постійного посилання не знайдено"], - "pixelated (Sharp)": ["пікселізований (різкий)"], - "previous calendar month": ["попередній календарний місяць"], - "previous calendar week": ["попередній календарний тиждень"], - "previous calendar year": ["попередній календарний рік"], - "published": ["опублікований"], - "quarter": ["чверть"], - "queries": ["запити"], - "query": ["запит"], - "random": ["випадковий"], - "reboot": ["перезавантажити"], - "recent": ["недавній"], - "recents": ["недавні"], - "report": ["доповідь"], - "reports": ["звіти"], - "restore zoom": ["відновити масштаб"], - "right": ["право"], - "rowlevelsecurity": ["rowlevelsecurity"], - "running": ["біг"], - "saved queries": ["збережені запити"], - "search by tags": ["пошук за тегами"], - "seconds": ["секунди"], - "series": ["серія"], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ - "series: Ставтеся до кожної серії незалежно; Загалом: усі серії використовують однакову шкалу; Зміна: Показати зміни порівняно з першою точкою даних у кожній серії" + "There was an error fetching the favorite status: %s": [ + "Була помилка, яка отримала улюблений статус: %s" ], - "square": ["квадрат"], - "stack": ["стек"], - "staggered": ["здивований"], - "std": ["std"], - "step-after": ["накопичувач"], - "step-before": ["ступінь"], - "stopped": ["зупинений"], - "stream": ["потік"], - "string type icon": ["іконка типу рядка"], - "success": ["успіх"], - "success dark": ["успіх темний"], - "sum": ["сума"], - "syntax.": ["синтаксис."], - "tag": ["мітка"], - "temporal type icon": ["іконка тимчасового типу"], - "textarea": ["textarea"], - "to": ["до"], - "top": ["топ"], - "undo": ["скасувати"], - "unknown type icon": ["іконка невідомого типу"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "верхній percentile повинен бути більшим за 0 і менше 100. Повинен бути вищим, ніж нижчий percentile." + "There was an error saving the favorite status: %s": [ + "Була помилка, щоб зберегти улюблений статус: %s" ], - "use latest_partition template": [ - "використовуйте шаблон latest_partition" + "Connection looks good!": ["З'єднання виглядає добре!"], + "ERROR: %s": ["Помилка: %s"], + "There was an error fetching your recent activity:": [ + "Була помилка, яка отримала вашу недавню діяльність:" ], - "value ascending": ["значення збільшення"], - "value descending": ["значення зменшення"], - "var": ["var"], - "variance": ["дисперсія"], - "view instructions": ["переглянути інструкції"], - "virtual": ["віртуальний"], - "viz type": ["тип з -за"], - "was created": ["було створено"], - "week": ["тиждень"], - "week ending Saturday": ["тиждень, що закінчується в суботу"], - "week starting Sunday": ["тиждень, починаючи з неділі"], - "x": ["x"], - "x: values are normalized within each column": [ - "x: Значення нормалізуються в кожному стовпці" + "There was an issue deleting: %s": ["Видаляло проблему: %s"], + "URL": ["URL"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "Шаблове посилання, можна включити {{metric}} або інші значення, що надходять з елементів управління." ], - "y": ["у"], - "y: values are normalized within each row": [ - "y: Значення нормалізуються в кожному рядку" + "Time-series Table": ["Таблиця часових рядів"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "Порівняйте кілька діаграм часових рядів (як іскричні лінії) та пов'язані з ними показники." ], - "year": ["рік"], - "zoom area": ["масштаб"], - "10 seconds": ["10 секунд"], - "6 hours": ["6 годин"], - "12 hours": ["12 годин"], - "24 hours": ["24 години"] + "We have the following keys: %s": ["У нас є такі ключі: %s"] } } } diff --git a/superset/translations/uk/LC_MESSAGES/messages.po b/superset/translations/uk/LC_MESSAGES/messages.po index cdf04d62b96a7..93fedff5e2896 100644 --- a/superset/translations/uk/LC_MESSAGES/messages.po +++ b/superset/translations/uk/LC_MESSAGES/messages.po @@ -16,12162 +16,20374 @@ # This file was generated from uk_messages.xlsx msgid "" msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2023-09-17 12:57+0300\n" "Last-Translator: \n" -"Language-Team: \n" "Language: uk\n" +"Language-Team: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: xls-to-po 1.0\n" -"X-Generator: Poedit 3.3.2\n" +"Generated-By: Babel 2.9.1\n" -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "" -"\n" -" Цей фільтр був успадкований із контексту панелі приладної панелі.\n" -" Це не буде збережено під час збереження діаграми.\n" -" " +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "DataSource занадто великий, щоб запитувати." + +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "База даних знаходиться під незвичним навантаженням." +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "База даних повернула несподівану помилку." + +#: superset/errors.py:104 msgid "" -"\n" -" Error: %(text)s\n" -" " +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" -"\n" -" Помилка: %(text)s\n" -" " +"У запиті SQL є помилка синтаксису. Можливо, було неправильне написання чи" +" друкарську помилку." -msgid " (excluded)" -msgstr " (виключається)" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "Стовпчик був видалений або перейменований у базу даних." -msgid " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON" -msgstr " Встановіть непрозорість на 0, якщо ви не хочете перекрити колір, вказаний у Geojson" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "Таблицю було видалено або перейменовано в базу даних." -msgid " a dashboard OR " -msgstr " інформаційна панель або " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "Один або кілька параметрів, зазначених у запиті, відсутні." -msgid " a new one" -msgstr " новий" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "Ім'я хоста неможливо вирішити." -msgid " expression which needs to adhere to the " -msgstr " вираз, який повинен дотримуватися до " +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "Порт закритий." -msgid " source code of Superset's sandboxed parser" -msgstr " Вихідний код аналізатора пісочниці Superset" +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." +msgstr "Хост може бути вниз, і його неможливо дістатися на наданий порт." -msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. Note\n" -" currently time zones are not supported. If time is stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n" -" is specified we fall back to using the optional defaults on a per\n" -" database/column name level via the extra parameter." +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "Суперсет зіткнувся з помилкою під час запуску команди." + +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "Суперсет зіткнувся з несподіваною помилкою." + +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." msgstr "" -" стандарт для забезпечення лексикографічного впорядкування\n" -" збігається з хронологічним впорядкуванням. Якщо\n" -" Формат часової позначки не дотримується стандарту ISO 8601\n" -" Вам потрібно буде визначити вираз і ввести для\n" -" перетворення рядка на дату або часову позначку. Примітка\n" -" В даний час часові пояси не підтримуються. Якщо час зберігається\n" -" У форматі епохи поставте `epoch_s` або` epoch_ms`. Якщо немає шаблону\n" -" вказано, що ми повертаємось до використання додаткових за замовчуванням на Per\n" -" Рівень імені даних/стовпця через додатковий параметр." +"Ім'я користувача, що надається при підключенні до бази даних, не є " +"дійсним." -msgid " to add calculated columns" -msgstr " Для додавання обчислених стовпців" +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "Пароль, наданий при підключенні до бази даних, не є дійсним." -msgid " to add metrics" -msgstr " Додати показники" +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "Або ім'я користувача, або пароль неправильні." -msgid " to edit or add columns and metrics." -msgstr " редагувати або додати стовпці та показники." +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Або база даних написана неправильно, або не існує." -msgid " to mark a column as a time column" -msgstr " Щоб позначити стовпець як стовпчик часу" +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "Схема була видалена або перейменована в базу даних." -msgid " to open SQL Lab. From there you can save the query as a dataset." -msgstr " відкрити SQL Lab. Звідти ви можете зберегти запит як набір даних." +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "Користувач не має належних дозволів." -msgid " to visualize your data." -msgstr " Візуалізувати свої дані." +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." +msgstr "" +"Не вистачає одного або декількох параметрів, необхідних для налаштування " +"бази даних." -msgid "!= (Is not equal)" -msgstr "! = (Не рівний)" +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "Надістоване корисне навантаження має неправильний формат." -msgid "%(dialect)s cannot be used as a data source for security reasons." -msgstr "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки." +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "Надіслане корисне навантаження має неправильну схему." + +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." +msgstr "Результати, необхідні для асинхронних запитів, не налаштована." + +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "База даних не дозволяє маніпулювати даними." +#: superset/errors.py:127 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -"%(message)s\n" -"Це може бути спровоковано:\n" -"%(issues)s" +"CTA (створити таблицю як Select) не має оператора SELECT в кінці. Будь " +"ласка, переконайтеся, що ваш запит має вибір як останнє твердження. Потім" +" спробуйте знову запустити свій запит." -msgid "%(name)s.csv" -msgstr "%(name)s.CSV" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "CVAS (створити перегляд як SELECT) Запит має більше одного оператора." -msgid "%(object)s does not exist in this database." -msgstr "%(object)s не існує в цій базі даних." +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "CVAS (Створіть перегляд як SELECT) Запит не є оператором SELECT." -msgid "%(other)s charts will appear here" -msgstr "%(other)s -діаграми з’являться тут" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "Запит занадто складний і займає занадто багато часу." -msgid "%(other)s dashboards will appear here" -msgstr "%(other)s інформаційні панелі з’являться тут" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "В даний час база даних працює занадто багато запитів." -msgid "%(other)s recents will appear here" -msgstr "%(other)s останнє з’явиться тут" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "Один або кілька параметрів, зазначених у запиті, є неправильними." -msgid "%(other)s saved queries will appear here" -msgstr "%(other)s збережені запити з’являться тут" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "Об'єкт не існує в даній базі даних." -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "Запит має помилку синтаксису." -msgid "%(rows)d rows returned" -msgstr "%(rows)d рядки повернулися" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "Результати, що бекрономиться, більше не мають даних із запиту." + +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "Запит, пов’язаний з результатами, було видалено." +#: superset/errors.py:141 msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" -"%(subtitle)s\n" -"Це може бути спровоковано:\n" -" %(issue)s" - -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgstr "%(suggestion)s замість “%(undefinedParameter)s?\"" +"Результати, що зберігаються в бекенді, зберігалися в іншому форматі, і " +"більше не можуть бути дезеріалізовані." -msgid "%(user)s was granted the role %(role)s that gives access to the %(datasource)s" -msgstr "%(user)s було надано роль %(role)s, яка надає доступ до %(datasource)s" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "Номер порту недійсний." -msgid "%(user)s's profile" -msgstr "%(user)s профіль" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "Не вдалося запустити віддалений запит на працівника." -msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" -msgstr "" -"%(validator)s не зміг перевірити ваш запит.\n" -"Будь ласка, перегляньте свій запит.\n" -"Виняток: %(ex)s" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "База даних була видалена." -msgid "%s Error" -msgstr "%s помилка" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "Спеціальні поля SQL не можуть містити підзапити." -msgid "%s PASSWORD" -msgstr "%s пароль" +#: superset/errors.py:149 +#, fuzzy +msgid "The submitted payload failed validation." +msgstr "Надіслане корисне навантаження має неправильну схему." -msgid "%s SSH TUNNEL PASSWORD" -msgstr "%s SSH Тунельний пароль" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "Недійсний сертифікат" -msgid "%s SSH TUNNEL PRIVATE KEY" -msgstr "%s SSH Tunnel Private Key" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." +msgstr "" -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" -msgstr "%s SSH тунель приватного пароля" +#: superset/forms.py:72 +#, python-format +msgid "File size must be less than or equal to %(max_size)s bytes" +msgstr "" -msgid "%s Selected" -msgstr "%s вибраний" +#: superset/jinja_context.py:344 +#, python-format +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "Небезпечний тип повернення для функції %(func)s: %(value_type)s" -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s вибраний ( %s фізичний, %s віртуальний)" +#: superset/jinja_context.py:355 +#, python-format +msgid "Unsupported return value for method %(name)s" +msgstr "Непідтримуване повернення значення для методу %(name)s" -msgid "%s Selected (Physical)" -msgstr "%s вибраний (фізичний)" +#: superset/jinja_context.py:371 +#, python-format +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "Небезпечне значення шаблону для ключа %(key)s: %(value_type)s" -msgid "%s Selected (Virtual)" -msgstr "%s вибраний (віртуальний)" +#: superset/jinja_context.py:382 +#, python-format +msgid "Unsupported template value for key %(key)s" +msgstr "Небудова значення шаблону для ключа %(key)s" -msgid "%s aggregates(s)" -msgstr "%s агреговані" +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "Протягом цієї бази даних допускаються лише вибору." -msgid "%s column(s)" -msgstr "%s стовпці" +#: superset/sql_lab.py:302 +#, python-format +msgid "" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "" +"Запит був убитий після %(sqllab_timeout)s секунд. Це може бути занадто " +"складно, або база даних може бути під великим навантаженням." -msgid "%s operator(s)" -msgstr "%s Оператор(и)" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "Бекенд результатів не налаштовано." -msgid "%s option" -msgstr "%s варіант" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." +msgstr "" +"CTA (створити таблицю як Select) можна запустити лише за допомогою " +"запиту, де останнє твердження - це вибір. Будь ласка, переконайтеся, що " +"ваш запит має вибір як останнє твердження. Потім спробуйте знову " +"запустити свій запит." -msgid "%s option(s)" -msgstr "%s варіант(и)" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." +msgstr "" +"CVA (створити перегляд як Select) можна запустити лише за допомогою " +"запиту з одним оператором SELECT. Будь ласка, переконайтеся, що ваш запит" +" має лише оператор SELECT. Потім спробуйте знову запустити свій запит." -msgid "%s row" -msgstr "%s рядок" +#: superset/sql_lab.py:488 +#, python-format +msgid "Running statement %(statement_num)s out of %(statement_count)s" +msgstr "Запуск оператора %(statement_num)s з %(statement_count)s" -msgid "%s saved metric(s)" -msgstr "%s збережені метрики" +#: superset/sql_lab.py:510 +#, python-format +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "Заява %(statement_num)s з %(statement_count)s" -msgid "%s updated" -msgstr "%s оновлено" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "А саме відсутній даних" -msgid "%s%s" -msgstr "%s%s" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." +msgstr "" +"Застосоване вікно прокатки не повернуло жодних даних. Будь ласка, " +"переконайтесь, що запит джерела задовольняє мінімальні періоди, визначені" +" у вікні прокатки." -msgid "%s-%s of %s" -msgstr "%s-%s з %s" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "З дати не може бути більшим, ніж на сьогоднішній день" -msgid "(Removed)" -msgstr "(Видалено)" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "Кешоване значення не знайдено" -msgid "(deleted or invalid type)" -msgstr "(видалений або недійсний тип)" +#: superset/viz.py:577 +#, python-format +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "Стовпці відсутні в даних datasource: %(invalid_columns)s" -msgid "(no description, click to see stack trace)" -msgstr "(Немає опису, натисніть, щоб побачити Trace Stack)" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "Перегляд таблиці часу" -msgid "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options." -msgstr "(Необов’язково) Значення за замовчуванням для фільтра при використанні декількох опцій ви можете використовувати список параметрів, що обмежується комою." +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "Виберіть хоча б одну метрику" -msgid "), and they become available in your SQL (example:" -msgstr "), і вони стають доступними у вашому SQL (приклад:" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "При використанні \"Group за\" ви обмежені для використання однієї метрики" -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(URL)s | Ознайомтеся з Superset>\n" -"\n" -"%(table)s\n" - -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" -msgstr "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Помилка: %(text)s\n" - -msgid "+ %s more" -msgstr "+ %s більше" - -msgid "," -msgstr "," - -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n" -"\n" -msgstr "" -"- Примітка. Якщо ви не зберегли свій запит, ці вкладки не будуть зберігатись, якщо ви очистите файли cookie або змінить браузери.\n" -"\n" - -msgid "." -msgstr "." - -msgid "0 Selected" -msgstr "0 Вибрано" - -msgid "1 calendar day frequency" -msgstr "1 Календарний день частота" - -msgid "1 day" -msgstr "1 день" - -msgid "1 day ago" -msgstr "1 день тому" - -msgid "1 hour" -msgstr "1 година" - -msgid "1 hourly frequency" -msgstr "1 погодинна частота" - -msgid "1 minute" -msgstr "1 хвилина" - -msgid "1 minutely frequency" -msgstr "1 хвилинна частота" - -msgid "1 month end frequency" -msgstr "Кінцева частота 1 місяця" - -msgid "1 month start frequency" -msgstr "Частота початку 1 місяця" - -msgid "1 week" -msgstr "1 тиждень" - -msgid "1 week ago" -msgstr "1 тиждень тому" - -msgid "1 week starting Monday (freq=W-MON)" -msgstr "1 тиждень, починаючи з понеділка (FREQ = W-Mon)" - -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "1 тиждень, починаючи з неділі (FREQ = W-SUN)" - -msgid "1 year" -msgstr "1 рік" - -msgid "1 year ago" -msgstr "1 рік тому" - -msgid "1 year end frequency" -msgstr "Кінцева частота 1 рік" - -msgid "1 year start frequency" -msgstr "1 рік старту частоти" - -msgid "10 minute" -msgstr "10 хвилин" - -msgid "104 weeks" -msgstr "104 тижні" - -msgid "104 weeks ago" -msgstr "104 тижні тому" - -msgid "15 minute" -msgstr "15 хвилин" - -msgid "156 weeks" -msgstr "156 тижнів" - -msgid "156 weeks ago" -msgstr "156 тижнів тому" - -msgid "1AS" -msgstr "1AS" - -msgid "1D" -msgstr "1D" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "Календарна теплова карта" -msgid "1H" -msgstr "1H" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "Міхурна діаграма" -msgid "1M" -msgstr "1M" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "Будь ласка, використовуйте 3 різні метричні етикетки" -msgid "1T" -msgstr "1T" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "Виберіть показник для X, Y та розміру" -msgid "2 years" -msgstr "2 роки" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "Куляна діаграма" -msgid "2 years ago" -msgstr "2 роки тому" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "Виберіть показник для відображення" -msgid "2/98 percentiles" -msgstr "2/98 процентиль" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "Часовий ряд - Лінійна діаграма" -msgid "22" -msgstr "22" +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 +msgid "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "" +"При використанні порівняння часу вкладений діапазон часу (як стартовий, " +"так і кінець)." -msgid "28 days" -msgstr "28 днів" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "Часові серії - Барна діаграма" -msgid "28 days ago" -msgstr "28 днів тому" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "Часовий ряд - Період" -msgid "2D" -msgstr "2d" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "Часовий ряд - відсоток зміни" -msgid "3 letter code of the country" -msgstr "3х символьний код країни" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "Часовий ряд - складений" -msgid "3 years" -msgstr "3 роки" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "Гістограма" -msgid "3 years ago" -msgstr "3 роки тому" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "Повинен мати щонайменше один числовий стовпчик" -msgid "30 days" -msgstr "30 днів" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "Розповсюдження - штрих -діаграма" -msgid "30 days ago" -msgstr "30 днів тому" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Не може бути перекриття між серіями та розбиттями" -msgid "30 minute" -msgstr "30 хвилин" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "Виберіть принаймні одне поле для [серії]" -msgid "30 minutes" -msgstr "30 хвилин" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "Санкі" -msgid "30 second" -msgstr "30 секунд" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "Виберіть рівно 2 стовпці як [джерело / ціль]" -msgid "30 seconds" -msgstr "30 секунд" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "" +"У вашому Санкі є петля, будь ласка, надайте дерево. Ось несправне " +"посилання: {}" -msgid "3D" -msgstr "3D" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "Спрямований макет сили" -msgid "4 weeks (freq=4W-MON)" -msgstr "4 тижні (частота=4W-MON)" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "Карта країни" -msgid "5 minute" -msgstr "5 -хвилинний" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "Карта світу" -msgid "5 minutes" -msgstr "5 хвилин" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "Паралельні координати" -msgid "5 second" -msgstr "5 секунд" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "Теплова карта" -msgid "5 seconds" -msgstr "5 секунд" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "Horizon Charts" -msgid "52 weeks" -msgstr "52 тижні" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "Mapbox" -msgid "52 weeks ago" -msgstr "52 тижні тому" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[Longitude] та [Latitude] повинні бути встановлені" -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "52 тижні, починаючи з понеділка (частота=52W-MON)" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "Повинен мати стовпець [група за], щоб мати \"рахувати\" як [мітку]" -msgid "6 hour" -msgstr "6 годин" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "Вибір [мітки] повинен бути присутнім у [групі]" -msgid "60 days" -msgstr "60 днів" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "Вибір [радіуса точки] повинен бути присутнім у [групі]" -msgid "7 calendar day frequency" -msgstr "7 Календарний день частота" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "[Longitude] та [Latitude] стовпці повинні бути присутніми в [Group By]" -msgid "7 days" -msgstr "7 днів" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "Deck.gl - кілька шарів" -msgid "7D" -msgstr "7d" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "Поганий просторовий ключ" -msgid "9/91 percentiles" -msgstr "9/91 відсотків" +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "Недійсна просторова точка, що зустрічається: %s" -msgid "90 days" -msgstr "90 днів" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "" +"Зіткнувшись недійсний нульовий просторовий запис, будь ласка, подумайте " +"про фільтрування їх" -msgid ":" -msgstr ":" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Колода.gl - сюжет розсіювання" -msgid "< (Smaller than)" -msgstr "<(Менше, ніж)" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - сітка екрана" -msgid "<= (Smaller or equal)" -msgstr "<= (Менший або рівний)" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Палуба.gl - 3D сітка" -msgid "" -msgstr "<введіть вираз SQL тут>" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - шляхи" -msgid "" -msgstr "<новий стовпець>" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Палуба.gl - багатокутник" -msgid "" -msgstr "<Новий метрик>" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D -шестигранник" -msgid "" -msgstr "<новий просторовий>" +#: superset/viz.py:2271 +msgid "Deck.gl - Heatmap" +msgstr "Палуба.gl - Теплова карта" -msgid "" -msgstr "<без типу>" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Колода.gl - дуга" -msgid "== (Is equal)" -msgstr "== (рівний)" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - Geojson" -msgid "> (Larger than)" -msgstr "> (Більше, ніж)" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Колода.gl - дуга" -msgid ">= (Larger or equal)" -msgstr "> = (Більший або рівний)" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "Потік подій" -msgid "A Big Number" -msgstr "Велика кількість" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "Часовий ряд - парний t -тест" -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "Кома -розділений список стовпців, які слід проаналізувати як дати" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "Часові серії - Соловейна діаграма троянд" -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "Список стовпців, відокремлений комою, які слід проаналізувати як дати." +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "Діаграма розділів" -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "Список схем, відокремлений комами, до яких файли дозволяють завантажувати." +#: superset/viz.py:2676 +msgid "Please choose at least one groupby" +msgstr "Будь ласка, виберіть хоча б одну групу" -msgid "A database with the same name already exists." -msgstr "База даних з тим самим іменем вже існує." +#: superset/advanced_data_type/api.py:101 +#, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "Недійсний тип даних про розширені дані: %(advanced_data_type)s" -msgid "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "Словник із назвами стовпців та їх типами даних, якщо вам потрібно змінити за замовчуванням. Приклад: {\"user_id\": \"Integer\"}" +#: superset/annotation_layers/api.py:346 +#, fuzzy, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "Видалений %(число) D шар анотації" +msgstr[1] "" +msgstr[2] "" + +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Весь текст" -msgid "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)" -msgstr "Повна URL -адреса, що вказує на розташування вбудованого плагіна (наприклад, може бути розміщена на CDN)" +#: superset/annotation_layers/annotations/api.py:488 +#, fuzzy, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "Видалено %(число) d анотація" +msgstr[1] "" +msgstr[2] "" -msgid "A handlebars template that is applied to the data" -msgstr "Шаблон ручки, який застосовується до даних" +#: superset/charts/api.py:523 +#, fuzzy, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "Видалено %(число) D діаграми" +msgstr[1] "" +msgstr[2] "" -msgid "A human-friendly name" -msgstr "Зручне для людини ім’я" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" +msgstr "Є сертифікованим" -msgid "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain." -msgstr "Список доменних імен, які можуть вбудувати цю інформаційну панель. Якщо лишити це поле порожнім, це дозволить вбудувати панель з будь-якого домену." +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +msgid "Has created by" +msgstr "Створив" -msgid "A list of tags that have been applied to this chart." -msgstr "Список тегів, які були застосовані до цієї діаграми." +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +msgid "Created by me" +msgstr "Створений мною" -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "Список користувачів, які можуть змінити діаграму. Шукати за іменем або іменем користувача." +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" +msgstr "Належить створеним або прихильним" -msgid "A map of the world, that can indicate values in different countries." -msgstr "Карта світу, яка може вказувати на цінності в різних країнах." +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" +msgstr "Всього (%(aggfunc)s)" -msgid "A map that takes rendering circles with a variable radius at latitude/longitude coordinates" -msgstr "Карта, яка приймає кола з рендерінгу зі змінною радіусом на координатах широти/довготи" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "Суттєвий" -msgid "A metric to use for color" -msgstr "Показник для використання для кольору" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`confidence_interval` повинна бути між 0 і 1 (ексклюзивна)" +#: superset/charts/schemas.py:728 msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its " -"radius or sweep angle." +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." msgstr "" -"Полярна координатна діаграма, де коло розбивається на клини з рівним кутом, а значення, представлене будь -яким клином, проілюстровано його областю, а не його " -"радіусом або кутом підмітання." - -msgid "A readable URL for your dashboard" -msgstr "Читабельна URL адреса для вашої інформаційної панелі" - -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "Посилання на конфігурацію [часу], враховуючи деталізацію" - -msgid "A report named \"%(name)s\" already exists" -msgstr "Звіт під назвою “%(name)s” вже існує" - -msgid "A reusable dataset will be saved with your chart." -msgstr "Набору даних багаторазового використання буде збережено за допомогою вашої діаграми." - -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "Скріншот інформаційної панелі буде надіслано на ваш електронний лист за адресою" - -msgid "A set of parameters that become available in the query using Jinja templating syntax" -msgstr "Набір параметрів, які стають доступними у запиті за допомогою синтаксису шаблону Jinja" - -msgid "A time column must be specified when using a Time Comparison." -msgstr "Стовпчик часу повинен бути вказаний при використанні порівняння часу." - -msgid "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color." -msgstr "Діаграма часових рядів, яка візуалізує, як пов'язана метрика з декількох груп різниться з часом. Кожна група візуалізується за допомогою іншого кольору." - -msgid "A timeout occurred while executing the query." -msgstr "Під час виконання запиту стався таймаут." - -msgid "A timeout occurred while generating a csv." -msgstr "Під час генерування CSV стався таймаут." - -msgid "A timeout occurred while generating a dataframe." -msgstr "Під час генерування даних даних траплявся таймаут." - -msgid "A timeout occurred while taking a screenshot." -msgstr "Під час зняття скріншота стався таймаут." - -msgid "A valid color scheme is required" -msgstr "Потрібна дійсна кольорова гама" - -msgid "APPLY" -msgstr "Застосовувати" - -msgid "APR" -msgstr "Квітня" - -msgid "AQE" -msgstr "AQE" +"нижній percentile повинен бути більше 0 і менше 100. Повинен бути нижчим," +" ніж верхній percentile." -msgid "AUG" -msgstr "Серпень" - -msgid "AXIS TITLE MARGIN" -msgstr "ЗАВДАННЯ ВІСІВ" - -msgid "AXIS TITLE POSITION" -msgstr "Позиція заголовка вісь" - -msgid "About" -msgstr "Про" - -msgid "Access" -msgstr "Доступ" - -msgid "Access requests" -msgstr "Запити доступу" - -msgid "Access to user activity data is restricted" -msgstr "Доступ до даних про активність користувача обмежений" - -msgid "Access token" -msgstr "Маркер доступу" - -msgid "Access was requested" -msgstr "Доступ вимагав" - -msgid "Action" -msgstr "Дія" - -msgid "Action Log" -msgstr "Журнал дій" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" +"верхній percentile повинен бути більшим за 0 і менше 100. Повинен бути " +"вищим, ніж нижчий percentile." -msgid "Actions" -msgstr "Дії" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`width` повинна бути більшою або рівною 0" -msgid "Active" -msgstr "Активний" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "`row_limit` повинен бути більшим або рівним 0" -msgid "Actual Values" -msgstr "Фактичні значення" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`row_offset` повинен бути більшим або рівним 0" -msgid "Actual time range" -msgstr "Фактичний часовий діапазон" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" +msgstr "стовпчик orderby повинен бути заповнений" -msgid "Actual value" -msgstr "Фактичне значення" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "" +"Діаграма не має збереженого контексту запиту. Будь ласка, збережіть " +"діаграму ще раз." -msgid "Actual values" -msgstr "Фактичні значення" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "Запит невірний: %(error)s" -msgid "Adaptive formatting" -msgstr "Адаптивне форматування" +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "Запит - це не json" -msgid "Add" -msgstr "Додавання" +#: superset/charts/data/api.py:369 +msgid "Empty query result" +msgstr "Порожній результат запиту" -msgid "Add Alert" -msgstr "Додати сповіщення" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "Власники недійсні" -msgid "Add CSS Template" -msgstr "Додайте шаблон CSS" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "Деяких ролей не існує" -msgid "Add CSS template" -msgstr "Додайте шаблон CSS" +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" +msgstr "Тип даних недійсний" -msgid "Add Chart" -msgstr "Додайте діаграму" +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" +msgstr "DataSource не існує" -msgid "Add Column" -msgstr "Додайте стовпчик" +#: superset/commands/exceptions.py:142 +msgid "Query does not exist" +msgstr "Запити не існує" -msgid "Add Dashboard" -msgstr "Додайте Інформаційну панель" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "Параметри шару анотації недійсні." -msgid "Add Database" -msgstr "Додати базу даних" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "Анотаційний шар не вдалося створити." -msgid "Add Log" -msgstr "Додати журнал" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "Анотаційний шар не вдалося оновити." -msgid "Add Metric" -msgstr "Додати показник" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "Анотаційний шар не знайдено." -msgid "Add Report" -msgstr "Додайте звіт" +#: superset/commands/annotation_layer/exceptions.py:45 +#, fuzzy +msgid "Annotation layers could not be deleted." +msgstr "Анотаційний шар не міг бути видалений." -msgid "Add Rule" -msgstr "Додайте правило" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "Анотаційний шар має пов’язані анотації." -msgid "Add Saved Query" -msgstr "Додайте збережений запит" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "Ім'я повинно бути унікальним" -msgid "Add a Plugin" -msgstr "Додайте плагін" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "Дата закінчення повинна бути після дати початку" -msgid "Add a dataset" -msgstr "Додайте набір даних" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "Короткий опис повинен бути унікальним для цього шару" -msgid "Add a new tab" -msgstr "Додайте нову вкладку" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "Анотація не знайдена." -msgid "Add a new tab to create SQL Query" -msgstr "Додайте нову вкладку, щоб створити запит SQL" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "Параметри анотації недійсні." -msgid "Add additional custom parameters" -msgstr "Додайте додаткові спеціальні параметри" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "Анотація не вдалося створити." -msgid "Add an annotation layer" -msgstr "Додайте шар анотації" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "Анотацію не вдалося оновити." -msgid "Add an item" -msgstr "Додайте предмет" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "Анотації не можна було видалити." -msgid "Add and edit filters" -msgstr "Додати та редагувати фільтри" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "Існують пов'язані сповіщення або звіти: %s," -msgid "Add annotation" -msgstr "Додати анотацію" +#: superset/commands/chart/exceptions.py:38 +#, python-format +msgid "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" +"Рядок часу неоднозначний. Будь ласка, вкажіть [%(human_readable)s тому] " +"або [%(human_readable)s пізніше]." -msgid "Add annotation layer" -msgstr "Додайте шар анотації" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "Не вдається розбирати часовий рядок [%(human_readable)s]" -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" -msgstr "Додайте обчислені стовпці до набору даних у модалі \"Редагувати DataSource\"" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "" +"Дельта часу неоднозначна. Будь ласка, вкажіть [%(human_readable)s тому] " +"або [%(human_readable)s пізніше]." -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "Додайте обчислені тимчасові стовпці до набору даних у модалі \"редагувати дані\"" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "Бази даних не існує" -msgid "Add cross-filter" -msgstr "Додати перехресний фільтр" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "Дашбордів не існує" -msgid "Add custom scoping" -msgstr "Додайте власні сфери застосування" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "Тип даних потрібен, коли задається DataSource_ID" -msgid "Add delivery method" -msgstr "Додайте метод доставки" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Параметри діаграми недійсні." -msgid "Add extra connection information." -msgstr "Додайте додаткову інформацію про з'єднання." +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "Діаграма не вдалося створити." -msgid "Add filter" -msgstr "Додати фільтр" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "Діаграма не вдалося оновити." -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., these conditions\n" -" do not impact how the filter is applied to the dashboard. This is useful\n" -" when you want to improve the query's performance by only scanning a subset\n" -" of the underlying data or limit the available values displayed in the filter." -msgstr "" -"Додайте застереження про фільтр для контролю запиту джерела фільтра,\n" -" Хоча лише в контексті автозаповнення, тобто ці умови\n" -" Не впливайте на те, як фільтр застосовується на інформаційній панелі. Це корисно\n" -" Коли ви хочете покращити продуктивність запиту, лише скануючи підмножину\n" -" базових даних або обмежити наявні значення, відображені у фільтрі." +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "Діаграми не можна було видалити." -msgid "Add filters and dividers" -msgstr "Додайте фільтри та роздільники" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "Є пов'язані сповіщення або звіти" -msgid "Add item" -msgstr "Додати елемент" +#: superset/commands/chart/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "Ви не маєте доступу до цієї діаграми." -msgid "Add metric" -msgstr "Додати показник" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "Зміна цієї діаграми заборонена" -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "Додайте показники до набору даних у модал \"Редагувати DataSource\"" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "Діаграма імпорту не вдалася з невідомих причин" -msgid "Add new color formatter" -msgstr "Додайте новий кольоровий форматер" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "Зміна цієї інформаційної панелі заборонена" -msgid "Add new formatter" -msgstr "Додати новий форматер" +#: superset/commands/chart/exceptions.py:156 +#, fuzzy, python-format +msgid "Chart not found" +msgstr "Діаграма %(id)s не знайдено" -msgid "Add notification method" -msgstr "Додайте метод сповіщення" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" +msgstr "Помилка: %(error)s" -msgid "Add required control values to preview chart" -msgstr "Додайте необхідні контрольні значення для попереднього перегляду діаграми" +#: superset/commands/css/exceptions.py:23 +#, fuzzy +msgid "CSS templates could not be deleted." +msgstr "Шаблон CSS не можна було видалити." -msgid "Add required control values to save chart" -msgstr "Додайте необхідні контрольні значення для збереження діаграми" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "Шаблон CSS не знайдено." -msgid "Add sheet" -msgstr "Додати аркуш" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "Має бути унікальним" -msgid "Add the name of the chart" -msgstr "Додайте назву діаграми" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Параметри інформаційної панелі недійсні." -msgid "Add the name of the dashboard" -msgstr "Додайте назву інформаційної панелі" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "Не вдалося створити інформаційну панель." -msgid "Add to dashboard" -msgstr "Додайте до інформаційної панелі" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "Не вдалося оновити інформаційну панель." -msgid "Add/Edit Filters" -msgstr "Додати/редагувати фільтри" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "Не вдалося видалити інформаційну панель." -msgid "Added" -msgstr "Доданий" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "Зміна цієї інформаційної панелі заборонена" -msgid "Added to 1 dashboard" -msgstr "Додано до 1 інформаційної панелі" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "Не вдалося імпортувати інформаційну панель з невідомих причин" -msgid "Additional Parameters" -msgstr "Додаткові параметри" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "У вас немає доступу до цієї інформаційної панелі." -msgid "Additional fields may be required" -msgstr "Можуть знадобитися додаткові поля" +#: superset/commands/dashboard/embedded/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." +msgstr "У вас немає доступу до цієї вбудованої конфігурації інформаційної панелі." -msgid "Additional information" -msgstr "Додаткова інформація" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "Немає даних у файлі" -msgid "Additional metadata" -msgstr "Додаткові метадані" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Параметри бази даних недійсні." -msgid "Additional padding for legend." -msgstr "Додаткові прокладки для легенди." +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "База даних з тим самим іменем вже існує." -msgid "Additional parameters" -msgstr "Додаткові параметри" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "Потрібне поле" -msgid "Additional settings." -msgstr "Додаткові налаштування." +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "Поле не може розшифрувати JSON. %(json_error)s" -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "Додатковий текст, який можна додати до або після значення, наприклад одиниця" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "" +"Metadata_params у додатковому полі налаштовані не правильно. Ключ %{key} " +"s є недійсним." -msgid "Additive" -msgstr "Добавка" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "База даних не знайдена." -msgid "Adjust how this database will interact with SQL Lab." -msgstr "Відрегулюйте, як ця база даних буде взаємодіяти з лабораторією SQL." +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "База даних не вдалося створити." -msgid "Adjust performance settings of this database." -msgstr "Налаштуйте налаштування продуктивності цієї бази даних." +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "База даних не вдалося оновити." -msgid "Advanced" -msgstr "Просунутий" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "Не вдалося підключити, будь ласка, перевірте налаштування з'єднання" -msgid "Advanced Analytics" -msgstr "Розширена аналітика" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "Не вдається видалити базу даних, в якій додаються набори даних" -msgid "Advanced Data type" -msgstr "Розширений тип даних" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "База даних не вдалося видалити." -msgid "Advanced analytics" -msgstr "Розширена аналітика" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "Зупинив небезпечне з'єднання бази даних" -msgid "Advanced analytics Query A" -msgstr "Розширений запит аналітики a" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "Не вдалося завантажити драйвер бази даних" -msgid "Advanced analytics Query B" -msgstr "Розширений запит аналітики b" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "" +"Сталася несподівана помилка, будь ласка, перевірте свої журнали на " +"детальну інформацію" -msgid "Advanced data type" -msgstr "Розширений тип даних" +#: superset/commands/database/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "жоден SQL валідатор не налаштований" -msgid "Advanced-Analytics" -msgstr "Розширена аналітика" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "Жодного валідатора не знайдено (налаштовано для двигуна)" -msgid "Aesthetic" -msgstr "Естетичний" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +msgid "Was unable to check your query" +msgstr "Не зміг перевірити ваш запит" -msgid "After" -msgstr "Після" +#: superset/commands/database/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "Сталася несподівана помилка" -msgid "Aggregate" -msgstr "Сукупний" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "Імпортувати базу даних не вдалося з незрозумілої причини" -msgid "Aggregate Mean" -msgstr "Сукупне середнє значення" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "Не вдалося завантажити драйвер бази даних: {}" -msgid "Aggregate Sum" -msgstr "Сукупна сума" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "Двигун “%(engine)s” не може бути налаштований за параметрами." -msgid "Aggregate function applied to the list of points in each cluster to produce the cluster label." -msgstr "Агрегатна функція, застосована до списку точок у кожному кластері для отримання етикетки кластера." +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "База даних офлайн." -msgid "Aggregate function to apply when pivoting and computing the total rows and columns" -msgstr "Сукупна функція, яка застосовується при повороті та обчисленні загальних рядків та стовпців" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" +"%(validator)s не зміг перевірити ваш запит.\n" +"Будь ласка, перегляньте свій запит.\n" +"Виняток: %(ex)s" -msgid "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale" -msgstr "Агрегує дані в межах кордону клітин сітки та відображають агреговані значення до динамічної кольорової шкали" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "жоден SQL валідатор не налаштований для {}" -msgid "Aggregation" -msgstr "Агрегація" +#: superset/commands/database/validate_sql.py:111 +#, fuzzy, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "Немає валідатора названого {} знайдено (налаштовано для двигуна {})" -msgid "Aggregation function" -msgstr "Функція агрегації" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +msgid "SSH Tunnel could not be deleted." +msgstr "Тунель SSH не вдалося видалити." -msgid "Alert" -msgstr "Насторожений" +#: superset/commands/database/ssh_tunnel/exceptions.py:34 +msgid "SSH Tunnel not found." +msgstr "Тунель SSH не знайдено." -msgid "Alert Triggered, In Grace Period" -msgstr "Попередження, спрацьоване, в пільговий період" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +msgid "SSH Tunnel parameters are invalid." +msgstr "Параметри тунелю SSH недійсні." -msgid "Alert condition" -msgstr "Умова попередження" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +msgid "SSH Tunnel could not be updated." +msgstr "Тунель SSH не вдалося оновити." -msgid "Alert condition schedule" -msgstr "Розклад умови попередження" +#: superset/commands/database/ssh_tunnel/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "Створення тунелю SSH не вдалося з незрозумілої причини" -msgid "Alert ended grace period." -msgstr "Попередження закінчився пільговим періодом." +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "Тунелювання SSH не ввімкнено" -msgid "Alert failed" -msgstr "Попередження не вдалося" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" +msgstr "Повинен надати облікові дані для тунелю SSH" -msgid "Alert fired during grace period." -msgstr "Попередження, вистрілене під час витонченого періоду." +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "Не може бути декількох облікових даних для тунелю SSH" -msgid "Alert found an error while executing a query." -msgstr "Попередження знайшло помилку під час виконання запиту." +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "База даних не була знайдена." -msgid "Alert name" -msgstr "Ім'я сповіщення" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "Набір даних %(name)s вже існує" -msgid "Alert on grace period" -msgstr "Попередження про період Грейс" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "База даних не дозволяється змінювати" -msgid "Alert query returned a non-number value." -msgstr "Попередній запит повернув значення безлічів." +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "Одного або декількох стовпців не існує" -msgid "Alert query returned more than one column." -msgstr "Попередній запит повернув більше одного стовпця." +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "Один або кілька стовпців дублюються" -msgid "Alert query returned more than one column. %s columns returned" -msgstr "Попередній запит повернув більше одного стовпця. повернуті стовпці %s" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "Один або кілька стовпців вже існують" -msgid "Alert query returned more than one row." -msgstr "Попередній запит повернув більше одного ряду." +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "Одного або декількох показників не існує" -msgid "Alert query returned more than one row. %s rows returned" -msgstr "Попередній запит повернув більше одного ряду. %s Рядки повернулися" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "Один або кілька показників дублюються" -msgid "Alert running" -msgstr "Попередження" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "Один або кілька показників вже існують" -msgid "Alert triggered, notification sent" -msgstr "Попередження, спрацьоване, повідомлення надіслано" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" +msgstr "" +"Таблиця [%(table_name)s] Не вдалося знайти, будь ласка, перевірте " +"підключення до бази даних, схеми та назву таблиці" -msgid "Alert validator config error." -msgstr "Помилка конфігурації валідатора." +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "Набір даних не існує" -msgid "Alerts" -msgstr "Попередження" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "Параметри набору даних недійсні." -msgid "Alerts & Reports" -msgstr "Попередження та звіти" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "Не вдалося створити набір даних." -msgid "Alerts & reports" -msgstr "Попередження та звіти" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "Набір даних не вдалося оновити." -msgid "Align +/-" -msgstr "Вирівняти +/-" +#: superset/commands/dataset/exceptions.py:172 +#, fuzzy +msgid "Datasets could not be deleted." +msgstr "Набір даних не можна було видалити." -msgid "All" -msgstr "Всі" +#: superset/commands/dataset/exceptions.py:180 +msgid "Samples for dataset could not be retrieved." +msgstr "Зразки для набору даних не вдалося отримати." -msgid "All Entities" -msgstr "Всі сутності" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "Зміна цього набору даних заборонена" -msgid "All Text" -msgstr "Весь текст" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "Імпортувати набір даних не вдалося з незрозумілої причини" -msgid "All charts" -msgstr "Усі діаграми" +#: superset/commands/dataset/exceptions.py:192 +msgid "You don't have access to this dataset." +msgstr "Ви не маєте доступу до цього набору даних." -msgid "All charts/global scoping" -msgstr "Усі діаграми/глобальні обсяги" +#: superset/commands/dataset/exceptions.py:196 +msgid "Dataset could not be duplicated." +msgstr "Набір даних не можна було дублювати." -msgid "All filters" -msgstr "Всі фільтри" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." +msgstr "URI даних заборонено." -msgid "All filters (%(filterCount)d)" -msgstr "Усі фільтри (%(Filtercount) D)" +#: superset/commands/dataset/exceptions.py:205 +#, fuzzy +msgid "The provided table was not found in the provided database" +msgstr "Таблицю було видалено або перейменовано в базу даних." -msgid "All panels" -msgstr "Всі панелі" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Стовпчик набору даних не знайдено." -msgid "All panels with this column will be affected by this filter" -msgstr "На всі панелі з цим стовпцем впливатимуть цей фільтр" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Видалення стовпця набору даних не вдалося." -msgid "Allow CREATE TABLE AS" -msgstr "Дозволити створити таблицю як" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "Зміна цього набору даних заборонена." -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "Дозволити створювати таблицю як опцію в лабораторії SQL" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "Мета даних не знайдено." -msgid "Allow CREATE VIEW AS" -msgstr "Дозволити створити перегляд як" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "Видалення метрики набору даних не вдалося." -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "Дозволити створити перегляд як опцію в лабораторії SQL" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." +msgstr "Дані форми, які не містяться в кеші, повертаючись до метаданих діаграм." -msgid "Allow Csv Upload" -msgstr "Дозволити завантаження CSV" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." +msgstr "" +"Дані форми, які не знайдені в кеші, повертаючись до метаданих набору " +"даних." -msgid "Allow DML" -msgstr "Дозволити DML" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "[Відсутній набір даних]" -msgid "Allow columns to be rearranged" -msgstr "Дозволити перестановку стовпців" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "Збережені запити не можливо видалити." -msgid "Allow creation of new tables based on queries" -msgstr "Дозволити створення нових таблиць на основі запитів" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "Збережений запит не знайдено." -msgid "Allow creation of new views based on queries" -msgstr "Дозволити створення нових поглядів на основі запитів" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "Збережений імпорт не вдалося з невідомих причин." -msgid "Allow data manipulation language" -msgstr "Дозволити мову маніпулювання даними" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Збережені параметри запиту недійсні." -msgid "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart." -msgstr "" -"Дозвольте кінцевому користувачеві перетягувати заголовки стовпців, щоб переставити їх. Зверніть увагу, що їх зміни не будуть зберігатись наступного разу, коли вони " -"відкриють діаграму." +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "Попередній запит повернув більше одного ряду. %s Рядки повернулися" -msgid "Allow file uploads to database" -msgstr "Дозволити завантаження файлів у базу даних" +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "Попередній запит повернув більше одного стовпця. повернуті стовпці %s" -msgid "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc." -msgstr "Дозволити маніпулювання базою даних за допомогою операторів, що не вибирають, такі як оновлення, видалення, створення тощо." +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "Помилка сталася під час обрізки журналів " -msgid "Allow multiple selections" -msgstr "Дозвольте кілька виборів" +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" +msgstr "Недійсні ідентифікатори вкладки: %s (tab_ids)" -msgid "Allow node selections" -msgstr "Дозволити вибір вузлів" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "Дашборд не існує" -msgid "Allow sending multiple polygons as a filter event" -msgstr "Дозволити надсилання декількох багатокутників як події фільтра" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "Діаграма не існує" -msgid "Allow this database to be explored" -msgstr "Дозволити досліджувати цю базу даних" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "База даних необхідна для сповіщень" -msgid "Allow this database to be queried in SQL Lab" -msgstr "Дозволити цю базу даних запитувати в лабораторії SQL" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "Потрібен тип" -msgid "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab" -msgstr "Дозволити користувачам запускати оператори, що не вибирали (оновити, видаляти, створювати, ...) у лабораторії SQL" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "Виберіть діаграму або інформаційну панель, а не обидва" -msgid "Allowed Domains (comma separated)" -msgstr "Дозволені домени (розділені кома)" +#: superset/commands/report/exceptions.py:92 +msgid "Must choose either a chart or a dashboard" +msgstr "Потрібно вибрати або діаграму, або інформаційну панель" -msgid "Alphabetical" -msgstr "Алфавітний" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "" +"Спочатку збережіть свою діаграму, а потім спробуйте створити новий звіт " +"електронної пошти." -msgid "" -"Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the " -"mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles." +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -"Також відома як графік коробки та вусів, ця візуалізація порівнює розподіл спорідненої метрики для декількох груп. Коробка в середині підкреслює середні, медіани та " -"внутрішні 2 кварталі. Вуси навколо кожної коробки візуалізують мінімальний, максимум, діапазон та зовнішні 2 квартали." +"Спочатку збережіть свою інформаційну панель, а потім спробуйте створити " +"новий звіт на електронну пошту." -msgid "Altered" -msgstr "Змінений" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "Параметри розкладу звіту недійсні." -msgid "An Error Occurred" -msgstr "Виникла помилка" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "Графік звітів не вдалося створити." -msgid "An alert named \"%(name)s\" already exists" -msgstr "Попередження під назвою “%(name)s” вже існує" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "Графік звіту не можна було оновити." + +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "Розклад звіту не знайдено." + +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "Графік звіту Видалити не вдалося." + +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "Не вдалося очистити логи Звіту Розкладу." -msgid "An enclosed time range (both start and end) must be specified when using a Time Comparison." -msgstr "При використанні порівняння часу вкладений діапазон часу (як стартовий, так і кінець)." +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "Виконання графіку звіту не вдалося при створенні скріншота." -msgid "An engine must be specified when passing individual parameters to a database." -msgstr "Двигун повинен бути вказаний при передачі окремих параметрів до бази даних." +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "Виконання графіку звіту не вдалося при створенні CSV." -msgid "An error has occurred" -msgstr "Сталася помилка" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "Виконання графіку звіту не вдалося при створенні даних даних." -msgid "An error occurred" -msgstr "Виникла помилка" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "Виконання графіку звіту Отримано несподівану помилку." -msgid "An error occurred saving dataset" -msgstr "Сталася помилка збереження набору даних" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "Графік звіту все ще працює, відмовляючись від повторного складання." -msgid "An error occurred while accessing the value." -msgstr "Під час доступу до значення сталася помилка." +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "Графік звітів досяг робочого тайм -ауту." -msgid "An error occurred while collapsing the table schema. Please contact your administrator." -msgstr "Помилка сталася під час руйнування схеми таблиці. Зверніться до свого адміністратора." +#: superset/commands/report/exceptions.py:180 +#, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "Звіт під назвою “%(name)s” вже існує" -msgid "An error occurred while creating %ss: %s" -msgstr "Помилка сталася під час створення %ss: %s" +#: superset/commands/report/exceptions.py:182 +#, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Попередження під назвою “%(name)s” вже існує" -msgid "An error occurred while creating the data source" -msgstr "Під час створення джерела даних сталася помилка" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "Ресурс вже має доданий звіт." -msgid "An error occurred while creating the value." -msgstr "Під час створення значення сталася помилка." +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "Попередній запит повернув більше одного ряду." -msgid "An error occurred while deleting the value." -msgstr "Під час видалення значення сталася помилка." +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "Помилка конфігурації валідатора." -msgid "An error occurred while expanding the table schema. Please contact your administrator." -msgstr "Під час розширення схеми таблиці сталася помилка. Зверніться до свого адміністратора." +#: superset/commands/report/exceptions.py:203 +msgid "Alert query returned more than one column." +msgstr "Попередній запит повернув більше одного стовпця." -msgid "An error occurred while fetching %s info: %s" -msgstr "Помилка сталася під час отримання %s Інформація: %s" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "Попередній запит повернув значення безлічів." -msgid "An error occurred while fetching %ss: %s" -msgstr "Помилка сталася під час отримання %ss: %s" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "Попередження знайшло помилку під час виконання запиту." -msgid "An error occurred while fetching available CSS templates" -msgstr "Помилка сталася під час отримання доступних шаблонів CSS" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "Під час виконання запиту стався таймаут." -msgid "An error occurred while fetching chart created by values: %s" -msgstr "Помилка сталася під час отримання діаграми, створеної значеннями: %s" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "Під час зняття скріншота стався таймаут." -msgid "An error occurred while fetching chart owners values: %s" -msgstr "Помилка сталася під час отримання цінностей власників діаграм: %s" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "Під час генерування CSV стався таймаут." -msgid "An error occurred while fetching created by values: %s" -msgstr "Помилка сталася під час отримання, створеного за значеннями: %s" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "Під час генерування даних даних траплявся таймаут." -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "Помилка сталася під час отримання інформаційної панелі, створеного за значеннями: %s" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "Попередження, вистрілене під час витонченого періоду." -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "Помилка сталася під час отримання значення власника інформаційної панелі: %s" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "Попередження закінчився пільговим періодом." -msgid "An error occurred while fetching dashboards" -msgstr "Під час отримання інформаційної панелі сталася помилка" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "Попередження про період Грейс" -msgid "An error occurred while fetching dashboards: %s" -msgstr "Під час отримання інформаційної панелі сталася помилка: %s" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "Держава розкладу звітів не знайдена" -msgid "An error occurred while fetching database related data: %s" -msgstr "Помилка сталася під час отримання даних, пов’язаних з базою даних: %s" +#: superset/commands/report/exceptions.py:261 +msgid "Report schedule system error" +msgstr "Помилка системи розкладу звітів" -msgid "An error occurred while fetching database values: %s" -msgstr "Помилка сталася під час отримання значень бази даних: %s" +#: superset/commands/report/exceptions.py:267 +msgid "Report schedule client error" +msgstr "Помилка звіту про графік звітів" -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "Помилка сталася під час отримання значень набору даних набору даних: %s" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "Графік звіту про несподівану помилку" -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "Помилка сталася під час отримання значень власника набору даних: %s" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "Зміна цього звіту заборонена" -msgid "An error occurred while fetching dataset related data" -msgstr "Помилка сталася під час отримання даних, пов’язаних з наборами" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "Помилка сталася під час обрізки журналів " -msgid "An error occurred while fetching dataset related data: %s" -msgstr "Помилка сталася під час отримання даних, пов’язаних з набором даних: %s" +#: superset/commands/security/exceptions.py:25 +msgid "RLS Rule not found." +msgstr "Правило RLS не знайдено." -msgid "An error occurred while fetching datasets: %s" -msgstr "Помилка сталася під час отримання наборів даних: %s" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "Правило RLS не можна було видалити." -msgid "An error occurred while fetching function names." -msgstr "Помилка сталася під час отримання імен функцій." +#: superset/commands/sql_lab/estimate.py:58 +msgid "The database could not be found" +msgstr "Бази даних не вдалося знайти" -msgid "An error occurred while fetching owners values: %s" -msgstr "Помилка сталася під час отримання цінностей власників: %s" +#: superset/commands/sql_lab/estimate.py:86 +#, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." +msgstr "" +"Оцінка запитів була вбита після %(sqllab_timeout)s секунд. Це може бути " +"занадто складно, або база даних може бути під великим навантаженням." -msgid "An error occurred while fetching schema values: %s" -msgstr "Помилка сталася під час отримання значень схеми: %s" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." +msgstr "" +"База даних, на яку посилається в цьому запиті, не було знайдено. " +"Зверніться до адміністратора для отримання додаткової допомоги або " +"повторіть спробу." -msgid "An error occurred while fetching tab state" -msgstr "Під час отримання стану вкладки сталася помилка" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "" +"Не вдалося знайти запит, пов'язаний з цими результатами. Потрібно " +"повторно запустити оригінальний запит." -msgid "An error occurred while fetching table metadata" -msgstr "Помилка сталася під час отримання метаданих таблиці" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" +msgstr "Не вдається отримати доступ до запиту" -msgid "An error occurred while fetching table metadata. Please contact your administrator." -msgstr "Помилка сталася під час отримання метаданих таблиці. Зверніться до свого адміністратора." +#: superset/commands/sql_lab/results.py:75 +msgid "" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." +msgstr "" +"Дані не можна було отримати з результатів результатів. Потрібно повторно " +"запустити оригінальний запит." -msgid "An error occurred while fetching tag created by values: %s" -msgstr "Помилка сталася під час отримання тегу, створеного значеннями: %s" +#: superset/commands/sql_lab/results.py:116 +msgid "" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." +msgstr "" +"Дані не могли бути дезеріалізовані з результатів результатів. Формат " +"зберігання, можливо, змінився, зробивши стару частку даних. Потрібно " +"повторно запустити оригінальний запит." -msgid "An error occurred while fetching user values: %s" -msgstr "Помилка сталася під час отримання значень користувачів: %s" +#: superset/commands/tag/exceptions.py:32 +msgid "Tag parameters are invalid." +msgstr "Параметри тегів недійсні." -msgid "An error occurred while hiding the left bar. Please contact your administrator." -msgstr "Помилка сталася під час приховування лівої смуги. Зверніться до свого адміністратора." +#: superset/commands/tag/exceptions.py:36 +msgid "Tag could not be created." +msgstr "Тег не вдалося створити." -msgid "An error occurred while importing %s: %s" -msgstr "Помилка сталася під час імпорту %s: %s" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "Набір даних не вдалося оновити." -msgid "An error occurred while loading dashboard information." -msgstr "Під час завантаження інформації про інформаційну панель сталася помилка." +#: superset/commands/tag/exceptions.py:44 +msgid "Tag could not be deleted." +msgstr "Тег не вдалося видалити." -msgid "An error occurred while loading the SQL" -msgstr "Під час завантаження SQL сталася помилка" +#: superset/commands/tag/exceptions.py:48 +msgid "Tagged Object could not be deleted." +msgstr "Позначений об’єкт не можна було видалити." -msgid "An error occurred while opening Explore" -msgstr "Під час відкриття досліджувати сталася помилка" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." +msgstr "Під час створення значення сталася помилка." -msgid "An error occurred while parsing the key." -msgstr "Під час розбору ключа сталася помилка." +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "Під час доступу до значення сталася помилка." -msgid "An error occurred while pruning logs " -msgstr "Помилка сталася під час обрізки журналів " +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." +msgstr "Під час видалення значення сталася помилка." -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "Під час зняття запиту сталася помилка. Зверніться до свого адміністратора." +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." +msgstr "Під час оновлення значення сталася помилка." -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "Під час видалення вкладки сталася помилка. Зверніться до свого адміністратора." +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." +msgstr "У вас немає дозволу на зміну значення." -msgid "An error occurred while removing the table schema. Please contact your administrator." -msgstr "Під час зняття схеми таблиці сталася помилка. Зверніться до свого адміністратора." +#: superset/commands/temporary_cache/exceptions.py:49 +msgid "Resource was not found." +msgstr "Ресурс не був знайдений." -msgid "An error occurred while rendering the visualization: %s" -msgstr "Під час візуалізації сталася помилка: %s" +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" +msgstr "Недійсний тип результату: %(result_type)s" -msgid "An error occurred while setting the active tab. Please contact your administrator." -msgstr "Під час встановлення вкладки Active сталася помилка. Зверніться до свого адміністратора." +#: superset/common/query_context_processor.py:150 +#, python-format +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "Стовпці відсутні в наборі даних: %(invalid_columns)s" -msgid "An error occurred while setting the tab autorun. Please contact your administrator." -msgstr "Під час встановлення вкладки Autorun сталася помилка. Зверніться до свого адміністратора." +#: superset/common/query_context_processor.py:383 +#, fuzzy +msgid "Time Grain must be specified when using Time Shift." +msgstr "Стовпчик часу повинен бути вказаний при використанні порівняння часу." -msgid "An error occurred while setting the tab database ID. Please contact your administrator." -msgstr "Під час встановлення ідентифікатора бази даних вкладки сталася помилка. Зверніться до свого адміністратора." +#: superset/common/query_context_processor.py:486 +msgid "A time column must be specified when using a Time Comparison." +msgstr "Стовпчик часу повинен бути вказаний при використанні порівняння часу." -msgid "An error occurred while setting the tab name. Please contact your administrator." -msgstr "Під час встановлення назви вкладки сталася помилка. Зверніться до свого адміністратора." +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "Діаграма не існує" -msgid "An error occurred while setting the tab schema. Please contact your administrator." -msgstr "Під час встановлення схеми вкладки сталася помилка. Зверніться до свого адміністратора." +#: superset/common/query_context_processor.py:702 +msgid "The chart datasource does not exist" +msgstr "Діаграма даних не існує" -msgid "An error occurred while setting the tab template parameters. Please contact your administrator." -msgstr "Під час встановлення параметрів шаблону вкладки сталася помилка. Зверніться до свого адміністратора." +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "Діаграма не існує" -msgid "An error occurred while starring this chart" -msgstr "Під час головної частини цього діаграми сталася помилка" +#: superset/common/query_object.py:290 +#, python-format +msgid "" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." +msgstr "" +"Дублікат стовпців/метричних міток: %(labels)s. Будь ласка, переконайтеся," +" що всі стовпці та показники мають унікальну мітку." -msgid "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists." -msgstr "Помилка сталася під час зберігання останнього ідентифікатора запиту в бекенді. Зверніться до свого адміністратора, якщо ця проблема зберігається." +#: superset/common/query_object.py:312 +#, python-format +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " +msgstr "Наступні записи в `series_columns` відсутні у ґcolumnsґ: %(columns)s. " -msgid "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button." -msgstr "Під час зберігання вашого запиту сталася помилка. Щоб уникнути втрати змін, збережіть свій запит за допомогою кнопки \"Зберегти запит\"." +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "`operation` властивість об'єкта після обробки не визначений" -msgid "An error occurred while updating the value." -msgstr "Під час оновлення значення сталася помилка." +#: superset/common/query_object.py:439 +#, python-format +msgid "Unsupported post processing operation: %(operation)s" +msgstr "Непідтримувана операція після обробки: %(operation)s" -msgid "An error occurred while upserting the value." -msgstr "Помилка сталася під час збільшення значення." +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +msgid "[asc]" +msgstr "[asc]" -msgid "An unexpected error occurred" -msgstr "Сталася несподівана помилка" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" +msgstr "[desc]" -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "Сталася невідома помилка. Зверніться до свого адміністратора Superset" +#: superset/connectors/sqla/models.py:1394 +#, python-format +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "Помилка в експресії jinja у значеннях вибору предикат: %(msg)s" -msgid "Anchor to" -msgstr "Прив’язати до" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "Віртуальний запит набору даних повинен бути лише для читання" -msgid "Angle at which to end progress axis" -msgstr "Кут, з яким слід закінчити вісь прогресу" +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 +#, python-format +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "Помилка під час надання віртуального запиту набору даних: %(msg)s" -msgid "Angle at which to start progress axis" -msgstr "Кут, з яким почати прогрес вісь" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "Віртуальний запит набору даних не може бути порожнім" -msgid "Animation" -msgstr "Анімація" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" +msgstr "Віртуальний запит набору даних не може складатися з декількох тверджень" -msgid "Annotation" -msgstr "Анотація" +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 +#, python-format +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "Помилка в виразі jinja у фільтрах RLS: %(msg)s" -msgid "Annotation Layer %s" -msgstr "Анотаційний шар %s" +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 +#, python-format +msgid "Metric '%(metric)s' does not exist" +msgstr "Метрика ‘%(metric)s' не існує" -msgid "Annotation Layers" -msgstr "Анотаційні шари" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "БД двигун не повернув усі запити стовпчики" -msgid "Annotation Slice Configuration" -msgstr "Конфігурація анотаційних шматочків" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "Дозволено лише `вибору" -msgid "Annotation could not be created." -msgstr "Анотація не вдалося створити." +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "Підтримуються лише одиночні запити" -msgid "Annotation could not be updated." -msgstr "Анотацію не вдалося оновити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "Колони" -msgid "Annotation delete failed." -msgstr "Анотація Видалення не вдалося." +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "Показати колонку" -msgid "Annotation layer" -msgstr "Анотаційний шар" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "Додайте стовпчик" -msgid "Annotation layer could not be created." -msgstr "Анотаційний шар не вдалося створити." +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "Редагувати стовпчик" -msgid "Annotation layer could not be deleted." -msgstr "Анотаційний шар не міг бути видалений." +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" +msgstr "" +"Незалежно від того, щоб зробити цей стовпець доступним як параметр [Час " +"деталізації], стовпець повинен бути датетом або датетом" -msgid "Annotation layer could not be updated." -msgstr "Анотаційний шар не вдалося оновити." +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." +msgstr "Чи викривається цей стовпець у розділі \"Фільтри\" перегляду \"Вивчення\"." -msgid "Annotation layer delete failed." -msgstr "Видалення шару анотації не вдалося." +#: superset/connectors/sqla/views.py:113 +msgid "" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." +msgstr "" +"Тип даних, який висловився в базі даних. У деяких випадках може " +"знадобитися вводити тип вручну для визначені виразами стовпців. У " +"більшості випадків користувачам не потрібно це змінювати." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "Стовпчик" -msgid "Annotation layer description columns" -msgstr "Анотація Шар Опис Стовпці" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "Назва багатослів'я" -msgid "Annotation layer has associated annotations." -msgstr "Анотаційний шар має пов’язані анотації." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "Опис" -msgid "Annotation layer interval end" -msgstr "Анотаційний шар інтервалу кінця" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "Груповий" -msgid "Annotation layer name" -msgstr "Назва шару анотації" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "Фільтруваний" -msgid "Annotation layer not found." -msgstr "Анотаційний шар не знайдено." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "Стіл" -msgid "Annotation layer opacity" -msgstr "Анотація Шар непрозорості" +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "Вираз" -msgid "Annotation layer parameters are invalid." -msgstr "Параметри шару анотації недійсні." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "Є тимчасовим" -msgid "Annotation layer stroke" -msgstr "Анотаційний шлюб" +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "Формат DateTime" -msgid "Annotation layer time column" -msgstr "Стовпчик часу анотації" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "Тип" -msgid "Annotation layer title column" -msgstr "Стовпчик заголовка шару анотації" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" +msgstr "Тип даних бізнесу" -msgid "Annotation layer type" -msgstr "Тип шару анотації" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "Недійсна дата/формат часової позначки" -msgid "Annotation layer value" -msgstr "Значення шару анотації" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "Показники" -msgid "Annotation layers" -msgstr "Анотаційні шари" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "Показати показник" -msgid "Annotation layers are still loading." -msgstr "Анотаційні шари все ще завантажуються." +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "Додати показник" -msgid "Annotation name" -msgstr "Назва анотації" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "Метрика редагування" -msgid "Annotation not found." -msgstr "Анотація не знайдена." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "Метричний" -msgid "Annotation parameters are invalid." -msgstr "Параметри анотації недійсні." +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "Вираз SQL" -msgid "Annotation source" -msgstr "Джерело анотації" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "Формат D3" -msgid "Annotation source type" -msgstr "Тип джерела анотації" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "Додатковий" -msgid "Annotation template created" -msgstr "Створений шаблон анотації" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "Попереджувальне повідомлення" -msgid "Annotation template updated" -msgstr "Шаблон анотації оновлений" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "Столи" -msgid "Annotations and Layers" -msgstr "Анотації та шари" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "Показати таблицю" -msgid "Annotations and layers" -msgstr "Анотації та шари" +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "Імпортувати визначення таблиці" -msgid "Annotations could not be deleted." -msgstr "Анотації не можна було видалити." +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "Редагувати таблицю" -msgid "Any" -msgstr "Будь -який" +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" +msgstr "" +"Список діаграм, пов’язаних з цією таблицею. Змінюючи цю дані, ви можете " +"змінити, як поводяться ці пов'язані діаграми. Також зауважте, що діаграми" +" повинні вказати на даний момент, тому ця форма не зможе зберегти, якщо " +"видалити діаграми з даних. Якщо ви хочете змінити дані для діаграми, " +"перезапишіть діаграму з \"Вивчення перегляду\"" -msgid "Any additional detail to show in the certification tooltip." -msgstr "Будь -яка додаткова деталь для показу в підказці сертифікації." +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "Зсув часового поясу (у годинах) для цього даних" -msgid "Any color palette selected here will override the colors applied to this dashboard's individual charts" -msgstr "Будь-яка вибрана тут палітра перевищить кольори, застосовані до окремих діаграм цієї інформаційної панелі" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "Назва таблиці, яка існує у вихідній базі даних" -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. " +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +msgstr "" +"Схема, як використовується лише в деяких базах даних, таких як Postgres, " +"Redshift та DB2" -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver " -msgstr "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. Дізнайтеся, як підключити драйвер бази даних " +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." +msgstr "" +"Ця поля діє на суперсетний вигляд, що означає, що Superset буде " +"виконувати запит проти цього рядка як підзапит." -msgid "Append" -msgstr "Додаватися" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "" +"Приклад застосовується при отримання чіткого значення для заповнення " +"компонента управління фільтром. Підтримує синтаксис шаблону Jinja. " +"Застосовується лише тоді, коли увімкнено `Увімкнути Filter Select`." -msgid "Applied cross-filters (%d)" -msgstr "Застосовані перехресні фільти (%d)" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "" +"Перенаправлення до цієї кінцевої точки при натисканні на таблицю зі " +"списку таблиці" -msgid "Applied filters (%d)" -msgstr "Застосовані фільтри (%d)" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "" +"Чи заповнити спадне місце у розділі фільтра «Дослідження перегляду» зі " +"списком різних значень, отриманих з бекенду на льоту" -msgid "Applied filters: %s" -msgstr "Застосовані фільтри: %s" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "Чи створена таблиця за допомогою \"візуалізації\" потоку в лабораторії SQL" -msgid "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window." -msgstr "Застосоване вікно прокатки не повернуло жодних даних. Будь ласка, переконайтесь, що запит джерела задовольняє мінімальні періоди, визначені у вікні прокатки." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" +msgstr "" +"Набір параметрів, які стають доступними у запиті за допомогою синтаксису " +"шаблону Jinja" -msgid "Apply" -msgstr "Застосовувати" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "" +"Тривалість (за секунди) тайм -ауту кешування для цієї таблиці. Час " +"очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу " +"на цей час очікування бази даних, якщо він не визначений." -msgid "Apply conditional color formatting to metric" -msgstr "Застосувати умовне форматування кольорів до метрики" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." +msgstr "" -msgid "Apply conditional color formatting to metrics" -msgstr "Застосувати умовне форматування кольорів до показників" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -msgid "Apply conditional color formatting to numeric columns" -msgstr "Застосовуйте умовне форматування кольорів до числових стовпців" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "Асоційовані діаграми" -msgid "Apply filters" -msgstr "Застосувати фільтри" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "Змінений" -msgid "Apply metrics on" -msgstr "Застосувати показники на" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "База даних" -msgid "Apply to all panels" -msgstr "Застосовуйте до всіх панелей" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "Востаннє змінився" -msgid "Apply to specific panels" -msgstr "Застосовуйте до певних панелей" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "Увімкнути фільтр Виберіть" -msgid "April" -msgstr "Квітень" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "Схема" -msgid "Arc" -msgstr "Дуга" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "Кінцева точка за замовчуванням" -msgid "Are you sure you intend to overwrite the following values?" -msgstr "Ви впевнені, що маєте намір перезаписати наступні значення?" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "Компенсація" -msgid "Are you sure you want to cancel?" -msgstr "Ви впевнені, що хочете скасувати?" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "Тайм -аут кешу" -msgid "Are you sure you want to delete" -msgstr "Ви впевнені, що хочете видалити" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "Назва таблиці" -msgid "Are you sure you want to delete %s?" -msgstr "Ви впевнені, що хочете видалити %s?" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "Значення отримання предикатів" -msgid "Are you sure you want to delete the selected %s?" -msgstr "Ви впевнені, що хочете видалити вибрані %s?" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "Власники" -msgid "Are you sure you want to delete the selected annotations?" -msgstr "Ви впевнені, що хочете видалити вибрані анотації?" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "Основний стовпець DateTime" -msgid "Are you sure you want to delete the selected charts?" -msgstr "Ви впевнені, що хочете видалити вибрані діаграми?" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "Перегляд лабораторії SQL" -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "Ви впевнені, що хочете видалити вибрані інформаційні панелі?" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "Параметри шаблону" -msgid "Are you sure you want to delete the selected datasets?" -msgstr "Ви впевнені, що хочете видалити вибрані набори даних?" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "Змінений" -msgid "Are you sure you want to delete the selected layers?" -msgstr "Ви впевнені, що хочете видалити вибрані шари?" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "" +"Стол був створений. У рамках цього двофазного процесу конфігурації тепер " +"слід натиснути кнопку Редагувати за новою таблицею, щоб налаштувати її." -msgid "Are you sure you want to delete the selected queries?" -msgstr "Ви впевнені, що хочете видалити вибрані запити?" +#: superset/css_templates/api.py:142 +#, fuzzy, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Видалений %(num) d шаблон CSS" +msgstr[1] "" +msgstr[2] "" -msgid "Are you sure you want to delete the selected rules?" -msgstr "Ви впевнені, що хочете видалити вибрані правила?" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "Схема набору даних недійсна, викликана: %(error)s" -msgid "Are you sure you want to delete the selected tags?" -msgstr "Ви впевнені, що хочете видалити вибрані теги?" +#: superset/dashboards/api.py:697 +#, fuzzy, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Видалено %(num)d інформаційних панелей" +msgstr[1] "" +msgstr[2] "" -msgid "Are you sure you want to delete the selected templates?" -msgstr "Ви впевнені, що хочете видалити вибрані шаблони?" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "Назва або слим" -msgid "Are you sure you want to overwrite this dataset?" -msgstr "Ви впевнені, що хочете перезаписати цей набір даних?" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "Роль" -msgid "Are you sure you want to proceed?" -msgstr "Ви впевнені, що хочете продовжити?" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 +msgid "Invalid state." +msgstr "Недійсна держава." -msgid "Are you sure you want to save and apply changes?" -msgstr "Ви впевнені, що хочете зберегти та застосувати зміни?" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "Назва таблиці не визначена" -msgid "Area Chart" -msgstr "Діаграма" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "Завантажити увімкнено" -msgid "Area Chart (legacy)" -msgstr "Діаграма області (спадщина)" +#: superset/databases/schemas.py:175 +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "" +"Недійсний рядок підключення, дійсне рядок зазвичай випливає: " +"Backend+драйвер: // користувач: пароль@база даних-розміщення/ім'я бази " +"даних-name" -msgid "Area chart" -msgstr "Діаграма" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "Поле не може розшифрувати JSON. %(msg)s" -msgid "Area chart opacity" -msgstr "Область прозоість діаграми" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "" +"Metadata_params у додатковому полі налаштовані не правильно. Ключ %(key)s" +" є недійсним." -msgid "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other." -msgstr "Діаграми області схожі на лінійні діаграми тим, що вони представляють змінні з однаковою шкалою, але діаграми області складають показники один до одного." +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "" +"Двигун повинен бути вказаний при передачі окремих параметрів до бази " +"даних." -msgid "Arrow" -msgstr "Стрілка" +#: superset/databases/schemas.py:313 +msgid "" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "" +"Специфікація двигуна \"Invalidengine\" не підтримує налаштування за " +"допомогою окремих параметрів." -msgid "Assign a set of parameters as" -msgstr "Призначити набір параметрів як" +#: superset/datasets/api.py:785 +#, fuzzy, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Видалено %(число) D набору даних" +msgstr[1] "" +msgstr[2] "" -msgid "Associated Charts" -msgstr "Асоційовані діаграми" +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Нульовий або порожній" -msgid "Async Execution" -msgstr "Виконання асинхронізації" +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format +msgid "" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" +"Будь ласка, перевірте свій запит на наявність помилок синтаксису на або " +"поблизу “%(syntax_error)s\". Потім спробуйте знову запустити свій запит." -msgid "Asynchronous query execution" -msgstr "Асинхронне виконання запитів" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "Другий" -msgid "August" -msgstr "Серпень" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5 секунд" -msgid "Auto" -msgstr "Автоматичний" +#: superset/db_engine_specs/base.py:100 +msgid "30 second" +msgstr "30 секунд" -msgid "Auto Zoom" -msgstr "Автомобільний масштаб" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "Хвилина" -msgid "Autocomplete" -msgstr "Автозаповнення" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5 -хвилинний" -msgid "Autocomplete filters" -msgstr "Автоматичні фільтри" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10 хвилин" -msgid "Autocomplete query predicate" -msgstr "Auto -Complete Query Prediac" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15 хвилин" -msgid "Automatic Color" -msgstr "Автоматичний колір" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" +msgstr "30 хвилин" -msgid "Available sorting modes:" -msgstr "Доступні режими сортування:" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "Година" -msgid "Average" -msgstr "Середній" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6 годин" -msgid "Average value" -msgstr "Середнє значення" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "День" -msgid "Axis" -msgstr "Вісь" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "Тиждень" -msgid "Axis Bounds" -msgstr "Межі вісь" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "Місяць" -msgid "Axis Format" -msgstr "Формат вісь" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "Чверть" -msgid "Axis Title" -msgstr "Назва вісь" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "Рік" -msgid "Axis ascending" -msgstr "Осі висхідна" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "Тиждень, починаючи з неділі" -msgid "Axis descending" -msgstr "Осі, що спускається" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "Тиждень, починаючи з понеділка" -msgid "BOOLEAN" -msgstr "Булевий" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "Тиждень, що закінчується в суботу" -msgid "Back" -msgstr "Спинка" +#: superset/db_engine_specs/base.py:116 +#, fuzzy +msgid "Week ending Sunday" +msgstr "тиждень, що закінчується в суботу" -msgid "Back to all" -msgstr "Назад до всіх" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "Ім'я користувача" -msgid "Backend" -msgstr "Бекен" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "Пароль" -msgid "Backward values" -msgstr "Назад значення" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "Ім'я хоста або IP -адреса" -msgid "Bad formula." -msgstr "Погана формула." +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "Порт бази даних" -msgid "Bad spatial key" -msgstr "Поганий просторовий ключ" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "Назва бази даних" -msgid "Bar" -msgstr "Бар" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "Додаткові параметри" -msgid "Bar Chart" -msgstr "Гістограма" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "Використовуйте зашифроване з'єднання з базою даних" -msgid "Bar Chart (legacy)" -msgstr "Діаграма (спадщина)" +#: superset/db_engine_specs/base.py:2004 +#, fuzzy +msgid "Use an ssh tunnel connection to the database" +msgstr "Використовуйте зашифроване з'єднання з базою даних" -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "Барські діаграми використовуються для показу показників як серії барів." +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" +"Не може підключитися. Переконайтеся, що на обліковому записі служби " +"встановлюються такі ролі: \"Переглядач даних BigQuery\", \"Переглядач " +"метаданих BigQuery\", \"Користувач роботи з великою роботою\" та наступні" +" дозволи встановлюються \"bigquery.readsessions.create\", " +"\"bigquery.readsessions.getData\"" + +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" +"Таблиця “%(table)s\" не існує. Для запуску цього запиту необхідно " +"використовувати дійсну таблицю." -msgid "Bar Values" -msgstr "Значення планки" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "" +"Ми, здається, не можемо вирішити стовпчик \"%(column)s” на лінії " +"%(location)s." -msgid "Bar orientation" -msgstr "Орієнтація" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" +"Схеми “%(schema)s\" не існує. Для запуску цього запиту необхідно " +"використовувати дійсну схему." + +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "Або ім'я користувача “%(username)s”, або пароль невірний." -msgid "Base" -msgstr "Базовий" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "Невідомий хост MySQL Server “%(hostname)s”." -msgid "Base layer map style" -msgstr "Стиль карти базового шару" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "Хост “%(hostname)s” може бути знижений і неможливо досягти." -msgid "Based on a metric" -msgstr "На основі метрики" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Неможливо підключитися до бази даних “%(database)s”." -msgid "Based on granularity, number of time periods to compare against" -msgstr "На основі деталізації, кількість часових періодів для порівняння" +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "" +"Будь ласка, перевірте свій запит на наявність помилок синтаксису поблизу " +"\"%(server_error)s\". Потім спробуйте знову запустити свій запит." -msgid "Based on what should series be ordered on the chart and legend" -msgstr "Виходячи з того, як слід впорядкувати серії на діаграмі та легенді" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "Ми не можемо вирішити стовпець “%(column_name)s”" -msgid "Basic" -msgstr "Основний" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "" +"Або ім'я користувача “%(username)s”, пароль або ім'я бази даних " +"“%(database)s\" є неправильним." + +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "Ім'я хоста \"%(ім'я хоста)s\" неможливо вирішити." -msgid "Basic information" -msgstr "Основна інформація" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Порт %(port)s на ім'я хоста \" %(hostname)s” відмовився від з'єднання." -msgid "Batch editing %d filters:" -msgstr "Редагування партії %d фільтрів:" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "" +"Хост \" %(hostname)s” може бути знижений, і його не можна дістатися на " +"порт %(port)s." -msgid "Battery level over time" -msgstr "Рівень акумулятора з часом" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "Невідомий хост MySQL Server “%(hostname)s”." -msgid "Be careful." -msgstr "Будь обережний." +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "Ім'я користувача “%(username)s\" не існує." -msgid "Before" -msgstr "До" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" +"Комбінація користувача/пароля не є дійсною (неправильний пароль для " +"користувача)." -msgid "Big Number" -msgstr "Велике число" +#: superset/db_engine_specs/ocient.py:256 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Не вдалося підключитися до бази даних: “%(database)s”" -msgid "Big Number Font Size" -msgstr "Розмір шрифту великого числа" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "Не вдалося вирішити ім'я хоста: “%(host)s\"." -msgid "Big Number with Trendline" -msgstr "Велика кількість з Trendline" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "Порт поза діапазоном 0-65535" -msgid "Bottom" -msgstr "Дно" +#: superset/db_engine_specs/ocient.py:271 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Недійсний рядок підключення: очікуючи рядка форми 'ocient: // user: " +"pass@host: port/database'." -msgid "Bottom Margin" -msgstr "Нижня маржа" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" +"Помилка синтаксису:%(qualifier)s введення “%(input)s” очікування " +"“%(expected)s" -msgid "Bottom left" -msgstr "Знизу зліва" +#: superset/db_engine_specs/ocient.py:284 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Таблиця або переглянути \"%(таблиця)s\" не існує." -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "Нижній запас, в пікселях, що дозволяє отримати більше місця для етикетки осі" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "Недійсне посилання на стовпець: “%(column)s”" -msgid "Bottom right" -msgstr "Знизу праворуч" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "" +"Пароль, що надається для імені користувача \"%(ім'я користувача)s\", є " +"неправильним." -msgid "Bottom to Top" -msgstr "Дно вгорі" +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "Будь ласка, повторно введіть пароль." +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. " -"It won't narrow the data's extent." +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." msgstr "" -"Межі для осі y. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить " -"ступінь даних." +"Ми, здається, не можемо вирішити стовпець \" %(column_name)s” на лінії " +"%(location)s." +#: superset/db_engine_specs/postgres.py:289 +#, fuzzy, python-format +msgid "Users are not allowed to set a search path for security reasons." +msgstr "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки." + +#: superset/db_engine_specs/presto.py:664 +#, python-format msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It " -"won't narrow the data's extent." +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" -"Межі для осі. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це не звузить " -"ступінь даних." +"Таблиця “%(table_name)s\" не існує. Для запуску цього запиту необхідно " +"використовувати дійсну таблицю." +#: superset/db_engine_specs/presto.py:672 +#, python-format msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis " -"range. It won't narrow the data's extent." +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." msgstr "" -"Межі для первинної осі y. Залишившись порожніми, межі динамічно визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише розширить діапазон осі. Це " -"не звузить ступінь даних." +"Схема \"%(schema_name)s\" не існує. Для запуску цього запиту необхідно " +"використовувати дійсну схему." + +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "Неможливо підключитися до каталогу під назвою “%(catalog_name)s”." + +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "Невідома помилка Престо" +#: superset/db_engine_specs/redshift.py:97 +#, python-format msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are dynamically defined\n" -" based on the min/max of the data. Note that this feature will only expand\n" -" the axis range. It won't narrow the data's extent." +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -"Межі для вторинної осі y. Працює лише тоді, коли незалежна вісь Y\n" -" Межі увімкнено. Якщо залишити порожні, межі динамічно визначені\n" -" на основі міні/максимуму даних. Зауважте, що ця функція лише розшириться\n" -" діапазон осі. Це не звузить ступінь даних." +"Ми не змогли підключитися до вашої бази даних під назвою “%(database)s\"." +" Будь ласка, перевірте ім’я бази даних та спробуйте ще раз." -msgid "Box Plot" -msgstr "Ділянка коробки" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s не існує в цій базі даних." -msgid "Breakdowns" -msgstr "Розбиття" +#: superset/explore/exceptions.py:45 +msgid "Samples for datasource could not be retrieved." +msgstr "Зразки для даних не вдалося отримати." -msgid "Bubble Chart" -msgstr "Міхурна діаграма" +#: superset/explore/exceptions.py:49 +msgid "Changing this datasource is forbidden" +msgstr "Зміна цього даних забороняється" -msgid "Bubble Color" -msgstr "Бульбашковий колір" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "Домашня сторінка" + +#: superset/initialization/__init__.py:242 +msgid "Database Connections" +msgstr "З'єднання бази даних" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "Дані" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "Дашборди" + +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "Діаграми" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "Набори даних" -msgid "Bubble Size" -msgstr "Розмір міхура" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "Плагіни" -msgid "Bubble size" -msgstr "Розмір міхура" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "Керувати" -msgid "Bucket break points" -msgstr "Точки розриву відра" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "Шаблони CSS" -msgid "Build" -msgstr "Побудувати" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL LAB" -msgid "Bulk select" -msgstr "Виберіть декілька" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -msgid "Bullet Chart" -msgstr "Куляна діаграма" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "Збережені запити" -msgid "Business" -msgstr "Бізнес" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "Історія запитів" -msgid "Business Data Type" -msgstr "Тип даних бізнесу" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "Теги" -msgid "" -"By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically " -"searching that loads filter values as users type (may add stress to your database)." -msgstr "" -"За замовчуванням кожен фільтр завантажує щонайменше 1000 варіантів при первинному завантаженні сторінки. Постановіть це поле, чи є у вас більше 1000 значень фільтра " -"і хочете ввімкнути динамічний пошук, який завантажує значення фільтра, як вводить користувачі (може додавати напругу до вашої бази даних)." +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "Журнал дій" -msgid "By key: use column names as sorting key" -msgstr "За ключем: Використовуйте імена стовпців як ключ сортування" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "Безпека" -msgid "By key: use row names as sorting key" -msgstr "За ключем: Використовуйте імена рядків як ключ сортування" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "Попередження та звіти" -msgid "By value: use metric values as sorting key" -msgstr "За значенням: Використовуйте метричні значення як ключ сортування" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "Анотаційні шари" -msgid "CANCEL" -msgstr "Скасувати" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "Безпека на рівні рядків" -msgid "CREATE DATASET" -msgstr "Створити набір даних" +#: superset/key_value/exceptions.py:30 +msgid "An error occurred while parsing the key." +msgstr "Під час розбору ключа сталася помилка." -msgid "CREATE TABLE AS" -msgstr "Створити таблицю як" +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." +msgstr "Помилка сталася під час збільшення значення." -msgid "CREATE VIEW AS" -msgstr "Створити перегляд як" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "Неможливо кодувати значення" -msgid "CREATE VIEW statement" -msgstr "Створіть оператор перегляду" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "Не в змозі розшифрувати значення" -msgid "CRON Schedule" -msgstr "Графік крон" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" +msgstr "Недійсний ключ постійного посилання" -msgid "CRON expression" -msgstr "Вираження крон" +#: superset/models/helpers.py:1525 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "" +"Стовпчик DateTime не надається як конфігурація таблиці деталей і " +"вимагається цим типом діаграми" -msgid "CSS" -msgstr "CSS" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "Порожній запит?" -msgid "CSS Styles" -msgstr "Стилі CSS" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "Невідомий стовпчик, що використовується в порядку: %(col)s" -msgid "CSS Templates" -msgstr "Шаблони CSS" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "Стовпчик часу “%(col)s” не існує в наборі даних" -msgid "CSS applied to the chart" -msgstr "CSS, застосований до діаграми" +#: superset/models/helpers.py:1821 +msgid "error_message" +msgstr "повідомлення про помилку" -msgid "CSS template" -msgstr "Шаблон CSS" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "Список значень фільтра не може бути порожнім" -msgid "CSS template could not be deleted." -msgstr "Шаблон CSS не можна було видалити." +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "Потрібно вказати значення для фільтрів з операторами порівняння" -msgid "CSS template name" -msgstr "Назва шаблону CSS" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "Недійсний тип функції фільтра: %(op)s" -msgid "CSS template not found." -msgstr "Шаблон CSS не знайдено." +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "Помилка в виразі jinja WHERE: %(msg)s" -msgid "CSS templates" -msgstr "Шаблони CSS" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "Помилка в виразі jinja у HAVING фразі: %(msg)s" -msgid "CSV Upload" -msgstr "Завантаження CSV" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "База даних не підтримує підрозділи" -msgid "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "CSV файл “%(csv_filename)s\" Завантажено в таблицю \"%(table_name)s\" в базі даних “%(db_name)s”" +#: superset/queries/saved_queries/api.py:225 +#, fuzzy, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "Видалений %(число) d Зберегти запит" +msgstr[1] "" +msgstr[2] "" -msgid "CSV to Database configuration" -msgstr "CSV до конфігурації бази даних" +#: superset/reports/api.py:506 +#, fuzzy, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "Видалений %(число) d Розклад звіту" +msgstr[1] "" +msgstr[2] "" + +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "Значення повинно бути більше 0" -msgid "CSV upload" -msgstr "Завантаження CSV" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" -msgid "CTAS & CVAS SCHEMA" -msgstr "Схема CTAS & CVAS" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" +msgstr "" +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +"\n" +" Error: %(text)s\n" +" " msgstr "" -"CTA (створити таблицю як Select) можна запустити лише за допомогою запиту, де останнє твердження - це вибір. Будь ласка, переконайтеся, що ваш запит має вибір як " -"останнє твердження. Потім спробуйте знову запустити свій запит." +"\n" +" Помилка: %(text)s\n" +" " -msgid "CTAS Schema" -msgstr "Схема CTAS" +#: superset/reports/notifications/email.py:132 +msgid "EMAIL_REPORTS_CTA" +msgstr "Email_reports_cta" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.CSV" + +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" + +#: superset/reports/notifications/slack.py:76 +#, python-format msgid "" -"CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running " -"your query again." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" msgstr "" -"CVA (створити перегляд як Select) можна запустити лише за допомогою запиту з одним оператором SELECT. Будь ласка, переконайтеся, що ваш запит має лише оператор " -"SELECT. Потім спробуйте знову запустити свій запит." +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(URL)s | Ознайомтеся з Superset>\n" +"\n" +"%(table)s\n" -msgid "CVAS (create view as select) query has more than one statement." -msgstr "CVAS (створити перегляд як SELECT) Запит має більше одного оператора." +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" +msgstr "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Помилка: %(text)s\n" -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "CVAS (Створіть перегляд як SELECT) Запит не є оператором SELECT." +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Видалено %(число) D Правила" +msgstr[1] "" +msgstr[2] "" -msgid "Cache Timeout" -msgstr "Тайм -аут кешу" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки." -msgid "Cache Timeout (seconds)" -msgstr "Час кешу (секунди)" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -msgid "Cache timeout" -msgstr "Тайм -аут кешу" +#: superset/security/manager.py:2394 +#, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "Ви не маєте прав на зміну %(ресурси)s" -msgid "Cached" -msgstr "Кешевий" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "Не вдалося виконати %(query)s" -msgid "Cached %s" -msgstr "Кешовані %s" +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 +msgid "" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "" +"Будь ласка, перевірте свої параметри шаблону на наявність помилок " +"синтаксису та переконайтеся, що вони відповідають вашому запиту SQL та " +"встановіть параметри. Потім спробуйте знову запустити свій запит." -msgid "Cached value not found" -msgstr "Кешоване значення не знайдено" +#: superset/sqllab/query_render.py:100 +#, fuzzy, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "Параметр %(parameters)s у вашому запиті не визначений." +msgstr[1] "" +msgstr[2] "" -msgid "Calculate contribution per series or row" -msgstr "Обчисліть внесок на серію або ряд" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "Запит містить один або кілька неправильно сформованих параметрів шаблону." -msgid "Calculated column [%s] requires an expression" -msgstr "Обчислений стовпчик [%s] вимагає виразу" +#: superset/sqllab/query_render.py:124 +msgid "" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "" +"Будь ласка, перевірте свій запит і підтвердьте, що всі параметри шаблону " +"оточують подвійні брекети, наприклад, \"{{ds}}\". Потім спробуйте знову " +"запустити свій запит." -msgid "Calculated columns" -msgstr "Обчислені стовпці" +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" +msgstr "Назва тегу недійсна (не може містити ':')" -msgid "Calculation type" -msgstr "Тип обчислення" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "Бази даних не вдалося знайти" -msgid "Calendar Heatmap" -msgstr "Календарна теплова карта" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "Налаштуйте спеціальний діапазон часу" -msgid "Can not move top level tab into nested tabs" -msgstr "Не можна переміщувати вкладку верхнього рівня на вкладені вкладки" +#: superset/tasks/exceptions.py:24 +msgid "Scheduled task executor not found" +msgstr "Запланований виконавець завдань не знайдено" -msgid "Can select multiple values" -msgstr "Може вибрати кілька значень" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "Реєстрація" -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Не може бути перекриття між серіями та розбиттями" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "Записів не знайдено" -msgid "Cancel" -msgstr "Скасувати" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "Список фільтрів" -msgid "Cancel query on window unload event" -msgstr "Скасувати запит на подію Window Unload" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "Пошук" -msgid "Cannot access the query" -msgstr "Не вдається отримати доступ до запиту" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "Оновлювати" -msgid "Cannot delete a database that has datasets attached" -msgstr "Не вдається видалити базу даних, в якій додаються набори даних" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "Імпортувати інформаційні панелі" -msgid "Cannot have multiple credentials for the SSH Tunnel" -msgstr "Не може бути декількох облікових даних для тунелю SSH" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "Імпортувати Дашборд(и)" -msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." -msgstr "" -"Не вдається імпортувати інформаційну панель: %(db_error)s.\n" -"Переконайтеся, що створили базу даних перед імпортом інформаційної панелі." +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "Файл" -msgid "Cannot load filter" -msgstr "Не вдається завантажувати фільтр" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "Виберіть файл" -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "Не вдається розбирати часовий рядок [%(human_readable)s]" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "Завантажувати" -msgid "Categorical" -msgstr "Категоричний" +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +msgid "Use the edit button to change this field" +msgstr "Використовуйте кнопку Редагувати, щоб змінити це поле" -msgid "Categorical Color" -msgstr "Категоричний колір" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "Тестове з'єднання" -msgid "Categories to group by on the x-axis." -msgstr "Категорії групуватися на осі x." +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "Небудова тип пункту: %(clause)s" -msgid "Category" -msgstr "Категорія" +#: superset/utils/core.py:1246 +#, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "Недійсний метричний об’єкт: %(metric)s" -msgid "Category Name" -msgstr "Назва категорії" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Не в змозі знайти таке свято: [%(holiday)s]" -msgid "Category and Percentage" -msgstr "Категорія та відсоток" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" +msgstr "Стовпчик DB %(col_name)s має невідомий тип: %(value_type)s" -msgid "Category and Value" -msgstr "Категорія та значення" +#: superset/utils/pandas_postprocessing/boxplot.py:88 +msgid "" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" +msgstr "" +"відсотки повинні бути списком або кортежом з двома числовими значеннями, " +"з яких перша нижча за друге значення" -msgid "Category name" -msgstr "Назва категорії" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "`compare_columns` повинні мати таку ж довжину, що і `source_columns`." -msgid "Category of target nodes" -msgstr "Категорія цільових вузлів" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "`compare_type` повинно бути `difference`, `percentage` або `ratio`" -msgid "Category, Value and Percentage" -msgstr "Категорія, вартість та відсоток" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "Стовпчик “%(column)s” не є числовим або не існує в результатах запиту." -msgid "Cell Padding" -msgstr "Комірка" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "`rename_columns` повинен мати таку ж довжину, що і `columns`." -msgid "Cell Radius" -msgstr "Радіус клітин" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "Недійсний кумулятивний оператор: %(operator)s" -msgid "Cell Size" -msgstr "Розмір клітини" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "Недійсна геохашна струна" -msgid "Cell bars" -msgstr "Клітинні смуги" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "Недійсна довгота/широта" -msgid "Cell content" -msgstr "Вміст клітин" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "Недійсна геодезна струна" -msgid "Cell limit" -msgstr "Обмеження клітин" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "Робота повороту вимагає щонайменше одного індексу" -msgid "Center" -msgstr "Центр" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "Робота повороту повинна включати щонайменше одну сукупність" -msgid "Centroid (Longitude and Latitude): " -msgstr "Центроїд (довгота та широта): " +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "`prophet` модуль не встановлений" -msgid "Certification" -msgstr "Сертифікація" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "Часове зерно відсутнє" -msgid "Certification details" -msgstr "Деталі сертифікації" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "Непідтримуване зерно часу: %(time_grain)s" -msgid "Certified" -msgstr "Сертифікований" +#: superset/utils/pandas_postprocessing/prophet.py:130 +msgid "Periods must be a whole number" +msgstr "Періоди повинні бути цілим числом" -msgid "Certified By" -msgstr "Сертифікований" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "Інтервал довіри повинен бути від 0 до 1 (ексклюзивний)" -msgid "Certified by" -msgstr "Сертифікований" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "Dataframe повинен включати часовий стовпчик" -msgid "Certified by %s" -msgstr "Сертифікований %s" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "Dataframe включає щонайменше одну серію" -msgid "Change order of columns." -msgstr "Змінити порядок стовпців." +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" +msgstr "Етикетка вже існує" -msgid "Change order of rows." -msgstr "Змінити порядок рядків." +#: superset/utils/pandas_postprocessing/resample.py:43 +msgid "Resample operation requires DatetimeIndex" +msgstr "REPAMBLE ORTERCTION вимагає DateTimeIndex" -msgid "Changed By" -msgstr "Змінений" +#: superset/utils/pandas_postprocessing/resample.py:46 +msgid "Resample method should in " +msgstr "Метод REPAMBLE повинен в " -msgid "Changed on" -msgstr "Змінюватися" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "Невизначене вікно для операції прокатки" -msgid "Changes saved." -msgstr "Збережені зміни." +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "Вікно повинно бути> 0" -msgid "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset" -msgstr "Зміна набору даних може зламати діаграму, якщо діаграма покладається на стовпці або метадані, які не існують у цільовому наборі даних" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "Недійсне Rolling_Type: %(type)s" -msgid "Changing these settings will affect all charts using this dataset, including charts owned by other people." -msgstr "Зміна цих налаштувань вплине на всі діаграми за допомогою цього набору даних, включаючи діаграми, що належать іншим людям." +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "Недійсні варіанти для %(rolling_type)s: %(options)s" -msgid "Changing this Dashboard is forbidden" -msgstr "Зміна цієї інформаційної панелі заборонена" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "Посилання на стовпці недоступні в даних даних." -msgid "Changing this chart is forbidden" -msgstr "Зміна цієї діаграми заборонена" +#: superset/utils/pandas_postprocessing/utils.py:153 +#, python-format +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "Стовпчик, на який посилається агрегат, не визначений: %(column)s" -msgid "Changing this control takes effect instantly" -msgstr "Зміна цього контролю набуває чинності миттєво" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "Оператор, не визначений для агрегатора: %(ім'я)s" -msgid "Changing this dataset is forbidden" -msgstr "Зміна цього набору даних заборонена" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" +msgstr "Недійсна функція Numpy: %(operator)s" -msgid "Changing this dataset is forbidden." -msgstr "Зміна цього набору даних заборонена." +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "Несподіваний часовий діапазон: %s" -msgid "Changing this datasource is forbidden" -msgstr "Зміна цього даних забороняється" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "json не є дійсним" -msgid "Changing this report is forbidden" -msgstr "Зміна цього звіту заборонена" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "Експорт до Ямла" -msgid "Character to interpret as decimal point" -msgstr "Характер тлумачити як десяткову точку" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "Експорт до Ямла?" -msgid "Character to interpret as decimal point." -msgstr "Характер тлумачити як десяткову точку." +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "Видаляти" -msgid "Chart" -msgstr "Графік" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "Видалити все справді?" -msgid "Chart %(id)s not found" -msgstr "Діаграма %(id)s не знайдено" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "Є улюбленим" -msgid "Chart Cache Timeout" -msgstr "ЧАС КАХ ЧАСУВАННЯ" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "Позначено" -msgid "Chart Data: %s" -msgstr "Дані діаграми: %s" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "Джерело даних, здається, було видалено" -msgid "Chart ID" -msgstr "Ідентифікатор діаграми" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "Здається, користувач видалив" -msgid "Chart Options" -msgstr "Параметри діаграми" +#: superset/views/core.py:289 +msgid "You don't have the rights to download as csv" +msgstr "Ви не маєте прав на завантаження як CSV" -msgid "Chart Orientation" -msgstr "Орієнтація діаграми" +#: superset/views/core.py:420 +msgid "Error: permalink state not found" +msgstr "Помилка: стан постійного посилання не знайдено" -msgid "Chart Owner: %s" -msgstr "Власник діаграми: %s" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +msgstr "Помилка: %(msg)s" -msgid "Chart Source" -msgstr "Джерело діаграми" +#: superset/views/core.py:509 +msgid "You don't have the rights to alter this chart" +msgstr "Ви не маєте прав на зміну цієї діаграми" -msgid "Chart Title" -msgstr "Назва діаграми" +#: superset/views/core.py:515 +msgid "You don't have the rights to create a chart" +msgstr "Ви не маєте прав на створення діаграми" -msgid "Chart [%s] has been overwritten" -msgstr "Діаграма [%s] була перезаписана" +#: superset/views/core.py:570 +#, python-format +msgid "Explore - %(table)s" +msgstr "Дослідити - %(table)s" -msgid "Chart [%s] has been saved" -msgstr "Діаграма [%s] збережена" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "Досліджувати" -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "Діаграма [%s] була додана до інформаційної панелі [%s]" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" +msgstr "Діаграма [{}] збережена" +#: superset/views/core.py:625 msgid "Chart [{}] has been overwritten" msgstr "Діаграма [{}] була перезаписана" -msgid "Chart [{}] has been saved" -msgstr "Діаграма [{}] збережена" +#: superset/views/core.py:645 +msgid "You don't have the rights to alter this dashboard" +msgstr "Ви не маєте прав на зміну цієї інформаційної панелі" +#: superset/views/core.py:650 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Діаграма [{}] була додана до інформаційної панелі [{}]" -msgid "Chart cache timeout" -msgstr "ЧАС КАХ ЧАСУВАННЯ" +#: superset/views/core.py:661 +msgid "You don't have the rights to create a dashboard" +msgstr "Ви не маєте прав на створення інформаційної панелі" -msgid "Chart changes" -msgstr "Зміни діаграми" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "Дашборд [{}] був щойно створений, і діаграма [{}] була додана до нього" +#: superset/views/core.py:716 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter " -"charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" -"Компонент діаграми, який дозволяє додавати користувальницький фільтр інтерфейс на інформаційній панелі. При додаванні на інформаційну панель, поле фільтру дозволяє " -"користувачам вказувати конкретні значення або діапазони для фільтра діаграм. Діаграми, до яких застосовується кожне поле фільтру, можна також налаштувати на панелі.\n" -"\n" -" Зауважте, що цей плагін замінюється новою функцією фільтрів, яка живе на самому поданні приладової панелі. Це простіше використовувати і має більше можливостей!" - -msgid "Chart could not be created." -msgstr "Діаграма не вдалося створити." - -msgid "Chart could not be deleted." -msgstr "Діаграму не можна було видалити." - -msgid "Chart could not be updated." -msgstr "Діаграма не вдалося оновити." - -msgid "Chart does not exist" -msgstr "Діаграма не існує" - -msgid "Chart has no query context saved. Please save the chart again." -msgstr "Діаграма не має збереженого контексту запиту. Будь ласка, збережіть діаграму ще раз." - -msgid "Chart height" -msgstr "Висота діаграми" - -msgid "Chart imported" -msgstr "Діаграма імпорту" +"Неправильно сформований запит. Очікуються аргументи slice_id або " +"table_name та db_name" -msgid "Chart last modified" -msgstr "Діаграма востаннє модифікована" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "Діаграма %(id)s не знайдено" -msgid "Chart last modified by" -msgstr "Діаграма востаннє модифікована за допомогою" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "Таблиця %(table)s не знайдено в базі даних %(db)s" -msgid "Chart name" -msgstr "Назва діаграми" +#: superset/views/core.py:836 +msgid "permalink state not found" +msgstr "стан постійного посилання не знайдено" -msgid "Chart options" -msgstr "Параметри діаграми" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "Показати шаблон CSS" -msgid "Chart owners" -msgstr "Власники діаграм" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "Додайте шаблон CSS" -msgid "Chart parameters are invalid." -msgstr "Параметри діаграми недійсні." +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "Редагувати шаблон CSS" -msgid "Chart properties updated" -msgstr "Властивості діаграми оновлені" +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "Назва шаблону" -msgid "Chart title" -msgstr "Назва діаграми" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "Зручне для людини ім’я" -msgid "Chart type" -msgstr "Тип діаграми" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "" +"Використовується внутрішньо для ідентифікації плагіна. Має бути " +"встановлено на ім'я пакету з пакету Plugin.json" -msgid "Chart type requires a dataset" -msgstr "Тип діаграми вимагає набору даних" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" +msgstr "" +"Повна URL -адреса, що вказує на розташування вбудованого плагіна " +"(наприклад, може бути розміщена на CDN)" -msgid "Chart width" -msgstr "Ширина діаграми" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "Спеціальні плагіни" -msgid "Charts" -msgstr "Діаграми" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "Спеціальний плагін" -msgid "Charts could not be deleted." -msgstr "Діаграми не можна було видалити." +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "Додайте плагін" -msgid "Check configuration" -msgstr "Перевірте конфігурацію" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "Редагувати плагін" -msgid "Check for sorting ascending" -msgstr "Перевірте наявність сортування висхідного" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "Набір даних, пов'язаний з цією діаграмою, більше не існує" -msgid "Check if the Rose Chart should use segment area instead of segment radius for proportioning" -msgstr "Перевірте, чи повинна діаграма троянд використовувати область сегмента замість радіуса сегмента для пропорції" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "Не вдалося визначити тип даних" -msgid "Check out this chart in dashboard:" -msgstr "Перегляньте цю діаграму на інформаційній панелі:" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "Не вдалося знайти об'єкт Viz" -msgid "Check out this chart: " -msgstr "Перегляньте цю діаграму: " +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "Показати діаграму" -msgid "Check out this dashboard: " -msgstr "Перегляньте цю інформаційну панель: " +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "Додайте діаграму" -msgid "Check to apply filters instantly as they change instead of displaying [Apply] button" -msgstr "Перевірте, щоб застосувати фільтри миттєво, коли вони змінюються, а не відображати кнопку [Застосувати]" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "Редагувати діаграму" -msgid "Check to force date partitions to have the same height" -msgstr "Перевірте, щоб змусити датні розділи мати однакову висоту" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." +msgstr "" +"Ці параметри генеруються динамічно при натисканні кнопки збереження або " +"перезапис у перегляді. Цей об’єкт JSON викривають тут для довідок та для " +"користувачів живлення, які можуть захотіти змінити конкретні параметри." -msgid "Check to include time column dropdown" -msgstr "Перевірте, щоб включити спадне падіння стовпчика часу" +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" +"Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Зверніть " +"увагу на за замовчуванням до часу очікування даних/таблиці, якщо він не " +"визначений." -msgid "Check to include time grain dropdown" -msgstr "Перевірте, щоб включити спадне падіння зерна" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "Творець" -msgid "Child label position" -msgstr "Позиція дочірньої етикетки" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "Джерело даних" -msgid "Choice of [Label] must be present in [Group By]" -msgstr "Вибір [мітки] повинен бути присутнім у [групі]" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "Останнє змінено" -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "Вибір [радіуса точки] повинен бути присутнім у [групі]" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "Параметри" -msgid "Choose File" -msgstr "Виберіть файл" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "Графік" -msgid "Choose a chart or dashboard not both" -msgstr "Виберіть діаграму або інформаційну панель, а не обидва" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "Назва" -msgid "Choose a database..." -msgstr "Виберіть базу даних ..." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "Тип візуалізації" -msgid "Choose a dataset" -msgstr "Виберіть набір даних" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "Показати приладову панель" -msgid "Choose a metric for right axis" -msgstr "Виберіть метрику для правої осі" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "Додайте Інформаційну панель" -msgid "Choose a number format" -msgstr "Виберіть формат числа" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "Редагувати Дашборд" -msgid "Choose a source" -msgstr "Виберіть джерело" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" +msgstr "" +"Цей об’єкт JSON описує позиціонування віджетів на приладовій панелі. Він " +"динамічно генерується при регулюванні розміру та позицій віджетів, " +"використовуючи перетягування в інформаційній панелі" -msgid "Choose a source and a target" -msgstr "Виберіть джерело та ціль" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "" +"CSS для окремих інформаційних панелей може бути змінений тут, або на " +"поданні приладової панелі, де зміни негайно видно" -msgid "Choose a target" -msgstr "Виберіть ціль" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "Щоб отримати читабельну URL адресу для вашої інформаційної панелі" -msgid "Choose chart type" -msgstr "Виберіть тип діаграми" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "" +"Цей об’єкт JSON генерується динамічно при натисканні кнопки збереження " +"або перезапис у поданні панелі приладної панелі. Тут викрито для довідок " +"та для користувачів живлення, які можуть захотіти змінити конкретні " +"параметри." -msgid "Choose one of the available databases from the panel on the left." -msgstr "Виберіть одну з доступних баз даних з панелі зліва." +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "Власники - це список користувачів, які можуть змінити інформаційну панель." -msgid "Choose the annotation layer type" -msgstr "Виберіть тип шару анотації" +#: superset/views/dashboard/mixin.py:65 +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "" +"Ролі - це список, який визначає доступ до інформаційної панелі. Надання " +"ролі доступу до інформаційної панелі буде обходити перевірки рівня набору" +" даних. Якщо визначаються жодні ролі, застосовуються регулярні дозволи на" +" доступ." -msgid "Choose the format for legend values" -msgstr "Виберіть формат для значень легенди" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "" +"Визначає, чи видно цю інформаційну панель у списку всіх інформаційних " +"панелей" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "Дашборд" -msgid "Choose the position of the legend" -msgstr "Виберіть положення легенди" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "Титул" -msgid "Choose the source of your annotations" -msgstr "Виберіть джерело своїх анотацій" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Слимак" -msgid "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette" -msgstr "Виберіть, чи повинна країна затінювати метрику, або призначати колір на основі категоричної кольорової палітру" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "Ролі" -msgid "Chord Diagram" -msgstr "Акордна діаграма" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "Опублікований" -msgid "Chosen non-numeric column" -msgstr "Обраний не-чим’яний стовпчик" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "Позиція JSON" -msgid "Circle" -msgstr "Кола" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -msgid "Circle -> Arrow" -msgstr "Коло -> Стрілка" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "Метадані JSON" -msgid "Circle -> Circle" -msgstr "Коло -> Коло" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "Експорт" -msgid "Circle radar shape" -msgstr "Форма радіолокаційного кола" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "Експортувати інформаційні панелі?" -msgid "Circular" -msgstr "Круговий" +#: superset/views/database/forms.py:109 +msgid "CSV Upload" +msgstr "Завантаження CSV" -msgid "Classic chart that visualizes how metrics change over time." -msgstr "Класична діаграма, яка візуалізує, як змінюються показники з часом." +#: superset/views/database/forms.py:110 +msgid "Select a file to be uploaded to the database" +msgstr "Виберіть файл, який потрібно завантажити в базу даних" -msgid "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics." -msgstr "" -"Класична електронна таблиця за стовпцем, як перегляд набору даних. Використовуйте таблиці, щоб продемонструвати перегляд у основних даних або для показу сукупних " -"показників." +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "Дозволено лише наступні розширення файлу: %(allowed_extensions)s" -msgid "Clause" -msgstr "Застереження" +#: superset/views/database/forms.py:130 +msgid "Name of table to be created with CSV file" +msgstr "Ім'я таблиці, яке потрібно створити за допомогою файлу CSV" -msgid "Clear" -msgstr "Чіткий" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "Назва таблиці не може містити схему" -msgid "Clear all" -msgstr "Очистити всі" +#: superset/views/database/forms.py:139 +msgid "Select a database to upload the file to" +msgstr "Виберіть базу даних для завантаження файлу в" -msgid "Clear all data" -msgstr "Очистіть усі дані" +#: superset/views/database/forms.py:145 +msgid "Column Data Types" +msgstr "Типи даних стовпців" -msgid "Clear form" -msgstr "Чітка форма" +#: superset/views/database/forms.py:146 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" +"Словник із назвами стовпців та їх типами даних, якщо вам потрібно змінити" +" за замовчуванням. Приклад: {\"user_id\": \"Integer\"}" -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" -msgstr "Натисніть кнопку \"+додавання/редагування фільтрів\", щоб створити нові фільтри для інформаційної панелі" +#: superset/views/database/forms.py:156 +msgid "Select a schema if the database supports this" +msgstr "Виберіть схему, якщо база даних підтримує це" -msgid "Click on \"Create chart\" button in the control panel on the left to preview a visualization or" -msgstr "Натисніть кнопку \"Створити діаграму\" на панелі управління зліва, щоб переглянути візуалізацію або" +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "Розмежування" -msgid "Click the lock to make changes." -msgstr "Клацніть замок, щоб внести зміни." +#: superset/views/database/forms.py:162 +msgid "Enter a delimiter for this data" +msgstr "Введіть розмежування цих даних" -msgid "Click the lock to prevent further changes." -msgstr "Клацніть замок, щоб запобігти подальшим змінам." +#: superset/views/database/forms.py:164 +msgid "," +msgstr "," -msgid "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually." -msgstr "Клацніть на це посилання, щоб перейти на альтернативну форму, яка дозволяє вводити URL -адресу SQLALCHEMY для цієї бази даних вручну." +#: superset/views/database/forms.py:165 +msgid "." +msgstr "." -msgid "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database." -msgstr "Клацніть на це посилання, щоб перейти на альтернативну форму, яка розкриває лише необхідні поля, необхідні для підключення цієї бази даних." +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "Інший" -msgid "Click to cancel sorting" -msgstr "Клацніть, щоб скасувати сортування" +#: superset/views/database/forms.py:175 +msgid "If Table Already Exists" +msgstr "Якщо таблиця вже існує" -msgid "Click to edit" -msgstr "Клацніть, щоб редагувати" +#: superset/views/database/forms.py:176 +msgid "What should happen if the table already exists" +msgstr "Що має статися, якщо стіл вже існує" -msgid "Click to edit %s." -msgstr "Клацніть на редагування %s." +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "Провалити" -msgid "Click to edit chart." -msgstr "Клацніть на Редагувати діаграму." +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "Замінити" -msgid "Click to edit label" -msgstr "Клацніть, щоб редагувати мітку" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "Додаватися" -msgid "Click to favorite/unfavorite" -msgstr "Клацніть на улюблений/несправедливий" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "Пропустити початковий простір" -msgid "Click to force-refresh" -msgstr "Клацніть, щоб примусити-рефреш" +#: superset/views/database/forms.py:185 +msgid "Skip spaces after delimiter" +msgstr "Пропустити простори після розмежування" -msgid "Click to see difference" -msgstr "Клацніть, щоб побачити різницю" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "Пропустити порожні лінії" -msgid "Click to sort ascending" -msgstr "Клацніть, щоб сортувати висхід" +#: superset/views/database/forms.py:189 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "Пропустити порожні рядки, а не інтерпретувати їх як не значення числа" -msgid "Click to sort descending" -msgstr "Клацніть, щоб сортувати низхід" +#: superset/views/database/forms.py:194 +msgid "Columns To Be Parsed as Dates" +msgstr "Стовпці, які слід проаналізувати як дати" -msgid "Close" -msgstr "Закривати" +#: superset/views/database/forms.py:195 +msgid "A comma separated list of columns that should be parsed as dates" +msgstr "Кома -розділений список стовпців, які слід проаналізувати як дати" -msgid "Close all other tabs" -msgstr "Закрийте всі інші вкладки" +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "" -msgid "Close tab" -msgstr "Вкладка Закрийте" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -msgid "Cluster label aggregator" -msgstr "Агрегатор кластерної етикетки" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "Десятковий характер" -msgid "Clustering Radius" -msgstr "Радій кластеризації" +#: superset/views/database/forms.py:207 +msgid "Character to interpret as decimal point" +msgstr "Характер тлумачити як десяткову точку" -msgid "Code" -msgstr "Кодування" +#: superset/views/database/forms.py:212 +msgid "Null Values" +msgstr "Нульові значення" -msgid "Collapse all" -msgstr "Згорнути всі" +#: superset/views/database/forms.py:214 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"] для " +"порожніх рядків, [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження:" +" база даних HIVE підтримує лише одне значення" -msgid "Collapse data panel" -msgstr "Панель даних про крах" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "Стовпчик індексу" -msgid "Collapse row" -msgstr "Колапс ряд" +#: superset/views/database/forms.py:222 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "" +"Стовпчик для використання в якості рядків рядків даних даних. Залиште " +"порожній, якщо немає стовпця індексу" -msgid "Collapse tab content" -msgstr "Вміст вкладки колапсу" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Індекс даних даних" -msgid "Collapse table preview" -msgstr "Попередній перегляд таблиці колапсу" +#: superset/views/database/forms.py:230 +msgid "Write dataframe index as a column" +msgstr "Запишіть індекс даних даних як стовпець" -msgid "Color" -msgstr "Забарвлення" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "Мітки стовпців" -msgid "Color +/-" -msgstr "Колір +/-" +#: superset/views/database/forms.py:234 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" +"Мітка стовпця для індексу стовпців (ів). Якщо жодного не дається та " +"перевіряється індекс даних" -msgid "Color Metric" -msgstr "Кольоровий показник" +#: superset/views/database/forms.py:242 +msgid "Columns To Read" +msgstr "Стовпці для читання" -msgid "Color Scheme" -msgstr "Кольорова схема" +#: superset/views/database/forms.py:244 +msgid "Json list of the column names that should be read" +msgstr "Json список імен стовпців, які слід прочитати" -msgid "Color Steps" -msgstr "Кольорові кроки" +#: superset/views/database/forms.py:248 +msgid "Overwrite Duplicate Columns" +msgstr "Перезаписати дублікат стовпців" -msgid "Color bounds" -msgstr "Кольорові межі" +#: superset/views/database/forms.py:249 +msgid "" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" +msgstr "" +"Якщо дублікат стовпців не перекриваються, вони будуть представлені як " +"\"x.1, x.2 ... x.x\"" -msgid "Color by" -msgstr "Забарвляти" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "Заголовок" -msgid "Color metric" -msgstr "Кольоровий показник" +#: superset/views/database/forms.py:256 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" +msgstr "" +"Рядок, що містить заголовки, які використовуються як імена стовпців (0 - " +"це перший рядок даних). Залиште порожнім, якщо немає рядка заголовка" -msgid "Color of the target location" -msgstr "Колір цільового розташування" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "Ряди для читання" -msgid "Color scheme" -msgstr "Кольорова схема" +#: superset/views/database/forms.py:266 +msgid "Number of rows of file to read" +msgstr "Кількість рядків файлу для читання" -msgid "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: " -msgstr "Колір буде затінений на основі нормалізованого (0% до 100%) значення даної клітини проти інших клітин у вибраному діапазоні: " +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "Пропустити ряди" -msgid "Colors" -msgstr "Кольори" +#: superset/views/database/forms.py:272 +msgid "Number of rows to skip at start of file" +msgstr "Кількість рядків для пропускання на початку файлу" -msgid "Column" -msgstr "Стовпчик" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "Назва таблиці, яка повинна бути створена з даних Excel." -msgid "Column \"%(column)s\" is not numeric or does not exists in the query results." -msgstr "Стовпчик “%(column)s” не є числовим або не існує в результатах запиту." +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Файл Excel" -msgid "Column Configuration" -msgstr "Конфігурація стовпців" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Виберіть файл Excel, щоб завантажуватися в базу даних." -msgid "Column Data Types" -msgstr "Типи даних стовпців" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Назва аркуша" -msgid "Column Formatting" -msgstr "Форматування стовпців" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "" +"Рядки, що використовуються для імен аркушів (за замовчуванням - це перший" +" аркуш)." -msgid "Column Label(s)" -msgstr "Мітки стовпців" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "Вкажіть схему (якщо аромат бази даних підтримує це)." -msgid "Column containing ISO 3166-2 codes of region/province/department in your table." -msgstr "Стовпчик, що містить ISO 3166-2 Коди регіону/провінції/відділення у вашій таблиці." +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "Таблиця існує" -msgid "Column containing latitude data" -msgstr "Стовпчик, що містить дані про широту" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." +msgstr "" +"Якщо таблиця існує одне з наступних: не вдасться (нічого не робіть), " +"замініть (падайте та відтворіть таблицю) або додайте (вставте дані)." -msgid "Column containing longitude data" -msgstr "Стовпчик, що містить дані довготи" +#: superset/views/database/forms.py:343 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." +msgstr "" +"Рядок, що містить заголовки, які використовуються як імена стовпців (0 - " +"це перший рядок даних). Залиште порожній, якщо немає рядка заголовка." -msgid "Column datatype" -msgstr "Тип даних стовпців" +#: superset/views/database/forms.py:353 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." +msgstr "" +"Стовпчик для використання в якості рядків рядків даних даних. Залиште " +"порожній, якщо немає стовпця індексу." -msgid "Column header tooltip" -msgstr "Підказка заголовка стовпців" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "Кількість рядків для пропускання на початку файлу." -msgid "Column is required" -msgstr "Потрібна колонка" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "Кількість рядків файлу для читання." -msgid "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used." -msgstr "Мітка стовпця для індексу стовпців (ів). Якщо жодного не дано і індекс даних даних є правдивим, використовуються імена індексу." +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "Дати розбору" -msgid "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used" -msgstr "Мітка стовпця для індексу стовпців (ів). Якщо жодного не дається та перевіряється індекс даних" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." +msgstr "Список стовпців, відокремлений комою, які слід проаналізувати як дати." -msgid "Column name" -msgstr "Назва стовпця" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "Характер тлумачити як десяткову точку." -msgid "Column name [%s] is duplicated" -msgstr "Назва стовпця [%s] дублюється" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "Запишіть індекс даних даних як стовпець." -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "Стовпчик, на який посилається агрегат, не визначений: %(column)s" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." +msgstr "" +"Мітка стовпця для індексу стовпців (ів). Якщо жодного не дано і індекс " +"даних даних є правдивим, використовуються імена індексу." -msgid "Column select" -msgstr "Вибір стовпця" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "Нульові значення" -msgid "Column to use as the row labels of the dataframe. Leave empty if no index column" -msgstr "Стовпчик для використання в якості рядків рядків даних даних. Залиште порожній, якщо немає стовпця індексу" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" +"Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"], " +"[\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE " +"підтримує лише одне значення. Використовуйте [\"\"] для порожнього рядка." -msgid "Column to use as the row labels of the dataframe. Leave empty if no index column." -msgstr "Стовпчик для використання в якості рядків рядків даних даних. Залиште порожній, якщо немає стовпця індексу." +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "Назва таблиці, яка повинна бути створена з стовпчастих даних." +#: superset/views/database/forms.py:421 msgid "Columnar File" msgstr "Стовпчик" -msgid "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "Солодкий файл “%(columnar_filename)s\" завантажено в таблицю \"%(table_name)s\" в базі даних \"%(db_name)s\"" - -msgid "Columnar to Database configuration" -msgstr "Conturear в конфігурацію бази даних" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "Виберіть стовпчастий файл, щоб завантажуватися в базу даних." -msgid "Columns" -msgstr "Колони" +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "Використовуйте стовпці" -msgid "Columns To Be Parsed as Dates" -msgstr "Стовпці, які слід проаналізувати як дати" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." +msgstr "" +"Список JSON імен стовпців, які слід прочитати. Якщо ні, то з файлу будуть" +" прочитані лише ці стовпці." -msgid "Columns To Read" -msgstr "Стовпці для читання" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "Бази даних" -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "Стовпці відсутні в наборі даних: %(invalid_columns)s" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "Показати базу даних" -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "Стовпці відсутні в даних datasource: %(invalid_columns)s" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "Додати базу даних" -msgid "Columns subtotal position" -msgstr "Стовпці субтотального положення" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "Редагувати базу даних" -msgid "Columns to calculate distribution across." -msgstr "Стовпці для обчислення розподілу поперек." +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "Викрити цей БД у лабораторії SQL" -msgid "Columns to display" -msgstr "Стовпці для відображення" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 +msgid "" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." +msgstr "" +"Керуйте базою даних в асинхронному режимі, що означає, що запити " +"виконуються на віддалених працівниках на відміну від самого веб -сервера." +" Це передбачає, що у вас є налаштування працівника селери, а також " +"резервні результати. Для отримання додаткової інформації зверніться до " +"документів про встановлення." -msgid "Columns to group by" -msgstr "Стовпці до групи" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "Дозволити створювати таблицю як опцію в лабораторії SQL" -msgid "Columns to group by on the columns" -msgstr "Стовпці до групи на стовпцях" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "Дозволити створити перегляд як опцію в лабораторії SQL" -msgid "Columns to group by on the rows" -msgstr "Стовпці до групи на рядках" +#: superset/views/database/mixins.py:114 +msgid "" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "" +"Дозволити користувачам запускати оператори, що не вибирали (оновити, " +"видаляти, створювати, ...) у лабораторії SQL" -msgid "Columns to show" -msgstr "Колонки для показу" +#: superset/views/database/mixins.py:119 +msgid "" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" +msgstr "" +"При дозволі створювати таблицю як опцію в лабораторії SQL, ця опція " +"змушує створювати таблицю в цій схемі" -msgid "Combine metrics" -msgstr "Поєднати показники" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Якщо Presto, всі запити в лабораторії SQL будуть виконані як в даний час " +"реєстрували користувача, який повинен мати дозвіл на їх запуск. Обліковий" +" запис служби, але представляє себе в даний час зафіксовано користувача " +"через властивість hive.server2.proxy.user." +#: superset/views/database/mixins.py:172 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of " -"interval bounds." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" -"Вибір кольору, розділених комою для інтервалів, наприклад 1,2,4. Цілі числа позначають кольори з обраної кольорової гами і є 1-індексованими. Довжина повинна " -"відповідати межі інтервалу." +"Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних." +" Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть " +"увагу на це за замовчуванням до глобального тайм -ауту, якщо він не " +"визначений." -msgid "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX." -msgstr "Кома-розділені інтервальні межі, наприклад 2,4,5 для інтервалів 0-2, 2-4 та 4-5. Останнє число повинно відповідати значенням, передбаченим для максимуму." +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "Якщо вибрано, встановіть схеми, дозволені для завантаження CSV додатково." -msgid "Comparator option" -msgstr "Параметр порівняння" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "Викриття в лабораторії SQL" -msgid "Compare multiple time series charts (as sparklines) and related metrics quickly." -msgstr "Порівняйте кілька діаграм часових рядів (як іскричні лінії) та пов'язані з ними показники." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "Дозволити створити таблицю як" -msgid "Compare the same summarized metric across multiple groups." -msgstr "Порівняйте однакову узагальнену метрику для декількох груп." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "Дозволити створити перегляд як" -msgid "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color." -msgstr "" -"Порівняється, як метрика змінюється з часом між різними групами. Кожна група відображається на ряд, і змінюється з часом, візуалізується довжини планки та колір." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "Дозволити DML" -msgid "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups." -msgstr "" -"Порівнює показники різних категорій за допомогою барів. Довжина смуги використовується для позначення величини кожного значення, а колір використовується для " -"диференціації груп." +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "Схема CTAS" -msgid "Compares the lengths of time different activities take in a shared timeline view." -msgstr "Порівняйте тривалість часу, коли різні види діяльності займаються спільним переглядом часової шкали." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "Sqlalchemy uri" -msgid "Comparison" -msgstr "Порівняння" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "ЧАС КАХ ЧАСУВАННЯ" -msgid "Comparison Period Lag" -msgstr "Порівняльний період відставання" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "Забезпечити додаткове" -msgid "Comparison suffix" -msgstr "Суфікс порівняння" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "Кореневий сертифікат" -msgid "Compose multiple layers together to form complex visuals." -msgstr "Складіть кілька шарів разом для формування складних візуальних зображень." +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "Виконання асинхронізації" -msgid "Compute the contribution to the total" -msgstr "Обчисліть внесок у загальний" +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "Видати себе за реєстрацію користувача" + +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "Дозволити завантаження CSV" + +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "Бекен" + +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "Додаткове поле не може розшифровувати JSON. %(msg)s" -msgid "Condition" -msgstr "Хвороба" +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" +msgstr "" +"Недійсний рядок підключення, дійсний рядок зазвичай випливає: 'Драйвер: " +"// користувач: пароль@db-host/database-name'

Приклад: 'postgresql: //" +" user: password@your-postgres-db/база даних' < /p>" -msgid "Conditional Formatting" -msgstr "Умовне форматування" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "CSV до конфігурації бази даних" -msgid "Conditional formatting" -msgstr "Умовне форматування" +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." +msgstr "" +"База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для" +" завантаження CSV. Зверніться до свого адміністратора Superset." -msgid "Confidence interval" -msgstr "Довірчий інтервал" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Неможливо завантажити файл CSV “%(filename)s” до таблиці “%(table_name)s”" +" в базі даних “%(db_name)s”. Повідомлення про помилку: %(error_msg)s" -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "Інтервал довіри повинен бути від 0 до 1 (ексклюзивний)" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" +msgstr "" +"CSV файл “%(csv_filename)s\" Завантажено в таблицю \"%(table_name)s\" в " +"базі даних “%(db_name)s”" -msgid "Configuration" -msgstr "Конфігурація" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Excel до конфігурації бази даних" -msgid "Configure Advanced Time Range " -msgstr "Налаштування розширеного діапазону часу " +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." +msgstr "" +"База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для" +" завантаження Excel. Зверніться до свого адміністратора Superset." -msgid "Configure Time Range: Last..." -msgstr "Налаштування діапазону часу: Останнє ..." +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"Неможливо завантажити файл Excel “%(filename)s” до таблиці " +"“%(table_name)s” в базі даних “%(db_name)s\". Повідомлення про помилку: " +"%(error_msg)s" -msgid "Configure Time Range: Previous..." -msgstr "Налаштування діапазону часу: Попередній ..." +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Файл Excel \"%(excel_filename)s\" завантажено в таблицю " +"\"%(table_name)s\" в базі даних \"%(db_name)s\"" -msgid "Configure custom time range" -msgstr "Налаштуйте спеціальний діапазон часу" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "Conturear в конфігурацію бази даних" -msgid "Configure filter scopes" -msgstr "Налаштуйте фільтрувальні сфери" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." +msgstr "" +"Для завантаження стовпців заборонено кілька розширень файлу. Будь ласка, " +"переконайтеся, що всі файли мають однакове розширення." -msgid "Configure the basics of your Annotation Layer." -msgstr "Налаштуйте основи вашого шару анотації." +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." +msgstr "" +"База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для" +" завантаження стовпців. Зверніться до свого адміністратора Superset." -msgid "Configure this dashboard to embed it into an external web application." -msgstr "Налаштуйте цю інформаційну панель, щоб вставити її у зовнішній веб додаток." +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" +"Не в змозі завантажити стовпчастий файл “%(filename)s” до таблиці " +"“%(table_name)s\" в базі даних “%(db_name)s\". Повідомлення про помилку: " +"%(error_msg)s" -msgid "Configure your how you overlay is displayed here." -msgstr "Налаштуйте, як тут відображається накладка." +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" +msgstr "" +"Солодкий файл “%(columnar_filename)s\" завантажено в таблицю " +"\"%(table_name)s\" в базі даних \"%(db_name)s\"" -msgid "Confirm overwrite" -msgstr "Підтвердити перезапис" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "Запит пропущеного поля даних." -msgid "Confirm save" -msgstr "Підтвердьте збереження" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "Дублікат назви стовпців: %(columns)s" -msgid "Connect" -msgstr "З'єднувати" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "Журнали" -msgid "Connect Google Sheet" -msgstr "Підключіть аркуш Google" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "Показувати журнал" -msgid "Connect Google Sheets as tables to this database" -msgstr "Підключіть аркуші Google як таблиці до цієї бази даних" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "Додати журнал" -msgid "Connect a database" -msgstr "Підключіть базу даних" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "Редагувати журнал" -msgid "Connect database" -msgstr "Підключіть базу даних" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "Користувач" -msgid "Connect this database using the dynamic form instead" -msgstr "Підключіть цю базу даних за допомогою динамічної форми" +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "Дія" -msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "Підключіть цю базу даних за допомогою рядка URI SQLALCHEMY" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -msgid "Connection" -msgstr "З'єднання" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "Json" -msgid "Connection failed, please check your connection settings" -msgstr "Не вдалося підключити, будь ласка, перевірте налаштування з'єднання" +#: superset/views/sql_lab/views.py:93 +msgid "Untitled Query" +msgstr "Неправлений запит" -msgid "Connection looks good!" -msgstr "З'єднання виглядає добре!" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "Часовий діапазон" -msgid "Continue" -msgstr "Продовжувати" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" +msgstr "Стовпчик часу" -msgid "Continuous" -msgstr "Безперервний" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "Зерно часу" -msgid "Contribution" -msgstr "Внесок" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "Час деталізація" -msgid "Contribution Mode" -msgstr "Режим внеску" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "Час" -msgid "Control" -msgstr "КОНТРОЛЬ" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "Посилання на конфігурацію [часу], враховуючи деталізацію" -msgid "Control labeled " -msgstr "Метод контролю позначено " +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "Сукупний" -msgid "Controls labeled " -msgstr "Методи керування позначені " +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "RAW Records" -msgid "Coordinates" -msgstr "Координує" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 +msgid "Category name" +msgstr "Назва категорії" -msgid "Copied to clipboard!" -msgstr "Скопіюється в буфер обміну!" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +msgid "Total value" +msgstr "Загальна вартість" -msgid "Copy" -msgstr "Копіювати" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +msgid "Minimum value" +msgstr "Мінімальне значення" -msgid "Copy SELECT statement to the clipboard" -msgstr "Скопіюйте оператор SELECT у буфер обміну" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +msgid "Maximum value" +msgstr "Максимальне значення" -msgid "Copy and Paste JSON credentials" -msgstr "Копіювати та вставити облікові дані JSON" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 +msgid "Average value" +msgstr "Середнє значення" -msgid "Copy and paste the entire service account .json file here" -msgstr "Скопіюйте та вставте весь обліковий запис служби .json файл тут" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "Сертифікований %s" -msgid "Copy link" -msgstr "Копіювати посилання" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "опис" -msgid "Copy message" -msgstr "Скопіюйте повідомлення" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "болт" -msgid "Copy of %s" -msgstr "Копія %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "Зміна цього контролю набуває чинності миттєво" -msgid "Copy partition query to clipboard" -msgstr "Скопіюйте запит на розділ у буфер обміну" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "Показати інформацію про підказку" -msgid "Copy permalink to clipboard" -msgstr "Скопіюйте постійне посилання на буфер обміну" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "Вираз SQL" -msgid "Copy query URL" -msgstr "Скопіюйте URL -адресу запитів" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +msgid "Column datatype" +msgstr "Тип даних стовпців" -msgid "Copy query link to your clipboard" -msgstr "Скопіюйте посилання на запит у свій буфер обміну" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +msgid "Column name" +msgstr "Назва стовпця" -msgid "Copy the account name of that database you are trying to connect to." -msgstr "Скопіюйте назву облікового запису тієї бази даних, до якої ви намагаєтесь підключитися." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "Мітка" -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "Скопіюйте назву HTTP -шляху кластера." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +msgid "Metric name" +msgstr "Метрична назва" -msgid "Copy the name of the database you are trying to connect to." -msgstr "Скопіюйте назву бази даних, до якої ви намагаєтесь підключитися." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +msgid "unknown type icon" +msgstr "іконка невідомого типу" -msgid "Copy to Clipboard" -msgstr "Копіювати в буфер обміну" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" +msgstr "іконка типу функції" -msgid "Copy to clipboard" -msgstr "Копіювати в буфер обміну" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "іконка типу рядка" -msgid "Correlation" -msgstr "Співвідношення" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" +msgstr "значок числового типу" -msgid "Cost estimate" -msgstr "Оцінка витрат" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" +msgstr "значок булевого типу" -msgid "Could not connect to database: \"%(database)s\"" -msgstr "Не вдалося підключитися до бази даних: “%(database)s”" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" +msgstr "іконка тимчасового типу" -msgid "Could not determine datasource type" -msgstr "Не вдалося визначити тип даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "Розширена аналітика" -msgid "Could not fetch all saved charts" -msgstr "Не міг отримати всі збережених діаграм" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "" +"Цей розділ містить варіанти, які дозволяють отримати розширену аналітичну" +" обробку результатів запитів" -msgid "Could not find viz object" -msgstr "Не вдалося знайти об'єкт Viz" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "Коктейльне вікно" -msgid "Could not load database driver" -msgstr "Не вдалося завантажити драйвер бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "Функція прокатки" -msgid "Could not load database driver: %(driver_name)s" -msgstr "Не вдалося завантажити драйвер бази даних: %(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "Ні" -msgid "Could not load database driver: {}" -msgstr "Не вдалося завантажити драйвер бази даних: {}" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" +msgstr "" +"Визначає функцію котячого вікна для застосування, працює разом із " +"текстовим полем [періоди]" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "Періоди" -msgid "Could not resolve hostname: \"%(host)s\"." -msgstr "Не вдалося вирішити ім'я хоста: “%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "Визначає розмір функції котячого вікна, відносно вибитої деталізації часу" -msgid "Count" -msgstr "Рахувати" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "Мінські періоди" -msgid "Count Unique Values" -msgstr "Порахуйте унікальні значення" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 +msgid "" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" +msgstr "" +"Мінімальна кількість періодів прокатки, необхідні для показу значення. " +"Наприклад, якщо ви робите накопичувальну суму на 7 днів, ви можете " +"захотіти, щоб ваш \"мінливий період\" був 7, так що всі показані точки " +"даних - це загальна кількість 7 періодів. Це приховає \"рампу\", що " +"відбудеться протягом перших 7 періодів" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "Порівняння часу" -msgid "Count as Fraction of Columns" -msgstr "Вважати як частка стовпців" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "Зрушення в часі" -msgid "Count as Fraction of Rows" -msgstr "Порахуйте як частку рядків" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" +msgstr "1 день тому" -msgid "Count as Fraction of Total" -msgstr "Вважається часткою загальної кількості" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "1 тиждень тому" -msgid "Country" -msgstr "Країна" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "28 днів тому" -msgid "Country Color Scheme" -msgstr "Колірна гамма країни" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +msgid "30 days ago" +msgstr "30 днів тому" -msgid "Country Column" -msgstr "Стовпчик країни" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "52 тижні тому" -msgid "Country Field Type" -msgstr "Тип поля країни" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "1 рік тому" -msgid "Country Map" -msgstr "Карта країни" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "104 тижні тому" -msgid "Create" -msgstr "Створити" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "2 роки тому" -msgid "Create Chart" -msgstr "Створити діаграму" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "156 тижнів тому" -msgid "Create a dataset" -msgstr "Створіть набір даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "3 роки тому" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" -"Створіть набір даних, щоб почати візуалізувати свої дані як діаграму або перейти до\n" -" SQL Lab, щоб запитати ваші дані." - -msgid "Create a new chart" -msgstr "Створіть нову діаграму" +"Накладіть один або кілька разів з відносного періоду часу. Очікує " +"відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 " +"тижні, 365 днів). Підтримується безкоштовний текст." + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "Тип обчислення" -msgid "Create chart" -msgstr "Створити діаграму" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 +msgid "Actual values" +msgstr "Фактичні значення" -msgid "Create chart with dataset" -msgstr "Створіть діаграму за допомогою набору даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" +msgstr "Різниця" -msgid "Create dataset" -msgstr "Створити набір даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 +msgid "Percentage change" +msgstr "Зміна відсотків" -msgid "Create dataset and create chart" -msgstr "Створити набір даних та створити діаграму" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" +msgstr "Співвідношення" -msgid "Create new chart" -msgstr "Створіть нову діаграму" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "" +"Як відобразити зміни часу: як окремі лінії; як різниця між основним " +"часовим рядом та кожною зміною часу; як відсоткова зміна; або як " +"співвідношення між серіями та часом змінюється." + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "Перепродаж" -msgid "Create new filter set" -msgstr "Створіть новий набір фільтра" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "Правити" -msgid "Create or select schema..." -msgstr "Створити або вибрати схему ..." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" +msgstr "1 хвилинна частота" -msgid "Created" -msgstr "Створений" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +msgid "1 hourly frequency" +msgstr "1 погодинна частота" -msgid "Created On" -msgstr "Створений на" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" +msgstr "1 Календарний день частота" -msgid "Created by" -msgstr "Створений" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" +msgstr "7 Календарний день частота" -msgid "Created by me" -msgstr "Створений мною" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "Частота початку 1 місяця" -msgid "Created content" -msgstr "Створений вміст" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "Кінцева частота 1 місяця" -msgid "Created on" -msgstr "Створений на" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +msgid "1 year start frequency" +msgstr "1 рік старту частоти" -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "Створення тунелю SSH не вдалося з незрозумілої причини" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 +msgid "1 year end frequency" +msgstr "Кінцева частота 1 рік" -msgid "Creating a data source and creating a new tab" -msgstr "Створення джерела даних та створення нової вкладки" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Pandas resamplable Правило" -msgid "Creator" -msgstr "Творець" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "Метод заповнення" -msgid "Crimson" -msgstr "Малиновий" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Null imputation" +msgstr "Нульова імпутація" -msgid "Cross-filter will be applied to all of the charts that use this dataset." -msgstr "Перехресний фільтр буде застосований до всіх діаграм, які використовують цей набір даних." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 +msgid "Zero imputation" +msgstr "Нульова імпутація" -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" +msgstr "Лінійна інтерполяція" -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +msgid "Forward values" +msgstr "Значення вперед" -msgid "Cross-filtering scoping" -msgstr "Перехресне фільтрування" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +msgid "Backward values" +msgstr "Назад значення" -msgid "Cross-filters" -msgstr "Перехресні фільтри" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +msgid "Median values" +msgstr "Середні цінності" -msgid "Cumulative" -msgstr "Кумулятивний" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 +msgid "Mean values" +msgstr "Середні значення" -msgid "Currently rendered: %s" -msgstr "В даний час надано: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +msgid "Sum values" +msgstr "Значення суми" -msgid "Custom" -msgstr "Звичайний" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Метод Pandas Resample" -msgid "Custom Plugin" -msgstr "Спеціальний плагін" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "Анотації та шари" -msgid "Custom Plugins" -msgstr "Спеціальні плагіни" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" +msgstr "Лівий" -msgid "Custom SQL" -msgstr "Спеціальний SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" +msgstr "Топ" -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" -msgstr "Спеціальні спеціальні показники SQL не ввімкнено для цього набору даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "Назва діаграми" -msgid "Custom SQL fields cannot contain sub-queries." -msgstr "Спеціальні поля SQL не можуть містити підзапити." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "X Вісь" -msgid "Custom time filter plugin" -msgstr "Спеціальний плагін фільтра часу" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "Назва X Axis" -msgid "Customize" -msgstr "Налаштувати" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "X Осі Назва Нижня краю" -msgid "Customize Metrics" -msgstr "Налаштуйте показники" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Y Вісь" -msgid "Customize columns" -msgstr "Налаштуйте стовпці" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "Y Назва вісь" -msgid "Cyclic dependency detected" -msgstr "Виявлена ​​циклічна залежність" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" +msgstr "" -msgid "D3 Format" -msgstr "Формат D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 +#, fuzzy +msgid "Y Axis Title Position" +msgstr "Рядки субтотального положення" -msgid "D3 format" -msgstr "Формат D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "Запит" -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "D3 Формат Синтаксис: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "Прогнозування аналітики" -msgid "D3 number format for numbers between -1.0 and 1.0, useful when you want to have different significant digits for small and large numbers" -msgstr "Формат чисел D3 для чисел між -1,0 до 1,0, корисний, коли ви хочете мати різні значні цифри для невеликої та великої кількості" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "Увімкнути прогноз" -msgid "D3 time format for datetime columns" -msgstr "D3 Формат часу для стовпців DateTime" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "Увімкнути прогнозування" -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "D3 Синтаксис формату часу: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "Прогнозна періоди" -msgid "DATETIME" -msgstr "ДАТА, ЧАС" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "Скільки періодів у майбутньому ми хочемо передбачити" -msgid "DB column %(col_name)s has unknown type: %(value_type)s" -msgstr "Стовпчик DB %(col_name)s має невідомий тип: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "Довірчий інтервал" -msgid "DEC" -msgstr "Ухвала" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "Ширина довірчого інтервалу. Має бути від 0 до 1" -msgid "DELETE" -msgstr "Видаляти" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" +msgstr "Щорічна сезонність" -msgid "DML" -msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" +msgstr "за замовчуванням" -msgid "Daily seasonality" -msgstr "Щоденна сезонність" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "Так" -msgid "Dark" -msgstr "Темний" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "Немає" -msgid "Dark Cyan" -msgstr "Темний блакит" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 +msgid "" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Якщо щорічно застосовувати сезонність. Цінне значення буде визначати " +"порядок сезонності Фур'є." -msgid "Dark mode" -msgstr "Темний режим" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" +msgstr "Щотижнева сезонність" -msgid "Dashboard" -msgstr "Дашборд" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Якщо застосовуватися щотижнева сезонність. Цінне значення буде визначати " +"порядок сезонності Фур'є." -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "Дашборд [%s] був щойно створений, а діаграма [%s] була додана до нього" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "Щоденна сезонність" -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "Дашборд [{}] був щойно створений, і діаграма [{}] була додана до нього" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "" +"Якщо щоденна сезонність застосовувати. Цінне значення буде визначати " +"порядок сезонності Фур'є." -msgid "Dashboard could not be created." -msgstr "Не вдалося створити інформаційну панель." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "Атрибути, пов’язані з часом" -msgid "Dashboard could not be deleted." -msgstr "Не вдалося видалити інформаційну панель." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" +msgstr "Тип даних та тип діаграми" -msgid "Dashboard could not be updated." -msgstr "Не вдалося оновити інформаційну панель." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "Ідентифікатор діаграми" -msgid "Dashboard does not exist" -msgstr "Дашборд не існує" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "Ідентифікатор активної діаграми" -msgid "Dashboard imported" -msgstr "Дашборд імпортовано" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "Час кешу (секунди)" -msgid "Dashboard parameters are invalid." -msgstr "Параметри інформаційної панелі недійсні." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "Кількість секунд до закінчення кешу" -msgid "Dashboard properties" -msgstr "Властивості інформаційної панелі" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "Параметри URL -адреси" -msgid "Dashboard properties updated" -msgstr "Оновлені властивості інформаційної панелі" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "Додаткові параметри URL -адреси для використання в шаблонних запитах Jinja" -msgid "Dashboard scheme" -msgstr "Схема інформаційної панелі" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "Додаткові параметри" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the chart\n" -" filters to have this dashboard filter impact those charts." +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" msgstr "" -"Фільтри діапазону часу на інформаційній панелі застосовуються до тимчасових стовпців, визначених у\n" -" розділ фільтра кожної діаграми. Додайте тимчасові стовпці до діаграми\n" -" Фільтри, щоб цей фільтр на інформаційній панелі впливав на ці діаграми." - -msgid "Dashboard title" -msgstr "Назва інформаційної панелі" +"Додаткові параметри, які будь -які плагіни можуть вибрати для " +"використання в шаблонних запитах Jinja" -msgid "Dashboard usage" -msgstr "Використання інформаційної панелі" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "Кольорова схема" -msgid "Dashboards" -msgstr "Дашборди" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "Режим внеску" -msgid "Dashboards added to" -msgstr "Дашборди були додані до" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "Рядок" -msgid "Dashboards could not be deleted." -msgstr "Дашборди не можливо видалити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "Серія" -msgid "Dashboards do not exist" -msgstr "Дашбордів не існує" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +msgid "Calculate contribution per series or row" +msgstr "Обчисліть внесок на серію або ряд" -msgid "Dashed" -msgstr "Бридкий" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "Y-осі сорт" -msgid "Data" -msgstr "Дані" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" +msgstr "X-осі сорт" -msgid "Data Table" -msgstr "Таблиця даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "Вирішує, який стовпець для сортування базової осі за." -msgid "Data URI is not allowed." -msgstr "URI даних заборонено." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +msgid "Y-Axis Sort Ascending" +msgstr "Y-осі сорт піднімається" -msgid "Data Zoom" -msgstr "Масштаб даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +msgid "X-Axis Sort Ascending" +msgstr "X-осі сорт висхідного" -msgid "" -"Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query." -msgstr "" -"Дані не могли бути дезеріалізовані з результатів результатів. Формат зберігання, можливо, змінився, зробивши стару частку даних. Потрібно повторно запустити " -"оригінальний запит." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Чи сортувати висхідну чи спускатися на осі бази." -msgid "Data could not be retrieved from the results backend. You need to re-run the original query." -msgstr "Дані не можна було отримати з результатів результатів. Потрібно повторно запустити оригінальний запит." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "Категорія джерела" -msgid "Data has no time steps" -msgstr "Дані не мають часу" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." +msgstr "" -msgid "Data preview" -msgstr "Попередній перегляд даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." +msgstr "Вирішує, яка міра для сортування базової осі за." -msgid "Data refreshed" -msgstr "Дані оновлені" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" +msgstr "Розміри" -msgid "Data type" -msgstr "Тип даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." +msgstr "" -msgid "DataFrame include at least one series" -msgstr "Dataframe включає щонайменше одну серію" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 +#, fuzzy +msgid "Add dataset columns here to group the pivot table columns." +msgstr "Стовпці до групи на стовпцях" -msgid "DataFrame must include temporal column" -msgstr "Dataframe повинен включати часовий стовпчик" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +msgid "Dimension" +msgstr "Вимір" -msgid "Database" -msgstr "База даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." +msgstr "" +"Визначає групування суб'єктів. Кожна серія відображається як конкретний " +"колір на діаграмі і має легенду перемикання" -msgid "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin." -msgstr "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження стовпців. Зверніться до свого адміністратора Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "Об'єкт" -msgid "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin." -msgstr "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження CSV. Зверніться до свого адміністратора Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "Це визначає елемент, який потрібно побудувати на діаграмі" -msgid "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin." -msgstr "База даних “%(database_name)s” схема \"%(schema_name)s\" не дозволена для завантаження Excel. Зверніться до свого адміністратора Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "Фільтри" -msgid "Database Connections" -msgstr "З'єднання бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -msgid "Database Creation Error" -msgstr "Помилка створення бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -msgid "Database URL" -msgstr "URL -адреса бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "Метрика правої осі" -msgid "Database connected" -msgstr "База даних підключена" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 +#, fuzzy +msgid "Select a metric to display on the right axis" +msgstr "Виберіть метрику для правої осі" -msgid "Database could not be created." -msgstr "База даних не вдалося створити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "Сортувати за" -msgid "Database could not be deleted." -msgstr "База даних не вдалося видалити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +#, fuzzy +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "" +"Metric, що використовується для визначення того, як сортується верхня " +"серія, якщо присутній ліміт серії або рядка. Якщо невизначений повернення" +" до першої метрики (де це доречно)." -msgid "Database could not be updated." -msgstr "База даних не вдалося оновити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "Розмір міхура" -msgid "Database does not allow data manipulation." -msgstr "База даних не дозволяє маніпулювати даними." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "Метрика, що використовується для обчислення розміру міхура" -msgid "Database does not exist" -msgstr "Бази даних не існує" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -msgid "Database does not support subqueries" -msgstr "База даних не підтримує підрозділи" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." +msgstr "" -msgid "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: " -msgstr "Драйвер бази даних для імпорту, можливо, не встановлений. Відвідайте сторінку документації Superset для інструкцій щодо встановлення: " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "Кольоровий показник" -msgid "Database error" -msgstr "Помилка бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "Показник для використання для кольору" -msgid "Database is offline." -msgstr "База даних офлайн." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 +msgid "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "" +"Стовпчик часу для візуалізації. Зауважте, що ви можете визначити " +"довільний вираз, який повертає стовпець DateTime в таблиці. Також " +"зауважте, що фільтр нижче застосовується проти цього стовпця або виразу" -msgid "Database is required for alerts" -msgstr "База даних необхідна для сповіщень" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +msgid "Drop a temporal column here or click" +msgstr "Спустіть тимчасовий стовпець або натисніть" -msgid "Database name" -msgstr "Назва бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Y-axis" +msgstr "Y-вісь" -msgid "Database not allowed to change" -msgstr "База даних не дозволяється змінювати" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "Розмір використання в осі Y." -msgid "Database not found." -msgstr "База даних не знайдена." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "X-axis" +msgstr "X-вісь" -msgid "Database not found: %(id)s" -msgstr "База даних не знайдена: %(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." +msgstr "Розмір використання на осі x." -msgid "Database parameters are invalid." -msgstr "Параметри бази даних недійсні." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "Тип візуалізації для відображення" -msgid "Database passwords" -msgstr "Паролі бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "Фіксований колір" -msgid "Database port" -msgstr "Порт бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "Використовуйте це для визначення статичного кольору для всіх кола" -msgid "Database settings updated" -msgstr "Оновлені параметри бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "Лінійна кольорова гамма" -msgid "Databases" -msgstr "Бази даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 +msgid "all" +msgstr "всі" -msgid "Dataframe Index" -msgstr "Індекс даних даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +msgid "5 seconds" +msgstr "5 секунд" -msgid "Dataset" -msgstr "Набір даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30 секунд" -msgid "Dataset %(name)s already exists" -msgstr "Набір даних %(name)s вже існує" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1 хвилина" -msgid "Dataset Name" -msgstr "Назва набору даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5 хвилин" -msgid "Dataset column delete failed." -msgstr "Видалення стовпця набору даних не вдалося." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30 хвилин" -msgid "Dataset column not found." -msgstr "Стовпчик набору даних не знайдено." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1 година" -msgid "Dataset could not be created." -msgstr "Не вдалося створити набір даних." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 +msgid "1 day" +msgstr "1 день" -msgid "Dataset could not be deleted." -msgstr "Набір даних не можна було видалити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +msgid "7 days" +msgstr "7 днів" -msgid "Dataset could not be duplicated." -msgstr "Набір даних не можна було дублювати." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "тиждень" -msgid "Dataset could not be updated." -msgstr "Набір даних не вдалося оновити." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +msgid "week starting Sunday" +msgstr "тиждень, починаючи з неділі" -msgid "Dataset does not exist" -msgstr "Набір даних не існує" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +msgid "week ending Saturday" +msgstr "тиждень, що закінчується в суботу" -msgid "Dataset imported" -msgstr "Імпортний набір даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "місяць" -msgid "Dataset is required" -msgstr "Необхідний набір даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" +msgstr "чверть" -msgid "Dataset metric delete failed." -msgstr "Видалення метрики набору даних не вдалося." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "рік" -msgid "Dataset metric not found." -msgstr "Мета даних не знайдено." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "" +"Часова деталізація для візуалізації. Зауважте, що ви можете вводити та " +"використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 " +"тижнів'" -msgid "Dataset name" -msgstr "Назва набору даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" -msgid "Dataset parameters are invalid." -msgstr "Параметри набору даних недійсні." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." +msgstr "" -msgid "Dataset schema is invalid, caused by: %(error)s" -msgstr "Схема набору даних недійсна, викликана: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "Межа рядка" -msgid "Dataset(s) could not be bulk deleted." -msgstr "Набір даних (ів) не міг бути вилучений масовим." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -msgid "Datasets" -msgstr "Набори даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "Сортувати низхід" -msgid "Datasets can be created from database tables or SQL queries. Select a database table to the left or " -msgstr "Набори даних можна створити з таблиць баз даних або запитів SQL. Виберіть таблицю бази даних зліва або " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -msgid "Datasets do not contain a temporal column" -msgstr "Набори даних не містять тимчасового стовпця" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "Ліміт серії" -msgid "Datasource" -msgstr "Джерело даних" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "" +"Обмежує кількість серій, які відображаються. Приєднаний підзапит (або " +"додаткова фаза, де підтримуються підрозділи) застосовується для обмеження" +" кількості серій, які отримують та надаються. Ця функція корисна при " +"групуванні за допомогою стовпців (ів) високої кардинальності, хоча " +"збільшує складність та вартість запитів." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Формат y Axis" -msgid "Datasource & Chart Type" -msgstr "Тип даних та тип діаграми" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +#, fuzzy +msgid "Currency format" +msgstr "Формат значення" -msgid "Datasource does not exist" -msgstr "DataSource не існує" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" +msgstr "Формат часу" -msgid "Datasource type is invalid" -msgstr "Тип даних недійсний" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "Колірна гама для діаграми візуалізації" -msgid "Datasource type is required when datasource_id is given" -msgstr "Тип даних потрібен, коли задається DataSource_ID" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +msgid "Truncate Metric" +msgstr "Укорочений метрик" -msgid "Date Time Format" -msgstr "Формат часу дати" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 +msgid "Whether to truncate metrics" +msgstr "Чи варто обрізати показники" -msgid "Date filter" -msgstr "Фільтр дати" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 +msgid "Show empty columns" +msgstr "Показати порожні стовпці" -msgid "Date format" -msgstr "Формат дати" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "D3 Формат Синтаксис: https://github.com/d3/d3-format" -msgid "Date format string" -msgstr "Рядок формату дати" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." +msgstr "" +"Застосовується лише тоді, коли \"тип мітки\" встановлюється для показу " +"значень." -msgid "Date/Time" -msgstr "Дата, час" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." +msgstr "Застосовується лише тоді, коли \"тип мітки\" не встановлений на відсоток." -msgid "Datetime Format" -msgstr "Формат DateTime" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" +msgstr "Адаптивне форматування" -msgid "Datetime column not provided as part table configuration and is required by this type of chart" -msgstr "Стовпчик DateTime не надається як конфігурація таблиці деталей і вимагається цим типом діаграми" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "Початкове значення" -msgid "Datetime format" -msgstr "Формат DateTime" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "Тривалість у MS (66000 => 1 м 6с)" -msgid "Day" -msgstr "День" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "Тривалість в МС (1,40008 => 1 мс 400 мк 80ns)" -msgid "Day (freq=D)" -msgstr "День (Freq = D)" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "D3 Синтаксис формату часу: https://github.com/d3/d3-time-format" -msgid "Days %s" -msgstr "Дні %s" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +msgid "Oops! An error occurred!" +msgstr "На жаль! Виникла помилка!" -msgid "Db engine did not return all queried columns" -msgstr "БД двигун не повернув усі запити стовпчики" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "Стечко слід:" -msgid "Deactivate" -msgstr "Деактивувати" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "" +"Для цього запиту жодних результатів не було. Якщо ви очікували повернення" +" результатів, переконайтеся, що будь -які фільтри налаштовані належним " +"чином, а дані містять дані для вибраного діапазону часу." -msgid "December" -msgstr "Грудень" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" +msgstr "Немає результатів" -msgid "Decides which column to sort the base axis by." -msgstr "Вирішує, який стовпець для сортування базової осі за." +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +msgid "ERROR" +msgstr "Помилка" -msgid "Decides which measure to sort the base axis by." -msgstr "Вирішує, яка міра для сортування базової осі за." +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" +msgstr "Знайдені недійсні параметри замовлення" -msgid "Decimal Character" -msgstr "Десятковий характер" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "очікується, що буде цілим числом" -msgid "Deck.gl - 3D Grid" -msgstr "Палуба.gl - 3D сітка" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "очікується, що буде числом" -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D -шестигранник" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 +#, fuzzy +msgid "is expected to be a Mapbox URL" +msgstr "очікується, що буде числом" -msgid "Deck.gl - Arc" -msgstr "Колода.gl - дуга" +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 +#, python-format +msgid "Value cannot exceed %s" +msgstr "" -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - Geojson" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "не може бути порожнім" -msgid "Deck.gl - Heatmap" -msgstr "Палуба.gl - Теплова карта" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "Домен" -msgid "Deck.gl - Multiple Layers" -msgstr "Deck.gl - кілька шарів" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "година" -msgid "Deck.gl - Paths" -msgstr "Deck.gl - шляхи" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "день" -msgid "Deck.gl - Polygon" -msgstr "Палуба.gl - багатокутник" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "Одиниця часу, що використовується для групування блоків" -msgid "Deck.gl - Scatter plot" -msgstr "Колода.gl - сюжет розсіювання" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "Субдомен" -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - сітка екрана" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +msgid "min" +msgstr "хв" -msgid "Default" -msgstr "За замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" +msgstr "" +"Одиниця часу для кожного блоку. Має бути меншим одиницею, ніж " +"домен_гранулярність. Має бути більшим або рівним часовим зерном" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "Параметри діаграми" -msgid "Default Endpoint" -msgstr "Кінцева точка за замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "Розмір клітини" -msgid "Default URL" -msgstr "URL -адреса за замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "Розмір квадратної клітини, пікселів" -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "URL -адреса за замовчуванням для перенаправлення на доступ до доступу зі сторінки списку даних" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "Комірка" -msgid "Default Value" -msgstr "Значення за замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "Відстань між клітинами, в пікселях" -msgid "Default datetime" -msgstr "DateTime за замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "Радіус клітин" -msgid "Default latitude" -msgstr "Широта за замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "Радіус пікселя" -msgid "Default longitude" -msgstr "Довгота за замовчуванням" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "Кольорові кроки" -msgid "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space" -msgstr "Мінімальна ширина стовпців за замовчуванням у пікселях фактична ширина все ще може бути більша, ніж це, якщо іншим стовпцям не потрібно багато місця" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "Колір числа \"кроки\"" -msgid "Default value is required" -msgstr "Значення за замовчуванням необхідне" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "Формат часу" -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "Значення за замовчуванням повинно бути встановлено, коли перевіряється \"Фільтр має значення за замовчуванням\"" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "Легенда" -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "Значення за замовчуванням повинно бути встановлено, коли перевіряється \"значення фільтра\"" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "Чи відображати легенду (перемикає)" -msgid "Default value set automatically when \"Select first filter value by default\" is checked" -msgstr "Налаштування значення за замовчуванням автоматично, коли перевіряється \"Виберіть значення першого фільтра\"" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "Показувати значення" -msgid "Define a function that receives the input and outputs the content for a tooltip" -msgstr "Визначте функцію, яка отримує вхід і виводить вміст для підказки" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "Чи відображати числові значення всередині комірок" -msgid "Define a function that returns a URL to navigate to when user clicks" -msgstr "Визначте функцію, яка повертає URL -адресу, щоб перейти до того, коли користувач клацає" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "Показати метричні назви" -msgid "" -"Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to " -"alter properties of the data, filter, or enrich the array." -msgstr "" -"Визначте функцію JavaScript, яка отримує масив даних, що використовується у візуалізації, і, як очікується, поверне модифіковану версію цього масиву. Це може бути " -"використане для зміни властивостей даних, фільтра або збагачення масиву." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "Чи відображати метричну назву як заголовок" -msgid "Defines a rolling window function to apply, works along with the [Periods] text box" -msgstr "Визначає функцію котячого вікна для застосування, працює разом із текстовим полем [періоди]" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "Формат числа" -msgid "Defines how each series is broken down" -msgstr "Визначає, як розбивається кожна серія" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "Співвідношення" -msgid "Defines the grid size in pixels" -msgstr "Визначає розмір сітки в пікселях" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 +msgid "" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." +msgstr "" +"Візуалізує, як метрика змінювалася за час, використовуючи кольорову шкалу" +" та подання календаря. Сірі значення використовуються для позначення " +"відсутніх значень, а лінійна кольорова гама використовується для " +"кодування величини значення кожного дня." + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "Бізнес" -msgid "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle" -msgstr "Визначає групування суб'єктів. Кожна серія відображається як конкретний колір на діаграмі і має легенду перемикання" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "Порівняння" -msgid "Defines the size of the rolling window function, relative to the time granularity selected" -msgstr "Визначає розмір функції котячого вікна, відносно вибитої деталізації часу" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "Інтенсивність" -msgid "Defines whether the step should appear at the beginning, middle or end between two data points" -msgstr "Визначає, чи повинен крок з’являтися на початку, середній або кінець між двома точками даних" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" +msgstr "Зразок" -msgid "Delete" -msgstr "Видаляти" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" +msgstr "Доповідь" -msgid "Delete %s?" -msgstr "Видалити %s?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Тенденція" -msgid "Delete Annotation?" -msgstr "Видалити анотацію?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" +msgstr "менше {min} {name}" -msgid "Delete Database?" -msgstr "Видалити базу даних?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" +msgstr "між {down} і {up} {name}" -msgid "Delete Dataset?" -msgstr "Видалити набір даних?" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "більше {max} {name}" -msgid "Delete Layer?" -msgstr "Видалити шар?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "Сортування за метрикою" -msgid "Delete Query?" -msgstr "Видалити запит?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "Чи слід сортувати результати за вибраним показником у порядку зменшення." -msgid "Delete Report?" -msgstr "Видалити звіт?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" +msgstr "Формат числа" -msgid "Delete Template?" -msgstr "Видалити шаблон?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" +msgstr "Виберіть формат числа" -msgid "Delete all Really?" -msgstr "Видалити все справді?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "Джерело" -msgid "Delete annotation" -msgstr "Видалити анотацію" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" +msgstr "Виберіть джерело" -msgid "Delete dashboard tab?" -msgstr "Видалити вкладку для інформаційної панелі?" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" +msgstr "Цільовий" -msgid "Delete database" -msgstr "Видалити базу даних" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" +msgstr "Виберіть ціль" -msgid "Delete email report" -msgstr "Видалити звіт електронної пошти" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" +msgstr "Протікати" -msgid "Delete query" -msgstr "Видалити запит" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." +msgstr "" +"Демонструє потік або зв’язок між категоріями, використовуючи товщину " +"акордів. Значення та відповідна товщина можуть бути різними для кожної " +"сторони." -msgid "Delete template" -msgstr "Видалити шаблон" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "Відносини між каналами громади" -msgid "Delete this container and save to remove this message." -msgstr "Видаліть цей контейнер і збережіть, щоб видалити це повідомлення." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "Акордна діаграма" -msgid "Deleted" -msgstr "Видалений" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "Естетичний" -msgid "Deleted %(num)d annotation" -msgstr "Видалено %(число) d анотація" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "Круговий" -msgid "Deleted %(num)d annotation layer" -msgstr "Видалений %(число) D шар анотації" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "Спадщина" -msgid "Deleted %(num)d chart" -msgstr "Видалено %(число) D діаграми" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "Пропорційний" -msgid "Deleted %(num)d css template" -msgstr "Видалений %(num) d шаблон CSS" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" +msgstr "Реляційний" -msgid "Deleted %(num)d dashboard" -msgstr "Видалено %(num)d інформаційних панелей" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "Країна" -msgid "Deleted %(num)d dataset" -msgstr "Видалено %(число) D набору даних" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "Для якої країни побудувати карту?" -msgid "Deleted %(num)d report schedule" -msgstr "Видалений %(число) d Розклад звіту" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "ISO 3166-2 Коди" -msgid "Deleted %(num)d rules" -msgstr "Видалено %(число) D Правила" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." +msgstr "" +"Стовпчик, що містить ISO 3166-2 Коди регіону/провінції/відділення у вашій" +" таблиці." -msgid "Deleted %(num)d saved query" -msgstr "Видалений %(число) d Зберегти запит" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" +msgstr "Метрика для відображення нижньої назви" -msgid "Deleted %s" -msgstr "Видалено %s" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "Карта" -msgid "Deleted: %s" -msgstr "Видалено: %s" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." +msgstr "" +"Візуалізує, як одна метрика змінюється в основних підрозділах країни " +"(держави, провінції тощо) на карті хороплета. Значення кожного підрозділу" +" підвищується, коли ви наведете на відповідну географічну межу." + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "2d" -msgid "Deleting a tab will remove all content within it. You may still reverse this action with the" -msgstr "Видалення вкладки видалить весь вміст всередині неї. Ви все ще можете змінити цю дію за допомогою" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "Гео" -msgid "Delimited long & lat single column" -msgstr "Розмежований одиночний стовпчик Long & Lat" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "Діапазон" -msgid "Delimiter" -msgstr "Розмежування" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "Складений" -msgid "Delivery method" -msgstr "Метод доставки" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "Вибачте, даних, як видається, немає" -msgid "Demographics" -msgstr "Демографія" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "Визначення події" -msgid "Density" -msgstr "Щільність" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" +msgstr "Назви подій" -msgid "Dependent on" -msgstr "Залежить від" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "Стовпці для відображення" -msgid "Deprecated" -msgstr "Застарілий" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "Замовлення за сутністю ідентифікатор" -msgid "Description" -msgstr "Опис" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." +msgstr "" +"Важливо! Виберіть це, якщо таблиця ще не відсортована за ідентифікатором " +"сутності, інакше немає гарантії, що всі події для кожної сутності " +"повертаються." -msgid "Description (this can be seen in the list)" -msgstr "Опис (це можна побачити у списку)" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "Мінімальний кількість подій вузла листя" -msgid "Description Columns" -msgstr "Опис стовпців" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "" +"Листові вузли, що представляють менше, ніж ця кількість подій, спочатку " +"будуть приховані у візуалізації" -msgid "Description text that shows up below your Big Number" -msgstr "Опис текст, який відображається нижче вашого великого номера" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "Додаткові метадані" -msgid "Deselect all" -msgstr "Скасувати всі" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" +msgstr "Метадані" -msgid "Details of the certification" -msgstr "Деталі сертифікації" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" +msgstr "Виберіть будь -які стовпці для перевірки метаданих" -msgid "Determines how whiskers and outliers are calculated." -msgstr "Визначає, як обчислюються вуса та переживчі." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "Ідентифікатор сутності" -msgid "Determines whether or not this dashboard is visible in the list of all dashboards" -msgstr "Визначає, чи видно цю інформаційну панель у списку всіх інформаційних панелей" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" +msgstr "наприклад, стовпець “user id”" -msgid "Diamond" -msgstr "Алмаз" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "Максимальні події" -msgid "Did you mean:" -msgstr "Ти мав на увазі:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "" +"Максимальна кількість подій, що повертаються, еквівалентні кількості " +"рядків" -msgid "Difference" -msgstr "Різниця" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +msgid "" +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "" +"Порівняйте тривалість часу, коли різні види діяльності займаються " +"спільним переглядом часової шкали." -msgid "Dim Gray" -msgstr "Тьмяно сірий" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" +msgstr "Потік подій" -msgid "Dimension" -msgstr "Вимір" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "Прогресивний" -msgid "Dimension to use on x-axis." -msgstr "Розмір використання на осі x." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "Осі висхідна" -msgid "Dimension to use on y-axis." -msgstr "Розмір використання в осі Y." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "Осі, що спускається" -msgid "Dimensions" -msgstr "Розміри" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" +msgstr "Метричний висхід" -msgid "Directed Force Layout" -msgstr "Спрямований макет сили" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" +msgstr "Метричний спуск" -msgid "Directional" -msgstr "Спрямований" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "Варіанти теплової карти" -msgid "Disable SQL Lab data preview queries" -msgstr "Вимкнути запити попереднього перегляду даних SQL" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" +msgstr "Xscale Interval" -msgid "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -"Вимкнути попередній перегляд даних під час отримання метаданих таблиці в лабораторії SQL. Корисно, щоб уникнути проблем з продуктивністю браузера при використанні " -"баз даних з дуже широкими таблицями." +"Кількість кроків, які потрібно зробити між кліщами при відображенні шкали" +" X" -msgid "Disable embedding?" -msgstr "Вимкнути вбудовування?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" +msgstr "ІНСПАЛЬНИЙ ІНТЕРВАЛЬ" -msgid "Disabled" -msgstr "Інвалід" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "" +"Кількість кроків, які потрібно зробити між кліщами при відображенні шкали" +" Y" -msgid "Discard" -msgstr "Відкинути" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" +msgstr "Візуалізація" -msgid "Discrete" -msgstr "Дискретний" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "пікселізований (різкий)" -msgid "Display Name" -msgstr "Назва відображення" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "авто (Smooth)" -msgid "Display column level total" -msgstr "Загальний рівень стовпців відображення" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 +msgid "" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "CSS атрибут об'єкта canvas, який визначає, як браузер збільшує зображення" -msgid "Display configuration" -msgstr "Конфігурація відображення" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "Нормалізувати" -msgid "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric." -msgstr "Показники дисплея поруч у кожному стовпці, на відміну від кожного стовпця, що відображається поруч для кожної метрики." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 +msgid "heatmap" +msgstr "теплова карта" -msgid "Display row level total" -msgstr "Відображення рівня рядка загалом" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "x" -msgid "Display settings" -msgstr "Налаштування дисплею" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "у" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 msgid "" -"Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be " -"configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart." +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" -"Відображає з'єднання між об'єктами в структурі графів. Корисно для відображення відносин та показ, які вузли важливі в мережі. Діаграми графів можуть бути " -"налаштовані на спрямування сили або циркуляцію. Якщо ваші дані мають геопросторову складову, спробуйте діаграму дуги Deck.gl." +"Колір буде затінений на основі нормалізованого (0% до 100%) значення " +"даної клітини проти інших клітин у вибраному діапазоні: " -msgid "Distribute across" -msgstr "Розповсюджувати" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "x: Значення нормалізуються в кожному стовпці" -msgid "Distribution" -msgstr "Розподіл" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "y: Значення нормалізуються в кожному рядку" -msgid "Distribution - Bar Chart" -msgstr "Розповсюдження - штрих -діаграма" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "heatmap: значення нормалізуються по всьому heatmap" -msgid "Divider" -msgstr "Роздільник" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "Залишив націнку" -msgid "Do you want a donut or a pie?" -msgstr "Ви хочете пончик чи пиріг?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 +msgid "auto" +msgstr "автоматичний" -msgid "Documentation" -msgstr "Документація" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "" +"Лівий запас у пікселях, що дозволяє отримати більше місця для етикетки " +"Axis" -msgid "Domain" -msgstr "Домен" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "Нижня маржа" -msgid "Donut" -msgstr "Пончик" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "" +"Нижній запас, в пікселях, що дозволяє отримати більше місця для етикетки " +"осі" -msgid "Dotted" -msgstr "Пунктирний" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "Значення цінності" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." +msgstr "" +"Межі жорсткого значення застосовуються для кольорового кодування. Є " +"актуальним і застосовується лише тоді, коли нормалізація застосовується " +"проти всієї теплової карти." + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "Сортуйте вісь x" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "Сортуйте вісь" -msgid "Download" -msgstr "Завантажувати" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "Показати відсоток" -msgid "Download as image" -msgstr "Завантажте як зображення" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "Чи включати відсоток у підказку" -msgid "Download to CSV" -msgstr "Завантажте в CSV" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "Нормалізований" -msgid "Draft" -msgstr "Розтягувати" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" +msgstr "Чи застосовувати нормальний розподіл на основі рангу за кольоровою шкалою" -msgid "Drag and drop components and charts to the dashboard" -msgstr "Перетягніть компоненти та діаграми на інформаційну панель" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" +msgstr "Формат значення" -msgid "Drag and drop components to this tab" -msgstr "Перетягніть компоненти на цю вкладку" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "" +"Візуалізуйте пов'язаний показник по парах груп. Теплові карти " +"перевершують кореляцію або міцність між двома групами. Колір " +"використовується для підкреслення сили зв'язку між кожною парою груп." -msgid "Draw a marker on data points. Only applicable for line types." -msgstr "Накресліть маркер на точках даних. Застосовується лише для типів ліній." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" +msgstr "Розміри транспортних засобів" -msgid "Draw area under curves. Only applicable for line types." -msgstr "Накресліть область під кривими. Застосовується лише для типів ліній." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "Зайнятість та освіта" -msgid "Draw line from Pie to label when labels outside?" -msgstr "Намалювати лінію з пирога до етикетки, коли етикетки зовні?" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "Щільність" -msgid "Draw split lines for minor axis ticks" -msgstr "Накресліть розділені лінії для незначних кліщів" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" +msgstr "Прогнозний" -msgid "Draw split lines for minor y-axis ticks" -msgstr "Накресліть розділені лінії для незначних кліщів у осі Y" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "Єдиний метрик" -msgid "Drill by" -msgstr "Свердлити" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" +msgstr "до" -msgid "Drill by is not available for this data point" -msgstr "Свердло не доступне для цієї точки даних" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" +msgstr "рахувати" -msgid "Drill by is not yet supported for this chart type" -msgstr "Свердло ще не підтримується для цього типу діаграми" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "кумулятивний" -msgid "Drill by: %s" -msgstr "Свердлити: %s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "відсотковий (ексклюзивний)" -msgid "Drill to detail" -msgstr "Свердлити до деталей" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "Виберіть числові стовпці, щоб намалювати гістограму" -msgid "Drill to detail by" -msgstr "Свердлити до деталей" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" +msgstr "Немає бункерів" -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "Свердло до деталей за значенням ще не підтримується для цього типу діаграми." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "Виберіть кількість бункерів для гістограми" -msgid "Drill to detail is disabled because this chart does not group data by dimension value." -msgstr "Дріль до деталей вимкнено, оскільки ця діаграма не групує дані за значенням розмірності." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "X мітка вісь" -msgid "Drill to detail: %s" -msgstr "Свердло до деталей: %s" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "Y мітка вісь" -msgid "Drop a column here or click" -msgstr "Зайдіть сюди або натисніть кнопку" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "Чи нормалізувати гістограму" -msgid "Drop a column/metric here or click" -msgstr "Спустіть сюди стовпець/метрику або натисніть" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "Кумулятивний" -msgid "Drop a temporal column here or click" -msgstr "Спустіть тимчасовий стовпець або натисніть" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "Чи робити гістограму кумулятивною" -msgid "Drop columns/metrics here or click" -msgstr "Спустіть тут стовпці/метрики або натисніть" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "Розподіл" -msgid "Dual Line Chart" -msgstr "Діаграма подвійної лінії" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" +msgstr "" +"Візьміть свої точки даних та групуйте їх у \"бункери\", щоб побачити, де " +"лежать найгустіші області інформації" -msgid "Duplicate" -msgstr "Дублікат" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "Дані віку населення" -msgid "Duplicate column name(s): %(columns)s" -msgstr "Дублікат назви стовпців: %(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "Внесок" -msgid "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label." -msgstr "Дублікат стовпців/метричних міток: %(labels)s. Будь ласка, переконайтеся, що всі стовпці та показники мають унікальну мітку." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "Обчисліть внесок у загальний" -msgid "Duplicate dataset" -msgstr "Дублікат набору даних" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "Висота серії" -msgid "Duplicate tab" -msgstr "Вкладка дублікатів" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "Висота пікселів кожної серії" -msgid "Duration" -msgstr "Тривалість" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "Домен значення" -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this " -"defaults to the global timeout if undefined." -msgstr "" -"Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних. Час очікування 0 вказує на те, що кеш ніколи не закінчується, і -1 обходить кеш. Зверніть " -"увагу на це за замовчуванням до глобального тайм -ауту, якщо він не визначений." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +msgid "series" +msgstr "серія" -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global " -"timeout if undefined." -msgstr "" -"Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних. Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу на це за " -"замовчуванням до глобального тайм -ауту, якщо він не визначений." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +msgid "overall" +msgstr "загальний" -msgid "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined." -msgstr "Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Зверніть увагу на за замовчуванням до часу очікування даних/таблиці, якщо він не визначений." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "change" +msgstr "зміна" -msgid "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" msgstr "" -"Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. Встановіть -1, щоб обійти кеш. Зверніть увагу на за замовчуванням до часу очікування набору даних, " -"якщо він не визначений." +"series: Ставтеся до кожної серії незалежно; Загалом: усі серії " +"використовують однакову шкалу; Зміна: Показати зміни порівняно з першою " +"точкою даних у кожній серії" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if " -"undefined." +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" -"Тривалість (за секунди) тайм -ауту кешування для цієї таблиці. Час очікування 0 вказує на те, що кеш ніколи не закінчується. Зверніть увагу на цей час очікування " -"бази даних, якщо він не визначений." - -msgid "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires." -msgstr "Тривалість (за лічені секунди) таймаут кешування метаданих для схем цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується." - -msgid "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. " -msgstr "Тривалість (за лічені секунди) таймаут кешування метаданих для таблиць цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується. " - -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "Тривалість в МС (1,40008 => 1 мс 400 мк 80ns)" +"Порівняється, як метрика змінюється з часом між різними групами. Кожна " +"група відображається на ряд, і змінюється з часом, візуалізується довжини" +" планки та колір." -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "Тривалість у MS (100,40008 => 100 мс 400 мкс 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" +msgstr "Діаграма горизонту" -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "Тривалість у MS (66000 => 1 м 6с)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "Темний блакит" -msgid "Duration: %s" -msgstr "Тривалість: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +msgid "Purple" +msgstr "Фіолетовий" -msgid "Dynamic Aggregation Function" -msgstr "Функція динамічної агрегації" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "Золото" -msgid "Dynamically search all filter values" -msgstr "Динамічно шукайте всі значення фільтра" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +msgid "Dim Gray" +msgstr "Тьмяно сірий" -msgid "ECharts" -msgstr "Echarts" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 +msgid "Crimson" +msgstr "Малиновий" -msgid "EMAIL_REPORTS_CTA" -msgstr "Email_reports_cta" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +msgid "Forest Green" +msgstr "Лісовий зелений" -msgid "END (EXCLUSIVE)" -msgstr "Кінець (ексклюзивний)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "Довгота" -msgid "ERROR" -msgstr "Помилка" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "Стовпчик, що містить дані довготи" -msgid "ERROR: %s" -msgstr "Помилка: %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "Широта" -msgid "Edge length" -msgstr "Довжина краю" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "Стовпчик, що містить дані про широту" -msgid "Edge length between nodes" -msgstr "Довжина краю між вузлами" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "Радій кластеризації" -msgid "Edge symbols" -msgstr "Символи краю" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 +msgid "" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "" +"Радіус (у пікселях) алгоритм використовує для визначення кластера. " +"Виберіть 0, щоб вимкнути кластеризацію, але будьте обережні, що велика " +"кількість балів (> 1000) спричинить відставання." -msgid "Edge width" -msgstr "Ширина краю" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "Очки" -msgid "Edit" -msgstr "Редагувати" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "Радіус точки" -msgid "Edit Alert" -msgstr "Редагувати попередження" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" +msgstr "" +"Радіус окремих точок (тих, які не в кластері). Або чисельна колонка, або " +"`auto`, що масштабує точку на основі найбільшого кластера" -msgid "Edit CSS" -msgstr "Редагувати CSS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 +msgid "Auto" +msgstr "Автоматичний" -msgid "Edit CSS Template" -msgstr "Редагувати шаблон CSS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "Блок радіуса точки" -msgid "Edit CSS template properties" -msgstr "Редагувати властивості шаблону CSS" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" +msgstr "Пікселі" -msgid "Edit Chart" -msgstr "Редагувати діаграму" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 +msgid "Miles" +msgstr "Милі" -msgid "Edit Chart Properties" -msgstr "Редагувати властивості діаграми" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 +msgid "Kilometers" +msgstr "Кілометри" -msgid "Edit Column" -msgstr "Редагувати стовпчик" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "Одиниця виміру для заданого радіуса точки" -msgid "Edit Dashboard" -msgstr "Редагувати Дашборд" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "Маркування" -msgid "Edit Database" -msgstr "Редагувати базу даних" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" +msgstr "мітка" -msgid "Edit Dataset " -msgstr "Редагувати набір даних " +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "" +"`Count` - це кількість (*), якщо група використовується. Числові стовпці " +"будуть агреговані з агрегатором. Для маркування точок будуть використані " +"нечислові стовпчики. Залиште порожнім, щоб отримати кількість балів у " +"кожному кластері." -msgid "Edit Log" -msgstr "Редагувати журнал" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "Агрегатор кластерної етикетки" -msgid "Edit Metric" -msgstr "Метрика редагування" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "сума" -msgid "Edit Plugin" -msgstr "Редагувати плагін" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 +msgid "mean" +msgstr "середній" -msgid "Edit Report" -msgstr "Редагувати звіт" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +msgid "max" +msgstr "максимум" -msgid "Edit Rule" -msgstr "Правило редагування" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" +msgstr "std" -msgid "Edit Saved Query" -msgstr "Редагувати збережений запит" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +msgid "var" +msgstr "var" -msgid "Edit Table" -msgstr "Редагувати таблицю" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." +msgstr "" +"Агрегатна функція, застосована до списку точок у кожному кластері для " +"отримання етикетки кластера." -msgid "Edit annotation" -msgstr "Редагувати анотацію" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" +msgstr "Візуальні зміни" -msgid "Edit annotation layer" -msgstr "Редагувати шар анотації" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "Жива візуалізація" -msgid "Edit annotation layer properties" -msgstr "Редагувати властивості шару анотації" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "Бали та кластери оновляться, коли змінюється ViewPort" -msgid "Edit chart" -msgstr "Редагувати діаграму" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" +msgstr "Стиль карти" -msgid "Edit chart properties" -msgstr "Редагувати властивості діаграми" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 +msgid "Streets" +msgstr "Вулиці" -msgid "Edit dashboard" -msgstr "Редагувати інформаційну панель" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +msgid "Dark" +msgstr "Темний" -msgid "Edit database" -msgstr "Редагувати базу даних" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 +msgid "Light" +msgstr "Світлий" -msgid "Edit dataset" -msgstr "Редагувати набір даних" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" +msgstr "Супутникові вулиці" -msgid "Edit email report" -msgstr "Редагувати звіт електронної пошти" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +msgid "Satellite" +msgstr "Супутник" -msgid "Edit formatter" -msgstr "Редагувати форматер" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "На відкритому повітрі" -msgid "Edit properties" -msgstr "Редагувати властивості" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "" -msgid "Edit query" -msgstr "Редагувати запит" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "Непрозорість" -msgid "Edit template" -msgstr "Редагувати шаблон" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "Прозоість усіх кластерів, балів та мітків. Між 0 і 1." -msgid "Edit template parameters" -msgstr "Редагувати параметри шаблону" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "RGB Колір" -msgid "Edit the dashboard" -msgstr "Відредагуйте інформаційну панель" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "Колір для точок і кластерів у RGB" -msgid "Edit time range" -msgstr "Редагувати часовий діапазон" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" +msgstr "Viewport" -msgid "Edited" -msgstr "Редаговані" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "Довгота за замовчуванням" -msgid "Editing 1 filter:" -msgstr "Редагування 1 фільтр:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "Довгота перегляду за замовчуванням" -msgid "Editing filter set:" -msgstr "Набір фільтрів редагування:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "Широта за замовчуванням" -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Або база даних написана неправильно, або не існує." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "Широта перегляду за замовчуванням" -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "Або ім'я користувача “%(username)s”, або пароль невірний." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "Масштаб" -msgid "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect." -msgstr "Або ім'я користувача “%(username)s”, пароль або ім'я бази даних “%(database)s\" є неправильним." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "Рівень масштабу карти" -msgid "Either the username or the password is wrong." -msgstr "Або ім'я користувача, або пароль неправильні." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "" +"Один або багато елементів керування групами за. Якщо групування, широта " +"та довгота повинні бути присутніми." -msgid "Elevation" -msgstr "Піднесення" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "Світловий режим" -msgid "Email reports active" -msgstr "Звіти про електронну пошту активні" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "Темний режим" -msgid "Embed" -msgstr "Вбудувати" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "Mapbox" -msgid "Embed code" -msgstr "Вбудувати код" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "Розсіювати" -msgid "Embed dashboard" -msgstr "Вбудувати інформаційну панель" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "Перетворений" -msgid "Embedding deactivated." -msgstr "Вбудовування деактивовано." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "Рівень значущості" -msgid "Emit Filter Events" -msgstr "Виносити подій фільтра" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "Пороговий рівень альфа для визначення значущості" -msgid "Emphasis" -msgstr "Наголос" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "точність p-value" -msgid "Employment and education" -msgstr "Зайнятість та освіта" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" +msgstr "Кількість десяткових місць, з якими можна відобразити p-значення" -msgid "Empty circle" -msgstr "Порожнє коло" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "Підніміть відсоткову точність" -msgid "Empty collection" -msgstr "Порожня колекція" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "Кількість десяткових місць, з якими можна відобразити значення підйому" -msgid "Empty column" -msgstr "Порожній стовпчик" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." +msgstr "" +"Таблиця, яка візуалізує парні t-тести, які використовуються для розуміння" +" статистичних відмінностей між групами." -msgid "Empty query result" -msgstr "Порожній результат запиту" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "Парна таблиця t-тесту" -msgid "Empty query?" -msgstr "Порожній запит?" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "Статистичний" -msgid "Empty row" -msgstr "Порожній ряд" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "Табличний" -msgid "Enable 'Allow file uploads to database' in any database's settings" -msgstr "Увімкніть \"Дозволити завантаження файлів у базу даних\" в налаштуваннях будь -якої бази даних" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "Варіанти" -msgid "Enable Filter Select" -msgstr "Увімкнути фільтр Виберіть" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "Таблиця даних" -msgid "Enable cross-filtering" -msgstr "Увімкнути перехресне фільтрування" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "Чи відображати таблицю інтерактивних даних" -msgid "Enable data zooming controls" -msgstr "Увімкнути контроль за масштабуванням даних" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "Включіть серію" -msgid "Enable embedding" -msgstr "Увімкнути вбудовування" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "Включіть назву серії як вісь" -msgid "Enable forecast" -msgstr "Увімкнути прогноз" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "Рейтинг" -msgid "Enable forecasting" -msgstr "Увімкнути прогнозування" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." +msgstr "" +"Розраховує окремі показники для кожного рядка в даних вертикально і " +"пов'язують їх як ряд. Ця діаграма корисна для порівняння декількох " +"показників у всіх зразках або рядах у даних." -msgid "Enable graph roaming" -msgstr "Увімкнути роумінг графів" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" +msgstr "Координує" -msgid "Enable node dragging" -msgstr "Увімкнути перетягування вузла" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "Спрямований" -msgid "Enable query cost estimation" -msgstr "Увімкнути оцінку витрат на запит" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "Параметри часових рядів" -msgid "Enable server side pagination of results (experimental feature)" -msgstr "Увімкнути серверну пагінування результатів (експериментальна функція)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "Не часовий ряд" -msgid "Encountered invalid NULL spatial entry, please consider filtering those out" -msgstr "Зіткнувшись недійсний нульовий просторовий запис, будь ласка, подумайте про фільтрування їх" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "Ігноруйте час" -msgid "End" -msgstr "Кінець" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" +msgstr "Часовий ряд" -msgid "End (Longitude, Latitude): " -msgstr "Кінець (довгота, широта): " +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "Стандартний часовий ряд" -msgid "End Longitude & Latitude" -msgstr "Кінцева довгота та широта" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "Сукупне середнє значення" -msgid "End Time" -msgstr "Закінчити час" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "Середнє значення за визначений період" -msgid "End angle" -msgstr "Кінцевий кут" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "Сукупна сума" -msgid "End date" -msgstr "Дата закінчення" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "Сума значень протягом визначеного періоду" -msgid "End date excluded from time range" -msgstr "Дата закінчення виключається з часового діапазону" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "Метрична зміна значення від `з` `` до '" -msgid "End date must be after start date" -msgstr "Дата закінчення повинна бути після дати початку" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" +msgstr "Відсоткова зміна" -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "Двигун “%(engine)s” не може бути налаштований за параметрами." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "Метрична відсоткова зміна вартості з `з моменту` `до '" -msgid "Engine Parameters" -msgstr "Параметри двигуна" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "Фактор" -msgid "Engine spec \"InvalidEngine\" does not support being configured via individual parameters." -msgstr "Специфікація двигуна \"Invalidengine\" не підтримує налаштування за допомогою окремих параметрів." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "Зміна метричного фактора від `з` `до` до '" -msgid "Enter CA_BUNDLE" -msgstr "Введіть ca_bundle" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "Розширена аналітика" -msgid "Enter Primary Credentials" -msgstr "Введіть первинні дані" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "Використовуйте наведені нижче варіанти аналітики" -msgid "Enter a delimiter for this data" -msgstr "Введіть розмежування цих даних" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "Налаштування часових рядів" -msgid "Enter a name for this sheet" -msgstr "Введіть ім’я для цього аркуша" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "Формат часу дати" -msgid "Enter a new title for the tab" -msgstr "Введіть новий заголовок для вкладки" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" +msgstr "Обмеження розділу" -msgid "Enter duration in seconds" -msgstr "Введіть тривалість за лічені секунди" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 +msgid "" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "" +"Максимальна кількість підрозділів кожної групи; Нижні значення " +"обрізаються спочатку" -msgid "Enter fullscreen" -msgstr "Введіть повноекранний" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "Поріг розділення" -msgid "Enter the required %(dbModelName)s credentials" -msgstr "Введіть необхідні дані %(dbModelName)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "" +"Перегородки, пропорції висоти, висота батьківства нижче цього значення " +"обрізаються" -msgid "Entity" -msgstr "Об'єкт" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "Журнал" -msgid "Entity ID" -msgstr "Ідентифікатор сутності" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "Використовуйте шкалу журналу" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 msgid "Equal Date Sizes" msgstr "Рівні розміри дати" -msgid "Equal to (=)" -msgstr "Дорівнює (=)" - -msgid "Error" -msgstr "Помилка" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "Перевірте, щоб змусити датні розділи мати однакову висоту" -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "Помилка в виразі jinja у HAVING фразі: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "Багатий підказки" -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "Помилка в виразі jinja у фільтрах RLS: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "Багата підказка показує список усіх серій для цього моменту часу" -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "Помилка в виразі jinja WHERE: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "Коктейльне вікно" -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "Помилка в експресії jinja у значеннях вибору предикат: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "Функція прокатки" -msgid "Error loading chart datasources. Filters may not work correctly." -msgstr "Помилка завантаження діаграм даних. Фільтри можуть працювати не правильно." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" +msgstr "кумсум" -msgid "Error message" -msgstr "Повідомлення про помилку" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "Мінські періоди" -msgid "Error while fetching charts" -msgstr "Помилка під час отримання діаграм" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "Порівняння часу" -msgid "Error while fetching data: %s" -msgstr "Помилка під час отримання даних: %s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "Зрушення в часі" -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "Помилка під час надання віртуального запиту набору даних: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +msgid "1 week" +msgstr "1 тиждень" -msgid "Error: %(error)s" -msgstr "Помилка: %(error)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +msgid "28 days" +msgstr "28 днів" -msgid "Error: %(msg)s" -msgstr "Помилка: %(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30 днів" -msgid "Error: permalink state not found" -msgstr "Помилка: стан постійного посилання не знайдено" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +msgid "52 weeks" +msgstr "52 тижні" -msgid "Estimate cost" -msgstr "Оцінка вартості" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +msgid "1 year" +msgstr "1 рік" -msgid "Estimate selected query cost" -msgstr "Оцініть вибрані вартість запиту" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +msgid "104 weeks" +msgstr "104 тижні" -msgid "Estimate the cost before running a query" -msgstr "Оцініть вартість перед проведенням запиту" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +msgid "2 years" +msgstr "2 роки" -msgid "Event" -msgstr "Подія" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +msgid "156 weeks" +msgstr "156 тижнів" -msgid "Event Flow" -msgstr "Потік подій" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 +msgid "3 years" +msgstr "3 роки" -msgid "Event Names" -msgstr "Назви подій" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Накладіть один або кілька разів з відносного періоду часу. Очікує " +"відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 " +"тижні, 365 днів). Підтримується безкоштовний текст." -msgid "Event definition" -msgstr "Визначення події" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +msgid "Actual Values" +msgstr "Фактичні значення" -msgid "Event flow" -msgstr "Потік подій" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "1T" -msgid "Event time column" -msgstr "Стовпчик часу події" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "1H" -msgid "Every" -msgstr "Кожен" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "1D" -msgid "Evolution" -msgstr "Еволюція" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "7d" -msgid "Exact" -msgstr "Точний" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "1M" -msgid "Example" -msgstr "Приклад" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "1AS" -msgid "Examples" -msgstr "Приклади" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "Метод" -msgid "Excel File" -msgstr "Файл Excel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" +msgstr "асфрек" -msgid "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "Файл Excel \"%(excel_filename)s\" завантажено в таблицю \"%(table_name)s\" в базі даних \"%(db_name)s\"" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" +msgstr "блюд" -msgid "Excel to Database configuration" -msgstr "Excel до конфігурації бази даних" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "ффіл" -msgid "Exclude selected values" -msgstr "Виключіть вибрані значення" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "медіана" -msgid "Excluded roles" -msgstr "Виключені ролі" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "Частина цілого" -msgid "Executed SQL" -msgstr "Виконаний SQL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "Порівняйте однакову узагальнену метрику для декількох груп." -msgid "Executed query" -msgstr "Виконаний запит" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" +msgstr "Діаграма розділів" -msgid "Execution ID" -msgstr "Ідентифікатор виконання" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "Категоричний" -msgid "Execution log" -msgstr "Журнал виконання" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" +msgstr "Використовуйте пропорції площі" -msgid "Existing dataset" -msgstr "Існуючий набір даних" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "" +"Перевірте, чи повинна діаграма троянд використовувати область сегмента " +"замість радіуса сегмента для пропорції" -msgid "Exit fullscreen" -msgstr "Вийти на повне екран" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 +msgid "" +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "" +"Полярна координатна діаграма, де коло розбивається на клини з рівним " +"кутом, а значення, представлене будь -яким клином, проілюстровано його " +"областю, а не його радіусом або кутом підмітання." -msgid "Expand" -msgstr "Розширити" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "Sowingale Rose Chart" -msgid "Expand all" -msgstr "Розширити всі" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "Розширена аналітика" -msgid "Expand data panel" -msgstr "Розгорнути панель даних" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "Багатошарові" -msgid "Expand row" -msgstr "Розширити ряд" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "Джерело / ціль" -msgid "Expand table preview" -msgstr "Розширити попередній перегляд таблиці" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "Виберіть джерело та ціль" -msgid "Expand tool bar" -msgstr "Розгорнути панель інструментів" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." +msgstr "" +"Обмеження рядків може призвести до неповних даних та оманливих діаграм. " +"Подумайте про фільтрацію або групування джерел/цільових імен." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the formulas.\n" -" Example: '2x+5'" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" -"Очікує формули з параметром залежно від часу 'x'\n" -" У мілісекундах з моменту епохи. MathJS використовується для оцінки формул.\n" -" Приклад: '2x+5'" +"Візуалізує потік значень різних груп через різні етапи системи. Нові " +"етапи в трубопроводі візуалізуються як вузли або шари. Товщина брусків " +"або країв представляє показник, який візуалізується." -msgid "Experimental" -msgstr "Експериментальний" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "Демографія" -msgid "Explore" -msgstr "Досліджувати" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "Відповіді на опитування" -msgid "Explore - %(table)s" -msgstr "Дослідити - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "Діаграма Санкі" -msgid "Explore the result set in the data exploration view" -msgstr "Вивчіть результат, встановлений у поданні досліджень даних" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "Відсотки" -msgid "Export" -msgstr "Експорт" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "Діаграма Санкі з петлями" -msgid "Export dashboards?" -msgstr "Експортувати інформаційні панелі?" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "Тип поля країни" -msgid "Export query" -msgstr "Експортний запит" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +msgid "Full name" +msgstr "Повне ім'я" -msgid "Export to .CSV" -msgstr "Експорт до .csv" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" +msgstr "код міжнародного олімпійського комітету (cioc)" -msgid "Export to .JSON" -msgstr "Експорт до .json" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" +msgstr "код ISO 3166-1 Альфа-2 (CCA2)" -msgid "Export to Excel" -msgstr "Експорт до Excel" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" +msgstr "код ISO 3166-1 Alpha-3 (CCA3)" -msgid "Export to YAML" -msgstr "Експорт до Ямла" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "" +"Стандарт коду країни, який суперсет повинен очікувати, що у стовпці " +"[країна]" -msgid "Export to YAML?" -msgstr "Експорт до Ямла?" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" +msgstr "Показати бульбашки" -msgid "Export to full .CSV" -msgstr "Експорт до повного .csv" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "Чи відображати бульбашки поверх країн" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "Максимальний розмір міхура" -msgid "Export to original .CSV" -msgstr "Експорт до оригіналу .csv" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +msgid "Color by" +msgstr "Забарвляти" -msgid "Export to pivoted .CSV" -msgstr "Експорт до повороту .csv" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" +msgstr "" +"Виберіть, чи повинна країна затінювати метрику, або призначати колір на " +"основі категоричної кольорової палітру" -msgid "Expose database in SQL Lab" -msgstr "Викрити базу даних у лабораторії SQL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "Стовпчик країни" -msgid "Expose in SQL Lab" -msgstr "Викриття в лабораторії SQL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" +msgstr "3х символьний код країни" -msgid "Expose this DB in SQL Lab" -msgstr "Викрити цей БД у лабораторії SQL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "Метрика, яка визначає розмір міхура" -msgid "Expression" -msgstr "Вираз" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "Бульбашковий колір" -msgid "Extra" -msgstr "Додатковий" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "Колірна гамма країни" -msgid "Extra Controls" -msgstr "Додаткові елементи управління" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "Карта світу, яка може вказувати на цінності в різних країнах." -msgid "Extra Parameters" -msgstr "Додаткові параметри" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "Мультимір" -msgid "Extra data for JS" -msgstr "Додаткові дані для JS" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "Багаторазові" -msgid "" -"Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": " -"\"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`." -msgstr "" -"Додаткові дані для визначення метаданих таблиць. В даний час підтримує метадані формату: `{\" Сертифікація \": {\" сертифікат_by \":\" Команда платформи даних \",\" " -"Деталі \":\" Ця таблиця є джерелом істини \". }, \"попередження_markdown\": \"Це попередження\". } `." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "Популярний" -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "Додаткове поле не може розшифровувати JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 +msgid "deck.gl charts" +msgstr "deck.gl charts" -msgid "Extra parameters for use in jinja templated queries" -msgstr "Додаткові параметри для використання в шаблонних запитах Jinja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" +msgstr "Виберіть набір діаграм палуби" -msgid "Extra parameters that any plugins can choose to set for use in Jinja templated queries" -msgstr "Додаткові параметри, які будь -які плагіни можуть вибрати для використання в шаблонних запитах Jinja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "Виберіть діаграми" -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "Додаткові параметри URL -адреси для використання в шаблонних запитах Jinja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" +msgstr "Помилка під час отримання діаграм" -msgid "Extruded" -msgstr "Екструдований" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "Складіть кілька шарів разом для формування складних візуальних зображень." -msgid "FEB" -msgstr "Лютий" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 +msgid "deck.gl Multiple Layers" +msgstr "deck.gl Multiple Layers" -msgid "FRI" -msgstr "Пт" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +msgid "deckGL" +msgstr "палуба" -msgid "Factor" -msgstr "Фактор" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 +msgid "Start (Longitude, Latitude): " +msgstr "Початок (довгота, широта): " -msgid "Factor to multiply the metric by" -msgstr "Коефіцієнт для множення метрики на" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +msgid "End (Longitude, Latitude): " +msgstr "Кінець (довгота, широта): " -msgid "Fail" -msgstr "Провалити" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 +msgid "Start Longitude & Latitude" +msgstr "Почніть довготу та широту" -msgid "Failed" -msgstr "Провалився" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "Вкажіть на свої просторові стовпці" -msgid "Failed at retrieving results" -msgstr "Не вдалося отримати результати" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 +msgid "End Longitude & Latitude" +msgstr "Кінцева довгота та широта" -msgid "Failed at stopping query. %s" -msgstr "Не вдалося зупинити запит. %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 +msgid "Arc" +msgstr "Дуга" -msgid "Failed to create report" -msgstr "Не вдалося створити звіт" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 +msgid "Target Color" +msgstr "Цільовий колір" -msgid "Failed to execute %(query)s" -msgstr "Не вдалося виконати %(query)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +msgid "Color of the target location" +msgstr "Колір цільового розташування" -msgid "Failed to generate chart edit URL" -msgstr "Не вдалося створити URL -адресу редагування діаграм" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +msgid "Categorical Color" +msgstr "Категоричний колір" -msgid "Failed to load chart data" -msgstr "Не вдалося завантажити дані діаграми" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "Виберіть вимір, з якого визначені категоричні кольори" -msgid "Failed to load chart data." -msgstr "Не вдалося завантажити дані діаграми." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 +msgid "Stroke Width" +msgstr "Ширина інсульту" -msgid "Failed to load dimensions for drill by" -msgstr "Не вдалося завантажити розміри для свердління" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "Просунутий" -msgid "Failed to retrieve advanced type" -msgstr "Не вдалося отримати розширений тип" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." +msgstr "" +"Наведіть відстань (як доріжки польоту) між походженням та пунктом " +"призначення." -msgid "Failed to save cross-filter scoping" -msgstr "Не вдалося зберегти перехресне фільтрування" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "deck.gl Arc" -msgid "Failed to start remote query on a worker." -msgstr "Не вдалося запустити віддалений запит на працівника." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" +msgstr "3D" -msgid "Failed to update report" -msgstr "Не вдалося оновити звіт" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "Павутина" -msgid "Failed to verify select options: %s" -msgstr "Не вдалося перевірити вибрати параметри: %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +msgid "Centroid (Longitude and Latitude): " +msgstr "Центроїд (довгота та широта): " -msgid "Favorite" -msgstr "Улюблені" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +#, fuzzy +msgid "Threshold: " +msgstr "Поріг мітки" -msgid "Favorites" -msgstr "Улюблені" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +#, fuzzy +msgid "The size of each cell in meters" +msgstr "Розмір квадратної клітини, пікселів" -msgid "February" -msgstr "Лютий" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +msgid "Aggregation" +msgstr "Агрегація" -msgid "Fetch Values Predicate" -msgstr "Значення отримання предикатів" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "Функція, яку слід використовувати при агрегуванні точок у групи" -msgid "Fetch data preview" -msgstr "Попередній перегляд даних" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 +#, fuzzy +msgid "Contours" +msgstr "Безперервний" -msgid "Fetched %s" -msgstr "Витягнутий %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" -msgid "Fetching" -msgstr "Приплив" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +msgid "Weight" +msgstr "Вага" -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "Поле не може розшифрувати JSON. %(json_error)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "Метрика, що використовується як вага для забарвлення сітки" -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "Поле не може розшифрувати JSON. %(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" +"Використання оцінки щільності ядра Гаусса для візуалізації просторового " +"розподілу даних" -msgid "Field is required" -msgstr "Потрібне поле" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "deck.gl Arc" -msgid "File" -msgstr "Файл" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "Просторовий" -msgid "Fill Color" -msgstr "Заповнити колір" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "Експериментальний" -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "Заповніть усі необхідні поля, щоб увімкнути \"значення за замовчуванням\"" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +msgid "GeoJson Settings" +msgstr "Налаштування Geojson" -msgid "Fill method" -msgstr "Метод заповнення" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "Ширина лінії" -msgid "Filled" -msgstr "Наповнений" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "Параметри" -msgid "Filter" -msgstr "Фільтрувати" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +#, fuzzy +msgid "pixels" +msgstr "Пікселі" -msgid "Filter Configuration" -msgstr "Конфігурація фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +msgid "Point Radius Scale" +msgstr "Шкала радіуса точки" -msgid "Filter List" -msgstr "Список фільтрів" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 +msgid "" +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." +msgstr "" +"Geojsonlayer приймає дані, відформатовані Geojson, і представляє їх як " +"інтерактивні багатокутники, лінії та точки (кола, ікони та/або тексти)." -msgid "Filter Settings" -msgstr "Налаштування фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +msgid "deck.gl Geojson" +msgstr "deck.gl Geojson" -msgid "Filter Type" -msgstr "Тип фільтру" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +msgid "Longitude and Latitude" +msgstr "Довгота і широта" -msgid "Filter box (deprecated)" -msgstr "Поле фільтру (застаріло)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "Висота" -msgid "Filter charts" -msgstr "Фільтр -діаграми" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" +msgstr "Метрика, що використовується для контролю висоти" -msgid "Filter configuration" -msgstr "Конфігурація фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 +msgid "" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." +msgstr "" +"Візуалізуйте геопросторові дані, такі як 3D -будівлі, ландшафти або " +"предмети в View." -msgid "Filter configuration for the filter box" -msgstr "Конфігурація фільтра для поля фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +msgid "deck.gl Grid" +msgstr "колода.gl сітка" -msgid "Filter has default value" -msgstr "Фільтр має значення за замовчуванням" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +msgid "Intesity" +msgstr "Нечіткість" -msgid "Filter menu" -msgstr "Меню фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "Інтенсивність - це значення, помножене на вагу, щоб отримати кінцеву вагу" -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "Метадані фільтра змінюються на інформаційній панелі. Це не буде застосовуватися." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 +msgid "Intensity Radius" +msgstr "Радіус інтенсивності" -msgid "Filter name" -msgstr "Назва фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "Радіус інтенсивності - радіус, на якому розподіляється вага" -msgid "Filter only displays values relevant to selections made in other filters." -msgstr "Фільтр відображає лише значення, що стосуються вибору, зроблених в інших фільтрах." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +msgid "deck.gl Heatmap" +msgstr "deck.gl Heatmap" -msgid "Filter results" -msgstr "Результати фільтрів" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +msgid "Dynamic Aggregation Function" +msgstr "Функція динамічної агрегації" -msgid "Filter set already exists" -msgstr "Набір фільтра вже існує" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +msgid "variance" +msgstr "дисперсія" -msgid "Filter set with this name already exists" -msgstr "Набір фільтра з цим іменем вже існує" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "deviation" +msgstr "відхилення" -msgid "Filter sets (%(filterSetCount)d)" -msgstr "Набори фільтрів (%(filtersetcount) d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "p1" -msgid "Filter type" -msgstr "Тип фільтру" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" +msgstr "p5" -msgid "Filter value (case sensitive)" -msgstr "Значення фільтра (чутливе до випадку)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "p95" -msgid "Filter value is required" -msgstr "Потрібне значення фільтра" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" +msgstr "p99" -msgid "Filter value list cannot be empty" -msgstr "Список значень фільтра не може бути порожнім" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" +"Накладає шестикутну сітку на карті та агрегує дані в межах кордону кожної" +" комірки." -msgid "Filter your charts" -msgstr "Відфільтруйте свої діаграми" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +msgid "deck.gl 3D Hexagon" +msgstr "deck.gl 3D шестикутник" -msgid "Filterable" -msgstr "Фільтруваний" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "Полілінія" -msgid "Filters" -msgstr "Фільтри" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "Візуалізує підключені точки, які утворюють шлях, на карті." -msgid "Filters (%d)" -msgstr "Фільтри (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 +msgid "deck.gl Path" +msgstr "deck.gl Path" -msgid "Filters by columns" -msgstr "Фільтри за колонками" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +msgid "name" +msgstr "назва" -msgid "Filters by metrics" -msgstr "Фільтри за метриками" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +msgid "Polygon Column" +msgstr "Полігонна колонка" -msgid "Filters configuration" -msgstr "Конфігурація фільтрів" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +msgid "Polygon Encoding" +msgstr "Кодування багатокутника" -msgid "Filters out of scope (%d)" -msgstr "Фільтри поза обсягом (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +msgid "Elevation" +msgstr "Піднесення" -msgid "" -"Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as " -"unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = " -"'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = " -"'Marketing') AND (region = 'Europe')." -msgstr "" -"Фільтри з тим самим груповим ключем будуть розглянуті разом у групі, тоді як різні групи фільтрів будуть та разом. Невизначені групові ключі трактуються як унікальні " -"групи, тобто не згруповані разом. Наприклад, якщо в таблиці є три фільтри, з яких два - для відділів фінансування та маркетинг (груповий ключ = 'відділ'), а один " -"відноситься до регіону Європи (груповий ключ = 'регіон'), застереження про фільтр застосовуватиметься фільтр (відділ = \"фінанси\" або відділ = \"маркетинг\") та " -"(регіон = \"Європа\")." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +msgid "Polygon Settings" +msgstr "Налаштування багатокутників" -msgid "Finish" -msgstr "Закінчити" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" +msgstr "Непрозорість, очікує значення від 0 до 100" -msgid "First" -msgstr "Перший" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "Кількість відр для групування даних" -msgid "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates" -msgstr "Зафіксуйте лінію тенденції до повного часу, зазначеного у відфільтрованих результатах" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "Скільки відра слід згрупувати дані." -msgid "Fix to selected Time Range" -msgstr "Виправте до вибраного діапазону часу" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" +msgstr "Точки розриву відра" -msgid "Fixed" -msgstr "Нерухомий" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." +msgstr "Список значення N+1 для метрики відра в N відра." -msgid "Fixed Color" -msgstr "Фіксований колір" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 +msgid "Emit Filter Events" +msgstr "Виносити подій фільтра" -msgid "Fixed color" -msgstr "Фіксований колір" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +msgid "Whether to apply filter when items are clicked" +msgstr "Чи слід застосовувати фільтр, коли елементи клацають" -msgid "Fixed point radius" -msgstr "Фіксований радіус точки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +msgid "Multiple filtering" +msgstr "Багаторазова фільтрація" -msgid "Flow" -msgstr "Протікати" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" +msgstr "Дозволити надсилання декількох багатокутників як події фільтра" -msgid "Font size" -msgstr "Розмір шрифту" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." +msgstr "" +"Візуалізує географічні області з ваших даних як багатокутників на карті, " +"що надається Mapbox. Полігони можна забарвити за допомогою метрики." -msgid "Font size for axis labels, detail value and other text elements" -msgstr "Розмір шрифту для етикетки осі, детальне значення та інші текстові елементи" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +msgid "deck.gl Polygon" +msgstr "deck.gl Polygon" -msgid "Font size for the biggest value in the list" -msgstr "Розмір шрифту за найбільшим значенням у списку" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "Категорія" -msgid "Font size for the smallest value in the list" -msgstr "Розмір шрифту для найменшого значення у списку" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 +msgid "Point Size" +msgstr "Розмір точки" -msgid "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query." -msgstr "Для BigQuery, Presto та Postgres показує кнопку для обчислення вартості перед запуском запиту." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 +msgid "Point Unit" +msgstr "Точкова одиниця" -msgid "For further instructions, consult the" -msgstr "Для отримання додаткових інструкцій проконсультуйтеся" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Square meters" +msgstr "Квадратних метрів" -msgid "For more information about objects are in context in the scope of this function, refer to the" -msgstr "Для отримання додаткової інформації про об'єкти в контексті в обсязі цієї функції, див. " +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 +msgid "Square kilometers" +msgstr "Квадратні кілометри" -msgid "" -"For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin " -"should see all data." -msgstr "" -"Для регулярних фільтрів це ролі, до яких цей фільтр буде застосований. Для базових фільтрів це ролі, до яких фільтр не застосовується, наприклад Адміністратор, якщо " -"адміністратор повинен побачити всі дані." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 +msgid "Square miles" +msgstr "Квадратні милі" -msgid "Force" -msgstr "Примушувати" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +msgid "Radius in meters" +msgstr "Радіус у метрах" -msgid "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab." -msgstr "Примушіть всі таблиці та перегляди в цій схемі, натиснувши CTA або CVA в лабораторії SQL." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "Радіус у кілометрах" -msgid "Force date format" -msgstr "Формат дат сили" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" +msgstr "Радіус у милях" -msgid "Force refresh" -msgstr "Оновити" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +msgid "Minimum Radius" +msgstr "Мінімальний радіус" -msgid "Force refresh schema list" -msgstr "Список схеми оновлення сили" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" +"Мінімальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу " +"це гарантує, що коло поважає цей мінімальний радіус." -msgid "Force refresh table list" -msgstr "Список таблиць оновлення сили оновлення" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "Максимальний радіус" -msgid "Forecast periods" -msgstr "Прогнозна періоди" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" +"Максимальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу" +" це гарантує, що коло поважає цей максимальний радіус." -msgid "Foreign key" -msgstr "Зовнішній ключ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +msgid "Point Color" +msgstr "Точковий колір" -msgid "Forest Green" -msgstr "Лісовий зелений" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "" +"Карта, яка приймає кола з рендерінгу зі змінною радіусом на координатах " +"широти/довготи" -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "Дані форми, які не містяться в кеші, повертаючись до метаданих діаграм." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 +msgid "deck.gl Scatterplot" +msgstr "deck.gl Scatterplot" -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "Дані форми, які не знайдені в кеші, повертаючись до метаданих набору даних." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +msgid "Grid" +msgstr "Сітка" -msgid "Formattable" -msgstr "Формальний" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" +"Агрегує дані в межах кордону клітин сітки та відображають агреговані " +"значення до динамічної кольорової шкали" -msgid "Formatted CSV attached in email" -msgstr "Відформатовано CSV, доданий електронною поштою" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 +msgid "deck.gl Screen Grid" +msgstr "deck.gl Screen Grid" -msgid "Formatted date" -msgstr "Відформатована дата" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" +"Для отримання додаткової інформації про об'єкти в контексті в обсязі цієї" +" функції, див. " -msgid "Formatted value" -msgstr "Відформатоване значення" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" +msgstr " Вихідний код аналізатора пісочниці Superset" -msgid "Formatting" -msgstr "Форматування" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "Ця функціональність відключена у вашому середовищі з міркувань безпеки." -msgid "Formula" -msgstr "Формула" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "Ігноруйте нульові місця" -msgid "Forward values" -msgstr "Значення вперед" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 +msgid "Whether to ignore locations that are null" +msgstr "Чи потрібно ігнорувати місця, які є нульовими" -msgid "Found invalid orderby options" -msgstr "Знайдені недійсні параметри замовлення" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 +msgid "Auto Zoom" +msgstr "Автомобільний масштаб" -msgid "Fraction digits" -msgstr "Фракційні цифри" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "Після перевірки карта збільшиться до ваших даних після кожного запиту" -msgid "Frequency" -msgstr "Частота" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +msgid "Select a dimension" +msgstr "Виберіть вимір" -msgid "Friction" -msgstr "Тертя" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "Додаткові дані для JS" -msgid "Friction between nodes" -msgstr "Тертя між вузлами" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" +msgstr "Список додаткових стовпців, доступних у функціях JavaScript" -msgid "Friday" -msgstr "П’ятниця" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" +msgstr "Перехоплювач даних JavaScript" -msgid "From date cannot be larger than to date" -msgstr "З дати не може бути більшим, ніж на сьогоднішній день" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." +msgstr "" +"Визначте функцію JavaScript, яка отримує масив даних, що використовується" +" у візуалізації, і, як очікується, поверне модифіковану версію цього " +"масиву. Це може бути використане для зміни властивостей даних, фільтра " +"або збагачення масиву." -msgid "Full name" -msgstr "Повне ім'я" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "Generator JavaScript" -msgid "Funnel Chart" -msgstr "Графік воронки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" +msgstr "Визначте функцію, яка отримує вхід і виводить вміст для підказки" -msgid "Further customize how to display each column" -msgstr "Далі налаштувати, як відобразити кожен стовпець" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" +msgstr "Javascript onclick href" -msgid "Further customize how to display each metric" -msgstr "Далі налаштувати, як відобразити кожну метрику" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "" +"Визначте функцію, яка повертає URL -адресу, щоб перейти до того, коли " +"користувач клацає" -msgid "GROUP BY" -msgstr "Група" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 +msgid "Legend Format" +msgstr "Легенда формат" -msgid "Gauge Chart" -msgstr "Діаграма калібру" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 +msgid "Choose the format for legend values" +msgstr "Виберіть формат для значень легенди" -msgid "General" -msgstr "Загальний" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 +msgid "Legend Position" +msgstr "Легенда позиція" -msgid "Generating link, please wait.." -msgstr "Генеруючи посилання, будь ласка, зачекайте .." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 +msgid "Choose the position of the legend" +msgstr "Виберіть положення легенди" -msgid "Generic Chart" -msgstr "Загальна діаграма" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top left" +msgstr "Зверху ліворуч" -msgid "Geo" -msgstr "Гео" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Top right" +msgstr "Праворуч зверху" -msgid "GeoJson Column" -msgstr "Колонка Geojson" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 +msgid "Bottom left" +msgstr "Знизу зліва" -msgid "GeoJson Settings" -msgstr "Налаштування Geojson" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +msgid "Bottom right" +msgstr "Знизу праворуч" -msgid "Geohash" -msgstr "Геохаш" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 +msgid "Lines column" +msgstr "Стовпчик рядків" -msgid "Get the last date by the date unit." -msgstr "Отримайте останню дату до одиниці дати." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +msgid "The database columns that contains lines information" +msgstr "Стовпці бази даних, що містить інформацію про рядки" -msgid "Get the specify date for the holiday" -msgstr "Отримайте дату вказати на свято" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "Ширина лінії" -msgid "Go to the edit mode to configure the dashboard and add charts" -msgstr "Перейдіть у режим редагування, щоб налаштувати інформаційну панель та додати діаграми" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +msgid "The width of the lines" +msgstr "Ширина ліній" -msgid "Gold" -msgstr "Золото" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +msgid "Fill Color" +msgstr "Заповнити колір" -msgid "Google Sheet Name and URL" -msgstr "Назва та URL адреса Google Sheet" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" +msgstr "" +" Встановіть непрозорість на 0, якщо ви не хочете перекрити колір, " +"вказаний у Geojson" -msgid "Grace period" -msgstr "Період витонченості" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +msgid "Stroke Color" +msgstr "Колір удару" -msgid "Graph Chart" -msgstr "Діаграма графа" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 +msgid "Filled" +msgstr "Наповнений" -msgid "Graph layout" -msgstr "Розположення графу" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 +msgid "Whether to fill the objects" +msgstr "Чи заповнювати об'єкти" -msgid "Gravity" -msgstr "Тяжкість" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 +msgid "Stroked" +msgstr "Погладжений" -msgid "Greater or equal (>=)" -msgstr "Більший або рівний (> =)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 +msgid "Whether to display the stroke" +msgstr "Чи відображати хід" -msgid "Greater than (>)" -msgstr "Більше (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +msgid "Extruded" +msgstr "Екструдований" -msgid "Grid" -msgstr "Сітка" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +msgid "Whether to make the grid 3D" +msgstr "Чи робити сітку 3D" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 msgid "Grid Size" msgstr "Розмір сітки" -msgid "Group By" -msgstr "Група" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "Визначає розмір сітки в пікселях" -msgid "Group By filter plugin" -msgstr "Група плагіна фільтрів" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "Параметри, пов’язані з переглядом та перспективою на карті" -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "Група за, показники або відсоткові показники повинні мати значення" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 +msgid "Longitude & Latitude" +msgstr "Довгота та широта" -msgid "Group Key" -msgstr "Груповий ключ" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 +msgid "Fixed point radius" +msgstr "Фіксований радіус точки" -msgid "Group by" -msgstr "Група" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +msgid "Multiplier" +msgstr "Множник" -msgid "Groupable" -msgstr "Груповий" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "Коефіцієнт для множення метрики на" -msgid "Handlebars" -msgstr "Ручка" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +msgid "Lines encoding" +msgstr "Лінії кодування" -msgid "Handlebars Template" -msgstr "Шаблон ручки" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +msgid "The encoding format of the lines" +msgstr "Формат кодування ліній" -msgid "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap." -msgstr "" -"Межі жорсткого значення застосовуються для кольорового кодування. Є актуальним і застосовується лише тоді, коли нормалізація застосовується проти всієї теплової " -"карти." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "geohash (square)" -msgid "Has created by" -msgstr "Створив" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +msgid "Reverse Lat & Long" +msgstr "Зворотний лат і довгий" -msgid "Header" -msgstr "Заголовок" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +msgid "GeoJson Column" +msgstr "Колонка Geojson" -msgid "Header Row" -msgstr "Заголовок" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +msgid "Select the geojson column" +msgstr "Виберіть стовпчик Geojson" -msgid "Heatmap" -msgstr "Теплова карта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "Формат правої осі" -msgid "Heatmap Options" -msgstr "Варіанти теплової карти" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "Шоу маркерів" -msgid "Height" -msgstr "Висота" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "Показати точки даних як маркери кола на лініях" -msgid "Height of the sparkline" -msgstr "Висота іскрової лінії" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "Y межі" -msgid "Hide Line" -msgstr "Приховувати лінію" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "Чи відображати значення min та максимально вісь y" -msgid "Hide chart description" -msgstr "Сховати опис діаграми" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "Y 2 межі" -msgid "Hide layer" -msgstr "Сховати шар" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "Лінійний стиль" -msgid "Hide password." -msgstr "Приховати пароль." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "linear" +msgstr "лінійний" -msgid "Hide tool bar" -msgstr "Сховати панель інструментів" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +msgid "basis" +msgstr "основа" -msgid "Hides the Line for the time series" -msgstr "Приховує лінію для часових рядів" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "cardinal" +msgstr "кардинальний" -msgid "Hierarchy" -msgstr "Ієрархія" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +msgid "monotone" +msgstr "монотонний" -msgid "Histogram" -msgstr "Гістограма" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" +msgstr "ступінь" -msgid "Home" -msgstr "Домашня сторінка" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +msgid "step-after" +msgstr "накопичувач" -msgid "Horizon Chart" -msgstr "Діаграма горизонту" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "Лінійна інтерполяція, визначена D3.js" -msgid "Horizon Charts" -msgstr "Horizon Charts" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" +msgstr "Показати фільтр діапазону" -msgid "Horizontal" -msgstr "Горизонтальний" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "Чи відображати інтерактивний селектор часу" -msgid "Horizontal (Top)" -msgstr "Горизонтальний (вгорі)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "Додаткові елементи управління" -msgid "Horizontal alignment" -msgstr "Горизонтальне вирівнювання" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "" +"Проявляти додаткові елементи управління чи ні. Додаткові елементи " +"керування включають такі речі, як створення мулітбарів, складеними або " +"поруч." -msgid "Host" -msgstr "Господар" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "X макет галочки" -msgid "Hostname or IP address" -msgstr "Ім'я хоста або IP -адреса" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +msgid "flat" +msgstr "рівномірний" -msgid "Hour" -msgstr "Година" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +msgid "staggered" +msgstr "здивований" -msgid "Hours %s" -msgstr "Години %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "Те, як кліщі викладені на осі x" -msgid "Hours offset" -msgstr "Години зміщення" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" +msgstr "Формат X Axis" -msgid "How do you want to enter service account credentials?" -msgstr "Як ви хочете ввести облікові дані облікового запису служби?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "Y Шкала журналу" -msgid "How many buckets should the data be grouped in." -msgstr "Скільки відра слід згрупувати дані." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "Використовуйте шкалу журналу для осі y" -msgid "How many periods into the future do we want to predict" -msgstr "Скільки періодів у майбутньому ми хочемо передбачити" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "Y межі осі" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 msgid "" -"How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio " -"between series and time shifts." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -"Як відобразити зміни часу: як окремі лінії; як різниця між основним часовим рядом та кожною зміною часу; як відсоткова зміна; або як співвідношення між серіями та " -"часом змінюється." +"Межі для осі y. Залишившись порожніми, межі динамічно визначаються на " +"основі міні/максимуму даних. Зауважте, що ця функція лише розширить " +"діапазон осі. Це не звузить ступінь даних." -msgid "Huge" -msgstr "Величезний" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "Y Axis 2 Межі" -msgid "ISO 3166-2 Codes" -msgstr "ISO 3166-2 Коди" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "X межі" -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "Чи відображати значення min та максимально вісь x" -msgid "Id" -msgstr "Ідентифікатор" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "Значення планки" -msgid "Id of root node of the tree." -msgstr "Id кореневого вузла дерева." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "Покажіть значення на вершині бару" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "Складені бари" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "Зменшіть X кліщів" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive." -"server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property." +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." msgstr "" -"Якщо Presto або Trino, всі запити в лабораторії SQL будуть виконані як реєстрація в даний час користувачеві, який повинен мати дозвіл на їх запуск. Якщо hive and " -"hive.server2.enable.doas увімкнено, запустить запити в якості облікового запису послуг, але представлять себе в даний час в даний час користувачеві через властивість " -"hive.server2.proxy.user." +"Зменшує кількість кліщів осі, які потрібно надати. Якщо це правда, осі x " +"не переповнюється, а мітки можуть відсутні. Якщо помилково, до стовпців " +"буде застосовано мінімальна ширина, а ширина може переливатися в " +"горизонтальний сувій." + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" +msgstr "Ви не можете використовувати макет кліщів 45 ° разом із фільтром часу часу" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "Складений стиль" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" +msgstr "стек" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" +msgstr "потік" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" +msgstr "розширити" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "Еволюція" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2." -"enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property." +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." msgstr "" -"Якщо Presto, всі запити в лабораторії SQL будуть виконані як в даний час реєстрували користувача, який повинен мати дозвіл на їх запуск. Обліковий запис служби, але " -"представляє себе в даний час зафіксовано користувача через властивість hive.server2.proxy.user." +"Діаграма часових рядів, яка візуалізує, як пов'язана метрика з декількох " +"груп різниться з часом. Кожна група візуалізується за допомогою іншого " +"кольору." -msgid "If Table Already Exists" -msgstr "Якщо таблиця вже існує" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "Розтягнутий стиль" -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "Якщо вказано метрику, сортування буде здійснено на основі метричного значення" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "Складений стиль" -msgid "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"" -msgstr "Якщо дублікат стовпців не перекриваються, вони будуть представлені як \"x.1, x.2 ... x.x\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "Консолі відеоігор" -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "Якщо вибрано, встановіть схеми, дозволені для завантаження CSV додатково." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" +msgstr "Типи транспортних засобів" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +msgid "Area Chart (legacy)" +msgstr "Діаграма області (спадщина)" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "Безперервний" -msgid "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data)." -msgstr "Якщо таблиця існує одне з наступних: не вдасться (нічого не робіть), замініть (падайте та відтворіть таблицю) або додайте (вставте дані)." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" +msgstr "Лінія" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "nvd3" -msgid "Ignore cache when generating screenshot" -msgstr "Ігноруйте кеш при генеруванні скріншоту" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "Застарілий" -msgid "Ignore null locations" -msgstr "Ігноруйте нульові місця" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" +msgstr "Серія ліміту сортування" -msgid "Ignore time" -msgstr "Ігноруйте час" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." +msgstr "" +"Метрика, яка використовується для замовлення ліміту, якщо присутній ліміт" +" серії. Якщо невизначений повернення до першої метрики (де це доречно)." -msgid "Image (PNG) embedded in email" -msgstr "Зображення (PNG), вбудоване в електронну пошту" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" +msgstr "Серія обмежує сортування" -msgid "Image download failed, please refresh and try again." -msgstr "Завантажити зображення не вдалося, оновити та повторіть спробу." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "Чи слід сортувати низхідну чи підніматися, якщо присутній ліміт серії" -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "Видання себе в системі в системі (Presto, Trino, Drill, Hive та Gsheets)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." +msgstr "" +"Візуалізуйте, як метрика змінюється з часом за допомогою брусків. Додайте" +" групу за стовпцем для візуалізації показників групи та того, як вони " +"змінюються з часом." -msgid "Impersonate the logged on user" -msgstr "Видати себе за реєстрацію користувача" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 +msgid "Time-series Bar Chart (legacy)" +msgstr "Діаграма штрих часу (Legacy)" -msgid "Import" -msgstr "Імпорт" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "Бар" -msgid "Import %s" -msgstr "Імпорт %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "Вертикальний" -msgid "Import Dashboard(s)" -msgstr "Імпортувати Дашборд(и)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "Ділянка коробки" -msgid "Import Dashboards" -msgstr "Імпортувати Дашборди" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "X шкала журналу" -msgid "Import a table definition" -msgstr "Імпортувати визначення таблиці" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "Використовуйте шкалу журналу для осі x" -msgid "Import chart failed for an unknown reason" -msgstr "Діаграма імпорту не вдалася з невідомих причин" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "" +"Візуалізує метрику в трьох вимірах даних в одній діаграмі (x вісь, осі y " +"та розміру міхура). Бульбашки з однієї групи можна демонструвати за " +"допомогою кольору бульбашок." -msgid "Import charts" -msgstr "Імпортувати діаграми" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 +#, fuzzy +msgid "Bubble Chart (legacy)" +msgstr "Лінійна діаграма (спадщина)" -msgid "Import dashboard failed for an unknown reason" -msgstr "Не вдалося імпортувати інформаційну панель з невідомих причин" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" +msgstr "Діапазони" -msgid "Import dashboards" -msgstr "Імпортувати інформаційні панелі" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "Діапазони, щоб виділити за допомогою затінення" -msgid "Import database failed for an unknown reason" -msgstr "Імпортувати базу даних не вдалося з незрозумілої причини" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "Етикетки діапазону" -msgid "Import database from file" -msgstr "Імпортувати базу даних з файлу" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "Мітки для діапазонів" -msgid "Import dataset failed for an unknown reason" -msgstr "Імпортувати набір даних не вдалося з незрозумілої причини" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "Маркери" -msgid "Import datasets" -msgstr "Імпортувати набори даних" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "Список значень, які слід позначити трикутниками" -msgid "Import queries" -msgstr "Імпортувати запити" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "Маркерні етикетки" -msgid "Import saved query failed for an unknown reason." -msgstr "Збережений імпорт не вдалося з невідомих причин." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "Етикетки для маркерів" -msgid "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned." -msgstr "Важливо! Виберіть це, якщо таблиця ще не відсортована за ідентифікатором сутності, інакше немає гарантії, що всі події для кожної сутності повертаються." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "Маркерні лінії" -msgid "In" -msgstr "У" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "Перелік значень для позначення рядками" -msgid "Include Series" -msgstr "Включіть серію" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "Мітки маркерної лінії" -msgid "Include a description that will be sent with your report" -msgstr "Включіть опис, який буде надіслано з вашим звітом" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "Мітки для ліній маркера" -msgid "Include series name as an axis" -msgstr "Включіть назву серії як вісь" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "KPI" -msgid "Include time" -msgstr "Включіть час" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "" +"Демонструє прогрес однієї метрики проти заданої цілі. Чим вище заливка, " +"тим ближче метрика до цілі." -msgid "Index" -msgstr "Індекс" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "" +"Візуалізує багато різних об'єктів часових рядів в одній діаграмі. Ця " +"діаграма застаріла, і ми рекомендуємо використовувати замість цього " +"діаграму часових рядів." -msgid "Index Column" -msgstr "Стовпчик індексу" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "Зміна відсотків часових рядів" -msgid "Info" -msgstr "Інформація" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "Сортування барів" -msgid "Inner Radius" -msgstr "Внутрішній радіус" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "Сортуйте смуги за x мітками." -msgid "Inner radius of donut hole" -msgstr "Внутрішній радіус пончиків" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" +msgstr "Розбиття" -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "Поле введення підтримує власне обертання. напр. 30 на 30 °" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "Визначає, як розбивається кожна серія" -msgid "Instant filtering" -msgstr "Миттєва фільтрація" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "" +"Порівнює показники різних категорій за допомогою барів. Довжина смуги " +"використовується для позначення величини кожного значення, а колір " +"використовується для диференціації груп." -msgid "Intensity" -msgstr "Інтенсивність" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +msgid "Bar Chart (legacy)" +msgstr "Діаграма (спадщина)" -msgid "Intensity Radius" -msgstr "Радіус інтенсивності" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" +msgstr "Добавка" -msgid "Intensity Radius is the radius at which the weight is distributed" -msgstr "Радіус інтенсивності - радіус, на якому розподіляється вага" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" +msgstr "Дискретний" -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "Інтенсивність - це значення, помножене на вагу, щоб отримати кінцеву вагу" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "Розповсюджувати" -msgid "Interpret Datetime Format Automatically" -msgstr "Інтерпретувати формат DateTime автоматично" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "Надіслати події фільтра діапазону на інші діаграми" -msgid "Interpret the datetime format automatically" -msgstr "Інтерпретувати формат DateTime автоматично" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "Класична діаграма, яка візуалізує, як змінюються показники з часом." -msgid "Interval" -msgstr "Інтервал" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" +msgstr "Рівень акумулятора з часом" -msgid "Interval End column" -msgstr "Інтервальний кінцевий стовпчик" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" +msgstr "Лінійна діаграма (спадщина)" -msgid "Interval bounds" -msgstr "Інтервальні межі" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" +msgstr "Тип етикетки" -msgid "Interval colors" -msgstr "Інтервальні кольори" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 +msgid "Category Name" +msgstr "Назва категорії" -msgid "Interval start column" -msgstr "Стовпчик запуску інтервалу" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "Цінність" -msgid "Intervals" -msgstr "Інтервали" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 +msgid "Percentage" +msgstr "Відсоток" -msgid "Intesity" -msgstr "Нечіткість" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +msgid "Category and Value" +msgstr "Категорія та значення" -msgid "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'." -msgstr "Недійсний рядок підключення: очікуючи рядка форми 'ocient: // user: pass@host: port/database'." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +msgid "Category and Percentage" +msgstr "Категорія та відсоток" -msgid "Invalid JSON" -msgstr "Недійсний JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" +msgstr "Категорія, вартість та відсоток" -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "Недійсний тип даних про розширені дані: %(advanced_data_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "Що слід показати на етикетці?" -msgid "Invalid certificate" -msgstr "Недійсний сертифікат" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "Пончик" -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" -msgstr "" -"Недійсний рядок підключення, зазвичай випливає дійсна рядок:\n" -"'Драйвер: // користувач: пароль@db-host/database-name'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "Ви хочете пончик чи пиріг?" -msgid "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name" -msgstr "Недійсний рядок підключення, дійсне рядок зазвичай випливає: Backend+драйвер: // користувач: пароль@база даних-розміщення/ім'я бази даних-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "Показувати етикетки" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 msgid "" -"Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" -"Недійсний рядок підключення, дійсний рядок зазвичай випливає: 'Драйвер: // користувач: пароль@db-host/database-name'

Приклад: 'postgresql: // user: password@your-" -"postgres-db/база даних' < /p>" +"Чи відображати мітки. Зауважте, що мітка відображається лише тоді, коли " +"поріг 5%." -msgid "Invalid cron expression" -msgstr "Недійсний вираз Cron" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "Покладіть етикетки назовні" -msgid "Invalid cumulative operator: %(operator)s" -msgstr "Недійсний кумулятивний оператор: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "Поставити етикетки поза пирогом?" -msgid "Invalid date/timestamp format" -msgstr "Недійсна дата/формат часової позначки" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 +#, fuzzy +msgid "Pie Chart (legacy)" +msgstr "Лінійна діаграма (спадщина)" -msgid "Invalid filter configuration, please select a column" -msgstr "Недійсна конфігурація фільтра, будь ласка, виберіть стовпець" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" +msgstr "Частота" -msgid "Invalid filter operation type: %(op)s" -msgstr "Недійсний тип функції фільтра: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "Рік (freq = as)" -msgid "Invalid geodetic string" -msgstr "Недійсна геодезна струна" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "52 тижні, починаючи з понеділка (частота=52W-MON)" -msgid "Invalid geohash string" -msgstr "Недійсна геохашна струна" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "1 тиждень, починаючи з неділі (FREQ = W-SUN)" -msgid "Invalid input" -msgstr "Неправильні дані" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +msgid "1 week starting Monday (freq=W-MON)" +msgstr "1 тиждень, починаючи з понеділка (FREQ = W-Mon)" -msgid "Invalid lat/long configuration." -msgstr "Недійсна конфігурація LAT/Довга." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" +msgstr "День (Freq = D)" -msgid "Invalid longitude/latitude" -msgstr "Недійсна довгота/широта" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" +msgstr "4 тижні (частота=4W-MON)" -msgid "Invalid metric object: %(metric)s" -msgstr "Недійсний метричний об’єкт: %(metric)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." +msgstr "" +"Періодичність, протягом якої врізати час. Користувачі можуть надати\n" +" Псевдонім \"Панди\".\n" +" Клацніть на міхур Info для отримання більш детальної " +"інформації про прийняті вирази \"Freq\"." -msgid "Invalid numpy function: %(operator)s" -msgstr "Недійсна функція Numpy: %(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" +msgstr "Часові періоди періоду повороту" -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "Недійсні варіанти для %(rolling_type)s: %(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 +msgid "Formula" +msgstr "Формула" -msgid "Invalid permalink key" -msgstr "Недійсний ключ постійного посилання" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 +msgid "Event" +msgstr "Подія" -msgid "Invalid reference to column: \"%(column)s\"" -msgstr "Недійсне посилання на стовпець: “%(column)s”" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +msgid "Interval" +msgstr "Інтервал" -msgid "Invalid result type: %(result_type)s" -msgstr "Недійсний тип результату: %(result_type)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +msgid "Stack" +msgstr "Стек" -msgid "Invalid rolling_type: %(type)s" -msgstr "Недійсне Rolling_Type: %(type)s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +msgid "Stream" +msgstr "Потік" -msgid "Invalid spatial point encountered: %s" -msgstr "Недійсна просторова точка, що зустрічається: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +msgid "Expand" +msgstr "Розширити" -msgid "Invalid state." -msgstr "Недійсна держава." +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "Показати легенду" -msgid "Invalid tab ids: %s(tab_ids)" -msgstr "Недійсні ідентифікатори вкладки: %s (tab_ids)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "Чи відображати легенду для діаграми" -msgid "Inverse selection" -msgstr "Зворотний вибір" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "Націнка" -msgid "Invert current page" -msgstr "Інвертуйте поточну сторінку" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "Додаткові прокладки для легенди." -msgid "Is certified" -msgstr "Є сертифікованим" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" +msgstr "Прокрутити" -msgid "Is dimension" -msgstr "Це розмір" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "Простий" -msgid "Is false" -msgstr "Є помилковим" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "Тип легенди" -msgid "Is favorite" -msgstr "Є улюбленим" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +msgid "Orientation" +msgstr "Орієнтація" -msgid "Is filterable" -msgstr "Є фільтруючим" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" +msgstr "Дно" -msgid "Is not null" -msgstr "Не нульова" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" +msgstr "Право" -msgid "Is null" -msgstr "Є нульовим" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 +msgid "Legend Orientation" +msgstr "Орієнтація на легенду" -msgid "Is tagged" -msgstr "Позначено" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" +msgstr "Показувати цінність" -msgid "Is temporal" -msgstr "Є тимчасовим" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" +msgstr "Показувати значення серії на діаграмі" -msgid "Is true" -msgstr "Правда" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "Серія стека один на одного" -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Випуск 1000 - набір даних занадто великий, щоб запитувати." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "Тільки повне" -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Випуск 1001 - База даних знаходиться під незвичним навантаженням." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "" +"Показати лише загальну вартість у складеній діаграмі, а не показати у " +"вибраній категорії" -msgid "It’s not recommended to truncate axis in Bar chart." -msgstr "Не рекомендується скоротити вісь у гістограмі." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" +msgstr "Відсоток поріг" -msgid "JAN" -msgstr "Ян" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "Мінімальний поріг у відсотковому пункті для показу мітків." -msgid "JSON" -msgstr "Json" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "Багатий підказки" -msgid "JSON Metadata" -msgstr "Метадані JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "Показує список усіх серій, доступних на той момент часу" -msgid "JSON metadata" -msgstr "Метадані JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" +msgstr "Формат часу підказки" -msgid "JSON metadata is invalid!" -msgstr "Метадані JSON недійсні!" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "Сортування підказок за метрикою" -msgid "" -"JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not " -"conform to the username:password syntax normally used by SQLAlchemy." -msgstr "" -"Рядок JSON, що містить додаткову конфігурацію з'єднання. Це використовується для надання інформації про з'єднання для таких систем, як Hive, Presto та BigQuery, які " -"не відповідають імені користувача: синтаксис пароля, як правило, використовується SQLALCHEMY." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "Чи сортувати підказку за вибраним показником у порядку зменшення." -msgid "JUL" -msgstr "Липень" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "Підказка" -msgid "JUN" -msgstr "Червень" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +msgid "Sort Series By" +msgstr "Сортування серії" -msgid "January" -msgstr "Січень" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "Виходячи з того, як слід впорядкувати серії на діаграмі та легенді" -msgid "JavaScript data interceptor" -msgstr "Перехоплювач даних JavaScript" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +msgid "Sort Series Ascending" +msgstr "Сортування серії, що піднімається" -msgid "JavaScript onClick href" -msgstr "Javascript onclick href" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "Сортування серії у зростаючому порядку" -msgid "JavaScript tooltip generator" -msgstr "Generator JavaScript" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "Обертати мітку осі X" -msgid "Jinja templating" -msgstr "Шаблон джинджа" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "Поле введення підтримує власне обертання. напр. 30 на 30 °" -msgid "Json list of the column names that should be read" -msgstr "Json список імен стовпців, які слід прочитати" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +msgid "Series Order" +msgstr "Замовлення серії" -msgid "Json list of the column names that should be read. If not None, only these columns will be read from the file." -msgstr "Список JSON імен стовпців, які слід прочитати. Якщо ні, то з файлу будуть прочитані лише ці стовпці." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "Укорочення y вісь" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#, fuzzy msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports " -"only a single value" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." msgstr "" -"Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"] для порожніх рядків, [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE " -"підтримує лише одне значення" +"Укоротився вісь. Можна перекрити, вказавши мінімальну або максимальну " +"межу." + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "Y-осі межі" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +#, fuzzy msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single " -"value. Use [\"\"] for empty string." +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." msgstr "" -"Список JSON значень, які слід розглядати як NULL. Приклади: [\"\"], [\"Немає\", \"n/a\"], [\"nan\", \"null\"]. Попередження: база даних HIVE підтримує лише одне " -"значення. Використовуйте [\"\"] для порожнього рядка." - -msgid "July" -msgstr "Липень" - -msgid "June" -msgstr "Червень" - -msgid "KPI" -msgstr "KPI" +"Межі для осі. Залишившись порожніми, межі динамічно визначаються на " +"основі міні/максимуму даних. Зауважте, що ця функція лише розширить " +"діапазон осі. Це не звузить ступінь даних." -msgid "Keep control settings?" -msgstr "Продовжувати налаштування контролю?" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "Поєднати показники" -msgid "Keep editing" -msgstr "Продовжуйте редагувати" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +#, fuzzy +msgid "Show minor ticks on axes." +msgstr "Чи слід показувати незначні кліщі на осі" -msgid "Key" -msgstr "Ключ" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" +msgstr "" -msgid "Keys for table" -msgstr "Ключі для столу" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" +msgstr "Остання доступна вартість, що спостерігається на %s" -msgid "Kilometers" -msgstr "Кілометри" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" +msgstr "Не в курсі" -msgid "LIMIT" -msgstr "Обмежувати" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "Немає даних" -msgid "Label" -msgstr "Мітка" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" +msgstr "" +"Ніякі дані після фільтрації або даних є нульовими для останнього запису " +"часу" -msgid "Label Line" -msgstr "Лінія мітки" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "" +"Спробуйте застосувати різні фільтри або забезпечити, щоб ваш DataSource " +"має дані" -msgid "Label Type" -msgstr "Тип етикетки" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "Розмір шрифту великого числа" -msgid "Label already exists" -msgstr "Етикетка вже існує" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "Крихітний" -msgid "Label for your query" -msgstr "Етикетка для вашого запиту" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "Невеликий" -msgid "Label position" -msgstr "Позиція мітки" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "Нормальний" -msgid "Label threshold" -msgstr "Поріг мітки" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" +msgstr "Великий" -msgid "Labelling" -msgstr "Маркування" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "Величезний" -msgid "Labels" -msgstr "Етикетки" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "Розмір шрифту підзаголовка" -msgid "Labels for the marker lines" -msgstr "Мітки для ліній маркера" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 +msgid "Display settings" +msgstr "Налаштування дисплею" -msgid "Labels for the markers" -msgstr "Етикетки для маркерів" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" +msgstr "Підзаголовка" -msgid "Labels for the ranges" -msgstr "Мітки для діапазонів" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "Опис текст, який відображається нижче вашого великого номера" -msgid "Large" -msgstr "Великий" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" +msgstr "Формат дати" -msgid "Last" -msgstr "Останній" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +msgid "Force date format" +msgstr "Формат дат сили" -msgid "Last Changed" -msgstr "Востаннє змінився" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" +msgstr "" +"Використовуйте форматування дати навіть тоді, коли метричне значення не є" +" часовою позначкою" -msgid "Last Modified" -msgstr "Останнє змінено" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 +msgid "Conditional Formatting" +msgstr "Умовне форматування" -msgid "Last Updated %s" -msgstr "Останній оновлений %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Apply conditional color formatting to metric" +msgstr "Застосувати умовне форматування кольорів до метрики" -msgid "Last Updated %s by %s" -msgstr "Останній оновлений %s на %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 +msgid "" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." +msgstr "" +"Демонструє єдиний метричний передній і центр. Велика кількість найкраще " +"використовується для звернення уваги на KPI або одне, на що ви хочете " +"зосередитись на вашій аудиторії." -msgid "Last available value seen on %s" -msgstr "Остання доступна вартість, що спостерігається на %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "Велика кількість" -msgid "Last modified" -msgstr "Останнє змінено" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "З підзаголовком" -msgid "Last modified by %s" -msgstr "Останнє змінено на %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "Велике число" -msgid "Last run" -msgstr "Останній пробіг" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "Порівняльний період відставання" -msgid "Latitude" -msgstr "Широта" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "На основі деталізації, кількість часових періодів для порівняння" -msgid "Latitude of default viewport" -msgstr "Широта перегляду за замовчуванням" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "Суфікс порівняння" -msgid "Layer configuration" -msgstr "Конфігурація шару" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "Суфікс подати заявку після відсоткового дисплея" -msgid "Layout" -msgstr "Макет" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "Показати часову позначку" -msgid "Layout elements" -msgstr "Елементи макета" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "Чи відображати часову позначку" -msgid "Layout type of graph" -msgstr "Тип макета графа" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "Показати лінію тренду" -msgid "Layout type of tree" -msgstr "Тип макета дерева" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "Чи відображати лінію тренду" -msgid "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization" -msgstr "Листові вузли, що представляють менше, ніж ця кількість подій, спочатку будуть приховані у візуалізації" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "Почніть осі y о 0" -msgid "Least recently modified" -msgstr "Найменше нещодавно модифіковано" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "" +"Почніть осі y на нуль. Зніміть прапорець, щоб запустити вісь y з " +"мінімальним значенням у даних." -msgid "Left" -msgstr "Лівий" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "Виправте до вибраного діапазону часу" -msgid "Left Axis Format" -msgstr "Формат лівої осі" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "" +"Зафіксуйте лінію тенденції до повного часу, зазначеного у відфільтрованих" +" результатах" -msgid "Left Axis chart(s)" -msgstr "Діаграма лівої осі" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 +msgid "TEMPORAL X-AXIS" +msgstr "Тимчасова осі x" -msgid "Left Margin" -msgstr "Залишив націнку" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "" +"Демонструє єдине число, що супроводжується простою лінійною діаграмою, " +"щоб звернути увагу на важливу метрику разом із її зміною в часі чи іншим " +"виміром." -msgid "Left margin, in pixels, allowing for more room for axis labels" -msgstr "Лівий запас у пікселях, що дозволяє отримати більше місця для етикетки Axis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "Велика кількість з Trendline" -msgid "Left to Right" -msgstr "Зліва направо" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "Варіанти Віскера/Зовнішнього" -msgid "Left value" -msgstr "Ліва цінність" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "Визначає, як обчислюються вуса та переживчі." -msgid "Legacy" -msgstr "Спадщина" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 +msgid "Tukey" +msgstr "Тюкі" -msgid "Legend" -msgstr "Легенда" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" +msgstr "Мін/Макс (без переживань)" -msgid "Legend Format" -msgstr "Легенда формат" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" +msgstr "2/98 процентиль" -msgid "Legend Orientation" -msgstr "Орієнтація на легенду" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "9/91 відсотків" -msgid "Legend Position" -msgstr "Легенда позиція" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "Категорії групуватися на осі x." -msgid "Legend type" -msgstr "Тип легенди" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" +msgstr "Розповсюджувати" -msgid "Less or equal (<=)" -msgstr "Менше або рівне (<=)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +msgid "Columns to calculate distribution across." +msgstr "Стовпці для обчислення розподілу поперек." -msgid "Less than (<)" -msgstr "Менше (<)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." +msgstr "" +"Також відома як графік коробки та вусів, ця візуалізація порівнює " +"розподіл спорідненої метрики для декількох груп. Коробка в середині " +"підкреслює середні, медіани та внутрішні 2 кварталі. Вуси навколо кожної " +"коробки візуалізують мінімальний, максимум, діапазон та зовнішні 2 " +"квартали." + +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "Echarts" -msgid "Lift percent precision" -msgstr "Підніміть відсоткову точність" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 +#, fuzzy +msgid "Bubble size number format" +msgstr "Формат невеликого числа" -msgid "Light" -msgstr "Світлий" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 +#, fuzzy +msgid "Bubble Opacity" +msgstr "Міхурна діаграма" -msgid "Light mode" -msgstr "Світловий режим" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" +msgstr "" -msgid "Like" -msgstr "Люблю" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" +msgstr "" -msgid "Like (case insensitive)" -msgstr "Як (нечутливий до випадків)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 +#, fuzzy +msgid "Logarithmic x-axis" +msgstr "Логарифмічна вісь Y" -msgid "Limit reached" -msgstr "Обмеження досягнуто" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +#, fuzzy +msgid "Rotate y axis label" +msgstr "Обертати мітку осі X" -msgid "Limit selector values" -msgstr "Обмежте значення селектора" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "Y Exis title Margin" -msgid "Limit type" -msgstr "Тип обмеження" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 +msgid "Logarithmic y-axis" +msgstr "Логарифмічна вісь Y" -msgid "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead." -msgstr "Обмеження рядків може призвести до неповних даних та оманливих діаграм. Подумайте про фільтрацію або групування джерел/цільових імен." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "Укорочення y вісь" -msgid "Limits the number of cells that get retrieved." -msgstr "Обмежує кількість клітин, які отримують." +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +msgstr "" +"Укоротився вісь. Можна перекрити, вказавши мінімальну або максимальну " +"межу." -msgid "Limits the number of rows that get displayed." -msgstr "Обмежує кількість рядків, які відображаються." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "Тип обчислення" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 msgid "" -"Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series " -"that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost." +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." msgstr "" -"Обмежує кількість серій, які відображаються. Приєднаний підзапит (або додаткова фаза, де підтримуються підрозділи) застосовується для обмеження кількості серій, які " -"отримують та надаються. Ця функція корисна при групуванні за допомогою стовпців (ів) високої кардинальності, хоча збільшує складність та вартість запитів." - -msgid "Line" -msgstr "Лінія" - -msgid "Line Chart" -msgstr "Лінійна діаграма" - -msgid "Line Chart (legacy)" -msgstr "Лінійна діаграма (спадщина)" -msgid "Line Style" -msgstr "Лінійний стиль" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" +msgstr "" -msgid "" -"Line chart is used to visualize measurements taken over a given category. Line chart is a type of chart which displays information as a series of data points " -"connected by straight line segments. It is a basic type of chart common in many fields." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" msgstr "" -"Лінійна діаграма використовується для візуалізації вимірювань, взяті на задану категорію. Лінійна діаграма - це тип діаграми, яка відображає інформацію як ряд точок " -"даних, підключених за допомогою прямих сегментів. Це основний тип діаграми, поширений у багатьох полях." -msgid "Line interpolation as defined by d3.js" -msgstr "Лінійна інтерполяція, визначена D3.js" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +#, fuzzy +msgid "Percent of total" +msgstr "загалом" -msgid "Line width" -msgstr "Ширина лінії" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" +msgstr "Етикетки" -msgid "Linear Color Scheme" -msgstr "Лінійна кольорова гамма" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 +#, fuzzy +msgid "Label Contents" +msgstr "Вміст клітин" -msgid "Linear color scheme" -msgstr "Лінійна кольорова гамма" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "Категорія та відсоток" -msgid "Linear interpolation" -msgstr "Лінійна інтерполяція" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +#, fuzzy +msgid "What should be shown as the label" +msgstr "Що слід показати на етикетці?" -msgid "Lines column" -msgstr "Стовпчик рядків" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "Вміст клітин" -msgid "Lines encoding" -msgstr "Лінії кодування" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +#, fuzzy +msgid "What should be shown as the tooltip label" +msgstr "Що слід показати на етикетці?" -msgid "Link Copied!" -msgstr "Посилання скопійовано!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "Чи відображати мітки." -msgid "List Saved Query" -msgstr "Список збережених запитів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 +#, fuzzy +msgid "Show Tooltip Labels" +msgstr "Показати підсумки" -msgid "List Unique Values" -msgstr "Перелічіть унікальні значення" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "Чи відображати мітки." -msgid "List of extra columns made available in JavaScript functions" -msgstr "Список додаткових стовпців, доступних у функціях JavaScript" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 +msgid "" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." +msgstr "" +"Демонструє, як метрика змінюється в міру просування воронки. Ця класична " +"діаграма корисна для візуалізації випадання між етапами в трубопроводі " +"або життєвому циклі." -msgid "List of n+1 values for bucketing metric into n buckets." -msgstr "Список значення N+1 для метрики відра в N відра." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" +msgstr "Графік воронки" -msgid "List of values to mark with lines" -msgstr "Перелік значень для позначення рядками" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "Послідовний" -msgid "List of values to mark with triangles" -msgstr "Список значень, які слід позначити трикутниками" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "Стовпці до групи" -msgid "List updated" -msgstr "Список оновлено" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "Загальний" -msgid "Live CSS editor" -msgstr "Живий редактор CSS" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Хв" -msgid "Live render" -msgstr "Жива візуалізація" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "Мінімальне значення на осі датчика" -msgid "Load a CSS template" -msgstr "Завантажте шаблон CSS" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "Максимум" -msgid "Loaded data cached" -msgstr "Завантажені дані кешуються" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "Максимальне значення на осі датчика" -msgid "Loaded from cache" -msgstr "Завантажений з кешу" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "Почати кут" -msgid "Loading" -msgstr "Навантаження" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "Кут, з яким почати прогрес вісь" -msgid "Loading..." -msgstr "Завантаження ..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "Кінцевий кут" -msgid "Locate the chart" -msgstr "Знайдіть діаграму" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "Кут, з яким слід закінчити вісь прогресу" -msgid "Log Scale" -msgstr "Журнал" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "Розмір шрифту" -msgid "Log retention" -msgstr "Затримка журналу" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "" +"Розмір шрифту для етикетки осі, детальне значення та інші текстові " +"елементи" -msgid "Logarithmic axis" -msgstr "Логарифмічна вісь" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "Формат значення" -msgid "Logarithmic scale on primary y-axis" -msgstr "Логарифмічна шкала на первинній осі Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "" +"Додатковий текст, який можна додати до або після значення, наприклад " +"одиниця" -msgid "Logarithmic scale on secondary y-axis" -msgstr "Логарифмічна шкала на вторинній осі Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "Покажіть вказівник" -msgid "Logarithmic y-axis" -msgstr "Логарифмічна вісь Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "Чи показувати вказівник" -msgid "Login" -msgstr "Логін" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" +msgstr "Анімація" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "Чи варто оживити прогрес і значення, чи просто відображати їх" -msgid "Login with" -msgstr "Увійти за допомогою" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "Вісь" -msgid "Logout" -msgstr "Вийти" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "Показати кліщі лінії осі" -msgid "Logs" -msgstr "Журнали" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "Чи слід показувати незначні кліщі на осі" -msgid "Long dashed" -msgstr "Довгий пункт" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "Показати розділені лінії" -msgid "Longitude" -msgstr "Довгота" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "Чи відображати розділені лінії на осі" -msgid "Longitude & Latitude" -msgstr "Довгота та широта" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" +msgstr "Розділений номер" -msgid "Longitude & Latitude columns" -msgstr "Стовпці довготи та широти" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "Кількість розділених сегментів на осі" -msgid "Longitude and Latitude" -msgstr "Довгота і широта" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "Прогресувати" -msgid "Longitude of default viewport" -msgstr "Довгота перегляду за замовчуванням" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "Показати прогрес" -msgid "MAR" -msgstr "Марнотратство" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "Чи показувати хід датчика діаграми" -msgid "MAY" -msgstr "МОЖЕ" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" +msgstr "Перетинати" -msgid "MON" -msgstr "Мн" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" +msgstr "Чи перекривається панель прогресу, коли існує кілька груп даних" -msgid "Main Datetime Column" -msgstr "Основний стовпець DateTime" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "Круглий cap" -msgid "Make sure that the controls are configured properly and the datasource contains data for the selected time range" -msgstr "Переконайтесь, що елементи керування налаштовано належним чином, а DataSource містить дані для вибраного часового діапазону" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "Стильні кінці смуги прогресу з круглою шапкою" -msgid "Malformed request. slice_id or table_name and db_name arguments are expected" -msgstr "Неправильно сформований запит. Очікуються аргументи slice_id або table_name та db_name" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" +msgstr "Інтервали" -msgid "Manage" -msgstr "Керувати" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "Інтервальні межі" -msgid "Manage email report" -msgstr "Керуйте звітом електронної пошти" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 +msgid "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." +msgstr "" +"Кома-розділені інтервальні межі, наприклад 2,4,5 для інтервалів 0-2, 2-4 " +"та 4-5. Останнє число повинно відповідати значенням, передбаченим для " +"максимуму." -msgid "Manage your databases" -msgstr "Керуйте своїми базами даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" +msgstr "Інтервальні кольори" -msgid "Mandatory" -msgstr "Обов'язковий" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." +msgstr "" +"Вибір кольору, розділених комою для інтервалів, наприклад 1,2,4. Цілі " +"числа позначають кольори з обраної кольорової гами і є 1-індексованими. " +"Довжина повинна відповідати межі інтервалу." -msgid "Mangle Duplicate Columns" -msgstr "Mangle Duply Colums" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." +msgstr "" +"Використовує датчик для демонстрації прогресу метрики до цілі. Положення " +"циферблату представляє прогрес, а значення терміналу в калібрі являє " +"собою цільове значення." -msgid "Manually set min/max values for the y-axis." -msgstr "Вручну встановити значення min/max для осі y." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" +msgstr "Діаграма калібру" -msgid "Map" -msgstr "Карта" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "Назва вихідних вузлів" -msgid "Map Style" -msgstr "Стиль карти" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "Назва цільових вузлів" -msgid "MapBox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "Категорія джерела" -msgid "Mapbox" -msgstr "Mapbox" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 +msgid "" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." +msgstr "" +"Категорія вихідних вузлів, що використовуються для призначення кольорів. " +"Якщо вузол пов'язаний з більш ніж однією категорією, буде використано " +"лише перший." -msgid "March" -msgstr "Марш" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "Цільова категорія" -msgid "Margin" -msgstr "Націнка" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "Категорія цільових вузлів" -msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "Позначте стовпець як тимчасовий у модальному режимі \"редагувати дані\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "Параметри діаграми" -msgid "Marker" -msgstr "Маркер" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "Макет" -msgid "Marker Size" -msgstr "Розмір маркера" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "Розположення графу" -msgid "Marker labels" -msgstr "Маркерні етикетки" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "Примушувати" -msgid "Marker line labels" -msgstr "Мітки маркерної лінії" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "Тип макета графа" -msgid "Marker lines" -msgstr "Маркерні лінії" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "Символи краю" -msgid "Marker size" -msgstr "Розмір маркера" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "Символ двох кінців лінії краю" -msgid "Markers" -msgstr "Маркери" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "Жоден -> Жоден" -msgid "Markup type" -msgstr "Тип розмітки" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "Жоден -> Стрілка" -msgid "Max" -msgstr "Максимум" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "Коло -> Стрілка" -msgid "Max Bubble Size" -msgstr "Максимальний розмір міхура" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "Коло -> Коло" -msgid "Max Events" -msgstr "Максимальні події" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "Увімкнути перетягування вузла" -msgid "Maximum" -msgstr "Максимум" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "Чи ввімкнути вузол перетягування в режимі макета." -msgid "Maximum Font Size" -msgstr "Максимальний розмір шрифту" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "Увімкнути роумінг графів" -msgid "Maximum Radius" -msgstr "Максимальний радіус" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "Інвалід" -msgid "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius." -msgstr "Максимальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу це гарантує, що коло поважає цей максимальний радіус." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "Лише масштаб" -msgid "Maximum value" -msgstr "Максимальне значення" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "Тільки рухатися" -msgid "Maximum value on the gauge axis" -msgstr "Максимальне значення на осі датчика" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "Масштаб і рухайтеся" -msgid "May" -msgstr "Може" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "Чи можна змінювати положення графіку та масштабування." -msgid "Mean of values over specified period" -msgstr "Середнє значення за визначений період" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "Режим вибору вузла" -msgid "Mean values" -msgstr "Середні значення" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "Поодинокий" -msgid "Median" -msgstr "Медіана" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "Багаторазовий" -msgid "Median edge width, the thickest edge will be 4 times thicker than the thinnest." -msgstr "Середня ширина краю, найгустіший край буде в 4 рази товстіший, ніж найтонший." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "Дозволити вибір вузлів" -msgid "Median node size, the largest node will be 4 times larger than the smallest" -msgstr "Середній розмір вузла, найбільший вузол буде в 4 рази більший, ніж найменший" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "Поріг мітки" -msgid "Median values" -msgstr "Середні цінності" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "Мінімальне значення для мітки для відображення на графі." -msgid "Medium" -msgstr "Середній" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" +msgstr "Розмір вузла" -msgid "Menu actions trigger" -msgstr "Дії меню запускають" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 +msgid "" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "" +"Середній розмір вузла, найбільший вузол буде в 4 рази більший, ніж " +"найменший" -msgid "Message content" -msgstr "Вміст повідомлення" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" +msgstr "Ширина краю" -msgid "Metadata" -msgstr "Метадані" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 +msgid "" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "" +"Середня ширина краю, найгустіший край буде в 4 рази товстіший, ніж " +"найтонший." -msgid "Metadata Parameters" -msgstr "Параметри метаданих" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "Довжина краю" -msgid "Metadata has been synced" -msgstr "Метадані синхронізовані" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "Довжина краю між вузлами" -msgid "Method" -msgstr "Метод" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "Тяжкість" -msgid "Metric" -msgstr "Метричний" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "Сила, щоб потягнути граф до центру" -msgid "Metric '%(metric)s' does not exist" -msgstr "Метрика ‘%(metric)s' не існує" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" +msgstr "Відштовхування" -msgid "Metric ascending" -msgstr "Метричний висхід" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "Сила відштовхування між вузлами" -msgid "Metric assigned to the [X] axis" -msgstr "Метрика, призначена до осі [x]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" +msgstr "Тертя" -msgid "Metric assigned to the [Y] axis" -msgstr "Метрика, присвоєна вісь [y]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "Тертя між вузлами" -msgid "Metric change in value from `since` to `until`" -msgstr "Метрична зміна значення від `з` `` до '" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "" +"Відображає з'єднання між об'єктами в структурі графів. Корисно для " +"відображення відносин та показ, які вузли важливі в мережі. Діаграми " +"графів можуть бути налаштовані на спрямування сили або циркуляцію. Якщо " +"ваші дані мають геопросторову складову, спробуйте діаграму дуги Deck.gl." -msgid "Metric descending" -msgstr "Метричний спуск" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "Діаграма графа" -msgid "Metric factor change from `since` to `until`" -msgstr "Зміна метричного фактора від `з` `до` до '" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "Структурний" -msgid "Metric for node values" -msgstr "Метрика для значень вузла" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "Чи сортувати низхідну чи висхідну" -msgid "Metric name" -msgstr "Метрична назва" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" +msgstr "Тип серії" -msgid "Metric name [%s] is duplicated" -msgstr "Метрична назва [%s] дублюється" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "Гладка лінія" -msgid "Metric percent change in value from `since` to `until`" -msgstr "Метрична відсоткова зміна вартості з `з моменту` `до '" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "Крок - Почати" -msgid "Metric that defines the size of the bubble" -msgstr "Метрика, яка визначає розмір міхура" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" +msgstr "Крок - Середній" -msgid "Metric to display bottom title" -msgstr "Метрика для відображення нижньої назви" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "Крок - Кінець" -msgid "Metric to sort the results by" -msgstr "Метрика для сортування результатів за" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "Тип діаграми серії (рядок, бар тощо)" -msgid "Metric used as a weight for the grid's coloring" -msgstr "Метрика, що використовується як вага для забарвлення сітки" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "Серія стека" -msgid "Metric used to calculate bubble size" -msgstr "Метрика, що використовується для обчислення розміру міхура" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" +msgstr "Діаграма" -msgid "Metric used to control height" -msgstr "Метрика, що використовується для контролю висоти" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "Накресліть область під кривими. Застосовується лише для типів ліній." -msgid "Metric used to define how the top series are sorted if a series or cell limit is present. If undefined reverts to the first metric (where appropriate)." -msgstr "" -"Метрика, яка використовується для визначення того, як сортується верхня серія, якщо присутня ліміт серії або комірки. Якщо невизначений повернення до першої метрики " -"(де це доречно)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "Прозоість діаграми області." -msgid "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate)." -msgstr "" -"Metric, що використовується для визначення того, як сортується верхня серія, якщо присутній ліміт серії або рядка. Якщо невизначений повернення до першої метрики (де " -"це доречно)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "Маркер" -msgid "Metric used to order the limit if a series limit is present. If undefined reverts to the first metric (where appropriate)." -msgstr "Метрика, яка використовується для замовлення ліміту, якщо присутній ліміт серії. Якщо невизначений повернення до першої метрики (де це доречно)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "Накресліть маркер на точках даних. Застосовується лише для типів ліній." -msgid "Metrics" -msgstr "Показники" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "Розмір маркера" -msgid "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit." -msgstr "Показники, на які слід відображати відсоток від загальної кількості. Обчислюється лише з даних в межах рядка." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "Розмір маркера. Також застосовується до прогнозних спостережень." -msgid "Middle" -msgstr "Середина" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "Первинний" -msgid "Midnight" -msgstr "Опівночі" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "Вторинний" -msgid "Miles" -msgstr "Милі" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "Первинна або вторинна осі Y" -msgid "Min" -msgstr "Хв" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +msgid "Shared query fields" +msgstr "Поля спільного запиту" -msgid "Min Periods" -msgstr "Мінські періоди" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" +msgstr "Запит a" -msgid "Min Width" -msgstr "Мінина ширина" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +msgid "Advanced analytics Query A" +msgstr "Розширений запит аналітики a" -msgid "Min periods" -msgstr "Мінські періоди" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" +msgstr "Запит B" -msgid "Min/max (no outliers)" -msgstr "Мін/Макс (без переживань)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +msgid "Advanced analytics Query B" +msgstr "Розширений запит аналітики b" -msgid "Mine" -msgstr "Мої" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "Масштаб даних" -msgid "Minimum" -msgstr "Мінімум" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "Увімкнути контроль за масштабуванням даних" -msgid "Minimum Font Size" -msgstr "Мінімальний розмір шрифту" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "Незначна лінія розколу" -msgid "Minimum Radius" -msgstr "Мінімальний радіус" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "Накресліть розділені лінії для незначних кліщів у осі Y" -msgid "Minimum leaf node event count" -msgstr "Мінімальний кількість подій вузла листя" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 +msgid "Primary y-axis Bounds" +msgstr "Первинні межі вісь Y" -msgid "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius." -msgstr "Мінімальний розмір радіуса кола, в пікселях. У міру зміни рівня масштабу це гарантує, що коло поважає цей мінімальний радіус." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Межі для первинної осі y. Залишившись порожніми, межі динамічно " +"визначаються на основі міні/максимуму даних. Зауважте, що ця функція лише" +" розширить діапазон осі. Це не звузить ступінь даних." -msgid "Minimum threshold in percentage points for showing labels." -msgstr "Мінімальний поріг у відсотковому пункті для показу мітків." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "Первинний формат осі Y" -msgid "Minimum value" -msgstr "Мінімальне значення" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "Логарифмічна шкала на первинній осі Y" -msgid "Minimum value for label to be displayed on graph." -msgstr "Мінімальне значення для мітки для відображення на графі." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +msgid "Secondary y-axis Bounds" +msgstr "Вторинні межі осі y" -msgid "Minimum value on the gauge axis" -msgstr "Мінімальне значення на осі датчика" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Межі для вторинної осі y. Працює лише тоді, коли незалежна вісь Y\n" +" Межі увімкнено. Якщо залишити порожні, межі динамічно " +"визначені\n" +" на основі міні/максимуму даних. Зауважте, що ця функція " +"лише розшириться\n" +" діапазон осі. Це не звузить ступінь даних." -msgid "Minor Split Line" -msgstr "Незначна лінія розколу" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "Вторинний формат осі Y" -msgid "Minute" -msgstr "Хвилина" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +#, fuzzy +msgid "Secondary currency format" +msgstr "Вторинний формат осі Y" -msgid "Minutes %s" -msgstr "Хвилини %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "Вторинна назва осі Y" -msgid "Missing URL parameters" -msgstr "Відсутні параметри URL -адреси" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "Логарифмічна шкала на вторинній осі Y" -msgid "Missing dataset" -msgstr "Відсутній набір даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +msgid "" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "" +"Візуалізуйте дві різні серії, використовуючи одну і ту ж осі x. Зауважте," +" що обидві серії можна візуалізувати за допомогою іншого типу діаграми " +"(наприклад, 1 за допомогою смуг та 1 за допомогою рядка)." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 msgid "Mixed Chart" msgstr "Змішана діаграма" -msgid "Mixed Time-Series" -msgstr "Змішані часові серії" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "Поставити етикетки поза пирогом?" -msgid "Modified" -msgstr "Змінений" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "Лінія мітки" -msgid "Modified %s" -msgstr "Модифіковані %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "Намалювати лінію з пирога до етикетки, коли етикетки зовні?" -msgid "Modified by" -msgstr "Змінений" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +msgid "Show Total" +msgstr "Показати загалом" -msgid "Modified columns: %s" -msgstr "Модифіковані стовпці: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 +msgid "Whether to display the aggregate count" +msgstr "Чи відображати кількість сукупності" -msgid "Monday" -msgstr "Понеділок" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "Форма пирога" -msgid "Month" -msgstr "Місяць" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "Зовнішній радіус" -msgid "Months %s" -msgstr "Місяці %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "Зовнішній край кругообігу" -msgid "More" -msgstr "Більше" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "Внутрішній радіус" -msgid "More filters" -msgstr "Більше фільтрів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "Внутрішній радіус пончиків" -msgid "Move only" -msgstr "Тільки рухатися" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "" +"Класик. Відмінно підходить для показу, скільки компанії отримує кожен " +"інвестор, яка демографія слідує за вашим блогом, або яку частину бюджету " +"йде до військового промислового комплексу.\n" +"\n" +" Діаграми пирогів можуть бути важко точно інтерпретувати. Якщо " +"чіткість відносної пропорції важлива, подумайте про використання смуги " +"або іншого типу діаграми." -msgid "Moves the given set of dates by a specified interval." -msgstr "Переміщує заданий набір дати заданим інтервалом." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "Кругова діаграма" -msgid "Multi-Dimensions" -msgstr "Мультимір" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, python-format +msgid "Total: %s" +msgstr "Всього: %s" -msgid "Multi-Layers" -msgstr "Багатошарові" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "Максимальне значення показників. Це необов'язкова конфігурація" -msgid "Multi-Levels" -msgstr "Багаторівневі" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "Позиція мітки" -msgid "Multi-Variables" -msgstr "Багаторазові" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "Радар" -msgid "Multiple" -msgstr "Багаторазовий" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "Налаштуйте показники" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "Далі налаштувати, як відобразити кожну метрику" -msgid "Multiple Line Charts" -msgstr "Кілька рядків рядків" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "Форма радіолокаційного кола" -msgid "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension." -msgstr "Для завантаження стовпців заборонено кілька розширень файлу. Будь ласка, переконайтеся, що всі файли мають однакове розширення." +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "Тип радіолокаційного візуалізації, чи відображати форму \"кола\"." -msgid "Multiple filtering" -msgstr "Багаторазова фільтрація" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "" +"Візуалізуйте паралельний набір показників у різних групах. Кожна група " +"візуалізується за допомогою власної лінії точок, і кожна метрика " +"представлена ​​як край на діаграмі." -msgid "Multiple formats accepted, look the geopy.points Python library for more details" -msgstr "Прийняті кілька форматів, подивіться на бібліотеку Python Geopy.points для отримання детальної інформації" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" +msgstr "Радарна діаграма" -msgid "Multiple selections allowed, otherwise filter is limited to a single value" -msgstr "Дозволено декілька вибору, інакше фільтр обмежується одним значенням" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "Первинний показник" -msgid "Multiplier" -msgstr "Множник" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "Первинний показник використовується для визначення розмірів сегмента дуги" -msgid "Must be unique" -msgstr "Має бути унікальним" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "Вторинна метрика" -msgid "Must choose either a chart or a dashboard" -msgstr "Потрібно вибрати або діаграму, або інформаційну панель" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" +msgstr "" +"[Необов’язково] Ця вторинна метрика використовується для визначення " +"кольору як співвідношення проти первинної метрики. При опущенні кольори є" +" категоричним і на основі мітків" -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "Повинен мати стовпець [група за], щоб мати \"рахувати\" як [мітку]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "" +"Коли надається лише первинна метрика, використовується категорична " +"кольорова шкала." -msgid "Must have at least one numeric column specified" -msgstr "Повинен мати щонайменше один числовий стовпчик" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "Коли надається вторинна метрика, використовується лінійна кольорова шкала." -msgid "Must provide credentials for the SSH Tunnel" -msgstr "Повинен надати облікові дані для тунелю SSH" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "Ієрархія" -msgid "Must specify a value for filters with comparison operators" -msgstr "Потрібно вказати значення для фільтрів з операторами порівняння" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" +"Встановлює рівні ієрархії діаграми. Кожен рівень є\n" +" Представлений одним кільцем з найпотаємнішим колом як верхівка " +"ієрархії." -msgid "My beautiful colors" -msgstr "Мої прекрасні кольори" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "" +"Використовує кола для візуалізації потоку даних через різні етапи " +"системи. Наведіть курсор на окремі шляхи візуалізації, щоб зрозуміти " +"етапи, які взяла значення. Корисно для багатоступеневої, багатогрупової " +"візуалізації воронки та трубопроводів." -msgid "My column" -msgstr "Моя колонка" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "Діаграма Sunburst" -msgid "My metric" -msgstr "Мій показник" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "Багаторівневі" -msgid "N/A" -msgstr "N/a" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" +"При використанні, крім адаптивного форматування, мітки можуть " +"перекриватися" -msgid "NOT GROUPED BY" -msgstr "Не згрупований" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." +msgstr "" +"Швейцарський армійський ніж для візуалізації даних. Виберіть між крок, " +"рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів" +" налаштування." -msgid "NOV" -msgstr "Листопада" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +msgid "Generic Chart" +msgstr "Загальна діаграма" -msgid "NOW" -msgstr "Тепер" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" +msgstr "масштаб" -msgid "NUMERIC" -msgstr "Числовий" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" +msgstr "відновити масштаб" -msgid "Name" -msgstr "Назва" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" +msgstr "Стиль серії" -msgid "Name is required" -msgstr "Ім'я потрібно" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" +msgstr "Область прозоість діаграми" -msgid "Name must be unique" -msgstr "Ім'я повинно бути унікальним" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "Прозоість діаграми області. Також застосовується до групи довіри." -msgid "Name of table to be created from columnar data." -msgstr "Назва таблиці, яка повинна бути створена з стовпчастих даних." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "Розмір маркера" -msgid "Name of table to be created from excel data." -msgstr "Назва таблиці, яка повинна бути створена з даних Excel." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "" +"Діаграми області схожі на лінійні діаграми тим, що вони представляють " +"змінні з однаковою шкалою, але діаграми області складають показники один " +"до одного." -msgid "Name of table to be created with CSV file" -msgstr "Ім'я таблиці, яке потрібно створити за допомогою файлу CSV" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "Діаграма" -msgid "Name of the column containing the id of the parent node" -msgstr "Назва стовпця, що містить ідентифікатор батьківського вузла" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 +msgid "Axis Title" +msgstr "Назва вісь" -msgid "Name of the id column" -msgstr "Ім'я стовпця ідентифікатора" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "ЗАВДАННЯ ВІСІВ" -msgid "Name of the source nodes" -msgstr "Назва вихідних вузлів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +msgid "AXIS TITLE POSITION" +msgstr "Позиція заголовка вісь" -msgid "Name of the table that exists in the source database" -msgstr "Назва таблиці, яка існує у вихідній базі даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +msgid "Axis Format" +msgstr "Формат вісь" -msgid "Name of the target nodes" -msgstr "Назва цільових вузлів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +msgid "Logarithmic axis" +msgstr "Логарифмічна вісь" -msgid "Name your database" -msgstr "Назвіть свою базу даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +msgid "Draw split lines for minor axis ticks" +msgstr "Накресліть розділені лінії для незначних кліщів" -msgid "Need help? Learn how to connect your database" -msgstr "Потрібна допомога? Дізнайтеся, як підключити базу даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +msgid "Truncate Axis" +msgstr "Усікатна вісь" -msgid "Need help? Learn more about" -msgstr "Потрібна допомога? Дізнайтеся більше про" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "Не рекомендується скоротити вісь у гістограмі." -msgid "Network error" -msgstr "Помилка мережі" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +msgid "Axis Bounds" +msgstr "Межі вісь" -msgid "Network error." -msgstr "Помилка мережі." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Межі для осі. Залишившись порожніми, межі динамічно визначаються на " +"основі міні/максимуму даних. Зауважте, що ця функція лише розширить " +"діапазон осі. Це не звузить ступінь даних." -msgid "New chart" -msgstr "Нова діаграма" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +msgid "Chart Orientation" +msgstr "Орієнтація діаграми" -msgid "New columns added: %s" -msgstr "Додано нові стовпці: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +msgid "Bar orientation" +msgstr "Орієнтація" -msgid "New dataset" -msgstr "Новий набір даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 +msgid "Horizontal" +msgstr "Горизонтальний" -msgid "New dataset name" -msgstr "Нове ім'я набору даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 +msgid "Orientation of bar chart" +msgstr "Орієнтація гістограмної діаграми" -msgid "New filter set" -msgstr "Новий набір фільтра" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "Барські діаграми використовуються для показу показників як серії барів." -msgid "New header" -msgstr "Новий заголовок" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" +msgstr "Гістограма" -msgid "New tab" -msgstr "Нова вкладка" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." +msgstr "" +"Лінійна діаграма використовується для візуалізації вимірювань, взяті на " +"задану категорію. Лінійна діаграма - це тип діаграми, яка відображає " +"інформацію як ряд точок даних, підключених за допомогою прямих сегментів." +" Це основний тип діаграми, поширений у багатьох полях." -msgid "New tab (Ctrl + q)" -msgstr "Нова вкладка (Ctrl + Q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" +msgstr "Лінійна діаграма" -msgid "New tab (Ctrl + t)" -msgstr "Нова вкладка (Ctrl + T)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." +msgstr "" +"Сюжет розсіювання має горизонтальну вісь у лінійних одиницях, а точки " +"з'єднані в порядку. Він показує статистичну залежність між двома " +"змінними." -msgid "Next" -msgstr "Наступний" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "Діаграма розкиду" -msgid "Nightingale Rose Chart" -msgstr "Sowingale Rose Chart" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." +msgstr "" +"Гладка лінія-це варіація лінійної діаграми. Без кутів і жорстких країв, " +"гладка лінія іноді виглядає розумнішими та професійнішими." -msgid "No" -msgstr "Немає" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "Тип кроку" -msgid "No %s yet" -msgstr "Ще немає %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "Почати" -msgid "No Access!" -msgstr "Немає доступу!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 +msgid "Middle" +msgstr "Середина" -msgid "No Data" -msgstr "Немає даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "Кінець" -msgid "No Results" -msgstr "Немає результатів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "" +"Визначає, чи повинен крок з’являтися на початку, середній або кінець між " +"двома точками даних" -msgid "No Rules yet" -msgstr "Ще немає правил" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "" +"Графік ступінчастої лінії (також називається крок діаграми)-це варіація " +"лінійної діаграми, але з лінією, що утворює ряд кроків між точками даних." +" Крок діаграми може бути корисною, коли ви хочете показати зміни, які " +"відбуваються з нерегулярними інтервалами." -msgid "No annotation layers" -msgstr "Ніяких шарів анотації" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 +msgid "Stepped Line" +msgstr "Ступінчаста лінія" -msgid "No annotation layers yet" -msgstr "Ще немає анотаційних шарів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "Ідентифікатор" -msgid "No annotation yet" -msgstr "Ще немає анотації" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "Ім'я стовпця ідентифікатора" -msgid "No applied filters" -msgstr "Немає застосованих фільтрів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" +msgstr "Батько" -msgid "No available filters." -msgstr "Немає доступних фільтрів." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "Назва стовпця, що містить ідентифікатор батьківського вузла" -msgid "No charts" -msgstr "Немає діаграм" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "Необов’язкове ім'я стовпця даних." -msgid "No charts yet" -msgstr "Ще немає діаграм" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "Ідентифікатор кореневого вузла" -msgid "No columns" -msgstr "Немає стовпців" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "Id кореневого вузла дерева." -msgid "No columns found" -msgstr "Не знайдено стовпців" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "Метрика для значень вузла" -msgid "No compatible columns found" -msgstr "Не знайдено сумісних стовпців" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "Макет дерева" -msgid "No compatible datasets found" -msgstr "Не знайдено сумісних наборів даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "Ортогональний" -msgid "No compatible schema found" -msgstr "Не знайдено сумісної схеми" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" +msgstr "Радіальний" -msgid "No dashboards" -msgstr "Немає інформаційних панелей" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "Тип макета дерева" -msgid "No dashboards yet" -msgstr "Ще немає інформаційних панелей" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" +msgstr "Орієнтація на дерева" -msgid "No data" -msgstr "Немає даних" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" +msgstr "Зліва направо" -msgid "No data after filtering or data is NULL for the latest time record" -msgstr "Ніякі дані після фільтрації або даних є нульовими для останнього запису часу" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "Праворуч зліва" -msgid "No data in file" -msgstr "Немає даних у файлі" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "Зверху вниз" -msgid "No database tables found" -msgstr "Таблиць баз даних не знайдено" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "Дно вгорі" -msgid "No databases match your search" -msgstr "Жодне бази даних не відповідає вашому пошуку" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "Орієнтація дерева" -msgid "No description available." -msgstr "Опис не доступний." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "Положення мітки вузлів" -msgid "No favorite charts yet, go click on stars!" -msgstr "Ще немає улюблених діаграм, перейдіть на зірки!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "лівий" -msgid "No favorite dashboards yet, go click on stars!" -msgstr "Ще немає улюблених інформаційних панелей, натисніть на зірку!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 +msgid "top" +msgstr "топ" -msgid "No filter" -msgstr "Без фільтра" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" +msgstr "право" -msgid "No filter is selected." -msgstr "Фільтр не вибирається." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" +msgstr "дно" -msgid "No filters" -msgstr "Немає фільтрів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +msgid "Position of intermediate node label on tree" +msgstr "Положення мітки проміжного вузла на дереві" -msgid "No filters are currently added to this dashboard." -msgstr "Наразі на цю інформаційну панель не додано жодних фільтрів." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "Позиція дочірньої етикетки" -msgid "No form settings were maintained" -msgstr "Налаштування форми не зберігалися" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "Положення етикетки дитячого вузла на дереві" -msgid "No global filters are currently added" -msgstr "Наразі глобальні фільтри не додаються" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "Наголос" -msgid "No matching records found" -msgstr "Не знайдено відповідних записів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "предок" -msgid "No of Bins" -msgstr "Немає бункерів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" +msgstr "нащадок" -msgid "No recents yet" -msgstr "Ще немає жодних випадків" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "Які родичі, щоб виділити на курсі" -msgid "No records found" -msgstr "Записів не знайдено" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" +msgstr "Символ" -msgid "No results" -msgstr "Немає результатів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "Порожнє коло" -msgid "No results found" -msgstr "Нічого не знайдено" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" +msgstr "Кола" -msgid "No results match your filter criteria" -msgstr "Ніякі результати не відповідають вашим критеріям фільтра" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" +msgstr "Прямокутник" -msgid "No results were returned for this query" -msgstr "Для цього запиту не було повернуто жодних результатів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "Трикутник" -msgid "" -"No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the " -"selected time range." -msgstr "" -"Для цього запиту жодних результатів не було. Якщо ви очікували повернення результатів, переконайтеся, що будь -які фільтри налаштовані належним чином, а дані містять " -"дані для вибраного діапазону часу." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "Алмаз" -msgid "No rows were returned for this dataset" -msgstr "Для цього набору даних не було повернуто рядків" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "Шпилька" -msgid "No samples were returned for this dataset" -msgstr "Для цього набору даних не було повернуто жодних зразків" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "Стрілка" -msgid "No saved expressions found" -msgstr "Збережених виразів не знайдено" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" +msgstr "Розмір символу" -msgid "No saved metrics found" -msgstr "Збережених показників не знайдено" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "Розмір символів краю" -msgid "No saved queries yet" -msgstr "Ще немає врятованих запитів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "" +"Візуалізуйте декілька рівнів ієрархії, використовуючи звичну " +"деревоподібну структуру." -msgid "No stored results found, you need to re-run your query" -msgstr "Не знайдено жодних збережених результатів, вам потрібно повторно запустити свій запит" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "Деревна діаграма" -msgid "No such column found. To filter on a metric, try the Custom SQL tab." -msgstr "Такого стовпця не знайдено. Щоб фільтрувати метрику, спробуйте спеціальну вкладку SQL." +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "Показати верхні етикетки" -msgid "No table columns" -msgstr "Немає стовпців таблиці" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "Показати етикетки, коли у вузла є діти." -msgid "No temporal columns found" -msgstr "Не знайдено тимчасових стовпців" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +msgid "Key" +msgstr "Ключ" -msgid "No time columns" -msgstr "Немає часу стовпців" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" +"Показати ієрархічні зв’язки даних із значенням, представленим областю, " +"показуючи пропорцію та внесок у ціле." -msgid "No validator found (configured for the engine)" -msgstr "Жодного валідатора не знайдено (налаштовано для двигуна)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "Подумати" -msgid "No validator named {} found (configured for the {} engine)" -msgstr "Немає валідатора названого {} знайдено (налаштовано для двигуна {})" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 +msgid "Total" +msgstr "Загальний" -msgid "Node label position" -msgstr "Положення мітки вузлів" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 +#, fuzzy +msgid "Assist" +msgstr "основа" -msgid "Node select mode" -msgstr "Режим вибору вузла" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 +#, fuzzy +msgid "Increase" +msgstr "створити" -msgid "Node size" -msgstr "Розмір вузла" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 +#, fuzzy +msgid "Decrease" +msgstr "створити" -msgid "None" -msgstr "Ні" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "Стовпці часових рядів" -msgid "None -> Arrow" -msgstr "Жоден -> Стрілка" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." +msgstr "" -msgid "None -> None" -msgstr "Жоден -> Жоден" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." +msgstr "" -msgid "Normal" -msgstr "Нормальний" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "Шукайте всі діаграми" -msgid "Normalize Across" -msgstr "Нормалізувати" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "page_size.all" -msgid "Normalized" -msgstr "Нормалізований" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Завантаження ..." -msgid "Not Time Series" -msgstr "Не часовий ряд" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" +msgstr "Напишіть шаблон ручки для надання даних" -msgid "Not added to any dashboard" -msgstr "Не додано на будь-яку інформаційну панель" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "Ручка" -msgid "Not available" -msgstr "Недоступний" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "повинен мати значення" -msgid "Not equal to (≠)" -msgstr "Не дорівнює (≠)" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +msgid "Handlebars Template" +msgstr "Шаблон ручки" -msgid "Not in" -msgstr "Не в" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "Шаблон ручки, який застосовується до даних" -msgid "Not null" -msgstr "Не нульовий" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" +msgstr "Включіть час" -msgid "Not triggered" -msgstr "Не спрацьований" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" +msgstr "Чи включати часову деталізацію, визначену в розділі часу" -msgid "Not up to date" -msgstr "Не в курсі" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "Відсоткові показники" -msgid "Nothing triggered" -msgstr "Ніщо не спрацювало" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 +msgid "" +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." +msgstr "" -msgid "Notification method" -msgstr "Метод сповіщення" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "Показати підсумки" -msgid "November" -msgstr "Листопад" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." +msgstr "" +"Показати загальну сукупність вибраних показників. Зауважте, що обмеження " +"рядка не застосовується до результату." -msgid "Now" -msgstr "Тепер" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" +msgstr "Замовлення" -msgid "Null Values" -msgstr "Нульові значення" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "Результати замовлення за вибраними стовпцями" -msgid "Null imputation" -msgstr "Нульова імпутація" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "Сортувати низхід" -msgid "Null or Empty" -msgstr "Нульовий або порожній" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "Сервер Пагінування" -msgid "Null values" -msgstr "Нульові значення" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" +msgstr "Увімкнути серверну пагінування результатів (експериментальна функція)" -msgid "Number Format" -msgstr "Формат числа" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "Довжина сторінки сервера" -msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or blue,\n" -" you can enter either only min or max." -msgstr "" -"Межі числа, що використовуються для кодування кольору від червоного до синього.\n" -" Поверніть числа для синього до червоного. Щоб отримати чистий червоний або синій,\n" -" Ви можете ввести лише хв, або максимум." +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "Рядки на сторінку, 0 означає, що немає пагінації" -msgid "Number format" -msgstr "Формат числа" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "Режим запиту" -msgid "Number format string" -msgstr "Рядок формату числа" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "Група за, показники або відсоткові показники повинні мати значення" -msgid "Number of buckets to group data" -msgstr "Кількість відр для групування даних" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "Вам потрібно налаштувати санітарію HTML для використання CSS" -msgid "Number of decimal digits to round numbers to" -msgstr "Кількість десяткових цифр до круглих чисел до" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 +msgid "CSS Styles" +msgstr "Стилі CSS" -msgid "Number of decimal places with which to display lift values" -msgstr "Кількість десяткових місць, з якими можна відобразити значення підйому" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "CSS, застосований до діаграми" -msgid "Number of decimal places with which to display p-values" -msgstr "Кількість десяткових місць, з якими можна відобразити p-значення" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -msgid "Number of periods to compare against" -msgstr "Кількість періодів порівняння з" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 +#, fuzzy +msgid "Range for Comparison" +msgstr "Порівняння часу" -msgid "Number of periods to ratio against" -msgstr "Кількість періодів до співвідношення проти" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 +#, fuzzy +msgid "Filters for Comparison" +msgstr "Порівняння часу" -msgid "Number of rows of file to read" -msgstr "Кількість рядків файлу для читання" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -msgid "Number of rows of file to read." -msgstr "Кількість рядків файлу для читання." +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" +msgstr "" -msgid "Number of rows to skip at start of file" -msgstr "Кількість рядків для пропускання на початку файлу" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "Стовпці до групи на стовпцях" -msgid "Number of rows to skip at start of file." -msgstr "Кількість рядків для пропускання на початку файлу." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "Ряди" -msgid "Number of split segments on the axis" -msgstr "Кількість розділених сегментів на осі" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "Стовпці до групи на рядках" -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "Кількість кроків, які потрібно зробити між кліщами при відображенні шкали X" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" +msgstr "Застосувати показники на" -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "Кількість кроків, які потрібно зробити між кліщами при відображенні шкали Y" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "Використовуйте показники як групу вищого рівня для стовпців або для рядків" -msgid "Numerical range" -msgstr "Чисельний діапазон" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +msgid "Cell limit" +msgstr "Обмеження клітин" -msgid "OCT" -msgstr "Жовт" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +msgid "Limits the number of cells that get retrieved." +msgstr "Обмежує кількість клітин, які отримують." -msgid "OK" -msgstr "в порядку" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "" +"Метрика, яка використовується для визначення того, як сортується верхня " +"серія, якщо присутня ліміт серії або комірки. Якщо невизначений " +"повернення до першої метрики (де це доречно)." -msgid "OVERWRITE" -msgstr "Переписувати" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "Функція агрегації" -msgid "October" -msgstr "Жовтень" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +msgid "Count" +msgstr "Рахувати" -msgid "Offline" -msgstr "Офлайн" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +msgid "Count Unique Values" +msgstr "Порахуйте унікальні значення" -msgid "Offset" -msgstr "Компенсація" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "List Unique Values" +msgstr "Перелічіть унікальні значення" -msgid "On Grace" -msgstr "На благодать" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "Сума" -msgid "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series." -msgstr "Один або багато стовпців до групи за. Високі угруповання кардинальності повинні включати ліміт серії для обмеження кількості витягнутих та наданих рядів." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +msgid "Average" +msgstr "Середній" -msgid "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series." -msgstr "" -"Один або багато стовпців до групи за. Високі угруповання кардинальності повинні включати сорт за метрикою та лімітом серії, щоб обмежити кількість вилучених та " -"наданих рядів." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "Медіана" -msgid "One or many columns to pivot as columns" -msgstr "Один або багато стовпців, що скручуються як стовпці" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "Дисперсія зразка" -msgid "One or many controls to group by. If grouping, latitude and longitude columns must be present." -msgstr "Один або багато елементів керування групами за. Якщо групування, широта та довгота повинні бути присутніми." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +msgid "Sample Standard Deviation" +msgstr "Зразок стандартного відхилення" -msgid "One or many controls to pivot as columns" -msgstr "Один або багато елементів керування, щоб стригти як стовпці" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "Мінімум" -msgid "One or many metrics to display" -msgstr "Один або багато показників для відображення" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "Максимум" -msgid "One or more columns already exist" -msgstr "Один або кілька стовпців вже існують" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "Перший" -msgid "One or more columns are duplicated" -msgstr "Один або кілька стовпців дублюються" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "Останній" -msgid "One or more columns do not exist" -msgstr "Одного або декількох стовпців не існує" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "Сума як частка загальної кількості" -msgid "One or more metrics already exist" -msgstr "Один або кілька показників вже існують" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "Сума як частка рядків" -msgid "One or more metrics are duplicated" -msgstr "Один або кілька показників дублюються" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "Сума як частка стовпців" -msgid "One or more metrics do not exist" -msgstr "Одного або декількох показників не існує" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "Вважається часткою загальної кількості" -msgid "One or more parameters needed to configure a database are missing." -msgstr "Не вистачає одного або декількох параметрів, необхідних для налаштування бази даних." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "Порахуйте як частку рядків" -msgid "One or more parameters specified in the query are malformatted." -msgstr "Один або кілька параметрів, зазначених у запиті, є неправильними." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "Вважати як частка стовпців" -msgid "One or more parameters specified in the query are missing." -msgstr "Один або кілька параметрів, зазначених у запиті, відсутні." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "" +"Сукупна функція, яка застосовується при повороті та обчисленні загальних " +"рядків та стовпців" -msgid "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator." -msgstr "У запиті відсутні один або кілька необхідних полів. Будь ласка, спробуйте ще раз, і якщо проблема наполегливо звертається до вашого адміністратора." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "Показати ціє рядки" -msgid "One ore more annotation layers failed loading." -msgstr "Один руду більше анотаційних шарів не вдалося завантажити." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "Відображення рівня рядка загалом" -msgid "Only SELECT statements are allowed against this database." -msgstr "Протягом цієї бази даних допускаються лише вибору." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "Показати ціє рядки" -msgid "Only Total" -msgstr "Тільки повне" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 +#, fuzzy +msgid "Display row level subtotal" +msgstr "Відображення рівня рядка загалом" -msgid "Only `SELECT` statements are allowed" -msgstr "Дозволено лише `вибору" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "Показати стовпці Всього" -msgid "Only applies when \"Label Type\" is not set to a percentage." -msgstr "Застосовується лише тоді, коли \"тип мітки\" не встановлений на відсоток." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "Загальний рівень стовпців відображення" -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "Застосовується лише тоді, коли \"тип мітки\" встановлюється для показу значень." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "Показати стовпці Всього" -msgid "Only selected panels will be affected by this filter" -msgstr "На цей фільтр вплине лише вибрані панелі" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +#, fuzzy +msgid "Display column level subtotal" +msgstr "Загальний рівень стовпців відображення" -msgid "Only show the total value on the stacked chart, and not show on the selected category" -msgstr "Показати лише загальну вартість у складеній діаграмі, а не показати у вибраній категорії" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "Перекладіть поворот" -msgid "Only single queries supported" -msgstr "Підтримуються лише одиночні запити" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "Поміняйте ряди та стовпці" -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "Дозволено лише наступні розширення файлу: %(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" +msgstr "Поєднати показники" -msgid "Oops! An error occurred!" -msgstr "На жаль! Виникла помилка!" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." +msgstr "" +"Показники дисплея поруч у кожному стовпці, на відміну від кожного " +"стовпця, що відображається поруч для кожної метрики." -msgid "Opacity" -msgstr "Непрозорість" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "D3 Формат часу для стовпців DateTime" -msgid "Opacity of Area Chart. Also applies to confidence band." -msgstr "Прозоість діаграми області. Також застосовується до групи довіри." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" +msgstr "Сортувати ряди за" -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "Прозоість усіх кластерів, балів та мітків. Між 0 і 1." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "літера A-Z" -msgid "Opacity of area chart." -msgstr "Прозоість діаграми області." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "літера Z-A" -msgid "Opacity, expects values between 0 and 100" -msgstr "Непрозорість, очікує значення від 0 до 100" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" +msgstr "значення збільшення" -msgid "Open Datasource tab" -msgstr "Вкладка Відкрийте DataSource" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "значення зменшення" -msgid "Open in SQL Lab" -msgstr "Відкрито в лабораторії SQL" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "Змінити порядок рядків." -msgid "Open query in SQL Lab" -msgstr "Відкритий запит у лабораторії SQL" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" +msgstr "Доступні режими сортування:" -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have " -"a Celery worker setup as well as a results backend. Refer to the installation docs for more information." -msgstr "" -"Керуйте базою даних в асинхронному режимі, що означає, що запити виконуються на віддалених працівниках на відміну від самого веб -сервера. Це передбачає, що у вас є " -"налаштування працівника селери, а також резервні результати. Для отримання додаткової інформації зверніться до документів про встановлення." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "За ключем: Використовуйте імена рядків як ключ сортування" -msgid "Operator" -msgstr "Оператор" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "За значенням: Використовуйте метричні значення як ключ сортування" -msgid "Operator undefined for aggregator: %(name)s" -msgstr "Оператор, не визначений для агрегатора: %(ім'я)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" +msgstr "Сортувати стовпці за" -msgid "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines." -msgstr "Необов’язковий вміст Ca_bundle для перевірки запитів HTTPS. Доступний лише в певних двигунах бази даних." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "Змінити порядок стовпців." -msgid "Optional d3 date format string" -msgstr "Необов’язковий рядок формату D3 D3" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "За ключем: Використовуйте імена стовпців як ключ сортування" -msgid "Optional d3 number format string" -msgstr "Необов’язковий рядок формату числа D3" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "Рядки субтотального положення" -msgid "Optional name of the data column." -msgstr "Необов’язкове ім'я стовпця даних." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "Положення субтотального рівня рядка" -msgid "Optional warning about use of this metric" -msgstr "Необов’язкове попередження про використання цієї метрики" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "Стовпці субтотального положення" -msgid "Options" -msgstr "Варіанти" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "Положення субтотального рівня стовпця" -msgid "Or choose from a list of other databases we support:" -msgstr "Або виберіть зі списку інших баз даних, які ми підтримуємо:" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" +msgstr "Умовне форматування" -msgid "Order by entity id" -msgstr "Замовлення за сутністю ідентифікатор" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "Застосувати умовне форматування кольорів до показників" -msgid "Order results by selected columns" -msgstr "Результати замовлення за вибраними стовпцями" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." +msgstr "" +"Використовується для узагальнення набору даних шляхом групування кількох " +"статистичних даних уздовж двох осей. Приклади: Номери продажів за " +"регіоном та місяцем, завдання за статусом та правонаступником, активними " +"користувачами за віком та місцезнаходженням. Не найбільш візуально " +"приголомшлива візуалізація, але дуже інформативна та універсальна." -msgid "Ordering" -msgstr "Замовлення" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "Поворотна таблиця" -msgid "Orientation" -msgstr "Орієнтація" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" +msgstr "Всього (%(aggregatorName)s)" -msgid "Orientation of bar chart" -msgstr "Орієнтація гістограмної діаграми" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "Невідомий формат введення" -msgid "Orientation of filter bar" -msgstr "Орієнтація панелі фільтра" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" +msgstr "" -msgid "Orientation of tree" -msgstr "Орієнтація дерева" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "page_size.show" -msgid "Original" -msgstr "Оригінальний" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" +msgstr "page_size.entries" -msgid "Original table column order" -msgstr "Оригінальне замовлення стовпця таблиці" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +msgid "No matching records found" +msgstr "Не знайдено відповідних записів" -msgid "Original value" -msgstr "Початкове значення" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "Shift + Клацніть, щоб сортувати на кілька стовпців" -msgid "Orthogonal" -msgstr "Ортогональний" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "Підсумки" -msgid "Other" -msgstr "Інший" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "Формат часової позначки" -msgid "Outdoors" -msgstr "На відкритому повітрі" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "Довжина сторінки" -msgid "Outer Radius" -msgstr "Зовнішній радіус" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" +msgstr "Поле пошуку" -msgid "Outer edge of Pie chart" -msgstr "Зовнішній край кругообігу" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "Чи включати вікно пошуку на стороні клієнта" -msgid "Overlap" -msgstr "Перетинати" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "Клітинні смуги" -msgid "" -"Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free " -"text is supported." -msgstr "" -"Накладіть один або кілька разів з відносного періоду часу. Очікує відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 тижні, 365 днів). " -"Підтримується безкоштовний текст." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "Чи відображати фон гастрольної діаграми у стовпцях таблиці" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "Вирівняти +/-" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 msgid "" -"Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free " -"text is supported." +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" -"Накладіть один або кілька разів з відносного періоду часу. Очікує відносного часу дельти природною мовою (приклад: 24 години, 7 днів, 52 тижні, 365 днів). " -"Підтримується безкоштовний текст." +"Чи вирівнювати фонові діаграми з позитивними, так і негативними " +"значеннями на 0" -msgid "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell." -msgstr "Накладає шестикутну сітку на карті та агрегує дані в межах кордону кожної комірки." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "Колір +/-" -msgid "Override time grain" -msgstr "Переоцінка зерна часу" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 +#, fuzzy +msgid "" +"Whether to colorize numeric values by whether they are positive or " +"negative" +msgstr "Будьте кольорові числові значення, якщо вони є позитивними чи негативними" -msgid "Override time range" -msgstr "Переоцінка часового діапазону" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" +msgstr "Дозволити перестановку стовпців" -msgid "Overwrite" -msgstr "Переписувати" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" +"Дозвольте кінцевому користувачеві перетягувати заголовки стовпців, щоб " +"переставити їх. Зверніть увагу, що їх зміни не будуть зберігатись " +"наступного разу, коли вони відкриють діаграму." -msgid "Overwrite & Explore" -msgstr "Переписати та досліджувати" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" +msgstr "Налаштуйте стовпці" -msgid "Overwrite Dashboard [%s]" -msgstr "Перезаписати Інформаційну панель [%s]" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "Далі налаштувати, як відобразити кожен стовпець" -msgid "Overwrite Duplicate Columns" -msgstr "Перезаписати дублікат стовпців" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "Застосовуйте умовне форматування кольорів до числових стовпців" -msgid "Overwrite existing" -msgstr "Переписати існуючі" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "" +"Класична електронна таблиця за стовпцем, як перегляд набору даних. " +"Використовуйте таблиці, щоб продемонструвати перегляд у основних даних " +"або для показу сукупних показників." -msgid "Overwrite text in the editor with a query on this table" -msgstr "Переписати текст у редакторі із запитом на цій таблиці" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" +msgstr "Показувати" -msgid "Owned Created or Favored" -msgstr "Належить створеним або прихильним" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" +msgstr "записи" -msgid "Owner" -msgstr "Власник" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "Слово хмара" -msgid "Owners" -msgstr "Власники" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "Мінімальний розмір шрифту" -msgid "Owners are invalid" -msgstr "Власники недійсні" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "Розмір шрифту для найменшого значення у списку" -msgid "Owners is a list of users who can alter the dashboard." -msgstr "Власники - це список користувачів, які можуть змінити інформаційну панель." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "Максимальний розмір шрифту" -msgid "Owners is a list of users who can alter the dashboard. Searchable by name or username." -msgstr "Власники - це список користувачів, які можуть змінити інформаційну панель. Шукати за іменем або іменем користувача." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "Розмір шрифту за найбільшим значенням у списку" -msgid "Page length" -msgstr "Довжина сторінки" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" +msgstr "Обертання слів" -msgid "Paired t-test Table" -msgstr "Парна таблиця t-тесту" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "random" +msgstr "випадковий" -msgid "Pandas resample method" -msgstr "Метод Pandas Resample" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "square" +msgstr "квадрат" -msgid "Pandas resample rule" -msgstr "Pandas resamplable Правило" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" +msgstr "Обертання, щоб застосувати до слів у хмарі" -msgid "Parallel Coordinates" -msgstr "Паралельні координати" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." +msgstr "" +"Візуалізує слова в стовпці, які з’являються найчастіше. Більший шрифт " +"відповідає більш високій частоті." -msgid "Parameter error" -msgstr "Помилка параметра" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "N/a" -msgid "Parameters" -msgstr "Параметри" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "offline" +msgstr "офлайн" -msgid "Parameters " -msgstr "Параметри " +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "failed" +msgstr "провалився" -msgid "Parameters related to the view and perspective on the map" -msgstr "Параметри, пов’язані з переглядом та перспективою на карті" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +msgid "pending" +msgstr "що очікує" -msgid "Parent" -msgstr "Батько" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" +msgstr "приплив" -msgid "Parse Dates" -msgstr "Дати розбору" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +msgid "running" +msgstr "біг" -msgid "Part of a Whole" -msgstr "Частина цілого" +#: superset-frontend/src/SqlLab/constants.ts:38 +msgid "stopped" +msgstr "зупинений" -msgid "Partition Chart" -msgstr "Діаграма розділів" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" +msgstr "успіх" -msgid "Partition Diagram" -msgstr "Діаграма розділів" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "Запит не вдалося завантажити" -msgid "Partition Limit" -msgstr "Обмеження розділу" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 +msgid "" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" +msgstr "" +"Ваш запит запланований. Щоб переглянути деталі вашого запиту, перейдіть " +"до збережених запитів" -msgid "Partition Threshold" -msgstr "Поріг розділення" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "Ваша запит не вдалося запланувати" -msgid "Partitions whose height to parent height proportions are below this value are pruned" -msgstr "Перегородки, пропорції висоти, висота батьківства нижче цього значення обрізаються" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "Не вдалося отримати результати" -msgid "Password" -msgstr "Пароль" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "Невідома помилка" -msgid "Paste Private Key here" -msgstr "Вставте тут приватний ключ" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "Запит зупинився." -msgid "Paste content of service credentials JSON file here" -msgstr "Вставте вміст службових облікових даних JSON Файл тут" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" +msgstr "Не вдалося зупинити запит. %s" -msgid "Paste the shareable Google Sheet URL here" -msgstr "Вставте сюди спільну URL -адресу Google Sheet" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Не в змозі перенести схему таблиці схеми, щоб підтримати. Суперсет " +"повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема" +" зберігається." -msgid "Pattern" -msgstr "Зразок" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." +msgstr "" +"Не в змозі перенести державу запитів, щоб підтримати. Суперсет " +"повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема" +" зберігається." -msgid "Percent Change" -msgstr "Відсоткова зміна" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "" +"Не в змозі перенести державу редактора запитів, щоб підтримати. Суперсет " +"повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема" +" зберігається." -msgid "Percentage" -msgstr "Відсоток" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" +"Неможливо додати нову вкладку до бекенду. Зверніться до свого " +"адміністратора." -msgid "Percentage change" -msgstr "Зміна відсотків" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "" +"- Примітка. Якщо ви не зберегли свій запит, ці вкладки не будуть " +"зберігатись, якщо ви очистите файли cookie або змінить браузери.\n" +"\n" -msgid "Percentage metrics" -msgstr "Відсоткові показники" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "Копія %s" -msgid "Percentage threshold" -msgstr "Відсоток поріг" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "" +"Під час встановлення вкладки Active сталася помилка. Зверніться до свого " +"адміністратора." -msgid "Percentages" -msgstr "Відсотки" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "Під час отримання стану вкладки сталася помилка" -msgid "Performance" -msgstr "Виконання" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "" +"Під час видалення вкладки сталася помилка. Зверніться до свого " +"адміністратора." -msgid "Period average" -msgstr "Середній період" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "Під час зняття запиту сталася помилка. Зверніться до свого адміністратора." -msgid "Periods" -msgstr "Періоди" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "Ваш запит не вдалося зберегти" -msgid "Periods must be a whole number" -msgstr "Періоди повинні бути цілим числом" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +msgid "Your query was not properly saved" +msgstr "Ваш запит не був належним чином збережений" -msgid "Person or group that has certified this chart." -msgstr "Особа або група, яка сертифікувала цю діаграму." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "Ваш запит був збережений" -msgid "Person or group that has certified this dashboard." -msgstr "Особа або група, яка сертифікувала цю інформаційну панель." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "Ваш запит був оновлений" -msgid "Person or group that has certified this metric" -msgstr "Особа або група, яка сертифікувала цей показник" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "Ваш запит не вдалося оновити" -msgid "Physical" -msgstr "Фізичний" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." +msgstr "" +"Під час зберігання вашого запиту сталася помилка. Щоб уникнути втрати " +"змін, збережіть свій запит за допомогою кнопки \"Зберегти запит\"." -msgid "Physical (table or view)" -msgstr "Фізичний (таблиця або перегляд)" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "" +"Помилка сталася під час отримання метаданих таблиці. Зверніться до свого " +"адміністратора." -msgid "Physical dataset" -msgstr "Фізичний набір даних" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "" +"Під час розширення схеми таблиці сталася помилка. Зверніться до свого " +"адміністратора." -msgid "Pick a dimension from which categorical colors are defined" -msgstr "Виберіть вимір, з якого визначені категоричні кольори" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "" +"Помилка сталася під час руйнування схеми таблиці. Зверніться до свого " +"адміністратора." -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "Виберіть деталізацію в розділі часу або зняти прапорець \"Включити час\"" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "" +"Під час зняття схеми таблиці сталася помилка. Зверніться до свого " +"адміністратора." -msgid "Pick a metric for left axis!" -msgstr "Виберіть метрику для лівої осі!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "Спільний запит" -msgid "Pick a metric for right axis!" -msgstr "Виберіть метрику для правої осі!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "Дані не вдалося завантажити" -msgid "Pick a metric for x, y and size" -msgstr "Виберіть показник для X, Y та розміру" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "Під час створення джерела даних сталася помилка" -msgid "Pick a metric to display" -msgstr "Виберіть показник для відображення" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "Помилка сталася під час отримання імен функцій." -msgid "Pick a metric!" -msgstr "Виберіть показник!" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "" +"SQL Lab використовує місцеве сховище вашого браузера для зберігання " +"запитів та результатів.\n" +"В даний час ви використовуєте %(currentUsage)s KB з %(maxStorage)d KB " +"зберігання.\n" +"Щоб не зійти в лабораторію SQL, будь ласка, видаліть кілька вкладок " +"запитів.\n" +"Ви можете повторно отримати ці запити, використовуючи функцію збереження," +" перш ніж видалити вкладку.\n" +"Зауважте, що вам потрібно буде закрити інші вікна лабораторії SQL, перш " +"ніж це зробити." + +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" +msgstr "Первинний ключ" -msgid "Pick a name to help you identify this database." -msgstr "Виберіть ім’я, яке допоможе вам визначити цю базу даних." +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" +msgstr "Зовнішній ключ" -msgid "Pick a nickname for how the database will display in Superset." -msgstr "Виберіть прізвисько, як база даних відображатиметься в суперсеті." +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +msgid "Index" +msgstr "Індекс" -msgid "Pick a set of deck.gl charts to layer on top of one another" -msgstr "Виберіть набір діаграм палуби" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "Оцініть вибрані вартість запиту" -msgid "Pick a time granularity for your time series" -msgstr "Виберіть деталізацію часу для своїх часових рядів" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "Оцінка вартості" -msgid "Pick a title for you annotation." -msgstr "Виберіть заголовок для вас анотацію." +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "Оцінка витрат" -msgid "Pick at least one field for [Series]" -msgstr "Виберіть принаймні одне поле для [серії]" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "Створення джерела даних та створення нової вкладки" -msgid "Pick at least one metric" -msgstr "Виберіть хоча б одну метрику" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "Виникла помилка" -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "Виберіть рівно 2 стовпці як [джерело / ціль]" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "Вивчіть результат, встановлений у поданні досліджень даних" -msgid "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown." -msgstr "Виберіть один або кілька стовпців, які слід показати в анотації. Якщо ви не вибрали стовпець, всі вони будуть показані." +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" +msgstr "досліджувати" -msgid "Pick your favorite markup language" -msgstr "Виберіть улюблену мову розмітки" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +msgid "Create Chart" +msgstr "Створити діаграму" -msgid "Pie Chart" -msgstr "Кругова діаграма" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "Джерело SQL" -msgid "Pie shape" -msgstr "Форма пирога" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "Виконаний SQL" -msgid "Pin" -msgstr "Шпилька" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "Запустити запит" -msgid "Pivot Table" -msgstr "Поворотна таблиця" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "Запустити запит" -msgid "Pivot operation must include at least one aggregate" -msgstr "Робота повороту повинна включати щонайменше одну сукупність" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "Зупиніть запит" -msgid "Pivot operation requires at least one index" -msgstr "Робота повороту вимагає щонайменше одного індексу" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "Нова вкладка" -msgid "Pivoted" -msgstr "Обрізаний" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +msgid "Previous Line" +msgstr "Попередній рядок" -msgid "Pixel height of each series" -msgstr "Висота пікселів кожної серії" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +#, fuzzy +msgid "Format SQL" +msgstr "Формат D3" -msgid "Pixels" -msgstr "Пікселі" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "у" -msgid "Plain" -msgstr "Простий" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "" -msgid "Please DO NOT overwrite the \"filter_scopes\" key." -msgstr "Будь ласка, не перезапишіть клавішу \"filter_scopes\"." +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 +msgid "Run a query to display query history" +msgstr "Запустіть запит для відображення історії запитів" -msgid "Please apply filter changes" -msgstr "Будь ласка, застосуйте зміни фільтра" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 +msgid "LIMIT" +msgstr "Обмежувати" -msgid "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again." -msgstr "" -"Будь ласка, перевірте свій запит і підтвердьте, що всі параметри шаблону оточують подвійні брекети, наприклад, \"{{ds}}\". Потім спробуйте знову запустити свій запит." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "Держави" -msgid "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again." -msgstr "Будь ласка, перевірте свій запит на наявність помилок синтаксису на або поблизу “%(syntax_error)s\". Потім спробуйте знову запустити свій запит." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +msgid "Started" +msgstr "Розпочато" -msgid "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again." -msgstr "Будь ласка, перевірте свій запит на наявність помилок синтаксису поблизу \"%(server_error)s\". Потім спробуйте знову запустити свій запит." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "Тривалість" -msgid "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again." -msgstr "" -"Будь ласка, перевірте свої параметри шаблону на наявність помилок синтаксису та переконайтеся, що вони відповідають вашому запиту SQL та встановіть параметри. Потім " -"спробуйте знову запустити свій запит." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "Результат" -msgid "Please choose at least one groupby" -msgstr "Будь ласка, виберіть хоча б одну групу" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "Дії" -msgid "Please choose different metrics on left and right axis" -msgstr "Будь ласка, виберіть різні показники зліва та права вісь" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "Успіх" -msgid "Please confirm" -msgstr "Будь-ласка підтвердіть" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "Провалився" -msgid "Please confirm the overwrite values." -msgstr "Будь ласка, підтвердьте значення перезапису." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "Біг" -msgid "Please enter a SQLAlchemy URI to test" -msgstr "Будь ласка, введіть URI SQLALCHEMY для тестування" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 +msgid "Fetching" +msgstr "Приплив" -msgid "Please filter set name" -msgstr "Будь ласка, відфільтруйте ім'я набору" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "Офлайн" -msgid "Please re-enter the password." -msgstr "Будь ласка, повторно введіть пароль." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "Запланований" -msgid "Please re-export your file and try importing again" -msgstr "Будь ласка, повторно експортуйте файл і спробуйте знову імпортувати" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "Невідомий статус" -msgid "Please reach out to the Chart Owner for assistance." -msgstr "Будь ласка, зверніться до власника діаграми за допомогою." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "Редагувати" -msgid "Please save the query to enable sharing" -msgstr "Збережіть запит, щоб увімкнути обмін" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +msgid "View" +msgstr "Переглянути" -msgid "Please save your chart first, then try creating a new email report." -msgstr "Спочатку збережіть свою діаграму, а потім спробуйте створити новий звіт електронної пошти." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "Попередній перегляд даних" -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "Спочатку збережіть свою інформаційну панель, а потім спробуйте створити новий звіт на електронну пошту." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "Переписати текст у редакторі із запитом на цій таблиці" -msgid "Please select both a Dataset and a Chart type to proceed" -msgstr "Виберіть як набір даних, так і тип діаграми, щоб продовжити" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "Запустіть запит на новій вкладці" -msgid "Please use 3 different metric labels" -msgstr "Будь ласка, використовуйте 3 різні метричні етикетки" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "Видаліть запит з журналу" -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "Наведіть відстань (як доріжки польоту) між походженням та пунктом призначення." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "Неможливо створити діаграму без ідентифікатора запиту." -msgid "" -"Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of " -"the samples or rows in the data." -msgstr "" -"Розраховує окремі показники для кожного рядка в даних вертикально і пов'язують їх як ряд. Ця діаграма корисна для порівняння декількох показників у всіх зразках або " -"рядах у даних." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "Зберегти та досліджувати" -msgid "Plugins" -msgstr "Плагіни" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "Переписати та досліджувати" -msgid "Point Color" -msgstr "Точковий колір" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "Збережіть цей запит як віртуальний набір даних для продовження вивчення" -msgid "Point Radius" -msgstr "Радіус точки" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "Завантажте в CSV" -msgid "Point Radius Scale" -msgstr "Шкала радіуса точки" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "Копіювати в буфер обміну" -msgid "Point Radius Unit" -msgstr "Блок радіуса точки" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "Результати фільтрів" -msgid "Point Size" -msgstr "Розмір точки" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, fuzzy, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" +"Кількість відображених результатів обмежена %(рядами) d за допомогою " +"конфігурації Display_max_Rows. Будь ласка, додайте додаткові " +"обмеження/фільтри або завантажте в CSV, щоб побачити більше рядків до " +"обмеження %(ліміт) D." -msgid "Point Unit" -msgstr "Точкова одиниця" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." +msgstr "" +"Кількість відображених результатів обмежена %(рядки) d. Будь ласка, " +"додайте додаткові ліміти/фільтри, завантажте в CSV або зв’яжіться з " +"адміністратором, щоб побачити більше рядків до обмеження (ліміт) D." -msgid "Point to your spatial columns" -msgstr "Вкажіть на свої просторові стовпці" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "Кількість відображених рядків обмежена %(рядами) d за запитом" -msgid "Points" -msgstr "Очки" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "Кількість відображених рядків обмежена %(рядами) d шляхом спадного краплі." -msgid "Points and clusters will update as the viewport is being changed" -msgstr "Бали та кластери оновляться, коли змінюється ViewPort" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "" +"Кількість відображених рядків обмежена %(рядами) d шляхом запиту та " +"спадного падіння." -msgid "Polygon Column" -msgstr "Полігонна колонка" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "%(rows)d рядки повернулися" -msgid "Polygon Encoding" -msgstr "Кодування багатокутника" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "" +"Кількість відображених рядків обмежена %(рядами) d шляхом спадного " +"падіння." -msgid "Polygon Settings" -msgstr "Налаштування багатокутників" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, python-format +msgid "%s row" +msgstr "%s рядок" -msgid "Polyline" -msgstr "Полілінія" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "Відстежувати" -msgid "Pop Tab Link" -msgstr "Посилання на поп -вкладку" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "See query details" +msgstr "Див. Деталі запиту" -msgid "Popular" -msgstr "Популярний" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "Запит був зупинений" -msgid "Populate \"Default value\" to enable this control" -msgstr "Населення \"значення за замовчуванням\", щоб увімкнути цей контроль" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "Помилка бази даних" -msgid "Population age data" -msgstr "Дані віку населення" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "було створено" -msgid "Port" -msgstr "Порт" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "Запит на новій вкладці" -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "Порт %(port)s на ім'я хоста \" %(hostname)s” відмовився від з'єднання." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "Запит не повертав даних" -msgid "Port out of range 0-65535" -msgstr "Порт поза діапазоном 0-65535" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "Попередній перегляд даних" -msgid "Position JSON" -msgstr "Позиція JSON" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "Результати переробки" -msgid "Position of child node label on tree" -msgstr "Положення етикетки дитячого вузла на дереві" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "СТІЙ" -msgid "Position of column level subtotal" -msgstr "Положення субтотального рівня стовпця" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "Вибір запуску" -msgid "Position of intermediate node label on tree" -msgstr "Положення мітки проміжного вузла на дереві" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "Пробігати" -msgid "Position of row level subtotal" -msgstr "Положення субтотального рівня рядка" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "Перестаньте бігати (Ctrl + x)" -msgid "Powered by Apache Superset" -msgstr "Працює від Superset Apache" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +msgid "Stop running (Ctrl + e)" +msgstr "Перестаньте бігати (Ctrl + E)" -msgid "Pre-filter" -msgstr "Попередній фільтр" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "Запустіть запит (Ctrl + return)" -msgid "Pre-filter available values" -msgstr "Доступні значення попереднього фільтра" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "Заощадити" -msgid "Pre-filter is required" -msgstr "Потрібен попередній фільтр" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +msgid "Untitled Dataset" +msgstr "Без назви набору даних" -msgid "" -"Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is " -"on." -msgstr "" -"Приклад застосовується при отримання чіткого значення для заповнення компонента управління фільтром. Підтримує синтаксис шаблону Jinja. Застосовується лише тоді, " -"коли увімкнено `Увімкнути Filter Select`." +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "Сталася помилка збереження набору даних" -msgid "Predictive" -msgstr "Прогнозний" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "Зберегти або перезаписати набір даних" -msgid "Predictive Analytics" -msgstr "Прогнозування аналітики" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" +msgstr "Спинка" -msgid "Preview" -msgstr "Попередній перегляд" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "Зберегти як нове" -msgid "Preview: `%s`" -msgstr "Попередній перегляд: `%S`" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 +msgid "Overwrite existing" +msgstr "Переписати існуючі" -msgid "Previous" -msgstr "Попередній" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +msgid "Select or type dataset name" +msgstr "Виберіть або введіть ім'я набору даних" -msgid "Previous Line" -msgstr "Попередній рядок" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +msgid "Existing dataset" +msgstr "Існуючий набір даних" -msgid "Primary" -msgstr "Первинний" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 +msgid "Are you sure you want to overwrite this dataset?" +msgstr "Ви впевнені, що хочете перезаписати цей набір даних?" -msgid "Primary Metric" -msgstr "Первинний показник" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "Невизначений" -msgid "Primary key" -msgstr "Первинний ключ" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 +msgid "Save dataset" +msgstr "Зберегти набір даних" -msgid "Primary or secondary y-axis" -msgstr "Первинна або вторинна осі Y" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "Зберегти як" -msgid "Primary y-axis Bounds" -msgstr "Первинні межі вісь Y" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "Зберегти запит" -msgid "Primary y-axis format" -msgstr "Первинний формат осі Y" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "Скасувати" -msgid "Private Key" -msgstr "Приватний ключ" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "Оновлення" -msgid "Private Key & Password" -msgstr "Приватний ключ та пароль" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "Етикетка для вашого запиту" -msgid "Private Key Password" -msgstr "Пароль приватного ключа" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "Напишіть опис свого запиту" -msgid "Proceed" -msgstr "Тривати" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "Подавати" -msgid "Profile" -msgstr "Профіль" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "Запит на розклад" -msgid "Profile picture provided by Gravatar" -msgstr "Зображення профілю, надане Gravatar" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "Розклад" -msgid "Progress" -msgstr "Прогресувати" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "Була помилка з вашим запитом" -msgid "Progressive" -msgstr "Прогресивний" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "Збережіть запит, щоб увімкнути обмін" -msgid "Propagate" -msgstr "Розповсюджувати" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "Скопіюйте посилання на запит у свій буфер обміну" -msgid "Proportional" -msgstr "Пропорційний" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "Збережіть запит, щоб увімкнути цю функцію" -msgid "Public and privately shared sheets" -msgstr "Громадські та приватні діляться аркушами" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "Копіювати посилання" -msgid "Publicly shared sheets only" -msgstr "Публічно поділяються лише аркушами" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "" +"Не знайдено жодних збережених результатів, вам потрібно повторно " +"запустити свій запит" -msgid "Published" -msgstr "Опублікований" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 +msgid "Run a query to display results" +msgstr "Запустіть запит для відображення результатів" -msgid "Purple" -msgstr "Фіолетовий" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "Попередній перегляд: `%S`" -msgid "Put labels outside" -msgstr "Покладіть етикетки назовні" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "Історія запитів" -msgid "Put the labels outside of the pie?" -msgstr "Поставити етикетки поза пирогом?" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "Періодично планувати запит" -msgid "Put the labels outside the pie?" -msgstr "Поставити етикетки поза пирогом?" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "Ви повинні спочатку успішно запустити запит" -msgid "Put your code here" -msgstr "Покладіть свій код сюди" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "Автозаповнення" -msgid "Python datetime string pattern" -msgstr "Python DateTime String шаблон" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "Створити таблицю як" -msgid "QUERY DATA IN SQL LAB" -msgstr "Дані запиту в лабораторії SQL" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "Створити перегляд як" -msgid "Quarter" -msgstr "Чверть" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "Оцініть вартість перед проведенням запиту" -msgid "Quarters %s" -msgstr "Квартали %s" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "Вкажіть ім'я, щоб створити перегляд як схему в: public" -msgid "Queries" -msgstr "Запити" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "Вкажіть ім'я, щоб створити таблицю як схему в: Public" -msgid "Query" -msgstr "Запит" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "Виберіть базу даних, щоб записати запит" -msgid "Query %s: %s" -msgstr "Запит %s: %s" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "Виберіть одну з доступних баз даних з панелі зліва." -msgid "Query A" -msgstr "Запит a" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "Створити" -msgid "Query B" -msgstr "Запит B" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "Попередній перегляд таблиці колапсу" -msgid "Query History" -msgstr "Історія запитів" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" +msgstr "Розширити попередній перегляд таблиці" -msgid "Query does not exist" -msgstr "Запити не існує" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "Скидання стану" -msgid "Query history" -msgstr "Історія запитів" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "Введіть новий заголовок для вкладки" -msgid "Query imported" -msgstr "Імпортний запит" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "Вкладка Закрийте" -msgid "Query in a new tab" -msgstr "Запит на новій вкладці" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "Перейменуйте вкладку" -msgid "Query is too complex and takes too long to run." -msgstr "Запит занадто складний і займає занадто багато часу." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "Розгорнути панель інструментів" -msgid "Query mode" -msgstr "Режим запиту" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "Сховати панель інструментів" -msgid "Query name" -msgstr "Назва запиту" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "Закрийте всі інші вкладки" -msgid "Query preview" -msgstr "Попередній перегляд запитів" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "Вкладка дублікатів" -msgid "Query was stopped" -msgstr "Запит був зупинений" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" +msgstr "Додайте нову вкладку" -msgid "Query was stopped." -msgstr "Запит зупинився." +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "Нова вкладка (Ctrl + Q)" -msgid "RANGE TYPE" -msgstr "Тип дальності" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "Нова вкладка (Ctrl + T)" -msgid "RGB Color" -msgstr "RGB Колір" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "Додайте нову вкладку, щоб створити запит SQL" -msgid "RLS Rule could not be deleted." -msgstr "Правило RLS не можна було видалити." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "Помилка сталася під час отримання метаданих таблиці" -msgid "RLS Rule not found." -msgstr "Правило RLS не знайдено." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "Скопіюйте запит на розділ у буфер обміну" -msgid "Radar" -msgstr "Радар" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "останній розділ:" -msgid "Radar Chart" -msgstr "Радарна діаграма" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "Ключі для столу" -msgid "Radar render type, whether to display 'circle' shape." -msgstr "Тип радіолокаційного візуалізації, чи відображати форму \"кола\"." +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "Переглянути ключі та індекси (%s)" -msgid "Radial" -msgstr "Радіальний" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "Оригінальне замовлення стовпця таблиці" -msgid "Radius in kilometers" -msgstr "Радіус у кілометрах" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "Сортувати стовпці в алфавітному" -msgid "Radius in meters" -msgstr "Радіус у метрах" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "Скопіюйте оператор SELECT у буфер обміну" -msgid "Radius in miles" -msgstr "Радіус у милях" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "Показати заяву про створення перегляду" -msgid "Ran %s" -msgstr "Ran %s" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "Створіть оператор перегляду" -msgid "Range" -msgstr "Діапазон" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "Видалити попередній перегляд таблиці" -msgid "Range filter" -msgstr "Фільтр діапазону" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +msgid "Assign a set of parameters as" +msgstr "Призначити набір параметрів як" -msgid "Range filter plugin using AntD" -msgstr "Діапазон фільтрів плагін за допомогою ANTD" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "нижче (приклад:" -msgid "Range labels" -msgstr "Етикетки діапазону" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" +msgstr "), і вони стають доступними у вашому SQL (приклад:" -msgid "Ranges" -msgstr "Діапазони" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "з допомогою" -msgid "Ranges to highlight with shading" -msgstr "Діапазони, щоб виділити за допомогою затінення" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +msgid "Jinja templating" +msgstr "Шаблон джинджа" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +msgid "syntax." +msgstr "синтаксис." -msgid "Ranking" -msgstr "Рейтинг" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "Редагувати параметри шаблону" -msgid "Ratio" -msgstr "Співвідношення" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " +msgstr "Параметри " -msgid "Raw records" -msgstr "RAW Records" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "Недійсний JSON" -msgid "Ready to review filters in this dashboard?" -msgstr "Готові переглянути фільтри на цій інформаційній панелі?" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "Неправлений запит" -msgid "Rebuild" -msgstr "Відновлювати" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" -msgid "Recent activity" -msgstr "Остання активність" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +msgid "Control" +msgstr "КОНТРОЛЬ" -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "Нещодавно створені діаграми, інформаційні панелі та збережені запити з’являться тут" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "До" -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "Нещодавно відредаговані діаграми, інформаційні панелі та збереженні запити з’являться тут" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "Після" -msgid "Recently modified" -msgstr "Нещодавно змінений" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "Клацніть, щоб побачити різницю" -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "Нещодавно переглянуті діаграми, інформаційні панелі та збережені запити з’являться тут" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "Змінений" -msgid "Recents" -msgstr "Втілення" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "Зміни діаграми" -msgid "Recipients are separated by \",\" or \";\"" -msgstr "Одержувачі розділені \",\" або \";\"" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "Останнє змінено на %s" -msgid "Recommended tags" -msgstr "Рекомендовані теги" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "Завантажені дані кешуються" -msgid "Record Count" -msgstr "Реєстрація" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "Завантажений з кешу" -msgid "Rectangle" -msgstr "Прямокутник" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "Клацніть, щоб примусити-рефреш" -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "Перенаправлення до цієї кінцевої точки при натисканні на таблицю зі списку таблиці" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +msgid "Cached" +msgstr "Кешевий" -msgid "Redo the action" -msgstr "Переробити дію" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" +msgstr "Додайте необхідні контрольні значення для попереднього перегляду діаграми" -msgid "Reduce X ticks" -msgstr "Зменшіть X кліщів" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "Ваша діаграма готова йти!" +#: superset-frontend/src/components/Chart/Chart.jsx:274 msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to " -"columns and the width may overflow into an horizontal scroll." +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -"Зменшує кількість кліщів осі, які потрібно надати. Якщо це правда, осі x не переповнюється, а мітки можуть відсутні. Якщо помилково, до стовпців буде застосовано " -"мінімальна ширина, а ширина може переливатися в горизонтальний сувій." - -msgid "Refer to the" -msgstr "Зверніться до" - -msgid "Referenced columns not available in DataFrame." -msgstr "Посилання на стовпці недоступні в даних даних." +"Натисніть кнопку \"Створити діаграму\" на панелі управління зліва, щоб " +"переглянути візуалізацію або" -msgid "Refetch results" -msgstr "Результати переробки" +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "натисніть тут" -msgid "Refresh" -msgstr "Оновлювати" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "Для цього запиту не було повернуто жодних результатів" -msgid "Refresh dashboard" -msgstr "Оновити інформаційну панель" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" +msgstr "" +"Переконайтесь, що елементи керування налаштовано належним чином, а " +"DataSource містить дані для вибраного часового діапазону" -msgid "Refresh frequency" -msgstr "Частота оновлення" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "Під час завантаження SQL сталася помилка" -msgid "Refresh interval" -msgstr "Інтервал оновлення" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +msgid "Sorry, an error occurred" +msgstr "Вибачте, сталася помилка" -msgid "Refresh interval saved" -msgstr "Оновити інтервал збережено" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "Оновлення діаграми було припинено" -msgid "Refresh table list" -msgstr "Список оновлення таблиці" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "Під час візуалізації сталася помилка: %s" -msgid "Refresh tables" -msgstr "Оновити столи" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Помилка мережі." -msgid "Refresh the default values" -msgstr "Оновити значення за замовчуванням" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" +"Перехресний фільтр буде застосований до всіх діаграм, які використовують " +"цей набір даних." -msgid "Refreshing charts" -msgstr "Освіжаючі діаграми" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "" +"Ви також можете просто натиснути на діаграму, щоб застосувати перехресний" +" фільтр." -msgid "Refreshing columns" -msgstr "Освіжаючі стовпці" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі." -msgid "Regex" -msgstr "Регекс" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 +msgid "This visualization type does not support cross-filtering." +msgstr "Цей тип візуалізації не підтримує перехресне фільтрування." -msgid "Regular" -msgstr "Регулярний" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." +msgstr "Ви не можете застосувати перехресний фільтр у цій точці даних." -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined " -"in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them." -msgstr "" -"Регулярні фільтри додають, де до запитів, якщо користувач належить до ролі, що посилається у фільтрі, базові фільтри застосовують фільтри до всіх запитів, крім " -"ролей, визначених у фільтрі, і можуть бути використані для визначення того, що користувачі можуть побачити, чи немає фільтрів RLS у межах a Група фільтрів " -"застосовується до них." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 +msgid "Remove cross-filter" +msgstr "Видаліть перехресний фільтр" -msgid "Relational" -msgstr "Реляційний" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 +msgid "Add cross-filter" +msgstr "Додати перехресний фільтр" -msgid "Relationships between community channels" -msgstr "Відносини між каналами громади" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "Не вдалося завантажити розміри для свердління" -msgid "Relative Date/Time" -msgstr "Відносна дата/час" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "Свердло ще не підтримується для цього типу діаграми" -msgid "Relative period" -msgstr "Відносний період" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "Свердло не доступне для цієї точки даних" -msgid "Relative quantity" -msgstr "Відносна кількість" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "Свердлити" -msgid "Reload" -msgstr "Перезавантажувати" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" +msgstr "Пошук стовпців" -msgid "Remind me in 24 hours" -msgstr "Нагадайте мені через 24 години" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +msgid "No columns found" +msgstr "Не знайдено стовпців" -msgid "Remove" -msgstr "Видалити" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" +msgstr "Не вдалося створити URL -адресу редагування діаграм" -msgid "Remove cross-filter" -msgstr "Видаліть перехресний фільтр" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "Ви не маєте дозволу на редагування цієї діаграми" -msgid "Remove invalid filters" -msgstr "Видаліть недійсні фільтри" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 +msgid "Edit chart" +msgstr "Редагувати діаграму" -msgid "Remove item" -msgstr "Видаліть елемент" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "Закривати" -msgid "Remove query from log" -msgstr "Видаліть запит з журналу" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "Не вдалося завантажити дані діаграми." -msgid "Remove table preview" -msgstr "Видалити попередній перегляд таблиці" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, python-format +msgid "Drill by: %s" +msgstr "Свердлити: %s" -msgid "Removed columns: %s" -msgstr "Видалені стовпці: %s" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 +msgid "There was an error loading the chart data" +msgstr "Була помилка завантаження даних діаграми" -msgid "Rename tab" -msgstr "Перейменуйте вкладку" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Результати %s" -msgid "Rendering" -msgstr "Візуалізація" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "Свердлити до деталей" -msgid "Replace" -msgstr "Замінити" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "Свердлити до деталей" -msgid "Report" -msgstr "Доповідь" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." +msgstr "" +"Дріль до деталей вимкнено, оскільки ця діаграма не групує дані за " +"значенням розмірності." -msgid "Report Name" -msgstr "Назва звіту" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" +"Свердло до деталей за значенням ще не підтримується для цього типу " +"діаграми." -msgid "Report Schedule could not be created." -msgstr "Графік звітів не вдалося створити." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" +"Клацніть правою кнопкою миші на значення виміру, щоб до деталей за цим " +"значенням." -msgid "Report Schedule could not be deleted." -msgstr "Графік звітів не можна було видалити." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "Свердло до деталей: %s" -msgid "Report Schedule could not be updated." -msgstr "Графік звіту не можна було оновити." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +msgid "Formatting" +msgstr "Форматування" -msgid "Report Schedule delete failed." -msgstr "Графік звіту Видалити не вдалося." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +msgid "Formatted value" +msgstr "Відформатоване значення" -msgid "Report Schedule execution failed when generating a csv." -msgstr "Виконання графіку звіту не вдалося при створенні CSV." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "Для цього набору даних не було повернуто рядків" -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "Виконання графіку звіту не вдалося при створенні даних даних." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +msgid "Reload" +msgstr "Перезавантажувати" -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "Виконання графіку звіту не вдалося при створенні скріншота." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "Копіювати" -msgid "Report Schedule execution got an unexpected error." -msgstr "Виконання графіку звіту Отримано несподівану помилку." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "Копіювати в буфер обміну" -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "Графік звіту все ще працює, відмовляючись від повторного складання." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "Скопіюється в буфер обміну!" -msgid "Report Schedule log prune failed." -msgstr "Не вдалося очистити логи Звіту Розкладу." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "" +"Вибачте, ваш браузер не підтримує копіювання. Використовуйте CTRL / CMD +" +" C!" -msgid "Report Schedule not found." -msgstr "Розклад звіту не знайдено." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "кожен" -msgid "Report Schedule parameters are invalid." -msgstr "Параметри розкладу звіту недійсні." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "щомісяця" -msgid "Report Schedule reached a working timeout." -msgstr "Графік звітів досяг робочого тайм -ауту." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "кожен день місяця" -msgid "Report Schedule state not found" -msgstr "Держава розкладу звітів не знайдена" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "день місяця" -msgid "Report a bug" -msgstr "Повідомте про помилку" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "кожен день тижня" -msgid "Report failed" -msgstr "Звіт не вдалося" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "день тижня" -msgid "Report name" -msgstr "Назва звіту" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "щогодини" -msgid "Report schedule" -msgstr "Розклад звіту" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" +msgstr "щохвилини" -msgid "Report schedule client error" -msgstr "Помилка звіту про графік звітів" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "хвилина" -msgid "Report schedule system error" -msgstr "Помилка системи розкладу звітів" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "перезавантажити" -msgid "Report schedule unexpected error" -msgstr "Графік звіту про несподівану помилку" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "Кожен" -msgid "Report sending" -msgstr "Надсилання звітів" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "у" -msgid "Report sent" -msgstr "Звіт надісланий" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "на" -msgid "Report updated" -msgstr "Звіт про оновлений" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "і" -msgid "Reports" -msgstr "Звіти" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "в" -msgid "Repulsion" -msgstr "Відштовхування" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" -msgid "Repulsion strength between nodes" -msgstr "Сила відштовхування між вузлами" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "хвилини" -msgid "Request Permissions" -msgstr "Попросити дозволи" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "Недійсний вираз Cron" -msgid "Request is incorrect: %(error)s" -msgstr "Запит невірний: %(error)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "Чіткий" -msgid "Request is not JSON" -msgstr "Запит - це не json" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "Неділя" -msgid "Request missing data field." -msgstr "Запит пропущеного поля даних." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "Понеділок" -msgid "Request timed out" -msgstr "Час запиту вичерпано" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "У вівторок" -msgid "Required" -msgstr "Вимагається" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "Середа" -msgid "Required control values have been removed" -msgstr "Необхідні контрольні значення були видалені" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "Четвер" -msgid "Resample" -msgstr "Перепродаж" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "П’ятниця" -msgid "Resample method should in " -msgstr "Метод REPAMBLE повинен в " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "Субота" -msgid "Resample operation requires DatetimeIndex" -msgstr "REPAMBLE ORTERCTION вимагає DateTimeIndex" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "Січень" -msgid "Reset" -msgstr "Скинути" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "Лютий" -msgid "Reset state" -msgstr "Скидання стану" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "Марш" -msgid "Resource already has an attached report." -msgstr "Ресурс вже має доданий звіт." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "Квітень" -msgid "Resource was not found." -msgstr "Ресурс не був знайдений." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "Може" -msgid "Restore Filter" -msgstr "Відновити фільтр" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "Червень" -msgid "Results" -msgstr "Результат" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "Липень" -msgid "Results %s" -msgstr "Результати %s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "Серпень" -msgid "Results backend is not configured." -msgstr "Бекенд результатів не налаштовано." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "Вересень" -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "Результати, необхідні для асинхронних запитів, не налаштована." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "Жовтень" -msgid "Return to specific datetime." -msgstr "Повернення до конкретного часу." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "Листопад" -msgid "Reverse Lat & Long" -msgstr "Зворотний лат і довгий" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "Грудень" -msgid "Reverse lat/long " -msgstr "Зворотня шир/довгота " +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "Сонце" -msgid "Rich Tooltip" -msgstr "Багатий підказки" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "Мн" -msgid "Rich tooltip" -msgstr "Багатий підказки" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "Зміст" -msgid "Right" -msgstr "Право" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "Одружуватися" -msgid "Right Axis Format" -msgstr "Формат правої осі" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "Чт" -msgid "Right Axis Metric" -msgstr "Метрика правої осі" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "Пт" -msgid "Right axis metric" -msgstr "Метрика правої осі" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "Сидіти" -msgid "Right to Left" -msgstr "Праворуч зліва" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "Ян" -msgid "Right value" -msgstr "Правильне значення" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "Лютий" -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "Клацніть правою кнопкою миші на значення виміру, щоб до деталей за цим значенням." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "Марнотратство" -msgid "Role" -msgstr "Роль" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "Квітня" -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "Роль %(r)s була розширена для забезпечення доступу до даних %(ds)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "МОЖЕ" -msgid "Roles" -msgstr "Ролі" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "Червень" -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks. If no roles are defined, regular " -"access permissions apply." -msgstr "" -"Ролі - це список, який визначає доступ до інформаційної панелі. Надання ролі доступу до інформаційної панелі буде обходити перевірки рівня набору даних. Якщо не " -"визначено ролей, застосовуються регулярні дозволи на доступ." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "Липень" -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role access to a dashboard will bypass dataset level checks.If no roles are defined, regular access " -"permissions apply." -msgstr "" -"Ролі - це список, який визначає доступ до інформаційної панелі. Надання ролі доступу до інформаційної панелі буде обходити перевірки рівня набору даних. Якщо " -"визначаються жодні ролі, застосовуються регулярні дозволи на доступ." +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "Серпень" -msgid "Roles to grant" -msgstr "Ролі для надання" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "Сеп" -msgid "Rolling Function" -msgstr "Функція прокатки" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "Жовт" -msgid "Rolling Window" -msgstr "Коктейльне вікно" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "Листопада" -msgid "Rolling function" -msgstr "Функція прокатки" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "Ухвала" -msgid "Rolling window" -msgstr "Коктейльне вікно" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "Сталася помилка, що завантажує схеми" -msgid "Root certificate" -msgstr "Кореневий сертифікат" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +msgid "Select database or type to search databases" +msgstr "Виберіть базу даних або введіть у пошукові бази даних" -msgid "Root node id" -msgstr "Ідентифікатор кореневого вузла" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "Список схеми оновлення сили" -msgid "Rotate axis label" -msgstr "Обертати мітку осі" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 +msgid "Select schema or type to search schemas" +msgstr "Виберіть схему або введіть для схем пошуку" -msgid "Rotate x axis label" -msgstr "Обертати мітку осі X" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 +msgid "No compatible schema found" +msgstr "Не знайдено сумісної схеми" -msgid "Rotation to apply to words in the cloud" -msgstr "Обертання, щоб застосувати до слів у хмарі" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "УВАГА! Зміна набору даних може порушити діаграму, якщо метаданих не існує." -msgid "Round cap" -msgstr "Круглий cap" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "" +"Зміна набору даних може зламати діаграму, якщо діаграма покладається на " +"стовпці або метадані, які не існують у цільовому наборі даних" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "набір даних" -msgid "Row" -msgstr "Рядок" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +msgid "Successfully changed dataset!" +msgstr "Успішно змінили набір даних!" -msgid "Row Level Security" -msgstr "Безпека на рівні рядків" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "З'єднання" -msgid "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row" -msgstr "Рядок, що містить заголовки, які використовуються як імена стовпців (0 - це перший рядок даних). Залиште порожнім, якщо немає рядка заголовка" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +msgid "Swap dataset" +msgstr "Swap DataSet" -msgid "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row." -msgstr "Рядок, що містить заголовки, які використовуються як імена стовпців (0 - це перший рядок даних). Залиште порожній, якщо немає рядка заголовка." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +msgid "Proceed" +msgstr "Тривати" -msgid "Row limit" -msgstr "Межа рядка" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "УВАГА!" -msgid "Rows" -msgstr "Ряди" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "Пошук / фільтр" -msgid "Rows per page, 0 means no pagination" -msgstr "Рядки на сторінку, 0 означає, що немає пагінації" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "Додати елемент" -msgid "Rows subtotal position" -msgstr "Рядки субтотального положення" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 +msgid "STRING" +msgstr "Нитка" -msgid "Rows to Read" -msgstr "Ряди для читання" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +msgid "NUMERIC" +msgstr "Числовий" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +msgid "DATETIME" +msgstr "ДАТА, ЧАС" -msgid "Rule" -msgstr "Правити" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" +msgstr "Булевий" -msgid "Rule Name" -msgstr "Назва права" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "Фізичний (таблиця або перегляд)" -msgid "Rule added" -msgstr "Додано правило" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "Віртуальний (SQL)" -msgid "Run" -msgstr "Пробігати" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "Тип даних" -msgid "Run a query to display query history" -msgstr "Запустіть запит для відображення історії запитів" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 +msgid "Advanced data type" +msgstr "Розширений тип даних" -msgid "Run a query to display results" -msgstr "Запустіть запит для відображення результатів" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +msgid "Advanced Data type" +msgstr "Розширений тип даних" -msgid "Run in SQL Lab" -msgstr "Запустити в SQL Lab" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "Формат DateTime" -msgid "Run query" -msgstr "Запустити запит" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "Візерунок формату часової позначки. Для використання рядків " -msgid "Run query (Ctrl + Return)" -msgstr "Запустіть запит (Ctrl + return)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Python DateTime String шаблон" -msgid "Run query in a new tab" -msgstr "Запустіть запит на новій вкладці" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr " вираз, який повинен дотримуватися до " -msgid "Run selection" -msgstr "Вибір запуску" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -msgid "Running" -msgstr "Біг" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" +" стандарт для забезпечення лексикографічного впорядкування\n" +" збігається з хронологічним впорядкуванням. Якщо\n" +" Формат часової позначки не дотримується стандарту " +"ISO 8601\n" +" Вам потрібно буде визначити вираз і ввести для\n" +" перетворення рядка на дату або часову позначку. " +"Примітка\n" +" В даний час часові пояси не підтримуються. Якщо час" +" зберігається\n" +" У форматі епохи поставте `epoch_s` або` epoch_ms`. " +"Якщо немає шаблону\n" +" вказано, що ми повертаємось до використання " +"додаткових за замовчуванням на Per\n" +" Рівень імені даних/стовпця через додатковий " +"параметр." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "Сертифікований" -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "Запуск оператора %(statement_num)s з %(statement_count)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "Особа або група, яка сертифікувала цей показник" -msgid "SAT" -msgstr "Сидіти" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "Сертифікований" -msgid "SEP" -msgstr "Сеп" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "Деталі сертифікації" -msgid "SHA" -msgstr "Ша" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "Деталі сертифікації" -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "Це розмір" -msgid "SQL Copied!" -msgstr "SQL скопійований!" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +msgid "Default datetime" +msgstr "DateTime за замовчуванням" -msgid "SQL Expression" -msgstr "Вираз SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "Є фільтруючим" -msgid "SQL Lab" -msgstr "SQL LAB" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +msgid "" +msgstr "<новий стовпець>" -msgid "SQL Lab View" -msgstr "Перегляд лабораторії SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" +msgstr "Виберіть власників" -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." -msgstr "" -"SQL Lab використовує місцеве сховище вашого браузера для зберігання запитів та результатів.\n" -"В даний час ви використовуєте %(currentUsage)s KB з %(maxStorage)d KB зберігання.\n" -"Щоб не зійти в лабораторію SQL, будь ласка, видаліть кілька вкладок запитів.\n" -"Ви можете повторно отримати ці запити, використовуючи функцію збереження, перш ніж видалити вкладку.\n" -"Зауважте, що вам потрібно буде закрити інші вікна лабораторії SQL, перш ніж це зробити." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "Модифіковані стовпці: %s" -msgid "SQL Query" -msgstr "SQL -запит" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 +#, python-format +msgid "Removed columns: %s" +msgstr "Видалені стовпці: %s" -msgid "SQL expression" -msgstr "Вираз SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "Додано нові стовпці: %s" -msgid "SQL query" -msgstr "SQL -запит" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "Метадані синхронізовані" -msgid "SQLAlchemy URI" -msgstr "Sqlalchemy uri" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "Сталася помилка" -msgid "SSH Host" -msgstr "SSH -хост" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "Назва стовпця [%s] дублюється" -msgid "SSH Password" -msgstr "Пароль SSH" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "Метрична назва [%s] дублюється" -msgid "SSH Port" -msgstr "SSH -порт" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "Обчислений стовпчик [%s] вимагає виразу" -msgid "SSH Tunnel" -msgstr "SSH тунель" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "" -msgid "SSH Tunnel configuration parameters" -msgstr "Параметри конфігурації тунелю SSH" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "Основний" -msgid "SSH Tunnel could not be deleted." -msgstr "Тунель SSH не вдалося видалити." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "URL -адреса за замовчуванням" -msgid "SSH Tunnel could not be updated." -msgstr "Тунель SSH не вдалося оновити." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "" +"URL -адреса за замовчуванням для перенаправлення на доступ до доступу зі " +"сторінки списку даних" -msgid "SSH Tunnel not found." -msgstr "Тунель SSH не знайдено." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "Автоматичні фільтри" -msgid "SSH Tunnel parameters are invalid." -msgstr "Параметри тунелю SSH недійсні." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "Чи заповнити автозаповнення параметрів фільтрів" -msgid "SSH Tunneling is not enabled" -msgstr "Тунелювання SSH не ввімкнено" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "Auto -Complete Query Prediac" -msgid "SSL Mode \"require\" will be used." -msgstr "Буде використаний режим SSL \"вимагати\"." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." +msgstr "" +"При використанні \"автозаповнених фільтрів\" це може бути використане для" +" підвищення продуктивності запиту отримання значень. Використовуйте цю " +"опцію, щоб застосувати предикат (де пункт) до запиту, що вибирає різні " +"значення з таблиці. Зазвичай наміром було б обмежити сканування, " +"застосовуючи відносний часовий фільтр на розділеному або індексованому " +"поле, пов’язаному з часом." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." +msgstr "" +"Додаткові дані для визначення метаданих таблиць. В даний час підтримує " +"метадані формату: `{\" Сертифікація \": {\" сертифікат_by \":\" Команда " +"платформи даних \",\" Деталі \":\" Ця таблиця є джерелом істини \". }, " +"\"попередження_markdown\": \"Це попередження\". } `." -msgid "START (INCLUSIVE)" -msgstr "Почати (включно)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "Тайм -аут кешу" -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "Крок %(stepCurr)s %(stepLast)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "" +"Тривалість часу за секунди до кешу недійсна. Встановіть -1, щоб обійти " +"кеш." -msgid "STRING" -msgstr "Нитка" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "Години зміщення" -msgid "SUN" -msgstr "Сонце" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "" +"Кількість годин, негативна чи позитивна, щоб змістити стовпчик часу. Це " +"можна використовувати для переміщення часу UTC до місцевого часу." -msgid "Sample Standard Deviation" -msgstr "Зразок стандартного відхилення" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 +#, fuzzy +msgid "Normalize column names" +msgstr "Налаштуйте стовпці" -msgid "Sample Variance" -msgstr "Дисперсія зразка" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 +#, fuzzy +msgid "Always filter main datetime column" +msgstr "Основний стовпець DateTime" -msgid "Samples" -msgstr "Зразки" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -msgid "Samples for dataset could not be retrieved." -msgstr "Зразки для набору даних не вдалося отримати." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 +msgid "" +msgstr "<новий просторовий>" -msgid "Samples for datasource could not be retrieved." -msgstr "Зразки для даних не вдалося отримати." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 +msgid "" +msgstr "<без типу>" -msgid "Sankey" -msgstr "Санкі" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "Клацніть замок, щоб внести зміни." -msgid "Sankey Diagram" -msgstr "Діаграма Санкі" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "Клацніть замок, щоб запобігти подальшим змінам." -msgid "Sankey Diagram with Loops" -msgstr "Діаграма Санкі з петлями" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "віртуальний" -msgid "Satellite" -msgstr "Супутник" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "Назва набору даних" -msgid "Satellite Streets" -msgstr "Супутникові вулиці" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "" +"При вказівці SQL, DataSource виступає як погляд. Superset " +"використовуватиме це твердження як підрозділ під час групування та " +"фільтрації на створених батьківських запитах." -msgid "Saturday" -msgstr "Субота" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "Фізичний" -msgid "Save" -msgstr "Заощадити" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" +"Вказівник на фізичну таблицю (або переглянути). Майте на увазі, що " +"діаграма пов'язана з цією логічною таблицею Superset, і ця логічна " +"таблиця вказує на фізичну таблицю, на яку посилається тут." -msgid "Save & Explore" -msgstr "Зберегти та досліджувати" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 +#, fuzzy +msgid "Metric Key" +msgstr "метричний" -msgid "Save & go to dashboard" -msgstr "Збережіть та перейдіть на інформаційну панель" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." +msgstr "" -msgid "Save & go to new dashboard" -msgstr "Збережіть та перейдіть на нову інформаційну панель" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "Формат D3" -msgid "Save (Overwrite)" -msgstr "Зберегти (перезапис)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -msgid "Save as" -msgstr "Зберегти як" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 +#, fuzzy +msgid "Select or type currency symbol" +msgstr "Виберіть або введіть значення" -msgid "Save as Dataset" -msgstr "Збережіть як набір даних" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "УВАГА" -msgid "Save as dataset" -msgstr "Збережіть як набір даних" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "Необов’язкове попередження про використання цієї метрики" -msgid "Save as new" -msgstr "Зберегти як нове" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 +msgid "" +msgstr "<Новий метрик>" -msgid "Save as new chart" -msgstr "Збережіть як нову діаграму" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "Будь обережний." -msgid "Save as..." -msgstr "Зберегти як..." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "" +"Зміна цих налаштувань вплине на всі діаграми за допомогою цього набору " +"даних, включаючи діаграми, що належать іншим людям." -msgid "Save as:" -msgstr "Зберегти як:" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "Синхронізовані стовпці з джерела" -msgid "Save changes" -msgstr "Зберегти зміни" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "Обчислені стовпці" -msgid "Save chart" -msgstr "Зберегти діаграму" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -msgid "Save dashboard" -msgstr "Зберегти приладову панель" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "<введіть вираз SQL тут>" -msgid "Save dataset" -msgstr "Зберегти набір даних" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "Налаштування" -msgid "Save for this session" -msgstr "Збережіть для цього сеансу" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "Набір даних зберігається" -msgid "Save or Overwrite Dataset" -msgstr "Зберегти або перезаписати набір даних" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 +#, fuzzy +msgid "Error saving dataset" +msgstr "Сталася помилка збереження набору даних" -msgid "Save query" -msgstr "Зберегти запит" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." +msgstr "" +"Конфігурація набору даних, викрита тут\n" +" впливає на всі діаграми за допомогою цього набору даних.\n" +" Пам’ятайте, що зміна налаштувань\n" +" Тут може вплинути на інші діаграми\n" +" небажаними способами." -msgid "Save the query to enable this feature" -msgstr "Збережіть запит, щоб увімкнути цю функцію" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "Ви впевнені, що хочете зберегти та застосувати зміни?" -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "Збережіть цей запит як віртуальний набір даних для продовження вивчення" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "Підтвердьте збереження" -msgid "Save to new dashboard" -msgstr "Збережіть на новій інформаційній панелі" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "в порядку" -msgid "Saved" -msgstr "Врятований" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "Редагувати набір даних " -msgid "Saved Queries" -msgstr "Збережені запити" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "Використовуйте редактор Legacy DataSource" -msgid "Saved expressions" -msgstr "Збережені вирази" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "Цей набір даних керує зовні, і його не можна редагувати в суперсеті" -msgid "Saved metric" -msgstr "Збережені метрики" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "Видаляти" -msgid "Saved queries" -msgstr "Збережені запити" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "видаляти" -msgid "Saved queries could not be deleted." -msgstr "Збережені запити не можливо видалити." +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "Введіть “%s” для підтвердження" -msgid "Saved query not found." -msgstr "Збережений запит не знайдено." +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +msgid "More" +msgstr "Більше" -msgid "Saved query parameters are invalid." -msgstr "Збережені параметри запиту недійсні." +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "Клацніть, щоб редагувати" -msgid "Scale and Move" -msgstr "Масштаб і рухайтеся" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Ви не маєте прав на зміну цієї назви." -msgid "Scale only" -msgstr "Лише масштаб" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "Жодне бази даних не відповідає вашому пошуку" -msgid "Scatter" -msgstr "Розсіювати" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "Баз даних немає" -msgid "Scatter Plot" -msgstr "Діаграма розкиду" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" +msgstr "Керуйте своїми базами даних" -msgid "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables." -msgstr "Сюжет розсіювання має горизонтальну вісь у лінійних одиницях, а точки з'єднані в порядку. Він показує статистичну залежність між двома змінними." +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +msgid "here" +msgstr "ось" -msgid "Schedule" -msgstr "Розклад" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "Неочікувана помилка" -msgid "Schedule a new email report" -msgstr "Заплануйте новий звіт електронної пошти" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "Це може бути спровоковано:" -msgid "Schedule email report" -msgstr "Розклад звіту електронної пошти" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +msgid "Please reach out to the Chart Owner for assistance." +msgstr "Будь ласка, зверніться до власника діаграми за допомогою." -msgid "Schedule query" -msgstr "Запит на розклад" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, python-format +msgid "Chart Owner: %s" +msgstr "Власник діаграми: %s" -msgid "Schedule settings" -msgstr "Налаштування розкладу" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" +msgstr "" +"%(message)s\n" +"Це може бути спровоковано:\n" +"%(issues)s" -msgid "Schedule the query periodically" -msgstr "Періодично планувати запит" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s помилка" -msgid "Scheduled" -msgstr "Запланований" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "Відсутній набір даних" -msgid "Scheduled at (UTC)" -msgstr "Запланований за адресою (UTC)" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "Побачити більше" -msgid "Scheduled task executor not found" -msgstr "Запланований виконавець завдань не знайдено" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "Див. Менше" -msgid "Schema" -msgstr "Схема" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "Скопіюйте повідомлення" -msgid "Schema cache timeout" -msgstr "Час очікування кешу схеми" +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 +#, fuzzy +msgid "Details" +msgstr "Підсумки" -msgid "Schema undefined" -msgstr "Схема невизначена" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +msgid "This was triggered by:" +msgstr "Це викликало:" -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "Схема, як використовується лише в деяких базах даних, таких як Postgres, Redshift та DB2" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "Ти мав на увазі:" -msgid "Schemas allowed for File upload" -msgstr "Схеми дозволені для завантаження файлів" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "%(suggestion)s замість “%(undefinedParameter)s?\"" -msgid "Scope" -msgstr "Область" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "Помилка параметра" -msgid "Scoping" -msgstr "Виділення області" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgstr "" +"У нас виникають проблеми з завантаженням цієї візуалізації. Запити " +"встановлюються на таймаут після %s секунди." -msgid "Scroll" -msgstr "Прокрутити" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgstr "" +"У нас виникають проблеми з завантаженням цих результатів. Запити " +"встановлюються на таймаут після %s секунди." -msgid "Scroll down to the bottom to enable overwriting changes. " -msgstr "Прокрутіть донизу, щоб увімкнути перезапис змін. " +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "" +"%(subtitle)s\n" +"Це може бути спровоковано:\n" +" %(issue)s" -msgid "Search" -msgstr "Пошук" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "Помилка тайм -ауту" -msgid "Search / Filter" -msgstr "Пошук / фільтр" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "Клацніть на улюблений/несправедливий" -msgid "Search Metrics & Columns" -msgstr "Пошук показників та стовпців" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "Вміст клітин" -msgid "Search all charts" -msgstr "Шукайте всі діаграми" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 +msgid "Hide password." +msgstr "Приховати пароль." -msgid "Search all filter options" -msgstr "Шукайте всі параметри фільтра" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 +msgid "Show password." +msgstr "Показати пароль." -msgid "Search box" -msgstr "Поле пошуку" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " +msgstr "" +"Драйвер бази даних для імпорту, можливо, не встановлений. Відвідайте " +"сторінку документації Superset для інструкцій щодо встановлення: " -msgid "Search by query text" -msgstr "Пошук за текстом запитів" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "Переписувати" -msgid "Search columns" -msgstr "Пошук стовпців" +#: superset-frontend/src/components/ImportModal/index.tsx:291 +msgid "Database passwords" +msgstr "Паролі бази даних" -msgid "Search in filters" -msgstr "Пошук у фільтрах" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, python-format +msgid "%s PASSWORD" +msgstr "%s пароль" -msgid "Search tables" -msgstr "Пошукові таблиці" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" +msgstr "%s SSH Тунельний пароль" -msgid "Search..." -msgstr "Пошук ..." +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" +msgstr "%s SSH Tunnel Private Key" -msgid "Second" -msgstr "Другий" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "%s SSH тунель приватного пароля" -msgid "Secondary" -msgstr "Вторинний" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "Переписувати" -msgid "Secondary Metric" -msgstr "Вторинна метрика" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "Імпорт" -msgid "Secondary y-axis Bounds" -msgstr "Вторинні межі осі y" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "Імпорт %s" -msgid "Secondary y-axis format" -msgstr "Вторинний формат осі Y" +#: superset-frontend/src/components/ImportModal/index.tsx:445 +msgid "Select file" +msgstr "Виберіть Файл" -msgid "Secondary y-axis title" -msgstr "Вторинна назва осі Y" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "Останній оновлений %s" -msgid "Seconds %s" -msgstr "Секунди %s" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "Сортувати" -msgid "Secure Extra" -msgstr "Забезпечити додаткове" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "+ %s більше" + +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s вибраний" -msgid "Secure extra" -msgstr "Забезпечити додаткове" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "Скасувати всі" -msgid "Security" -msgstr "Безпека" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +#, fuzzy +msgid "Add Tag" +msgstr "мітка" -msgid "Security & Access" -msgstr "Безпека та доступ" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "Ніякі результати не відповідають вашим критеріям фільтра" -msgid "See all %(tableName)s" -msgstr "Див. All %(tableName)s" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "Спробуйте різні критерії для відображення результатів." -msgid "See less" -msgstr "Див. Менше" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +msgid "clear all filters" +msgstr "очистіть усі фільтри" -msgid "See more" -msgstr "Побачити більше" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "Немає даних" -msgid "See query details" -msgstr "Див. Деталі запиту" +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format +msgid "%s-%s of %s" +msgstr "%s-%s з %s" -msgid "See table schema" -msgstr "Див. Схему таблиці" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "Start date" +msgstr "Дата початку" -msgid "Select" -msgstr "Обраний" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +msgid "End date" +msgstr "Дата закінчення" -msgid "Select ..." -msgstr "Виберіть ..." +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "Введіть значення" -msgid "Select Delivery Method" -msgstr "Виберіть метод доставки" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "Фільтрувати" -msgid "Select Viz Type" -msgstr "Виберіть тип ITE" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "Виберіть або введіть значення" -msgid "Select a Columnar file to be uploaded to a database." -msgstr "Виберіть стовпчастий файл, щоб завантажуватися в базу даних." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "Останнє змінено" -msgid "Select a Excel file to be uploaded to a database." -msgstr "Виберіть файл Excel, щоб завантажуватися в базу даних." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "Змінений" -msgid "Select a column" -msgstr "Виберіть стовпець" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "Створений" -msgid "Select a dashboard" -msgstr "Виберіть приладову панель" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "Створений на" -msgid "Select a database table and create dataset" -msgstr "Виберіть таблицю бази даних та створіть набір даних" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "Дії меню запускають" -msgid "Select a database table." -msgstr "Виберіть таблицю бази даних." +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 +msgid "Select ..." +msgstr "Виберіть ..." -msgid "Select a database to connect" -msgstr "Виберіть базу даних для підключення" +#: superset-frontend/src/components/Table/index.tsx:216 +msgid "Filter menu" +msgstr "Меню фільтра" -msgid "Select a database to upload the file to" -msgstr "Виберіть базу даних для завантаження файлу в" +#: superset-frontend/src/components/Table/index.tsx:218 +msgid "Reset" +msgstr "Скинути" -msgid "Select a database to write a query" -msgstr "Виберіть базу даних, щоб записати запит" +#: superset-frontend/src/components/Table/index.tsx:219 +msgid "No filters" +msgstr "Немає фільтрів" -msgid "Select a dimension" -msgstr "Виберіть вимір" +#: superset-frontend/src/components/Table/index.tsx:220 +msgid "Select all items" +msgstr "Виберіть усі елементи" -msgid "Select a file to be uploaded to the database" -msgstr "Виберіть файл, який потрібно завантажити в базу даних" +#: superset-frontend/src/components/Table/index.tsx:221 +msgid "Search in filters" +msgstr "Пошук у фільтрах" -msgid "Select a schema if the database supports this" -msgstr "Виберіть схему, якщо база даних підтримує це" +#: superset-frontend/src/components/Table/index.tsx:223 +msgid "Select current page" +msgstr "Виберіть Поточну сторінку" -msgid "Select a visualization type" -msgstr "Виберіть тип візуалізації" +#: superset-frontend/src/components/Table/index.tsx:224 +msgid "Invert current page" +msgstr "Інвертуйте поточну сторінку" -msgid "Select aggregate options" -msgstr "Виберіть параметри сукупності" +#: superset-frontend/src/components/Table/index.tsx:225 +msgid "Clear all data" +msgstr "Очистіть усі дані" +#: superset-frontend/src/components/Table/index.tsx:226 msgid "Select all data" msgstr "Виберіть усі дані" -msgid "Select all items" -msgstr "Виберіть усі елементи" +#: superset-frontend/src/components/Table/index.tsx:228 +msgid "Expand row" +msgstr "Розширити ряд" -msgid "Select any columns for metadata inspection" -msgstr "Виберіть будь -які стовпці для перевірки метаданих" +#: superset-frontend/src/components/Table/index.tsx:229 +msgid "Collapse row" +msgstr "Колапс ряд" -msgid "Select chart" -msgstr "Виберіть діаграму" +#: superset-frontend/src/components/Table/index.tsx:230 +msgid "Click to sort descending" +msgstr "Клацніть, щоб сортувати низхід" -msgid "Select charts" -msgstr "Виберіть діаграми" +#: superset-frontend/src/components/Table/index.tsx:231 +msgid "Click to sort ascending" +msgstr "Клацніть, щоб сортувати висхід" -msgid "Select color scheme" -msgstr "Виберіть кольорову гаму" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "Клацніть, щоб скасувати сортування" -msgid "Select column" -msgstr "Виберіть стовпець" +#: superset-frontend/src/components/TableSelector/index.tsx:187 +msgid "List updated" +msgstr "Список оновлено" -msgid "Select current page" -msgstr "Виберіть Поточну сторінку" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "Сталася помилка, що завантажує таблиці" -msgid "Select database & schema" -msgstr "Виберіть базу даних та схеми" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "Див. Схему таблиці" -msgid "Select database or type to search databases" -msgstr "Виберіть базу даних або введіть у пошукові бази даних" +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 +msgid "Select table or type to search tables" +msgstr "Виберіть таблицю або введіть для пошукових таблиць" + +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "Список таблиць оновлення сили оновлення" + +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy, python-format +msgid "You do not have permission to read tags" +msgstr "Ви не маєте дозволу на редагування цього %s" -msgid "Select database table" -msgstr "Виберіть таблицю баз даних" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Вибір часу" + +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" +msgstr "Не вдалося зберегти перехресне фільтрування" -msgid "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has " +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." msgstr "" -"Виберіть бази даних потребують додаткових полів для завершення на вкладці «Додаткові» для успішного підключення бази даних. Дізнайтеся, які вимоги мають ваші бази " -"даних " +"Для цього компонента недостатньо місця. Спробуйте зменшити його ширину " +"або збільшити ширину призначення." -msgid "Select dataset source" -msgstr "Виберіть джерело набору даних" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "Не можна переміщувати вкладку верхнього рівня на вкладені вкладки" -msgid "Select file" -msgstr "Виберіть Файл" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "Ця діаграма була переміщена до іншої області фільтра." -msgid "Select filter" -msgstr "Виберіть фільтр" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "Була проблема, яка отримала улюблений статус цієї інформаційної панелі." -msgid "Select filter plugin using AntD" -msgstr "Виберіть плагін фільтра за допомогою ANTD" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "Була проблема, яка сприяла цій інформаційній панелі." -msgid "Select first filter value by default" -msgstr "Виберіть за замовчуванням значення First Filter" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" +msgstr "Ця інформаційна панель зараз опублікована" -msgid "Select operator" -msgstr "Виберіть оператор" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "Ця інформаційна панель зараз прихована" -msgid "Select or type a value" -msgstr "Виберіть або введіть значення" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "У вас немає дозволів на редагування цієї інформаційної панелі." -msgid "Select or type dataset name" -msgstr "Виберіть або введіть ім'я набору даних" +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 +msgid "[ untitled dashboard ]" +msgstr "[untitled dashboard]" -msgid "Select owners" -msgstr "Виберіть власників" +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "Ця інформаційна панель була успішно збережена." -msgid "Select saved metrics" -msgstr "Виберіть Збережена показниця" +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 +msgid "Sorry, an unknown error occurred" +msgstr "Вибачте, сталася невідома помилка" -msgid "Select schema or type to search schemas" -msgstr "Виберіть схему або введіть для схем пошуку" +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "Вибачте, була помилка збереження цієї інформаційної панелі: %s" -msgid "Select scheme" -msgstr "Виберіть схему" +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "У вас немає дозволу на редагування цієї інформаційної панелі" -msgid "Select start and end date" -msgstr "Виберіть дату початку та закінчення" +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." +msgstr "Будь ласка, підтвердьте значення перезапису." -msgid "Select subject" -msgstr "Виберіть тему" +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format +msgid "" +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." +msgstr "" +"Ви використали всі %(довжина історії)s скасування слотів і не зможете " +"повністю скасувати наступні дії. Ви можете зберегти свій поточний стан " +"для скидання історії." -msgid "Select table or type to search tables" -msgstr "Виберіть таблицю або введіть для пошукових таблиць" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "Не міг отримати всі збережених діаграм" -msgid "Select the Annotation Layer you would like to use." -msgstr "Виберіть шар анотації, який ви хочете використовувати." +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "На жаль, була помилка, яка отримала збережені діаграми: " +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters " -"from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the " -"dashboard." +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" msgstr "" -"Виберіть діаграми, до яких потрібно застосувати перехресні фільтри на цій інформаційній панелі. Скасування діаграми виключає її з фільтрування при застосуванні " -"перехресних фільтрів з будь-якої діаграми на приладовій панелі. Ви можете вибрати \"всі діаграми\", щоб застосувати перехресні фільтри до всіх діаграм, які " -"використовують один і той же набір даних, або містять одне і те ж ім'я стовпця на інформаційній панелі." +"Будь-яка вибрана тут палітра перевищить кольори, застосовані до окремих " +"діаграм цієї інформаційної панелі" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "У вас були незберечені зміни." + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "Перетягніть компоненти та діаграми на інформаційну панель" + +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 msgid "" -"Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use " -"the same dataset or contain the same column name in the dashboard." +"You can create a new chart or use existing ones from the panel on the " +"right" msgstr "" -"Виберіть діаграми, до яких потрібно застосувати перехресні фільтри під час взаємодії з цією діаграмою. Ви можете вибрати \"всі діаграми\", щоб застосувати фільтри до " -"всіх діаграм, які використовують один і той же набір даних, або містити одне і те ж ім'я стовпця на інформаційній панелі." +"Ви можете створити нову діаграму або використовувати існуючі з панелі " +"праворуч" -msgid "Select the geojson column" -msgstr "Виберіть стовпчик Geojson" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "Створіть нову діаграму" -msgid "Select the number of bins for the histogram" -msgstr "Виберіть кількість бункерів для гістограми" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" +msgstr "Перетягніть компоненти на цю вкладку" -msgid "Select the numeric columns to draw the histogram" -msgstr "Виберіть числові стовпці, щоб намалювати гістограму" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "На цю вкладку немає компонентів" -msgid "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button." -msgstr "Виберіть значення у виділеному полі на панелі управління. Потім запустіть запит, натиснувши кнопку %s." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "Ви можете додати компоненти в режим редагування." -msgid "Send as CSV" -msgstr "Надіслати як CSV" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 +msgid "Edit the dashboard" +msgstr "Відредагуйте інформаційну панель" -msgid "Send as PNG" -msgstr "Надіслати як PNG" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "" +"Не існує визначення діаграми, пов’язаного з цим компонентом, чи могло " +"його видалити?" -msgid "Send as text" -msgstr "Надіслати як текст" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "Видаліть цей контейнер і збережіть, щоб видалити це повідомлення." -msgid "Send range filter events to other charts" -msgstr "Надіслати події фільтра діапазону на інші діаграми" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +msgid "Refresh interval saved" +msgstr "Оновити інтервал збережено" -msgid "September" -msgstr "Вересень" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "Інтервал оновлення" -msgid "Sequential" -msgstr "Послідовний" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "Частота оновлення" -msgid "Series" -msgstr "Серія" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "Ви впевнені, що хочете продовжити?" -msgid "Series Height" -msgstr "Висота серії" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "Збережіть для цього сеансу" -msgid "Series Limit Sort By" -msgstr "Серія ліміту сортування" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "Ви повинні вибрати ім’я для нової інформаційної панелі" -msgid "Series Limit Sort Descending" -msgstr "Серія обмежує сортування" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "Зберегти приладову панель" -msgid "Series Order" -msgstr "Замовлення серії" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "Перезаписати Інформаційну панель [%s]" -msgid "Series Style" -msgstr "Стиль серії" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "Зберегти як:" -msgid "Series chart type (line, bar etc)" -msgstr "Тип діаграми серії (рядок, бар тощо)" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[Назва приладної панелі]" -msgid "Series limit" -msgstr "Ліміт серії" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "також скопіюйте (зробіть дублікат) діаграм" -msgid "Series type" -msgstr "Тип серії" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" +msgstr "тип з -за" -msgid "Server Page Length" -msgstr "Довжина сторінки сервера" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "недавній" -msgid "Server pagination" -msgstr "Сервер Пагінування" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "Створіть нову діаграму" -msgid "Service Account" -msgstr "Рахунок служби" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "Відфільтруйте свої діаграми" -msgid "Set auto-refresh interval" -msgstr "Встановіть інтервал автоматичного рефреша" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 +msgid "Filter charts" +msgstr "Фільтр -діаграми" -msgid "Set filter mapping" -msgstr "Встановіть картографування фільтра" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "Сортувати на %s" -msgid "Set up an email report" -msgstr "Налаштування звіту електронної пошти" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" +msgstr "Показати лише мої діаграми" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of the hierarchy." +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -"Встановлює рівні ієрархії діаграми. Кожен рівень є\n" -" Представлений одним кільцем з найпотаємнішим колом як верхівка ієрархії." +"Ви можете вибрати, щоб відобразити всі діаграми, які у вас є доступ або " +"лише тих, у кого ви володієте.\n" +" Вибір фільтра буде збережено і залишатиметься активним, " +"поки ви не вирішите його змінити." -msgid "Settings" -msgstr "Налаштування" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "Доданий" -msgid "Settings for time series" -msgstr "Налаштування часових рядів" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +msgid "Unknown type" +msgstr "Невідомий тип" -msgid "Share" -msgstr "Розподіляти" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "Тип з -за" -msgid "Share chart by email" -msgstr "Поділитися діаграмою електронною поштою" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "Набір даних" -msgid "Share permalink by email" -msgstr "Поділитися постійним посиланням електронною поштою" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "Суперсетна діаграма" -msgid "Shared query" -msgstr "Спільний запит" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "Перегляньте цю діаграму на інформаційній панелі:" -msgid "Shared query fields" -msgstr "Поля спільного запиту" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" +msgstr "Елементи макета" -msgid "Sheet Name" -msgstr "Назва аркуша" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "Завантажте шаблон CSS" -msgid "Shift + Click to sort by multiple columns" -msgstr "Shift + Клацніть, щоб сортувати на кілька стовпців" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "Живий редактор CSS" -msgid "Short description must be unique for this layer" -msgstr "Короткий опис повинен бути унікальним для цього шару" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +msgid "Collapse tab content" +msgstr "Вміст вкладки колапсу" -msgid "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality." -msgstr "Якщо щоденна сезонність застосовувати. Цінне значення буде визначати порядок сезонності Фур'є." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +msgid "There are no charts added to this dashboard" +msgstr "На цю інформаційну панель не додано діаграм" -msgid "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality." -msgstr "Якщо застосовуватися щотижнева сезонність. Цінне значення буде визначати порядок сезонності Фур'є." +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" +msgstr "" +"Перейдіть у режим редагування, щоб налаштувати інформаційну панель та " +"додати діаграми" -msgid "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality." -msgstr "Якщо щорічно застосовувати сезонність. Цінне значення буде визначати порядок сезонності Фур'є." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "Збережені зміни." -msgid "Show" -msgstr "Показувати" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" +msgstr "Вимкнути вбудовування?" -msgid "Show Bubbles" -msgstr "Показати бульбашки" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." +msgstr "Це видалить вашу поточну вбудовану конфігурацію." -msgid "Show CREATE VIEW statement" -msgstr "Показати заяву про створення перегляду" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "Вбудовування деактивовано." -msgid "Show CSS Template" -msgstr "Показати шаблон CSS" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "Вибач, щось пішло не так. Вбудовування не можна було деактивувати." -msgid "Show Chart" -msgstr "Показати діаграму" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." +msgstr "Вибач, щось пішло не так. Спробуйте ще раз пізніше." -msgid "Show Column" -msgstr "Показати колонку" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" +msgstr "" +"Ця інформаційна панель готова до вбудовування. У своїй заявці передайте " +"наступний ідентифікатор SDK:" -msgid "Show Dashboard" -msgstr "Показати приладову панель" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "" +"Налаштуйте цю інформаційну панель, щоб вставити її у зовнішній веб " +"додаток." -msgid "Show Database" -msgstr "Показати базу даних" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "Для отримання додаткових інструкцій проконсультуйтеся" -msgid "Show Labels" -msgstr "Показувати етикетки" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." +msgstr "Суперсет вбудована документація SDK." -msgid "Show Less..." -msgstr "Показувати менше ..." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "Дозволені домени (розділені кома)" -msgid "Show Log" -msgstr "Показувати журнал" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." +msgstr "" +"Список доменних імен, які можуть вбудувати цю інформаційну панель. Якщо " +"лишити це поле порожнім, це дозволить вбудувати панель з будь-якого " +"домену." -msgid "Show Markers" -msgstr "Шоу маркерів" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 +msgid "Deactivate" +msgstr "Деактивувати" -msgid "Show Metric" -msgstr "Показати показник" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +msgid "Save changes" +msgstr "Зберегти зміни" -msgid "Show Metric Names" -msgstr "Показати метричні назви" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +msgid "Enable embedding" +msgstr "Увімкнути вбудовування" -msgid "Show Range Filter" -msgstr "Показати фільтр діапазону" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +msgid "Embed" +msgstr "Вбудувати" -msgid "Show Saved Query" -msgstr "Показати збережений запит" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format +msgid "Applied cross-filters (%d)" +msgstr "Застосовані перехресні фільти (%d)" -msgid "Show Table" -msgstr "Показати таблицю" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format +msgid "Applied filters (%d)" +msgstr "Застосовані фільтри (%d)" -msgid "Show Timestamp" -msgstr "Показати часову позначку" +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" +"На даний момент ця інформаційна панель автоматично освіжає; Наступне " +"автоматичне оновлення буде у %s." -msgid "Show Total" -msgstr "Показати загалом" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "" +"Ваша інформаційна панель занадто велика. Будь ласка, зменшіть його " +"розмір, перш ніж економити." -msgid "Show Trend Line" -msgstr "Показати лінію тренду" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +msgid "Add the name of the dashboard" +msgstr "Додайте назву інформаційної панелі" -msgid "Show Upper Labels" -msgstr "Показати верхні етикетки" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" +msgstr "Назва інформаційної панелі" -msgid "Show Value" -msgstr "Показувати цінність" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +msgid "Undo the action" +msgstr "Скасувати дію" -msgid "Show Values" -msgstr "Показувати значення" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "Переробити дію" -msgid "Show Y-axis" -msgstr "Показати вісь Y" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 +msgid "Discard" +msgstr "Відкинути" -msgid "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise." -msgstr "Покажіть осі Y на Sparkline. Відобразить вручну встановити min/max, якщо встановити значення або min/max значення в даних в іншому випадку." +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "Редагувати інформаційну панель" -msgid "Show all columns" -msgstr "Показати всі стовпці" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "Помилка сталася під час отримання доступних шаблонів CSS" -msgid "Show all..." -msgstr "Покажи все..." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 +msgid "Refreshing charts" +msgstr "Освіжаючі діаграми" -msgid "Show axis line ticks" -msgstr "Показати кліщі лінії осі" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "Інформаційна панель суперсетів" -msgid "Show cell bars" -msgstr "Показати стільникові смуги" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "Перегляньте цю інформаційну панель: " -msgid "Show chart description" -msgstr "Показати опис діаграми" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "Оновити інформаційну панель" -msgid "Show columns total" -msgstr "Показати стовпці Всього" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "Вийти на повне екран" -msgid "Show data points as circle markers on the lines" -msgstr "Показати точки даних як маркери кола на лініях" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "Введіть повноекранний" -msgid "Show empty columns" -msgstr "Показати порожні стовпці" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "Редагувати властивості" -msgid "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole." -msgstr "Показати ієрархічні зв’язки даних із значенням, представленим областю, показуючи пропорцію та внесок у ціле." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "Редагувати CSS" -msgid "Show info tooltip" -msgstr "Показати інформацію про підказку" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +msgid "Download" +msgstr "Завантажувати" -msgid "Show label" -msgstr "Лейбл шоу" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "Експорт до Ямла" -msgid "Show labels when the node has children." -msgstr "Показати етикетки, коли у вузла є діти." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 +#, fuzzy +msgid "Download as Image" +msgstr "Завантажте як зображення" -msgid "Show legend" -msgstr "Показати легенду" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "Розподіляти" -msgid "Show less columns" -msgstr "Показати менше стовпців" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +msgid "Copy permalink to clipboard" +msgstr "Скопіюйте постійне посилання на буфер обміну" -msgid "Show less..." -msgstr "Показувати менше ..." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +msgid "Share permalink by email" +msgstr "Поділитися постійним посиланням електронною поштою" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +msgid "Embed dashboard" +msgstr "Вбудувати інформаційну панель" -msgid "Show only my charts" -msgstr "Показати лише мої діаграми" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +msgid "Manage email report" +msgstr "Керуйте звітом електронної пошти" -msgid "Show password." -msgstr "Показати пароль." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "Встановіть картографування фільтра" -msgid "Show percentage" -msgstr "Показати відсоток" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "Встановіть інтервал автоматичного рефреша" -msgid "Show pointer" -msgstr "Покажіть вказівник" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +msgid "Confirm overwrite" +msgstr "Підтвердити перезапис" -msgid "Show progress" -msgstr "Показати прогрес" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " +msgstr "Прокрутіть донизу, щоб увімкнути перезапис змін. " -msgid "Show rows total" -msgstr "Показати ціє рядки" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +msgid "Yes, overwrite changes" +msgstr "Так, переписати зміни" -msgid "Show series values on the chart" -msgstr "Показувати значення серії на діаграмі" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +msgid "Are you sure you intend to overwrite the following values?" +msgstr "Ви впевнені, що маєте намір перезаписати наступні значення?" -msgid "Show split lines" -msgstr "Показати розділені лінії" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format +msgid "Last Updated %s by %s" +msgstr "Останній оновлений %s на %s" -msgid "Show the value on top of the bar" -msgstr "Покажіть значення на вершині бару" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "Застосовувати" -msgid "Show time column" -msgstr "Показати стовпчик Time" +#: 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:66 +msgid "Error" +msgstr "Помилка" -msgid "Show time grain dropdown" -msgstr "Показати випадання часу зерна" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "Потрібна дійсна кольорова гама" -msgid "Show total aggregations of selected metrics. Note that row limit does not apply to the result." -msgstr "Показати загальну сукупність вибраних показників. Зауважте, що обмеження рядка не застосовується до результату." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +msgid "JSON metadata is invalid!" +msgstr "Метадані JSON недійсні!" -msgid "Show totals" -msgstr "Показати підсумки" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +msgid "Dashboard properties updated" +msgstr "Оновлені властивості інформаційної панелі" -msgid "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on." -msgstr "" -"Демонструє єдиний метричний передній і центр. Велика кількість найкраще використовується для звернення уваги на KPI або одне, на що ви хочете зосередитись на вашій " -"аудиторії." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "Приладна панель збережена" -msgid "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension." -msgstr "Демонструє єдине число, що супроводжується простою лінійною діаграмою, щоб звернути увагу на важливу метрику разом із її зміною в часі чи іншим виміром." +#: 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 "Доступ" -msgid "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle." +#: 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." msgstr "" -"Демонструє, як метрика змінюється в міру просування воронки. Ця класична діаграма корисна для візуалізації випадання між етапами в трубопроводі або життєвому циклі." +"Власники - це список користувачів, які можуть змінити інформаційну " +"панель. Шукати за іменем або іменем користувача." -msgid "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side." -msgstr "Демонструє потік або зв’язок між категоріями, використовуючи товщину акордів. Значення та відповідна товщина можуть бути різними для кожної сторони." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "Кольори" -msgid "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target." -msgstr "Демонструє прогрес однієї метрики проти заданої цілі. Чим вище заливка, тим ближче метрика до цілі." +#: 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 " +"defined, regular access permissions apply." +msgstr "" +"Ролі - це список, який визначає доступ до інформаційної панелі. Надання " +"ролі доступу до інформаційної панелі буде обходити перевірки рівня набору" +" даних. Якщо не визначено ролей, застосовуються регулярні дозволи на " +"доступ." -msgid "Showing %s of %s" -msgstr "Показуючи %s %s" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "Властивості інформаційної панелі" -msgid "Shows a list of all series available at that point in time" -msgstr "Показує список усіх серій, доступних на той момент часу" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" +msgstr "" +"Ця інформаційна панель керує зовні, і не може бути відредагована в " +"суперсеті" + +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "Основна інформація" -msgid "Shows or hides markers for the time series" -msgstr "Показує або приховує маркери для часових рядів" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "URL -адреса" -msgid "Significance Level" -msgstr "Рівень значущості" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "Читабельна URL адреса для вашої інформаційної панелі" -msgid "Simple" -msgstr "Простий" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "Сертифікація" -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "Прості спеціальні показники не ввімкнено для цього набору даних" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." +msgstr "Особа або група, яка сертифікувала цю інформаційну панель." -msgid "Single" -msgstr "Поодинокий" +#: 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 "Будь -яка додаткова деталь для показу в підказці сертифікації." -msgid "Single Metric" -msgstr "Єдиний метрик" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +msgid "A list of tags that have been applied to this chart." +msgstr "Список тегів, які були застосовані до цієї діаграми." -msgid "Single Value" -msgstr "Єдине значення" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "Метадані JSON" -msgid "Single value" -msgstr "Єдине значення" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." +msgstr "Будь ласка, не перезапишіть клавішу \"filter_scopes\"." -msgid "Single value type" -msgstr "Тип єдиного значення" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "Натомість використовуйте меню “%(menuName)s”." -msgid "Size of edge symbols" -msgstr "Розмір символів краю" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." +msgstr "" +"Ця інформаційна панель не опублікована, вона не з’явиться у списку " +"інформаційних панелей. Клацніть тут, щоб опублікувати цю інформаційну " +"панель." -msgid "Size of marker. Also applies to forecast observations." -msgstr "Розмір маркера. Також застосовується до прогнозних спостережень." +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "" +"Ця інформаційна панель не опублікована, що означає, що вона не з’явиться " +"у списку інформаційних панелей. Улюблене його, щоб побачити його там або " +"отримати доступ, використовуючи URL -адресу безпосередньо." -msgid "Sizes of vehicles" -msgstr "Розміри транспортних засобів" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "Ця інформаційна панель опублікована. Клацніть, щоб зробити це проектом." -msgid "Skip Blank Lines" -msgstr "Пропустити порожні лінії" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "Розтягувати" -msgid "Skip Initial Space" -msgstr "Пропустити початковий простір" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "Анотаційні шари все ще завантажуються." -msgid "Skip Rows" -msgstr "Пропустити ряди" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "Один руду більше анотаційних шарів не вдалося завантажити." -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "Пропустити порожні рядки, а не інтерпретувати їх як не значення числа" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 +msgid "" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." +msgstr "" +"Ця діаграма застосовує перехресні фільти до діаграм, набори даних яких " +"містять стовпці з однойменною назвою." -msgid "Skip spaces after delimiter" -msgstr "Пропустити простори після розмежування" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 +msgid "Data refreshed" +msgstr "Дані оновлені" -msgid "Slug" -msgstr "Слимак" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 +#, python-format +msgid "Cached %s" +msgstr "Кешовані %s" -msgid "Small" -msgstr "Невеликий" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "Витягнутий %s" -msgid "Small number format" -msgstr "Формат невеликого числа" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "Запит %s: %s" -msgid "Smooth Line" -msgstr "Гладка лінія" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "Оновити" -msgid "Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional." -msgstr "Гладка лінія-це варіація лінійної діаграми. Без кутів і жорстких країв, гладка лінія іноді виглядає розумнішими та професійнішими." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 +msgid "Hide chart description" +msgstr "Сховати опис діаграми" -msgid "Solid" -msgstr "Суцільний" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 +msgid "Show chart description" +msgstr "Показати опис діаграми" -msgid "Some roles do not exist" -msgstr "Деяких ролей не існує" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" +msgstr "Перехресне фільтрування" -msgid "Something went wrong." -msgstr "Щось пішло не так." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "Переглянути запит" -msgid "Sorry there was an error fetching database information: %s" -msgstr "Вибачте, була помилка отримання інформації про базу даних: %s" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +msgid "View as table" +msgstr "Переглянути як таблицю" -msgid "Sorry there was an error fetching saved charts: " -msgstr "На жаль, була помилка, яка отримала збережені діаграми: " +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 +#, python-format +msgid "Chart Data: %s" +msgstr "Дані діаграми: %s" -msgid "Sorry, An error occurred" -msgstr "Вибачте, сталася помилка" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "Поділитися діаграмою електронною поштою" -msgid "Sorry, an error occurred" -msgstr "Вибачте, сталася помилка" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " +msgstr "Перегляньте цю діаграму: " -msgid "Sorry, an unknown error occurred" -msgstr "Вибачте, сталася невідома помилка" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +msgid "Export to .CSV" +msgstr "Експорт до .csv" -msgid "Sorry, an unknown error occurred." -msgstr "Вибачте, сталася невідома помилка." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +msgid "Export to Excel" +msgstr "Експорт до Excel" -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "Вибач, щось пішло не так. Вбудовування не можна було деактивувати." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 +msgid "Export to full .CSV" +msgstr "Експорт до повного .csv" -msgid "Sorry, something went wrong. Try again later." -msgstr "Вибач, щось пішло не так. Спробуйте ще раз пізніше." +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 +#, fuzzy +msgid "Export to full Excel" +msgstr "Експорт до Excel" -msgid "Sorry, there appears to be no data" -msgstr "Вибачте, даних, як видається, немає" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "Завантажте як зображення" -msgid "Sorry, there was an error saving this %s: %s" -msgstr "Вибачте, була помилка, заощадивши цей %s: %s" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +msgid "Something went wrong." +msgstr "Щось пішло не так." -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "Вибачте, була помилка збереження цієї інформаційної панелі: %s" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "Пошук ..." -msgid "Sorry, your browser does not support copying." -msgstr "Вибачте, ваш браузер не підтримує копіювання." +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "Фільтр не вибирається." -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "Вибачте, ваш браузер не підтримує копіювання. Використовуйте CTRL / CMD + C!" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "Редагування 1 фільтр:" -msgid "Sort" -msgstr "Сортувати" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 +#, python-format +msgid "Batch editing %d filters:" +msgstr "Редагування партії %d фільтрів:" -msgid "Sort Bars" -msgstr "Сортування барів" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "Налаштуйте фільтрувальні сфери" -msgid "Sort Descending" -msgstr "Сортувати низхід" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "На цій інформаційній панелі немає фільтрів." -msgid "Sort Metric" -msgstr "Метрика сортування" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "Розширити всі" -msgid "Sort Series Ascending" -msgstr "Сортування серії, що піднімається" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "Згорнути всі" -msgid "Sort Series By" -msgstr "Сортування серії" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +msgid "An error occurred while opening Explore" +msgstr "Під час відкриття досліджувати сталася помилка" -msgid "Sort X Axis" -msgstr "Сортуйте вісь x" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +msgid "Empty column" +msgstr "Порожній стовпчик" -msgid "Sort Y Axis" -msgstr "Сортуйте вісь" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "Цей компонент відмітки має помилку." -msgid "Sort ascending" -msgstr "Сортувати висхід" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "" +"Цей компонент відмітки має помилку. Будь ласка, поверніть свої останні " +"зміни." -msgid "Sort bars by x labels." -msgstr "Сортуйте смуги за x мітками." +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "Порожній ряд" -msgid "Sort by" -msgstr "Сортувати за" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 +msgid "You can" +msgstr "Ти можеш" -msgid "Sort by %s" -msgstr "Сортувати на %s" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +msgid "create a new chart" +msgstr "cтворіть нову діаграму" -msgid "Sort by metric" -msgstr "Сортування за метрикою" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" +msgstr "або використовуйте існуючі з панелі праворуч" -msgid "Sort columns alphabetically" -msgstr "Сортувати стовпці в алфавітному" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" +msgstr "Ви можете додати компоненти в" -msgid "Sort columns by" -msgstr "Сортувати стовпці за" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 +msgid "edit mode" +msgstr "режим редагування" -msgid "Sort descending" -msgstr "Сортувати низхід" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "Видалити вкладку для інформаційної панелі?" -msgid "Sort filter values" -msgstr "Сортувати значення фільтра" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" +"Видалення вкладки видалить весь вміст всередині неї. Ви все ще можете " +"змінити цю дію за допомогою" -msgid "Sort metric" -msgstr "Метрика сортування" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "скасувати" -msgid "Sort rows by" -msgstr "Сортувати ряди за" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." +msgstr "кнопка (CMD + Z), поки не збережеш свої зміни." -msgid "Sort series in ascending order" -msgstr "Сортування серії у зростаючому порядку" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "Скасувати" -msgid "Sort type" -msgstr "Тип сортування" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "Роздільник" -msgid "Source" -msgstr "Джерело" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "Заголовок" -msgid "Source / Target" -msgstr "Джерело / ціль" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" +msgstr "Текст" -msgid "Source SQL" -msgstr "Джерело SQL" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "Вкладки" -msgid "Source category" -msgstr "Категорія джерела" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "фон" -msgid "Sparkline" -msgstr "Іскрова лінія" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "Попередній перегляд" -msgid "Spatial" -msgstr "Просторовий" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "Вибач, щось пішло не так. Спробуйте ще раз пізніше." -msgid "Specific Date/Time" -msgstr "Конкретна дата/час" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" +msgstr "Невідоме значення" -msgid "Specify a schema (if database flavor supports this)." -msgstr "Вкажіть схему (якщо аромат бази даних підтримує це)." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 +msgid "Add/Edit Filters" +msgstr "Додати/редагувати фільтри" -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "Вкажіть дублікат стовпців як \"x.0, x.1\"." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." +msgstr "Наразі на цю інформаційну панель не додано жодних фільтрів." -msgid "Specify name to CREATE TABLE AS schema in: public" -msgstr "Вкажіть ім'я, щоб створити таблицю як схему в: Public" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" +msgstr "Наразі глобальні фільтри не додаються" -msgid "Specify name to CREATE VIEW AS schema in: public" -msgstr "Вкажіть ім'я, щоб створити перегляд як схему в: public" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgstr "" +"Натисніть кнопку \"+додавання/редагування фільтрів\", щоб створити нові " +"фільтри для інформаційної панелі" -msgid "Specify the database version. This should be used with Presto in order to enable query cost estimation." -msgstr "Вкажіть версію бази даних. Це слід використовувати з Presto для того, щоб забезпечити оцінку витрат на запит." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +msgid "Apply filters" +msgstr "Застосувати фільтри" -msgid "Split number" -msgstr "Розділений номер" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "Очистити всі" -msgid "Square kilometers" -msgstr "Квадратні кілометри" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +msgid "Locate the chart" +msgstr "Знайдіть діаграму" -msgid "Square meters" -msgstr "Квадратних метрів" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 +msgid "Cross-filters" +msgstr "Перехресні фільтри" -msgid "Square miles" -msgstr "Квадратні милі" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "Додайте власні сфери застосування" -msgid "Stack" -msgstr "Стек" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "Усі діаграми/глобальні обсяги" -msgid "Stack Trace:" -msgstr "Стечко слід:" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +msgid "Select chart" +msgstr "Виберіть діаграму" -msgid "Stack series" -msgstr "Серія стека" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Перехресне фільтрування не ввімкнено для цієї інформаційної панелі" -msgid "Stack series on top of each other" -msgstr "Серія стека один на одного" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" +"Виберіть діаграми, до яких потрібно застосувати перехресні фільтри під " +"час взаємодії з цією діаграмою. Ви можете вибрати \"всі діаграми\", щоб " +"застосувати фільтри до всіх діаграм, які використовують один і той же " +"набір даних, або містити одне і те ж ім'я стовпця на інформаційній " +"панелі." -msgid "Stacked" -msgstr "Складений" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" +"Виберіть діаграми, до яких потрібно застосувати перехресні фільтри на цій" +" інформаційній панелі. Скасування діаграми виключає її з фільтрування при" +" застосуванні перехресних фільтрів з будь-якої діаграми на приладовій " +"панелі. Ви можете вибрати \"всі діаграми\", щоб застосувати перехресні " +"фільтри до всіх діаграм, які використовують один і той же набір даних, " +"або містять одне і те ж ім'я стовпця на інформаційній панелі." + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "Усі діаграми" -msgid "Stacked Bars" -msgstr "Складені бари" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +msgid "Enable cross-filtering" +msgstr "Увімкнути перехресне фільтрування" -msgid "Stacked Style" -msgstr "Складений стиль" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +msgid "Orientation of filter bar" +msgstr "Орієнтація панелі фільтра" -msgid "Stacked style" -msgstr "Складений стиль" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 +msgid "Vertical (Left)" +msgstr "Вертикальний (зліва)" -msgid "Standard time series" -msgstr "Стандартний часовий ряд" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +msgid "Horizontal (Top)" +msgstr "Горизонтальний (вгорі)" -msgid "Start" -msgstr "Почати" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +msgid "More filters" +msgstr "Більше фільтрів" -msgid "Start (Longitude, Latitude): " -msgstr "Початок (довгота, широта): " +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +msgid "No applied filters" +msgstr "Немає застосованих фільтрів" -msgid "Start Longitude & Latitude" -msgstr "Почніть довготу та широту" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format +msgid "Applied filters: %s" +msgstr "Застосовані фільтри: %s" -msgid "Start Review" -msgstr "Почніть огляд" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "Не вдається завантажувати фільтр" -msgid "Start angle" -msgstr "Почати кут" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" +msgstr "Фільтри поза обсягом (%d)" -msgid "Start at (UTC)" -msgstr "Почніть з (UTC)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 +msgid "Dependent on" +msgstr "Залежить від" -msgid "Start date" -msgstr "Дата початку" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "" +"Фільтр відображає лише значення, що стосуються вибору, зроблених в інших " +"фільтрах." -msgid "Start date included in time range" -msgstr "Дата початку, що входить у часовий діапазон" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Область" -msgid "Start y-axis at 0" -msgstr "Почніть осі y о 0" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "Тип фільтру" -msgid "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data." -msgstr "Почніть осі y на нуль. Зніміть прапорець, щоб запустити вісь y з мінімальним значенням у даних." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "Потрібна назва" -msgid "Started" -msgstr "Розпочато" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(Видалено)" -msgid "State" -msgstr "Держави" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "Скасувати?" -msgid "Statement %(statement_num)s out of %(statement_count)s" -msgstr "Заява %(statement_num)s з %(statement_count)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "Додайте фільтри та роздільники" -msgid "Statistical" -msgstr "Статистичний" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 +msgid "[untitled]" +msgstr "[Без назви]" -msgid "Status" -msgstr "Статус" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "Виявлена ​​циклічна залежність" -msgid "Step - end" -msgstr "Крок - Кінець" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 +msgid "Add and edit filters" +msgstr "Додати та редагувати фільтри" -msgid "Step - middle" -msgstr "Крок - Середній" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "Вибір стовпця" -msgid "Step - start" -msgstr "Крок - Почати" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "Виберіть стовпець" -msgid "Step type" -msgstr "Тип кроку" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "Не знайдено сумісних стовпців" -msgid "Stepped Line" -msgstr "Ступінчаста лінія" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +msgid "No compatible datasets found" +msgstr "Не знайдено сумісних наборів даних" -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful " -"when you want to show the changes that occur at irregular intervals." -msgstr "" -"Графік ступінчастої лінії (також називається крок діаграми)-це варіація лінійної діаграми, але з лінією, що утворює ряд кроків між точками даних. Крок діаграми може " -"бути корисною, коли ви хочете показати зміни, які відбуваються з нерегулярними інтервалами." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "Виберіть усі дані" -msgid "Stop" -msgstr "СТІЙ" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "Значення потрібно" -msgid "Stop query" -msgstr "Зупиніть запит" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" +msgstr "(видалений або недійсний тип)" -msgid "Stop running (Ctrl + e)" -msgstr "Перестаньте бігати (Ctrl + E)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +msgid "Limit type" +msgstr "Тип обмеження" -msgid "Stop running (Ctrl + x)" -msgstr "Перестаньте бігати (Ctrl + x)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +msgid "No available filters." +msgstr "Немає доступних фільтрів." -msgid "Stopped an unsafe database connection" -msgstr "Зупинив небезпечне з'єднання бази даних" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "Додати фільтр" -msgid "Stream" -msgstr "Потік" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" +msgstr "Значення залежать від інших фільтрів" -msgid "Streets" -msgstr "Вулиці" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" +msgstr "" +"Значення, вибрані в інших фільтрах, впливатимуть на параметри фільтра, " +"щоб показати лише відповідні значення" -msgid "Strength to pull the graph toward center" -msgstr "Сила, щоб потягнути граф до центру" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Значення, залежні від" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "Виділення області" -msgid "Stretched style" -msgstr "Розтягнутий стиль" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 +msgid "Filter Configuration" +msgstr "Конфігурація фільтра" -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "Рядки, що використовуються для імен аркушів (за замовчуванням - це перший аркуш)." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +msgid "Filter Settings" +msgstr "Налаштування фільтра" -msgid "Stroke Color" -msgstr "Колір удару" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "Виберіть фільтр" -msgid "Stroke Width" -msgstr "Ширина інсульту" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "Фільтр діапазону" -msgid "Stroked" -msgstr "Погладжений" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "Чисельний діапазон" -msgid "Structural" -msgstr "Структурний" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "Час фільтр" -msgid "Style" -msgstr "Стиль" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "Часовий діапазон" -msgid "Style the ends of the progress bar with a round cap" -msgstr "Стильні кінці смуги прогресу з круглою шапкою" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "Стовпчик часу" -msgid "Subdomain" -msgstr "Субдомен" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "Зерно часу" -msgid "Subheader" -msgstr "Підзаголовка" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "Група" -msgid "Subheader Font Size" -msgstr "Розмір шрифту підзаголовка" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "Група" -msgid "Submit" -msgstr "Подавати" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "Потрібен попередній фільтр" -msgid "Subtotal" -msgstr "Суттєвий" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" +msgstr "Стовпчик часу для застосування залежного тимчасового фільтра до" -msgid "Success" -msgstr "Успіх" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "Стовпчик часу, щоб застосувати часовий діапазон до" -msgid "Successfully changed dataset!" -msgstr "Успішно змінили набір даних!" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "Назва фільтра" -msgid "Suffix to apply after the percentage display" -msgstr "Суфікс подати заявку після відсоткового дисплея" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "Ім'я потрібно" -msgid "Sum" -msgstr "Сума" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "Тип фільтру" -msgid "Sum as Fraction of Columns" -msgstr "Сума як частка стовпців" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "Набори даних не містять тимчасового стовпця" -msgid "Sum as Fraction of Rows" -msgstr "Сума як частка рядків" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 +msgid "" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." +msgstr "" +"Фільтри діапазону часу на інформаційній панелі застосовуються до " +"тимчасових стовпців, визначених у\n" +" розділ фільтра кожної діаграми. Додайте тимчасові стовпці до " +"діаграми\n" +" Фільтри, щоб цей фільтр на інформаційній панелі впливав на ці " +"діаграми." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "Необхідний набір даних" -msgid "Sum as Fraction of Total" -msgstr "Сума як частка загальної кількості" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "Доступні значення попереднього фільтра" -msgid "Sum of values over specified period" -msgstr "Сума значень протягом визначеного періоду" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." +msgstr "" +"Додайте застереження про фільтр для контролю запиту джерела фільтра,\n" +" Хоча лише в контексті автозаповнення, тобто ці умови\n" +" Не впливайте на те, як фільтр застосовується на " +"інформаційній панелі. Це корисно\n" +" Коли ви хочете покращити продуктивність запиту, лише " +"скануючи підмножину\n" +" базових даних або обмежити наявні значення, " +"відображені у фільтрі." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" +msgstr "Попередній фільтр" -msgid "Sum values" -msgstr "Значення суми" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "Без фільтра" -msgid "Sunburst" -msgstr "Сонячний вибух" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "Сортувати значення фільтра" -msgid "Sunburst Chart" -msgstr "Діаграма Sunburst" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "Тип сортування" -msgid "Sunburst Chart v2" -msgstr "Sunburst Chart V2" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "Сортувати висхід" -msgid "Sunday" -msgstr "Неділя" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "Метрика сортування" -msgid "Superset Chart" -msgstr "Суперсетна діаграма" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" +msgstr "" +"Якщо вказано метрику, сортування буде здійснено на основі метричного " +"значення" -msgid "Superset Embedded SDK documentation." -msgstr "Суперсет вбудована документація SDK." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "Метрика сортування" -msgid "Superset chart" -msgstr "Суперсетна діаграма" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "Єдине значення" -msgid "Superset dashboard" -msgstr "Інформаційна панель суперсетів" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "Тип єдиного значення" -msgid "Superset encountered an error while running a command." -msgstr "Суперсет зіткнувся з помилкою під час запуску команди." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "Точний" -msgid "Superset encountered an unexpected error." -msgstr "Суперсет зіткнувся з несподіваною помилкою." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "Фільтр має значення за замовчуванням" -msgid "Supported databases" -msgstr "Підтримувані бази даних" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "Значення за замовчуванням" -msgid "Survey Responses" -msgstr "Відповіді на опитування" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "Значення за замовчуванням необхідне" -msgid "Swap dataset" -msgstr "Swap DataSet" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "Оновити значення за замовчуванням" -msgid "Swap rows and columns" -msgstr "Поміняйте ряди та стовпці" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "Заповніть усі необхідні поля, щоб увімкнути \"значення за замовчуванням\"" -msgid "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well." -msgstr "Швейцарський армійський ніж для візуалізації даних. Виберіть між крок, рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів налаштування." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "Ви видалили цей фільтр." -msgid "Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well." -msgstr "" -"Швейцарський армійський ніж для візуалізації даних часових рядів. Виберіть між крок, рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів " -"налаштування." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Відновити фільтр" -msgid "Symbol" -msgstr "Символ" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "Потрібна колонка" -msgid "Symbol of two ends of edge line" -msgstr "Символ двох кінців лінії краю" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "Населення \"значення за замовчуванням\", щоб увімкнути цей контроль" -msgid "Symbol size" -msgstr "Розмір символу" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +msgid "" +"Default value set automatically when \"Select first filter value by " +"default\" is checked" +msgstr "" +"Налаштування значення за замовчуванням автоматично, коли перевіряється " +"\"Виберіть значення першого фільтра\"" -msgid "Sync columns from source" -msgstr "Синхронізовані стовпці з джерела" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +msgid "Default value must be set when \"Filter value is required\" is checked" +msgstr "" +"Значення за замовчуванням повинно бути встановлено, коли перевіряється " +"\"значення фільтра\"" -msgid "Syntax" -msgstr "Синтаксис" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" +msgstr "" +"Значення за замовчуванням повинно бути встановлено, коли перевіряється " +"\"Фільтр має значення за замовчуванням\"" -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" -msgstr "Помилка синтаксису:%(qualifier)s введення “%(input)s” очікування “%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Застосовуйте до всіх панелей" -msgid "TABLES" -msgstr "Столи" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Застосовуйте до певних панелей" -msgid "TEMPORAL X-AXIS" -msgstr "Тимчасова осі x" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "На цей фільтр вплине лише вибрані панелі" -msgid "TEMPORAL_RANGE" -msgstr "Temporal_range" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "На всі панелі з цим стовпцем впливатимуть цей фільтр" -msgid "THU" -msgstr "Чт" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "Всі панелі" -msgid "TUE" -msgstr "Зміст" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" +msgstr "Ця діаграма може бути несумісною з фільтром (набори даних не відповідають)" -msgid "Tab name" -msgstr "Назва вкладки" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "Продовжуйте редагувати" -msgid "Tab title" -msgstr "Назва вкладки" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "Так, скасувати" -msgid "Table" -msgstr "Стіл" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "Є незберечені зміни." -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "Таблиця %(table)s не знайдено в базі даних %(db)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "Ви впевнені, що хочете скасувати?" -msgid "Table Exists" -msgstr "Таблиця існує" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." +msgstr "Помилка завантаження діаграм даних. Фільтри можуть працювати не правильно." -msgid "Table Name" -msgstr "Назва таблиці" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "Прозорий" -msgid "Table View" -msgstr "Перегляд таблиці" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "Білий" -msgid "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name" -msgstr "Таблиця [%(table_name)s] Не вдалося знайти, будь ласка, перевірте підключення до бази даних, схеми та назву таблиці" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "Всі фільтри" -msgid "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}" -msgstr "Таблиця [%{table} s] не вдалося знайти, будь ласка, перевірте з'єднання з базою даних, схему та назву таблиці, помилка: {}" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, python-format +msgid "Click to edit %s." +msgstr "Клацніть на редагування %s." -msgid "Table cache timeout" -msgstr "Тайм -аут кешу таблиці" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +msgid "Click to edit chart." +msgstr "Клацніть на Редагувати діаграму." -msgid "Table columns" -msgstr "Стовпці таблиці" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, python-format +msgid "Use %s to open in a new tab." +msgstr "Використовуйте %s, щоб відкрити на новій вкладці." -msgid "Table loading" -msgstr "Завантаження таблиці" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" +msgstr "Середній" -msgid "Table name cannot contain a schema" -msgstr "Назва таблиці не може містити схему" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +msgid "New header" +msgstr "Новий заголовок" -msgid "Table name undefined" -msgstr "Назва таблиці не визначена" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "Назва вкладки" -msgid "Table or View \"%(table)s\" does not exist." -msgstr "Таблиця або переглянути \"%(таблиця)s\" не існує." +#: superset-frontend/src/embedded/index.tsx:112 +msgid "" +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." +msgstr "" +"Цей сеанс зіткнувся з перериванням, і деякі елементи управління можуть не" +" працювати за призначенням. Якщо ви розробник цього додатка, будь ласка, " +"перевірте, чи правильно генерується маркер." -msgid "Table that visualizes paired t-tests, which are used to understand statistical differences between groups." -msgstr "Таблиця, яка візуалізує парні t-тести, які використовуються для розуміння статистичних відмінностей між групами." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" +msgstr "Дорівнює (=)" -msgid "Tables" -msgstr "Столи" +#: superset-frontend/src/explore/constants.ts:59 +msgid "Not equal to (≠)" +msgstr "Не дорівнює (≠)" -msgid "Tabs" -msgstr "Вкладки" +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" +msgstr "Менше (<)" -msgid "Tabular" -msgstr "Табличний" +#: superset-frontend/src/explore/constants.ts:62 +msgid "Less or equal (<=)" +msgstr "Менше або рівне (<=)" -msgid "Tag could not be created." -msgstr "Тег не вдалося створити." +#: superset-frontend/src/explore/constants.ts:65 +msgid "Greater than (>)" +msgstr "Більше (>)" -msgid "Tag could not be deleted." -msgstr "Тег не вдалося видалити." +#: superset-frontend/src/explore/constants.ts:67 +msgid "Greater or equal (>=)" +msgstr "Більший або рівний (> =)" -msgid "Tag name is invalid (cannot contain ':')" -msgstr "Назва тегу недійсна (не може містити ':')" +#: superset-frontend/src/explore/constants.ts:70 +msgid "In" +msgstr "У" -msgid "Tag parameters are invalid." -msgstr "Параметри тегів недійсні." +#: superset-frontend/src/explore/constants.ts:71 +msgid "Not in" +msgstr "Не в" -msgid "Tagged Object could not be deleted." -msgstr "Позначений об’єкт не можна було видалити." +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" +msgstr "Люблю" -msgid "Tags" -msgstr "Теги" +#: superset-frontend/src/explore/constants.ts:74 +msgid "Like (case insensitive)" +msgstr "Як (нечутливий до випадків)" -msgid "Take your data points, and group them into \"bins\" to see where the densest areas of information lie" -msgstr "Візьміть свої точки даних та групуйте їх у \"бункери\", щоб побачити, де лежать найгустіші області інформації" +#: superset-frontend/src/explore/constants.ts:78 +msgid "Is not null" +msgstr "Не нульова" -msgid "Target" -msgstr "Цільовий" +#: superset-frontend/src/explore/constants.ts:81 +msgid "Is null" +msgstr "Є нульовим" -msgid "Target Color" -msgstr "Цільовий колір" +#: superset-frontend/src/explore/constants.ts:83 +msgid "use latest_partition template" +msgstr "використовуйте шаблон latest_partition" -msgid "Target category" -msgstr "Цільова категорія" +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" +msgstr "Правда" -msgid "Target value" -msgstr "Цільове значення" +#: superset-frontend/src/explore/constants.ts:87 +msgid "Is false" +msgstr "Є помилковим" -msgid "Template Name" -msgstr "Назва шаблону" +#: superset-frontend/src/explore/constants.ts:89 +msgid "TEMPORAL_RANGE" +msgstr "Temporal_range" -msgid "Template parameters" -msgstr "Параметри шаблону" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "Час деталізація" -msgid "Templated link, it's possible to include {{ metric }} or other values coming from the controls." -msgstr "Шаблове посилання, можна включити {{metric}} або інші значення, що надходять з елементів управління." +#: superset-frontend/src/explore/controls.jsx:90 +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "Тривалість у MS (100,40008 => 100 мс 400 мкс 80ns)" -msgid "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases." +#: superset-frontend/src/explore/controls.jsx:126 +msgid "" +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" -"Закінчуйте запущені запити, коли вікно браузера закрилося або орієнтувалося на іншу сторінку. Доступні для бази даних Presto, Hive, MySQL, Postgres та Snowflake." +"Один або багато стовпців до групи за. Високі угруповання кардинальності " +"повинні включати ліміт серії для обмеження кількості витягнутих та " +"наданих рядів." -msgid "Test Connection" -msgstr "Тестове з'єднання" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "Один або багато показників для відображення" -msgid "Test connection" -msgstr "Тестове з'єднання" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "Фіксований колір" -msgid "Text" -msgstr "Текст" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "Метрика правої осі" -msgid "Text align" -msgstr "Текст вирівнює" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "Виберіть метрику для правої осі" -msgid "Text embedded in email" -msgstr "Текст, вбудований в електронну пошту" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "Лінійна кольорова гамма" -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "Відповідь API від %s не відповідає інтерфейсу IDATABASETABLE." +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "Кольоровий показник" -msgid "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible" -msgstr "CSS для окремих інформаційних панелей може бути змінений тут, або на поданні приладової панелі, де зміни негайно видно" +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "Один або багато елементів керування, щоб стригти як стовпці" +#: superset-frontend/src/explore/controls.jsx:271 msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your " -"query again." +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" msgstr "" -"CTA (створити таблицю як Select) не має оператора SELECT в кінці. Будь ласка, переконайтеся, що ваш запит має вибір як останнє твердження. Потім спробуйте знову " -"запустити свій запит." - -msgid "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts)." -msgstr "Geojsonlayer приймає дані, відформатовані Geojson, і представляє їх як інтерактивні багатокутники, лінії та точки (кола, ікони та/або тексти)." - -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "У URL -адреси відсутні параметри DataSet_ID або Slice_ID." - -msgid "The X-axis is not on the filters list" -msgstr "Осі x немає у списку фільтрів" +"Часова деталізація для візуалізації. Зауважте, що ви можете вводити та " +"використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 " +"тижнів'" +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The X-axis is not on the filters list which will prevent it from being used in\n" -" time range filters in dashboards. Would you like to add it to the filters list?" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -"Осі x не знаходиться в списку фільтрів, які заважають його використати в\n" -" Фільтри часового діапазону на інформаційних панелях. Ви хотіли б додати його до списку фільтрів?" +"Часова деталізація для візуалізації. Це стосується перетворення дати для " +"зміни стовпчика часу та визначає нову деталізацію часу. Параметри тут " +"визначаються на основі двигуна на базу даних у вихідному коді суперсета." -msgid "The access requests seem to have been deleted" -msgstr "Запити на доступ, здається, були видалені" +#: superset-frontend/src/explore/controls.jsx:327 +msgid "" +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." +msgstr "" +"Часовий діапазон для візуалізації. Усі відносні часи, напр. \"Минулого " +"місяця\", \"Останні 7 днів\", \"тепер\" тощо. На сервері оцінюються за " +"допомогою локального часу сервера (SANS Timezone). Усі часи підказки та " +"часи заповнювача виражаються в UTC (SANS Timezone). Потім часові позначки" +" оцінюються базою даних за допомогою локального часу двигуна. Примітка " +"можна чітко встановити часовий пояс на формат ISO 8601, якщо вказати або " +"час запуску та/або кінця." + +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Обмежує кількість рядків, які відображаються." -msgid "The annotation has been saved" -msgstr "Анотація врятована" +#: superset-frontend/src/explore/controls.jsx:367 +msgid "" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "" +"Metric, що використовується для визначення того, як сортується верхня " +"серія, якщо присутній ліміт серії або рядка. Якщо невизначений повернення" +" до першої метрики (де це доречно)." -msgid "The annotation has been updated" -msgstr "Анотація оновлена" +#: superset-frontend/src/explore/controls.jsx:383 +msgid "" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" +msgstr "" +"Визначає групування суб'єктів. Кожна серія відображається як конкретний " +"колір на діаграмі і має легенду перемикання" -msgid "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used." -msgstr "Категорія вихідних вузлів, що використовуються для призначення кольорів. Якщо вузол пов'язаний з більш ніж однією категорією, буде використано лише перший." +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "Метрика, призначена до осі [x]" -msgid "The chart datasource does not exist" -msgstr "Діаграма даних не існує" +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "Метрика, присвоєна вісь [y]" -msgid "The chart does not exist" -msgstr "Діаграма не існує" +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "Розмір міхура" +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military " -"industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead." +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" msgstr "" -"Класик. Відмінно підходить для показу, скільки компанії отримує кожен інвестор, яка демографія слідує за вашим блогом, або яку частину бюджету йде до військового " -"промислового комплексу.\n" -"\n" -" Діаграми пирогів можуть бути важко точно інтерпретувати. Якщо чіткість відносної пропорції важлива, подумайте про використання смуги або іншого типу діаграми." +"Коли `тип обчислення\" встановлено на \"відсоткову зміну\", формат осі y " +"змушений до `.1%` `" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "Кольорова схема" -msgid "The color for points and clusters in RGB" -msgstr "Колір для точок і кластерів у RGB" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "Під час головної частини цього діаграми сталася помилка" -msgid "The color scheme for rendering chart" -msgstr "Колірна гама для діаграми візуалізації" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, python-format +msgid "Chart [%s] has been saved" +msgstr "Діаграма [%s] збережена" -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." -msgstr "" -"Колірна гамма визначається спорідненою інформаційною панеллю.\n" -" Відредагуйте кольорову гаму у властивостях приладної панелі." +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, python-format +msgid "Chart [%s] has been overwritten" +msgstr "Діаграма [%s] була перезаписана" -msgid "The column header label" -msgstr "Мітка заголовка стовпчика" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "Дашборд [%s] був щойно створений, а діаграма [%s] була додана до нього" -msgid "The column was deleted or renamed in the database." -msgstr "Стовпчик був видалений або перейменований у базу даних." +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "Діаграма [%s] була додана до інформаційної панелі [%s]" -msgid "The country code standard that Superset should expect to find in the [country] column" -msgstr "Стандарт коду країни, який суперсет повинен очікувати, що у стовпці [країна]" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +msgid "GROUP BY" +msgstr "Група" -msgid "The dashboard has been saved" -msgstr "Приладна панель збережена" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" +msgstr "Використовуйте цей розділ, якщо ви хочете запит, який агрегує" -msgid "The data source seems to have been deleted" -msgstr "Джерело даних, здається, було видалено" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 +msgid "NOT GROUPED BY" +msgstr "Не згрупований" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "Використовуйте цей розділ, якщо ви хочете запитувати атомні ряди" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "Осі x немає у списку фільтрів" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should " -"not need to alter this." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"Тип даних, який висловився в базі даних. У деяких випадках може знадобитися вводити тип вручну для визначені виразами стовпців. У більшості випадків користувачам не " -"потрібно це змінювати." +"Осі x не знаходиться в списку фільтрів, які заважають його використати в\n" +" Фільтри часового діапазону на інформаційних панелях. Ви " +"хотіли б додати його до списку фільтрів?" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? " -"Deleting the database will break those objects." +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." msgstr "" -"База даних %s пов'язана з діаграмами %s, які з’являються на інформаційних панелях %s, а користувачі мають %s SQL Lab вкладки, використовуючи цю базу даних. Ви " -"впевнені, що хочете продовжувати? Видалення бази даних порушить ці об'єкти." +"Ви не можете видалити останній часовий фільтр, оскільки він " +"використовується для фільтрів часового діапазону на інформаційних " +"панелях." -msgid "The database columns that contains lines information" -msgstr "Стовпці бази даних, що містить інформацію про рядки" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" +msgstr "Цей розділ містить помилки перевірки" -msgid "The database could not be found" -msgstr "Бази даних не вдалося знайти" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" +msgstr "Продовжувати налаштування контролю?" -msgid "The database is currently running too many queries." -msgstr "В даний час база даних працює занадто багато запитів." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 +msgid "" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." +msgstr "" +"Ви змінили набори даних. Будь -які елементи керування з даними " +"(стовпчики, метрики), які відповідають цьому новому наборі даних, були " +"зберігаються." -msgid "The database is under an unusual load." -msgstr "База даних знаходиться під незвичним навантаженням." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +msgid "Continue" +msgstr "Продовжувати" -msgid "The database referenced in this query was not found. Please contact an administrator for further assistance or try again." -msgstr "База даних, на яку посилається в цьому запиті, не було знайдено. Зверніться до адміністратора для отримання додаткової допомоги або повторіть спробу." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +msgid "Clear form" +msgstr "Чітка форма" -msgid "The database returned an unexpected error." -msgstr "База даних повернула несподівану помилку." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "Налаштування форми не зберігалися" -msgid "The database was deleted." -msgstr "База даних була видалена." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 +msgid "" +"We were unable to carry over any controls when switching to this new " +"dataset." +msgstr "" +"Ми не змогли перенести будь -які елементи керування при переході на цей " +"новий набір даних." -msgid "The database was not found." -msgstr "База даних не була знайдена." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "Налаштувати" -msgid "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects." -msgstr "" -"DataSet %s пов'язаний з діаграмами %s, які з’являються на інформаційних панелях %s. Ви впевнені, що хочете продовжувати? Видалення набору даних порушить ці об'єкти." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "Генеруючи посилання, будь ласка, зачекайте .." -msgid "The dataset associated with this chart no longer exists" -msgstr "Набір даних, пов'язаний з цією діаграмою, більше не існує" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "Висота діаграми" -msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." -msgstr "" -"Конфігурація набору даних, викрита тут\n" -" впливає на всі діаграми за допомогою цього набору даних.\n" -" Пам’ятайте, що зміна налаштувань\n" -" Тут може вплинути на інші діаграми\n" -" небажаними способами." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +msgid "Chart width" +msgstr "Ширина діаграми" -msgid "The dataset has been saved" -msgstr "Набір даних зберігається" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +msgid "An error occurred while loading dashboard information." +msgstr "Під час завантаження інформації про інформаційну панель сталася помилка." -msgid "The dataset linked to this chart may have been deleted." -msgstr "Набір даних, пов'язаний з цією діаграмою, можливо, був видалений." +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "Зберегти (перезапис)" -msgid "The datasource couldn't be loaded" -msgstr "Дані не вдалося завантажити" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +msgid "Save as..." +msgstr "Зберегти як..." -msgid "The datasource is too large to query." -msgstr "DataSource занадто великий, щоб запитувати." +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "Назва діаграми" -msgid "The description can be displayed as widget headers in the dashboard view. Supports markdown." -msgstr "Опис може відображатися як заголовки віджетів на поданні приладової панелі. Підтримує відміток." +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +msgid "Dataset Name" +msgstr "Назва набору даних" -msgid "The distance between cells, in pixels" -msgstr "Відстань між клітинами, в пікселях" +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." +msgstr "" +"Набору даних багаторазового використання буде збережено за допомогою " +"вашої діаграми." -msgid "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache." -msgstr "Тривалість часу за секунди до кешу недійсна. Встановіть -1, щоб обійти кеш." +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "Додайте до інформаційної панелі" -msgid "The encoding format of the lines" -msgstr "Формат кодування ліній" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "Виберіть приладову панель" -msgid "The engine_params object gets unpacked into the sqlalchemy.create_engine call." -msgstr "Об'єкт Engine_Params розпаковується в дзвінок SQLALCHEMY.CREATE_ENGINE." +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "Обраний" -msgid "The following entries in `series_columns` are missing in `columns`: %(columns)s. " -msgstr "Наступні записи в `series_columns` відсутні у ґcolumnsґ: %(columns)s. " +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +msgid " a dashboard OR " +msgstr " інформаційна панель або " -msgid "The function to use when aggregating points into groups" -msgstr "Функція, яку слід використовувати при агрегуванні точок у групи" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +msgid "create" +msgstr "створити" -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "Хост “%(hostname)s” може бути знижений і неможливо досягти." +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +msgid " a new one" +msgstr " новий" -msgid "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s." -msgstr "Хост \" %(hostname)s” може бути знижений, і його не можна дістатися на порт %(port)s." +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "Не вдалося створити інформаційну панель." -msgid "The host might be down, and can't be reached on the provided port." -msgstr "Хост може бути вниз, і його неможливо дістатися на наданий порт." +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "Діаграма не вдалося створити." -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "Ім'я хоста \"%(ім'я хоста)s\" неможливо вирішити." +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "Не вдалося створити інформаційну панель." -msgid "The hostname provided can't be resolved." -msgstr "Ім'я хоста неможливо вирішити." +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "Збережіть та перейдіть на інформаційну панель" -msgid "The id of the active chart" -msgstr "Ідентифікатор активної діаграми" +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "Зберегти діаграму" -msgid "" -"The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to " -"a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the " -"'explore view'" -msgstr "" -"Список діаграм, пов’язаних з цією таблицею. Змінюючи цю дані, ви можете змінити, як поводяться ці пов'язані діаграми. Також зауважте, що діаграми повинні вказати на " -"даний момент, тому ця форма не зможе зберегти, якщо видалити діаграми з даних. Якщо ви хочете змінити дані для діаграми, перезапишіть діаграму з \"Вивчення " -"перегляду\"" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +msgid "Formatted date" +msgstr "Відформатована дата" -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "Максимальна кількість подій, що повертаються, еквівалентні кількості рядків" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +msgid "Column Formatting" +msgstr "Форматування стовпців" -msgid "The maximum number of subdivisions of each group; lower values are pruned first" -msgstr "Максимальна кількість підрозділів кожної групи; Нижні значення обрізаються спочатку" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +msgid "Collapse data panel" +msgstr "Панель даних про крах" -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "Максимальне значення показників. Це необов'язкова конфігурація" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" +msgstr "Розгорнути панель даних" -msgid "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid." -msgstr "Metadata_params у додатковому полі налаштовані не правильно. Ключ %(key)s є недійсним." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +msgid "Samples" +msgstr "Зразки" -msgid "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid." -msgstr "Metadata_params у додатковому полі налаштовані не правильно. Ключ %{key} s є недійсним." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 +msgid "No samples were returned for this dataset" +msgstr "Для цього набору даних не було повернуто жодних зразків" -msgid "The metadata_params object gets unpacked into the sqlalchemy.MetaData call." -msgstr "Об'єкт Metadata_Params розпаковується в дзвінок SQLALCHEMY.METADATA." +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +msgid "No results" +msgstr "Немає результатів" -msgid "" -"The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that " -"all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods" -msgstr "" -"Мінімальна кількість періодів прокатки, необхідні для показу значення. Наприклад, якщо ви робите накопичувальну суму на 7 днів, ви можете захотіти, щоб ваш " -"\"мінливий період\" був 7, так що всі показані точки даних - це загальна кількість 7 періодів. Це приховає \"рампу\", що відбудеться протягом перших 7 періодів" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "Пошук показників та стовпців" -msgid "The number color \"steps\"" -msgstr "Колір числа \"кроки\"" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +msgid "Create a dataset" +msgstr "Створіть набір даних" -msgid "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time." -msgstr "Кількість годин, негативна чи позитивна, щоб змістити стовпчик часу. Це можна використовувати для переміщення часу UTC до місцевого часу." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +msgid " to edit or add columns and metrics." +msgstr " редагувати або додати стовпці та показники." -msgid "" -"The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROWS. Please add additional limits/filters or download to csv to see more " -"rows up to the %(limit)d limit." -msgstr "" -"Кількість відображених результатів обмежена %(рядами) d за допомогою конфігурації Display_max_Rows. Будь ласка, додайте додаткові обмеження/фільтри або завантажте в " -"CSV, щоб побачити більше рядків до обмеження %(ліміт) D." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" +msgstr "Показуючи %s %s" -msgid "" -"The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the " -"%(limit)d limit." -msgstr "" -"Кількість відображених результатів обмежена %(рядки) d. Будь ласка, додайте додаткові ліміти/фільтри, завантажте в CSV або зв’яжіться з адміністратором, щоб побачити " -"більше рядків до обмеження (ліміт) D." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "Показувати менше ..." -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "Кількість відображених рядків обмежена %(рядами) d шляхом спадного падіння." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "Покажи все..." -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "Кількість відображених рядків обмежена %(рядами) d шляхом спадного краплі." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "Показувати менше ..." -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "Кількість відображених рядків обмежена %(рядами) d за запитом" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "Не в змозі отримати кольори панелі панелі" -msgid "The number of rows displayed is limited to %(rows)d by the query and limit dropdown." -msgstr "Кількість відображених рядків обмежена %(рядами) d шляхом запиту та спадного падіння." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +msgid "Added to 1 dashboard" +msgstr "Додано до 1 інформаційної панелі" -msgid "The number of seconds before expiring the cache" -msgstr "Кількість секунд до закінчення кешу" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +msgid "Not added to any dashboard" +msgstr "Не додано на будь-яку інформаційну панель" -msgid "The object does not exist in the given database." -msgstr "Об'єкт не існує в даній базі даних." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." +msgstr "" +"Ви можете переглянути список інформаційних панелей у спадному порядку " +"налаштувань діаграми." -msgid "The parameter %(parameters)s in your query is undefined." -msgstr "Параметр %(parameters)s у вашому запиті не визначений." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +msgid "Not available" +msgstr "Недоступний" -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "Пароль, що надається для імені користувача \"%(ім'я користувача)s\", є неправильним." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +msgid "Add the name of the chart" +msgstr "Додайте назву діаграми" -msgid "The password provided when connecting to a database is not valid." -msgstr "Пароль, наданий при підключенні до бази даних, не є дійсним." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +msgid "Chart title" +msgstr "Назва діаграми" -msgid "" -"The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections " -"of the database configuration are not present in export files, and should be added manually after the import if they are needed." -msgstr "" -"Паролі для баз даних нижче потрібні для імпорту їх разом із діаграмами. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних " -"не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "Додайте необхідні контрольні значення для збереження діаграми" -msgid "" -"The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and should be added manually after the import if they are needed." -msgstr "" -"Паролі для баз даних нижче потрібні для імпорту їх разом із інформаційними панелями. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації " -"бази даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "Тип діаграми вимагає набору даних" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and should be added manually after the import if they are needed." +"This chart type is not supported when using an unsaved query as a chart " +"source. " msgstr "" -"Паролі для баз даних нижче потрібні для імпорту їх разом із наборами даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази " -"даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." +"Цей тип діаграми не підтримується при використанні незбереженого запиту " +"як джерела діаграми. " -msgid "" -"The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" " -"sections of the database configuration are not present in export files, and should be added manually after the import if they are needed." -msgstr "" -"Для імпорту їх разом із збереженими запитами потрібні паролі для баз даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази " -"даних не присутні в експортних файлах, і його слід додавати вручну після імпорту, якщо вони потрібні." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." +msgstr " Візуалізувати свої дані." -msgid "" -"The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database " -"configuration are not present in explore files and should be added manually after the import if they are needed." -msgstr "" -"Паролі для баз даних нижче потрібні для їх імпорту. Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні у " -"дослідженні файли, і його слід додавати вручну після імпорту, якщо вони потрібні." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "Необхідні контрольні значення були видалені" -msgid "The pattern of timestamp format. For strings use " -msgstr "Візерунок формату часової позначки. Для використання рядків " +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +msgid "Your chart is not up to date" +msgstr "Ваша діаграма не оновлена" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted \"freq\" expressions." +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" -"Періодичність, протягом якої врізати час. Користувачі можуть надати\n" -" Псевдонім \"Панди\".\n" -" Клацніть на міхур Info для отримання більш детальної інформації про прийняті вирази \"Freq\"." +"Ви оновили значення на панелі управління, але діаграма не оновлювалася " +"автоматично. Запустіть запит, натиснувши кнопку \"Оновлення діаграми\" " +"або" -msgid "The pixel radius" -msgstr "Радіус пікселя" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "Методи керування позначені " -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table " -"referenced here." -msgstr "" -"Вказівник на фізичну таблицю (або переглянути). Майте на увазі, що діаграма пов'язана з цією логічною таблицею Superset, і ця логічна таблиця вказує на фізичну " -"таблицю, на яку посилається тут." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "Метод контролю позначено " -msgid "The port is closed." -msgstr "Порт закритий." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +msgid "Chart Source" +msgstr "Джерело діаграми" -msgid "The port number is invalid." -msgstr "Номер порту недійсний." +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "Вкладка Відкрийте DataSource" -msgid "The primary metric is used to define the arc segment sizes" -msgstr "Первинний показник використовується для визначення розмірів сегмента дуги" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" +msgstr "Оригінальний" -msgid "The provided `rows` argument is not a valid integer." -msgstr "Забезпечений аргумент `Rows` не є дійсним цілим числом." +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "Обрізаний" -msgid "The query associated with the results was deleted." -msgstr "Запит, пов’язаний з результатами, було видалено." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "Ви не маєте дозволу на редагування цієї діаграми" -msgid "The query associated with these results could not be found. You need to re-run the original query." -msgstr "Не вдалося знайти запит, пов'язаний з цими результатами. Потрібно повторно запустити оригінальний запит." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +msgid "Chart properties updated" +msgstr "Властивості діаграми оновлені" -msgid "The query contains one or more malformed template parameters." -msgstr "Запит містить один або кілька неправильно сформованих параметрів шаблону." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +msgid "Edit Chart Properties" +msgstr "Редагувати властивості діаграми" -msgid "The query couldn't be loaded" -msgstr "Запит не вдалося завантажити" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "Ця діаграма керується зовні і не може бути відредагована в суперсеті" -msgid "The query estimation was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load." -msgstr "Оцінка запитів була вбита після %(sqllab_timeout)s секунд. Це може бути занадто складно, або база даних може бути під великим навантаженням." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 +msgid "" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." +msgstr "" +"Опис може відображатися як заголовки віджетів на поданні приладової " +"панелі. Підтримує відміток." -msgid "The query has a syntax error." -msgstr "Запит має помилку синтаксису." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "Особа або група, яка сертифікувала цю діаграму." -msgid "The query returned no data" -msgstr "Запит не повертав даних" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "Конфігурація" -msgid "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load." -msgstr "Запит був убитий після %(sqllab_timeout)s секунд. Це може бути занадто складно, або база даних може бути під великим навантаженням." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "" +"Тривалість (за секунди) тайм -ауту кешування для цієї діаграми. " +"Встановіть -1, щоб обійти кеш. Зверніть увагу на за замовчуванням до часу" +" очікування набору даних, якщо він не визначений." -msgid "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -"Радіус (у пікселях) алгоритм використовує для визначення кластера. Виберіть 0, щоб вимкнути кластеризацію, але будьте обережні, що велика кількість балів (> 1000) " -"спричинить відставання." +"Список користувачів, які можуть змінити діаграму. Шукати за іменем або " +"іменем користувача." -msgid "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster" -msgstr "Радіус окремих точок (тих, які не в кластері). Або чисельна колонка, або `auto`, що масштабує точку на основі найбільшого кластера" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "Обмеження досягнуто" -msgid "The report has been created" -msgstr "Звіт створений" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +msgid "Create chart" +msgstr "Створити діаграму" -msgid "The results backend no longer has the data from the query." -msgstr "Результати, що бекрономиться, більше не мають даних із запиту." +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" +msgstr "Оновлення діаграми" -msgid "The results stored in the backend were stored in a different format, and no longer can be deserialized." -msgstr "Результати, що зберігаються в бекенді, зберігалися в іншому форматі, і більше не можуть бути дезеріалізовані." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "Недійсна конфігурація LAT/Довга." -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "Багата підказка показує список усіх серій для цього моменту часу" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "Зворотня шир/довгота " -msgid "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query." -msgstr "Схеми “%(schema)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну схему." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Стовпці довготи та широти" -msgid "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query." -msgstr "Схема \"%(schema_name)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну схему." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "Розмежований одиночний стовпчик Long & Lat" -msgid "The schema was deleted or renamed in the database." -msgstr "Схема була видалена або перейменована в базу даних." +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "" +"Прийняті кілька форматів, подивіться на бібліотеку Python Geopy.points " +"для отримання детальної інформації" -msgid "The size of the square cell, in pixels" -msgstr "Розмір квадратної клітини, пікселів" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Геохаш" -msgid "The submitted URL is not considered safe, only use URLs with the same domain as Superset." -msgstr "Подана URL -адреса не вважається безпечною, використовуйте лише URL -адреси з тим самим доменом, що і суперсет." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "textarea" -msgid "The submitted payload has the incorrect format." -msgstr "Надістоване корисне навантаження має неправильний формат." +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "у модальному" -msgid "The submitted payload has the incorrect schema." -msgstr "Надіслане корисне навантаження має неправильну схему." +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "Вибачте, сталася помилка" -msgid "The table \"%(table)s\" does not exist. A valid table must be used to run this query." -msgstr "Таблиця “%(table)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну таблицю." +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +msgid "Save as Dataset" +msgstr "Збережіть як набір даних" -msgid "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query." -msgstr "Таблиця “%(table_name)s\" не існує. Для запуску цього запиту необхідно використовувати дійсну таблицю." +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "Відкрито в лабораторії SQL" -msgid "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it." -msgstr "Стол був створений. У рамках цього двофазного процесу конфігурації тепер слід натиснути кнопку Редагувати за новою таблицею, щоб налаштувати її." +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format +msgid "Failed to verify select options: %s" +msgstr "Не вдалося перевірити вибрати параметри: %s" -msgid "The table was deleted or renamed in the database." -msgstr "Таблицю було видалено або перейменовано в базу даних." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 +msgid "No annotation layers" +msgstr "Ніяких шарів анотації" -msgid "" -"The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is " -"applied against this column or expression" -msgstr "" -"Стовпчик часу для візуалізації. Зауважте, що ви можете визначити довільний вираз, який повертає стовпець DateTime в таблиці. Також зауважте, що фільтр нижче " -"застосовується проти цього стовпця або виразу" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +msgid "Add an annotation layer" +msgstr "Додайте шар анотації" -msgid "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "Часова деталізація для візуалізації. Зауважте, що ви можете вводити та використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 тижнів'" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "Анотаційний шар" -msgid "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "Часова деталізація для візуалізації. Зауважте, що ви можете вводити та використовувати просту природну мову, як у 10 секунд, `1 день 'або` 56 тижнів'" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +msgid "Select the Annotation Layer you would like to use." +msgstr "Виберіть шар анотації, який ви хочете використовувати." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are " -"defined on a per database engine basis in the Superset source code." +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" msgstr "" -"Часова деталізація для візуалізації. Це стосується перетворення дати для зміни стовпчика часу та визначає нову деталізацію часу. Параметри тут визначаються на основі " -"двигуна на базу даних у вихідному коді суперсета." +"Використовуйте іншу існуючу діаграму як джерело для анотацій та накладок." +"\n" +" Ваша діаграма повинна бути одним із цих типів візуалізації: [%s]" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local " -"time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's " -"local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time." +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" msgstr "" -"Часовий діапазон для візуалізації. Усі відносні часи, напр. \"Минулого місяця\", \"Останні 7 днів\", \"тепер\" тощо. На сервері оцінюються за допомогою локального " -"часу сервера (SANS Timezone). Усі часи підказки та часи заповнювача виражаються в UTC (SANS Timezone). Потім часові позначки оцінюються базою даних за допомогою " -"локального часу двигуна. Примітка можна чітко встановити часовий пояс на формат ISO 8601, якщо вказати або час запуску та/або кінця." - -msgid "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain" -msgstr "Одиниця часу для кожного блоку. Має бути меншим одиницею, ніж домен_гранулярність. Має бути більшим або рівним часовим зерном" - -msgid "The time unit used for the grouping of blocks" -msgstr "Одиниця часу, що використовується для групування блоків" - -msgid "The type of visualization to display" -msgstr "Тип візуалізації для відображення" +"Очікує формули з параметром залежно від часу 'x'\n" +" У мілісекундах з моменту епохи. MathJS використовується для " +"оцінки формул.\n" +" Приклад: '2x+5'" -msgid "The unit of measure for the specified point radius" -msgstr "Одиниця виміру для заданого радіуса точки" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "Значення шару анотації" -msgid "The user seems to have been deleted" -msgstr "Здається, користувач видалив" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 +msgid "Bad formula." +msgstr "Погана формула." -msgid "The user/password combination is not valid (Incorrect password for user)." -msgstr "Комбінація користувача/пароля не є дійсною (неправильний пароль для користувача)." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "Конфігурація анотаційних шматочків" -msgid "The username \"%(username)s\" does not exist." -msgstr "Ім'я користувача “%(username)s\" не існує." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." +msgstr "" +"Цей розділ дозволяє налаштувати, як користуватися шматочком\n" +" генерувати анотації." -msgid "The username provided when connecting to a database is not valid." -msgstr "Ім'я користувача, що надається при підключенні до бази даних, не є дійсним." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "Стовпчик часу анотації" -msgid "The way the ticks are laid out on the X-axis" -msgstr "Те, як кліщі викладені на осі x" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "Стовпчик запуску інтервалу" -msgid "The width of the lines" -msgstr "Ширина ліній" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "Стовпчик часу події" -msgid "There are associated alerts or reports" -msgstr "Є пов'язані сповіщення або звіти" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." +msgstr "Цей стовпець повинен містити інформацію про дату/час." -msgid "There are associated alerts or reports: %s," -msgstr "Існують пов'язані сповіщення або звіти: %s," +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "Анотаційний шар інтервалу кінця" -msgid "There are no charts added to this dashboard" -msgstr "На цю інформаційну панель не додано діаграм" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "Інтервальний кінцевий стовпчик" -msgid "There are no components added to this tab" -msgstr "На цю вкладку немає компонентів" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" +msgstr "Стовпчик заголовка шару анотації" -msgid "There are no databases available" -msgstr "Баз даних немає" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "Стовпчик заголовок" -msgid "There are no filters in this dashboard." -msgstr "На цій інформаційній панелі немає фільтрів." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "Виберіть заголовок для вас анотацію." -msgid "There are unsaved changes." -msgstr "Є незберечені зміни." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "Анотація Шар Опис Стовпці" -msgid "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo." -msgstr "У запиті SQL є помилка синтаксису. Можливо, було неправильне написання чи друкарську помилку." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "Опис стовпців" -msgid "There is no chart definition associated with this component, could it have been deleted?" -msgstr "Не існує визначення діаграми, пов’язаного з цим компонентом, чи могло його видалити?" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." +msgstr "" +"Виберіть один або кілька стовпців, які слід показати в анотації. Якщо ви " +"не вибрали стовпець, всі вони будуть показані." -msgid "There is not enough space for this component. Try decreasing its width, or increasing the destination width." -msgstr "Для цього компонента недостатньо місця. Спробуйте зменшити його ширину або збільшити ширину призначення." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +msgid "Override time range" +msgstr "Переоцінка часового діапазону" -msgid "There was an error fetching dataset" -msgstr "Був набір даних про помилку" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." +msgstr "" +"Це контролює, чи поле \"time_range\" з струму\n" +" Переглянути слід передати на діаграму, що містить дані " +"анотації." -msgid "There was an error fetching dataset's related objects" -msgstr "Були помилкові об'єкти, пов’язані з набором даних" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +msgid "Override time grain" +msgstr "Переоцінка зерна часу" -msgid "There was an error fetching tables" -msgstr "Були таблиці для отримання помилок" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." +msgstr "" +"Це контролює, чи час зерна з струму\n" +" Переглянути слід передати на діаграму, що містить дані " +"анотації." -msgid "There was an error fetching the favorite status: %s" -msgstr "Була помилка, яка отримала улюблений статус: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +msgid "" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" +msgstr "" +"Дельта часу на природній мові\n" +" (Приклад: 24 години, 7 днів, 56 тижнів, 365 днів)" -msgid "There was an error fetching your recent activity:" -msgstr "Була помилка, яка отримала вашу недавню діяльність:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "Конфігурація відображення" -msgid "There was an error loading the chart data" -msgstr "Була помилка завантаження даних діаграми" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "Налаштуйте, як тут відображається накладка." -msgid "There was an error loading the dataset metadata" -msgstr "Була помилка, що завантажує метадані набору даних" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "Анотаційний шлюб" -msgid "There was an error loading the schemas" -msgstr "Сталася помилка, що завантажує схеми" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "Стиль" -msgid "There was an error loading the tables" -msgstr "Сталася помилка, що завантажує таблиці" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "Суцільний" -msgid "There was an error saving the favorite status: %s" -msgstr "Була помилка, щоб зберегти улюблений статус: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +msgid "Dashed" +msgstr "Бридкий" -msgid "There was an error with your request" -msgstr "Була помилка з вашим запитом" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "Довгий пункт" -msgid "There was an issue deleting %s: %s" -msgstr "Виникло питання видалення %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +msgid "Dotted" +msgstr "Пунктирний" -msgid "There was an issue deleting rules: %s" -msgstr "Існували правила видалення проблеми: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "Анотація Шар непрозорості" -msgid "There was an issue deleting the selected %s: %s" -msgstr "Виникла проблема з видалення вибраного %s: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "Забарвлення" -msgid "There was an issue deleting the selected annotations: %s" -msgstr "Виникло питання, що видалив вибрані анотації: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "Автоматичний колір" -msgid "There was an issue deleting the selected charts: %s" -msgstr "Виникла проблема з видалення вибраних діаграм: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "Показує або приховує маркери для часових рядів" -msgid "There was an issue deleting the selected dashboards: " -msgstr "Була проблема, яка видалила вибрані інформаційні панелі: " +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +msgid "Hide Line" +msgstr "Приховувати лінію" -msgid "There was an issue deleting the selected datasets: %s" -msgstr "Виникла проблема з видалення вибраних наборів даних: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +msgid "Hides the Line for the time series" +msgstr "Приховує лінію для часових рядів" -msgid "There was an issue deleting the selected layers: %s" -msgstr "Виникла проблема з видалення вибраних шарів: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "Конфігурація шару" -msgid "There was an issue deleting the selected queries: %s" -msgstr "Виникла проблема, що видалив вибрані запити: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "Налаштуйте основи вашого шару анотації." -msgid "There was an issue deleting the selected templates: %s" -msgstr "Виникла проблема з видалення вибраних шаблонів: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "Обов'язковий" -msgid "There was an issue deleting: %s" -msgstr "Видаляло проблему: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "Сховати шар" -msgid "There was an issue duplicating the dataset." -msgstr "Існувала проблема, що дублювання набору даних." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "Лейбл шоу" -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "Існувала проблема, що дублювання вибраних наборів даних: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "Чи завжди показувати анотаційну етикетку" -msgid "There was an issue favoriting this dashboard." -msgstr "Була проблема, яка сприяла цій інформаційній панелі." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "Тип шару анотації" -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "На цій інформаційній панелі було додано питання про отримання звітів." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "Виберіть тип шару анотації" -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "Була проблема, яка отримала улюблений статус цієї інформаційної панелі." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "Тип джерела анотації" -msgid "There was an issue fetching your chart: %s" -msgstr "Виникла проблема з отриманням вашої діаграми: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "Виберіть джерело своїх анотацій" -msgid "There was an issue fetching your dashboards: %s" -msgstr "Виникла проблема з отриманням інформаційних панелей: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +msgid "Annotation source" +msgstr "Джерело анотації" -msgid "There was an issue fetching your recent activity: %s" -msgstr "Існувало проблему, що витягує вашу недавню діяльність: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "Видалити" -msgid "There was an issue fetching your saved queries: %s" -msgstr "Виникла проблема з отриманням збережених запитів: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +msgid "Time series" +msgstr "Часовий ряд" -msgid "There was an issue previewing the selected query %s" -msgstr "Існувала проблема, що переглядає вибраний запит %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "Редагувати шар анотації" -msgid "There was an issue previewing the selected query. %s" -msgstr "Була проблема, що переглядає вибраний запит. %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "Додайте шар анотації" -msgid "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}" -msgstr "У вашому Санкі є петля, будь ласка, надайте дерево. Ось несправне посилання: {}" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "Порожня колекція" -msgid "These are the tables this filter will be applied to." -msgstr "Це таблиці, до яких цей фільтр буде застосований." +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "Додайте предмет" -msgid "These filters apply to the values available in the dropdowns" -msgstr "Ці фільтри застосовуються до значень, наявних у спадних випадках" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "Видаліть елемент" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" -"These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for " -"power users who may want to alter specific parameters." +"This color scheme is being overridden by custom label colors.\n" +" Check the JSON metadata in the Advanced settings" msgstr "" -"Ці параметри генеруються динамічно при натисканні кнопки збереження або перезапис у перегляді. Цей об’єкт JSON викривають тут для довідок та для користувачів " -"живлення, які можуть захотіти змінити конкретні параметри." +"Ця кольорова гамма перекривається за допомогою спеціальних кольорів " +"етикетки.\n" +" Перевірте метадані JSON у розширених налаштуваннях" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" -"This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who " -"may want to alter specific parameters." +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." msgstr "" -"Цей об’єкт JSON генерується динамічно при натисканні кнопки збереження або перезапис у поданні панелі приладної панелі. Тут викрито для довідок та для користувачів " -"живлення, які можуть захотіти змінити конкретні параметри." - -msgid "This action will permanently delete %s." -msgstr "Ця дія назавжди видаляє %s." - -msgid "This action will permanently delete the layer." -msgstr "Ця дія назавжди видаляє шар." - -msgid "This action will permanently delete the saved query." -msgstr "Ця дія назавжди видаляє збережений запит." - -msgid "This action will permanently delete the template." -msgstr "Ця дія назавжди видаляє шаблон." +"Колірна гамма визначається спорідненою інформаційною панеллю.\n" +" Відредагуйте кольорову гаму у властивостях приладної панелі." -msgid "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com)." -msgstr "Це може бути IP -адреса (наприклад, 127.0.0.1), або доменне ім'я (наприклад, mydatabase.com)." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "панель приладів" -msgid "This chart applies cross-filters to charts whose datasets contain columns with the same name." -msgstr "Ця діаграма застосовує перехресні фільти до діаграм, набори даних яких містять стовпці з однойменною назвою." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" +msgstr "Схема інформаційної панелі" -msgid "This chart has been moved to a different filter scope." -msgstr "Ця діаграма була переміщена до іншої області фільтра." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "Виберіть кольорову гаму" -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "Ця діаграма керується зовні і не може бути відредагована в суперсеті" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" +msgstr "Виберіть схему" -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "Ця діаграма може бути несумісною з фільтром (набори даних не відповідають)" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" +msgstr "Показати менше стовпців" -msgid "This chart type is not supported when using an unsaved query as a chart source. " -msgstr "Цей тип діаграми не підтримується при використанні незбереженого запиту як джерела діаграми. " +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" +msgstr "Показати всі стовпці" -msgid "" -"This color scheme is being overridden by custom label colors.\n" -" Check the JSON metadata in the Advanced settings" -msgstr "" -"Ця кольорова гамма перекривається за допомогою спеціальних кольорів етикетки.\n" -" Перевірте метадані JSON у розширених налаштуваннях" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "Фракційні цифри" -msgid "This column might be incompatible with current dataset" -msgstr "Цей стовпець може бути несумісним з поточним набором даних" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "Кількість десяткових цифр до круглих чисел до" -msgid "This column must contain date/time information." -msgstr "Цей стовпець повинен містити інформацію про дату/час." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" +msgstr "Мінина ширина" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the annotation data." +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" msgstr "" -"Це контролює, чи поле \"time_range\" з струму\n" -" Переглянути слід передати на діаграму, що містить дані анотації." +"Мінімальна ширина стовпців за замовчуванням у пікселях фактична ширина " +"все ще може бути більша, ніж це, якщо іншим стовпцям не потрібно багато " +"місця" -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the annotation data." -msgstr "" -"Це контролює, чи час зерна з струму\n" -" Переглянути слід передати на діаграму, що містить дані анотації." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "Текст вирівнює" -msgid "This dashboard is currently auto refreshing; the next auto refresh will be in %s." -msgstr "На даний момент ця інформаційна панель автоматично освіжає; Наступне автоматичне оновлення буде у %s." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "Горизонтальне вирівнювання" -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "Ця інформаційна панель керує зовні, і не може бути відредагована в суперсеті" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "Показати стільникові смуги" -msgid "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -"Ця інформаційна панель не опублікована, що означає, що вона не з’явиться у списку інформаційних панелей. Улюблене його, щоб побачити його там або отримати доступ, " -"використовуючи URL -адресу безпосередньо." +"Чи вирівнювати позитивні та негативні значення в діаграмі клітинної штрих" +" на 0" -msgid "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard." -msgstr "Ця інформаційна панель не опублікована, вона не з’явиться у списку інформаційних панелей. Клацніть тут, щоб опублікувати цю інформаційну панель." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "Будьте кольорові числові значення, якщо вони є позитивними чи негативними" -msgid "This dashboard is now hidden" -msgstr "Ця інформаційна панель зараз прихована" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +msgid "Truncate Cells" +msgstr "Усікатні клітини" -msgid "This dashboard is now published" -msgstr "Ця інформаційна панель зараз опублікована" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" +msgstr "Урізати довгі клітини до встановленої вище “min width”" -msgid "This dashboard is published. Click to make it a draft." -msgstr "Ця інформаційна панель опублікована. Клацніть, щоб зробити це проектом." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 +msgid "" +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." +msgstr "" -msgid "This dashboard is ready to embed. In your application, pass the following id to the SDK:" -msgstr "Ця інформаційна панель готова до вбудовування. У своїй заявці передайте наступний ідентифікатор SDK:" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "Формат невеликого числа" -msgid "This dashboard was changed recently. Please reload dashboard to get latest version." -msgstr "Ця інформаційна панель була змінена нещодавно. Будь ласка, перезавантажте інформаційну панель, щоб отримати останню версію." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "" +"Формат чисел D3 для чисел між -1,0 до 1,0, корисний, коли ви хочете мати " +"різні значні цифри для невеликої та великої кількості" -msgid "This dashboard was saved successfully." -msgstr "Ця інформаційна панель була успішно збережена." +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "Назва відображення" -msgid "This database is managed externally, and can't be edited in Superset" -msgstr "Ця база даних керує зовні, і не може бути відредагована в суперсеті" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +#, fuzzy +msgid "Number formatting" +msgstr "Рядок формату числа" -msgid "This database table does not contain any data. Please select a different table." -msgstr "Ця таблиця баз даних не містить жодних даних. Виберіть іншу таблицю." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" +msgstr "Редагувати форматер" -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "Цей набір даних керує зовні, і його не можна редагувати в суперсеті" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "Додати новий форматер" -msgid "This dataset is not used to power any charts." -msgstr "Цей набір даних не використовується для живлення будь -яких діаграм." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "Додайте новий кольоровий форматер" -msgid "This defines the element to be plotted on the chart" -msgstr "Це визначає елемент, який потрібно побудувати на діаграмі" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "насторожений" -msgid "This defines the level of the hierarchy" -msgstr "Це визначає рівень ієрархії" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" +msgstr "помилка" -msgid "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery." -msgstr "Ця поля діє на суперсетний вигляд, що означає, що Superset буде виконувати запит проти цього рядка як підзапит." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "успіх темний" -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "Цей фільтр не існує на інформаційній панелі. Це не буде застосовуватися." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" +msgstr "насторожити темно" -msgid "This filter might be incompatible with current dataset" -msgstr "Цей фільтр може бути несумісним із поточним набором даних" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "помилка темна" -msgid "This filter set is identical to: \"%s\"" -msgstr "Цей набір фільтра ідентичний: \"%s\"" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "Це значення повинно бути меншим, ніж правильне цільове значення" -msgid "This functionality is disabled in your environment for security reasons." -msgstr "Ця функціональність відключена у вашому середовищі з міркувань безпеки." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "Це значення повинно бути більшим, ніж ліве цільове значення" -msgid "" -"This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the " -"clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false)." -msgstr "" -"Це умова, яка буде додана до пункту «Де». Наприклад, щоб повернути лише рядки для певного клієнта, ви можете визначити звичайний фільтр із пунктом `client_id = 9`. " -"Щоб не відображати рядків, якщо користувач не належить до ролі фільтра RLS, базовий фільтр може бути створений із пунктом `1 = 0` (завжди помилково)." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "Вимагається" -msgid "" -"This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & " -"drop in the dashboard view" -msgstr "" -"Цей об’єкт JSON описує позиціонування віджетів на приладовій панелі. Він динамічно генерується при регулюванні розміру та позицій віджетів, використовуючи " -"перетягування в інформаційній панелі" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Оператор" -msgid "This markdown component has an error." -msgstr "Цей компонент відмітки має помилку." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "Ліва цінність" -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "Цей компонент відмітки має помилку. Будь ласка, поверніть свої останні зміни." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "Правильне значення" -msgid "This may be triggered by:" -msgstr "Це може бути спровоковано:" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Цільове значення" -msgid "This metric might be incompatible with current dataset" -msgstr "Цей показник може бути несумісним із поточним набором даних" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "Виберіть стовпець" -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +#, fuzzy +msgid "Color: " +msgstr "Забарвлення" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -"Цей розділ дозволяє налаштувати, як користуватися шматочком\n" -" генерувати анотації." -msgid "This section contains options that allow for advanced analytical post processing of query results" -msgstr "Цей розділ містить варіанти, які дозволяють отримати розширену аналітичну обробку результатів запитів" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +#, fuzzy +msgid "Upper threshold must be greater than lower threshold" +msgstr "`row_limit` повинен бути більшим або рівним 0" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "офлайн" -msgid "This section contains validation errors" -msgstr "Цей розділ містить помилки перевірки" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +#, fuzzy +msgid "Threshold" +msgstr "Поріг мітки" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is " -"being generated correctly." +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -"Цей сеанс зіткнувся з перериванням, і деякі елементи управління можуть не працювати за призначенням. Якщо ви розробник цього додатка, будь ласка, перевірте, чи " -"правильно генерується маркер." - -msgid "This table already has a dataset" -msgstr "Ця таблиця вже має набір даних" -msgid "This table already has a dataset associated with it. You can only associate one dataset with a table.\n" -msgstr "У цій таблиці вже є набір даних, пов'язаний з ним. Ви можете асоціювати лише один набір даних із таблицею.\n" - -msgid "This value should be greater than the left target value" -msgstr "Це значення повинно бути більшим, ніж ліве цільове значення" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +#, fuzzy +msgid "The width of the Isoline in pixels" +msgstr "Ширина ліній" -msgid "This value should be smaller than the right target value" -msgstr "Це значення повинно бути меншим, ніж правильне цільове значення" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +#, fuzzy +msgid "The color of the isoline" +msgstr "Формат кодування ліній" -msgid "This visualization type does not support cross-filtering." -msgstr "Цей тип візуалізації не підтримує перехресне фільтрування." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 +#, fuzzy +msgid "Isoband" +msgstr "і" -msgid "This visualization type is not supported." -msgstr "Цей тип візуалізації не підтримується." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +#, fuzzy +msgid "Lower Threshold" +msgstr "Поріг мітки" -msgid "This was triggered by:" -msgstr "Це викликало:" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +msgstr "" -msgid "This will remove your current embed configuration." -msgstr "Це видалить вашу поточну вбудовану конфігурацію." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 +#, fuzzy +msgid "Upper Threshold" +msgstr "Поріг мітки" -msgid "Threshold alpha level for determining significance" -msgstr "Пороговий рівень альфа для визначення значущості" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" +msgstr "" -msgid "Threshold value should be double precision number" -msgstr "Порогове значення повинно бути подвійним точним номером" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +#, fuzzy +msgid "The color of the isoband" +msgstr "Формат кодування ліній" -msgid "Thumbnails" -msgstr "Мініатюри" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" +msgstr "" -msgid "Thursday" -msgstr "Четвер" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" +msgstr "" -msgid "Time" -msgstr "Час" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -msgid "Time Column" -msgstr "Стовпчик часу" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -msgid "Time Comparison" -msgstr "Порівняння часу" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -msgid "Time Format" -msgstr "Формат часу" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -msgid "Time Grain" -msgstr "Зерно часу" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -msgid "Time Granularity" -msgstr "Час деталізація" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "Редагувати набір даних" -msgid "Time Lag" -msgstr "Затримка" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +msgstr "" +"Ви повинні бути власником набору даних для редагування. Будь ласка, " +"зверніться до власника набору даних, щоб вимагати модифікацій або " +"редагувати доступ." -msgid "Time Range" -msgstr "Часовий діапазон" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "Переглянути в лабораторії SQL" -msgid "Time Ratio" -msgstr "Співвідношення часу" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "Попередній перегляд запитів" -msgid "Time Series" -msgstr "Часовий ряд" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 +msgid "Save as dataset" +msgstr "Збережіть як набір даних" -msgid "Time Series - Bar Chart" -msgstr "Часові серії - Барна діаграма" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +msgid "Missing URL parameters" +msgstr "Відсутні параметри URL -адреси" -msgid "Time Series - Dual Axis Line Chart" -msgstr "Часовий ряд - діаграма подвійної осі" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "У URL -адреси відсутні параметри DataSet_ID або Slice_ID." -msgid "Time Series - Line Chart" -msgstr "Часовий ряд - Лінійна діаграма" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "Набір даних, пов'язаний з цією діаграмою, можливо, був видалений." -msgid "Time Series - Multiple Line Charts" -msgstr "Часові серії - кілька рядків рядків" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "Тип дальності" -msgid "Time Series - Nightingale Rose Chart" -msgstr "Часові серії - Соловейна діаграма троянд" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "Фактичний часовий діапазон" -msgid "Time Series - Paired t-test" -msgstr "Часовий ряд - парний t -тест" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "Застосовувати" -msgid "Time Series - Percent Change" -msgstr "Часовий ряд - відсоток зміни" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "Редагувати часовий діапазон" -msgid "Time Series - Period Pivot" -msgstr "Часовий ряд - Період" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "Налаштування розширеного діапазону часу " -msgid "Time Series - Stacked" -msgstr "Часовий ряд - складений" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "Почати (включно)" -msgid "Time Series Options" -msgstr "Параметри часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "Дата початку, що входить у часовий діапазон" -msgid "Time Shift" -msgstr "Зрушення в часі" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "Кінець (ексклюзивний)" -msgid "Time Table View" -msgstr "Перегляд таблиці часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "Дата закінчення виключається з часового діапазону" -msgid "Time column" -msgstr "Стовпчик часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "Налаштування діапазону часу: Попередній ..." -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "Стовпчик часу “%(col)s” не існує в наборі даних" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "Налаштування діапазону часу: Останнє ..." -msgid "Time column filter plugin" -msgstr "Плагін фільтра у стовпці часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "Налаштуйте спеціальний діапазон часу" -msgid "Time column to apply dependent temporal filter to" -msgstr "Стовпчик часу для застосування залежного тимчасового фільтра до" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Відносна кількість" -msgid "Time column to apply time range to" -msgstr "Стовпчик часу, щоб застосувати часовий діапазон до" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "Відносний період" -msgid "Time comparison" -msgstr "Порівняння часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "Прив’язати до" -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" -msgstr "" -"Дельта часу на природній мові\n" -" (Приклад: 24 години, 7 днів, 56 тижнів, 365 днів)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "Тепер" -msgid "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later]." -msgstr "Дельта часу неоднозначна. Будь ласка, вкажіть [%(human_readable)s тому] або [%(human_readable)s пізніше]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Дата, час" -msgid "Time filter" -msgstr "Час фільтр" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "Повернення до конкретного часу." -msgid "Time format" -msgstr "Формат часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "Синтаксис" -msgid "Time grain" -msgstr "Зерно часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "Приклад" -msgid "Time grain filter plugin" -msgstr "Плагін зерна зерна" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "Переміщує заданий набір дати заданим інтервалом." -msgid "Time grain missing" -msgstr "Часове зерно відсутнє" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "Обрізає вказану дату до точності, визначеної одиницею дати." -msgid "Time granularity" -msgstr "Час деталізація" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "Отримайте останню дату до одиниці дати." -msgid "Time in seconds" -msgstr "Час за секундами" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "Отримайте дату вказати на свято" -msgid "Time lag" -msgstr "Затримка" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "Попередній" -msgid "Time range" -msgstr "Часовий діапазон" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "Звичайний" -msgid "Time ratio" -msgstr "Співвідношення часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "останній день" -msgid "Time related form attributes" -msgstr "Атрибути, пов’язані з часом" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "минулого тижня" -msgid "Time series" -msgstr "Часовий ряд" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "минулого місяця" -msgid "Time series columns" -msgstr "Стовпці часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "останній чверть" -msgid "Time shift" -msgstr "Зрушення в часі" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "минулого року" -msgid "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later]." -msgstr "Рядок часу неоднозначний. Будь ласка, вкажіть [%(human_readable)s тому] або [%(human_readable)s пізніше]." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "попередній календарний тиждень" -msgid "Time-series Area Chart" -msgstr "Діаграма району часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "попередній календарний місяць" -msgid "" -"Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An " -"area chart in Superset can be stream, stack, or expand." -msgstr "" -"Діаграма області часових рядів схожа на лінійну діаграму тим, що вони представляють змінні з однаковою шкалою, але діаграми області складають показники один до " -"одного. Діаграма області в суперсеті може бути потоком, стеком або розширенням." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "попередній календарний рік" -msgid "Time-series Bar Chart" -msgstr "Діаграма штрих часу" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "Секунди %s" -msgid "Time-series Bar Chart (legacy)" -msgstr "Діаграма штрих часу (Legacy)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" +msgstr "Хвилини %s" -msgid "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars." -msgstr "Діаграми часових рядів використовуються для показу змін у метриці з часом як серія барів." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "Години %s" -msgid "Time-series Chart" -msgstr "Діаграма часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Дні %s" -msgid "Time-series Line Chart" -msgstr "Лінійна діаграма часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Тиждень %s" -msgid "Time-series Percent Change" -msgstr "Зміна відсотків часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "Місяці %s" -msgid "Time-series Period Pivot" -msgstr "Часові періоди періоду повороту" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr "Квартали %s" -msgid "Time-series Scatter Plot" -msgstr "Сорія розкидання сюжету" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" +msgstr "Роки %s" -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two " -"variables." -msgstr "" -"Ділянка розсіювання часових рядів має час на горизонтальній осі в лінійних одиницях, а точки з'єднані в порядку. Він показує статистичну залежність між двома " -"змінними." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "Конкретна дата/час" -msgid "Time-series Smooth Line" -msgstr "Гладка лінія часових рядів" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "Відносна дата/час" -msgid "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional." -msgstr "Гладка лінія часових рядів-це варіація лінійної діаграми. Без кутів і жорстких країв, гладка лінія іноді виглядає розумнішими та професійнішими." +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "Тепер" -msgid "Time-series Stepped Line" -msgstr "Серія часу ступінчаста лінія" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "Опівночі" -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart " -"can be useful when you want to show the changes that occur at irregular intervals." -msgstr "" -"Поступається графік часових рядів (також називається крок діаграми)-це варіація лінійної діаграми, але з лінією, що утворює ряд кроків між точками даних. Крок " -"діаграми може бути корисною, коли ви хочете показати зміни, які відбуваються з нерегулярними інтервалами." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "Збережені вирази" -msgid "Time-series Table" -msgstr "Таблиця часових рядів" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "Врятований" -msgid "" -"Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a " -"series of data points connected by straight line segments. It is a basic type of chart common in many fields." -msgstr "" -"Лінійна діаграма часових рядів використовується для візуалізації повторних вимірювань, здійснених через регулярні інтервали часу. Лінійна діаграма - це тип діаграми, " -"яка відображає інформацію як ряд точок даних, підключених за допомогою прямих сегментів. Це основний тип діаграми, поширений у багатьох полях." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" +msgstr "%s стовпці" -msgid "Timeout error" -msgstr "Помилка тайм -ауту" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +msgid "No temporal columns found" +msgstr "Не знайдено тимчасових стовпців" -msgid "Timestamp format" -msgstr "Формат часової позначки" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +msgid "No saved expressions found" +msgstr "Збережених виразів не знайдено" -msgid "Timezone" -msgstr "Часовий пояс" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" +"Додайте обчислені тимчасові стовпці до набору даних у модалі \"редагувати" +" дані\"" -msgid "Timezone offset (in hours) for this datasource" -msgstr "Зсув часового поясу (у годинах) для цього даних" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +msgstr "" +"Додайте обчислені стовпці до набору даних у модалі \"Редагувати " +"DataSource\"" -msgid "Timezone selector" -msgstr "Вибір часу" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" +msgstr " Щоб позначити стовпець як стовпчик часу" -msgid "Tiny" -msgstr "Крихітний" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +msgid " to add calculated columns" +msgstr " Для додавання обчислених стовпців" -msgid "Title" -msgstr "Титул" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "Простий" -msgid "Title Column" -msgstr "Стовпчик заголовок" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" +msgstr "Позначте стовпець як тимчасовий у модальному режимі \"редагувати дані\"" -msgid "Title is required" -msgstr "Потрібна назва" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "Спеціальний SQL" -msgid "Title or Slug" -msgstr "Назва або слим" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "Моя колонка" -msgid "To filter on a metric, use Custom SQL tab." -msgstr "Щоб фільтрувати метрику, використовуйте власну вкладку SQL." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +msgid "This filter might be incompatible with current dataset" +msgstr "Цей фільтр може бути несумісним із поточним набором даних" -msgid "To get a readable URL for your dashboard" -msgstr "Щоб отримати читабельну URL адресу для вашої інформаційної панелі" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +msgid "This column might be incompatible with current dataset" +msgstr "Цей стовпець може бути несумісним з поточним набором даних" -msgid "Tools" -msgstr "Інструменти" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +msgid "Drop a column here or click" +msgstr "Зайдіть сюди або натисніть кнопку" -msgid "Tooltip" -msgstr "Підказка" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "Клацніть, щоб редагувати мітку" -msgid "Tooltip sort by metric" -msgstr "Сортування підказок за метрикою" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "Спустіть тут стовпці/метрики або натисніть" -msgid "Tooltip time format" -msgstr "Формат часу підказки" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 +msgid "This metric might be incompatible with current dataset" +msgstr "Цей показник може бути несумісним із поточним набором даних" -msgid "Top" -msgstr "Топ" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 +msgid "Drop a column/metric here or click" +msgstr "Спустіть сюди стовпець/метрику або натисніть" -msgid "Top left" -msgstr "Зверху ліворуч" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " +msgstr "" +"\n" +" Цей фільтр був успадкований із контексту панелі приладної" +" панелі.\n" +" Це не буде збережено під час збереження діаграми.\n" +" " -msgid "Top right" -msgstr "Праворуч зверху" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" +msgstr "%s варіант(и)" -msgid "Top to Bottom" -msgstr "Зверху вниз" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "Виберіть тему" -msgid "Total" -msgstr "Загальний" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." +msgstr "" +"Такого стовпця не знайдено. Щоб фільтрувати метрику, спробуйте спеціальну" +" вкладку SQL." -msgid "Total (%(aggfunc)s)" -msgstr "Всього (%(aggfunc)s)" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "Щоб фільтрувати метрику, використовуйте власну вкладку SQL." -msgid "Total (%(aggregatorName)s)" -msgstr "Всього (%(aggregatorName)s)" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 +#, python-format +msgid "%s operator(s)" +msgstr "%s Оператор(и)" -msgid "Total value" -msgstr "Загальна вартість" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "Виберіть оператор" -msgid "Total: %s" -msgstr "Всього: %s" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "Параметр порівняння" -msgid "Totals" -msgstr "Підсумки" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "Введіть тут значення" -msgid "Track job" -msgstr "Відстежувати" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "Значення фільтра (чутливе до випадку)" -msgid "Transformable" -msgstr "Перетворений" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +msgid "Failed to retrieve advanced type" +msgstr "Не вдалося отримати розширений тип" -msgid "Transparent" -msgstr "Прозорий" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "виберіть WHERE або HAVING ..." -msgid "Transpose pivot" -msgstr "Перекладіть поворот" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "Фільтри за колонками" -msgid "Tree Chart" -msgstr "Деревна діаграма" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "Фільтри за метриками" -msgid "Tree layout" -msgstr "Макет дерева" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" +msgstr "метричний" -msgid "Tree orientation" -msgstr "Орієнтація на дерева" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "Нерухомий" -msgid "Treemap" -msgstr "Подумати" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "На основі метрики" -msgid "Trend" -msgstr "Тенденція" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "Мій показник" -msgid "Triangle" -msgstr "Трикутник" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "Додати показник" -msgid "Trigger Alert If..." -msgstr "Тригер, якщо ..." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" +msgstr "Виберіть параметри сукупності" -msgid "Truncate Axis" -msgstr "Усікатна вісь" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" +msgstr "%s агреговані" -msgid "Truncate Cells" -msgstr "Усікатні клітини" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "Виберіть Збережена показниця" -msgid "Truncate Metric" -msgstr "Укорочений метрик" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" +msgstr "%s збережені метрики" -msgid "Truncate Y Axis" -msgstr "Укорочення y вісь" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "Збережені метрики" -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." -msgstr "Укоротився вісь. Можна перекрити, вказавши мінімальну або максимальну межу." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +msgid "No saved metrics found" +msgstr "Збережених показників не знайдено" -msgid "Truncate long cells to the \"min width\" set above" -msgstr "Урізати довгі клітини до встановленої вище “min width”" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" +msgstr "Додайте показники до набору даних у модал \"Редагувати DataSource\"" -msgid "Truncates the specified date to the accuracy specified by the date unit." -msgstr "Обрізає вказану дату до точності, визначеної одиницею дати." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +msgid " to add metrics" +msgstr " Додати показники" -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "Спробуйте застосувати різні фільтри або забезпечити, щоб ваш DataSource має дані" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "Прості спеціальні показники не ввімкнено для цього набору даних" -msgid "Try different criteria to display results." -msgstr "Спробуйте різні критерії для відображення результатів." +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "стовпчик" -msgid "Try selecting a different schema" -msgstr "Спробуйте вибрати іншу схему" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "сукупний" -msgid "Tuesday" -msgstr "У вівторок" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "Спеціальні спеціальні показники SQL не ввімкнено для цього набору даних" -msgid "Tukey" -msgstr "Тюкі" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format +msgid "Error while fetching data: %s" +msgstr "Помилка під час отримання даних: %s" -msgid "Type" -msgstr "Тип" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Стовпці часових рядів" -msgid "Type \"%s\" to confirm" -msgstr "Введіть “%s” для підтвердження" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +msgid "Actual value" +msgstr "Фактичне значення" -msgid "Type a value" -msgstr "Введіть значення" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +msgid "Sparkline" +msgstr "Іскрова лінія" -msgid "Type a value here" -msgstr "Введіть тут значення" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "Середній період" -msgid "Type is required" -msgstr "Потрібен тип" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" +msgstr "Мітка заголовка стовпчика" -msgid "Type of Google Sheets allowed" -msgstr "Тип аркушів Google дозволено" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +msgid "Column header tooltip" +msgstr "Підказка заголовка стовпців" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 msgid "Type of comparison, value difference or percentage" msgstr "Тип порівняння, різниця у цінності або відсоток" -msgid "Type or Select [%s]" -msgstr "Введіть або виберіть [%s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "Ширина" -msgid "UI Configuration" -msgstr "Конфігурація інтерфейсу" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "Ширина іскрової лінії" -msgid "URL" -msgstr "URL" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +msgid "Height of the sparkline" +msgstr "Висота іскрової лінії" -msgid "URL Parameters" -msgstr "Параметри URL -адреси" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +msgid "Time lag" +msgstr "Затримка" -msgid "URL parameters" -msgstr "Параметри URL -адреси" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -msgid "URL slug" -msgstr "URL -адреса" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +msgid "Time Lag" +msgstr "Затримка" -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "Неможливо додати нову вкладку до бекенду. Зверніться до свого адміністратора." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +msgid "Time ratio" +msgstr "Співвідношення часу" -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "Неможливо підключитися до каталогу під назвою “%(catalog_name)s”." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +msgid "Number of periods to ratio against" +msgstr "Кількість періодів до співвідношення проти" -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Неможливо підключитися до бази даних “%(database)s”." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +msgid "Time Ratio" +msgstr "Співвідношення часу" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" +msgstr "Показати вісь Y" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 msgid "" -"Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and " -"the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -"Не може підключитися. Переконайтеся, що на обліковому записі служби встановлюються такі ролі: \"Переглядач даних BigQuery\", \"Переглядач метаданих BigQuery\", " -"\"Користувач роботи з великою роботою\" та наступні дозволи встановлюються \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +"Покажіть осі Y на Sparkline. Відобразить вручну встановити min/max, якщо " +"встановити значення або min/max значення в даних в іншому випадку." -msgid "Unable to create chart without a query id." -msgstr "Неможливо створити діаграму без ідентифікатора запиту." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +msgid "Y-axis bounds" +msgstr "Y-осі межі" -msgid "Unable to decode value" -msgstr "Не в змозі розшифрувати значення" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +msgid "Manually set min/max values for the y-axis." +msgstr "Вручну встановити значення min/max для осі y." -msgid "Unable to encode value" -msgstr "Неможливо кодувати значення" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +msgid "Color bounds" +msgstr "Кольорові межі" -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Не в змозі знайти таке свято: [%(holiday)s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 +msgid "" +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." +msgstr "" +"Межі числа, що використовуються для кодування кольору від червоного до " +"синього.\n" +" Поверніть числа для синього до червоного. Щоб отримати " +"чистий червоний або синій,\n" +" Ви можете ввести лише хв, або максимум." -msgid "Unable to load columns for the selected table. Please select a different table." -msgstr "Неможливо завантажити стовпці для вибраної таблиці. Виберіть іншу таблицю." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +msgid "Optional d3 number format string" +msgstr "Необов’язковий рядок формату числа D3" -msgid "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists." -msgstr "" -"Не в змозі перенести державу редактора запитів, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +msgid "Number format string" +msgstr "Рядок формату числа" -msgid "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists." -msgstr "Не в змозі перенести державу запитів, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +msgid "Optional d3 date format string" +msgstr "Необов’язковий рядок формату D3 D3" -msgid "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists." -msgstr "Не в змозі перенести схему таблиці схеми, щоб підтримати. Суперсет повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема зберігається." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +msgid "Date format string" +msgstr "Рядок формату дати" -msgid "Unable to retrieve dashboard colors" -msgstr "Не в змозі отримати кольори панелі панелі" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +msgid "Column Configuration" +msgstr "Конфігурація стовпців" -msgid "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "Неможливо завантажити файл CSV “%(filename)s” до таблиці “%(table_name)s” в базі даних “%(db_name)s”. Повідомлення про помилку: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "Виберіть тип ITE" -msgid "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "Не в змозі завантажити стовпчастий файл “%(filename)s” до таблиці “%(table_name)s\" в базі даних “%(db_name)s\". Повідомлення про помилку: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format +msgid "Currently rendered: %s" +msgstr "В даний час надано: %s" -msgid "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "Неможливо завантажити файл Excel “%(filename)s” до таблиці “%(table_name)s” в базі даних “%(db_name)s\". Повідомлення про помилку: %(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "Рекомендовані теги" -msgid "Undefined" -msgstr "Невизначений" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "Шукайте всі діаграми" -msgid "Undefined window for rolling operation" -msgstr "Невизначене вікно для операції прокатки" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "Опис не доступний." -msgid "Undo the action" -msgstr "Скасувати дію" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "Приклади" -msgid "Undo?" -msgstr "Скасувати?" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "Цей тип візуалізації не підтримується." -msgid "Unexpected error" -msgstr "Неочікувана помилка" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +msgid "View all charts" +msgstr "Переглянути всі діаграми" -msgid "Unexpected error occurred, please check your logs for details" -msgstr "Сталася несподівана помилка, будь ласка, перевірте свої журнали на детальну інформацію" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "Виберіть тип візуалізації" -msgid "Unexpected error: " -msgstr "Неочікувана помилка: " +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "Нічого не знайдено" -msgid "Unexpected time range: %s" -msgstr "Несподіваний часовий діапазон: %s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "Суперсетна діаграма" -msgid "Unknown" -msgstr "Невідомий" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "Нова діаграма" -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "Невідомий хост MySQL Server “%(hostname)s”." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "Редагувати властивості діаграми" -msgid "Unknown Presto Error" -msgstr "Невідома помилка Престо" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +msgid "Dashboards added to" +msgstr "Дашборди були додані до" -msgid "Unknown Status" -msgstr "Невідомий статус" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" +msgstr "Експорт до оригіналу .csv" -msgid "Unknown column used in orderby: %(col)s" -msgstr "Невідомий стовпчик, що використовується в порядку: %(col)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" +msgstr "Експорт до повороту .csv" -msgid "Unknown error" -msgstr "Невідома помилка" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 +msgid "Export to .JSON" +msgstr "Експорт до .json" -msgid "Unknown input format" -msgstr "Невідомий формат введення" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "Вбудувати код" -msgid "Unknown type" -msgstr "Невідомий тип" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "Запустити в SQL Lab" -msgid "Unknown value" -msgstr "Невідоме значення" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "Кодування" -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "Небезпечний тип повернення для функції %(func)s: %(value_type)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Тип розмітки" -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "Небезпечне значення шаблону для ключа %(key)s: %(value_type)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "Виберіть улюблену мову розмітки" -msgid "Unsupported clause type: %(clause)s" -msgstr "Небудова тип пункту: %(clause)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "Покладіть свій код сюди" -msgid "Unsupported post processing operation: %(operation)s" -msgstr "Непідтримувана операція після обробки: %(operation)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "Параметри URL -адреси" -msgid "Unsupported return value for method %(name)s" -msgstr "Непідтримуване повернення значення для методу %(name)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "Додаткові параметри для використання в шаблонних запитах Jinja" -msgid "Unsupported template value for key %(key)s" -msgstr "Небудова значення шаблону для ключа %(key)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "Анотації та шари" -msgid "Unsupported time grain: %(time_grain)s" -msgstr "Непідтримуване зерно часу: %(time_grain)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "Анотаційні шари" -msgid "Untitled Dataset" -msgstr "Без назви набору даних" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "Мої прекрасні кольори" -msgid "Untitled Query" -msgstr "Неправлений запит" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "<(Менше, ніж)" -msgid "Untitled query" -msgstr "Неправлений запит" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (Більше, ніж)" -msgid "Update" -msgstr "Оновлення" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (Менший або рівний)" -msgid "Update chart" -msgstr "Оновлення діаграми" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr "> = (Більший або рівний)" -msgid "Updating chart was stopped" -msgstr "Оновлення діаграми було припинено" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (рівний)" -msgid "Upload" -msgstr "Завантажувати" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "! = (Не рівний)" -msgid "Upload CSV" -msgstr "Завантажте CSV" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "Не нульовий" -msgid "Upload CSV to database" -msgstr "Завантажте CSV у базу даних" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60 днів" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90 днів" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "Додайте метод сповіщення" -msgid "Upload Credentials" -msgstr "Завантажити облікові дані" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "Додайте метод доставки" -msgid "Upload Enabled" -msgstr "Завантажити увімкнено" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "Додавання" -msgid "Upload Excel file" -msgstr "Завантажте файл Excel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" +msgstr "Редагувати звіт" -msgid "Upload Excel file to database" -msgstr "Завантажте файл Excel у базу даних" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "Редагувати попередження" -msgid "Upload JSON file" -msgstr "Завантажити файл JSON" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "Додайте звіт" -msgid "Upload columnar file" -msgstr "Завантажте стовпчастий файл" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "Додати сповіщення" -msgid "Upload columnar file to database" -msgstr "Завантажте стовпчастий файл у базу даних" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "Назва звіту" -msgid "Upload file to database" -msgstr "Завантажте файл у базу даних" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "Ім'я сповіщення" -msgid "Usage" -msgstr "Використання" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "Активний" -msgid "Use \"%(menuName)s\" menu instead." -msgstr "Натомість використовуйте меню “%(menuName)s”." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "Умова попередження" -msgid "Use %s to open in a new tab." -msgstr "Використовуйте %s, щоб відкрити на новій вкладці." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQL -запит" -msgid "Use Area Proportions" -msgstr "Використовуйте пропорції площі" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" +msgstr "" -msgid "Use Columns" -msgstr "Використовуйте стовпці" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "Тригер, якщо ..." -msgid "Use a log scale" -msgstr "Використовуйте шкалу журналу" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "Хвороба" -msgid "Use a log scale for the X-axis" -msgstr "Використовуйте шкалу журналу для осі x" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "Розклад звіту" -msgid "Use a log scale for the Y-axis" -msgstr "Використовуйте шкалу журналу для осі y" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "Розклад умови попередження" -msgid "Use an encrypted connection to the database" -msgstr "Використовуйте зашифроване з'єднання з базою даних" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "Часовий пояс" -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" -"Використовуйте іншу існуючу діаграму як джерело для анотацій та накладок.\n" -" Ваша діаграма повинна бути одним із цих типів візуалізації: [%s]" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "Налаштування розкладу" -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "Використовуйте форматування дати навіть тоді, коли метричне значення не є часовою позначкою" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "Затримка журналу" -msgid "Use legacy datasource editor" -msgstr "Використовуйте редактор Legacy DataSource" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "Робочий таймаут" -msgid "Use metrics as a top level group for columns or for rows" -msgstr "Використовуйте показники як групу вищого рівня для стовпців або для рядків" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "Час за секундами" -msgid "Use only a single value." -msgstr "Використовуйте лише одне значення." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +msgid "seconds" +msgstr "секунди" -msgid "Use the Advanced Analytics options below" -msgstr "Використовуйте наведені нижче варіанти аналітики" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "Період витонченості" -msgid "Use the JSON file you automatically downloaded when creating your service account." -msgstr "Використовуйте файл JSON, який ви автоматично завантажили під час створення облікового запису послуги." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "Вміст повідомлення" -msgid "Use the edit button to change this field" -msgstr "Використовуйте кнопку Редагувати, щоб змінити це поле" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "Надіслати як PNG" -msgid "Use this section if you want a query that aggregates" -msgstr "Використовуйте цей розділ, якщо ви хочете запит, який агрегує" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "Надіслати як CSV" -msgid "Use this section if you want to query atomic rows" -msgstr "Використовуйте цей розділ, якщо ви хочете запитувати атомні ряди" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "Надіслати як текст" -msgid "Use this to define a static color for all circles" -msgstr "Використовуйте це для визначення статичного кольору для всіх кола" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 +#, fuzzy +msgid "Ignore cache when generating report" +msgstr "Ігноруйте кеш при генеруванні скріншоту" -msgid "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json" -msgstr "Використовується внутрішньо для ідентифікації плагіна. Має бути встановлено на ім'я пакету з пакету Plugin.json" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" +msgstr "" -msgid "" -"Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, " -"active users by age and location. Not the most visually stunning visualization, but highly informative and versatile." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -"Використовується для узагальнення набору даних шляхом групування кількох статистичних даних уздовж двох осей. Приклади: Номери продажів за регіоном та місяцем, " -"завдання за статусом та правонаступником, активними користувачами за віком та місцезнаходженням. Не найбільш візуально приголомшлива візуалізація, але дуже " -"інформативна та універсальна." -msgid "User" -msgstr "Користувач" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "Метод сповіщення" -msgid "User Roles" -msgstr "Ролі користувача" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "доповідь" -msgid "User doesn't have the proper permissions." -msgstr "Користувач не має належних дозволів." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, python-format +msgid "%s updated" +msgstr "%s оновлено" -msgid "User must select a value before applying the filter" -msgstr "Користувач повинен вибрати значення перед застосуванням фільтра" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +msgid "CRON Schedule" +msgstr "Графік крон" + +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "Вираження крон" -msgid "User must select a value for this filter" -msgstr "Користувач повинен вибрати значення для цього фільтра" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Звіт надісланий" -msgid "User query" -msgstr "Запит користувача" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "Попередження, спрацьоване, повідомлення надіслано" -msgid "Username" -msgstr "Ім'я користувача" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Надсилання звітів" -msgid "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data" -msgstr "Використання оцінки щільності ядра Гаусса для візуалізації просторового розподілу даних" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "Попередження" -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the " -"target value." -msgstr "" -"Використовує датчик для демонстрації прогресу метрики до цілі. Положення циферблату представляє прогрес, а значення терміналу в калібрі являє собою цільове значення." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Звіт не вдалося" -msgid "" -"Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value " -"took. Useful for multi-stage, multi-group visualizing funnels and pipelines." -msgstr "" -"Використовує кола для візуалізації потоку даних через різні етапи системи. Наведіть курсор на окремі шляхи візуалізації, щоб зрозуміти етапи, які взяла значення. " -"Корисно для багатоступеневої, багатогрупової візуалізації воронки та трубопроводів." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "Попередження не вдалося" -msgid "Value" -msgstr "Цінність" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "Ніщо не спрацювало" -msgid "Value Domain" -msgstr "Домен значення" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "Попередження, спрацьоване, в пільговий період" -msgid "Value Format" -msgstr "Формат значення" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "Метод доставки" -msgid "Value bounds" -msgstr "Значення цінності" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "Виберіть метод доставки" -msgid "Value format" -msgstr "Формат значення" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "Одержувачі розділені \",\" або \";\"" -msgid "Value is required" -msgstr "Значення потрібно" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 +msgid "Queries" +msgstr "Запити" -msgid "Value must be greater than 0" -msgstr "Значення повинно бути більше 0" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" +msgstr "" -msgid "Values are dependent on other filters" -msgstr "Значення залежать від інших фільтрів" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "" -msgid "Values dependent on" -msgstr "Значення, залежні від" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "анотація_layer" -msgid "Values selected in other filters will affect the filter options to only show relevant values" -msgstr "Значення, вибрані в інших фільтрах, впливатимуть на параметри фільтра, щоб показати лише відповідні значення" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" +msgstr "Шаблон анотації оновлений" -msgid "Vehicle Types" -msgstr "Типи транспортних засобів" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" +msgstr "Створений шаблон анотації" -msgid "Verbose Name" -msgstr "Назва багатослів'я" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "Редагувати властивості шару анотації" -msgid "Version" -msgstr "Версія" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "Назва шару анотації" -msgid "Version number" -msgstr "Номер версії" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "Опис (це можна побачити у списку)" -msgid "Vertical" -msgstr "Вертикальний" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "анотація" -msgid "Vertical (Left)" -msgstr "Вертикальний (зліва)" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "Анотація оновлена" -msgid "Video game consoles" -msgstr "Консолі відеоігор" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "Анотація врятована" -msgid "View" -msgstr "Переглянути" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "Редагувати анотацію" -msgid "View All »" -msgstr "Подивитись всі »" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "Додати анотацію" -msgid "View Dataset" -msgstr "Переглянути набір даних" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "дата" -msgid "View all charts" -msgstr "Переглянути всі діаграми" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "Додаткова інформація" -msgid "View as table" -msgstr "Переглянути як таблицю" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "Будь-ласка підтвердіть" -msgid "View in SQL Lab" -msgstr "Переглянути в лабораторії SQL" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "Ви впевнені, що хочете видалити" -msgid "View keys & indexes (%s)" -msgstr "Переглянути ключі та індекси (%s)" +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 +#, python-format +msgid "Modified %s" +msgstr "Модифіковані %s" -msgid "View query" -msgstr "Переглянути запит" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css_template" -msgid "Viewed" -msgstr "Переглянуті" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "Редагувати властивості шаблону CSS" -msgid "Viewed %s" -msgstr "Переглянуті %s" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "Додайте шаблон CSS" -msgid "Viewport" -msgstr "Viewport" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" -msgid "Virtual" -msgstr "Віртуальний" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "опублікований" -msgid "Virtual (SQL)" -msgstr "Віртуальний (SQL)" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "розтягувати" -msgid "Virtual dataset" -msgstr "Віртуальний набір даних" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "Відрегулюйте, як ця база даних буде взаємодіяти з лабораторією SQL." -msgid "Virtual dataset query cannot be empty" -msgstr "Віртуальний запит набору даних не може бути порожнім" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "Викрити базу даних у лабораторії SQL" -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "Віртуальний запит набору даних не може складатися з декількох тверджень" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "Дозволити цю базу даних запитувати в лабораторії SQL" -msgid "Virtual dataset query must be read-only" -msgstr "Віртуальний запит набору даних повинен бути лише для читання" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "Дозволити створення нових таблиць на основі запитів" -msgid "Visual Tweaks" -msgstr "Візуальні зміни" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "Дозволити створення нових поглядів на основі запитів" -msgid "Visualization Type" -msgstr "Тип візуалізації" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "Схема CTAS & CVAS" -msgid "Visualization type" -msgstr "Тип візуалізації" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Створити або вибрати схему ..." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the " -"chart." +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." msgstr "" -"Візуалізуйте паралельний набір показників у різних групах. Кожна група візуалізується за допомогою власної лінії точок, і кожна метрика представлена ​​як край на " -"діаграмі." +"Примушіть всі таблиці та перегляди в цій схемі, натиснувши CTA або CVA в " +"лабораторії SQL." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the " -"strength of the link between each pair of groups." +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." msgstr "" -"Візуалізуйте пов'язаний показник по парах груп. Теплові карти перевершують кореляцію або міцність між двома групами. Колір використовується для підкреслення сили " -"зв'язку між кожною парою груп." +"Дозволити маніпулювання базою даних за допомогою операторів, що не " +"вибирають, такі як оновлення, видалення, створення тощо." -msgid "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view." -msgstr "Візуалізуйте геопросторові дані, такі як 3D -будівлі, ландшафти або предмети в View." - -msgid "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time." -msgstr "" -"Візуалізуйте, як метрика змінюється з часом за допомогою брусків. Додайте групу за стовпцем для візуалізації показників групи та того, як вони змінюються з часом." - -msgid "Visualize multiple levels of hierarchy using a familiar tree-like structure." -msgstr "Візуалізуйте декілька рівнів ієрархії, використовуючи звичну деревоподібну структуру." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "Увімкнути оцінку витрат на запит" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"Visualize two different series using the same x-axis. Note that both series can be visualized with a different chart type (e.g. 1 using bars and 1 using a line)." +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." msgstr "" -"Візуалізуйте дві різні серії, використовуючи одну і ту ж осі x. Зауважте, що обидві серії можна візуалізувати за допомогою іншого типу діаграми (наприклад, 1 за " -"допомогою смуг та 1 за допомогою рядка)." +"Для BigQuery, Presto та Postgres показує кнопку для обчислення вартості " +"перед запуском запиту." -msgid "Visualize two different time series using the same x-axis. Note that each time series can be visualized differently (e.g. 1 using bars and 1 using a line)." -msgstr "" -"Візуалізуйте два різні часові ряди, використовуючи одну і ту ж осі x. Зауважте, що кожен часовий ряд може бути візуалізований по -різному (наприклад, 1 за допомогою " -"смуг та 1 за допомогою рядка)." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "Дозволити досліджувати цю базу даних" -msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble " -"color." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -"Візуалізує метрику в трьох вимірах даних в одній діаграмі (x вісь, осі y та розміру міхура). Бульбашки з однієї групи можна демонструвати за допомогою кольору " -"бульбашок." - -msgid "Visualizes connected points, which form a path, on a map." -msgstr "Візуалізує підключені точки, які утворюють шлях, на карті." - -msgid "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric." -msgstr "Візуалізує географічні області з ваших даних як багатокутників на карті, що надається Mapbox. Полігони можна забарвити за допомогою метрики." +"Коли ввімкнено, користувачі можуть візуалізувати результати SQL Lab в " +"дослідженні." -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme " -"is used to encode the magnitude of each day's value." -msgstr "" -"Візуалізує, як метрика змінювалася за час, використовуючи кольорову шкалу та подання календаря. Сірі значення використовуються для позначення відсутніх значень, а " -"лінійна кольорова гама використовується для кодування величини значення кожного дня." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "Вимкнути запити попереднього перегляду даних SQL" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a choropleth map. Each subdivision's value is elevated " -"when you hover over the corresponding geographic boundary." +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -"Візуалізує, як одна метрика змінюється в основних підрозділах країни (держави, провінції тощо) на карті хороплета. Значення кожного підрозділу підвищується, коли ви " -"наведете на відповідну географічну межу." +"Вимкнути попередній перегляд даних під час отримання метаданих таблиці в " +"лабораторії SQL. Корисно, щоб уникнути проблем з продуктивністю браузера " +"при використанні баз даних з дуже широкими таблицями." -msgid "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -"Візуалізує багато різних об'єктів часових рядів в одній діаграмі. Ця діаграма застаріла, і ми рекомендуємо використовувати замість цього діаграму часових рядів." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of " -"the bars or edges represent the metric being visualized." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -"Візуалізує потік значень різних груп через різні етапи системи. Нові етапи в трубопроводі візуалізуються як вузли або шари. Товщина брусків або країв представляє " -"показник, який візуалізується." - -msgid "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency." -msgstr "Візуалізує слова в стовпці, які з’являються найчастіше. Більший шрифт відповідає більш високій частоті." - -msgid "Viz is missing a datasource" -msgstr "А саме відсутній даних" - -msgid "Viz type" -msgstr "Тип з -за" - -msgid "WED" -msgstr "Одружуватися" -msgid "Want to add a new database?" -msgstr "Хочете додати нову базу даних?" - -msgid "Warning" -msgstr "УВАГА" - -msgid "Warning Message" -msgstr "Попереджувальне повідомлення" - -msgid "Warning!" -msgstr "УВАГА!" - -msgid "Warning! Changing the dataset may break the chart if the metadata does not exist." -msgstr "УВАГА! Зміна набору даних може порушити діаграму, якщо метаданих не існує." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "Виконання" -msgid "Was unable to check your query" -msgstr "Не зміг перевірити ваш запит" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." +msgstr "Налаштуйте налаштування продуктивності цієї бази даних." -msgid "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue." -msgstr "Ми не можемо підключитися до вашої бази даних. Клацніть \"Дивіться більше\", щоб отримати інформацію, надану базою даних, яка може допомогти усунути проблеми." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "ЧАС КАХ ЧАСУВАННЯ" -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "Ми, здається, не можемо вирішити стовпчик \"%(column)s” на лінії %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "Введіть тривалість за лічені секунди" -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "Ми не можемо вирішити стовпець “%(column_name)s”" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." +msgstr "" +"Тривалість (за секунди) тайм -ауту кешування для діаграм цієї бази даних." +" Час очікування 0 вказує на те, що кеш ніколи не закінчується, і -1 " +"обходить кеш. Зверніть увагу на це за замовчуванням до глобального тайм " +"-ауту, якщо він не визначений." -msgid "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s." -msgstr "Ми, здається, не можемо вирішити стовпець \" %(column_name)s” на лінії %(location)s." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "Час очікування кешу схеми" -msgid "We have the following keys: %s" -msgstr "У нас є такі ключі: %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "" +"Тривалість (за лічені секунди) таймаут кешування метаданих для схем цієї " +"бази даних. Якщо залишатись не встановлено, кеш ніколи не закінчується." -msgid "We were unable to active or deactivate this report." -msgstr "Ми не змогли активно чи деактивувати цей звіт." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "Тайм -аут кешу таблиці" -msgid "We were unable to carry over any controls when switching to this new dataset." -msgstr "Ми не змогли перенести будь -які елементи керування при переході на цей новий набір даних." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "" +"Тривалість (за лічені секунди) таймаут кешування метаданих для таблиць " +"цієї бази даних. Якщо залишатись не встановлено, кеш ніколи не " +"закінчується. " -msgid "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again." -msgstr "Ми не змогли підключитися до вашої бази даних під назвою “%(database)s\". Будь ласка, перевірте ім’я бази даних та спробуйте ще раз." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "Асинхронне виконання запитів" -msgid "Web" -msgstr "Павутина" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "Скасувати запит на подію Window Unload" -msgid "Wednesday" -msgstr "Середа" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 +msgid "" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." +msgstr "" +"Закінчуйте запущені запити, коли вікно браузера закрилося або " +"орієнтувалося на іншу сторінку. Доступні для бази даних Presto, Hive, " +"MySQL, Postgres та Snowflake." -msgid "Week" -msgstr "Тиждень" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 +msgid "Add extra connection information." +msgstr "Додайте додаткову інформацію про з'єднання." -msgid "Week ending Saturday" -msgstr "Тиждень, що закінчується в суботу" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "Забезпечити додаткове" -msgid "Week starting Monday" -msgstr "Тиждень, починаючи з понеділка" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." +msgstr "" +"Рядок JSON, що містить додаткову конфігурацію з'єднання. Це " +"використовується для надання інформації про з'єднання для таких систем, " +"як Hive, Presto та BigQuery, які не відповідають імені користувача: " +"синтаксис пароля, як правило, використовується SQLALCHEMY." -msgid "Week starting Sunday" -msgstr "Тиждень, починаючи з неділі" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "Введіть ca_bundle" -msgid "Week_ending Sunday" -msgstr "Week_endnd Sunday" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 +msgid "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." +msgstr "" +"Необов’язковий вміст Ca_bundle для перевірки запитів HTTPS. Доступний " +"лише в певних двигунах бази даних." -msgid "Weekly Report" -msgstr "Тижневий звіт" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "Видання себе в системі в системі (Presto, Trino, Drill, Hive та Gsheets)" -msgid "Weekly Report for %s" -msgstr "Щотижневий звіт за %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Якщо Presto або Trino, всі запити в лабораторії SQL будуть виконані як " +"реєстрація в даний час користувачеві, який повинен мати дозвіл на їх " +"запуск. Якщо hive and hive.server2.enable.doas увімкнено, запустить " +"запити в якості облікового запису послуг, але представлять себе в даний " +"час в даний час користувачеві через властивість hive.server2.proxy.user." -msgid "Weekly seasonality" -msgstr "Щотижнева сезонність" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +msgid "Allow file uploads to database" +msgstr "Дозволити завантаження файлів у базу даних" -msgid "Weeks %s" -msgstr "Тиждень %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +msgid "Schemas allowed for File upload" +msgstr "Схеми дозволені для завантаження файлів" -msgid "Weight" -msgstr "Вага" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +msgid "A comma-separated list of schemas that files are allowed to upload to." +msgstr "Список схем, відокремлений комами, до яких файли дозволяють завантажувати." -msgid "We’re having trouble loading these results. Queries are set to timeout after %s second." -msgstr "У нас виникають проблеми з завантаженням цих результатів. Запити встановлюються на таймаут після %s секунди." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +msgid "Additional settings." +msgstr "Додаткові налаштування." -msgid "We’re having trouble loading this visualization. Queries are set to timeout after %s second." -msgstr "У нас виникають проблеми з завантаженням цієї візуалізації. Запити встановлюються на таймаут після %s секунди." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "Параметри метаданих" -msgid "What should be shown on the label?" -msgstr "Що слід показати на етикетці?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." +msgstr "Об'єкт Metadata_Params розпаковується в дзвінок SQLALCHEMY.METADATA." -msgid "What should happen if the table already exists" -msgstr "Що має статися, якщо стіл вже існує" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "Параметри двигуна" -msgid "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`" -msgstr "Коли `тип обчислення\" встановлено на \"відсоткову зміну\", формат осі y змушений до `.1%` `" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." +msgstr "Об'єкт Engine_Params розпаковується в дзвінок SQLALCHEMY.CREATE_ENGINE." -msgid "When a secondary metric is provided, a linear color scale is used." -msgstr "Коли надається вторинна метрика, використовується лінійна кольорова шкала." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "Версія" -msgid "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema" -msgstr "При дозволі створювати таблицю як опцію в лабораторії SQL, ця опція змушує створювати таблицю в цій схемі" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "Номер версії" -msgid "When checked, the map will zoom to your data after each query" -msgstr "Після перевірки карта збільшиться до ваших даних після кожного запиту" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 +#, fuzzy +msgid "" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." +msgstr "" +"Вкажіть версію бази даних. Це слід використовувати з Presto для того, щоб" +" забезпечити оцінку витрат на запит." + +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "Крок %(stepCurr)s %(stepLast)s" -msgid "When enabled, users are able to visualize SQL Lab results in Explore." -msgstr "Коли ввімкнено, користувачі можуть візуалізувати результати SQL Lab в дослідженні." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 +msgid "Enter Primary Credentials" +msgstr "Введіть первинні дані" -msgid "When only a primary metric is provided, a categorical color scale is used." -msgstr "Коли надається лише первинна метрика, використовується категорична кольорова шкала." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "Потрібна допомога? Дізнайтеся, як підключити базу даних" -msgid "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries." -msgstr "" -"При вказівці SQL, DataSource виступає як погляд. Superset використовуватиме це твердження як підрозділ під час групування та фільтрації на створених батьківських " -"запитах." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +msgid "Database connected" +msgstr "База даних підключена" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to " -"the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or " -"indexed time-related field." +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." msgstr "" -"При використанні \"автозаповнених фільтрів\" це може бути використане для підвищення продуктивності запиту отримання значень. Використовуйте цю опцію, щоб " -"застосувати предикат (де пункт) до запиту, що вибирає різні значення з таблиці. Зазвичай наміром було б обмежити сканування, застосовуючи відносний часовий фільтр на " -"розділеному або індексованому поле, пов’язаному з часом." +"Створіть набір даних, щоб почати візуалізувати свої дані як діаграму або " +"перейти до\n" +" SQL Lab, щоб запитати ваші дані." -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "При використанні \"Group за\" ви обмежені для використання однієї метрики" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "Введіть необхідні дані %(dbModelName)s" -msgid "When using other than adaptive formatting, labels may overlap" -msgstr "При використанні, крім адаптивного форматування, мітки можуть перекриватися" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "Потрібна допомога? Дізнайтеся більше про" -msgid "When using this option, default value can’t be set" -msgstr "При використанні цієї опції значення за замовчуванням не можна встановити" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." +msgstr "підключення до %(dbModelName)s." -msgid "Whether the progress bar overlaps when there are multiple groups of data" -msgstr "Чи перекривається панель прогресу, коли існує кілька груп даних" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" +msgstr "Виберіть базу даних для підключення" -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "Чи створена таблиця за допомогою \"візуалізації\" потоку в лабораторії SQL" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" +msgstr "SSH -хост" -msgid "Whether this column is exposed in the `Filters` section of the explore view." -msgstr "Чи викривається цей стовпець у розділі \"Фільтри\" перегляду \"Вивчення\"." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" +msgstr "напр. 127.0.0.1" -msgid "Whether to align background charts with both positive and negative values at 0" -msgstr "Чи вирівнювати фонові діаграми з позитивними, так і негативними значеннями на 0" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" +msgstr "SSH -порт" -msgid "Whether to align positive and negative values in cell bar chart at 0" -msgstr "Чи вирівнювати позитивні та негативні значення в діаграмі клітинної штрих на 0" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "22" -msgid "Whether to always show the annotation label" -msgstr "Чи завжди показувати анотаційну етикетку" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" +msgstr "напр. Аналітика" -msgid "Whether to animate the progress and the value or just display them" -msgstr "Чи варто оживити прогрес і значення, чи просто відображати їх" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" +msgstr "Увійти за допомогою" -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "Чи застосовувати нормальний розподіл на основі рангу за кольоровою шкалою" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" +msgstr "Приватний ключ та пароль" -msgid "Whether to apply filter when items are clicked" -msgstr "Чи слід застосовувати фільтр, коли елементи клацають" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +msgid "SSH Password" +msgstr "Пароль SSH" -msgid "Whether to colorize numeric values by if they are positive or negative" -msgstr "Будьте кольорові числові значення, якщо вони є позитивними чи негативними" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "напр. ********" -msgid "Whether to display a bar chart background in table columns" -msgstr "Чи відображати фон гастрольної діаграми у стовпцях таблиці" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "Приватний ключ" -msgid "Whether to display a legend for the chart" -msgstr "Чи відображати легенду для діаграми" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" +msgstr "Вставте тут приватний ключ" -msgid "Whether to display bubbles on top of countries" -msgstr "Чи відображати бульбашки поверх країн" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +msgid "Private Key Password" +msgstr "Пароль приватного ключа" -msgid "Whether to display the aggregate count" -msgstr "Чи відображати кількість сукупності" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" +msgstr "SSH тунель" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" +msgstr "Параметри конфігурації тунелю SSH" -msgid "Whether to display the interactive data table" -msgstr "Чи відображати таблицю інтерактивних даних" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "Назва відображення" -msgid "Whether to display the labels." -msgstr "Чи відображати мітки." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "Назвіть свою базу даних" -msgid "Whether to display the labels. Note that the label only displays when the 5% threshold." -msgstr "Чи відображати мітки. Зауважте, що мітка відображається лише тоді, коли поріг 5%." +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "Виберіть ім’я, яке допоможе вам визначити цю базу даних." -msgid "Whether to display the legend (toggles)" -msgstr "Чи відображати легенду (перемикає)" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "dialect+driver://username:password@host:port/database" -msgid "Whether to display the metric name as a title" -msgstr "Чи відображати метричну назву як заголовок" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "Зверніться до" -msgid "Whether to display the min and max values of the X-axis" -msgstr "Чи відображати значення min та максимально вісь x" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr "для отримання додаткової інформації про те, як структурувати свій URI." -msgid "Whether to display the min and max values of the Y-axis" -msgstr "Чи відображати значення min та максимально вісь y" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "Тестове з'єднання" -msgid "Whether to display the numerical values within the cells" -msgstr "Чи відображати числові значення всередині комірок" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "база даних" -msgid "Whether to display the stroke" -msgstr "Чи відображати хід" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "Будь ласка, введіть URI SQLALCHEMY для тестування" -msgid "Whether to display the time range interactive selector" -msgstr "Чи відображати інтерактивний селектор часу" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" +msgstr "напр. World_Population" -msgid "Whether to display the timestamp" -msgstr "Чи відображати часову позначку" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +msgid "Database settings updated" +msgstr "Оновлені параметри бази даних" -msgid "Whether to display the trend line" -msgstr "Чи відображати лінію тренду" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" +msgstr "Вибачте, була помилка отримання інформації про базу даних: %s" -msgid "Whether to enable changing graph position and scaling." -msgstr "Чи можна змінювати положення графіку та масштабування." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" +msgstr "Або виберіть зі списку інших баз даних, які ми підтримуємо:" -msgid "Whether to enable node dragging in force layout mode." -msgstr "Чи ввімкнути вузол перетягування в режимі макета." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" +msgstr "Підтримувані бази даних" -msgid "Whether to fill the objects" -msgstr "Чи заповнювати об'єкти" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." +msgstr "Виберіть базу даних ..." -msgid "Whether to ignore locations that are null" -msgstr "Чи потрібно ігнорувати місця, які є нульовими" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "Хочете додати нову базу даних?" -msgid "Whether to include a client-side search box" -msgstr "Чи включати вікно пошуку на стороні клієнта" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. " -msgid "Whether to include a time filter" -msgstr "Чи включати часовий фільтр" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "" +"Будь-які бази даних, які можуть бути з'єднані через URIs SQL Alchemy. " +"Дізнайтеся, як підключити драйвер бази даних " + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "З'єднувати" -msgid "Whether to include the percentage in the tooltip" -msgstr "Чи включати відсоток у підказку" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "Закінчити" -msgid "Whether to include the time granularity as defined in the time section" -msgstr "Чи включати часову деталізацію, визначену в розділі часу" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "Ця база даних керує зовні, і не може бути відредагована в суперсеті" -msgid "Whether to make the grid 3D" -msgstr "Чи робити сітку 3D" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." +msgstr "" +"Паролі для баз даних нижче потрібні для їх імпорту. Зверніть увагу, що " +"розділи \"Безпечні додаткові\" та \"Сертифікат\" конфігурації бази даних " +"не присутні у дослідженні файли, і його слід додавати вручну після " +"імпорту, якщо вони потрібні." -msgid "Whether to make the histogram cumulative" -msgstr "Чи робити гістограму кумулятивною" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Ви імпортуєте одну або кілька баз даних, які вже існують. " +"Перезавантаження може призвести до втрати частини своєї роботи. Ви " +"впевнені, що хочете перезаписати?" -msgid "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like" -msgstr "Незалежно від того, щоб зробити цей стовпець доступним як параметр [Час деталізації], стовпець повинен бути датетом або датетом" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" +msgstr "Помилка створення бази даних" -msgid "Whether to normalize the histogram" -msgstr "Чи нормалізувати гістограму" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." +msgstr "" +"Ми не можемо підключитися до вашої бази даних. Клацніть \"Дивіться " +"більше\", щоб отримати інформацію, надану базою даних, яка може допомогти" +" усунути проблеми." -msgid "Whether to populate autocomplete filters options" -msgstr "Чи заповнити автозаповнення параметрів фільтрів" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 +msgid "CREATE DATASET" +msgstr "Створити набір даних" -msgid "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly" -msgstr "Чи заповнити спадне місце у розділі фільтра «Дослідження перегляду» зі списком різних значень, отриманих з бекенду на льоту" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" +msgstr "Дані запиту в лабораторії SQL" -msgid "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side." -msgstr "Проявляти додаткові елементи управління чи ні. Додаткові елементи керування включають такі речі, як створення мулітбарів, складеними або поруч." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "Підключіть базу даних" -msgid "Whether to show minor ticks on the axis" -msgstr "Чи слід показувати незначні кліщі на осі" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "Редагувати базу даних" -msgid "Whether to show the pointer" -msgstr "Чи показувати вказівник" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" +msgstr "Підключіть цю базу даних за допомогою динамічної форми" -msgid "Whether to show the progress of gauge chart" -msgstr "Чи показувати хід датчика діаграми" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 +msgid "" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." +msgstr "" +"Клацніть на це посилання, щоб перейти на альтернативну форму, яка " +"розкриває лише необхідні поля, необхідні для підключення цієї бази даних." -msgid "Whether to show the split lines on the axis" -msgstr "Чи відображати розділені лінії на осі" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "Можуть знадобитися додаткові поля" -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Чи сортувати висхідну чи спускатися на осі бази." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 +msgid "" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " +msgstr "" +"Виберіть бази даних потребують додаткових полів для завершення на вкладці" +" «Додаткові» для успішного підключення бази даних. Дізнайтеся, які вимоги" +" мають ваші бази даних " -msgid "Whether to sort descending or ascending" -msgstr "Чи сортувати низхідну чи висхідну" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" +msgstr "Імпортувати базу даних з файлу" -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "Чи слід сортувати низхідну чи підніматися, якщо присутній ліміт серії" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" +msgstr "Підключіть цю базу даних за допомогою рядка URI SQLALCHEMY" -msgid "Whether to sort results by the selected metric in descending order." -msgstr "Чи слід сортувати результати за вибраним показником у порядку зменшення." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "" +"Клацніть на це посилання, щоб перейти на альтернативну форму, яка " +"дозволяє вводити URL -адресу SQLALCHEMY для цієї бази даних вручну." -msgid "Whether to sort tooltip by the selected metric in descending order." -msgstr "Чи сортувати підказку за вибраним показником у порядку зменшення." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "" +"Це може бути IP -адреса (наприклад, 127.0.0.1), або доменне ім'я " +"(наприклад, mydatabase.com)." -msgid "Whether to truncate metrics" -msgstr "Чи варто обрізати показники" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "Господар" -msgid "Which country to plot the map for?" -msgstr "Для якої країни побудувати карту?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "напр. 5432" -msgid "Which relatives to highlight on hover" -msgstr "Які родичі, щоб виділити на курсі" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 +msgid "Port" +msgstr "Порт" -msgid "Whisker/outlier options" -msgstr "Варіанти Віскера/Зовнішнього" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" +msgstr "напр. SQL/PROTOCOLV1/O/12345" -msgid "White" -msgstr "Білий" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." +msgstr "Скопіюйте назву HTTP -шляху кластера." -msgid "Width" -msgstr "Ширина" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 +msgid "Copy the name of the database you are trying to connect to." +msgstr "Скопіюйте назву бази даних, до якої ви намагаєтесь підключитися." -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "Ширина довірчого інтервалу. Має бути від 0 до 1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +msgid "Access token" +msgstr "Маркер доступу" -msgid "Width of the sparkline" -msgstr "Ширина іскрової лінії" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +msgid "Pick a nickname for how the database will display in Superset." +msgstr "Виберіть прізвисько, як база даних відображатиметься в суперсеті." -msgid "Window must be > 0" -msgstr "Вікно повинно бути> 0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" +msgstr "напр. param1 = value1 & param2 = значення2" -msgid "With a subheader" -msgstr "З підзаголовком" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" +msgstr "Додаткові параметри" -msgid "Word Cloud" -msgstr "Слово хмара" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "Додайте додаткові спеціальні параметри" -msgid "Word Rotation" -msgstr "Обертання слів" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "Буде використаний режим SSL \"вимагати\"." -msgid "Working" -msgstr "Робочий" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "Тип аркушів Google дозволено" -msgid "Working timeout" -msgstr "Робочий таймаут" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "Публічно поділяються лише аркушами" -msgid "World Map" -msgstr "Карта світу" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "Громадські та приватні діляться аркушами" -msgid "Write a description for your query" -msgstr "Напишіть опис свого запиту" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" +msgstr "Як ви хочете ввести облікові дані облікового запису служби?" -msgid "Write a handlebars template to render the data" -msgstr "Напишіть шаблон ручки для надання даних" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "Завантажити файл JSON" -msgid "Write dataframe index as a column" -msgstr "Запишіть індекс даних даних як стовпець" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "Копіювати та вставити облікові дані JSON" -msgid "Write dataframe index as a column." -msgstr "Запишіть індекс даних даних як стовпець." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "Рахунок служби" -msgid "X AXIS TITLE BOTTOM MARGIN" -msgstr "X Осі Назва Нижня краю" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 +msgid "Paste content of service credentials JSON file here" +msgstr "Вставте вміст службових облікових даних JSON Файл тут" -msgid "X Axis" -msgstr "X Вісь" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "Скопіюйте та вставте весь обліковий запис служби .json файл тут" -msgid "X Axis Format" -msgstr "Формат X Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "Завантажити облікові дані" -msgid "X Axis Label" -msgstr "X мітка вісь" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." +msgstr "" +"Використовуйте файл JSON, який ви автоматично завантажили під час " +"створення облікового запису послуги." -msgid "X Axis Title" -msgstr "Назва X Axis" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "Підключіть аркуші Google як таблиці до цієї бази даних" -msgid "X Log Scale" -msgstr "X шкала журналу" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Назва та URL адреса Google Sheet" -msgid "X Tick Layout" -msgstr "X макет галочки" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "Введіть ім’я для цього аркуша" -msgid "X bounds" -msgstr "X межі" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "Вставте сюди спільну URL -адресу Google Sheet" -msgid "X-Axis Sort Ascending" -msgstr "X-осі сорт висхідного" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "Додати аркуш" -msgid "X-Axis Sort By" -msgstr "X-осі сорт" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +#, fuzzy +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "Скопіюйте назву бази даних, до якої ви намагаєтесь підключитися." -msgid "X-axis" -msgstr "X-вісь" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" +msgstr "напр. xy12345.us-east-2.aws" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" +msgstr "напр. compute_wh" -msgid "XScale Interval" -msgstr "Xscale Interval" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" +msgstr "напр. Рахунок" -msgid "Y 2 bounds" -msgstr "Y 2 межі" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 +msgid "Duplicate dataset" +msgstr "Дублікат набору даних" -msgid "Y AXIS TITLE MARGIN" -msgstr "Y Exis title Margin" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +msgid "Duplicate" +msgstr "Дублікат" -msgid "Y AXIS TITLE POSITION" -msgstr "Y Позиція на осі" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +msgid "New dataset name" +msgstr "Нове ім'я набору даних" -msgid "Y Axis" -msgstr "Y Вісь" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Паролі для баз даних нижче потрібні для імпорту їх разом із наборами " +"даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та " +"\"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і" +" його слід додавати вручну після імпорту, якщо вони потрібні." -msgid "Y Axis 2 Bounds" -msgstr "Y Axis 2 Межі" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Ви імпортуєте один або кілька наборів даних, які вже існують. " +"Перезавантаження може призвести до втрати частини своєї роботи. Ви " +"впевнені, що хочете перезаписати?" -msgid "Y Axis Bounds" -msgstr "Y межі осі" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +msgid "Refreshing columns" +msgstr "Освіжаючі стовпці" -msgid "Y Axis Format" -msgstr "Формат y Axis" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +msgid "Table columns" +msgstr "Стовпці таблиці" -msgid "Y Axis Label" -msgstr "Y мітка вісь" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +msgid "Loading" +msgstr "Навантаження" -msgid "Y Axis Title" -msgstr "Y Назва вісь" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" +msgstr "" +"У цій таблиці вже є набір даних, пов'язаний з ним. Ви можете асоціювати " +"лише один набір даних із таблицею.\n" -msgid "Y Log Scale" -msgstr "Y Шкала журналу" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +msgid "View Dataset" +msgstr "Переглянути набір даних" -msgid "Y bounds" -msgstr "Y межі" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" +msgstr "Ця таблиця вже має набір даних" -msgid "Y-Axis Sort Ascending" -msgstr "Y-осі сорт піднімається" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " +msgstr "" +"Набори даних можна створити з таблиць баз даних або запитів SQL. Виберіть" +" таблицю бази даних зліва або " -msgid "Y-Axis Sort By" -msgstr "Y-осі сорт" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +msgid "create dataset from SQL query" +msgstr "cтворити набір даних із запиту SQL" -msgid "Y-axis" -msgstr "Y-вісь" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." +msgstr " відкрити SQL Lab. Звідти ви можете зберегти запит як набір даних." -msgid "Y-axis bounds" -msgstr "Y-осі межі" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 +msgid "Select dataset source" +msgstr "Виберіть джерело набору даних" -msgid "YScale Interval" -msgstr "ІНСПАЛЬНИЙ ІНТЕРВАЛЬ" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 +msgid "No table columns" +msgstr "Немає стовпців таблиці" -msgid "Year" -msgstr "Рік" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." +msgstr "Ця таблиця баз даних не містить жодних даних. Виберіть іншу таблицю." -msgid "Year (freq=AS)" -msgstr "Рік (freq = as)" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +msgid "An Error Occurred" +msgstr "Виникла помилка" -msgid "Yearly seasonality" -msgstr "Щорічна сезонність" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." +msgstr "Неможливо завантажити стовпці для вибраної таблиці. Виберіть іншу таблицю." -msgid "Years %s" -msgstr "Роки %s" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format +msgid "The API response from %s does not match the IDatabaseTable interface." +msgstr "Відповідь API від %s не відповідає інтерфейсу IDATABASETABLE." -msgid "Yes" -msgstr "Так" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +msgid "Usage" +msgstr "Використання" -msgid "Yes, cancel" -msgstr "Так, скасувати" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +msgid "Chart owners" +msgstr "Власники діаграм" -msgid "Yes, overwrite changes" -msgstr "Так, переписати зміни" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" +msgstr "Діаграма востаннє модифікована" -msgid "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "Ви імпортуєте один або кілька діаграм, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" +msgstr "Діаграма востаннє модифікована за допомогою" -msgid "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Ви імпортуєте одну або кілька інформаційних панелей, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете " -"перезаписати?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" +msgstr "Використання інформаційної панелі" -msgid "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "Ви імпортуєте одну або кілька баз даних, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" +msgstr "Створіть діаграму за допомогою набору даних" -msgid "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Ви імпортуєте один або кілька наборів даних, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете перезаписати?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "діаграма" -msgid "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?" -msgstr "" -"Ви імпортуєте один або кілька збережених запитів, які вже існують. Перезавантаження може призвести до втрати частини своєї роботи. Ви впевнені, що хочете " -"перезаписати?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "Немає діаграм" -msgid "You are not authorized to see this query. If you think this is an error, please reach out to your administrator." -msgstr "Ви не уповноважені бачити цей запит. Якщо ви вважаєте, що це помилка, будь ласка, зверніться до свого адміністратора." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "Цей набір даних не використовується для живлення будь -яких діаграм." -msgid "You can" -msgstr "Ти можеш" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +msgid "Select a database table." +msgstr "Виберіть таблицю бази даних." -msgid "You can add the components in the" -msgstr "Ви можете додати компоненти в" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +msgid "Create dataset and create chart" +msgstr "Створити набір даних та створити діаграму" -msgid "You can add the components in the edit mode." -msgstr "Ви можете додати компоненти в режим редагування." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +msgid "New dataset" +msgstr "Новий набір даних" -msgid "You can also just click on the chart to apply cross-filter." -msgstr "Ви також можете просто натиснути на діаграму, щоб застосувати перехресний фільтр." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +msgid "Select a database table and create dataset" +msgstr "Виберіть таблицю бази даних та створіть набір даних" -msgid "" -"You can choose to display all charts that you have access to or only the ones you own.\n" -" Your filter selection will be saved and remain active until you choose to change it." -msgstr "" -"Ви можете вибрати, щоб відобразити всі діаграми, які у вас є доступ або лише тих, у кого ви володієте.\n" -" Вибір фільтра буде збережено і залишатиметься активним, поки ви не вирішите його змінити." +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +msgid "dataset name" +msgstr "назва набору даних" -msgid "You can create a new chart or use existing ones from the panel on the right" -msgstr "Ви можете створити нову діаграму або використовувати існуючі з панелі праворуч" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "Невизначений" -msgid "You can preview the list of dashboards in the chart settings dropdown." -msgstr "Ви можете переглянути список інформаційних панелей у спадному порядку налаштувань діаграми." +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +msgid "There was an error fetching dataset" +msgstr "Був набір даних про помилку" -msgid "You can't apply cross-filter on this data point." -msgstr "Ви не можете застосувати перехресний фільтр у цій точці даних." +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +msgid "There was an error fetching dataset's related objects" +msgstr "Були помилкові об'єкти, пов’язані з набором даних" -msgid "You cannot delete the last temporal filter as it's used for time range filters in dashboards." -msgstr "Ви не можете видалити останній часовий фільтр, оскільки він використовується для фільтрів часового діапазону на інформаційних панелях." +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +msgid "There was an error loading the dataset metadata" +msgstr "Була помилка, що завантажує метадані набору даних" -msgid "You cannot use 45° tick layout along with the time range filter" -msgstr "Ви не можете використовувати макет кліщів 45 ° разом із фільтром часу часу" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "[Без назви]" -msgid "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." -msgstr "Ви не можете використовувати [Columns] у поєднанні з [Group By]/[Metrics]/[Percentage Metrics]. Будь ласка, виберіть той чи інший." +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "Невідомий" -msgid "You do not have permission to edit this %s" -msgstr "Ви не маєте дозволу на редагування цього %s" +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" +msgstr "Переглянуті %s" -msgid "You do not have permission to edit this chart" -msgstr "Ви не маєте дозволу на редагування цієї діаграми" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "Редаговані" -msgid "You do not have permission to edit this dashboard" -msgstr "У вас немає дозволу на редагування цієї інформаційної панелі" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "Створений" -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "У вас немає дозволів на доступ до даних: %(ім'я)s." +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "Переглянуті" -msgid "You do not have permissions to edit this dashboard." -msgstr "У вас немає дозволів на редагування цієї інформаційної панелі." +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "Улюблені" -msgid "You don't have access to this chart." -msgstr "Ви не маєте доступу до цієї діаграми." +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "Мої" -msgid "You don't have access to this dashboard." -msgstr "У вас немає доступу до цієї інформаційної панелі." +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "Подивитись всі »" -msgid "You don't have access to this dataset." -msgstr "Ви не маєте доступу до цього набору даних." +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "Під час отримання інформаційної панелі сталася помилка: %s" -msgid "You don't have access to this embedded dashboard config." -msgstr "У вас немає доступу до цієї вбудованої конфігурації інформаційної панелі." +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" +msgstr "діаграми" -msgid "You don't have any favorites yet!" -msgstr "У вас ще немає улюблених!" +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" +msgstr "інформаційні панелі" -msgid "You don't have permission to modify the value." -msgstr "У вас немає дозволу на зміну значення." +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "недавні" -msgid "You don't have the rights to alter %(resource)s" -msgstr "Ви не маєте прав на зміну %(ресурси)s" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "збережені запити" -msgid "You don't have the rights to alter this chart" -msgstr "Ви не маєте прав на зміну цієї діаграми" +#: superset-frontend/src/features/home/EmptyState.tsx:35 +msgid "No charts yet" +msgstr "Ще немає діаграм" -msgid "You don't have the rights to alter this dashboard" -msgstr "Ви не маєте прав на зміну цієї інформаційної панелі" +#: superset-frontend/src/features/home/EmptyState.tsx:36 +msgid "No dashboards yet" +msgstr "Ще немає інформаційних панелей" -msgid "You don't have the rights to alter this title." -msgstr "Ви не маєте прав на зміну цієї назви." +#: superset-frontend/src/features/home/EmptyState.tsx:37 +msgid "No recents yet" +msgstr "Ще немає жодних випадків" -msgid "You don't have the rights to create a chart" -msgstr "Ви не маєте прав на створення діаграми" +#: superset-frontend/src/features/home/EmptyState.tsx:38 +msgid "No saved queries yet" +msgstr "Ще немає врятованих запитів" -msgid "You don't have the rights to create a dashboard" -msgstr "Ви не маєте прав на створення інформаційної панелі" +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, python-format +msgid "%(other)s charts will appear here" +msgstr "%(other)s -діаграми з’являться тут" -msgid "You don't have the rights to download as csv" -msgstr "Ви не маєте прав на завантаження як CSV" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, python-format +msgid "%(other)s dashboards will appear here" +msgstr "%(other)s інформаційні панелі з’являться тут" -msgid "You have no permission to approve this request" -msgstr "Ви не маєте дозволу на затвердження цього запиту" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, python-format +msgid "%(other)s recents will appear here" +msgstr "%(other)s останнє з’явиться тут" -msgid "You have removed this filter." -msgstr "Ви видалили цей фільтр." +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, python-format +msgid "%(other)s saved queries will appear here" +msgstr "%(other)s збережені запити з’являться тут" -msgid "You have unsaved changes." -msgstr "У вас були незберечені зміни." +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" +msgstr "" +"Нещодавно переглянуті діаграми, інформаційні панелі та збережені запити " +"з’являться тут" -msgid "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history." +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -"Ви використали всі %(довжина історії)s скасування слотів і не зможете повністю скасувати наступні дії. Ви можете зберегти свій поточний стан для скидання історії." +"Нещодавно створені діаграми, інформаційні панелі та збережені запити " +"з’являться тут" -msgid "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access." -msgstr "Ви повинні бути власником набору даних для редагування. Будь ласка, зверніться до власника набору даних, щоб вимагати модифікацій або редагувати доступ." +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "" +"Нещодавно відредаговані діаграми, інформаційні панелі та збереженні " +"запити з’являться тут" -msgid "You must pick a name for the new dashboard" -msgstr "Ви повинні вибрати ім’я для нової інформаційної панелі" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQL -запит" -msgid "You must run the query successfully first" -msgstr "Ви повинні спочатку успішно запустити запит" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "У вас ще немає улюблених!" -msgid "You need to configure HTML sanitization to use CSS" -msgstr "Вам потрібно налаштувати санітарію HTML для використання CSS" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" +msgstr "Див. All %(tableName)s" -msgid "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or" -msgstr "Ви оновили значення на панелі управління, але діаграма не оновлювалася автоматично. Запустіть запит, натиснувши кнопку \"Оновлення діаграми\" або" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "Підключіть базу даних" -msgid "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained." -msgstr "Ви змінили набори даних. Будь -які елементи керування з даними (стовпчики, метрики), які відповідають цьому новому наборі даних, були зберігаються." +#: superset-frontend/src/features/home/RightMenu.tsx:179 +msgid "Create dataset" +msgstr "Створити набір даних" -msgid "Your chart is not up to date" -msgstr "Ваша діаграма не оновлена" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" +msgstr "Підключіть аркуш Google" -msgid "Your chart is ready to go!" -msgstr "Ваша діаграма готова йти!" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "Завантажте CSV у базу даних" -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "Ваша інформаційна панель занадто велика. Будь ласка, зменшіть його розмір, перш ніж економити." +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "Завантажте стовпчастий файл у базу даних" -msgid "Your query could not be saved" -msgstr "Ваш запит не вдалося зберегти" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "Завантажте файл Excel у базу даних" -msgid "Your query could not be scheduled" -msgstr "Ваша запит не вдалося запланувати" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" +msgstr "" +"Увімкніть \"Дозволити завантаження файлів у базу даних\" в налаштуваннях " +"будь -якої бази даних" -msgid "Your query could not be updated" -msgstr "Ваш запит не вдалося оновити" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "Інформація" -msgid "Your query has been scheduled. To see details of your query, navigate to Saved queries" -msgstr "Ваш запит запланований. Щоб переглянути деталі вашого запиту, перейдіть до збережених запитів" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "Вийти" -msgid "Your query was not properly saved" -msgstr "Ваш запит не був належним чином збережений" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "Про" -msgid "Your query was saved" -msgstr "Ваш запит був збережений" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "Працює від Superset Apache" -msgid "Your query was updated" -msgstr "Ваш запит був оновлений" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" +msgstr "Ша" -msgid "Your report could not be deleted" -msgstr "Ваш звіт не можна було видалити" +#: superset-frontend/src/features/home/RightMenu.tsx:507 +msgid "Build" +msgstr "Побудувати" -msgid "Zero imputation" -msgstr "Нульова імпутація" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "Документація" -msgid "Zoom" -msgstr "Масштаб" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "Повідомте про помилку" -msgid "Zoom level of the map" -msgstr "Рівень масштабу карти" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "Логін" -msgid "[ untitled dashboard ]" -msgstr "[untitled dashboard]" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "запит" -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "[Longitude] та [Latitude] стовпці повинні бути присутніми в [Group By]" +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format +msgid "Deleted: %s" +msgstr "Видалено: %s" -msgid "[Longitude] and [Latitude] must be set" -msgstr "[Longitude] та [Latitude] повинні бути встановлені" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "Виникло питання видалення %s: %s" -msgid "[Missing Dataset]" -msgstr "[Відсутній набір даних]" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "Ця дія назавжди видаляє збережений запит." -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] Доступ до даних %(ім'я)s був наданий" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "Видалити запит?" -msgid "[Untitled]" -msgstr "[Без назви]" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "Ran %s" -msgid "[asc]" -msgstr "[asc]" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "Збережені запити" -msgid "[copy]" -msgstr "[копія]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "Наступний" -msgid "[dashboard name]" -msgstr "[Назва приладної панелі]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "Назва вкладки" -msgid "[desc]" -msgstr "[desc]" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "Запит користувача" -msgid "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels" -msgstr "" -"[Необов’язково] Ця вторинна метрика використовується для визначення кольору як співвідношення проти первинної метрики. При опущенні кольори є категоричним і на " -"основі мітків" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "Виконаний запит" -msgid "[untitled]" -msgstr "[Без назви]" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "Назва запиту" -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "`compare_columns` повинні мати таку ж довжину, що і `source_columns`." +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL скопійований!" -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "`compare_type` повинно бути `difference`, `percentage` або `ratio`" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "Вибачте, ваш браузер не підтримує копіювання." -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`confidence_interval` повинна бути між 0 і 1 (ексклюзивна)" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "На цій інформаційній панелі було додано питання про отримання звітів." -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty " -"to get a count of points in each cluster." -msgstr "" -"`Count` - це кількість (*), якщо група використовується. Числові стовпці будуть агреговані з агрегатором. Для маркування точок будуть використані нечислові " -"стовпчики. Залиште порожнім, щоб отримати кількість балів у кожному кластері." +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "Звіт створений" -msgid "`operation` property of post processing object undefined" -msgstr "`operation` властивість об'єкта після обробки не визначений" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +msgid "Report updated" +msgstr "Звіт про оновлений" -msgid "`prophet` package not installed" -msgstr "`prophet` модуль не встановлений" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "Ми не змогли активно чи деактивувати цей звіт." -msgid "`rename_columns` must have the same length as `columns`." -msgstr "`rename_columns` повинен мати таку ж довжину, що і `columns`." +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "Ваш звіт не можна було видалити" -msgid "`row_limit` must be greater than or equal to 0" -msgstr "`row_limit` повинен бути більшим або рівним 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "Щотижневий звіт за %s" -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`row_offset` повинен бути більшим або рівним 0" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 +msgid "Weekly Report" +msgstr "Тижневий звіт" -msgid "`width` must be greater or equal to 0" -msgstr "`width` повинна бути більшою або рівною 0" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "Редагувати звіт електронної пошти" -msgid "aggregate" -msgstr "сукупний" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Schedule a new email report" +msgstr "Заплануйте новий звіт електронної пошти" -msgid "alert" -msgstr "насторожений" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "Текст, вбудований в електронну пошту" -msgid "alert dark" -msgstr "насторожити темно" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "Зображення (PNG), вбудоване в електронну пошту" -msgid "alerts" -msgstr "попередження" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "Відформатовано CSV, доданий електронною поштою" -msgid "all" -msgstr "всі" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +msgid "Report Name" +msgstr "Назва звіту" -msgid "also copy (duplicate) charts" -msgstr "також скопіюйте (зробіть дублікат) діаграм" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" +msgstr "Включіть опис, який буде надіслано з вашим звітом" -msgid "ancestor" -msgstr "предок" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "" +"Скріншот інформаційної панелі буде надіслано на ваш електронний лист за " +"адресою" -msgid "and" -msgstr "і" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" +msgstr "Не вдалося оновити звіт" -msgid "annotation" -msgstr "анотація" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" +msgstr "Не вдалося створити звіт" -msgid "annotation_layer" -msgstr "анотація_layer" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 +msgid "Set up an email report" +msgstr "Налаштування звіту електронної пошти" -msgid "asfreq" -msgstr "асфрек" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "Звіти про електронну пошту активні" -msgid "at" -msgstr "в" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "Видалити звіт електронної пошти" -msgid "auto" -msgstr "автоматичний" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "Розклад звіту електронної пошти" -msgid "auto (Smooth)" -msgstr "авто (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "Ця дія назавжди видаляє %s." -msgid "background" -msgstr "фон" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "Видалити звіт?" -msgid "basis" -msgstr "основа" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +msgid "rowlevelsecurity" +msgstr "rowlevelsecurity" -msgid "below (example:" -msgstr "нижче (приклад:" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" +msgstr "Додано правило" -msgid "between {down} and {up} {name}" -msgstr "між {down} і {up} {name}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Edit Rule" +msgstr "Правило редагування" -msgid "bfill" -msgstr "блюд" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +msgid "Add Rule" +msgstr "Додайте правило" -msgid "bolt" -msgstr "болт" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +msgid "Rule Name" +msgstr "Назва права" -msgid "boolean type icon" -msgstr "значок булевого типу" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "Ім'я повинно бути унікальним" -msgid "bottom" -msgstr "дно" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "" +"Регулярні фільтри додають, де до запитів, якщо користувач належить до " +"ролі, що посилається у фільтрі, базові фільтри застосовують фільтри до " +"всіх запитів, крім ролей, визначених у фільтрі, і можуть бути використані" +" для визначення того, що користувачі можуть побачити, чи немає фільтрів " +"RLS у межах a Група фільтрів застосовується до них." + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +#, fuzzy +msgid "These are the datasets this filter will be applied to." +msgstr "Це таблиці, до яких цей фільтр буде застосований." -msgid "button (cmd + z) until you save your changes." -msgstr "кнопка (CMD + Z), поки не збережеш свої зміни." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 +msgid "Excluded roles" +msgstr "Виключені ролі" -msgid "by using" -msgstr "з допомогою" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "" +"Для регулярних фільтрів це ролі, до яких цей фільтр буде застосований. " +"Для базових фільтрів це ролі, до яких фільтр не застосовується, наприклад" +" Адміністратор, якщо адміністратор повинен побачити всі дані." -msgid "cannot be empty" -msgstr "не може бути порожнім" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 +msgid "Group Key" +msgstr "Груповий ключ" -msgid "cardinal" -msgstr "кардинальний" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" +"Фільтри з тим самим груповим ключем будуть розглянуті разом у групі, тоді" +" як різні групи фільтрів будуть та разом. Невизначені групові ключі " +"трактуються як унікальні групи, тобто не згруповані разом. Наприклад, " +"якщо в таблиці є три фільтри, з яких два - для відділів фінансування та " +"маркетинг (груповий ключ = 'відділ'), а один відноситься до регіону " +"Європи (груповий ключ = 'регіон'), застереження про фільтр " +"застосовуватиметься фільтр (відділ = \"фінанси\" або відділ = " +"\"маркетинг\") та (регіон = \"Європа\")." + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "Застереження" -msgid "change" -msgstr "зміна" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"Це умова, яка буде додана до пункту «Де». Наприклад, щоб повернути лише " +"рядки для певного клієнта, ви можете визначити звичайний фільтр із " +"пунктом `client_id = 9`. Щоб не відображати рядків, якщо користувач не " +"належить до ролі фільтра RLS, базовий фільтр може бути створений із " +"пунктом `1 = 0` (завжди помилково)." + +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 +msgid "Regular" +msgstr "Регулярний" -msgid "chart" -msgstr "діаграма" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +msgid "Base" +msgstr "Базовий" -msgid "charts" -msgstr "діаграми" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." +msgstr "" -msgid "choose WHERE or HAVING..." -msgstr "виберіть WHERE або HAVING ..." +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" +msgstr "" -msgid "clear all filters" -msgstr "очистіть усі фільтри" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "Виберіть усі елементи" -msgid "click here" -msgstr "натисніть тут" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" -msgid "code ISO 3166-1 alpha-2 (cca2)" -msgstr "код ISO 3166-1 Альфа-2 (CCA2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 +#, python-format +msgid "You are adding tags to %s %ss" +msgstr "" -msgid "code ISO 3166-1 alpha-3 (cca3)" -msgstr "код ISO 3166-1 Alpha-3 (CCA3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 +#, fuzzy +msgid "tags" +msgstr "мітка" -msgid "code International Olympic Committee (cioc)" -msgstr "код міжнародного олімпійського комітету (cioc)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 +#, fuzzy +msgid "Select Tags" +msgstr "Скасувати всі" -msgid "column" -msgstr "стовпчик" +#: superset-frontend/src/features/tags/TagModal.tsx:237 +#, fuzzy +msgid "Tag updated" +msgstr "Список оновлено" -msgid "connecting to %(dbModelName)s." -msgstr "підключення до %(dbModelName)s." +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "було створено" -msgid "count" -msgstr "рахувати" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "Назва вкладки" -msgid "create" -msgstr "створити" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "Назвіть свою базу даних" -msgid "create a new chart" -msgstr "cтворіть нову діаграму" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "Напишіть опис свого запиту" -msgid "create dataset from SQL query" -msgstr "cтворити набір даних із запиту SQL" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" +msgstr "Виберіть приладову панель" -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "Виберіть Збережена показниця" -msgid "css_template" -msgstr "css_template" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "Обраний не-чим’яний стовпчик" -msgid "cumsum" -msgstr "кумсум" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "Конфігурація інтерфейсу" -msgid "cumulative" -msgstr "кумулятивний" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +msgid "Filter value is required" +msgstr "Потрібне значення фільтра" -msgid "dashboard" -msgstr "панель приладів" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "Користувач повинен вибрати значення перед застосуванням фільтра" -msgid "dashboards" -msgstr "інформаційні панелі" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" +msgstr "Єдине значення" -msgid "database" -msgstr "база даних" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "Використовуйте лише одне значення." -msgid "dataset" -msgstr "набір даних" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "Діапазон фільтрів плагін за допомогою ANTD" -msgid "dataset name" -msgstr "назва набору даних" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr " (виключається)" -msgid "date" -msgstr "дата" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, python-format +msgid "%s option" +msgstr "%s варіант" -msgid "day" -msgstr "день" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "Перевірте наявність сортування висхідного" -msgid "day of the month" -msgstr "день місяця" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 +msgid "Can select multiple values" +msgstr "Може вибрати кілька значень" -msgid "day of the week" -msgstr "день тижня" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "Виберіть за замовчуванням значення First Filter" -msgid "deck.gl 3D Hexagon" -msgstr "deck.gl 3D шестикутник" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 +msgid "When using this option, default value can’t be set" +msgstr "При використанні цієї опції значення за замовчуванням не можна встановити" -msgid "deck.gl Arc" -msgstr "deck.gl Arc" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "Зворотний вибір" -msgid "deck.gl Geojson" -msgstr "deck.gl Geojson" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" +msgstr "Виключіть вибрані значення" -msgid "deck.gl Grid" -msgstr "колода.gl сітка" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "Динамічно шукайте всі значення фільтра" -msgid "deck.gl Heatmap" -msgstr "deck.gl Heatmap" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "" +"За замовчуванням кожен фільтр завантажує щонайменше 1000 варіантів при " +"первинному завантаженні сторінки. Постановіть це поле, чи є у вас більше " +"1000 значень фільтра і хочете ввімкнути динамічний пошук, який завантажує" +" значення фільтра, як вводить користувачі (може додавати напругу до вашої" +" бази даних)." -msgid "deck.gl Multiple Layers" -msgstr "deck.gl Multiple Layers" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "Виберіть плагін фільтра за допомогою ANTD" -msgid "deck.gl Path" -msgstr "deck.gl Path" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "Спеціальний плагін фільтра часу" -msgid "deck.gl Polygon" -msgstr "deck.gl Polygon" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "Немає часу стовпців" -msgid "deck.gl Scatterplot" -msgstr "deck.gl Scatterplot" +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" +msgstr "Плагін фільтра у стовпці часу" -msgid "deck.gl Screen Grid" -msgstr "deck.gl Screen Grid" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "Плагін зерна зерна" -msgid "deck.gl charts" -msgstr "deck.gl charts" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "Робочий" -msgid "deckGL" -msgstr "палуба" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" +msgstr "Не спрацьований" -msgid "default" -msgstr "за замовчуванням" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "На благодать" -msgid "delete" -msgstr "видаляти" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "звіти" -msgid "descendant" -msgstr "нащадок" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "попередження" -msgid "description" -msgstr "опис" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "Виникла проблема з видалення вибраного %s: %s" -msgid "deviation" -msgstr "відхилення" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "Останній пробіг" -msgid "dialect+driver://username:password@host:port/database" -msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "Журнал виконання" -msgid "draft" -msgstr "розтягувати" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "Виберіть декілька" -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "Ще немає %s" -msgid "e.g. ********" -msgstr "напр. ********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "Власник" -msgid "e.g. 127.0.0.1" -msgstr "напр. 127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "Всі" -msgid "e.g. 5432" -msgstr "напр. 5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "Помилка сталася під час отримання цінностей власників: %s" -msgid "e.g. AccountAdmin" -msgstr "напр. Рахунок" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "Статус" -msgid "e.g. Analytics" -msgstr "напр. Аналітика" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "Помилка сталася під час отримання значень набору даних набору даних: %s" -msgid "e.g. compute_wh" -msgstr "напр. compute_wh" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "Попередження та звіти" -msgid "e.g. param1=value1¶m2=value2" -msgstr "напр. param1 = value1 & param2 = значення2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "Попередження" -msgid "e.g. sql/protocolv1/o/12345" -msgstr "напр. SQL/PROTOCOLV1/O/12345" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Звіти" -msgid "e.g. world_population" -msgstr "напр. World_Population" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "Видалити %s?" -msgid "e.g. xy12345.us-east-2.aws" -msgstr "напр. xy12345.us-east-2.aws" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "Ви впевнені, що хочете видалити вибрані %s?" -msgid "e.g., a \"user id\" column" -msgstr "наприклад, стовпець “user id”" +#: superset-frontend/src/pages/AllEntities/index.tsx:180 +#, fuzzy +msgid "Error Fetching Tagged Objects" +msgstr "Були помилкові об'єкти, пов’язані з набором даних" -msgid "edit mode" -msgstr "режим редагування" +#: superset-frontend/src/pages/AllEntities/index.tsx:234 +#, fuzzy +msgid "Edit Tag" +msgstr "Редагувати журнал" -msgid "entries" -msgstr "записи" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "Виникла проблема з видалення вибраних шарів: %s" -msgid "error" -msgstr "помилка" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "Редагувати шаблон" -msgid "error dark" -msgstr "помилка темна" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "Видалити шаблон" -msgid "error_message" -msgstr "повідомлення про помилку" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "Змінений" -msgid "every" -msgstr "кожен" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "Ще немає анотаційних шарів" -msgid "every day of the month" -msgstr "кожен день місяця" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "Ця дія назавжди видаляє шар." -msgid "every day of the week" -msgstr "кожен день тижня" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "Видалити шар?" -msgid "every hour" -msgstr "щогодини" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "Ви впевнені, що хочете видалити вибрані шари?" -msgid "every minute" -msgstr "щохвилини" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "Виникло питання, що видалив вибрані анотації: %s" -msgid "every month" -msgstr "щомісяця" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "Видалити анотацію" -msgid "expand" -msgstr "розширити" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "Анотація" -msgid "explore" -msgstr "досліджувати" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "Ще немає анотації" -msgid "failed" -msgstr "провалився" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format +msgid "Annotation Layer %s" +msgstr "Анотаційний шар %s" + +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" +msgstr "Назад до всіх" -msgid "fetching" -msgstr "приплив" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format +msgid "Are you sure you want to delete %s?" +msgstr "Ви впевнені, що хочете видалити %s?" -msgid "ffill" -msgstr "ффіл" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "Видалити анотацію?" -msgid "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components." -msgstr "filter_box буде застарілий у майбутній версії Superset. Будь ласка, замініть filter_box компонентою фільтра інформаційної панелі." +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "Ви впевнені, що хочете видалити вибрані анотації?" -msgid "flat" -msgstr "рівномірний" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" +msgstr "Не вдалося завантажити дані діаграми" -msgid "for more information on how to structure your URI." -msgstr "для отримання додаткової інформації про те, як структурувати свій URI." +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +msgid "view instructions" +msgstr "переглянути інструкції" -msgid "function type icon" -msgstr "іконка типу функції" +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 +msgid "Add a dataset" +msgstr "Додайте набір даних" -msgid "geohash (square)" -msgstr "geohash (square)" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +msgid "or" +msgstr "або" -msgid "heatmap" -msgstr "теплова карта" +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "Виберіть набір даних" -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "heatmap: значення нормалізуються по всьому heatmap" +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "Виберіть тип діаграми" -msgid "here" -msgstr "ось" +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "Виберіть як набір даних, так і тип діаграми, щоб продовжити" -msgid "hour" -msgstr "година" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Паролі для баз даних нижче потрібні для імпорту їх разом із діаграмами. " +"Зверніть увагу, що розділи \"Безпечні додаткові\" та \"Сертифікат\" " +"конфігурації бази даних не присутні в експортних файлах, і його слід " +"додавати вручну після імпорту, якщо вони потрібні." -msgid "id" -msgstr "ідентифікатор" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Ви імпортуєте один або кілька діаграм, які вже існують. Перезавантаження " +"може призвести до втрати частини своєї роботи. Ви впевнені, що хочете " +"перезаписати?" -msgid "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image" -msgstr "CSS атрибут об'єкта canvas, який визначає, як браузер збільшує зображення" +#: superset-frontend/src/pages/ChartList/index.tsx:231 +msgid "Chart imported" +msgstr "Діаграма імпорту" -msgid "in" -msgstr "у" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "Виникла проблема з видалення вибраних діаграм: %s" -msgid "in modal" -msgstr "у модальному" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "Під час отримання інформаційної панелі сталася помилка" -msgid "is expected to be a number" -msgstr "очікується, що буде числом" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "Будь -який" -msgid "is expected to be an integer" -msgstr "очікується, що буде цілим числом" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +#, fuzzy +msgid "Tag" +msgstr "мітка" -msgid "joined" -msgstr "об'єднаний" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "Помилка сталася під час отримання цінностей власників діаграм: %s" -msgid "json isn't valid" -msgstr "json не є дійсним" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "Сертифікований" -msgid "key a-z" -msgstr "літера A-Z" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "Алфавітний" -msgid "key z-a" -msgstr "літера Z-A" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "Нещодавно змінений" -msgid "label" -msgstr "мітка" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "Найменше нещодавно модифіковано" -msgid "last day" -msgstr "останній день" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "Імпортувати діаграми" -msgid "last month" -msgstr "минулого місяця" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "Ви впевнені, що хочете видалити вибрані діаграми?" -msgid "last quarter" -msgstr "останній чверть" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "Шаблони CSS" -msgid "last week" -msgstr "минулого тижня" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "Виникла проблема з видалення вибраних шаблонів: %s" -msgid "last year" -msgstr "минулого року" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "Шаблон CSS" -msgid "latest partition:" -msgstr "останній розділ:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "Ця дія назавжди видаляє шаблон." -msgid "left" -msgstr "лівий" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "Видалити шаблон?" -msgid "less than {min} {name}" -msgstr "менше {min} {name}" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "Ви впевнені, що хочете видалити вибрані шаблони?" -msgid "linear" -msgstr "лінійний" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"Паролі для баз даних нижче потрібні для імпорту їх разом із " +"інформаційними панелями. Зверніть увагу, що розділи \"Безпечні " +"додаткові\" та \"Сертифікат\" конфігурації бази даних не присутні в " +"експортних файлах, і його слід додавати вручну після імпорту, якщо вони " +"потрібні." -msgid "log" -msgstr "журнал" +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "" +"Ви імпортуєте одну або кілька інформаційних панелей, які вже існують. " +"Перезавантаження може призвести до втрати частини своєї роботи. Ви " +"впевнені, що хочете перезаписати?" -msgid "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile." -msgstr "нижній percentile повинен бути більше 0 і менше 100. Повинен бути нижчим, ніж верхній percentile." +#: superset-frontend/src/pages/DashboardList/index.tsx:177 +msgid "Dashboard imported" +msgstr "Дашборд імпортовано" -msgid "max" -msgstr "максимум" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "Була проблема, яка видалила вибрані інформаційні панелі: " -msgid "mean" -msgstr "середній" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "" +"Помилка сталася під час отримання значення власника інформаційної панелі:" +" %s" -msgid "median" -msgstr "медіана" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "Ви впевнені, що хочете видалити вибрані інформаційні панелі?" -msgid "metric" -msgstr "метричний" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "Помилка сталася під час отримання даних, пов’язаних з базою даних: %s" -msgid "min" -msgstr "хв" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" +msgstr "Завантажте файл у базу даних" -msgid "minute" -msgstr "хвилина" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" +msgstr "Завантажте CSV" -msgid "minute(s)" -msgstr "хвилини" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" +msgstr "Завантажте стовпчастий файл" -msgid "monotone" -msgstr "монотонний" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" +msgstr "Завантажте файл Excel" -msgid "month" -msgstr "місяць" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE" -msgid "more than {max} {name}" -msgstr "більше {max} {name}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "Дозволити мову маніпулювання даними" -msgid "must have a value" -msgstr "повинен мати значення" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML" -msgid "name" -msgstr "назва" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "Завантаження CSV" -msgid "no SQL validator is configured" -msgstr "жоден SQL валідатор не налаштований" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "Видалити базу даних" -msgid "no SQL validator is configured for {}" -msgstr "жоден SQL валідатор не налаштований для {}" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" +"База даних %s пов'язана з діаграмами %s, які з’являються на інформаційних" +" панелях %s, а користувачі мають %s SQL Lab вкладки, використовуючи цю " +"базу даних. Ви впевнені, що хочете продовжувати? Видалення бази даних " +"порушить ці об'єкти." -msgid "numeric type icon" -msgstr "значок числового типу" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "Видалити базу даних?" -msgid "nvd3" -msgstr "nvd3" +#: superset-frontend/src/pages/DatasetList/index.tsx:201 +msgid "Dataset imported" +msgstr "Імпортний набір даних" -msgid "of parent" -msgstr "батьків" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "Помилка сталася під час отримання даних, пов’язаних з наборами" -msgid "of total" -msgstr "загалом" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "Помилка сталася під час отримання даних, пов’язаних з набором даних: %s" -msgid "offline" -msgstr "офлайн" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "Фізичний набір даних" -msgid "on" -msgstr "на" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "Віртуальний набір даних" -msgid "or" -msgstr "або" +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 +msgid "Virtual" +msgstr "Віртуальний" -msgid "or use existing ones from the panel on the right" -msgstr "або використовуйте існуючі з панелі праворуч" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "Помилка сталася під час отримання наборів даних: %s" -msgid "orderby column must be populated" -msgstr "стовпчик orderby повинен бути заповнений" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "Помилка сталася під час отримання значень схеми: %s" -msgid "overall" -msgstr "загальний" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "Помилка сталася під час отримання значень власника набору даних: %s" -msgid "p-value precision" -msgstr "точність p-value" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "Імпортувати набори даних" -msgid "p1" -msgstr "p1" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "Виникла проблема з видалення вибраних наборів даних: %s" -msgid "p5" -msgstr "p5" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +msgid "There was an issue duplicating the dataset." +msgstr "Існувала проблема, що дублювання набору даних." -msgid "p95" -msgstr "p95" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "Існувала проблема, що дублювання вибраних наборів даних: %s" -msgid "p99" -msgstr "p99" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." +msgstr "" +"DataSet %s пов'язаний з діаграмами %s, які з’являються на інформаційних " +"панелях %s. Ви впевнені, що хочете продовжувати? Видалення набору даних " +"порушить ці об'єкти." -msgid "page_size.all" -msgstr "page_size.all" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "Видалити набір даних?" -msgid "page_size.entries" -msgstr "page_size.entries" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "Ви впевнені, що хочете видалити вибрані набори даних?" -msgid "page_size.show" -msgstr "page_size.show" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0 Вибрано" -msgid "pending" -msgstr "що очікує" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s вибраний (віртуальний)" -msgid "percentile (exclusive)" -msgstr "відсотковий (ексклюзивний)" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s вибраний (фізичний)" -msgid "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value" -msgstr "відсотки повинні бути списком або кортежом з двома числовими значеннями, з яких перша нижча за друге значення" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s вибраний ( %s фізичний, %s віртуальний)" -msgid "permalink state not found" -msgstr "стан постійного посилання не знайдено" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "журнал" -msgid "pixelated (Sharp)" -msgstr "пікселізований (різкий)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "Ідентифікатор виконання" -msgid "previous calendar month" -msgstr "попередній календарний місяць" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "Запланований за адресою (UTC)" -msgid "previous calendar week" -msgstr "попередній календарний тиждень" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "Почніть з (UTC)" -msgid "previous calendar year" -msgstr "попередній календарний рік" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "Повідомлення про помилку" -msgid "published" -msgstr "опублікований" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +msgid "Alert" +msgstr "Насторожений" -msgid "quarter" -msgstr "чверть" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Існувало проблему, що витягує вашу недавню діяльність: %s" -msgid "queries" -msgstr "запити" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Виникла проблема з отриманням інформаційних панелей: %s" -msgid "query" -msgstr "запит" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Виникла проблема з отриманням вашої діаграми: %s" -msgid "random" -msgstr "випадковий" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Виникла проблема з отриманням збережених запитів: %s" -msgid "reboot" -msgstr "перезавантажити" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "Мініатюри" -msgid "recent" -msgstr "недавній" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "Втілення" -msgid "recents" -msgstr "недавні" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "Була проблема, що переглядає вибраний запит. %s" -msgid "report" -msgstr "доповідь" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "Столи" -msgid "reports" -msgstr "звіти" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "Відкритий запит у лабораторії SQL" -msgid "restore zoom" -msgstr "відновити масштаб" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "Помилка сталася під час отримання значень бази даних: %s" -msgid "right" -msgstr "право" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "Помилка сталася під час отримання значень користувачів: %s" -msgid "rowlevelsecurity" -msgstr "rowlevelsecurity" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "Пошук за текстом запитів" -msgid "running" -msgstr "біг" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, python-format +msgid "Deleted %s" +msgstr "Видалено %s" -msgid "saved queries" -msgstr "збережені запити" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 +msgid "Deleted" +msgstr "Видалений" -msgid "search by tags" -msgstr "пошук за тегами" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Існували правила видалення проблеми: %s" -msgid "seconds" -msgstr "секунди" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 +msgid "No Rules yet" +msgstr "Ще немає правил" -msgid "series" -msgstr "серія" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +msgid "Are you sure you want to delete the selected rules?" +msgstr "Ви впевнені, що хочете видалити вибрані правила?" -msgid "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -"series: Ставтеся до кожної серії незалежно; Загалом: усі серії використовують однакову шкалу; Зміна: Показати зміни порівняно з першою точкою даних у кожній серії" - -msgid "square" -msgstr "квадрат" +"Для імпорту їх разом із збереженими запитами потрібні паролі для баз " +"даних. Зверніть увагу, що розділи \"Безпечні додаткові\" та " +"\"Сертифікат\" конфігурації бази даних не присутні в експортних файлах, і" +" його слід додавати вручну після імпорту, якщо вони потрібні." -msgid "stack" -msgstr "стек" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "" +"Ви імпортуєте один або кілька збережених запитів, які вже існують. " +"Перезавантаження може призвести до втрати частини своєї роботи. Ви " +"впевнені, що хочете перезаписати?" -msgid "staggered" -msgstr "здивований" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 +msgid "Query imported" +msgstr "Імпортний запит" -msgid "std" -msgstr "std" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "Існувала проблема, що переглядає вибраний запит %s" -msgid "step-after" -msgstr "накопичувач" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "Імпортувати запити" -msgid "step-before" -msgstr "ступінь" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "Посилання скопійовано!" -msgid "stopped" -msgstr "зупинений" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "Виникла проблема, що видалив вибрані запити: %s" -msgid "stream" -msgstr "потік" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "Редагувати запит" -msgid "string type icon" -msgstr "іконка типу рядка" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "Скопіюйте URL -адресу запитів" -msgid "success" -msgstr "успіх" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "Експортний запит" -msgid "success dark" -msgstr "успіх темний" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "Видалити запит" -msgid "sum" -msgstr "сума" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "Ви впевнені, що хочете видалити вибрані запити?" -msgid "syntax." -msgstr "синтаксис." +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "запити" +#: superset-frontend/src/pages/Tags/index.tsx:86 msgid "tag" msgstr "мітка" -msgid "temporal type icon" -msgstr "іконка тимчасового типу" +#: superset-frontend/src/pages/Tags/index.tsx:130 +#, fuzzy +msgid "No Tags created" +msgstr "було створено" -msgid "textarea" -msgstr "textarea" +#: superset-frontend/src/pages/Tags/index.tsx:352 +msgid "Are you sure you want to delete the selected tags?" +msgstr "Ви впевнені, що хочете видалити вибрані теги?" -msgid "to" -msgstr "до" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." +msgstr "Завантажити зображення не вдалося, оновити та повторіть спробу." -msgid "top" -msgstr "топ" +#: superset-frontend/src/utils/downloadAsPdf.ts:55 +#, fuzzy +msgid "PDF download failed, please refresh and try again." +msgstr "Завантажити зображення не вдалося, оновити та повторіть спробу." -msgid "undo" -msgstr "скасувати" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." +msgstr "" +"Виберіть значення у виділеному полі на панелі управління. Потім запустіть" +" запит, натиснувши кнопку %s." -msgid "unknown type icon" -msgstr "іконка невідомого типу" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" +msgstr "Неправильні дані" -msgid "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile." -msgstr "верхній percentile повинен бути більшим за 0 і менше 100. Повинен бути вищим, ніж нижчий percentile." +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " +msgstr "Неочікувана помилка: " -msgid "use latest_partition template" -msgstr "використовуйте шаблон latest_partition" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "(Немає опису, натисніть, щоб побачити Trace Stack)" -msgid "value ascending" -msgstr "значення збільшення" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 +msgid "Sorry, an unknown error occurred." +msgstr "Вибачте, сталася невідома помилка." -msgid "value descending" -msgstr "значення зменшення" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "Вибачте, була помилка, заощадивши цей %s: %s" -msgid "var" -msgstr "var" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format +msgid "You do not have permission to edit this %s" +msgstr "Ви не маєте дозволу на редагування цього %s" -msgid "variance" -msgstr "дисперсія" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +msgid "Network error" +msgstr "Помилка мережі" -msgid "view instructions" -msgstr "переглянути інструкції" +#: superset-frontend/src/utils/getClientErrorObject.ts:144 +msgid "Request timed out" +msgstr "Час запиту вичерпано" -msgid "virtual" -msgstr "віртуальний" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Випуск 1000 - набір даних занадто великий, щоб запитувати." -msgid "viz type" -msgstr "тип з -за" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Випуск 1001 - База даних знаходиться під незвичним навантаженням." -msgid "was created" -msgstr "було створено" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "Помилка сталася під час отримання %s Інформація: %s" -msgid "week" -msgstr "тиждень" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "Помилка сталася під час отримання %ss: %s" -msgid "week ending Saturday" -msgstr "тиждень, що закінчується в суботу" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "Помилка сталася під час створення %ss: %s" -msgid "week starting Sunday" -msgstr "тиждень, починаючи з неділі" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "Будь ласка, повторно експортуйте файл і спробуйте знову імпортувати" -msgid "x" -msgstr "x" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" +msgstr "Помилка сталася під час імпорту %s: %s" -msgid "x: values are normalized within each column" -msgstr "x: Значення нормалізуються в кожному стовпці" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "Була помилка, яка отримала улюблений статус: %s" -msgid "y" -msgstr "у" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "Була помилка, щоб зберегти улюблений статус: %s" -msgid "y: values are normalized within each row" -msgstr "y: Значення нормалізуються в кожному рядку" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "З'єднання виглядає добре!" -msgid "year" -msgstr "рік" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "Помилка: %s" -msgid "zoom area" -msgstr "масштаб" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "Була помилка, яка отримала вашу недавню діяльність:" -msgid "10 seconds" -msgstr "10 секунд" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "Видаляло проблему: %s" -msgid "6 hours" -msgstr "6 годин" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL" + +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." +msgstr "" +"Шаблове посилання, можна включити {{metric}} або інші значення, що " +"надходять з елементів управління." + +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "Таблиця часових рядів" -msgid "12 hours" -msgstr "12 годин" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "" +"Порівняйте кілька діаграм часових рядів (як іскричні лінії) та пов'язані " +"з ними показники." -msgid "24 hours" -msgstr "24 години" +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" +msgstr "У нас є такі ключі: %s" diff --git a/superset/translations/zh/LC_MESSAGES/messages.json b/superset/translations/zh/LC_MESSAGES/messages.json index e66218a493ee8..df3a05ea3e2b7 100644 --- a/superset/translations/zh/LC_MESSAGES/messages.json +++ b/superset/translations/zh/LC_MESSAGES/messages.json @@ -8,4532 +8,4379 @@ "plural_forms": "nplurals=1; plural=0", "lang": "zh" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "此过滤条件是从看板上下文继承的。保存图表时不会保存。" + "The datasource is too large to query.": ["数据源太大,无法进行查询。"], + "The database is under an unusual load.": ["数据库负载异常。"], + "The database returned an unexpected error.": ["数据库返回意外错误。"], + "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ + "Issue 1003 - SQL查询中存在语法错误。可能是拼写错误或是打错关键字。" ], - "\n Error: %(text)s\n ": [""], - " (excluded)": ["(不包含)"], - " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - "" + "The column was deleted or renamed in the database.": [ + "该列已在数据库中删除或重命名。" ], - " expression which needs to adhere to the ": [" 表达式并基于 "], - " source code of Superset's sandboxed parser": [""], - " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - "来确保字符的表达顺序与时间顺序一致的标准。如果时间戳格式不符合 ISO 8601 标准,则需要定义表达式和类型,以便将字符串转换为日期或时间戳。注意:当前不支持时区。如果时间以epoch格式存储,请输入 `epoch_s` or `epoch_ms` 。如果没有指定任何模式,我们可以通过额外的参数在每个数据库/列名级别上使用可选的默认值。" + "The table was deleted or renamed in the database.": [ + "Issue 1005 - 该表已在数据库中删除或重命名。" ], - " to mark a column as a time column": [""], - " to open SQL Lab. From there you can save the query as a dataset.": [""], - " to visualize your data.": [""], - "!= (Is not equal)": ["!= (不等于)"], - "%(dialect)s cannot be used as a data source for security reasons.": [ - "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。" + "One or more parameters specified in the query are missing.": [ + "查询中指定的一个或多个参数丢失。" ], - "%(message)s\nThis may be triggered by: \n%(issues)s": [ - "%(message)s\n这可能由以下因素触发:%(issues)s" + "The hostname provided can't be resolved.": ["提供的主机名无法解析。"], + "The port is closed.": ["报告失败"], + "The host might be down, and can't be reached on the provided port.": [ + "主机可能宕机了,无法在所提供的端口上连接到它" ], - "%(name)s.csv": [""], - "%(object)s does not exist in this database.": [ - "%(object)s 数据库中不存在。" + "Superset encountered an error while running a command.": [ + "警报在执行查询时发现错误。" ], - "%(prefix)s %(title)s": [""], - "%(rows)d rows returned": ["%(rows)d行被检索到"], - "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ - "%(subtitle)s\n这可能由以下因素触发:%(issue)s" + "Superset encountered an unexpected error.": ["报告计划意外错误。"], + "The username provided when connecting to a database is not valid.": [ + "连接到数据库时提供的用户名无效。" ], - "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ - "授予 %(user)s %(role)s 角色来访问 %(datasource)s 数据库" + "The password provided when connecting to a database is not valid.": [ + "连接数据库时提供的密码无效。" ], - "%(user)s's profile": ["%(user)s 的信息"], - "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ - "%(validator)s 无法检查您的查询。\n请重新检查您的查询。\n异常: %(ex)s" + "Either the username or the password is wrong.": ["用户名或密码错误。"], + "Either the database is spelled incorrectly or does not exist.": [ + "数据库拼写不正确或不存在。" ], - "%s Error": ["%s 异常"], - "%s SSH TUNNEL PASSWORD": [""], - "%s SSH TUNNEL PRIVATE KEY": [""], - "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], - "%s Selected": ["%s 已选定"], - "%s Selected (%s Physical, %s Virtual)": [ - "%s 个被选中 (%s 个物理, %s 个虚拟)" + "The schema was deleted or renamed in the database.": [ + "该列已在数据库中删除或重命名。" ], - "%s Selected (Physical)": ["%s 个被选中(物理)"], - "%s Selected (Virtual)": ["%s 个被选中(虚拟)"], - "%s aggregates(s)": ["%s 聚合"], - "%s column(s)": ["%s 列"], - "%s operator(s)": ["%s 运算符"], - "%s option(s)": ["%s 个选项"], - "%s saved metric(s)": ["%s 列与计量指标"], - "%s%s": ["%s%s"], - "%s-%s of %s": ["%s-%s 总计 %s"], - "(Removed)": ["(已删除)"], - "(deleted or invalid type)": [""], - "(no description, click to see stack trace)": [ - "无描述,单击可查看堆栈跟踪" + "User doesn't have the proper permissions.": ["您没有授权 "], + "One or more parameters needed to configure a database are missing.": [ + "数据库配置缺少所需的一个或多个参数。" ], - "(optional) default value for the filter, when using the multiple option, you can use a semicolon-delimited list of options.": [ - "过滤器的默认值,当使用多选框的时候,您可以使用带分号的分隔列表。" + "The submitted payload has the incorrect format.": [ + "提交的有效载荷格式不正确" ], - "), and they become available in your SQL (example:": [""], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "" + "The submitted payload has the incorrect schema.": [ + "提交的有效负载的模式不正确。" ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], - "+ %s more": [""], - ",": [""], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "-- 注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。" + "Results backend needed for asynchronous queries is not configured.": [ + "后端未配置异步查询所需的结果" ], - ".": [""], - "0 Selected": ["0个被选中"], - "1 calendar day frequency": [""], - "1 day ago": [""], - "1 hour": ["1小时"], - "1 minute": ["1分钟"], - "1 minutely frequency": [""], - "1 month end frequency": [""], - "1 month start frequency": [""], - "1 week ago": [""], - "1 year ago": [""], - "10 minute": ["10分钟"], - "104 weeks ago": [""], - "15 minute": ["15分钟"], - "156 weeks ago": [""], - "1AS": [""], - "1D": [""], - "1H": [""], - "1M": [""], - "1T": [""], - "2 years ago": [""], - "2/98 percentiles": [""], - "28 days ago": [""], - "2D": ["2D"], - "3 letter code of the country": ["国家3字码"], - "3 years ago": [""], - "30 days": ["30天"], - "30 minute": ["30分钟"], - "30 minutes": ["30分钟"], - "30 second": ["30秒钟"], - "30 seconds": ["30秒钟"], - "3D": [""], - "4 weeks (freq=4W-MON)": [""], - "5 minute": ["5分钟"], - "5 minutes": ["5分钟"], - "5 second": ["5秒"], - "52 weeks ago": [""], - "6 hour": ["6小时"], - "60 days": ["60天"], - "7 calendar day frequency": [""], - "7D": [""], - "9/91 percentiles": [""], - "90 days": ["90天"], - ":": [":"], - "< (Smaller than)": ["< (小于)"], - "<= (Smaller or equal)": ["<= (小于等于)"], - "": [""], - "== (Is equal)": ["== (等于)"], - "> (Larger than)": ["> (大于)"], - ">= (Larger or equal)": [">= (大于等于)"], - "A Big Number": ["大数字"], - "A comma separated list of columns that should be parsed as dates.": [ - "应作为日期解析的列的逗号分隔列表。" + "Database does not allow data manipulation.": [ + "数据库不允许此数据操作。" ], - "A database with the same name already exists.": ["已存在同名的数据库。"], - "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ - "" + "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTA(create table as select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" ], - "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ - "指向内置插件位置的完整URL(例如,可以托管在CDN上)" + "CVAS (create view as select) query has more than one statement.": [ + "CVAS (create view as select)查询有多条语句。" ], - "A handlebars template that is applied to the data": [""], - "A human-friendly name": ["人性化的名称"], - "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ - "" + "CVAS (create view as select) query is not a SELECT statement.": [ + "CVAS (create view as select)查询不是SELECT语句。" ], - "A list of users who can alter the chart. Searchable by name or username.": [ - "有权处理该图表的用户列表。可按名称或用户名搜索。" + "Query is too complex and takes too long to run.": [ + "查询太复杂,运行时间太长。" ], - "A map of the world, that can indicate values in different countries.": [ - "一张世界地图,可以显示不同国家的价值观。" + "The database is currently running too many queries.": [ + "数据库当前运行的查询太多" ], - "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ - "" + "The object does not exist in the given database.": [ + "源数据库中存在的表的名称" ], - "A metric to use for color": ["用于颜色的指标"], - "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ - "一种极坐标图表,其中圆被分成等角度的楔形,任何楔形表示的值由其面积表示,而不是其半径或扫掠角度。" + "The query has a syntax error.": ["查询有语法错误。"], + "The results backend no longer has the data from the query.": [ + "结果后端不再拥有来自查询的数据。" ], - "A readable URL for your dashboard": ["为看板生成一个可读的 URL"], - "A reference to the [Time] configuration, taking granularity into account": [ - "对 [时间] 配置的引用,会将粒度考虑在内" + "The query associated with the results was deleted.": [ + "删除与结果关联的查询。" ], - "A reusable dataset will be saved with your chart.": [""], - "A set of parameters that become available in the query using Jinja templating syntax": [ - "在查询中可用的一组参数使用JINJA模板语法" + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "后端存储的结果以不同的格式存储,而且不再可以反序列化" ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "时间序列图表,直观显示多个组中的相关指标随时间的变化情况。每组使用不同的颜色进行可视化" + "The port number is invalid.": ["数据库参数无效"], + "Failed to start remote query on a worker.": ["无法启动远程查询"], + "The database was deleted.": ["数据集已保存"], + "Custom SQL fields cannot contain sub-queries.": [""], + "Invalid certificate": ["无效认证"], + "The schema of the submitted payload is invalid.": [""], + "File size must be less than or equal to %(max_size)s bytes": [""], + "Unsafe return type for function %(func)s: %(value_type)s": [ + "函数返回不安全的类型 %(func)s: %(value_type)s" ], - "A timeout occurred while executing the query.": ["查询超时。"], - "A timeout occurred while generating a csv.": ["生成CSV时超时。"], - "A timeout occurred while generating a dataframe.": ["生成数据超时"], - "A timeout occurred while taking a screenshot.": ["截图超时"], - "A valid color scheme is required": ["需要有效的配色方案"], - "APPLY": ["应用"], - "APR": ["四月"], - "AQE": ["AQE(异步执行查询)"], - "AUG": ["八月"], - "AXIS TITLE MARGIN": [""], - "About": ["关于"], - "Access": ["访问"], - "Access requests": ["访问请求"], - "Access to user activity data is restricted": [""], - "Access was requested": ["请求访问"], - "Action": ["操作"], - "Action Log": ["操作日志"], - "Actions": ["操作"], - "Active": ["激活"], - "Actual time range": ["实际时间范围"], - "Adaptive formatting": ["自动匹配格式化"], - "Add": ["新增"], - "Add Alert": ["添加告警"], - "Add CSS Template": ["新增CSS模板"], - "Add CSS template": ["新增CSS模板"], - "Add Chart": ["添加图表"], - "Add Column": ["添加列"], - "Add Dashboard": ["添加看板"], - "Add Database": ["添加数据库"], - "Add Log": ["新增日志"], - "Add Metric": ["添加指标"], - "Add Report": ["添加报告"], - "Add Saved Query": ["添加保存的查询"], - "Add a Plugin": ["添加插件"], - "Add a new tab": ["添加新的标签页"], - "Add a new tab to create SQL Query": [""], - "Add additional custom parameters": ["添加其他自定义参数"], - "Add an item": ["新增一行"], - "Add annotation": ["添加注释"], - "Add annotation layer": ["添加注释层"], - "Add calculated columns to dataset in \"Edit datasource\" modal": [""], - "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ - "" + "Unsupported return value for method %(name)s": [ + "方法的返回值不受支持 %(name)s" ], - "Add custom scoping": [""], - "Add delivery method": ["添加通知方法"], - "Add filter": ["增加过滤条件"], - "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ - "" + "Unsafe template value for key %(key)s: %(value_type)s": [ + "键的模板值不安全 %(key)s: %(value_type)s" ], - "Add filters and dividers": [""], - "Add item": ["增加条件"], - "Add metric": ["添加指标"], - "Add metrics to dataset in \"Edit datasource\" modal": [""], - "Add new color formatter": ["添加新的颜色"], - "Add new formatter": ["新增格式化"], - "Add notification method": ["添加注释层"], - "Add required control values to preview chart": [""], - "Add required control values to save chart": [""], - "Add sheet": ["添加sheet页"], - "Add to dashboard": ["添加到看板"], - "Added": ["已添加"], - "Additional Parameters": ["附加参数"], - "Additional fields may be required": [""], - "Additional information": ["附加信息"], - "Additional metadata": ["附加元数据"], - "Additional padding for legend.": ["图示附加的padding值。"], - "Additional parameters": ["编辑模板参数"], - "Additional text to add before or after the value, e.g. unit": [ - "附加文本到数据前(后),例如:单位" - ], - "Additive": ["附加"], - "Adjust how this database will interact with SQL Lab.": [""], - "Adjust performance settings of this database.": [""], - "Advanced": ["进阶"], - "Advanced Analytics": ["高级分析"], - "Advanced analytics": ["高级分析"], - "Advanced-Analytics": ["高级分析"], - "Aesthetic": ["炫酷"], - "After": ["之后"], - "Aggregate": ["聚合"], - "Aggregate Mean": ["合计平均值"], - "Aggregate Sum": ["合计"], - "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ - "聚合函数应用于每个群集中的点列表以产生群集标签。" - ], - "Aggregate function to apply when pivoting and computing the total rows and columns": [ - "在旋转和计算总的行和列时,应用聚合函数" + "Unsupported template value for key %(key)s": [ + "键的模板值不受支持 %(key)s" ], - "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ - "" + "Only SELECT statements are allowed against this database.": [ + "此数据库只允许使用 `SELECT` 语句" ], - "Aggregation function": ["聚合功能"], - "Alert Triggered, In Grace Period": ["告警已触发,在宽限期内"], - "Alert condition": ["告警条件"], - "Alert condition schedule": ["告警条件计划"], - "Alert ended grace period.": ["告警已结束宽限期。"], - "Alert failed": ["告警失败"], - "Alert fired during grace period.": ["在宽限期内触发告警。"], - "Alert found an error while executing a query.": [ - "告警在执行查询时发现错误。" + "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ + "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或者数据库可能负载过重。" ], - "Alert name": ["告警名称"], - "Alert on grace period": ["告警宽限期"], - "Alert query returned a non-number value.": ["告警查询返回非数字值。"], - "Alert query returned more than one column.": ["告警查询返回多个列。"], - "Alert query returned more than one column. %s columns returned": [ - "告警查询返回多个列。%s 列被返回" + "Results backend is not configured.": ["后端未配置结果"], + "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ + "CTA(create table as select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" ], - "Alert query returned more than one row.": ["告警查询返回了多行。"], - "Alert query returned more than one row. %s rows returned": [ - "告警查询返回了多行。%s 行被返回" + "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ + "CVAS(createview as select)只能与带有单个SELECT语句的查询一起运行。请确保您的查询只有SELECT语句。然后再次尝试运行查询。" ], - "Alert running": ["告警运行中"], - "Alert triggered, notification sent": ["告警已触发,通知已发送"], - "Alert validator config error.": ["告警验证器配置错误。"], - "Alerts": ["告警"], - "Alerts & Reports": ["告警和报告"], - "Alerts & reports": ["告警和报告"], - "Align +/-": ["对齐 +/-"], - "All": ["所有"], - "All Text": ["所有文本"], - "All charts": ["所有图表"], - "All charts/global scoping": [""], - "All filters": ["所有过滤"], - "All filters (%(filterCount)d)": ["所有过滤(%(filterCount)d)"], - "All panels": ["应用于所有面板"], - "All panels with this column will be affected by this filter": [ - "包含此列的所有面板都将受到此过滤条件的影响" + "Running statement %(statement_num)s out of %(statement_count)s": [""], + "Statement %(statement_num)s out of %(statement_count)s": [""], + "Viz is missing a datasource": ["Viz 缺少一个数据源"], + "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ + "应用的滚动窗口(rolling window)未返回任何数据。请确保源查询满足滚动窗口中定义的最小周期。" ], - "Allow CREATE TABLE AS": ["允许 CREATE TABLE AS"], - "Allow CREATE TABLE AS option in SQL Lab": [ - "在 SQL 编辑器中允许 CREATE TABLE AS 选项" + "From date cannot be larger than to date": ["起始时间不可以大于当前时间"], + "Cached value not found": ["缓存的值未找到"], + "Columns missing in datasource: %(invalid_columns)s": [ + "数据源中缺少列:%(invalid_columns)s" ], - "Allow CREATE VIEW AS": ["允许 CREATE VIEW AS"], - "Allow CREATE VIEW AS option in SQL Lab": [ - "在 SQL 编辑器中允许 CREATE VIEW AS 选项" + "Time Table View": ["时间表视图"], + "Pick at least one metric": ["选择至少一个指标"], + "When using 'Group By' you are limited to use a single metric": [ + "当使用“Group by”时,只限于使用单个度量。" ], - "Allow Csv Upload": ["允许Csv上传"], - "Allow DML": ["允许 DML"], - "Allow columns to be rearranged": [""], - "Allow creation of new tables based on queries": ["允许基于查询创建新表"], - "Allow creation of new views based on queries": [ - "允许基于查询创建新视图" + "Calendar Heatmap": ["时间热力图"], + "Bubble Chart": ["气泡图"], + "Please use 3 different metric labels": ["请在左右轴上选择不同的指标"], + "Pick a metric for x, y and size": ["为 x 轴,y 轴和大小选择一个指标"], + "Bullet Chart": ["子弹图"], + "Pick a metric to display": ["选择一个指标来显示"], + "Time Series - Line Chart": ["时间序列-折线图"], + "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ + "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" ], - "Allow data manipulation language": ["允许数据操作语言"], - "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ - "" + "Time Series - Bar Chart": ["时间序列 - 柱状图"], + "Time Series - Period Pivot": ["时间序列 - 周期透视表"], + "Time Series - Percent Change": ["时间序列 - 百分比变化"], + "Time Series - Stacked": ["时间序列 - 堆积图"], + "Histogram": ["直方图"], + "Must have at least one numeric column specified": [ + "必须至少指明一个数值列" ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "允许使用非SELECT语句(如UPDATE、DELETE、CREATE等)操作数据库。" + "Distribution - Bar Chart": ["分布 - 柱状图"], + "Can't have overlap between Series and Breakdowns": [ + "Series 和 Breakdown 之间不能有重叠" ], - "Allow multiple selections": ["允许多选"], - "Allow node selections": ["允许多节点选择"], - "Allow sending multiple polygons as a filter event": [""], - "Allow this database to be explored": ["允许浏览此数据库"], - "Allow this database to be queried in SQL Lab": [ - "允许在SQL工具箱中查询此数据库" + "Pick at least one field for [Series]": ["为 [序列] 选择至少一个字段"], + "Sankey": ["蛇形图"], + "Pick exactly 2 columns as [Source / Target]": [ + "为 [来源 / 目标] 选择两个列" ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ - "允许用户在 SQL 编辑器中运行非 SELECT 语句(UPDATE,DELETE,CREATE,...)" + "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ + "桑基图里面有一个循环,请提供一棵树。这是一个错误的链接:{}" ], - "Allowed Domains (comma separated)": [""], - "Alphabetical": ["按字母顺序排列"], - "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ - "也称为框须图,该可视化比较了一个相关指标在多个组中的分布。中间的框强调平均值、中值和内部2个四分位数。每个框周围的触须可视化了最小值、最大值、范围和外部2个四分区。" + "Directed Force Layout": ["有向图"], + "Country Map": ["国家地图"], + "World Map": ["世界地图"], + "Parallel Coordinates": ["平行坐标"], + "Heatmap": ["热力图"], + "Horizon Charts": ["水平图"], + "Mapbox": ["箱图"], + "[Longitude] and [Latitude] must be set": [ + "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" ], - "Altered": ["已更改"], - "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ - "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" + "Must have a [Group By] column to have 'count' as the [Label]": [ + "[Group By] 列必须要有 ‘count’字段作为 [标签]" ], - "An engine must be specified when passing individual parameters to a database.": [ - "向数据库传递单个参数时必须指定引擎。" + "Choice of [Label] must be present in [Group By]": [ + "[标签] 的选择项必须出现在 [Group By]" ], - "An error has occurred": ["发生了一个错误"], - "An error occurred": ["发生了一个错误"], - "An error occurred saving dataset": ["保存数据集时发生错误"], - "An error occurred while accessing the value.": ["访问值时出错。"], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "收起表结构时出错。请与管理员联系。" + "Choice of [Point Radius] must be present in [Group By]": [ + "[点半径] 的选择项必须出现在 [Group By]" ], - "An error occurred while creating %ss: %s": ["创建时出错:%ss: %s"], - "An error occurred while creating the data source": [ - "创建数据源时发生错误" + "[Longitude] and [Latitude] columns must be present in [Group By]": [ + "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" ], - "An error occurred while creating the value.": ["创建值时出错。"], - "An error occurred while deleting the value.": ["删除值时出错。"], - "An error occurred while expanding the table schema. Please contact your administrator.": [ - "展开表结构时出错。请与管理员联系。" + "Deck.gl - Multiple Layers": ["多图层"], + "Bad spatial key": ["错误的空间字段"], + "Encountered invalid NULL spatial entry, please consider filtering those out": [ + "遇到无效的为 NULL 的空间条目,请考虑将其过滤掉" ], - "An error occurred while fetching %s info: %s": [ - "获取%s仪表板时出错:%s" + "Deck.gl - Scatter plot": ["Deck.gl - 散点图"], + "Deck.gl - Screen Grid": ["Deck.gl - 屏幕网格"], + "Deck.gl - 3D Grid": ["Deck.gl - 3D网格"], + "Deck.gl - Paths": ["Deck.gl - 路径"], + "Deck.gl - Polygon": ["Deck.gl - 多角形"], + "Deck.gl - 3D HEX": ["Deck.gl - 3D六角曲面"], + "Deck.gl - GeoJSON": ["Deck.gl - 地理json"], + "Deck.gl - Arc": ["Deck.gl - 弧度"], + "Event flow": ["事件流"], + "Time Series - Paired t-test": ["时间序列 - 配对t检验"], + "Time Series - Nightingale Rose Chart": ["时间序列 - 南丁格尔玫瑰图"], + "Partition Diagram": ["分区图"], + "Deleted %(num)d annotation layer": ["选择一个注释图层"], + "All Text": ["所有文本"], + "Deleted %(num)d annotation": ["选择一个注释图层"], + "Deleted %(num)d chart": ["删除了 %(num)d 个图表"], + "Is certified": ["已认证"], + "Owned Created or Favored": [""], + "Total (%(aggfunc)s)": [""], + "Subtotal": [""], + "`confidence_interval` must be between 0 and 1 (exclusive)": [ + "`置信区间` 必须介于0和1之间(开区间)" ], - "An error occurred while fetching %ss: %s": ["抓取出错:%ss: %s"], - "An error occurred while fetching available CSS templates": [ - "获取可用的CSS模板时出错" + "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ + "下百分位数必须大于0且小于100。而且必须低于上百分位" ], - "An error occurred while fetching chart created by values: %s": [ - "获取图表的创建人时出错:%s" + "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ + "上百分位数必须大于0且小于100。而且必须高于下百分位。" ], - "An error occurred while fetching chart owners values: %s": [ - "获取图表所有者时出错 %s" + "`width` must be greater or equal to 0": ["`宽度` 必须大于或等于0"], + "`row_limit` must be greater than or equal to 0": [ + "`行限制` 必须大于或等于1" ], - "An error occurred while fetching created by values: %s": [ - "获取创建人时出错:%s" + "`row_offset` must be greater than or equal to 0": [ + "`行偏移量` 必须大于或等于0" ], - "An error occurred while fetching dashboard created by values: %s": [ - "获取仪表板创建者时出错:%s" + "orderby column must be populated": ["无法更新您的查询"], + "Chart has no query context saved. Please save the chart again.": [ + "图表未保存任何查询上下文。请重新保存图表。" ], - "An error occurred while fetching dashboard owner values: %s": [ - "获取仪表板所有者时出错:%s" + "Request is incorrect: %(error)s": ["请求不正确: %(error)s"], + "Request is not JSON": ["请求不是JSON"], + "Owners are invalid": ["所有者无效"], + "Some roles do not exist": ["看板"], + "Datasource type is invalid": [""], + "Annotation layer parameters are invalid.": ["注释层仍在加载。"], + "Annotation layer could not be created.": ["您的查询无法保存"], + "Annotation layer could not be updated.": ["您的查询无法保存"], + "Annotation layer not found.": ["注释层仍在加载。"], + "Annotation layer has associated annotations.": ["注释层仍在加载。"], + "Name must be unique": ["名称必须是唯一的"], + "End date must be after start date": ["起始时间不可以大于当前时间"], + "Short description must be unique for this layer": [ + "此层的简述必须是唯一的" ], - "An error occurred while fetching dashboards": ["获取看板时出错"], - "An error occurred while fetching dashboards: %s": [ - "获取仪表板时出错:%s" + "Annotation not found.": ["注释不存在。"], + "Annotation parameters are invalid.": ["注释层仍在加载。"], + "Annotation could not be created.": ["注释无法创建。"], + "Annotation could not be updated.": ["注释无法更新。"], + "Annotations could not be deleted.": ["无法删除注释。"], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "时间字符串是模糊的。" ], - "An error occurred while fetching database related data: %s": [ - "获取数据库相关数据时出错:%s" + "Cannot parse time string [%(human_readable)s]": [ + "无法解析时间字符串[%(human_readable)s]" ], - "An error occurred while fetching database values: %s": [ - "获取数据库信息时出错:%s" + "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "时间是模糊的。" ], - "An error occurred while fetching dataset datasource values: %s": [ - "获取数据集数据源信息时出错: %s" + "Database does not exist": ["数据库不存在"], + "Dashboards do not exist": ["仪表盘"], + "Datasource type is required when datasource_id is given": [ + "给定数据源id时,需要提供数据源类型" ], - "An error occurred while fetching dataset owner values: %s": [ - "获取数据集所有者值时出错:%s" - ], - "An error occurred while fetching dataset related data": [ - "获取数据集相关数据时出错" + "Chart parameters are invalid.": ["图表参数无效。"], + "Chart could not be created.": ["您的查询无法保存。"], + "Chart could not be updated.": ["您的查询无法保存。"], + "Charts could not be deleted.": ["这个查询无法被加载"], + "There are associated alerts or reports": ["存在关联的警报或报告"], + "Changing this chart is forbidden": ["禁止更改此图表"], + "Import chart failed for an unknown reason": ["导入图表失败,原因未知"], + "Error: %(error)s": [""], + "CSS template not found.": ["CSS模板未找到"], + "Must be unique": ["需要唯一"], + "Dashboard parameters are invalid.": ["看板参数无效。"], + "Dashboard could not be updated.": ["看板无法更新。"], + "Dashboard could not be deleted.": ["看板无法被删除。"], + "Changing this Dashboard is forbidden": ["无法修改该看板"], + "Import dashboard failed for an unknown reason": [ + "因为未知原因导入看板失败" ], - "An error occurred while fetching dataset related data: %s": [ - "获取数据集相关数据时出错:%s" + "You don't have access to this dashboard.": ["您没有编辑此看板的权限。"], + "No data in file": ["文件中无数据"], + "Database parameters are invalid.": ["数据库参数无效"], + "A database with the same name already exists.": ["已存在同名的数据库。"], + "Field is required": ["字段是必需的"], + "Field cannot be decoded by JSON. %(json_error)s": [ + "字段不能由JSON解码。%{json_error}s" ], - "An error occurred while fetching datasets: %s": ["获取数据集时出错:%s"], - "An error occurred while fetching function names.": [ - "获取函数名称时出错。" + "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ + "额外字段中的元数据参数配置不正确。键 %{key}s 无效。" ], - "An error occurred while fetching schema values: %s": [ - "获取结构信息时出错:%s" + "Database not found.": ["数据库没有找到"], + "Database could not be created.": ["数据库无法被创建"], + "Database could not be updated.": ["数据库无法更新"], + "Connection failed, please check your connection settings": [ + "连接失败,请检查您的连接配置" ], - "An error occurred while fetching tab state": ["获取tab页状态时出错"], - "An error occurred while fetching table metadata": [ - "获取表格元数据时发生错误" + "Cannot delete a database that has datasets attached": [ + "无法删除附加了数据集的数据库" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "获取表格元数据时发生错误。请与管理员联系。" + "Database could not be deleted.": ["数据库不能删除。"], + "Stopped an unsafe database connection": ["已停止不安全的数据库连接"], + "Could not load database driver": ["无法加载数据库驱动程序"], + "Unexpected error occurred, please check your logs for details": [ + "发生意外错误,请检查日志以了解详细信息" ], - "An error occurred while fetching user values: %s": [ - "获取用户信息出错:%s" + "No validator found (configured for the engine)": [""], + "Import database failed for an unknown reason": [ + "导入数据库失败,原因未知" ], - "An error occurred while hiding the left bar. Please contact your administrator.": [ - "隐藏左栏时出错。请与管理员联系。" + "Could not load database driver: {}": ["无法加载数据库驱动程序:{}"], + "Engine \"%(engine)s\" cannot be configured through parameters.": [ + "引擎 \"%(engine)s\" 不能通过参数配置。" ], - "An error occurred while importing %s: %s": ["导入时出错 %s: %s"], - "An error occurred while loading the SQL": ["创建数据源时发生错误"], - "An error occurred while pruning logs ": ["精简日志时出错 "], - "An error occurred while removing query. Please contact your administrator.": [ - "删除查询时出错。请与管理员联系。" + "Database is offline.": ["数据库已下线"], + "%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [ + "%(validator)s 无法检查您的查询。\n请重新检查您的查询。\n异常: %(ex)s" ], - "An error occurred while removing tab. Please contact your administrator.": [ - "删除tab页时出错。请与管理员联系。" + "No validator named %(validator_name)s found (configured for the %(engine)s engine)": [ + "" ], - "An error occurred while removing the table schema. Please contact your administrator.": [ - "删除表结构时出错。请与管理员联系。" + "SSH Tunneling is not enabled": [""], + "Must provide credentials for the SSH Tunnel": [""], + "Cannot have multiple credentials for the SSH Tunnel": [""], + "The database was not found.": ["数据库没有找到"], + "Dataset %(name)s already exists": ["数据集 %(name)s 已存在"], + "Database not allowed to change": ["数据集不允许被修改"], + "One or more columns do not exist": ["一个或多个字段不存在"], + "One or more columns are duplicated": ["一个或多个列被复制"], + "One or more columns already exist": ["一个或多个列已存在"], + "One or more metrics do not exist": ["一个或多个指标不存在"], + "One or more metrics are duplicated": ["一个或多个指标重复"], + "One or more metrics already exist": ["一个或多个度量已存在"], + "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ + "找不到 [%(table_name)s] 表,请仔细检查您的数据库连接、Schema 和 表名" ], - "An error occurred while rendering the visualization: %s": [ - "渲染可视化时发生错误:%s" + "Dataset does not exist": ["数据集不存在"], + "Dataset parameters are invalid.": ["数据集参数无效。"], + "Dataset could not be created.": ["无法创建数据集。"], + "Dataset could not be updated.": ["无法更新数据集。"], + "Changing this dataset is forbidden": ["没有权限更新此数据集"], + "Import dataset failed for an unknown reason": [ + "因为未知的原因导入数据集失败" ], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "设置活动tab页时出错。请与管理员联系。" + "Data URI is not allowed.": [""], + "Dataset column not found.": ["数据集行删除失败。"], + "Dataset column delete failed.": ["数据集列删除失败。"], + "Changing this dataset is forbidden.": ["禁止更改此数据集。"], + "Dataset metric not found.": ["数据集指标没找到"], + "Dataset metric delete failed.": ["数据集指标删除失败"], + "Form data not found in cache, reverting to chart metadata.": [""], + "Form data not found in cache, reverting to dataset metadata.": [""], + "[Missing Dataset]": ["丢失数据集"], + "Saved queries could not be deleted.": ["保存的查询无法被删除"], + "Saved query not found.": ["保存的查询未找到"], + "Import saved query failed for an unknown reason.": [ + "由于未知原因,导入保存的查询失败。" ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "设置tab页自动运行时出错。请与管理员联系。" + "Saved query parameters are invalid.": ["保存的查询参数无效"], + "Invalid tab ids: %s(tab_ids)": [""], + "Dashboard does not exist": ["看板不存在"], + "Chart does not exist": ["图表没有找到"], + "Database is required for alerts": ["警报需要数据库"], + "Type is required": ["类型是必需的"], + "Choose a chart or dashboard not both": [ + "选择图表或看板,不能都全部选择" ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "设置tab页数据库ID时出错。请与管理员联系。" + "Please save your chart first, then try creating a new email report.": [ + "请先保存您的图表,然后尝试创建一个新的电子邮件报告。" ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "设置tab页结构时出错。请与管理员联系。" + "Please save your dashboard first, then try creating a new email report.": [ + "请先保存您的仪表盘,然后尝试创建一个新的电子邮件报告。" ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "设置tab页模板参数时出错。请与管理员联系。" + "Report Schedule parameters are invalid.": ["报表计划参数无效。"], + "Report Schedule could not be created.": ["无法创建报表计划。"], + "Report Schedule could not be updated.": ["无法更新报表计划。"], + "Report Schedule not found.": ["找不到报表计划。"], + "Report Schedule delete failed.": ["报表计划删除失败。"], + "Report Schedule log prune failed.": ["报表计划日志精简失败。"], + "Report Schedule execution failed when generating a screenshot.": [ + "生成屏幕截图时报表计划执行失败。" ], - "An error occurred while starring this chart": ["以此字符开头时出错"], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "在后端存储最新查询id时出错。如果此问题仍然存在,请与管理员联系。" + "Report Schedule execution failed when generating a csv.": [ + "生成屏幕截图时报表计划执行失败。" ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ - "在后端存储查询时出错。为避免丢失更改,请使用 \"保存查询\" 按钮保存查询。" + "Report Schedule execution failed when generating a dataframe.": [ + "生成屏幕截图时报表计划执行失败。" ], - "An error occurred while updating the value.": ["更新值时出错。"], - "An unknown error occurred. Please contact your Superset administrator": [ - "发生未知错误。请与管理员联系" + "Report Schedule execution got an unexpected error.": [ + "报表计划执行遇到意外错误。" ], - "Anchor to": ["锚定到"], - "Angle at which to end progress axis": ["进度轴结束的角度"], - "Angle at which to start progress axis": ["开始进度轴的角度"], - "Animation": ["动画"], - "Annotation": ["注释"], - "Annotation Layers": ["注释层"], - "Annotation Slice Configuration": ["注释切片配置"], - "Annotation could not be created.": ["注释无法创建。"], - "Annotation could not be updated.": ["注释无法更新。"], - "Annotation delete failed.": ["注释与注释层"], - "Annotation layer": ["注释层"], - "Annotation layer could not be created.": ["您的查询无法保存"], - "Annotation layer could not be deleted.": ["注释层仍在加载。"], - "Annotation layer could not be updated.": ["您的查询无法保存"], - "Annotation layer delete failed.": ["注释层仍在加载。"], - "Annotation layer description columns": ["注释层描述列。"], - "Annotation layer has associated annotations.": ["注释层仍在加载。"], - "Annotation layer interval end": ["注释层间隔结束"], - "Annotation layer name": ["注释层名称"], - "Annotation layer not found.": ["注释层仍在加载。"], - "Annotation layer opacity": ["注释层不透明度"], - "Annotation layer parameters are invalid.": ["注释层仍在加载。"], - "Annotation layer stroke": ["注释层混乱"], - "Annotation layer time column": ["注释层时间列"], - "Annotation layer title column": ["注释层标题列"], - "Annotation layer type": ["注释层类型"], - "Annotation layer value": ["注释层值"], - "Annotation layers": ["注解层"], - "Annotation layers are still loading.": ["注释层仍在加载。"], - "Annotation name": ["注释名称"], - "Annotation not found.": ["注释不存在。"], - "Annotation parameters are invalid.": ["注释层仍在加载。"], - "Annotation source type": ["注释数据源类型"], - "Annotations and Layers": ["注释与注释层"], - "Annotations and layers": ["注释与注释层"], - "Annotations could not be deleted.": ["无法删除注释。"], - "Any": ["所有"], - "Any additional detail to show in the certification tooltip.": [ - "要在认证工具提示中显示详细信息。" + "Report Schedule is still working, refusing to re-compute.": [ + "报表计划仍在运行,拒绝重新计算。" ], - "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ - "此处选择的任何调色板都将覆盖应用于此看板的各个图表的颜色" + "Report Schedule reached a working timeout.": ["报表计划已超时。"], + "Resource already has an attached report.": [""], + "Alert query returned more than one row.": ["告警查询返回了多行。"], + "Alert validator config error.": ["告警验证器配置错误。"], + "Alert query returned more than one column.": ["告警查询返回多个列。"], + "Alert query returned a non-number value.": ["告警查询返回非数字值。"], + "Alert found an error while executing a query.": [ + "告警在执行查询时发现错误。" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ - "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。" + "A timeout occurred while executing the query.": ["查询超时。"], + "A timeout occurred while taking a screenshot.": ["截图超时"], + "A timeout occurred while generating a csv.": ["生成CSV时超时。"], + "A timeout occurred while generating a dataframe.": ["生成数据超时"], + "Alert fired during grace period.": ["在宽限期内触发告警。"], + "Alert ended grace period.": ["告警已结束宽限期。"], + "Alert on grace period": ["告警宽限期"], + "Report Schedule state not found": ["未找到报表计划状态"], + "Report schedule unexpected error": ["报告计划意外错误。"], + "Changing this report is forbidden": ["禁止更改此报告"], + "An error occurred while pruning logs ": ["精简日志时出错 "], + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "找不到此查询中引用的数据库。请与管理员联系以获得进一步帮助,或重试。" ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ - "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。了解如何连接数据库驱动程序" + "The query associated with these results could not be found. You need to re-run the original query.": [ + "找不到与这些结果相关联的查询。你需要重新运行查询" ], - "Append": ["追加"], - "Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [ - "应用的滚动窗口(rolling window)未返回任何数据。请确保源查询满足滚动窗口中定义的最小周期。" + "Cannot access the query": [""], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "无法从结果后端检索数据。您需要重新运行原始查询。" ], - "Apply": ["应用"], - "Apply conditional color formatting to metrics": [ - "将条件颜色格式应用于指标" + "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ + "无法从结果后端反序列化数据。存储格式可能已经改变,呈现了旧的数据桩。您需要重新运行原始查询。" ], - "Apply conditional color formatting to numeric columns": [ - "将条件颜色格式应用于数字列" + "An error occurred while creating the value.": ["创建值时出错。"], + "An error occurred while accessing the value.": ["访问值时出错。"], + "An error occurred while deleting the value.": ["删除值时出错。"], + "An error occurred while updating the value.": ["更新值时出错。"], + "You don't have permission to modify the value.": [ + "您没有编辑此图表的权限" ], - "Apply metrics on": ["应用指标到"], - "Apply to all panels": ["应用于所有面板"], - "Apply to specific panels": ["应用于特定面板"], - "April": ["四月"], - "Are you sure you want to cancel?": ["您确定要取消吗?"], - "Are you sure you want to delete": ["确定要删除吗"], - "Are you sure you want to delete the selected %s?": [ - "确实要删除选定的 %s 吗?" + "Invalid result type: %(result_type)s": [ + "无效的结果类型:%(result_type)s" ], - "Are you sure you want to delete the selected annotations?": [ - "确实要删除选定的注释吗?" + "The chart does not exist": ["图表不存在"], + "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ + "重复的列/指标标签:%(labels)s。请确保所有列和指标都有唯一的标签。" ], - "Are you sure you want to delete the selected charts?": [ - "确实要删除所选图表吗?" + "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ + " `series_columns`中的下列条目在 `columns` 中缺失: %(columns)s. " ], - "Are you sure you want to delete the selected dashboards?": [ - "确实要删除选定的仪表板吗?" + "`operation` property of post processing object undefined": [ + "后处理必须指定操作类型(`operation`)" ], - "Are you sure you want to delete the selected datasets?": [ - "确实要删除选定的数据集吗?" + "Unsupported post processing operation: %(operation)s": [ + "不支持的处理操作:%(operation)s" ], - "Are you sure you want to delete the selected layers?": [ - "确实要删除选定的图层吗?" + "[desc]": [""], + "Error in jinja expression in fetch values predicate: %(msg)s": [ + "获取jinja表达式中的谓词的值出错:%(msg)s" ], - "Are you sure you want to delete the selected queries?": [ - "您确实要删除选定的查询吗?" + "Virtual dataset query must be read-only": ["虚拟数据集查询必须是只读的"], + "Error while rendering virtual dataset query: %(msg)s": [ + "保存查询时出错:%(msg)s" ], - "Are you sure you want to delete the selected templates?": [ - "确实要删除选定的模板吗?" + "Virtual dataset query cannot be empty": ["虚拟数据集查询必须是只读的"], + "Virtual dataset query cannot consist of multiple statements": [ + "虚拟数据集查询不能由多个语句组成" ], - "Are you sure you want to proceed?": ["您确定要继续执行吗?"], - "Are you sure you want to save and apply changes?": [ - "确实要保存并应用更改吗?" + "Error in jinja expression in RLS filters: %(msg)s": [ + "jinja表达式中的 RLS filters 出错:%(msg)s" ], - "Area Chart": ["面积图"], - "Area chart": ["面积图"], - "Area chart opacity": ["面积图不透明度"], - "Arrow": ["箭头"], - "Associated Charts": ["关联的图表"], - "Async Execution": ["异步执行查询"], - "Asynchronous query execution": ["异步执行查询"], - "August": ["八月"], - "Autocomplete": ["自动补全"], - "Autocomplete filters": ["自适配过滤条件"], - "Autocomplete query predicate": ["自动补全查询谓词"], - "Automatic Color": [""], - "Available sorting modes:": ["可用分类模式:"], - "Axis": ["坐标轴"], - "Axis ascending": ["轴线升序"], - "Axis descending": ["轴线降序"], - "BOOLEAN": [""], - "Back": ["返回"], - "Back to all": [""], - "Backend": ["后端"], - "Bad spatial key": ["错误的空间字段"], - "Bar": ["条形图"], - "Bar Chart": ["条形图"], - "Bar Values": ["条形栏的值"], - "Base layer map style": ["地图基本层样式"], - "Based on a metric": ["基于指标"], - "Based on granularity, number of time periods to compare against": [ - "根据粒度、要比较的时间阶段" + "Metric '%(metric)s' does not exist": ["指标 '%(metric)s' 不存在"], + "Db engine did not return all queried columns": [ + "数据库引擎未返回所有查询的列" ], - "Based on what should series be ordered on the chart and legend": [""], - "Basic": ["基础"], - "Basic information": ["基本情况"], - "Batch editing %d filters:": ["批量编辑 %d 个过滤条件:"], - "Battery level over time": ["电池电量随时间变化"], - "Be careful.": ["小心。"], - "Before": ["之前"], - "Big Number": ["数字"], - "Big Number Font Size": ["数字的字体大小"], - "Big Number with Trendline": ["数字和趋势线"], - "Bottom": ["底端"], - "Bottom Margin": ["底部边距"], - "Bottom margin, in pixels, allowing for more room for axis labels": [ - "底部边距,以像素为单位,为轴标签留出更多空间" + "Only `SELECT` statements are allowed": ["将 SELECT 语句复制到剪贴板"], + "Only single queries supported": ["仅支持单个查询"], + "Columns": ["列"], + "Show Column": ["显示列"], + "Add Column": ["添加列"], + "Edit Column": ["编辑列"], + "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ + "是否将此列作为[时间粒度]选项, 列中的数据类型必须是DATETIME" ], - "Bottom to Top": ["自下而上"], - "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ - "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" + "Whether this column is exposed in the `Filters` section of the explore view.": [ + "该列是否在浏览视图的`过滤器`部分显示。" ], - "Box Plot": ["箱线图"], - "Breakdowns": ["分解"], - "Bubble Chart": ["气泡图"], - "Bubble Color": ["气泡颜色"], - "Bubble Size": ["气泡大小"], - "Bubble size": ["气泡尺寸"], - "Bucket break points": [""], - "Bulk select": ["批量选择"], - "Bullet Chart": ["子弹图"], - "Business": ["商业"], + "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ + "由数据库推断的数据类型。在某些情况下,可能需要为表达式定义的列手工输入一个类型。在大多数情况下,用户不需要修改这个数据类型。" + ], + "Column": ["列"], + "Verbose Name": ["全称"], + "Description": ["描述"], + "Groupable": ["可分组"], + "Filterable": ["可过滤"], + "Table": ["表"], + "Expression": ["表达式"], + "Is temporal": ["时间条件"], + "Datetime Format": ["时间格式"], + "Type": ["类型"], "Business Data Type": [""], - "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ - "默认情况下,每个过滤器在初始页面加载时最多加载1000个选项。如果您有超过1000个过滤值,并且希望启用动态搜索,以便在键入时加载筛选值(可能会给数据库增加压力),请选中此框。" + "Invalid date/timestamp format": ["无效的日期/时间戳格式"], + "Metrics": ["指标"], + "Show Metric": ["显示指标"], + "Add Metric": ["添加指标"], + "Edit Metric": ["编辑指标"], + "Metric": ["指标"], + "SQL Expression": ["SQL表达式"], + "D3 Format": ["D3 格式"], + "Extra": ["扩展"], + "Warning Message": ["告警信息"], + "Tables": ["数据表"], + "Show Table": ["显示表"], + "Import a table definition": ["导入一个已定义的表"], + "Edit Table": ["编辑表"], + "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ + "与此表关联的图表列表。通过更改此数据源,您可以更改这些相关图表的行为。还要注意,图表需要指向数据源,如果从数据源中删除图表,则此窗体将无法保存。如果要为图表更改数据源,请从“浏览视图”更改该图表。" ], - "By key: use column names as sorting key": ["使用列名作为排序关键字"], - "By key: use row names as sorting key": ["使用行名作为排序关键字"], - "By value: use metric values as sorting key": [ - "使用度量值作为排序关键字" + "Timezone offset (in hours) for this datasource": [ + "数据源的时差(单位:小时)" ], - "CANCEL": ["取消"], - "CREATE TABLE AS": ["允许 CREATE TABLE AS"], - "CREATE VIEW AS": ["允许 CREATE VIEW AS"], - "CREATE VIEW statement": ["CREATE VIEW 语句"], - "CRON expression": ["CRON表达式"], - "CSS": ["CSS"], - "CSS Templates": ["CSS 模板"], - "CSS applied to the chart": [""], - "CSS template": ["CSS 模板"], - "CSS template could not be deleted.": ["CSS模板不能被删除"], - "CSS template name": ["CSS模板名称"], - "CSS template not found.": ["CSS模板未找到"], - "CSS templates": ["CSS 模板"], - "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "csv 文件 \"%(csv_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" + "Name of the table that exists in the source database": [ + "源数据库中存在的表名称" ], - "CSV to Database configuration": ["csv 到数据库配置"], - "CSV upload": ["CSV上传"], - "CTAS & CVAS SCHEMA": ["CTAS和CVAS方案"], - "CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTA(create table as select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" + "Schema, as used only in some databases like Postgres, Redshift and DB2": [ + "模式,只在一些数据库中使用,比如Postgres、Redshift和DB2" ], - "CTAS Schema": ["CTAS 模式"], - "CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [ - "CVAS(createview as select)只能与带有单个SELECT语句的查询一起运行。请确保您的查询只有SELECT语句。然后再次尝试运行查询。" + "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ + "这个字段执行Superset视图时,意味着Superset将以子查询的形式对字符串运行查询。" ], - "CVAS (create view as select) query has more than one statement.": [ - "CVAS (create view as select)查询有多条语句。" + "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ + "当获取不同的值来填充过滤器组件应用时。支持jinja的模板语法。只在`启用过滤器选择`时应用。" ], - "CVAS (create view as select) query is not a SELECT statement.": [ - "CVAS (create view as select)查询不是SELECT语句。" + "Redirects to this endpoint when clicking on the table from the table list": [ + "点击表列表中的表时将重定向到此端点" ], - "Cache Timeout": ["缓存超时"], - "Cache Timeout (seconds)": ["缓存超时(秒)"], - "Cache timeout": ["缓存时间"], - "Cached %s": ["缓存于%s"], - "Cached value not found": ["缓存的值未找到"], - "Calculated column [%s] requires an expression": [ - "计算列 [%s] 需要一个表达式" + "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ + "是否在浏览视图的过滤器部分中填充过滤器的下拉列表,并提供从后端获取的不同值的列表" ], - "Calculated columns": ["计算列"], - "Calculation type": ["计算类型"], - "Calendar Heatmap": ["时间热力图"], - "Can not move top level tab into nested tabs": [ - "无法将顶级tab页移动到嵌套tab页中" + "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ + "表是否由 sql 实验室中的 \"可视化\" 流生成" ], - "Can't have overlap between Series and Breakdowns": [ - "Series 和 Breakdown 之间不能有重叠" + "A set of parameters that become available in the query using Jinja templating syntax": [ + "在查询中可用的一组参数使用JINJA模板语法" ], - "Cancel": ["取消"], - "Cancel query on window unload event": ["取消窗口上传事件的查询"], - "Cannot access the query": [""], - "Cannot delete a database that has datasets attached": [ - "无法删除附加了数据集的数据库" + "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ + "此表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为数据库的超时。" ], - "Cannot have multiple credentials for the SSH Tunnel": [""], - "Cannot import dashboard: %(db_error)s.\nMake sure to create the database before importing the dashboard.": [ - "无法导入看板:%(db_error)s 。\n请确保在导入看板之前创建数据库。" + "Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [ + "" ], - "Cannot load filter": ["无法加载筛选器"], - "Cannot parse time string [%(human_readable)s]": [ - "无法解析时间字符串[%(human_readable)s]" + "Datasets can have a main temporal column (main_dttm_col), but can also have secondary time columns. When this attribute is true, whenever the secondary columns are filtered, the same filter is applied to the main datetime column.": [ + "" ], - "Categorical": ["分类"], - "Categories to group by on the x-axis.": ["要在x轴上分组的类别。"], - "Category": ["分类"], - "Category of target nodes": ["目标节点类别"], - "Category, Value and Percentage": [""], - "Cell Padding": ["单元填充"], - "Cell Radius": ["单元格半径"], - "Cell Size": ["单元尺寸"], - "Cell bars": ["单元格柱状图"], - "Cell content": ["单元格内容"], - "Center": ["中心对齐"], - "Certification": ["认证"], - "Certification details": ["认证细节"], - "Certified": ["认证"], - "Certified By": ["认证"], - "Certified by": ["认证"], - "Certified by %s": ["认证人 %s"], - "Change order of columns.": ["更改列的顺序。"], - "Change order of rows.": ["更改行的顺序。"], + "Associated Charts": ["关联的图表"], "Changed By": ["修改人"], - "Changed on": ["改变为"], - "Changes saved.": [""], - "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ - "如果图表依赖于目标数据集中不存在的列或元数据,则更改数据集可能会破坏图表" + "Database": ["数据库"], + "Last Changed": ["更新时间"], + "Enable Filter Select": ["启用过滤器选择"], + "Schema": ["模式"], + "Default Endpoint": ["默认端点"], + "Offset": ["偏移"], + "Cache Timeout": ["缓存超时"], + "Table Name": ["表名"], + "Fetch Values Predicate": ["取值谓词"], + "Owners": ["所有者"], + "Main Datetime Column": ["主日期列"], + "SQL Lab View": ["SQL Lab 视图"], + "Template parameters": ["模板参数"], + "Modified": ["已修改"], + "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ + "表被创建。作为这两个阶段配置过程的一部分,您现在应该单击新表的编辑按钮来配置它。" ], - "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ - "更改这些设置将影响使用此数据集的所有图表,包括其他人拥有的图表。" + "Deleted %(num)d css template": ["删除了 %(num)d 个css模板"], + "Dataset schema is invalid, caused by: %(error)s": [""], + "Deleted %(num)d dashboard": ["删除了 %(num)d 个看板"], + "Title or Slug": ["标题或者Slug"], + "Role": ["用户信息"], + "Table name undefined": ["表名未定义"], + "Upload Enabled": [""], + "Field cannot be decoded by JSON. %(msg)s": [ + "字段不能由JSON解码。%(msg)s" ], - "Changing this Dashboard is forbidden": ["无法修改该看板"], - "Changing this chart is forbidden": ["禁止更改此图表"], - "Changing this control takes effect instantly": ["更改此控件立即生效。"], - "Changing this dataset is forbidden": ["没有权限更新此数据集"], - "Changing this dataset is forbidden.": ["禁止更改此数据集。"], - "Changing this report is forbidden": ["禁止更改此报告"], - "Character to interpret as decimal point.": [ - "将字符解释为小数点的字符。" + "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ + "额外字段中的元数据参数配置不正确。键 %(key)s 无效。" ], - "Chart": ["图表"], - "Chart %(id)s not found": ["图表 %(id)s 没有找到"], - "Chart Cache Timeout": ["表缓存超时"], - "Chart ID": ["图表 ID"], - "Chart Options": ["图表选项"], - "Chart Title": ["图表标题"], - "Chart [{}] has been overwritten": ["图表 [{}] 已经覆盖"], - "Chart [{}] has been saved": ["图表 [{}] 已经保存"], - "Chart [{}] was added to dashboard [{}]": [ - "图表 [{}] 已经添加到看板 [{}]" + "An engine must be specified when passing individual parameters to a database.": [ + "向数据库传递单个参数时必须指定引擎。" ], - "Chart cache timeout": ["图表缓存超时"], - "Chart changes": ["图表变化"], - "Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.\n\n Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!": [ - "图表组件,允许您在仪表板中添加自定义过滤器UI。当添加到仪表板时,过滤器框允许用户指定特定的值或范围来过滤图表。每个筛选框所应用的图表也可以在仪表板视图中进行微调。请注意,这个插件正在被仪表板视图中的新过滤器功能所取代。它更易于使用,功能更强大!" + "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ + "引擎\"InvalidEngine\"不支持通过单独的参数进行配置。" ], - "Chart could not be created.": ["您的查询无法保存。"], - "Chart could not be deleted.": ["这个查询无法被加载。"], - "Chart could not be updated.": ["您的查询无法保存。"], - "Chart does not exist": ["图表没有找到"], - "Chart has no query context saved. Please save the chart again.": [ - "图表未保存任何查询上下文。请重新保存图表。" + "Deleted %(num)d dataset": ["已经删除 %(num)d 个数据集"], + "Null or Empty": ["Null或空"], + "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ + "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" ], - "Chart name": ["图表名称"], - "Chart options": ["图表选项"], - "Chart parameters are invalid.": ["图表参数无效。"], - "Chart type": ["图表类型"], - "Chart type requires a dataset": [""], - "Charts": ["图表"], - "Charts could not be deleted.": ["这个查询无法被加载"], - "Check configuration": ["检查配置"], - "Check for sorting ascending": ["按照升序进行排序"], - "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ - "检查玫瑰图是否应该使用线段面积而不是线段半径来进行比例" + "Second": ["秒"], + "5 second": ["5秒"], + "30 second": ["30秒钟"], + "Minute": ["分钟"], + "5 minute": ["5分钟"], + "10 minute": ["10分钟"], + "15 minute": ["15分钟"], + "30 minute": ["30分钟"], + "Hour": ["小时"], + "6 hour": ["6小时"], + "Day": ["天"], + "Week": ["周"], + "Month": ["月"], + "Quarter": ["季度"], + "Year": ["年"], + "Week starting Sunday": ["周日为一周开始"], + "Week starting Monday": ["周一为一周开始"], + "Week ending Saturday": ["周一为一周结束"], + "Username": ["用户名"], + "Password": ["密码"], + "Hostname or IP address": ["主机名或IP"], + "Database port": ["数据库端口"], + "Database name": ["数据库名称"], + "Additional parameters": ["编辑模板参数"], + "Use an encrypted connection to the database": ["使用到数据库的加密连接"], + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "" ], - "Check out this chart in dashboard:": ["在仪表盘中查看此图表"], - "Check out this chart: ": ["看看这张图表:"], - "Check out this dashboard: ": ["查看此看板:"], - "Check to apply filters instantly as they change instead of displaying [Apply] button": [ - "选中可在过滤条件更改时立即应用过滤,而不是使用 [应用] 按钮" + "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ + "表 \"%(table)s\" 不存在。必须使用有效的表来运行此查询。" ], - "Check to force date partitions to have the same height": [ - "选中以强制日期分区具有相同的高度" + "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ + "我们似乎无法解析行 %(location)s 所处的列 \"%(column)\" 。" ], - "Check to include time column dropdown": ["检查包含时间列下拉列表"], - "Check to include time grain dropdown": ["选中以包括时间粒度下拉菜单"], - "Child label position": ["子标签位置"], - "Choice of [Label] must be present in [Group By]": [ - "[标签] 的选择项必须出现在 [Group By]" + "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ + "表 \"%(schema)s\" 不存在。必须使用有效的表来运行此查询。" ], - "Choice of [Point Radius] must be present in [Group By]": [ - "[点半径] 的选择项必须出现在 [Group By]" + "Either the username \"%(username)s\" or the password is incorrect.": [ + "用户名\"%(username)s\"或密码不正确" ], - "Choose File": ["选择文件"], - "Choose a chart or dashboard not both": [ - "选择图表或看板,不能都全部选择" + "The host \"%(hostname)s\" might be down and can't be reached.": [ + "主机 \"%(hostname)s\" 可能已关闭,无法连接到" ], - "Choose a database...": ["选择数据库"], - "Choose a dataset": ["选择数据源"], - "Choose a metric for right axis": ["为右轴选择一个指标"], - "Choose a number format": ["选择一种数字格式"], - "Choose a source": ["选择一个源"], - "Choose a source and a target": ["选择一个源和一个目标"], - "Choose a target": ["选择一个目标"], - "Choose chart type": ["选择图表类型"], - "Choose one of the available databases from the panel on the left.": [ - "从左侧的面板中选择一个可用的数据库" + "Unable to connect to database \"%(database)s\".": [ + "不能连接到数据库\"%(database)s\"" ], - "Choose the annotation layer type": ["选择注释层类型"], - "Choose the source of your annotations": ["选择您的注释来源"], - "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ - "" + "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ + "请检查查询中\"%(server_error)s\"附近的语法错误然后,再次尝试运行查询" ], - "Chord Diagram": ["弦图"], - "Chosen non-numeric column": ["选定的非数字列"], - "Circle": ["圆"], - "Circle -> Arrow": ["圆 -> 箭头"], - "Circle -> Circle": ["圆 -> 圆"], - "Circle radar shape": ["圆形雷达图"], - "Circular": ["圆"], - "Classic chart that visualizes how metrics change over time.": [ - "直观显示指标随时间变化的经典图表。" + "We can't seem to resolve the column \"%(column_name)s\"": [ + "我们似乎无法解析列 \"%(column_name)\" 。" ], - "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ - "数据集的典型的逐行逐列电子表格视图。使用表格显示底层数据的视图或显示聚合指标。" + "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ + "用户名\"%(username)s\"、密码或数据库名称\"%(database)s\"不正确" ], - "Clause": ["从句"], - "Clear": ["清除"], - "Clear all": ["清楚所有"], - "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ - "" + "The hostname \"%(hostname)s\" cannot be resolved.": [ + "无法解析主机名 \"%(hostname)s\" " ], - "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ - "" + "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ + "主机名 \"%(hostname)s\" 上的端口 %(port)s 拒绝连接。" ], - "Click the lock to make changes.": ["单击锁以进行更改。"], - "Click the lock to prevent further changes.": [ - "单击锁定以防止进一步更改。" + "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ + "主机 \"%(hostname)s\" 可能已关闭,无法通过端口访问 " ], - "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ - "单击此链接可切换到备用表单,该表单允许您手动输入此数据库的SQLAlChemy URL。" + "Unknown MySQL server host \"%(hostname)s\".": [ + "未知MySQL服务器主机 \"%(hostname)s\"." ], - "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ - "单击此链接可切换到仅显示连接此数据库所需的必填字段的备用表单。" + "The username \"%(username)s\" does not exist.": [ + "指标 '%(username)s' 不存在" ], - "Click to cancel sorting": [""], - "Click to edit": ["点击编辑"], - "Click to edit label": ["单击以编辑标签"], - "Click to favorite/unfavorite": ["点击 收藏/取消收藏"], - "Click to force-refresh": ["点击强制刷新"], - "Click to see difference": ["点击查看差异"], - "Close": ["关闭"], - "Close all other tabs": ["关闭其他tab页"], - "Close tab": ["关闭标签"], - "Cluster label aggregator": ["集群标签聚合器"], - "Clustering Radius": ["簇半径"], - "Code": ["代码"], - "Collapse all": ["全部折叠"], - "Collapse table preview": ["折叠表的预览"], - "Color": ["颜色"], - "Color +/-": ["色彩 +/-"], - "Color Metric": ["颜色指标"], - "Color Scheme": ["配色方案"], - "Color Steps": ["色彩 Steps"], - "Color metric": ["颜色指标"], - "Color scheme": ["配色方案"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "The user/password combination is not valid (Incorrect password for user).": [ "" ], - "Colors": ["颜色"], - "Column": ["列"], - "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ - "列\"%(column)s\"不是数字或不在查询结果中" + "Could not resolve hostname: \"%(host)s\".": [""], + "Port out of range 0-65535": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" ], - "Column Label(s)": ["字段标签"], - "Column containing ISO 3166-2 codes of region/province/department in your table.": [ - "表中包含地区/省/省的ISO 3166-2代码的列" + "Invalid reference to column: \"%(column)s\"": [""], + "The password provided for username \"%(username)s\" is incorrect.": [ + "用户名 \"%(username)s\" 提供的密码不正确。" ], - "Column containing latitude data": ["包含纬度数据的列"], - "Column containing longitude data": ["包含经度数据的列"], - "Column is required": ["列是必填项"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" + "Please re-enter the password.": ["请重新输入密码。"], + "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ + "我们似乎无法解析行 %(location)s 所处的列 \"%(column_name)s\" 。" ], - "Column name [%s] is duplicated": ["列名 [%s] 重复"], - "Column referenced by aggregate is undefined: %(column)s": [ - "聚合引用的列未定义:%(column)s" + "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ + "表 \"%(table_name)s\" 不存在。必须使用有效的表来运行此查询。" ], - "Column select": ["选择列"], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" + "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ + "表 \"%(schema_name)s\" 不存在。必须使用有效的表来运行此查询。" ], - "Columnar File": ["列式存储文件"], - "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Excel 文件 \"%(columnar_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" + "Unable to connect to catalog named \"%(catalog_name)s\".": [ + "无法连接到名为\\%(catalog_name)s\\的目录。" ], - "Columnar to Database configuration": ["列式存储文件到数据库配置"], - "Columns": ["列"], - "Columns missing in datasource: %(invalid_columns)s": [ - "数据源中缺少列:%(invalid_columns)s" + "Unknown Presto Error": ["未知 Presto 错误"], + "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ + "我们无法连接到名为 \"%(database)s\" 的数据库。请确认您的数据库名字并重试" ], - "Columns subtotal position": ["列的小计位置"], - "Columns to display": ["要显示的字段"], - "Columns to group by": ["需要进行分组的一列或多列"], - "Columns to group by on the columns": ["必须是分组列"], - "Columns to group by on the rows": ["行上分组所依据的列"], - "Combine metrics": ["整合指标"], - "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ - "间隔的逗号分隔色选项,例如1、2、4。整数表示所选配色方案中的颜色,并以1为索引。长度必须与间隔界限匹配。" + "%(object)s does not exist in this database.": [ + "%(object)s 数据库中不存在。" ], - "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ - "逗号分隔的区间界限,例如0-2、2-4和4-5区间的2、4、5。最后一个数字应与为Max提供的值匹配。" + "Home": ["主页"], + "Data": ["数据"], + "Dashboards": ["仪表盘"], + "Charts": ["图表"], + "Datasets": ["数据集"], + "Plugins": ["插件"], + "Manage": ["管理"], + "CSS Templates": ["CSS 模板"], + "SQL Lab": ["SQL 工具箱"], + "SQL": ["SQL"], + "Saved Queries": ["已保存查询"], + "Query History": ["历史查询"], + "Tags": ["标签"], + "Action Log": ["操作日志"], + "Security": ["安全"], + "Alerts & Reports": ["告警和报告"], + "Annotation Layers": ["注释层"], + "Row Level Security": ["行级安全"], + "Unable to encode value": [""], + "Unable to decode value": [""], + "Invalid permalink key": [""], + "Datetime column not provided as part table configuration and is required by this type of chart": [ + "没有提供该表配置的日期时间列,它是此类型图表所必需的" ], - "Comparator option": ["比较器选项"], - "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ - "快速比较多个时间序列图表和相关指标。" + "Empty query?": ["查询为空?"], + "Unknown column used in orderby: %(col)s": [ + "订单中使用的未知列: %(col)s" ], - "Compare the same summarized metric across multiple groups.": [ - "跨多个组比较相同的汇总指标" + "Time column \"%(col)s\" does not exist in dataset": [ + "时间列 \"%(col)s\" 在数据集中不存在" ], - "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ - "比较指标在不同组之间随时间的变化情况。每一组被映射到一行,并且随着时间的变化被可视化地显示条的长度和颜色。" + "Filter value list cannot be empty": ["不能为空"], + "Must specify a value for filters with comparison operators": [ + "必须为带有比较操作符的过滤器指定一个值吗" ], - "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ - "使用条形图比较不同类别的指标。条形长度用于指示每个值的大小,颜色用于区分组。" + "Invalid filter operation type: %(op)s": ["选择框的操作类型无效: %(op)s"], + "Error in jinja expression in WHERE clause: %(msg)s": [ + "jinja表达式中的WHERE子句出错:%(msg)s" ], - "Compares the lengths of time different activities take in a shared timeline view.": [ - "比较不同活动在共享时间线视图中所花费的时间长度。" - ], - "Comparison": ["比较"], - "Comparison Period Lag": ["滞后比较"], - "Comparison suffix": ["比较前缀"], - "Compose multiple layers together to form complex visuals.": [""], - "Compute the contribution to the total": ["计算对总数的贡献值"], - "Condition": ["条件"], - "Conditional formatting": ["条件格式设置"], - "Confidence interval": ["信区间间隔"], - "Confidence interval must be between 0 and 1 (exclusive)": [ - "置信区间必须介于0和1(不包含1)之间" + "Error in jinja expression in HAVING clause: %(msg)s": [ + "jinja表达式中的HAVING子句出错:%(msg)s" ], - "Configuration": ["配置"], - "Configure Advanced Time Range ": ["配置进阶时间范围"], - "Configure Time Range: Last...": ["配置时间范围:上一(Last).."], - "Configure Time Range: Previous...": ["配置时间范围:前一(Previous).."], - "Configure custom time range": ["配置自定义时间范围"], - "Configure filter scopes": ["配置过滤范围"], - "Configure the basics of your Annotation Layer.": ["注释层基本配置"], - "Configure this dashboard to embed it into an external web application.": [ + "Database does not support subqueries": ["数据库不支持子查询"], + "Deleted %(num)d saved query": ["已经删除 %(num)d 个保存的查询"], + "Deleted %(num)d report schedule": ["已经删除了 %(num)d 个报告时间表"], + "Value must be greater than 0": ["`行偏移量` 必须大于或等于0"], + "Custom width of the screenshot in pixels": [""], + "Screenshot width must be between %(min)spx and %(max)spx": [""], + "\n Error: %(text)s\n ": [""], + "%(name)s.csv": [""], + "%(prefix)s %(title)s": [""], + "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ "" ], - "Configure your how you overlay is displayed here.": [ - "配置如何在这里显示您的覆盖。" - ], - "Confirm save": ["确认保存"], - "Connect": ["连接"], - "Connect Google Sheet": [""], - "Connect Google Sheets as tables to this database": [ - "将Google Sheet作为表格连接到此数据库" - ], - "Connect a database": ["连接数据库"], - "Connect database": ["连接数据库"], - "Connect this database using the dynamic form instead": [ - "使用动态参数连接此数据库" + "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [""], + "%(dialect)s cannot be used as a data source for security reasons.": [ + "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。" ], - "Connect this database with a SQLAlchemy URI string instead": [ - "使用SQLAlchemy URI链接此数据库" + "Guest user cannot modify chart payload": [""], + "Failed to execute %(query)s": [""], + "The parameter %(parameters)s in your query is undefined.": [ + "查询中的以下参数未定义:%(parameters)s 。" ], - "Connection": ["连接"], - "Connection failed, please check your connection settings": [ - "连接失败,请检查您的连接配置" + "The query contains one or more malformed template parameters.": [ + "该查询包含一个或多个格式不正确的模板参数。" ], - "Connection looks good!": ["连接测试成功!"], - "Continuous": ["连续式"], - "Contribution": ["贡献"], - "Contribution Mode": ["贡献模式"], - "Control labeled ": ["控件已标记 "], - "Controls labeled ": ["控件已标记"], - "Coordinates": ["坐标"], - "Copied to clipboard!": ["复制到剪贴板!"], - "Copy": ["复制"], - "Copy SELECT statement to the clipboard": ["将 SELECT 语句复制到剪贴板"], - "Copy and Paste JSON credentials": ["复制和粘贴JSON凭据"], - "Copy and paste the entire service account .json file here": [ - "复制服务帐户的json文件复制并粘贴到此处" + "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ + "请检查查询并确认所有模板参数都用双大括号括起来,例如 \"{{ ds }}\"。然后,再次尝试运行查询" ], - "Copy link": ["复制链接"], - "Copy message": ["复制信息"], - "Copy of %s": ["%s 的副本"], - "Copy partition query to clipboard": ["将分区查询复制到剪贴板"], - "Copy query URL": ["复制查询URL"], - "Copy query link to your clipboard": ["将查询链接复制到剪贴板"], - "Copy the account name of that database you are trying to connect to.": [ - "复制尝试连接的数据库帐户名" + "Tag name is invalid (cannot contain ':')": [""], + "Record Count": ["记录数"], + "No records found": ["没有找到任何记录"], + "Filter List": ["过滤"], + "Search": ["搜索"], + "Refresh": ["刷新间隔"], + "Import dashboards": ["导入看板"], + "Import Dashboard(s)": ["导入看板"], + "File": ["文件"], + "Choose File": ["选择文件"], + "Upload": ["上传"], + "Test Connection": ["测试连接"], + "Unsupported clause type: %(clause)s": ["不支持的条款类型: %(clause)s"], + "Unable to find such a holiday: [%(holiday)s]": [ + "找不到这样的假期:[{}]" ], - "Copy the name of the HTTP Path of your cluster.": [""], - "Copy to Clipboard": ["复制到剪贴板"], - "Copy to clipboard": ["复制到剪贴板"], - "Correlation": ["相关性"], - "Cost estimate": ["成本估算"], - "Could not determine datasource type": ["无法确定数据源类型"], - "Could not fetch all saved charts": ["无法获取所有保存的图表"], - "Could not find viz object": ["找不到可视化对象"], - "Could not load database driver": ["无法加载数据库驱动程序"], - "Could not load database driver: %(driver_name)s": [ - "无法加载数据库驱动程序:%(driver_name)s" + "DB column %(col_name)s has unknown type: %(value_type)s": [""], + "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ + "百分位数必须是具有两个数值的列表或元组,其中第一个数值要小于第二个数值" ], - "Could not load database driver: {}": ["无法加载数据库驱动程序:{}"], - "Could not resolve hostname: \"%(host)s\".": [""], - "Count as Fraction of Columns": [""], - "Count as Fraction of Rows": [""], - "Count as Fraction of Total": [""], - "Country": ["国家"], - "Country Color Scheme": ["国家颜色方案"], - "Country Column": ["国家字段"], - "Country Field Type": ["国家字段的类型"], - "Country Map": ["国家地图"], - "Create": ["创建"], - "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ - "" + "`compare_columns` must have the same length as `source_columns`.": [ + "长度必须保持一致" ], - "Create a new chart": ["创建新图表"], - "Create chart with dataset": [""], - "Create new chart": ["创建新图表"], - "Create new filter set": ["创建新的过滤器"], - "Create or select schema...": ["创建或者选择模式"], - "Created": ["已创建"], - "Created On": ["创建日期"], - "Created by": ["创建人"], - "Created content": ["创建的内容"], - "Created on": ["创建日期"], - "Creating a data source and creating a new tab": [ - "创建数据源,并弹出一个新的标签页" + "`compare_type` must be `difference`, `percentage` or `ratio`": [ + "`compare_type` 必须是 `difference`, `percentage` 或 `ratio`" ], - "Creator": ["作者"], - "Cross-filter will be applied to all of the charts that use this dataset.": [ - "" + "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ + "列\"%(column)s\"不是数字或不在查询结果中" ], - "Cumulative": ["累计"], - "Currently rendered: %s": [""], - "Custom": ["自定义"], - "Custom Plugin": ["自定义插件"], - "Custom Plugins": ["自定义插件"], - "Custom SQL": ["自定义SQL"], - "Custom SQL ad-hoc metrics are not enabled for this dataset": [ - "此数据集无法启用自定义SQL即席查询、" + "`rename_columns` must have the same length as `columns`.": [ + "长度必须保持一致" ], - "Custom SQL fields cannot contain sub-queries.": [""], - "Custom time filter plugin": ["自定义时间过滤器插件"], - "Customize": ["定制化配置"], - "Customize Metrics": ["自定义指标"], - "Customize columns": ["自定义列"], - "Cyclic dependency detected": [""], - "D3 Format": ["D3 格式"], - "D3 format": ["D3 格式"], - "D3 format syntax: https://github.com/d3/d3-format": [ - "D3插件格式语法: https://github.com/d3/d3-time-format" + "Invalid cumulative operator: %(operator)s": [ + "累积运算符无效:%(operator)s" ], - "D3 time format for datetime columns": ["D3时间格式的时间列"], - "D3 time format syntax: https://github.com/d3/d3-time-format": [ - "D3时间插件格式语法: https://github.com/d3/d3-time-format" + "Invalid geohash string": ["无效的geohash字符串"], + "Invalid longitude/latitude": ["无效的经度/纬度"], + "Invalid geodetic string": ["无效的 geodetic 字符串"], + "Pivot operation requires at least one index": [ + "透视操作至少需要一个索引" ], - "DB column %(col_name)s has unknown type: %(value_type)s": [""], - "DEC": ["十二月"], - "DELETE": ["删除"], - "DML": ["DML(数据操作语言)"], - "Daily seasonality": [""], - "Dark Cyan": [""], - "Dark mode": ["黑暗模式"], - "Dashboard": ["看板"], - "Dashboard [{}] just got created and chart [{}] was added to it": [ - "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" + "Pivot operation must include at least one aggregate": [ + "数据透视操作必须至少包含一个聚合" ], - "Dashboard could not be created.": ["看板无法被创建"], - "Dashboard could not be deleted.": ["看板无法被删除。"], - "Dashboard could not be updated.": ["看板无法更新。"], - "Dashboard does not exist": ["看板不存在"], - "Dashboard parameters are invalid.": ["看板参数无效。"], - "Dashboard properties": ["看板属性"], - "Dashboard scheme": ["仪表盘模式"], - "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ - "" + "`prophet` package not installed": ["未安装程序包 `fbprophet`"], + "Time grain missing": ["时间粒度缺失"], + "Unsupported time grain: %(time_grain)s": [ + "不支持的时间粒度:%(time_grain)s" ], - "Dashboards": ["仪表盘"], - "Dashboards could not be deleted.": ["仪表盘无法被删除。"], - "Dashboards do not exist": ["仪表盘"], - "Data": ["数据"], - "Data Table": ["数据表"], - "Data URI is not allowed.": [""], - "Data Zoom": ["数据缩放"], - "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ - "无法从结果后端反序列化数据。存储格式可能已经改变,呈现了旧的数据桩。您需要重新运行原始查询。" + "Confidence interval must be between 0 and 1 (exclusive)": [ + "置信区间必须介于0和1(不包含1)之间" ], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "无法从结果后端检索数据。您需要重新运行原始查询。" + "DataFrame must include temporal column": [ + "数据帧(DataFrame)必须包含时间列" ], - "Data has no time steps": [""], - "Data preview": ["数据预览"], - "Data type": ["数据类型"], "DataFrame include at least one series": [ "数据帧(DataFrame)至少包括一个序列" ], - "DataFrame must include temporal column": [ - "数据帧(DataFrame)必须包含时间列" + "Undefined window for rolling operation": ["未定义滚动操作窗口"], + "Window must be > 0": ["窗口必须大于0"], + "Invalid rolling_type: %(type)s": ["无效的滚动类型:%(type)s"], + "Invalid options for %(rolling_type)s: %(options)s": [ + "%(rolling_type)s 的选项无效:%(options)s" ], - "Database": ["数据库"], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ - "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" + "Referenced columns not available in DataFrame.": [ + "引用的列在数据帧(DataFrame)中不可用。" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ - "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于csv上传。请联系管理员。" + "Column referenced by aggregate is undefined: %(column)s": [ + "聚合引用的列未定义:%(column)s" ], - "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ - "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" + "Operator undefined for aggregator: %(name)s": [ + "未定义聚合器的运算符:%(name)s" ], - "Database Creation Error": ["数据库创建错误"], - "Database URL": ["数据库URL"], - "Database could not be created.": ["数据库无法被创建"], - "Database could not be deleted.": ["数据库不能删除。"], - "Database could not be updated.": ["数据库无法更新"], - "Database does not allow data manipulation.": [ - "数据库不允许此数据操作。" + "Invalid numpy function: %(operator)s": ["无效的numpy函数:%(operator)s"], + "json isn't valid": ["无效 JSON"], + "Export to YAML": ["导出到YAML格式"], + "Export to YAML?": ["导出到YAML?"], + "Delete": ["删除"], + "Delete all Really?": ["确定删除全部?"], + "Is favorite": ["收藏"], + "Is tagged": [""], + "The data source seems to have been deleted": ["数据源已经被删除"], + "The user seems to have been deleted": ["用户已经被删除"], + "Error: %(msg)s": [""], + "Explore - %(table)s": ["查看 - %(table)s"], + "Explore": ["探索"], + "Chart [{}] has been saved": ["图表 [{}] 已经保存"], + "Chart [{}] has been overwritten": ["图表 [{}] 已经覆盖"], + "Chart [{}] was added to dashboard [{}]": [ + "图表 [{}] 已经添加到看板 [{}]" ], - "Database does not exist": ["数据库不存在"], - "Database does not support subqueries": ["数据库不支持子查询"], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "" + "Dashboard [{}] just got created and chart [{}] was added to it": [ + "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" ], - "Database error": ["数据库错误"], - "Database is offline.": ["数据库已下线"], - "Database is required for alerts": ["警报需要数据库"], - "Database name": ["数据库名称"], - "Database not allowed to change": ["数据集不允许被修改"], - "Database not found.": ["数据库没有找到"], - "Database parameters are invalid.": ["数据库参数无效"], - "Database port": ["数据库端口"], - "Databases": ["数据库"], - "Dataframe Index": ["Dataframe索引"], - "Dataset": ["数据集"], - "Dataset %(name)s already exists": ["数据集 %(name)s 已存在"], - "Dataset column delete failed.": ["数据集列删除失败。"], - "Dataset column not found.": ["数据集行删除失败。"], - "Dataset could not be created.": ["无法创建数据集。"], - "Dataset could not be deleted.": ["无法删除数据集"], - "Dataset could not be updated.": ["无法更新数据集。"], - "Dataset does not exist": ["数据集不存在"], - "Dataset is required": ["需要数据集"], - "Dataset metric delete failed.": ["数据集指标删除失败"], - "Dataset metric not found.": ["数据集指标没找到"], - "Dataset name": ["数据集名称"], - "Dataset parameters are invalid.": ["数据集参数无效。"], - "Dataset schema is invalid, caused by: %(error)s": [""], - "Dataset(s) could not be bulk deleted.": ["数据集无法批量删除"], - "Datasets": ["数据集"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "" + "Malformed request. slice_id or table_name and db_name arguments are expected": [ + "格式错误的请求。需要使用 slice_id 或 table_name 和 db_name 参数" ], - "Datasets do not contain a temporal column": ["数据集不包含时间列"], + "Chart %(id)s not found": ["图表 %(id)s 没有找到"], + "Table %(table)s wasn't found in the database %(db)s": [ + "在数据库 %(db)s 中找不到表 %(table)s" + ], + "Show CSS Template": ["查看CSS模板"], + "Add CSS Template": ["新增CSS模板"], + "Edit CSS Template": ["编辑CSS模板"], + "Template Name": ["模板名称"], + "A human-friendly name": ["人性化的名称"], + "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ + "在内部用于标识插件。应该在插件的 package.json 内被设置为包名。" + ], + "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ + "指向内置插件位置的完整URL(例如,可以托管在CDN上)" + ], + "Custom Plugins": ["自定义插件"], + "Custom Plugin": ["自定义插件"], + "Add a Plugin": ["添加插件"], + "Edit Plugin": ["编辑插件"], + "The dataset associated with this chart no longer exists": [ + "这个图表所链接的数据集可能被删除了。" + ], + "Could not determine datasource type": ["无法确定数据源类型"], + "Could not find viz object": ["找不到可视化对象"], + "Show Chart": ["显示图表"], + "Add Chart": ["添加图表"], + "Edit Chart": ["编辑图表"], + "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ + "这些参数是在浏览视图中单击保存或覆盖按钮时动态生成的。这个JSON对象在这里公开以供参考,并提供给可能希望更改特定参数的高级用户使用。" + ], + "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ + "此图表的缓存超时持续时间(以秒为单位)。注意,如果未定义,这默认为数据源/表超时。" + ], + "Creator": ["作者"], "Datasource": ["数据源"], - "Datasource & Chart Type": ["数据源 & 图表类型"], - "Datasource type is invalid": [""], - "Datasource type is required when datasource_id is given": [ - "给定数据源id时,需要提供数据源类型" + "Last Modified": ["最后修改"], + "Parameters": ["参数"], + "Chart": ["图表"], + "Name": ["名称"], + "Visualization Type": ["可视化类型"], + "Show Dashboard": ["显示看板"], + "Add Dashboard": ["添加看板"], + "Edit Dashboard": ["编辑看板"], + "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ + "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" ], - "Date Time Format": ["时间格式"], - "Date filter": ["日期过滤器"], - "Date format": ["日期格式化"], - "Date/Time": ["日期/时间"], - "Datetime Format": ["时间格式"], - "Datetime column not provided as part table configuration and is required by this type of chart": [ - "没有提供该表配置的日期时间列,它是此类型图表所必需的" + "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ + "可以在这里或者在看板视图修改单个看板的CSS样式" ], - "Datetime format": ["时间格式"], - "Day": ["天"], - "Day (freq=D)": [""], - "Days %s": ["%s天"], - "Db engine did not return all queried columns": [ - "数据库引擎未返回所有查询的列" + "To get a readable URL for your dashboard": ["为看板生成一个可读的 URL"], + "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ + "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" ], - "December": ["十二月"], - "Decides which column to sort the base axis by.": [""], - "Decides which measure to sort the base axis by.": [""], - "Decimal Character": ["十进制字符"], - "Deck.gl - 3D Grid": ["Deck.gl - 3D网格"], - "Deck.gl - 3D HEX": ["Deck.gl - 3D六角曲面"], - "Deck.gl - Arc": ["Deck.gl - 弧度"], - "Deck.gl - GeoJSON": ["Deck.gl - 地理json"], - "Deck.gl - Multiple Layers": ["多图层"], - "Deck.gl - Paths": ["Deck.gl - 路径"], - "Deck.gl - Polygon": ["Deck.gl - 多角形"], - "Deck.gl - Scatter plot": ["Deck.gl - 散点图"], - "Deck.gl - Screen Grid": ["Deck.gl - 屏幕网格"], - "Default": ["默认"], - "Default Endpoint": ["默认端点"], - "Default URL": ["默认URL"], - "Default URL to redirect to when accessing from the dataset list page": [ - "从数据集列表页访问时重定向到的默认URL" + "Owners is a list of users who can alter the dashboard.": [ + "所有者是可以更改看板的用户列表。" ], - "Default Value": ["缺省值"], - "Default latitude": ["默认纬度"], - "Default longitude": ["默认经度"], - "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ - "默认最小列宽(以像素为单位),如果其他列不需要太多空间,则实际宽度可能仍大于此值" + "Determines whether or not this dashboard is visible in the list of all dashboards": [ + "确定此看板在所有看板列表中是否可见" ], - "Default value is required": ["需要默认值"], - "Default value must be set when \"Filter has default value\" is checked": [ - "选中筛选器具有默认值时,必须设置默认值" + "Dashboard": ["看板"], + "Title": ["标题"], + "Slug": ["Slug"], + "Roles": ["角色"], + "Published": ["已发布"], + "Position JSON": ["位置JSON"], + "CSS": ["CSS"], + "JSON Metadata": ["JSON 元数据"], + "Export": ["导出"], + "Export dashboards?": ["导出看板?"], + "Only the following file extensions are allowed: %(allowed_extensions)s": [ + "仅允许以下文件扩展名:%(allowed_extensions)s" ], - "Define a function that receives the input and outputs the content for a tooltip": [ + "Table name cannot contain a schema": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ "" ], - "Define a function that returns a URL to navigate to when user clicks": [ + "Delimiter": ["分隔符"], + ",": [""], + ".": [""], + "Other": ["其他"], + "Fail": ["失败"], + "Replace": ["替换"], + "Append": ["追加"], + "Skip Initial Space": ["跳过初始空格"], + "Skip Blank Lines": ["跳过空白行"], + "Day First": [""], + "DD/MM format dates, international and European format": [""], + "Decimal Character": ["十进制字符"], + "Index Column": ["索引字段"], + "Dataframe Index": ["Dataframe索引"], + "Column Label(s)": ["字段标签"], + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ "" ], - "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ - "" + "Header Row": ["标题行"], + "Rows to Read": ["读取的行"], + "Skip Rows": ["跳过行"], + "Name of table to be created from excel data.": [ + "从excel数据将创建的表的名称。" ], - "Defines a rolling window function to apply, works along with the [Periods] text box": [ - "定义要应用的滚动窗口函数,与 [期限] 文本框一起使用" + "Excel File": ["Excel文件"], + "Select a Excel file to be uploaded to a database.": [ + "选择要上传到数据库的Excel文件。" ], - "Defines how each series is broken down": ["定义每个序列是如何被分解的"], - "Defines the grid size in pixels": [""], - "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ - "定义实体的分组。每个序列在图表上显示为特定颜色,并有一个可切换的图例" + "Sheet Name": ["Sheet名称"], + "Strings used for sheet names (default is the first sheet).": [ + "用于sheet名称的字符串(默认为第一个sheet)。" ], - "Defines the size of the rolling window function, relative to the time granularity selected": [ - "定义滚动窗口函数的大小,相对于所选的时间粒度" + "Specify a schema (if database flavor supports this).": [ + "指定一个Schema(需要数据库支持)" ], - "Defines whether the step should appear at the beginning, middle or end between two data points": [ - "定义步骤应出现在两个数据点之间的开始、中间还是结束处" + "Table Exists": ["表已存在处理"], + "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ + "如果表已存在,执行其中一个:舍弃(什么都不做),替换(删除表并重建),或者追加(插入数据)" ], - "Delete": ["删除"], - "Delete %s?": ["需要删除 %s 吗?"], - "Delete Annotation?": ["删除注释?"], - "Delete Database?": ["确定删除数据库?"], - "Delete Dataset?": ["确定删除数据集?"], - "Delete Layer?": ["确定删除图层?"], - "Delete Query?": ["确定删除查询?"], - "Delete Report?": ["删除报表?"], - "Delete Template?": ["删除模板?"], - "Delete all Really?": ["确定删除全部?"], - "Delete annotation": ["删除注释"], - "Delete dashboard tab?": ["是否删除仪表盘tab页?"], - "Delete database": ["删除数据库"], - "Delete email report": ["删除邮件报告"], - "Delete query": ["删除查询"], - "Delete template": ["删除模板"], - "Delete this container and save to remove this message.": [ - "删除此容器并保存以删除此邮件。" + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" ], - "Deleted %(num)d annotation": ["选择一个注释图层"], - "Deleted %(num)d annotation layer": ["选择一个注释图层"], - "Deleted %(num)d chart": ["删除了 %(num)d 个图表"], - "Deleted %(num)d css template": ["删除了 %(num)d 个css模板"], - "Deleted %(num)d dashboard": ["删除了 %(num)d 个看板"], - "Deleted %(num)d dataset": ["已经删除 %(num)d 个数据集"], - "Deleted %(num)d report schedule": ["已经删除了 %(num)d 个报告时间表"], - "Deleted %(num)d saved query": ["已经删除 %(num)d 个保存的查询"], - "Deleted: %s": ["已删除:%s"], - "Deleting a tab will remove all content within it. You may still reverse this action with the": [ - "" + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" ], - "Delimited long & lat single column": ["经度&纬度单列限定"], - "Delimiter": ["分隔符"], - "Delivery method": ["发送方式"], - "Demographics": ["人口统计"], - "Density": ["密度"], - "Deprecated": ["过时"], - "Description": ["描述"], - "Description (this can be seen in the list)": ["说明(见列表)"], - "Description Columns": ["列描述"], - "Description text that shows up below your Big Number": [ - "在大数字下面显示描述文本" + "Number of rows to skip at start of file.": ["在文件开始时跳过的行数。"], + "Number of rows of file to read.": ["要读取的文件行数。"], + "Parse Dates": ["解析日期"], + "A comma separated list of columns that should be parsed as dates.": [ + "应作为日期解析的列的逗号分隔列表。" ], - "Deselect all": ["反选所有"], - "Details of the certification": ["认证详情"], - "Determines how whiskers and outliers are calculated.": [ - "确定如何计算箱须和离群值。" + "Character to interpret as decimal point.": [ + "将字符解释为小数点的字符。" ], - "Determines whether or not this dashboard is visible in the list of all dashboards": [ - "确定此看板在所有看板列表中是否可见" + "Write dataframe index as a column.": ["将dataframe index 作为列."], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" ], - "Diamond": ["下钻"], - "Did you mean:": ["您的意思是:"], - "Difference": ["差异"], - "Dimension to use on x-axis.": [""], - "Dimension to use on y-axis.": [""], - "Directed Force Layout": ["有向图"], - "Directional": ["方向"], - "Disable SQL Lab data preview queries": [""], - "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ - "" + "Null values": ["空值"], + "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ + "应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" ], - "Disable embedding?": [""], - "Disabled": ["禁用"], - "Discrete": ["离散"], - "Display Name": ["显示名称"], - "Display column level total": ["显示列级别合计"], - "Display configuration": ["显示配置"], - "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ - "在每个列中并排显示指标,而不是每个指标并排显示每个列。" + "Name of table to be created from columnar data.": [ + "从列存储数据创建的表的名称。" ], - "Display row level total": ["显示行级合计"], - "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ - "显示图形结构中实体之间的连接。用于映射关系和显示网络中哪些节点是重要的。图表可以配置为强制引导或循环。如果您的数据具有地理空间组件,请尝试使用deck.gl圆弧图表。" + "Columnar File": ["列式存储文件"], + "Select a Columnar file to be uploaded to a database.": [ + "选择要上传到数据库的Excel文件。" ], - "Distribute across": ["基于某列进行分布"], - "Distribution": ["分布"], - "Distribution - Bar Chart": ["分布 - 柱状图"], - "Divider": ["分隔"], - "Do you want a donut or a pie?": ["是否用圆环圈替代饼图?"], - "Documentation": ["文档"], - "Domain": ["主域"], - "Donut": ["圆环圈"], - "Download as image": ["下载为图片"], - "Download to CSV": ["下载到CSV"], - "Draft": ["草稿"], - "Drag and drop components and charts to the dashboard": [""], - "Drag and drop components to this tab": [""], - "Draw a marker on data points. Only applicable for line types.": [ - "在数据点上绘制标记。仅适用于线型。" + "Use Columns": ["使用列"], + "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ + "Json应读取的列名列表。如果不是“无”,则仅从文件中读取这些列" ], - "Draw area under curves. Only applicable for line types.": [ - "在曲线下绘制区域。仅适用于线型。" + "Databases": ["数据库"], + "Show Database": ["显示数据库"], + "Add Database": ["添加数据库"], + "Edit Database": ["编辑数据库"], + "Expose this DB in SQL Lab": ["在 SQL 工具箱中公开这个数据库"], + "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ + "以异步模式操作数据库,这意味着查询是在远程worker上执行的,而不是在web服务器本身上执行的, 这假设您有一个Celery worker setup以及一个执行后端。有关更多信息,请参考安装文档。" ], - "Draw line from Pie to label when labels outside?": [ - "当标签在外侧时,是否在饼图到标签之间连线?" + "Allow CREATE TABLE AS option in SQL Lab": [ + "在 SQL 编辑器中允许 CREATE TABLE AS 选项" ], - "Draw split lines for minor y-axis ticks": ["绘制次要y轴记号的分割线"], - "Drill by": [""], - "Drill by is not available for this data point": [""], - "Drill by is not yet supported for this chart type": [""], - "Drill to detail": [""], - "Drill to detail by": [""], - "Drill to detail by value is not yet supported for this chart type.": [ - "" + "Allow CREATE VIEW AS option in SQL Lab": [ + "在 SQL 编辑器中允许 CREATE VIEW AS 选项" ], - "Drill to detail is disabled because this chart does not group data by dimension value.": [ - "" + "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [ + "允许用户在 SQL 编辑器中运行非 SELECT 语句(UPDATE,DELETE,CREATE,...)" ], - "Drill to detail: %s": [""], - "Drop columns/metrics here or click": ["将列/指标拖放到此处或单击"], - "Dual Line Chart": ["双线图"], - "Duplicate column name(s): %(columns)s": ["重复的列名%(columns)s"], - "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ - "重复的列/指标标签:%(labels)s。请确保所有列和指标都有唯一的标签。" + "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ + "当在 SQL 编辑器中允许 CREATE TABLE AS 选项时,此选项可以此模式中强制创建表" + ], + "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。
如果启用 Hive 和hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据hive.server2.proxy.user的属性伪装当前登录用户。" ], - "Duplicate tab": ["复制tab页"], - "Duration": ["持续时间"], "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为全局超时。" ], - "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ - "此图表的缓存超时持续时间(以秒为单位)。注意,如果未定义,这默认为数据源/表超时。" + "If selected, please set the schemas allowed for csv upload in Extra.": [ + "如果选择,请额外设置csv上传允许的模式。" ], - "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ - "此表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为数据库的超时。" + "Expose in SQL Lab": ["在 SQL 工具箱中公开"], + "Allow CREATE TABLE AS": ["允许 CREATE TABLE AS"], + "Allow CREATE VIEW AS": ["允许 CREATE VIEW AS"], + "Allow DML": ["允许 DML"], + "CTAS Schema": ["CTAS 模式"], + "SQLAlchemy URI": ["SQLAlchemy URI"], + "Chart Cache Timeout": ["表缓存超时"], + "Secure Extra": ["安全"], + "Root certificate": ["根证书"], + "Async Execution": ["异步执行查询"], + "Impersonate the logged on user": ["模拟登录用户"], + "Allow Csv Upload": ["允许Csv上传"], + "Backend": ["后端"], + "Extra field cannot be decoded by JSON. %(msg)s": [ + "JSON无法解码额外字段。%(msg)s" ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为永不过期。" + "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ + "连接字符串无效,有效字符串格式通常如下:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,缓存为永不过期。" + "CSV to Database configuration": ["csv 到数据库配置"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for csv uploads. Please contact your Superset Admin.": [ + "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于csv上传。请联系管理员。" ], - "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ - "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" + "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "无法将CSV文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" 内。错误消息:%(error_msg)s" ], - "Duration in ms (66000 => 1m 6s)": ["持续时间(毫秒)(66000 => 1m 6s)"], - "Duration: %s": ["持续时间:%s"], - "Dynamically search all filter values": [""], - "ECharts": ["ECharts图表"], - "END (EXCLUSIVE)": ["结束"], - "ERROR: %s": ["错误: %s"], - "Edge length": ["边长"], - "Edge length between nodes": ["节点之间的边长"], - "Edge symbols": ["边符号"], - "Edge width": ["边缘宽度"], - "Edit": ["编辑"], - "Edit Alert": ["编辑警报"], - "Edit CSS": ["编辑CSS"], - "Edit CSS Template": ["编辑CSS模板"], - "Edit CSS template properties": ["编辑CSS属性属性"], - "Edit Chart": ["编辑图表"], - "Edit Column": ["编辑列"], - "Edit Dashboard": ["编辑看板"], - "Edit Database": ["编辑数据库"], - "Edit Dataset ": ["编辑数据集"], - "Edit Log": ["编辑日志"], - "Edit Metric": ["编辑指标"], - "Edit Plugin": ["编辑插件"], - "Edit Report": ["编辑报表"], - "Edit Saved Query": ["编辑保存的查询"], - "Edit Table": ["编辑表"], - "Edit annotation": ["编辑注释"], - "Edit annotation layer": ["添加注释层"], - "Edit annotation layer properties": ["编辑注释图层属性"], - "Edit chart properties": ["编辑图表属性"], - "Edit dashboard": ["编辑仪表盘"], - "Edit database": ["编辑数据库"], - "Edit dataset": ["编辑数据集"], - "Edit email report": ["编辑邮件报告"], - "Edit formatter": ["日期格式化"], - "Edit properties": ["编辑属性"], - "Edit query": ["编辑查询"], - "Edit template": ["编辑模板"], - "Edit template parameters": ["编辑模板参数"], - "Edit time range": ["编辑时间范围"], - "Edited": ["已编辑"], - "Editing 1 filter:": ["编辑1个过滤条件:"], - "Editing filter set:": ["编辑过滤条件集合"], - "Either the database is spelled incorrectly or does not exist.": [ - "数据库拼写不正确或不存在。" + "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "csv 文件 \"%(csv_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" ], - "Either the username \"%(username)s\" or the password is incorrect.": [ - "用户名\"%(username)s\"或密码不正确" + "Excel to Database configuration": ["Excel 到数据库配置"], + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for excel uploads. Please contact your Superset Admin.": [ + "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ - "用户名\"%(username)s\"、密码或数据库名称\"%(database)s\"不正确" + "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" 内。错误消息:%(error_msg)s" ], - "Either the username or the password is wrong.": ["用户名或密码错误。"], - "Email reports active": ["激活邮件报告"], - "Embed code": [""], - "Embedding deactivated.": [""], - "Emphasis": ["重点"], - "Employment and education": ["就业和教育"], - "Empty circle": ["空圈"], - "Empty collection": ["空集合"], - "Empty query?": ["查询为空?"], - "Empty row": [""], - "Enable 'Allow file uploads to database' in any database's settings": [ - "" + "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Excel 文件 \"%(excel_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" ], - "Enable Filter Select": ["启用过滤器选择"], - "Enable data zooming controls": ["启用数据缩放控件"], - "Enable forecast": ["启用预测"], - "Enable forecasting": ["启用预测中"], - "Enable graph roaming": ["启用图形漫游"], - "Enable node dragging": ["启用节点拖动"], - "Enable query cost estimation": ["启用查询成本估算"], - "Enable server side pagination of results (experimental feature)": [ - "支持服务器端结果分页(实验功能)" + "Columnar to Database configuration": ["列式存储文件到数据库配置"], + "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ + "柱状上传不允许使用多个文件扩展名请确保所有文件的扩展名相同。" ], - "Encountered invalid NULL spatial entry, please consider filtering those out": [ - "遇到无效的为 NULL 的空间条目,请考虑将其过滤掉" + "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ + "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" ], - "End": ["结束"], - "End Time": ["结束时间"], - "End angle": ["结束角度"], - "End date excluded from time range": ["从时间范围中排除的结束日期"], - "End date must be after start date": ["起始时间不可以大于当前时间"], - "Engine \"%(engine)s\" cannot be configured through parameters.": [ - "引擎 \"%(engine)s\" 不能通过参数配置。" + "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ + "无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" 内。错误消息:%(error_msg)s" ], - "Engine Parameters": ["引擎参数"], - "Engine spec \"InvalidEngine\" does not support being configured via individual parameters.": [ - "引擎\"InvalidEngine\"不支持通过单独的参数进行配置。" + "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ + "Excel 文件 \"%(columnar_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" ], - "Enter CA_BUNDLE": ["进入CA_BUNDLE"], - "Enter a name for this sheet": ["输入此工作表的名称"], - "Enter a new title for the tab": ["输入标签的新标题"], - "Enter duration in seconds": ["输入间隔时间(秒)"], - "Enter fullscreen": ["全屏"], - "Enter the required %(dbModelName)s credentials": [""], - "Entity": ["实体"], - "Entity ID": ["实体ID"], - "Equal Date Sizes": ["相同的日期大小"], - "Equal to (=)": [""], - "Error": ["错误"], - "Error in jinja expression in HAVING clause: %(msg)s": [ - "jinja表达式中的HAVING子句出错:%(msg)s" + "Request missing data field.": ["请求丢失的数据字段。"], + "Duplicate column name(s): %(columns)s": ["重复的列名%(columns)s"], + "Logs": ["日志"], + "Show Log": ["查看日志"], + "Add Log": ["新增日志"], + "Edit Log": ["编辑日志"], + "User": ["用户"], + "Action": ["操作"], + "dttm": ["dttm"], + "JSON": ["JSON"], + "Time Range": ["时间范围"], + "Time Column": ["时间列"], + "Time Grain": ["时间粒度(Grain)"], + "Time Granularity": ["时间粒度(Granularity)"], + "Time": ["时间"], + "A reference to the [Time] configuration, taking granularity into account": [ + "对 [时间] 配置的引用,会将粒度考虑在内" ], - "Error in jinja expression in RLS filters: %(msg)s": [ - "jinja表达式中的 RLS filters 出错:%(msg)s" + "Aggregate": ["聚合"], + "Raw records": ["原始记录"], + "Certified by %s": ["认证人 %s"], + "description": ["描述"], + "bolt": ["螺栓"], + "Changing this control takes effect instantly": ["更改此控件立即生效。"], + "Show info tooltip": ["显示信息提示"], + "SQL expression": ["SQL表达式"], + "Label": ["标签"], + "function type icon": [""], + "string type icon": [""], + "numeric type icon": [""], + "boolean type icon": [""], + "temporal type icon": [""], + "Advanced analytics": ["高级分析"], + "This section contains options that allow for advanced analytical post processing of query results": [ + "本节包含允许对查询结果进行高级分析处理后的选项。" ], - "Error in jinja expression in WHERE clause: %(msg)s": [ - "jinja表达式中的WHERE子句出错:%(msg)s" + "Rolling window": ["滚动窗口"], + "Rolling function": ["滚动函数"], + "None": ["空"], + "Defines a rolling window function to apply, works along with the [Periods] text box": [ + "定义要应用的滚动窗口函数,与 [期限] 文本框一起使用" ], - "Error in jinja expression in fetch values predicate: %(msg)s": [ - "获取jinja表达式中的谓词的值出错:%(msg)s" - ], - "Error loading chart datasources. Filters may not work correctly.": [ - "加载图表数据源时出错。过滤器可能无法正常工作。" + "Periods": ["周期"], + "Defines the size of the rolling window function, relative to the time granularity selected": [ + "定义滚动窗口函数的大小,相对于所选的时间粒度" ], - "Error message": ["错误信息"], - "Error while fetching charts": ["获取图表时出错"], - "Error while fetching data: %s": ["获取数据时出错:%s"], - "Error while rendering virtual dataset query: %(msg)s": [ - "保存查询时出错:%(msg)s" + "Min periods": ["最小周期"], + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "显示值所需的滚动周期的最小值。例如,如果您想累积 7 天的总额,您可能希望您的“最小周期”为 7,以便显示的所有数据点都是 7 个区间的总和。这将隐藏掉前 7 个阶段的“加速”效果" ], - "Error: %(error)s": [""], - "Error: %(msg)s": [""], - "Estimate cost": ["运行选定的查询"], - "Estimate selected query cost": ["运行选定的查询"], - "Estimate the cost before running a query": [ - "在运行查询之前计算执行计划" + "Time comparison": ["时间比较"], + "Time shift": ["时间偏移"], + "1 day ago": [""], + "1 week ago": [""], + "28 days ago": [""], + "52 weeks ago": [""], + "1 year ago": [""], + "104 weeks ago": [""], + "2 years ago": [""], + "156 weeks ago": [""], + "3 years ago": [""], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "从相对时间段覆盖一个或多个时间序列。期望自然语言中的相对时间增量(例如:24小时、7天、56周、365天)" ], - "Event Flow": ["事件流"], - "Event Names": ["事件名称"], - "Event definition": ["事件定义"], - "Event flow": ["事件流"], - "Event time column": ["事件时间列"], - "Every": ["每个"], - "Evolution": ["演化"], - "Exact": ["精确"], - "Example": ["例子"], - "Examples": ["示例"], - "Excel File": ["Excel文件"], - "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ - "Excel 文件 \"%(excel_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" + "Calculation type": ["计算类型"], + "Difference": ["差异"], + "Ratio": ["比率"], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "如何显示时间偏移:作为单独的行显示;作为主时间序列与每次时间偏移之间的绝对差显示;作为百分比变化显示;或作为序列与时间偏移之间的比率显示。" ], - "Excel to Database configuration": ["Excel 到数据库配置"], - "Exclude selected values": ["排除选定的值"], - "Executed SQL": ["已执行的SQL"], - "Executed query": ["已执行查询"], - "Execution ID": ["任务ID"], - "Execution log": ["操作日志"], - "Exit fullscreen": ["退出全屏"], - "Expand all": ["全部展开"], - "Expand data panel": [""], - "Expand table preview": ["展开表格预览"], - "Expand tool bar": ["展开工具栏"], - "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ - "" + "Resample": ["重新采样"], + "Rule": ["规则"], + "1 minutely frequency": [""], + "1 calendar day frequency": [""], + "7 calendar day frequency": [""], + "1 month start frequency": [""], + "1 month end frequency": [""], + "Pandas resample rule": ["Pandas 重新采样的规则"], + "Fill method": ["填充方式"], + "Linear interpolation": [""], + "Pandas resample method": ["Pandas 重新采样的填充方法"], + "Annotations and Layers": ["注释与注释层"], + "Left": ["左边"], + "Top": ["顶部"], + "Chart Title": ["图表标题"], + "X Axis": ["X 轴"], + "X Axis Title": ["X轴标题"], + "X AXIS TITLE BOTTOM MARGIN": ["X 轴标题下边距"], + "Y Axis": ["Y 轴"], + "Y Axis Title": ["Y 轴标题"], + "Y Axis Title Margin": [""], + "Query": ["查询"], + "Predictive Analytics": ["预测分析"], + "Enable forecast": ["启用预测"], + "Enable forecasting": ["启用预测中"], + "Forecast periods": ["预测期"], + "How many periods into the future do we want to predict": [ + "想要预测未来的多少个时期" ], - "Experimental": ["实验"], - "Explore": ["探索"], - "Explore - %(table)s": ["查看 - %(table)s"], - "Explore the result set in the data exploration view": [ - "在数据探索视图中探索结果集" + "Confidence interval": ["信区间间隔"], + "Width of the confidence interval. Should be between 0 and 1": [ + "置信区间必须介于0和1(不包含1)之间" ], - "Export": ["导出"], - "Export dashboards?": ["导出看板?"], - "Export query": ["导出查询"], - "Export to YAML": ["导出到YAML格式"], - "Export to YAML?": ["导出到YAML?"], - "Export to original .CSV": [""], - "Export to pivoted .CSV": [""], - "Expose database in SQL Lab": ["在SQL工具箱中展示数据库"], - "Expose in SQL Lab": ["在 SQL 工具箱中公开"], - "Expose this DB in SQL Lab": ["在 SQL 工具箱中公开这个数据库"], - "Expression": ["表达式"], - "Extra": ["扩展"], - "Extra Controls": ["额外控件"], - "Extra Parameters": ["额外参数"], - "Extra data for JS": [""], - "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ - "指定表元数据的额外内容。目前支持的认证数据格式为:`{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" } }`." + "Yearly seasonality": [""], + "Yes": ["是"], + "No": ["否"], + "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "一个整数值将指定“季节性的傅立叶顺序。" ], - "Extra field cannot be decoded by JSON. %(msg)s": [ - "JSON无法解码额外字段。%(msg)s" + "Weekly seasonality": [""], + "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "一个整数值将指定季节性的傅立叶顺序。" ], - "Extra parameters for use in jinja templated queries": [ - "用于jinja模板化查询的额外参数" + "Daily seasonality": [""], + "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ + "一个整数值将指定季节性的傅立叶顺序。" ], - "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ - "用于jinja模板化查询的额外参数" + "Time related form attributes": ["时间相关的表单属性"], + "Datasource & Chart Type": ["数据源 & 图表类型"], + "Chart ID": ["图表 ID"], + "The id of the active chart": ["活动图表的ID"], + "Cache Timeout (seconds)": ["缓存超时(秒)"], + "The number of seconds before expiring the cache": [ + "终止缓存前的时间(秒)" ], + "URL Parameters": ["URL参数"], "Extra url parameters for use in Jinja templated queries": [ "用于jinja模板化查询的额外url" ], - "FEB": ["二月"], - "FRI": ["星期五"], - "Factor": ["因素"], - "Factor to multiply the metric by": [""], - "Fail": ["失败"], - "Failed": ["失败"], - "Failed at retrieving results": ["检索结果失败"], - "Failed at stopping query. %s": ["停止查询失败。 %s"], - "Failed to create report": [""], - "Failed to execute %(query)s": [""], - "Failed to generate chart edit URL": [""], - "Failed to load chart data": [""], - "Failed to load chart data.": [""], - "Failed to load dimensions for drill by": [""], - "Failed to start remote query on a worker.": ["无法启动远程查询"], - "Failed to update report": [""], - "Failed to verify select options: %s": ["验证选择选项失败:%s"], - "Favorite": ["收藏"], - "Favorites": ["收藏"], - "February": ["二月"], - "Fetch Values Predicate": ["取值谓词"], - "Fetch data preview": ["获取数据预览"], - "Fetched %s": ["刷新于 %s"], - "Field cannot be decoded by JSON. %(json_error)s": [ - "字段不能由JSON解码。%{json_error}s" + "Extra Parameters": ["额外参数"], + "Extra parameters that any plugins can choose to set for use in Jinja templated queries": [ + "用于jinja模板化查询的额外参数" ], - "Field cannot be decoded by JSON. %(msg)s": [ - "字段不能由JSON解码。%(msg)s" + "Color Scheme": ["配色方案"], + "Contribution Mode": ["贡献模式"], + "Row": ["行"], + "Series": ["序列"], + "Y-Axis Sort By": [""], + "X-Axis Sort By": [""], + "Decides which column to sort the base axis by.": [""], + "Treat values as categorical.": [""], + "Decides which measure to sort the base axis by.": [""], + "Dimensions contain qualitative values such as names, dates, or geographical data. Use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.": [ + "" ], - "Field is required": ["字段是必需的"], - "File": ["文件"], - "Fill all required fields to enable \"Default Value\"": [ - "填写所有必填字段以启用默认值" + "Entity": ["实体"], + "This defines the element to be plotted on the chart": [ + "这定义了要在图表上绘制的元素" ], - "Fill method": ["填充方式"], - "Filter": ["过滤器"], - "Filter List": ["过滤"], - "Filter Type": ["过滤类型"], - "Filter configuration": ["过滤配置"], - "Filter configuration for the filter box": ["过滤条件的过滤配置"], - "Filter has default value": ["过滤器默认值"], - "Filter metadata changed in dashboard. It will not be applied.": [ - "仪表盘的过滤器已被更改,将不会被应用" + "Filters": ["过滤"], + "Select one or many metrics to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ + "" ], - "Filter name": ["过滤值"], - "Filter only displays values relevant to selections made in other filters.": [ + "Select a metric to display. You can use an aggregation function on a column or write custom SQL to create a metric.": [ "" ], - "Filter results": ["过滤结果"], - "Filter set already exists": ["过滤器已存在"], - "Filter set with this name already exists": ["过滤器已存在"], - "Filter sets (%(filterSetCount)d)": ["过滤器个数(%(filterSetCount)d)"], - "Filter type": ["过滤类型"], - "Filter value (case sensitive)": ["过滤值(区分大小写)"], - "Filter value list cannot be empty": ["不能为空"], - "Filter your charts": ["过滤您的图表"], - "Filterable": ["可过滤"], - "Filters": ["过滤"], - "Filters (%d)": ["过滤 (%d)"], - "Filters by columns": ["按列过滤"], - "Filters by metrics": ["按指标过滤"], - "Filters configuration": ["过滤配置"], - "Filters out of scope (%d)": ["筛选器超出范围(%d)"], - "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ - "具有相同组key的过滤将在组中一起进行\"OR\"运算,而不同的过滤组将一起进行\"AND\"运算。未定义的组的key被视为唯一组,即不分组在一起。例如,如果表有三个过滤,其中两个用于财务部门和市场营销 (group key = 'department'),其中一个表示欧洲地区(group key = 'region'),filter子句将应用过滤 (department = 'Finance' OR department = 'Marketing') 和 (region = 'Europe')" + "Right Axis Metric": ["右轴指标"], + "Sort by": ["排序 "], + "Bubble Size": ["气泡大小"], + "Metric used to calculate bubble size": ["用来计算气泡大小的公制"], + "The dataset column/metric that returns the values on your chart's x-axis.": [ + "" ], - "Finish": ["完成"], - "First": [""], - "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ - "将趋势线固定为指定的完整时间范围,以防过滤的结果不包括开始日期或结束日期" + "The dataset column/metric that returns the values on your chart's y-axis.": [ + "" ], - "Fix to selected Time Range": ["固定到选定的时间范围"], - "Fixed": ["固定值"], + "Color Metric": ["颜色指标"], + "A metric to use for color": ["用于颜色的指标"], + "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ + "可视化的时间栏。注意,您可以定义返回表中的DATETIMLE列的任意表达式。还请注意下面的筛选器应用于该列或表达式。" + ], + "Dimension to use on y-axis.": [""], + "Dimension to use on x-axis.": [""], + "The type of visualization to display": ["要显示的可视化类型"], "Fixed Color": ["固定颜色"], - "Fixed color": ["固定颜色"], - "Flow": ["流图"], - "Font size": ["字体大小"], - "Font size for axis labels, detail value and other text elements": [ - "轴标签、详图值和其他文本元素的字体大小" + "Use this to define a static color for all circles": [ + "使用此定义所有圆圈的静态颜色" ], - "Font size for the biggest value in the list": ["列表中最大值的字体大小"], - "Font size for the smallest value in the list": [ - "列表中最小值的字体大小" + "Linear Color Scheme": ["线性颜色方案"], + "30 seconds": ["30秒钟"], + "1 minute": ["1分钟"], + "5 minutes": ["5分钟"], + "30 minutes": ["30分钟"], + "1 hour": ["1小时"], + "week": ["周"], + "month": ["月"], + "year": ["年"], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ + "可视化的时间粒度。请注意,您可以输入和使用简单的日期表达方式,如 `10 seconds`, `1 day` or `56 weeks`" ], - "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ - "对于Presto和Postgres,显示计算成本按钮(查询后)" + "Select a time grain for the visualization. The grain is the time interval represented by a single point on the chart.": [ + "" ], - "For further instructions, consult the": [""], - "For more information about objects are in context in the scope of this function, refer to the": [ + "This control filters the whole chart based on the selected time range. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ "" ], - "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ - "对于常规过滤,这些是此过滤将应用于的角色。对于基本过滤,这些是过滤不适用的角色,例如Admin代表admin应该查看所有数据。" - ], - "Force": ["强制"], - "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ - "在SQL工具箱中点击CTAS or CVAS强制创建所有数据表或视图" - ], - "Force refresh": ["强制刷新"], - "Force refresh schema list": ["强制刷新数据"], - "Force refresh table list": ["强制刷新数据"], - "Forecast periods": ["预测期"], - "Foreign key": [""], - "Form data not found in cache, reverting to chart metadata.": [""], - "Form data not found in cache, reverting to dataset metadata.": [""], - "Formattable": ["格式表"], - "Formatted CSV attached in email": ["在邮件中附件CSV"], - "Found invalid orderby options": ["发现无效的orderby选项"], - "Fraction digits": ["分数位"], - "Frequency": ["频率"], - "Friction": ["摩擦"], - "Friction between nodes": ["节点之间的摩擦"], - "Friday": ["星期五"], - "From date cannot be larger than to date": ["起始时间不可以大于当前时间"], - "Funnel Chart": ["漏斗图"], - "Further customize how to display each column": [ - "进一步自定义如何显示每列" - ], - "Further customize how to display each metric": [ - "进一步定制如何显示每个指标" - ], - "Gauge Chart": ["仪表图"], - "General": ["一般"], - "Generating link, please wait..": [""], - "Geo": ["地理位置"], - "Geohash": ["Geo哈希"], - "Get the last date by the date unit.": ["按日期单位获取最后的日期。"], - "Get the specify date for the holiday": ["获取指定节假日的日期"], - "Go to the edit mode to configure the dashboard and add charts": [""], - "Gold": [""], - "Google Sheet Name and URL": ["Google Sheet名称和URL"], - "Grace period": ["宽限期"], - "Graph Chart": ["圆点图"], - "Graph layout": ["图表布局"], - "Gravity": ["重力"], - "Group By": ["分组"], - "Group By filter plugin": ["分组过滤插件"], - "Group By, Metrics or Percentage Metrics must have a value": [ - "分组、指标或百分比指标必须具有值" - ], - "Group by": ["分组"], - "Groupable": ["可分组"], - "Handlebars": ["句柄图"], - "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ - "应用于颜色编码的硬值边界。只有当对整个热图应用标准化时才是相关的和应用的。" + "Row limit": ["行限制"], + "Limits the number of the rows that are computed in the query that is the source of the data used for this chart.": [ + "" ], - "Header": ["标题行"], - "Header Row": ["标题行"], - "Heatmap": ["热力图"], - "Heatmap Options": ["热图选项"], - "Height": ["高度"], - "Hide layer": ["隐藏Layer"], - "Hide tool bar": ["隐藏工具栏"], - "Hierarchy": ["层次"], - "Histogram": ["直方图"], - "Home": ["主页"], - "Horizon Chart": ["地平线图"], - "Horizon Charts": ["水平图"], - "Horizontal alignment": ["水平对齐"], - "Host": ["主机"], - "Hostname or IP address": ["主机名或IP"], - "Hour": ["小时"], - "Hours %s": ["%s小时"], - "Hours offset": ["小时偏移"], - "How do you want to enter service account credentials?": [ - "您希望如何输入服务帐户凭据?" + "Sort Descending": ["降序"], + "If enabled, this control sorts the results/values descending, otherwise it sorts the results ascending.": [ + "" ], - "How many buckets should the data be grouped in.": [""], - "How many periods into the future do we want to predict": [ - "想要预测未来的多少个时期" + "Series limit": ["序列限制"], + "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ + "限制显示的系列数。应用联接的子查询(或不支持子查询的额外阶段)来限制获取和呈现的序列数量。此功能在按高基数列分组时很有用,但会增加查询的复杂性和成本。" ], - "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ - "如何显示时间偏移:作为单独的行显示;作为主时间序列与每次时间偏移之间的绝对差显示;作为百分比变化显示;或作为序列与时间偏移之间的比率显示。" + "Y Axis Format": ["Y 轴格式化"], + "Time format": ["时间格式"], + "The color scheme for rendering chart": ["绘制图表的配色方案"], + "D3 format syntax: https://github.com/d3/d3-format": [ + "D3插件格式语法: https://github.com/d3/d3-time-format" ], - "Huge": ["巨大"], - "ISO 3166-2 Codes": ["ISO 3166-2 代码"], - "ISO 8601": ["ISO 8601"], - "Id": ["Id"], - "Id of root node of the tree.": ["树的根节点的ID。"], - "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。如果启用 Hive 和 hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据 hive.server2.proxy.user 的属性伪装当前登录用户。" + "Only applies when \"Label Type\" is set to show values.": [""], + "Only applies when \"Label Type\" is not set to a percentage.": [""], + "Adaptive formatting": ["自动匹配格式化"], + "Original value": ["原始值"], + "Duration in ms (66000 => 1m 6s)": ["持续时间(毫秒)(66000 => 1m 6s)"], + "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ + "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" ], - "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ - "如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。
如果启用 Hive 和hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据hive.server2.proxy.user的属性伪装当前登录用户。" + "D3 time format syntax: https://github.com/d3/d3-time-format": [ + "D3时间插件格式语法: https://github.com/d3/d3-time-format" ], - "If a metric is specified, sorting will be done based on the metric value": [ - "如果指定了度量,则将根据该度量值进行排序" + "Stack Trace:": [""], + "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ + "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "" + "No Results": ["无结果"], + "Found invalid orderby options": ["发现无效的orderby选项"], + "is expected to be an integer": ["应该为整数"], + "is expected to be a number": ["应该为数字"], + "Value cannot exceed %s": [""], + "cannot be empty": ["不能为空"], + "Domain": ["主域"], + "hour": ["小时"], + "day": ["天"], + "The time unit used for the grouping of blocks": ["用于块分组的时间单位"], + "Subdomain": ["子域"], + "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ + "每个块的时间单位。应该是主域域粒度更小的单位。应该大于或等于时间粒度" ], - "If selected, please set the schemas allowed for csv upload in Extra.": [ - "如果选择,请额外设置csv上传允许的模式。" + "Chart Options": ["图表选项"], + "Cell Size": ["单元尺寸"], + "The size of the square cell, in pixels": [ + "平方单元的大小,以像素为单位" ], - "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ - "如果表已存在,执行其中一个:舍弃(什么都不做),替换(删除表并重建),或者追加(插入数据)" + "Cell Padding": ["单元填充"], + "The distance between cells, in pixels": [ + "单元格之间的距离,以像素为单位" ], - "Ignore null locations": [""], - "Ignore time": ["忽略时间"], - "Image (PNG) embedded in email": ["使用邮箱发送图片(PNG)"], - "Image download failed, please refresh and try again.": [ - "图片发送失败,请刷新或重试" + "Cell Radius": ["单元格半径"], + "The pixel radius": ["像素半径"], + "Color Steps": ["色彩 Steps"], + "The number color \"steps\"": ["色彩 \"Steps\" 数字"], + "Time Format": ["时间格式"], + "Legend": ["图示"], + "Whether to display the legend (toggles)": ["是否显示图示(切换)"], + "Show Values": ["显示值"], + "Whether to display the numerical values within the cells": [ + "是否在单元格内显示数值" ], - "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ - "模拟登录用户 (Presto, Trino, Drill & Hive)" + "Show Metric Names": ["显示指标名"], + "Whether to display the metric name as a title": [ + "是否将指标名显示为标题" ], - "Impersonate the logged on user": ["模拟登录用户"], - "Import": ["导入"], - "Import %s": ["导入 %s"], - "Import Dashboard(s)": ["导入看板"], - "Import Dashboards": ["导入看板"], - "Import a table definition": ["导入一个已定义的表"], - "Import chart failed for an unknown reason": ["导入图表失败,原因未知"], - "Import charts": ["导入图表"], - "Import dashboard failed for an unknown reason": [ - "因为未知原因导入看板失败" + "Number Format": ["数字格式"], + "Correlation": ["相关性"], + "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ + "使用色标和日历视图可视化指标在一段时间内的变化情况。灰色值用于指示缺少的值,线性配色方案用于编码每天值的大小。" ], - "Import dashboards": ["导入看板"], - "Import database failed for an unknown reason": [ - "导入数据库失败,原因未知" + "Business": ["商业"], + "Comparison": ["比较"], + "Intensity": ["强度"], + "Pattern": ["规则"], + "Report": ["报表"], + "Trend": ["趋势"], + "less than {min} {name}": [""], + "between {down} and {up} {name}": [""], + "more than {max} {name}": [""], + "Sort by metric": ["排序指标"], + "Whether to sort results by the selected metric in descending order.": [ + "是否按所选指标按降序对结果进行排序。" ], - "Import database from file": ["从文件中导入数据库"], - "Import dataset failed for an unknown reason": [ - "因为未知的原因导入数据集失败" + "Number format": ["数字格式化"], + "Choose a number format": ["选择一种数字格式"], + "Source": ["来源"], + "Choose a source": ["选择一个源"], + "Target": ["目标"], + "Choose a target": ["选择一个目标"], + "Flow": ["流图"], + "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ + "使用弦的厚度显示类别之间的流或链接。每一侧的值和相应厚度可能不同。" ], - "Import datasets": ["导入数据集"], - "Import queries": ["导入查询"], - "Import saved query failed for an unknown reason.": [ - "由于未知原因,导入保存的查询失败。" + "Relationships between community channels": ["社区渠道之间的关系"], + "Chord Diagram": ["弦图"], + "Aesthetic": ["炫酷"], + "Circular": ["圆"], + "Legacy": ["遗产"], + "Proportional": ["比例"], + "Relational": ["执行时间"], + "Country": ["国家"], + "Which country to plot the map for?": ["为哪个国家绘制地图?"], + "ISO 3166-2 Codes": ["ISO 3166-2 代码"], + "Column containing ISO 3166-2 codes of region/province/department in your table.": [ + "表中包含地区/省/省的ISO 3166-2代码的列" ], + "Metric to display bottom title": ["显示底部标题的度量值"], + "Map": ["地图"], + "2D": ["2D"], + "Geo": ["地理位置"], + "Range": ["范围"], + "Stacked": ["堆叠"], + "Sorry, there appears to be no data": ["抱歉,似乎没有数据"], + "Event definition": ["事件定义"], + "Event Names": ["事件名称"], + "Columns to display": ["要显示的字段"], + "Order by entity id": ["按实体ID排序"], "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ "很重要!如果表尚未按实体ID排序,则选择此项,否则无法保证返回每个实体的所有事件。" ], - "Include Series": ["包含系列"], - "Include a description that will be sent with your report": [""], - "Include series name as an axis": ["包括系列名称作为轴"], - "Include time": ["包含时间"], - "Index Column": ["索引字段"], - "Info": ["信息"], - "Inner Radius": ["内半径"], - "Inner radius of donut hole": ["圆环圈内部空洞的内径"], - "Input field supports custom rotation. e.g. 30 for 30°": [ - "输入字段支持自定义。例如,30代表30°" + "Minimum leaf node event count": ["节点最小事件数"], + "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ + "表示少于此数量的事件的叶节点最初将隐藏在可视化中" ], - "Instant filtering": ["即时过滤"], - "Intensity": ["强度"], - "Intensity Radius is the radius at which the weight is distributed": [""], - "Intensity is the value multiplied by the weight to obtain the final weight": [ - "" + "Additional metadata": ["附加元数据"], + "Metadata": ["元数据"], + "Select any columns for metadata inspection": [ + "选择任意列进行元数据巡检" ], - "Interval End column": ["间隔结束列"], - "Interval bounds": ["区间间隔"], - "Interval colors": ["间隔颜色"], - "Interval start column": ["间隔开始列"], - "Intervals": ["间隔"], - "Invalid JSON": ["无效的JSON"], - "Invalid certificate": ["无效认证"], - "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ - "连接字符串无效,有效字符串的格式通常如下:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" + "Entity ID": ["实体ID"], + "e.g., a \"user id\" column": ["时间序列的列"], + "Max Events": ["最大事件数"], + "The maximum number of events to return, equivalent to the number of rows": [ + "返回的最大事件数,相当于行数" ], - "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

": [ - "连接字符串无效,有效字符串格式通常如下:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'

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

" + "Compares the lengths of time different activities take in a shared timeline view.": [ + "比较不同活动在共享时间线视图中所花费的时间长度。" ], - "Invalid cron expression": ["无效cron表达式"], - "Invalid cumulative operator: %(operator)s": [ - "累积运算符无效:%(operator)s" + "Event Flow": ["事件流"], + "Progressive": ["进度"], + "Axis ascending": ["轴线升序"], + "Axis descending": ["轴线降序"], + "Metric ascending": ["指标升序"], + "Metric descending": ["指标降序"], + "Heatmap Options": ["热图选项"], + "XScale Interval": ["X轴比例尺间隔"], + "Number of steps to take between ticks when displaying the X scale": [ + "显示 X 刻度时,在刻度之间表示的步骤数" ], - "Invalid date/timestamp format": ["无效的日期/时间戳格式"], - "Invalid filter configuration, please select a column": [ - "过滤器配置无效,请选择一个列" + "YScale Interval": ["Y轴比例尺间隔"], + "Number of steps to take between ticks when displaying the Y scale": [ + "显示 Y 刻度时,在刻度之间表示的步骤数" ], - "Invalid filter operation type: %(op)s": ["选择框的操作类型无效: %(op)s"], - "Invalid geodetic string": ["无效的 geodetic 字符串"], - "Invalid geohash string": ["无效的geohash字符串"], - "Invalid input": [""], - "Invalid lat/long configuration.": ["错误的经纬度配置。"], - "Invalid longitude/latitude": ["无效的经度/纬度"], - "Invalid numpy function: %(operator)s": ["无效的numpy函数:%(operator)s"], - "Invalid options for %(rolling_type)s: %(options)s": [ - "%(rolling_type)s 的选项无效:%(options)s" + "Rendering": ["渲染"], + "pixelated (Sharp)": [""], + "auto (Smooth)": [""], + "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ + "图像渲染画布对象的 CSS 属性,它定义了浏览器如何放大图像" ], - "Invalid permalink key": [""], - "Invalid reference to column: \"%(column)s\"": [""], - "Invalid result type: %(result_type)s": [ - "无效的结果类型:%(result_type)s" + "Normalize Across": ["标准化通过"], + "x": [""], + "y": [""], + "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range: ": [ + "" ], - "Invalid rolling_type: %(type)s": ["无效的滚动类型:%(type)s"], - "Invalid spatial point encountered: %s": ["遇到无效的空间点:%s"], - "Invalid tab ids: %s(tab_ids)": [""], - "Inverse selection": ["反选"], - "Is certified": ["已认证"], - "Is dimension": ["维度"], - "Is favorite": ["收藏"], - "Is filterable": ["可被过滤"], - "Is tagged": [""], - "Is temporal": ["时间条件"], - "Is true": [""], - "Issue 1000 - The dataset is too large to query.": [ - "Issue 1000 - 数据集太大,无法进行查询。" + "x: values are normalized within each column": [""], + "y: values are normalized within each row": [""], + "heatmap: values are normalized across the entire heatmap": [ + "热力图:其中所有数值都经过了归一化" ], - "Issue 1001 - The database is under an unusual load.": [ - "Issue 1001 - 数据库负载异常。" + "Left Margin": ["左边距"], + "Left margin, in pixels, allowing for more room for axis labels": [ + "左边距,以像素为单位,为轴标签留出更多空间" ], - "JAN": ["一月"], - "JSON": ["JSON"], - "JSON Metadata": ["JSON 元数据"], - "JSON metadata": ["JSON 元数据"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "包含附加连接配置的JSON字符串。它用于为配置单元、Presto和BigQuery等系统提供连接信息,这些系统不符合SQLAlChemy通常使用的用户名:密码语法。" + "Bottom Margin": ["底部边距"], + "Bottom margin, in pixels, allowing for more room for axis labels": [ + "底部边距,以像素为单位,为轴标签留出更多空间" ], - "JUL": ["七月"], - "JUN": ["六月"], - "January": ["一月"], - "JavaScript data interceptor": [""], - "JavaScript onClick href": [""], - "JavaScript tooltip generator": [""], - "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ - "Json应读取的列名列表。如果不是“无”,则仅从文件中读取这些列" + "Value bounds": ["值边界"], + "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ + "应用于颜色编码的硬值边界。只有当对整个热图应用标准化时才是相关的和应用的。" ], - "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ - "应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" + "Sort X Axis": ["排序X轴"], + "Sort Y Axis": ["排序Y轴"], + "Show percentage": ["显示百分比"], + "Whether to include the percentage in the tooltip": [ + "是否在工具提示中包含百分比" ], - "July": ["七月"], - "June": ["六月"], - "KPI": ["指标"], - "Keep control settings?": [""], - "Keep editing": ["继续编辑"], - "Keys for table": ["表的键"], - "Label": ["标签"], - "Label Line": ["标签线"], - "Label Type": ["标签类型"], - "Label for your query": ["为您的查询设置标签"], - "Label position": ["标签位置"], - "Label threshold": ["标签阈值"], - "Labelling": ["标签"], - "Labels": ["标签"], - "Labels for the marker lines": ["标记线的标签"], - "Labels for the markers": ["标记的标签"], - "Labels for the ranges": ["范围的标签"], - "Large": ["大"], - "Last": ["上一"], - "Last Changed": ["更新时间"], - "Last Modified": ["最后修改"], - "Last Updated %s": ["上次更新 %s"], - "Last available value seen on %s": [" %s 最后一个可用值"], - "Last modified": ["最后修改"], - "Last modified by %s": ["上次修改人 %s"], - "Last run": ["上次执行"], + "Normalized": ["标准化"], + "Whether to apply a normal distribution based on rank on the color scale": [ + "是否应用基于色标等级的正态分布" + ], + "Value Format": ["数值格式"], + "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ + "可视化各组之间的相关指标。热图擅长显示两组之间的相关性或强度。颜色用于强调各组之间的联系强度。" + ], + "Sizes of vehicles": ["工具尺寸"], + "Employment and education": ["就业和教育"], + "Density": ["密度"], + "Predictive": ["预测"], + "Single Metric": ["按指标过滤"], + "count": ["列"], + "cumulative": ["激活"], + "percentile (exclusive)": ["百分位数(独占)"], + "Select the numeric columns to draw the histogram": [ + "选择直方图的容器数" + ], + "No of Bins": ["直方图容器数"], + "Select the number of bins for the histogram": ["选择直方图的容器数"], + "X Axis Label": ["X 轴标签"], + "Y Axis Label": ["Y 轴标签"], + "Whether to normalize the histogram": ["是否规范化直方图"], + "Cumulative": ["累计"], + "Whether to make the histogram cumulative": ["是否规范化直方图"], + "Distribution": ["分布"], + "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ + "获取数据点,并将其分组,以查看信息最密集的区域" + ], + "Population age data": ["人口年龄数据"], + "Contribution": ["贡献"], + "Compute the contribution to the total": ["计算对总数的贡献值"], + "Series Height": ["序列高度"], + "Pixel height of each series": ["每个序列的像素高度"], + "Value Domain": ["值域"], + "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ + "series:独立处理每个序列;overall:所有序列使用相同的比例;change:显示与每个序列中第一个数据点相比的更改" + ], + "Compares how a metric changes over time between different groups. Each group is mapped to a row and change over time is visualized bar lengths and color.": [ + "比较指标在不同组之间随时间的变化情况。每一组被映射到一行,并且随着时间的变化被可视化地显示条的长度和颜色。" + ], + "Horizon Chart": ["地平线图"], + "Dark Cyan": [""], + "Gold": [""], + "Longitude": ["经度"], + "Column containing longitude data": ["包含经度数据的列"], "Latitude": ["纬度"], - "Latitude of default viewport": ["默认视口纬度"], - "Layer configuration": ["配置Layer"], - "Layout": ["布局"], - "Layout elements": [""], - "Layout type of graph": ["图形的布局类型"], - "Layout type of tree": ["树的布局类型"], - "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization": [ - "表示少于此数量的事件的叶节点最初将隐藏在可视化中" + "Column containing latitude data": ["包含纬度数据的列"], + "Clustering Radius": ["簇半径"], + "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ + "算法用来定义一个簇的半径(以像素为单位)。选择0关闭聚,但要注意大量的点(>1000)会导致处理时间变长。" ], - "Least recently modified": ["最远修改"], - "Left": ["左边"], - "Left Axis Format": ["左轴格式化"], - "Left Axis chart(s)": ["左轴图表"], - "Left Margin": ["左边距"], - "Left margin, in pixels, allowing for more room for axis labels": [ - "左边距,以像素为单位,为轴标签留出更多空间" + "Points": ["点配置"], + "Point Radius": ["点半径"], + "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ + "单个点的半径(不在簇中的点)。一个数值列或“AUTO”,它根据最大的聚类来缩放点。" ], - "Left to Right": ["从左到右"], - "Left value": ["左值"], - "Legacy": ["遗产"], - "Legend": ["图示"], - "Legend type": ["图示类型"], - "Less than (<)": [""], - "Lift percent precision": ["提升百分比精度"], - "Light mode": ["光模式"], - "Like": [""], - "Limit reached": ["达到限制"], - "Limit selector values": ["限制选择器值"], - "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ - "限制行数可能导致不完整的数据和误导性的图表。可以考虑过滤或分组源/目标名称。" + "Point Radius Unit": ["点半径单位"], + "Pixels": [""], + "The unit of measure for the specified point radius": [ + "指定点半径的度量单位" ], - "Limits the number of rows that get displayed.": ["限制显示的行数。"], - "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ - "限制显示的系列数。应用联接的子查询(或不支持子查询的额外阶段)来限制获取和呈现的序列数量。此功能在按高基数列分组时很有用,但会增加查询的复杂性和成本。" + "Labelling": ["标签"], + "label": ["标签"], + "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ + "如果分组被使用 `count` 表示 COUNT(*)。数值列将与聚合器聚合。非数值列将用于维度列。留空以获得每个簇中的点计数。" ], - "Line": ["行"], - "Line Chart": ["多线图"], - "Line Chart (legacy)": [""], - "Line Style": ["线条样式"], - "Line interpolation as defined by d3.js": ["由 d3.js 定义的线插值"], - "Line width": ["线宽"], - "Linear Color Scheme": ["线性颜色方案"], - "Linear color scheme": ["线性颜色方案"], - "Linear interpolation": [""], - "Link Copied!": ["链接成功!"], - "List Saved Query": ["保存的查询列表"], - "List of extra columns made available in JavaScript functions": [""], - "List of n+1 values for bucketing metric into n buckets.": [""], - "List of values to mark with lines": ["要用行标记的值列表"], - "List of values to mark with triangles": ["要用三角形标记的值列表"], - "Live CSS editor": ["即时 CSS 编辑器"], + "Cluster label aggregator": ["集群标签聚合器"], + "sum": [""], + "std": [""], + "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ + "聚合函数应用于每个群集中的点列表以产生群集标签。" + ], + "Visual Tweaks": ["视觉调整"], "Live render": ["实时渲染"], - "Load a CSS template": ["加载一个 CSS 模板"], - "Loaded data cached": ["数据缓存已加载"], - "Loaded from cache": ["从缓存中加载"], - "Loading...": ["加载中..."], - "Log Scale": ["日志规模"], - "Log retention": ["日志保留"], - "Logarithmic scale on primary y-axis": ["对数刻度在主y轴上"], - "Logarithmic scale on secondary y-axis": ["二次y轴上的对数刻度"], - "Logarithmic y-axis": ["对数轴"], - "Login": ["登录"], - "Logout": ["退出"], - "Logs": ["日志"], - "Long dashed": [""], - "Longitude": ["经度"], - "Longitude & Latitude columns": ["经纬度字段"], - "Longitude of default viewport": ["默认视口经度"], - "MAR": ["三月"], - "MAY": ["五月"], - "MON": ["星期一"], - "Main Datetime Column": ["主日期列"], - "Malformed request. slice_id or table_name and db_name arguments are expected": [ - "格式错误的请求。需要使用 slice_id 或 table_name 和 db_name 参数" + "Points and clusters will update as the viewport is being changed": [ + "点和簇将随着视图改变而更新。" ], - "Manage": ["管理"], - "Manage your databases": ["管理你的数据库"], - "Mandatory": ["必填参数"], - "Map": ["地图"], "Map Style": ["地图样式"], - "MapBox": ["MapBox地图"], - "Mapbox": ["箱图"], - "March": ["三月"], - "Margin": ["边距(margin)"], - "Mark a column as temporal in \"Edit datasource\" modal": [""], - "Marker": ["标记"], - "Marker Size": ["标记大小"], - "Marker labels": ["标记标签"], - "Marker line labels": ["标记线标签"], - "Marker lines": ["标记线"], - "Marker size": ["标记大小"], - "Markers": ["标记"], - "Markup type": ["Markup 类型"], - "Max": ["最大值"], - "Max Bubble Size": ["最大气泡的尺寸"], - "Max Events": ["最大事件数"], - "Maximum": ["最大"], - "Maximum Font Size": ["最大字体大小"], - "Maximum Radius": [""], - "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ - "" + "Satellite Streets": [""], + "Outdoors": [""], + "Base layer map style. See Mapbox documentation: %s": [""], + "Opacity": ["不透明度"], + "Opacity of all clusters, points, and labels. Between 0 and 1.": [ + "所有簇、点和标签的不透明度。在0到1之间。" ], - "Maximum value on the gauge axis": ["量规轴上的最大值"], - "May": ["五月"], - "Mean of values over specified period": ["特定时期内的平均值"], - "Median": [""], - "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ - "边缘宽度中间值,最厚的边缘将比最薄的边缘厚4倍" + "RGB Color": ["RGB颜色"], + "The color for points and clusters in RGB": ["点和簇的颜色(RGB)"], + "Viewport": ["视口"], + "Default longitude": ["默认经度"], + "Longitude of default viewport": ["默认视口经度"], + "Default latitude": ["默认纬度"], + "Latitude of default viewport": ["默认视口纬度"], + "Zoom": ["缩放"], + "Zoom level of the map": ["地图缩放等级"], + "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ + "使用一个或多个控件来分组。一旦分组,则纬度和经度列必须存在。" ], - "Median node size, the largest node will be 4 times larger than the smallest": [ - "节点大小中位数,最大的节点将比最小的节点大4倍" + "Light mode": ["光模式"], + "Dark mode": ["黑暗模式"], + "MapBox": ["MapBox地图"], + "Scatter": ["散点"], + "Transformable": ["转换"], + "Significance Level": ["显著性"], + "Threshold alpha level for determining significance": [ + "确定重要性的阈值α水平" ], - "Medium": ["中"], - "Menu actions trigger": [""], - "Message content": ["消息内容"], - "Metadata": ["元数据"], - "Metadata Parameters": ["元数据参数"], - "Metadata has been synced": ["元数据已同步"], - "Method": ["方法"], - "Metric": ["指标"], - "Metric '%(metric)s' does not exist": ["指标 '%(metric)s' 不存在"], - "Metric ascending": ["指标升序"], - "Metric assigned to the [X] axis": ["分配给 [X] 轴的指标"], - "Metric assigned to the [Y] axis": ["分配给 [Y] 轴的指标"], + "p-value precision": ["假定值精度"], + "Number of decimal places with which to display p-values": [ + "用于显示p值的小数位数" + ], + "Lift percent precision": ["提升百分比精度"], + "Number of decimal places with which to display lift values": [ + "用于显示升力值的小数位数" + ], + "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ + "可视化检验的表格,用于了解各组之间的统计差异" + ], + "Paired t-test Table": ["配对T检测表"], + "Statistical": ["统计"], + "Tabular": ["表格"], + "Options": ["设置"], + "Data Table": ["数据表"], + "Whether to display the interactive data table": [ + "是否将指标名显示为标题" + ], + "Include Series": ["包含系列"], + "Include series name as an axis": ["包括系列名称作为轴"], + "Ranking": ["排名"], + "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ + "垂直地绘制数据中每一行的单个指标,并将它们链接成一行。此图表用于比较数据中所有样本或行中的多个指标。" + ], + "Coordinates": ["坐标"], + "Directional": ["方向"], + "Time Series Options": ["时间序列的列"], + "Not Time Series": ["美誉时间序列"], + "Ignore time": ["忽略时间"], + "Time Series": ["时间序列"], + "Standard time series": ["时间序列"], + "Aggregate Mean": ["合计平均值"], + "Mean of values over specified period": ["特定时期内的平均值"], + "Aggregate Sum": ["合计"], + "Sum of values over specified period": ["指定期间内的值总和"], "Metric change in value from `since` to `until`": [ "从 `since` 到 `until` 的度量值变化" ], - "Metric descending": ["指标降序"], + "Percent Change": ["百分比变化"], + "Metric percent change in value from `since` to `until`": [ + "从 `since` 到 `until` 的价值变化百分比" + ], + "Factor": ["因素"], "Metric factor change from `since` to `until`": [ "度量因子从 `since` 到 `until` 的变化" ], - "Metric for node values": ["节点值的度量"], - "Metric name [%s] is duplicated": ["指标名称 [%s] 重复"], - "Metric percent change in value from `since` to `until`": [ - "从 `since` 到 `until` 的价值变化百分比" + "Advanced Analytics": ["高级分析"], + "Use the Advanced Analytics options below": ["使用下面的高级分析选项"], + "Settings for time series": ["时间序列设置"], + "Date Time Format": ["时间格式"], + "Partition Limit": ["分区限制"], + "The maximum number of subdivisions of each group; lower values are pruned first": [ + "每组的最大细分数;较低的值首先被删除" ], - "Metric that defines the size of the bubble": ["定义指标的气泡大小"], - "Metric to display bottom title": ["显示底部标题的度量值"], - "Metric to sort the results by": ["按照指标的结果进行排序"], - "Metric used as a weight for the grid's coloring": [""], - "Metric used to calculate bubble size": ["用来计算气泡大小的公制"], - "Metric used to control height": [""], - "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ - "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" + "Partition Threshold": ["分区阈值"], + "Partitions whose height to parent height proportions are below this value are pruned": [ + "高度与父高度的比例低于此值的分区将被修剪" ], - "Metrics": ["指标"], - "Metrics for which percentage of total are to be displayed. Calculated from only data within the row limit.": [ - "要显示其占总数百分比的指标。只计算行限制内的只读存储器数据。" + "Log Scale": ["日志规模"], + "Use a log scale": ["使用Y轴的对数刻度"], + "Equal Date Sizes": ["相同的日期大小"], + "Check to force date partitions to have the same height": [ + "选中以强制日期分区具有相同的高度" ], - "Midnight": ["凌晨(当天)"], - "Min": ["最小值"], - "Min Periods": ["最小周期"], - "Min Width": ["最小宽度"], - "Min periods": ["最小周期"], - "Min/max (no outliers)": [""], - "Mine": ["我的编辑"], - "Minimum": ["最小"], - "Minimum Font Size": ["最小字体大小"], - "Minimum leaf node event count": ["节点最小事件数"], - "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ - "" + "Rich Tooltip": ["详细提示"], + "The rich tooltip shows a list of all series for that point in time": [ + "详细提示显示了该时间点的所有序列的列表。" ], - "Minimum threshold in percentage points for showing labels.": [ - "标签显示百分比最小阈值" + "Rolling Window": ["滚动窗口"], + "Rolling Function": ["滚动函数"], + "cumsum": [""], + "Min Periods": ["最小周期"], + "Time Comparison": ["时间比对"], + "Time Shift": ["时间偏移"], + "30 days": ["30天"], + "1T": [""], + "1H": [""], + "1D": [""], + "7D": [""], + "1M": [""], + "1AS": [""], + "Method": ["方法"], + "asfreq": [""], + "bfill": [""], + "ffill": [""], + "median": ["中位数"], + "Part of a Whole": ["占比"], + "Compare the same summarized metric across multiple groups.": [ + "跨多个组比较相同的汇总指标" ], - "Minimum value for label to be displayed on graph.": [ - "在图形上显示标签的最小值。" + "Partition Chart": ["分区图"], + "Categorical": ["分类"], + "Use Area Proportions": ["使用面积比例"], + "Check if the Rose Chart should use segment area instead of segment radius for proportioning": [ + "检查玫瑰图是否应该使用线段面积而不是线段半径来进行比例" ], - "Minimum value on the gauge axis": ["量规轴上的最小值"], - "Minor Split Line": ["小的分模线"], - "Minute": ["分钟"], - "Minutes %s": ["%s分钟"], - "Missing dataset": ["丢失数据集"], - "Mixed Time-Series": ["混和时间序列"], - "Modified": ["已修改"], - "Modified %s": ["最后修改 %s"], - "Modified by": ["修改人"], - "Modified columns: %s": ["修改的列:%s"], - "Monday": ["星期一"], - "Month": ["月"], - "Months %s": ["%s月"], - "Move only": ["移动"], - "Moves the given set of dates by a specified interval.": [ - "将给定的日期集以指定的间隔进行移动" + "A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [ + "一种极坐标图表,其中圆被分成等角度的楔形,任何楔形表示的值由其面积表示,而不是其半径或扫掠角度。" ], - "Multi-Dimensions": ["多维度"], + "Nightingale Rose Chart": ["南丁格尔玫瑰图"], + "Advanced-Analytics": ["高级分析"], "Multi-Layers": ["多层"], - "Multi-Levels": ["多层次"], - "Multi-Variables": ["多元"], - "Multiple": ["多方"], - "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ - "柱状上传不允许使用多个文件扩展名请确保所有文件的扩展名相同。" - ], - "Multiple formats accepted, look the geopy.points Python library for more details": [ - "接受多种格式,查看geopy.points库以获取更多细节" + "Source / Target": ["源/目标"], + "Choose a source and a target": ["选择一个源和一个目标"], + "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ + "限制行数可能导致不完整的数据和误导性的图表。可以考虑过滤或分组源/目标名称。" ], - "Multiple selections allowed, otherwise filter is limited to a single value": [ - "允许多选下拉框,不勾选的话过滤器就是单选下拉框" + "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ + "可视化不同组的值在系统不同阶段的流动。管道中的新阶段被可视化为节点或层。条形或边缘的厚度表示正在可视化的度量。" ], - "Must be unique": ["需要唯一"], - "Must have a [Group By] column to have 'count' as the [Label]": [ - "[Group By] 列必须要有 ‘count’字段作为 [标签]" + "Demographics": ["人口统计"], + "Survey Responses": ["调查结果"], + "Sankey Diagram": ["桑基图"], + "Percentages": ["百分比"], + "Sankey Diagram with Loops": ["桑基图"], + "Country Field Type": ["国家字段的类型"], + "code International Olympic Committee (cioc)": [""], + "code ISO 3166-1 alpha-2 (cca2)": [""], + "code ISO 3166-1 alpha-3 (cca3)": [""], + "The country code standard that Superset should expect to find in the [country] column": [ + "Superset 希望能够在 [国家] 栏中找到的 国家 / 地区 的标准代码" ], - "Must have at least one numeric column specified": [ - "必须至少指明一个数值列" + "Show Bubbles": ["显示气泡"], + "Whether to display bubbles on top of countries": [ + "是否在国家之上展示气泡" ], - "Must provide credentials for the SSH Tunnel": [""], - "Must specify a value for filters with comparison operators": [ - "必须为带有比较操作符的过滤器指定一个值吗" + "Max Bubble Size": ["最大气泡的尺寸"], + "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ + "" ], - "My beautiful colors": [""], - "My column": ["我的列"], - "My metric": ["我的指标"], - "N/A": ["N/A"], - "NOV": ["十一月"], - "NOW": ["现在"], - "Name": ["名称"], - "Name is required": ["需要名称"], - "Name must be unique": ["名称必须是唯一的"], - "Name of table to be created from columnar data.": [ - "从列存储数据创建的表的名称。" + "Country Column": ["国家字段"], + "3 letter code of the country": ["国家3字码"], + "Metric that defines the size of the bubble": ["定义指标的气泡大小"], + "Bubble Color": ["气泡颜色"], + "Country Color Scheme": ["国家颜色方案"], + "A map of the world, that can indicate values in different countries.": [ + "一张世界地图,可以显示不同国家的价值观。" ], - "Name of table to be created from excel data.": [ - "从excel数据将创建的表的名称。" - ], - "Name of the column containing the id of the parent node": [ - "包含父节点id的列的名称" - ], - "Name of the id column": ["ID列名称"], - "Name of the source nodes": ["源节点名称"], - "Name of the table that exists in the source database": [ - "源数据库中存在的表名称" - ], - "Name of the target nodes": ["目标节点名称"], - "Name your database": ["您的数据集"], - "Need help? Learn how to connect your database": [""], - "Need help? Learn more about": [""], - "Network error.": ["网络异常。"], - "New chart": ["新增图表"], - "New columns added: %s": ["新增的列:%s"], - "New filter set": ["新的过滤器"], - "New tab": ["关闭标签"], - "New tab (Ctrl + q)": ["新建Tab页 (Ctrl + q)"], - "New tab (Ctrl + t)": ["新建Tab页 (Ctrl + t)"], - "Next": ["之后"], - "Nightingale Rose Chart": ["南丁格尔玫瑰图"], - "No": ["否"], - "No %s yet": ["还没有 %s"], - "No Access!": ["不能访问!"], - "No Data": ["没有数据"], - "No Results": ["无结果"], - "No annotation layers yet": ["没有注释层"], - "No annotation yet": ["没有注释"], - "No charts": ["没有图表"], - "No columns": ["没有列"], - "No compatible columns found": ["找不到兼容的列"], - "No dashboards": ["没有看板"], - "No data": ["没有数据"], - "No data after filtering or data is NULL for the latest time record": [ - "过滤后没有数据,或者最新时间记录的数据为NULL" + "Multi-Dimensions": ["多维度"], + "Multi-Variables": ["多元"], + "Popular": ["常用"], + "Pick a set of deck.gl charts to layer on top of one another": [""], + "Select charts": ["所有图表"], + "Error while fetching charts": ["获取图表时出错"], + "Compose multiple layers together to form complex visuals.": [""], + "Point to your spatial columns": [""], + "Pick a dimension from which categorical colors are defined": [""], + "Advanced": ["进阶"], + "Plot the distance (like flight paths) between origin and destination.": [ + "" ], - "No data in file": ["文件中无数据"], - "No databases match your search": ["没有与您的搜索匹配的数据库"], - "No description available.": ["没有可用的描述"], - "No favorite charts yet, go click on stars!": [ - "暂无收藏的图表,去点击星星吧!" + "deck.gl Arc": ["圆弧图"], + "3D": [""], + "Web": ["网络"], + "The function to use when aggregating points into groups": [""], + "Define contour layers. Isolines represent a collection of line segments that serparate the area above and below a given threshold. Isobands represent a collection of polygons that fill the are containing values in a given threshold range.": [ + "" ], - "No favorite dashboards yet, go click on stars!": [ - "暂无收藏的看板,去点击星星吧!" + "Metric used as a weight for the grid's coloring": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" ], - "No filter": ["无筛选"], - "No filter is selected.": ["未选择过滤条件。"], - "No form settings were maintained": [""], - "No global filters are currently added": [""], - "No of Bins": ["直方图容器数"], - "No records found": ["没有找到任何记录"], - "No results found": ["未找到结果"], - "No results match your filter criteria": [""], - "No results were returned for this query": [""], - "No results were returned for this query. If you expected results to be returned, ensure any filters are configured properly and the datasource contains data for the selected time range.": [ - "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" + "Spatial": ["空间"], + "Experimental": ["实验"], + "pixels": [""], + "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ + "" ], - "No rows were returned for this dataset": [""], - "No stored results found, you need to re-run your query": [ - "找不到存储的结果,需要重新运行查询" + "Height": ["高度"], + "Metric used to control height": [""], + "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ + "" ], - "No such column found. To filter on a metric, try the Custom SQL tab.": [ - "没有发现这样的列。若要在度量值上筛选,请尝试自定义SQL选项卡。" + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" ], - "No time columns": ["没有时间列"], - "No validator found (configured for the engine)": [""], - "No validator named {} found (configured for the {} engine)": [""], - "Node label position": ["节点标签位置"], - "Node select mode": ["节点选择模式"], - "Node size": ["节点大小"], - "None": ["空"], - "None -> Arrow": ["无-> 箭头"], - "None -> None": ["无->无"], - "Normal": ["正常"], - "Normalize Across": ["标准化通过"], - "Normalized": ["标准化"], - "Not Time Series": ["美誉时间序列"], - "Not null": ["非空"], - "Not triggered": ["没有触发"], - "Not up to date": ["不是最新的"], - "Nothing triggered": ["无触发"], - "Notification method": ["通知方式"], - "November": ["十一月"], - "Now": ["现在"], - "Null or Empty": ["Null或空"], - "Null values": ["空值"], - "Number Format": ["数字格式"], - "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "Intensity Radius is the radius at which the weight is distributed": [""], + "p1": [""], + "p5": [""], + "p95": [""], + "p99": [""], + "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "" ], - "Number format": ["数字格式化"], + "Polyline": [""], + "Visualizes connected points, which form a path, on a map.": [""], + "Opacity, expects values between 0 and 100": [""], "Number of buckets to group data": [""], - "Number of decimal digits to round numbers to": [ - "要四舍五入的十进制位数" + "How many buckets should the data be grouped in.": [""], + "Bucket break points": [""], + "List of n+1 values for bucketing metric into n buckets.": [""], + "Allow sending multiple polygons as a filter event": [""], + "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "" ], - "Number of decimal places with which to display lift values": [ - "用于显示升力值的小数位数" + "Category": ["分类"], + "Radius in kilometers": [""], + "Radius in miles": [""], + "Minimum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this minimum radius.": [ + "" ], - "Number of decimal places with which to display p-values": [ - "用于显示p值的小数位数" + "Maximum Radius": [""], + "Maximum radius size of the circle, in pixels. As the zoom level changes, this insures that the circle respects this maximum radius.": [ + "" ], - "Number of rows of file to read.": ["要读取的文件行数。"], - "Number of rows to skip at start of file.": ["在文件开始时跳过的行数。"], - "Number of split segments on the axis": ["轴上分割段的数目"], - "Number of steps to take between ticks when displaying the X scale": [ - "显示 X 刻度时,在刻度之间表示的步骤数" + "A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [ + "" ], - "Number of steps to take between ticks when displaying the Y scale": [ - "显示 Y 刻度时,在刻度之间表示的步骤数" + "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ + "" ], - "Numerical range": ["数值范围"], - "OCT": ["十月"], - "OK": ["确认"], - "OVERWRITE": ["覆盖"], - "October": ["十月"], - "Offline": ["离线"], - "Offset": ["偏移"], - "On Grace": ["在宽限期内"], - "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ - "要分组的一列或多列。高基数分组应包括序列限制,以限制提取和呈现的序列数。" + "For more information about objects are in context in the scope of this function, refer to the": [ + "" ], - "One or many columns to group by. High cardinality groupings should include a sort by metric and series limit to limit the number of fetched and rendered series.": [ - "要分组的一列或多列。高基数分组应包括按度量排序和序列限制,以限制提取和呈现的序列数。" + " source code of Superset's sandboxed parser": [""], + "This functionality is disabled in your environment for security reasons.": [ + "" ], - "One or many columns to pivot as columns": [ - "需要作为列属性进行透视的一列或多列" + "Ignore null locations": [""], + "When checked, the map will zoom to your data after each query": [""], + "Extra data for JS": [""], + "List of extra columns made available in JavaScript functions": [""], + "JavaScript data interceptor": [""], + "Define a javascript function that receives the data array used in the visualization and is expected to return a modified version of that array. This can be used to alter properties of the data, filter, or enrich the array.": [ + "" ], - "One or many controls to group by. If grouping, latitude and longitude columns must be present.": [ - "使用一个或多个控件来分组。一旦分组,则纬度和经度列必须存在。" + "JavaScript tooltip generator": [""], + "Define a function that receives the input and outputs the content for a tooltip": [ + "" ], - "One or many controls to pivot as columns": ["一个或多个控件作为主列"], - "One or many metrics to display": ["一个或多个指标显示"], - "One or more columns already exist": ["一个或多个列已存在"], - "One or more columns are duplicated": ["一个或多个列被复制"], - "One or more columns do not exist": ["一个或多个字段不存在"], - "One or more metrics already exist": ["一个或多个度量已存在"], - "One or more metrics are duplicated": ["一个或多个指标重复"], - "One or more metrics do not exist": ["一个或多个指标不存在"], - "One or more parameters needed to configure a database are missing.": [ - "数据库配置缺少所需的一个或多个参数。" + "JavaScript onClick href": [""], + "Define a function that returns a URL to navigate to when user clicks": [ + "" ], - "One or more parameters specified in the query are malformatted.": [ - "查询中指定的一个或多个参数的格式不正确。" + "Line width": ["线宽"], + " Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ + "" ], - "One or more parameters specified in the query are missing.": [ - "查询中指定的一个或多个参数丢失。" + "Defines the grid size in pixels": [""], + "Parameters related to the view and perspective on the map": [""], + "Factor to multiply the metric by": [""], + "geohash (square)": [""], + "Right Axis Format": ["右轴格式化"], + "Show Markers": ["显示标记"], + "Show data points as circle markers on the lines": [ + "将数据点显示为线条上的圆形标记" ], - "One ore more annotation layers failed loading.": [ - "一个或多个注释层加载失败。" + "Y bounds": ["Y界限"], + "Whether to display the min and max values of the Y-axis": [ + "是否显示Y轴的最小值和最大值" ], - "Only SELECT statements are allowed against this database.": [ - "此数据库只允许使用 `SELECT` 语句" + "Y 2 bounds": ["Y界限"], + "Line Style": ["线条样式"], + "step-before": [""], + "Line interpolation as defined by d3.js": ["由 d3.js 定义的线插值"], + "Show Range Filter": ["显示范围过滤器"], + "Whether to display the time range interactive selector": [ + "是否显示时间范围交互选择器" ], - "Only Total": ["仅总计"], - "Only `SELECT` statements are allowed": ["将 SELECT 语句复制到剪贴板"], - "Only applies when \"Label Type\" is not set to a percentage.": [""], - "Only applies when \"Label Type\" is set to show values.": [""], - "Only selected panels will be affected by this filter": [ - "只有选定的面板将受此过滤条件的影响" + "Extra Controls": ["额外控件"], + "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ + "是否显示额外的控件。额外的控制包括使多栏图表堆叠或并排。" ], - "Only show the total value on the stacked chart, and not show on the selected category": [ - "仅在堆积图上显示合计值,而不在所选类别上显示" + "X Tick Layout": ["X轴记号图层"], + "The way the ticks are laid out on the X-axis": ["X轴记号的排列显示方式"], + "X Axis Format": ["X 轴格式化"], + "Y Log Scale": ["Y经度标度"], + "Use a log scale for the Y-axis": ["使用Y轴的对数刻度"], + "Y Axis Bounds": ["Y 轴界限"], + "Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" ], - "Only single queries supported": ["仅支持单个查询"], - "Only the following file extensions are allowed: %(allowed_extensions)s": [ - "仅允许以下文件扩展名:%(allowed_extensions)s" + "Y Axis 2 Bounds": ["Y 轴界限"], + "X bounds": ["X界限"], + "Whether to display the min and max values of the X-axis": [ + "是否显示X轴的最小值和最大值" ], - "Opacity": ["不透明度"], - "Opacity of Area Chart. Also applies to confidence band.": [ - "区域图的不透明度。也适用于置信带" + "Bar Values": ["条形栏的值"], + "Show the value on top of the bar": ["显示栏上的值"], + "Stacked Bars": ["堆叠条形图"], + "Reduce X ticks": ["减少 X 轴的刻度"], + "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ + "减少要渲染的X轴标记数。如果为true,x轴将不会溢出,但是标签可能丢失。如果为false,则对列应用最小宽度,宽度可能溢出到水平滚动条中。" ], - "Opacity of all clusters, points, and labels. Between 0 and 1.": [ - "所有簇、点和标签的不透明度。在0到1之间。" + "You cannot use 45° tick layout along with the time range filter": [ + "不能将45°刻度线布局与时间范围过滤器一起使用" ], - "Opacity of area chart.": ["面积图的不透明度"], - "Opacity, expects values between 0 and 100": [""], - "Open Datasource tab": ["打开数据源tab"], - "Open in SQL Lab": ["在 SQL 工具箱中打开"], - "Open query in SQL Lab": ["在 SQL 工具箱中打开查询"], - "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ - "以异步模式操作数据库,这意味着查询是在远程worker上执行的,而不是在web服务器本身上执行的, 这假设您有一个Celery worker setup以及一个执行后端。有关更多信息,请参考安装文档。" + "Stacked Style": ["堆积样式"], + "Evolution": ["演化"], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "时间序列图表,直观显示多个组中的相关指标随时间的变化情况。每组使用不同的颜色进行可视化" ], - "Operator": ["运算符"], - "Operator undefined for aggregator: %(name)s": [ - "未定义聚合器的运算符:%(name)s" + "Stretched style": ["堆积样式"], + "Stacked style": ["堆积样式"], + "Video game consoles": ["控制台"], + "Vehicle Types": ["类型"], + "Continuous": ["连续式"], + "Line": ["行"], + "nvd3": ["nvd3"], + "Deprecated": ["过时"], + "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ + "使用条形图可视化指标随时间的变化。按列添加分组以可视化分组级别的指标及其随时间变化的方式。" ], - "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ - "用于验证HTTPS请求的可选 CA_BUNDLE 内容。仅在某些数据库引擎上可用。" + "Bar": ["条形图"], + "Vertical": ["垂直"], + "Box Plot": ["箱线图"], + "X Log Scale": ["X经度标度"], + "Use a log scale for the X-axis": ["使用Y轴的对数刻度"], + "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ + "在单个图表中跨三维数据(X轴、Y轴和气泡大小)可视化度量。同一组中的气泡可以“使用气泡颜色显示" ], - "Optional name of the data column.": ["数据列的可选名称"], - "Optional warning about use of this metric": ["关于使用此指标的可选警告"], - "Options": ["设置"], - "Or choose from a list of other databases we support:": [ - "或者从我们支持的其他数据库列表中选择:" + "Ranges": ["管理"], + "Ranges to highlight with shading": ["突出阴影的范围"], + "Range labels": ["范围标签"], + "Labels for the ranges": ["范围的标签"], + "Markers": ["标记"], + "List of values to mark with triangles": ["要用三角形标记的值列表"], + "Marker labels": ["标记标签"], + "Labels for the markers": ["标记的标签"], + "Marker lines": ["标记线"], + "List of values to mark with lines": ["要用行标记的值列表"], + "Marker line labels": ["标记线标签"], + "Labels for the marker lines": ["标记线的标签"], + "KPI": ["指标"], + "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ + "显示单个指标相对于给定目标的进度。填充越高,度量越接近目标" ], - "Order by entity id": ["按实体ID排序"], - "Order results by selected columns": ["按选定列对结果进行排序"], - "Ordering": ["排序"], - "Orientation of tree": ["树的方向"], - "Original": ["起点"], - "Original table column order": ["原始表列顺序"], - "Original value": ["原始值"], - "Orthogonal": ["正交化"], - "Other": ["其他"], - "Outdoors": [""], - "Outer Radius": ["外缘"], - "Outer edge of Pie chart": ["饼图外缘"], - "Overlap": ["重叠"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "从相对时间段覆盖一个或多个时间序列。期望自然语言中的相对时间增量(例如:24小时、7天、56周、365天)" + "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ + "在一个图表中显示许多不同的时间序列对象。此图表已被弃用,建议改用时间序列图表" ], - "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ - "" + "Time-series Percent Change": ["时间序列-百分比变化"], + "Sort Bars": ["排序条形栏"], + "Sort bars by x labels.": ["按 x 标签排序。"], + "Breakdowns": ["分解"], + "Defines how each series is broken down": ["定义每个序列是如何被分解的"], + "Compares metrics from different categories using bars. Bar lengths are used to indicate the magnitude of each value and color is used to differentiate groups.": [ + "使用条形图比较不同类别的指标。条形长度用于指示每个值的大小,颜色用于区分组。" ], - "Overwrite": ["覆盖"], - "Overwrite & Explore": ["覆写和浏览"], - "Overwrite Dashboard [%s]": ["覆盖看板 [%s]"], - "Overwrite text in the editor with a query on this table": [ - "使用该表上的查询覆盖编辑器中的文本" + "Additive": ["附加"], + "Discrete": ["离散"], + "Propagate": ["传播"], + "Send range filter events to other charts": [ + "将过滤条件的事件发送到其他图表" ], - "Owned Created or Favored": [""], - "Owner": ["所有者"], - "Owners": ["所有者"], - "Owners are invalid": ["所有者无效"], - "Owners is a list of users who can alter the dashboard.": [ - "所有者是可以更改看板的用户列表。" + "Classic chart that visualizes how metrics change over time.": [ + "直观显示指标随时间变化的经典图表。" ], - "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ - "所有者是可以更改看板的用户列表。可按名称或用户名搜索。" + "Battery level over time": ["电池电量随时间变化"], + "Line Chart (legacy)": [""], + "Label Type": ["标签类型"], + "Value": ["值"], + "Category, Value and Percentage": [""], + "What should be shown on the label?": ["标签上需要显示的内容"], + "Donut": ["圆环圈"], + "Do you want a donut or a pie?": ["是否用圆环圈替代饼图?"], + "Show Labels": ["显示标签"], + "Put labels outside": ["外侧显示标签"], + "Put the labels outside the pie?": ["是否将标签显示在饼图外侧?"], + "Frequency": ["频率"], + "Year (freq=AS)": [""], + "Day (freq=D)": [""], + "4 weeks (freq=4W-MON)": [""], + "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ + "旋转时间的周期性。" ], - "Page length": ["页长"], - "Paired t-test Table": ["配对T检测表"], - "Pandas resample method": ["Pandas 重新采样的填充方法"], - "Pandas resample rule": ["Pandas 重新采样的规则"], - "Parallel Coordinates": ["平行坐标"], - "Parameter error": ["参数错误"], - "Parameters": ["参数"], - "Parameters ": ["参数"], - "Parameters related to the view and perspective on the map": [""], - "Parent": ["父类"], - "Parse Dates": ["解析日期"], - "Part of a Whole": ["占比"], - "Partition Chart": ["分区图"], - "Partition Diagram": ["分区图"], - "Partition Limit": ["分区限制"], - "Partition Threshold": ["分区阈值"], - "Partitions whose height to parent height proportions are below this value are pruned": [ - "高度与父高度的比例低于此值的分区将被修剪" + "Time-series Period Pivot": ["时间序列-周期轴"], + "Show legend": ["显示图例"], + "Whether to display a legend for the chart": [ + "是否显示图表的图示(色块分布)" ], - "Password": ["密码"], - "Paste Private Key here": [""], - "Paste the shareable Google Sheet URL here": [ - "将可共享的Google Sheet URL粘贴到此处" + "Margin": ["边距(margin)"], + "Additional padding for legend.": ["图示附加的padding值。"], + "Scroll": [""], + "Plain": [""], + "Legend type": ["图示类型"], + "Bottom": ["底端"], + "Right": ["高度"], + "Show Value": ["显示值"], + "Show series values on the chart": ["显示栏上的值"], + "Stack series on top of each other": ["叠加系列"], + "Only Total": ["仅总计"], + "Only show the total value on the stacked chart, and not show on the selected category": [ + "仅在堆积图上显示合计值,而不在所选类别上显示" ], - "Pattern": ["规则"], - "Percent Change": ["百分比变化"], - "Percentage metrics": ["百分比指标"], "Percentage threshold": ["百分比阈值"], - "Percentages": ["百分比"], - "Performance": [""], - "Period average": [""], - "Periods": ["周期"], - "Person or group that has certified this chart.": [ - "对此图表进行认证的个人或团体。" + "Minimum threshold in percentage points for showing labels.": [ + "标签显示百分比最小阈值" ], - "Person or group that has certified this dashboard.": [ - "已对此仪表板进行认证的个人或组。" + "Rich tooltip": ["详细提示"], + "Shows a list of all series available at that point in time": [ + "详细提示显示了该时间点的所有序列的列表。" ], - "Person or group that has certified this metric": [ - "认证此指标的个人或团体" + "Tooltip time format": ["时间格式"], + "Tooltip sort by metric": ["排序指标"], + "Whether to sort tooltip by the selected metric in descending order.": [ + "是否按所选指标按降序对结果进行排序。" ], - "Physical": ["物理信息"], - "Physical (table or view)": ["物理(表或视图)"], - "Physical dataset": ["物化数据集"], - "Pick a dimension from which categorical colors are defined": [""], - "Pick a granularity in the Time section or uncheck 'Include Time'": [ - "在“时间”部分选择一个粒度,或取消选中“包含时间”" + "Tooltip": ["详细提示"], + "Based on what should series be ordered on the chart and legend": [""], + "Sort series in ascending order": [""], + "Rotate x axis label": ["旋转x轴标签"], + "Input field supports custom rotation. e.g. 30 for 30°": [ + "输入字段支持自定义。例如,30代表30°" ], - "Pick a metric for x, y and size": ["为 x 轴,y 轴和大小选择一个指标"], - "Pick a metric to display": ["选择一个指标来显示"], - "Pick a metric!": ["选择一个指标!"], - "Pick a name to help you identify this database.": [ - "选择一个名称来帮助您识别这个数据库。" + "Make the x-axis categorical": [""], + "Last available value seen on %s": [" %s 最后一个可用值"], + "Not up to date": ["不是最新的"], + "No data": ["没有数据"], + "No data after filtering or data is NULL for the latest time record": [ + "过滤后没有数据,或者最新时间记录的数据为NULL" ], - "Pick a set of deck.gl charts to layer on top of one another": [""], - "Pick a time granularity for your time series": [ - "为您的时间序列选择一个时间粒度" + "Try applying different filters or ensuring your datasource has data": [ + "尝试应用不同的筛选器或确保您的数据源包含数据。“" ], - "Pick a title for you annotation.": ["为您的注释选择一个标题"], - "Pick at least one field for [Series]": ["为 [序列] 选择至少一个字段"], - "Pick at least one metric": ["选择至少一个指标"], - "Pick exactly 2 columns as [Source / Target]": [ - "为 [来源 / 目标] 选择两个列" + "Big Number Font Size": ["数字的字体大小"], + "Tiny": ["微小"], + "Small": ["小"], + "Normal": ["正常"], + "Large": ["大"], + "Huge": ["巨大"], + "Subheader Font Size": ["子标题的字体大小"], + "Subheader": ["子标题"], + "Description text that shows up below your Big Number": [ + "在大数字下面显示描述文本" ], - "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ - "选择注释中应该显示的一个或多个列如果您不选择一列,所有的选项都会显示出来。" + "Date format": ["日期格式化"], + "Use date formatting even when metric value is not a timestamp": [""], + "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ + "显示单个公制正面和中间。大数字最好用来唤起人们对KPI或你希望观众关注的一件事的关注" ], - "Pick your favorite markup language": ["选择您最爱的 Markup 语言"], - "Pie Chart": ["饼图"], - "Pie shape": ["饼图形状"], - "Pin": ["Pin"], - "Pivot Table": ["透视表"], - "Pivot operation must include at least one aggregate": [ - "数据透视操作必须至少包含一个聚合" + "A Big Number": ["大数字"], + "With a subheader": ["子标题"], + "Big Number": ["数字"], + "Comparison Period Lag": ["滞后比较"], + "Based on granularity, number of time periods to compare against": [ + "根据粒度、要比较的时间阶段" ], - "Pivot operation requires at least one index": [ - "透视操作至少需要一个索引" + "Comparison suffix": ["比较前缀"], + "Suffix to apply after the percentage display": [ + "百分比显示后要应用的后缀" ], - "Pivoted": ["旋转"], - "Pixel height of each series": ["每个序列的像素高度"], - "Pixels": [""], - "Plain": [""], - "Please DO NOT overwrite the \"filter_scopes\" key.": [""], - "Please apply filter changes": ["请应用滤镜更改"], - "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ - "请检查查询并确认所有模板参数都用双大括号括起来,例如 \"{{ ds }}\"。然后,再次尝试运行查询" + "Show Timestamp": ["显示时间戳"], + "Whether to display the timestamp": ["是否显示笔划"], + "Show Trend Line": ["显示趋势线"], + "Whether to display the trend line": ["是否显示笔划"], + "Start y-axis at 0": ["y轴从0开始"], + "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ + "从零开始y轴。取消选中以从数据中的最小值开始y轴 " ], - "Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, try running your query again.": [ - "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" + "Fix to selected Time Range": ["固定到选定的时间范围"], + "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ + "将趋势线固定为指定的完整时间范围,以防过滤的结果不包括开始日期或结束日期" ], - "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ - "请检查查询中\"%(server_error)s\"附近的语法错误然后,再次尝试运行查询" + "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ + "显示一个数字和一个简单的折线图,以提醒注意一个重要指标及其随时间或其他维度的变化" ], - "Please choose different metrics on left and right axis": [ - "请在左右轴上选择不同的指标" - ], - "Please confirm": ["请确认"], - "Please confirm the overwrite values.": [""], - "Please enter a SQLAlchemy URI to test": ["请输入要测试的SQLAlchemy URI"], - "Please filter set name": ["请筛选集合名称"], - "Please re-enter the password.": ["请重新输入密码。"], - "Please re-export your file and try importing again": [""], - "Please save the query to enable sharing": ["请保存查询以启用共享"], - "Please save your chart first, then try creating a new email report.": [ - "请先保存您的图表,然后尝试创建一个新的电子邮件报告。" - ], - "Please save your dashboard first, then try creating a new email report.": [ - "请先保存您的仪表盘,然后尝试创建一个新的电子邮件报告。" - ], - "Please select both a Dataset and a Chart type to proceed": [ - "请同时选择数据集和图表类型以继续" - ], - "Please use 3 different metric labels": ["请在左右轴上选择不同的指标"], - "Plot the distance (like flight paths) between origin and destination.": [ - "" - ], - "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ - "垂直地绘制数据中每一行的单个指标,并将它们链接成一行。此图表用于比较数据中所有样本或行中的多个指标。" - ], - "Plugins": ["插件"], - "Point Radius": ["点半径"], - "Point Radius Unit": ["点半径单位"], - "Point to your spatial columns": [""], - "Points": ["点配置"], - "Points and clusters will update as the viewport is being changed": [ - "点和簇将随着视图改变而更新。" - ], - "Polyline": [""], - "Pop Tab Link": ["流行标签链接"], - "Popular": ["常用"], - "Populate \"Default value\" to enable this control": [ - "填充 \"Default value\" 以启用此控件" - ], - "Population age data": ["人口年龄数据"], - "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ - "主机名 \"%(hostname)s\" 上的端口 %(port)s 拒绝连接。" - ], - "Port out of range 0-65535": [""], - "Position JSON": ["位置JSON"], - "Position of child node label on tree": ["子节点标签在树上的位置"], - "Position of column level subtotal": ["列级小计的位置"], - "Position of row level subtotal": ["行级小计的位置"], - "Powered by Apache Superset": ["由Apache Superset提供支持"], - "Pre-filter": ["预过滤"], - "Pre-filter available values": ["预滤器可用值"], - "Pre-filter is required": ["预过滤是必须的"], - "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ - "当获取不同的值来填充过滤器组件应用时。支持jinja的模板语法。只在`启用过滤器选择`时应用。" - ], - "Predictive": ["预测"], - "Predictive Analytics": ["预测分析"], - "Preview": ["预览"], - "Preview: `%s`": ["预览 %s"], - "Previous": ["之前"], - "Primary": ["主键"], - "Primary Metric": ["主计量指标"], - "Primary or secondary y-axis": ["主或次y轴"], - "Primary y-axis format": ["主轴格式"], - "Private Key": [""], - "Private Key & Password": [""], - "Profile": ["用户信息"], - "Profile picture provided by Gravatar": ["资料图片由 Gravatar 提供"], - "Progress": ["进度"], - "Progressive": ["进度"], - "Propagate": ["传播"], - "Proportional": ["比例"], - "Public and privately shared sheets": ["公共和私人共享的表"], - "Publicly shared sheets only": ["仅公开共享表"], - "Published": ["已发布"], - "Put labels outside": ["外侧显示标签"], - "Put the labels outside of the pie?": ["是否将标签显示在饼图外侧?"], - "Put the labels outside the pie?": ["是否将标签显示在饼图外侧?"], - "Put your code here": ["把您的代码放在这里"], - "Python datetime string pattern": ["Python日期格式模板"], - "QUERY DATA IN SQL LAB": [""], - "Quarter": ["季度"], - "Quarters %s": [" %s 季度"], - "Query": ["查询"], - "Query %s: %s": ["查询 %s: %s "], - "Query A": ["查询 A"], - "Query B": ["查询 B"], - "Query History": ["历史查询"], - "Query history": ["历史查询"], - "Query in a new tab": ["在新标签中查询"], - "Query is too complex and takes too long to run.": [ - "查询太复杂,运行时间太长。" - ], - "Query mode": ["查询模式"], - "Query name": ["查询名称"], - "Query preview": ["查询预览"], - "Query was stopped": ["查询被终止。"], - "Query was stopped.": ["查询被终止。"], - "RANGE TYPE": ["范围类型"], - "RGB Color": ["RGB颜色"], - "Radar": ["雷达"], - "Radar Chart": ["雷达图"], - "Radar render type, whether to display 'circle' shape.": [ - "雷达渲染类型,是否显示圆形" - ], - "Radial": ["径向"], - "Radius in kilometers": [""], - "Radius in miles": [""], - "Ran %s": ["持续时间:%s"], - "Range": ["范围"], - "Range filter": ["范围过滤"], - "Range filter plugin using AntD": ["范围过滤器"], - "Range labels": ["范围标签"], - "Ranges": ["管理"], - "Ranges to highlight with shading": ["突出阴影的范围"], - "Ranking": ["排名"], - "Ratio": ["比率"], - "Raw records": ["原始记录"], - "Ready to review filters in this dashboard?": [ - "准备查看此仪表板中的筛选器吗?" - ], - "Rebuild": ["重构"], - "Recent activity": ["近期活动"], - "Recently created charts, dashboards, and saved queries will appear here": [ - "最近创建的图表、看板和保存的查询将显示在此处" - ], - "Recently edited charts, dashboards, and saved queries will appear here": [ - "最近编辑的图表、看板和保存的查询将显示在此处" - ], - "Recently modified": ["最近修改"], - "Recently viewed charts, dashboards, and saved queries will appear here": [ - "最近查看的图表、看板和保存的查询将显示在此处" - ], - "Recents": ["最近"], - "Recipients are separated by \",\" or \";\"": [ - "收件人之间用 \",\" 或者 \";\" 隔开" - ], - "Recommended tags": ["推荐标签"], - "Record Count": ["记录数"], - "Rectangle": ["长方形"], - "Redirects to this endpoint when clicking on the table from the table list": [ - "点击表列表中的表时将重定向到此端点" - ], - "Redo the action": [""], - "Reduce X ticks": ["减少 X 轴的刻度"], - "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ - "减少要渲染的X轴标记数。如果为true,x轴将不会溢出,但是标签可能丢失。如果为false,则对列应用最小宽度,宽度可能溢出到水平滚动条中。" - ], - "Refer to the": ["参考 "], - "Referenced columns not available in DataFrame.": [ - "引用的列在数据帧(DataFrame)中不可用。" - ], - "Refetch results": ["重新获取结果"], - "Refresh": ["刷新间隔"], - "Refresh dashboard": ["刷新看板"], - "Refresh frequency": ["刷新频率"], - "Refresh interval": ["刷新间隔"], - "Refresh the default values": ["刷新默认值"], - "Relational": ["执行时间"], - "Relationships between community channels": ["社区渠道之间的关系"], - "Relative Date/Time": ["相对日期/时间"], - "Relative period": ["宽限期"], - "Relative quantity": ["相对量"], - "Remind me in 24 hours": ["24小时后提醒我"], - "Remove": ["删除"], - "Remove invalid filters": ["删除该行"], - "Remove item": ["删除该行"], - "Remove query from log": ["从日志中删除查询"], - "Remove table preview": ["删除表格预览"], - "Removed columns: %s": ["删除的列:%s"], - "Rename tab": ["重命名标签"], - "Rendering": ["渲染"], - "Replace": ["替换"], - "Report": ["报表"], - "Report Schedule could not be created.": ["无法创建报表计划。"], - "Report Schedule could not be deleted.": ["无法删除报表计划。"], - "Report Schedule could not be updated.": ["无法更新报表计划。"], - "Report Schedule delete failed.": ["报表计划删除失败。"], - "Report Schedule execution failed when generating a csv.": [ - "生成屏幕截图时报表计划执行失败。" - ], - "Report Schedule execution failed when generating a dataframe.": [ - "生成屏幕截图时报表计划执行失败。" - ], - "Report Schedule execution failed when generating a screenshot.": [ - "生成屏幕截图时报表计划执行失败。" - ], - "Report Schedule execution got an unexpected error.": [ - "报表计划执行遇到意外错误。" - ], - "Report Schedule is still working, refusing to re-compute.": [ - "报表计划仍在运行,拒绝重新计算。" - ], - "Report Schedule log prune failed.": ["报表计划日志精简失败。"], - "Report Schedule not found.": ["找不到报表计划。"], - "Report Schedule parameters are invalid.": ["报表计划参数无效。"], - "Report Schedule reached a working timeout.": ["报表计划已超时。"], - "Report Schedule state not found": ["未找到报表计划状态"], - "Report a bug": ["报告bug"], - "Report failed": ["报告失败"], - "Report name": ["报告名称"], - "Report schedule": ["报告时间表"], - "Report schedule unexpected error": ["报告计划意外错误。"], - "Report sending": ["报告发送"], - "Report sent": ["已发送报告"], - "Reports": ["报告"], - "Repulsion": ["表达式"], - "Repulsion strength between nodes": ["节点间的斥力"], - "Request Permissions": ["请求权限"], - "Request is incorrect: %(error)s": ["请求不正确: %(error)s"], - "Request is not JSON": ["请求不是JSON"], - "Request missing data field.": ["请求丢失的数据字段。"], - "Required": ["必填"], - "Required control values have been removed": [""], - "Resample": ["重新采样"], - "Reset state": ["状态重置"], - "Resource already has an attached report.": [""], - "Restore Filter": ["还原过滤条件"], - "Results": ["结果"], - "Results backend is not configured.": ["后端未配置结果"], - "Results backend needed for asynchronous queries is not configured.": [ - "后端未配置异步查询所需的结果" - ], - "Return to specific datetime.": ["返回指定的日期时间。"], - "Reverse lat/long ": ["经纬度互换"], - "Rich Tooltip": ["详细提示"], - "Rich tooltip": ["详细提示"], - "Right": ["高度"], - "Right Axis Format": ["右轴格式化"], - "Right Axis Metric": ["右轴指标"], - "Right axis metric": ["右轴指标"], - "Right to Left": ["右到左"], - "Right value": ["右侧的值"], - "Right-click on a dimension value to drill to detail by that value.": [ - "" - ], - "Role": ["用户信息"], - "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ - "扩展角色 %(r)s 以提供对 datasource %(ds)s 的访问" - ], - "Roles": ["角色"], - "Roles to grant": ["角色授权"], - "Rolling Function": ["滚动函数"], - "Rolling Window": ["滚动窗口"], - "Rolling function": ["滚动函数"], - "Rolling window": ["滚动窗口"], - "Root certificate": ["根证书"], - "Root node id": ["根节点id"], - "Rotate x axis label": ["旋转x轴标签"], - "Rotation to apply to words in the cloud": [ - "应用于词云中的单词的旋转方式" - ], - "Round cap": ["国家地图"], - "Row": ["行"], - "Row Level Security": ["行级安全"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" - ], - "Row limit": ["行限制"], - "Rows": ["行"], - "Rows per page, 0 means no pagination": ["每页行数,0 表示没有分页"], - "Rows subtotal position": ["行小计的位置"], - "Rows to Read": ["读取的行"], - "Rule": ["规则"], - "Rule added": [""], - "Run": ["执行"], - "Run in SQL Lab": ["在 SQL 工具箱中执行"], - "Run query": ["运行查询"], - "Run query (Ctrl + Return)": ["执行运行 (Ctrl + Return)"], - "Run query in a new tab": ["在新标签中运行查询"], - "Run selection": ["运行选定的查询"], - "Running": ["正在执行"], - "Running statement %(statement_num)s out of %(statement_count)s": [""], - "SAT": ["星期六"], - "SEP": ["九月"], - "SHA": [""], - "SQL": ["SQL"], - "SQL Copied!": ["SQL复制成功!"], - "SQL Expression": ["SQL表达式"], - "SQL Lab": ["SQL 工具箱"], - "SQL Lab View": ["SQL Lab 视图"], - "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ - "SQL Lab使用浏览器的本地存储来存储查询和结果" - ], - "SQL Query": ["SQL查询"], - "SQL expression": ["SQL表达式"], - "SQL query": ["SQL查询"], - "SQLAlchemy URI": ["SQLAlchemy URI"], - "SSH Host": [""], - "SSH Port": [""], - "SSH Tunnel": [""], - "SSH Tunnel configuration parameters": [""], - "SSH Tunneling is not enabled": [""], - "SSL Mode \"require\" will be used.": ["SSL模式 \"require\" 将被使用。"], - "START (INCLUSIVE)": ["开始 (包含)"], - "STEP %(stepCurr)s OF %(stepLast)s": [""], - "SUN": ["星期日"], - "Sample Variance": [""], - "Sankey": ["蛇形图"], - "Sankey Diagram": ["桑基图"], - "Sankey Diagram with Loops": ["桑基图"], - "Satellite Streets": [""], - "Saturday": ["星期六"], - "Save": ["保存"], - "Save & Explore": ["保存和浏览"], - "Save & go to dashboard": ["保存并转到看板"], - "Save (Overwrite)": ["保存(覆盖)"], - "Save as": ["另存为"], - "Save as new": ["保存为新的"], - "Save as new chart": ["创建新图表"], - "Save as:": ["另存为:"], - "Save chart": ["图表保存"], - "Save dashboard": ["保存看板"], - "Save for this session": ["保存此会话"], - "Save or Overwrite Dataset": [""], - "Save query": ["保存查询"], - "Save the query to enable this feature": ["请保存查询以启用共享"], - "Save this query as a virtual dataset to continue exploring": [""], - "Saved": ["保存"], - "Saved Queries": ["已保存查询"], - "Saved expressions": ["保存表达式"], - "Saved metric": ["保存的指标"], - "Saved queries": ["已保存查询"], - "Saved queries could not be deleted.": ["保存的查询无法被删除"], - "Saved query not found.": ["保存的查询未找到"], - "Saved query parameters are invalid.": ["保存的查询参数无效"], - "Scale and Move": ["缩放和移动"], - "Scale only": ["存在规模"], - "Scatter": ["散点"], - "Scatter Plot": ["散点图"], - "Schedule": ["调度"], - "Schedule email report": ["为图表配置电子邮件报告"], - "Schedule query": ["分享查询"], - "Schedule settings": ["计划设置"], - "Schedule the query periodically": ["定期调度查询"], - "Scheduled": ["被调度"], - "Scheduled at (UTC)": ["计划时间"], - "Schema": ["模式"], - "Schema cache timeout": ["图表缓存超时"], - "Schema, as used only in some databases like Postgres, Redshift and DB2": [ - "模式,只在一些数据库中使用,比如Postgres、Redshift和DB2" - ], - "Scoping": ["范围"], - "Scroll": [""], - "Scroll down to the bottom to enable overwriting changes. ": [""], - "Search": ["搜索"], - "Search / Filter": ["搜索 / 过滤"], - "Search Metrics & Columns": ["搜索指标和列"], - "Search all charts": ["搜索所有图表"], - "Search all filter options": ["搜索所有过滤选项"], - "Search box": ["搜索框"], - "Search by query text": ["按查询文本搜索"], - "Search...": ["搜索..."], - "Second": ["秒"], - "Secondary": ["次要的"], - "Secondary Metric": ["次计量指标"], - "Secondary y-axis format": ["次级y轴格式"], - "Secondary y-axis title": ["二级轴标题"], - "Seconds %s": ["%s 秒"], - "Secure Extra": ["安全"], - "Secure extra": ["安全"], - "Security": ["安全"], - "Security & Access": ["安全 & 访问"], - "See all %(tableName)s": ["查看全部 - %(tableName)s"], - "See less": ["查看更少"], - "See more": ["查看更多"], - "See table schema": ["选择表"], - "Select": ["批量选择"], - "Select ...": ["选择 ..."], - "Select Delivery Method": ["添加通知方法"], - "Select Viz Type": ["选择一个可视化类型"], - "Select a Columnar file to be uploaded to a database.": [ - "选择要上传到数据库的Excel文件。" - ], - "Select a Excel file to be uploaded to a database.": [ - "选择要上传到数据库的Excel文件。" - ], - "Select a column": ["反选所有"], - "Select a dashboard": ["看板"], - "Select a database to connect": ["选择将要连接的数据库"], - "Select a database to write a query": ["选择要写入查询的数据库"], - "Select a visualization type": ["选择一个可视化类型"], - "Select aggregate options": ["选择总选项"], - "Select any columns for metadata inspection": [ - "选择任意列进行元数据巡检" - ], - "Select charts": ["所有图表"], - "Select color scheme": ["线性颜色方案"], - "Select column": ["时间列"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "选择数据库需要在Advanced选项卡中完成额外的字段才能成功连接数据库了解数据库的需求" + "Big Number with Trendline": ["数字和趋势线"], + "Whisker/outlier options": ["箱须/离群值选项"], + "Determines how whiskers and outliers are calculated.": [ + "确定如何计算箱须和离群值。" ], - "Select filter": ["选择过滤器"], - "Select filter plugin using AntD": ["选择过滤器"], - "Select first filter value by default": [""], - "Select operator": ["选择运营商"], - "Select or type a value": ["选择或键入一个值"], - "Select owners": ["运行选定的查询"], - "Select saved metrics": ["选择保存指标"], - "Select scheme": ["选择表"], - "Select start and end date": ["选择开始和结束时间"], - "Select subject": ["选择主题"], - "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ - "" + "Min/max (no outliers)": [""], + "2/98 percentiles": [""], + "9/91 percentiles": [""], + "Categories to group by on the x-axis.": ["要在x轴上分组的类别。"], + "Distribute across": ["基于某列进行分布"], + "Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [ + "也称为框须图,该可视化比较了一个相关指标在多个组中的分布。中间的框强调平均值、中值和内部2个四分位数。每个框周围的触须可视化了最小值、最大值、范围和外部2个四分区。" ], - "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "ECharts": ["ECharts图表"], + "Opacity of bubbles, 0 means completely transparent, 1 means opaque": [ "" ], - "Select the number of bins for the histogram": ["选择直方图的容器数"], - "Select the numeric columns to draw the histogram": [ - "选择直方图的容器数" + "X AXIS TITLE MARGIN": [""], + "Y AXIS TITLE MARGIN": ["Y轴标题页边距"], + "Logarithmic y-axis": ["对数轴"], + "Truncate Y Axis": ["截断Y轴"], + "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ + "截断Y轴。可以通过指定最小或最大界限来重写。" ], - "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "Display percents in the label and tooltip as the percent of the total value, from the first step of the funnel, or from the previous step in the funnel.": [ "" ], - "Send as CSV": ["发送为CSV"], - "Send as PNG": ["发送PNG"], - "Send as text": ["发送文本"], - "Send range filter events to other charts": [ - "将过滤条件的事件发送到其他图表" + "Calculate from first step": [""], + "Calculate from previous step": [""], + "Labels": ["标签"], + "Whether to display the labels.": ["是否显示标签。"], + "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ + "显示指标如何随着漏斗的进展而变化。此经典图表对于可视化管道或生命周期中各阶段之间的下降非常有用。" ], - "September": ["九月"], + "Funnel Chart": ["漏斗图"], "Sequential": ["顺序"], - "Series": ["序列"], - "Series Height": ["序列高度"], - "Series Style": ["线条样式"], - "Series chart type (line, bar etc)": ["系列图表类型(折线,柱状图等)"], - "Series limit": ["序列限制"], - "Series type": ["图示类型"], - "Server Page Length": ["页面长度"], - "Server pagination": ["服务器分页"], - "Service Account": ["服务帐户"], - "Set auto-refresh interval": ["设置自动刷新"], - "Set filter mapping": ["设置过滤映射"], - "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ - "" - ], - "Settings": ["设置"], - "Settings for time series": ["时间序列设置"], - "Share": ["分享"], - "Share chart by email": ["通过电子邮件分享图表”"], - "Shared query": ["已分享的查询"], - "Sheet Name": ["Sheet名称"], - "Shift + Click to sort by multiple columns": [""], - "Short description must be unique for this layer": [ - "此层的简述必须是唯一的" - ], - "Should daily seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "一个整数值将指定季节性的傅立叶顺序。" - ], - "Should weekly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "一个整数值将指定季节性的傅立叶顺序。" + "Columns to group by": ["需要进行分组的一列或多列"], + "General": ["一般"], + "Min": ["最小值"], + "Minimum value on the gauge axis": ["量规轴上的最小值"], + "Max": ["最大值"], + "Maximum value on the gauge axis": ["量规轴上的最大值"], + "Start angle": ["开始时间"], + "Angle at which to start progress axis": ["开始进度轴的角度"], + "End angle": ["结束角度"], + "Angle at which to end progress axis": ["进度轴结束的角度"], + "Font size": ["字体大小"], + "Font size for axis labels, detail value and other text elements": [ + "轴标签、详图值和其他文本元素的字体大小" ], - "Should yearly seasonality be applied. An integer value will specify Fourier order of seasonality.": [ - "一个整数值将指定“季节性的傅立叶顺序。" + "Value format": ["数值格式"], + "Additional text to add before or after the value, e.g. unit": [ + "附加文本到数据前(后),例如:单位" ], - "Show": [""], - "Show Bubbles": ["显示气泡"], - "Show CREATE VIEW statement": ["显示 CREATE VIEW 语句"], - "Show CSS Template": ["查看CSS模板"], - "Show Chart": ["显示图表"], - "Show Column": ["显示列"], - "Show Dashboard": ["显示看板"], - "Show Database": ["显示数据库"], - "Show Labels": ["显示标签"], - "Show Less...": ["显示. ."], - "Show Log": ["查看日志"], - "Show Markers": ["显示标记"], - "Show Metric": ["显示指标"], - "Show Metric Names": ["显示指标名"], - "Show Range Filter": ["显示范围过滤器"], - "Show Saved Query": ["显示保存的查询"], - "Show Table": ["显示表"], - "Show Timestamp": ["显示时间戳"], - "Show Trend Line": ["显示趋势线"], - "Show Upper Labels": ["显示标签"], - "Show Value": ["显示值"], - "Show Values": ["显示值"], - "Show Y-axis": [""], - "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ - "" + "Show pointer": ["显示鼠标"], + "Whether to show the pointer": ["是否显示笔划"], + "Animation": ["动画"], + "Whether to animate the progress and the value or just display them": [ + "是以动画形式显示进度和值,还是仅显示它们" ], - "Show all columns": ["显示所有列"], - "Show all...": ["显示所有..."], + "Axis": ["坐标轴"], "Show axis line ticks": ["显示轴线刻度"], - "Show cell bars": ["显示单元格的栏"], - "Show columns total": ["显示总计"], - "Show data points as circle markers on the lines": [ - "将数据点显示为线条上的圆形标记" + "Whether to show minor ticks on the axis": ["是否忽略空位置"], + "Show split lines": ["显示分割线"], + "Whether to show the split lines on the axis": [ + "是否显示Y轴的最小值和最大值" ], - "Show info tooltip": ["显示信息提示"], - "Show label": ["显示标签"], - "Show labels when the node has children.": ["当节点有子节点时显示标签"], - "Show legend": ["显示图例"], - "Show less columns": ["显示较少时间列"], - "Show less...": ["显示..."], - "Show only my charts": [""], - "Show percentage": ["显示百分比"], - "Show pointer": ["显示鼠标"], + "Split number": ["数字"], + "Number of split segments on the axis": ["轴上分割段的数目"], + "Progress": ["进度"], "Show progress": ["显示进度"], - "Show rows total": ["显示总计行数"], - "Show series values on the chart": ["显示栏上的值"], - "Show split lines": ["显示分割线"], - "Show the value on top of the bar": ["显示栏上的值"], - "Show time column": ["显示时间列"], - "Show time grain dropdown": ["显示Druid时间粒度下拉列表"], - "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ - "显示所选指标的总聚合。注意行限制并不应用于结果" + "Whether to show the progress of gauge chart": ["是否显示量规图进度"], + "Overlap": ["重叠"], + "Whether the progress bar overlaps when there are multiple groups of data": [ + "当有多组数据时进度条是否重叠" ], - "Show totals": ["显示总计"], - "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ - "显示单个公制正面和中间。大数字最好用来唤起人们对KPI或你希望观众关注的一件事的关注" + "Round cap": ["国家地图"], + "Style the ends of the progress bar with a round cap": [ + "用圆帽设置进度条末端的样式" ], - "Showcases a single number accompanied by a simple line chart, to call attention to an important metric along with its change over time or other dimension.": [ - "显示一个数字和一个简单的折线图,以提醒注意一个重要指标及其随时间或其他维度的变化" + "Intervals": ["间隔"], + "Interval bounds": ["区间间隔"], + "Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last number should match the value provided for MAX.": [ + "逗号分隔的区间界限,例如0-2、2-4和4-5区间的2、4、5。最后一个数字应与为Max提供的值匹配。" ], - "Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.": [ - "显示指标如何随着漏斗的进展而变化。此经典图表对于可视化管道或生命周期中各阶段之间的下降非常有用。" + "Interval colors": ["间隔颜色"], + "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ + "间隔的逗号分隔色选项,例如1、2、4。整数表示所选配色方案中的颜色,并以1为索引。长度必须与间隔界限匹配。" ], - "Showcases the flow or link between categories using thickness of chords. The value and corresponding thickness can be different for each side.": [ - "使用弦的厚度显示类别之间的流或链接。每一侧的值和相应厚度可能不同。" + "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ + "使用一个度量来展示实现目标的度量的进展" ], - "Showcases the progress of a single metric against a given target. The higher the fill, the closer the metric is to the target.": [ - "显示单个指标相对于给定目标的进度。填充越高,度量越接近目标" + "Gauge Chart": ["仪表图"], + "Name of the source nodes": ["源节点名称"], + "Name of the target nodes": ["目标节点名称"], + "Source category": ["数据库名称"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "用于分配颜色的源节点类别。如果一个节点与多个类别关联,则只使用第一个类别" ], - "Showing %s of %s": ["显示 %s个 总计 %s个"], - "Shows a list of all series available at that point in time": [ - "详细提示显示了该时间点的所有序列的列表。" + "Target category": ["目标类别"], + "Category of target nodes": ["目标节点类别"], + "Chart options": ["图表选项"], + "Layout": ["布局"], + "Graph layout": ["图表布局"], + "Force": ["强制"], + "Layout type of graph": ["图形的布局类型"], + "Edge symbols": ["边符号"], + "Symbol of two ends of edge line": ["边线两端的符号"], + "None -> None": ["无->无"], + "None -> Arrow": ["无-> 箭头"], + "Circle -> Arrow": ["圆 -> 箭头"], + "Circle -> Circle": ["圆 -> 圆"], + "Enable node dragging": ["启用节点拖动"], + "Whether to enable node dragging in force layout mode.": [ + "是否在强制布局模式下启用节点拖动。" ], - "Shows or hides markers for the time series": [""], - "Significance Level": ["显著性"], - "Simple": ["简单配置"], - "Simple ad-hoc metrics are not enabled for this dataset": [ - "此数据集没有启用简单的特别度量" + "Enable graph roaming": ["启用图形漫游"], + "Disabled": ["禁用"], + "Scale only": ["存在规模"], + "Move only": ["移动"], + "Scale and Move": ["缩放和移动"], + "Whether to enable changing graph position and scaling.": [ + "是否启用更改图形位置和缩放。" ], + "Node select mode": ["节点选择模式"], "Single": ["我的编辑"], - "Single Metric": ["按指标过滤"], - "Single Value": ["空值"], - "Single value": ["空值"], - "Single value type": ["单值类型"], - "Size of edge symbols": ["边缘符号的大小"], - "Size of marker. Also applies to forecast observations.": [ - "标记的大小也适用于预测观察。”" + "Multiple": ["多方"], + "Allow node selections": ["允许多节点选择"], + "Label threshold": ["标签阈值"], + "Minimum value for label to be displayed on graph.": [ + "在图形上显示标签的最小值。" ], - "Sizes of vehicles": ["工具尺寸"], - "Skip Blank Lines": ["跳过空白行"], - "Skip Initial Space": ["跳过初始空格"], - "Skip Rows": ["跳过行"], - "Slug": ["Slug"], - "Small": ["小"], - "Small number format": ["数字格式化"], + "Node size": ["节点大小"], + "Median node size, the largest node will be 4 times larger than the smallest": [ + "节点大小中位数,最大的节点将比最小的节点大4倍" + ], + "Edge width": ["边缘宽度"], + "Median edge width, the thickest edge will be 4 times thicker than the thinnest.": [ + "边缘宽度中间值,最厚的边缘将比最薄的边缘厚4倍" + ], + "Edge length": ["边长"], + "Edge length between nodes": ["节点之间的边长"], + "Gravity": ["重力"], + "Strength to pull the graph toward center": ["将图形拉向中心"], + "Repulsion": ["表达式"], + "Repulsion strength between nodes": ["节点间的斥力"], + "Friction": ["摩擦"], + "Friction between nodes": ["节点之间的摩擦"], + "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ + "显示图形结构中实体之间的连接。用于映射关系和显示网络中哪些节点是重要的。图表可以配置为强制引导或循环。如果您的数据具有地理空间组件,请尝试使用deck.gl圆弧图表。" + ], + "Graph Chart": ["圆点图"], + "Structural": ["结构"], + "Whether to sort descending or ascending": ["是降序还是升序排序"], + "Series type": ["图示类型"], "Smooth Line": [""], - "Solid": [""], - "Some roles do not exist": ["看板"], - "Sorry there was an error fetching database information: %s": [ - "抱歉,获取数据库信息时出错:%s" + "Step - start": [""], + "Step - middle": [""], + "Step - end": [""], + "Series chart type (line, bar etc)": ["系列图表类型(折线,柱状图等)"], + "Stack series": ["已保存查询"], + "Area chart": ["面积图"], + "Draw area under curves. Only applicable for line types.": [ + "在曲线下绘制区域。仅适用于线型。" ], - "Sorry there was an error fetching saved charts: ": [ - "抱歉,这个看板在获取图表时发生错误:" + "Opacity of area chart.": ["面积图的不透明度"], + "Marker": ["标记"], + "Draw a marker on data points. Only applicable for line types.": [ + "在数据点上绘制标记。仅适用于线型。" ], - "Sorry, An error occurred": ["抱歉,发生错误"], - "Sorry, something went wrong. Try again later.": [ - "抱歉,出了点问题。请稍后再试。" + "Marker size": ["标记大小"], + "Size of marker. Also applies to forecast observations.": [ + "标记的大小也适用于预测观察。”" ], - "Sorry, there appears to be no data": ["抱歉,似乎没有数据"], - "Sorry, there was an error saving this dashboard: %s": [ - "抱歉,这个看板在获取图表时发生错误:%s" + "Primary": ["主键"], + "Secondary": ["次要的"], + "Primary or secondary y-axis": ["主或次y轴"], + "Query A": ["查询 A"], + "Query B": ["查询 B"], + "Data Zoom": ["数据缩放"], + "Enable data zooming controls": ["启用数据缩放控件"], + "Minor Split Line": ["小的分模线"], + "Draw split lines for minor y-axis ticks": ["绘制次要y轴记号的分割线"], + "Primary y-axis format": ["主轴格式"], + "Logarithmic scale on primary y-axis": ["对数刻度在主y轴上"], + "Secondary y-axis format": ["次级y轴格式"], + "Secondary y-axis title": ["二级轴标题"], + "Logarithmic scale on secondary y-axis": ["二次y轴上的对数刻度"], + "Put the labels outside of the pie?": ["是否将标签显示在饼图外侧?"], + "Label Line": ["标签线"], + "Draw line from Pie to label when labels outside?": [ + "当标签在外侧时,是否在饼图到标签之间连线?" ], - "Sorry, your browser does not support copying.": [ - "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" + "Pie shape": ["饼图形状"], + "Outer Radius": ["外缘"], + "Outer edge of Pie chart": ["饼图外缘"], + "Inner Radius": ["内半径"], + "Inner radius of donut hole": ["圆环圈内部空洞的内径"], + "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ + "经典的,很好地展示了每个投资者获得了多少公司,“有多少人关注你的博客,或者预算的哪一部分流向了军事工业综合体饼状图很难精确解释。如果“相对比例”的清晰性很重要,可以考虑使用柱状图或其他图表来代替。" ], - "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ - "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" + "Pie Chart": ["饼图"], + "The maximum value of metrics. It is an optional configuration": [ + "度量的最大值。这是一个可选配置" ], - "Sort": ["排序:"], - "Sort Bars": ["排序条形栏"], - "Sort Descending": ["降序"], - "Sort Metric": ["排序指标"], - "Sort X Axis": ["排序X轴"], - "Sort Y Axis": ["排序Y轴"], - "Sort ascending": ["升序排序"], - "Sort bars by x labels.": ["按 x 标签排序。"], - "Sort by": ["排序 "], - "Sort by %s": ["排序 %s"], - "Sort by metric": ["排序指标"], - "Sort columns alphabetically": ["对列按字母顺序进行排列"], - "Sort columns by": ["对列按字母顺序进行排列"], - "Sort descending": ["降序"], - "Sort filter values": ["可被过滤"], - "Sort metric": ["排序指标"], - "Sort rows by": ["排序 "], - "Sort series in ascending order": [""], - "Sort type": ["图表类型"], - "Source": ["来源"], - "Source / Target": ["源/目标"], - "Source SQL": ["源 SQL"], - "Source category": ["数据库名称"], - "Spatial": ["空间"], - "Specific Date/Time": ["具体日期/时间"], - "Specify a schema (if database flavor supports this).": [ - "指定一个Schema(需要数据库支持)" + "Label position": ["标签位置"], + "Radar": ["雷达"], + "Customize Metrics": ["自定义指标"], + "Further customize how to display each metric": [ + "进一步定制如何显示每个指标" ], - "Specify duplicate columns as \"X.0, X.1\".": [ - "将重复列指定为“x.0,x.1”。" + "Circle radar shape": ["圆形雷达图"], + "Radar render type, whether to display 'circle' shape.": [ + "雷达渲染类型,是否显示圆形" ], - "Specify name to CREATE TABLE AS schema in: public": [""], - "Specify name to CREATE VIEW AS schema in: public": [""], - "Specify the database version. This should be used with Presto in order to enable query cost estimation.": [ - "指定数据库版本。这应该与Presto一起使用,以便启用查询成本估算。" + "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ + "在多个组中可视化一组平行的度量。每个组都使用自己的点线进行可视化,每个度量在图表中表示为一条边。" ], - "Split number": ["数字"], - "Stack Trace:": [""], - "Stack series": ["已保存查询"], - "Stack series on top of each other": ["叠加系列"], - "Stacked": ["堆叠"], - "Stacked Bars": ["堆叠条形图"], - "Stacked Style": ["堆积样式"], - "Stacked style": ["堆积样式"], - "Standard time series": ["时间序列"], - "Start": ["开始"], - "Start Review": ["数据预览"], - "Start angle": ["开始时间"], - "Start at (UTC)": ["由UTC开始"], - "Start date included in time range": ["开始日期包含在时间范围内"], - "Start y-axis at 0": ["y轴从0开始"], - "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data.": [ - "从零开始y轴。取消选中以从数据中的最小值开始y轴 " + "Radar Chart": ["雷达图"], + "Primary Metric": ["主计量指标"], + "The primary metric is used to define the arc segment sizes": [ + "主计量指标用于定义弧段大小。" + ], + "Secondary Metric": ["次计量指标"], + "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ + "次计量指标用来定义颜色与主度量的比率。如果两个度量匹配,则将颜色映射到级别组" ], - "State": ["状态"], - "Statement %(statement_num)s out of %(statement_count)s": [""], - "Statistical": ["统计"], - "Status": ["状态"], - "Step - end": [""], - "Step - middle": [""], - "Step - start": [""], - "Step type": ["数据类型"], - "Stop": ["停止"], - "Stop query": ["停止查询"], - "Stop running (Ctrl + x)": ["停止运行 (Ctrl + x)"], - "Stopped an unsafe database connection": ["已停止不安全的数据库连接"], - "Strength to pull the graph toward center": ["将图形拉向中心"], - "Stretched style": ["堆积样式"], - "Strings used for sheet names (default is the first sheet).": [ - "用于sheet名称的字符串(默认为第一个sheet)。" + "When only a primary metric is provided, a categorical color scale is used.": [ + "如果只提供了一个主计量指标,则使用分类色阶。" ], - "Structural": ["结构"], - "Style": ["风格"], - "Style the ends of the progress bar with a round cap": [ - "用圆帽设置进度条末端的样式" + "When a secondary metric is provided, a linear color scale is used.": [ + "当提供次计量指标时,会使用线性色阶。" ], - "Subdomain": ["子域"], - "Subheader": ["子标题"], - "Subheader Font Size": ["子标题的字体大小"], - "Submit": [""], - "Subtotal": [""], - "Success": ["成功"], - "Suffix to apply after the percentage display": [ - "百分比显示后要应用的后缀" + "Hierarchy": ["层次"], + "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ + "" + ], + "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ + "使用圆圈来可视化系统不同阶段的数据流。" ], - "Sum": [""], - "Sum as Fraction of Columns": [""], - "Sum as Fraction of Rows": [""], - "Sum as Fraction of Total": [""], - "Sum of values over specified period": ["指定期间内的值总和"], - "Sunburst": ["环状层次图"], "Sunburst Chart": ["旭日/太阳图"], - "Sunday": ["星期日"], - "Superset Chart": ["选择图表"], - "Superset Embedded SDK documentation.": [""], - "Superset chart": ["选择图表"], - "Superset dashboard": ["看板"], - "Superset encountered an error while running a command.": [ - "警报在执行查询时发现错误。" + "Multi-Levels": ["多层次"], + "When using other than adaptive formatting, labels may overlap": [""], + "zoom area": [""], + "restore zoom": [""], + "Series Style": ["线条样式"], + "Area chart opacity": ["面积图不透明度"], + "Opacity of Area Chart. Also applies to confidence band.": [ + "区域图的不透明度。也适用于置信带" ], - "Superset encountered an unexpected error.": ["报告计划意外错误。"], - "Supported databases": ["已支持数据库"], - "Survey Responses": ["调查结果"], - "Swap rows and columns": ["交换组和列"], + "Marker Size": ["标记大小"], + "Area Chart": ["面积图"], + "AXIS TITLE MARGIN": [""], + "Bar Chart": ["条形图"], + "Line Chart": ["多线图"], + "Scatter Plot": ["散点图"], + "Step type": ["数据类型"], + "Start": ["开始"], + "End": ["结束"], + "Defines whether the step should appear at the beginning, middle or end between two data points": [ + "定义步骤应出现在两个数据点之间的开始、中间还是结束处" + ], + "Id": ["Id"], + "Name of the id column": ["ID列名称"], + "Parent": ["父类"], + "Name of the column containing the id of the parent node": [ + "包含父节点id的列的名称" + ], + "Optional name of the data column.": ["数据列的可选名称"], + "Root node id": ["根节点id"], + "Id of root node of the tree.": ["树的根节点的ID。"], + "Metric for node values": ["节点值的度量"], + "Tree layout": ["布局"], + "Orthogonal": ["正交化"], + "Radial": ["径向"], + "Layout type of tree": ["树的布局类型"], + "Tree orientation": ["方向"], + "Left to Right": ["从左到右"], + "Right to Left": ["右到左"], + "Top to Bottom": ["点击回顶部"], + "Bottom to Top": ["自下而上"], + "Orientation of tree": ["树的方向"], + "Node label position": ["节点标签位置"], + "left": ["警报"], + "right": ["高度"], + "bottom": ["底部"], + "Child label position": ["子标签位置"], + "Position of child node label on tree": ["子节点标签在树上的位置"], + "Emphasis": ["重点"], + "ancestor": ["上一个"], + "descendant": ["降序"], + "Which relatives to highlight on hover": ["在悬停时突出显示哪些关系"], "Symbol": ["符号"], - "Symbol of two ends of edge line": ["边线两端的符号"], + "Empty circle": ["空圈"], + "Circle": ["圆"], + "Rectangle": ["长方形"], + "Triangle": ["三角形"], + "Diamond": ["下钻"], + "Pin": ["Pin"], + "Arrow": ["箭头"], "Symbol size": ["符号的大小"], - "Sync columns from source": ["从源同步列"], - "Syntax": ["语法"], - "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "Size of edge symbols": ["边缘符号的大小"], + "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ + "使用熟悉的树状结构可视化多层次结构。" + ], + "Tree Chart": ["树状图"], + "Show Upper Labels": ["显示标签"], + "Show labels when the node has children.": ["当节点有子节点时显示标签"], + "Treemap": ["树状地图"], + "Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [ "" ], - "TABLES": ["表"], - "THU": ["星期四"], - "TUE": ["星期二"], - "Tab name": ["选项卡名字"], - "Tab title": ["选项卡标题"], - "Table": ["表"], - "Table %(table)s wasn't found in the database %(db)s": [ - "在数据库 %(db)s 中找不到表 %(table)s" + "A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [ + "" ], - "Table Exists": ["表已存在处理"], - "Table Name": ["表名"], - "Table View": ["表视图"], - "Table [%(table_name)s] could not be found, please double check your database connection, schema, and table name": [ - "找不到 [%(table_name)s] 表,请仔细检查您的数据库连接、Schema 和 表名" + "page_size.all": [""], + "Loading...": ["加载中..."], + "Write a handlebars template to render the data": [""], + "Handlebars": ["句柄图"], + "must have a value": ["必填"], + "A handlebars template that is applied to the data": [""], + "Include time": ["包含时间"], + "Whether to include the time granularity as defined in the time section": [ + "是否包含时间段中定义的时间粒度" ], - "Table [%{table}s] could not be found, please double check your database connection, schema, and table name, error: {}": [ - "找不到 [%{table}s] 表,请仔细检查您的数据库连接、Schema 和 表名" + "Percentage metrics": ["百分比指标"], + "Select one or many metrics to display, that will be displayed in the percentages of total. Percentage metrics will be calculated only from data within the row limit. You can use an aggregation function on a column or write custom SQL to create a percentage metric.": [ + "" ], - "Table cache timeout": ["图表缓存超时"], - "Table name cannot contain a schema": [""], - "Table name undefined": ["表名未定义"], - "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ - "可视化检验的表格,用于了解各组之间的统计差异" + "Show totals": ["显示总计"], + "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ + "显示所选指标的总聚合。注意行限制并不应用于结果" ], - "Tables": ["数据表"], - "Tabs": ["选项卡"], - "Tabular": ["表格"], - "Tag name is invalid (cannot contain ':')": [""], - "Tags": ["标签"], - "Take your data points, and group them into \"bins\" to see where the densest areas of information lie": [ - "获取数据点,并将其分组,以查看信息最密集的区域" + "Ordering": ["排序"], + "Order results by selected columns": ["按选定列对结果进行排序"], + "Sort descending": ["降序"], + "Server pagination": ["服务器分页"], + "Enable server side pagination of results (experimental feature)": [ + "支持服务器端结果分页(实验功能)" ], - "Target": ["目标"], - "Target category": ["目标类别"], - "Target value": ["目标值"], - "Template Name": ["模板名称"], - "Template parameters": ["模板参数"], - "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ - "模板链接,可以包含{{度量}}或来自控件的其他值。" + "Server Page Length": ["页面长度"], + "Rows per page, 0 means no pagination": ["每页行数,0 表示没有分页"], + "Query mode": ["查询模式"], + "Group By, Metrics or Percentage Metrics must have a value": [ + "分组、指标或百分比指标必须具有值" ], - "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ - "当浏览器窗口关闭或导航到其他页面时,终止正在运行的查询。适用于Presto、Hive、MySQL、Postgres和Snowflake数据库" + "You need to configure HTML sanitization to use CSS": [""], + "CSS applied to the chart": [""], + "Filters for comparison must have a value": [""], + "Add color for positive/negative change": [""], + "Big Number with Time Period Comparison": [""], + "Columns to group by on the columns": ["必须是分组列"], + "Rows": ["行"], + "Columns to group by on the rows": ["行上分组所依据的列"], + "Apply metrics on": ["应用指标到"], + "Use metrics as a top level group for columns or for rows": [ + "将指标作为列或行的顶级组使用" ], - "Test Connection": ["测试连接"], - "Test connection": ["测试连接"], - "Text": ["文本"], - "Text align": ["文本对齐"], - "Text embedded in email": ["邮件中嵌入的文本"], - "The API response from %s does not match the IDatabaseTable interface.": [ - "" + "Aggregation function": ["聚合功能"], + "Sum": [""], + "Median": [""], + "Sample Variance": [""], + "Minimum": ["最小"], + "Maximum": ["最大"], + "First": [""], + "Last": ["上一"], + "Sum as Fraction of Total": [""], + "Sum as Fraction of Rows": [""], + "Sum as Fraction of Columns": [""], + "Count as Fraction of Total": [""], + "Count as Fraction of Rows": [""], + "Count as Fraction of Columns": [""], + "Aggregate function to apply when pivoting and computing the total rows and columns": [ + "在旋转和计算总的行和列时,应用聚合函数" ], - "The CSS for individual dashboards can be altered here, or in the dashboard view where changes are immediately visible": [ - "可以在这里或者在看板视图修改单个看板的CSS样式" + "Show rows total": ["显示总计行数"], + "Display row level total": ["显示行级合计"], + "Show columns total": ["显示总计"], + "Display column level total": ["显示列级别合计"], + "Transpose pivot": ["转置透视图"], + "Swap rows and columns": ["交换组和列"], + "Combine metrics": ["整合指标"], + "Display metrics side by side within each column, as opposed to each column being displayed side by side for each metric.": [ + "在每个列中并排显示指标,而不是每个指标并排显示每个列。" ], - "The CTAS (create table as select) doesn't have a SELECT statement at the end. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [ - "CTA(create table as select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" + "D3 time format for datetime columns": ["D3时间格式的时间列"], + "Sort rows by": ["排序 "], + "key a-z": ["a-z"], + "key z-a": ["z-a"], + "value ascending": ["指标升序"], + "value descending": ["指标降序"], + "Change order of rows.": ["更改行的顺序。"], + "Available sorting modes:": ["可用分类模式:"], + "By key: use row names as sorting key": ["使用行名作为排序关键字"], + "By value: use metric values as sorting key": [ + "使用度量值作为排序关键字" ], - "The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive polygons, lines and points (circles, icons and/or texts).": [ - "" + "Sort columns by": ["对列按字母顺序进行排列"], + "Change order of columns.": ["更改列的顺序。"], + "By key: use column names as sorting key": ["使用列名作为排序关键字"], + "Rows subtotal position": ["行小计的位置"], + "Position of row level subtotal": ["行级小计的位置"], + "Columns subtotal position": ["列的小计位置"], + "Position of column level subtotal": ["列级小计的位置"], + "Conditional formatting": ["条件格式设置"], + "Apply conditional color formatting to metrics": [ + "将条件颜色格式应用于指标" ], - "The URL is missing the dataset_id or slice_id parameters.": [""], - "The X-axis is not on the filters list": [""], - "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ - "" + "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ + "用于通过将多个统计信息分组在一起来汇总一组数据" ], - "The access requests seem to have been deleted": ["访问请求已被删除"], - "The annotation has been saved": ["注释已保存。"], - "The annotation has been updated": ["注释已更新。"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "用于分配颜色的源节点类别。如果一个节点与多个类别关联,则只使用第一个类别" + "Pivot Table": ["透视表"], + "Total (%(aggregatorName)s)": [""], + "Unknown input format": [""], + "search.num_records": [""], + "page_size.show": [""], + "page_size.entries": [""], + "Shift + Click to sort by multiple columns": [""], + "Totals": ["显示总计"], + "Timestamp format": ["时间戳格式"], + "Page length": ["页长"], + "Search box": ["搜索框"], + "Whether to include a client-side search box": ["是否包含客户端搜索框"], + "Cell bars": ["单元格柱状图"], + "Whether to display a bar chart background in table columns": [ + "为指标添加条状图背景" ], - "The chart does not exist": ["图表不存在"], - "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ - "经典的,很好地展示了每个投资者获得了多少公司,“有多少人关注你的博客,或者预算的哪一部分流向了军事工业综合体饼状图很难精确解释。如果“相对比例”的清晰性很重要,可以考虑使用柱状图或其他图表来代替。" + "Align +/-": ["对齐 +/-"], + "Whether to align background charts with both positive and negative values at 0": [ + "是否 +/- 对齐背景图数值" ], - "The color for points and clusters in RGB": ["点和簇的颜色(RGB)"], - "The color scheme for rendering chart": ["绘制图表的配色方案"], - "The column was deleted or renamed in the database.": [ - "该列已在数据库中删除或重命名。" + "Color +/-": ["色彩 +/-"], + "Allow columns to be rearranged": [""], + "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ + "" ], - "The country code standard that Superset should expect to find in the [country] column": [ - "Superset 希望能够在 [国家] 栏中找到的 国家 / 地区 的标准代码" + "Customize columns": ["自定义列"], + "Further customize how to display each column": [ + "进一步自定义如何显示每列" ], - "The dashboard has been saved": ["该看板已成功保存。"], - "The data source seems to have been deleted": ["数据源已经被删除"], - "The data type that was inferred by the database. It may be necessary to input a type manually for expression-defined columns in some cases. In most case users should not need to alter this.": [ - "由数据库推断的数据类型。在某些情况下,可能需要为表达式定义的列手工输入一个类型。在大多数情况下,用户不需要修改这个数据类型。" + "Apply conditional color formatting to numeric columns": [ + "将条件颜色格式应用于数字列" ], - "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ - "数据库 %s 已经关联了 %s 图表和 %s 仪表盘,并且用户在该数据库上打开了 %s 个 SQL 编辑器标签。确定要继续吗?删除数据库将破坏这些对象。" + "Classic row-by-column spreadsheet like view of a dataset. Use tables to showcase a view into the underlying data or to show aggregated metrics.": [ + "数据集的典型的逐行逐列电子表格视图。使用表格显示底层数据的视图或显示聚合指标。" ], - "The database is currently running too many queries.": [ - "数据库当前运行的查询太多" + "Show": [""], + "Word Cloud": ["词汇云"], + "Minimum Font Size": ["最小字体大小"], + "Font size for the smallest value in the list": [ + "列表中最小值的字体大小" ], - "The database is under an unusual load.": ["数据库负载异常。"], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "找不到此查询中引用的数据库。请与管理员联系以获得进一步帮助,或重试。" + "Maximum Font Size": ["最大字体大小"], + "Font size for the biggest value in the list": ["列表中最大值的字体大小"], + "Word Rotation": ["单词旋转"], + "Rotation to apply to words in the cloud": [ + "应用于词云中的单词的旋转方式" ], - "The database returned an unexpected error.": ["数据库返回意外错误。"], - "The database was deleted.": ["数据集已保存"], - "The database was not found.": ["数据库没有找到"], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "数据集 %s 已经链接到 %s 图表和 %s 看板内。确定要继续吗?删除数据集将破坏这些对象。" + "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ + "可视化列中出现频率最高的单词。字体越大,出现频率越高。" ], - "The dataset associated with this chart no longer exists": [ - "这个图表所链接的数据集可能被删除了。" + "N/A": ["N/A"], + "fetching": ["抓取中"], + "The query couldn't be loaded": ["这个查询无法被加载"], + "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ + "您的查询已被调度。要查看查询的详细信息,请跳转到保存查询页面查看。" ], - "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ - "这里公开的数据集配置会影响使用此数据集的所有图表。请注意,更改此处的设置可能会以未预想的方式影响其他图表。" + "Your query could not be scheduled": ["无法调度您的查询"], + "Failed at retrieving results": ["检索结果失败"], + "Unknown error": ["未知错误"], + "Query was stopped.": ["查询被终止。"], + "Failed at stopping query. %s": ["停止查询失败。 %s"], + "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "无法将表结构状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" ], - "The dataset has been saved": ["数据集已保存"], - "The dataset linked to this chart may have been deleted.": [ - "这个图表所链接的数据集可能被删除了。" + "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "无法将查询状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" ], - "The datasource couldn't be loaded": ["这个查询无法被加载"], - "The datasource is too large to query.": ["数据源太大,无法进行查询。"], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "作为为小部件标题可以在仪表板视图中显示的描述,支持markdown格式语法。" + "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ + "无法将查询编辑器状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" ], - "The distance between cells, in pixels": [ - "单元格之间的距离,以像素为单位" + "Unable to add a new tab to the backend. Please contact your administrator.": [ + "无法将新选项卡添加到后端。请与管理员联系。" ], - "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ - "1. engine_params 对象在调用 sqlalchemy.create_engine 时被引用, metadata_params 在调用 sqlalchemy.MetaData 时被引用。" + "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ + "-- 注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - " `series_columns`中的下列条目在 `columns` 中缺失: %(columns)s. " + "Copy of %s": ["%s 的副本"], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "设置活动tab页时出错。请与管理员联系。" ], - "The function to use when aggregating points into groups": [""], - "The host \"%(hostname)s\" might be down and can't be reached.": [ - "主机 \"%(hostname)s\" 可能已关闭,无法连接到" + "An error occurred while fetching tab state": ["获取tab页状态时出错"], + "An error occurred while removing tab. Please contact your administrator.": [ + "删除tab页时出错。请与管理员联系。" ], - "The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s.": [ - "主机 \"%(hostname)s\" 可能已关闭,无法通过端口访问 " + "An error occurred while removing query. Please contact your administrator.": [ + "删除查询时出错。请与管理员联系。" ], - "The host might be down, and can't be reached on the provided port.": [ - "主机可能宕机了,无法在所提供的端口上连接到它" + "Your query could not be saved": ["您的查询无法保存"], + "Your query was saved": ["您的查询已保存"], + "Your query was updated": ["您的查询已保存"], + "Your query could not be updated": ["无法更新您的查询"], + "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ + "在后端存储查询时出错。为避免丢失更改,请使用 \"保存查询\" 按钮保存查询。" ], - "The hostname \"%(hostname)s\" cannot be resolved.": [ - "无法解析主机名 \"%(hostname)s\" " + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "获取表格元数据时发生错误。请与管理员联系。" ], - "The hostname provided can't be resolved.": ["提供的主机名无法解析。"], - "The id of the active chart": ["活动图表的ID"], - "The list of charts associated with this table. By altering this datasource, you may change how these associated charts behave. Also note that charts need to point to a datasource, so this form will fail at saving if removing charts from a datasource. If you want to change the datasource for a chart, overwrite the chart from the 'explore view'": [ - "与此表关联的图表列表。通过更改此数据源,您可以更改这些相关图表的行为。还要注意,图表需要指向数据源,如果从数据源中删除图表,则此窗体将无法保存。如果要为图表更改数据源,请从“浏览视图”更改该图表。" + "An error occurred while expanding the table schema. Please contact your administrator.": [ + "展开表结构时出错。请与管理员联系。" ], - "The maximum number of events to return, equivalent to the number of rows": [ - "返回的最大事件数,相当于行数" + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "收起表结构时出错。请与管理员联系。" ], - "The maximum number of subdivisions of each group; lower values are pruned first": [ - "每组的最大细分数;较低的值首先被删除" + "An error occurred while removing the table schema. Please contact your administrator.": [ + "删除表结构时出错。请与管理员联系。" ], - "The maximum value of metrics. It is an optional configuration": [ - "度量的最大值。这是一个可选配置" + "Shared query": ["已分享的查询"], + "The datasource couldn't be loaded": ["这个查询无法被加载"], + "An error occurred while creating the data source": [ + "创建数据源时发生错误" ], - "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ - "额外字段中的元数据参数配置不正确。键 %(key)s 无效。" + "An error occurred while fetching function names.": [ + "获取函数名称时出错。" ], - "The metadata_params in Extra field is not configured correctly. The key %{key}s is invalid.": [ - "额外字段中的元数据参数配置不正确。键 %{key}s 无效。" + "SQL Lab uses your browser's local storage to store queries and results.\nCurrently, you are using %(currentUsage)s KB out of %(maxStorage)d KB storage space.\nTo keep SQL Lab from crashing, please delete some query tabs.\nYou can re-access these queries by using the Save feature before you delete the tab.\nNote that you will need to close other SQL Lab windows before you do this.": [ + "SQL Lab使用浏览器的本地存储来存储查询和结果" ], - "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ - "metadata_params对象被解压缩到sqlalchemy.metadata调用中。" + "Foreign key": [""], + "Estimate selected query cost": ["运行选定的查询"], + "Estimate cost": ["运行选定的查询"], + "Cost estimate": ["成本估算"], + "Creating a data source and creating a new tab": [ + "创建数据源,并弹出一个新的标签页" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "显示值所需的滚动周期的最小值。例如,如果您想累积 7 天的总额,您可能希望您的“最小周期”为 7,以便显示的所有数据点都是 7 个区间的总和。这将隐藏掉前 7 个阶段的“加速”效果" + "An error occurred": ["发生了一个错误"], + "Explore the result set in the data exploration view": [ + "在数据探索视图中探索结果集" ], - "The number color \"steps\"": ["色彩 \"Steps\" 数字"], - "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ - "用于移动时间列的小时数(负数或正数)。这可用于将UTC时间移动到本地时间" + "Source SQL": ["源 SQL"], + "Executed SQL": ["已执行的SQL"], + "Run query": ["运行查询"], + "Stop query": ["停止查询"], + "New tab": ["关闭标签"], + "Keyboard shortcuts": [""], + "State": ["状态"], + "Duration": ["持续时间"], + "Results": ["结果"], + "Actions": ["操作"], + "Success": ["成功"], + "Failed": ["失败"], + "Running": ["正在执行"], + "Offline": ["离线"], + "Scheduled": ["被调度"], + "Unknown Status": ["未知状态"], + "Edit": ["编辑"], + "Data preview": ["数据预览"], + "Overwrite text in the editor with a query on this table": [ + "使用该表上的查询覆盖编辑器中的文本" ], + "Run query in a new tab": ["在新标签中运行查询"], + "Remove query from log": ["从日志中删除查询"], + "Unable to create chart without a query id.": [""], + "Save & Explore": ["保存和浏览"], + "Overwrite & Explore": ["覆写和浏览"], + "Save this query as a virtual dataset to continue exploring": [""], + "Download to CSV": ["下载到CSV"], + "Copy to Clipboard": ["复制到剪贴板"], + "Filter results": ["过滤结果"], "The number of results displayed is limited to %(rows)d by the configuration DISPLAY_MAX_ROW. Please add additional limits/filters or download to csv to see more rows up to the %(limit)d limit.": [ "显示的结果数由配置DISPLAY_MAX_ROW限制为 %(rows)d 。请添加其他限制/筛选器或下载到csv以查看更多行数,限制为 %(limit)d " ], "The number of results displayed is limited to %(rows)d. Please add additional limits/filters, download to csv, or contact an admin to see more rows up to the %(limit)d limit.": [ "显示的结果数限制为 %(rows)d。请添加其他筛选器,下载到csv,或与管理员联系以查看 %(limit)d 的更多行”" ], + "The number of rows displayed is limited to %(rows)d by the query": [ + "查询将显示的行数限制为 %(rows)d " + ], "The number of rows displayed is limited to %(rows)d by the limit dropdown.": [ "显示的行数通过限制下拉框限制为 %(rows)d 。" ], - "The number of rows displayed is limited to %(rows)d by the query": [ - "查询将显示的行数限制为 %(rows)d " + "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ + "查询和限制下拉列表将显示的行数限制为 %(rows)d" + ], + "%(rows)d rows returned": ["%(rows)d行被检索到"], + "Track job": ["跟踪任务"], + "Query was stopped": ["查询被终止。"], + "Database error": ["数据库错误"], + "was created": ["已创建"], + "Query in a new tab": ["在新标签中查询"], + "The query returned no data": ["查询无结果"], + "Fetch data preview": ["获取数据预览"], + "Refetch results": ["重新获取结果"], + "Stop": ["停止"], + "Run selection": ["运行选定的查询"], + "Run": ["执行"], + "Stop running (Ctrl + x)": ["停止运行 (Ctrl + x)"], + "Run query (Ctrl + Return)": ["执行运行 (Ctrl + Return)"], + "Save": ["保存"], + "An error occurred saving dataset": ["保存数据集时发生错误"], + "Save or Overwrite Dataset": [""], + "Back": ["返回"], + "Save as new": ["保存为新的"], + "Undefined": ["未命名"], + "Save as": ["另存为"], + "Save query": ["保存查询"], + "Cancel": ["取消"], + "Update": ["更新"], + "Label for your query": ["为您的查询设置标签"], + "Write a description for your query": ["为您的查询写一段描述"], + "Submit": [""], + "Schedule query": ["分享查询"], + "Schedule": ["调度"], + "There was an error with your request": ["您的请求有错误"], + "Please save the query to enable sharing": ["请保存查询以启用共享"], + "Copy query link to your clipboard": ["将查询链接复制到剪贴板"], + "Save the query to enable this feature": ["请保存查询以启用共享"], + "Copy link": ["复制链接"], + "No stored results found, you need to re-run your query": [ + "找不到存储的结果,需要重新运行查询" + ], + "Preview: `%s`": ["预览 %s"], + "Query history": ["历史查询"], + "Schedule the query periodically": ["定期调度查询"], + "You must run the query successfully first": ["必须先成功运行查询"], + "Autocomplete": ["自动补全"], + "CREATE TABLE AS": ["允许 CREATE TABLE AS"], + "CREATE VIEW AS": ["允许 CREATE VIEW AS"], + "Estimate the cost before running a query": [ + "在运行查询之前计算执行计划" + ], + "Specify name to CREATE VIEW AS schema in: public": [""], + "Specify name to CREATE TABLE AS schema in: public": [""], + "Select a database to write a query": ["选择要写入查询的数据库"], + "Choose one of the available databases from the panel on the left.": [ + "从左侧的面板中选择一个可用的数据库" ], - "The number of rows displayed is limited to %(rows)d by the query and limit dropdown.": [ - "查询和限制下拉列表将显示的行数限制为 %(rows)d" + "Create": ["创建"], + "Collapse table preview": ["折叠表的预览"], + "Expand table preview": ["展开表格预览"], + "Reset state": ["状态重置"], + "Enter a new title for the tab": ["输入标签的新标题"], + "Close tab": ["关闭标签"], + "Rename tab": ["重命名标签"], + "Expand tool bar": ["展开工具栏"], + "Hide tool bar": ["隐藏工具栏"], + "Close all other tabs": ["关闭其他tab页"], + "Duplicate tab": ["复制tab页"], + "Add a new tab": ["添加新的标签页"], + "New tab (Ctrl + q)": ["新建Tab页 (Ctrl + q)"], + "New tab (Ctrl + t)": ["新建Tab页 (Ctrl + t)"], + "Add a new tab to create SQL Query": [""], + "An error occurred while fetching table metadata": [ + "获取表格元数据时发生错误" ], - "The number of seconds before expiring the cache": [ - "终止缓存前的时间(秒)" + "Copy partition query to clipboard": ["将分区查询复制到剪贴板"], + "latest partition:": ["最新分区:"], + "Keys for table": ["表的键"], + "View keys & indexes (%s)": ["查看键和索引(%s)"], + "Original table column order": ["原始表列顺序"], + "Sort columns alphabetically": ["对列按字母顺序进行排列"], + "Copy SELECT statement to the clipboard": ["将 SELECT 语句复制到剪贴板"], + "Show CREATE VIEW statement": ["显示 CREATE VIEW 语句"], + "CREATE VIEW statement": ["CREATE VIEW 语句"], + "Remove table preview": ["删除表格预览"], + "below (example:": [""], + "), and they become available in your SQL (example:": [""], + "by using": [""], + "Edit template parameters": ["编辑模板参数"], + "Parameters ": ["参数"], + "Invalid JSON": ["无效的JSON"], + "Untitled query": ["未命名的查询"], + "%s%s": ["%s%s"], + "Before": ["之前"], + "After": ["之后"], + "Click to see difference": ["点击查看差异"], + "Altered": ["已更改"], + "Chart changes": ["图表变化"], + "Loaded data cached": ["数据缓存已加载"], + "Loaded from cache": ["从缓存中加载"], + "Click to force-refresh": ["点击强制刷新"], + "Add required control values to preview chart": [""], + "Your chart is ready to go!": [""], + "Click on \"Create chart\" button in the control panel on the left to preview a visualization or": [ + "" ], - "The object does not exist in the given database.": [ - "源数据库中存在的表的名称" + "click here": [""], + "No results were returned for this query": [""], + "An error occurred while loading the SQL": ["创建数据源时发生错误"], + "Updating chart was stopped": ["更新图表已停止"], + "An error occurred while rendering the visualization: %s": [ + "渲染可视化时发生错误:%s" ], - "The parameter %(parameters)s in your query is undefined.": [ - "查询中的以下参数未定义:%(parameters)s 。" + "Network error.": ["网络异常。"], + "Cross-filter will be applied to all of the charts that use this dataset.": [ + "" ], - "The password provided for username \"%(username)s\" is incorrect.": [ - "用户名 \"%(username)s\" 提供的密码不正确。" + "You can also just click on the chart to apply cross-filter.": [""], + "You can't apply cross-filter on this data point.": [""], + "Failed to load dimensions for drill by": [""], + "Drill by is not yet supported for this chart type": [""], + "Drill by is not available for this data point": [""], + "Drill by": [""], + "Failed to generate chart edit URL": [""], + "Close": ["关闭"], + "Failed to load chart data.": [""], + "Drill to detail by": [""], + "Drill to detail": [""], + "Drill to detail is disabled because this chart does not group data by dimension value.": [ + "" ], - "The password provided when connecting to a database is not valid.": [ - "连接数据库时提供的密码无效。" + "Drill to detail by value is not yet supported for this chart type.": [ + "" ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" + "Right-click on a dimension value to drill to detail by that value.": [ + "" ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "需要以下数据库的密码才能将它们与仪表板一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" + "Drill to detail: %s": [""], + "No rows were returned for this dataset": [""], + "Copy": ["复制"], + "Copy to clipboard": ["复制到剪贴板"], + "Copied to clipboard!": ["复制到剪贴板!"], + "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ + "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "需要以下数据库的密码才能将其与数据集一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" + "every": ["任意"], + "every month": ["每个月"], + "every day of the month": ["每月的每一天"], + "day of the month": ["一个月中的天数"], + "every day of the week": ["一周的每一天"], + "day of the week": ["一周的天数"], + "every hour": ["每小时"], + "every minute": ["每分钟 UTC"], + "minute": ["分"], + "reboot": ["重启"], + "Every": ["每个"], + "in": ["在"], + "on": ["位于"], + "and": ["和"], + "at": ["在"], + ":": [":"], + "minute(s)": ["分钟"], + "Invalid cron expression": ["无效cron表达式"], + "Clear": ["清除"], + "Sunday": ["星期日"], + "Monday": ["星期一"], + "Tuesday": ["星期二"], + "Wednesday": ["星期三"], + "Thursday": ["星期四"], + "Friday": ["星期五"], + "Saturday": ["星期六"], + "January": ["一月"], + "February": ["二月"], + "March": ["三月"], + "April": ["四月"], + "May": ["五月"], + "June": ["六月"], + "July": ["七月"], + "August": ["八月"], + "September": ["九月"], + "October": ["十月"], + "November": ["十一月"], + "December": ["十二月"], + "SUN": ["星期日"], + "MON": ["星期一"], + "TUE": ["星期二"], + "WED": ["星期三"], + "THU": ["星期四"], + "FRI": ["星期五"], + "SAT": ["星期六"], + "JAN": ["一月"], + "FEB": ["二月"], + "MAR": ["三月"], + "APR": ["四月"], + "MAY": ["五月"], + "JUN": ["六月"], + "JUL": ["七月"], + "AUG": ["八月"], + "SEP": ["九月"], + "OCT": ["十月"], + "NOV": ["十一月"], + "DEC": ["十二月"], + "There was an error loading the schemas": [ + "抱歉,这个看板在获取图表时发生错误:" ], - "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" + "Force refresh schema list": ["强制刷新数据"], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "警告!如果元数据不存在,更改数据集可能会破坏图表。" + ], + "Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [ + "如果图表依赖于目标数据集中不存在的列或元数据,则更改数据集可能会破坏图表" ], + "dataset": ["数据集"], + "Connection": ["连接"], + "Warning!": ["警告!"], + "Search / Filter": ["搜索 / 过滤"], + "Add item": ["增加条件"], + "BOOLEAN": [""], + "Physical (table or view)": ["物理(表或视图)"], + "Virtual (SQL)": ["虚拟(SQL)"], + "Data type": ["数据类型"], + "Datetime format": ["时间格式"], "The pattern of timestamp format. For strings use ": [ "时间戳格式的模式。供字符串使用 " ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ - "旋转时间的周期性。" + "Python datetime string pattern": ["Python日期格式模板"], + " expression which needs to adhere to the ": [" 表达式并基于 "], + "ISO 8601": ["ISO 8601"], + " standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ + "来确保字符的表达顺序与时间顺序一致的标准。如果时间戳格式不符合 ISO 8601 标准,则需要定义表达式和类型,以便将字符串转换为日期或时间戳。注意:当前不支持时区。如果时间以epoch格式存储,请输入 `epoch_s` or `epoch_ms` 。如果没有指定任何模式,我们可以通过额外的参数在每个数据库/列名级别上使用可选的默认值。" ], - "The pixel radius": ["像素半径"], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "指向物理表(或视图)的指针。请记住,图表将与此逻辑表相关联,并且此逻辑表指向此处引用的物理表。" + "Certified By": ["认证"], + "Person or group that has certified this metric": [ + "认证此指标的个人或团体" ], - "The port is closed.": ["报告失败"], - "The port number is invalid.": ["数据库参数无效"], - "The primary metric is used to define the arc segment sizes": [ - "主计量指标用于定义弧段大小。" + "Certified by": ["认证"], + "Certification details": ["认证细节"], + "Details of the certification": ["认证详情"], + "Is dimension": ["维度"], + "Is filterable": ["可被过滤"], + "Select owners": ["运行选定的查询"], + "Modified columns: %s": ["修改的列:%s"], + "Removed columns: %s": ["删除的列:%s"], + "New columns added: %s": ["新增的列:%s"], + "Metadata has been synced": ["元数据已同步"], + "An error has occurred": ["发生了一个错误"], + "Column name [%s] is duplicated": ["列名 [%s] 重复"], + "Metric name [%s] is duplicated": ["指标名称 [%s] 重复"], + "Calculated column [%s] requires an expression": [ + "计算列 [%s] 需要一个表达式" ], - "The provided `rows` argument is not a valid integer.": [ - "提供的 `rows` 参数不是有效整数。" + "Invalid currency code in saved metrics": [""], + "Basic": ["基础"], + "Default URL": ["默认URL"], + "Default URL to redirect to when accessing from the dataset list page": [ + "从数据集列表页访问时重定向到的默认URL" ], - "The query associated with the results was deleted.": [ - "删除与结果关联的查询。" + "Autocomplete filters": ["自适配过滤条件"], + "Whether to populate autocomplete filters options": [ + "是否填充自适配过滤条件选项" ], - "The query associated with these results could not be found. You need to re-run the original query.": [ - "找不到与这些结果相关联的查询。你需要重新运行查询" + "Autocomplete query predicate": ["自动补全查询谓词"], + "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ + "当使用 \"自适配过滤条件\" 时,这可以用来提高获取查询数据的性能。使用此选项可将谓词(WHERE子句)应用于从表中进行选择不同值的查询。通常,这样做的目的是通过对分区或索引的相关时间字段配置相对应的过滤时间来限制扫描。" ], - "The query contains one or more malformed template parameters.": [ - "该查询包含一个或多个格式不正确的模板参数。" + "Extra data to specify table metadata. Currently supports metadata of the format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" }, \"warning_markdown\": \"This is a warning.\" }`.": [ + "指定表元数据的额外内容。目前支持的认证数据格式为:`{ \"certification\": { \"certified_by\": \"Data Platform Team\", \"details\": \"This table is the source of truth.\" } }`." ], - "The query couldn't be loaded": ["这个查询无法被加载"], - "The query has a syntax error.": ["查询有语法错误。"], - "The query returned no data": ["查询无结果"], - "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ - "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或者数据库可能负载过重。" + "Cache timeout": ["缓存时间"], + "Hours offset": ["小时偏移"], + "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ + "用于移动时间列的小时数(负数或正数)。这可用于将UTC时间移动到本地时间" ], - "The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn off clustering, but beware that a large number of points (>1000) will cause lag.": [ - "算法用来定义一个簇的半径(以像素为单位)。选择0关闭聚,但要注意大量的点(>1000)会导致处理时间变长。" + "When the secondary temporal columns are filtered, apply the same filter to the main datetime column.": [ + "" ], - "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ - "单个点的半径(不在簇中的点)。一个数值列或“AUTO”,它根据最大的聚类来缩放点。" + "Click the lock to make changes.": ["单击锁以进行更改。"], + "Click the lock to prevent further changes.": [ + "单击锁定以防止进一步更改。" ], - "The report has been created": ["数据集已保存"], - "The results backend no longer has the data from the query.": [ - "结果后端不再拥有来自查询的数据。" + "virtual": ["虚拟信息"], + "Dataset name": ["数据集名称"], + "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ + "指定SQL时,数据源会充当视图。在对生成的父查询进行分组和筛选时,系统将使用此语句作为子查询。" ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "后端存储的结果以不同的格式存储,而且不再可以反序列化" + "Physical": ["物理信息"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "指向物理表(或视图)的指针。请记住,图表将与此逻辑表相关联,并且此逻辑表指向此处引用的物理表。" ], - "The rich tooltip shows a list of all series for that point in time": [ - "详细提示显示了该时间点的所有序列的列表。" + "This field is used as a unique identifier to attach the metric to charts. It is also used as the alias in the SQL query.": [ + "" ], - "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ - "表 \"%(schema)s\" 不存在。必须使用有效的表来运行此查询。" + "D3 format": ["D3 格式"], + "Metric currency": [""], + "Warning": ["警告!"], + "Optional warning about use of this metric": ["关于使用此指标的可选警告"], + "Be careful.": ["小心。"], + "Changing these settings will affect all charts using this dataset, including charts owned by other people.": [ + "更改这些设置将影响使用此数据集的所有图表,包括其他人拥有的图表。" ], - "The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run this query.": [ - "表 \"%(schema_name)s\" 不存在。必须使用有效的表来运行此查询。" + "Sync columns from source": ["从源同步列"], + "Calculated columns": ["计算列"], + "This field is used as a unique identifier to attach the calculated dimension to charts. It is also used as the alias in the SQL query.": [ + "" ], - "The schema was deleted or renamed in the database.": [ - "该列已在数据库中删除或重命名。" + "": [""], + "Settings": ["设置"], + "The dataset has been saved": ["数据集已保存"], + "The dataset configuration exposed here\n affects all the charts using this dataset.\n Be mindful that changing settings\n here may affect other charts\n in undesirable ways.": [ + "这里公开的数据集配置会影响使用此数据集的所有图表。请注意,更改此处的设置可能会以未预想的方式影响其他图表。" ], - "The size of the square cell, in pixels": [ - "平方单元的大小,以像素为单位" + "Are you sure you want to save and apply changes?": [ + "确实要保存并应用更改吗?" ], - "The submitted URL is not considered safe, only use URLs with the same domain as Superset.": [ + "Confirm save": ["确认保存"], + "OK": ["确认"], + "Edit Dataset ": ["编辑数据集"], + "Use legacy datasource editor": ["使用旧数据源编辑器"], + "This dataset is managed externally, and can't be edited in Superset": [ "" ], - "The submitted payload has the incorrect format.": [ - "提交的有效载荷格式不正确" + "DELETE": ["删除"], + "delete": ["删除"], + "Type \"%s\" to confirm": ["键入 \"%s\" 来确认"], + "Click to edit": ["点击编辑"], + "You don't have the rights to alter this title.": [ + "您没有权利修改这个标题。" ], - "The submitted payload has the incorrect schema.": [ - "提交的有效负载的模式不正确。" + "No databases match your search": ["没有与您的搜索匹配的数据库"], + "There are no databases available": ["没有可用的数据库"], + "Manage your databases": ["管理你的数据库"], + "Unexpected error": ["意外错误。"], + "This may be triggered by:": ["这可能由以下因素触发:"], + "%(message)s\nThis may be triggered by: \n%(issues)s": [ + "%(message)s\n这可能由以下因素触发:%(issues)s" ], - "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ - "表 \"%(table)s\" 不存在。必须使用有效的表来运行此查询。" + "%s Error": ["%s 异常"], + "Missing dataset": ["丢失数据集"], + "See more": ["查看更多"], + "See less": ["查看更少"], + "Copy message": ["复制信息"], + "Did you mean:": ["您的意思是:"], + "Parameter error": ["参数错误"], + "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ + "%(subtitle)s\n这可能由以下因素触发:%(issue)s" ], - "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ - "表 \"%(table_name)s\" 不存在。必须使用有效的表来运行此查询。" + "Timeout error": ["超时错误"], + "Click to favorite/unfavorite": ["点击 收藏/取消收藏"], + "Cell content": ["单元格内容"], + "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ + "" ], - "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ - "表被创建。作为这两个阶段配置过程的一部分,您现在应该单击新表的编辑按钮来配置它。" + "OVERWRITE": ["覆盖"], + "%s SSH TUNNEL PASSWORD": [""], + "%s SSH TUNNEL PRIVATE KEY": [""], + "%s SSH TUNNEL PRIVATE KEY PASSWORD": [""], + "Overwrite": ["覆盖"], + "Import": ["导入"], + "Import %s": ["导入 %s"], + "Last Updated %s": ["上次更新 %s"], + "Sort": ["排序:"], + "+ %s more": [""], + "%s Selected": ["%s 已选定"], + "Deselect all": ["反选所有"], + "Add Tag": [""], + "No results match your filter criteria": [""], + "Try different criteria to display results.": [""], + "No Data": ["没有数据"], + "%s-%s of %s": ["%s-%s 总计 %s"], + "Type a value": ["请输入值"], + "Filter": ["过滤器"], + "Select or type a value": ["选择或键入一个值"], + "Last modified": ["最后修改"], + "Modified by": ["修改人"], + "Created by": ["创建人"], + "Created on": ["创建日期"], + "Menu actions trigger": [""], + "Select ...": ["选择 ..."], + "Click to cancel sorting": [""], + "There was an error loading the tables": ["您的请求有错误"], + "See table schema": ["选择表"], + "Force refresh table list": ["强制刷新数据"], + "Timezone selector": ["时区选择"], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "此组件没有足够的空间。请尝试减小其宽度,或增加目标宽度。" ], - "The table was deleted or renamed in the database.": [ - "Issue 1005 - 该表已在数据库中删除或重命名。" + "Can not move top level tab into nested tabs": [ + "无法将顶级tab页移动到嵌套tab页中" ], - "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ - "可视化的时间栏。注意,您可以定义返回表中的DATETIMLE列的任意表达式。还请注意下面的筛选器应用于该列或表达式。" + "This chart has been moved to a different filter scope.": [ + "此图表已移至其他过滤器范围内。" ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ - "可视化的时间粒度。请注意,您可以输入和使用简单的日期表达方式,如 `10 seconds`, `1 day` or `56 weeks`" + "There was an issue fetching the favorite status of this dashboard.": [ + "获取此看板的收藏夹状态时出现问题。" ], - "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ - "可视化的时间粒度。这将应用日期转换来更改时间列,并定义新的时间粒度。这里的选项是在 Superset 源代码中的每个数据库引擎基础上定义的。" + "There was an issue favoriting this dashboard.": [ + "收藏看板时候出现问题。" ], - "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ - "可视化的时间范围。所有相关的时间,例如\"上个月\"、\"过去7天\"、\"现在\"等,都在服务器上使用服务器的本地时间(sans时区)进行计算。所有工具提示和占位符时间均以UTC(无时区)表示。然后,数据库使用引擎的本地时区来评估时间戳。注:如果指定开始时间和、或者结束时间,可以根据ISO 8601格式显式设置时区。" + "This dashboard is now published": ["当前看板 ${nowPublished}"], + "This dashboard is now hidden": ["无法修改该看板"], + "You do not have permissions to edit this dashboard.": [ + "您没有编辑此看板的权限。" ], - "The time unit for each block. Should be a smaller unit than domain_granularity. Should be larger or equal to Time Grain": [ - "每个块的时间单位。应该是主域域粒度更小的单位。应该大于或等于时间粒度" + "This dashboard was saved successfully.": ["该看板已成功保存。"], + "Sorry, there was an error saving this dashboard: %s": [ + "抱歉,这个看板在获取图表时发生错误:%s" ], - "The time unit used for the grouping of blocks": ["用于块分组的时间单位"], - "The type of visualization to display": ["要显示的可视化类型"], - "The unit of measure for the specified point radius": [ - "指定点半径的度量单位" + "You do not have permission to edit this dashboard": [ + "您没有编辑此看板的权限" ], - "The user seems to have been deleted": ["用户已经被删除"], - "The user/password combination is not valid (Incorrect password for user).": [ + "Please confirm the overwrite values.": [""], + "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "" ], - "The username \"%(username)s\" does not exist.": [ - "指标 '%(username)s' 不存在" + "Could not fetch all saved charts": ["无法获取所有保存的图表"], + "Sorry there was an error fetching saved charts: ": [ + "抱歉,这个看板在获取图表时发生错误:" ], - "The username provided when connecting to a database is not valid.": [ - "连接到数据库时提供的用户名无效。" + "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ + "此处选择的任何调色板都将覆盖应用于此看板的各个图表的颜色" ], - "The way the ticks are laid out on the X-axis": ["X轴记号的排列显示方式"], - "There are associated alerts or reports": ["存在关联的警报或报告"], - "There are associated alerts or reports: %s,": [ - "存在关联的警报或报告:%s," + "You have unsaved changes.": ["您有一些未保存的修改。"], + "Drag and drop components and charts to the dashboard": [""], + "You can create a new chart or use existing ones from the panel on the right": [ + "" ], + "Create a new chart": ["创建新图表"], + "Drag and drop components to this tab": [""], "There are no components added to this tab": [""], - "There are no databases available": ["没有可用的数据库"], - "There are no filters in this dashboard.": ["此看板中没有过滤条件。"], - "There are unsaved changes.": ["您有一些未保存的修改。"], - "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ - "Issue 1003 - SQL查询中存在语法错误。可能是拼写错误或是打错关键字。" - ], + "You can add the components in the edit mode.": [""], "There is no chart definition associated with this component, could it have been deleted?": [ "没有与此组件关联的图表定义,是否已将其删除?" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "此组件没有足够的空间。请尝试减小其宽度,或增加目标宽度。" + "Delete this container and save to remove this message.": [ + "删除此容器并保存以删除此邮件。" ], - "There was an error fetching the favorite status: %s": [ - "获取此看板的收藏夹状态时出现问题:%s。" + "Refresh interval": ["刷新间隔"], + "Refresh frequency": ["刷新频率"], + "Are you sure you want to proceed?": ["您确定要继续执行吗?"], + "Save for this session": ["保存此会话"], + "You must pick a name for the new dashboard": [ + "您必须为新的看板选择一个名称" ], - "There was an error fetching your recent activity:": [ - "获取您最近的活动时出错:" + "Save dashboard": ["保存看板"], + "Overwrite Dashboard [%s]": ["覆盖看板 [%s]"], + "Save as:": ["另存为:"], + "[dashboard name]": ["[看板名称]"], + "also copy (duplicate) charts": ["同时复制图表"], + "Create new chart": ["创建新图表"], + "Filter your charts": ["过滤您的图表"], + "Sort by %s": ["排序 %s"], + "Show only my charts": [""], + "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ + "" ], - "There was an error loading the schemas": [ - "抱歉,这个看板在获取图表时发生错误:" + "Added": ["已添加"], + "Viz type": ["可视化类型"], + "Dataset": ["数据集"], + "Superset chart": ["选择图表"], + "Check out this chart in dashboard:": ["在仪表盘中查看此图表"], + "Layout elements": [""], + "Load a CSS template": ["加载一个 CSS 模板"], + "Live CSS editor": ["即时 CSS 编辑器"], + "Go to the edit mode to configure the dashboard and add charts": [""], + "Changes saved.": [""], + "Disable embedding?": [""], + "This will remove your current embed configuration.": [""], + "Embedding deactivated.": [""], + "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "" ], - "There was an error loading the tables": ["您的请求有错误"], - "There was an error saving the favorite status: %s": [ - "获取此看板的收藏夹状态时出现问题: %s" + "Configure this dashboard to embed it into an external web application.": [ + "" ], - "There was an error with your request": ["您的请求有错误"], - "There was an issue deleting %s: %s": ["删除 %s 时出现问题:%s"], - "There was an issue deleting the selected %s: %s": [ - "删除所选 %s 时出现问题: %s" + "For further instructions, consult the": [""], + "Superset Embedded SDK documentation.": [""], + "Allowed Domains (comma separated)": [""], + "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ + "" ], - "There was an issue deleting the selected annotations: %s": [ - "删除所选注释时出现问题:%s" + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "此看板当前正在强制刷新;下一次强制刷新将在 %s 内执行。" + ], + "Your dashboard is too large. Please reduce its size before saving it.": [ + "您的看板太大了。保存前请缩小尺寸。" + ], + "Redo the action": [""], + "Edit dashboard": ["编辑仪表盘"], + "An error occurred while fetching available CSS templates": [ + "获取可用的CSS模板时出错" + ], + "Superset dashboard": ["看板"], + "Check out this dashboard: ": ["查看此看板:"], + "Refresh dashboard": ["刷新看板"], + "Exit fullscreen": ["退出全屏"], + "Enter fullscreen": ["全屏"], + "Edit properties": ["编辑属性"], + "Edit CSS": ["编辑CSS"], + "Share": ["分享"], + "Set filter mapping": ["设置过滤映射"], + "Set auto-refresh interval": ["设置自动刷新"], + "Scroll down to the bottom to enable overwriting changes. ": [""], + "Apply": ["应用"], + "Error": ["错误"], + "A valid color scheme is required": ["需要有效的配色方案"], + "The dashboard has been saved": ["该看板已成功保存。"], + "Access": ["访问"], + "Owners is a list of users who can alter the dashboard. Searchable by name or username.": [ + "所有者是可以更改看板的用户列表。可按名称或用户名搜索。" + ], + "Colors": ["颜色"], + "Dashboard properties": ["看板属性"], + "This dashboard is managed externally, and can't be edited in Superset": [ + "" ], - "There was an issue deleting the selected charts: %s": [ - "删除所选图表时出现问题:%s" + "Basic information": ["基本情况"], + "URL slug": ["使用 Slug"], + "A readable URL for your dashboard": ["为看板生成一个可读的 URL"], + "Certification": ["认证"], + "Person or group that has certified this dashboard.": [ + "已对此仪表板进行认证的个人或组。" ], - "There was an issue deleting the selected dashboards: ": [ - "删除所选仪表板时出现问题:" + "Any additional detail to show in the certification tooltip.": [ + "要在认证工具提示中显示详细信息。" ], - "There was an issue deleting the selected datasets: %s": [ - "删除选定的数据集时出现问题:%s" + "JSON metadata": ["JSON 元数据"], + "Please DO NOT overwrite the \"filter_scopes\" key.": [""], + "Use \"%(menuName)s\" menu instead.": [""], + "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ + "此看板未发布,它将不会显示在看板列表中。单击此处以发布此看板。" ], - "There was an issue deleting the selected layers: %s": [ - "删除所选图层时出现问题:%s" + "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ + "此看板未发布,这意味着它不会显示在仪表板列表中。您可以进行收藏并在收藏栏中查看或直接使用URL访问它。" ], - "There was an issue deleting the selected queries: %s": [ - "删除所选查询时出现问题:%s" + "This dashboard is published. Click to make it a draft.": [ + "此看板已发布。单击以使其成为草稿。" ], - "There was an issue deleting the selected templates: %s": [ - "删除所选模板时出现问题:%s" + "Draft": ["草稿"], + "Annotation layers are still loading.": ["注释层仍在加载。"], + "One ore more annotation layers failed loading.": [ + "一个或多个注释层加载失败。" ], - "There was an issue deleting: %s": ["删除时出现问题:%s"], - "There was an issue favoriting this dashboard.": [ - "收藏看板时候出现问题。" + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ + "" ], - "There was an issue fetching reports attached to this dashboard.": [ - "获取此看板的收藏夹状态时出现问题。" + "Cached %s": ["缓存于%s"], + "Fetched %s": ["刷新于 %s"], + "Query %s: %s": ["查询 %s: %s "], + "Force refresh": ["强制刷新"], + "View query": ["检查查询"], + "Share chart by email": ["通过电子邮件分享图表”"], + "Check out this chart: ": ["看看这张图表:"], + "Download as image": ["下载为图片"], + "Search...": ["搜索..."], + "No filter is selected.": ["未选择过滤条件。"], + "Editing 1 filter:": ["编辑1个过滤条件:"], + "Batch editing %d filters:": ["批量编辑 %d 个过滤条件:"], + "Configure filter scopes": ["配置过滤范围"], + "There are no filters in this dashboard.": ["此看板中没有过滤条件。"], + "Expand all": ["全部展开"], + "Collapse all": ["全部折叠"], + "This markdown component has an error.": ["此 markdown 组件有错误。"], + "This markdown component has an error. Please revert your recent changes.": [ + "此 markdown 组件有错误。请还原最近的更改。" ], - "There was an issue fetching the favorite status of this dashboard.": [ - "获取此看板的收藏夹状态时出现问题。" + "Empty row": [""], + "or use existing ones from the panel on the right": [""], + "You can add the components in the": [""], + "Delete dashboard tab?": ["是否删除仪表盘tab页?"], + "Deleting a tab will remove all content within it. You may still reverse this action with the": [ + "" ], - "There was an issue fetching your recent activity: %s": [ - "获取您最近的活动时出错:%s" + "button (cmd + z) until you save your changes.": [""], + "CANCEL": ["取消"], + "Divider": ["分隔"], + "Header": ["标题行"], + "Text": ["文本"], + "Tabs": ["选项卡"], + "background": [""], + "Preview": ["预览"], + "Sorry, something went wrong. Try again later.": [ + "抱歉,出了点问题。请稍后再试。" ], - "There was an issue previewing the selected query %s": [ - "预览所选查询时出现问题 %s" + "Unknown value": ["未知错误"], + "No global filters are currently added": [""], + "Click on \"+Add/Edit Filters\" button to create new dashboard filters": [ + "" ], - "There was an issue previewing the selected query. %s": [ - "预览所选查询时出现问题。%s" + "Clear all": ["清除所有"], + "Add custom scoping": [""], + "All charts/global scoping": [""], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "There's a loop in your Sankey, please provide a tree. Here's a faulty link: {}": [ - "桑基图里面有一个循环,请提供一棵树。这是一个错误的链接:{}" + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" ], - "These are the tables this filter will be applied to.": [ - "这些是将应用此过滤的表。" + "All charts": ["所有图表"], + "Cannot load filter": ["无法加载筛选器"], + "Filters out of scope (%d)": ["筛选器超出范围(%d)"], + "Filter only displays values relevant to selections made in other filters.": [ + "" ], - "These filters apply to the values available in the dropdowns": [ - "这些过滤器应用于下拉列表中的可用值" + "Filter type": ["过滤类型"], + "Title is required": ["标题是必填项"], + "(Removed)": ["(已删除)"], + "Undo?": ["撤消?"], + "Add filters and dividers": [""], + "Cyclic dependency detected": [""], + "Column select": ["选择列"], + "Select a column": ["反选所有"], + "No compatible columns found": ["找不到兼容的列"], + "Value is required": ["需要名称"], + "(deleted or invalid type)": [""], + "Add filter": ["增加过滤条件"], + "Values are dependent on other filters": [""], + "Values selected in other filters will affect the filter options to only show relevant values": [ + "" ], - "These parameters are generated dynamically when clicking the save or overwrite button in the explore view. This JSON object is exposed here for reference and for power users who may want to alter specific parameters.": [ - "这些参数是在浏览视图中单击保存或覆盖按钮时动态生成的。这个JSON对象在这里公开以供参考,并提供给可能希望更改特定参数的高级用户使用。" + "Scoping": ["范围"], + "Select filter": ["选择过滤器"], + "Range filter": ["范围过滤"], + "Numerical range": ["数值范围"], + "Time filter": ["日期过滤器"], + "Time range": ["时间范围"], + "Time column": ["时间列"], + "Time grain": ["时间粒度(grain)"], + "Group By": ["分组"], + "Group by": ["分组"], + "Pre-filter is required": ["预过滤是必须的"], + "Time column to apply dependent temporal filter to": [""], + "Time column to apply time range to": [""], + "Filter name": ["过滤值"], + "Name is required": ["需要名称"], + "Filter Type": ["过滤类型"], + "Datasets do not contain a temporal column": ["数据集不包含时间列"], + "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ + "" ], - "This JSON object is generated dynamically when clicking the save or overwrite button in the dashboard view. It is exposed here for reference and for power users who may want to alter specific parameters.": [ - "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" + "Dataset is required": ["需要数据集"], + "Pre-filter available values": ["预滤器可用值"], + "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ + "" ], - "This action will permanently delete %s.": ["此操作将永久删除 %s 。"], - "This action will permanently delete the layer.": [ - "此操作将永久删除图层。" + "Pre-filter": ["预过滤"], + "No filter": ["无筛选"], + "Sort filter values": ["可被过滤"], + "Sort type": ["图表类型"], + "Sort ascending": ["升序排序"], + "Sort Metric": ["排序指标"], + "If a metric is specified, sorting will be done based on the metric value": [ + "如果指定了度量,则将根据该度量值进行排序" ], - "This action will permanently delete the saved query.": [ - "此操作将永久删除保存的查询。" + "Sort metric": ["排序指标"], + "Single Value": ["空值"], + "Single value type": ["单值类型"], + "Exact": ["精确"], + "Filter has default value": ["过滤器默认值"], + "Default Value": ["缺省值"], + "Default value is required": ["需要默认值"], + "Refresh the default values": ["刷新默认值"], + "Fill all required fields to enable \"Default Value\"": [ + "填写所有必填字段以启用默认值" ], - "This action will permanently delete the template.": [ - "此操作将永久删除模板。" + "You have removed this filter.": ["您已删除此过滤条件。"], + "Restore Filter": ["还原过滤条件"], + "Column is required": ["列是必填项"], + "Populate \"Default value\" to enable this control": [ + "填充 \"Default value\" 以启用此控件" ], - "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ - "这可以是一个IP地址(例如127.0.0.1)或一个域名(例如127.0.0.1)" + "Default value must be set when \"Filter has default value\" is checked": [ + "选中筛选器具有默认值时,必须设置默认值" ], - "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ - "" + "Apply to all panels": ["应用于所有面板"], + "Apply to specific panels": ["应用于特定面板"], + "Only selected panels will be affected by this filter": [ + "只有选定的面板将受此过滤条件的影响" ], - "This chart has been moved to a different filter scope.": [ - "此图表已移至其他过滤器范围内。" + "All panels with this column will be affected by this filter": [ + "包含此列的所有面板都将受到此过滤条件的影响" ], - "This chart is managed externally, and can't be edited in Superset": [""], + "All panels": ["应用于所有面板"], "This chart might be incompatible with the filter (datasets don't match)": [ "此图表可能与过滤器不兼容(数据集不匹配)" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "" - ], - "This column must contain date/time information.": [ - "包含行信息的数据库列" + "Keep editing": ["继续编辑"], + "Yes, cancel": ["是的,取消"], + "There are unsaved changes.": ["您有一些未保存的修改。"], + "Are you sure you want to cancel?": ["您确定要取消吗?"], + "Error loading chart datasources. Filters may not work correctly.": [ + "加载图表数据源时出错。过滤器可能无法正常工作。" ], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Transparent": ["透明"], + "White": ["白色"], + "All filters": ["所有过滤"], + "Medium": ["中"], + "Tab title": ["选项卡标题"], + "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ "" ], - "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ - "" + "Equal to (=)": [""], + "Less than (<)": [""], + "Like": [""], + "Is true": [""], + "Time granularity": ["时间粒度(granularity)"], + "One or many columns to group by. High cardinality groupings should include a series limit to limit the number of fetched and rendered series.": [ + "要分组的一列或多列。高基数分组应包括序列限制,以限制提取和呈现的序列数。" ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "此看板当前正在强制刷新;下一次强制刷新将在 %s 内执行。" + "One or many metrics to display": ["一个或多个指标显示"], + "Fixed color": ["固定颜色"], + "Right axis metric": ["右轴指标"], + "Choose a metric for right axis": ["为右轴选择一个指标"], + "Linear color scheme": ["线性颜色方案"], + "Color metric": ["颜色指标"], + "One or many controls to pivot as columns": ["一个或多个控件作为主列"], + "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ + "可视化的时间粒度。这将应用日期转换来更改时间列,并定义新的时间粒度。这里的选项是在 Superset 源代码中的每个数据库引擎基础上定义的。" ], - "This dashboard is managed externally, and can't be edited in Superset": [ - "" + "The time range for the visualization. All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using the server's local time (sans timezone). All tooltips and placeholder times are expressed in UTC (sans timezone). The timestamps are then evaluated by the database using the engine's local timezone. Note one can explicitly set the timezone per the ISO 8601 format if specifying either the start and/or end time.": [ + "可视化的时间范围。所有相关的时间,例如\"上个月\"、\"过去7天\"、\"现在\"等,都在服务器上使用服务器的本地时间(sans时区)进行计算。所有工具提示和占位符时间均以UTC(无时区)表示。然后,数据库使用引擎的本地时区来评估时间戳。注:如果指定开始时间和、或者结束时间,可以根据ISO 8601格式显式设置时区。" ], - "This dashboard is not published which means it will not show up in the list of dashboards. Favorite it to see it there or access it by using the URL directly.": [ - "此看板未发布,这意味着它不会显示在仪表板列表中。您可以进行收藏并在收藏栏中查看或直接使用URL访问它。" + "Limits the number of rows that get displayed.": ["限制显示的行数。"], + "Metric used to define how the top series are sorted if a series or row limit is present. If undefined reverts to the first metric (where appropriate).": [ + "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" ], - "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ - "此看板未发布,它将不会显示在看板列表中。单击此处以发布此看板。" + "Defines the grouping of entities. Each series is shown as a specific color on the chart and has a legend toggle": [ + "定义实体的分组。每个序列在图表上显示为特定颜色,并有一个可切换的图例" ], - "This dashboard is now hidden": ["无法修改该看板"], - "This dashboard is now published": ["当前看板 ${nowPublished}"], - "This dashboard is published. Click to make it a draft.": [ - "此看板已发布。单击以使其成为草稿。" + "Metric assigned to the [X] axis": ["分配给 [X] 轴的指标"], + "Metric assigned to the [Y] axis": ["分配给 [Y] 轴的指标"], + "Bubble size": ["气泡尺寸"], + "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ + "当设置“周期比”时,y轴格式强制为“1%”。" ], - "This dashboard is ready to embed. In your application, pass the following id to the SDK:": [ + "Color scheme": ["配色方案"], + "An error occurred while starring this chart": ["以此字符开头时出错"], + "Use this section if you want a query that aggregates": [""], + "Use this section if you want to query atomic rows": [""], + "The X-axis is not on the filters list": [""], + "The X-axis is not on the filters list which will prevent it from being used in\n time range filters in dashboards. Would you like to add it to the filters list?": [ "" ], - "This dashboard was changed recently. Please reload dashboard to get latest version.": [ - "此看板最近已更新。请重新加载看板以获取最新版本。" - ], - "This dashboard was saved successfully.": ["该看板已成功保存。"], - "This database is managed externally, and can't be edited in Superset": [ + "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ "" ], - "This database table does not contain any data. Please select a different table.": [ + "This section contains validation errors": [""], + "Keep control settings?": [""], + "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "" ], - "This dataset is managed externally, and can't be edited in Superset": [ + "No form settings were maintained": [""], + "We were unable to carry over any controls when switching to this new dataset.": [ "" ], - "This dataset is not used to power any charts.": [""], - "This defines the element to be plotted on the chart": [ - "这定义了要在图表上绘制的元素" - ], - "This defines the level of the hierarchy": ["该选项定义了层次级别"], - "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ - "这个字段执行Superset视图时,意味着Superset将以子查询的形式对字符串运行查询。" + "Customize": ["定制化配置"], + "Generating link, please wait..": [""], + "Save (Overwrite)": ["保存(覆盖)"], + "Chart name": ["图表名称"], + "A reusable dataset will be saved with your chart.": [""], + "Add to dashboard": ["添加到看板"], + "Select a dashboard": ["看板"], + "Select": ["批量选择"], + "Save & go to dashboard": ["保存并转到看板"], + "Save chart": ["图表保存"], + "Expand data panel": [""], + "Search Metrics & Columns": ["搜索指标和列"], + "Showing %s of %s": ["显示 %s个 总计 %s个"], + "Show less...": ["显示..."], + "Show all...": ["显示所有..."], + "Show Less...": ["显示. ."], + "Unable to retrieve dashboard colors": [""], + "You can preview the list of dashboards in the chart settings dropdown.": [ + "" ], - "This filter doesn't exist in dashboard. It will not be applied.": [ - "此过滤器在仪表板中不存在。它不会被应用。" + "Add required control values to save chart": [""], + "Chart type requires a dataset": [""], + "This chart type is not supported when using an unsaved query as a chart source. ": [ + "" ], - "This filter set is identical to: \"%s\"": ["此过滤器集等同于: \"%s\" "], - "This functionality is disabled in your environment for security reasons.": [ + " to visualize your data.": [""], + "Required control values have been removed": [""], + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ "" ], - "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ - "这是将会添加到WHERE子句的条件。例如,要仅返回特定客户端的行,可以使用子句 `client_id = 9` 定义常规过滤。若要在用户不属于RLS过滤角色的情况下不显示行,可以使用子句 `1 = 0`(始终为false)创建基本过滤。" + "Controls labeled ": ["控件已标记"], + "Control labeled ": ["控件已标记 "], + "Open Datasource tab": ["打开数据源tab"], + "Original": ["起点"], + "Pivoted": ["旋转"], + "You do not have permission to edit this chart": [ + "您没有编辑此图表的权限" ], - "This json object describes the positioning of the widgets in the dashboard. It is dynamically generated when adjusting the widgets size and positions by using drag & drop in the dashboard view": [ - "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" + "This chart is managed externally, and can't be edited in Superset": [""], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "作为为小部件标题可以在仪表板视图中显示的描述,支持markdown格式语法。" ], - "This markdown component has an error.": ["此 markdown 组件有错误。"], - "This markdown component has an error. Please revert your recent changes.": [ - "此 markdown 组件有错误。请还原最近的更改。" + "Person or group that has certified this chart.": [ + "对此图表进行认证的个人或团体。" ], - "This may be triggered by:": ["这可能由以下因素触发:"], - "This section contains options that allow for advanced analytical post processing of query results": [ - "本节包含允许对查询结果进行高级分析处理后的选项。" + "Configuration": ["配置"], + "A list of users who can alter the chart. Searchable by name or username.": [ + "有权处理该图表的用户列表。可按名称或用户名搜索。" ], - "This section contains validation errors": [""], - "This session has encountered an interruption, and some controls may not work as intended. If you are the developer of this app, please check that the guest token is being generated correctly.": [ + "Limit reached": ["达到限制"], + "Invalid lat/long configuration.": ["错误的经纬度配置。"], + "Reverse lat/long ": ["经纬度互换"], + "Longitude & Latitude columns": ["经纬度字段"], + "Delimited long & lat single column": ["经度&纬度单列限定"], + "Multiple formats accepted, look the geopy.points Python library for more details": [ + "接受多种格式,查看geopy.points库以获取更多细节" + ], + "Geohash": ["Geo哈希"], + "textarea": ["文本区域"], + "in modal": ["(在模型中)"], + "Sorry, An error occurred": ["抱歉,发生错误"], + "Open in SQL Lab": ["在 SQL 工具箱中打开"], + "Failed to verify select options: %s": ["验证选择选项失败:%s"], + "Annotation layer": ["注释层"], + "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ "" ], - "This table already has a dataset": [""], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "Expects a formula with depending time parameter 'x'\n in milliseconds since epoch. mathjs is used to evaluate the formulas.\n Example: '2x+5'": [ "" ], - "This value should be greater than the left target value": [ - "这个值应该大于左边的目标值" + "Annotation layer value": ["注释层值"], + "Annotation Slice Configuration": ["注释切片配置"], + "Annotation layer time column": ["注释层时间列"], + "Interval start column": ["间隔开始列"], + "Event time column": ["事件时间列"], + "This column must contain date/time information.": [ + "包含行信息的数据库列" ], - "This value should be smaller than the right target value": [ - "这个值应该小于正确的目标值" + "Annotation layer interval end": ["注释层间隔结束"], + "Interval End column": ["间隔结束列"], + "Annotation layer title column": ["注释层标题列"], + "Title Column": ["标题栏"], + "Pick a title for you annotation.": ["为您的注释选择一个标题"], + "Annotation layer description columns": ["注释层描述列。"], + "Description Columns": ["列描述"], + "Pick one or more columns that should be shown in the annotation. If you don't select a column all of them will be shown.": [ + "选择注释中应该显示的一个或多个列如果您不选择一列,所有的选项都会显示出来。" ], - "This visualization type is not supported.": ["选择可视化类型"], - "This will remove your current embed configuration.": [""], - "Threshold alpha level for determining significance": [ - "确定重要性的阈值α水平" + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "" ], - "Threshold value should be double precision number": [""], - "Thumbnails": [""], - "Thursday": ["星期四"], - "Time": ["时间"], - "Time Column": ["时间列"], - "Time Comparison": ["时间比对"], - "Time Format": ["时间格式"], - "Time Grain": ["时间粒度(Grain)"], - "Time Granularity": ["时间粒度(Granularity)"], - "Time Range": ["时间范围"], - "Time Series": ["时间序列"], - "Time Series - Bar Chart": ["时间序列 - 柱状图"], - "Time Series - Line Chart": ["时间序列-折线图"], - "Time Series - Nightingale Rose Chart": ["时间序列 - 南丁格尔玫瑰图"], - "Time Series - Paired t-test": ["时间序列 - 配对t检验"], - "Time Series - Percent Change": ["时间序列 - 百分比变化"], - "Time Series - Period Pivot": ["时间序列 - 周期透视表"], - "Time Series - Stacked": ["时间序列 - 堆积图"], - "Time Series Options": ["时间序列的列"], - "Time Shift": ["时间偏移"], - "Time Table View": ["时间表视图"], - "Time column": ["时间列"], - "Time column \"%(col)s\" does not exist in dataset": [ - "时间列 \"%(col)s\" 在数据集中不存在" + "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ + "" ], - "Time column filter plugin": ["选择过滤器"], - "Time column to apply dependent temporal filter to": [""], - "Time column to apply time range to": [""], - "Time comparison": ["时间比较"], "Time delta in natural language\n (example: 24 hours, 7 days, 56 weeks, 365 days)": [ "" ], - "Time delta is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "时间是模糊的。" - ], - "Time filter": ["日期过滤器"], - "Time format": ["时间格式"], - "Time grain": ["时间粒度(grain)"], - "Time grain filter plugin": ["范围过滤器"], - "Time grain missing": ["时间粒度缺失"], - "Time granularity": ["时间粒度(granularity)"], - "Time in seconds": ["时间(秒)"], - "Time range": ["时间范围"], - "Time related form attributes": ["时间相关的表单属性"], - "Time series columns": ["时间序列的列"], - "Time shift": ["时间偏移"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "时间字符串是模糊的。" - ], - "Time-series Area Chart": ["时间序列条形图"], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "时间序列面积图与折线图相似,因为它们表示具有相同比例的变量,但面积图将度量叠加在一起。超级集中的面积图可以是流式、堆栈式或展开式" - ], - "Time-series Bar Chart": ["时间序列-条形图"], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "时间序列条形图用于显示指标随时间的变化" - ], - "Time-series Chart": ["时间序列图"], - "Time-series Line Chart": ["时间序列折线图"], - "Time-series Percent Change": ["时间序列-百分比变化"], - "Time-series Period Pivot": ["时间序列-周期轴"], - "Time-series Scatter Plot": ["时间序列散点图"], - "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ - "时间序列散点图在水平轴上以线性单位表示时间,点按顺序连接。它显示了两个变量之间的统计关系" - ], - "Time-series Smooth Line": ["时间序列光滑曲线图"], - "Time-series Stepped Line": ["时间序列阶梯图"], - "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ - "“时间序列步进折线图(也称为步进图)是折线图的一种变体,但线条在数据点之间形成一系列步进。当您希望显示不规则间隔发生的变化时,步进图可能很有用。”" - ], - "Time-series Table": ["时间序列-表格"], - "Time-series line chart is used to visualize repeated measurements taken over regular time intervals. Line chart is a type of chart which displays information as a series of data points connected by straight line segments. It is a basic type of chart common in many fields.": [ - "时间序列折线图用于可视化在规则时间间隔内进行的重复测量。折线图是一种图表,它将信息显示为一系列由直线段连接的数据点。它是许多领域中常见的一种基本类型的图表。" + "Display configuration": ["显示配置"], + "Configure your how you overlay is displayed here.": [ + "配置如何在这里显示您的覆盖。" ], - "Timeout error": ["超时错误"], - "Timestamp format": ["时间戳格式"], - "Timezone": ["时区"], - "Timezone offset (in hours) for this datasource": [ - "数据源的时差(单位:小时)" + "Annotation layer stroke": ["注释层混乱"], + "Style": ["风格"], + "Solid": [""], + "Long dashed": [""], + "Annotation layer opacity": ["注释层不透明度"], + "Color": ["颜色"], + "Automatic Color": [""], + "Shows or hides markers for the time series": [""], + "Layer configuration": ["配置Layer"], + "Configure the basics of your Annotation Layer.": ["注释层基本配置"], + "Mandatory": ["必填参数"], + "Hide layer": ["隐藏Layer"], + "Show label": ["显示标签"], + "Whether to always show the annotation label": ["是否显示标签。"], + "Annotation layer type": ["注释层类型"], + "Choose the annotation layer type": ["选择注释层类型"], + "Annotation source type": ["注释数据源类型"], + "Choose the source of your annotations": ["选择您的注释来源"], + "Remove": ["删除"], + "Edit annotation layer": ["添加注释层"], + "Add annotation layer": ["添加注释层"], + "Empty collection": ["空集合"], + "Add an item": ["新增一行"], + "Remove item": ["删除该行"], + "dashboard": ["看板"], + "Dashboard scheme": ["仪表盘模式"], + "Select color scheme": ["线性颜色方案"], + "Select scheme": ["选择表"], + "Show less columns": ["显示较少时间列"], + "Show all columns": ["显示所有列"], + "Fraction digits": ["分数位"], + "Number of decimal digits to round numbers to": [ + "要四舍五入的十进制位数" ], - "Timezone selector": ["时区选择"], - "Tiny": ["微小"], - "Title": ["标题"], - "Title Column": ["标题栏"], - "Title is required": ["标题是必填项"], - "Title or Slug": ["标题或者Slug"], - "To filter on a metric, use Custom SQL tab.": [ - "若要在计量值上筛选,请使用自定义SQL选项卡。" + "Min Width": ["最小宽度"], + "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ + "默认最小列宽(以像素为单位),如果其他列不需要太多空间,则实际宽度可能仍大于此值" ], - "To get a readable URL for your dashboard": ["为看板生成一个可读的 URL"], - "Tools": ["工具"], - "Tooltip": ["详细提示"], - "Tooltip sort by metric": ["排序指标"], - "Tooltip time format": ["时间格式"], - "Top": ["顶部"], - "Top to Bottom": ["点击回顶部"], - "Total (%(aggfunc)s)": [""], - "Total (%(aggregatorName)s)": [""], - "Totals": ["显示总计"], - "Track job": ["跟踪任务"], - "Transformable": ["转换"], - "Transparent": ["透明"], - "Transpose pivot": ["转置透视图"], - "Tree Chart": ["树状图"], - "Tree layout": ["布局"], - "Tree orientation": ["方向"], - "Treemap": ["树状地图"], - "Trend": ["趋势"], - "Triangle": ["三角形"], - "Trigger Alert If...": ["如果 ... 则触发警报"], - "Truncate Y Axis": ["截断Y轴"], - "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ - "截断Y轴。可以通过指定最小或最大界限来重写。" + "Text align": ["文本对齐"], + "Horizontal alignment": ["水平对齐"], + "Show cell bars": ["显示单元格的栏"], + "Whether to align positive and negative values in cell bar chart at 0": [ + "单元格条形图中的正负值是否按0对齐" ], - "Truncate long cells to the \"min width\" set above": [""], - "Truncates the specified date to the accuracy specified by the date unit.": [ - "将指定的日期截取为指定的日期单位精度。" + "Whether to colorize numeric values by if they are positive or negative": [ + "根据数值是正数还是负数来为其上色" ], - "Try applying different filters or ensuring your datasource has data": [ - "尝试应用不同的筛选器或确保您的数据源包含数据。“" + "Truncate long cells to the \"min width\" set above": [""], + "Customize chart metrics or columns with currency symbols as prefixes or suffixes. Choose a symbol from dropdown or type your own.": [ + "" ], - "Try different criteria to display results.": [""], - "Try selecting a different schema": [""], - "Tuesday": ["星期二"], - "Type": ["类型"], - "Type \"%s\" to confirm": ["键入 \"%s\" 来确认"], - "Type a value": ["请输入值"], - "Type a value here": ["请输入值"], - "Type is required": ["类型是必需的"], - "Type of Google Sheets allowed": ["接受Google Sheets的类型"], - "Type of comparison, value difference or percentage": [""], - "Type or Select [%s]": ["键入或选择 [%s]"], - "UI Configuration": ["UI 配置"], - "URL": ["URL 地址"], - "URL Parameters": ["URL参数"], - "URL parameters": ["URL 参数"], - "URL slug": ["使用 Slug"], - "Unable to add a new tab to the backend. Please contact your administrator.": [ - "无法将新选项卡添加到后端。请与管理员联系。" + "Small number format": ["数字格式化"], + "Edit formatter": ["日期格式化"], + "Add new formatter": ["新增格式化"], + "Add new color formatter": ["添加新的颜色"], + "alert": ["警报"], + "error dark": [""], + "This value should be smaller than the right target value": [ + "这个值应该小于正确的目标值" ], - "Unable to connect to catalog named \"%(catalog_name)s\".": [ - "无法连接到名为\\%(catalog_name)s\\的目录。" + "This value should be greater than the left target value": [ + "这个值应该大于左边的目标值" ], - "Unable to connect to database \"%(database)s\".": [ - "不能连接到数据库\"%(database)s\"" + "Required": ["必填"], + "Operator": ["运算符"], + "Left value": ["左值"], + "Right value": ["右侧的值"], + "Target value": ["目标值"], + "Select column": ["时间列"], + "Lower threshold must be lower than upper threshold": [""], + "Defines the value that determines the boundary between different regions or levels in the data ": [ + "" ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "The lower limit of the threshold range of the Isoband": [""], + "The upper limit of the threshold range of the Isoband": [""], + "Click to add a contour": [""], + "Prefix": [""], + "Suffix": [""], + "Currency prefix or suffix": [""], + "Prefix or suffix": [""], + "Currency symbol": [""], + "Currency": [""], + "Edit dataset": ["编辑数据集"], + "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ "" ], - "Unable to create chart without a query id.": [""], - "Unable to decode value": [""], - "Unable to encode value": [""], - "Unable to find such a holiday: [%(holiday)s]": [ - "找不到这样的假期:[{}]" + "View in SQL Lab": ["在 SQL 工具箱中公开"], + "Query preview": ["查询预览"], + "The URL is missing the dataset_id or slice_id parameters.": [""], + "The dataset linked to this chart may have been deleted.": [ + "这个图表所链接的数据集可能被删除了。" ], - "Unable to load columns for the selected table. Please select a different table.": [ + "RANGE TYPE": ["范围类型"], + "Actual time range": ["实际时间范围"], + "APPLY": ["应用"], + "Edit time range": ["编辑时间范围"], + "Configure Advanced Time Range ": ["配置进阶时间范围"], + "START (INCLUSIVE)": ["开始 (包含)"], + "Start date included in time range": ["开始日期包含在时间范围内"], + "END (EXCLUSIVE)": ["结束"], + "End date excluded from time range": ["从时间范围中排除的结束日期"], + "Configure Time Range: Previous...": ["配置时间范围:前一(Previous).."], + "Configure Time Range: Last...": ["配置时间范围:上一(Last).."], + "Configure custom time range": ["配置自定义时间范围"], + "Relative quantity": ["相对量"], + "Relative period": ["宽限期"], + "Anchor to": ["锚定到"], + "NOW": ["现在"], + "Date/Time": ["日期/时间"], + "Return to specific datetime.": ["返回指定的日期时间。"], + "Syntax": ["语法"], + "Example": ["例子"], + "Moves the given set of dates by a specified interval.": [ + "将给定的日期集以指定的间隔进行移动" + ], + "Truncates the specified date to the accuracy specified by the date unit.": [ + "将指定的日期截取为指定的日期单位精度。" + ], + "Get the last date by the date unit.": ["按日期单位获取最后的日期。"], + "Get the specify date for the holiday": ["获取指定节假日的日期"], + "Previous": ["之前"], + "Custom": ["自定义"], + "last day": ["上一(昨)天"], + "last week": ["上一周"], + "last month": ["上一月"], + "last quarter": ["上一季度"], + "last year": ["上一年"], + "previous calendar week": ["前一周"], + "previous calendar month": ["前一月"], + "previous calendar year": ["前一年"], + "Seconds %s": ["%s 秒"], + "Minutes %s": ["%s分钟"], + "Hours %s": ["%s小时"], + "Days %s": ["%s天"], + "Weeks %s": ["周 %s"], + "Months %s": ["%s月"], + "Quarters %s": [" %s 季度"], + "Years %s": ["年 %s"], + "Specific Date/Time": ["具体日期/时间"], + "Relative Date/Time": ["相对日期/时间"], + "Now": ["现在"], + "Midnight": ["凌晨(当天)"], + "Saved expressions": ["保存表达式"], + "Saved": ["保存"], + "%s column(s)": ["%s 列"], + "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], - "Unable to migrate query editor state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "无法将查询编辑器状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" + "Add calculated columns to dataset in \"Edit datasource\" modal": [""], + " to mark a column as a time column": [""], + "Simple": ["简单配置"], + "Mark a column as temporal in \"Edit datasource\" modal": [""], + "Custom SQL": ["自定义SQL"], + "My column": ["我的列"], + "Click to edit label": ["单击以编辑标签"], + "Drop columns/metrics here or click": ["将列/指标拖放到此处或单击"], + "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ + "此过滤条件是从看板上下文继承的。保存图表时不会保存。" ], - "Unable to migrate query state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "无法将查询状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" + "%s option(s)": ["%s 个选项"], + "Select subject": ["选择主题"], + "No such column found. To filter on a metric, try the Custom SQL tab.": [ + "没有发现这样的列。若要在度量值上筛选,请尝试自定义SQL选项卡。" ], - "Unable to migrate table schema state to backend. Superset will retry later. Please contact your administrator if this problem persists.": [ - "无法将表结构状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" + "To filter on a metric, use Custom SQL tab.": [ + "若要在计量值上筛选,请使用自定义SQL选项卡。" ], - "Unable to retrieve dashboard colors": [""], - "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "无法将CSV文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" 内。错误消息:%(error_msg)s" + "%s operator(s)": ["%s 运算符"], + "Select operator": ["选择运营商"], + "Comparator option": ["比较器选项"], + "Type a value here": ["请输入值"], + "Filter value (case sensitive)": ["过滤值(区分大小写)"], + "choose WHERE or HAVING...": ["选择WHERE或HAVING子句..."], + "Filters by columns": ["按列过滤"], + "Filters by metrics": ["按指标过滤"], + "Fixed": ["固定值"], + "Based on a metric": ["基于指标"], + "My metric": ["我的指标"], + "Add metric": ["添加指标"], + "Select aggregate options": ["选择总选项"], + "%s aggregates(s)": ["%s 聚合"], + "Select saved metrics": ["选择保存指标"], + "%s saved metric(s)": ["%s 列与计量指标"], + "Saved metric": ["保存的指标"], + "Add metrics to dataset in \"Edit datasource\" modal": [""], + "Simple ad-hoc metrics are not enabled for this dataset": [ + "此数据集没有启用简单的特别度量" ], - "Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" 内。错误消息:%(error_msg)s" + "column": ["列"], + "aggregate": ["合计"], + "Custom SQL ad-hoc metrics are not enabled for this dataset": [ + "此数据集无法启用自定义SQL即席查询、" ], - "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" 内。错误消息:%(error_msg)s" + "Error while fetching data: %s": ["获取数据时出错:%s"], + "Time series columns": ["时间序列的列"], + "Period average": [""], + "Type of comparison, value difference or percentage": [""], + "Width": ["宽度"], + "Width of the sparkline": [""], + "Number of periods to compare against. You can use negative numbers to compare from the beginning of the time range.": [ + "" ], - "Undefined": ["未命名"], - "Undefined window for rolling operation": ["未定义滚动操作窗口"], - "Undo?": ["撤消?"], - "Unexpected error": ["意外错误。"], - "Unexpected error occurred, please check your logs for details": [ - "发生意外错误,请检查日志以了解详细信息" + "Show Y-axis": [""], + "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ + "" ], - "Unexpected error: ": ["意外错误。"], - "Unknown": ["未知"], - "Unknown MySQL server host \"%(hostname)s\".": [ - "未知MySQL服务器主机 \"%(hostname)s\"." + "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ + "" ], - "Unknown Presto Error": ["未知 Presto 错误"], - "Unknown Status": ["未知状态"], - "Unknown column used in orderby: %(col)s": [ - "订单中使用的未知列: %(col)s" + "Select Viz Type": ["选择一个可视化类型"], + "Currently rendered: %s": [""], + "Recommended tags": ["推荐标签"], + "Search all charts": ["搜索所有图表"], + "No description available.": ["没有可用的描述"], + "Examples": ["示例"], + "This visualization type is not supported.": ["选择可视化类型"], + "Select a visualization type": ["选择一个可视化类型"], + "No results found": ["未找到结果"], + "Superset Chart": ["选择图表"], + "New chart": ["新增图表"], + "Edit chart properties": ["编辑图表属性"], + "Export to original .CSV": [""], + "Export to pivoted .CSV": [""], + "Embed code": [""], + "Run in SQL Lab": ["在 SQL 工具箱中执行"], + "Code": ["代码"], + "Markup type": ["Markup 类型"], + "Pick your favorite markup language": ["选择您最爱的 Markup 语言"], + "Put your code here": ["把您的代码放在这里"], + "URL parameters": ["URL 参数"], + "Extra parameters for use in jinja templated queries": [ + "用于jinja模板化查询的额外参数" + ], + "Annotations and layers": ["注释与注释层"], + "Annotation layers": ["注解层"], + "My beautiful colors": [""], + "< (Smaller than)": ["< (小于)"], + "> (Larger than)": ["> (大于)"], + "<= (Smaller or equal)": ["<= (小于等于)"], + ">= (Larger or equal)": [">= (大于等于)"], + "== (Is equal)": ["== (等于)"], + "!= (Is not equal)": ["!= (不等于)"], + "Not null": ["非空"], + "60 days": ["60天"], + "90 days": ["90天"], + "Add notification method": ["添加注释层"], + "Add delivery method": ["添加通知方法"], + "Add": ["新增"], + "Edit Report": ["编辑报表"], + "Edit Alert": ["编辑警报"], + "Add Report": ["添加报告"], + "Add Alert": ["添加告警"], + "Report name": ["报告名称"], + "Alert name": ["告警名称"], + "Active": ["激活"], + "Alert condition": ["告警条件"], + "SQL Query": ["SQL查询"], + "The result of this query should be a numeric-esque value": [""], + "Trigger Alert If...": ["如果 ... 则触发警报"], + "Condition": ["条件"], + "Report schedule": ["报告时间表"], + "Alert condition schedule": ["告警条件计划"], + "Timezone": ["时区"], + "Schedule settings": ["计划设置"], + "Log retention": ["日志保留"], + "Working timeout": ["执行超时"], + "Time in seconds": ["时间(秒)"], + "Grace period": ["宽限期"], + "Message content": ["消息内容"], + "Send as PNG": ["发送PNG"], + "Send as CSV": ["发送为CSV"], + "Send as text": ["发送文本"], + "Screenshot width": [""], + "Input custom width in pixels": [""], + "Notification method": ["通知方式"], + "report": ["报告"], + "CRON expression": ["CRON表达式"], + "Report sent": ["已发送报告"], + "Alert triggered, notification sent": ["告警已触发,通知已发送"], + "Report sending": ["报告发送"], + "Alert running": ["告警运行中"], + "Report failed": ["报告失败"], + "Alert failed": ["告警失败"], + "Nothing triggered": ["无触发"], + "Alert Triggered, In Grace Period": ["告警已触发,在宽限期内"], + "Delivery method": ["发送方式"], + "Select Delivery Method": ["添加通知方法"], + "Recipients are separated by \",\" or \";\"": [ + "收件人之间用 \",\" 或者 \";\" 隔开" ], - "Unknown error": ["未知错误"], - "Unknown input format": [""], - "Unknown value": ["未知错误"], - "Unsafe return type for function %(func)s: %(value_type)s": [ - "函数返回不安全的类型 %(func)s: %(value_type)s" + "No entities have this tag currently assigned": [""], + "Add tag to entities": [""], + "annotation_layer": ["注释层"], + "Edit annotation layer properties": ["编辑注释图层属性"], + "Annotation layer name": ["注释层名称"], + "Description (this can be seen in the list)": ["说明(见列表)"], + "annotation": ["注释"], + "The annotation has been updated": ["注释已更新。"], + "The annotation has been saved": ["注释已保存。"], + "Edit annotation": ["编辑注释"], + "Add annotation": ["添加注释"], + "date": ["日期"], + "Additional information": ["附加信息"], + "Please confirm": ["请确认"], + "Are you sure you want to delete": ["确定要删除吗"], + "Modified %s": ["最后修改 %s"], + "css_template": ["css模板"], + "Edit CSS template properties": ["编辑CSS属性属性"], + "Add CSS template": ["新增CSS模板"], + "css": ["css"], + "published": ["已发布"], + "draft": ["草稿"], + "Adjust how this database will interact with SQL Lab.": [""], + "Expose database in SQL Lab": ["在SQL工具箱中展示数据库"], + "Allow this database to be queried in SQL Lab": [ + "允许在SQL工具箱中查询此数据库" ], - "Unsafe template value for key %(key)s: %(value_type)s": [ - "键的模板值不安全 %(key)s: %(value_type)s" + "Allow creation of new tables based on queries": ["允许基于查询创建新表"], + "Allow creation of new views based on queries": [ + "允许基于查询创建新视图" ], - "Unsupported clause type: %(clause)s": ["不支持的条款类型: %(clause)s"], - "Unsupported post processing operation: %(operation)s": [ - "不支持的处理操作:%(operation)s" + "CTAS & CVAS SCHEMA": ["CTAS和CVAS方案"], + "Create or select schema...": ["创建或者选择模式"], + "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ + "在SQL工具箱中点击CTAS or CVAS强制创建所有数据表或视图" ], - "Unsupported return value for method %(name)s": [ - "方法的返回值不受支持 %(name)s" + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "允许使用非SELECT语句(如UPDATE、DELETE、CREATE等)操作数据库。" ], - "Unsupported template value for key %(key)s": [ - "键的模板值不受支持 %(key)s" + "Enable query cost estimation": ["启用查询成本估算"], + "For Bigquery, Presto and Postgres, shows a button to compute cost before running a query.": [ + "对于Presto和Postgres,显示计算成本按钮(查询后)" ], - "Unsupported time grain: %(time_grain)s": [ - "不支持的时间粒度:%(time_grain)s" + "Allow this database to be explored": ["允许浏览此数据库"], + "When enabled, users are able to visualize SQL Lab results in Explore.": [ + "启用后,用户可以在Explore中可视化SQL实验室结果。" ], - "Untitled query": ["未命名的查询"], - "Update": ["更新"], - "Updating chart was stopped": ["更新图表已停止"], - "Upload": ["上传"], - "Upload CSV": ["上传CSV"], - "Upload CSV to database": ["上传CSV文件"], - "Upload Credentials": ["上传验证文件"], - "Upload Enabled": [""], - "Upload Excel file": ["上传Excel"], - "Upload Excel file to database": ["上传Excel"], - "Upload JSON file": ["上传JSON文件"], - "Upload columnar file": ["上传列级文件"], - "Upload columnar file to database": ["上传列级文件"], - "Upload file to database": ["上传文件到数据库"], - "Use \"%(menuName)s\" menu instead.": [""], - "Use Area Proportions": ["使用面积比例"], - "Use Columns": ["使用列"], - "Use a log scale": ["使用Y轴的对数刻度"], - "Use a log scale for the X-axis": ["使用Y轴的对数刻度"], - "Use a log scale for the Y-axis": ["使用Y轴的对数刻度"], - "Use an encrypted connection to the database": ["使用到数据库的加密连接"], - "Use another existing chart as a source for annotations and overlays.\n Your chart must be one of these visualization types: [%s]": [ + "Disable SQL Lab data preview queries": [""], + "Disable data preview when fetching table metadata in SQL Lab. Useful to avoid browser performance issues when using databases with very wide tables.": [ "" ], - "Use date formatting even when metric value is not a timestamp": [""], - "Use legacy datasource editor": ["使用旧数据源编辑器"], - "Use metrics as a top level group for columns or for rows": [ - "将指标作为列或行的顶级组使用" - ], - "Use only a single value.": ["只使用一个值"], - "Use the Advanced Analytics options below": ["使用下面的高级分析选项"], - "Use the JSON file you automatically downloaded when creating your service account.": [ - "使用您在创建服务帐户时自动下载的JSON文件" + "Enable row expansion in schemas": [""], + "For Trino, describe full schemas of nested ROW types, expanding them with dotted paths": [ + "" ], - "Use this section if you want a query that aggregates": [""], - "Use this section if you want to query atomic rows": [""], - "Use this to define a static color for all circles": [ - "使用此定义所有圆圈的静态颜色" + "Performance": [""], + "Adjust performance settings of this database.": [""], + "Chart cache timeout": ["图表缓存超时"], + "Enter duration in seconds": ["输入间隔时间(秒)"], + "Schema cache timeout": ["图表缓存超时"], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为永不过期。" ], - "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ - "在内部用于标识插件。应该在插件的 package.json 内被设置为包名。" + "Table cache timeout": ["图表缓存超时"], + "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ + "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,缓存为永不过期。" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ - "用于通过将多个统计信息分组在一起来汇总一组数据" + "Asynchronous query execution": ["异步执行查询"], + "Cancel query on window unload event": ["取消窗口上传事件的查询"], + "Terminate running queries when browser window closed or navigated to another page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases.": [ + "当浏览器窗口关闭或导航到其他页面时,终止正在运行的查询。适用于Presto、Hive、MySQL、Postgres和Snowflake数据库" ], - "User": ["用户"], - "User Roles": ["用户角色"], - "User doesn't have the proper permissions.": ["您没有授权 "], - "User must select a value before applying the filter": [ - "用户必须给过滤器选择一个值" + "Secure extra": ["安全"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "包含附加连接配置的JSON字符串。它用于为配置单元、Presto和BigQuery等系统提供连接信息,这些系统不符合SQLAlChemy通常使用的用户名:密码语法。" ], - "User must select a value for this filter": [ - "用户必须给过滤器选择一个值" + "Enter CA_BUNDLE": ["进入CA_BUNDLE"], + "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines.": [ + "用于验证HTTPS请求的可选 CA_BUNDLE 内容。仅在某些数据库引擎上可用。" ], - "User query": ["用户查询"], - "Username": ["用户名"], - "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ - "" + "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ + "模拟登录用户 (Presto, Trino, Drill & Hive)" ], - "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ - "使用一个度量来展示实现目标的度量的进展" + "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ + "如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。如果启用 Hive 和 hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据 hive.server2.proxy.user 的属性伪装当前登录用户。" ], - "Uses circles to visualize the flow of data through different stages of a system. Hover over individual paths in the visualization to understand the stages a value took. Useful for multi-stage, multi-group visualizing funnels and pipelines.": [ - "使用圆圈来可视化系统不同阶段的数据流。" + "Metadata Parameters": ["元数据参数"], + "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ + "metadata_params对象被解压缩到sqlalchemy.metadata调用中。" ], - "Value": ["值"], - "Value Domain": ["值域"], - "Value Format": ["数值格式"], - "Value bounds": ["值边界"], - "Value format": ["数值格式"], - "Value is required": ["需要名称"], - "Value must be greater than 0": ["`行偏移量` 必须大于或等于0"], - "Values are dependent on other filters": [""], - "Values selected in other filters will affect the filter options to only show relevant values": [ - "" + "Engine Parameters": ["引擎参数"], + "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ + "1. engine_params 对象在调用 sqlalchemy.create_engine 时被引用, metadata_params 在调用 sqlalchemy.MetaData 时被引用。" ], - "Vehicle Types": ["类型"], - "Verbose Name": ["全称"], "Version": ["版本"], "Version number": ["版本"], - "Vertical": ["垂直"], - "Video game consoles": ["控制台"], - "View All »": ["查看所有 »"], - "View in SQL Lab": ["在 SQL 工具箱中公开"], - "View keys & indexes (%s)": ["查看键和索引(%s)"], - "View query": ["检查查询"], - "Viewed": ["已查看"], - "Viewed %s": ["已查看 %s"], - "Viewport": ["视口"], - "Virtual (SQL)": ["虚拟(SQL)"], - "Virtual dataset": ["虚拟数据集"], - "Virtual dataset query cannot be empty": ["虚拟数据集查询必须是只读的"], - "Virtual dataset query cannot consist of multiple statements": [ - "虚拟数据集查询不能由多个语句组成" - ], - "Virtual dataset query must be read-only": ["虚拟数据集查询必须是只读的"], - "Visual Tweaks": ["视觉调整"], - "Visualization Type": ["可视化类型"], - "Visualization type": ["可视化类型"], - "Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.": [ - "在多个组中可视化一组平行的度量。每个组都使用自己的点线进行可视化,每个度量在图表中表示为一条边。" - ], - "Visualize a related metric across pairs of groups. Heatmaps excel at showcasing the correlation or strength between two groups. Color is used to emphasize the strength of the link between each pair of groups.": [ - "可视化各组之间的相关指标。热图擅长显示两组之间的相关性或强度。颜色用于强调各组之间的联系强度。" - ], - "Visualize geospatial data like 3D buildings, landscapes, or objects in grid view.": [ - "" - ], - "Visualize how a metric changes over time using bars. Add a group by column to visualize group level metrics and how they change over time.": [ - "使用条形图可视化指标随时间的变化。按列添加分组以可视化分组级别的指标及其随时间变化的方式。" - ], - "Visualize multiple levels of hierarchy using a familiar tree-like structure.": [ - "使用熟悉的树状结构可视化多层次结构。" - ], - "Visualize two different time series using the same x-axis time range. This chart is being deprecated and we recommend using the Mixed Timeseries Chart instead!": [ - "使用相同的x轴时间范围可视化两个不同的时间序列。此图表已被弃用,我们建议使用混合改为时间序列图!" - ], - "Visualizes a metric across three dimensions of data in a single chart (X axis, Y axis, and bubble size). Bubbles from the same group can be showcased using bubble color.": [ - "在单个图表中跨三维数据(X轴、Y轴和气泡大小)可视化度量。同一组中的气泡可以“使用气泡颜色显示" - ], - "Visualizes connected points, which form a path, on a map.": [""], - "Visualizes geographic areas from your data as polygons on a Mapbox rendered map. Polygons can be colored using a metric.": [ + "STEP %(stepCurr)s OF %(stepLast)s": [""], + "Need help? Learn how to connect your database": [""], + "Create a dataset to begin visualizing your data as a chart or go to\n SQL Lab to query your data.": [ "" ], - "Visualizes how a metric has changed over a time using a color scale and a calendar view. Gray values are used to indicate missing values and the linear color scheme is used to encode the magnitude of each day's value.": [ - "使用色标和日历视图可视化指标在一段时间内的变化情况。灰色值用于指示缺少的值,线性配色方案用于编码每天值的大小。" - ], - "Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.": [ - "在一个图表中显示许多不同的时间序列对象。此图表已被弃用,建议改用时间序列图表" - ], - "Visualizes the flow of different group's values through different stages of a system. New stages in the pipeline are visualized as nodes or layers. The thickness of the bars or edges represent the metric being visualized.": [ - "可视化不同组的值在系统不同阶段的流动。管道中的新阶段被可视化为节点或层。条形或边缘的厚度表示正在可视化的度量。" - ], - "Visualizes the words in a column that appear the most often. Bigger font corresponds to higher frequency.": [ - "可视化列中出现频率最高的单词。字体越大,出现频率越高。" + "Enter the required %(dbModelName)s credentials": [""], + "Need help? Learn more about": [""], + "connecting to %(dbModelName)s.": [""], + "Select a database to connect": ["选择将要连接的数据库"], + "SSH Host": [""], + "e.g. 127.0.0.1": ["127.0.0.1"], + "SSH Port": [""], + "e.g. Analytics": ["高级分析"], + "Private Key & Password": [""], + "e.g. ********": ["********"], + "Private Key": [""], + "Paste Private Key here": [""], + "SSH Tunnel": [""], + "SSH Tunnel configuration parameters": [""], + "Display Name": ["显示名称"], + "Name your database": ["您的数据集"], + "Pick a name to help you identify this database.": [ + "选择一个名称来帮助您识别这个数据库。" ], - "Viz is missing a datasource": ["Viz 缺少一个数据源"], - "Viz type": ["可视化类型"], - "WED": ["星期三"], - "Want to add a new database?": ["添加一个新数据库?"], - "Warning": ["警告!"], - "Warning Message": ["告警信息"], - "Warning!": ["警告!"], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "警告!如果元数据不存在,更改数据集可能会破坏图表。" + "dialect+driver://username:password@host:port/database": [""], + "Refer to the": ["参考 "], + "for more information on how to structure your URI.": [ + "来查询有关如何构造URI的更多信息。" ], - "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ - "" + "Test connection": ["测试连接"], + "database": ["数据库"], + "Please enter a SQLAlchemy URI to test": ["请输入要测试的SQLAlchemy URI"], + "e.g. world_population": ["世界人口"], + "Sorry there was an error fetching database information: %s": [ + "抱歉,获取数据库信息时出错:%s" ], - "We can't seem to resolve column \"%(column)s\" at line %(location)s.": [ - "我们似乎无法解析行 %(location)s 所处的列 \"%(column)\" 。" + "Or choose from a list of other databases we support:": [ + "或者从我们支持的其他数据库列表中选择:" ], - "We can't seem to resolve the column \"%(column_name)s\"": [ - "我们似乎无法解析列 \"%(column_name)\" 。" + "Supported databases": ["已支持数据库"], + "Choose a database...": ["选择数据库"], + "Want to add a new database?": ["添加一个新数据库?"], + "Any databases that allow connections via SQL Alchemy URIs can be added. ": [ + "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。" ], - "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ - "我们似乎无法解析行 %(location)s 所处的列 \"%(column_name)s\" 。" + "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [ + "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。了解如何连接数据库驱动程序" ], - "We have the following keys: %s": [""], - "We were unable to active or deactivate this report.": [ - "“我们无法激活或禁用该报告。" + "Connect": ["连接"], + "Finish": ["完成"], + "This database is managed externally, and can't be edited in Superset": [ + "" ], - "We were unable to carry over any controls when switching to this new dataset.": [ + "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "您正在导入一个或多个已存在的数据库。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" + ], + "Database Creation Error": ["数据库创建错误"], + "We are unable to connect to your database. Click \"See more\" for database-provided information that may help troubleshoot the issue.": [ "" ], - "We were unable to connect to your database named \"%(database)s\". Please verify your database name and try again.": [ - "我们无法连接到名为 \"%(database)s\" 的数据库。请确认您的数据库名字并重试" + "QUERY DATA IN SQL LAB": [""], + "Connect a database": ["连接数据库"], + "Edit database": ["编辑数据库"], + "Connect this database using the dynamic form instead": [ + "使用动态参数连接此数据库" ], - "Web": ["网络"], - "Wednesday": ["星期三"], - "Week": ["周"], - "Week ending Saturday": ["周一为一周结束"], - "Week starting Monday": ["周一为一周开始"], - "Week starting Sunday": ["周日为一周开始"], - "Week_ending Sunday": ["周日为一周结束"], - "Weekly Report for %s": [""], - "Weekly seasonality": [""], - "Weeks %s": ["周 %s"], - "What should be shown on the label?": ["标签上需要显示的内容"], - "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ - "当设置“周期比”时,y轴格式强制为“1%”。" + "Click this link to switch to an alternate form that exposes only the required fields needed to connect this database.": [ + "单击此链接可切换到仅显示连接此数据库所需的必填字段的备用表单。" ], - "When a secondary metric is provided, a linear color scale is used.": [ - "当提供次计量指标时,会使用线性色阶。" + "Additional fields may be required": [""], + "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ + "选择数据库需要在Advanced选项卡中完成额外的字段才能成功连接数据库了解数据库的需求" ], - "When allowing CREATE TABLE AS option in SQL Lab, this option forces the table to be created in this schema": [ - "当在 SQL 编辑器中允许 CREATE TABLE AS 选项时,此选项可以此模式中强制创建表" + "Import database from file": ["从文件中导入数据库"], + "Connect this database with a SQLAlchemy URI string instead": [ + "使用SQLAlchemy URI链接此数据库" ], - "When checked, the map will zoom to your data after each query": [""], - "When enabled, users are able to visualize SQL Lab results in Explore.": [ - "启用后,用户可以在Explore中可视化SQL实验室结果。" + "Click this link to switch to an alternate form that allows you to input the SQLAlchemy URL for this database manually.": [ + "单击此链接可切换到备用表单,该表单允许您手动输入此数据库的SQLAlChemy URL。" ], - "When only a primary metric is provided, a categorical color scale is used.": [ - "如果只提供了一个主计量指标,则使用分类色阶。" + "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ + "这可以是一个IP地址(例如127.0.0.1)或一个域名(例如127.0.0.1)" ], - "When specifying SQL, the datasource acts as a view. Superset will use this statement as a subquery while grouping and filtering on the generated parent queries.": [ - "指定SQL时,数据源会充当视图。在对生成的父查询进行分组和筛选时,系统将使用此语句作为子查询。" + "Host": ["主机"], + "e.g. 5432": ["5432"], + "e.g. sql/protocolv1/o/12345": [""], + "Copy the name of the HTTP Path of your cluster.": [""], + "e.g. param1=value1¶m2=value2": ["例如:param1=value1¶m2=value2"], + "Additional Parameters": ["附加参数"], + "Add additional custom parameters": ["添加其他自定义参数"], + "SSL Mode \"require\" will be used.": ["SSL模式 \"require\" 将被使用。"], + "Type of Google Sheets allowed": ["接受Google Sheets的类型"], + "Publicly shared sheets only": ["仅公开共享表"], + "Public and privately shared sheets": ["公共和私人共享的表"], + "How do you want to enter service account credentials?": [ + "您希望如何输入服务帐户凭据?" ], - "When using \"Autocomplete filters\", this can be used to improve performance of the query fetching the values. Use this option to apply a predicate (WHERE clause) to the query selecting the distinct values from the table. Typically the intent would be to limit the scan by applying a relative time filter on a partitioned or indexed time-related field.": [ - "当使用 \"自适配过滤条件\" 时,这可以用来提高获取查询数据的性能。使用此选项可将谓词(WHERE子句)应用于从表中进行选择不同值的查询。通常,这样做的目的是通过对分区或索引的相关时间字段配置相对应的过滤时间来限制扫描。" + "Upload JSON file": ["上传JSON文件"], + "Copy and Paste JSON credentials": ["复制和粘贴JSON凭据"], + "Service Account": ["服务帐户"], + "Copy and paste the entire service account .json file here": [ + "复制服务帐户的json文件复制并粘贴到此处" ], - "When using 'Group By' you are limited to use a single metric": [ - "当使用“Group by”时,只限于使用单个度量。" + "Upload Credentials": ["上传验证文件"], + "Use the JSON file you automatically downloaded when creating your service account.": [ + "使用您在创建服务帐户时自动下载的JSON文件" ], - "When using other than adaptive formatting, labels may overlap": [""], - "Whether the progress bar overlaps when there are multiple groups of data": [ - "当有多组数据时进度条是否重叠" + "Connect Google Sheets as tables to this database": [ + "将Google Sheet作为表格连接到此数据库" ], - "Whether the table was generated by the 'Visualize' flow in SQL Lab": [ - "表是否由 sql 实验室中的 \"可视化\" 流生成" + "Google Sheet Name and URL": ["Google Sheet名称和URL"], + "Enter a name for this sheet": ["输入此工作表的名称"], + "Paste the shareable Google Sheet URL here": [ + "将可共享的Google Sheet URL粘贴到此处" ], - "Whether this column is exposed in the `Filters` section of the explore view.": [ - "该列是否在浏览视图的`过滤器`部分显示。" + "Add sheet": ["添加sheet页"], + "e.g. xy12345.us-east-2.aws": [""], + "e.g. compute_wh": [""], + "e.g. AccountAdmin": [""], + "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "需要以下数据库的密码才能将其与数据集一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" ], - "Whether to align background charts with both positive and negative values at 0": [ - "是否 +/- 对齐背景图数值" + "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "您正在导入一个或多个已存在的数据集。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" ], - "Whether to align positive and negative values in cell bar chart at 0": [ - "单元格条形图中的正负值是否按0对齐" + "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ + "" ], - "Whether to always show the annotation label": ["是否显示标签。"], - "Whether to animate the progress and the value or just display them": [ - "是以动画形式显示进度和值,还是仅显示它们" + "This table already has a dataset": [""], + "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ + "" ], - "Whether to apply a normal distribution based on rank on the color scale": [ - "是否应用基于色标等级的正态分布" + " to open SQL Lab. From there you can save the query as a dataset.": [""], + "This database table does not contain any data. Please select a different table.": [ + "" ], - "Whether to colorize numeric values by if they are positive or negative": [ - "根据数值是正数还是负数来为其上色" + "Unable to load columns for the selected table. Please select a different table.": [ + "" ], - "Whether to display a bar chart background in table columns": [ - "为指标添加条状图背景" + "The API response from %s does not match the IDatabaseTable interface.": [ + "" ], - "Whether to display a legend for the chart": [ - "是否显示图表的图示(色块分布)" + "Create chart with dataset": [""], + "chart": ["图表"], + "No charts": ["没有图表"], + "This dataset is not used to power any charts.": [""], + "[Untitled]": ["无标题"], + "Unknown": ["未知"], + "Viewed %s": ["已查看 %s"], + "Edited": ["已编辑"], + "Created": ["已创建"], + "Viewed": ["已查看"], + "Favorite": ["收藏"], + "Mine": ["我的编辑"], + "View All »": ["查看所有 »"], + "An error occurred while fetching dashboards: %s": [ + "获取仪表板时出错:%s" ], - "Whether to display bubbles on top of countries": [ - "是否在国家之上展示气泡" + "charts": ["图表"], + "dashboards": ["看板"], + "recents": ["最近"], + "saved queries": ["已保存查询"], + "Recently viewed charts, dashboards, and saved queries will appear here": [ + "最近查看的图表、看板和保存的查询将显示在此处" ], - "Whether to display the interactive data table": [ - "是否将指标名显示为标题" + "Recently created charts, dashboards, and saved queries will appear here": [ + "最近创建的图表、看板和保存的查询将显示在此处" ], - "Whether to display the labels.": ["是否显示标签。"], - "Whether to display the legend (toggles)": ["是否显示图示(切换)"], - "Whether to display the metric name as a title": [ - "是否将指标名显示为标题" + "Recently edited charts, dashboards, and saved queries will appear here": [ + "最近编辑的图表、看板和保存的查询将显示在此处" ], - "Whether to display the min and max values of the X-axis": [ - "是否显示X轴的最小值和最大值" + "SQL query": ["SQL查询"], + "You don't have any favorites yet!": ["您还没有任何的收藏!"], + "See all %(tableName)s": ["查看全部 - %(tableName)s"], + "Connect database": ["连接数据库"], + "Connect Google Sheet": [""], + "Upload CSV to database": ["上传CSV文件"], + "Upload columnar file to database": ["上传列级文件"], + "Upload Excel file to database": ["上传Excel"], + "Enable 'Allow file uploads to database' in any database's settings": [ + "" ], - "Whether to display the min and max values of the Y-axis": [ - "是否显示Y轴的最小值和最大值" + "Info": ["信息"], + "Logout": ["退出"], + "About": ["关于"], + "Powered by Apache Superset": ["由Apache Superset提供支持"], + "SHA": [""], + "Documentation": ["文档"], + "Report a bug": ["报告bug"], + "Login": ["登录"], + "query": ["查询"], + "Deleted: %s": ["已删除:%s"], + "There was an issue deleting %s: %s": ["删除 %s 时出现问题:%s"], + "This action will permanently delete the saved query.": [ + "此操作将永久删除保存的查询。" ], - "Whether to display the numerical values within the cells": [ - "是否在单元格内显示数值" + "Delete Query?": ["确定删除查询?"], + "Ran %s": ["持续时间:%s"], + "Saved queries": ["已保存查询"], + "Next": ["之后"], + "Tab name": ["选项卡名字"], + "User query": ["用户查询"], + "Executed query": ["已执行查询"], + "Query name": ["查询名称"], + "SQL Copied!": ["SQL复制成功!"], + "Sorry, your browser does not support copying.": [ + "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" ], - "Whether to display the time range interactive selector": [ - "是否显示时间范围交互选择器" + "There was an issue fetching reports attached to this dashboard.": [ + "获取此看板的收藏夹状态时出现问题。" ], - "Whether to display the timestamp": ["是否显示笔划"], - "Whether to display the trend line": ["是否显示笔划"], - "Whether to enable changing graph position and scaling.": [ - "是否启用更改图形位置和缩放。" + "The report has been created": ["数据集已保存"], + "We were unable to active or deactivate this report.": [ + "“我们无法激活或禁用该报告。" ], - "Whether to enable node dragging in force layout mode.": [ - "是否在强制布局模式下启用节点拖动。" + "Your report could not be deleted": ["这个查询无法被加载。"], + "Weekly Report for %s": [""], + "Edit email report": ["编辑邮件报告"], + "Text embedded in email": ["邮件中嵌入的文本"], + "Image (PNG) embedded in email": ["使用邮箱发送图片(PNG)"], + "Formatted CSV attached in email": ["在邮件中附件CSV"], + "Include a description that will be sent with your report": [""], + "Failed to update report": [""], + "Failed to create report": [""], + "Email reports active": ["激活邮件报告"], + "Delete email report": ["删除邮件报告"], + "Schedule email report": ["为图表配置电子邮件报告"], + "This action will permanently delete %s.": ["此操作将永久删除 %s 。"], + "Delete Report?": ["删除报表?"], + "Rule added": [""], + "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ + "对于常规过滤,这些是此过滤将应用于的角色。对于基本过滤,这些是过滤不适用的角色,例如Admin代表admin应该查看所有数据。" ], - "Whether to include a client-side search box": ["是否包含客户端搜索框"], - "Whether to include a time filter": ["是否包含时间过滤器"], - "Whether to include the percentage in the tooltip": [ - "是否在工具提示中包含百分比" + "Filters with the same group key will be ORed together within the group, while different filter groups will be ANDed together. Undefined group keys are treated as unique groups, i.e. are not grouped together. For example, if a table has three filters, of which two are for departments Finance and Marketing (group key = 'department'), and one refers to the region Europe (group key = 'region'), the filter clause would apply the filter (department = 'Finance' OR department = 'Marketing') AND (region = 'Europe').": [ + "具有相同组key的过滤将在组中一起进行\"OR\"运算,而不同的过滤组将一起进行\"AND\"运算。未定义的组的key被视为唯一组,即不分组在一起。例如,如果表有三个过滤,其中两个用于财务部门和市场营销 (group key = 'department'),其中一个表示欧洲地区(group key = 'region'),filter子句将应用过滤 (department = 'Finance' OR department = 'Marketing') 和 (region = 'Europe')" ], - "Whether to include the time granularity as defined in the time section": [ - "是否包含时间段中定义的时间粒度" + "Clause": ["从句"], + "This is the condition that will be added to the WHERE clause. For example, to only return rows for a particular client, you might define a regular filter with the clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter role, a base filter can be created with the clause `1 = 0` (always false).": [ + "这是将会添加到WHERE子句的条件。例如,要仅返回特定客户端的行,可以使用子句 `client_id = 9` 定义常规过滤。若要在用户不属于RLS过滤角色的情况下不显示行,可以使用子句 `1 = 0`(始终为false)创建基本过滤。" ], - "Whether to make the histogram cumulative": ["是否规范化直方图"], - "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like": [ - "是否将此列作为[时间粒度]选项, 列中的数据类型必须是DATETIME" + "%s items could not be tagged because you don’t have edit permissions to all selected objects.": [ + "" + ], + "Tagged %s %ss": [""], + "Bulk tag": [""], + "You are adding tags to %s %ss": [""], + "Chosen non-numeric column": ["选定的非数字列"], + "UI Configuration": ["UI 配置"], + "User must select a value before applying the filter": [ + "用户必须给过滤器选择一个值" ], - "Whether to normalize the histogram": ["是否规范化直方图"], - "Whether to populate autocomplete filters options": [ - "是否填充自适配过滤条件选项" + "Single value": ["空值"], + "Use only a single value.": ["只使用一个值"], + "Range filter plugin using AntD": ["范围过滤器"], + " (excluded)": ["(不包含)"], + "Check for sorting ascending": ["按照升序进行排序"], + "Select first filter value by default": [""], + "Inverse selection": ["反选"], + "Exclude selected values": ["排除选定的值"], + "Dynamically search all filter values": [""], + "By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [ + "默认情况下,每个过滤器在初始页面加载时最多加载1000个选项。如果您有超过1000个过滤值,并且希望启用动态搜索,以便在键入时加载筛选值(可能会给数据库增加压力),请选中此框。" ], - "Whether to populate the filter's dropdown in the explore view's filter section with a list of distinct values fetched from the backend on the fly": [ - "是否在浏览视图的过滤器部分中填充过滤器的下拉列表,并提供从后端获取的不同值的列表" + "Select filter plugin using AntD": ["选择过滤器"], + "Custom time filter plugin": ["自定义时间过滤器插件"], + "No time columns": ["没有时间列"], + "Time column filter plugin": ["选择过滤器"], + "Time grain filter plugin": ["范围过滤器"], + "Working": ["正在执行"], + "Not triggered": ["没有触发"], + "On Grace": ["在宽限期内"], + "reports": ["报告"], + "alerts": ["警报"], + "There was an issue deleting the selected %s: %s": [ + "删除所选 %s 时出现问题: %s" ], - "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side.": [ - "是否显示额外的控件。额外的控制包括使多栏图表堆叠或并排。" + "Last run": ["上次执行"], + "Execution log": ["操作日志"], + "Bulk select": ["批量选择"], + "No %s yet": ["还没有 %s"], + "Owner": ["所有者"], + "All": ["所有"], + "Status": ["状态"], + "An error occurred while fetching dataset datasource values: %s": [ + "获取数据集数据源信息时出错: %s" ], - "Whether to show minor ticks on the axis": ["是否忽略空位置"], - "Whether to show the pointer": ["是否显示笔划"], - "Whether to show the progress of gauge chart": ["是否显示量规图进度"], - "Whether to show the split lines on the axis": [ - "是否显示Y轴的最小值和最大值" + "Alerts & reports": ["告警和报告"], + "Alerts": ["告警"], + "Reports": ["报告"], + "Delete %s?": ["需要删除 %s 吗?"], + "Are you sure you want to delete the selected %s?": [ + "确实要删除选定的 %s 吗?" ], - "Whether to sort descending or ascending": ["是降序还是升序排序"], - "Whether to sort results by the selected metric in descending order.": [ - "是否按所选指标按降序对结果进行排序。" + "There was an issue deleting the selected layers: %s": [ + "删除所选图层时出现问题:%s" ], - "Whether to sort tooltip by the selected metric in descending order.": [ - "是否按所选指标按降序对结果进行排序。" + "Edit template": ["编辑模板"], + "Delete template": ["删除模板"], + "No annotation layers yet": ["没有注释层"], + "This action will permanently delete the layer.": [ + "此操作将永久删除图层。" ], - "Which country to plot the map for?": ["为哪个国家绘制地图?"], - "Which relatives to highlight on hover": ["在悬停时突出显示哪些关系"], - "Whisker/outlier options": ["箱须/离群值选项"], - "White": ["白色"], - "Width": ["宽度"], - "Width of the confidence interval. Should be between 0 and 1": [ - "置信区间必须介于0和1(不包含1)之间" + "Delete Layer?": ["确定删除图层?"], + "Are you sure you want to delete the selected layers?": [ + "确实要删除选定的图层吗?" ], - "Width of the sparkline": [""], - "Window must be > 0": ["窗口必须大于0"], - "With a subheader": ["子标题"], - "Word Cloud": ["词汇云"], - "Word Rotation": ["单词旋转"], - "Working": ["正在执行"], - "Working timeout": ["执行超时"], - "World Map": ["世界地图"], - "Write a description for your query": ["为您的查询写一段描述"], - "Write a handlebars template to render the data": [""], - "Write dataframe index as a column.": ["将dataframe index 作为列."], - "X AXIS TITLE BOTTOM MARGIN": ["X 轴标题下边距"], - "X Axis": ["X 轴"], - "X Axis Format": ["X 轴格式化"], - "X Axis Label": ["X 轴标签"], - "X Axis Title": ["X轴标题"], - "X Log Scale": ["X经度标度"], - "X Tick Layout": ["X轴记号图层"], - "X bounds": ["X界限"], - "X-Axis Sort By": [""], - "XScale Interval": ["X轴比例尺间隔"], - "Y 2 bounds": ["Y界限"], - "Y AXIS TITLE MARGIN": ["Y轴标题页边距"], - "Y AXIS TITLE POSITION": ["Y轴标题位置"], - "Y Axis": ["Y 轴"], - "Y Axis 2 Bounds": ["Y 轴界限"], - "Y Axis Bounds": ["Y 轴界限"], - "Y Axis Format": ["Y 轴格式化"], - "Y Axis Label": ["Y 轴标签"], - "Y Axis Title": ["Y 轴标题"], - "Y Log Scale": ["Y经度标度"], - "Y bounds": ["Y界限"], - "Y-Axis Sort By": [""], - "YScale Interval": ["Y轴比例尺间隔"], - "Year": ["年"], - "Year (freq=AS)": [""], - "Yearly seasonality": [""], - "Years %s": ["年 %s"], - "Yes": ["是"], - "Yes, cancel": ["是的,取消"], - "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" + "There was an issue deleting the selected annotations: %s": [ + "删除所选注释时出现问题:%s" ], - "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "您正在导入一个或多个已存在的仪表板。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" + "Delete annotation": ["删除注释"], + "Annotation": ["注释"], + "No annotation yet": ["没有注释"], + "Back to all": [""], + "Delete Annotation?": ["删除注释?"], + "Are you sure you want to delete the selected annotations?": [ + "确实要删除选定的注释吗?" ], - "You are importing one or more databases that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "您正在导入一个或多个已存在的数据库。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" + "Failed to load chart data": [""], + "Choose a dataset": ["选择数据源"], + "Choose chart type": ["选择图表类型"], + "Please select both a Dataset and a Chart type to proceed": [ + "请同时选择数据集和图表类型以继续" ], - "You are importing one or more datasets that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ - "您正在导入一个或多个已存在的数据集。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" + "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" ], - "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" ], - "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ - "您无权查看此查询。" + "There was an issue deleting the selected charts: %s": [ + "删除所选图表时出现问题:%s" ], - "You can add the components in the": [""], - "You can add the components in the edit mode.": [""], - "You can also just click on the chart to apply cross-filter.": [""], - "You can choose to display all charts that you have access to or only the ones you own.\n Your filter selection will be saved and remain active until you choose to change it.": [ - "" + "An error occurred while fetching dashboards": ["获取看板时出错"], + "Any": ["所有"], + "Tag": [""], + "An error occurred while fetching chart owners values: %s": [ + "获取图表所有者时出错 %s" ], - "You can create a new chart or use existing ones from the panel on the right": [ - "" + "Certified": ["认证"], + "Alphabetical": ["按字母顺序排列"], + "Recently modified": ["最近修改"], + "Least recently modified": ["最远修改"], + "Import charts": ["导入图表"], + "Are you sure you want to delete the selected charts?": [ + "确实要删除所选图表吗?" ], - "You can preview the list of dashboards in the chart settings dropdown.": [ - "" + "CSS templates": ["CSS 模板"], + "There was an issue deleting the selected templates: %s": [ + "删除所选模板时出现问题:%s" ], - "You can't apply cross-filter on this data point.": [""], - "You cannot delete the last temporal filter as it's used for time range filters in dashboards.": [ - "" + "CSS template": ["CSS 模板"], + "This action will permanently delete the template.": [ + "此操作将永久删除模板。" ], - "You cannot use 45° tick layout along with the time range filter": [ - "不能将45°刻度线布局与时间范围过滤器一起使用" + "Delete Template?": ["删除模板?"], + "Are you sure you want to delete the selected templates?": [ + "确实要删除选定的模板吗?" ], - "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ - "不能将 [列] 与 [分组]/[指标]/[百分比度量] 结合使用。请选择其中一个。" + "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "需要以下数据库的密码才能将它们与仪表板一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" ], - "You do not have permission to edit this chart": [ - "您没有编辑此图表的权限" + "You are importing one or more dashboards that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "您正在导入一个或多个已存在的仪表板。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" ], - "You do not have permission to edit this dashboard": [ - "您没有编辑此看板的权限" + "There was an issue deleting the selected dashboards: ": [ + "删除所选仪表板时出现问题:" ], - "You do not have permissions to access the datasource(s): %(name)s.": [ - "您没有权限访问该数据源: %(name)s。" + "An error occurred while fetching dashboard owner values: %s": [ + "获取仪表板所有者时出错:%s" ], - "You do not have permissions to edit this dashboard.": [ - "您没有编辑此看板的权限。" + "Are you sure you want to delete the selected dashboards?": [ + "确实要删除选定的仪表板吗?" ], - "You don't have access to this dashboard.": ["您没有编辑此看板的权限。"], - "You don't have any favorites yet!": ["您还没有任何的收藏!"], - "You don't have permission to modify the value.": [ - "您没有编辑此图表的权限" + "An error occurred while fetching database related data: %s": [ + "获取数据库相关数据时出错:%s" ], - "You don't have the rights to alter this title.": [ - "您没有权利修改这个标题。" + "Upload file to database": ["上传文件到数据库"], + "Upload CSV": ["上传CSV"], + "Upload columnar file": ["上传列级文件"], + "Upload Excel file": ["上传Excel"], + "AQE": ["AQE(异步执行查询)"], + "Allow data manipulation language": ["允许数据操作语言"], + "DML": ["DML(数据操作语言)"], + "CSV upload": ["CSV上传"], + "Delete database": ["删除数据库"], + "The database %s is linked to %s charts that appear on %s dashboards and users have %s SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects.": [ + "数据库 %s 已经关联了 %s 图表和 %s 仪表盘,并且用户在该数据库上打开了 %s 个 SQL 编辑器标签。确定要继续吗?删除数据库将破坏这些对象。" ], - "You have no permission to approve this request": [ - "您没有此请求的访问权限" + "Delete Database?": ["确定删除数据库?"], + "An error occurred while fetching dataset related data": [ + "获取数据集相关数据时出错" ], - "You have removed this filter.": ["您已删除此过滤条件。"], - "You have unsaved changes.": ["您有一些未保存的修改。"], - "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ - "" + "An error occurred while fetching dataset related data: %s": [ + "获取数据集相关数据时出错:%s" ], - "You must be a dataset owner in order to edit. Please reach out to a dataset owner to request modifications or edit access.": [ - "" + "Physical dataset": ["物化数据集"], + "Virtual dataset": ["虚拟数据集"], + "An error occurred while fetching datasets: %s": ["获取数据集时出错:%s"], + "An error occurred while fetching schema values: %s": [ + "获取结构信息时出错:%s" ], - "You must pick a name for the new dashboard": [ - "您必须为新的看板选择一个名称" + "An error occurred while fetching dataset owner values: %s": [ + "获取数据集所有者值时出错:%s" ], - "You must run the query successfully first": ["必须先成功运行查询"], - "You need to configure HTML sanitization to use CSS": [""], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "" + "Import datasets": ["导入数据集"], + "There was an issue deleting the selected datasets: %s": [ + "删除选定的数据集时出现问题:%s" ], - "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ - "" + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "数据集 %s 已经链接到 %s 图表和 %s 看板内。确定要继续吗?删除数据集将破坏这些对象。" ], - "Your chart is ready to go!": [""], - "Your dashboard is too large. Please reduce its size before saving it.": [ - "您的看板太大了。保存前请缩小尺寸。" + "Delete Dataset?": ["确定删除数据集?"], + "Are you sure you want to delete the selected datasets?": [ + "确实要删除选定的数据集吗?" ], - "Your query could not be saved": ["您的查询无法保存"], - "Your query could not be scheduled": ["无法调度您的查询"], - "Your query could not be updated": ["无法更新您的查询"], - "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ - "您的查询已被调度。要查看查询的详细信息,请跳转到保存查询页面查看。" + "0 Selected": ["0个被选中"], + "%s Selected (Virtual)": ["%s 个被选中(虚拟)"], + "%s Selected (Physical)": ["%s 个被选中(物理)"], + "%s Selected (%s Physical, %s Virtual)": [ + "%s 个被选中 (%s 个物理, %s 个虚拟)" ], - "Your query was saved": ["您的查询已保存"], - "Your query was updated": ["您的查询已保存"], - "Your report could not be deleted": ["这个查询无法被加载。"], - "Zoom": ["缩放"], - "Zoom level of the map": ["地图缩放等级"], - "[Longitude] and [Latitude] columns must be present in [Group By]": [ - "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" + "log": ["日志"], + "Execution ID": ["任务ID"], + "Scheduled at (UTC)": ["计划时间"], + "Start at (UTC)": ["由UTC开始"], + "Error message": ["错误信息"], + "There was an issue fetching your recent activity: %s": [ + "获取您最近的活动时出错:%s" ], - "[Longitude] and [Latitude] must be set": [ - "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" + "Thumbnails": [""], + "Recents": ["最近"], + "There was an issue previewing the selected query. %s": [ + "预览所选查询时出现问题。%s" ], - "[Missing Dataset]": ["丢失数据集"], - "[Superset] Access to the datasource %(name)s was granted": [ - "[Superset] 允许访问数据源 %(name)s" + "TABLES": ["表"], + "Open query in SQL Lab": ["在 SQL 工具箱中打开查询"], + "An error occurred while fetching database values: %s": [ + "获取数据库信息时出错:%s" ], - "[Untitled]": ["无标题"], - "[dashboard name]": ["[看板名称]"], - "[desc]": [""], - "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ - "次计量指标用来定义颜色与主度量的比率。如果两个度量匹配,则将颜色映射到级别组" + "An error occurred while fetching user values: %s": [ + "获取用户信息出错:%s" ], - "`compare_columns` must have the same length as `source_columns`.": [ - "长度必须保持一致" + "Search by query text": ["按查询文本搜索"], + "The passwords for the databases below are needed in order to import them together with the saved queries. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ + "需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" 部分不在导出文件中,如果需要,应在导入后手动添加。" ], - "`compare_type` must be `difference`, `percentage` or `ratio`": [ - "`compare_type` 必须是 `difference`, `percentage` 或 `ratio`" + "You are importing one or more saved queries that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ + "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" ], - "`confidence_interval` must be between 0 and 1 (exclusive)": [ - "`置信区间` 必须介于0和1之间(开区间)" + "There was an issue previewing the selected query %s": [ + "预览所选查询时出现问题 %s" ], - "`count` is COUNT(*) if a group by is used. Numerical columns will be aggregated with the aggregator. Non-numerical columns will be used to label points. Leave empty to get a count of points in each cluster.": [ - "如果分组被使用 `count` 表示 COUNT(*)。数值列将与聚合器聚合。非数值列将用于维度列。留空以获得每个簇中的点计数。" + "Import queries": ["导入查询"], + "Link Copied!": ["链接成功!"], + "There was an issue deleting the selected queries: %s": [ + "删除所选查询时出现问题:%s" ], - "`operation` property of post processing object undefined": [ - "后处理必须指定操作类型(`operation`)" + "Edit query": ["编辑查询"], + "Copy query URL": ["复制查询URL"], + "Export query": ["导出查询"], + "Delete query": ["删除查询"], + "Are you sure you want to delete the selected queries?": [ + "您确实要删除选定的查询吗?" ], - "`prophet` package not installed": ["未安装程序包 `fbprophet`"], - "`rename_columns` must have the same length as `columns`.": [ - "长度必须保持一致" + "queries": ["序列"], + "tag": [""], + "Image download failed, please refresh and try again.": [ + "图片发送失败,请刷新或重试" ], - "`row_limit` must be greater than or equal to 0": [ - "`行限制` 必须大于或等于1" + "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ + "" ], - "`row_offset` must be greater than or equal to 0": [ - "`行偏移量` 必须大于或等于0" + "Invalid input": [""], + "Unexpected error: ": ["意外错误。"], + "(no description, click to see stack trace)": [ + "无描述,单击可查看堆栈跟踪" ], - "`width` must be greater or equal to 0": ["`宽度` 必须大于或等于0"], - "aggregate": ["合计"], - "alert": ["警报"], - "alerts": ["警报"], - "also copy (duplicate) charts": ["同时复制图表"], - "ancestor": ["上一个"], - "and": ["和"], - "annotation": ["注释"], - "annotation_layer": ["注释层"], - "asfreq": [""], - "at": ["在"], - "auto (Smooth)": [""], - "background": [""], - "below (example:": [""], - "between {down} and {up} {name}": [""], - "bfill": [""], - "bolt": ["螺栓"], - "boolean type icon": [""], - "bottom": ["底部"], - "button (cmd + z) until you save your changes.": [""], - "by using": [""], - "cannot be empty": ["不能为空"], - "chart": ["图表"], - "charts": ["图表"], - "choose WHERE or HAVING...": ["选择WHERE或HAVING子句..."], - "click here": [""], - "code ISO 3166-1 alpha-2 (cca2)": [""], - "code ISO 3166-1 alpha-3 (cca3)": [""], - "code International Olympic Committee (cioc)": [""], - "column": ["列"], - "connecting to %(dbModelName)s.": [""], - "count": ["列"], - "css": ["css"], - "css_template": ["css模板"], - "cumsum": [""], - "cumulative": ["激活"], - "dashboard": ["看板"], - "dashboards": ["看板"], - "database": ["数据库"], - "dataset": ["数据集"], - "date": ["日期"], - "day": ["天"], - "day of the month": ["一个月中的天数"], - "day of the week": ["一周的天数"], - "deck.gl Arc": ["圆弧图"], - "delete": ["删除"], - "descendant": ["降序"], - "description": ["描述"], - "dialect+driver://username:password@host:port/database": [""], - "draft": ["草稿"], - "dttm": ["dttm"], - "e.g. ********": ["********"], - "e.g. 127.0.0.1": ["127.0.0.1"], - "e.g. 5432": ["5432"], - "e.g. AccountAdmin": [""], - "e.g. Analytics": ["高级分析"], - "e.g. compute_wh": [""], - "e.g. param1=value1¶m2=value2": ["例如:param1=value1¶m2=value2"], - "e.g. sql/protocolv1/o/12345": [""], - "e.g. world_population": ["世界人口"], - "e.g. xy12345.us-east-2.aws": [""], - "e.g., a \"user id\" column": ["时间序列的列"], - "error dark": [""], - "every": ["任意"], - "every day of the month": ["每月的每一天"], - "every day of the week": ["一周的每一天"], - "every hour": ["每小时"], - "every minute": ["每分钟 UTC"], - "every month": ["每个月"], - "fetching": ["抓取中"], - "ffill": [""], - "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ - "'filter_box将在Superset的未来版本中弃用。" + "Issue 1000 - The dataset is too large to query.": [ + "Issue 1000 - 数据集太大,无法进行查询。" ], - "for more information on how to structure your URI.": [ - " 来查询有关如何构造URI的更多信息。" + "Issue 1001 - The database is under an unusual load.": [ + "Issue 1001 - 数据库负载异常。" ], - "function type icon": [""], - "geohash (square)": [""], - "heatmap: values are normalized across the entire heatmap": [""], - "hour": ["小时"], - "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ - "图像渲染画布对象的 CSS 属性,它定义了浏览器如何放大图像" + "An error occurred while fetching %s info: %s": [ + "获取%s仪表板时出错:%s" ], - "in": ["在"], - "in modal": ["(在模型中)"], - "is expected to be a number": ["应该为数字"], - "is expected to be an integer": ["应该为为整数"], - "joined": ["已加入"], - "json isn't valid": ["无效 JSON"], - "key a-z": ["a-z"], - "key z-a": ["z-a"], - "label": ["标签"], - "last day": ["上一(昨)天"], - "last month": ["上一月"], - "last quarter": ["上一季度"], - "last week": ["上一周"], - "last year": ["上一年"], - "latest partition:": ["最新分区:"], - "left": ["警报"], - "less than {min} {name}": [""], - "log": ["日志"], - "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "下百分位数必须大于0且小于100。而且必须低于上百分位" + "An error occurred while fetching %ss: %s": ["抓取出错:%ss: %s"], + "An error occurred while creating %ss: %s": ["创建时出错:%ss: %s"], + "Please re-export your file and try importing again": [""], + "An error occurred while importing %s: %s": ["导入时出错 %s: %s"], + "There was an error fetching the favorite status: %s": [ + "获取此看板的收藏夹状态时出现问题:%s。" ], - "median": [""], - "minute": ["分"], - "minute(s)": ["分钟"], - "month": ["月"], - "more than {max} {name}": [""], - "must have a value": ["必填"], - "numeric type icon": [""], - "nvd3": ["nvd3"], - "on": ["位于"], - "or use existing ones from the panel on the right": [""], - "orderby column must be populated": ["无法更新您的查询"], - "p-value precision": ["假定值精度"], - "p1": [""], - "p5": [""], - "p95": [""], - "p99": [""], - "page_size.all": [""], - "page_size.entries": [""], - "page_size.show": [""], - "percentile (exclusive)": ["百分位数(独占)"], - "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "百分位数必须是具有两个数值的列表或元组,其中第一个数值要小于第二个数值" + "There was an error saving the favorite status: %s": [ + "获取此看板的收藏夹状态时出现问题: %s" ], - "pixelated (Sharp)": [""], - "previous calendar month": ["前一月"], - "previous calendar week": ["前一周"], - "previous calendar year": ["前一年"], - "published": ["已发布"], - "queries": ["序列"], - "query": ["查询"], - "reboot": ["重启"], - "recents": ["最近"], - "report": ["报告"], - "reports": ["报告"], - "restore zoom": [""], - "right": ["高度"], - "saved queries": ["已保存查询"], - "search by tags": [""], - "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ - "series:独立处理每个序列;overall:所有序列使用相同的比例;change:显示与每个序列中第一个数据点相比的更改" + "Connection looks good!": ["连接测试成功!"], + "ERROR: %s": ["错误: %s"], + "There was an error fetching your recent activity:": [ + "获取您最近的活动时出错:" ], - "std": [""], - "step-before": [""], - "string type icon": [""], - "sum": [""], - "tag": [""], - "temporal type icon": [""], - "textarea": ["文本区域"], - "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "上百分位数必须大于0且小于100。而且必须高于下百分位。" + "There was an issue deleting: %s": ["删除时出现问题:%s"], + "URL": ["URL 地址"], + "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ + "模板链接,可以包含{{度量}}或来自控件的其他值。" ], - "value ascending": ["指标升序"], - "value descending": ["指标降序"], - "virtual": ["虚拟信息"], - "was created": ["已创建"], - "week": ["周"], - "x": [""], - "x: values are normalized within each column": [""], - "y": [""], - "y: values are normalized within each row": [""], - "year": ["年"], - "zoom area": [""] + "Time-series Table": ["时间序列-表格"], + "Compare multiple time series charts (as sparklines) and related metrics quickly.": [ + "快速比较多个时间序列图表和相关指标。" + ], + "We have the following keys: %s": [""] } } } diff --git a/superset/translations/zh/LC_MESSAGES/messages.po b/superset/translations/zh/LC_MESSAGES/messages.po index 4997d7ab97163..8207bd11654c5 100644 --- a/superset/translations/zh/LC_MESSAGES/messages.po +++ b/superset/translations/zh/LC_MESSAGES/messages.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Apache Superset 0.22.1\n" "Report-Msgid-Bugs-To: zhouyao94@qq.com\n" -"POT-Creation-Date: 2023-05-23 16:30-0300\n" +"POT-Creation-Date: 2024-02-12 16:48-0700\n" "PO-Revision-Date: 2019-01-04 22:19+0800\n" "Last-Translator: cdmikechen \n" "Language: zh\n" @@ -29,15967 +29,16159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 -#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 -msgid "" -"\n" -" This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart.\n" -" " -msgstr "此过滤条件是从看板上下文继承的。保存图表时不会保存。" +#: superset/errors.py:101 +msgid "The datasource is too large to query." +msgstr "数据源太大,无法进行查询。" -#: superset/reports/notifications/email.py:89 -#, python-format -msgid "" -"\n" -" Error: %(text)s\n" -" " -msgstr "" +#: superset/errors.py:102 +msgid "The database is under an unusual load." +msgstr "数据库负载异常。" -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 -msgid " (excluded)" -msgstr "(不包含)" +#: superset/errors.py:103 +msgid "The database returned an unexpected error." +msgstr "数据库返回意外错误。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#: superset/errors.py:104 msgid "" -" Set the opacity to 0 if you do not want to override the color specified " -"in the GeoJSON" -msgstr "" +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." +msgstr "Issue 1003 - SQL查询中存在语法错误。可能是拼写错误或是打错关键字。" -#: superset-frontend/src/explore/components/SaveModal.tsx:399 -#, fuzzy -msgid " a dashboard OR " -msgstr "保存看板" +#: superset/errors.py:108 +msgid "The column was deleted or renamed in the database." +msgstr "该列已在数据库中删除或重命名。" -#: superset-frontend/src/explore/components/SaveModal.tsx:401 -#, fuzzy -msgid " a new one" -msgstr "改变为" +#: superset/errors.py:109 +msgid "The table was deleted or renamed in the database." +msgstr "Issue 1005 - 该表已在数据库中删除或重命名。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 -msgid " expression which needs to adhere to the " -msgstr " 表达式并基于 " +#: superset/errors.py:110 +msgid "One or more parameters specified in the query are missing." +msgstr "查询中指定的一个或多个参数丢失。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 -msgid " source code of Superset's sandboxed parser" -msgstr "" +#: superset/errors.py:111 +msgid "The hostname provided can't be resolved." +msgstr "提供的主机名无法解析。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +#: superset/errors.py:112 +msgid "The port is closed." +msgstr "报告失败" + +#: superset/errors.py:113 +msgid "The host might be down, and can't be reached on the provided port." +msgstr "主机可能宕机了,无法在所提供的端口上连接到它" + +#: superset/errors.py:114 +msgid "Superset encountered an error while running a command." +msgstr "警报在执行查询时发现错误。" + +#: superset/errors.py:115 +msgid "Superset encountered an unexpected error." +msgstr "报告计划意外错误。" + +#: superset/errors.py:116 +msgid "The username provided when connecting to a database is not valid." +msgstr "连接到数据库时提供的用户名无效。" + +#: superset/errors.py:117 +msgid "The password provided when connecting to a database is not valid." +msgstr "连接数据库时提供的密码无效。" + +#: superset/errors.py:118 +msgid "Either the username or the password is wrong." +msgstr "用户名或密码错误。" + +#: superset/errors.py:119 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "数据库拼写不正确或不存在。" + +#: superset/errors.py:120 +msgid "The schema was deleted or renamed in the database." +msgstr "该列已在数据库中删除或重命名。" + +#: superset/errors.py:121 +msgid "User doesn't have the proper permissions." +msgstr "您没有授权 " + +#: superset/errors.py:122 +msgid "One or more parameters needed to configure a database are missing." +msgstr "数据库配置缺少所需的一个或多个参数。" + +#: superset/errors.py:123 +msgid "The submitted payload has the incorrect format." +msgstr "提交的有效载荷格式不正确" + +#: superset/errors.py:124 +msgid "The submitted payload has the incorrect schema." +msgstr "提交的有效负载的模式不正确。" + +#: superset/errors.py:125 +msgid "Results backend needed for asynchronous queries is not configured." +msgstr "后端未配置异步查询所需的结果" + +#: superset/errors.py:126 +msgid "Database does not allow data manipulation." +msgstr "数据库不允许此数据操作。" + +#: superset/errors.py:127 msgid "" -" standard to ensure that the lexicographical ordering\n" -" coincides with the chronological ordering. If the\n" -" timestamp format does not adhere to the ISO 8601 " -"standard\n" -" you will need to define an expression and type for\n" -" transforming the string into a date or timestamp. " -"Note\n" -" currently time zones are not supported. If time is " -"stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no" -" pattern\n" -" is specified we fall back to using the optional " -"defaults on a per\n" -" database/column name level via the extra parameter." +"The CTAS (create table as select) doesn't have a SELECT statement at the " +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" -"来确保字符的表达顺序与时间顺序一致的标准。如果时间戳格式不符合 ISO 8601 " -"标准,则需要定义表达式和类型,以便将字符串转换为日期或时间戳。注意:当前不支持时区。如果时间以epoch格式存储,请输入 `epoch_s` or" -" `epoch_ms` 。如果没有指定任何模式,我们可以通过额外的参数在每个数据库/列名级别上使用可选的默认值。" +"CTA(create table as " +"select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 -#, fuzzy -msgid " to add calculated columns" -msgstr "计算列" +#: superset/errors.py:132 +msgid "CVAS (create view as select) query has more than one statement." +msgstr "CVAS (create view as select)查询有多条语句。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 -#, fuzzy -msgid " to add metrics" -msgstr "添加指标" +#: superset/errors.py:133 +msgid "CVAS (create view as select) query is not a SELECT statement." +msgstr "CVAS (create view as select)查询不是SELECT语句。" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -#, fuzzy -msgid " to edit or add columns and metrics." -msgstr "%s 列与计量指标" +#: superset/errors.py:134 +msgid "Query is too complex and takes too long to run." +msgstr "查询太复杂,运行时间太长。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 -msgid " to mark a column as a time column" -msgstr "" +#: superset/errors.py:135 +msgid "The database is currently running too many queries." +msgstr "数据库当前运行的查询太多" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 -msgid " to open SQL Lab. From there you can save the query as a dataset." -msgstr "" +#: superset/errors.py:136 +#, fuzzy +msgid "One or more parameters specified in the query are malformed." +msgstr "查询中指定的一个或多个参数的格式不正确。" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 -msgid " to visualize your data." -msgstr "" +#: superset/errors.py:137 +msgid "The object does not exist in the given database." +msgstr "源数据库中存在的表的名称" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:117 -msgid "!= (Is not equal)" -msgstr "!= (不等于)" +#: superset/errors.py:138 +msgid "The query has a syntax error." +msgstr "查询有语法错误。" -#: superset/security/analytics_db_safety.py:48 -#, python-format -msgid "%(dialect)s cannot be used as a data source for security reasons." -msgstr "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。" +#: superset/errors.py:139 +msgid "The results backend no longer has the data from the query." +msgstr "结果后端不再拥有来自查询的数据。" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 -#, python-format +#: superset/errors.py:140 +msgid "The query associated with the results was deleted." +msgstr "删除与结果关联的查询。" + +#: superset/errors.py:141 msgid "" -"%(message)s\n" -"This may be triggered by: \n" -"%(issues)s" -msgstr "" -"%(message)s\n" -"这可能由以下因素触发:%(issues)s" +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." +msgstr "后端存储的结果以不同的格式存储,而且不再可以反序列化" -#: superset/reports/notifications/email.py:171 -#, python-format -msgid "%(name)s.csv" -msgstr "" +#: superset/errors.py:145 +msgid "The port number is invalid." +msgstr "数据库参数无效" -#: superset/db_engine_specs/snowflake.py:112 -#, python-format -msgid "%(object)s does not exist in this database." -msgstr "%(object)s 数据库中不存在。" +#: superset/errors.py:146 superset/sqllab/sql_json_executer.py:190 +msgid "Failed to start remote query on a worker." +msgstr "无法启动远程查询" -#: superset-frontend/src/features/home/EmptyState.tsx:43 -#, fuzzy, python-format -msgid "%(other)s charts will appear here" -msgstr "示例 %(tableName)s 将出现在此处" +#: superset/errors.py:147 +msgid "The database was deleted." +msgstr "数据集已保存" -#: superset-frontend/src/features/home/EmptyState.tsx:45 -#, fuzzy, python-format -msgid "%(other)s dashboards will appear here" -msgstr "示例 %(tableName)s 将出现在此处" +#: superset/errors.py:148 superset/models/helpers.py:132 +msgid "Custom SQL fields cannot contain sub-queries." +msgstr "" -#: superset-frontend/src/features/home/EmptyState.tsx:47 -#, fuzzy, python-format -msgid "%(other)s recents will appear here" -msgstr "示例 %(tableName)s 将出现在此处" +#: superset/errors.py:149 +#, fuzzy +msgid "The submitted payload failed validation." +msgstr "提交的有效负载的模式不正确。" -#: superset-frontend/src/features/home/EmptyState.tsx:49 -#, fuzzy, python-format -msgid "%(other)s saved queries will appear here" -msgstr "最近查看的图表、看板和保存的查询将显示在此处" +#: superset/databases/schemas.py:197 superset/exceptions.py:196 +msgid "Invalid certificate" +msgstr "无效认证" -#: superset/reports/notifications/email.py:180 -#, python-format -msgid "%(prefix)s %(title)s" +#: superset/exceptions.py:292 +msgid "The schema of the submitted payload is invalid." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 +#: superset/forms.py:72 #, python-format -msgid "%(rows)d rows returned" -msgstr "%(rows)d行被检索到" +msgid "File size must be less than or equal to %(max_size)s bytes" +msgstr "" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#: superset/jinja_context.py:344 #, python-format -msgid "" -"%(subtitle)s\n" -"This may be triggered by:\n" -" %(issue)s" -msgstr "" -"%(subtitle)s\n" -"这可能由以下因素触发:%(issue)s" +msgid "Unsafe return type for function %(func)s: %(value_type)s" +msgstr "函数返回不安全的类型 %(func)s: %(value_type)s" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 -#, fuzzy, python-format -msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgid_plural "" -"%(firstSuggestions)s or %(lastSuggestion)s instead of " -"\"%(undefinedParameter)s\"?" -msgstr[0] "用 %(suggestion)s 替换 \"%(undefinedParameter)s\" 吗?" +#: superset/jinja_context.py:355 +#, python-format +msgid "Unsupported return value for method %(name)s" +msgstr "方法的返回值不受支持 %(name)s" -#: superset/views/core.py:385 +#: superset/jinja_context.py:371 #, python-format -msgid "" -"%(user)s was granted the role %(role)s that gives access to the " -"%(datasource)s" -msgstr "授予 %(user)s %(role)s 角色来访问 %(datasource)s 数据库" +msgid "Unsafe template value for key %(key)s: %(value_type)s" +msgstr "键的模板值不安全 %(key)s: %(value_type)s" -#: superset/views/core.py:2709 +#: superset/jinja_context.py:382 #, python-format -msgid "%(user)s's profile" -msgstr "%(user)s 的信息" +msgid "Unsupported template value for key %(key)s" +msgstr "键的模板值不受支持 %(key)s" + +#: superset/sql_lab.py:236 +msgid "Only SELECT statements are allowed against this database." +msgstr "此数据库只允许使用 `SELECT` 语句" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 +#: superset/sql_lab.py:302 #, python-format msgid "" -"%(validator)s was unable to check your query.\n" -"Please recheck your query.\n" -"Exception: %(ex)s" -msgstr "" -"%(validator)s 无法检查您的查询。\n" -"请重新检查您的查询。\n" -"异常: %(ex)s" - -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 -#, python-format -msgid "%s Error" -msgstr "%s 异常" +"The query was killed after %(sqllab_timeout)s seconds. It might be too " +"complex, or the database might be under heavy load." +msgstr "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或者数据库可能负载过重。" -#: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 -#, fuzzy, python-format -msgid "%s PASSWORD" -msgstr "密码" +#: superset/commands/sql_lab/results.py:59 superset/sql_lab.py:406 +msgid "Results backend is not configured." +msgstr "后端未配置结果" -#: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 -#, python-format -msgid "%s SSH TUNNEL PASSWORD" +#: superset/sql_lab.py:440 +msgid "" +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" +"CTA(create table as " +"select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" -#: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 -#, python-format -msgid "%s SSH TUNNEL PRIVATE KEY" +#: superset/sql_lab.py:457 +msgid "" +"CVAS (create view as select) can only be run with a query with a single " +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" +"CVAS(createview as " +"select)只能与带有单个SELECT语句的查询一起运行。请确保您的查询只有SELECT语句。然后再次尝试运行查询。" -#: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 +#: superset/sql_lab.py:488 #, python-format -msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" -#: superset-frontend/src/components/ListView/ListView.tsx:245 -#, python-format -msgid "%s Selected" -msgstr "%s 已选定" - -#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#: superset/sql_lab.py:510 #, python-format -msgid "%s Selected (%s Physical, %s Virtual)" -msgstr "%s 个被选中 (%s 个物理, %s 个虚拟)" +msgid "Statement %(statement_num)s out of %(statement_count)s" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:823 -#, python-format -msgid "%s Selected (Physical)" -msgstr "%s 个被选中(物理)" +#: superset/viz.py:127 +msgid "Viz is missing a datasource" +msgstr "Viz 缺少一个数据源" -#: superset-frontend/src/pages/DatasetList/index.tsx:816 -#, python-format -msgid "%s Selected (Virtual)" -msgstr "%s 个被选中(虚拟)" +#: superset/viz.py:237 +msgid "" +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." +msgstr "应用的滚动窗口(rolling window)未返回任何数据。请确保源查询满足滚动窗口中定义的最小周期。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 -#, python-format -msgid "%s aggregates(s)" -msgstr "%s 聚合" +#: superset/utils/date_parser.py:267 superset/viz.py:387 +msgid "From date cannot be larger than to date" +msgstr "起始时间不可以大于当前时间" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 -#, python-format -msgid "%s column(s)" -msgstr "%s 列" +#: superset/viz.py:562 +msgid "Cached value not found" +msgstr "缓存的值未找到" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#: superset/viz.py:577 #, python-format -msgid "%s operator(s)" -msgstr "%s 运算符" +msgid "Columns missing in datasource: %(invalid_columns)s" +msgstr "数据源中缺少列:%(invalid_columns)s" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 -#, fuzzy, python-format -msgid "%s option" -msgid_plural "%s options" -msgstr[0] "%s 个选项" +#: superset/viz.py:706 +msgid "Time Table View" +msgstr "时间表视图" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 -#, python-format -msgid "%s option(s)" -msgstr "%s 个选项" +#: superset/viz.py:715 superset/viz.py:1285 +msgid "Pick at least one metric" +msgstr "选择至少一个指标" -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 -#, fuzzy, python-format -msgid "%s row" -msgid_plural "%s rows" -msgstr[0] "%s 异常" +#: superset/viz.py:719 +msgid "When using 'Group By' you are limited to use a single metric" +msgstr "当使用“Group by”时,只限于使用单个度量。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 -#, python-format -msgid "%s saved metric(s)" -msgstr "%s 列与计量指标" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:753 +msgid "Calendar Heatmap" +msgstr "时间热力图" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 -#, fuzzy, python-format -msgid "%s updated" -msgstr "上次更新 %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:45 +#: superset/viz.py:844 +msgid "Bubble Chart" +msgstr "气泡图" -#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 -#, python-format -msgid "%s%s" -msgstr "%s%s" +#: superset/viz.py:867 +msgid "Please use 3 different metric labels" +msgstr "请在左右轴上选择不同的指标" -#: superset-frontend/src/components/ListView/ListView.tsx:441 -#: superset-frontend/src/components/TableView/TableView.tsx:250 -#, python-format -msgid "%s-%s of %s" -msgstr "%s-%s 总计 %s" +#: superset/viz.py:869 +msgid "Pick a metric for x, y and size" +msgstr "为 x 轴,y 轴和大小选择一个指标" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 -msgid "(Removed)" -msgstr "(已删除)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:897 +msgid "Bullet Chart" +msgstr "子弹图" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 -msgid "(deleted or invalid type)" -msgstr "" +#: superset/viz.py:910 +msgid "Pick a metric to display" +msgstr "选择一个指标来显示" -#: superset-frontend/src/utils/getClientErrorObject.ts:76 -msgid "(no description, click to see stack trace)" -msgstr "无描述,单击可查看堆栈跟踪" +#: superset/viz.py:929 +msgid "Time Series - Line Chart" +msgstr "时间序列-折线图" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 +#: superset/common/query_context_processor.py:372 superset/viz.py:1067 msgid "" -"(optional) default value for the filter, when using the multiple option, " -"you can use a semicolon-delimited list of options." -msgstr "过滤器的默认值,当使用多选框的时候,您可以使用带分号的分隔列表。" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 -msgid "), and they become available in your SQL (example:" -msgstr "" +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" -#: superset/reports/notifications/slack.py:65 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"<%(url)s|Explore in Superset>\n" -"\n" -"%(table)s\n" -msgstr "" +#: superset/viz.py:1136 +msgid "Time Series - Bar Chart" +msgstr "时间序列 - 柱状图" -#: superset/reports/notifications/slack.py:82 -#, python-format -msgid "" -"*%(name)s*\n" -"\n" -"%(description)s\n" -"\n" -"Error: %(text)s\n" -msgstr "" +#: superset/viz.py:1145 +msgid "Time Series - Period Pivot" +msgstr "时间序列 - 周期透视表" -#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 -#: superset-frontend/src/components/TruncatedList/index.tsx:147 -#, python-format -msgid "+ %s more" -msgstr "" +#: superset/viz.py:1193 +msgid "Time Series - Percent Change" +msgstr "时间序列 - 百分比变化" -#: superset/views/database/forms.py:163 -msgid "," -msgstr "" +#: superset/viz.py:1201 +msgid "Time Series - Stacked" +msgstr "时间序列 - 堆积图" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 -msgid "" -"-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers.\n" -"\n" -msgstr "-- 注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1211 +msgid "Histogram" +msgstr "直方图" -#: superset/views/database/forms.py:164 -msgid "." -msgstr "" +#: superset/viz.py:1221 +msgid "Must have at least one numeric column specified" +msgstr "必须至少指明一个数值列" -#: superset-frontend/src/pages/DatasetList/index.tsx:813 -msgid "0 Selected" -msgstr "0个被选中" +#: superset/viz.py:1272 +msgid "Distribution - Bar Chart" +msgstr "分布 - 柱状图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 -msgid "1 calendar day frequency" -msgstr "" +#: superset/viz.py:1282 +msgid "Can't have overlap between Series and Breakdowns" +msgstr "Series 和 Breakdown 之间不能有重叠" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 -#: superset-frontend/src/explore/controlPanels/sections.tsx:184 -#: superset-frontend/src/explore/controls.jsx:262 -#, fuzzy -msgid "1 day" -msgstr "天" +#: superset/viz.py:1287 +msgid "Pick at least one field for [Series]" +msgstr "为 [序列] 选择至少一个字段" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 -msgid "1 day ago" -msgstr "" +#: superset/viz.py:1360 +msgid "Sankey" +msgstr "蛇形图" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 -#: superset-frontend/src/explore/controls.jsx:260 -msgid "1 hour" -msgstr "1小时" +#: superset/viz.py:1369 +msgid "Pick exactly 2 columns as [Source / Target]" +msgstr "为 [来源 / 目标] 选择两个列" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 -#, fuzzy -msgid "1 hourly frequency" -msgstr "刷新频率" +#: superset/viz.py:1421 +msgid "" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" +msgstr "桑基图里面有一个循环,请提供一棵树。这是一个错误的链接:{}" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 -#: superset-frontend/src/explore/controls.jsx:257 -msgid "1 minute" -msgstr "1分钟" +#: superset/viz.py:1434 +msgid "Directed Force Layout" +msgstr "有向图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 -msgid "1 minutely frequency" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1475 +msgid "Country Map" +msgstr "国家地图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 -msgid "1 month end frequency" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:1512 +msgid "World Map" +msgstr "世界地图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 -msgid "1 month start frequency" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:1580 +msgid "Parallel Coordinates" +msgstr "平行坐标" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 -#: superset-frontend/src/explore/controlPanels/sections.tsx:185 -#, fuzzy -msgid "1 week" -msgstr "周" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:1611 +msgid "Heatmap" +msgstr "热力图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 -msgid "1 week ago" -msgstr "" +#: superset/viz.py:1674 +msgid "Horizon Charts" +msgstr "水平图" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 -#, fuzzy -msgid "1 week starting Monday (freq=W-MON)" -msgstr "周一为一周开始" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 -#, fuzzy -msgid "1 week starting Sunday (freq=W-SUN)" -msgstr "周日为一周开始" +#: superset/viz.py:1686 +msgid "Mapbox" +msgstr "箱图" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 -#: superset-frontend/src/explore/controlPanels/sections.tsx:189 -#, fuzzy -msgid "1 year" -msgstr "年" +#: superset/viz.py:1701 +msgid "[Longitude] and [Latitude] must be set" +msgstr "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 -msgid "1 year ago" -msgstr "" +#: superset/viz.py:1711 +msgid "Must have a [Group By] column to have 'count' as the [Label]" +msgstr "[Group By] 列必须要有 ‘count’字段作为 [标签]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 -#, fuzzy -msgid "1 year end frequency" -msgstr "刷新频率" +#: superset/viz.py:1735 +msgid "Choice of [Label] must be present in [Group By]" +msgstr "[标签] 的选择项必须出现在 [Group By]" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 -#, fuzzy -msgid "1 year start frequency" -msgstr "刷新频率" +#: superset/viz.py:1743 +msgid "Choice of [Point Radius] must be present in [Group By]" +msgstr "[点半径] 的选择项必须出现在 [Group By]" -#: superset/db_engine_specs/base.py:102 -msgid "10 minute" -msgstr "10分钟" +#: superset/viz.py:1751 +msgid "[Longitude] and [Latitude] columns must be present in [Group By]" +msgstr "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 -#: superset-frontend/src/explore/controlPanels/sections.tsx:190 -#, fuzzy -msgid "104 weeks" -msgstr "周" +#: superset/viz.py:1834 +msgid "Deck.gl - Multiple Layers" +msgstr "多图层" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 -msgid "104 weeks ago" -msgstr "" +#: superset/viz.py:1880 superset/viz.py:1921 +msgid "Bad spatial key" +msgstr "错误的空间字段" -#: superset/db_engine_specs/base.py:103 -msgid "15 minute" -msgstr "15分钟" +#: superset/viz.py:1902 +#, fuzzy, python-format +msgid "Invalid spatial point encountered: %(latlong)s" +msgstr "遇到无效的空间点:%s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 -#: superset-frontend/src/explore/controlPanels/sections.tsx:192 -#, fuzzy -msgid "156 weeks" -msgstr "周" +#: superset/viz.py:1943 +msgid "" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" +msgstr "遇到无效的为 NULL 的空间条目,请考虑将其过滤掉" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 -msgid "156 weeks ago" -msgstr "" +#: superset/viz.py:2041 +msgid "Deck.gl - Scatter plot" +msgstr "Deck.gl - 散点图" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 -#: superset-frontend/src/explore/controlPanels/sections.tsx:238 -msgid "1AS" -msgstr "" +#: superset/viz.py:2095 +msgid "Deck.gl - Screen Grid" +msgstr "Deck.gl - 屏幕网格" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 -#: superset-frontend/src/explore/controlPanels/sections.tsx:235 -msgid "1D" -msgstr "" +#: superset/viz.py:2125 +msgid "Deck.gl - 3D Grid" +msgstr "Deck.gl - 3D网格" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 -#: superset-frontend/src/explore/controlPanels/sections.tsx:234 -msgid "1H" -msgstr "" +#: superset/viz.py:2160 +msgid "Deck.gl - Paths" +msgstr "Deck.gl - 路径" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 -#: superset-frontend/src/explore/controlPanels/sections.tsx:237 -msgid "1M" -msgstr "" +#: superset/viz.py:2212 +msgid "Deck.gl - Polygon" +msgstr "Deck.gl - 多角形" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 -#: superset-frontend/src/explore/controlPanels/sections.tsx:233 -msgid "1T" -msgstr "" +#: superset/viz.py:2248 +msgid "Deck.gl - 3D HEX" +msgstr "Deck.gl - 3D六角曲面" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 -#: superset-frontend/src/explore/controlPanels/sections.tsx:191 +#: superset/viz.py:2271 #, fuzzy -msgid "2 years" -msgstr "年" +msgid "Deck.gl - Heatmap" +msgstr "圆弧图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 -msgid "2 years ago" -msgstr "" +#: superset/viz.py:2292 +#, fuzzy +msgid "Deck.gl - Contour" +msgstr "Deck.gl - 弧度" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 -msgid "2/98 percentiles" -msgstr "" +#: superset/viz.py:2313 +msgid "Deck.gl - GeoJSON" +msgstr "Deck.gl - 地理json" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 -msgid "22" -msgstr "" +#: superset/viz.py:2334 +msgid "Deck.gl - Arc" +msgstr "Deck.gl - 弧度" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 -#: superset-frontend/src/explore/controlPanels/sections.tsx:186 -#, fuzzy -msgid "28 days" -msgstr "90天" +#: superset/viz.py:2369 +msgid "Event flow" +msgstr "事件流" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 -msgid "28 days ago" -msgstr "" +#: superset/viz.py:2403 +msgid "Time Series - Paired t-test" +msgstr "时间序列 - 配对t检验" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 -msgid "2D" -msgstr "2D" +#: superset/viz.py:2475 +msgid "Time Series - Nightingale Rose Chart" +msgstr "时间序列 - 南丁格尔玫瑰图" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 -msgid "3 letter code of the country" -msgstr "国家3字码" +#: superset/viz.py:2511 +msgid "Partition Diagram" +msgstr "分区图" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 -#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +#: superset/viz.py:2676 #, fuzzy -msgid "3 years" -msgstr "年" +msgid "Please choose at least one groupby" +msgstr "请至少选择一个分组字段 " -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 -msgid "3 years ago" -msgstr "" +#: superset/advanced_data_type/api.py:101 +#, fuzzy, python-format +msgid "Invalid advanced data type: %(advanced_data_type)s" +msgstr "无效的结果类型:%(result_type)s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 -#: superset-frontend/src/explore/controlPanels/sections.tsx:187 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:132 -msgid "30 days" -msgstr "30天" +#: superset/annotation_layers/api.py:346 +#, python-format +msgid "Deleted %(num)d annotation layer" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "选择一个注释图层" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 -#, fuzzy -msgid "30 days ago" -msgstr "30天" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "所有文本" -#: superset/db_engine_specs/base.py:104 -msgid "30 minute" -msgstr "30分钟" +#: superset/annotation_layers/annotations/api.py:488 +#, python-format +msgid "Deleted %(num)d annotation" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "选择一个注释图层" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 -#: superset-frontend/src/explore/controls.jsx:259 -msgid "30 minutes" -msgstr "30分钟" +#: superset/charts/api.py:523 +#, python-format +msgid "Deleted %(num)d chart" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "删除了 %(num)d 个图表" -#: superset/db_engine_specs/base.py:99 -msgid "30 second" -msgstr "30秒钟" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:210 +#: superset/datasets/filters.py:39 +msgid "Is certified" +msgstr "已认证" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 -#: superset-frontend/src/explore/controls.jsx:256 -msgid "30 seconds" -msgstr "30秒钟" +#: superset/charts/filters.py:107 superset/dashboards/filters.py:236 +#, fuzzy +msgid "Has created by" +msgstr "已创建" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 -msgid "3D" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 +#, fuzzy +msgid "Created by me" +msgstr "创建人" + +#: superset/charts/filters.py:141 +msgid "Owned Created or Favored" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 -msgid "4 weeks (freq=4W-MON)" +#: superset/charts/post_processing.py:72 +#, python-format +msgid "Total (%(aggfunc)s)" msgstr "" -#: superset/db_engine_specs/base.py:101 -msgid "5 minute" -msgstr "5分钟" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:160 +#: superset/charts/post_processing.py:177 +msgid "Subtotal" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 -#: superset-frontend/src/explore/controls.jsx:258 -msgid "5 minutes" -msgstr "5分钟" +#: superset/charts/schemas.py:647 +msgid "`confidence_interval` must be between 0 and 1 (exclusive)" +msgstr "`置信区间` 必须介于0和1之间(开区间)" -#: superset/db_engine_specs/base.py:98 -msgid "5 second" -msgstr "5秒" +#: superset/charts/schemas.py:728 +msgid "" +"lower percentile must be greater than 0 and less than 100. Must be lower " +"than upper percentile." +msgstr "下百分位数必须大于0且小于100。而且必须低于上百分位" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 -#: superset-frontend/src/explore/controls.jsx:255 -#, fuzzy -msgid "5 seconds" -msgstr "5秒" +#: superset/charts/schemas.py:743 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "上百分位数必须大于0且小于100。而且必须高于下百分位。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 -#: superset-frontend/src/explore/controlPanels/sections.tsx:188 -#, fuzzy -msgid "52 weeks" -msgstr "周" +#: superset/charts/schemas.py:1093 +msgid "`width` must be greater or equal to 0" +msgstr "`宽度` 必须大于或等于0" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 -msgid "52 weeks ago" -msgstr "" +#: superset/charts/schemas.py:1266 +msgid "`row_limit` must be greater than or equal to 0" +msgstr "`行限制` 必须大于或等于1" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 -#, fuzzy -msgid "52 weeks starting Monday (freq=52W-MON)" -msgstr "周一为一周开始" +#: superset/charts/schemas.py:1273 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`行偏移量` 必须大于或等于0" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 -#: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:106 -msgid "6 hour" -msgstr "6小时" +#: superset/charts/schemas.py:1295 +msgid "orderby column must be populated" +msgstr "无法更新您的查询" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:136 -msgid "60 days" -msgstr "60天" +#: superset/charts/data/api.py:138 +msgid "Chart has no query context saved. Please save the chart again." +msgstr "图表未保存任何查询上下文。请重新保存图表。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 -msgid "7 calendar day frequency" -msgstr "" +#: superset/charts/data/api.py:161 superset/charts/data/api.py:249 +#: superset/charts/data/api.py:319 +#, python-format +msgid "Request is incorrect: %(error)s" +msgstr "请求不正确: %(error)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:263 +#: superset/charts/data/api.py:236 +msgid "Request is not JSON" +msgstr "请求不是JSON" + +#: superset/charts/data/api.py:369 #, fuzzy -msgid "7 days" -msgstr "90天" +msgid "Empty query result" +msgstr "查询为空?" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 -#: superset-frontend/src/explore/controlPanels/sections.tsx:236 -msgid "7D" -msgstr "" +#: superset/commands/dataset/exceptions.py:144 +#: superset/commands/exceptions.py:112 +msgid "Owners are invalid" +msgstr "所有者无效" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 -msgid "9/91 percentiles" +#: superset/commands/exceptions.py:119 +msgid "Some roles do not exist" +msgstr "看板" + +#: superset/commands/exceptions.py:127 +msgid "Datasource type is invalid" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:140 -msgid "90 days" -msgstr "90天" +#: superset/commands/exceptions.py:135 +#, fuzzy +msgid "Datasource does not exist" +msgstr "数据集不存在" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 -msgid ":" -msgstr ":" +#: superset/commands/exceptions.py:142 +#, fuzzy +msgid "Query does not exist" +msgstr "图表没有找到" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:97 -msgid "< (Smaller than)" -msgstr "< (小于)" +#: superset/commands/annotation_layer/exceptions.py:29 +msgid "Annotation layer parameters are invalid." +msgstr "注释层仍在加载。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:105 -msgid "<= (Smaller or equal)" -msgstr "<= (小于等于)" +#: superset/commands/annotation_layer/exceptions.py:33 +msgid "Annotation layer could not be created." +msgstr "您的查询无法保存" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 -msgid "" -msgstr "" +#: superset/commands/annotation_layer/exceptions.py:37 +msgid "Annotation layer could not be updated." +msgstr "您的查询无法保存" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 -#, fuzzy -msgid "" -msgstr "时间列" +#: superset/commands/annotation_layer/exceptions.py:41 +msgid "Annotation layer not found." +msgstr "注释层仍在加载。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 +#: superset/commands/annotation_layer/exceptions.py:45 #, fuzzy -msgid "" -msgstr "保存的指标" +msgid "Annotation layers could not be deleted." +msgstr "注释层仍在加载。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 -#, fuzzy -msgid "" -msgstr "空间" +#: superset/commands/annotation_layer/exceptions.py:49 +msgid "Annotation layer has associated annotations." +msgstr "注释层仍在加载。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 -#, fuzzy -msgid "" -msgstr "图表类型" +#: superset/commands/annotation_layer/exceptions.py:58 +msgid "Name must be unique" +msgstr "名称必须是唯一的" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:113 -msgid "== (Is equal)" -msgstr "== (等于)" +#: superset/commands/annotation_layer/annotation/exceptions.py:35 +msgid "End date must be after start date" +msgstr "起始时间不可以大于当前时间" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:101 -msgid "> (Larger than)" -msgstr "> (大于)" +#: superset/commands/annotation_layer/annotation/exceptions.py:46 +msgid "Short description must be unique for this layer" +msgstr "此层的简述必须是唯一的" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:109 -msgid ">= (Larger or equal)" -msgstr ">= (大于等于)" +#: superset/commands/annotation_layer/annotation/exceptions.py:52 +msgid "Annotation not found." +msgstr "注释不存在。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 -msgid "A Big Number" -msgstr "大数字" +#: superset/commands/annotation_layer/annotation/exceptions.py:56 +msgid "Annotation parameters are invalid." +msgstr "注释层仍在加载。" -#: superset/views/database/forms.py:194 -#, fuzzy -msgid "A comma separated list of columns that should be parsed as dates" -msgstr "应作为日期解析的列的逗号分隔列表。" +#: superset/commands/annotation_layer/annotation/exceptions.py:60 +msgid "Annotation could not be created." +msgstr "注释无法创建。" -#: superset/views/database/forms.py:377 -msgid "A comma separated list of columns that should be parsed as dates." -msgstr "应作为日期解析的列的逗号分隔列表。" +#: superset/commands/annotation_layer/annotation/exceptions.py:64 +msgid "Annotation could not be updated." +msgstr "注释无法更新。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#, fuzzy -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "允许以逗号分割的CSV文件上传" +#: superset/commands/annotation_layer/annotation/exceptions.py:68 +msgid "Annotations could not be deleted." +msgstr "无法删除注释。" -#: superset/databases/commands/exceptions.py:42 -msgid "A database with the same name already exists." -msgstr "已存在同名的数据库。" +#: superset/commands/chart/delete.py:63 +#: superset/commands/dashboard/delete.py:63 +#: superset/commands/database/delete.py:62 +#, fuzzy, python-format +msgid "There are associated alerts or reports: %(report_names)s" +msgstr "存在关联的警报或报告:%s," -#: superset/views/database/forms.py:145 +#: superset/commands/chart/exceptions.py:38 +#, python-format msgid "" -"A dictionary with column names and their data types if you need to change" -" the defaults. Example: {\"user_id\":\"integer\"}" -msgstr "" +"Time string is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "时间字符串是模糊的。" -#: superset/views/dynamic_plugins.py:52 -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted " -"on a CDN for example)" -msgstr "指向内置插件位置的完整URL(例如,可以托管在CDN上)" +#: superset/commands/chart/exceptions.py:51 +#, python-format +msgid "Cannot parse time string [%(human_readable)s]" +msgstr "无法解析时间字符串[%(human_readable)s]" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 -msgid "A handlebars template that is applied to the data" -msgstr "" +#: superset/commands/chart/exceptions.py:66 +#, python-format +msgid "" +"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " +"[%(human_readable)s later]." +msgstr "时间是模糊的。" -#: superset/views/dynamic_plugins.py:47 -msgid "A human-friendly name" -msgstr "人性化的名称" +#: superset/commands/chart/exceptions.py:82 +#: superset/commands/dataset/exceptions.py:41 +#: superset/commands/report/exceptions.py:37 +msgid "Database does not exist" +msgstr "数据库不存在" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 -msgid "" -"A list of domain names that can embed this dashboard. Leaving this field " -"empty will allow embedding from any domain." -msgstr "" +#: superset/commands/chart/exceptions.py:91 +msgid "Dashboards do not exist" +msgstr "仪表盘" -#: 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." -msgstr "对此图表进行认证的个人或团体。" +#: superset/commands/chart/exceptions.py:101 +msgid "Datasource type is required when datasource_id is given" +msgstr "给定数据源id时,需要提供数据源类型" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "A list of users who can alter the chart. Searchable by name or username." -msgstr "有权处理该图表的用户列表。可按名称或用户名搜索。" +#: superset/commands/chart/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "图表参数无效。" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 -msgid "A map of the world, that can indicate values in different countries." -msgstr "一张世界地图,可以显示不同国家的价值观。" +#: superset/commands/chart/exceptions.py:115 +msgid "Chart could not be created." +msgstr "您的查询无法保存。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 -msgid "" -"A map that takes rendering circles with a variable radius at " -"latitude/longitude coordinates" -msgstr "" +#: superset/commands/chart/exceptions.py:119 +msgid "Chart could not be updated." +msgstr "您的查询无法保存。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 -#: superset-frontend/src/explore/controls.jsx:237 -msgid "A metric to use for color" -msgstr "用于颜色的指标" +#: superset/commands/chart/exceptions.py:123 +msgid "Charts could not be deleted." +msgstr "这个查询无法被加载" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 -msgid "" -"A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area," -" rather than its radius or sweep angle." -msgstr "一种极坐标图表,其中圆被分成等角度的楔形,任何楔形表示的值由其面积表示,而不是其半径或扫掠角度。" +#: superset/commands/chart/exceptions.py:127 +#: superset/commands/dashboard/exceptions.py:66 +#: superset/commands/database/exceptions.py:119 +msgid "There are associated alerts or reports" +msgstr "存在关联的警报或报告" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 -msgid "A readable URL for your dashboard" -msgstr "为看板生成一个可读的 URL" +#: superset/commands/chart/exceptions.py:131 +#, fuzzy +msgid "You don't have access to this chart." +msgstr "您没有编辑此看板的权限。" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 -#: superset-frontend/src/explore/controls.jsx:113 -msgid "A reference to the [Time] configuration, taking granularity into account" -msgstr "对 [时间] 配置的引用,会将粒度考虑在内" +#: superset/commands/chart/exceptions.py:135 +msgid "Changing this chart is forbidden" +msgstr "禁止更改此图表" -#: superset/reports/commands/exceptions.py:186 -#, fuzzy, python-format -msgid "A report named \"%(name)s\" already exists" -msgstr "数据集 %(name)s 已存在" +#: superset/commands/chart/exceptions.py:147 +msgid "Import chart failed for an unknown reason" +msgstr "导入图表失败,原因未知" -#: superset-frontend/src/explore/components/SaveModal.tsx:368 -msgid "A reusable dataset will be saved with your chart." -msgstr "" +#: superset/commands/chart/exceptions.py:151 +#, fuzzy +msgid "Changing one or more of these dashboards is forbidden" +msgstr "无法修改该看板" -#: superset-frontend/src/components/ReportModal/index.tsx:308 +#: superset/commands/chart/exceptions.py:156 #, fuzzy -msgid "A screenshot of the dashboard will be sent to your email at" -msgstr "计划的报告将作为PNG发送到您的电子邮件" +msgid "Chart not found" +msgstr "图表 %(id)s 没有找到" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:365 -msgid "" -"A set of parameters that become available in the query using Jinja " -"templating syntax" -msgstr "在查询中可用的一组参数使用JINJA模板语法" +#: superset/commands/chart/data/get_data_command.py:55 +#, python-format +msgid "Error: %(error)s" +msgstr "" -#: superset/common/query_context_processor.py:417 +#: superset/commands/css/exceptions.py:23 #, fuzzy -msgid "A time column must be specified when using a Time Comparison." -msgstr "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" +msgid "CSS templates could not be deleted." +msgstr "CSS模板不能被删除" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 -msgid "" -"A time series chart that visualizes how a related metric from multiple " -"groups vary over time. Each group is visualized using a different color." -msgstr "时间序列图表,直观显示多个组中的相关指标随时间的变化情况。每组使用不同的颜色进行可视化" +#: superset/commands/css/exceptions.py:27 +msgid "CSS template not found." +msgstr "CSS模板未找到" -#: superset/reports/commands/exceptions.py:228 -msgid "A timeout occurred while executing the query." -msgstr "查询超时。" +#: superset/commands/dashboard/exceptions.py:39 +msgid "Must be unique" +msgstr "需要唯一" -#: superset/reports/commands/exceptions.py:238 -msgid "A timeout occurred while generating a csv." -msgstr "生成CSV时超时。" +#: superset/commands/dashboard/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "看板参数无效。" -#: superset/reports/commands/exceptions.py:243 -msgid "A timeout occurred while generating a dataframe." -msgstr "生成数据超时" +#: superset/commands/dashboard/exceptions.py:54 +#, fuzzy +msgid "Dashboards could not be created." +msgstr "看板无法被创建" -#: superset/reports/commands/exceptions.py:233 -msgid "A timeout occurred while taking a screenshot." -msgstr "截图超时" +#: superset/commands/dashboard/exceptions.py:58 +msgid "Dashboard could not be updated." +msgstr "看板无法更新。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 -msgid "A valid color scheme is required" -msgstr "需要有效的配色方案" +#: superset/commands/dashboard/exceptions.py:62 +msgid "Dashboard could not be deleted." +msgstr "看板无法被删除。" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 -msgid "APPLY" -msgstr "应用" +#: superset/commands/dashboard/exceptions.py:70 +msgid "Changing this Dashboard is forbidden" +msgstr "无法修改该看板" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 -msgid "APR" -msgstr "四月" +#: superset/commands/dashboard/exceptions.py:74 +msgid "Import dashboard failed for an unknown reason" +msgstr "因为未知原因导入看板失败" -#: superset-frontend/src/pages/DatabaseList/index.tsx:323 -#: superset-frontend/src/pages/DatabaseList/index.tsx:489 -msgid "AQE" -msgstr "AQE(异步执行查询)" +#: superset/commands/dashboard/exceptions.py:78 +msgid "You don't have access to this dashboard." +msgstr "您没有编辑此看板的权限。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 -msgid "AUG" -msgstr "八月" +#: superset/commands/dashboard/embedded/exceptions.py:34 +#, fuzzy +msgid "You don't have access to this embedded dashboard config." +msgstr "您没有编辑此看板的权限。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 -msgid "AXIS TITLE MARGIN" -msgstr "" +#: superset/commands/dashboard/importers/v0.py:304 +msgid "No data in file" +msgstr "文件中无数据" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 -#, fuzzy -msgid "AXIS TITLE POSITION" -msgstr "行小计的位置" +#: superset/commands/database/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "数据库参数无效" -#: superset-frontend/src/features/home/RightMenu.tsx:492 -msgid "About" -msgstr "关于" +#: superset/commands/database/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "已存在同名的数据库。" -#: 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 "访问" +#: superset/commands/database/exceptions.py:50 +#: superset/commands/database/ssh_tunnel/exceptions.py:57 +msgid "Field is required" +msgstr "字段是必需的" -#: superset/initialization/__init__.py:425 -msgid "Access requests" -msgstr "访问请求" +#: superset/commands/database/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "字段不能由JSON解码。%{json_error}s" -#: superset-frontend/src/components/TableLoader/index.tsx:91 -msgid "Access to user activity data is restricted" -msgstr "" +#: superset/commands/database/exceptions.py:80 +#: superset/views/database/mixins.py:248 +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%{key}s is invalid." +msgstr "额外字段中的元数据参数配置不正确。键 %{key}s 无效。" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 -#, fuzzy -msgid "Access token" -msgstr "上一个" +#: superset/commands/database/exceptions.py:92 +msgid "Database not found." +msgstr "数据库没有找到" -#: superset/views/core.py:318 -msgid "Access was requested" -msgstr "请求访问" +#: superset/commands/database/exceptions.py:96 +msgid "Database could not be created." +msgstr "数据库无法被创建" -#: superset/views/log/__init__.py:31 -msgid "Action" -msgstr "操作" +#: superset/commands/database/exceptions.py:100 +msgid "Database could not be updated." +msgstr "数据库无法更新" -#: superset/initialization/__init__.py:387 -msgid "Action Log" -msgstr "操作日志" +#: superset/commands/database/exceptions.py:107 +#: superset/commands/database/exceptions.py:124 +msgid "Connection failed, please check your connection settings" +msgstr "连接失败,请检查您的连接配置" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 -#: superset-frontend/src/pages/AlertReportList/index.tsx:404 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 -#: superset-frontend/src/pages/AnnotationList/index.tsx:203 -#: superset-frontend/src/pages/ChartList/index.tsx:569 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 -#: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:459 -#: superset-frontend/src/pages/DatasetList/index.tsx:499 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 -#: superset-frontend/src/pages/Tags/index.tsx:171 -msgid "Actions" -msgstr "操作" +#: superset/commands/database/exceptions.py:111 +msgid "Cannot delete a database that has datasets attached" +msgstr "无法删除附加了数据集的数据库" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 -#: superset-frontend/src/pages/AlertReportList/index.tsx:355 -msgid "Active" -msgstr "激活" +#: superset/commands/database/exceptions.py:115 +msgid "Database could not be deleted." +msgstr "数据库不能删除。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 -#, fuzzy -msgid "Actual Values" -msgstr "空值" +#: superset/commands/database/exceptions.py:128 +msgid "Stopped an unsafe database connection" +msgstr "已停止不安全的数据库连接" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 -msgid "Actual time range" -msgstr "实际时间范围" +#: superset/commands/database/exceptions.py:132 +msgid "Could not load database driver" +msgstr "无法加载数据库驱动程序" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 -#, fuzzy -msgid "Actual value" -msgstr "空值" +#: superset/commands/database/exceptions.py:137 +#: superset/commands/database/exceptions.py:142 +msgid "Unexpected error occurred, please check your logs for details" +msgstr "发生意外错误,请检查日志以了解详细信息" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 -#: superset-frontend/src/explore/controlPanels/sections.tsx:210 +#: superset/commands/database/exceptions.py:147 #, fuzzy -msgid "Actual values" -msgstr "空值" - -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 -#: superset-frontend/src/explore/controls.jsx:78 -#: superset-frontend/src/explore/controls.jsx:101 -msgid "Adaptive formatting" -msgstr "自动匹配格式化" +msgid "no SQL validator is configured" +msgstr "告警验证器配置错误。" -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Add" -msgstr "新增" +#: superset/commands/database/exceptions.py:152 +msgid "No validator found (configured for the engine)" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 -msgid "Add Alert" -msgstr "添加告警" +#: superset/commands/database/exceptions.py:157 +#: superset/commands/database/exceptions.py:167 +#, fuzzy +msgid "Was unable to check your query" +msgstr "为您的查询设置标签" -#: superset/views/css_templates.py:40 -msgid "Add CSS Template" -msgstr "新增CSS模板" +#: superset/commands/database/exceptions.py:162 +#, fuzzy +msgid "An unexpected error occurred" +msgstr "发生了一个错误" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 -msgid "Add CSS template" -msgstr "新增CSS模板" +#: superset/commands/database/exceptions.py:171 +msgid "Import database failed for an unknown reason" +msgstr "导入数据库失败,原因未知" -#: superset/views/chart/mixin.py:27 -msgid "Add Chart" -msgstr "添加图表" +#: superset/commands/database/test_connection.py:177 +msgid "Could not load database driver: {}" +msgstr "无法加载数据库驱动程序:{}" -#: superset/connectors/sqla/views.py:73 -msgid "Add Column" -msgstr "添加列" +#: superset/commands/database/validate.py:59 +#, python-format +msgid "Engine \"%(engine)s\" cannot be configured through parameters." +msgstr "引擎 \"%(engine)s\" 不能通过参数配置。" -#: superset/views/dashboard/mixin.py:26 -msgid "Add Dashboard" -msgstr "添加看板" +#: superset/commands/database/validate.py:124 +msgid "Database is offline." +msgstr "数据库已下线" -#: superset/views/database/mixins.py:35 -msgid "Add Database" -msgstr "添加数据库" +#: superset/commands/database/validate_sql.py:73 +#, python-format +msgid "" +"%(validator)s was unable to check your query.\n" +"Please recheck your query.\n" +"Exception: %(ex)s" +msgstr "" +"%(validator)s 无法检查您的查询。\n" +"请重新检查您的查询。\n" +"异常: %(ex)s" -#: superset/views/log/__init__.py:23 -msgid "Add Log" -msgstr "新增日志" +#: superset/commands/database/validate_sql.py:100 +#, fuzzy, python-format +msgid "no SQL validator is configured for %(engine)s" +msgstr "告警验证器配置错误。" -#: superset/connectors/sqla/views.py:208 -msgid "Add Metric" -msgstr "添加指标" +#: superset/commands/database/validate_sql.py:111 +#, python-format +msgid "" +"No validator named %(validator_name)s found (configured for the " +"%(engine)s engine)" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 -msgid "Add Report" -msgstr "添加报告" +#: superset/commands/database/ssh_tunnel/exceptions.py:29 +#, fuzzy +msgid "SSH Tunnel could not be deleted." +msgstr "这个查询无法被加载。" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#: superset/commands/database/ssh_tunnel/exceptions.py:34 #, fuzzy -msgid "Add Rule" -msgstr "日期格式化" +msgid "SSH Tunnel not found." +msgstr "CSS模板未找到" -#: superset/views/sql_lab/views.py:54 -msgid "Add Saved Query" -msgstr "添加保存的查询" +#: superset/commands/database/ssh_tunnel/exceptions.py:38 +#, fuzzy +msgid "SSH Tunnel parameters are invalid." +msgstr "图表参数无效。" -#: superset/views/dynamic_plugins.py:60 -msgid "Add a Plugin" -msgstr "添加插件" +#: superset/commands/database/ssh_tunnel/exceptions.py:42 +#, fuzzy +msgid "SSH Tunnel could not be updated." +msgstr "您的查询无法保存。" -#: superset-frontend/src/pages/ChartCreation/index.tsx:351 +#: superset/commands/database/ssh_tunnel/exceptions.py:46 #, fuzzy -msgid "Add a dataset" -msgstr "添加数据集" +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "导入图表失败,原因未知" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 -msgid "Add a new tab" -msgstr "添加新的标签页" +#: superset/commands/database/ssh_tunnel/exceptions.py:51 +msgid "SSH Tunneling is not enabled" +msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 -msgid "Add a new tab to create SQL Query" +#: superset/commands/database/ssh_tunnel/exceptions.py:63 +msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 -msgid "Add additional custom parameters" -msgstr "添加其他自定义参数" +#: superset/commands/database/ssh_tunnel/exceptions.py:67 +msgid "Cannot have multiple credentials for the SSH Tunnel" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 -#, fuzzy -msgid "Add an annotation layer" -msgstr "添加注释层" +#: superset/commands/dataset/duplicate.py:60 +msgid "The database was not found." +msgstr "数据库没有找到" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 -msgid "Add an item" -msgstr "新增一行" +#: superset/commands/dataset/exceptions.py:32 +#, python-format +msgid "Dataset %(name)s already exists" +msgstr "数据集 %(name)s 已存在" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 -#, fuzzy -msgid "Add and edit filters" -msgstr "范围过滤" +#: superset/commands/dataset/exceptions.py:50 +msgid "Database not allowed to change" +msgstr "数据集不允许被修改" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -msgid "Add annotation" -msgstr "添加注释" +#: superset/commands/dataset/exceptions.py:70 +msgid "One or more columns do not exist" +msgstr "一个或多个字段不存在" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 -msgid "Add annotation layer" -msgstr "添加注释层" +#: superset/commands/dataset/exceptions.py:80 +msgid "One or more columns are duplicated" +msgstr "一个或多个列被复制" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 -msgid "Add calculated columns to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/dataset/exceptions.py:90 +msgid "One or more columns already exist" +msgstr "一个或多个列已存在" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 -msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/dataset/exceptions.py:99 +msgid "One or more metrics do not exist" +msgstr "一个或多个指标不存在" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 -#, fuzzy -msgid "Add cross-filter" -msgstr "增加过滤条件" +#: superset/commands/dataset/exceptions.py:109 +msgid "One or more metrics are duplicated" +msgstr "一个或多个指标重复" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 -msgid "Add custom scoping" -msgstr "" +#: superset/commands/dataset/exceptions.py:119 +msgid "One or more metrics already exist" +msgstr "一个或多个度量已存在" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add delivery method" -msgstr "添加通知方法" +#: superset/commands/dataset/exceptions.py:130 +#, python-format +msgid "" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" +msgstr "找不到 [%(table_name)s] 表,请仔细检查您的数据库连接、Schema 和 表名" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 -#, fuzzy -msgid "Add extra connection information." -msgstr "无效账户信息" +#: superset/commands/dataset/exceptions.py:156 +msgid "Dataset does not exist" +msgstr "数据集不存在" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 -msgid "Add filter" -msgstr "增加过滤条件" +#: superset/commands/dataset/exceptions.py:160 +msgid "Dataset parameters are invalid." +msgstr "数据集参数无效。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 -msgid "" -"Add filter clauses to control the filter's source query,\n" -" though only in the context of the autocomplete i.e., " -"these conditions\n" -" do not impact how the filter is applied to the " -"dashboard. This is useful\n" -" when you want to improve the query's performance by " -"only scanning a subset\n" -" of the underlying data or limit the available values " -"displayed in the filter." -msgstr "" +#: superset/commands/dataset/exceptions.py:164 +msgid "Dataset could not be created." +msgstr "无法创建数据集。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 -msgid "Add filters and dividers" -msgstr "" - -#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 -msgid "Add item" -msgstr "增加条件" +#: superset/commands/dataset/exceptions.py:168 +#: superset/commands/dataset/exceptions.py:176 +msgid "Dataset could not be updated." +msgstr "无法更新数据集。" -#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 -msgid "Add metric" -msgstr "添加指标" +#: superset/commands/dataset/exceptions.py:172 +#, fuzzy +msgid "Datasets could not be deleted." +msgstr "无法删除数据集" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 -msgid "Add metrics to dataset in \"Edit datasource\" modal" -msgstr "" +#: superset/commands/dataset/exceptions.py:180 +#, fuzzy +msgid "Samples for dataset could not be retrieved." +msgstr "无法创建数据集。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 -msgid "Add new color formatter" -msgstr "添加新的颜色" +#: superset/commands/dataset/exceptions.py:184 +msgid "Changing this dataset is forbidden" +msgstr "没有权限更新此数据集" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 -msgid "Add new formatter" -msgstr "新增格式化" +#: superset/commands/dataset/exceptions.py:188 +msgid "Import dataset failed for an unknown reason" +msgstr "因为未知的原因导入数据集失败" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 -msgid "Add notification method" -msgstr "添加注释层" +#: superset/commands/dataset/exceptions.py:192 +#, fuzzy +msgid "You don't have access to this dataset." +msgstr "您没有编辑此看板的权限。" -#: superset-frontend/src/components/Chart/Chart.jsx:267 -msgid "Add required control values to preview chart" -msgstr "" +#: superset/commands/dataset/exceptions.py:196 +#, fuzzy +msgid "Dataset could not be duplicated." +msgstr "无法更新数据集。" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 -msgid "Add required control values to save chart" +#: superset/commands/dataset/exceptions.py:200 +msgid "Data URI is not allowed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 -msgid "Add sheet" -msgstr "添加sheet页" - -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 +#: superset/commands/dataset/exceptions.py:205 #, fuzzy -msgid "Add the name of the chart" -msgstr "活动图表的ID" +msgid "The provided table was not found in the provided database" +msgstr "Issue 1005 - 该表已在数据库中删除或重命名。" -#: superset-frontend/src/dashboard/components/Header/index.jsx:512 -#, fuzzy -msgid "Add the name of the dashboard" -msgstr "保存并转到看板" +#: superset/commands/dataset/columns/exceptions.py:23 +msgid "Dataset column not found." +msgstr "数据集行删除失败。" -#: superset-frontend/src/explore/components/SaveModal.tsx:386 -msgid "Add to dashboard" -msgstr "添加到看板" +#: superset/commands/dataset/columns/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "数据集列删除失败。" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 -#, fuzzy -msgid "Add/Edit Filters" -msgstr "增加过滤条件" +#: superset/commands/dataset/columns/exceptions.py:31 +#: superset/commands/dataset/metrics/exceptions.py:31 +msgid "Changing this dataset is forbidden." +msgstr "禁止更改此数据集。" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 -msgid "Added" -msgstr "已添加" +#: superset/commands/dataset/metrics/exceptions.py:23 +msgid "Dataset metric not found." +msgstr "数据集指标没找到" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 -#, fuzzy, python-format -msgid "Added to 1 dashboard" -msgid_plural "Added to %s dashboards" -msgstr[0] "添加到看板" +#: superset/commands/dataset/metrics/exceptions.py:27 +msgid "Dataset metric delete failed." +msgstr "数据集指标删除失败" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 -msgid "Additional Parameters" -msgstr "附加参数" +#: superset/commands/explore/get.py:86 superset/views/core.py:437 +msgid "Form data not found in cache, reverting to chart metadata." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 -msgid "Additional fields may be required" +#: superset/commands/explore/get.py:94 superset/views/core.py:443 +msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 -msgid "Additional information" -msgstr "附加信息" +#: superset/commands/explore/get.py:118 superset/views/core.py:471 +msgid "[Missing Dataset]" +msgstr "丢失数据集" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 -msgid "Additional metadata" -msgstr "附加元数据" +#: superset/commands/query/exceptions.py:28 +msgid "Saved queries could not be deleted." +msgstr "保存的查询无法被删除" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 -msgid "Additional padding for legend." -msgstr "图示附加的padding值。" +#: superset/commands/query/exceptions.py:32 +msgid "Saved query not found." +msgstr "保存的查询未找到" -#: superset/db_engine_specs/base.py:1885 -#: superset/db_engine_specs/clickhouse.py:221 -msgid "Additional parameters" -msgstr "编辑模板参数" +#: superset/commands/query/exceptions.py:36 +msgid "Import saved query failed for an unknown reason." +msgstr "由于未知原因,导入保存的查询失败。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 -#, fuzzy -msgid "Additional settings." -msgstr "条件格式设置" +#: superset/commands/query/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "保存的查询参数无效" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "附加文本到数据前(后),例如:单位" +#: superset/commands/report/alert.py:98 +#, fuzzy, python-format +msgid "Alert query returned more than one row. %(num_rows)s rows returned" +msgstr "告警查询返回了多行。%s 行被返回" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 -msgid "Additive" -msgstr "附加" +#: superset/commands/report/alert.py:107 +#, fuzzy, python-format +msgid "" +"Alert query returned more than one column. %(num_columns)s columns " +"returned" +msgstr "告警查询返回多个列。%s 列被返回" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 -msgid "Adjust how this database will interact with SQL Lab." -msgstr "" +#: superset/commands/report/alert.py:178 +#, fuzzy +msgid "An error occurred when running alert query" +msgstr "精简日志时出错 " -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 -msgid "Adjust performance settings of this database." +#: superset/commands/report/create.py:141 +#, python-format +msgid "Invalid tab ids: %s(tab_ids)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 -#: 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:768 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 -msgid "Advanced" -msgstr "进阶" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 -msgid "Advanced Analytics" -msgstr "高级分析" +#: superset/commands/report/exceptions.py:46 +msgid "Dashboard does not exist" +msgstr "看板不存在" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 -#, fuzzy -msgid "Advanced Data type" -msgstr "数据缓存已加载" +#: superset/commands/report/exceptions.py:55 +msgid "Chart does not exist" +msgstr "图表没有找到" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 -#: superset-frontend/src/explore/controlPanels/sections.tsx:117 -msgid "Advanced analytics" -msgstr "高级分析" +#: superset/commands/report/exceptions.py:64 +msgid "Database is required for alerts" +msgstr "警报需要数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 -#, fuzzy -msgid "Advanced analytics Query A" -msgstr "高级分析" +#: superset/commands/report/exceptions.py:73 +msgid "Type is required" +msgstr "类型是必需的" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 -#, fuzzy -msgid "Advanced analytics Query B" -msgstr "高级分析" +#: superset/commands/report/exceptions.py:82 +msgid "Choose a chart or dashboard not both" +msgstr "选择图表或看板,不能都全部选择" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 +#: superset/commands/report/exceptions.py:92 #, fuzzy -msgid "Advanced data type" -msgstr "数据缓存已加载" +msgid "Must choose either a chart or a dashboard" +msgstr "选择图表或看板,不能都全部选择" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Advanced-Analytics" -msgstr "高级分析" +#: superset/commands/report/exceptions.py:103 +msgid "Please save your chart first, then try creating a new email report." +msgstr "请先保存您的图表,然后尝试创建一个新的电子邮件报告。" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 -msgid "Aesthetic" -msgstr "炫酷" +#: superset/commands/report/exceptions.py:115 +msgid "Please save your dashboard first, then try creating a new email report." +msgstr "请先保存您的仪表盘,然后尝试创建一个新的电子邮件报告。" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 -msgid "After" -msgstr "之后" +#: superset/commands/report/exceptions.py:124 +msgid "Report Schedule parameters are invalid." +msgstr "报表计划参数无效。" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 -msgid "Aggregate" -msgstr "聚合" +#: superset/commands/report/exceptions.py:128 +msgid "Report Schedule could not be created." +msgstr "无法创建报表计划。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 -msgid "Aggregate Mean" -msgstr "合计平均值" +#: superset/commands/report/exceptions.py:132 +msgid "Report Schedule could not be updated." +msgstr "无法更新报表计划。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 -msgid "Aggregate Sum" -msgstr "合计" +#: superset/commands/report/exceptions.py:137 +msgid "Report Schedule not found." +msgstr "找不到报表计划。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 -msgid "" -"Aggregate function applied to the list of points in each cluster to " -"produce the cluster label." -msgstr "聚合函数应用于每个群集中的点列表以产生群集标签。" +#: superset/commands/report/exceptions.py:141 +msgid "Report Schedule delete failed." +msgstr "报表计划删除失败。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 -msgid "" -"Aggregate function to apply when pivoting and computing the total rows " -"and columns" -msgstr "在旋转和计算总的行和列时,应用聚合函数" +#: superset/commands/report/exceptions.py:145 +msgid "Report Schedule log prune failed." +msgstr "报表计划日志精简失败。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 -msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated" -" values to a dynamic color scale" -msgstr "" +#: superset/commands/report/exceptions.py:149 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "生成屏幕截图时报表计划执行失败。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 -#, fuzzy -msgid "Aggregation" -msgstr "合计" +#: superset/commands/report/exceptions.py:153 +msgid "Report Schedule execution failed when generating a csv." +msgstr "生成屏幕截图时报表计划执行失败。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 -msgid "Aggregation function" -msgstr "聚合功能" +#: superset/commands/report/exceptions.py:157 +msgid "Report Schedule execution failed when generating a dataframe." +msgstr "生成屏幕截图时报表计划执行失败。" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 -#, fuzzy -msgid "Alert" -msgstr "警报" +#: superset/commands/report/exceptions.py:161 +msgid "Report Schedule execution got an unexpected error." +msgstr "报表计划执行遇到意外错误。" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 -msgid "Alert Triggered, In Grace Period" -msgstr "告警已触发,在宽限期内" +#: superset/commands/report/exceptions.py:166 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "报表计划仍在运行,拒绝重新计算。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -msgid "Alert condition" -msgstr "告警条件" +#: superset/commands/report/exceptions.py:171 +msgid "Report Schedule reached a working timeout." +msgstr "报表计划已超时。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Alert condition schedule" -msgstr "告警条件计划" +#: superset/commands/report/exceptions.py:180 +#, fuzzy, python-format +msgid "A report named \"%(name)s\" already exists" +msgstr "数据集 %(name)s 已存在" -#: superset/reports/commands/exceptions.py:253 -msgid "Alert ended grace period." -msgstr "告警已结束宽限期。" +#: superset/commands/report/exceptions.py:182 +#, fuzzy, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "数据集 %(name)s 已存在" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 -msgid "Alert failed" -msgstr "告警失败" +#: superset/commands/report/exceptions.py:188 +msgid "Resource already has an attached report." +msgstr "" -#: superset/reports/commands/exceptions.py:248 -msgid "Alert fired during grace period." -msgstr "在宽限期内触发告警。" +#: superset/commands/report/exceptions.py:193 +msgid "Alert query returned more than one row." +msgstr "告警查询返回了多行。" -#: superset/reports/commands/exceptions.py:223 -msgid "Alert found an error while executing a query." -msgstr "告警在执行查询时发现错误。" +#: superset/commands/report/exceptions.py:198 +msgid "Alert validator config error." +msgstr "告警验证器配置错误。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 -msgid "Alert name" -msgstr "告警名称" - -#: superset/reports/commands/exceptions.py:258 -msgid "Alert on grace period" -msgstr "告警宽限期" - -#: superset/reports/commands/exceptions.py:214 -msgid "Alert query returned a non-number value." -msgstr "告警查询返回非数字值。" - -#: superset/reports/commands/exceptions.py:209 +#: superset/commands/report/exceptions.py:203 msgid "Alert query returned more than one column." msgstr "告警查询返回多个列。" -#: superset/reports/commands/alert.py:109 -#, python-format -msgid "Alert query returned more than one column. %s columns returned" -msgstr "告警查询返回多个列。%s 列被返回" - -#: superset/reports/commands/exceptions.py:199 -msgid "Alert query returned more than one row." -msgstr "告警查询返回了多行。" +#: superset/commands/report/exceptions.py:208 +msgid "Alert query returned a non-number value." +msgstr "告警查询返回非数字值。" -#: superset/reports/commands/alert.py:100 -#, python-format -msgid "Alert query returned more than one row. %s rows returned" -msgstr "告警查询返回了多行。%s 行被返回" +#: superset/commands/report/exceptions.py:217 +msgid "Alert found an error while executing a query." +msgstr "告警在执行查询时发现错误。" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 -msgid "Alert running" -msgstr "告警运行中" +#: superset/commands/report/exceptions.py:222 +msgid "A timeout occurred while executing the query." +msgstr "查询超时。" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 -msgid "Alert triggered, notification sent" -msgstr "告警已触发,通知已发送" +#: superset/commands/report/exceptions.py:227 +msgid "A timeout occurred while taking a screenshot." +msgstr "截图超时" -#: superset/reports/commands/exceptions.py:204 -msgid "Alert validator config error." -msgstr "告警验证器配置错误。" +#: superset/commands/report/exceptions.py:232 +msgid "A timeout occurred while generating a csv." +msgstr "生成CSV时超时。" -#: superset-frontend/src/pages/AlertReportList/index.tsx:534 -msgid "Alerts" -msgstr "告警" +#: superset/commands/report/exceptions.py:237 +msgid "A timeout occurred while generating a dataframe." +msgstr "生成数据超时" -#: superset/initialization/__init__.py:404 -msgid "Alerts & Reports" -msgstr "告警和报告" +#: superset/commands/report/exceptions.py:242 +msgid "Alert fired during grace period." +msgstr "在宽限期内触发告警。" -#: superset-frontend/src/pages/AlertReportList/index.tsx:519 -#: superset-frontend/src/pages/AlertReportList/index.tsx:523 -msgid "Alerts & reports" -msgstr "告警和报告" +#: superset/commands/report/exceptions.py:247 +msgid "Alert ended grace period." +msgstr "告警已结束宽限期。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 -msgid "Align +/-" -msgstr "对齐 +/-" +#: superset/commands/report/exceptions.py:252 +msgid "Alert on grace period" +msgstr "告警宽限期" -#: superset-frontend/src/pages/AlertReportList/index.tsx:457 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 -#: superset-frontend/src/pages/ChartList/index.tsx:613 -#: superset-frontend/src/pages/ChartList/index.tsx:635 -#: superset-frontend/src/pages/ChartList/index.tsx:657 -#: superset-frontend/src/pages/ChartList/index.tsx:683 -#: superset-frontend/src/pages/ChartList/index.tsx:693 -#: superset-frontend/src/pages/ChartList/index.tsx:719 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 -#: superset-frontend/src/pages/DashboardList/index.tsx:528 -#: superset-frontend/src/pages/DashboardList/index.tsx:550 -#: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:476 -#: superset-frontend/src/pages/DatabaseList/index.tsx:496 -#: superset-frontend/src/pages/Home/index.tsx:205 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 -#: superset-frontend/src/pages/Tags/index.tsx:187 -msgid "All" -msgstr "所有" +#: superset/commands/report/exceptions.py:256 +msgid "Report Schedule state not found" +msgstr "未找到报表计划状态" -#: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:370 +#: superset/commands/report/exceptions.py:261 #, fuzzy -msgid "All Entities" -msgstr "所有过滤" - -#: superset/annotation_layers/annotations/filters.py:28 -#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 -#: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 -msgid "All Text" -msgstr "所有文本" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 -#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 -msgid "All charts" -msgstr "所有图表" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 -msgid "All charts/global scoping" -msgstr "" +msgid "Report schedule system error" +msgstr "报告计划意外错误。" -#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 -msgid "All filters" -msgstr "所有过滤" +#: superset/commands/report/exceptions.py:267 +#, fuzzy +msgid "Report schedule client error" +msgstr "报告计划意外错误。" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 -#, python-format -msgid "All filters (%(filterCount)d)" -msgstr "所有过滤(%(filterCount)d)" +#: superset/commands/report/exceptions.py:271 +msgid "Report schedule unexpected error" +msgstr "报告计划意外错误。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 -msgid "All panels" -msgstr "应用于所有面板" +#: superset/commands/report/exceptions.py:276 +msgid "Changing this report is forbidden" +msgstr "禁止更改此报告" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 -msgid "All panels with this column will be affected by this filter" -msgstr "包含此列的所有面板都将受到此过滤条件的影响" +#: superset/commands/report/exceptions.py:280 +msgid "An error occurred while pruning logs " +msgstr "精简日志时出错 " -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 -#: superset/views/database/mixins.py:184 -msgid "Allow CREATE TABLE AS" -msgstr "允许 CREATE TABLE AS" +#: superset/commands/security/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "找不到报表计划。" -#: superset/views/database/mixins.py:112 -msgid "Allow CREATE TABLE AS option in SQL Lab" -msgstr "在 SQL 编辑器中允许 CREATE TABLE AS 选项" +#: superset/commands/security/exceptions.py:29 +#, fuzzy +msgid "RLS rules could not be deleted." +msgstr "这个查询无法被加载" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 -#: superset/views/database/mixins.py:185 -msgid "Allow CREATE VIEW AS" -msgstr "允许 CREATE VIEW AS" +#: superset/commands/sql_lab/estimate.py:58 +#, fuzzy +msgid "The database could not be found" +msgstr "数据库没有找到" -#: superset/views/database/mixins.py:113 -msgid "Allow CREATE VIEW AS option in SQL Lab" -msgstr "在 SQL 编辑器中允许 CREATE VIEW AS 选项" +#: superset/commands/sql_lab/estimate.py:86 +#, fuzzy, python-format +msgid "" +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." +msgstr "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或者数据库可能负载过重。" -#: superset/views/database/mixins.py:198 -msgid "Allow Csv Upload" -msgstr "允许Csv上传" +#: superset/commands/sql_lab/execute.py:172 +msgid "" +"The database referenced in this query was not found. Please contact an " +"administrator for further assistance or try again." +msgstr "找不到此查询中引用的数据库。请与管理员联系以获得进一步帮助,或重试。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 -#: superset/views/database/mixins.py:186 -msgid "Allow DML" -msgstr "允许 DML" +#: superset/commands/sql_lab/export.py:63 +#: superset/commands/sql_lab/results.py:91 +msgid "" +"The query associated with these results could not be found. You need to " +"re-run the original query." +msgstr "找不到与这些结果相关联的查询。你需要重新运行查询" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 -msgid "Allow columns to be rearranged" +#: superset/commands/sql_lab/export.py:78 +msgid "Cannot access the query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 -msgid "Allow creation of new tables based on queries" -msgstr "允许基于查询创建新表" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 -msgid "Allow creation of new views based on queries" -msgstr "允许基于查询创建新视图" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:340 -msgid "Allow data manipulation language" -msgstr "允许数据操作语言" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 +#: superset/commands/sql_lab/results.py:75 msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note " -"their changes won't persist for the next time they open the chart." -msgstr "" - -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 -#, fuzzy -msgid "Allow file uploads to database" -msgstr "选择要上传到数据库的Excel文件。" +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." +msgstr "无法从结果后端检索数据。您需要重新运行原始查询。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 +#: superset/commands/sql_lab/results.py:116 msgid "" -"Allow manipulation of the database using non-SELECT statements such as " -"UPDATE, DELETE, CREATE, etc." -msgstr "允许使用非SELECT语句(如UPDATE、DELETE、CREATE等)操作数据库。" +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." +msgstr "无法从结果后端反序列化数据。存储格式可能已经改变,呈现了旧的数据桩。您需要重新运行原始查询。" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 -msgid "Allow multiple selections" -msgstr "允许多选" +#: superset/commands/tag/exceptions.py:32 +#, fuzzy +msgid "Tag parameters are invalid." +msgstr "数据集参数无效。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 -msgid "Allow node selections" -msgstr "允许多节点选择" +#: superset/commands/tag/exceptions.py:36 +#, fuzzy +msgid "Tag could not be created." +msgstr "无法创建数据集。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 -msgid "Allow sending multiple polygons as a filter event" -msgstr "" +#: superset/commands/tag/exceptions.py:40 superset/tags/exceptions.py:35 +#, fuzzy +msgid "Tag could not be updated." +msgstr "无法更新数据集。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 -msgid "Allow this database to be explored" -msgstr "允许浏览此数据库" +#: superset/commands/tag/exceptions.py:44 +#, fuzzy +msgid "Tag could not be deleted." +msgstr "无法删除数据集" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 -msgid "Allow this database to be queried in SQL Lab" -msgstr "允许在SQL工具箱中查询此数据库" +#: superset/commands/tag/exceptions.py:48 +#, fuzzy +msgid "Tagged Object could not be deleted." +msgstr "无法删除数据集" -#: superset/views/database/mixins.py:114 -msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" -" SQL Lab" -msgstr "允许用户在 SQL 编辑器中运行非 SELECT 语句(UPDATE,DELETE,CREATE,...)" +#: superset/commands/temporary_cache/exceptions.py:29 +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +msgid "An error occurred while creating the value." +msgstr "创建值时出错。" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 -msgid "Allowed Domains (comma separated)" -msgstr "" +#: superset/commands/temporary_cache/exceptions.py:33 +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +msgid "An error occurred while accessing the value." +msgstr "访问值时出错。" -#: superset-frontend/src/pages/ChartList/index.tsx:737 -#: superset-frontend/src/pages/DashboardList/index.tsx:611 -#: superset-frontend/src/pages/Tags/index.tsx:217 -msgid "Alphabetical" -msgstr "按字母顺序排列" +#: superset/commands/temporary_cache/exceptions.py:37 +#: superset/key_value/exceptions.py:42 +msgid "An error occurred while deleting the value." +msgstr "删除值时出错。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 -msgid "" -"Also known as a box and whisker plot, this visualization compares the " -"distributions of a related metric across multiple groups. The box in the " -"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " -"around each box visualize the min, max, range, and outer 2 quartiles." -msgstr "也称为框须图,该可视化比较了一个相关指标在多个组中的分布。中间的框强调平均值、中值和内部2个四分位数。每个框周围的触须可视化了最小值、最大值、范围和外部2个四分区。" +#: superset/commands/temporary_cache/exceptions.py:41 +#: superset/key_value/exceptions.py:46 +msgid "An error occurred while updating the value." +msgstr "更新值时出错。" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 -msgid "Altered" -msgstr "已更改" +#: superset/commands/temporary_cache/exceptions.py:45 +#: superset/key_value/exceptions.py:54 +msgid "You don't have permission to modify the value." +msgstr "您没有编辑此图表的权限" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 +#: superset/commands/temporary_cache/exceptions.py:49 #, fuzzy -msgid "An Error Occurred" -msgstr "发生了一个错误" +msgid "Resource was not found." +msgstr "数据库没有找到" + +#: superset/common/query_actions.py:227 +#, python-format +msgid "Invalid result type: %(result_type)s" +msgstr "无效的结果类型:%(result_type)s" -#: superset/reports/commands/exceptions.py:188 +#: superset/common/query_context_processor.py:150 #, fuzzy, python-format -msgid "An alert named \"%(name)s\" already exists" -msgstr "数据集 %(name)s 已存在" +msgid "Columns missing in dataset: %(invalid_columns)s" +msgstr "数据源中缺少列:%(invalid_columns)s" -#: superset/common/query_context_processor.py:326 superset/viz.py:1352 -msgid "" -"An enclosed time range (both start and end) must be specified when using " -"a Time Comparison." +#: superset/common/query_context_processor.py:383 +#, fuzzy +msgid "Time Grain must be specified when using Time Shift." msgstr "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" -#: superset/databases/schemas.py:289 -msgid "" -"An engine must be specified when passing individual parameters to a " -"database." -msgstr "向数据库传递单个参数时必须指定引擎。" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 -#: superset-frontend/src/components/Tags/utils.tsx:67 -#: 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 -msgid "An error has occurred" -msgstr "发生了一个错误" +#: superset/common/query_context_processor.py:486 +#, fuzzy +msgid "A time column must be specified when using a Time Comparison." +msgstr "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 -#: superset-frontend/src/components/TableLoader/index.tsx:55 -#: superset-frontend/src/utils/getClientErrorObject.ts:197 -msgid "An error occurred" -msgstr "发生了一个错误" +#: superset/common/query_context_processor.py:696 +msgid "The chart does not exist" +msgstr "图表不存在" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 -msgid "An error occurred saving dataset" -msgstr "保存数据集时发生错误" +#: superset/common/query_context_processor.py:702 +#, fuzzy +msgid "The chart datasource does not exist" +msgstr "图表不存在" -#: superset/dashboards/permalink/exceptions.py:31 -#: superset/explore/permalink/exceptions.py:31 -#: superset/key_value/exceptions.py:38 -#: superset/temporary_cache/commands/exceptions.py:33 -msgid "An error occurred while accessing the value." -msgstr "访问值时出错。" +#: superset/common/query_context_processor.py:719 +#, fuzzy +msgid "The chart query context does not exist" +msgstr "图表不存在" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 +#: superset/common/query_object.py:290 +#, python-format msgid "" -"An error occurred while collapsing the table schema. Please contact your " -"administrator." -msgstr "收起表结构时出错。请与管理员联系。" +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." +msgstr "重复的列/指标标签:%(labels)s。请确保所有列和指标都有唯一的标签。" -#: superset-frontend/src/views/CRUD/hooks.ts:308 +#: superset/common/query_object.py:312 #, python-format -msgid "An error occurred while creating %ss: %s" -msgstr "创建时出错:%ss: %s" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 -msgid "An error occurred while creating the data source" -msgstr "创建数据源时发生错误" - -#: superset/dashboards/permalink/exceptions.py:27 -#: superset/explore/permalink/exceptions.py:27 -#: superset/key_value/exceptions.py:34 -#: superset/temporary_cache/commands/exceptions.py:29 -msgid "An error occurred while creating the value." -msgstr "创建值时出错。" - -#: superset/key_value/exceptions.py:42 -#: superset/temporary_cache/commands/exceptions.py:37 -msgid "An error occurred while deleting the value." -msgstr "删除值时出错。" - -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" -"An error occurred while expanding the table schema. Please contact your " -"administrator." -msgstr "展开表结构时出错。请与管理员联系。" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " +msgstr " `series_columns`中的下列条目在 `columns` 中缺失: %(columns)s. " -#: superset-frontend/src/views/CRUD/hooks.ts:106 -#, python-format -msgid "An error occurred while fetching %s info: %s" -msgstr "获取%s仪表板时出错:%s" +#: superset/common/query_object.py:435 +msgid "`operation` property of post processing object undefined" +msgstr "后处理必须指定操作类型(`operation`)" -#: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:265 -#: superset-frontend/src/views/CRUD/hooks.ts:353 +#: superset/common/query_object.py:439 #, python-format -msgid "An error occurred while fetching %ss: %s" -msgstr "抓取出错:%ss: %s" - -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 -msgid "An error occurred while fetching available CSS templates" -msgstr "获取可用的CSS模板时出错" +msgid "Unsupported post processing operation: %(operation)s" +msgstr "不支持的处理操作:%(operation)s" -#: superset-frontend/src/pages/ChartList/index.tsx:641 -#, python-format -msgid "An error occurred while fetching chart created by values: %s" -msgstr "获取图表的创建人时出错:%s" +#: superset/connectors/sqla/models.py:353 superset/models/sql_lab.py:216 +#, fuzzy +msgid "[asc]" +msgstr "基础" -#: superset-frontend/src/pages/ChartList/index.tsx:619 -#, python-format -msgid "An error occurred while fetching chart owners values: %s" -msgstr "获取图表所有者时出错 %s" +#: superset/connectors/sqla/models.py:356 superset/models/sql_lab.py:219 +msgid "[desc]" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:479 +#: superset/connectors/sqla/models.py:1394 #, python-format -msgid "An error occurred while fetching created by values: %s" -msgstr "获取创建人时出错:%s" +msgid "Error in jinja expression in fetch values predicate: %(msg)s" +msgstr "获取jinja表达式中的谓词的值出错:%(msg)s" -#: superset-frontend/src/pages/DashboardList/index.tsx:556 -#, python-format -msgid "An error occurred while fetching dashboard created by values: %s" -msgstr "获取仪表板创建者时出错:%s" +#: superset/connectors/sqla/models.py:1466 superset/models/helpers.py:1102 +msgid "Virtual dataset query must be read-only" +msgstr "虚拟数据集查询必须是只读的" -#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#: superset/connectors/sqla/models.py:1491 superset/models/helpers.py:1069 #, python-format -msgid "An error occurred while fetching dashboard owner values: %s" -msgstr "获取仪表板所有者时出错:%s" - -#: superset-frontend/src/pages/ChartList/index.tsx:299 -msgid "An error occurred while fetching dashboards" -msgstr "获取看板时出错" +msgid "Error while rendering virtual dataset query: %(msg)s" +msgstr "保存查询时出错:%(msg)s" -#: superset-frontend/src/features/home/DashboardTable.tsx:148 -#: superset-frontend/src/pages/DashboardList/index.tsx:232 -#, python-format -msgid "An error occurred while fetching dashboards: %s" -msgstr "获取仪表板时出错:%s" +#: superset/connectors/sqla/models.py:1498 +#: superset/connectors/sqla/utils.py:107 superset/models/helpers.py:1076 +msgid "Virtual dataset query cannot be empty" +msgstr "虚拟数据集查询必须是只读的" -#: superset-frontend/src/pages/DatabaseList/index.tsx:156 -#, python-format -msgid "An error occurred while fetching database related data: %s" -msgstr "获取数据库相关数据时出错:%s" +#: superset/connectors/sqla/models.py:1501 superset/models/helpers.py:1079 +msgid "Virtual dataset query cannot consist of multiple statements" +msgstr "虚拟数据集查询不能由多个语句组成" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 +#: superset/connectors/sqla/models.py:1669 superset/models/helpers.py:834 #, python-format -msgid "An error occurred while fetching database values: %s" -msgstr "获取数据库信息时出错:%s" +msgid "Error in jinja expression in RLS filters: %(msg)s" +msgstr "jinja表达式中的 RLS filters 出错:%(msg)s" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 +#: superset/connectors/sqla/models.py:1697 superset/models/helpers.py:1240 +#: superset/models/helpers.py:1552 #, python-format -msgid "An error occurred while fetching dataset datasource values: %s" -msgstr "获取数据集数据源信息时出错: %s" +msgid "Metric '%(metric)s' does not exist" +msgstr "指标 '%(metric)s' 不存在" -#: superset-frontend/src/pages/DatasetList/index.tsx:521 -#, python-format -msgid "An error occurred while fetching dataset owner values: %s" -msgstr "获取数据集所有者值时出错:%s" +#: superset/connectors/sqla/models.py:1786 superset/models/helpers.py:1023 +msgid "Db engine did not return all queried columns" +msgstr "数据库引擎未返回所有查询的列" -#: superset-frontend/src/pages/DatasetList/index.tsx:233 -msgid "An error occurred while fetching dataset related data" -msgstr "获取数据集相关数据时出错" +#: superset/connectors/sqla/utils.py:119 +msgid "Only `SELECT` statements are allowed" +msgstr "将 SELECT 语句复制到剪贴板" -#: superset-frontend/src/pages/DatasetList/index.tsx:253 -#, python-format -msgid "An error occurred while fetching dataset related data: %s" -msgstr "获取数据集相关数据时出错:%s" +#: superset/connectors/sqla/utils.py:128 +msgid "Only single queries supported" +msgstr "仅支持单个查询" -#: superset-frontend/src/pages/DatasetList/index.tsx:541 -#, python-format -msgid "An error occurred while fetching datasets: %s" -msgstr "获取数据集时出错:%s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:105 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:31 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1434 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:428 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:70 +msgid "Columns" +msgstr "列" -#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 -msgid "An error occurred while fetching function names." -msgstr "获取函数名称时出错。" +#: superset/connectors/sqla/views.py:71 +msgid "Show Column" +msgstr "显示列" -#: superset-frontend/src/pages/AlertReportList/index.tsx:462 -#, fuzzy, python-format -msgid "An error occurred while fetching owners values: %s" -msgstr "获取图表所有者时出错 %s" +#: superset/connectors/sqla/views.py:72 +msgid "Add Column" +msgstr "添加列" -#: superset-frontend/src/pages/DatasetList/index.tsx:557 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 -#, python-format -msgid "An error occurred while fetching schema values: %s" -msgstr "获取结构信息时出错:%s" +#: superset/connectors/sqla/views.py:73 +msgid "Edit Column" +msgstr "编辑列" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 -msgid "An error occurred while fetching tab state" -msgstr "获取tab页状态时出错" +#: superset/connectors/sqla/views.py:104 +msgid "" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" +msgstr "是否将此列作为[时间粒度]选项, 列中的数据类型必须是DATETIME" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 -msgid "An error occurred while fetching table metadata" -msgstr "获取表格元数据时发生错误" +#: superset/connectors/sqla/views.py:109 +msgid "" +"Whether this column is exposed in the `Filters` section of the explore " +"view." +msgstr "该列是否在浏览视图的`过滤器`部分显示。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 +#: superset/connectors/sqla/views.py:113 msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "获取表格元数据时发生错误。请与管理员联系。" +"The data type that was inferred by the database. It may be necessary to " +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." +msgstr "由数据库推断的数据类型。在某些情况下,可能需要为表达式定义的列手工输入一个类型。在大多数情况下,用户不需要修改这个数据类型。" -#: superset-frontend/src/pages/Tags/index.tsx:193 -#, fuzzy, python-format -msgid "An error occurred while fetching tag created by values: %s" -msgstr "获取创建人时出错:%s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:373 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:287 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:37 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:46 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:153 +msgid "Column" +msgstr "列" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 -#, python-format -msgid "An error occurred while fetching user values: %s" -msgstr "获取用户信息出错:%s" +#: superset/connectors/sqla/views.py:154 superset/connectors/sqla/views.py:251 +msgid "Verbose Name" +msgstr "全称" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 -msgid "" -"An error occurred while hiding the left bar. Please contact your " -"administrator." -msgstr "隐藏左栏时出错。请与管理员联系。" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:103 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:134 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:47 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:159 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:267 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:271 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:884 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1253 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1257 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1169 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:323 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:482 +#: superset-frontend/src/features/tags/TagModal.tsx:297 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:410 superset/views/chart/mixin.py:80 +msgid "Description" +msgstr "描述" -#: superset-frontend/src/views/CRUD/hooks.ts:506 -#: superset-frontend/src/views/CRUD/hooks.ts:522 -#, python-format -msgid "An error occurred while importing %s: %s" -msgstr "导入时出错 %s: %s" +#: superset/connectors/sqla/views.py:156 +msgid "Groupable" +msgstr "可分组" -#: superset-frontend/src/explore/components/SaveModal.tsx:135 -#, fuzzy -msgid "An error occurred while loading dashboard information." -msgstr "获取看板时出错" +#: superset/connectors/sqla/views.py:157 +msgid "Filterable" +msgstr "可过滤" -#: superset-frontend/src/components/Chart/chartAction.js:579 -msgid "An error occurred while loading the SQL" -msgstr "创建数据源时发生错误" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:285 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:158 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:86 +msgid "Table" +msgstr "表" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 -#, fuzzy -msgid "An error occurred while opening Explore" -msgstr "精简日志时出错 " +#: superset/connectors/sqla/views.py:159 +msgid "Expression" +msgstr "表达式" -#: superset/key_value/exceptions.py:30 -#, fuzzy -msgid "An error occurred while parsing the key." -msgstr "更新值时出错。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:376 +#: superset/connectors/sqla/views.py:160 +msgid "Is temporal" +msgstr "时间条件" -#: superset/reports/commands/exceptions.py:286 -msgid "An error occurred while pruning logs " -msgstr "精简日志时出错 " +#: superset/connectors/sqla/views.py:161 +msgid "Datetime Format" +msgstr "时间格式" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 -msgid "An error occurred while removing query. Please contact your administrator." -msgstr "删除查询时出错。请与管理员联系。" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:274 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:278 +#: superset-frontend/src/pages/ChartList/index.tsx:370 +#: superset-frontend/src/pages/ChartList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:526 +#: superset/connectors/sqla/views.py:162 superset/connectors/sqla/views.py:252 +msgid "Type" +msgstr "类型" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 -msgid "An error occurred while removing tab. Please contact your administrator." -msgstr "删除tab页时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:163 +msgid "Business Data Type" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 -msgid "" -"An error occurred while removing the table schema. Please contact your " -"administrator." -msgstr "删除表结构时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:179 superset/datasets/schemas.py:54 +msgid "Invalid date/timestamp format" +msgstr "无效的日期/时间戳格式" -#: superset-frontend/src/components/Chart/chartReducer.ts:96 -#, python-format -msgid "An error occurred while rendering the visualization: %s" -msgstr "渲染可视化时发生错误:%s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:155 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:205 +msgid "Metrics" +msgstr "指标" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 -msgid "" -"An error occurred while setting the active tab. Please contact your " -"administrator." -msgstr "设置活动tab页时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:206 +msgid "Show Metric" +msgstr "显示指标" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 -msgid "" -"An error occurred while setting the tab autorun. Please contact your " -"administrator." -msgstr "设置tab页自动运行时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:207 +msgid "Add Metric" +msgstr "添加指标" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 -msgid "" -"An error occurred while setting the tab database ID. Please contact your " -"administrator." -msgstr "设置tab页数据库ID时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:208 +msgid "Edit Metric" +msgstr "编辑指标" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 -#, fuzzy -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "设置tab页标题时出错。请与管理员联系。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:63 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 +msgid "Metric" +msgstr "指标" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 -msgid "" -"An error occurred while setting the tab schema. Please contact your " -"administrator." -msgstr "设置tab页结构时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:253 +msgid "SQL Expression" +msgstr "SQL表达式" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 -msgid "" -"An error occurred while setting the tab template parameters. Please " -"contact your administrator." -msgstr "设置tab页模板参数时出错。请与管理员联系。" +#: superset/connectors/sqla/views.py:255 +msgid "D3 Format" +msgstr "D3 格式" -#: superset-frontend/src/explore/actions/exploreActions.ts:89 -msgid "An error occurred while starring this chart" -msgstr "以此字符开头时出错" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:932 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:413 +#: superset/views/database/mixins.py:193 +msgid "Extra" +msgstr "扩展" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 -msgid "" -"An error occurred while storing the latest query id in the backend. " -"Please contact your administrator if this problem persists." -msgstr "在后端存储最新查询id时出错。如果此问题仍然存在,请与管理员联系。" +#: superset/connectors/sqla/views.py:257 +msgid "Warning Message" +msgstr "告警信息" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 -msgid "" -"An error occurred while storing your query in the backend. To avoid " -"losing your changes, please save your query using the \"Save Query\" " -"button." -msgstr "在后端存储查询时出错。为避免丢失更改,请使用 \"保存查询\" 按钮保存查询。" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:410 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:303 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:349 +#: superset/connectors/sqla/views.py:291 +msgid "Tables" +msgstr "数据表" -#: superset/key_value/exceptions.py:46 -#: superset/temporary_cache/commands/exceptions.py:41 -msgid "An error occurred while updating the value." -msgstr "更新值时出错。" +#: superset/connectors/sqla/views.py:292 +msgid "Show Table" +msgstr "显示表" -#: superset/key_value/exceptions.py:50 -#, fuzzy -msgid "An error occurred while upserting the value." -msgstr "更新值时出错。" +#: superset/connectors/sqla/views.py:293 +msgid "Import a table definition" +msgstr "导入一个已定义的表" -#: superset/databases/commands/exceptions.py:162 -#, fuzzy -msgid "An unexpected error occurred" -msgstr "发生了一个错误" +#: superset/connectors/sqla/views.py:294 +msgid "Edit Table" +msgstr "编辑表" -#: superset/views/core.py:745 -msgid "An unknown error occurred. Please contact your Superset administrator" -msgstr "发生未知错误。请与管理员联系" +#: superset/connectors/sqla/views.py:327 +msgid "" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" +msgstr "与此表关联的图表列表。通过更改此数据源,您可以更改这些相关图表的行为。还要注意,图表需要指向数据源,如果从数据源中删除图表,则此窗体将无法保存。如果要为图表更改数据源,请从“浏览视图”更改该图表。" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 -msgid "Anchor to" -msgstr "锚定到" +#: superset/connectors/sqla/views.py:336 +msgid "Timezone offset (in hours) for this datasource" +msgstr "数据源的时差(单位:小时)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 -msgid "Angle at which to end progress axis" -msgstr "进度轴结束的角度" +#: superset/connectors/sqla/views.py:337 +msgid "Name of the table that exists in the source database" +msgstr "源数据库中存在的表名称" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 -msgid "Angle at which to start progress axis" -msgstr "开始进度轴的角度" +#: superset/connectors/sqla/views.py:338 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" +msgstr "模式,只在一些数据库中使用,比如Postgres、Redshift和DB2" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 -msgid "Animation" -msgstr "动画" +#: superset/connectors/sqla/views.py:345 +msgid "" +"This fields acts a Superset view, meaning that Superset will run a query " +"against this string as a subquery." +msgstr "这个字段执行Superset视图时,意味着Superset将以子查询的形式对字符串运行查询。" -#: superset-frontend/src/pages/AnnotationList/index.tsx:216 -#: superset-frontend/src/pages/AnnotationList/index.tsx:249 -msgid "Annotation" -msgstr "注释" +#: superset/connectors/sqla/views.py:349 +msgid "" +"Predicate applied when fetching distinct value to populate the filter " +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." +msgstr "当获取不同的值来填充过滤器组件应用时。支持jinja的模板语法。只在`启用过滤器选择`时应用。" -#: superset-frontend/src/pages/AnnotationList/index.tsx:259 -#, fuzzy, python-format -msgid "Annotation Layer %s" -msgstr "注解层" +#: superset/connectors/sqla/views.py:355 +msgid "Redirects to this endpoint when clicking on the table from the table list" +msgstr "点击表列表中的表时将重定向到此端点" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:414 -msgid "Annotation Layers" -msgstr "注释层" +#: superset/connectors/sqla/views.py:359 +msgid "" +"Whether to populate the filter's dropdown in the explore view's filter " +"section with a list of distinct values fetched from the backend on the " +"fly" +msgstr "是否在浏览视图的过滤器部分中填充过滤器的下拉列表,并提供从后端获取的不同值的列表" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 -msgid "Annotation Slice Configuration" -msgstr "注释切片配置" +#: superset/connectors/sqla/views.py:364 +msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" +msgstr "表是否由 sql 实验室中的 \"可视化\" 流生成" -#: superset/annotation_layers/annotations/commands/exceptions.py:64 -msgid "Annotation could not be created." -msgstr "注释无法创建。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:987 +#: superset/connectors/sqla/views.py:367 +msgid "" +"A set of parameters that become available in the query using Jinja " +"templating syntax" +msgstr "在查询中可用的一组参数使用JINJA模板语法" -#: superset/annotation_layers/annotations/commands/exceptions.py:68 -msgid "Annotation could not be updated." -msgstr "注释无法更新。" +#: superset/connectors/sqla/views.py:371 +msgid "" +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." +msgstr "此表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为数据库的超时。" -#: superset/annotation_layers/annotations/commands/exceptions.py:72 -msgid "Annotation delete failed." -msgstr "注释与注释层" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:997 +#: superset/connectors/sqla/views.py:383 +msgid "" +"Allow column names to be changed to case insensitive format, if supported" +" (e.g. Oracle, Snowflake)." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 -msgid "Annotation layer" -msgstr "注释层" +#: superset/connectors/sqla/views.py:387 +msgid "" +"Datasets can have a main temporal column (main_dttm_col), but can also " +"have secondary time columns. When this attribute is true, whenever the " +"secondary columns are filtered, the same filter is applied to the main " +"datetime column." +msgstr "" -#: superset/annotation_layers/commands/exceptions.py:37 -msgid "Annotation layer could not be created." -msgstr "您的查询无法保存" +#: superset/connectors/sqla/views.py:395 +msgid "Associated Charts" +msgstr "关联的图表" -#: superset/annotation_layers/commands/exceptions.py:33 -msgid "Annotation layer could not be deleted." -msgstr "注释层仍在加载。" +#: superset/connectors/sqla/views.py:397 +msgid "Changed By" +msgstr "修改人" -#: superset/annotation_layers/commands/exceptions.py:41 -msgid "Annotation layer could not be updated." -msgstr "您的查询无法保存" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:278 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:110 +#: superset-frontend/src/pages/DatabaseList/index.tsx:299 +#: superset-frontend/src/pages/DatasetList/index.tsx:371 +#: superset-frontend/src/pages/DatasetList/index.tsx:538 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:257 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:365 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:302 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset/connectors/sqla/views.py:398 superset/connectors/sqla/views.py:399 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:138 superset/views/database/forms.py:316 +#: superset/views/database/forms.py:443 superset/views/database/mixins.py:188 +msgid "Database" +msgstr "数据库" -#: superset/annotation_layers/commands/exceptions.py:49 -msgid "Annotation layer delete failed." -msgstr "注释层仍在加载。" +#: superset/connectors/sqla/views.py:400 superset/views/database/mixins.py:190 +msgid "Last Changed" +msgstr "更新时间" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 -msgid "Annotation layer description columns" -msgstr "注释层描述列。" +#: superset/connectors/sqla/views.py:401 +msgid "Enable Filter Select" +msgstr "启用过滤器选择" -#: superset/annotation_layers/commands/exceptions.py:53 -#: superset/annotation_layers/commands/exceptions.py:57 -msgid "Annotation layer has associated annotations." -msgstr "注释层仍在加载。" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:113 +#: superset-frontend/src/pages/DatasetList/index.tsx:376 +#: superset-frontend/src/pages/DatasetList/index.tsx:554 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:266 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:312 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:474 +#: superset/connectors/sqla/views.py:402 superset/views/database/forms.py:155 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:449 +msgid "Schema" +msgstr "模式" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 -msgid "Annotation layer interval end" -msgstr "注释层间隔结束" +#: superset/connectors/sqla/views.py:403 +msgid "Default Endpoint" +msgstr "默认端点" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 -msgid "Annotation layer name" -msgstr "注释层名称" +#: superset/connectors/sqla/views.py:404 +msgid "Offset" +msgstr "偏移" -#: superset/annotation_layers/commands/exceptions.py:45 -msgid "Annotation layer not found." -msgstr "注释层仍在加载。" +#: superset/connectors/sqla/views.py:405 superset/views/chart/mixin.py:76 +msgid "Cache Timeout" +msgstr "缓存超时" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 -msgid "Annotation layer opacity" -msgstr "注释层不透明度" +#: superset/connectors/sqla/views.py:406 superset/views/database/forms.py:129 +#: superset/views/database/forms.py:280 superset/views/database/forms.py:412 +msgid "Table Name" +msgstr "表名" -#: superset/annotation_layers/commands/exceptions.py:29 -msgid "Annotation layer parameters are invalid." -msgstr "注释层仍在加载。" +#: superset/connectors/sqla/views.py:407 +msgid "Fetch Values Predicate" +msgstr "取值谓词" -# stroke 中风??? -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 -msgid "Annotation layer stroke" -msgstr "注释层混乱" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:573 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:401 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:415 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:434 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:448 +#: 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: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:398 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:314 +#: superset-frontend/src/pages/ChartList/index.tsx:436 +#: superset-frontend/src/pages/DashboardList/index.tsx:357 +#: superset-frontend/src/pages/DatasetList/index.tsx:391 +#: superset/connectors/sqla/views.py:408 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 +msgid "Owners" +msgstr "所有者" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 -msgid "Annotation layer time column" -msgstr "注释层时间列" +#: superset/connectors/sqla/views.py:409 +msgid "Main Datetime Column" +msgstr "主日期列" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 -msgid "Annotation layer title column" -msgstr "注释层标题列" +#: superset/connectors/sqla/views.py:411 +msgid "SQL Lab View" +msgstr "SQL Lab 视图" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 -msgid "Annotation layer type" -msgstr "注释层类型" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 +#: superset/connectors/sqla/views.py:412 +msgid "Template parameters" +msgstr "模板参数" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 -msgid "Annotation layer value" -msgstr "注释层值" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:293 +#: superset/connectors/sqla/views.py:414 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:188 superset/views/database/mixins.py:199 +msgid "Modified" +msgstr "已修改" -#: superset-frontend/src/explore/controlPanels/sections.tsx:83 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 -msgid "Annotation layers" -msgstr "注解层" +#: superset/connectors/sqla/views.py:435 +msgid "" +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." +msgstr "表被创建。作为这两个阶段配置过程的一部分,您现在应该单击新表的编辑按钮来配置它。" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 -msgid "Annotation layers are still loading." -msgstr "注释层仍在加载。" - -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 -msgid "Annotation name" -msgstr "注释名称" +#: superset/css_templates/api.py:142 +#, python-format +msgid "Deleted %(num)d css template" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "删除了 %(num)d 个css模板" -#: superset/annotation_layers/annotations/commands/exceptions.py:56 -msgid "Annotation not found." -msgstr "注释不存在。" +#: superset/dashboards/api.py:390 +#, python-format +msgid "Dataset schema is invalid, caused by: %(error)s" +msgstr "" -#: superset/annotation_layers/annotations/commands/exceptions.py:60 -msgid "Annotation parameters are invalid." -msgstr "注释层仍在加载。" +#: superset/dashboards/api.py:697 +#, python-format +msgid "Deleted %(num)d dashboard" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "删除了 %(num)d 个看板" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 -#, fuzzy -msgid "Annotation source" -msgstr "注释来源" +#: superset/dashboards/filters.py:39 +msgid "Title or Slug" +msgstr "标题或者Slug" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 -msgid "Annotation source type" -msgstr "注释数据源类型" +#: superset/dashboards/filters.py:193 +msgid "Role" +msgstr "用户信息" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 #, fuzzy -msgid "Annotation template created" -msgstr "注释无法创建。" +msgid "Invalid state." +msgstr "无效认证" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 -#, fuzzy -msgid "Annotation template updated" -msgstr "注释已更新。" +#: superset/databases/decorators.py:47 +msgid "Table name undefined" +msgstr "表名未定义" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 -msgid "Annotations and Layers" -msgstr "注释与注释层" +#: superset/databases/filters.py:79 +msgid "Upload Enabled" +msgstr "" -#: superset-frontend/src/explore/controlPanels/sections.tsx:72 -msgid "Annotations and layers" -msgstr "注释与注释层" +#: superset/databases/schemas.py:175 +#, fuzzy +msgid "" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" +msgstr "连接字符串无效,有效字符串通常如下:driver://user:password@database-host/database-name" -#: superset/annotation_layers/annotations/commands/exceptions.py:52 -msgid "Annotations could not be deleted." -msgstr "无法删除注释。" +#: superset/databases/schemas.py:210 superset/databases/schemas.py:225 +#, python-format +msgid "Field cannot be decoded by JSON. %(msg)s" +msgstr "字段不能由JSON解码。%(msg)s" -#: superset-frontend/src/pages/ChartList/index.tsx:596 -#: superset-frontend/src/pages/ChartList/index.tsx:705 -#: superset-frontend/src/pages/DashboardList/index.tsx:504 -#: superset-frontend/src/pages/DashboardList/index.tsx:572 -#: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:581 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 -msgid "Any" -msgstr "所有" +#: superset/databases/schemas.py:233 +#, python-format +msgid "" +"The metadata_params in Extra field is not configured correctly. The key " +"%(key)s is invalid." +msgstr "额外字段中的元数据参数配置不正确。键 %(key)s 无效。" -#: 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 "要在认证工具提示中显示详细信息。" +#: superset/databases/schemas.py:300 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." +msgstr "向数据库传递单个参数时必须指定引擎。" -#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 +#: superset/databases/schemas.py:313 msgid "" -"Any color palette selected here will override the colors applied to this " -"dashboard's individual charts" -msgstr "此处选择的任何调色板都将覆盖应用于此看板的各个图表的颜色" +"Engine spec \"InvalidEngine\" does not support being configured via " +"individual parameters." +msgstr "引擎\"InvalidEngine\"不支持通过单独的参数进行配置。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 -msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " -msgstr "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。" +#: superset/datasets/api.py:785 +#, python-format +msgid "Deleted %(num)d dataset" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "已经删除 %(num)d 个数据集" + +#: superset/datasets/filters.py:26 +msgid "Null or Empty" +msgstr "Null或空" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#: superset/db_engine_specs/athena.py:58 +#: superset/db_engine_specs/bigquery.py:212 +#: superset/db_engine_specs/postgres.py:166 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver " -msgstr "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。了解如何连接数据库驱动程序" +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" -#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 -#: superset/views/database/forms.py:467 -msgid "Append" -msgstr "追加" +#: superset/db_engine_specs/base.py:98 +msgid "Second" +msgstr "秒" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 -#, fuzzy, python-format -msgid "Applied cross-filters (%d)" -msgstr "应用的交叉条件 (%d)" +#: superset/db_engine_specs/base.py:99 +msgid "5 second" +msgstr "5秒" -#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 -#, fuzzy, python-format -msgid "Applied filters (%d)" -msgstr "应用的条件 (%d)" +#: superset/db_engine_specs/base.py:100 +msgid "30 second" +msgstr "30秒钟" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 -#, fuzzy, python-format -msgid "Applied filters: %s" -msgstr "应用的条件 (%d)" +#: superset/db_engine_specs/base.py:101 +msgid "Minute" +msgstr "分钟" -#: superset/viz.py:250 -msgid "" -"Applied rolling window did not return any data. Please make sure the " -"source query satisfies the minimum periods defined in the rolling window." -msgstr "应用的滚动窗口(rolling window)未返回任何数据。请确保源查询满足滚动窗口中定义的最小周期。" +#: superset/db_engine_specs/base.py:102 +msgid "5 minute" +msgstr "5分钟" -#: 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 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 -msgid "Apply" -msgstr "应用" +#: superset/db_engine_specs/base.py:103 +msgid "10 minute" +msgstr "10分钟" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 -#, fuzzy -msgid "Apply conditional color formatting to metric" -msgstr "将条件颜色格式应用于指标" +#: superset/db_engine_specs/base.py:104 +msgid "15 minute" +msgstr "15分钟" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 -msgid "Apply conditional color formatting to metrics" -msgstr "将条件颜色格式应用于指标" +#: superset/db_engine_specs/base.py:105 +msgid "30 minute" +msgstr "30分钟" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 -msgid "Apply conditional color formatting to numeric columns" -msgstr "将条件颜色格式应用于数字列" +#: superset/db_engine_specs/base.py:106 +msgid "Hour" +msgstr "小时" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 -#, fuzzy -msgid "Apply filters" -msgstr "所有过滤" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:107 +msgid "6 hour" +msgstr "6小时" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 -msgid "Apply metrics on" -msgstr "应用指标到" +#: superset/db_engine_specs/base.py:108 +msgid "Day" +msgstr "天" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 -msgid "Apply to all panels" -msgstr "应用于所有面板" +#: superset/db_engine_specs/base.py:109 +msgid "Week" +msgstr "周" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 -msgid "Apply to specific panels" -msgstr "应用于特定面板" +#: superset/db_engine_specs/base.py:110 +msgid "Month" +msgstr "月" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 -msgid "April" -msgstr "四月" +#: superset/db_engine_specs/base.py:111 +msgid "Quarter" +msgstr "季度" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 -#, fuzzy -msgid "Arc" -msgstr "三月" +#: superset/db_engine_specs/base.py:112 +msgid "Year" +msgstr "年" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 -#, fuzzy -msgid "Are you sure you intend to overwrite the following values?" -msgstr "您确实要删除选定的查询吗?" +#: superset/db_engine_specs/base.py:113 +msgid "Week starting Sunday" +msgstr "周日为一周开始" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 -msgid "Are you sure you want to cancel?" -msgstr "您确定要取消吗?" +#: superset/db_engine_specs/base.py:114 +msgid "Week starting Monday" +msgstr "周一为一周开始" -#: superset-frontend/src/features/charts/ChartCard.tsx:83 -#: superset-frontend/src/features/home/DashboardTable.tsx:229 -#: superset-frontend/src/features/tags/TagCard.tsx:72 -#: superset-frontend/src/pages/ChartList/index.tsx:509 -#: superset-frontend/src/pages/DashboardList/index.tsx:418 -#: superset-frontend/src/pages/DashboardList/index.tsx:739 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 -#: superset-frontend/src/pages/Tags/index.tsx:144 -msgid "Are you sure you want to delete" -msgstr "确定要删除吗" +#: superset/db_engine_specs/base.py:115 +msgid "Week ending Saturday" +msgstr "周一为一周结束" -#: superset-frontend/src/pages/AnnotationList/index.tsx:282 -#, fuzzy, python-format -msgid "Are you sure you want to delete %s?" -msgstr "确定要删除吗" +#: superset/db_engine_specs/base.py:116 +#, fuzzy +msgid "Week ending Sunday" +msgstr "周一为一周结束" -#: superset-frontend/src/pages/AlertReportList/index.tsx:584 -#, python-format -msgid "Are you sure you want to delete the selected %s?" -msgstr "确实要删除选定的 %s 吗?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1979 +#: superset/db_engine_specs/clickhouse.py:200 +#: superset/db_engine_specs/databend.py:193 +msgid "Username" +msgstr "用户名" -#: superset-frontend/src/pages/AnnotationList/index.tsx:298 -msgid "Are you sure you want to delete the selected annotations?" -msgstr "确实要删除选定的注释吗?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:156 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1981 +#: superset/db_engine_specs/clickhouse.py:201 +#: superset/db_engine_specs/databend.py:194 +msgid "Password" +msgstr "密码" -#: superset-frontend/src/pages/ChartList/index.tsx:838 -msgid "Are you sure you want to delete the selected charts?" -msgstr "确实要删除所选图表吗?" +#: superset/db_engine_specs/base.py:1983 +#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/databend.py:195 +msgid "Hostname or IP address" +msgstr "主机名或IP" -#: superset-frontend/src/pages/DashboardList/index.tsx:702 -msgid "Are you sure you want to delete the selected dashboards?" -msgstr "确实要删除选定的仪表板吗?" +#: superset/db_engine_specs/base.py:1987 +#: superset/db_engine_specs/clickhouse.py:207 +#: superset/db_engine_specs/databend.py:198 +#: superset/db_engine_specs/databricks.py:53 +msgid "Database port" +msgstr "数据库端口" -#: superset-frontend/src/pages/DatasetList/index.tsx:763 -msgid "Are you sure you want to delete the selected datasets?" -msgstr "确实要删除选定的数据集吗?" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset/db_engine_specs/base.py:1991 +#: superset/db_engine_specs/clickhouse.py:211 +#: superset/db_engine_specs/databend.py:201 +msgid "Database name" +msgstr "数据库名称" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 -msgid "Are you sure you want to delete the selected layers?" -msgstr "确实要删除选定的图层吗?" +#: superset/db_engine_specs/base.py:1996 +#: superset/db_engine_specs/clickhouse.py:220 +#: superset/db_engine_specs/databend.py:206 +msgid "Additional parameters" +msgstr "编辑模板参数" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 -msgid "Are you sure you want to delete the selected queries?" -msgstr "您确实要删除选定的查询吗?" +#: superset/db_engine_specs/base.py:2000 +#: superset/db_engine_specs/clickhouse.py:215 +#: superset/db_engine_specs/databend.py:203 +#: superset/db_engine_specs/databricks.py:59 +msgid "Use an encrypted connection to the database" +msgstr "使用到数据库的加密连接" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#: superset/db_engine_specs/base.py:2004 #, fuzzy -msgid "Are you sure you want to delete the selected rules?" -msgstr "确实要删除选定的图层吗?" - -#: superset-frontend/src/pages/Tags/index.tsx:282 -#, fuzzy -msgid "Are you sure you want to delete the selected tags?" -msgstr "确实要删除选定的 %s 吗?" +msgid "Use an ssh tunnel connection to the database" +msgstr "使用到数据库的加密连接" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 -msgid "Are you sure you want to delete the selected templates?" -msgstr "确实要删除选定的模板吗?" +#: superset/db_engine_specs/bigquery.py:179 +msgid "" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 -#, fuzzy -msgid "Are you sure you want to overwrite this dataset?" -msgstr "确实要删除选定的数据集吗?" +#: superset/db_engine_specs/bigquery.py:191 +#, python-format +msgid "" +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "表 \"%(table)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 -msgid "Are you sure you want to proceed?" -msgstr "您确定要继续执行吗?" +#: superset/db_engine_specs/bigquery.py:199 +#, python-format +msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." +msgstr "我们似乎无法解析行 %(location)s 所处的列 \"%(column)\" 。" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 -msgid "Are you sure you want to save and apply changes?" -msgstr "确实要保存并应用更改吗?" +#: superset/db_engine_specs/bigquery.py:204 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "表 \"%(schema)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 -msgid "Area Chart" -msgstr "面积图" +#: superset/db_engine_specs/doris.py:211 superset/db_engine_specs/mysql.py:157 +#: superset/db_engine_specs/presto.py:680 +#: superset/db_engine_specs/redshift.py:74 +#: superset/db_engine_specs/starrocks.py:154 +#, python-format +msgid "Either the username \"%(username)s\" or the password is incorrect." +msgstr "用户名\"%(username)s\"或密码不正确" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 -#, fuzzy -msgid "Area Chart (legacy)" -msgstr "面积图不透明度" +#: superset/db_engine_specs/doris.py:216 +#, fuzzy, python-format +msgid "Unknown Doris server host \"%(hostname)s\"." +msgstr "未知MySQL服务器主机 \"%(hostname)s\"." -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 -msgid "Area chart" -msgstr "面积图" +#: superset/db_engine_specs/doris.py:221 superset/db_engine_specs/mysql.py:167 +#, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." +msgstr "主机 \"%(hostname)s\" 可能已关闭,无法连接到" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 -msgid "Area chart opacity" -msgstr "面积图不透明度" +#: superset/db_engine_specs/doris.py:226 superset/db_engine_specs/mysql.py:172 +#: superset/db_engine_specs/postgres.py:153 +#: superset/db_engine_specs/starrocks.py:159 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "不能连接到数据库\"%(database)s\"" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 -#, fuzzy +#: superset/db_engine_specs/doris.py:231 superset/db_engine_specs/gsheets.py:96 +#: superset/db_engine_specs/mysql.py:177 +#, python-format msgid "" -"Area charts are similar to line charts in that they represent variables " -"with the same scale, but area charts stack the metrics on top of each " -"other." -msgstr "时间序列面积图与折线图相似,因为它们表示具有相同比例的变量,但面积图将度量叠加在一起。超级集中的面积图可以是流式、堆栈式或展开式" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 -msgid "Arrow" -msgstr "箭头" - -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 -#, fuzzy -msgid "Assign a set of parameters as" -msgstr "数据集参数无效。" +"Please check your query for syntax errors near \"%(server_error)s\". " +"Then, try running your query again." +msgstr "请检查查询中\"%(server_error)s\"附近的语法错误然后,再次尝试运行查询" -#: superset/connectors/sqla/views.py:383 -msgid "Associated Charts" -msgstr "关联的图表" +#: superset/db_engine_specs/duckdb.py:58 superset/db_engine_specs/sqlite.py:108 +#, python-format +msgid "We can't seem to resolve the column \"%(column_name)s\"" +msgstr "我们似乎无法解析列 \"%(column_name)\" 。" -#: superset/views/database/mixins.py:196 -msgid "Async Execution" -msgstr "异步执行查询" +#: superset/db_engine_specs/mssql.py:93 +#, python-format +msgid "" +"Either the username \"%(username)s\", password, or database name " +"\"%(database)s\" is incorrect." +msgstr "用户名\"%(username)s\"、密码或数据库名称\"%(database)s\"不正确" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 -#: superset-frontend/src/pages/DatabaseList/index.tsx:320 -#: superset-frontend/src/pages/DatabaseList/index.tsx:486 -msgid "Asynchronous query execution" -msgstr "异步执行查询" +#: superset/db_engine_specs/mssql.py:101 +#: superset/db_engine_specs/postgres.py:135 +#: superset/db_engine_specs/presto.py:685 +#: superset/db_engine_specs/redshift.py:79 +#, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." +msgstr "无法解析主机名 \"%(hostname)s\" " -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 -msgid "August" -msgstr "八月" +#: superset/db_engine_specs/mssql.py:106 +#: superset/db_engine_specs/postgres.py:140 +#: superset/db_engine_specs/presto.py:698 +#: superset/db_engine_specs/redshift.py:84 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "主机名 \"%(hostname)s\" 上的端口 %(port)s 拒绝连接。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 -#, fuzzy -msgid "Auto" -msgstr "在" +#: superset/db_engine_specs/mssql.py:111 +#: superset/db_engine_specs/postgres.py:145 +#: superset/db_engine_specs/presto.py:690 +#: superset/db_engine_specs/redshift.py:89 +#, python-format +msgid "" +"The host \"%(hostname)s\" might be down, and can't be reached on port " +"%(port)s." +msgstr "主机 \"%(hostname)s\" 可能已关闭,无法通过端口访问 " -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 -#, fuzzy -msgid "Auto Zoom" -msgstr "数据缩放" +#: superset/db_engine_specs/mysql.py:162 +#, python-format +msgid "Unknown MySQL server host \"%(hostname)s\"." +msgstr "未知MySQL服务器主机 \"%(hostname)s\"." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 -msgid "Autocomplete" -msgstr "自动补全" +#: superset/db_engine_specs/ocient.py:243 +#: superset/db_engine_specs/postgres.py:120 +#, python-format +msgid "The username \"%(username)s\" does not exist." +msgstr "指标 '%(username)s' 不存在" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 -msgid "Autocomplete filters" -msgstr "自适配过滤条件" +#: superset/db_engine_specs/ocient.py:248 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 -msgid "Autocomplete query predicate" -msgstr "自动补全查询谓词" +#: superset/db_engine_specs/ocient.py:256 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "不能连接到数据库\"%(database)s\"" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 -msgid "Automatic Color" +#: superset/db_engine_specs/ocient.py:261 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 -msgid "Available sorting modes:" -msgstr "可用分类模式:" +#: superset/db_engine_specs/ocient.py:266 +msgid "Port out of range 0-65535" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset/db_engine_specs/ocient.py:271 #, fuzzy -msgid "Average" -msgstr "大" +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "连接字符串无效,有效字符串通常如下:driver://user:password@database-host/database-name" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 -#, fuzzy -msgid "Average value" -msgstr "目标值" +#: superset/db_engine_specs/ocient.py:279 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 -msgid "Axis" -msgstr "坐标轴" +#: superset/db_engine_specs/ocient.py:284 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "指标 '%(username)s' 不存在" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 -#, fuzzy -msgid "Axis Bounds" -msgstr "Y 轴界限" +#: superset/db_engine_specs/ocient.py:289 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 -#, fuzzy -msgid "Axis Format" -msgstr "Y 轴格式化" +#: superset/db_engine_specs/postgres.py:125 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "用户名 \"%(username)s\" 提供的密码不正确。" + +#: superset/db_engine_specs/postgres.py:130 +msgid "Please re-enter the password." +msgstr "请重新输入密码。" + +#: superset/db_engine_specs/postgres.py:158 +#: superset/db_engine_specs/presto.py:656 +#, python-format +msgid "" +"We can't seem to resolve the column \"%(column_name)s\" at line " +"%(location)s." +msgstr "我们似乎无法解析行 %(location)s 所处的列 \"%(column_name)s\" 。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 +#: superset/db_engine_specs/postgres.py:289 #, fuzzy -msgid "Axis Title" -msgstr "选项卡标题" +msgid "Users are not allowed to set a search path for security reasons." +msgstr "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 -msgid "Axis ascending" -msgstr "轴线升序" +#: superset/db_engine_specs/presto.py:664 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." +msgstr "表 \"%(table_name)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 -msgid "Axis descending" -msgstr "轴线降序" +#: superset/db_engine_specs/presto.py:672 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." +msgstr "表 \"%(schema_name)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 -msgid "BOOLEAN" -msgstr "" +#: superset/db_engine_specs/presto.py:703 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "无法连接到名为\\%(catalog_name)s\\的目录。" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 -msgid "Back" -msgstr "返回" +#: superset/db_engine_specs/presto.py:1355 +msgid "Unknown Presto Error" +msgstr "未知 Presto 错误" -#: superset-frontend/src/pages/AnnotationList/index.tsx:262 -#: superset-frontend/src/pages/AnnotationList/index.tsx:264 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 -msgid "Back to all" -msgstr "" +#: superset/db_engine_specs/redshift.py:97 +#, python-format +msgid "" +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." +msgstr "我们无法连接到名为 \"%(database)s\" 的数据库。请确认您的数据库名字并重试" -#: superset-frontend/src/pages/DatabaseList/index.tsx:311 -#: superset/views/database/mixins.py:200 -msgid "Backend" -msgstr "后端" +#: superset/db_engine_specs/snowflake.py:112 +#, python-format +msgid "%(object)s does not exist in this database." +msgstr "%(object)s 数据库中不存在。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +#: superset/explore/exceptions.py:45 #, fuzzy -msgid "Backward values" -msgstr "条形栏的值" +msgid "Samples for datasource could not be retrieved." +msgstr "无法创建数据集。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 +#: superset/explore/exceptions.py:49 #, fuzzy -msgid "Bad formula." -msgstr "日期格式化" - -#: superset/viz.py:2452 superset/viz.py:2492 -msgid "Bad spatial key" -msgstr "错误的空间字段" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 -msgid "Bar" -msgstr "条形图" +msgid "Changing this datasource is forbidden" +msgstr "没有权限更新此数据集" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Bar Chart" -msgstr "条形图" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:234 +msgid "Home" +msgstr "主页" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset/initialization/__init__.py:242 #, fuzzy -msgid "Bar Chart (legacy)" -msgstr "面积图不透明度" +msgid "Database Connections" +msgstr "测试连接" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 -#, fuzzy -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "时间序列条形图用于显示指标随时间的变化" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:704 +#: superset-frontend/src/features/home/RightMenu.tsx:170 +#: superset/initialization/__init__.py:245 +msgid "Data" +msgstr "数据" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 -msgid "Bar Values" -msgstr "条形栏的值" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 -#, fuzzy -msgid "Bar orientation" -msgstr "方向" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:152 +#: superset-frontend/src/features/tags/TagModal.tsx:316 +#: superset-frontend/src/pages/DashboardList/index.tsx:677 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset/initialization/__init__.py:250 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 +msgid "Dashboards" +msgstr "仪表盘" -#: superset-frontend/src/features/rls/constants.ts:28 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 -#, fuzzy -msgid "Base" -msgstr "数据库" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:154 +#: superset-frontend/src/features/tags/TagModal.tsx:328 +#: superset-frontend/src/pages/ChartList/index.tsx:796 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset/initialization/__init__.py:258 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 +msgid "Charts" +msgstr "图表" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 -msgid "Base layer map style" -msgstr "地图基本层样式" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:401 +#: superset-frontend/src/pages/DatasetList/index.tsx:628 +#: superset/initialization/__init__.py:266 +msgid "Datasets" +msgstr "数据集" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 -msgid "Based on a metric" -msgstr "基于指标" +#: superset/initialization/__init__.py:276 +msgid "Plugins" +msgstr "插件" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 -msgid "Based on granularity, number of time periods to compare against" -msgstr "根据粒度、要比较的时间阶段" +#: superset/initialization/__init__.py:278 +#: superset/initialization/__init__.py:290 +#: superset/initialization/__init__.py:387 +#: superset/initialization/__init__.py:400 +msgid "Manage" +msgstr "管理" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 -msgid "Based on what should series be ordered on the chart and legend" -msgstr "" +#: superset/initialization/__init__.py:287 superset/views/css_templates.py:38 +msgid "CSS Templates" +msgstr "CSS 模板" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 -msgid "Basic" -msgstr "基础" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:331 +#: superset/initialization/__init__.py:353 +msgid "SQL Lab" +msgstr "SQL 工具箱" -#: 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 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 -msgid "Basic information" -msgstr "基本情况" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1128 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:328 +#: superset/initialization/__init__.py:336 +#: superset/initialization/__init__.py:344 +msgid "SQL" +msgstr "SQL" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 -#, python-format -msgid "Batch editing %d filters:" -msgstr "批量编辑 %d 个过滤条件:" +#: superset/initialization/__init__.py:340 +msgid "Saved Queries" +msgstr "已保存查询" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 -msgid "Battery level over time" -msgstr "电池电量随时间变化" +#: superset/initialization/__init__.py:348 +msgid "Query History" +msgstr "历史查询" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 -msgid "Be careful." -msgstr "小心。" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:128 +#: 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:680 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:128 +#: superset-frontend/src/pages/ChartList/index.tsx:425 +#: superset-frontend/src/pages/DashboardList/index.tsx:346 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:362 +#: superset-frontend/src/pages/Tags/index.tsx:349 +#: superset/initialization/__init__.py:358 +msgid "Tags" +msgstr "标签" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 -msgid "Before" -msgstr "之前" +#: superset/initialization/__init__.py:368 +msgid "Action Log" +msgstr "操作日志" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1186 -msgid "Big Number" -msgstr "数字" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:355 +#: superset/initialization/__init__.py:370 +#: superset/initialization/__init__.py:409 +msgid "Security" +msgstr "安全" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 -msgid "Big Number Font Size" -msgstr "数字的字体大小" +#: superset/initialization/__init__.py:385 +msgid "Alerts & Reports" +msgstr "告警和报告" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1150 -msgid "Big Number with Trendline" -msgstr "数字和趋势线" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:109 +#: superset/initialization/__init__.py:395 +msgid "Annotation Layers" +msgstr "注释层" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 -msgid "Bottom" -msgstr "底端" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:72 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:331 +#: superset/initialization/__init__.py:407 +msgid "Row Level Security" +msgstr "行级安全" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 -msgid "Bottom Margin" -msgstr "底部边距" +#: superset/key_value/exceptions.py:30 +#, fuzzy +msgid "An error occurred while parsing the key." +msgstr "更新值时出错。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +#: superset/key_value/exceptions.py:50 #, fuzzy -msgid "Bottom left" -msgstr "底部" +msgid "An error occurred while upserting the value." +msgstr "更新值时出错。" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "底部边距,以像素为单位,为轴标签留出更多空间" +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 -#, fuzzy -msgid "Bottom right" -msgstr "底部" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 -msgid "Bottom to Top" -msgstr "自下而上" +#: superset/key_value/utils.py:60 +msgid "Invalid permalink key" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 +#: superset/models/helpers.py:1525 msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically " -"defined based on the min/max of the data. Note that this feature will " -"only expand the axis range. It won't narrow the data's extent." -msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "没有提供该表配置的日期时间列,它是此类型图表所必需的" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 -#, fuzzy -msgid "" -"Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand" -" the axis range. It won't narrow the data's extent." -msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" +#: superset/models/helpers.py:1531 +msgid "Empty query?" +msgstr "查询为空?" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 -#, fuzzy -msgid "" -"Bounds for the primary Y-axis. When left empty, the bounds are " -"dynamically defined based on the min/max of the data. Note that this " -"feature will only expand the axis range. It won't narrow the data's " -"extent." -msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" +#: superset/models/helpers.py:1605 +#, python-format +msgid "Unknown column used in orderby: %(col)s" +msgstr "订单中使用的未知列: %(col)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 -#, fuzzy -msgid "" -"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" -" bounds are enabled. When left empty, the bounds are " -"dynamically defined\n" -" based on the min/max of the data. Note that this feature " -"will only expand\n" -" the axis range. It won't narrow the data's extent." -msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" +#: superset/models/helpers.py:1682 +#, python-format +msgid "Time column \"%(col)s\" does not exist in dataset" +msgstr "时间列 \"%(col)s\" 在数据集中不存在" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 -msgid "Box Plot" -msgstr "箱线图" +#: superset/models/helpers.py:1821 +#, fuzzy +msgid "error_message" +msgstr "错误信息" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 -msgid "Breakdowns" -msgstr "分解" +#: superset/models/helpers.py:1833 +msgid "Filter value list cannot be empty" +msgstr "不能为空" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1065 -msgid "Bubble Chart" -msgstr "气泡图" +#: superset/models/helpers.py:1866 +msgid "Must specify a value for filters with comparison operators" +msgstr "必须为带有比较操作符的过滤器指定一个值吗" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 -msgid "Bubble Color" -msgstr "气泡颜色" +#: superset/models/helpers.py:1916 +#, python-format +msgid "Invalid filter operation type: %(op)s" +msgstr "选择框的操作类型无效: %(op)s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 -msgid "Bubble Size" -msgstr "气泡大小" +#: superset/models/helpers.py:1926 +#, python-format +msgid "Error in jinja expression in WHERE clause: %(msg)s" +msgstr "jinja表达式中的WHERE子句出错:%(msg)s" -#: superset-frontend/src/explore/controls.jsx:415 -msgid "Bubble size" -msgstr "气泡尺寸" +#: superset/models/helpers.py:1944 +#, python-format +msgid "Error in jinja expression in HAVING clause: %(msg)s" +msgstr "jinja表达式中的HAVING子句出错:%(msg)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 -msgid "Bucket break points" -msgstr "" +#: superset/models/helpers.py:2090 +msgid "Database does not support subqueries" +msgstr "数据库不支持子查询" -#: superset-frontend/src/features/home/RightMenu.tsx:511 -#, fuzzy -msgid "Build" -msgstr "重构" +#: superset/queries/saved_queries/api.py:225 +#, python-format +msgid "Deleted %(num)d saved query" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "已经删除 %(num)d 个保存的查询" -#: superset-frontend/src/pages/AlertReportList/index.tsx:431 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 -#: superset-frontend/src/pages/AnnotationList/index.tsx:226 -#: superset-frontend/src/pages/ChartList/index.tsx:789 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 -#: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:607 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 -#: superset-frontend/src/pages/Tags/index.tsx:267 -msgid "Bulk select" -msgstr "批量选择" +#: superset/reports/api.py:506 +#, python-format +msgid "Deleted %(num)d report schedule" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "已经删除了 %(num)d 个报告时间表" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1118 -msgid "Bullet Chart" -msgstr "子弹图" +#: superset/reports/schemas.py:192 superset/reports/schemas.py:197 +#: superset/reports/schemas.py:202 superset/reports/schemas.py:323 +#: superset/reports/schemas.py:328 superset/reports/schemas.py:334 +msgid "Value must be greater than 0" +msgstr "`行偏移量` 必须大于或等于0" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 -msgid "Business" -msgstr "商业" +#: superset/reports/schemas.py:216 superset/reports/schemas.py:346 +msgid "Custom width of the screenshot in pixels" +msgstr "" -#: superset/connectors/sqla/views.py:164 -msgid "Business Data Type" +#: superset/reports/schemas.py:236 superset/reports/schemas.py:366 +#, python-format +msgid "Screenshot width must be between %(min)spx and %(max)spx" msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 +#: superset/reports/notifications/email.py:88 +#, python-format msgid "" -"By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to" -" enable dynamically searching that loads filter values as users type (may" -" add stress to your database)." -msgstr "默认情况下,每个过滤器在初始页面加载时最多加载1000个选项。如果您有超过1000个过滤值,并且希望启用动态搜索,以便在键入时加载筛选值(可能会给数据库增加压力),请选中此框。" +"\n" +" Error: %(text)s\n" +" " +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 -msgid "By key: use column names as sorting key" -msgstr "使用列名作为排序关键字" +#: superset/reports/notifications/email.py:132 +#, fuzzy +msgid "EMAIL_REPORTS_CTA" +msgstr "激活邮件报告" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 -msgid "By key: use row names as sorting key" -msgstr "使用行名作为排序关键字" +#: superset/reports/notifications/email.py:170 +#, python-format +msgid "%(name)s.csv" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 -msgid "By value: use metric values as sorting key" -msgstr "使用度量值作为排序关键字" +#: superset/reports/notifications/email.py:179 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 -msgid "CANCEL" -msgstr "取消" - -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 -#, fuzzy -msgid "CREATE DATASET" -msgstr "修改数据集" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 -msgid "CREATE TABLE AS" -msgstr "允许 CREATE TABLE AS" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 -msgid "CREATE VIEW AS" -msgstr "允许 CREATE VIEW AS" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 -msgid "CREATE VIEW statement" -msgstr "CREATE VIEW 语句" - -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 -#, fuzzy -msgid "CRON Schedule" -msgstr "报告时间表" - -#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 -msgid "CRON expression" -msgstr "CRON表达式" - -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 -#: superset/views/dashboard/mixin.py:87 -msgid "CSS" -msgstr "CSS" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 -#, fuzzy -msgid "CSS Styles" -msgstr "堆积样式" - -#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 -msgid "CSS Templates" -msgstr "CSS 模板" +#: superset/reports/notifications/slack.py:76 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"<%(url)s|Explore in Superset>\n" +"\n" +"%(table)s\n" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 -msgid "CSS applied to the chart" +#: superset/reports/notifications/slack.py:93 +#, python-format +msgid "" +"*%(name)s*\n" +"\n" +"%(description)s\n" +"\n" +"Error: %(text)s\n" msgstr "" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 -msgid "CSS template" -msgstr "CSS 模板" +#: superset/row_level_security/api.py:355 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "删除了 %(num)d 个图表" -#: superset/css_templates/commands/exceptions.py:23 -msgid "CSS template could not be deleted." -msgstr "CSS模板不能被删除" +#: superset/security/analytics_db_safety.py:52 +#, python-format +msgid "%(dialect)s cannot be used as a data source for security reasons." +msgstr "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 -msgid "CSS template name" -msgstr "CSS模板名称" +#: superset/security/manager.py:1964 +msgid "Guest user cannot modify chart payload" +msgstr "" -#: superset/css_templates/commands/exceptions.py:27 -msgid "CSS template not found." -msgstr "CSS模板未找到" +#: superset/security/manager.py:2394 +#, fuzzy, python-format +msgid "You don't have the rights to alter %(resource)s" +msgstr "您没有权利修改这个标题。" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 -msgid "CSS templates" -msgstr "CSS 模板" +#: superset/sqllab/exceptions.py:66 +#, python-format +msgid "Failed to execute %(query)s" +msgstr "" -#: superset/views/database/forms.py:109 +#: superset/sqllab/query_render.py:39 superset/views/core.py:115 #, fuzzy -msgid "CSV Upload" -msgstr "CSV上传" - -#: superset/views/database/views.py:290 -#, python-format msgid "" -"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" -msgstr "csv 文件 \"%(csv_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" - -#: superset/views/database/views.py:161 -msgid "CSV to Database configuration" -msgstr "csv 到数据库配置" +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." +msgstr "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" -#: superset-frontend/src/pages/DatabaseList/index.tsx:355 -msgid "CSV upload" -msgstr "CSV上传" +#: superset/sqllab/query_render.py:100 +#, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "查询中的以下参数未定义:%(parameters)s 。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 -msgid "CTAS & CVAS SCHEMA" -msgstr "CTAS和CVAS方案" +#: superset/sqllab/query_render.py:121 +msgid "The query contains one or more malformed template parameters." +msgstr "该查询包含一个或多个格式不正确的模板参数。" -#: superset/sql_lab.py:432 +#: superset/sqllab/query_render.py:124 msgid "" -"CTAS (create table as select) can only be run with a query where the last" -" statement is a SELECT. Please make sure your query has a SELECT as its " -"last statement. Then, try running your query again." -msgstr "" -"CTA(create table as " -"select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" - -#: superset/views/database/mixins.py:187 -msgid "CTAS Schema" -msgstr "CTAS 模式" +"Please check your query and confirm that all template parameters are " +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." +msgstr "请检查查询并确认所有模板参数都用双大括号括起来,例如 \"{{ ds }}\"。然后,再次尝试运行查询" -#: superset/sql_lab.py:449 -msgid "" -"CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT " -"statement. Then, try running your query again." +#: superset/tags/exceptions.py:30 +msgid "Tag name is invalid (cannot contain ':')" msgstr "" -"CVAS(createview as " -"select)只能与带有单个SELECT语句的查询一起运行。请确保您的查询只有SELECT语句。然后再次尝试运行查询。" - -#: superset/errors.py:129 -msgid "CVAS (create view as select) query has more than one statement." -msgstr "CVAS (create view as select)查询有多条语句。" -#: superset/errors.py:130 -msgid "CVAS (create view as select) query is not a SELECT statement." -msgstr "CVAS (create view as select)查询不是SELECT语句。" +#: superset/tags/exceptions.py:39 +#, fuzzy +msgid "Tag could not be found." +msgstr "数据库没有找到" -#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 -msgid "Cache Timeout" -msgstr "缓存超时" +#: superset/tags/filters.py:31 +#, fuzzy +msgid "Is custom tag" +msgstr "配置自定义时间范围" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 -#: superset-frontend/src/explore/controlPanels/sections.tsx:41 -msgid "Cache Timeout (seconds)" -msgstr "缓存超时(秒)" +#: superset/tasks/exceptions.py:24 +#, fuzzy +msgid "Scheduled task executor not found" +msgstr "未找到报表计划状态" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 -msgid "Cache timeout" -msgstr "缓存时间" +#: superset/templates/appbuilder/general/widgets/base_list.html:56 +msgid "Record Count" +msgstr "记录数" -#: superset-frontend/src/components/CachedLabel/index.tsx:51 -#, fuzzy -msgid "Cached" -msgstr "已缓存" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 +#: superset/templates/appbuilder/general/widgets/base_list.html:65 +msgid "No records found" +msgstr "没有找到任何记录" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 -#, python-format -msgid "Cached %s" -msgstr "缓存于%s" +#: superset/templates/appbuilder/general/widgets/search.html:25 +msgid "Filter List" +msgstr "过滤" -#: superset/viz.py:578 -msgid "Cached value not found" -msgstr "缓存的值未找到" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:166 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:108 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset/templates/appbuilder/general/widgets/search.html:41 +msgid "Search" +msgstr "搜索" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 -#, fuzzy -msgid "Calculate contribution per series or row" -msgstr "计算每个系列或总计的贡献" +#: superset/templates/appbuilder/general/widgets/search.html:58 +msgid "Refresh" +msgstr "刷新间隔" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 -#, python-format -msgid "Calculated column [%s] requires an expression" -msgstr "计算列 [%s] 需要一个表达式" +#: superset-frontend/src/pages/DashboardList/index.tsx:665 +#: superset/templates/superset/import_dashboards.html:21 +msgid "Import dashboards" +msgstr "导入看板" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 -msgid "Calculated columns" -msgstr "计算列" +#: superset/templates/superset/import_dashboards.html:26 +msgid "Import Dashboard(s)" +msgstr "导入看板" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 -#: superset-frontend/src/explore/controlPanels/sections.tsx:207 -msgid "Calculation type" -msgstr "计算类型" +#: superset/templates/superset/import_dashboards.html:37 +msgid "File" +msgstr "文件" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:972 -msgid "Calendar Heatmap" -msgstr "时间热力图" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 +msgid "Choose File" +msgstr "选择文件" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 -msgid "Can not move top level tab into nested tabs" -msgstr "无法将顶级tab页移动到嵌套tab页中" +#: superset/templates/superset/import_dashboards.html:63 +msgid "Upload" +msgstr "上传" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 #, fuzzy -msgid "Can select multiple values" -msgstr "允许选择多个值" - -#: superset/viz.py:1727 -msgid "Can't have overlap between Series and Breakdowns" -msgstr "Series 和 Breakdown 之间不能有重叠" +msgid "Use the edit button to change this field" +msgstr "使用编辑按钮更改此字段" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 -#: superset-frontend/src/components/Modal/Modal.tsx:269 -#: superset-frontend/src/components/ReportModal/index.tsx:219 -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:413 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 -#: superset/templates/superset/request_access.html:34 -msgid "Cancel" -msgstr "取消" +#: superset/templates/superset/models/database/macros.html:23 +msgid "Test Connection" +msgstr "测试连接" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 -msgid "Cancel query on window unload event" -msgstr "取消窗口上传事件的查询" +#: superset/utils/core.py:993 +#, python-format +msgid "Unsupported clause type: %(clause)s" +msgstr "不支持的条款类型: %(clause)s" -#: superset/sqllab/commands/export.py:78 -msgid "Cannot access the query" -msgstr "" +#: superset/utils/core.py:1246 +#, fuzzy, python-format +msgid "Invalid metric object: %(metric)s" +msgstr "无效的指标对象" -#: superset/databases/commands/exceptions.py:111 -msgid "Cannot delete a database that has datasets attached" -msgstr "无法删除附加了数据集的数据库" +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "找不到这样的假期:[{}]" -#: superset/databases/ssh_tunnel/commands/exceptions.py:67 -msgid "Cannot have multiple credentials for the SSH Tunnel" +#: superset/utils/encrypt.py:121 +#, python-format +msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" -#: superset/views/core.py:734 -#, python-format +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"Cannot import dashboard: %(db_error)s.\n" -"Make sure to create the database before importing the dashboard." -msgstr "" -"无法导入看板:%(db_error)s 。\n" -"请确保在导入看板之前创建数据库。" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" +msgstr "百分位数必须是具有两个数值的列表或元组,其中第一个数值要小于第二个数值" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 -msgid "Cannot load filter" -msgstr "无法加载筛选器" +#: superset/utils/pandas_postprocessing/compare.py:53 +msgid "`compare_columns` must have the same length as `source_columns`." +msgstr "长度必须保持一致" -#: superset/charts/commands/exceptions.py:51 -#, python-format -msgid "Cannot parse time string [%(human_readable)s]" -msgstr "无法解析时间字符串[%(human_readable)s]" +#: superset/utils/pandas_postprocessing/compare.py:57 +msgid "`compare_type` must be `difference`, `percentage` or `ratio`" +msgstr "`compare_type` 必须是 `difference`, `percentage` 或 `ratio`" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 -msgid "Categorical" -msgstr "分类" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format +msgid "" +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." +msgstr "列\"%(column)s\"不是数字或不在查询结果中" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 -#, fuzzy -msgid "Categorical Color" -msgstr "分类" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "长度必须保持一致" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 -msgid "Categories to group by on the x-axis." -msgstr "要在x轴上分组的类别。" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format +msgid "Invalid cumulative operator: %(operator)s" +msgstr "累积运算符无效:%(operator)s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:677 -msgid "Category" -msgstr "分类" +#: superset/utils/pandas_postprocessing/geography.py:49 +msgid "Invalid geohash string" +msgstr "无效的geohash字符串" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 -#, fuzzy -msgid "Category Name" -msgstr "查询名称" +#: superset/utils/pandas_postprocessing/geography.py:76 +msgid "Invalid longitude/latitude" +msgstr "无效的经度/纬度" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 -#, fuzzy -msgid "Category and Percentage" -msgstr "显示百分比" +#: superset/utils/pandas_postprocessing/geography.py:118 +msgid "Invalid geodetic string" +msgstr "无效的 geodetic 字符串" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 -#, fuzzy -msgid "Category and Value" -msgstr "缩放和移动" +#: superset/utils/pandas_postprocessing/pivot.py:66 +msgid "Pivot operation requires at least one index" +msgstr "透视操作至少需要一个索引" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 -#, fuzzy -msgid "Category name" -msgstr "查询名称" +#: superset/utils/pandas_postprocessing/pivot.py:70 +msgid "Pivot operation must include at least one aggregate" +msgstr "数据透视操作必须至少包含一个聚合" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 -msgid "Category of target nodes" -msgstr "目标节点类别" +#: superset/utils/pandas_postprocessing/prophet.py:65 +msgid "`prophet` package not installed" +msgstr "未安装程序包 `fbprophet`" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 -msgid "Category, Value and Percentage" -msgstr "" +#: superset/utils/pandas_postprocessing/prophet.py:118 +msgid "Time grain missing" +msgstr "时间粒度缺失" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 -msgid "Cell Padding" -msgstr "单元填充" +#: superset/utils/pandas_postprocessing/prophet.py:121 +#, python-format +msgid "Unsupported time grain: %(time_grain)s" +msgstr "不支持的时间粒度:%(time_grain)s" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 -msgid "Cell Radius" -msgstr "单元格半径" +#: superset/utils/pandas_postprocessing/prophet.py:130 +#, fuzzy +msgid "Periods must be a whole number" +msgstr "句点必须是正整数值" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 -msgid "Cell Size" -msgstr "单元尺寸" +#: superset/utils/pandas_postprocessing/prophet.py:133 +msgid "Confidence interval must be between 0 and 1 (exclusive)" +msgstr "置信区间必须介于0和1(不包含1)之间" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 -msgid "Cell bars" -msgstr "单元格柱状图" +#: superset/utils/pandas_postprocessing/prophet.py:136 +msgid "DataFrame must include temporal column" +msgstr "数据帧(DataFrame)必须包含时间列" -#: superset-frontend/src/components/FilterableTable/index.tsx:303 -msgid "Cell content" -msgstr "单元格内容" +#: superset/utils/pandas_postprocessing/prophet.py:138 +msgid "DataFrame include at least one series" +msgstr "数据帧(DataFrame)至少包括一个序列" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 +#: superset/utils/pandas_postprocessing/rename.py:53 #, fuzzy -msgid "Cell limit" -msgstr "序列限制" +msgid "Label already exists" +msgstr "过滤器已存在" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 -msgid "Center" -msgstr "中心对齐" +#: superset/utils/pandas_postprocessing/resample.py:43 +#, fuzzy +msgid "Resample operation requires DatetimeIndex" +msgstr "透视操作至少需要一个索引" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 +#: superset/utils/pandas_postprocessing/resample.py:46 #, fuzzy -msgid "Centroid (Longitude and Latitude): " -msgstr "无效的经度/纬度" +msgid "Resample method should in " +msgstr "Pandas 重新采样的填充方法" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 -msgid "Certification" -msgstr "认证" +#: superset/utils/pandas_postprocessing/rolling.py:67 +msgid "Undefined window for rolling operation" +msgstr "未定义滚动操作窗口" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:720 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 -msgid "Certification details" -msgstr "认证细节" +#: superset/utils/pandas_postprocessing/rolling.py:69 +msgid "Window must be > 0" +msgstr "窗口必须大于0" -#: superset-frontend/src/pages/ChartList/index.tsx:699 -#: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:575 -msgid "Certified" -msgstr "认证" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format +msgid "Invalid rolling_type: %(type)s" +msgstr "无效的滚动类型:%(type)s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 -msgid "Certified By" -msgstr "认证" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format +msgid "Invalid options for %(rolling_type)s: %(options)s" +msgstr "%(rolling_type)s 的选项无效:%(options)s" -#: 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:711 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 -msgid "Certified by" -msgstr "认证" +#: superset/utils/pandas_postprocessing/utils.py:127 +msgid "Referenced columns not available in DataFrame." +msgstr "引用的列在数据帧(DataFrame)中不可用。" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 -#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#: superset/utils/pandas_postprocessing/utils.py:153 #, python-format -msgid "Certified by %s" -msgstr "认证人 %s" +msgid "Column referenced by aggregate is undefined: %(column)s" +msgstr "聚合引用的列未定义:%(column)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 -msgid "Change order of columns." -msgstr "更改列的顺序。" +#: superset/utils/pandas_postprocessing/utils.py:160 +#, python-format +msgid "Operator undefined for aggregator: %(name)s" +msgstr "未定义聚合器的运算符:%(name)s" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 -msgid "Change order of rows." -msgstr "更改行的顺序。" +#: superset/utils/pandas_postprocessing/utils.py:172 +#, python-format +msgid "Invalid numpy function: %(operator)s" +msgstr "无效的numpy函数:%(operator)s" -#: superset/connectors/sqla/views.py:385 -msgid "Changed By" -msgstr "修改人" +#: superset/views/api.py:109 +#, fuzzy, python-format +msgid "Unexpected time range: %(error)s" +msgstr "意外错误。" -#: superset/views/sql_lab/views.py:88 -msgid "Changed on" -msgstr "改变为" +#: superset/views/base.py:579 +msgid "json isn't valid" +msgstr "无效 JSON" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 -msgid "Changes saved." -msgstr "" +#: superset/views/base.py:591 +msgid "Export to YAML" +msgstr "导出到YAML格式" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 -msgid "" -"Changing the dataset may break the chart if the chart relies on columns " -"or metadata that does not exist in the target dataset" -msgstr "如果图表依赖于目标数据集中不存在的列或元数据,则更改数据集可能会破坏图表" +#: superset/views/base.py:591 +msgid "Export to YAML?" +msgstr "导出到YAML?" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 -msgid "" -"Changing these settings will affect all charts using this dataset, " -"including charts owned by other people." -msgstr "更改这些设置将影响使用此数据集的所有图表,包括其他人拥有的图表。" +#: superset-frontend/src/features/charts/ChartCard.tsx:104 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:102 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:217 +#: superset-frontend/src/features/tags/TagCard.tsx:84 +#: superset-frontend/src/pages/AlertReportList/index.tsx:387 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:321 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:485 +#: superset-frontend/src/pages/ChartList/index.tsx:815 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:288 +#: superset-frontend/src/pages/DashboardList/index.tsx:403 +#: superset-frontend/src/pages/DashboardList/index.tsx:690 +#: superset-frontend/src/pages/DatasetList/index.tsx:433 +#: superset-frontend/src/pages/DatasetList/index.tsx:799 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:187 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:342 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:565 +#: superset-frontend/src/pages/Tags/index.tsx:209 +#: superset-frontend/src/pages/Tags/index.tsx:360 superset/views/base.py:648 +msgid "Delete" +msgstr "删除" -#: superset/dashboards/commands/exceptions.py:78 -msgid "Changing this Dashboard is forbidden" -msgstr "无法修改该看板" +#: superset/views/base.py:648 +msgid "Delete all Really?" +msgstr "确定删除全部?" -#: superset/charts/commands/exceptions.py:135 -msgid "Changing this chart is forbidden" -msgstr "禁止更改此图表" +#: superset/views/base_api.py:149 +msgid "Is favorite" +msgstr "收藏" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 -#: superset-frontend/src/explore/components/ControlHeader.tsx:123 -msgid "Changing this control takes effect instantly" -msgstr "更改此控件立即生效。" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "" -#: superset/datasets/commands/exceptions.py:198 -msgid "Changing this dataset is forbidden" -msgstr "没有权限更新此数据集" +#: superset/views/core.py:113 +msgid "The data source seems to have been deleted" +msgstr "数据源已经被删除" -#: superset/datasets/columns/commands/exceptions.py:31 -#: superset/datasets/metrics/commands/exceptions.py:31 -msgid "Changing this dataset is forbidden." -msgstr "禁止更改此数据集。" +#: superset/views/core.py:114 +msgid "The user seems to have been deleted" +msgstr "用户已经被删除" -#: superset/explore/exceptions.py:49 +#: superset/views/core.py:289 #, fuzzy -msgid "Changing this datasource is forbidden" -msgstr "没有权限更新此数据集" - -#: superset/reports/commands/exceptions.py:282 -msgid "Changing this report is forbidden" -msgstr "禁止更改此报告" +msgid "You don't have the rights to download as csv" +msgstr "您没有授权 " -#: superset/views/database/forms.py:206 +#: superset/views/core.py:420 #, fuzzy -msgid "Character to interpret as decimal point" -msgstr "将字符解释为小数点的字符。" +msgid "Error: permalink state not found" +msgstr "未找到报表计划状态" -#: superset/views/database/forms.py:385 -msgid "Character to interpret as decimal point." -msgstr "将字符解释为小数点的字符。" +#: superset/views/core.py:423 superset/views/core.py:833 +#, python-format +msgid "Error: %(msg)s" +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: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 -#: superset-frontend/src/pages/ChartList/index.tsx:369 -#: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 -msgid "Chart" -msgstr "图表" +#: superset/views/core.py:509 +#, fuzzy +msgid "You don't have the rights to alter this chart" +msgstr "您没有权利修改这个标题。" + +#: superset/views/core.py:515 +#, fuzzy +msgid "You don't have the rights to create a chart" +msgstr "您没有授权 " -#: superset/views/core.py:1762 +#: superset/views/core.py:570 #, python-format -msgid "Chart %(id)s not found" -msgstr "图表 %(id)s 没有找到" +msgid "Explore - %(table)s" +msgstr "查看 - %(table)s" -#: superset/views/database/mixins.py:192 -msgid "Chart Cache Timeout" -msgstr "表缓存超时" - -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 -#, fuzzy, python-format -msgid "Chart Data: %s" -msgstr "上次更新 %s" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 -#: superset-frontend/src/explore/controlPanels/sections.tsx:32 -msgid "Chart ID" -msgstr "图表 ID" - -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 -#: superset-frontend/src/explore/fixtures.tsx:34 -#: superset-frontend/src/explore/fixtures.tsx:77 -#: superset-frontend/src/explore/fixtures.tsx:86 -msgid "Chart Options" -msgstr "图表选项" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 -#, fuzzy -msgid "Chart Orientation" -msgstr "方向" - -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 -#, fuzzy, python-format -msgid "Chart Owner: %s" -msgid_plural "Chart Owners: %s" -msgstr[0] "图表所有者:%s" - -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 -#, fuzzy -msgid "Chart Source" -msgstr "数据源" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 -msgid "Chart Title" -msgstr "图表标题" - -#: superset-frontend/src/explore/actions/saveModalActions.js:121 -#, fuzzy, python-format -msgid "Chart [%s] has been overwritten" -msgstr "图表 [{}] 已经覆盖" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:572 +msgid "Explore" +msgstr "探索" -#: superset-frontend/src/explore/actions/saveModalActions.js:118 -#, fuzzy, python-format -msgid "Chart [%s] has been saved" +#: superset/views/core.py:621 +msgid "Chart [{}] has been saved" msgstr "图表 [{}] 已经保存" -#: superset-frontend/src/explore/actions/saveModalActions.js:139 -#, fuzzy, python-format -msgid "Chart [%s] was added to dashboard [%s]" -msgstr "图表 [{}] 已经添加到看板 [{}]" - -#: superset/views/core.py:1099 +#: superset/views/core.py:625 msgid "Chart [{}] has been overwritten" msgstr "图表 [{}] 已经覆盖" -#: superset/views/core.py:1095 -msgid "Chart [{}] has been saved" -msgstr "图表 [{}] 已经保存" +#: superset/views/core.py:645 +#, fuzzy +msgid "You don't have the rights to alter this dashboard" +msgstr "您没有权利修改这个标题。" -#: superset/views/core.py:1124 +#: superset/views/core.py:650 msgid "Chart [{}] was added to dashboard [{}]" msgstr "图表 [{}] 已经添加到看板 [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 -msgid "Chart cache timeout" -msgstr "图表缓存超时" +#: superset/views/core.py:661 +#, fuzzy +msgid "You don't have the rights to create a dashboard" +msgstr "您没有授权 " -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 -msgid "Chart changes" -msgstr "图表变化" +#: superset/views/core.py:670 +msgid "Dashboard [{}] just got created and chart [{}] was added to it" +msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 +#: superset/views/core.py:716 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. " -"When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied" -" to can be fine tuned as well in the dashboard view.\n" -"\n" -" Note that this plugin is being replaced with the new Filters feature " -"that lives in the dashboard view itself. It's easier to use and has more " -"capabilities!" -msgstr "图表组件,允许您在仪表板中添加自定义过滤器UI。当添加到仪表板时,过滤器框允许用户指定特定的值或范围来过滤图表。每个筛选框所应用的图表也可以在仪表板视图中进行微调。请注意,这个插件正在被仪表板视图中的新过滤器功能所取代。它更易于使用,功能更强大!" - -#: superset/charts/commands/exceptions.py:115 -msgid "Chart could not be created." -msgstr "您的查询无法保存。" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" +msgstr "格式错误的请求。需要使用 slice_id 或 table_name 和 db_name 参数" -#: superset/charts/commands/exceptions.py:123 -msgid "Chart could not be deleted." -msgstr "这个查询无法被加载。" +#: superset/views/core.py:726 +#, python-format +msgid "Chart %(id)s not found" +msgstr "图表 %(id)s 没有找到" -#: superset/charts/commands/exceptions.py:119 -msgid "Chart could not be updated." -msgstr "您的查询无法保存。" +#: superset/views/core.py:739 +#, python-format +msgid "Table %(table)s wasn't found in the database %(db)s" +msgstr "在数据库 %(db)s 中找不到表 %(table)s" -#: superset/reports/commands/exceptions.py:57 -msgid "Chart does not exist" -msgstr "图表没有找到" +#: superset/views/core.py:836 +#, fuzzy +msgid "permalink state not found" +msgstr "未找到报表计划状态" -#: superset/charts/data/api.py:130 -msgid "Chart has no query context saved. Please save the chart again." -msgstr "图表未保存任何查询上下文。请重新保存图表。" +#: superset/views/css_templates.py:39 +msgid "Show CSS Template" +msgstr "查看CSS模板" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 -#, fuzzy -msgid "Chart height" -msgstr "图表标题" +#: superset/views/css_templates.py:40 +msgid "Add CSS Template" +msgstr "新增CSS模板" -#: superset-frontend/src/pages/ChartList/index.tsx:228 -#, fuzzy -msgid "Chart imported" -msgstr "图表标题" +#: superset/views/css_templates.py:41 +msgid "Edit CSS Template" +msgstr "编辑CSS模板" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 -#, fuzzy -msgid "Chart last modified" -msgstr "最后修改" +#: superset/views/css_templates.py:46 +msgid "Template Name" +msgstr "模板名称" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy -msgid "Chart last modified by" -msgstr "上次修改人 %s" +#: superset/views/dynamic_plugins.py:47 +msgid "A human-friendly name" +msgstr "人性化的名称" -#: superset-frontend/src/explore/components/SaveModal.tsx:355 -msgid "Chart name" -msgstr "图表名称" +#: superset/views/dynamic_plugins.py:48 +msgid "" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" +msgstr "在内部用于标识插件。应该在插件的 package.json 内被设置为包名。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 -msgid "Chart options" -msgstr "图表选项" +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" +msgstr "指向内置插件位置的完整URL(例如,可以托管在CDN上)" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy -msgid "Chart owners" -msgstr "图表所有者:%s" +#: superset/views/dynamic_plugins.py:58 +msgid "Custom Plugins" +msgstr "自定义插件" -#: superset/charts/commands/exceptions.py:111 -msgid "Chart parameters are invalid." -msgstr "图表参数无效。" +#: superset/views/dynamic_plugins.py:59 +msgid "Custom Plugin" +msgstr "自定义插件" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 -#, fuzzy -msgid "Chart properties updated" -msgstr "编辑图表属性" +#: superset/views/dynamic_plugins.py:60 +msgid "Add a Plugin" +msgstr "添加插件" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 -#, fuzzy -msgid "Chart title" -msgstr "图表标题" +#: superset/views/dynamic_plugins.py:61 +msgid "Edit Plugin" +msgstr "编辑插件" -#: superset-frontend/src/pages/ChartList/index.tsx:652 -msgid "Chart type" -msgstr "图表类型" +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:256 +msgid "The dataset associated with this chart no longer exists" +msgstr "这个图表所链接的数据集可能被删除了。" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 -msgid "Chart type requires a dataset" -msgstr "" +#: superset/views/utils.py:476 +msgid "Could not determine datasource type" +msgstr "无法确定数据源类型" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 -#, fuzzy -msgid "Chart width" -msgstr "图表标题" +#: superset/views/utils.py:492 +msgid "Could not find viz object" +msgstr "找不到可视化对象" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 -#: superset-frontend/src/pages/ChartList/index.tsx:827 -#: superset-frontend/src/pages/Home/index.tsx:399 -#: superset-frontend/src/profile/components/CreatedContent.tsx:104 -#: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 -#: superset/views/dashboard/mixin.py:80 -msgid "Charts" -msgstr "图表" +#: superset/views/chart/mixin.py:26 +msgid "Show Chart" +msgstr "显示图表" -#: superset/charts/commands/exceptions.py:139 -msgid "Charts could not be deleted." -msgstr "这个查询无法被加载" +#: superset/views/chart/mixin.py:27 +msgid "Add Chart" +msgstr "添加图表" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 -msgid "Check configuration" -msgstr "检查配置" +#: superset/views/chart/mixin.py:28 +msgid "Edit Chart" +msgstr "编辑图表" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 -msgid "Check for sorting ascending" -msgstr "按照升序进行排序" +#: superset/views/chart/mixin.py:63 +msgid "" +"These parameters are generated dynamically when clicking the save or " +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." +msgstr "这些参数是在浏览视图中单击保存或覆盖按钮时动态生成的。这个JSON对象在这里公开以供参考,并提供给可能希望更改特定参数的高级用户使用。" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 -#: superset-frontend/src/explore/fixtures.tsx:44 +#: superset/views/chart/mixin.py:69 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius" -" for proportioning" -msgstr "检查玫瑰图是否应该使用线段面积而不是线段半径来进行比例" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "此图表的缓存超时持续时间(以秒为单位)。注意,如果未定义,这默认为数据源/表超时。" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 -msgid "Check out this chart in dashboard:" -msgstr "在仪表盘中查看此图表" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:187 superset/views/database/mixins.py:189 +msgid "Creator" +msgstr "作者" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 -msgid "Check out this chart: " -msgstr "看看这张图表:" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:108 +#: superset/views/chart/mixin.py:79 +msgid "Datasource" +msgstr "数据源" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 -msgid "Check out this dashboard: " -msgstr "查看此看板:" +#: superset/views/chart/mixin.py:81 +msgid "Last Modified" +msgstr "最后修改" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 -msgid "" -"Check to apply filters instantly as they change instead of displaying " -"[Apply] button" -msgstr "选中可在过滤条件更改时立即应用过滤,而不是使用 [应用] 按钮" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:55 +#: superset/views/chart/mixin.py:83 +msgid "Parameters" +msgstr "参数" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 -msgid "Check to force date partitions to have the same height" -msgstr "选中以强制日期分区具有相同的高度" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:448 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:421 +#: 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:220 +#: superset-frontend/src/pages/ChartList/index.tsx:770 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 +msgid "Chart" +msgstr "图表" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 -msgid "Check to include time column dropdown" -msgstr "检查包含时间列下拉列表" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:72 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:151 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:887 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1112 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:684 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:788 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:290 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:241 +#: superset-frontend/src/pages/AlertReportList/index.tsx:274 +#: superset-frontend/src/pages/AlertReportList/index.tsx:449 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:238 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset-frontend/src/pages/ChartList/index.tsx:361 +#: superset-frontend/src/pages/ChartList/index.tsx:579 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:223 +#: superset-frontend/src/pages/DashboardList/index.tsx:312 +#: superset-frontend/src/pages/DashboardList/index.tsx:496 +#: superset-frontend/src/pages/DatabaseList/index.tsx:328 +#: superset-frontend/src/pages/DatabaseList/index.tsx:487 +#: superset-frontend/src/pages/DatasetList/index.tsx:356 +#: superset-frontend/src/pages/DatasetList/index.tsx:519 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:132 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:257 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:298 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:446 +#: superset-frontend/src/pages/Tags/index.tsx:174 +#: superset-frontend/src/pages/Tags/index.tsx:259 +#: superset/views/chart/mixin.py:85 +msgid "Name" +msgstr "名称" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 -msgid "Check to include time grain dropdown" -msgstr "选中以包括时间粒度下拉菜单" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:120 +#: superset/views/chart/mixin.py:87 +msgid "Visualization Type" +msgstr "可视化类型" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 -msgid "Child label position" -msgstr "子标签位置" +#: superset/views/dashboard/mixin.py:25 +msgid "Show Dashboard" +msgstr "显示看板" -#: superset/viz.py:2307 -msgid "Choice of [Label] must be present in [Group By]" -msgstr "[标签] 的选择项必须出现在 [Group By]" +#: superset/views/dashboard/mixin.py:26 +msgid "Add Dashboard" +msgstr "添加看板" -#: superset/viz.py:2315 -msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "[点半径] 的选择项必须出现在 [Group By]" +#: superset/views/dashboard/mixin.py:27 +msgid "Edit Dashboard" +msgstr "编辑看板" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 -#: superset/templates/superset/import_dashboards.html:47 -msgid "Choose File" -msgstr "选择文件" +#: superset/views/dashboard/mixin.py:46 +msgid "" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" +msgstr "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" -#: superset/reports/commands/exceptions.py:84 -msgid "Choose a chart or dashboard not both" -msgstr "选择图表或看板,不能都全部选择" +#: superset/views/dashboard/mixin.py:52 +msgid "" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" +msgstr "可以在这里或者在看板视图修改单个看板的CSS样式" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 -msgid "Choose a database..." -msgstr "选择数据库" +#: superset/views/dashboard/mixin.py:57 +msgid "To get a readable URL for your dashboard" +msgstr "为看板生成一个可读的 URL" -#: superset-frontend/src/pages/ChartCreation/index.tsx:384 -#: superset-frontend/src/pages/ChartCreation/index.tsx:395 -msgid "Choose a dataset" -msgstr "选择数据源" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:785 +#: superset/views/dashboard/mixin.py:58 +msgid "" +"This JSON object is generated dynamically when clicking the save or " +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." +msgstr "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 -#: superset-frontend/src/explore/controls.jsx:216 -msgid "Choose a metric for right axis" -msgstr "为右轴选择一个指标" +#: superset/views/dashboard/mixin.py:64 +msgid "Owners is a list of users who can alter the dashboard." +msgstr "所有者是可以更改看板的用户列表。" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 -msgid "Choose a number format" -msgstr "选择一种数字格式" +#: superset/views/dashboard/mixin.py:65 +#, fuzzy +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks.If no roles are " +"defined, regular access permissions apply." +msgstr "角色是一个定义对仪表板访问权限的列表。授予角色对仪表板的访问权限将绕过数据集级别的检查。如果未定义角色,则仪表板对所有角色都可用。" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 -msgid "Choose a source" -msgstr "选择一个源" +#: superset/views/dashboard/mixin.py:70 +msgid "" +"Determines whether or not this dashboard is visible in the list of all " +"dashboards" +msgstr "确定此看板在所有看板列表中是否可见" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 -msgid "Choose a source and a target" -msgstr "选择一个源和一个目标" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:420 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:229 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/DashboardList/index.tsx:652 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:185 +msgid "Dashboard" +msgstr "看板" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 -msgid "Choose a target" -msgstr "选择一个目标" +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:183 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:204 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:186 +msgid "Title" +msgstr "标题" -#: superset-frontend/src/pages/ChartCreation/index.tsx:404 -msgid "Choose chart type" -msgstr "选择图表类型" +#: superset/views/dashboard/mixin.py:79 +msgid "Slug" +msgstr "Slug" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 -msgid "Choose one of the available databases from the panel on the left." -msgstr "从左侧的面板中选择一个可用的数据库" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:382 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:545 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:423 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:432 +#: superset/views/dashboard/mixin.py:82 +msgid "Roles" +msgstr "角色" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 -msgid "Choose the annotation layer type" -msgstr "选择注释层类型" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:510 +#: superset/views/dashboard/mixin.py:83 +msgid "Published" +msgstr "已发布" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 -#, fuzzy -msgid "Choose the format for legend values" -msgstr "为左轴选择一个或多个图表" +#: superset/views/dashboard/mixin.py:86 +msgid "Position JSON" +msgstr "位置JSON" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 -#, fuzzy -msgid "Choose the position of the legend" -msgstr "计算对总数的贡献值" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 +msgid "CSS" +msgstr "CSS" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 -msgid "Choose the source of your annotations" -msgstr "选择您的注释来源" +#: superset/views/dashboard/mixin.py:88 +msgid "JSON Metadata" +msgstr "JSON 元数据" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 -msgid "" -"Choose whether a country should be shaded by the metric, or assigned a " -"color based on a categorical color palette" -msgstr "" +#: superset-frontend/src/features/charts/ChartCard.tsx:117 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:504 +#: superset-frontend/src/pages/ChartList/index.tsx:823 +#: superset-frontend/src/pages/DashboardList/index.tsx:421 +#: superset-frontend/src/pages/DashboardList/index.tsx:698 +#: superset-frontend/src/pages/DatabaseList/index.tsx:438 +#: superset-frontend/src/pages/DatasetList/index.tsx:449 +#: superset-frontend/src/pages/DatasetList/index.tsx:807 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:573 +#: superset/views/dashboard/views.py:66 +msgid "Export" +msgstr "导出" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 -msgid "Chord Diagram" -msgstr "弦图" +#: superset/views/dashboard/views.py:66 +msgid "Export dashboards?" +msgstr "导出看板?" -#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 -msgid "Chosen non-numeric column" -msgstr "选定的非数字列" +#: superset/views/database/forms.py:109 +#, fuzzy +msgid "CSV Upload" +msgstr "CSV上传" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 -msgid "Circle" -msgstr "圆" +#: superset/views/database/forms.py:110 +#, fuzzy +msgid "Select a file to be uploaded to the database" +msgstr "选择一个CSV文件上传到数据库." -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 -msgid "Circle -> Arrow" -msgstr "圆 -> 箭头" +#: superset/views/database/forms.py:120 superset/views/database/forms.py:299 +#: superset/views/database/forms.py:433 +#, python-format +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "仅允许以下文件扩展名:%(allowed_extensions)s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 -msgid "Circle -> Circle" -msgstr "圆 -> 圆" +#: superset/views/database/forms.py:130 +#, fuzzy +msgid "Name of table to be created with CSV file" +msgstr "从CSV数据将创建的表的名称。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 -msgid "Circle radar shape" -msgstr "圆形雷达图" +#: superset/views/database/forms.py:133 superset/views/database/forms.py:284 +#: superset/views/database/forms.py:416 +msgid "Table name cannot contain a schema" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 -msgid "Circular" -msgstr "圆" +#: superset/views/database/forms.py:139 +#, fuzzy +msgid "Select a database to upload the file to" +msgstr "选择将要连接的数据库" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 -msgid "Classic chart that visualizes how metrics change over time." -msgstr "直观显示指标随时间变化的经典图表。" +#: superset/views/database/forms.py:145 +#, fuzzy +msgid "Column Data Types" +msgstr "数据缓存已加载" -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +#: superset/views/database/forms.py:146 msgid "" -"Classic row-by-column spreadsheet like view of a dataset. Use tables to " -"showcase a view into the underlying data or to show aggregated metrics." -msgstr "数据集的典型的逐行逐列电子表格视图。使用表格显示底层数据的视图或显示聚合指标。" - -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 -msgid "Clause" -msgstr "从句" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 -msgid "Clear" -msgstr "清除" - -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 -msgid "Clear all" -msgstr "清除所有" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset/views/database/forms.py:156 #, fuzzy -msgid "Clear all data" -msgstr "清除所有" +msgid "Select a schema if the database supports this" +msgstr "指定一个Schema(需要数据库支持)" + +#: superset/views/database/forms.py:161 +msgid "Delimiter" +msgstr "分隔符" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 +#: superset/views/database/forms.py:162 #, fuzzy -msgid "Clear form" -msgstr "数字格式化" +msgid "Enter a delimiter for this data" +msgstr "输入标签的新标题" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +#: superset/views/database/forms.py:164 +msgid "," msgstr "" -#: superset-frontend/src/components/Chart/Chart.jsx:286 -msgid "" -"Click on \"Create chart\" button in the control panel on the left to " -"preview a visualization or" +#: superset/views/database/forms.py:165 +msgid "." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 -msgid "Click the lock to make changes." -msgstr "单击锁以进行更改。" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:123 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:496 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1001 +#: superset-frontend/src/features/home/EmptyState.tsx:113 +#: superset/views/database/forms.py:166 superset/views/database/forms.py:172 +msgid "Other" +msgstr "其他" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 -msgid "Click the lock to prevent further changes." -msgstr "单击锁定以防止进一步更改。" +#: superset/views/database/forms.py:175 +#, fuzzy +msgid "If Table Already Exists" +msgstr "过滤器已存在" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 -msgid "" -"Click this link to switch to an alternate form that allows you to input " -"the SQLAlchemy URL for this database manually." -msgstr "单击此链接可切换到备用表单,该表单允许您手动输入此数据库的SQLAlChemy URL。" +#: superset/views/database/forms.py:176 +#, fuzzy +msgid "What should happen if the table already exists" +msgstr "过滤器已存在" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 -msgid "" -"Click this link to switch to an alternate form that exposes only the " -"required fields needed to connect this database." -msgstr "单击此链接可切换到仅显示连接此数据库所需的必填字段的备用表单。" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:462 +msgid "Fail" +msgstr "失败" -#: superset-frontend/src/components/Table/index.tsx:217 -msgid "Click to cancel sorting" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:57 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:58 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:463 +msgid "Replace" +msgstr "替换" -#: superset-frontend/src/components/EditableTitle/index.tsx:211 -msgid "Click to edit" -msgstr "点击编辑" +#: superset/views/database/forms.py:180 superset/views/database/forms.py:337 +#: superset/views/database/forms.py:464 +msgid "Append" +msgstr "追加" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, fuzzy, python-format -msgid "Click to edit %s." -msgstr "点击编辑" +#: superset/views/database/forms.py:185 +msgid "Skip Initial Space" +msgstr "跳过初始空格" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#: superset/views/database/forms.py:185 #, fuzzy -msgid "Click to edit chart." -msgstr "点击编辑" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 -msgid "Click to edit label" -msgstr "单击以编辑标签" - -#: superset-frontend/src/components/FaveStar/index.tsx:76 -msgid "Click to favorite/unfavorite" -msgstr "点击 收藏/取消收藏" - -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 -msgid "Click to force-refresh" -msgstr "点击强制刷新" +msgid "Skip spaces after delimiter" +msgstr "在分隔符之后跳过空格。" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 -msgid "Click to see difference" -msgstr "点击查看差异" +#: superset/views/database/forms.py:188 +msgid "Skip Blank Lines" +msgstr "跳过空白行" -#: superset-frontend/src/components/Table/index.tsx:216 +#: superset/views/database/forms.py:189 #, fuzzy -msgid "Click to sort ascending" -msgstr "按照升序进行排序" +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "跳过空白行而不是把它们解释为NaN值。" -#: superset-frontend/src/components/Table/index.tsx:215 +#: superset/views/database/forms.py:194 #, fuzzy -msgid "Click to sort descending" -msgstr "降序" - -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 -msgid "Close" -msgstr "关闭" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 -msgid "Close all other tabs" -msgstr "关闭其他tab页" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 -msgid "Close tab" -msgstr "关闭标签" +msgid "Columns To Be Parsed as Dates" +msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 -msgid "Cluster label aggregator" -msgstr "集群标签聚合器" +#: superset/views/database/forms.py:195 +#, fuzzy +msgid "A comma separated list of columns that should be parsed as dates" +msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 -msgid "Clustering Radius" -msgstr "簇半径" +#: superset/views/database/forms.py:201 +msgid "Day First" +msgstr "" -#: superset-frontend/src/explore/controlPanels/Separator.js:25 -#: superset-frontend/src/explore/controlPanels/Separator.js:46 -msgid "Code" -msgstr "代码" +#: superset/views/database/forms.py:202 +msgid "DD/MM format dates, international and European format" +msgstr "" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 -msgid "Collapse all" -msgstr "全部折叠" +#: superset/views/database/forms.py:205 superset/views/database/forms.py:380 +msgid "Decimal Character" +msgstr "十进制字符" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 +#: superset/views/database/forms.py:207 #, fuzzy -msgid "Collapse data panel" -msgstr "全部折叠" +msgid "Character to interpret as decimal point" +msgstr "将字符解释为小数点的字符。" -#: superset-frontend/src/components/Table/index.tsx:214 +#: superset/views/database/forms.py:212 #, fuzzy -msgid "Collapse row" -msgstr "全部折叠" +msgid "Null Values" +msgstr "空值" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 +#: superset/views/database/forms.py:214 #, fuzzy -msgid "Collapse tab content" -msgstr "单元格内容" - -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Collapse table preview" -msgstr "折叠表的预览" +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" +msgstr "" +"应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", " +"\"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 -msgid "Color" -msgstr "颜色" +#: superset/views/database/forms.py:221 superset/views/database/forms.py:352 +msgid "Index Column" +msgstr "索引字段" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 -msgid "Color +/-" -msgstr "色彩 +/-" +#: superset/views/database/forms.py:222 +#, fuzzy +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" +msgstr "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 -msgid "Color Metric" -msgstr "颜色指标" +#: superset/views/database/forms.py:230 superset/views/database/forms.py:387 +#: superset/views/database/forms.py:478 +msgid "Dataframe Index" +msgstr "Dataframe索引" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 -msgid "Color Scheme" -msgstr "配色方案" +#: superset/views/database/forms.py:230 +#, fuzzy +msgid "Write dataframe index as a column" +msgstr "将dataframe index 作为列." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 -msgid "Color Steps" -msgstr "色彩 Steps" +#: superset/views/database/forms.py:233 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 +msgid "Column Label(s)" +msgstr "字段标签" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 +#: superset/views/database/forms.py:234 #, fuzzy -msgid "Color bounds" -msgstr "Y界限" +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 +#: superset/views/database/forms.py:242 #, fuzzy -msgid "Color by" -msgstr "排序 " - -#: superset-frontend/src/explore/controls.jsx:234 -msgid "Color metric" -msgstr "颜色指标" +msgid "Columns To Read" +msgstr "显示总计" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 +#: superset/views/database/forms.py:244 #, fuzzy -msgid "Color of the target location" -msgstr "目标节点名称" +msgid "Json list of the column names that should be read" +msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 -#: superset-frontend/src/explore/controlPanels/sections.tsx:60 -#: superset-frontend/src/explore/controls.jsx:460 -msgid "Color scheme" -msgstr "配色方案" +#: superset/views/database/forms.py:248 +#, fuzzy +msgid "Overwrite Duplicate Columns" +msgstr "混合重复列" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#: superset/views/database/forms.py:249 msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given " -"cell against the other cells in the selected range: " +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 -msgid "Colors" -msgstr "颜色" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:154 -msgid "Column" -msgstr "列" - -#: superset/utils/pandas_postprocessing/contribution.py:59 -#, python-format -msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query " -"results." -msgstr "列\"%(column)s\"不是数字或不在查询结果中" +#: superset/views/database/forms.py:255 superset/views/database/forms.py:342 +msgid "Header Row" +msgstr "标题行" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 +#: superset/views/database/forms.py:256 #, fuzzy -msgid "Column Configuration" -msgstr "检查配置" +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" +msgstr "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" -#: superset/views/database/forms.py:144 -#, fuzzy -msgid "Column Data Types" -msgstr "数据缓存已加载" +#: superset/views/database/forms.py:265 superset/views/database/forms.py:367 +msgid "Rows to Read" +msgstr "读取的行" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 +#: superset/views/database/forms.py:266 #, fuzzy -msgid "Column Formatting" -msgstr "条件格式设置" - -#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 -#: superset/views/database/forms.py:484 -msgid "Column Label(s)" -msgstr "字段标签" - -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 -msgid "" -"Column containing ISO 3166-2 codes of region/province/department in your " -"table." -msgstr "表中包含地区/省/省的ISO 3166-2代码的列" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 -msgid "Column containing latitude data" -msgstr "包含纬度数据的列" +msgid "Number of rows of file to read" +msgstr "要读取的文件行数。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 -msgid "Column containing longitude data" -msgstr "包含经度数据的列" +#: superset/views/database/forms.py:271 superset/views/database/forms.py:361 +msgid "Skip Rows" +msgstr "跳过行" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#: superset/views/database/forms.py:272 #, fuzzy -msgid "Column datatype" -msgstr "列名" +msgid "Number of rows to skip at start of file" +msgstr "在文件开始时跳过的行数。" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 -#, fuzzy -msgid "Column header tooltip" -msgstr "详细提示" +#: superset/views/database/forms.py:281 +msgid "Name of table to be created from excel data." +msgstr "从excel数据将创建的表的名称。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 -msgid "Column is required" -msgstr "列是必填项" +#: superset/views/database/forms.py:289 +msgid "Excel File" +msgstr "Excel文件" -#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" True, Index Names are used." -msgstr "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" +#: superset/views/database/forms.py:290 +msgid "Select a Excel file to be uploaded to a database." +msgstr "选择要上传到数据库的Excel文件。" -#: superset/views/database/forms.py:233 -#, fuzzy -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is" -" checked, Index Names are used" -msgstr "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" +#: superset/views/database/forms.py:309 +msgid "Sheet Name" +msgstr "Sheet名称" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 -#, fuzzy -msgid "Column name" -msgstr "列名" +#: superset/views/database/forms.py:310 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "用于sheet名称的字符串(默认为第一个sheet)。" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 -#, python-format -msgid "Column name [%s] is duplicated" -msgstr "列名 [%s] 重复" +#: superset/views/database/forms.py:323 superset/views/database/forms.py:450 +msgid "Specify a schema (if database flavor supports this)." +msgstr "指定一个Schema(需要数据库支持)" -#: superset/utils/pandas_postprocessing/utils.py:151 -#, python-format -msgid "Column referenced by aggregate is undefined: %(column)s" -msgstr "聚合引用的列未定义:%(column)s" +#: superset/views/database/forms.py:328 superset/views/database/forms.py:455 +msgid "Table Exists" +msgstr "表已存在处理" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 -msgid "Column select" -msgstr "选择列" +#: superset/views/database/forms.py:329 superset/views/database/forms.py:456 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." +msgstr "如果表已存在,执行其中一个:舍弃(什么都不做),替换(删除表并重建),或者追加(插入数据)" -#: superset/views/database/forms.py:221 -#, fuzzy +#: superset/views/database/forms.py:343 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index" -" column" -msgstr "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." +msgstr "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" -#: superset/views/database/forms.py:352 +#: superset/views/database/forms.py:353 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" -#: superset/views/database/forms.py:424 -msgid "Columnar File" -msgstr "列式存储文件" - -#: superset/views/database/views.py:568 -#, python-format -msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table " -"\"%(table_name)s\" in database \"%(db_name)s\"" -msgstr "" -"Excel 文件 \"%(columnar_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 " -"\"%(table_name)s\"" +#: superset/views/database/forms.py:362 +msgid "Number of rows to skip at start of file." +msgstr "在文件开始时跳过的行数。" -#: superset/views/database/views.py:443 -msgid "Columnar to Database configuration" -msgstr "列式存储文件到数据库配置" +#: superset/views/database/forms.py:368 +msgid "Number of rows of file to read." +msgstr "要读取的文件行数。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 -#: superset-frontend/src/explore/controls.jsx:244 -#: superset-frontend/src/explore/fixtures.tsx:97 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:71 -msgid "Columns" -msgstr "列" +#: superset/views/database/forms.py:373 +msgid "Parse Dates" +msgstr "解析日期" -#: superset/views/database/forms.py:193 -#, fuzzy -msgid "Columns To Be Parsed as Dates" +#: superset/views/database/forms.py:374 +msgid "A comma separated list of columns that should be parsed as dates." msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset/views/database/forms.py:241 -#, fuzzy -msgid "Columns To Read" -msgstr "显示总计" +#: superset/views/database/forms.py:382 +msgid "Character to interpret as decimal point." +msgstr "将字符解释为小数点的字符。" -#: superset/common/query_context_processor.py:132 -#, fuzzy, python-format -msgid "Columns missing in dataset: %(invalid_columns)s" -msgstr "数据源中缺少列:%(invalid_columns)s" +#: superset/views/database/forms.py:387 superset/views/database/forms.py:478 +msgid "Write dataframe index as a column." +msgstr "将dataframe index 作为列." -#: superset/viz.py:593 -#, python-format -msgid "Columns missing in datasource: %(invalid_columns)s" -msgstr "数据源中缺少列:%(invalid_columns)s" +#: superset/views/database/forms.py:391 superset/views/database/forms.py:482 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." +msgstr "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 -msgid "Columns subtotal position" -msgstr "列的小计位置" +#: superset/views/database/forms.py:399 +msgid "Null values" +msgstr "空值" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 -#, fuzzy -msgid "Columns to calculate distribution across." -msgstr "计算分布的列。如果留空,则默认为临时列。" +#: superset/views/database/forms.py:401 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" +"应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", " +"\"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 -#: superset-frontend/src/explore/fixtures.tsx:99 -msgid "Columns to display" -msgstr "要显示的字段" +#: superset/views/database/forms.py:413 +msgid "Name of table to be created from columnar data." +msgstr "从列存储数据创建的表的名称。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 -msgid "Columns to group by" -msgstr "需要进行分组的一列或多列" +#: superset/views/database/forms.py:421 +msgid "Columnar File" +msgstr "列式存储文件" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 -msgid "Columns to group by on the columns" -msgstr "必须是分组列" +#: superset/views/database/forms.py:422 +msgid "Select a Columnar file to be uploaded to a database." +msgstr "选择要上传到数据库的Excel文件。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 -msgid "Columns to group by on the rows" -msgstr "行上分组所依据的列" +#: superset/views/database/forms.py:469 +msgid "Use Columns" +msgstr "使用列" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 -#, fuzzy -msgid "Columns to show" -msgstr "要显示的字段" +#: superset/views/database/forms.py:471 +msgid "" +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." +msgstr "Json应读取的列名列表。如果不是“无”,则仅从文件中读取这些列" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 -msgid "Combine metrics" -msgstr "整合指标" +#: superset-frontend/src/pages/DatabaseList/index.tsx:290 +#: superset/views/database/mixins.py:33 +msgid "Databases" +msgstr "数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 -msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must" -" be matching that of interval bounds." -msgstr "间隔的逗号分隔色选项,例如1、2、4。整数表示所选配色方案中的颜色,并以1为索引。长度必须与间隔界限匹配。" +#: superset/views/database/mixins.py:34 +msgid "Show Database" +msgstr "显示数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 -msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " -"4-5. Last number should match the value provided for MAX." -msgstr "逗号分隔的区间界限,例如0-2、2-4和4-5区间的2、4、5。最后一个数字应与为Max提供的值匹配。" +#: superset/views/database/mixins.py:35 +msgid "Add Database" +msgstr "添加数据库" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 -msgid "Comparator option" -msgstr "比较器选项" +#: superset/views/database/mixins.py:36 +msgid "Edit Database" +msgstr "编辑数据库" -#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +#: superset/views/database/mixins.py:103 +msgid "Expose this DB in SQL Lab" +msgstr "在 SQL 工具箱中公开这个数据库" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 +#: superset/views/database/mixins.py:104 msgid "" -"Compare multiple time series charts (as sparklines) and related metrics " -"quickly." -msgstr "快速比较多个时间序列图表和相关指标。" +"Operate the database in asynchronous mode, meaning that the queries are " +"executed on remote workers as opposed to on the web server itself. This " +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." +msgstr "" +"以异步模式操作数据库,这意味着查询是在远程worker上执行的,而不是在web服务器本身上执行的, 这假设您有一个Celery worker " +"setup以及一个执行后端。有关更多信息,请参考安装文档。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 -msgid "Compare the same summarized metric across multiple groups." -msgstr "跨多个组比较相同的汇总指标" +#: superset/views/database/mixins.py:112 +msgid "Allow CREATE TABLE AS option in SQL Lab" +msgstr "在 SQL 编辑器中允许 CREATE TABLE AS 选项" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 -msgid "" -"Compares how a metric changes over time between different groups. Each " -"group is mapped to a row and change over time is visualized bar lengths " -"and color." -msgstr "比较指标在不同组之间随时间的变化情况。每一组被映射到一行,并且随着时间的变化被可视化地显示条的长度和颜色。" +#: superset/views/database/mixins.py:113 +msgid "Allow CREATE VIEW AS option in SQL Lab" +msgstr "在 SQL 编辑器中允许 CREATE VIEW AS 选项" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 +#: superset/views/database/mixins.py:114 msgid "" -"Compares metrics from different categories using bars. Bar lengths are " -"used to indicate the magnitude of each value and color is used to " -"differentiate groups." -msgstr "使用条形图比较不同类别的指标。条形长度用于指示每个值的大小,颜色用于区分组。" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" +msgstr "允许用户在 SQL 编辑器中运行非 SELECT 语句(UPDATE,DELETE,CREATE,...)" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 +#: superset/views/database/mixins.py:119 msgid "" -"Compares the lengths of time different activities take in a shared " -"timeline view." -msgstr "比较不同活动在共享时间线视图中所花费的时间长度。" +"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " +"table to be created in this schema" +msgstr "当在 SQL 编辑器中允许 CREATE TABLE AS 选项时,此选项可以此模式中强制创建表" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 -#: superset-frontend/src/visualizations/TimeTable/index.ts:34 -msgid "Comparison" -msgstr "比较" +#: superset/views/database/mixins.py:165 +msgid "" +"If Presto, all the queries in SQL Lab are going to be executed as the " +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。
如果启用 Hive " +"和hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据hive.server2.proxy.user的属性伪装当前登录用户。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 -msgid "Comparison Period Lag" -msgstr "滞后比较" +#: superset/views/database/mixins.py:172 +msgid "" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为全局超时。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 -msgid "Comparison suffix" -msgstr "比较前缀" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "如果选择,请额外设置csv上传允许的模式。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 -msgid "Compose multiple layers together to form complex visuals." -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:386 +#: superset-frontend/src/pages/DatabaseList/index.tsx:494 +#: superset/views/database/mixins.py:183 +msgid "Expose in SQL Lab" +msgstr "在 SQL 工具箱中公开" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 -#: superset-frontend/src/explore/controlPanels/sections.tsx:109 -msgid "Compute the contribution to the total" -msgstr "计算对总数的贡献值" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 +msgid "Allow CREATE TABLE AS" +msgstr "允许 CREATE TABLE AS" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 -msgid "Condition" -msgstr "条件" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 +msgid "Allow CREATE VIEW AS" +msgstr "允许 CREATE VIEW AS" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 -#, fuzzy -msgid "Conditional Formatting" -msgstr "条件格式设置" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 +msgid "Allow DML" +msgstr "允许 DML" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 -msgid "Conditional formatting" -msgstr "条件格式设置" +#: superset/views/database/mixins.py:187 +msgid "CTAS Schema" +msgstr "CTAS 模式" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 -msgid "Confidence interval" -msgstr "信区间间隔" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:71 +#: superset/views/database/mixins.py:191 +msgid "SQLAlchemy URI" +msgstr "SQLAlchemy URI" -#: superset/utils/pandas_postprocessing/prophet.py:129 -msgid "Confidence interval must be between 0 and 1 (exclusive)" -msgstr "置信区间必须介于0和1(不包含1)之间" +#: superset/views/database/mixins.py:192 +msgid "Chart Cache Timeout" +msgstr "表缓存超时" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 -msgid "Configuration" -msgstr "配置" +#: superset/views/database/mixins.py:194 +msgid "Secure Extra" +msgstr "安全" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 -msgid "Configure Advanced Time Range " -msgstr "配置进阶时间范围" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:387 +#: superset/views/database/mixins.py:195 +msgid "Root certificate" +msgstr "根证书" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 -msgid "Configure Time Range: Last..." -msgstr "配置时间范围:上一(Last).." +#: superset/views/database/mixins.py:196 +msgid "Async Execution" +msgstr "异步执行查询" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 -msgid "Configure Time Range: Previous..." -msgstr "配置时间范围:前一(Previous).." +#: superset/views/database/mixins.py:197 +msgid "Impersonate the logged on user" +msgstr "模拟登录用户" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 -msgid "Configure custom time range" -msgstr "配置自定义时间范围" +#: superset/views/database/mixins.py:198 +msgid "Allow Csv Upload" +msgstr "允许Csv上传" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 -msgid "Configure filter scopes" -msgstr "配置过滤范围" +#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset/views/database/mixins.py:200 +msgid "Backend" +msgstr "后端" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 -msgid "Configure the basics of your Annotation Layer." -msgstr "注释层基本配置" +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:262 +#, python-format +msgid "Extra field cannot be decoded by JSON. %(msg)s" +msgstr "JSON无法解码额外字段。%(msg)s" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "Configure this dashboard to embed it into an external web application." +#: superset/views/database/validators.py:40 +msgid "" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" msgstr "" +"连接字符串无效,有效字符串格式通常如下:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

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

" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 -msgid "Configure your how you overlay is displayed here." -msgstr "配置如何在这里显示您的覆盖。" +#: superset/views/database/views.py:161 +msgid "CSV to Database configuration" +msgstr "csv 到数据库配置" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 -#, fuzzy -msgid "Confirm overwrite" -msgstr "确认保存" +#: superset/views/database/views.py:180 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." +msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于csv上传。请联系管理员。" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 -msgid "Confirm save" -msgstr "确认保存" +#: superset/views/database/views.py:277 +#, python-format +msgid "" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" +msgstr "" +"无法将CSV文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" " +"内。错误消息:%(error_msg)s" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Connect" -msgstr "连接" +#: superset/views/database/views.py:289 +#, python-format +msgid "" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" +msgstr "csv 文件 \"%(csv_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" -#: superset-frontend/src/features/home/RightMenu.tsx:184 -msgid "Connect Google Sheet" +#: superset/views/database/views.py:305 +msgid "Excel to Database configuration" +msgstr "Excel 到数据库配置" + +#: superset/views/database/views.py:319 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." +msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" + +#: superset/views/database/views.py:412 +#, python-format +msgid "" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" +"无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" +" 内。错误消息:%(error_msg)s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 -msgid "Connect Google Sheets as tables to this database" -msgstr "将Google Sheet作为表格连接到此数据库" +#: superset/views/database/views.py:424 +#, python-format +msgid "" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" +msgstr "" +"Excel 文件 \"%(excel_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 " +"\"%(table_name)s\"" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 -msgid "Connect a database" -msgstr "连接数据库" +#: superset/views/database/views.py:440 +msgid "Columnar to Database configuration" +msgstr "列式存储文件到数据库配置" -#: superset-frontend/src/features/home/RightMenu.tsx:173 -msgid "Connect database" -msgstr "连接数据库" +#: superset/views/database/views.py:466 +msgid "" +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." +msgstr "柱状上传不允许使用多个文件扩展名请确保所有文件的扩展名相同。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 -msgid "Connect this database using the dynamic form instead" -msgstr "使用动态参数连接此数据库" +#: superset/views/database/views.py:479 +#, python-format +msgid "" +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." +msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 -msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "使用SQLAlchemy URI链接此数据库" +#: superset/views/database/views.py:554 +#, python-format +msgid "" +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " +"%(error_msg)s" +msgstr "" +"无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" +" 内。错误消息:%(error_msg)s" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 -msgid "Connection" -msgstr "连接" +#: superset/views/database/views.py:566 +#, python-format +msgid "" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" +msgstr "" +"Excel 文件 \"%(columnar_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 " +"\"%(table_name)s\"" -#: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 -msgid "Connection failed, please check your connection settings" -msgstr "连接失败,请检查您的连接配置" +#: superset/views/datasource/views.py:75 +msgid "Request missing data field." +msgstr "请求丢失的数据字段。" -#: superset-frontend/src/views/CRUD/hooks.ts:701 -msgid "Connection looks good!" -msgstr "连接测试成功!" +#: superset/views/datasource/views.py:112 +#, python-format +msgid "Duplicate column name(s): %(columns)s" +msgstr "重复的列名%(columns)s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 -#, fuzzy -msgid "Continue" -msgstr "连续式" +#: superset/views/log/__init__.py:21 +msgid "Logs" +msgstr "日志" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 -msgid "Continuous" -msgstr "连续式" +#: superset/views/log/__init__.py:22 +msgid "Show Log" +msgstr "查看日志" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:107 -msgid "Contribution" -msgstr "贡献" +#: superset/views/log/__init__.py:23 +msgid "Add Log" +msgstr "新增日志" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 -msgid "Contribution Mode" -msgstr "贡献模式" +#: superset/views/log/__init__.py:24 +msgid "Edit Log" +msgstr "编辑日志" -#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 -#, fuzzy -msgid "Control" -msgstr "列" +#: superset-frontend/src/features/home/RightMenu.tsx:475 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:309 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:401 +#: superset/views/log/__init__.py:30 +msgid "User" +msgstr "用户" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Control labeled " -msgstr "控件已标记 " +#: superset/views/log/__init__.py:31 +msgid "Action" +msgstr "操作" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 -msgid "Controls labeled " -msgstr "控件已标记" +#: superset/views/log/__init__.py:32 +msgid "dttm" +msgstr "dttm" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 -msgid "Coordinates" -msgstr "坐标" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 +#: superset/views/log/__init__.py:33 +msgid "JSON" +msgstr "JSON" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 -msgid "Copied to clipboard!" -msgstr "复制到剪贴板!" +#: superset/views/sql_lab/views.py:93 +#, fuzzy +msgid "Untitled Query" +msgstr "未命名的查询" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 -msgid "Copy" -msgstr "复制" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 +msgid "Time Range" +msgstr "时间范围" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 -msgid "Copy SELECT statement to the clipboard" -msgstr "将 SELECT 语句复制到剪贴板" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 +msgid "Time Column" +msgstr "时间列" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 -msgid "Copy and Paste JSON credentials" -msgstr "复制和粘贴JSON凭据" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 +msgid "Time Grain" +msgstr "时间粒度(Grain)" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 -msgid "Copy and paste the entire service account .json file here" -msgstr "复制服务帐户的json文件复制并粘贴到此处" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:35 +msgid "Time Granularity" +msgstr "时间粒度(Granularity)" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 -msgid "Copy link" -msgstr "复制链接" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:39 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:64 +#: superset-frontend/src/explore/controlPanels/sections.tsx:68 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:210 +msgid "Time" +msgstr "时间" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 -msgid "Copy message" -msgstr "复制信息" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:47 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "对 [时间] 配置的引用,会将粒度考虑在内" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 -#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 -#, python-format -msgid "Copy of %s" -msgstr "%s 的副本" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:60 +msgid "Aggregate" +msgstr "聚合" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 -msgid "Copy partition query to clipboard" -msgstr "将分区查询复制到剪贴板" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:61 +msgid "Raw records" +msgstr "原始记录" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy -msgid "Copy permalink to clipboard" -msgstr "将查询链接复制到剪贴板" +msgid "Category name" +msgstr "查询名称" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 -msgid "Copy query URL" -msgstr "复制查询URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 +#, fuzzy +msgid "Total value" +msgstr "左值" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 -msgid "Copy query link to your clipboard" -msgstr "将查询链接复制到剪贴板" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 -msgid "Copy the account name of that database you are trying to connect to." -msgstr "复制尝试连接的数据库帐户名" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:72 +#, fuzzy +msgid "Minimum value" +msgstr "空值" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 -msgid "Copy the name of the HTTP Path of your cluster." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:73 +#, fuzzy +msgid "Maximum value" +msgstr "最大" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:74 #, fuzzy -msgid "Copy the name of the database you are trying to connect to." -msgstr "复制尝试连接的数据库名" +msgid "Average value" +msgstr "目标值" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 -msgid "Copy to Clipboard" -msgstr "复制到剪贴板" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format +msgid "Certified by %s" +msgstr "认证人 %s" -#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 -msgid "Copy to clipboard" -msgstr "复制到剪贴板" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:332 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:261 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:326 +msgid "description" +msgstr "描述" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 -msgid "Correlation" -msgstr "相关性" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 +msgid "bolt" +msgstr "螺栓" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 -msgid "Cost estimate" -msgstr "成本估算" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:62 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:90 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:139 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 +msgid "Changing this control takes effect instantly" +msgstr "更改此控件立即生效。" -#: superset/db_engine_specs/ocient.py:259 -#, fuzzy, python-format -msgid "Could not connect to database: \"%(database)s\"" -msgstr "不能连接到数据库\"%(database)s\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 +msgid "Show info tooltip" +msgstr "显示信息提示" -#: superset/views/utils.py:496 -msgid "Could not determine datasource type" -msgstr "无法确定数据源类型" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:245 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1239 +msgid "SQL expression" +msgstr "SQL表达式" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 -#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 -msgid "Could not fetch all saved charts" -msgstr "无法获取所有保存的图表" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:76 +#, fuzzy +msgid "Column datatype" +msgstr "列名" -#: superset/views/utils.py:512 -msgid "Could not find viz object" -msgstr "找不到可视化对象" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:97 +#, fuzzy +msgid "Column name" +msgstr "列名" -#: superset/databases/commands/exceptions.py:132 -msgid "Could not load database driver" -msgstr "无法加载数据库驱动程序" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:129 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:257 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1238 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +msgid "Label" +msgstr "标签" -#: superset/views/core.py:1454 -#, python-format -msgid "Could not load database driver: %(driver_name)s" -msgstr "无法加载数据库驱动程序:%(driver_name)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:126 +#, fuzzy +msgid "Metric name" +msgstr "查询名称" -#: superset/databases/commands/test_connection.py:180 -msgid "Could not load database driver: {}" -msgstr "无法加载数据库驱动程序:{}" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:55 +#, fuzzy +msgid "unknown type icon" +msgstr "未知错误" -#: superset/db_engine_specs/ocient.py:264 -#, python-format -msgid "Could not resolve hostname: \"%(host)s\"." +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 +msgid "function type icon" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 -#, fuzzy -msgid "Count" -msgstr "列" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 -#, fuzzy -msgid "Count Unique Values" -msgstr "可被过滤" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 +msgid "string type icon" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 -msgid "Count as Fraction of Columns" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 +msgid "numeric type icon" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 -msgid "Count as Fraction of Rows" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 +msgid "boolean type icon" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 -msgid "Count as Fraction of Total" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:67 +msgid "temporal type icon" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 -msgid "Country" -msgstr "国家" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/src/explore/controlPanels/sections.tsx:120 +msgid "Advanced analytics" +msgstr "高级分析" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 -msgid "Country Color Scheme" -msgstr "国家颜色方案" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:29 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:120 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:388 +#: superset-frontend/src/explore/controlPanels/sections.tsx:122 +msgid "" +"This section contains options that allow for advanced analytical post " +"processing of query results" +msgstr "本节包含允许对查询结果进行高级分析处理后的选项。" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 -msgid "Country Column" -msgstr "国家字段" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:35 +#: superset-frontend/src/explore/controlPanels/sections.tsx:130 +msgid "Rolling window" +msgstr "滚动窗口" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 -msgid "Country Field Type" -msgstr "国家字段的类型" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 +msgid "Rolling function" +msgstr "滚动函数" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:1969 -msgid "Country Map" -msgstr "国家地图" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:185 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:275 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:291 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:140 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:407 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:240 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:207 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 +#: 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:141 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:129 +msgid "None" +msgstr "空" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 -msgid "Create" -msgstr "创建" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:146 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:413 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:192 +#: superset-frontend/src/explore/controlPanels/sections.tsx:147 +msgid "" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" +msgstr "定义要应用的滚动窗口函数,与 [期限] 文本框一起使用" -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 -#, fuzzy -msgid "Create Chart" -msgstr "面积图" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:274 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:425 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:204 +#: superset-frontend/src/explore/controlPanels/sections.tsx:157 +msgid "Periods" +msgstr "周期" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 -#, fuzzy -msgid "Create a dataset" -msgstr "创建一个 " +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:60 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:276 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:160 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:427 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:206 +#: superset-frontend/src/explore/controlPanels/sections.tsx:159 +msgid "" +"Defines the size of the rolling window function, relative to the time " +"granularity selected" +msgstr "定义滚动窗口函数的大小,相对于所选的时间粒度" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/src/explore/controlPanels/sections.tsx:169 +msgid "Min periods" +msgstr "最小周期" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:288 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:172 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:441 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:220 +#: superset-frontend/src/explore/controlPanels/sections.tsx:171 msgid "" -"Create a dataset to begin visualizing your data as a chart or go to\n" -" SQL Lab to query your data." +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" +"显示值所需的滚动周期的最小值。例如,如果您想累积 7 天的总额,您可能希望您的“最小周期”为 7,以便显示的所有数据点都是 7 " +"个区间的总和。这将隐藏掉前 7 个阶段的“加速”效果" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 -#: superset-frontend/src/pages/ChartCreation/index.tsx:381 -msgid "Create a new chart" -msgstr "创建新图表" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:183 +msgid "Time comparison" +msgstr "时间比较" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 -#, fuzzy -msgid "Create chart" -msgstr "面积图" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +msgid "Time shift" +msgstr "时间偏移" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 -msgid "Create chart with dataset" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 +msgid "1 day ago" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:178 -#, fuzzy -msgid "Create dataset" -msgstr "修改数据集" - -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 -#, fuzzy -msgid "Create dataset and create chart" -msgstr "创建新图表" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +msgid "1 week ago" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 -#: superset-frontend/src/pages/ChartCreation/index.tsx:430 -msgid "Create new chart" -msgstr "创建新图表" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 +msgid "28 days ago" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 -msgid "Create new filter set" -msgstr "创建新的过滤器" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 +#, fuzzy +msgid "30 days ago" +msgstr "30天" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 -msgid "Create or select schema..." -msgstr "创建或者选择模式" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 +msgid "52 weeks ago" +msgstr "" -#: superset-frontend/src/features/home/ActivityTable.tsx:159 -msgid "Created" -msgstr "已创建" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 +msgid "1 year ago" +msgstr "" -#: superset/views/access_requests.py:49 -msgid "Created On" -msgstr "创建日期" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 +msgid "104 weeks ago" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 -#: superset-frontend/src/pages/AlertReportList/index.tsx:313 -#: superset-frontend/src/pages/AlertReportList/index.tsx:469 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 -#: superset-frontend/src/pages/ChartList/index.tsx:461 -#: superset-frontend/src/pages/ChartList/index.tsx:630 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 -#: superset-frontend/src/pages/DashboardList/index.tsx:358 -#: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:376 -#: superset-frontend/src/pages/Tags/index.tsx:128 -#: superset-frontend/src/pages/Tags/index.tsx:183 -msgid "Created by" -msgstr "创建人" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 +msgid "2 years ago" +msgstr "" -#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 -#, fuzzy -msgid "Created by me" -msgstr "创建人" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:122 +msgid "156 weeks ago" +msgstr "" -#: superset-frontend/src/profile/components/App.tsx:62 -msgid "Created content" -msgstr "创建的内容" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +msgid "3 years ago" +msgstr "" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 -msgid "Created on" -msgstr "创建日期" - -#: superset/databases/ssh_tunnel/commands/exceptions.py:46 -#, fuzzy -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "导入图表失败,原因未知" - -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 -msgid "Creating a data source and creating a new tab" -msgstr "创建数据源,并弹出一个新的标签页" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:125 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:208 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "从相对时间段覆盖一个或多个时间序列。期望自然语言中的相对时间增量(例如:24小时、7天、56周、365天)" -#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 -msgid "Creator" -msgstr "作者" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:139 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:336 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:220 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:490 +#: superset-frontend/src/explore/controlPanels/sections.tsx:218 +msgid "Calculation type" +msgstr "计算类型" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:221 #, fuzzy -msgid "Crimson" -msgstr "操作" +msgid "Actual values" +msgstr "空值" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 -msgid "Cross-filter will be applied to all of the charts that use this dataset." -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:340 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:224 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:494 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:222 +msgid "Difference" +msgstr "差异" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:341 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:495 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 #, fuzzy -msgid "Cross-filtering is not enabled for this dashboard." -msgstr "此看板中没有过滤条件。" +msgid "Percentage change" +msgstr "百分比变化" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 -#, fuzzy -msgid "Cross-filtering is not enabled in this dashboard" -msgstr "此看板中没有过滤条件。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:342 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:496 +#: superset-frontend/src/explore/controlPanels/sections.tsx:224 +msgid "Ratio" +msgstr "比率" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 -#, fuzzy -msgid "Cross-filtering scoping" -msgstr "交叉筛选作用域" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:147 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:498 +#: superset-frontend/src/explore/controlPanels/sections.tsx:226 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "如何显示时间偏移:作为单独的行显示;作为主时间序列与每次时间偏移之间的绝对差显示;作为百分比变化显示;或作为序列与时间偏移之间的比率显示。" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 -#, fuzzy -msgid "Cross-filters" -msgstr "交叉筛选作用域" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:236 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:506 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:230 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 +msgid "Resample" +msgstr "重新采样" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 -msgid "Cumulative" -msgstr "累计" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:162 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:513 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 +#: superset-frontend/src/explore/controlPanels/sections.tsx:241 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:315 +msgid "Rule" +msgstr "规则" -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 -#, python-format -msgid "Currently rendered: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 +msgid "1 minutely frequency" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 -msgid "Custom" -msgstr "自定义" - -#: superset/views/dynamic_plugins.py:59 -msgid "Custom Plugin" -msgstr "自定义插件" - -#: superset/views/dynamic_plugins.py:58 -msgid "Custom Plugins" -msgstr "自定义插件" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 -msgid "Custom SQL" -msgstr "自定义SQL" - -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 -msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" -msgstr "此数据集无法启用自定义SQL即席查询、" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 +#, fuzzy +msgid "1 hourly frequency" +msgstr "刷新频率" -#: superset/errors.py:145 superset/models/helpers.py:138 -msgid "Custom SQL fields cannot contain sub-queries." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 +msgid "1 calendar day frequency" msgstr "" -#: superset-frontend/src/filters/components/Time/index.ts:28 -msgid "Custom time filter plugin" -msgstr "自定义时间过滤器插件" - -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 -msgid "Customize" -msgstr "定制化配置" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 -msgid "Customize Metrics" -msgstr "自定义指标" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 -msgid "Customize columns" -msgstr "自定义列" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 -msgid "Cyclic dependency detected" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 +msgid "7 calendar day frequency" msgstr "" -#: superset/connectors/sqla/views.py:255 -msgid "D3 Format" -msgstr "D3 格式" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:244 +msgid "1 month start frequency" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 -msgid "D3 format" -msgstr "D3 格式" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +msgid "1 month end frequency" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 -msgid "D3 format syntax: https://github.com/d3/d3-format" -msgstr "D3插件格式语法: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:246 +#, fuzzy +msgid "1 year start frequency" +msgstr "刷新频率" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:247 #, fuzzy -msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want " -"to have different significant digits for small and large numbers" -msgstr "D3数字格式,用于-1.0和1.0之间的数字,当您希望小数和大数有不同的符号数字时很有用" +msgid "1 year end frequency" +msgstr "刷新频率" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 -msgid "D3 time format for datetime columns" -msgstr "D3时间格式的时间列" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:369 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:523 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:249 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 +msgid "Pandas resample rule" +msgstr "Pandas 重新采样的规则" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 -msgid "D3 time format syntax: https://github.com/d3/d3-time-format" -msgstr "D3时间插件格式语法: https://github.com/d3/d3-time-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +msgid "Fill method" +msgstr "填充方式" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +#, fuzzy +msgid "Null imputation" +msgstr "动画" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 #, fuzzy -msgid "DATETIME" -msgstr "日期/时间" +msgid "Zero imputation" +msgstr "描述" -#: superset/utils/encrypt.py:117 -#, python-format -msgid "DB column %(col_name)s has unknown type: %(value_type)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 +msgid "Linear interpolation" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 -msgid "DEC" -msgstr "十二月" - -#: superset-frontend/src/components/DeleteModal/index.tsx:69 -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 -msgid "DELETE" -msgstr "删除" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#, fuzzy +msgid "Forward values" +msgstr "条形栏的值" -#: superset-frontend/src/pages/DatabaseList/index.tsx:343 -msgid "DML" -msgstr "DML(数据操作语言)" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:266 +#, fuzzy +msgid "Backward values" +msgstr "条形栏的值" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 -msgid "Daily seasonality" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +#, fuzzy +msgid "Median values" +msgstr "限制选择器值" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:268 #, fuzzy -msgid "Dark" -msgstr "雷达" +msgid "Mean values" +msgstr "限制选择器值" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 -msgid "Dark Cyan" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:269 +#, fuzzy +msgid "Sum values" +msgstr "空值" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 -msgid "Dark mode" -msgstr "黑暗模式" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:195 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:387 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:543 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:271 +#: superset-frontend/src/explore/controlPanels/sections.tsx:269 +msgid "Pandas resample method" +msgstr "Pandas 重新采样的填充方法" -#: 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 -#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 -msgid "Dashboard" -msgstr "看板" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:98 +msgid "Annotations and Layers" +msgstr "注释与注释层" -#: superset-frontend/src/explore/actions/saveModalActions.js:129 -#, fuzzy, python-format -msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:391 +msgid "Left" +msgstr "左边" -#: superset/views/core.py:1144 -msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:374 +msgid "Top" +msgstr "顶部" -#: superset/dashboards/commands/exceptions.py:54 -msgid "Dashboard could not be created." -msgstr "看板无法被创建" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:285 +msgid "Chart Title" +msgstr "图表标题" -#: superset/dashboards/commands/exceptions.py:70 -msgid "Dashboard could not be deleted." -msgstr "看板无法被删除。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:215 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:289 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:96 +#: superset-frontend/src/explore/controls.jsx:401 +msgid "X Axis" +msgstr "X 轴" -#: superset/dashboards/commands/exceptions.py:66 -msgid "Dashboard could not be updated." -msgstr "看板无法更新。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:129 +msgid "X Axis Title" +msgstr "X轴标题" -#: superset/reports/commands/exceptions.py:48 -msgid "Dashboard does not exist" -msgstr "看板不存在" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:58 +msgid "X AXIS TITLE BOTTOM MARGIN" +msgstr "X 轴标题下边距" -#: superset-frontend/src/pages/DashboardList/index.tsx:170 -#, fuzzy -msgid "Dashboard imported" -msgstr "看板属性" - -#: superset/dashboards/commands/exceptions.py:43 -msgid "Dashboard parameters are invalid." -msgstr "看板参数无效。" - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 -msgid "Dashboard properties" -msgstr "看板属性" - -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 -#, fuzzy -msgid "Dashboard properties updated" -msgstr "看板属性" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:66 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:224 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:132 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:138 +#: superset-frontend/src/explore/controls.jsx:408 +msgid "Y Axis" +msgstr "Y 轴" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 -msgid "Dashboard scheme" -msgstr "仪表盘模式" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:182 +msgid "Y Axis Title" +msgstr "Y 轴标题" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 -msgid "" -"Dashboard time range filters apply to temporal columns defined in\n" -" the filter section of each chart. Add temporal columns to the " -"chart\n" -" filters to have this dashboard filter impact those charts." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:86 +msgid "Y Axis Title Margin" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:101 #, fuzzy -msgid "Dashboard title" -msgstr "看板" +msgid "Y Axis Title Position" +msgstr "行小计的位置" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 -#, fuzzy -msgid "Dashboard usage" -msgstr "看板" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:44 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:88 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:28 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:362 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:43 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:41 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:28 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:97 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:29 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:38 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:200 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 +msgid "Query" +msgstr "查询" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 -#: superset-frontend/src/pages/ChartList/index.tsx:688 -#: superset-frontend/src/pages/DashboardList/index.tsx:699 -#: superset-frontend/src/pages/Home/index.tsx:385 -#: superset-frontend/src/profile/components/CreatedContent.tsx:101 -#: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 -#: superset/views/dashboard/mixin.py:24 -msgid "Dashboards" -msgstr "仪表盘" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "预测分析" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 -#: superset-frontend/src/pages/ChartList/index.tsx:411 -#, fuzzy -msgid "Dashboards added to" -msgstr "看板" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 +msgid "Enable forecast" +msgstr "启用预测" -#: superset/dashboards/commands/exceptions.py:58 -msgid "Dashboards could not be deleted." -msgstr "仪表盘无法被删除。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 +msgid "Enable forecasting" +msgstr "启用预测中" -#: superset/charts/commands/exceptions.py:91 -msgid "Dashboards do not exist" -msgstr "仪表盘" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 +msgid "Forecast periods" +msgstr "预测期" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 -#, fuzzy -msgid "Dashed" -msgstr "看板" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 +msgid "How many periods into the future do we want to predict" +msgstr "想要预测未来的多少个时期" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 -#: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:246 -msgid "Data" -msgstr "数据" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 +msgid "Confidence interval" +msgstr "信区间间隔" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 -msgid "Data Table" -msgstr "数据表" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "置信区间必须介于0和1(不包含1)之间" -#: superset/datasets/commands/exceptions.py:214 -msgid "Data URI is not allowed." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 +msgid "Yearly seasonality" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 -msgid "Data Zoom" -msgstr "数据缩放" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +#, fuzzy +msgid "default" +msgstr "默认" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 -msgid "" -"Data could not be deserialized from the results backend. The storage " -"format might have changed, rendering the old data stake. You need to re-" -"run the original query." -msgstr "无法从结果后端反序列化数据。存储格式可能已经改变,呈现了旧的数据桩。您需要重新运行原始查询。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/ChartList/index.tsx:676 +#: superset-frontend/src/pages/DashboardList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:559 +#: superset-frontend/src/pages/DatabaseList/index.tsx:501 +#: superset-frontend/src/pages/DatabaseList/index.tsx:521 +#: superset-frontend/src/pages/DatasetList/index.tsx:598 +msgid "Yes" +msgstr "是" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:570 +#: superset-frontend/src/pages/ChartList/index.tsx:677 +#: superset-frontend/src/pages/DashboardList/index.tsx:487 +#: superset-frontend/src/pages/DashboardList/index.tsx:560 +#: superset-frontend/src/pages/DatabaseList/index.tsx:502 +#: superset-frontend/src/pages/DatabaseList/index.tsx:522 +#: superset-frontend/src/pages/DatasetList/index.tsx:599 +msgid "No" +msgstr "否" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 msgid "" -"Data could not be retrieved from the results backend. You need to re-run " -"the original query." -msgstr "无法从结果后端检索数据。您需要重新运行原始查询。" +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "一个整数值将指定“季节性的傅立叶顺序。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 -msgid "Data has no time steps" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 +msgid "Weekly seasonality" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 -msgid "Data preview" -msgstr "数据预览" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 +msgid "" +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "一个整数值将指定季节性的傅立叶顺序。" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 -#, fuzzy -msgid "Data refreshed" -msgstr "上次刷新的元数据" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 +msgid "Daily seasonality" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 -msgid "Data type" -msgstr "数据类型" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 +msgid "" +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." +msgstr "一个整数值将指定季节性的傅立叶顺序。" -#: superset/utils/pandas_postprocessing/prophet.py:134 -msgid "DataFrame include at least one series" -msgstr "数据帧(DataFrame)至少包括一个序列" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:69 +msgid "Time related form attributes" +msgstr "时间相关的表单属性" -#: superset/utils/pandas_postprocessing/prophet.py:132 -msgid "DataFrame must include temporal column" -msgstr "数据帧(DataFrame)必须包含时间列" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:42 +msgid "Datasource & Chart Type" +msgstr "数据源 & 图表类型" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:278 -#: superset-frontend/src/pages/DatabaseList/index.tsx:307 -#: superset-frontend/src/pages/DatasetList/index.tsx:360 -#: superset-frontend/src/pages/DatasetList/index.tsx:531 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 -#: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 -#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 -#: superset/views/sql_lab/views.py:83 -msgid "Database" -msgstr "数据库" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:52 +#: superset-frontend/src/explore/controlPanels/sections.tsx:35 +msgid "Chart ID" +msgstr "图表 ID" -#: superset/views/database/views.py:481 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for columnar uploads. Please contact your Superset Admin." -msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:54 +#: superset-frontend/src/explore/controlPanels/sections.tsx:37 +msgid "The id of the active chart" +msgstr "活动图表的ID" -#: superset/views/database/views.py:180 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for csv uploads. Please contact your Superset Admin." -msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于csv上传。请联系管理员。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:61 +#: superset-frontend/src/explore/controlPanels/sections.tsx:44 +msgid "Cache Timeout (seconds)" +msgstr "缓存超时(秒)" -#: superset/views/database/views.py:321 -#, python-format -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " -"for excel uploads. Please contact your Superset Admin." -msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:46 +msgid "The number of seconds before expiring the cache" +msgstr "终止缓存前的时间(秒)" -#: superset/initialization/__init__.py:243 -#, fuzzy -msgid "Database Connections" -msgstr "测试连接" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +msgid "URL Parameters" +msgstr "URL参数" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 -msgid "Database Creation Error" -msgstr "数据库创建错误" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +msgid "Extra url parameters for use in Jinja templated queries" +msgstr "用于jinja模板化查询的额外url" -#: superset/views/access_requests.py:46 -msgid "Database URL" -msgstr "数据库URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +msgid "Extra Parameters" +msgstr "额外参数" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 -#, fuzzy -msgid "Database connected" -msgstr "选择将要连接的数据库" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:83 +msgid "" +"Extra parameters that any plugins can choose to set for use in Jinja " +"templated queries" +msgstr "用于jinja模板化查询的额外参数" -#: superset/databases/commands/exceptions.py:96 -msgid "Database could not be created." -msgstr "数据库无法被创建" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:348 +msgid "Color Scheme" +msgstr "配色方案" -#: superset/databases/commands/exceptions.py:115 -msgid "Database could not be deleted." -msgstr "数据库不能删除。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +msgid "Contribution Mode" +msgstr "贡献模式" -#: superset/databases/commands/exceptions.py:100 -msgid "Database could not be updated." -msgstr "数据库无法更新" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 +msgid "Row" +msgstr "行" -#: superset/errors.py:123 -msgid "Database does not allow data manipulation." -msgstr "数据库不允许此数据操作。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:52 +msgid "Series" +msgstr "序列" -#: superset/charts/commands/exceptions.py:82 -#: superset/datasets/commands/exceptions.py:41 -#: superset/reports/commands/exceptions.py:39 -msgid "Database does not exist" -msgstr "数据库不存在" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:54 +#, fuzzy +msgid "Calculate contribution per series or row" +msgstr "计算每个系列或总计的贡献" -#: superset/models/helpers.py:2063 -msgid "Database does not support subqueries" -msgstr "数据库不支持子查询" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:99 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:189 +msgid "Y-Axis Sort By" +msgstr "" -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 -msgid "" -"Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions: " +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:100 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:190 +msgid "X-Axis Sort By" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 -msgid "Database error" -msgstr "数据库错误" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:101 +msgid "Decides which column to sort the base axis by." +msgstr "" -#: superset/databases/commands/validate.py:124 -msgid "Database is offline." -msgstr "数据库已下线" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:152 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:205 +#, fuzzy +msgid "Y-Axis Sort Ascending" +msgstr "升序排序" -#: superset/reports/commands/exceptions.py:66 -msgid "Database is required for alerts" -msgstr "警报需要数据库" - -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1880 -#: superset/db_engine_specs/clickhouse.py:212 -msgid "Database name" -msgstr "数据库名称" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:153 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:206 +#, fuzzy +msgid "X-Axis Sort Ascending" +msgstr "升序排序" -#: superset/datasets/commands/exceptions.py:50 -msgid "Database not allowed to change" -msgstr "数据集不允许被修改" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:208 +#, fuzzy +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "是否忽略空位置" -#: superset/databases/commands/exceptions.py:92 -msgid "Database not found." -msgstr "数据库没有找到" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:317 +#, fuzzy +msgid "Force categorical" +msgstr "数据库名称" -#: superset/views/core.py:1201 -#, fuzzy, python-format -msgid "Database not found: %(id)s" -msgstr "数据源id不存在:%(id)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:168 +msgid "Treat values as categorical." +msgstr "" -#: superset/databases/commands/exceptions.py:32 -msgid "Database parameters are invalid." -msgstr "数据库参数无效" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:194 +msgid "Decides which measure to sort the base axis by." +msgstr "" -#: superset-frontend/src/components/ImportModal/index.tsx:291 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:163 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 #, fuzzy -msgid "Database passwords" -msgstr "数据库端口" +msgid "Dimensions" +msgstr "维度" -#: superset/db_engine_specs/base.py:1876 -#: superset/db_engine_specs/clickhouse.py:208 -#: superset/db_engine_specs/databricks.py:52 -msgid "Database port" -msgstr "数据库端口" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +msgid "" +"Dimensions contain qualitative values such as names, dates, or " +"geographical data. Use dimensions to categorize, segment, and reveal the " +"details in your data. Dimensions affect the level of detail in the view." +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:106 #, fuzzy -msgid "Database settings updated" -msgstr "数据库无法更新" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:269 -#: superset-frontend/src/profile/components/Security.tsx:47 -#: superset/views/database/mixins.py:33 -msgid "Databases" -msgstr "数据库" - -#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 -#: superset/views/database/forms.py:481 -msgid "Dataframe Index" -msgstr "Dataframe索引" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:266 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 -#: superset-frontend/src/explore/controls.jsx:189 -#: superset-frontend/src/pages/ChartCreation/index.tsx:390 -#: superset-frontend/src/pages/ChartList/index.tsx:391 -#: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:617 -msgid "Dataset" -msgstr "数据集" - -#: superset/datasets/commands/exceptions.py:32 -#, python-format -msgid "Dataset %(name)s already exists" -msgstr "数据集 %(name)s 已存在" +msgid "Add dataset columns here to group the pivot table columns." +msgstr "必须是分组列" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 #, fuzzy -msgid "Dataset Name" -msgstr "数据集名称" +msgid "Dimension" +msgstr "维度" -#: superset/datasets/columns/commands/exceptions.py:27 -msgid "Dataset column delete failed." -msgstr "数据集列删除失败。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:114 +#, fuzzy +msgid "" +"Defines the grouping of entities. Each series is represented by a " +"specific color in the chart." +msgstr "定义实体的分组。每个序列在图表上显示为特定颜色,并有一个可切换的图例" -#: superset/datasets/columns/commands/exceptions.py:23 -msgid "Dataset column not found." -msgstr "数据集行删除失败。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:392 +msgid "Entity" +msgstr "实体" -#: superset/datasets/commands/exceptions.py:174 -msgid "Dataset could not be created." -msgstr "无法创建数据集。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:126 +#: superset-frontend/src/explore/controls.jsx:396 +msgid "This defines the element to be plotted on the chart" +msgstr "这定义了要在图表上绘制的元素" -#: superset/datasets/commands/exceptions.py:182 -msgid "Dataset could not be deleted." -msgstr "无法删除数据集" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:133 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +msgid "Filters" +msgstr "过滤" -#: superset/datasets/commands/exceptions.py:210 -#, fuzzy -msgid "Dataset could not be duplicated." -msgstr "无法更新数据集。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:163 +msgid "" +"Select one or many metrics to display. You can use an aggregation " +"function on a column or write custom SQL to create a metric." +msgstr "" -#: superset/datasets/commands/exceptions.py:178 -#: superset/datasets/commands/exceptions.py:190 -msgid "Dataset could not be updated." -msgstr "无法更新数据集。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:174 +msgid "" +"Select a metric to display. You can use an aggregation function on a " +"column or write custom SQL to create a metric." +msgstr "" -#: superset/datasets/commands/exceptions.py:166 -msgid "Dataset does not exist" -msgstr "数据集不存在" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +msgid "Right Axis Metric" +msgstr "右轴指标" -#: superset-frontend/src/pages/DatasetList/index.tsx:196 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:185 #, fuzzy -msgid "Dataset imported" -msgstr "数据库端口" +msgid "Select a metric to display on the right axis" +msgstr "为右轴选择一个指标" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 -msgid "Dataset is required" -msgstr "需要数据集" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/explore/controls.jsx:364 +msgid "Sort by" +msgstr "排序 " -#: superset/datasets/metrics/commands/exceptions.py:27 -msgid "Dataset metric delete failed." -msgstr "数据集指标删除失败" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:194 +#, fuzzy +msgid "" +"This metric is used to define row selection criteria (how the rows are " +"sorted) if a series or row limit is present. If not defined, it reverts " +"to the first metric (where appropriate)." +msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" -#: superset/datasets/metrics/commands/exceptions.py:23 -msgid "Dataset metric not found." -msgstr "数据集指标没找到" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:208 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:142 +msgid "Bubble Size" +msgstr "气泡大小" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 -msgid "Dataset name" -msgstr "数据集名称" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:209 +msgid "Metric used to calculate bubble size" +msgstr "用来计算气泡大小的公制" -#: superset/datasets/commands/exceptions.py:170 -msgid "Dataset parameters are invalid." -msgstr "数据集参数无效。" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:216 +msgid "The dataset column/metric that returns the values on your chart's x-axis." +msgstr "" -#: superset/dashboards/api.py:415 -#, python-format -msgid "Dataset schema is invalid, caused by: %(error)s" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:225 +msgid "The dataset column/metric that returns the values on your chart's y-axis." msgstr "" -#: superset/datasets/commands/exceptions.py:186 -msgid "Dataset(s) could not be bulk deleted." -msgstr "数据集无法批量删除" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:233 +msgid "Color Metric" +msgstr "颜色指标" -#: superset-frontend/src/pages/DatasetList/index.tsx:600 -#: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:267 -msgid "Datasets" -msgstr "数据集" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:236 +#: superset-frontend/src/explore/controls.jsx:237 +msgid "A metric to use for color" +msgstr "用于颜色的指标" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or " -msgstr "" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" +msgstr "可视化的时间栏。注意,您可以定义返回表中的DATETIMLE列的任意表达式。还请注意下面的筛选器应用于该列或表达式。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 -msgid "Datasets do not contain a temporal column" -msgstr "数据集不包含时间列" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:253 +#, fuzzy +msgid "Drop a temporal column here or click" +msgstr "将列拖放到此处或单击" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 -#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 -msgid "Datasource" -msgstr "数据源" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +#, fuzzy +msgid "Y-axis" +msgstr "坐标轴" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 -msgid "Datasource & Chart Type" -msgstr "数据源 & 图表类型" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:33 +msgid "Dimension to use on y-axis." +msgstr "" -#: superset/commands/exceptions.py:135 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 #, fuzzy -msgid "Datasource does not exist" -msgstr "数据集不存在" +msgid "X-axis" +msgstr "坐标轴" -#: superset/commands/exceptions.py:127 -msgid "Datasource type is invalid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +msgid "Dimension to use on x-axis." msgstr "" -#: superset/charts/commands/exceptions.py:101 -msgid "Datasource type is required when datasource_id is given" -msgstr "给定数据源id时,需要提供数据源类型" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset-frontend/src/explore/controls.jsx:201 +msgid "The type of visualization to display" +msgstr "要显示的可视化类型" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 -msgid "Date Time Format" -msgstr "时间格式" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:127 +msgid "Fixed Color" +msgstr "固定颜色" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 -msgid "Date filter" -msgstr "日期过滤器" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:206 +msgid "Use this to define a static color for all circles" +msgstr "使用此定义所有圆圈的静态颜色" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 -msgid "Date format" -msgstr "日期格式化" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:135 +msgid "Linear Color Scheme" +msgstr "线性颜色方案" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:158 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:220 +#: superset-frontend/src/explore/controls.jsx:254 #, fuzzy -msgid "Date format string" -msgstr "自动匹配格式化" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 -msgid "Date/Time" -msgstr "日期/时间" - -#: superset/connectors/sqla/views.py:162 -msgid "Datetime Format" -msgstr "时间格式" +msgid "all" +msgstr "小" -#: superset/models/helpers.py:1502 -msgid "" -"Datetime column not provided as part table configuration and is required " -"by this type of chart" -msgstr "没有提供该表配置的日期时间列,它是此类型图表所必需的" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:159 +#: superset-frontend/src/explore/controls.jsx:255 +#, fuzzy +msgid "5 seconds" +msgstr "5秒" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 -msgid "Datetime format" -msgstr "时间格式" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/explore/controls.jsx:256 +msgid "30 seconds" +msgstr "30秒钟" -#: superset/db_engine_specs/base.py:107 -msgid "Day" -msgstr "天" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:257 +msgid "1 minute" +msgstr "1分钟" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 -msgid "Day (freq=D)" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:258 +msgid "5 minutes" +msgstr "5分钟" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 -#, python-format -msgid "Days %s" -msgstr "%s天" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:259 +msgid "30 minutes" +msgstr "30分钟" -#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 -msgid "Db engine did not return all queried columns" -msgstr "数据库引擎未返回所有查询的列" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:260 +msgid "1 hour" +msgstr "1小时" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/src/explore/controls.jsx:262 #, fuzzy -msgid "Deactivate" -msgstr "激活" +msgid "1 day" +msgstr "天" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 -msgid "December" -msgstr "十二月" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:263 +#, fuzzy +msgid "7 days" +msgstr "90天" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 -msgid "Decides which column to sort the base axis by." -msgstr "" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 -msgid "Decides which measure to sort the base axis by." -msgstr "" - -#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 -msgid "Decimal Character" -msgstr "十进制字符" - -#: superset/viz.py:2700 -msgid "Deck.gl - 3D Grid" -msgstr "Deck.gl - 3D网格" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 +msgid "week" +msgstr "周" -#: superset/viz.py:2825 -msgid "Deck.gl - 3D HEX" -msgstr "Deck.gl - 3D六角曲面" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:265 +#, fuzzy +msgid "week starting Sunday" +msgstr "周日为一周开始" -#: superset/viz.py:2890 -msgid "Deck.gl - Arc" -msgstr "Deck.gl - 弧度" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/src/explore/controls.jsx:266 +#, fuzzy +msgid "week ending Saturday" +msgstr "周一为一周结束" -#: superset/viz.py:2869 -msgid "Deck.gl - GeoJSON" -msgstr "Deck.gl - 地理json" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 +msgid "month" +msgstr "月" -#: superset/viz.py:2848 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:268 #, fuzzy -msgid "Deck.gl - Heatmap" -msgstr "圆弧图" - -#: superset/viz.py:2406 -msgid "Deck.gl - Multiple Layers" -msgstr "多图层" +msgid "quarter" +msgstr "季度" -#: superset/viz.py:2735 -msgid "Deck.gl - Paths" -msgstr "Deck.gl - 路径" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 +msgid "year" +msgstr "年" -#: superset/viz.py:2789 -msgid "Deck.gl - Polygon" -msgstr "Deck.gl - 多角形" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +msgstr "可视化的时间粒度。请注意,您可以输入和使用简单的日期表达方式,如 `10 seconds`, `1 day` or `56 weeks`" -#: superset/viz.py:2612 -msgid "Deck.gl - Scatter plot" -msgstr "Deck.gl - 散点图" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:198 +msgid "" +"Select a time grain for the visualization. The grain is the time interval" +" represented by a single point on the chart." +msgstr "" -#: superset/viz.py:2668 -msgid "Deck.gl - Screen Grid" -msgstr "Deck.gl - 屏幕网格" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:230 +msgid "" +"This control filters the whole chart based on the selected time range. " +"All relative times, e.g. \"Last month\", \"Last 7 days\", \"now\", etc. " +"are evaluated on the server using the server's local time (sans " +"timezone). All tooltips and placeholder times are expressed in UTC (sans " +"timezone). The timestamps are then evaluated by the database using the " +"engine's local timezone. Note one can explicitly set the timezone per the" +" ISO 8601 format if specifying either the start and/or end time." +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 -msgid "Default" -msgstr "默认" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:243 +#: superset-frontend/src/explore/controls.jsx:340 +msgid "Row limit" +msgstr "行限制" -#: superset/connectors/sqla/views.py:391 -msgid "Default Endpoint" -msgstr "默认端点" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:252 +msgid "" +"Limits the number of the rows that are computed in the query that is the " +"source of the data used for this chart." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 -msgid "Default URL" -msgstr "默认URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:153 +msgid "Sort Descending" +msgstr "降序" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 -msgid "Default URL to redirect to when accessing from the dataset list page" -msgstr "从数据集列表页访问时重定向到的默认URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:261 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:329 +msgid "" +"If enabled, this control sorts the results/values descending, otherwise " +"it sorts the results ascending." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 -msgid "Default Value" -msgstr "缺省值" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:290 +#: superset-frontend/src/explore/controls.jsx:350 +msgid "Series limit" +msgstr "序列限制" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 -#, fuzzy -msgid "Default datetime" -msgstr "默认纬度" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:279 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:294 +#: superset-frontend/src/explore/controls.jsx:354 +msgid "" +"Limits the number of series that get displayed. A joined subquery (or an " +"extra phase where subqueries are not supported) is applied to limit the " +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." +msgstr "限制显示的系列数。应用联接的子查询(或不支持子查询的额外阶段)来限制获取和呈现的序列数量。此功能在按高基数列分组时很有用,但会增加查询的复杂性和成本。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 -msgid "Default latitude" -msgstr "默认纬度" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:306 +#: superset-frontend/src/explore/controls.jsx:422 +msgid "Y Axis Format" +msgstr "Y 轴格式化" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 -msgid "Default longitude" -msgstr "默认经度" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:327 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:150 +#, fuzzy +msgid "Currency format" +msgstr "数值格式" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 -msgid "" -"Default minimal column width in pixels, actual width may still be larger " -"than this if other columns don't need much space" -msgstr "默认最小列宽(以像素为单位),如果其他列不需要太多空间,则实际宽度可能仍大于此值" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 +msgid "Time format" +msgstr "时间格式" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 -msgid "Default value is required" -msgstr "需要默认值" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/explore/controls.jsx:464 +msgid "The color scheme for rendering chart" +msgstr "绘制图表的配色方案" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "Default value must be set when \"Filter has default value\" is checked" -msgstr "选中筛选器具有默认值时,必须设置默认值" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:361 +#, fuzzy +msgid "Truncate Metric" +msgstr "排序指标" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:363 #, fuzzy -msgid "Default value must be set when \"Filter value is required\" is checked" -msgstr "当\"必填项\"被选中时默认值必须被设置" +msgid "Whether to truncate metrics" +msgstr "是否规范化直方图" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:368 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:370 #, fuzzy -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\" is checked" -msgstr "当\"默认为第一项\"被选中时默认值需要设置为自动" +msgid "Show empty columns" +msgstr "显示较少时间列" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 -msgid "" -"Define a function that receives the input and outputs the content for a " -"tooltip" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +msgid "D3 format syntax: https://github.com/d3/d3-format" +msgstr "D3插件格式语法: https://github.com/d3/d3-time-format" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 -msgid "Define a function that returns a URL to navigate to when user clicks" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 -msgid "" -"Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array." -" This can be used to alter properties of the data, filter, or enrich the " -"array." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 -#: superset-frontend/src/explore/controlPanels/sections.tsx:140 -msgid "" -"Defines a rolling window function to apply, works along with the " -"[Periods] text box" -msgstr "定义要应用的滚动窗口函数,与 [期限] 文本框一起使用" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 -msgid "Defines how each series is broken down" -msgstr "定义每个序列是如何被分解的" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 +msgid "Adaptive formatting" +msgstr "自动匹配格式化" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 -msgid "Defines the grid size in pixels" -msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:144 +#: superset-frontend/src/explore/controls.jsx:79 +msgid "Original value" +msgstr "原始值" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 -#: superset-frontend/src/explore/controls.jsx:383 -msgid "" -"Defines the grouping of entities. Each series is shown as a specific " -"color on the chart and has a legend toggle" -msgstr "定义实体的分组。每个序列在图表上显示为特定颜色,并有一个可切换的图例" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 +msgid "Duration in ms (66000 => 1m 6s)" +msgstr "持续时间(毫秒)(66000 => 1m 6s)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 -#: superset-frontend/src/explore/controlPanels/sections.tsx:152 -msgid "" -"Defines the size of the rolling window function, relative to the time " -"granularity selected" -msgstr "定义滚动窗口函数的大小,相对于所选的时间粒度" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 +msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" +msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 -msgid "" -"Defines whether the step should appear at the beginning, middle or end " -"between two data points" -msgstr "定义步骤应出现在两个数据点之间的开始、中间还是结束处" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 +msgid "D3 time format syntax: https://github.com/d3/d3-time-format" +msgstr "D3时间插件格式语法: https://github.com/d3/d3-time-format" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 -#: superset-frontend/src/features/charts/ChartCard.tsx:106 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 -#: superset-frontend/src/features/home/SavedQueries.tsx:220 -#: superset-frontend/src/features/tags/TagCard.tsx:85 -#: superset-frontend/src/pages/AlertReportList/index.tsx:394 -#: superset-frontend/src/pages/AlertReportList/index.tsx:595 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 -#: superset-frontend/src/pages/AnnotationList/index.tsx:307 -#: superset-frontend/src/pages/ChartList/index.tsx:518 -#: superset-frontend/src/pages/ChartList/index.tsx:846 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 -#: superset-frontend/src/pages/DashboardList/index.tsx:427 -#: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:429 -#: superset-frontend/src/pages/DatasetList/index.tsx:773 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 -#: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 -msgid "Delete" -msgstr "删除" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 +#, fuzzy +msgid "Oops! An error occurred!" +msgstr "发生了一个错误" -#: superset-frontend/src/pages/AlertReportList/index.tsx:579 -#, python-format -msgid "Delete %s?" -msgstr "需要删除 %s 吗?" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 +msgid "Stack Trace:" +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:293 -msgid "Delete Annotation?" -msgstr "删除注释?" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 +msgid "" +"No results were returned for this query. If you expected results to be " +"returned, ensure any filters are configured properly and the datasource " +"contains data for the selected time range." +msgstr "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" -#: superset-frontend/src/pages/DatabaseList/index.tsx:551 -msgid "Delete Database?" -msgstr "确定删除数据库?" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 +msgid "No Results" +msgstr "无结果" -#: superset-frontend/src/pages/DatasetList/index.tsx:745 -msgid "Delete Dataset?" -msgstr "确定删除数据集?" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 +#, fuzzy +msgid "ERROR" +msgstr "错误" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 -msgid "Delete Layer?" -msgstr "确定删除图层?" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:121 +msgid "Found invalid orderby options" +msgstr "发现无效的orderby选项" -#: superset-frontend/src/features/home/SavedQueries.tsx:243 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 -msgid "Delete Query?" -msgstr "确定删除查询?" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 -msgid "Delete Report?" -msgstr "删除报表?" - -#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 -msgid "Delete Template?" -msgstr "删除模板?" - -#: superset/views/base.py:664 -msgid "Delete all Really?" -msgstr "确定删除全部?" - -#: superset-frontend/src/pages/AnnotationList/index.tsx:195 -msgid "Delete annotation" -msgstr "删除注释" - -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 -msgid "Delete dashboard tab?" -msgstr "是否删除仪表盘tab页?" - -#: superset-frontend/src/pages/DatabaseList/index.tsx:416 -msgid "Delete database" -msgstr "删除数据库" - -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 -msgid "Delete email report" -msgstr "删除邮件报告" - -#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 -msgid "Delete query" -msgstr "删除查询" - -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 -msgid "Delete template" -msgstr "删除模板" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 +msgid "is expected to be an integer" +msgstr "应该为整数" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 -msgid "Delete this container and save to remove this message." -msgstr "删除此容器并保存以删除此邮件。" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 +msgid "is expected to be a number" +msgstr "应该为数字" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#: superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts:35 #, fuzzy -msgid "Deleted" -msgstr "删除" +msgid "is expected to be a Mapbox URL" +msgstr "应该为数字" -#: superset/annotation_layers/annotations/api.py:504 +#: superset-frontend/packages/superset-ui-core/src/validator/validateMaxValue.ts:23 #, python-format -msgid "Deleted %(num)d annotation" -msgid_plural "Deleted %(num)d annotations" -msgstr[0] "选择一个注释图层" +msgid "Value cannot exceed %s" +msgstr "" -#: superset/annotation_layers/api.py:355 -#, python-format -msgid "Deleted %(num)d annotation layer" -msgid_plural "Deleted %(num)d annotation layers" -msgstr[0] "选择一个注释图层" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 +msgid "cannot be empty" +msgstr "不能为空" -#: superset/charts/api.py:521 -#, python-format -msgid "Deleted %(num)d chart" -msgid_plural "Deleted %(num)d charts" -msgstr[0] "删除了 %(num)d 个图表" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 +msgid "Domain" +msgstr "主域" -#: superset/css_templates/api.py:139 -#, python-format -msgid "Deleted %(num)d css template" -msgid_plural "Deleted %(num)d css templates" -msgstr[0] "删除了 %(num)d 个css模板" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 +msgid "hour" +msgstr "小时" -#: superset/dashboards/api.py:745 -#, python-format -msgid "Deleted %(num)d dashboard" -msgid_plural "Deleted %(num)d dashboards" -msgstr[0] "删除了 %(num)d 个看板" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 +msgid "day" +msgstr "天" -#: superset/datasets/api.py:789 -#, python-format -msgid "Deleted %(num)d dataset" -msgid_plural "Deleted %(num)d datasets" -msgstr[0] "已经删除 %(num)d 个数据集" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 +msgid "The time unit used for the grouping of blocks" +msgstr "用于块分组的时间单位" -#: superset/reports/api.py:502 -#, python-format -msgid "Deleted %(num)d report schedule" -msgid_plural "Deleted %(num)d report schedules" -msgstr[0] "已经删除了 %(num)d 个报告时间表" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +msgid "Subdomain" +msgstr "子域" -#: superset/row_level_security/api.py:349 -#, fuzzy, python-format -msgid "Deleted %(num)d rules" -msgid_plural "Deleted %(num)d rules" -msgstr[0] "删除了 %(num)d 个图表" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:175 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:73 +#, fuzzy +msgid "min" +msgstr "分钟" -#: superset/queries/saved_queries/api.py:222 -#, python-format -msgid "Deleted %(num)d saved query" -msgid_plural "Deleted %(num)d saved queries" -msgstr[0] "已经删除 %(num)d 个保存的查询" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 +msgid "" +"The time unit for each block. Should be a smaller unit than " +"domain_granularity. Should be larger or equal to Time Grain" +msgstr "每个块的时间单位。应该是主域域粒度更小的单位。应该大于或等于时间粒度" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 -#, fuzzy, python-format -msgid "Deleted %s" -msgstr "已删除:%s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:51 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:131 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:296 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:46 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:111 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 +msgid "Chart Options" +msgstr "图表选项" -#: superset-frontend/src/features/home/SavedQueries.tsx:172 -#: superset-frontend/src/pages/AlertReportList/index.tsx:183 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 -#: superset-frontend/src/pages/AnnotationList/index.tsx:117 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:169 -#: superset-frontend/src/pages/DatasetList/index.tsx:664 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 -#: superset-frontend/src/reports/actions/reports.js:158 -#: superset-frontend/src/views/CRUD/utils.tsx:272 -#: superset-frontend/src/views/CRUD/utils.tsx:311 -#, python-format -msgid "Deleted: %s" -msgstr "已删除:%s" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:60 +msgid "Cell Size" +msgstr "单元尺寸" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 -msgid "" -"Deleting a tab will remove all content within it. You may still reverse " -"this action with the" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 +msgid "The size of the square cell, in pixels" +msgstr "平方单元的大小,以像素为单位" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 -msgid "Delimited long & lat single column" -msgstr "经度&纬度单列限定" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 +msgid "Cell Padding" +msgstr "单元填充" -#: superset/views/database/forms.py:160 -msgid "Delimiter" -msgstr "分隔符" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 +msgid "The distance between cells, in pixels" +msgstr "单元格之间的距离,以像素为单位" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 -msgid "Delivery method" -msgstr "发送方式" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 +msgid "Cell Radius" +msgstr "单元格半径" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 -msgid "Demographics" -msgstr "人口统计" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 +msgid "The pixel radius" +msgstr "像素半径" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 -msgid "Density" -msgstr "密度" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 +msgid "Color Steps" +msgstr "色彩 Steps" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 -#, fuzzy -msgid "Dependent on" -msgstr "降序" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 +msgid "The number color \"steps\"" +msgstr "色彩 \"Steps\" 数字" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -msgid "Deprecated" -msgstr "过时" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 +msgid "Time Format" +msgstr "时间格式" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:293 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 -#: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 -#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 -#: superset/views/sql_lab/views.py:84 -msgid "Description" -msgstr "描述" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:278 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:113 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:101 +msgid "Legend" +msgstr "图示" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 -msgid "Description (this can be seen in the list)" -msgstr "说明(见列表)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:281 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:160 +msgid "Whether to display the legend (toggles)" +msgstr "是否显示图示(切换)" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 -msgid "Description Columns" -msgstr "列描述" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:304 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:191 +msgid "Show Values" +msgstr "显示值" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 -msgid "Description text that shows up below your Big Number" -msgstr "在大数字下面显示描述文本" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:194 +msgid "Whether to display the numerical values within the cells" +msgstr "是否在单元格内显示数值" -#: superset-frontend/src/components/ListView/ListView.tsx:360 -msgid "Deselect all" -msgstr "反选所有" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 +msgid "Show Metric Names" +msgstr "显示指标名" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 -msgid "Details of the certification" -msgstr "认证详情" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 +msgid "Whether to display the metric name as a title" +msgstr "是否将指标名显示为标题" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 -msgid "Determines how whiskers and outliers are calculated." -msgstr "确定如何计算箱须和离群值。" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 +msgid "Number Format" +msgstr "数字格式" -#: superset/views/dashboard/mixin.py:70 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:39 +msgid "Correlation" +msgstr "相关性" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Determines whether or not this dashboard is visible in the list of all " -"dashboards" -msgstr "确定此看板在所有看板列表中是否可见" +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " +"linear color scheme is used to encode the magnitude of each day's value." +msgstr "使用色标和日历视图可视化指标在一段时间内的变化情况。灰色值用于指示缺少的值,线性配色方案用于编码每天值的大小。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 -msgid "Diamond" -msgstr "下钻" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 +msgid "Business" +msgstr "商业" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 -msgid "Did you mean:" -msgstr "您的意思是:" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:43 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 +msgid "Comparison" +msgstr "比较" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 -#: superset-frontend/src/explore/controlPanels/sections.tsx:211 -msgid "Difference" -msgstr "差异" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:38 +msgid "Intensity" +msgstr "强度" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 -#, fuzzy -msgid "Dim Gray" -msgstr "时间粒度(grain)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 +msgid "Pattern" +msgstr "规则" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 -#, fuzzy -msgid "Dimension" -msgstr "维度" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:46 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:167 +msgid "Report" +msgstr "报表" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 -msgid "Dimension to use on x-axis." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "趋势" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 +msgid "less than {min} {name}" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 -msgid "Dimension to use on y-axis." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 +msgid "between {down} and {up} {name}" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 -#: superset-frontend/src/explore/controls.jsx:123 -#: superset-frontend/src/explore/controls.jsx:380 -#, fuzzy -msgid "Dimensions" -msgstr "维度" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 +msgid "more than {max} {name}" +msgstr "" -#: superset/viz.py:1928 -msgid "Directed Force Layout" -msgstr "有向图" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:73 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:57 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:40 +msgid "Sort by metric" +msgstr "排序指标" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 -msgid "Directional" -msgstr "方向" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:41 +msgid "Whether to sort results by the selected metric in descending order." +msgstr "是否按所选指标按降序对结果进行排序。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 -msgid "Disable SQL Lab data preview queries" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:280 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:201 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:319 +msgid "Number format" +msgstr "数字格式化" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 -msgid "" -"Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide " -"tables." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:59 +msgid "Choose a number format" +msgstr "选择一种数字格式" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 -msgid "Disable embedding?" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:52 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1416 +msgid "Source" +msgstr "来源" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 -msgid "Disabled" -msgstr "禁用" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:65 +msgid "Choose a source" +msgstr "选择一个源" -#: superset-frontend/src/dashboard/components/Header/index.jsx:596 -#: superset-frontend/src/dashboard/components/Header/index.jsx:598 -#, fuzzy -msgid "Discard" -msgstr "看板" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:62 +msgid "Target" +msgstr "目标" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 -msgid "Discrete" -msgstr "离散" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:71 +msgid "Choose a target" +msgstr "选择一个目标" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 -msgid "Display Name" -msgstr "显示名称" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:34 +msgid "Flow" +msgstr "流图" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 -msgid "Display column level total" -msgstr "显示列级别合计" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 +msgid "" +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." +msgstr "使用弦的厚度显示类别之间的流或链接。每一侧的值和相应厚度可能不同。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 -msgid "Display configuration" -msgstr "显示配置" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 +msgid "Relationships between community channels" +msgstr "社区渠道之间的关系" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 -msgid "" -"Display metrics side by side within each column, as opposed to each " -"column being displayed side by side for each metric." -msgstr "在每个列中并排显示指标,而不是每个指标并排显示每个列。" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 +msgid "Chord Diagram" +msgstr "弦图" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 -msgid "Display row level total" -msgstr "显示行级合计" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 +msgid "Aesthetic" +msgstr "炫酷" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 -#, fuzzy -msgid "Display settings" -msgstr "计划设置" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +msgid "Circular" +msgstr "圆" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 -msgid "" -"Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network." -" Graph charts can be configured to be force-directed or circulate. If " -"your data has a geospatial component, try the deck.gl Arc chart." -msgstr "显示图形结构中实体之间的连接。用于映射关系和显示网络中哪些节点是重要的。图表可以配置为强制引导或循环。如果您的数据具有地理空间组件,请尝试使用deck.gl圆弧图表。" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 +msgid "Legacy" +msgstr "遗产" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 -msgid "Distribute across" -msgstr "基于某列进行分布" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:69 +msgid "Proportional" +msgstr "比例" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 -msgid "Distribution" -msgstr "分布" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 +msgid "Relational" +msgstr "执行时间" -#: superset/viz.py:1717 -msgid "Distribution - Bar Chart" -msgstr "分布 - 柱状图" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:118 +msgid "Country" +msgstr "国家" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 -msgid "Divider" -msgstr "分隔" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:42 +msgid "Which country to plot the map for?" +msgstr "为哪个国家绘制地图?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 -msgid "Do you want a donut or a pie?" -msgstr "是否用圆环圈替代饼图?" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:77 +msgid "ISO 3166-2 Codes" +msgstr "ISO 3166-2 代码" -#: superset-frontend/src/features/home/RightMenu.tsx:531 -msgid "Documentation" -msgstr "文档" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:78 +msgid "" +"Column containing ISO 3166-2 codes of region/province/department in your " +"table." +msgstr "表中包含地区/省/省的ISO 3166-2代码的列" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -msgid "Domain" -msgstr "主域" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:84 +msgid "Metric to display bottom title" +msgstr "显示底部标题的度量值" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 -msgid "Donut" -msgstr "圆环圈" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:26 +msgid "Map" +msgstr "地图" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 #, fuzzy -msgid "Dotted" -msgstr "已编辑" +msgid "" +"Visualizes how a single metric varies across a country's principal " +"subdivisions (states, provinces, etc) on a choropleth map. Each " +"subdivision's value is elevated when you hover over the corresponding " +"geographic boundary." +msgstr "在叶绿体地图上显示一个国家的主要分区(州、省等)之间单个指标的变化情况。当您悬停在相应的地理边界上时,每个分区的值都会升高" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 -#, fuzzy -msgid "Download" -msgstr "下载为图片" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:39 +msgid "2D" +msgstr "2D" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 -msgid "Download as image" -msgstr "下载为图片" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:40 +msgid "Geo" +msgstr "地理位置" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 -msgid "Download to CSV" -msgstr "下载到CSV" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Range" +msgstr "范围" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:575 -msgid "Draft" -msgstr "草稿" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:67 +msgid "Stacked" +msgstr "堆叠" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 -msgid "Drag and drop components and charts to the dashboard" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 +msgid "Sorry, there appears to be no data" +msgstr "抱歉,似乎没有数据" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 -msgid "Drag and drop components to this tab" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:34 +msgid "Event definition" +msgstr "事件定义" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 -msgid "Draw a marker on data points. Only applicable for line types." -msgstr "在数据点上绘制标记。仅适用于线型。" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:42 +msgid "Event Names" +msgstr "事件名称" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 -msgid "Draw area under curves. Only applicable for line types." -msgstr "在曲线下绘制区域。仅适用于线型。" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:99 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "要显示的字段" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 -msgid "Draw line from Pie to label when labels outside?" -msgstr "当标签在外侧时,是否在饼图到标签之间连线?" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:60 +msgid "Order by entity id" +msgstr "按实体ID排序" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 -#, fuzzy -msgid "Draw split lines for minor axis ticks" -msgstr "绘制次要y轴记号的分割线" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:61 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." +msgstr "很重要!如果表尚未按实体ID排序,则选择此项,否则无法保证返回每个实体的所有事件。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 -msgid "Draw split lines for minor y-axis ticks" -msgstr "绘制次要y轴记号的分割线" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:75 +msgid "Minimum leaf node event count" +msgstr "节点最小事件数" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 -msgid "Drill by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:78 +msgid "" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" +msgstr "表示少于此数量的事件的叶节点最初将隐藏在可视化中" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 -msgid "Drill by is not available for this data point" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:93 +msgid "Additional metadata" +msgstr "附加元数据" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 -msgid "Drill by is not yet supported for this chart type" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:102 +msgid "Metadata" +msgstr "元数据" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 -#, fuzzy, python-format -msgid "Drill by: %s" -msgstr "排序 %s" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 +msgid "Select any columns for metadata inspection" +msgstr "选择任意列进行元数据巡检" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 -msgid "Drill to detail" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:122 +msgid "Entity ID" +msgstr "实体ID" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 -msgid "Drill to detail by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:123 +msgid "e.g., a \"user id\" column" +msgstr "时间序列的列" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 -msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:126 +msgid "Max Events" +msgstr "最大事件数" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:127 +msgid "The maximum number of events to return, equivalent to the number of rows" +msgstr "返回的最大事件数,相当于行数" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 msgid "" -"Drill to detail is disabled because this chart does not group data by " -"dimension value." -msgstr "" +"Compares the lengths of time different activities take in a shared " +"timeline view." +msgstr "比较不同活动在共享时间线视图中所花费的时间长度。" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 -#, python-format -msgid "Drill to detail: %s" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 +msgid "Event Flow" +msgstr "事件流" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 -#, fuzzy -msgid "Drop a column here or click" -msgid_plural "Drop columns here or click" -msgstr[0] "将列拖放到此处或单击" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +msgid "Progressive" +msgstr "进度" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 -#, fuzzy -msgid "Drop a column/metric here or click" -msgid_plural "Drop columns/metrics here or click" -msgstr[0] "将列/指标放在此处或单击" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:30 +msgid "Axis ascending" +msgstr "轴线升序" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -#, fuzzy -msgid "Drop a temporal column here or click" -msgstr "将列拖放到此处或单击" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:31 +msgid "Axis descending" +msgstr "轴线降序" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 -msgid "Drop columns/metrics here or click" -msgstr "将列/指标拖放到此处或单击" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:32 +msgid "Metric ascending" +msgstr "指标升序" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 -msgid "Dual Line Chart" -msgstr "双线图" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:33 +msgid "Metric descending" +msgstr "指标降序" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:483 -#, fuzzy -msgid "Duplicate" -msgstr "复制tab页" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +msgid "Heatmap Options" +msgstr "热图选项" -#: superset/views/datasource/views.py:124 -#, python-format -msgid "Duplicate column name(s): %(columns)s" -msgstr "重复的列名%(columns)s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:93 +msgid "XScale Interval" +msgstr "X轴比例尺间隔" -#: superset/common/query_object.py:291 -#, python-format -msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns " -"and metrics have a unique label." -msgstr "重复的列/指标标签:%(labels)s。请确保所有列和指标都有唯一的标签。" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:98 +msgid "Number of steps to take between ticks when displaying the X scale" +msgstr "显示 X 刻度时,在刻度之间表示的步骤数" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 -#, fuzzy -msgid "Duplicate dataset" -msgstr "编辑数据集" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:109 +msgid "YScale Interval" +msgstr "Y轴比例尺间隔" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 -msgid "Duplicate tab" -msgstr "复制tab页" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:114 +msgid "Number of steps to take between ticks when displaying the Y scale" +msgstr "显示 Y 刻度时,在刻度之间表示的步骤数" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 -msgid "Duration" -msgstr "持续时间" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:125 +msgid "Rendering" +msgstr "渲染" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 -#, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires, and -1 bypasses " -"the cache. Note this defaults to the global timeout if undefined." -msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为全局超时。" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:128 +msgid "pixelated (Sharp)" +msgstr "" -#: superset/views/database/mixins.py:172 -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database." -" A timeout of 0 indicates that the cache never expires. Note this " -"defaults to the global timeout if undefined." -msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为全局超时。" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:129 +msgid "auto (Smooth)" +msgstr "" -#: superset/views/chart/mixin.py:69 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:132 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "此图表的缓存超时持续时间(以秒为单位)。注意,如果未定义,这默认为数据源/表超时。" +"image-rendering CSS attribute of the canvas object that defines how the " +"browser scales up the image" +msgstr "图像渲染画布对象的 CSS 属性,它定义了浏览器如何放大图像" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:144 +msgid "Normalize Across" +msgstr "标准化通过" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:146 #, fuzzy -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" -" bypass the cache. Note this defaults to the dataset's timeout if " -"undefined." -msgstr "此图表的缓存超时前的持续时间(秒)。请注意,如果未定义则默认为数据集的超时时间。" +msgid "heatmap" +msgstr "热力图" -#: superset/connectors/sqla/views.py:369 -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of" -" 0 indicates that the cache never expires. Note this defaults to the " -"database timeout if undefined." -msgstr "此表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为数据库的超时。" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 +msgid "x" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 -msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this" -" database. If left unset, the cache never expires." -msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为永不过期。" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:148 +msgid "y" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 msgid "" -"Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires. " -msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,缓存为永不过期。" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 -msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" -msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:159 +msgid "x: values are normalized within each column" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:90 -#, fuzzy -msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" -msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:160 +msgid "y: values are normalized within each row" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 -#: superset-frontend/src/explore/controls.jsx:89 -msgid "Duration in ms (66000 => 1m 6s)" -msgstr "持续时间(毫秒)(66000 => 1m 6s)" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:162 +msgid "heatmap: values are normalized across the entire heatmap" +msgstr "热力图:其中所有数值都经过了归一化" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 -#, python-format -msgid "Duration: %s" -msgstr "持续时间:%s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:179 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:77 +msgid "Left Margin" +msgstr "左边距" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:90 #, fuzzy -msgid "Dynamic Aggregation Function" -msgstr "聚合功能" +msgid "auto" +msgstr "在" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 -msgid "Dynamically search all filter values" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:89 +msgid "Left margin, in pixels, allowing for more room for axis labels" +msgstr "左边距,以像素为单位,为轴标签留出更多空间" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "ECharts" -msgstr "ECharts图表" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:195 +msgid "Bottom Margin" +msgstr "底部边距" -#: superset/reports/notifications/email.py:133 -#, fuzzy -msgid "EMAIL_REPORTS_CTA" -msgstr "激活邮件报告" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:207 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "底部边距,以像素为单位,为轴标签留出更多空间" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 -msgid "END (EXCLUSIVE)" -msgstr "结束" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:227 +msgid "Value bounds" +msgstr "值边界" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 -#, fuzzy -msgid "ERROR" -msgstr "错误" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:230 +msgid "" +"Hard value bounds applied for color coding. Is only relevant and applied " +"when the normalization is applied against the whole heatmap." +msgstr "应用于颜色编码的硬值边界。只有当对整个热图应用标准化时才是相关的和应用的。" -#: superset-frontend/src/views/CRUD/hooks.ts:704 -#, python-format -msgid "ERROR: %s" -msgstr "错误: %s" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:254 +msgid "Sort X Axis" +msgstr "排序X轴" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 -msgid "Edge length" -msgstr "边长" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:266 +msgid "Sort Y Axis" +msgstr "排序Y轴" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 -msgid "Edge length between nodes" -msgstr "节点之间的边长" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:290 +msgid "Show percentage" +msgstr "显示百分比" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 -msgid "Edge symbols" -msgstr "边符号" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +msgid "Whether to include the percentage in the tooltip" +msgstr "是否在工具提示中包含百分比" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 -msgid "Edge width" -msgstr "边缘宽度" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:125 +msgid "Normalized" +msgstr "标准化" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 -#: superset-frontend/src/features/charts/ChartCard.tsx:131 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 -#: superset-frontend/src/features/home/SavedQueries.tsx:201 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#: superset-frontend/src/pages/ChartList/index.tsx:553 -#: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:442 -#: superset-frontend/src/pages/DatasetList/index.tsx:463 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 -msgid "Edit" -msgstr "编辑" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:320 +msgid "Whether to apply a normal distribution based on rank on the color scale" +msgstr "是否应用基于色标等级的正态分布" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 -msgid "Edit Alert" -msgstr "编辑警报" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:332 +msgid "Value Format" +msgstr "数值格式" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 -msgid "Edit CSS" -msgstr "编辑CSS" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 +msgid "" +"Visualize a related metric across pairs of groups. Heatmaps excel at " +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." +msgstr "可视化各组之间的相关指标。热图擅长显示两组之间的相关性或强度。颜色用于强调各组之间的联系强度。" -#: superset/views/css_templates.py:41 -msgid "Edit CSS Template" -msgstr "编辑CSS模板" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 +msgid "Sizes of vehicles" +msgstr "工具尺寸" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 -msgid "Edit CSS template properties" -msgstr "编辑CSS属性属性" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 +msgid "Employment and education" +msgstr "就业和教育" -#: superset/views/chart/mixin.py:28 -msgid "Edit Chart" -msgstr "编辑图表" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:40 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 +msgid "Density" +msgstr "密度" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:63 +msgid "Predictive" +msgstr "预测" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 +msgid "Single Metric" +msgstr "按指标过滤" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 #, fuzzy -msgid "Edit Chart Properties" -msgstr "编辑图表属性" +msgid "to" +msgstr "停止" -#: superset/connectors/sqla/views.py:74 -msgid "Edit Column" -msgstr "编辑列" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +msgid "count" +msgstr "列" -#: superset/views/dashboard/mixin.py:27 -msgid "Edit Dashboard" -msgstr "编辑看板" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "激活" -#: superset/views/database/mixins.py:36 -msgid "Edit Database" -msgstr "编辑数据库" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 +msgid "percentile (exclusive)" +msgstr "百分位数(独占)" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 -msgid "Edit Dataset " -msgstr "编辑数据集" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +msgid "Select the numeric columns to draw the histogram" +msgstr "选择直方图的容器数" -#: superset/views/log/__init__.py:24 -msgid "Edit Log" -msgstr "编辑日志" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:70 +msgid "No of Bins" +msgstr "直方图容器数" -#: superset/connectors/sqla/views.py:209 -msgid "Edit Metric" -msgstr "编辑指标" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:82 +msgid "Select the number of bins for the histogram" +msgstr "选择直方图的容器数" -#: superset/views/dynamic_plugins.py:61 -msgid "Edit Plugin" -msgstr "编辑插件" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:102 +msgid "X Axis Label" +msgstr "X 轴标签" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 -msgid "Edit Report" -msgstr "编辑报表" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:354 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:144 +msgid "Y Axis Label" +msgstr "Y 轴标签" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 -#, fuzzy -msgid "Edit Rule" -msgstr "光模式" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 +msgid "Whether to normalize the histogram" +msgstr "是否规范化直方图" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:137 +msgid "Cumulative" +msgstr "累计" -#: superset/views/sql_lab/views.py:55 -msgid "Edit Saved Query" -msgstr "编辑保存的查询" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 +msgid "Whether to make the histogram cumulative" +msgstr "是否规范化直方图" -#: superset/connectors/sqla/views.py:294 -msgid "Edit Table" -msgstr "编辑表" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:53 +msgid "Distribution" +msgstr "分布" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 +msgid "" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" +msgstr "获取数据点,并将其分组,以查看信息最密集的区域" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 +msgid "Population age data" +msgstr "人口年龄数据" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:376 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:110 +msgid "Contribution" +msgstr "贡献" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 -#: superset-frontend/src/pages/AnnotationList/index.tsx:188 -msgid "Edit annotation" -msgstr "编辑注释" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:51 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:378 +#: superset-frontend/src/explore/controlPanels/sections.tsx:112 +msgid "Compute the contribution to the total" +msgstr "计算对总数的贡献值" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 -msgid "Edit annotation layer" -msgstr "添加注释层" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:61 +msgid "Series Height" +msgstr "序列高度" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 -msgid "Edit annotation layer properties" -msgstr "编辑注释图层属性" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:73 +msgid "Pixel height of each series" +msgstr "每个序列的像素高度" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 -#, fuzzy -msgid "Edit chart" -msgstr "编辑图表" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:81 +msgid "Value Domain" +msgstr "值域" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 -msgid "Edit chart properties" -msgstr "编辑图表属性" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 +#, fuzzy +msgid "series" +msgstr "序列" -#: superset-frontend/src/dashboard/components/Header/index.jsx:630 -#: superset-frontend/src/dashboard/components/Header/index.jsx:632 -msgid "Edit dashboard" -msgstr "编辑仪表盘" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:84 +#, fuzzy +msgid "overall" +msgstr "清除所有" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 -msgid "Edit database" -msgstr "编辑数据库" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#, fuzzy +msgid "change" +msgstr "范围" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 -msgid "Edit dataset" -msgstr "编辑数据集" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:88 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "series:独立处理每个序列;overall:所有序列使用相同的比例;change:显示与每个序列中第一个数据点相比的更改" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:211 -msgid "Edit email report" -msgstr "编辑邮件报告" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 +msgid "" +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." +msgstr "比较指标在不同组之间随时间的变化情况。每一组被映射到一行,并且随着时间的变化被可视化地显示条的长度和颜色。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 -msgid "Edit formatter" -msgstr "日期格式化" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 +msgid "Horizon Chart" +msgstr "地平线图" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 -msgid "Edit properties" -msgstr "编辑属性" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:31 +msgid "Dark Cyan" +msgstr "" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 -msgid "Edit query" -msgstr "编辑查询" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:32 +#, fuzzy +msgid "Purple" +msgstr "规则" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 -msgid "Edit template" -msgstr "编辑模板" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:33 +msgid "Gold" +msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 -msgid "Edit template parameters" -msgstr "编辑模板参数" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:34 +#, fuzzy +msgid "Dim Gray" +msgstr "时间粒度(grain)" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:35 #, fuzzy -msgid "Edit the dashboard" -msgstr "编辑仪表盘" +msgid "Crimson" +msgstr "操作" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 -msgid "Edit time range" -msgstr "编辑时间范围" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:36 +#, fuzzy +msgid "Forest Green" +msgstr "刷新频率" -#: superset-frontend/src/features/home/ActivityTable.tsx:151 -msgid "Edited" -msgstr "已编辑" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:50 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 +msgid "Longitude" +msgstr "经度" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 -msgid "Editing 1 filter:" -msgstr "编辑1个过滤条件:" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:51 +msgid "Column containing longitude data" +msgstr "包含经度数据的列" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 -msgid "Editing filter set:" -msgstr "编辑过滤条件集合" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:60 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 +msgid "Latitude" +msgstr "纬度" -#: superset/errors.py:116 -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "数据库拼写不正确或不存在。" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:61 +msgid "Column containing latitude data" +msgstr "包含纬度数据的列" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 -#: superset/db_engine_specs/redshift.py:71 -#: superset/db_engine_specs/starrocks.py:122 -#, python-format -msgid "Either the username \"%(username)s\" or the password is incorrect." -msgstr "用户名\"%(username)s\"或密码不正确" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:71 +msgid "Clustering Radius" +msgstr "簇半径" -#: superset/db_engine_specs/mssql.py:85 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\" is incorrect." -msgstr "用户名\"%(username)s\"、密码或数据库名称\"%(database)s\"不正确" +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." +msgstr "算法用来定义一个簇的半径(以像素为单位)。选择0关闭聚,但要注意大量的点(>1000)会导致处理时间变长。" -#: superset/errors.py:115 -msgid "Either the username or the password is wrong." -msgstr "用户名或密码错误。" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:98 +msgid "Points" +msgstr "点配置" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 -#, fuzzy -msgid "Elevation" -msgstr "执行时间" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:105 +msgid "Point Radius" +msgstr "点半径" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 -msgid "Email reports active" -msgstr "激活邮件报告" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:107 +msgid "" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" +msgstr "单个点的半径(不在簇中的点)。一个数值列或“AUTO”,它根据最大的聚类来缩放点。" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:114 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:147 #, fuzzy -msgid "Embed" -msgstr "十一月" +msgid "Auto" +msgstr "在" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 -msgid "Embed code" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +msgid "Point Radius Unit" +msgstr "点半径单位" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:130 +msgid "Pixels" msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:131 #, fuzzy -msgid "Embed dashboard" -msgstr "保存看板" - -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 -msgid "Embedding deactivated." -msgstr "" +msgid "Miles" +msgstr "过滤" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:132 #, fuzzy -msgid "Emit Filter Events" -msgstr "可被过滤" +msgid "Kilometers" +msgstr "过滤" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 -msgid "Emphasis" -msgstr "重点" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:134 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 +msgid "The unit of measure for the specified point radius" +msgstr "指定点半径的度量单位" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 -msgid "Employment and education" -msgstr "就业和教育" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 +msgid "Labelling" +msgstr "标签" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 -msgid "Empty circle" -msgstr "空圈" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:151 +msgid "label" +msgstr "标签" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 -msgid "Empty collection" -msgstr "空集合" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:153 +msgid "" +"`count` is COUNT(*) if a group by is used. Numerical columns will be " +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." +msgstr "如果分组被使用 `count` 表示 COUNT(*)。数值列将与聚合器聚合。非数值列将用于维度列。留空以获得每个簇中的点计数。" -#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 -#, fuzzy -msgid "Empty column" -msgstr "我的列" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:170 +msgid "Cluster label aggregator" +msgstr "集群标签聚合器" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:173 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:385 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:269 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:82 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:409 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:541 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:143 +#: superset-frontend/src/explore/controlPanels/sections.tsx:267 +msgid "sum" +msgstr "" -#: superset/charts/data/api.py:366 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:174 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:384 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:268 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:540 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:187 +#: superset-frontend/src/explore/controlPanels/sections.tsx:142 +#: superset-frontend/src/explore/controlPanels/sections.tsx:266 #, fuzzy -msgid "Empty query result" -msgstr "查询为空?" +msgid "mean" +msgstr "平均值" -#: superset/models/helpers.py:1508 -msgid "Empty query?" -msgstr "查询为空?" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:176 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +#, fuzzy +msgid "max" +msgstr "最大值" -#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 -msgid "Empty row" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:177 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:143 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:410 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:189 +#: superset-frontend/src/explore/controlPanels/sections.tsx:144 +msgid "std" msgstr "" -#: superset-frontend/src/features/home/RightMenu.tsx:299 -#: superset-frontend/src/features/home/SubMenu.tsx:303 -msgid "Enable 'Allow file uploads to database' in any database's settings" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:178 +#, fuzzy +msgid "var" +msgstr "条形图" -#: superset/connectors/sqla/views.py:389 -msgid "Enable Filter Select" -msgstr "启用过滤器选择" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:181 +msgid "" +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." +msgstr "聚合函数应用于每个群集中的点列表以产生群集标签。" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 +msgid "Visual Tweaks" +msgstr "视觉调整" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:198 +msgid "Live render" +msgstr "实时渲染" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:200 +msgid "Points and clusters will update as the viewport is being changed" +msgstr "点和簇将随着视图改变而更新。" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:371 +msgid "Map Style" +msgstr "地图样式" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:217 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 #, fuzzy -msgid "Enable cross-filtering" -msgstr "交叉筛选作用域" +msgid "Streets" +msgstr "最近" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 -msgid "Enable data zooming controls" -msgstr "启用数据缩放控件" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:218 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +#, fuzzy +msgid "Dark" +msgstr "雷达" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:219 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 #, fuzzy -msgid "Enable embedding" -msgstr "启用节点拖动" +msgid "Light" +msgstr "高度" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 -msgid "Enable forecast" -msgstr "启用预测" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:380 +msgid "Satellite Streets" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 -msgid "Enable forecasting" -msgstr "启用预测中" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:381 +#, fuzzy +msgid "Satellite" +msgstr "日期过滤器" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 -msgid "Enable graph roaming" -msgstr "启用图形漫游" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:225 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 +msgid "Outdoors" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 -msgid "Enable node dragging" -msgstr "启用节点拖动" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:385 +#, python-format +msgid "Base layer map style. See Mapbox documentation: %s" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 -msgid "Enable query cost estimation" -msgstr "启用查询成本估算" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:205 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:700 +msgid "Opacity" +msgstr "不透明度" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 -msgid "Enable server side pagination of results (experimental feature)" -msgstr "支持服务器端结果分页(实验功能)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:243 +msgid "Opacity of all clusters, points, and labels. Between 0 and 1." +msgstr "所有簇、点和标签的不透明度。在0到1之间。" -#: superset/viz.py:2514 -msgid "" -"Encountered invalid NULL spatial entry," -" please consider filtering those " -"out" -msgstr "遇到无效的为 NULL 的空间条目,请考虑将其过滤掉" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:255 +msgid "RGB Color" +msgstr "RGB颜色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 -#: superset-frontend/src/pages/AnnotationList/index.tsx:178 -msgid "End" -msgstr "结束" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:258 +msgid "The color for points and clusters in RGB" +msgstr "点和簇的颜色(RGB)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 -#, fuzzy -msgid "End (Longitude, Latitude): " -msgstr "无效的经度/纬度" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:265 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:294 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 +msgid "Viewport" +msgstr "视口" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 -#, fuzzy -msgid "End Longitude & Latitude" -msgstr "无效的经度/纬度" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +msgid "Default longitude" +msgstr "默认经度" -#: superset/views/sql_lab/views.py:86 -msgid "End Time" -msgstr "结束时间" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:277 +msgid "Longitude of default viewport" +msgstr "默认视口经度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 -msgid "End angle" -msgstr "结束角度" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:287 +msgid "Default latitude" +msgstr "默认纬度" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 -#, fuzzy -msgid "End date" -msgstr "发送文本" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:291 +msgid "Latitude of default viewport" +msgstr "默认视口纬度" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 -msgid "End date excluded from time range" -msgstr "从时间范围中排除的结束日期" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:303 +msgid "Zoom" +msgstr "缩放" -#: superset/annotation_layers/annotations/commands/exceptions.py:35 -msgid "End date must be after start date" -msgstr "起始时间不可以大于当前时间" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:307 +msgid "Zoom level of the map" +msgstr "地图缩放等级" -#: superset/databases/commands/validate.py:59 -#, python-format -msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "引擎 \"%(engine)s\" 不能通过参数配置。" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:320 +msgid "" +"One or many controls to group by. If grouping, latitude and longitude " +"columns must be present." +msgstr "使用一个或多个控件来分组。一旦分组,则纬度和经度列必须存在。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 -msgid "Engine Parameters" -msgstr "引擎参数" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 +msgid "Light mode" +msgstr "光模式" -#: superset/databases/schemas.py:302 -msgid "" -"Engine spec \"InvalidEngine\" does not support being configured via " -"individual parameters." -msgstr "引擎\"InvalidEngine\"不支持通过单独的参数进行配置。" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 +msgid "Dark mode" +msgstr "黑暗模式" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 -msgid "Enter CA_BUNDLE" -msgstr "进入CA_BUNDLE" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 +msgid "MapBox" +msgstr "MapBox地图" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 -#, fuzzy -msgid "Enter Primary Credentials" -msgstr "上传验证文件" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:76 +msgid "Scatter" +msgstr "散点" -#: superset/views/database/forms.py:161 -#, fuzzy -msgid "Enter a delimiter for this data" -msgstr "输入标签的新标题" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:65 +msgid "Transformable" +msgstr "转换" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 -msgid "Enter a name for this sheet" -msgstr "输入此工作表的名称" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:63 +msgid "Significance Level" +msgstr "显著性" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 -msgid "Enter a new title for the tab" -msgstr "输入标签的新标题" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:65 +msgid "Threshold alpha level for determining significance" +msgstr "确定重要性的阈值α水平" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 -msgid "Enter duration in seconds" -msgstr "输入间隔时间(秒)" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:76 +msgid "p-value precision" +msgstr "假定值精度" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 -msgid "Enter fullscreen" -msgstr "全屏" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:78 +msgid "Number of decimal places with which to display p-values" +msgstr "用于显示p值的小数位数" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 -#, python-format -msgid "Enter the required %(dbModelName)s credentials" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:89 +msgid "Lift percent precision" +msgstr "提升百分比精度" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 -#: superset-frontend/src/explore/controls.jsx:392 -msgid "Entity" -msgstr "实体" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:91 +msgid "Number of decimal places with which to display lift values" +msgstr "用于显示升力值的小数位数" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 -msgid "Entity ID" -msgstr "实体ID" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 +msgid "" +"Table that visualizes paired t-tests, which are used to understand " +"statistical differences between groups." +msgstr "可视化检验的表格,用于了解各组之间的统计差异" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 -msgid "Equal Date Sizes" -msgstr "相同的日期大小" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 +msgid "Paired t-test Table" +msgstr "配对T检测表" -#: superset-frontend/src/explore/constants.ts:59 -msgid "Equal to (=)" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +msgid "Statistical" +msgstr "统计" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 -#: 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 -msgid "Error" -msgstr "错误" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 +msgid "Tabular" +msgstr "表格" -#: superset/models/helpers.py:1919 -#, python-format -msgid "Error in jinja expression in HAVING clause: %(msg)s" -msgstr "jinja表达式中的HAVING子句出错:%(msg)s" +# 以下部分来源于 superset-ui 项目 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:68 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:282 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:355 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:50 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 +msgid "Options" +msgstr "设置" -#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 -#, python-format -msgid "Error in jinja expression in RLS filters: %(msg)s" -msgstr "jinja表达式中的 RLS filters 出错:%(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:46 +msgid "Data Table" +msgstr "数据表" -#: superset/models/helpers.py:1901 -#, python-format -msgid "Error in jinja expression in WHERE clause: %(msg)s" -msgstr "jinja表达式中的WHERE子句出错:%(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:49 +msgid "Whether to display the interactive data table" +msgstr "是否将指标名显示为标题" -#: superset/connectors/sqla/models.py:789 -#, python-format -msgid "Error in jinja expression in fetch values predicate: %(msg)s" -msgstr "获取jinja表达式中的谓词的值出错:%(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:56 +msgid "Include Series" +msgstr "包含系列" -#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 -msgid "Error loading chart datasources. Filters may not work correctly." -msgstr "加载图表数据源时出错。过滤器可能无法正常工作。" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:59 +msgid "Include series name as an axis" +msgstr "包括系列名称作为轴" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 -msgid "Error message" -msgstr "错误信息" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "排名" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 -msgid "Error while fetching charts" -msgstr "获取图表时出错" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 +msgid "" +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." +msgstr "垂直地绘制数据中每一行的单个指标,并将它们链接成一行。此图表用于比较数据中所有样本或行中的多个指标。" -#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 -#, python-format -msgid "Error while fetching data: %s" -msgstr "获取数据时出错:%s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +msgid "Coordinates" +msgstr "坐标" -#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 -#, python-format -msgid "Error while rendering virtual dataset query: %(msg)s" -msgstr "保存查询时出错:%(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +msgid "Directional" +msgstr "方向" -#: superset/charts/data/commands/get_data_command.py:55 -#, python-format -msgid "Error: %(error)s" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:59 +msgid "Time Series Options" +msgstr "时间序列的列" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:73 +msgid "Not Time Series" +msgstr "美誉时间序列" -#: superset/views/core.py:842 superset/views/core.py:1955 -#, python-format -msgid "Error: %(msg)s" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:75 +msgid "Ignore time" +msgstr "忽略时间" -#: superset/views/core.py:839 -#, fuzzy -msgid "Error: permalink state not found" -msgstr "未找到报表计划状态" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 +msgid "Time Series" +msgstr "时间序列" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 -msgid "Estimate cost" -msgstr "运行选定的查询" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:80 +msgid "Standard time series" +msgstr "时间序列" -#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 -msgid "Estimate selected query cost" -msgstr "运行选定的查询" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:83 +msgid "Aggregate Mean" +msgstr "合计平均值" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 -msgid "Estimate the cost before running a query" -msgstr "在运行查询之前计算执行计划" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:85 +msgid "Mean of values over specified period" +msgstr "特定时期内的平均值" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 -#: superset-frontend/src/modules/AnnotationTypes.js:36 -#, fuzzy -msgid "Event" -msgstr "最近" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:88 +msgid "Aggregate Sum" +msgstr "合计" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 -msgid "Event Flow" -msgstr "事件流" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:90 +msgid "Sum of values over specified period" +msgstr "指定期间内的值总和" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 -msgid "Event Names" -msgstr "事件名称" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:95 +msgid "Metric change in value from `since` to `until`" +msgstr "从 `since` 到 `until` 的度量值变化" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 -msgid "Event definition" -msgstr "事件定义" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:100 +msgid "Percent Change" +msgstr "百分比变化" -#: superset/viz.py:2927 -msgid "Event flow" -msgstr "事件流" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:102 +msgid "Metric percent change in value from `since` to `until`" +msgstr "从 `since` 到 `until` 的价值变化百分比" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 -msgid "Event time column" -msgstr "事件时间列" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:107 +msgid "Factor" +msgstr "因素" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 -msgid "Every" -msgstr "每个" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:109 +msgid "Metric factor change from `since` to `until`" +msgstr "度量因子从 `since` 到 `until` 的变化" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 -msgid "Evolution" -msgstr "演化" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:114 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:386 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 +msgid "Advanced Analytics" +msgstr "高级分析" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 -msgid "Exact" -msgstr "精确" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:116 +msgid "Use the Advanced Analytics options below" +msgstr "使用下面的高级分析选项" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 -msgid "Example" -msgstr "例子" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:125 +msgid "Settings for time series" +msgstr "时间序列设置" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:852 -#: superset-frontend/src/pages/Home/index.tsx:208 -msgid "Examples" -msgstr "示例" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:80 +msgid "Date Time Format" +msgstr "时间格式" -#: superset/views/database/forms.py:288 -msgid "Excel File" -msgstr "Excel文件" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:168 +msgid "Partition Limit" +msgstr "分区限制" -#: superset/views/database/views.py:427 -#, python-format +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:171 msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" -" database \"%(db_name)s\"" -msgstr "" -"Excel 文件 \"%(excel_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 " -"\"%(table_name)s\"" - -#: superset/views/database/views.py:306 -msgid "Excel to Database configuration" -msgstr "Excel 到数据库配置" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" +msgstr "每组的最大细分数;较低的值首先被删除" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 -msgid "Exclude selected values" -msgstr "排除选定的值" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:181 +msgid "Partition Threshold" +msgstr "分区阈值" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 -#, fuzzy -msgid "Excluded roles" -msgstr "包含系列" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:184 +msgid "" +"Partitions whose height to parent height proportions are below this value" +" are pruned" +msgstr "高度与父高度的比例低于此值的分区将被修剪" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 -msgid "Executed SQL" -msgstr "已执行的SQL" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:196 +msgid "Log Scale" +msgstr "日志规模" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 -msgid "Executed query" -msgstr "已执行查询" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:199 +msgid "Use a log scale" +msgstr "使用Y轴的对数刻度" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 -msgid "Execution ID" -msgstr "任务ID" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:208 +msgid "Equal Date Sizes" +msgstr "相同的日期大小" -#: superset-frontend/src/pages/AlertReportList/index.tsx:376 -msgid "Execution log" -msgstr "操作日志" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:211 +msgid "Check to force date partitions to have the same height" +msgstr "选中以强制日期分区具有相同的高度" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 -#, fuzzy -msgid "Existing dataset" -msgstr "丢失数据集" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:222 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:302 +msgid "Rich Tooltip" +msgstr "详细提示" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 -msgid "Exit fullscreen" -msgstr "退出全屏" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:225 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:305 +msgid "The rich tooltip shows a list of all series for that point in time" +msgstr "详细提示显示了该时间点的所有序列的列表。" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 -#, fuzzy -msgid "Expand" -msgstr "和" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:245 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:129 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:175 +msgid "Rolling Window" +msgstr "滚动窗口" -#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 -msgid "Expand all" -msgstr "全部展开" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +msgid "Rolling Function" +msgstr "滚动函数" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 -msgid "Expand data panel" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:411 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:190 +#: superset-frontend/src/explore/controlPanels/sections.tsx:145 +msgid "cumsum" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 -#, fuzzy -msgid "Expand row" -msgstr "标题行" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:170 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:439 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:218 +msgid "Min Periods" +msgstr "最小周期" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 -msgid "Expand table preview" -msgstr "展开表格预览" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:301 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:185 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:453 +msgid "Time Comparison" +msgstr "时间比对" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Expand tool bar" -msgstr "展开工具栏" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:639 +msgid "Time Shift" +msgstr "时间偏移" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 -msgid "" -"Expects a formula with depending time parameter 'x'\n" -" in milliseconds since epoch. mathjs is used to evaluate the " -"formulas.\n" -" Example: '2x+5'" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:198 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:466 +#: superset-frontend/src/explore/controlPanels/sections.tsx:196 +#, fuzzy +msgid "1 week" +msgstr "周" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 -#: superset-frontend/src/filters/components/GroupBy/index.ts:31 -#: superset-frontend/src/filters/components/Range/index.ts:31 -#: superset-frontend/src/filters/components/Select/index.ts:32 -#: superset-frontend/src/filters/components/Time/index.ts:31 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 -msgid "Experimental" -msgstr "实验" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:197 +#, fuzzy +msgid "28 days" +msgstr "90天" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:1009 -msgid "Explore" -msgstr "探索" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:468 +#: superset-frontend/src/explore/controlPanels/sections.tsx:198 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:133 +msgid "30 days" +msgstr "30天" -#: superset/views/core.py:1007 -#, python-format -msgid "Explore - %(table)s" -msgstr "查看 - %(table)s" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:469 +#: superset-frontend/src/explore/controlPanels/sections.tsx:199 +#, fuzzy +msgid "52 weeks" +msgstr "周" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 -msgid "Explore the result set in the data exploration view" -msgstr "在数据探索视图中探索结果集" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:318 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:202 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:470 +#: superset-frontend/src/explore/controlPanels/sections.tsx:200 +#, fuzzy +msgid "1 year" +msgstr "年" -#: superset-frontend/src/features/charts/ChartCard.tsx:119 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 -#: superset-frontend/src/pages/ChartList/index.tsx:537 -#: superset-frontend/src/pages/ChartList/index.tsx:854 -#: superset-frontend/src/pages/DashboardList/index.tsx:445 -#: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:426 -#: superset-frontend/src/pages/DatasetList/index.tsx:445 -#: superset-frontend/src/pages/DatasetList/index.tsx:781 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 -#: superset/views/dashboard/views.py:65 -msgid "Export" -msgstr "导出" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:319 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:471 +#: superset-frontend/src/explore/controlPanels/sections.tsx:201 +#, fuzzy +msgid "104 weeks" +msgstr "周" -#: superset/views/dashboard/views.py:65 -msgid "Export dashboards?" -msgstr "导出看板?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:320 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:204 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:472 +#: superset-frontend/src/explore/controlPanels/sections.tsx:202 +#, fuzzy +msgid "2 years" +msgstr "年" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 -msgid "Export query" -msgstr "导出查询" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:321 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:205 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:473 +#: superset-frontend/src/explore/controlPanels/sections.tsx:203 +#, fuzzy +msgid "156 weeks" +msgstr "周" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:322 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:206 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:474 +#: superset-frontend/src/explore/controlPanels/sections.tsx:204 #, fuzzy -msgid "Export to .CSV" -msgstr "导出到YAML格式" +msgid "3 years" +msgstr "年" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:324 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:476 +#: superset-frontend/src/explore/controlPanels/sections.tsx:206 #, fuzzy -msgid "Export to .JSON" -msgstr "导出到YAML格式" +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "从相对时间段覆盖一个或多个时间序列。期望自然语言中的相对时间增量(例如:24小时、7天、56周、365天)" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:339 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:493 +#, fuzzy +msgid "Actual Values" +msgstr "空值" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:246 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:516 +#: superset-frontend/src/explore/controlPanels/sections.tsx:244 +msgid "1T" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:363 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:247 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:517 +#: superset-frontend/src/explore/controlPanels/sections.tsx:245 +msgid "1H" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:364 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:248 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:518 +#: superset-frontend/src/explore/controlPanels/sections.tsx:246 +msgid "1D" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 -#, fuzzy -msgid "Export to Excel" -msgstr "导出到YAML格式" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:365 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:249 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:519 +#: superset-frontend/src/explore/controlPanels/sections.tsx:247 +msgid "7D" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML" -msgstr "导出到YAML格式" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:366 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:520 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 +msgid "1M" +msgstr "" -#: superset/views/base.py:607 -msgid "Export to YAML?" -msgstr "导出到YAML?" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:367 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:251 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:521 +#: superset-frontend/src/explore/controlPanels/sections.tsx:249 +msgid "1AS" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 -#, fuzzy -msgid "Export to full .CSV" -msgstr "导出全量CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:533 +#: superset-frontend/src/explore/controlPanels/sections.tsx:259 +msgid "Method" +msgstr "方法" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 -msgid "Export to original .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:264 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:536 +#: superset-frontend/src/explore/controlPanels/sections.tsx:262 +msgid "asfreq" msgstr "" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 -msgid "Export to pivoted .CSV" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:381 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:265 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:537 +#: superset-frontend/src/explore/controlPanels/sections.tsx:263 +msgid "bfill" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 -msgid "Expose database in SQL Lab" -msgstr "在SQL工具箱中展示数据库" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:382 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:266 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:538 +#: superset-frontend/src/explore/controlPanels/sections.tsx:264 +msgid "ffill" +msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 -#: superset-frontend/src/pages/DatabaseList/index.tsx:471 -#: superset/views/database/mixins.py:183 -msgid "Expose in SQL Lab" -msgstr "在 SQL 工具箱中公开" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:383 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:539 +#: superset-frontend/src/explore/controlPanels/sections.tsx:265 +msgid "median" +msgstr "中位数" -#: superset/views/database/mixins.py:103 -msgid "Expose this DB in SQL Lab" -msgstr "在 SQL 工具箱中公开这个数据库" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:55 +msgid "Part of a Whole" +msgstr "占比" -#: superset/connectors/sqla/views.py:160 -msgid "Expression" -msgstr "表达式" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 +msgid "Compare the same summarized metric across multiple groups." +msgstr "跨多个组比较相同的汇总指标" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 -#: superset/views/database/mixins.py:193 -msgid "Extra" -msgstr "扩展" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 +msgid "Partition Chart" +msgstr "分区图" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 -msgid "Extra Controls" -msgstr "额外控件" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 +msgid "Categorical" +msgstr "分类" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 -msgid "Extra Parameters" -msgstr "额外参数" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:43 +msgid "Use Area Proportions" +msgstr "使用面积比例" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 -msgid "Extra data for JS" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:106 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:115 +#: superset-frontend/src/explore/fixtures.tsx:44 +msgid "" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" +msgstr "检查玫瑰图是否应该使用线段面积而不是线段半径来进行比例" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 msgid "" -"Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," -" \"details\": \"This table is the source of truth.\" }, " -"\"warning_markdown\": \"This is a warning.\" }`." -msgstr "" -"指定表元数据的额外内容。目前支持的认证数据格式为:`{ \"certification\": { \"certified_by\": \"Data" -" Platform Team\", \"details\": \"This table is the source of truth.\" } " -"}`." +"A polar coordinate chart where the circle is broken into wedges of equal " +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." +msgstr "一种极坐标图表,其中圆被分成等角度的楔形,任何楔形表示的值由其面积表示,而不是其半径或扫掠角度。" -#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 -#, python-format -msgid "Extra field cannot be decoded by JSON. %(msg)s" -msgstr "JSON无法解码额外字段。%(msg)s" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 +msgid "Nightingale Rose Chart" +msgstr "南丁格尔玫瑰图" -#: superset-frontend/src/explore/controlPanels/sections.tsx:52 -msgid "Extra parameters for use in jinja templated queries" -msgstr "用于jinja模板化查询的额外参数" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:60 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Advanced-Analytics" +msgstr "高级分析" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 -msgid "" -"Extra parameters that any plugins can choose to set for use in Jinja " -"templated queries" -msgstr "用于jinja模板化查询的额外参数" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +msgid "Multi-Layers" +msgstr "多层" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 -msgid "Extra url parameters for use in Jinja templated queries" -msgstr "用于jinja模板化查询的额外url" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:35 +msgid "Source / Target" +msgstr "源/目标" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 -#, fuzzy -msgid "Extruded" -msgstr "(不包含)" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:36 +msgid "Choose a source and a target" +msgstr "选择一个源和一个目标" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 -msgid "FEB" -msgstr "二月" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:46 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." +msgstr "限制行数可能导致不完整的数据和误导性的图表。可以考虑过滤或分组源/目标名称。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 -msgid "FRI" -msgstr "星期五" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 +msgid "" +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." +msgstr "可视化不同组的值在系统不同阶段的流动。管道中的新阶段被可视化为节点或层。条形或边缘的厚度表示正在可视化的度量。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 -msgid "Factor" -msgstr "因素" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 +msgid "Demographics" +msgstr "人口统计" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 -msgid "Factor to multiply the metric by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 +msgid "Survey Responses" +msgstr "调查结果" -#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 -#: superset/views/database/forms.py:465 -msgid "Fail" -msgstr "失败" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 +msgid "Sankey Diagram" +msgstr "桑基图" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 -msgid "Failed" -msgstr "失败" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:45 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 +msgid "Percentages" +msgstr "百分比" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 -msgid "Failed at retrieving results" -msgstr "检索结果失败" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 +msgid "Sankey Diagram with Loops" +msgstr "桑基图" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 -#, python-format -msgid "Failed at stopping query. %s" -msgstr "停止查询失败。 %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:39 +msgid "Country Field Type" +msgstr "国家字段的类型" -#: superset-frontend/src/components/ReportModal/index.tsx:342 -msgid "Failed to create report" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:42 +#, fuzzy +msgid "Full name" +msgstr "查询名称" -#: superset/sqllab/exceptions.py:66 -#, python-format -msgid "Failed to execute %(query)s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:43 +msgid "code International Olympic Committee (cioc)" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 -msgid "Failed to generate chart edit URL" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "" -#: superset-frontend/src/pages/Chart/index.tsx:57 -msgid "Failed to load chart data" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 +msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 -#: superset-frontend/src/pages/Chart/index.tsx:69 -msgid "Failed to load chart data." -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 +msgid "" +"The country code standard that Superset should expect to find in the " +"[country] column" +msgstr "Superset 希望能够在 [国家] 栏中找到的 国家 / 地区 的标准代码" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 -msgid "Failed to load dimensions for drill by" -msgstr "" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:80 +msgid "Show Bubbles" +msgstr "显示气泡" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 -#, fuzzy -msgid "Failed to retrieve advanced type" -msgstr "检索结果失败" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:83 +msgid "Whether to display bubbles on top of countries" +msgstr "是否在国家之上展示气泡" -#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 -#, fuzzy -msgid "Failed to save cross-filter scoping" -msgstr "交叉筛选作用域" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:78 +msgid "Max Bubble Size" +msgstr "最大气泡的尺寸" -#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 -msgid "Failed to start remote query on a worker." -msgstr "无法启动远程查询" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:114 +#, fuzzy +msgid "Color by" +msgstr "排序 " -#: superset-frontend/src/components/ReportModal/index.tsx:341 -msgid "Failed to update report" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 +msgid "" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" -#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 -#, python-format -msgid "Failed to verify select options: %s" -msgstr "验证选择选项失败:%s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:138 +msgid "Country Column" +msgstr "国家字段" -#: superset-frontend/src/features/home/ChartTable.tsx:145 -#: superset-frontend/src/features/home/DashboardTable.tsx:156 -#: superset-frontend/src/pages/ChartList/index.tsx:590 -#: superset-frontend/src/pages/DashboardList/index.tsx:498 -msgid "Favorite" -msgstr "收藏" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 +msgid "3 letter code of the country" +msgstr "国家3字码" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 +msgid "Metric that defines the size of the bubble" +msgstr "定义指标的气泡大小" + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +msgid "Bubble Color" +msgstr "气泡颜色" -#: superset-frontend/src/profile/components/App.tsx:52 -msgid "Favorites" -msgstr "收藏" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:154 +msgid "Country Color Scheme" +msgstr "国家颜色方案" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 -msgid "February" -msgstr "二月" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 +msgid "A map of the world, that can indicate values in different countries." +msgstr "一张世界地图,可以显示不同国家的价值观。" -#: superset/connectors/sqla/views.py:395 -msgid "Fetch Values Predicate" -msgstr "取值谓词" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:47 +msgid "Multi-Dimensions" +msgstr "多维度" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 -msgid "Fetch data preview" -msgstr "获取数据预览" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 +msgid "Multi-Variables" +msgstr "多元" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 -#, python-format -msgid "Fetched %s" -msgstr "刷新于 %s" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "Popular" +msgstr "常用" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:36 #, fuzzy -msgid "Fetching" -msgstr "抓取中" +msgid "deck.gl charts" +msgstr "圆弧图" -#: superset/databases/commands/exceptions.py:63 -#, python-format -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "字段不能由JSON解码。%{json_error}s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:39 +msgid "Pick a set of deck.gl charts to layer on top of one another" +msgstr "" -#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 -#, python-format -msgid "Field cannot be decoded by JSON. %(msg)s" -msgstr "字段不能由JSON解码。%(msg)s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:44 +#: superset-frontend/src/features/tags/TagModal.tsx:321 +msgid "Select charts" +msgstr "所有图表" -#: superset/databases/commands/exceptions.py:50 -#: superset/databases/ssh_tunnel/commands/exceptions.py:57 -msgid "Field is required" -msgstr "字段是必需的" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.ts:45 +msgid "Error while fetching charts" +msgstr "获取图表时出错" -#: superset/templates/superset/import_dashboards.html:37 -msgid "File" -msgstr "文件" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:28 +msgid "Compose multiple layers together to form complex visuals." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:30 #, fuzzy -msgid "Fill Color" -msgstr "固定颜色" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 -msgid "Fill all required fields to enable \"Default Value\"" -msgstr "填写所有必填字段以启用默认值" +msgid "deck.gl Multiple Layers" +msgstr "多图层" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 -msgid "Fill method" -msgstr "填充方式" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:36 +#, fuzzy +msgid "deckGL" +msgstr "圆弧图" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:47 #, fuzzy -msgid "Filled" -msgstr "失败" +msgid "Start (Longitude, Latitude): " +msgstr "无效的经度/纬度" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 -msgid "Filter" -msgstr "过滤器" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx:51 +#, fuzzy +msgid "End (Longitude, Latitude): " +msgstr "无效的经度/纬度" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:51 #, fuzzy -msgid "Filter Configuration" -msgstr "过滤配置" +msgid "Start Longitude & Latitude" +msgstr "无效的经度/纬度" -#: superset/templates/appbuilder/general/widgets/search.html:24 -msgid "Filter List" -msgstr "过滤" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:310 +msgid "Point to your spatial columns" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:63 #, fuzzy -msgid "Filter Settings" -msgstr "新的过滤器" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 -msgid "Filter Type" -msgstr "过滤类型" +msgid "End Longitude & Latitude" +msgstr "无效的经度/纬度" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:81 #, fuzzy -msgid "Filter box (deprecated)" -msgstr "未选择过滤条件。" +msgid "Arc" +msgstr "三月" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:88 #, fuzzy -msgid "Filter charts" -msgstr "过滤您的图表" +msgid "Target Color" +msgstr "目标类别" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 -msgid "Filter configuration" -msgstr "过滤配置" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:89 +#, fuzzy +msgid "Color of the target location" +msgstr "目标节点名称" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 -msgid "Filter configuration for the filter box" -msgstr "过滤条件的过滤配置" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:101 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:138 +#, fuzzy +msgid "Categorical Color" +msgstr "分类" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 -msgid "Filter has default value" -msgstr "过滤器默认值" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:102 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:139 +msgid "Pick a dimension from which categorical colors are defined" +msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:115 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:249 #, fuzzy -msgid "Filter menu" -msgstr "过滤值" +msgid "Stroke Width" +msgstr "线宽" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:109 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:94 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:126 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:88 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:149 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:767 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1864 +msgid "Advanced" +msgstr "进阶" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 -msgid "Filter metadata changed in dashboard. It will not be applied." -msgstr "仪表盘的过滤器已被更改,将不会被应用" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:28 +msgid "Plot the distance (like flight paths) between origin and destination." +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 -msgid "Filter name" -msgstr "过滤值" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:31 +msgid "deck.gl Arc" +msgstr "圆弧图" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "Filter only displays values relevant to selections made in other filters." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:37 +msgid "3D" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 -msgid "Filter results" -msgstr "过滤结果" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +msgid "Web" +msgstr "网络" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 -msgid "Filter set already exists" -msgstr "过滤器已存在" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:39 +#, fuzzy +msgid "Centroid (Longitude and Latitude): " +msgstr "无效的经度/纬度" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 -msgid "Filter set with this name already exists" -msgstr "过滤器已存在" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx:36 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:75 +#, fuzzy +msgid "Threshold: " +msgstr "标签阈值" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 -#, python-format -msgid "Filter sets (%(filterSetCount)d)" -msgstr "过滤器个数(%(filterSetCount)d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:63 +#, fuzzy +msgid "The size of each cell in meters" +msgstr "平方单元的大小,以像素为单位" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 -msgid "Filter type" -msgstr "过滤类型" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:109 +#, fuzzy +msgid "Aggregation" +msgstr "合计" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 -msgid "Filter value (case sensitive)" -msgstr "过滤值(区分大小写)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:65 +msgid "The function to use when aggregating points into groups" +msgstr "" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:95 #, fuzzy -msgid "Filter value is required" -msgstr "需要默认值" +msgid "Contours" +msgstr "连续式" -#: superset/models/helpers.py:1815 -msgid "Filter value list cannot be empty" -msgstr "不能为空" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:97 +msgid "" +"Define contour layers. Isolines represent a collection of line segments " +"that serparate the area above and below a given threshold. Isobands " +"represent a collection of polygons that fill the are containing values in" +" a given threshold range." +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 -msgid "Filter your charts" -msgstr "过滤您的图表" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:120 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:137 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:72 +#, fuzzy +msgid "Weight" +msgstr "高度" -#: superset/connectors/sqla/views.py:158 -msgid "Filterable" -msgstr "可过滤" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/controlPanel.ts:121 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:73 +msgid "Metric used as a weight for the grid's coloring" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 -#: superset-frontend/src/explore/controls.jsx:446 -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2071 -msgid "Filters" -msgstr "过滤" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:28 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:28 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 -#, python-format -msgid "Filters (%d)" -msgstr "过滤 (%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:32 +#, fuzzy +msgid "deck.gl Contour" +msgstr "圆弧图" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 -msgid "Filters by columns" -msgstr "按列过滤" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1020 +msgid "Spatial" +msgstr "空间" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 -msgid "Filters by metrics" -msgstr "按指标过滤" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:74 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 +msgid "Experimental" +msgstr "实验" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 -msgid "Filters configuration" -msgstr "过滤配置" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:57 +#, fuzzy +msgid "GeoJson Settings" +msgstr "计划设置" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 -#, python-format -msgid "Filters out of scope (%d)" -msgstr "筛选器超出范围(%d)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:109 +#, fuzzy +msgid "Line width unit" +msgstr "线宽" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:112 +#, fuzzy +msgid "meters" +msgstr "参数" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:113 +msgid "pixels" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:84 +#, fuzzy +msgid "Point Radius Scale" +msgstr "点半径" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:28 msgid "" -"Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group " -"keys are treated as unique groups, i.e. are not grouped together. For " -"example, if a table has three filters, of which two are for departments " -"Finance and Marketing (group key = 'department'), and one refers to the " -"region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region =" -" 'Europe')." +"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " +"interactive polygons, lines and points (circles, icons and/or texts)." msgstr "" -"具有相同组key的过滤将在组中一起进行\"OR\"运算,而不同的过滤组将一起进行\"AND\"运算。未定义的组的key被视为唯一组,即不分组在一起。例如,如果表有三个过滤,其中两个用于财务部门和市场营销" -" (group key = 'department'),其中一个表示欧洲地区(group key = " -"'region'),filter子句将应用过滤 (department = 'Finance' OR department = " -"'Marketing') 和 (region = 'Europe')" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 -msgid "Finish" -msgstr "完成" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.ts:32 +#, fuzzy +msgid "deck.gl Geojson" +msgstr "Deck.gl - 多角形" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:50 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx:47 +#, fuzzy +msgid "Longitude and Latitude" +msgstr "无效的经度/纬度" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx:45 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx:44 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 +msgid "Height" +msgstr "高度" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 -msgid "First" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +msgid "Metric used to control height" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:28 msgid "" -"Fix the trend line to the full time range specified in case filtered " -"results do not include the start or end dates" -msgstr "将趋势线固定为指定的完整时间范围,以防过滤的结果不包括开始日期或结束日期" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 -msgid "Fix to selected Time Range" -msgstr "固定到选定的时间范围" +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." +msgstr "" -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 -msgid "Fixed" -msgstr "固定值" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.ts:31 +#, fuzzy +msgid "deck.gl Grid" +msgstr "圆弧图" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 -msgid "Fixed Color" -msgstr "固定颜色" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:66 +#, fuzzy +msgid "Intesity" +msgstr "强度" -#: superset-frontend/src/explore/controls.jsx:205 -msgid "Fixed color" -msgstr "固定颜色" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:67 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:83 #, fuzzy -msgid "Fixed point radius" +msgid "Intensity Radius" msgstr "点半径" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 -msgid "Flow" -msgstr "流图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:84 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 -msgid "Font size" -msgstr "字体大小" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:32 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "圆弧图" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 -msgid "Font size for axis labels, detail value and other text elements" -msgstr "轴标签、详图值和其他文本元素的字体大小" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:64 +#, fuzzy +msgid "Dynamic Aggregation Function" +msgstr "聚合功能" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 -msgid "Font size for the biggest value in the list" -msgstr "列表中最大值的字体大小" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +#, fuzzy +msgid "variance" +msgstr "三角形" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 -msgid "Font size for the smallest value in the list" -msgstr "列表中最小值的字体大小" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +#, fuzzy +msgid "deviation" +msgstr "描述" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 -msgid "" -"For Bigquery, Presto and Postgres, shows a button to compute cost before " -"running a query." -msgstr "对于Presto和Postgres,显示计算成本按钮(查询后)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "p1" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 -msgid "For further instructions, consult the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "p5" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 -msgid "" -"For more information about objects are in context in the scope of this " -"function, refer to the" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 +msgid "p95" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 +msgid "p99" msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:28 msgid "" -"For regular filters, these are the roles this filter will be applied to. " -"For base filters, these are the roles that the filter DOES NOT apply to, " -"e.g. Admin if admin should see all data." -msgstr "对于常规过滤,这些是此过滤将应用于的角色。对于基本过滤,这些是过滤不适用的角色,例如Admin代表admin应该查看所有数据。" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 -msgid "Force" -msgstr "强制" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.ts:32 +#, fuzzy +msgid "deck.gl 3D Hexagon" +msgstr "Deck.gl - 多角形" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 -msgid "" -"Force all tables and views to be created in this schema when clicking " -"CTAS or CVAS in SQL Lab." -msgstr "在SQL工具箱中点击CTAS or CVAS强制创建所有数据表或视图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +msgid "Polyline" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:28 +msgid "Visualizes connected points, which form a path, on a map." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.ts:29 #, fuzzy -msgid "Force date format" -msgstr "日期格式化" +msgid "deck.gl Path" +msgstr "Deck.gl - 路径" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 -msgid "Force refresh" -msgstr "强制刷新" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx:72 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "名称" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 -msgid "Force refresh schema list" -msgstr "强制刷新数据" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:61 +#, fuzzy +msgid "Polygon Column" +msgstr "我的列" -#: superset-frontend/src/components/TableSelector/index.tsx:307 -msgid "Force refresh table list" -msgstr "强制刷新数据" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:70 +#, fuzzy +msgid "Polygon Encoding" +msgstr "报告发送" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 -msgid "Forecast periods" -msgstr "预测期" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:81 +#, fuzzy +msgid "Elevation" +msgstr "执行时间" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 -msgid "Foreign key" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:96 +#, fuzzy +msgid "Polygon Settings" +msgstr "计划设置" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:131 +msgid "Opacity, expects values between 0 and 100" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:142 +msgid "Number of buckets to group data" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:145 +msgid "How many buckets should the data be grouped in." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:157 +msgid "Bucket break points" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:159 +msgid "List of n+1 values for bucketing metric into n buckets." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:171 #, fuzzy -msgid "Forest Green" -msgstr "刷新频率" +msgid "Emit Filter Events" +msgstr "可被过滤" -#: superset/explore/commands/get.py:87 superset/views/core.py:856 -msgid "Form data not found in cache, reverting to chart metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:174 +#, fuzzy +msgid "Whether to apply filter when items are clicked" +msgstr "是否显示笔划" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:183 +#, fuzzy +msgid "Multiple filtering" +msgstr "自适配过滤条件" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:862 -msgid "Form data not found in cache, reverting to dataset metadata." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:28 +msgid "" +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 -msgid "Formattable" -msgstr "格式表" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.ts:31 +#, fuzzy +msgid "deck.gl Polygon" +msgstr "Deck.gl - 多角形" -#: superset-frontend/src/components/ReportModal/index.tsx:254 -msgid "Formatted CSV attached in email" -msgstr "在邮件中附件CSV" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx:56 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:675 +msgid "Category" +msgstr "分类" -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:321 #, fuzzy -msgid "Formatted date" -msgstr "格式表" +msgid "Point Size" +msgstr "字体大小" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:75 #, fuzzy -msgid "Formatted value" -msgstr "限制选择器值" +msgid "Point Unit" +msgstr "点半径单位" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 #, fuzzy -msgid "Formatting" -msgstr "自动匹配格式化" +msgid "Square meters" +msgstr "参数" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 -#: superset-frontend/src/modules/AnnotationTypes.js:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:80 #, fuzzy -msgid "Formula" -msgstr "D3 格式" +msgid "Square kilometers" +msgstr "父级过滤" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:81 #, fuzzy -msgid "Forward values" -msgstr "条形栏的值" +msgid "Square miles" +msgstr "序列" -#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 -msgid "Found invalid orderby options" -msgstr "发现无效的orderby选项" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:82 +#, fuzzy +msgid "Radius in meters" +msgstr "参数" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 -msgid "Fraction digits" -msgstr "分数位" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 +msgid "Radius in kilometers" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 -msgid "Frequency" -msgstr "频率" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +msgid "Radius in miles" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 -msgid "Friction" -msgstr "摩擦" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:97 +#, fuzzy +msgid "Minimum Radius" +msgstr "点半径" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 -msgid "Friction between nodes" -msgstr "节点之间的摩擦" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:102 +msgid "" +"Minimum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this minimum radius." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 -msgid "Friday" -msgstr "星期五" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:112 +msgid "Maximum Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:117 +msgid "" +"Maximum radius size of the circle, in pixels. As the zoom level changes, " +"this insures that the circle respects this maximum radius." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:128 +#, fuzzy +msgid "Point Color" +msgstr "固定颜色" -#: superset/utils/date_parser.py:267 superset/viz.py:403 -msgid "From date cannot be larger than to date" -msgstr "起始时间不可以大于当前时间" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:28 +msgid "" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.ts:31 #, fuzzy -msgid "Full name" -msgstr "查询名称" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 -msgid "Funnel Chart" -msgstr "漏斗图" +msgid "deck.gl Scatterplot" +msgstr "Deck.gl - 散点图" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 -msgid "Further customize how to display each column" -msgstr "进一步自定义如何显示每列" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:56 +#, fuzzy +msgid "Grid" +msgstr "星期五" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 -msgid "Further customize how to display each metric" -msgstr "进一步定制如何显示每个指标" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:28 +msgid "" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" +msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.ts:31 #, fuzzy -msgid "GROUP BY" -msgstr "分组" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 -msgid "Gauge Chart" -msgstr "仪表图" +msgid "deck.gl Screen Grid" +msgstr "Deck.gl - 屏幕网格" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 -msgid "General" -msgstr "一般" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:46 +msgid "" +"For more information about objects are in context in the scope of this " +"function, refer to the" +msgstr "" -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 -msgid "Generating link, please wait.." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:49 +msgid " source code of Superset's sandboxed parser" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -#, fuzzy -msgid "Generic Chart" -msgstr "所有图表" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:76 +msgid "This functionality is disabled in your environment for security reasons." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 -msgid "Geo" -msgstr "地理位置" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:88 +msgid "Ignore null locations" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:90 #, fuzzy -msgid "GeoJson Column" -msgstr "没有列" +msgid "Whether to ignore locations that are null" +msgstr "是否忽略空位置" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:98 #, fuzzy -msgid "GeoJson Settings" -msgstr "计划设置" +msgid "Auto Zoom" +msgstr "数据缩放" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 -msgid "Geohash" -msgstr "Geo哈希" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:101 +msgid "When checked, the map will zoom to your data after each query" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 -msgid "Get the last date by the date unit." -msgstr "按日期单位获取最后的日期。" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:112 +#, fuzzy +msgid "Select a dimension" +msgstr "维度" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 -msgid "Get the specify date for the holiday" -msgstr "获取指定节假日的日期" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:122 +msgid "Extra data for JS" +msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 -msgid "Go to the edit mode to configure the dashboard and add charts" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:124 +msgid "List of extra columns made available in JavaScript functions" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 -msgid "Gold" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 +msgid "JavaScript data interceptor" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 -msgid "Google Sheet Name and URL" -msgstr "Google Sheet名称和URL" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:134 +msgid "" +"Define a javascript function that receives the data array used in the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " +"array." +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Grace period" -msgstr "宽限期" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 +msgid "JavaScript tooltip generator" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 -msgid "Graph Chart" -msgstr "圆点图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:146 +msgid "" +"Define a function that receives the input and outputs the content for a " +"tooltip" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 -msgid "Graph layout" -msgstr "图表布局" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 +msgid "JavaScript onClick href" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 -msgid "Gravity" -msgstr "重力" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:156 +msgid "Define a function that returns a URL to navigate to when user clicks" +msgstr "" -#: superset-frontend/src/explore/constants.ts:68 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 #, fuzzy -msgid "Greater or equal (>=)" -msgstr ">= (大于等于)" +msgid "Legend Format" +msgstr "数值格式" -#: superset-frontend/src/explore/constants.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:164 #, fuzzy -msgid "Greater than (>)" -msgstr "创建一个 " +msgid "Choose the format for legend values" +msgstr "为左轴选择一个或多个图表" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 #, fuzzy -msgid "Grid" -msgstr "星期五" +msgid "Legend Position" +msgstr "标签位置" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:178 #, fuzzy -msgid "Grid Size" -msgstr "节点大小" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -#: superset-frontend/src/filters/components/GroupBy/index.ts:28 -msgid "Group By" -msgstr "分组" - -#: superset-frontend/src/filters/components/GroupBy/index.ts:29 -msgid "Group By filter plugin" -msgstr "分组过滤插件" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 -msgid "Group By, Metrics or Percentage Metrics must have a value" -msgstr "分组、指标或百分比指标必须具有值" +msgid "Choose the position of the legend" +msgstr "计算对总数的贡献值" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 #, fuzzy -msgid "Group Key" -msgstr "分组" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 -msgid "Group by" -msgstr "分组" - -#: superset/connectors/sqla/views.py:157 -msgid "Groupable" -msgstr "可分组" +msgid "Top left" +msgstr "警报" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 -msgid "Handlebars" -msgstr "句柄图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +#, fuzzy +msgid "Top right" +msgstr "高度" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 #, fuzzy -msgid "Handlebars Template" -msgstr "删除模板" +msgid "Bottom left" +msgstr "底部" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 -msgid "" -"Hard value bounds applied for color coding. Is only relevant and applied " -"when the normalization is applied against the whole heatmap." -msgstr "应用于颜色编码的硬值边界。只有当对整个热图应用标准化时才是相关的和应用的。" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:187 +#, fuzzy +msgid "Bottom right" +msgstr "底部" -#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:197 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:27 #, fuzzy -msgid "Has created by" -msgstr "已创建" +msgid "Lines column" +msgstr "时间列" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 -msgid "Header" -msgstr "标题行" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:199 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:28 +#, fuzzy +msgid "The database columns that contains lines information" +msgstr "包含行信息的数据库列" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 -msgid "Header Row" -msgstr "标题行" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:211 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:731 +msgid "Line width" +msgstr "线宽" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2183 -msgid "Heatmap" -msgstr "热力图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:215 +#, fuzzy +msgid "The width of the lines" +msgstr "活动图表的ID" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 -msgid "Heatmap Options" -msgstr "热图选项" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +#, fuzzy +msgid "Fill Color" +msgstr "固定颜色" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 -msgid "Height" -msgstr "高度" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:223 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:236 +msgid "" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 #, fuzzy -msgid "Height of the sparkline" -msgstr "标记线的标签" +msgid "Stroke Color" +msgstr "固定颜色" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:249 #, fuzzy -msgid "Hide Line" -msgstr "隐藏Layer" +msgid "Filled" +msgstr "失败" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:251 #, fuzzy -msgid "Hide chart description" -msgstr "切换图表说明" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 -msgid "Hide layer" -msgstr "隐藏Layer" +msgid "Whether to fill the objects" +msgstr "是否显示标签。" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:260 #, fuzzy -msgid "Hide password." -msgstr "密码" - -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 -msgid "Hide tool bar" -msgstr "隐藏工具栏" +msgid "Stroked" +msgstr "红色" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:262 #, fuzzy -msgid "Hides the Line for the time series" -msgstr "时间序列设置" +msgid "Whether to display the stroke" +msgstr "是否显示笔划" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 -msgid "Hierarchy" -msgstr "层次" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:271 +#, fuzzy +msgid "Extruded" +msgstr "(不包含)" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1656 -msgid "Histogram" -msgstr "直方图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:274 +#, fuzzy +msgid "Whether to make the grid 3D" +msgstr "是否规范化直方图" -#: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:235 -msgid "Home" -msgstr "主页" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:282 +#, fuzzy +msgid "Grid Size" +msgstr "节点大小" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 -msgid "Horizon Chart" -msgstr "地平线图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:286 +msgid "Defines the grid size in pixels" +msgstr "" -#: superset/viz.py:2246 -msgid "Horizon Charts" -msgstr "水平图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:296 +msgid "Parameters related to the view and perspective on the map" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:308 #, fuzzy -msgid "Horizontal" -msgstr "比例" +msgid "Longitude & Latitude" +msgstr "经纬度字段" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:323 #, fuzzy -msgid "Horizontal (Top)" -msgstr "水平对齐" +msgid "Fixed point radius" +msgstr "点半径" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 -msgid "Horizontal alignment" -msgstr "水平对齐" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:334 +#, fuzzy +msgid "Multiplier" +msgstr "多方" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 -msgid "Host" -msgstr "主机" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:338 +msgid "Factor to multiply the metric by" +msgstr "" -#: superset/db_engine_specs/base.py:1872 -#: superset/db_engine_specs/clickhouse.py:204 -msgid "Hostname or IP address" -msgstr "主机名或IP" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:346 +#, fuzzy +msgid "Lines encoding" +msgstr "轴线升序" -#: superset/db_engine_specs/base.py:105 -msgid "Hour" -msgstr "小时" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:349 +#, fuzzy +msgid "The encoding format of the lines" +msgstr "是否规范化直方图" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 -#, python-format -msgid "Hours %s" -msgstr "%s小时" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:353 +msgid "geohash (square)" +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 -msgid "Hours offset" -msgstr "小时偏移" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:362 +#, fuzzy +msgid "Reverse Lat & Long" +msgstr "经纬度互换" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 -msgid "How do you want to enter service account credentials?" -msgstr "您希望如何输入服务帐户凭据?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:396 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:36 +#, fuzzy +msgid "GeoJson Column" +msgstr "没有列" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 -msgid "How many buckets should the data be grouped in." -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:398 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.tsx:37 +#, fuzzy +msgid "Select the geojson column" +msgstr "反选所有" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 -msgid "How many periods into the future do we want to predict" -msgstr "想要预测未来的多少个时期" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:53 +msgid "Right Axis Format" +msgstr "右轴格式化" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 -#: superset-frontend/src/explore/controlPanels/sections.tsx:215 -msgid "" -"How to display time shifts: as individual lines; as the difference " -"between the main time series and each time shift; as the percentage " -"change; or as the ratio between series and time shifts." -msgstr "如何显示时间偏移:作为单独的行显示;作为主时间序列与每次时间偏移之间的绝对差显示;作为百分比变化显示;或作为序列与时间偏移之间的比率显示。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:64 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:740 +msgid "Show Markers" +msgstr "显示标记" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 -msgid "Huge" -msgstr "巨大" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:67 +msgid "Show data points as circle markers on the lines" +msgstr "将数据点显示为线条上的圆形标记" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 -msgid "ISO 3166-2 Codes" -msgstr "ISO 3166-2 代码" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:99 +msgid "Y bounds" +msgstr "Y界限" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 -msgid "ISO 8601" -msgstr "ISO 8601" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:102 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:113 +msgid "Whether to display the min and max values of the Y-axis" +msgstr "是否显示Y轴的最小值和最大值" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 -msgid "Id" -msgstr "Id" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:110 +msgid "Y 2 bounds" +msgstr "Y界限" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 -msgid "Id of root node of the tree." -msgstr "树的根节点的ID。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:121 +msgid "Line Style" +msgstr "线条样式" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed " -"as the currently logged on user who must have permission to run them. If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。如果启用 Hive 和 " -"hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据 hive.server2.proxy.user " -"的属性伪装当前登录用户。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#, fuzzy +msgid "linear" +msgstr "清除" -#: superset/views/database/mixins.py:165 -msgid "" -"If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If " -"Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via " -"hive.server2.proxy.user property." -msgstr "" -"如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。
如果启用 Hive " -"和hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据hive.server2.proxy.user的属性伪装当前登录用户。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#, fuzzy +msgid "basis" +msgstr "重点" -#: superset/views/database/forms.py:174 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 #, fuzzy -msgid "If Table Already Exists" -msgstr "过滤器已存在" +msgid "cardinal" +msgstr "径向" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "If a metric is specified, sorting will be done based on the metric value" -msgstr "如果指定了度量,则将根据该度量值进行排序" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 +#, fuzzy +msgid "monotone" +msgstr "月" -#: superset/views/database/forms.py:248 -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1," -" X.2 ...X.x\"" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-before" msgstr "" -#: superset/views/database/mixins.py:177 -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "如果选择,请额外设置csv上传允许的模式。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:129 +#, fuzzy +msgid "step-after" +msgstr "css模板" -#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop" -" and recreate table) or Append (insert data)." -msgstr "如果表已存在,执行其中一个:舍弃(什么都不做),替换(删除表并重建),或者追加(插入数据)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:132 +msgid "Line interpolation as defined by d3.js" +msgstr "由 d3.js 定义的线插值" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 -#, fuzzy -msgid "Ignore cache when generating screenshot" -msgstr "生成屏幕截图时报表计划执行失败。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:140 +msgid "Show Range Filter" +msgstr "显示范围过滤器" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 -msgid "Ignore null locations" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:149 +msgid "Whether to display the time range interactive selector" +msgstr "是否显示时间范围交互选择器" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 -msgid "Ignore time" -msgstr "忽略时间" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +msgid "Extra Controls" +msgstr "额外控件" -#: superset-frontend/src/components/ReportModal/index.tsx:251 -msgid "Image (PNG) embedded in email" -msgstr "使用邮箱发送图片(PNG)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:132 +msgid "" +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." +msgstr "是否显示额外的控件。额外的控制包括使多栏图表堆叠或并排。" -#: superset-frontend/src/utils/downloadAsImage.ts:55 -msgid "Image download failed, please refresh and try again." -msgstr "图片发送失败,请刷新或重试" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:217 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:123 +msgid "X Tick Layout" +msgstr "X轴记号图层" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "模拟登录用户 (Presto, Trino, Drill & Hive)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:85 +#, fuzzy +msgid "flat" +msgstr "在" -#: superset/views/database/mixins.py:197 -msgid "Impersonate the logged on user" -msgstr "模拟登录用户" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:121 +#, fuzzy +msgid "staggered" +msgstr "没有触发" -#: superset-frontend/src/components/ImportModal/index.tsx:426 -msgid "Import" -msgstr "导入" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:134 +msgid "The way the ticks are laid out on the X-axis" +msgstr "X轴记号的排列显示方式" -#: superset-frontend/src/components/ImportModal/index.tsx:430 -#, python-format -msgid "Import %s" -msgstr "导入 %s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:155 +msgid "X Axis Format" +msgstr "X 轴格式化" -#: superset/templates/superset/import_dashboards.html:26 -msgid "Import Dashboard(s)" -msgstr "导入看板" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:248 +msgid "Y Log Scale" +msgstr "Y经度标度" -#: superset/initialization/__init__.py:331 -msgid "Import Dashboards" -msgstr "导入看板" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:251 +msgid "Use a log scale for the Y-axis" +msgstr "使用Y轴的对数刻度" -#: superset/connectors/sqla/views.py:293 -msgid "Import a table definition" -msgstr "导入一个已定义的表" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:236 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:230 +msgid "Y Axis Bounds" +msgstr "Y 轴界限" -#: superset/charts/commands/exceptions.py:155 -msgid "Import chart failed for an unknown reason" -msgstr "导入图表失败,原因未知" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:278 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:259 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:233 +msgid "" +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" -#: superset-frontend/src/pages/ChartList/index.tsx:813 -msgid "Import charts" -msgstr "导入图表" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:275 +msgid "Y Axis 2 Bounds" +msgstr "Y 轴界限" -#: superset/dashboards/commands/exceptions.py:82 -msgid "Import dashboard failed for an unknown reason" -msgstr "因为未知原因导入看板失败" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:291 +msgid "X bounds" +msgstr "X界限" -#: superset-frontend/src/pages/DashboardList/index.tsx:686 -#: superset/templates/superset/import_dashboards.html:21 -msgid "Import dashboards" -msgstr "导入看板" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:294 +msgid "Whether to display the min and max values of the X-axis" +msgstr "是否显示X轴的最小值和最大值" -#: superset/databases/commands/exceptions.py:171 -msgid "Import database failed for an unknown reason" -msgstr "导入数据库失败,原因未知" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:315 +msgid "Bar Values" +msgstr "条形栏的值" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 -msgid "Import database from file" -msgstr "从文件中导入数据库" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:318 +msgid "Show the value on top of the bar" +msgstr "显示栏上的值" -#: superset/datasets/commands/exceptions.py:202 -msgid "Import dataset failed for an unknown reason" -msgstr "因为未知的原因导入数据集失败" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:326 +msgid "Stacked Bars" +msgstr "堆叠条形图" -#: superset-frontend/src/pages/DatasetList/index.tsx:631 -msgid "Import datasets" -msgstr "导入数据集" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:337 +msgid "Reduce X ticks" +msgstr "减少 X 轴的刻度" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:340 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." +msgstr "减少要渲染的X轴标记数。如果为true,x轴将不会溢出,但是标签可能丢失。如果为false,则对列应用最小宽度,宽度可能溢出到水平滚动条中。" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 -msgid "Import queries" -msgstr "导入查询" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:354 +msgid "You cannot use 45° tick layout along with the time range filter" +msgstr "不能将45°刻度线布局与时间范围过滤器一起使用" -#: superset/queries/saved_queries/commands/exceptions.py:36 -msgid "Import saved query failed for an unknown reason." -msgstr "由于未知原因,导入保存的查询失败。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:123 +#: superset-frontend/src/explore/fixtures.tsx:58 +msgid "Stacked Style" +msgstr "堆积样式" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 -msgid "" -"Important! Select this if the table is not already sorted by entity id, " -"else there is no guarantee that all events for each entity are returned." -msgstr "很重要!如果表尚未按实体ID排序,则选择此项,否则无法保证返回每个实体的所有事件。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +#, fuzzy +msgid "stack" +msgstr "堆叠" -#: superset-frontend/src/explore/constants.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 #, fuzzy -msgid "In" -msgstr "在" +msgid "stream" +msgstr "直方图" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 -msgid "Include Series" -msgstr "包含系列" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +#, fuzzy +msgid "expand" +msgstr "和" -#: superset-frontend/src/components/ReportModal/index.tsx:294 -msgid "Include a description that will be sent with your report" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:52 +msgid "Evolution" +msgstr "演化" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 -msgid "Include series name as an axis" -msgstr "包括系列名称作为轴" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 +msgid "" +"A time series chart that visualizes how a related metric from multiple " +"groups vary over time. Each group is visualized using a different color." +msgstr "时间序列图表,直观显示多个组中的相关指标随时间的变化情况。每组使用不同的颜色进行可视化" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 -msgid "Include time" -msgstr "包含时间" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 +msgid "Stretched style" +msgstr "堆积样式" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 -#, fuzzy -msgid "Index" -msgstr "我的编辑" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 +msgid "Stacked style" +msgstr "堆积样式" -#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 -msgid "Index Column" -msgstr "索引字段" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 +msgid "Video game consoles" +msgstr "控制台" -#: superset-frontend/src/features/home/RightMenu.tsx:482 -msgid "Info" -msgstr "信息" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 +msgid "Vehicle Types" +msgstr "类型" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 -msgid "Inner Radius" -msgstr "内半径" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:42 +#, fuzzy +msgid "Area Chart (legacy)" +msgstr "面积图不透明度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 -msgid "Inner radius of donut hole" -msgstr "圆环圈内部空洞的内径" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +msgid "Continuous" +msgstr "连续式" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 -msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "输入字段支持自定义。例如,30代表30°" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:62 +msgid "Line" +msgstr "行" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 -msgid "Instant filtering" -msgstr "即时过滤" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +msgid "nvd3" +msgstr "nvd3" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 -msgid "Intensity" -msgstr "强度" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:56 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:31 +msgid "Deprecated" +msgstr "过时" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 #, fuzzy -msgid "Intensity Radius" -msgstr "点半径" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 -msgid "Intensity Radius is the radius at which the weight is distributed" -msgstr "" +msgid "Series Limit Sort By" +msgstr "序列限制" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 -msgid "Intensity is the value multiplied by the weight to obtain the final weight" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 +#, fuzzy +msgid "" +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." +msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" -#: superset/views/database/forms.py:200 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 #, fuzzy -msgid "Interpret Datetime Format Automatically" -msgstr "使用Pandas自动解释日期时间格式。" +msgid "Series Limit Sort Descending" +msgstr "降序" -#: superset/views/database/forms.py:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 #, fuzzy -msgid "Interpret the datetime format automatically" -msgstr "使用Pandas自动解释日期时间格式。" +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "是降序还是升序排序" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 -#: superset-frontend/src/modules/AnnotationTypes.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +msgid "" +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." +msgstr "使用条形图可视化指标随时间的变化。按列添加分组以可视化分组级别的指标及其随时间变化的方式。" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:36 #, fuzzy -msgid "Interval" -msgstr "间隔" +msgid "Time-series Bar Chart (legacy)" +msgstr "时间序列-条形图" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 -msgid "Interval End column" -msgstr "间隔结束列" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 +msgid "Bar" +msgstr "条形图" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 -msgid "Interval bounds" -msgstr "区间间隔" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:83 +msgid "Vertical" +msgstr "垂直" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 -msgid "Interval colors" -msgstr "间隔颜色" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +msgid "Box Plot" +msgstr "箱线图" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 -msgid "Interval start column" -msgstr "间隔开始列" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:103 +msgid "X Log Scale" +msgstr "X经度标度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 -msgid "Intervals" -msgstr "间隔" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:106 +msgid "Use a log scale for the X-axis" +msgstr "使用Y轴的对数刻度" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 -#, fuzzy -msgid "Intesity" -msgstr "强度" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:41 +msgid "" +"Visualizes a metric across three dimensions of data in a single chart (X " +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." +msgstr "在单个图表中跨三维数据(X轴、Y轴和气泡大小)可视化度量。同一组中的气泡可以“使用气泡颜色显示" -#: superset/db_engine_specs/ocient.py:274 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:33 #, fuzzy -msgid "" -"Invalid Connection String: Expecting String of the form " -"'ocient://user:pass@host:port/database'." -msgstr "连接字符串无效,有效字符串通常如下:driver://user:password@database-host/database-name" +msgid "Bubble Chart (legacy)" +msgstr "面积图不透明度" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 -msgid "Invalid JSON" -msgstr "无效的JSON" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:38 +msgid "Ranges" +msgstr "管理" -#: superset/advanced_data_type/api.py:100 -#, fuzzy, python-format -msgid "Invalid advanced data type: %(advanced_data_type)s" -msgstr "无效的结果类型:%(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:40 +msgid "Ranges to highlight with shading" +msgstr "突出阴影的范围" -#: superset/databases/schemas.py:186 superset/exceptions.py:196 -msgid "Invalid certificate" -msgstr "无效认证" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:47 +msgid "Range labels" +msgstr "范围标签" -#: superset/views/core.py:1463 -msgid "" -"Invalid connection string, a valid string usually follows:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" -msgstr "" -"连接字符串无效,有效字符串的格式通常如下:\n" -"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:49 +msgid "Labels for the ranges" +msgstr "范围的标签" -#: superset/databases/schemas.py:164 -#, fuzzy -msgid "" -"Invalid connection string, a valid string usually follows: " -"backend+driver://user:password@database-host/database-name" -msgstr "连接字符串无效,有效字符串通常如下:driver://user:password@database-host/database-name" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:58 +msgid "Markers" +msgstr "标记" -#: superset/views/database/validators.py:40 -msgid "" -"Invalid connection string, a valid string usually " -"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" -msgstr "" -"连接字符串无效,有效字符串格式通常如下:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

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

" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:60 +msgid "List of values to mark with triangles" +msgstr "要用三角形标记的值列表" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 -msgid "Invalid cron expression" -msgstr "无效cron表达式" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:67 +msgid "Marker labels" +msgstr "标记标签" -#: superset/utils/pandas_postprocessing/cum.py:55 -#, python-format -msgid "Invalid cumulative operator: %(operator)s" -msgstr "累积运算符无效:%(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:69 +msgid "Labels for the markers" +msgstr "标记的标签" -#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 -msgid "Invalid date/timestamp format" -msgstr "无效的日期/时间戳格式" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:78 +msgid "Marker lines" +msgstr "标记线" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:80 +msgid "List of values to mark with lines" +msgstr "要用行标记的值列表" -#: superset/viz.py:2091 -msgid "Invalid filter configuration, please select a column" -msgstr "过滤器配置无效,请选择一个列" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:87 +msgid "Marker line labels" +msgstr "标记线标签" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:89 +msgid "Labels for the marker lines" +msgstr "标记线的标签" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:44 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:38 +msgid "KPI" +msgstr "指标" -#: superset/models/helpers.py:1891 -#, python-format -msgid "Invalid filter operation type: %(op)s" -msgstr "选择框的操作类型无效: %(op)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 +msgid "" +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." +msgstr "显示单个指标相对于给定目标的进度。填充越高,度量越接近目标" -#: superset/utils/pandas_postprocessing/geography.py:118 -msgid "Invalid geodetic string" -msgstr "无效的 geodetic 字符串" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 +msgid "" +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." +msgstr "在一个图表中显示许多不同的时间序列对象。此图表已被弃用,建议改用时间序列图表" -#: superset/utils/pandas_postprocessing/geography.py:49 -msgid "Invalid geohash string" -msgstr "无效的geohash字符串" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "时间序列-百分比变化" -#: superset-frontend/src/utils/getClientErrorObject.ts:65 -msgid "Invalid input" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:81 +msgid "Sort Bars" +msgstr "排序条形栏" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 -msgid "Invalid lat/long configuration." -msgstr "错误的经纬度配置。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:84 +msgid "Sort bars by x labels." +msgstr "按 x 标签排序。" -#: superset/utils/pandas_postprocessing/geography.py:76 -msgid "Invalid longitude/latitude" -msgstr "无效的经度/纬度" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:157 +msgid "Breakdowns" +msgstr "分解" -#: superset/utils/core.py:1373 -#, fuzzy, python-format -msgid "Invalid metric object: %(metric)s" -msgstr "无效的指标对象" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:122 +msgid "Defines how each series is broken down" +msgstr "定义每个序列是如何被分解的" -#: superset/utils/pandas_postprocessing/utils.py:170 -#, python-format -msgid "Invalid numpy function: %(operator)s" -msgstr "无效的numpy函数:%(operator)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:30 +msgid "" +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." +msgstr "使用条形图比较不同类别的指标。条形长度用于指示每个值的大小,颜色用于区分组。" -#: superset/utils/pandas_postprocessing/rolling.py:90 -#, python-format -msgid "Invalid options for %(rolling_type)s: %(options)s" -msgstr "%(rolling_type)s 的选项无效:%(options)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:39 +#, fuzzy +msgid "Bar Chart (legacy)" +msgstr "面积图不透明度" -#: superset/key_value/utils.py:60 -msgid "Invalid permalink key" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 +msgid "Additive" +msgstr "附加" -#: superset/db_engine_specs/ocient.py:292 -#, python-format -msgid "Invalid reference to column: \"%(column)s\"" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +msgid "Discrete" +msgstr "离散" -#: superset/common/query_actions.py:227 -#, python-format -msgid "Invalid result type: %(result_type)s" -msgstr "无效的结果类型:%(result_type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 +msgid "Propagate" +msgstr "传播" -#: superset/utils/pandas_postprocessing/rolling.py:84 -#, python-format -msgid "Invalid rolling_type: %(type)s" -msgstr "无效的滚动类型:%(type)s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 +msgid "Send range filter events to other charts" +msgstr "将过滤条件的事件发送到其他图表" -#: superset/viz.py:2474 -#, python-format -msgid "Invalid spatial point encountered: %s" -msgstr "遇到无效的空间点:%s" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 +msgid "Classic chart that visualizes how metrics change over time." +msgstr "直观显示指标随时间变化的经典图表。" -#: superset/dashboards/permalink/exceptions.py:23 -#: superset/explore/permalink/exceptions.py:23 -#, fuzzy -msgid "Invalid state." -msgstr "无效认证" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 +msgid "Battery level over time" +msgstr "电池电量随时间变化" -#: superset/reports/commands/create.py:142 -#, python-format -msgid "Invalid tab ids: %s(tab_ids)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:39 +msgid "Line Chart (legacy)" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 -msgid "Inverse selection" -msgstr "反选" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:94 +msgid "Label Type" +msgstr "标签类型" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:115 #, fuzzy -msgid "Invert current page" -msgstr "百分比变化" - -#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 -#: superset/datasets/filters.py:39 -msgid "Is certified" -msgstr "已认证" +msgid "Category Name" +msgstr "查询名称" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 -msgid "Is dimension" -msgstr "维度" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:109 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 +msgid "Value" +msgstr "值" -#: superset-frontend/src/explore/constants.ts:89 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 #, fuzzy -msgid "Is false" -msgstr "禁用" - -#: superset/views/base_api.py:149 -msgid "Is favorite" -msgstr "收藏" - -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 -msgid "Is filterable" -msgstr "可被过滤" +msgid "Percentage" +msgstr "百分比" -#: superset-frontend/src/explore/constants.ts:80 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 #, fuzzy -msgid "Is not null" -msgstr "非空" +msgid "Category and Value" +msgstr "缩放和移动" -#: superset-frontend/src/explore/constants.ts:83 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:122 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 #, fuzzy -msgid "Is null" -msgstr "非空" +msgid "Category and Percentage" +msgstr "显示百分比" -#: superset/views/base_api.py:177 -msgid "Is tagged" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 +msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:161 -msgid "Is temporal" -msgstr "时间条件" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:102 +msgid "What should be shown on the label?" +msgstr "标签上需要显示的内容" -#: superset-frontend/src/explore/constants.ts:88 -msgid "Is true" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:220 +msgid "Donut" +msgstr "圆环圈" -#: superset-frontend/src/utils/getClientErrorObject.ts:153 -msgid "Issue 1000 - The dataset is too large to query." -msgstr "Issue 1000 - 数据集太大,无法进行查询。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:223 +msgid "Do you want a donut or a pie?" +msgstr "是否用圆环圈替代饼图?" -#: superset-frontend/src/utils/getClientErrorObject.ts:157 -msgid "Issue 1001 - The database is under an unusual load." -msgstr "Issue 1001 - 数据库负载异常。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:183 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:70 +msgid "Show Labels" +msgstr "显示标签" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 #, fuzzy -msgid "It’s not recommended to truncate axis in Bar chart." -msgstr "不建议截断柱状图中的y轴。" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 -msgid "JAN" -msgstr "一月" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 -#: superset/views/log/__init__.py:33 -msgid "JSON" -msgstr "JSON" +msgid "" +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." +msgstr "是否显示标签。" -#: superset/views/dashboard/mixin.py:88 -msgid "JSON Metadata" -msgstr "JSON 元数据" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:161 +msgid "Put labels outside" +msgstr "外侧显示标签" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:773 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 -msgid "JSON metadata" -msgstr "JSON 元数据" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 +msgid "Put the labels outside the pie?" +msgstr "是否将标签显示在饼图外侧?" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:28 #, fuzzy -msgid "JSON metadata is invalid!" -msgstr "无效 JSON" +msgid "Pie Chart (legacy)" +msgstr "面积图不透明度" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 -msgid "" -"JSON string containing additional connection configuration. This is used " -"to provide connection information for systems like Hive, Presto and " -"BigQuery which do not conform to the username:password syntax normally " -"used by SQLAlchemy." -msgstr "包含附加连接配置的JSON字符串。它用于为配置单元、Presto和BigQuery等系统提供连接信息,这些系统不符合SQLAlChemy通常使用的用户名:密码语法。" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 +msgid "Frequency" +msgstr "频率" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 -msgid "JUL" -msgstr "七月" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 +msgid "Year (freq=AS)" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 -msgid "JUN" -msgstr "六月" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 +#, fuzzy +msgid "52 weeks starting Monday (freq=52W-MON)" +msgstr "周一为一周开始" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 -msgid "January" -msgstr "一月" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 +#, fuzzy +msgid "1 week starting Sunday (freq=W-SUN)" +msgstr "周日为一周开始" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 +#, fuzzy +msgid "1 week starting Monday (freq=W-MON)" +msgstr "周一为一周开始" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 -msgid "JavaScript data interceptor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 +msgid "Day (freq=D)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 -msgid "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 +msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 -msgid "JavaScript tooltip generator" -msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 +msgid "" +"The periodicity over which to pivot time. Users can provide\n" +" \"Pandas\" offset alias.\n" +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." +msgstr "旋转时间的周期性。" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" +msgstr "时间序列-周期轴" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:458 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:32 #, fuzzy -msgid "Jinja templating" -msgstr "编辑模板" +msgid "Formula" +msgstr "D3 格式" -#: superset/views/database/forms.py:243 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:36 #, fuzzy -msgid "Json list of the column names that should be read" -msgstr "应作为日期解析的列的逗号分隔列表。" +msgid "Event" +msgstr "最近" -#: superset/views/database/forms.py:474 -msgid "" -"Json list of the column names that should be read. If not None, only " -"these columns will be read from the file." -msgstr "Json应读取的列名列表。如果不是“无”,则仅从文件中读取这些列" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:41 +#, fuzzy +msgid "Interval" +msgstr "间隔" -#: superset/views/database/forms.py:213 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 #, fuzzy -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] " -"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " -"Hive database supports only a single value" -msgstr "" -"应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", " -"\"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" +msgid "Stack" +msgstr "堆叠" -#: superset/views/database/forms.py:404 -msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"]," -" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " -"supports only single value. Use [\"\"] for empty string." -msgstr "" -"应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", " -"\"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#, fuzzy +msgid "Stream" +msgstr "直方图" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 -msgid "July" -msgstr "七月" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 +#, fuzzy +msgid "Expand" +msgstr "和" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 -msgid "June" -msgstr "六月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:41 +msgid "Show legend" +msgstr "显示图例" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 -msgid "KPI" -msgstr "指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:44 +msgid "Whether to display a legend for the chart" +msgstr "是否显示图表的图示(色块分布)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 -msgid "Keep control settings?" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:52 +msgid "Margin" +msgstr "边距(margin)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 -msgid "Keep editing" -msgstr "继续编辑" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:56 +msgid "Additional padding for legend." +msgstr "图示附加的padding值。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 -#, fuzzy -msgid "Key" -msgstr "蛇形图" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:69 +msgid "Scroll" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 -msgid "Keys for table" -msgstr "表的键" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +msgid "Plain" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 -#, fuzzy -msgid "Kilometers" -msgstr "过滤" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:74 +msgid "Legend type" +msgstr "图示类型" -#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #, fuzzy -msgid "LIMIT" -msgstr "行限制" - -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 -#: superset-frontend/src/pages/AnnotationList/index.tsx:157 -#: superset/views/sql_lab/views.py:81 -msgid "Label" -msgstr "标签" +msgid "Orientation" +msgstr "方向" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 -msgid "Label Line" -msgstr "标签线" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 +msgid "Bottom" +msgstr "底端" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 -msgid "Label Type" -msgstr "标签类型" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:392 +msgid "Right" +msgstr "高度" -#: superset/utils/pandas_postprocessing/rename.py:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:94 #, fuzzy -msgid "Label already exists" -msgstr "过滤器已存在" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 -msgid "Label for your query" -msgstr "为您的查询设置标签" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 -msgid "Label position" -msgstr "标签位置" +msgid "Legend Orientation" +msgstr "方向" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 -msgid "Label threshold" -msgstr "标签阈值" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:112 +msgid "Show Value" +msgstr "显示值" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 -msgid "Labelling" -msgstr "标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:115 +msgid "Show series values on the chart" +msgstr "显示栏上的值" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 -msgid "Labels" -msgstr "标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:127 +msgid "Stack series on top of each other" +msgstr "叠加系列" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 -msgid "Labels for the marker lines" -msgstr "标记线的标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:135 +msgid "Only Total" +msgstr "仅总计" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 -msgid "Labels for the markers" -msgstr "标记的标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:138 +msgid "" +"Only show the total value on the stacked chart, and not show on the " +"selected category" +msgstr "仅在堆积图上显示合计值,而不在所选类别上显示" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 -msgid "Labels for the ranges" -msgstr "范围的标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:150 +msgid "Percentage threshold" +msgstr "百分比阈值" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 -msgid "Large" -msgstr "大" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:154 +msgid "Minimum threshold in percentage points for showing labels." +msgstr "标签显示百分比最小阈值" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 -msgid "Last" -msgstr "上一" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:180 +msgid "Rich tooltip" +msgstr "详细提示" -#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 -msgid "Last Changed" -msgstr "更新时间" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:183 +msgid "Shows a list of all series available at that point in time" +msgstr "详细提示显示了该时间点的所有序列的列表。" -#: superset/views/chart/mixin.py:81 -msgid "Last Modified" -msgstr "最后修改" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:193 +msgid "Tooltip time format" +msgstr "时间格式" -#: superset-frontend/src/components/LastUpdated/index.tsx:74 -#, python-format -msgid "Last Updated %s" -msgstr "上次更新 %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:203 +msgid "Tooltip sort by metric" +msgstr "排序指标" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 -#, fuzzy, python-format -msgid "Last Updated %s by %s" -msgstr "上次更新 %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:206 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "是否按所选指标按降序对结果进行排序。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 -#, python-format -msgid "Last available value seen on %s" -msgstr " %s 最后一个可用值" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:215 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 +msgid "Tooltip" +msgstr "详细提示" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 -#: superset-frontend/src/pages/ChartList/index.tsx:445 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:391 -msgid "Last modified" -msgstr "最后修改" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:226 +#, fuzzy +msgid "Sort Series By" +msgstr "排序 " -#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 -#, python-format -msgid "Last modified by %s" -msgstr "上次修改人 %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +msgid "Based on what should series be ordered on the chart and legend" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:267 -msgid "Last run" -msgstr "上次执行" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:240 +#, fuzzy +msgid "Sort Series Ascending" +msgstr "升序排序" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 -msgid "Latitude" -msgstr "纬度" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:243 +msgid "Sort series in ascending order" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 -msgid "Latitude of default viewport" -msgstr "默认视口纬度" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:253 +msgid "Rotate x axis label" +msgstr "旋转x轴标签" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 -msgid "Layer configuration" -msgstr "配置Layer" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:202 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:261 +msgid "Input field supports custom rotation. e.g. 30 for 30°" +msgstr "输入字段支持自定义。例如,30代表30°" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 -msgid "Layout" -msgstr "布局" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:266 +#, fuzzy +msgid "Series Order" +msgstr "图示类型" -#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 -msgid "Layout elements" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:275 +#, fuzzy +msgid "Truncate X Axis" +msgstr "截断Y轴" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 -msgid "Layout type of graph" -msgstr "图形的布局类型" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:278 +#, fuzzy +msgid "" +"Truncate X Axis. Can be overridden by specifying a min or max bound. Only" +" applicable for numercal X axis." +msgstr "截断Y轴。可以通过指定最小或最大界限来重写。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 -msgid "Layout type of tree" -msgstr "树的布局类型" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:288 +#, fuzzy +msgid "X Axis Bounds" +msgstr "Y 轴界限" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:291 +#, fuzzy msgid "" -"Leaf nodes that represent fewer than this number of events will be " -"initially hidden in the visualization" -msgstr "表示少于此数量的事件的叶节点最初将隐藏在可视化中" +"Bounds for numerical X axis. Not applicable for temporal or categorical " +"axes. When left empty, the bounds are dynamically defined based on the " +"min/max of the data. Note that this feature will only expand the axis " +"range. It won't narrow the data's extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" -#: superset-frontend/src/pages/ChartList/index.tsx:749 -#: superset-frontend/src/pages/DashboardList/index.tsx:623 -#: superset-frontend/src/pages/Tags/index.tsx:229 -msgid "Least recently modified" -msgstr "最远修改" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:306 +#, fuzzy +msgid "Minor ticks" +msgstr "整合指标" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 -msgid "Left" -msgstr "左边" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:309 +#, fuzzy +msgid "Show minor ticks on axes." +msgstr "是否忽略空位置" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 -msgid "Left Axis Format" -msgstr "左轴格式化" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:320 +msgid "Make the x-axis categorical" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 -msgid "Left Axis chart(s)" -msgstr "左轴图表" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format +msgid "Last available value seen on %s" +msgstr " %s 最后一个可用值" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 -msgid "Left Margin" -msgstr "左边距" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 +msgid "Not up to date" +msgstr "不是最新的" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 -msgid "Left margin, in pixels, allowing for more room for axis labels" -msgstr "左边距,以像素为单位,为轴标签留出更多空间" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:222 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:209 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 +msgid "No data" +msgstr "没有数据" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 -msgid "Left to Right" -msgstr "从左到右" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 +msgid "No data after filtering or data is NULL for the latest time record" +msgstr "过滤后没有数据,或者最新时间记录的数据为NULL" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 -msgid "Left value" -msgstr "左值" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 +msgid "Try applying different filters or ensuring your datasource has data" +msgstr "尝试应用不同的筛选器或确保您的数据源包含数据。“" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 -#: superset-frontend/src/visualizations/TimeTable/index.ts:35 -msgid "Legacy" -msgstr "遗产" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:121 +msgid "Big Number Font Size" +msgstr "数字的字体大小" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 -msgid "Legend" -msgstr "图示" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:127 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:161 +msgid "Tiny" +msgstr "微小" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 -#, fuzzy -msgid "Legend Format" -msgstr "数值格式" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:131 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:165 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 +msgid "Small" +msgstr "小" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 -#, fuzzy -msgid "Legend Orientation" -msgstr "方向" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:135 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:169 +msgid "Normal" +msgstr "正常" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 -#, fuzzy -msgid "Legend Position" -msgstr "标签位置" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:139 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:173 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 +msgid "Large" +msgstr "大" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 -msgid "Legend type" -msgstr "图示类型" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:143 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:177 +msgid "Huge" +msgstr "巨大" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:155 +msgid "Subheader Font Size" +msgstr "子标题的字体大小" -#: superset-frontend/src/explore/constants.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:37 #, fuzzy -msgid "Less or equal (<=)" -msgstr "<= (小于等于)" +msgid "Display settings" +msgstr "计划设置" -#: superset-frontend/src/explore/constants.ts:61 -msgid "Less than (<)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:46 +msgid "Subheader" +msgstr "子标题" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 -msgid "Lift percent precision" -msgstr "提升百分比精度" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 +msgid "Description text that shows up below your Big Number" +msgstr "在大数字下面显示描述文本" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 -#, fuzzy -msgid "Light" -msgstr "高度" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:330 +msgid "Date format" +msgstr "日期格式化" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 -msgid "Light mode" -msgstr "光模式" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 +#, fuzzy +msgid "Force date format" +msgstr "日期格式化" -#: superset-frontend/src/explore/constants.ts:73 -msgid "Like" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 +msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/explore/constants.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:98 #, fuzzy -msgid "Like (case insensitive)" -msgstr "过滤值(区分大小写)" - -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 -msgid "Limit reached" -msgstr "达到限制" - -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 -msgid "Limit selector values" -msgstr "限制选择器值" +msgid "Conditional Formatting" +msgstr "条件格式设置" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 #, fuzzy -msgid "Limit type" -msgstr "可视化类型" +msgid "Apply conditional color formatting to metric" +msgstr "将条件颜色格式应用于指标" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:31 msgid "" -"Limiting rows may result in incomplete data and misleading charts. " -"Consider filtering or grouping source/target names instead." -msgstr "限制行数可能导致不完整的数据和误导性的图表。可以考虑过滤或分组源/目标名称。" +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." +msgstr "显示单个公制正面和中间。大数字最好用来唤起人们对KPI或你希望观众关注的一件事的关注" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 -#, fuzzy -msgid "Limits the number of cells that get retrieved." -msgstr "限制显示的行数。" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 +msgid "A Big Number" +msgstr "大数字" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 -#: superset-frontend/src/explore/controls.jsx:344 -msgid "Limits the number of rows that get displayed." -msgstr "限制显示的行数。" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:36 +msgid "With a subheader" +msgstr "子标题" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 -#: superset-frontend/src/explore/controls.jsx:354 -msgid "" -"Limits the number of series that get displayed. A joined subquery (or an " -"extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful " -"when grouping by high cardinality column(s) though does increase the " -"query complexity and cost." -msgstr "限制显示的系列数。应用联接的子查询(或不支持子查询的额外阶段)来限制获取和呈现的序列数量。此功能在按高基数列分组时很有用,但会增加查询的复杂性和成本。" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:38 +msgid "Big Number" +msgstr "数字" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 -msgid "Line" -msgstr "行" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:53 +msgid "Comparison Period Lag" +msgstr "滞后比较" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 -msgid "Line Chart" -msgstr "多线图" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:55 +msgid "Based on granularity, number of time periods to compare against" +msgstr "根据粒度、要比较的时间阶段" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 -msgid "Line Chart (legacy)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:66 +msgid "Comparison suffix" +msgstr "比较前缀" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 -msgid "Line Style" -msgstr "线条样式" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 +msgid "Suffix to apply after the percentage display" +msgstr "百分比显示后要应用的后缀" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 -#, fuzzy -msgid "" -"Line chart is used to visualize measurements taken over a given category." -" Line chart is a type of chart which displays information as a series of " -"data points connected by straight line segments. It is a basic type of " -"chart common in many fields." -msgstr "时间序列折线图用于可视化在规则时间间隔内进行的重复测量。折线图是一种图表,它将信息显示为一系列由直线段连接的数据点。它是许多领域中常见的一种基本类型的图表。" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:76 +msgid "Show Timestamp" +msgstr "显示时间戳" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 -msgid "Line interpolation as defined by d3.js" -msgstr "由 d3.js 定义的线插值" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:79 +msgid "Whether to display the timestamp" +msgstr "是否显示笔划" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 -msgid "Line width" -msgstr "线宽" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:88 +msgid "Show Trend Line" +msgstr "显示趋势线" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 -msgid "Linear Color Scheme" -msgstr "线性颜色方案" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:91 +msgid "Whether to display the trend line" +msgstr "是否显示笔划" -#: superset-frontend/src/explore/controls.jsx:221 -msgid "Linear color scheme" -msgstr "线性颜色方案" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:100 +msgid "Start y-axis at 0" +msgstr "y轴从0开始" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 -msgid "Linear interpolation" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:103 +msgid "" +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." +msgstr "从零开始y轴。取消选中以从数据中的最小值开始y轴 " -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 -#, fuzzy -msgid "Lines column" -msgstr "时间列" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:114 +msgid "Fix to selected Time Range" +msgstr "固定到选定的时间范围" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 +msgid "" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" +msgstr "将趋势线固定为指定的完整时间范围,以防过滤的结果不包括开始日期或结束日期" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:283 #, fuzzy -msgid "Lines encoding" -msgstr "轴线升序" +msgid "TEMPORAL X-AXIS" +msgstr "时间条件" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:33 +msgid "" +"Showcases a single number accompanied by a simple line chart, to call " +"attention to an important metric along with its change over time or other" +" dimension." +msgstr "显示一个数字和一个简单的折线图,以提醒注意一个重要指标及其随时间或其他维度的变化" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:677 -msgid "Link Copied!" -msgstr "链接成功!" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:37 +msgid "Big Number with Trendline" +msgstr "数字和趋势线" -#: superset/views/sql_lab/views.py:52 -msgid "List Saved Query" -msgstr "保存的查询列表" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:88 +msgid "Whisker/outlier options" +msgstr "箱须/离群值选项" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:90 +msgid "Determines how whiskers and outliers are calculated." +msgstr "确定如何计算箱须和离群值。" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:94 #, fuzzy -msgid "List Unique Values" -msgstr "限制选择器值" +msgid "Tukey" +msgstr "查询" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 -msgid "List of extra columns made available in JavaScript functions" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +msgid "Min/max (no outliers)" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 -msgid "List of n+1 values for bucketing metric into n buckets." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +msgid "2/98 percentiles" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 -msgid "List of values to mark with lines" -msgstr "要用行标记的值列表" - -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 -msgid "List of values to mark with triangles" -msgstr "要用三角形标记的值列表" - -#: superset-frontend/src/components/TableSelector/index.tsx:184 -#, fuzzy -msgid "List updated" -msgstr "上一季度" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +msgid "9/91 percentiles" +msgstr "" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 -msgid "Live CSS editor" -msgstr "即时 CSS 编辑器" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +msgid "Categories to group by on the x-axis." +msgstr "要在x轴上分组的类别。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 -msgid "Live render" -msgstr "实时渲染" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:167 +msgid "Distribute across" +msgstr "基于某列进行分布" -#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 -msgid "Load a CSS template" -msgstr "加载一个 CSS 模板" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:169 +#, fuzzy +msgid "Columns to calculate distribution across." +msgstr "计算分布的列。如果留空,则默认为临时列。" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 -msgid "Loaded data cached" -msgstr "数据缓存已加载" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:55 +msgid "" +"Also known as a box and whisker plot, this visualization compares the " +"distributions of a related metric across multiple groups. The box in the " +"middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " +"around each box visualize the min, max, range, and outer 2 quartiles." +msgstr "也称为框须图,该可视化比较了一个相关指标在多个组中的分布。中间的框强调平均值、中值和内部2个四分位数。每个框周围的触须可视化了最小值、最大值、范围和外部2个四分区。" -#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 -msgid "Loaded from cache" -msgstr "从缓存中加载" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:64 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:127 +msgid "ECharts" +msgstr "ECharts图表" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:97 #, fuzzy -msgid "Loading" -msgstr "加载中..." - -#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 -#: superset-frontend/src/components/Select/Select.tsx:477 -#: superset-frontend/src/components/Select/utils.tsx:152 -#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 -#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 -msgid "Loading..." -msgstr "加载中..." +msgid "Bubble size number format" +msgstr "数字格式化" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:106 #, fuzzy -msgid "Locate the chart" -msgstr "创建新图表" +msgid "Bubble Opacity" +msgstr "气泡图" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 -msgid "Log Scale" -msgstr "日志规模" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:112 +msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque" +msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 -msgid "Log retention" -msgstr "日志保留" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:143 +msgid "X AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:167 #, fuzzy -msgid "Logarithmic axis" +msgid "Logarithmic x-axis" msgstr "对数轴" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 -msgid "Logarithmic scale on primary y-axis" -msgstr "对数刻度在主y轴上" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:195 +#, fuzzy +msgid "Rotate y axis label" +msgstr "旋转x轴标签" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 -msgid "Logarithmic scale on secondary y-axis" -msgstr "二次y轴上的对数刻度" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:215 +msgid "Y AXIS TITLE MARGIN" +msgstr "Y轴标题页边距" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:228 +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:231 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:435 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:444 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:196 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:140 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:193 msgid "Logarithmic y-axis" msgstr "对数轴" -#: superset-frontend/src/features/home/RightMenu.tsx:562 -msgid "Login" -msgstr "登录" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:242 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 +msgid "Truncate Y Axis" +msgstr "截断Y轴" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 -#, fuzzy -msgid "Login with" -msgstr "线宽" +#: superset-frontend/plugins/plugin-chart-echarts/src/Bubble/controlPanel.tsx:245 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 +msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." +msgstr "截断Y轴。可以通过指定最小或最大界限来重写。" -#: superset-frontend/src/features/home/RightMenu.tsx:486 -msgid "Logout" -msgstr "退出" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#, fuzzy, python-format +msgid "% calculation" +msgstr "计算类型" -#: superset/views/log/__init__.py:21 -msgid "Logs" -msgstr "日志" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:81 +msgid "" +"Display percents in the label and tooltip as the percent of the total " +"value, from the first step of the funnel, or from the previous step in " +"the funnel." +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 -msgid "Long dashed" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:85 +msgid "Calculate from first step" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 -msgid "Longitude" -msgstr "经度" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:88 +msgid "Calculate from previous step" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 #, fuzzy -msgid "Longitude & Latitude" -msgstr "经纬度字段" +msgid "Percent of total" +msgstr "显示总计" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 -msgid "Longitude & Latitude columns" -msgstr "经纬度字段" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:64 +msgid "Labels" +msgstr "标签" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:112 #, fuzzy -msgid "Longitude and Latitude" -msgstr "无效的经度/纬度" +msgid "Label Contents" +msgstr "单元格内容" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 -msgid "Longitude of default viewport" -msgstr "默认视口经度" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 +#, fuzzy +msgid "Value and Percentage" +msgstr "显示百分比" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 -msgid "MAR" -msgstr "三月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:133 +#, fuzzy +msgid "What should be shown as the label" +msgstr "标签上需要显示的内容" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 -msgid "MAY" -msgstr "五月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:142 +#, fuzzy +msgid "Tooltip Contents" +msgstr "单元格内容" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 -msgid "MON" -msgstr "星期一" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:159 +#, fuzzy +msgid "What should be shown as the tooltip label" +msgstr "标签上需要显示的内容" -#: superset/connectors/sqla/views.py:397 -msgid "Main Datetime Column" -msgstr "主日期列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:73 +msgid "Whether to display the labels." +msgstr "是否显示标签。" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:195 #, fuzzy -msgid "" -"Make sure that the controls are configured properly and the datasource " -"contains data for the selected time range" -msgstr "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" +msgid "Show Tooltip Labels" +msgstr "显示总计" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:198 +#, fuzzy +msgid "Whether to display the tooltip labels." +msgstr "是否显示标签。" -#: superset/views/core.py:1752 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:55 msgid "" -"Malformed request. slice_id or table_name and db_name arguments are " -"expected" -msgstr "格式错误的请求。需要使用 slice_id 或 table_name 和 db_name 参数" +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." +msgstr "显示指标如何随着漏斗的进展而变化。此经典图表对于可视化管道或生命周期中各阶段之间的下降非常有用。" -#: superset/initialization/__init__.py:279 -#: superset/initialization/__init__.py:291 -#: superset/initialization/__init__.py:335 -#: superset/initialization/__init__.py:406 -#: superset/initialization/__init__.py:419 -msgid "Manage" -msgstr "管理" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:59 +msgid "Funnel Chart" +msgstr "漏斗图" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 -#, fuzzy -msgid "Manage email report" -msgstr "删除邮件报告" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +msgid "Sequential" +msgstr "顺序" -#: superset-frontend/src/components/EmptyState/index.tsx:230 -msgid "Manage your databases" -msgstr "管理你的数据库" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:41 +msgid "Columns to group by" +msgstr "需要进行分组的一列或多列" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 -msgid "Mandatory" -msgstr "必填参数" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:75 +msgid "General" +msgstr "一般" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 -#, fuzzy -msgid "Manually set min/max values for the y-axis." -msgstr "使用Y轴的对数刻度" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:84 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "最小值" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 -msgid "Map" -msgstr "地图" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +msgid "Minimum value on the gauge axis" +msgstr "量规轴上的最小值" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 +msgid "Max" +msgstr "最大值" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +msgid "Maximum value on the gauge axis" +msgstr "量规轴上的最大值" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:105 +msgid "Start angle" +msgstr "开始时间" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 +msgid "Angle at which to start progress axis" +msgstr "开始进度轴的角度" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:115 +msgid "End angle" +msgstr "结束角度" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 +msgid "Angle at which to end progress axis" +msgstr "进度轴结束的角度" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:128 +msgid "Font size" +msgstr "字体大小" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 +msgid "Font size for axis labels, detail value and other text elements" +msgstr "轴标签、详图值和其他文本元素的字体大小" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:290 +msgid "Value format" +msgstr "数值格式" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 -msgid "Map Style" -msgstr "地图样式" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "附加文本到数据前(后),例如:单位" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 -msgid "MapBox" -msgstr "MapBox地图" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 +msgid "Show pointer" +msgstr "显示鼠标" -#: superset/viz.py:2258 -msgid "Mapbox" -msgstr "箱图" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 +msgid "Whether to show the pointer" +msgstr "是否显示笔划" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 -msgid "March" -msgstr "三月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 +msgid "Animation" +msgstr "动画" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 -msgid "Margin" -msgstr "边距(margin)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 +msgid "Whether to animate the progress and the value or just display them" +msgstr "是以动画形式显示进度和值,还是仅显示它们" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 -msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 +msgid "Axis" +msgstr "坐标轴" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 -msgid "Marker" -msgstr "标记" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 +msgid "Show axis line ticks" +msgstr "显示轴线刻度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 -msgid "Marker Size" -msgstr "标记大小" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 +msgid "Whether to show minor ticks on the axis" +msgstr "是否忽略空位置" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 -msgid "Marker labels" -msgstr "标记标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 +msgid "Show split lines" +msgstr "显示分割线" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 -msgid "Marker line labels" -msgstr "标记线标签" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 +msgid "Whether to show the split lines on the axis" +msgstr "是否显示Y轴的最小值和最大值" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 -msgid "Marker lines" -msgstr "标记线" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 +msgid "Split number" +msgstr "数字" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 -msgid "Marker size" -msgstr "标记大小" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 +msgid "Number of split segments on the axis" +msgstr "轴上分割段的数目" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 -msgid "Markers" -msgstr "标记" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 +msgid "Progress" +msgstr "进度" -#: superset-frontend/src/explore/controlPanels/Separator.js:32 -msgid "Markup type" -msgstr "Markup 类型" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "显示进度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 -msgid "Max" -msgstr "最大值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 +msgid "Whether to show the progress of gauge chart" +msgstr "是否显示量规图进度" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 -msgid "Max Bubble Size" -msgstr "最大气泡的尺寸" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 +msgid "Overlap" +msgstr "重叠" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 -msgid "Max Events" -msgstr "最大事件数" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" +msgstr "当有多组数据时进度条是否重叠" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 -msgid "Maximum" -msgstr "最大" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 +msgid "Round cap" +msgstr "国家地图" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 -msgid "Maximum Font Size" -msgstr "最大字体大小" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 +msgid "Style the ends of the progress bar with a round cap" +msgstr "用圆帽设置进度条末端的样式" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 -msgid "Maximum Radius" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 +msgid "Intervals" +msgstr "间隔" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 +msgid "Interval bounds" +msgstr "区间间隔" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 msgid "" -"Maximum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this maximum radius." -msgstr "" +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." +msgstr "逗号分隔的区间界限,例如0-2、2-4和4-5区间的2、4、5。最后一个数字应与为Max提供的值匹配。" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 -#, fuzzy -msgid "Maximum value" -msgstr "最大" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 +msgid "Interval colors" +msgstr "间隔颜色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 -msgid "Maximum value on the gauge axis" -msgstr "量规轴上的最大值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 +msgid "" +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." +msgstr "间隔的逗号分隔色选项,例如1、2、4。整数表示所选配色方案中的颜色,并以1为索引。长度必须与间隔界限匹配。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 -msgid "May" -msgstr "五月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:46 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." +msgstr "使用一个度量来展示实现目标的度量的进展" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 -msgid "Mean of values over specified period" -msgstr "特定时期内的平均值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:50 +msgid "Gauge Chart" +msgstr "仪表图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 -#, fuzzy -msgid "Mean values" -msgstr "限制选择器值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +msgid "Name of the source nodes" +msgstr "源节点名称" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 -msgid "Median" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 +msgid "Name of the target nodes" +msgstr "目标节点名称" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 -msgid "" -"Median edge width, the thickest edge will be 4 times thicker than the " -"thinnest." -msgstr "边缘宽度中间值,最厚的边缘将比最薄的边缘厚4倍" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:73 +msgid "Source category" +msgstr "数据库名称" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 msgid "" -"Median node size, the largest node will be 4 times larger than the " -"smallest" -msgstr "节点大小中位数,最大的节点将比最小的节点大4倍" +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." +msgstr "用于分配颜色的源节点类别。如果一个节点与多个类别关联,则只使用第一个类别" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 -#, fuzzy -msgid "Median values" -msgstr "限制选择器值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:86 +msgid "Target category" +msgstr "目标类别" -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 -msgid "Medium" -msgstr "中" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Category of target nodes" +msgstr "目标节点类别" -#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 -msgid "Menu actions trigger" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:105 +msgid "Chart options" +msgstr "图表选项" -#: superset-frontend/src/components/ReportModal/index.tsx:236 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 -msgid "Message content" -msgstr "消息内容" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 +msgid "Layout" +msgstr "布局" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 -msgid "Metadata" -msgstr "元数据" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:108 +msgid "Graph layout" +msgstr "图表布局" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 -msgid "Metadata Parameters" -msgstr "元数据参数" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:111 +msgid "Force" +msgstr "强制" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 -msgid "Metadata has been synced" -msgstr "元数据已同步" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:114 +msgid "Layout type of graph" +msgstr "图形的布局类型" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 -#: superset-frontend/src/explore/controlPanels/sections.tsx:248 -msgid "Method" -msgstr "方法" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:124 +msgid "Edge symbols" +msgstr "边符号" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 -#: superset-frontend/src/explore/controls.jsx:167 -#: superset-frontend/src/explore/controls.jsx:168 -#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:249 -msgid "Metric" -msgstr "指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 +msgid "Symbol of two ends of edge line" +msgstr "边线两端的符号" -#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 -#: superset/models/helpers.py:1529 -#, python-format -msgid "Metric '%(metric)s' does not exist" -msgstr "指标 '%(metric)s' 不存在" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:128 +msgid "None -> None" +msgstr "无->无" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 -msgid "Metric ascending" -msgstr "指标升序" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 +msgid "None -> Arrow" +msgstr "无-> 箭头" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 -#: superset-frontend/src/explore/controls.jsx:402 -msgid "Metric assigned to the [X] axis" -msgstr "分配给 [X] 轴的指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 +msgid "Circle -> Arrow" +msgstr "圆 -> 箭头" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 -#: superset-frontend/src/explore/controls.jsx:410 -msgid "Metric assigned to the [Y] axis" -msgstr "分配给 [Y] 轴的指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 +msgid "Circle -> Circle" +msgstr "圆 -> 圆" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:141 +msgid "Enable node dragging" +msgstr "启用节点拖动" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:144 +msgid "Whether to enable node dragging in force layout mode." +msgstr "是否在强制布局模式下启用节点拖动。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 -msgid "Metric change in value from `since` to `until`" -msgstr "从 `since` 到 `until` 的度量值变化" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:268 +msgid "Enable graph roaming" +msgstr "启用图形漫游" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 -msgid "Metric descending" -msgstr "指标降序" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:272 +msgid "Disabled" +msgstr "禁用" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 -msgid "Metric factor change from `since` to `until`" -msgstr "度量因子从 `since` 到 `until` 的变化" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:273 +msgid "Scale only" +msgstr "存在规模" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 -msgid "Metric for node values" -msgstr "节点值的度量" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:274 +msgid "Move only" +msgstr "移动" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 -#, fuzzy -msgid "Metric name" -msgstr "查询名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 +msgid "Scale and Move" +msgstr "缩放和移动" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 -#, python-format -msgid "Metric name [%s] is duplicated" -msgstr "指标名称 [%s] 重复" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 +msgid "Whether to enable changing graph position and scaling." +msgstr "是否启用更改图形位置和缩放。" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 -msgid "Metric percent change in value from `since` to `until`" -msgstr "从 `since` 到 `until` 的价值变化百分比" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:182 +msgid "Node select mode" +msgstr "节点选择模式" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 -msgid "Metric that defines the size of the bubble" -msgstr "定义指标的气泡大小" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +msgid "Single" +msgstr "我的编辑" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 -msgid "Metric to display bottom title" -msgstr "显示底部标题的度量值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 +msgid "Multiple" +msgstr "多方" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 -msgid "Metric to sort the results by" -msgstr "按照指标的结果进行排序" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:189 +msgid "Allow node selections" +msgstr "允许多节点选择" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 -msgid "Metric used as a weight for the grid's coloring" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:198 +msgid "Label threshold" +msgstr "标签阈值" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 -msgid "Metric used to calculate bubble size" -msgstr "用来计算气泡大小的公制" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:202 +msgid "Minimum value for label to be displayed on graph." +msgstr "在图形上显示标签的最小值。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 -msgid "Metric used to control height" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:213 +msgid "Node size" +msgstr "节点大小" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 -#, fuzzy +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:217 msgid "" -"Metric used to define how the top series are sorted if a series or cell " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." -msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "节点大小中位数,最大的节点将比最小的节点大4倍" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 -#: superset-frontend/src/explore/controls.jsx:367 -msgid "" -"Metric used to define how the top series are sorted if a series or row " -"limit is present. If undefined reverts to the first metric (where " -"appropriate)." -msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:226 +msgid "Edge width" +msgstr "边缘宽度" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 -#, fuzzy +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:230 msgid "" -"Metric used to order the limit if a series limit is present. If undefined" -" reverts to the first metric (where appropriate)." -msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" +"Median edge width, the thickest edge will be 4 times thicker than the " +"thinnest." +msgstr "边缘宽度中间值,最厚的边缘将比最薄的边缘厚4倍" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 -#: superset-frontend/src/explore/controls.jsx:152 -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:206 -msgid "Metrics" -msgstr "指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:241 +msgid "Edge length" +msgstr "边长" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 -msgid "" -"Metrics for which percentage of total are to be displayed. Calculated " -"from only data within the row limit." -msgstr "要显示其占总数百分比的指标。只计算行限制内的只读存储器数据。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:247 +msgid "Edge length between nodes" +msgstr "节点之间的边长" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 -#, fuzzy -msgid "Middle" -msgstr "文件" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:262 +msgid "Gravity" +msgstr "重力" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 -msgid "Midnight" -msgstr "凌晨(当天)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:268 +msgid "Strength to pull the graph toward center" +msgstr "将图形拉向中心" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 -#, fuzzy -msgid "Miles" -msgstr "过滤" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:283 +msgid "Repulsion" +msgstr "表达式" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 -#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 -msgid "Min" -msgstr "最小值" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:289 +msgid "Repulsion strength between nodes" +msgstr "节点间的斥力" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 -msgid "Min Periods" -msgstr "最小周期" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:304 +msgid "Friction" +msgstr "摩擦" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 -msgid "Min Width" -msgstr "最小宽度" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:310 +msgid "Friction between nodes" +msgstr "节点之间的摩擦" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 -#: superset-frontend/src/explore/controlPanels/sections.tsx:162 -msgid "Min periods" -msgstr "最小周期" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:36 +msgid "" +"Displays connections between entities in a graph structure. Useful for " +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." +msgstr "显示图形结构中实体之间的连接。用于映射关系和显示网络中哪些节点是重要的。图表可以配置为强制引导或循环。如果您的数据具有地理空间组件,请尝试使用deck.gl圆弧图表。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 -msgid "Min/max (no outliers)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:40 +msgid "Graph Chart" +msgstr "圆点图" -#: superset-frontend/src/features/home/ChartTable.tsx:153 -#: superset-frontend/src/features/home/DashboardTable.tsx:164 -#: superset-frontend/src/features/home/SavedQueries.tsx:251 -msgid "Mine" -msgstr "我的编辑" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:46 +msgid "Structural" +msgstr "结构" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 -msgid "Minimum" -msgstr "最小" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:155 +msgid "Whether to sort descending or ascending" +msgstr "是降序还是升序排序" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 -msgid "Minimum Font Size" -msgstr "最小字体大小" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +msgid "Series type" +msgstr "图示类型" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 -#, fuzzy -msgid "Minimum Radius" -msgstr "点半径" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:150 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "Smooth Line" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 -msgid "Minimum leaf node event count" -msgstr "节点最小事件数" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:86 +msgid "Step - start" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 -msgid "" -"Minimum radius size of the circle, in pixels. As the zoom level changes, " -"this insures that the circle respects this minimum radius." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:153 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 +msgid "Step - middle" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 -msgid "Minimum threshold in percentage points for showing labels." -msgstr "标签显示百分比最小阈值" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:88 +msgid "Step - end" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 -#, fuzzy -msgid "Minimum value" -msgstr "空值" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:90 +msgid "Series chart type (line, bar etc)" +msgstr "系列图表类型(折线,柱状图等)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 -msgid "Minimum value for label to be displayed on graph." -msgstr "在图形上显示标签的最小值。" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:165 +msgid "Stack series" +msgstr "已保存查询" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 -msgid "Minimum value on the gauge axis" -msgstr "量规轴上的最小值" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:177 +msgid "Area chart" +msgstr "面积图" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 -msgid "Minor Split Line" -msgstr "小的分模线" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:97 +msgid "Draw area under curves. Only applicable for line types." +msgstr "在曲线下绘制区域。仅适用于线型。" -#: superset/db_engine_specs/base.py:100 -msgid "Minute" -msgstr "分钟" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:211 +msgid "Opacity of area chart." +msgstr "面积图的不透明度" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 -#, python-format -msgid "Minutes %s" -msgstr "%s分钟" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 +msgid "Marker" +msgstr "标记" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 -#, fuzzy -msgid "Missing URL parameters" -msgstr "编辑模板参数" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:130 +msgid "Draw a marker on data points. Only applicable for line types." +msgstr "在数据点上绘制标记。仅适用于线型。" -#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 -msgid "Missing dataset" -msgstr "丢失数据集" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:234 +msgid "Marker size" +msgstr "标记大小" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:239 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:146 +msgid "Size of marker. Also applies to forecast observations." +msgstr "标记的大小也适用于预测观察。”" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:252 +msgid "Primary" +msgstr "主键" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:253 +msgid "Secondary" +msgstr "次要的" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:258 +msgid "Primary or secondary y-axis" +msgstr "主或次y轴" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 #, fuzzy -msgid "Mixed Chart" -msgstr "最小化图表" +msgid "Shared query fields" +msgstr "已保存查询" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 -msgid "Mixed Time-Series" -msgstr "混和时间序列" - -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:277 -#: superset-frontend/src/pages/AlertReportList/index.tsx:335 -#: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:375 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 -#: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 -#: superset/views/sql_lab/views.py:85 -msgid "Modified" -msgstr "已修改" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:292 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:303 +msgid "Query A" +msgstr "查询 A" -#: superset-frontend/src/features/charts/ChartCard.tsx:158 -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 -#: superset-frontend/src/features/home/ActivityTable.tsx:121 -#: superset-frontend/src/features/tags/TagCard.tsx:105 -#, python-format -msgid "Modified %s" -msgstr "最后修改 %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:293 +#, fuzzy +msgid "Advanced analytics Query A" +msgstr "高级分析" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 -#: superset-frontend/src/pages/ChartList/index.tsx:431 -#: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:385 -msgid "Modified by" -msgstr "修改人" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:294 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:304 +msgid "Query B" +msgstr "查询 B" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 -#, python-format -msgid "Modified columns: %s" -msgstr "修改的列:%s" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +#, fuzzy +msgid "Advanced analytics Query B" +msgstr "高级分析" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 -msgid "Monday" -msgstr "星期一" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:308 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 +msgid "Data Zoom" +msgstr "数据缩放" -#: superset/db_engine_specs/base.py:109 -msgid "Month" -msgstr "月" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:311 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:162 +msgid "Enable data zooming controls" +msgstr "启用数据缩放控件" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 -#, python-format -msgid "Months %s" -msgstr "%s月" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:220 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:208 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:202 +msgid "Minor Split Line" +msgstr "小的分模线" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:333 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:223 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:211 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:205 +msgid "Draw split lines for minor y-axis ticks" +msgstr "绘制次要y轴记号的分割线" -#: superset-frontend/src/components/DropdownContainer/index.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:358 #, fuzzy -msgid "More" -msgstr "查看更多" +msgid "Primary y-axis Bounds" +msgstr "主轴格式" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:361 #, fuzzy -msgid "More filters" -msgstr "日期过滤器" +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 -msgid "Move only" -msgstr "移动" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:375 +msgid "Primary y-axis format" +msgstr "主轴格式" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 -msgid "Moves the given set of dates by a specified interval." -msgstr "将给定的日期集以指定的间隔进行移动" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:388 +msgid "Logarithmic scale on primary y-axis" +msgstr "对数刻度在主y轴上" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 -msgid "Multi-Dimensions" -msgstr "多维度" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:397 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "次级y轴格式" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -msgid "Multi-Layers" -msgstr "多层" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:400 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 -msgid "Multi-Levels" -msgstr "多层次" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:414 +msgid "Secondary y-axis format" +msgstr "次级y轴格式" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:33 -msgid "Multi-Variables" -msgstr "多元" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:423 +#, fuzzy +msgid "Secondary currency format" +msgstr "次级y轴格式" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 -msgid "Multiple" -msgstr "多方" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +msgid "Secondary y-axis title" +msgstr "二级轴标题" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 -msgid "Multiple Line Charts" -msgstr "复合折线图" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:447 +msgid "Logarithmic scale on secondary y-axis" +msgstr "二次y轴上的对数刻度" -#: superset/views/database/views.py:468 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:58 +#, fuzzy msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please " -"make sure all files are of the same extension." -msgstr "柱状上传不允许使用多个文件扩展名请确保所有文件的扩展名相同。" +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." +msgstr "使用相同的x轴时间范围可视化两个不同的时间序列。请注意,每个时间序列可以以不同的方式可视化(例如1个使用条形图,1个使用线条)。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 #, fuzzy -msgid "Multiple filtering" -msgstr "自适配过滤条件" +msgid "Mixed Chart" +msgstr "最小化图表" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 -msgid "" -"Multiple formats accepted, look the geopy.points Python library for more " -"details" -msgstr "接受多种格式,查看geopy.points库以获取更多细节" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:164 +msgid "Put the labels outside of the pie?" +msgstr "是否将标签显示在饼图外侧?" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "Multiple selections allowed, otherwise filter is limited to a single value" -msgstr "允许多选下拉框,不勾选的话过滤器就是单选下拉框" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:175 +msgid "Label Line" +msgstr "标签线" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 -#, fuzzy -msgid "Multiplier" -msgstr "多方" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:178 +msgid "Draw line from Pie to label when labels outside?" +msgstr "当标签在外侧时,是否在饼图到标签之间连线?" -#: superset/dashboards/commands/exceptions.py:39 -msgid "Must be unique" -msgstr "需要唯一" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:99 +#, fuzzy +msgid "Show Total" +msgstr "显示总计" -#: superset/reports/commands/exceptions.py:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:102 #, fuzzy -msgid "Must choose either a chart or a dashboard" -msgstr "选择图表或看板,不能都全部选择" +msgid "Whether to display the aggregate count" +msgstr "是否显示笔划" -#: superset/viz.py:2283 -msgid "Must have a [Group By] column to have 'count' as the [Label]" -msgstr "[Group By] 列必须要有 ‘count’字段作为 [标签]" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:199 +msgid "Pie shape" +msgstr "饼图形状" -#: superset/viz.py:1666 -msgid "Must have at least one numeric column specified" -msgstr "必须至少指明一个数值列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:205 +msgid "Outer Radius" +msgstr "外缘" -#: superset/databases/ssh_tunnel/commands/exceptions.py:63 -msgid "Must provide credentials for the SSH Tunnel" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:211 +msgid "Outer edge of Pie chart" +msgstr "饼图外缘" -#: superset/models/helpers.py:1848 -msgid "Must specify a value for filters with comparison operators" -msgstr "必须为带有比较操作符的过滤器指定一个值吗" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:232 +msgid "Inner Radius" +msgstr "内半径" -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 -msgid "My beautiful colors" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:238 +msgid "Inner radius of donut hole" +msgstr "圆环圈内部空洞的内径" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 -msgid "My column" -msgstr "我的列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:59 +msgid "" +"The classic. Great for showing how much of a company each investor gets, " +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" +"\n" +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." +msgstr "经典的,很好地展示了每个投资者获得了多少公司,“有多少人关注你的博客,或者预算的哪一部分流向了军事工业综合体饼状图很难精确解释。如果“相对比例”的清晰性很重要,可以考虑使用柱状图或其他图表来代替。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 -msgid "My metric" -msgstr "我的指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:68 +msgid "Pie Chart" +msgstr "饼图" -#: superset-frontend/src/constants.ts:139 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 -msgid "N/A" -msgstr "N/A" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:339 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:388 +#, fuzzy, python-format +msgid "Total: %s" +msgstr "显示总计" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 -#, fuzzy -msgid "NOT GROUPED BY" -msgstr "需要进行分组的一列或多列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 +msgid "The maximum value of metrics. It is an optional configuration" +msgstr "度量的最大值。这是一个可选配置" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 -msgid "NOV" -msgstr "十一月" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:122 +msgid "Label position" +msgstr "标签位置" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 -msgid "NOW" -msgstr "现在" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:158 +msgid "Radar" +msgstr "雷达" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 -#, fuzzy -msgid "NUMERIC" -msgstr "我的指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:164 +msgid "Customize Metrics" +msgstr "自定义指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 -#: superset-frontend/src/pages/AlertReportList/index.tsx:272 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:345 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 -#: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/views/chart/mixin.py:85 -msgid "Name" -msgstr "名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 +msgid "Further customize how to display each metric" +msgstr "进一步定制如何显示每个指标" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 -msgid "Name is required" -msgstr "需要名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:198 +msgid "Circle radar shape" +msgstr "圆形雷达图" -#: superset/annotation_layers/commands/exceptions.py:66 -msgid "Name must be unique" -msgstr "名称必须是唯一的" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:201 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "雷达渲染类型,是否显示圆形" -#: superset/views/database/forms.py:416 -msgid "Name of table to be created from columnar data." -msgstr "从列存储数据创建的表的名称。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:57 +msgid "" +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." +msgstr "在多个组中可视化一组平行的度量。每个组都使用自己的点线进行可视化,每个度量在图表中表示为一条边。" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:61 +msgid "Radar Chart" +msgstr "雷达图" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "主计量指标" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 +msgid "The primary metric is used to define the arc segment sizes" +msgstr "主计量指标用于定义弧段大小。" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "次计量指标" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" +msgstr "次计量指标用来定义颜色与主度量的比率。如果两个度量匹配,则将颜色映射到级别组" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." +msgstr "如果只提供了一个主计量指标,则使用分类色阶。" -#: superset/views/database/forms.py:280 -msgid "Name of table to be created from excel data." -msgstr "从excel数据将创建的表的名称。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 +msgid "When a secondary metric is provided, a linear color scale is used." +msgstr "当提供次计量指标时,会使用线性色阶。" -#: superset/views/database/forms.py:129 -#, fuzzy -msgid "Name of table to be created with CSV file" -msgstr "从CSV数据将创建的表的名称。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 +msgid "Hierarchy" +msgstr "层次" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 -msgid "Name of the column containing the id of the parent node" -msgstr "包含父节点id的列的名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 -msgid "Name of the id column" -msgstr "ID列名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:42 +msgid "" +"Uses circles to visualize the flow of data through different stages of a " +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." +msgstr "使用圆圈来可视化系统不同阶段的数据流。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 -msgid "Name of the source nodes" -msgstr "源节点名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:46 +msgid "Sunburst Chart" +msgstr "旭日/太阳图" -#: superset/connectors/sqla/views.py:335 -msgid "Name of the table that exists in the source database" -msgstr "源数据库中存在的表名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +msgid "Multi-Levels" +msgstr "多层次" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 -msgid "Name of the target nodes" -msgstr "目标节点名称" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:77 +msgid "When using other than adaptive formatting, labels may overlap" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 -msgid "Name your database" -msgstr "您的数据集" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:48 +#, fuzzy +msgid "" +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." +msgstr "用于可视化时间序列数据。在步进图、折线图、散点图和条形图之间进行选择,也有许多自定义选项" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 -msgid "Need help? Learn how to connect your database" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 +#, fuzzy +msgid "Generic Chart" +msgstr "所有图表" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:578 +msgid "zoom area" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 -msgid "Need help? Learn more about" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:579 +msgid "restore zoom" msgstr "" -#: superset-frontend/src/utils/getClientErrorObject.ts:132 -#, fuzzy -msgid "Network error" -msgstr "网络异常。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:78 +msgid "Series Style" +msgstr "线条样式" -#: superset-frontend/src/components/Chart/chartReducer.ts:108 -#: superset-frontend/src/components/Chart/chartReducer.ts:169 -msgid "Network error." -msgstr "网络异常。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:114 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:108 +msgid "Area chart opacity" +msgstr "面积图不透明度" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 -msgid "New chart" -msgstr "新增图表" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:114 +msgid "Opacity of Area Chart. Also applies to confidence band." +msgstr "区域图的不透明度。也适用于置信带" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 -#, python-format -msgid "New columns added: %s" -msgstr "新增的列:%s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:141 +msgid "Marker Size" +msgstr "标记大小" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:54 #, fuzzy -msgid "New dataset" -msgstr "修改数据集" +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "时间序列面积图与折线图相似,因为它们表示具有相同比例的变量,但面积图将度量叠加在一起。超级集中的面积图可以是流式、堆栈式或展开式" -#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 +msgid "Area Chart" +msgstr "面积图" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:102 #, fuzzy -msgid "New dataset name" -msgstr "数据集名称" +msgid "Axis Title" +msgstr "选项卡标题" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 -msgid "New filter set" -msgstr "新的过滤器" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +msgid "AXIS TITLE MARGIN" +msgstr "" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 #, fuzzy -msgid "New header" -msgstr "子标题" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 -msgid "New tab" -msgstr "关闭标签" +msgid "AXIS TITLE POSITION" +msgstr "行小计的位置" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 -msgid "New tab (Ctrl + q)" -msgstr "新建Tab页 (Ctrl + q)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:182 +#, fuzzy +msgid "Axis Format" +msgstr "Y 轴格式化" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 -msgid "New tab (Ctrl + t)" -msgstr "新建Tab页 (Ctrl + t)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:197 +#, fuzzy +msgid "Logarithmic axis" +msgstr "对数轴" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 -msgid "Next" -msgstr "之后" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:211 +#, fuzzy +msgid "Draw split lines for minor axis ticks" +msgstr "绘制次要y轴记号的分割线" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 -msgid "Nightingale Rose Chart" -msgstr "南丁格尔玫瑰图" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:224 +#, fuzzy +msgid "Truncate Axis" +msgstr "截断Y轴" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 -#: superset-frontend/src/pages/ChartList/index.tsx:599 -#: superset-frontend/src/pages/ChartList/index.tsx:708 -#: superset-frontend/src/pages/DashboardList/index.tsx:507 -#: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:479 -#: superset-frontend/src/pages/DatabaseList/index.tsx:499 -#: superset-frontend/src/pages/DatasetList/index.tsx:584 -msgid "No" -msgstr "否" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:227 +#, fuzzy +msgid "It’s not recommended to truncate axis in Bar chart." +msgstr "不建议截断柱状图中的y轴。" -#: superset-frontend/src/pages/AlertReportList/index.tsx:439 -#, python-format -msgid "No %s yet" -msgstr "还没有 %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:238 +#, fuzzy +msgid "Axis Bounds" +msgstr "Y 轴界限" -#: superset/templates/superset/request_access.html:20 -msgid "No Access!" -msgstr "不能访问!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:241 +#, fuzzy +msgid "" +"Bounds for the axis. When left empty, the bounds are dynamically defined " +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" -#: superset-frontend/src/components/ListView/ListView.tsx:420 -#: superset-frontend/src/profile/components/RecentActivity.tsx:52 -msgid "No Data" -msgstr "没有数据" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:263 +#, fuzzy +msgid "Chart Orientation" +msgstr "方向" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 -msgid "No Results" -msgstr "无结果" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:272 +#, fuzzy +msgid "Bar orientation" +msgstr "方向" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:276 #, fuzzy -msgid "No Rules yet" -msgstr "最近" +msgid "Horizontal" +msgstr "比例" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 #, fuzzy -msgid "No annotation layers" -msgstr "注解层" +msgid "Orientation of bar chart" +msgstr "树的方向" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 -msgid "No annotation layers yet" -msgstr "没有注释层" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:60 +#, fuzzy +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "时间序列条形图用于显示指标随时间的变化" -#: superset-frontend/src/pages/AnnotationList/index.tsx:242 -msgid "No annotation yet" -msgstr "没有注释" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:74 +msgid "Bar Chart" +msgstr "条形图" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:59 #, fuzzy -msgid "No applied filters" -msgstr "删除该行" +msgid "" +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." +msgstr "时间序列折线图用于可视化在规则时间间隔内进行的重复测量。折线图是一种图表,它将信息显示为一系列由直线段连接的数据点。它是许多领域中常见的一种基本类型的图表。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 +msgid "Line Chart" +msgstr "多线图" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:58 #, fuzzy -msgid "No available filters." -msgstr "所有过滤" +msgid "" +"Scatter Plot has the horizontal axis in linear units, and the points are " +"connected in order. It shows a statistical relationship between two " +"variables." +msgstr "时间序列散点图在水平轴上以线性单位表示时间,点按顺序连接。它显示了两个变量之间的统计关系" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 -#: superset-frontend/src/profile/components/CreatedContent.tsx:61 -msgid "No charts" -msgstr "没有图表" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 +msgid "Scatter Plot" +msgstr "散点图" -#: superset-frontend/src/features/home/EmptyState.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:58 #, fuzzy -msgid "No charts yet" -msgstr "没有图表" +msgid "" +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." +msgstr "时间序列平滑线是折线图的变体。没有角度和硬边,平滑线看起来更聪明、更专业。" -#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 -msgid "No columns" -msgstr "没有列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:74 +msgid "Step type" +msgstr "数据类型" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:78 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 +msgid "Start" +msgstr "开始" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 #, fuzzy -msgid "No columns found" -msgstr "找不到兼容的列" +msgid "Middle" +msgstr "文件" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 -msgid "No compatible columns found" -msgstr "找不到兼容的列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:80 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 +msgid "End" +msgstr "结束" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:82 +msgid "" +"Defines whether the step should appear at the beginning, middle or end " +"between two data points" +msgstr "定义步骤应出现在两个数据点之间的开始、中间还是结束处" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:49 #, fuzzy -msgid "No compatible datasets found" -msgstr "找不到兼容的列" +msgid "" +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." +msgstr "“时间序列步进折线图(也称为步进图)是折线图的一种变体,但线条在数据点之间形成一系列步进。当您希望显示不规则间隔发生的变化时,步进图可能很有用。”" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 #, fuzzy -msgid "No compatible schema found" -msgstr "找不到兼容的列" +msgid "Stepped Line" +msgstr "时间序列阶梯图" -#: superset-frontend/src/profile/components/CreatedContent.tsx:91 -msgid "No dashboards" -msgstr "没有看板" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:50 +msgid "Id" +msgstr "Id" -#: superset-frontend/src/features/home/EmptyState.tsx:35 -#, fuzzy -msgid "No dashboards yet" -msgstr "没有看板" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 +msgid "Name of the id column" +msgstr "ID列名称" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 -#: superset-frontend/src/components/Table/index.tsx:207 -#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 -#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 -msgid "No data" -msgstr "没有数据" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:60 +msgid "Parent" +msgstr "父类" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 -msgid "No data after filtering or data is NULL for the latest time record" -msgstr "过滤后没有数据,或者最新时间记录的数据为NULL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 +msgid "Name of the column containing the id of the parent node" +msgstr "包含父节点id的列的名称" -#: superset/dashboards/commands/importers/v0.py:304 -msgid "No data in file" -msgstr "文件中无数据" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +msgid "Optional name of the data column." +msgstr "数据列的可选名称" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 -#, fuzzy -msgid "No database tables found" -msgstr "数据库没有找到" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:84 +msgid "Root node id" +msgstr "根节点id" -#: superset-frontend/src/components/EmptyState/index.tsx:228 -msgid "No databases match your search" -msgstr "没有与您的搜索匹配的数据库" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 +msgid "Id of root node of the tree." +msgstr "树的根节点的ID。" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:845 -msgid "No description available." -msgstr "没有可用的描述" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:96 +msgid "Metric for node values" +msgstr "节点值的度量" -#: superset-frontend/src/profile/components/Favorites.tsx:61 -msgid "No favorite charts yet, go click on stars!" -msgstr "暂无收藏的图表,去点击星星吧!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:115 +msgid "Tree layout" +msgstr "布局" -#: superset-frontend/src/profile/components/Favorites.tsx:89 -msgid "No favorite dashboards yet, go click on stars!" -msgstr "暂无收藏的看板,去点击星星吧!" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 +msgid "Orthogonal" +msgstr "正交化" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 -#: superset-frontend/src/explore/controls.jsx:326 -msgid "No filter" -msgstr "无筛选" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:119 +msgid "Radial" +msgstr "径向" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 -msgid "No filter is selected." -msgstr "未选择过滤条件。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:244 +msgid "Layout type of tree" +msgstr "树的布局类型" -#: superset-frontend/src/components/Table/index.tsx:204 -#, fuzzy -msgid "No filters" -msgstr "无筛选" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:132 +msgid "Tree orientation" +msgstr "方向" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 -#, fuzzy -msgid "No filters are currently added to this dashboard." -msgstr "此看板中没有过滤条件。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Left to Right" +msgstr "从左到右" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 -msgid "No form settings were maintained" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:136 +msgid "Right to Left" +msgstr "右到左" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 -msgid "No global filters are currently added" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:137 +msgid "Top to Bottom" +msgstr "点击回顶部" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#, fuzzy -msgid "No matching records found" -msgstr "没有找到任何记录" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 +msgid "Bottom to Top" +msgstr "自下而上" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 -msgid "No of Bins" -msgstr "直方图容器数" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 +msgid "Orientation of tree" +msgstr "树的方向" -#: superset-frontend/src/features/home/EmptyState.tsx:36 -#, fuzzy -msgid "No recents yet" -msgstr "最近" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:153 +msgid "Node label position" +msgstr "节点标签位置" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 -#: superset/templates/appbuilder/general/widgets/base_list.html:64 -msgid "No records found" -msgstr "没有找到任何记录" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 +msgid "left" +msgstr "警报" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 -#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:175 #, fuzzy -msgid "No results" -msgstr "无结果" +msgid "top" +msgstr "停止" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 -msgid "No results found" -msgstr "未找到结果" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:158 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:176 +msgid "right" +msgstr "高度" -#: superset-frontend/src/components/ListView/ListView.tsx:411 -msgid "No results match your filter criteria" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "bottom" +msgstr "底部" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 -msgid "No results were returned for this query" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +#, fuzzy +msgid "Position of intermediate node label on tree" +msgstr "中间节点标签在树中的位置" -#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 -msgid "" -"No results were returned for this query. If you expected results to be " -"returned, ensure any filters are configured properly and the datasource " -"contains data for the selected time range." -msgstr "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:171 +msgid "Child label position" +msgstr "子标签位置" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 -msgid "No rows were returned for this dataset" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "Position of child node label on tree" +msgstr "子节点标签在树上的位置" -#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 -#, fuzzy -msgid "No samples were returned for this dataset" -msgstr "此数据集没有启用简单的特别度量" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:189 +msgid "Emphasis" +msgstr "重点" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 -#, fuzzy -msgid "No saved expressions found" -msgstr "保存表达式" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 +msgid "ancestor" +msgstr "上一个" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -#, fuzzy -msgid "No saved metrics found" -msgstr "%s 列与计量指标" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:193 +msgid "descendant" +msgstr "降序" -#: superset-frontend/src/features/home/EmptyState.tsx:37 -#, fuzzy -msgid "No saved queries yet" -msgstr "已保存查询" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 +msgid "Which relatives to highlight on hover" +msgstr "在悬停时突出显示哪些关系" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 -msgid "No stored results found, you need to re-run your query" -msgstr "找不到存储的结果,需要重新运行查询" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:208 +msgid "Symbol" +msgstr "符号" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 -msgid "No such column found. To filter on a metric, try the Custom SQL tab." -msgstr "没有发现这样的列。若要在度量值上筛选,请尝试自定义SQL选项卡。" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:212 +msgid "Empty circle" +msgstr "空圈" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 -#, fuzzy -msgid "No table columns" -msgstr "没有时间列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:216 +msgid "Circle" +msgstr "圆" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 -#, fuzzy -msgid "No temporal columns found" -msgstr "找不到兼容的列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:220 +msgid "Rectangle" +msgstr "长方形" -#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 -msgid "No time columns" -msgstr "没有时间列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:224 +msgid "Triangle" +msgstr "三角形" -#: superset/databases/commands/exceptions.py:152 -msgid "No validator found (configured for the engine)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:228 +msgid "Diamond" +msgstr "下钻" -#: superset/databases/commands/validate_sql.py:114 -msgid "No validator named {} found (configured for the {} engine)" -msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:232 +msgid "Pin" +msgstr "Pin" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 -msgid "Node label position" -msgstr "节点标签位置" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:236 +msgid "Arrow" +msgstr "箭头" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 -msgid "Node select mode" -msgstr "节点选择模式" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:253 +msgid "Symbol size" +msgstr "符号的大小" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 -msgid "Node size" -msgstr "节点大小" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:259 +msgid "Size of edge symbols" +msgstr "边缘符号的大小" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 -#: superset-frontend/src/explore/controlPanels/sections.tsx:134 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:128 -msgid "None" -msgstr "空" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:36 +msgid "" +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." +msgstr "使用熟悉的树状结构可视化多层次结构。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 -msgid "None -> Arrow" -msgstr "无-> 箭头" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:40 +msgid "Tree Chart" +msgstr "树状图" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 -msgid "None -> None" -msgstr "无->无" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:82 +msgid "Show Upper Labels" +msgstr "显示标签" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 -msgid "Normal" -msgstr "正常" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:85 +msgid "Show labels when the node has children." +msgstr "当节点有子节点时显示标签" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 -msgid "Normalize Across" -msgstr "标准化通过" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:98 +#, fuzzy +msgid "Key" +msgstr "蛇形图" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 -msgid "Normalized" -msgstr "标准化" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:57 +#, fuzzy +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "显示数据的层次关系与表示的值。按面积划分显示其占整体的比例" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 -msgid "Not Time Series" -msgstr "美誉时间序列" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:61 +msgid "Treemap" +msgstr "树状地图" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:22 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:89 #, fuzzy -msgid "Not added to any dashboard" -msgstr "添加到看板" +msgid "Total" +msgstr "显示总计" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:23 #, fuzzy -msgid "Not available" -msgstr "没有可用的描述" +msgid "Assist" +msgstr "重点" -#: superset-frontend/src/explore/constants.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:71 #, fuzzy -msgid "Not equal to (≠)" -msgstr "!= (不等于)" +msgid "Increase" +msgstr "创建" -#: superset-frontend/src/explore/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/constants.ts:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:80 #, fuzzy -msgid "Not in" -msgstr "注释" +msgid "Decrease" +msgstr "创建" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:121 -msgid "Not null" -msgstr "非空" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:64 +#, fuzzy +msgid "Series colors" +msgstr "时间序列的列" -#: superset-frontend/src/pages/AlertReportList/index.tsx:65 -msgid "Not triggered" -msgstr "没有触发" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/controlPanel.tsx:159 +msgid "" +"Breaks down the series by the category specified in this control.\n" +" This can help viewers understand how each category affects the " +"overall value." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 -msgid "Not up to date" -msgstr "不是最新的" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:53 +msgid "" +"A waterfall chart is a form of data visualization that helps in " +"understanding\n" +" the cumulative effect of sequentially introduced positive or " +"negative values.\n" +" These intermediate values can either be time based or category " +"based." +msgstr "" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 -msgid "Nothing triggered" -msgstr "无触发" +#: superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/index.ts:63 +#, fuzzy +msgid "Waterfall Chart" +msgstr "搜索所有图表" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 -#: superset-frontend/src/pages/AlertReportList/index.tsx:302 -msgid "Notification method" -msgstr "通知方式" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 +msgid "page_size.all" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 -msgid "November" -msgstr "十一月" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:581 +#: superset-frontend/src/components/Select/Select.tsx:595 +#: superset-frontend/src/components/Select/utils.tsx:158 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "加载中..." -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 -msgid "Now" -msgstr "现在" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 +msgid "Write a handlebars template to render the data" +msgstr "" -#: superset/views/database/forms.py:211 -#, fuzzy -msgid "Null Values" -msgstr "空值" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 +msgid "Handlebars" +msgstr "句柄图" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:112 +msgid "must have a value" +msgstr "必填" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 #, fuzzy -msgid "Null imputation" -msgstr "动画" +msgid "Handlebars Template" +msgstr "删除模板" -#: superset/datasets/filters.py:26 -msgid "Null or Empty" -msgstr "Null或空" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 +msgid "A handlebars template that is applied to the data" +msgstr "" -#: superset/views/database/forms.py:402 -msgid "Null values" -msgstr "空值" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +msgid "Include time" +msgstr "包含时间" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 -msgid "Number Format" -msgstr "数字格式" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +msgid "Whether to include the time granularity as defined in the time section" +msgstr "是否包含时间段中定义的时间粒度" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:121 +msgid "Percentage metrics" +msgstr "百分比指标" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:122 msgid "" -"Number bounds used for color encoding from red to blue.\n" -" Reverse the numbers for blue to red. To get pure red or " -"blue,\n" -" you can enter either only min or max." +"Select one or many metrics to display, that will be displayed in the " +"percentages of total. Percentage metrics will be calculated only from " +"data within the row limit. You can use an aggregation function on a " +"column or write custom SQL to create a percentage metric." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 -msgid "Number format" -msgstr "数字格式化" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:342 +msgid "Show totals" +msgstr "显示总计" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 -#, fuzzy -msgid "Number format string" -msgstr "数字格式化" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:344 +msgid "" +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." +msgstr "显示所选指标的总聚合。注意行限制并不应用于结果" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 -msgid "Number of buckets to group data" -msgstr "" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:272 +msgid "Ordering" +msgstr "排序" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 -msgid "Number of decimal digits to round numbers to" -msgstr "要四舍五入的十进制位数" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:273 +msgid "Order results by selected columns" +msgstr "按选定列对结果进行排序" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 -msgid "Number of decimal places with which to display lift values" -msgstr "用于显示升力值的小数位数" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:327 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1075 +msgid "Sort descending" +msgstr "降序" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 -msgid "Number of decimal places with which to display p-values" -msgstr "用于显示p值的小数位数" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:32 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:291 +msgid "Server pagination" +msgstr "服务器分页" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:292 +msgid "Enable server side pagination of results (experimental feature)" +msgstr "支持服务器端结果分页(实验功能)" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:313 +msgid "Server Page Length" +msgstr "页面长度" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:49 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:383 +msgid "Rows per page, 0 means no pagination" +msgstr "每页行数,0 表示没有分页" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:86 +msgid "Query mode" +msgstr "查询模式" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:80 +msgid "Group By, Metrics or Percentage Metrics must have a value" +msgstr "分组、指标或百分比指标必须具有值" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 +msgid "You need to configure HTML sanitization to use CSS" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 #, fuzzy -msgid "Number of periods to compare against" -msgstr "根据粒度、要比较的时间阶段" +msgid "CSS Styles" +msgstr "堆积样式" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 +msgid "CSS applied to the chart" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:36 +msgid "Filters for comparison must have a value" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:63 #, fuzzy -msgid "Number of periods to ratio against" -msgstr "根据粒度、要比较的时间阶段" +msgid "Range for Comparison" +msgstr "时间比较" -#: superset/views/database/forms.py:265 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:81 #, fuzzy -msgid "Number of rows of file to read" -msgstr "要读取的文件行数。" +msgid "Filters for Comparison" +msgstr "时间比较" -#: superset/views/database/forms.py:371 -msgid "Number of rows of file to read." -msgstr "要读取的文件行数。" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:189 +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/controlPanel.ts:192 +msgid "Add color for positive/negative change" +msgstr "" -#: superset/views/database/forms.py:271 -#, fuzzy -msgid "Number of rows to skip at start of file" -msgstr "在文件开始时跳过的行数。" +#: superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts:41 +msgid "Big Number with Time Period Comparison" +msgstr "" -#: superset/views/database/forms.py:365 -msgid "Number of rows to skip at start of file." -msgstr "在文件开始时跳过的行数。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:50 +msgid "Columns to group by on the columns" +msgstr "必须是分组列" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 -msgid "Number of split segments on the axis" -msgstr "轴上分割段的数目" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:59 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:115 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:323 +msgid "Rows" +msgstr "行" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 -msgid "Number of steps to take between ticks when displaying the X scale" -msgstr "显示 X 刻度时,在刻度之间表示的步骤数" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:60 +msgid "Columns to group by on the rows" +msgstr "行上分组所依据的列" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 -msgid "Number of steps to take between ticks when displaying the Y scale" -msgstr "显示 Y 刻度时,在刻度之间表示的步骤数" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:111 +msgid "Apply metrics on" +msgstr "应用指标到" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -msgid "Numerical range" -msgstr "数值范围" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:117 +msgid "Use metrics as a top level group for columns or for rows" +msgstr "将指标作为列或行的顶级组使用" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 -msgid "OCT" -msgstr "十月" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:130 +#, fuzzy +msgid "Cell limit" +msgstr "序列限制" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:238 -#: superset-frontend/src/components/Table/index.tsx:202 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 -msgid "OK" -msgstr "确认" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:131 +#, fuzzy +msgid "Limits the number of cells that get retrieved." +msgstr "限制显示的行数。" -#: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 -msgid "OVERWRITE" -msgstr "覆盖" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:141 +#, fuzzy +msgid "" +"Metric used to define how the top series are sorted if a series or cell " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 -msgid "October" -msgstr "十月" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:171 +msgid "Aggregation function" +msgstr "聚合功能" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 -msgid "Offline" -msgstr "离线" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:174 +#, fuzzy +msgid "Count" +msgstr "列" -#: superset/connectors/sqla/views.py:392 -msgid "Offset" -msgstr "偏移" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:175 +#, fuzzy +msgid "Count Unique Values" +msgstr "可被过滤" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +#, fuzzy +msgid "List Unique Values" +msgstr "限制选择器值" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:177 +msgid "Sum" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:178 +#, fuzzy +msgid "Average" +msgstr "大" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 +msgid "Median" +msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:66 -msgid "On Grace" -msgstr "在宽限期内" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 +msgid "Sample Variance" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:126 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered " -"series." -msgstr "要分组的一列或多列。高基数分组应包括序列限制,以限制提取和呈现的序列数。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 +#, fuzzy +msgid "Sample Standard Deviation" +msgstr "就业和教育" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 -msgid "" -"One or many columns to group by. High cardinality groupings should " -"include a sort by metric and series limit to limit the number of fetched " -"and rendered series." -msgstr "要分组的一列或多列。高基数分组应包括按度量排序和序列限制,以限制提取和呈现的序列数。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1146 +msgid "Minimum" +msgstr "最小" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 -msgid "One or many columns to pivot as columns" -msgstr "需要作为列属性进行透视的一列或多列" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1152 +msgid "Maximum" +msgstr "最大" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 -msgid "" -"One or many controls to group by. If grouping, latitude and longitude " -"columns must be present." -msgstr "使用一个或多个控件来分组。一旦分组,则纬度和经度列必须存在。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 +msgid "First" +msgstr "" -#: superset-frontend/src/explore/controls.jsx:245 -msgid "One or many controls to pivot as columns" -msgstr "一个或多个控件作为主列" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 +msgid "Last" +msgstr "上一" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 -#: superset-frontend/src/explore/controls.jsx:162 -msgid "One or many metrics to display" -msgstr "一个或多个指标显示" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +msgid "Sum as Fraction of Total" +msgstr "" -#: superset/datasets/commands/exceptions.py:107 -msgid "One or more columns already exist" -msgstr "一个或多个列已存在" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +msgid "Sum as Fraction of Rows" +msgstr "" -#: superset/datasets/commands/exceptions.py:97 -msgid "One or more columns are duplicated" -msgstr "一个或多个列被复制" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +msgid "Sum as Fraction of Columns" +msgstr "" -#: superset/datasets/commands/exceptions.py:87 -msgid "One or more columns do not exist" -msgstr "一个或多个字段不存在" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 +msgid "Count as Fraction of Total" +msgstr "" -#: superset/datasets/commands/exceptions.py:136 -msgid "One or more metrics already exist" -msgstr "一个或多个度量已存在" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +msgid "Count as Fraction of Rows" +msgstr "" -#: superset/datasets/commands/exceptions.py:126 -msgid "One or more metrics are duplicated" -msgstr "一个或多个指标重复" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 +msgid "Count as Fraction of Columns" +msgstr "" -#: superset/datasets/commands/exceptions.py:116 -msgid "One or more metrics do not exist" -msgstr "一个或多个指标不存在" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:197 +msgid "" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" +msgstr "在旋转和计算总的行和列时,应用聚合函数" -#: superset/errors.py:119 -msgid "One or more parameters needed to configure a database are missing." -msgstr "数据库配置缺少所需的一个或多个参数。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:209 +msgid "Show rows total" +msgstr "显示总计行数" -#: superset/errors.py:133 -msgid "One or more parameters specified in the query are malformatted." -msgstr "查询中指定的一个或多个参数的格式不正确。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:212 +msgid "Display row level total" +msgstr "显示行级合计" -#: superset/errors.py:107 -msgid "One or more parameters specified in the query are missing." -msgstr "查询中指定的一个或多个参数丢失。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:221 +#, fuzzy +msgid "Show rows subtotal" +msgstr "显示总计行数" -#: superset/views/core.py:2029 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:224 #, fuzzy -msgid "" -"One or more required fields are missing in the request. Please try again," -" and if the problem persists contact your administrator." -msgstr "请求中缺少一个或多个必填字段。请重试,如果问题仍然存在,请与管理员联系。" +msgid "Display row level subtotal" +msgstr "显示行级合计" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 -msgid "One ore more annotation layers failed loading." -msgstr "一个或多个注释层加载失败。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:233 +msgid "Show columns total" +msgstr "显示总计" -#: superset/sql_lab.py:228 -msgid "Only SELECT statements are allowed against this database." -msgstr "此数据库只允许使用 `SELECT` 语句" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:236 +msgid "Display column level total" +msgstr "显示列级别合计" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 -msgid "Only Total" -msgstr "仅总计" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:245 +#, fuzzy +msgid "Show columns subtotal" +msgstr "显示总计" -#: superset/connectors/sqla/utils.py:122 -msgid "Only `SELECT` statements are allowed" -msgstr "将 SELECT 语句复制到剪贴板" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:248 +#, fuzzy +msgid "Display column level subtotal" +msgstr "显示列级别合计" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 -msgid "Only applies when \"Label Type\" is not set to a percentage." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:257 +msgid "Transpose pivot" +msgstr "转置透视图" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 -msgid "Only applies when \"Label Type\" is set to show values." -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:259 +msgid "Swap rows and columns" +msgstr "交换组和列" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 -msgid "Only selected panels will be affected by this filter" -msgstr "只有选定的面板将受此过滤条件的影响" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:269 +msgid "Combine metrics" +msgstr "整合指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 msgid "" -"Only show the total value on the stacked chart, and not show on the " -"selected category" -msgstr "仅在堆积图上显示合计值,而不在所选类别上显示" +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." +msgstr "在每个列中并排显示指标,而不是每个指标并排显示每个列。" -#: superset/connectors/sqla/utils.py:131 -msgid "Only single queries supported" -msgstr "仅支持单个查询" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:305 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:369 +msgid "D3 time format for datetime columns" +msgstr "D3时间格式的时间列" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 -#: superset/views/database/forms.py:436 -#, python-format -msgid "Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "仅允许以下文件扩展名:%(allowed_extensions)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:314 +msgid "Sort rows by" +msgstr "排序 " -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 -#, fuzzy -msgid "Oops! An error occurred!" -msgstr "发生了一个错误" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:346 +msgid "key a-z" +msgstr "a-z" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 -msgid "Opacity" -msgstr "不透明度" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:319 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:347 +msgid "key z-a" +msgstr "z-a" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 -msgid "Opacity of Area Chart. Also applies to confidence band." -msgstr "区域图的不透明度。也适用于置信带" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:320 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:348 +msgid "value ascending" +msgstr "指标升序" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 -msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "所有簇、点和标签的不透明度。在0到1之间。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:349 +msgid "value descending" +msgstr "指标降序" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 -msgid "Opacity of area chart." -msgstr "面积图的不透明度" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 +msgid "Change order of rows." +msgstr "更改行的顺序。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 -msgid "Opacity, expects values between 0 and 100" -msgstr "" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 +msgid "Available sorting modes:" +msgstr "可用分类模式:" -#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 -msgid "Open Datasource tab" -msgstr "打开数据源tab" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "By key: use row names as sorting key" +msgstr "使用行名作为排序关键字" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 -msgid "Open in SQL Lab" -msgstr "在 SQL 工具箱中打开" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 +msgid "By value: use metric values as sorting key" +msgstr "使用度量值作为排序关键字" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 -msgid "Open query in SQL Lab" -msgstr "在 SQL 工具箱中打开查询" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:342 +msgid "Sort columns by" +msgstr "对列按字母顺序进行排列" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 -#: superset/views/database/mixins.py:104 -msgid "" -"Operate the database in asynchronous mode, meaning that the queries are " -"executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend." -" Refer to the installation docs for more information." -msgstr "" -"以异步模式操作数据库,这意味着查询是在远程worker上执行的,而不是在web服务器本身上执行的, 这假设您有一个Celery worker " -"setup以及一个执行后端。有关更多信息,请参考安装文档。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Change order of columns." +msgstr "更改列的顺序。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 -msgid "Operator" -msgstr "运算符" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:357 +msgid "By key: use column names as sorting key" +msgstr "使用列名作为排序关键字" -#: superset/utils/pandas_postprocessing/utils.py:158 -#, python-format -msgid "Operator undefined for aggregator: %(name)s" -msgstr "未定义聚合器的运算符:%(name)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:370 +msgid "Rows subtotal position" +msgstr "行小计的位置" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 -msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" -" certain database engines." -msgstr "用于验证HTTPS请求的可选 CA_BUNDLE 内容。仅在某些数据库引擎上可用。" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:378 +msgid "Position of row level subtotal" +msgstr "行级小计的位置" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 -#, fuzzy -msgid "Optional d3 date format string" -msgstr "条件格式设置" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:387 +msgid "Columns subtotal position" +msgstr "列的小计位置" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 -#, fuzzy -msgid "Optional d3 number format string" -msgstr "条件格式设置" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:395 +msgid "Position of column level subtotal" +msgstr "列级小计的位置" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 -msgid "Optional name of the data column." -msgstr "数据列的可选名称" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:405 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 +msgid "Conditional formatting" +msgstr "条件格式设置" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 -msgid "Optional warning about use of this metric" -msgstr "关于使用此指标的可选警告" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:406 +msgid "Apply conditional color formatting to metrics" +msgstr "将条件颜色格式应用于指标" -# 以下部分来源于 superset-ui 项目 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 -msgid "Options" -msgstr "设置" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 +msgid "" +"Used to summarize a set of data by grouping together multiple statistics " +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." +msgstr "用于通过将多个统计信息分组在一起来汇总一组数据" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 -msgid "Or choose from a list of other databases we support:" -msgstr "或者从我们支持的其他数据库列表中选择:" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 +msgid "Pivot Table" +msgstr "透视表" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 -msgid "Order by entity id" -msgstr "按实体ID排序" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format +msgid "Total (%(aggregatorName)s)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 -msgid "Order results by selected columns" -msgstr "按选定列对结果进行排序" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 +msgid "Unknown input format" +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 -msgid "Ordering" -msgstr "排序" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:169 +msgid "search.num_records" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 -#, fuzzy -msgid "Orientation" -msgstr "方向" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:184 +msgid "page_size.show" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 -#, fuzzy -msgid "Orientation of bar chart" -msgstr "树的方向" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +msgid "page_size.entries" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:210 #, fuzzy -msgid "Orientation of filter bar" -msgstr "树的方向" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 -msgid "Orientation of tree" -msgstr "树的方向" +msgid "No matching records found" +msgstr "没有找到任何记录" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 -msgid "Original" -msgstr "起点" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:594 +msgid "Shift + Click to sort by multiple columns" +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 -msgid "Original table column order" -msgstr "原始表列顺序" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:641 +msgid "Totals" +msgstr "显示总计" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 -#: superset-frontend/src/explore/controls.jsx:79 -msgid "Original value" -msgstr "原始值" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:364 +msgid "Timestamp format" +msgstr "时间戳格式" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 -msgid "Orthogonal" -msgstr "正交化" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:380 +msgid "Page length" +msgstr "页长" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 -#: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 -msgid "Other" -msgstr "其他" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:395 +msgid "Search box" +msgstr "搜索框" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 -msgid "Outdoors" -msgstr "" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:398 +msgid "Whether to include a client-side search box" +msgstr "是否包含客户端搜索框" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 -msgid "Outer Radius" -msgstr "外缘" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:405 +msgid "Cell bars" +msgstr "单元格柱状图" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 -msgid "Outer edge of Pie chart" -msgstr "饼图外缘" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:408 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:115 +msgid "Whether to display a bar chart background in table columns" +msgstr "为指标添加条状图背景" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 -msgid "Overlap" -msgstr "重叠" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:419 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:122 +msgid "Align +/-" +msgstr "对齐 +/-" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:422 msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "从相对时间段覆盖一个或多个时间序列。期望自然语言中的相对时间增量(例如:24小时、7天、56周、365天)" +"Whether to align background charts with both positive and negative values" +" at 0" +msgstr "是否 +/- 对齐背景图数值" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 -#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:132 +msgid "Color +/-" +msgstr "色彩 +/-" + +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:434 #, fuzzy msgid "" -"Overlay one or more timeseries from a relative time period. Expects " -"relative time deltas in natural language (example: 24 hours, 7 days, 52 " -"weeks, 365 days). Free text is supported." -msgstr "从相对时间段覆盖一个或多个时间序列。期望自然语言中的相对时间增量(例如:24小时、7天、56周、365天)" +"Whether to colorize numeric values by whether they are positive or " +"negative" +msgstr "根据数值是正数还是负数来为其上色" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the " -"boundary of each cell." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 +msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 -#, fuzzy -msgid "Override time grain" -msgstr "显示Druid原始时间" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 -#, fuzzy -msgid "Override time range" -msgstr "编辑时间范围" - -#: superset-frontend/src/components/ImportModal/index.tsx:426 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 -msgid "Overwrite" -msgstr "覆盖" - -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 -msgid "Overwrite & Explore" -msgstr "覆写和浏览" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:448 +msgid "" +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 -#, python-format -msgid "Overwrite Dashboard [%s]" -msgstr "覆盖看板 [%s]" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:459 +msgid "Customize columns" +msgstr "自定义列" -#: superset/views/database/forms.py:247 -#, fuzzy -msgid "Overwrite Duplicate Columns" -msgstr "混合重复列" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:460 +msgid "Further customize how to display each column" +msgstr "进一步自定义如何显示每列" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 -#, fuzzy -msgid "Overwrite existing" -msgstr "继续编辑" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:484 +msgid "Apply conditional color formatting to numeric columns" +msgstr "将条件颜色格式应用于数字列" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 -msgid "Overwrite text in the editor with a query on this table" -msgstr "使用该表上的查询覆盖编辑器中的文本" +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 +msgid "" +"Classic row-by-column spreadsheet like view of a dataset. Use tables to " +"showcase a view into the underlying data or to show aggregated metrics." +msgstr "数据集的典型的逐行逐列电子表格视图。使用表格显示底层数据的视图或显示聚合指标。" -#: superset/charts/filters.py:141 -msgid "Owned Created or Favored" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 +msgid "Show" msgstr "" -#: superset-frontend/src/pages/AlertReportList/index.tsx:452 -#: superset-frontend/src/pages/ChartList/index.tsx:608 -#: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:511 -msgid "Owner" -msgstr "所有者" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 -#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:477 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 -#: 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: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 -#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 -#: superset/views/dashboard/mixin.py:81 -msgid "Owners" -msgstr "所有者" +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#, fuzzy +msgid "entries" +msgstr "序列" -#: superset/commands/exceptions.py:112 -#: superset/datasets/commands/exceptions.py:161 -msgid "Owners are invalid" -msgstr "所有者无效" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 +msgid "Word Cloud" +msgstr "词汇云" -#: superset/views/dashboard/mixin.py:64 -msgid "Owners is a list of users who can alter the dashboard." -msgstr "所有者是可以更改看板的用户列表。" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:59 +msgid "Minimum Font Size" +msgstr "最小字体大小" -#: 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." -msgstr "所有者是可以更改看板的用户列表。可按名称或用户名搜索。" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:62 +msgid "Font size for the smallest value in the list" +msgstr "列表中最小值的字体大小" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 -msgid "Page length" -msgstr "页长" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:70 +msgid "Maximum Font Size" +msgstr "最大字体大小" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 -msgid "Paired t-test Table" -msgstr "配对T检测表" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:73 +msgid "Font size for the biggest value in the list" +msgstr "列表中最大值的字体大小" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 -#: superset-frontend/src/explore/controlPanels/sections.tsx:258 -msgid "Pandas resample method" -msgstr "Pandas 重新采样的填充方法" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:82 +msgid "Word Rotation" +msgstr "单词旋转" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 -#: superset-frontend/src/explore/controlPanels/sections.tsx:240 -msgid "Pandas resample rule" -msgstr "Pandas 重新采样的规则" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +#, fuzzy +msgid "random" +msgstr "和" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2152 -msgid "Parallel Coordinates" -msgstr "平行坐标" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +#, fuzzy +msgid "square" +msgstr "上一季度" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 -msgid "Parameter error" -msgstr "参数错误" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:91 +msgid "Rotation to apply to words in the cloud" +msgstr "应用于词云中的单词的旋转方式" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 -#: superset/views/chart/mixin.py:83 -msgid "Parameters" -msgstr "参数" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +msgid "" +"Visualizes the words in a column that appear the most often. Bigger font " +"corresponds to higher frequency." +msgstr "可视化列中出现频率最高的单词。字体越大,出现频率越高。" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 -msgid "Parameters " -msgstr "参数" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:240 +msgid "N/A" +msgstr "N/A" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 -msgid "Parameters related to the view and perspective on the map" -msgstr "" +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:54 +#, fuzzy +msgid "offline" +msgstr "离线" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 -msgid "Parent" -msgstr "父类" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:52 +#, fuzzy +msgid "failed" +msgstr "失败" -#: superset/views/database/forms.py:376 -msgid "Parse Dates" -msgstr "解析日期" +#: superset-frontend/src/SqlLab/constants.ts:35 +#: superset-frontend/src/SqlLab/constants.ts:55 +#, fuzzy +msgid "pending" +msgstr "渲染" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 -msgid "Part of a Whole" -msgstr "占比" +#: superset-frontend/src/SqlLab/constants.ts:36 +msgid "fetching" +msgstr "抓取中" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 -msgid "Partition Chart" -msgstr "分区图" +#: superset-frontend/src/SqlLab/constants.ts:37 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "running" +msgstr "正在执行" -#: superset/viz.py:3069 -msgid "Partition Diagram" -msgstr "分区图" +#: superset-frontend/src/SqlLab/constants.ts:38 +#, fuzzy +msgid "stopped" +msgstr "停止" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 -msgid "Partition Limit" -msgstr "分区限制" +#: superset-frontend/src/SqlLab/constants.ts:39 +#: superset-frontend/src/SqlLab/constants.ts:51 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#, fuzzy +msgid "success" +msgstr "成功" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 -msgid "Partition Threshold" -msgstr "分区阈值" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:114 +msgid "The query couldn't be loaded" +msgstr "这个查询无法被加载" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:180 msgid "" -"Partitions whose height to parent height proportions are below this value" -" are pruned" -msgstr "高度与父高度的比例低于此值的分区将被修剪" +"Your query has been scheduled. To see details of your query, navigate to " +"Saved queries" +msgstr "您的查询已被调度。要查看查询的详细信息,请跳转到保存查询页面查看。" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1870 -#: superset/db_engine_specs/clickhouse.py:202 -msgid "Password" -msgstr "密码" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:187 +msgid "Your query could not be scheduled" +msgstr "无法调度您的查询" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 -msgid "Paste Private Key here" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:219 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:311 +msgid "Failed at retrieving results" +msgstr "检索结果失败" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 -#, fuzzy -msgid "Paste content of service credentials JSON file here" -msgstr "复制服务帐户的json文件复制并粘贴到此处" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:359 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useAnnotations.ts:56 +msgid "Unknown error" +msgstr "未知错误" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 -msgid "Paste the shareable Google Sheet URL here" -msgstr "将可共享的Google Sheet URL粘贴到此处" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:412 +msgid "Query was stopped." +msgstr "查询被终止。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 -msgid "Pattern" -msgstr "规则" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:414 +#, python-format +msgid "Failed at stopping query. %s" +msgstr "停止查询失败。 %s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 -msgid "Percent Change" -msgstr "百分比变化" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:439 +msgid "" +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "无法将表结构状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 -#, fuzzy -msgid "Percentage" -msgstr "百分比" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:457 +msgid "" +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." +msgstr "无法将查询状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 -#: superset-frontend/src/explore/controlPanels/sections.tsx:212 -#, fuzzy -msgid "Percentage change" -msgstr "百分比变化" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:504 +msgid "" +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." +msgstr "无法将查询编辑器状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 -msgid "Percentage metrics" -msgstr "百分比指标" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:538 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "无法将新选项卡添加到后端。请与管理员联系。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 -msgid "Percentage threshold" -msgstr "百分比阈值" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:567 +msgid "" +"-- Note: Unless you save your query, these tabs will NOT persist if you " +"clear your cookies or change browsers.\n" +"\n" +msgstr "-- 注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 -#: superset-frontend/src/visualizations/TimeTable/index.ts:36 -msgid "Percentages" -msgstr "百分比" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:601 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1214 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:110 +#, python-format +msgid "Copy of %s" +msgstr "%s 的副本" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 -msgid "Performance" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:628 +msgid "" +"An error occurred while setting the active tab. Please contact your " +"administrator." +msgstr "设置活动tab页时出错。请与管理员联系。" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 -msgid "Period average" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:712 +msgid "An error occurred while fetching tab state" +msgstr "获取tab页状态时出错" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 -#: superset-frontend/src/explore/controlPanels/sections.tsx:150 -msgid "Periods" -msgstr "周期" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:749 +msgid "An error occurred while removing tab. Please contact your administrator." +msgstr "删除tab页时出错。请与管理员联系。" -#: superset/utils/pandas_postprocessing/prophet.py:126 -#, fuzzy -msgid "Periods must be a whole number" -msgstr "句点必须是正整数值" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:784 +msgid "An error occurred while removing query. Please contact your administrator." +msgstr "删除查询时出错。请与管理员联系。" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 -msgid "Person or group that has certified this chart." -msgstr "对此图表进行认证的个人或团体。" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:840 +msgid "Your query could not be saved" +msgstr "您的查询无法保存" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 -msgid "Person or group that has certified this dashboard." -msgstr "已对此仪表板进行认证的个人或组。" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:855 +#, fuzzy +msgid "Your query was not properly saved" +msgstr "您的查询已保存" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 -msgid "Person or group that has certified this metric" -msgstr "认证此指标的个人或团体" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:858 +msgid "Your query was saved" +msgstr "您的查询已保存" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:571 -msgid "Physical" -msgstr "物理信息" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:871 +msgid "Your query was updated" +msgstr "您的查询已保存" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 -msgid "Physical (table or view)" -msgstr "物理(表或视图)" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:875 +msgid "Your query could not be updated" +msgstr "无法更新您的查询" -#: superset-frontend/src/pages/DatasetList/index.tsx:284 -msgid "Physical dataset" -msgstr "物化数据集" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:903 +msgid "" +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." +msgstr "在后端存储查询时出错。为避免丢失更改,请使用 \"保存查询\" 按钮保存查询。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 -msgid "Pick a dimension from which categorical colors are defined" -msgstr "" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "获取表格元数据时发生错误。请与管理员联系。" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1090 +msgid "" +"An error occurred while expanding the table schema. Please contact your " +"administrator." +msgstr "展开表结构时出错。请与管理员联系。" -#: superset/viz.py:795 -msgid "Pick a granularity in the Time section or uncheck 'Include Time'" -msgstr "在“时间”部分选择一个粒度,或取消选中“包含时间”" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1114 +msgid "" +"An error occurred while collapsing the table schema. Please contact your " +"administrator." +msgstr "收起表结构时出错。请与管理员联系。" -#: superset/viz.py:1514 -msgid "Pick a metric for left axis!" -msgstr "为左轴选择一个指标!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1142 +msgid "" +"An error occurred while removing the table schema. Please contact your " +"administrator." +msgstr "删除表结构时出错。请与管理员联系。" -#: superset/viz.py:1516 -msgid "Pick a metric for right axis!" -msgstr "为右轴选择一个指标!" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1175 +msgid "Shared query" +msgstr "已分享的查询" -#: superset/viz.py:1090 -msgid "Pick a metric for x, y and size" -msgstr "为 x 轴,y 轴和大小选择一个指标" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1247 +msgid "The datasource couldn't be loaded" +msgstr "这个查询无法被加载" -#: superset/viz.py:1131 -msgid "Pick a metric to display" -msgstr "选择一个指标来显示" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1289 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1311 +msgid "An error occurred while creating the data source" +msgstr "创建数据源时发生错误" -#: superset/viz.py:1159 superset/viz.py:1195 -msgid "Pick a metric!" -msgstr "选择一个指标!" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/useKeywords.ts:91 +msgid "An error occurred while fetching function names." +msgstr "获取函数名称时出错。" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 -msgid "Pick a name to help you identify this database." -msgstr "选择一个名称来帮助您识别这个数据库。" +#: superset-frontend/src/SqlLab/components/App/index.tsx:183 +#, python-format +msgid "" +"SQL Lab uses your browser's local storage to store queries and results.\n" +"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " +"storage space.\n" +"To keep SQL Lab from crashing, please delete some query tabs.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" +"Note that you will need to close other SQL Lab windows before you do this." +msgstr "SQL Lab使用浏览器的本地存储来存储查询和结果" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 #, fuzzy -msgid "Pick a nickname for how the database will display in Superset." -msgstr "为这个数据库选择一个昵称以在Superset中显示" +msgid "Primary key" +msgstr "主键" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 -msgid "Pick a set of deck.gl charts to layer on top of one another" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 +msgid "Foreign key" msgstr "" -#: superset/viz.py:1294 superset/viz.py:1564 -msgid "Pick a time granularity for your time series" -msgstr "为您的时间序列选择一个时间粒度" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 -msgid "Pick a title for you annotation." -msgstr "为您的注释选择一个标题" - -#: superset/viz.py:1732 -msgid "Pick at least one field for [Series]" -msgstr "为 [序列] 选择至少一个字段" - -#: superset/viz.py:887 superset/viz.py:1730 -msgid "Pick at least one metric" -msgstr "选择至少一个指标" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 +#, fuzzy +msgid "Index" +msgstr "我的编辑" -#: superset/viz.py:1863 -msgid "Pick exactly 2 columns as [Source / Target]" -msgstr "为 [来源 / 目标] 选择两个列" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 +msgid "Estimate selected query cost" +msgstr "运行选定的查询" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 -msgid "" -"Pick one or more columns that should be shown in the annotation. If you " -"don't select a column all of them will be shown." -msgstr "选择注释中应该显示的一个或多个列如果您不选择一列,所有的选项都会显示出来。" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 +msgid "Estimate cost" +msgstr "运行选定的查询" -#: superset-frontend/src/explore/controlPanels/Separator.js:37 -msgid "Pick your favorite markup language" -msgstr "选择您最爱的 Markup 语言" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 +msgid "Cost estimate" +msgstr "成本估算" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 -msgid "Pie Chart" -msgstr "饼图" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 +msgid "Creating a data source and creating a new tab" +msgstr "创建数据源,并弹出一个新的标签页" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 -msgid "Pie shape" -msgstr "饼图形状" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 +msgid "An error occurred" +msgstr "发生了一个错误" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 -msgid "Pin" -msgstr "Pin" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 +msgid "Explore the result set in the data exploration view" +msgstr "在数据探索视图中探索结果集" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -msgid "Pivot Table" -msgstr "透视表" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +#, fuzzy +msgid "explore" +msgstr "探索" -#: superset/utils/pandas_postprocessing/pivot.py:70 -msgid "Pivot operation must include at least one aggregate" -msgstr "数据透视操作必须至少包含一个聚合" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 +#, fuzzy +msgid "Create Chart" +msgstr "面积图" -#: superset/utils/pandas_postprocessing/pivot.py:66 -msgid "Pivot operation requires at least one index" -msgstr "透视操作至少需要一个索引" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 +msgid "Source SQL" +msgstr "源 SQL" -#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 -msgid "Pivoted" -msgstr "旋转" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 +msgid "Executed SQL" +msgstr "已执行的SQL" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 -msgid "Pixel height of each series" -msgstr "每个序列的像素高度" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:44 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:45 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:46 +msgid "Run query" +msgstr "运行查询" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 -msgid "Pixels" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:47 +#, fuzzy +msgid "Run current query" +msgstr "运行查询" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -msgid "Plain" -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:48 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:49 +msgid "Stop query" +msgstr "停止查询" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:792 -msgid "Please DO NOT overwrite the \"filter_scopes\" key." -msgstr "" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:50 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:51 +msgid "New tab" +msgstr "关闭标签" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 -msgid "Please apply filter changes" -msgstr "请应用滤镜更改" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:52 +#, fuzzy +msgid "Previous Line" +msgstr "之前" -#: superset/sqllab/query_render.py:118 -msgid "" -"Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running " -"your query again." -msgstr "请检查查询并确认所有模板参数都用双大括号括起来,例如 \"{{ ds }}\"。然后,再次尝试运行查询" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:53 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:637 +#, fuzzy +msgid "Format SQL" +msgstr "D3 格式" -#: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:211 -#: superset/db_engine_specs/postgres.py:160 -#: superset/db_engine_specs/snowflake.py:117 -#, python-format -msgid "" -"Please check your query for syntax errors at or near " -"\"%(syntax_error)s\". Then, try running your query again." -msgstr "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:55 +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:56 +#, fuzzy +msgid "Find" +msgstr "在" -#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 -#, python-format -msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". " -"Then, try running your query again." -msgstr "请检查查询中\"%(server_error)s\"附近的语法错误然后,再次尝试运行查询" +#: superset-frontend/src/SqlLab/components/KeyboardShortcutButton/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:654 +msgid "Keyboard shortcuts" +msgstr "" -#: superset/sqllab/query_render.py:38 superset/views/core.py:199 +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 #, fuzzy -msgid "" -"Please check your template parameters for syntax errors and make sure " -"they match across your SQL query and Set Parameters. Then, try running " -"your query again." -msgstr "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" +msgid "Run a query to display query history" +msgstr "运行一个查询,在此会显示结果" -#: superset/viz.py:3234 +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:104 #, fuzzy -msgid "Please choose at least one groupby" -msgstr "请至少选择一个分组字段 " +msgid "LIMIT" +msgstr "行限制" -#: superset/viz.py:1519 -msgid "Please choose different metrics on left and right axis" -msgstr "请在左右轴上选择不同的指标" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:101 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:383 +msgid "State" +msgstr "状态" -#: superset-frontend/src/features/charts/ChartCard.tsx:80 -#: superset-frontend/src/features/home/DashboardTable.tsx:246 -#: superset-frontend/src/features/tags/TagCard.tsx:69 -#: superset-frontend/src/pages/AlertReportList/index.tsx:583 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 -#: superset-frontend/src/pages/AnnotationList/index.tsx:297 -#: superset-frontend/src/pages/ChartList/index.tsx:506 -#: superset-frontend/src/pages/ChartList/index.tsx:837 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 -#: superset-frontend/src/pages/DashboardList/index.tsx:415 -#: superset-frontend/src/pages/DashboardList/index.tsx:701 -#: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:762 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 -#: superset-frontend/src/pages/Tags/index.tsx:141 -#: superset-frontend/src/pages/Tags/index.tsx:281 -msgid "Please confirm" -msgstr "请确认" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#, fuzzy +msgid "Started" +msgstr "状态" -#: superset-frontend/src/dashboard/actions/dashboardState.js:447 -msgid "Please confirm the overwrite values." -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:142 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:232 +msgid "Duration" +msgstr "持续时间" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 -msgid "Please enter a SQLAlchemy URI to test" -msgstr "请输入要测试的SQLAlchemy URI" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:245 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:209 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 +msgid "Results" +msgstr "结果" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:397 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:197 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:536 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:175 +#: superset-frontend/src/pages/DashboardList/index.tsx:453 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset-frontend/src/pages/DatasetList/index.tsx:503 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:343 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:221 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:431 +#: superset-frontend/src/pages/Tags/index.tsx:243 +msgid "Actions" +msgstr "操作" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 -msgid "Please filter set name" -msgstr "请筛选集合名称" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:129 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:164 +msgid "Success" +msgstr "成功" -#: superset/db_engine_specs/postgres.py:124 -msgid "Please re-enter the password." -msgstr "请重新输入密码。" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:135 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:141 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 +msgid "Failed" +msgstr "失败" -#: superset-frontend/src/views/CRUD/hooks.ts:439 -msgid "Please re-export your file and try importing again" -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:183 +msgid "Running" +msgstr "正在执行" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:153 #, fuzzy -msgid "Please reach out to the Chart Owner for assistance." -msgid_plural "Please reach out to the Chart Owners for assistance." -msgstr[0] "请联系图表所有者寻求帮助。" +msgid "Fetching" +msgstr "抓取中" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 -msgid "Please save the query to enable sharing" -msgstr "请保存查询以启用共享" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:159 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:188 +msgid "Offline" +msgstr "离线" -#: superset/reports/commands/exceptions.py:105 -msgid "Please save your chart first, then try creating a new email report." -msgstr "请先保存您的图表,然后尝试创建一个新的电子邮件报告。" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:165 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:171 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:196 +msgid "Scheduled" +msgstr "被调度" -#: superset/reports/commands/exceptions.py:117 -msgid "Please save your dashboard first, then try creating a new email report." -msgstr "请先保存您的仪表盘,然后尝试创建一个新的电子邮件报告。" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:177 +msgid "Unknown Status" +msgstr "未知状态" -#: superset-frontend/src/pages/ChartCreation/index.tsx:422 -msgid "Please select both a Dataset and a Chart type to proceed" -msgstr "请同时选择数据集和图表类型以继续" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:226 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:129 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:76 +#: superset-frontend/src/features/home/SavedQueries.tsx:198 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#: superset-frontend/src/pages/ChartList/index.tsx:520 +#: superset-frontend/src/pages/DashboardList/index.tsx:437 +#: superset-frontend/src/pages/DatabaseList/index.tsx:454 +#: superset-frontend/src/pages/DatasetList/index.tsx:467 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:205 +#: superset-frontend/src/pages/Tags/index.tsx:227 +msgid "Edit" +msgstr "编辑" -#: superset/viz.py:1088 -msgid "Please use 3 different metric labels" -msgstr "请在左右轴上选择不同的指标" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:245 +#: superset-frontend/src/pages/AlertReportList/index.tsx:378 +#, fuzzy +msgid "View" +msgstr "预览" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "Plot the distance (like flight paths) between origin and destination." -msgstr "" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:248 +msgid "Data preview" +msgstr "数据预览" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 -msgid "" -"Plots the individual metrics for each row in the data vertically and " -"links them together as a line. This chart is useful for comparing " -"multiple metrics across all of the samples or rows in the data." -msgstr "垂直地绘制数据中每一行的单个指标,并将它们链接成一行。此图表用于比较数据中所有样本或行中的多个指标。" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:287 +msgid "Overwrite text in the editor with a query on this table" +msgstr "使用该表上的查询覆盖编辑器中的文本" -#: superset/initialization/__init__.py:277 -msgid "Plugins" -msgstr "插件" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:296 +msgid "Run query in a new tab" +msgstr "在新标签中运行查询" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 -#, fuzzy -msgid "Point Color" -msgstr "固定颜色" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:303 +msgid "Remove query from log" +msgstr "从日志中删除查询" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 -msgid "Point Radius" -msgstr "点半径" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:242 +msgid "Unable to create chart without a query id." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 -#, fuzzy -msgid "Point Radius Scale" -msgstr "点半径" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:272 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:195 +msgid "Save & Explore" +msgstr "保存和浏览" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 -msgid "Point Radius Unit" -msgstr "点半径单位" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:196 +msgid "Overwrite & Explore" +msgstr "覆写和浏览" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 -#, fuzzy -msgid "Point Size" -msgstr "字体大小" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:274 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:498 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:154 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 +msgid "Save this query as a virtual dataset to continue exploring" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 -#, fuzzy -msgid "Point Unit" -msgstr "点半径单位" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 +msgid "Download to CSV" +msgstr "下载到CSV" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 -msgid "Point to your spatial columns" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:297 +msgid "Copy to Clipboard" +msgstr "复制到剪贴板" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 -msgid "Points" -msgstr "点配置" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:309 +msgid "Filter results" +msgstr "过滤结果" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 -msgid "Points and clusters will update as the viewport is being changed" -msgstr "点和簇将随着视图改变而更新。" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." +msgstr "" +"显示的结果数由配置DISPLAY_MAX_ROW限制为 %(rows)d 。请添加其他限制/筛选器或下载到csv以查看更多行数,限制为 " +"%(limit)d " -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 -#, fuzzy -msgid "Polygon Column" -msgstr "我的列" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:333 +#, python-format +msgid "" +"The number of results displayed is limited to %(rows)d. Please add " +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." +msgstr "显示的结果数限制为 %(rows)d。请添加其他筛选器,下载到csv,或与管理员联系以查看 %(limit)d 的更多行”" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 -#, fuzzy -msgid "Polygon Encoding" -msgstr "报告发送" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:344 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the query" +msgstr "查询将显示的行数限制为 %(rows)d " -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 -#, fuzzy -msgid "Polygon Settings" -msgstr "计划设置" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:352 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgstr "显示的行数通过限制下拉框限制为 %(rows)d 。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 -msgid "Polyline" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:357 +#, python-format +msgid "" +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." +msgstr "查询和限制下拉列表将显示的行数限制为 %(rows)d" -#: superset/views/sql_lab/views.py:87 -msgid "Pop Tab Link" -msgstr "流行标签链接" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:376 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:390 +#, python-format +msgid "%(rows)d rows returned" +msgstr "%(rows)d行被检索到" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:129 -msgid "Popular" -msgstr "常用" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:378 +#, fuzzy, python-format +msgid "The number of rows displayed is limited to %(rows)d by the dropdown." +msgstr "显示的行数通过限制下拉框限制为 %(rows)d 。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 -msgid "Populate \"Default value\" to enable this control" -msgstr "填充 \"Default value\" 以启用此控件" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:427 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format +msgid "%s row" +msgstr "%s 异常" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 -msgid "Population age data" -msgstr "人口年龄数据" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:457 +msgid "Track job" +msgstr "跟踪任务" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 #, fuzzy -msgid "Port" -msgstr "报告" +msgid "See query details" +msgstr "已保存查询" -#: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:134 -#: superset/db_engine_specs/presto.py:699 -#: superset/db_engine_specs/redshift.py:81 -#, python-format -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "主机名 \"%(hostname)s\" 上的端口 %(port)s 拒绝连接。" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:473 +msgid "Query was stopped" +msgstr "查询被终止。" -#: superset/db_engine_specs/ocient.py:269 -msgid "Port out of range 0-65535" -msgstr "" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:480 +msgid "Database error" +msgstr "数据库错误" -#: superset/views/dashboard/mixin.py:86 -msgid "Position JSON" -msgstr "位置JSON" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:509 +msgid "was created" +msgstr "已创建" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 -msgid "Position of child node label on tree" -msgstr "子节点标签在树上的位置" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:516 +msgid "Query in a new tab" +msgstr "在新标签中查询" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 -msgid "Position of column level subtotal" -msgstr "列级小计的位置" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:606 +msgid "The query returned no data" +msgstr "查询无结果" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 -#, fuzzy -msgid "Position of intermediate node label on tree" -msgstr "中间节点标签在树中的位置" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:625 +msgid "Fetch data preview" +msgstr "获取数据预览" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 -msgid "Position of row level subtotal" -msgstr "行级小计的位置" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:636 +msgid "Refetch results" +msgstr "重新获取结果" -#: superset-frontend/src/features/home/RightMenu.tsx:496 -msgid "Powered by Apache Superset" -msgstr "由Apache Superset提供支持" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:45 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 +msgid "Stop" +msgstr "停止" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 -msgid "Pre-filter" -msgstr "预过滤" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:50 +msgid "Run selection" +msgstr "运行选定的查询" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 -msgid "Pre-filter available values" -msgstr "预滤器可用值" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +msgid "Run" +msgstr "执行" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 -msgid "Pre-filter is required" -msgstr "预过滤是必须的" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +msgid "Stop running (Ctrl + x)" +msgstr "停止运行 (Ctrl + x)" -#: superset/connectors/sqla/views.py:347 -msgid "" -"Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when " -"`Enable Filter Select` is on." -msgstr "当获取不同的值来填充过滤器组件应用时。支持jinja的模板语法。只在`启用过滤器选择`时应用。" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#, fuzzy +msgid "Stop running (Ctrl + e)" +msgstr "停止运行 (Ctrl + x)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 -msgid "Predictive" -msgstr "预测" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +msgid "Run query (Ctrl + Return)" +msgstr "执行运行 (Ctrl + Return)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 -msgid "Predictive Analytics" -msgstr "预测分析" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:331 +#: 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: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:787 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:484 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:279 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:458 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:468 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:344 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:496 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:455 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:152 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:349 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:114 +#: superset-frontend/src/features/tags/TagModal.tsx:284 +msgid "Save" +msgstr "保存" -#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 -msgid "Preview" -msgstr "预览" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:147 +#, fuzzy +msgid "Untitled Dataset" +msgstr "编辑数据集" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 -#, python-format -msgid "Preview: `%s`" -msgstr "预览 %s" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:320 +msgid "An error occurred saving dataset" +msgstr "保存数据集时发生错误" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 -msgid "Previous" -msgstr "之前" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:353 +msgid "Save or Overwrite Dataset" +msgstr "" + +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:370 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1131 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1151 +msgid "Back" +msgstr "返回" + +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:399 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:218 +msgid "Save as new" +msgstr "保存为新的" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:409 #, fuzzy -msgid "Previous Line" -msgstr "之前" +msgid "Overwrite existing" +msgstr "继续编辑" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 -msgid "Primary" -msgstr "主键" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:415 +#, fuzzy +msgid "Select or type dataset name" +msgstr "选择表或输入表名" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 -msgid "Primary Metric" -msgstr "主计量指标" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:416 +#, fuzzy +msgid "Existing dataset" +msgstr "丢失数据集" -#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:431 #, fuzzy -msgid "Primary key" -msgstr "主键" +msgid "Are you sure you want to overwrite this dataset?" +msgstr "确实要删除选定的数据集吗?" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 -msgid "Primary or secondary y-axis" -msgstr "主或次y轴" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 +msgid "Undefined" +msgstr "未命名" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:108 #, fuzzy -msgid "Primary y-axis Bounds" -msgstr "主轴格式" +msgid "Save dataset" +msgstr "修改数据集" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 -msgid "Primary y-axis format" -msgstr "主轴格式" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:203 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:285 +msgid "Save as" +msgstr "另存为" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 -msgid "Private Key" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 +msgid "Save query" +msgstr "保存查询" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 -msgid "Private Key & Password" -msgstr "" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:210 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:864 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:270 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:311 +#: superset-frontend/src/components/Modal/Modal.tsx:270 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:646 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:440 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:842 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:229 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:107 +#: superset-frontend/src/features/tags/TagModal.tsx:277 +msgid "Cancel" +msgstr "取消" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 -#, fuzzy -msgid "Private Key Password" -msgstr "Broker的密码" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:227 +msgid "Update" +msgstr "更新" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 -#, fuzzy -msgid "Proceed" -msgstr "红色" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 +msgid "Label for your query" +msgstr "为您的查询设置标签" -#: superset-frontend/src/features/home/RightMenu.tsx:477 -msgid "Profile" -msgstr "用户信息" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 +msgid "Write a description for your query" +msgstr "为您的查询写一段描述" -#: superset-frontend/src/profile/components/UserInfo.tsx:44 -msgid "Profile picture provided by Gravatar" -msgstr "资料图片由 Gravatar 提供" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 +msgid "Submit" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 -msgid "Progress" -msgstr "进度" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 +msgid "Schedule query" +msgstr "分享查询" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 -msgid "Progressive" -msgstr "进度" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:335 +#: superset-frontend/src/pages/AlertReportList/index.tsx:278 +msgid "Schedule" +msgstr "调度" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 -msgid "Propagate" -msgstr "传播" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:76 +msgid "There was an error with your request" +msgstr "您的请求有错误" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 -msgid "Proportional" -msgstr "比例" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:90 +msgid "Please save the query to enable sharing" +msgstr "请保存查询以启用共享" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 -msgid "Public and privately shared sheets" -msgstr "公共和私人共享的表" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:103 +msgid "Copy query link to your clipboard" +msgstr "将查询链接复制到剪贴板" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 -msgid "Publicly shared sheets only" -msgstr "仅公开共享表" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:104 +msgid "Save the query to enable this feature" +msgstr "请保存查询以启用共享" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 -#: superset-frontend/src/pages/DashboardList/index.tsx:336 -#: superset-frontend/src/pages/DashboardList/index.tsx:574 -#: superset/views/dashboard/mixin.py:83 -msgid "Published" -msgstr "已发布" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:113 +msgid "Copy link" +msgstr "复制链接" + +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:175 +msgid "No stored results found, you need to re-run your query" +msgstr "找不到存储的结果,需要重新运行查询" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:201 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 #, fuzzy -msgid "Purple" -msgstr "规则" +msgid "Run a query to display results" +msgstr "运行一个查询,在此会显示结果" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 -msgid "Put labels outside" -msgstr "外侧显示标签" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:213 +#, python-format +msgid "Preview: `%s`" +msgstr "预览 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 -msgid "Put the labels outside of the pie?" -msgstr "是否将标签显示在饼图外侧?" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:248 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:104 +msgid "Query history" +msgstr "历史查询" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 -msgid "Put the labels outside the pie?" -msgstr "是否将标签显示在饼图外侧?" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:614 +msgid "Schedule the query periodically" +msgstr "定期调度查询" -#: superset-frontend/src/explore/controlPanels/Separator.js:47 -msgid "Put your code here" -msgstr "把您的代码放在这里" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:615 +msgid "You must run the query successfully first" +msgstr "必须先成功运行查询" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 -msgid "Python datetime string pattern" -msgstr "Python日期格式模板" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:620 +msgid "Autocomplete" +msgstr "自动补全" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 -msgid "QUERY DATA IN SQL LAB" -msgstr "" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:680 +msgid "CREATE TABLE AS" +msgstr "允许 CREATE TABLE AS" -#: superset/db_engine_specs/base.py:110 -msgid "Quarter" -msgstr "季度" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:691 +msgid "CREATE VIEW AS" +msgstr "允许 CREATE VIEW AS" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 -#, python-format -msgid "Quarters %s" -msgstr " %s 季度" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:716 +msgid "Estimate the cost before running a query" +msgstr "在运行查询之前计算执行计划" -#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 -#, fuzzy -msgid "Queries" -msgstr "序列" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:816 +msgid "Specify name to CREATE VIEW AS schema in: public" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 -#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 -#: superset-frontend/src/explore/controlPanels/sections.tsx:94 -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 -msgid "Query" -msgstr "查询" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:817 +msgid "Specify name to CREATE TABLE AS schema in: public" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 -#, python-format -msgid "Query %s: %s" -msgstr "查询 %s: %s " +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:849 +msgid "Select a database to write a query" +msgstr "选择要写入查询的数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 -msgid "Query A" -msgstr "查询 A" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:850 +msgid "Choose one of the available databases from the panel on the left." +msgstr "从左侧的面板中选择一个可用的数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 -msgid "Query B" -msgstr "查询 B" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:872 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.tsx:881 +msgid "Create" +msgstr "创建" -#: superset/initialization/__init__.py:360 -msgid "Query History" -msgstr "历史查询" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Collapse table preview" +msgstr "折叠表的预览" -#: superset/commands/exceptions.py:142 -#, fuzzy -msgid "Query does not exist" -msgstr "图表没有找到" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:198 +msgid "Expand table preview" +msgstr "展开表格预览" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 -#: superset-frontend/src/features/home/commonMenuData.ts:32 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 -msgid "Query history" -msgstr "历史查询" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:284 +msgid "Reset state" +msgstr "状态重置" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 -#, fuzzy -msgid "Query imported" -msgstr "查询模式" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 +msgid "Enter a new title for the tab" +msgstr "输入标签的新标题" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 -msgid "Query in a new tab" -msgstr "在新标签中查询" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 +msgid "Close tab" +msgstr "关闭标签" -#: superset/errors.py:131 -msgid "Query is too complex and takes too long to run." -msgstr "查询太复杂,运行时间太长。" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 +msgid "Rename tab" +msgstr "重命名标签" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 -msgid "Query mode" -msgstr "查询模式" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Expand tool bar" +msgstr "展开工具栏" -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 -msgid "Query name" -msgstr "查询名称" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 +msgid "Hide tool bar" +msgstr "隐藏工具栏" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 -#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 -msgid "Query preview" -msgstr "查询预览" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 +msgid "Close all other tabs" +msgstr "关闭其他tab页" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 -msgid "Query was stopped" -msgstr "查询被终止。" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 +msgid "Duplicate tab" +msgstr "复制tab页" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 -msgid "Query was stopped." -msgstr "查询被终止。" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:253 +msgid "Add a new tab" +msgstr "添加新的标签页" -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 -#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 -msgid "RANGE TYPE" -msgstr "范围类型" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:259 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:301 +msgid "New tab (Ctrl + q)" +msgstr "新建Tab页 (Ctrl + q)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 -msgid "RGB Color" -msgstr "RGB颜色" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:260 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:302 +msgid "New tab (Ctrl + t)" +msgstr "新建Tab页 (Ctrl + t)" -#: superset/row_level_security/commands/exceptions.py:29 -#, fuzzy -msgid "RLS Rule could not be deleted." -msgstr "这个查询无法被加载" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.tsx:277 +msgid "Add a new tab to create SQL Query" +msgstr "" -#: superset/row_level_security/commands/exceptions.py:25 -#, fuzzy -msgid "RLS Rule not found." -msgstr "找不到报表计划。" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:137 +msgid "An error occurred while fetching table metadata" +msgstr "获取表格元数据时发生错误" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 -msgid "Radar" -msgstr "雷达" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:186 +msgid "Copy partition query to clipboard" +msgstr "将分区查询复制到剪贴板" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 -msgid "Radar Chart" -msgstr "雷达图" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:203 +msgid "latest partition:" +msgstr "最新分区:" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 -msgid "Radar render type, whether to display 'circle' shape." -msgstr "雷达渲染类型,是否显示圆形" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:239 +msgid "Keys for table" +msgstr "表的键" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 -msgid "Radial" -msgstr "径向" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:250 +#, python-format +msgid "View keys & indexes (%s)" +msgstr "查看键和索引(%s)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 -msgid "Radius in kilometers" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:278 +msgid "Original table column order" +msgstr "原始表列顺序" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 -#, fuzzy -msgid "Radius in meters" -msgstr "参数" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:279 +msgid "Sort columns alphabetically" +msgstr "对列按字母顺序进行排列" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 -msgid "Radius in miles" -msgstr "" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:287 +msgid "Copy SELECT statement to the clipboard" +msgstr "将 SELECT 语句复制到剪贴板" -#: superset-frontend/src/features/home/SavedQueries.tsx:292 -#, python-format -msgid "Ran %s" -msgstr "持续时间:%s" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:299 +msgid "Show CREATE VIEW statement" +msgstr "显示 CREATE VIEW 语句" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Range" -msgstr "范围" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:300 +msgid "CREATE VIEW statement" +msgstr "CREATE VIEW 语句" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 -#: superset-frontend/src/filters/components/Range/index.ts:28 -msgid "Range filter" -msgstr "范围过滤" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:306 +msgid "Remove table preview" +msgstr "删除表格预览" -#: superset-frontend/src/filters/components/Range/index.ts:29 -msgid "Range filter plugin using AntD" -msgstr "范围过滤器" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 +#, fuzzy +msgid "Assign a set of parameters as" +msgstr "数据集参数无效。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 -msgid "Range labels" -msgstr "范围标签" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 +msgid "below (example:" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 -msgid "Ranges" -msgstr "管理" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 +msgid "), and they become available in your SQL (example:" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 -msgid "Ranges to highlight with shading" -msgstr "突出阴影的范围" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 +msgid "by using" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 -msgid "Ranking" -msgstr "排名" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 +#, fuzzy +msgid "Jinja templating" +msgstr "编辑模板" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +#, fuzzy +msgid "syntax." +msgstr "语法" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 +msgid "Edit template parameters" +msgstr "编辑模板参数" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 -#: superset-frontend/src/explore/controlPanels/sections.tsx:213 -msgid "Ratio" -msgstr "比率" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +msgid "Parameters " +msgstr "参数" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 -msgid "Raw records" -msgstr "原始记录" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 +msgid "Invalid JSON" +msgstr "无效的JSON" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 -msgid "Ready to review filters in this dashboard?" -msgstr "准备查看此仪表板中的筛选器吗?" +#: superset-frontend/src/SqlLab/reducers/getInitialState.ts:60 +msgid "Untitled query" +msgstr "未命名的查询" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 -msgid "Rebuild" -msgstr "重构" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:142 +#, python-format +msgid "%s%s" +msgstr "%s%s" -#: superset-frontend/src/profile/components/App.tsx:72 -msgid "Recent activity" -msgstr "近期活动" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 +#, fuzzy +msgid "Control" +msgstr "列" -#: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "Recently created charts, dashboards, and saved queries will appear here" -msgstr "最近创建的图表、看板和保存的查询将显示在此处" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 +msgid "Before" +msgstr "之前" -#: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "Recently edited charts, dashboards, and saved queries will appear here" -msgstr "最近编辑的图表、看板和保存的查询将显示在此处" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 +msgid "After" +msgstr "之后" -#: superset-frontend/src/pages/ChartList/index.tsx:743 -#: superset-frontend/src/pages/DashboardList/index.tsx:617 -#: superset-frontend/src/pages/Tags/index.tsx:223 -msgid "Recently modified" -msgstr "最近修改" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 +msgid "Click to see difference" +msgstr "点击查看差异" -#: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "最近查看的图表、看板和保存的查询将显示在此处" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 +msgid "Altered" +msgstr "已更改" -#: superset-frontend/src/pages/Home/index.tsx:368 -msgid "Recents" -msgstr "最近" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 +msgid "Chart changes" +msgstr "图表变化" -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 -msgid "Recipients are separated by \",\" or \";\"" -msgstr "收件人之间用 \",\" 或者 \";\" 隔开" +#: superset-frontend/src/components/AuditInfo/index.tsx:40 +#, fuzzy, python-format +msgid "Modified by: %s" +msgstr "上次修改人 %s" -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:672 -msgid "Recommended tags" -msgstr "推荐标签" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 +msgid "Loaded data cached" +msgstr "数据缓存已加载" -#: superset/templates/appbuilder/general/widgets/base_list.html:55 -msgid "Record Count" -msgstr "记录数" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 +msgid "Loaded from cache" +msgstr "从缓存中加载" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 -msgid "Rectangle" -msgstr "长方形" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 +msgid "Click to force-refresh" +msgstr "点击强制刷新" -#: superset/connectors/sqla/views.py:353 -msgid "Redirects to this endpoint when clicking on the table from the table list" -msgstr "点击表列表中的表时将重定向到此端点" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 +#, fuzzy +msgid "Cached" +msgstr "已缓存" -#: superset-frontend/src/dashboard/components/Header/index.jsx:571 -msgid "Redo the action" +#: superset-frontend/src/components/Chart/Chart.jsx:255 +msgid "Add required control values to preview chart" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 -msgid "Reduce X ticks" -msgstr "减少 X 轴的刻度" +#: superset-frontend/src/components/Chart/Chart.jsx:271 +msgid "Your chart is ready to go!" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 +#: superset-frontend/src/components/Chart/Chart.jsx:274 msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " -"will not overflow and labels may be missing. If false, a minimum width " -"will be applied to columns and the width may overflow into an horizontal " -"scroll." -msgstr "减少要渲染的X轴标记数。如果为true,x轴将不会溢出,但是标签可能丢失。如果为false,则对列应用最小宽度,宽度可能溢出到水平滚动条中。" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 -msgid "Refer to the" -msgstr "参考 " +#: superset-frontend/src/components/Chart/Chart.jsx:278 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 +msgid "click here" +msgstr "" -#: superset/utils/pandas_postprocessing/utils.py:125 -msgid "Referenced columns not available in DataFrame." -msgstr "引用的列在数据帧(DataFrame)中不可用。" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:296 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 +msgid "No results were returned for this query" +msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 -msgid "Refetch results" -msgstr "重新获取结果" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:299 +#, fuzzy +msgid "" +"Make sure that the controls are configured properly and the datasource " +"contains data for the selected time range" +msgstr "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" -#: superset/templates/appbuilder/general/widgets/search.html:57 -msgid "Refresh" -msgstr "刷新间隔" +#: superset-frontend/src/components/Chart/chartAction.js:553 +msgid "An error occurred while loading the SQL" +msgstr "创建数据源时发生错误" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 -msgid "Refresh dashboard" -msgstr "刷新看板" +#: superset-frontend/src/components/Chart/chartAction.js:613 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 +#, fuzzy +msgid "Sorry, an error occurred" +msgstr "抱歉,发生错误" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 -msgid "Refresh frequency" -msgstr "刷新频率" +#: superset-frontend/src/components/Chart/chartReducer.ts:84 +msgid "Updating chart was stopped" +msgstr "更新图表已停止" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 -msgid "Refresh interval" -msgstr "刷新间隔" +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format +msgid "An error occurred while rendering the visualization: %s" +msgstr "渲染可视化时发生错误:%s" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 -#, fuzzy -msgid "Refresh interval saved" -msgstr "刷新间隔" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "网络异常。" + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:160 +msgid "Cross-filter will be applied to all of the charts that use this dataset." +msgstr "" + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:165 +msgid "You can also just click on the chart to apply cross-filter." +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:172 #, fuzzy -msgid "Refresh table list" -msgstr "强制刷新数据" +msgid "Cross-filtering is not enabled for this dashboard." +msgstr "此看板中没有过滤条件。" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:179 #, fuzzy -msgid "Refresh tables" -msgstr "强制刷新数据" +msgid "This visualization type does not support cross-filtering." +msgstr "选择可视化类型" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 -msgid "Refresh the default values" -msgstr "刷新默认值" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:186 +msgid "You can't apply cross-filter on this data point." +msgstr "" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:202 #, fuzzy -msgid "Refreshing charts" -msgstr "获取图表时出错" +msgid "Remove cross-filter" +msgstr "预过滤" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:205 #, fuzzy -msgid "Refreshing columns" -msgstr "时间序列的列" +msgid "Add cross-filter" +msgstr "增加过滤条件" -#: superset-frontend/src/explore/constants.ts:78 -#, fuzzy -msgid "Regex" -msgstr "绿色" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" -#: superset-frontend/src/features/rls/constants.ts:24 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 -#, fuzzy -msgid "Regular" -msgstr "圆" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 +msgid "Drill by is not yet supported for this chart type" +msgstr "" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 -#, fuzzy -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter, base filters apply filters to all queries " -"except the roles defined in the filter, and can be used to define what " -"users can see if no RLS filters within a filter group apply to them." -msgstr "常规过滤将where子句添加到查询中,以确定用户是否属于过滤中引用的角色。基本过滤将应用于除过滤中定义的角色之外的所有查询,并且可以用于定义在没有应用RLS过滤组的情况下,哪些用户可以看到内容。" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 +msgid "Drill by is not available for this data point" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 -msgid "Relational" -msgstr "执行时间" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 +msgid "Drill by" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 -msgid "Relationships between community channels" -msgstr "社区渠道之间的关系" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy +msgid "Search columns" +msgstr "使用列" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 -msgid "Relative Date/Time" -msgstr "相对日期/时间" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 +#, fuzzy +msgid "No columns found" +msgstr "找不到兼容的列" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 -msgid "Relative period" -msgstr "宽限期" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:103 +msgid "Failed to generate chart edit URL" +msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 -msgid "Relative quantity" -msgstr "相对量" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:123 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:60 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:223 +#, fuzzy +msgid "You do not have sufficient permissions to edit the chart" +msgstr "您没有编辑此图表的权限" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:135 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:229 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy -msgid "Reload" -msgstr "红色" +msgid "Edit chart" +msgstr "编辑图表" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 -msgid "Remind me in 24 hours" -msgstr "24小时后提醒我" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:148 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:75 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:239 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:779 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:333 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:445 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:341 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1172 +msgid "Close" +msgstr "关闭" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 -msgid "Remove" -msgstr "删除" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:422 +#: superset-frontend/src/pages/Chart/index.tsx:69 +msgid "Failed to load chart data." +msgstr "" + +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:440 +#, fuzzy, python-format +msgid "Drill by: %s" +msgstr "排序 %s" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:470 #, fuzzy -msgid "Remove cross-filter" -msgstr "预过滤" +msgid "There was an error loading the chart data" +msgstr "抱歉,这个看板在获取图表时发生错误:" + +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:217 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, fuzzy, python-format +msgid "Results %s" +msgstr "结果" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 -msgid "Remove invalid filters" -msgstr "删除该行" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:39 +msgid "Drill to detail by" +msgstr "" -#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 -msgid "Remove item" -msgstr "删除该行" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:154 +msgid "Drill to detail" +msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 -msgid "Remove query from log" -msgstr "从日志中删除查询" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:141 +msgid "" +"Drill to detail is disabled because this chart does not group data by " +"dimension value." +msgstr "" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 -msgid "Remove table preview" -msgstr "删除表格预览" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:165 +msgid "Drill to detail by value is not yet supported for this chart type." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 -#, python-format -msgid "Removed columns: %s" -msgstr "删除的列:%s" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:234 +msgid "Right-click on a dimension value to drill to detail by that value." +msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 -msgid "Rename tab" -msgstr "重命名标签" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:126 +#, python-format +msgid "Drill to detail: %s" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 -msgid "Rendering" -msgstr "渲染" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 +#, fuzzy +msgid "Formatting" +msgstr "自动匹配格式化" -#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 -#: superset/views/database/forms.py:466 -msgid "Replace" -msgstr "替换" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 +#, fuzzy +msgid "Formatted value" +msgstr "限制选择器值" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 -msgid "Report" -msgstr "报表" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 +msgid "No rows were returned for this dataset" +msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:281 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 #, fuzzy -msgid "Report Name" -msgstr "报告名称" +msgid "Reload" +msgstr "红色" -#: superset/reports/commands/exceptions.py:134 -msgid "Report Schedule could not be created." -msgstr "无法创建报表计划。" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:85 +msgid "Copy" +msgstr "复制" -#: superset/reports/commands/exceptions.py:130 -msgid "Report Schedule could not be deleted." -msgstr "无法删除报表计划。" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 +msgid "Copy to clipboard" +msgstr "复制到剪贴板" -#: superset/reports/commands/exceptions.py:138 -msgid "Report Schedule could not be updated." -msgstr "无法更新报表计划。" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:200 +msgid "Copied to clipboard!" +msgstr "复制到剪贴板!" -#: superset/reports/commands/exceptions.py:147 -msgid "Report Schedule delete failed." -msgstr "报表计划删除失败。" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 +msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" +msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" -#: superset/reports/commands/exceptions.py:159 -msgid "Report Schedule execution failed when generating a csv." -msgstr "生成屏幕截图时报表计划执行失败。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 +msgid "every" +msgstr "任意" -#: superset/reports/commands/exceptions.py:163 -msgid "Report Schedule execution failed when generating a dataframe." -msgstr "生成屏幕截图时报表计划执行失败。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 +msgid "every month" +msgstr "每个月" -#: superset/reports/commands/exceptions.py:155 -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "生成屏幕截图时报表计划执行失败。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 +msgid "every day of the month" +msgstr "每月的每一天" -#: superset/reports/commands/exceptions.py:167 -msgid "Report Schedule execution got an unexpected error." -msgstr "报表计划执行遇到意外错误。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 +msgid "day of the month" +msgstr "一个月中的天数" -#: superset/reports/commands/exceptions.py:172 -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "报表计划仍在运行,拒绝重新计算。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 +msgid "every day of the week" +msgstr "一周的每一天" -#: superset/reports/commands/exceptions.py:151 -msgid "Report Schedule log prune failed." -msgstr "报表计划日志精简失败。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 +msgid "day of the week" +msgstr "一周的天数" -#: superset/reports/commands/exceptions.py:143 -msgid "Report Schedule not found." -msgstr "找不到报表计划。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 +msgid "every hour" +msgstr "每小时" -#: superset/reports/commands/exceptions.py:126 -msgid "Report Schedule parameters are invalid." -msgstr "报表计划参数无效。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +msgid "every minute" +msgstr "每分钟 UTC" -#: superset/reports/commands/exceptions.py:177 -msgid "Report Schedule reached a working timeout." -msgstr "报表计划已超时。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 +msgid "minute" +msgstr "分" -#: superset/reports/commands/exceptions.py:262 -msgid "Report Schedule state not found" -msgstr "未找到报表计划状态" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 +msgid "reboot" +msgstr "重启" -#: superset-frontend/src/features/home/RightMenu.tsx:548 -msgid "Report a bug" -msgstr "报告bug" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 +msgid "Every" +msgstr "每个" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 -msgid "Report failed" -msgstr "报告失败" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 +msgid "in" +msgstr "在" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 -msgid "Report name" -msgstr "报告名称" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 +msgid "on" +msgstr "位于" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 -msgid "Report schedule" -msgstr "报告时间表" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 +msgid "and" +msgstr "和" -#: superset/reports/commands/exceptions.py:273 -#, fuzzy -msgid "Report schedule client error" -msgstr "报告计划意外错误。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 +msgid "at" +msgstr "在" -#: superset/reports/commands/exceptions.py:267 -#, fuzzy -msgid "Report schedule system error" -msgstr "报告计划意外错误。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 +msgid ":" +msgstr ":" -#: superset/reports/commands/exceptions.py:277 -msgid "Report schedule unexpected error" -msgstr "报告计划意外错误。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "分钟" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 -msgid "Report sending" -msgstr "报告发送" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 +msgid "Invalid cron expression" +msgstr "无效cron表达式" -#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 -msgid "Report sent" -msgstr "已发送报告" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 +msgid "Clear" +msgstr "清除" -#: superset-frontend/src/reports/actions/reports.js:121 -#, fuzzy -msgid "Report updated" -msgstr "报告失败" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 +msgid "Sunday" +msgstr "星期日" -#: superset-frontend/src/pages/AlertReportList/index.tsx:541 -msgid "Reports" -msgstr "报告" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 +msgid "Monday" +msgstr "星期一" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 -msgid "Repulsion" -msgstr "表达式" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 +msgid "Tuesday" +msgstr "星期二" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 -msgid "Repulsion strength between nodes" -msgstr "节点间的斥力" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 +msgid "Wednesday" +msgstr "星期三" -#: superset/templates/superset/request_access.html:31 -msgid "Request Permissions" -msgstr "请求权限" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 +msgid "Thursday" +msgstr "星期四" -#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:312 -#, python-format -msgid "Request is incorrect: %(error)s" -msgstr "请求不正确: %(error)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 +msgid "Friday" +msgstr "星期五" -#: superset/charts/data/api.py:230 -msgid "Request is not JSON" -msgstr "请求不是JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 +msgid "Saturday" +msgstr "星期六" -#: superset/views/datasource/views.py:77 -msgid "Request missing data field." -msgstr "请求丢失的数据字段。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 +msgid "January" +msgstr "一月" -#: superset-frontend/src/utils/getClientErrorObject.ts:144 -#, fuzzy -msgid "Request timed out" -msgstr "请求不是JSON" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 +msgid "February" +msgstr "二月" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 -msgid "Required" -msgstr "必填" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 +msgid "March" +msgstr "三月" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 +msgid "April" +msgstr "四月" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 +msgid "May" +msgstr "五月" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 +msgid "June" +msgstr "六月" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 -msgid "Required control values have been removed" -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 +msgid "July" +msgstr "七月" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 -#: superset-frontend/src/explore/controlPanels/sections.tsx:223 -msgid "Resample" -msgstr "重新采样" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 +msgid "August" +msgstr "八月" -#: superset/utils/pandas_postprocessing/resample.py:46 -#, fuzzy -msgid "Resample method should in " -msgstr "Pandas 重新采样的填充方法" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 +msgid "September" +msgstr "九月" -#: superset/utils/pandas_postprocessing/resample.py:43 -#, fuzzy -msgid "Resample operation requires DatetimeIndex" -msgstr "透视操作至少需要一个索引" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 +msgid "October" +msgstr "十月" -#: superset-frontend/src/components/Table/index.tsx:203 -#, fuzzy -msgid "Reset" -msgstr "最近" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 +msgid "November" +msgstr "十一月" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 -msgid "Reset state" -msgstr "状态重置" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 +msgid "December" +msgstr "十二月" -#: superset/reports/commands/exceptions.py:194 -msgid "Resource already has an attached report." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 +msgid "SUN" +msgstr "星期日" -#: superset/temporary_cache/commands/exceptions.py:49 -#, fuzzy -msgid "Resource was not found." -msgstr "数据库没有找到" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 +msgid "MON" +msgstr "星期一" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 -msgid "Restore Filter" -msgstr "还原过滤条件" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 +msgid "TUE" +msgstr "星期二" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 -msgid "Results" -msgstr "结果" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 +msgid "WED" +msgstr "星期三" -#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 -#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 -#, fuzzy, python-format -msgid "Results %s" -msgstr "结果" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 +msgid "THU" +msgstr "星期四" -#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2169 -msgid "Results backend is not configured." -msgstr "后端未配置结果" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 +msgid "FRI" +msgstr "星期五" -#: superset/errors.py:122 -msgid "Results backend needed for asynchronous queries is not configured." -msgstr "后端未配置异步查询所需的结果" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 +msgid "SAT" +msgstr "星期六" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 -msgid "Return to specific datetime." -msgstr "返回指定的日期时间。" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 +msgid "JAN" +msgstr "一月" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 -#, fuzzy -msgid "Reverse Lat & Long" -msgstr "经纬度互换" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 +msgid "FEB" +msgstr "二月" -#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 -msgid "Reverse lat/long " -msgstr "经纬度互换" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 +msgid "MAR" +msgstr "三月" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 -msgid "Rich Tooltip" -msgstr "详细提示" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 +msgid "APR" +msgstr "四月" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 -msgid "Rich tooltip" -msgstr "详细提示" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 +msgid "MAY" +msgstr "五月" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 -msgid "Right" -msgstr "高度" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 +msgid "JUN" +msgstr "六月" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 -msgid "Right Axis Format" -msgstr "右轴格式化" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 +msgid "JUL" +msgstr "七月" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 -msgid "Right Axis Metric" -msgstr "右轴指标" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 +msgid "AUG" +msgstr "八月" -#: superset-frontend/src/explore/controls.jsx:214 -msgid "Right axis metric" -msgstr "右轴指标" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 +msgid "SEP" +msgstr "九月" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 -msgid "Right to Left" -msgstr "右到左" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 +msgid "OCT" +msgstr "十月" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 -msgid "Right value" -msgstr "右侧的值" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "十一月" -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 -msgid "Right-click on a dimension value to drill to detail by that value." -msgstr "" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 +msgid "DEC" +msgstr "十二月" -#: superset/dashboards/filters.py:200 -msgid "Role" -msgstr "用户信息" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:244 +msgid "There was an error loading the schemas" +msgstr "抱歉,这个看板在获取图表时发生错误:" -#: superset/views/core.py:408 -#, python-format -msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" -msgstr "扩展角色 %(r)s 以提供对 datasource %(ds)s 的访问" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:283 +#, fuzzy +msgid "Select database or type to search databases" +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 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 -#: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/views/dashboard/mixin.py:82 -msgid "Roles" -msgstr "角色" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:295 +msgid "Force refresh schema list" +msgstr "强制刷新数据" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:300 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:307 #, fuzzy -msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks. If no roles are " -"defined, regular access permissions apply." -msgstr "角色是一个定义对仪表板访问权限的列表。授予角色对仪表板的访问权限将绕过数据集级别的检查。如果未定义角色,则仪表板对所有角色都可用。" +msgid "Select schema or type to search schemas" +msgstr "选择表或输入表名" -#: superset/views/dashboard/mixin.py:65 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:306 #, fuzzy +msgid "No compatible schema found" +msgstr "找不到兼容的列" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 msgid "" -"Roles is a list which defines access to the dashboard. Granting a role " -"access to a dashboard will bypass dataset level checks.If no roles are " -"defined, regular access permissions apply." -msgstr "角色是一个定义对仪表板访问权限的列表。授予角色对仪表板的访问权限将绕过数据集级别的检查。如果未定义角色,则仪表板对所有角色都可用。" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "警告!如果元数据不存在,更改数据集可能会破坏图表。" -#: superset/views/access_requests.py:48 -msgid "Roles to grant" -msgstr "角色授权" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 +msgid "" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" +msgstr "如果图表依赖于目标数据集中不存在的列或元数据,则更改数据集可能会破坏图表" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 -msgid "Rolling Function" -msgstr "滚动函数" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:873 +msgid "dataset" +msgstr "数据集" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 -msgid "Rolling Window" -msgstr "滚动窗口" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +#, fuzzy +msgid "Successfully changed dataset!" +msgstr "修改数据集" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 -#: superset-frontend/src/explore/controlPanels/sections.tsx:131 -msgid "Rolling function" -msgstr "滚动函数" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 +msgid "Connection" +msgstr "连接" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 -#: superset-frontend/src/explore/controlPanels/sections.tsx:125 -msgid "Rolling window" -msgstr "滚动窗口" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:324 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:468 +#, fuzzy +msgid "Swap dataset" +msgstr "数据集" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 -#: superset/views/database/mixins.py:195 -msgid "Root certificate" -msgstr "根证书" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#, fuzzy +msgid "Proceed" +msgstr "红色" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 -msgid "Root node id" -msgstr "根节点id" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 +msgid "Warning!" +msgstr "警告!" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 +msgid "Search / Filter" +msgstr "搜索 / 过滤" + +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:481 +msgid "Add item" +msgstr "增加条件" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:147 #, fuzzy -msgid "Rotate axis label" -msgstr "旋转x轴标签" +msgid "STRING" +msgstr "正在执行" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 -msgid "Rotate x axis label" -msgstr "旋转x轴标签" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:148 +#, fuzzy +msgid "NUMERIC" +msgstr "我的指标" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 -msgid "Rotation to apply to words in the cloud" -msgstr "应用于词云中的单词的旋转方式" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:149 +#, fuzzy +msgid "DATETIME" +msgstr "日期/时间" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 -msgid "Round cap" -msgstr "国家地图" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 +msgid "BOOLEAN" +msgstr "" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:154 +msgid "Physical (table or view)" +msgstr "物理(表或视图)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 -#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 -msgid "Row" -msgstr "行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:155 +msgid "Virtual (SQL)" +msgstr "虚拟(SQL)" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 -#: superset/initialization/__init__.py:436 -msgid "Row Level Security" -msgstr "行级安全" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:278 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:281 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:366 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:374 +msgid "Data type" +msgstr "数据类型" -#: superset/views/database/forms.py:255 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:293 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:365 #, fuzzy -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row" -msgstr "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" +msgid "Advanced data type" +msgstr "数据缓存已加载" -#: superset/views/database/forms.py:342 -msgid "" -"Row containing the headers to use as column names (0 is first line of " -"data). Leave empty if there is no header row." -msgstr "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:297 +#, fuzzy +msgid "Advanced Data type" +msgstr "数据缓存已加载" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 -#: superset-frontend/src/explore/controls.jsx:340 -msgid "Row limit" -msgstr "行限制" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 +msgid "Datetime format" +msgstr "时间格式" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 -msgid "Rows" -msgstr "行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 +msgid "The pattern of timestamp format. For strings use " +msgstr "时间戳格式的模式。供字符串使用 " -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 -msgid "Rows per page, 0 means no pagination" -msgstr "每页行数,0 表示没有分页" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +msgid "Python datetime string pattern" +msgstr "Python日期格式模板" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 -msgid "Rows subtotal position" -msgstr "行小计的位置" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:314 +msgid " expression which needs to adhere to the " +msgstr " 表达式并基于 " -#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 -msgid "Rows to Read" -msgstr "读取的行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:316 +msgid "ISO 8601" +msgstr "ISO 8601" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 -#: superset-frontend/src/explore/controlPanels/sections.tsx:230 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 -msgid "Rule" -msgstr "规则" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:318 +msgid "" +" standard to ensure that the lexicographical ordering\n" +" coincides with the chronological ordering. If the\n" +" timestamp format does not adhere to the ISO 8601 " +"standard\n" +" you will need to define an expression and type for\n" +" transforming the string into a date or timestamp. " +"Note\n" +" currently time zones are not supported. If time is " +"stored\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" +" is specified we fall back to using the optional " +"defaults on a per\n" +" database/column name level via the extra parameter." +msgstr "" +"来确保字符的表达顺序与时间顺序一致的标准。如果时间戳格式不符合 ISO 8601 " +"标准,则需要定义表达式和类型,以便将字符串转换为日期或时间戳。注意:当前不支持时区。如果时间以epoch格式存储,请输入 `epoch_s` or" +" `epoch_ms` 。如果没有指定任何模式,我们可以通过额外的参数在每个数据库/列名级别上使用可选的默认值。" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 -#, fuzzy -msgid "Rule Name" -msgstr "查询名称" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:338 +msgid "Certified By" +msgstr "认证" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 -msgid "Rule added" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:339 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1285 +msgid "Person or group that has certified this metric" +msgstr "认证此指标的个人或团体" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 -msgid "Run" -msgstr "执行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1283 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1291 +#: 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" +msgstr "认证" -#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 -#, fuzzy -msgid "Run a query to display query history" -msgstr "运行一个查询,在此会显示结果" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:349 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:354 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1296 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1302 +#: 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" +msgstr "认证细节" -#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 -#, fuzzy -msgid "Run a query to display results" -msgstr "运行一个查询,在此会显示结果" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:350 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1298 +msgid "Details of the certification" +msgstr "认证详情" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 -msgid "Run in SQL Lab" -msgstr "在 SQL 工具箱中执行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:375 +msgid "Is dimension" +msgstr "维度" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 -msgid "Run query" -msgstr "运行查询" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:377 +#, fuzzy +msgid "Default datetime" +msgstr "默认纬度" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 -msgid "Run query (Ctrl + Return)" -msgstr "执行运行 (Ctrl + Return)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:378 +msgid "Is filterable" +msgstr "可被过滤" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 -msgid "Run query in a new tab" -msgstr "在新标签中运行查询" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:506 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1495 +#, fuzzy +msgid "" +msgstr "时间列" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 -msgid "Run selection" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +msgid "Select owners" msgstr "运行选定的查询" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 -msgid "Running" -msgstr "正在执行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format +msgid "Modified columns: %s" +msgstr "修改的列:%s" -#: superset/sql_lab.py:480 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:787 #, python-format -msgid "Running statement %(statement_num)s out of %(statement_count)s" -msgstr "" +msgid "Removed columns: %s" +msgstr "删除的列:%s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 -msgid "SAT" -msgstr "星期六" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:792 +#, python-format +msgid "New columns added: %s" +msgstr "新增的列:%s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 -msgid "SEP" -msgstr "九月" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:795 +msgid "Metadata has been synced" +msgstr "元数据已同步" -#: superset-frontend/src/features/home/RightMenu.tsx:506 -msgid "SHA" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:801 +#: superset-frontend/src/components/Tags/utils.tsx:70 +#: 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:41 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 +msgid "An error has occurred" +msgstr "发生了一个错误" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 -#: superset-frontend/src/features/home/commonMenuData.ts:22 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:348 -#: superset/initialization/__init__.py:356 -msgid "SQL" -msgstr "SQL" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:830 +#, python-format +msgid "Column name [%s] is duplicated" +msgstr "列名 [%s] 重复" -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 -msgid "SQL Copied!" -msgstr "SQL复制成功!" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:836 +#, python-format +msgid "Metric name [%s] is duplicated" +msgstr "指标名称 [%s] 重复" -#: superset/connectors/sqla/views.py:253 -msgid "SQL Expression" -msgstr "SQL表达式" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:845 +#, python-format +msgid "Calculated column [%s] requires an expression" +msgstr "计算列 [%s] 需要一个表达式" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 -#: superset/initialization/__init__.py:343 -#: superset/initialization/__init__.py:365 -msgid "SQL Lab" -msgstr "SQL 工具箱" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +msgid "Invalid currency code in saved metrics" +msgstr "" -#: superset/connectors/sqla/views.py:399 -msgid "SQL Lab View" -msgstr "SQL Lab 视图" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:878 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1777 +msgid "Basic" +msgstr "基础" -#: superset-frontend/src/SqlLab/components/App/index.jsx:155 -#, python-format -msgid "" -"SQL Lab uses your browser's local storage to store queries and results.\n" -"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " -"storage space.\n" -"To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you " -"delete the tab.\n" -"Note that you will need to close other SQL Lab windows before you do this." -msgstr "SQL Lab使用浏览器的本地存储来存储查询和结果" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:895 +msgid "Default URL" +msgstr "默认URL" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 -#: superset-frontend/src/features/home/SavedQueries.tsx:261 -msgid "SQL Query" -msgstr "SQL查询" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:896 +msgid "Default URL to redirect to when accessing from the dataset list page" +msgstr "从数据集列表页访问时重定向到的默认URL" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 -msgid "SQL expression" -msgstr "SQL表达式" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:904 +msgid "Autocomplete filters" +msgstr "自适配过滤条件" -#: superset-frontend/src/features/home/EmptyState.tsx:151 -#: superset-frontend/src/features/home/RightMenu.tsx:212 -msgid "SQL query" -msgstr "SQL查询" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:905 +msgid "Whether to populate autocomplete filters options" +msgstr "是否填充自适配过滤条件选项" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 -#: superset/views/database/mixins.py:191 -msgid "SQLAlchemy URI" -msgstr "SQLAlchemy URI" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:911 +msgid "Autocomplete query predicate" +msgstr "自动补全查询谓词" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 -msgid "SSH Host" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:912 +msgid "" +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" +"当使用 \"自适配过滤条件\" " +"时,这可以用来提高获取查询数据的性能。使用此选项可将谓词(WHERE子句)应用于从表中进行选择不同值的查询。通常,这样做的目的是通过对分区或索引的相关时间字段配置相对应的过滤时间来限制扫描。" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 -#, fuzzy -msgid "SSH Password" -msgstr "密码" - -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 -msgid "SSH Port" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:933 +msgid "" +"Extra data to specify table metadata. Currently supports metadata of the " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" +"指定表元数据的额外内容。目前支持的认证数据格式为:`{ \"certification\": { \"certified_by\": \"Data" +" Platform Team\", \"details\": \"This table is the source of truth.\" } " +"}`." -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 -msgid "SSH Tunnel" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:969 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 +msgid "Cache timeout" +msgstr "缓存时间" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:970 +#, fuzzy +msgid "" +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." +msgstr "缓存失效前的持续时间(以秒为单位)" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:977 +msgid "Hours offset" +msgstr "小时偏移" -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 -msgid "SSH Tunnel configuration parameters" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:979 +msgid "" +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." +msgstr "用于移动时间列的小时数(负数或正数)。这可用于将UTC时间移动到本地时间" -#: superset/databases/ssh_tunnel/commands/exceptions.py:29 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:996 #, fuzzy -msgid "SSH Tunnel could not be deleted." -msgstr "这个查询无法被加载。" +msgid "Normalize column names" +msgstr "自定义列" -#: superset/databases/ssh_tunnel/commands/exceptions.py:42 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1005 #, fuzzy -msgid "SSH Tunnel could not be updated." -msgstr "您的查询无法保存。" +msgid "Always filter main datetime column" +msgstr "主日期列" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1006 +msgid "" +"When the secondary temporal columns are filtered, apply the same filter " +"to the main datetime column." +msgstr "" -#: superset/databases/ssh_tunnel/commands/exceptions.py:34 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1027 #, fuzzy -msgid "SSH Tunnel not found." -msgstr "CSS模板未找到" +msgid "" +msgstr "空间" -#: superset/databases/ssh_tunnel/commands/exceptions.py:38 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1028 #, fuzzy -msgid "SSH Tunnel parameters are invalid." -msgstr "图表参数无效。" +msgid "" +msgstr "图表类型" -#: superset/databases/ssh_tunnel/commands/exceptions.py:51 -msgid "SSH Tunneling is not enabled" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1059 +msgid "Click the lock to make changes." +msgstr "单击锁以进行更改。" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 -msgid "SSL Mode \"require\" will be used." -msgstr "SSL模式 \"require\" 将被使用。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1062 +msgid "Click the lock to prevent further changes." +msgstr "单击锁定以防止进一步更改。" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 -msgid "START (INCLUSIVE)" -msgstr "开始 (包含)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +msgid "virtual" +msgstr "虚拟信息" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 -#, python-format -msgid "STEP %(stepCurr)s OF %(stepLast)s" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1119 +msgid "Dataset name" +msgstr "数据集名称" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 -#, fuzzy -msgid "STRING" -msgstr "正在执行" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1129 +msgid "" +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." +msgstr "指定SQL时,数据源会充当视图。在对生成的父查询进行分组和筛选时,系统将使用此语句作为子查询。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 -msgid "SUN" -msgstr "星期日" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1154 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:534 +msgid "Physical" +msgstr "物理信息" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1195 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "指向物理表(或视图)的指针。请记住,图表将与此逻辑表相关联,并且此逻辑表指向此处引用的物理表。" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 #, fuzzy -msgid "Sample Standard Deviation" -msgstr "就业和教育" +msgid "Metric Key" +msgstr "指标" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 -msgid "Sample Variance" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1242 +msgid "" +"This field is used as a unique identifier to attach the metric to charts." +" It is also used as the alias in the SQL query." msgstr "" -#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 -#, fuzzy -msgid "Samples" -msgstr "重新采样" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1263 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:61 +msgid "D3 format" +msgstr "D3 格式" -#: superset/datasets/commands/exceptions.py:194 -#, fuzzy -msgid "Samples for dataset could not be retrieved." -msgstr "无法创建数据集。" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1270 +msgid "Metric currency" +msgstr "" -#: superset/explore/exceptions.py:45 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1274 #, fuzzy -msgid "Samples for datasource could not be retrieved." -msgstr "无法创建数据集。" - -#: superset/viz.py:1854 -msgid "Sankey" -msgstr "蛇形图" +msgid "Select or type currency symbol" +msgstr "选择或键入一个值" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 -msgid "Sankey Diagram" -msgstr "桑基图" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1307 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 +msgid "Warning" +msgstr "警告!" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 -msgid "Sankey Diagram with Loops" -msgstr "桑基图" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1309 +msgid "Optional warning about use of this metric" +msgstr "关于使用此指标的可选警告" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1326 #, fuzzy -msgid "Satellite" -msgstr "日期过滤器" +msgid "" +msgstr "保存的指标" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 -msgid "Satellite Streets" -msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1402 +msgid "Be careful." +msgstr "小心。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 -msgid "Saturday" -msgstr "星期六" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1403 +msgid "" +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." +msgstr "更改这些设置将影响使用此数据集的所有图表,包括其他人拥有的图表。" -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 -#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 -#: superset-frontend/src/components/ReportModal/index.tsx:228 -#: superset-frontend/src/dashboard/components/Header/index.jsx:607 -#: superset-frontend/src/dashboard/components/Header/index.jsx:609 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx: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 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:449 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 -msgid "Save" -msgstr "保存" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1450 +msgid "Sync columns from source" +msgstr "从源同步列" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 -msgid "Save & Explore" -msgstr "保存和浏览" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1470 +msgid "Calculated columns" +msgstr "计算列" -#: superset-frontend/src/explore/components/SaveModal.tsx:430 -msgid "Save & go to dashboard" -msgstr "保存并转到看板" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1482 +msgid "" +"This field is used as a unique identifier to attach the calculated " +"dimension to charts. It is also used as the alias in the SQL query." +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:429 -#, fuzzy -msgid "Save & go to new dashboard" -msgstr "保存并转到看板" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1498 +msgid "" +msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:343 -msgid "Save (Overwrite)" -msgstr "保存(覆盖)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1504 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:191 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:283 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:440 +msgid "Settings" +msgstr "设置" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 -msgid "Save as" -msgstr "另存为" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:192 +#: superset-frontend/src/pages/ChartCreation/index.tsx:217 +msgid "The dataset has been saved" +msgstr "数据集已保存" -#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:219 #, fuzzy -msgid "Save as Dataset" -msgstr "选择数据源" +msgid "Error saving dataset" +msgstr "保存数据集时发生错误" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 -#, fuzzy -msgid "Save as dataset" -msgstr "选择数据源" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:253 +msgid "" +"The dataset configuration exposed here\n" +" affects all the charts using this dataset.\n" +" Be mindful that changing settings\n" +" here may affect other charts\n" +" in undesirable ways." +msgstr "这里公开的数据集配置会影响使用此数据集的所有图表。请注意,更改此处的设置可能会以未预想的方式影响其他图表。" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 -msgid "Save as new" -msgstr "保存为新的" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 +msgid "Are you sure you want to save and apply changes?" +msgstr "确实要保存并应用更改吗?" -#: superset-frontend/src/explore/components/SaveModal.tsx:446 -msgid "Save as new chart" -msgstr "创建新图表" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:265 +msgid "Confirm save" +msgstr "确认保存" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 -#, fuzzy -msgid "Save as..." -msgstr "另存为 ..." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:269 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:217 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:864 +msgid "OK" +msgstr "确认" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 -msgid "Save as:" -msgstr "另存为:" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:284 +msgid "Edit Dataset " +msgstr "编辑数据集" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 -#, fuzzy -msgid "Save changes" -msgstr "放弃更改" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:302 +msgid "Use legacy datasource editor" +msgstr "使用旧数据源编辑器" -#: superset-frontend/src/explore/components/SaveModal.tsx:466 -msgid "Save chart" -msgstr "图表保存" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:325 +msgid "This dataset is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 -msgid "Save dashboard" -msgstr "保存看板" +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 +msgid "DELETE" +msgstr "删除" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 -#, fuzzy -msgid "Save dataset" -msgstr "修改数据集" +#: superset-frontend/src/components/DeleteModal/index.tsx:84 +msgid "delete" +msgstr "删除" -#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 -msgid "Save for this session" -msgstr "保存此会话" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#, python-format +msgid "Type \"%s\" to confirm" +msgstr "键入 \"%s\" 来确认" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 -msgid "Save or Overwrite Dataset" -msgstr "" +#: superset-frontend/src/components/DropdownContainer/index.tsx:125 +#, fuzzy +msgid "More" +msgstr "查看更多" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 -msgid "Save query" -msgstr "保存查询" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 +msgid "Click to edit" +msgstr "点击编辑" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 -msgid "Save the query to enable this feature" -msgstr "请保存查询以启用共享" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "您没有权利修改这个标题。" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 -msgid "Save this query as a virtual dataset to continue exploring" -msgstr "" +#: superset-frontend/src/components/EmptyState/index.tsx:228 +msgid "No databases match your search" +msgstr "没有与您的搜索匹配的数据库" -#: superset-frontend/src/explore/components/SaveModal.tsx:448 -#, fuzzy -msgid "Save to new dashboard" -msgstr "保存并转到看板" +#: superset-frontend/src/components/EmptyState/index.tsx:229 +msgid "There are no databases available" +msgstr "没有可用的数据库" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 -msgid "Saved" -msgstr "保存" +#: superset-frontend/src/components/EmptyState/index.tsx:230 +msgid "Manage your databases" +msgstr "管理你的数据库" -#: superset/initialization/__init__.py:352 -msgid "Saved Queries" -msgstr "已保存查询" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1038 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1853 +#, fuzzy +msgid "here" +msgstr "分享" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 -msgid "Saved expressions" -msgstr "保存表达式" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 +msgid "Unexpected error" +msgstr "意外错误。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 -msgid "Saved metric" -msgstr "保存的指标" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 +msgid "This may be triggered by:" +msgstr "这可能由以下因素触发:" -#: superset-frontend/src/features/home/commonMenuData.ts:26 -#: superset-frontend/src/pages/Home/index.tsx:414 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 -msgid "Saved queries" -msgstr "已保存查询" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." +msgstr "请联系图表所有者寻求帮助。" -#: superset/queries/saved_queries/commands/exceptions.py:28 -msgid "Saved queries could not be deleted." -msgstr "保存的查询无法被删除" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format +msgid "Chart Owner: %s" +msgstr "图表所有者:%s" -#: superset/queries/saved_queries/commands/exceptions.py:32 -msgid "Saved query not found." -msgstr "保存的查询未找到" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format +msgid "" +"%(message)s\n" +"This may be triggered by: \n" +"%(issues)s" +msgstr "" +"%(message)s\n" +"这可能由以下因素触发:%(issues)s" -#: superset/queries/saved_queries/commands/exceptions.py:40 -msgid "Saved query parameters are invalid." -msgstr "保存的查询参数无效" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format +msgid "%s Error" +msgstr "%s 异常" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 -msgid "Scale and Move" -msgstr "缩放和移动" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:396 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:452 +msgid "Missing dataset" +msgstr "丢失数据集" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 -msgid "Scale only" -msgstr "存在规模" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:130 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:144 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:161 +msgid "See more" +msgstr "查看更多" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 -msgid "Scatter" -msgstr "散点" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:174 +msgid "See less" +msgstr "查看更少" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 -msgid "Scatter Plot" -msgstr "散点图" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:204 +msgid "Copy message" +msgstr "复制信息" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 +#: superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx:98 #, fuzzy -msgid "" -"Scatter Plot has the horizontal axis in linear units, and the points are " -"connected in order. It shows a statistical relationship between two " -"variables." -msgstr "时间序列散点图在水平轴上以线性单位表示时间,点按顺序连接。它显示了两个变量之间的统计关系" - -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:305 -#: superset-frontend/src/pages/AlertReportList/index.tsx:276 -msgid "Schedule" -msgstr "调度" +msgid "Details" +msgstr "显示总计" -#: superset-frontend/src/components/ReportModal/index.tsx:211 +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 #, fuzzy -msgid "Schedule a new email report" -msgstr "为图表配置电子邮件报告" +msgid "This was triggered by:" +msgstr "这是由以下因素引发的:" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 -msgid "Schedule email report" -msgstr "为图表配置电子邮件报告" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 +msgid "Did you mean:" +msgstr "您的意思是:" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 -msgid "Schedule query" -msgstr "分享查询" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format +msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" +msgstr "用 %(suggestion)s 替换 \"%(undefinedParameter)s\" 吗?" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 -msgid "Schedule settings" -msgstr "计划设置" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 +msgid "Parameter error" +msgstr "参数错误" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 -msgid "Schedule the query periodically" -msgstr "定期调度查询" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgstr "加载此可视化效果时遇到问题。查询设置为 %s 秒后超时。" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 -msgid "Scheduled" -msgstr "被调度" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgstr "加载结果时遇到问题。查询设置为 %s 秒后超时。" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 -msgid "Scheduled at (UTC)" -msgstr "计划时间" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format +msgid "" +"%(subtitle)s\n" +"This may be triggered by:\n" +" %(issue)s" +msgstr "" +"%(subtitle)s\n" +"这可能由以下因素触发:%(issue)s" -#: superset/tasks/exceptions.py:24 -#, fuzzy -msgid "Scheduled task executor not found" -msgstr "未找到报表计划状态" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 +msgid "Timeout error" +msgstr "超时错误" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 -#: superset-frontend/src/pages/DatasetList/index.tsx:365 -#: superset-frontend/src/pages/DatasetList/index.tsx:547 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 -#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 -msgid "Schema" -msgstr "模式" +#: superset-frontend/src/components/FaveStar/index.tsx:76 +msgid "Click to favorite/unfavorite" +msgstr "点击 收藏/取消收藏" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 -msgid "Schema cache timeout" -msgstr "图表缓存超时" +#: superset-frontend/src/components/FilterableTable/utils.tsx:49 +msgid "Cell content" +msgstr "单元格内容" -#: superset/views/core.py:1186 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:134 #, fuzzy -msgid "Schema undefined" -msgstr "未命名" - -#: superset/connectors/sqla/views.py:336 -msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" -msgstr "模式,只在一些数据库中使用,比如Postgres、Redshift和DB2" +msgid "Hide password." +msgstr "密码" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:138 #, fuzzy -msgid "Schemas allowed for File upload" -msgstr "模式允许使用CSV上传" +msgid "Show password." +msgstr "显示看板" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +msgid "" +"Database driver for importing maybe not installed. Visit the Superset " +"documentation page for installation instructions: " +msgstr "" + +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1442 +msgid "OVERWRITE" +msgstr "覆盖" + +#: superset-frontend/src/components/ImportModal/index.tsx:291 #, fuzzy -msgid "Scope" -msgstr "停止" +msgid "Database passwords" +msgstr "数据库端口" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 -msgid "Scoping" -msgstr "范围" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1363 +#, fuzzy, python-format +msgid "%s PASSWORD" +msgstr "密码" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 -msgid "Scroll" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1381 +#, python-format +msgid "%s SSH TUNNEL PASSWORD" msgstr "" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 -msgid "Scroll down to the bottom to enable overwriting changes. " +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1399 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 -#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 -#: superset-frontend/src/pages/AlertReportList/index.tsx:507 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 -#: superset-frontend/src/pages/ChartList/index.tsx:724 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 -#: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:503 -#: superset-frontend/src/pages/DatasetList/index.tsx:588 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 -#: superset-frontend/src/pages/Tags/index.tsx:204 -#: superset/templates/appbuilder/general/widgets/search.html:40 -msgid "Search" -msgstr "搜索" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 -msgid "Search / Filter" -msgstr "搜索 / 过滤" - -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 -msgid "Search Metrics & Columns" -msgstr "搜索指标和列" - -#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:778 -msgid "Search all charts" -msgstr "搜索所有图表" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1419 +#, python-format +msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 -msgid "Search all filter options" -msgstr "搜索所有过滤选项" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:485 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:459 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:497 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:153 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 +msgid "Overwrite" +msgstr "覆盖" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 -msgid "Search box" -msgstr "搜索框" +#: superset-frontend/src/components/ImportModal/index.tsx:426 +msgid "Import" +msgstr "导入" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 -msgid "Search by query text" -msgstr "按查询文本搜索" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format +msgid "Import %s" +msgstr "导入 %s" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#: superset-frontend/src/components/ImportModal/index.tsx:445 #, fuzzy -msgid "Search columns" -msgstr "使用列" +msgid "Select file" +msgstr "选择过滤器" -#: superset-frontend/src/components/Table/index.tsx:206 -#, fuzzy -msgid "Search in filters" -msgstr "搜索 / 过滤" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format +msgid "Last Updated %s" +msgstr "上次更新 %s" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 -#, fuzzy -msgid "Search tables" -msgstr "用户角色" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:227 +msgid "Sort" +msgstr "排序:" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 -msgid "Search..." -msgstr "搜索..." +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format +msgid "+ %s more" +msgstr "" + +#: superset-frontend/src/components/ListView/ListView.tsx:252 +#, python-format +msgid "%s Selected" +msgstr "%s 已选定" -#: superset/db_engine_specs/base.py:97 -msgid "Second" -msgstr "秒" +#: superset-frontend/src/components/ListView/ListView.tsx:384 +msgid "Deselect all" +msgstr "反选所有" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 -msgid "Secondary" -msgstr "次要的" +#: superset-frontend/src/components/ListView/ListView.tsx:410 +msgid "Add Tag" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 -msgid "Secondary Metric" -msgstr "次计量指标" +#: superset-frontend/src/components/ListView/ListView.tsx:446 +msgid "No results match your filter criteria" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 -#, fuzzy -msgid "Secondary y-axis Bounds" -msgstr "次级y轴格式" +#: superset-frontend/src/components/ListView/ListView.tsx:447 +msgid "Try different criteria to display results." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 -msgid "Secondary y-axis format" -msgstr "次级y轴格式" +#: superset-frontend/src/components/ListView/ListView.tsx:450 +#, fuzzy +msgid "clear all filters" +msgstr "搜索所有过滤选项" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 -msgid "Secondary y-axis title" -msgstr "二级轴标题" +#: superset-frontend/src/components/ListView/ListView.tsx:455 +msgid "No Data" +msgstr "没有数据" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#: superset-frontend/src/components/ListView/ListView.tsx:475 +#: superset-frontend/src/components/TableView/TableView.tsx:250 #, python-format -msgid "Seconds %s" -msgstr "%s 秒" +msgid "%s-%s of %s" +msgstr "%s-%s 总计 %s" -#: superset/views/database/mixins.py:194 -msgid "Secure Extra" -msgstr "安全" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "Start date" +msgstr "开始时间" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 -msgid "Secure extra" -msgstr "安全" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:306 +#, fuzzy +msgid "End date" +msgstr "发送文本" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 -#: superset/initialization/__init__.py:389 -#: superset/initialization/__init__.py:427 -#: superset/initialization/__init__.py:438 -msgid "Security" -msgstr "安全" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 +msgid "Type a value" +msgstr "请输入值" -#: superset-frontend/src/profile/components/App.tsx:82 -msgid "Security & Access" -msgstr "安全 & 访问" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 +msgid "Filter" +msgstr "过滤器" -#: superset-frontend/src/features/home/EmptyState.tsx:183 -#, python-format -msgid "See all %(tableName)s" -msgstr "查看全部 - %(tableName)s" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 +msgid "Select or type a value" +msgstr "选择或键入一个值" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 -msgid "See less" -msgstr "查看更少" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AlertReportList/index.tsx:328 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:165 +#: superset-frontend/src/pages/ChartList/index.tsx:450 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:142 +#: superset-frontend/src/pages/DashboardList/index.tsx:371 +#: superset-frontend/src/pages/DatabaseList/index.tsx:403 +#: superset-frontend/src/pages/DatasetList/index.tsx:405 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:157 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:186 +msgid "Last modified" +msgstr "最后修改" -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 -#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 -msgid "See more" -msgstr "查看更多" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/AlertReportList/index.tsx:494 +#: superset-frontend/src/pages/ChartList/index.tsx:681 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:230 +#: superset-frontend/src/pages/DashboardList/index.tsx:564 +#: superset-frontend/src/pages/DatabaseList/index.tsx:526 +#: superset-frontend/src/pages/DatasetList/index.tsx:603 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:504 +#: superset-frontend/src/pages/Tags/index.tsx:265 +msgid "Modified by" +msgstr "修改人" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 -#, fuzzy -msgid "See query details" -msgstr "已保存查询" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +msgid "Created by" +msgstr "创建人" -#: superset-frontend/src/components/TableSelector/index.tsx:277 -msgid "See table schema" -msgstr "选择表" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:96 +msgid "Created on" +msgstr "创建日期" -#: superset-frontend/src/explore/components/SaveModal.tsx:398 -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 -msgid "Select" -msgstr "批量选择" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:163 +msgid "Menu actions trigger" +msgstr "" -#: superset-frontend/src/components/AsyncSelect/index.jsx:41 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:104 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:130 +#: superset-frontend/src/components/Select/Select.tsx:112 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 #: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "选择 ..." -#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 -msgid "Select Delivery Method" -msgstr "添加通知方法" - -#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 -msgid "Select Viz Type" -msgstr "选择一个可视化类型" - -#: superset/views/database/forms.py:425 -msgid "Select a Columnar file to be uploaded to a database." -msgstr "选择要上传到数据库的Excel文件。" - -#: superset/views/database/forms.py:289 -msgid "Select a Excel file to be uploaded to a database." -msgstr "选择要上传到数据库的Excel文件。" - -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 -msgid "Select a column" -msgstr "反选所有" - -#: superset-frontend/src/explore/components/SaveModal.tsx:392 -msgid "Select a dashboard" -msgstr "看板" - -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy -msgid "Select a database table and create dataset" -msgstr "选择要写入查询的数据库" +msgid "Filter menu" +msgstr "过滤值" -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 +#: superset-frontend/src/components/Table/index.tsx:218 #, fuzzy -msgid "Select a database table." -msgstr "选择将要连接的数据库" - -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 -msgid "Select a database to connect" -msgstr "选择将要连接的数据库" +msgid "Reset" +msgstr "最近" -#: superset/views/database/forms.py:138 +#: superset-frontend/src/components/Table/index.tsx:219 #, fuzzy -msgid "Select a database to upload the file to" -msgstr "选择将要连接的数据库" - -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 -msgid "Select a database to write a query" -msgstr "选择要写入查询的数据库" +msgid "No filters" +msgstr "无筛选" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 +#: superset-frontend/src/components/Table/index.tsx:220 #, fuzzy -msgid "Select a dimension" -msgstr "维度" +msgid "Select all items" +msgstr "反选所有" -#: superset/views/database/forms.py:110 +#: superset-frontend/src/components/Table/index.tsx:221 #, fuzzy -msgid "Select a file to be uploaded to the database" -msgstr "选择一个CSV文件上传到数据库." +msgid "Search in filters" +msgstr "搜索 / 过滤" -#: superset/views/database/forms.py:155 +#: superset-frontend/src/components/Table/index.tsx:223 #, fuzzy -msgid "Select a schema if the database supports this" -msgstr "指定一个Schema(需要数据库支持)" +msgid "Select current page" +msgstr "选择父级过滤" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 -msgid "Select a visualization type" -msgstr "选择一个可视化类型" +#: superset-frontend/src/components/Table/index.tsx:224 +#, fuzzy +msgid "Invert current page" +msgstr "百分比变化" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 -msgid "Select aggregate options" -msgstr "选择总选项" +#: superset-frontend/src/components/Table/index.tsx:225 +#, fuzzy +msgid "Clear all data" +msgstr "清除所有" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:226 #, fuzzy msgid "Select all data" msgstr "反选所有" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:228 #, fuzzy -msgid "Select all items" -msgstr "反选所有" - -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 -msgid "Select any columns for metadata inspection" -msgstr "选择任意列进行元数据巡检" +msgid "Expand row" +msgstr "标题行" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#: superset-frontend/src/components/Table/index.tsx:229 #, fuzzy -msgid "Select chart" -msgstr "所有图表" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 -msgid "Select charts" -msgstr "所有图表" - -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 -msgid "Select color scheme" -msgstr "线性颜色方案" - -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 -msgid "Select column" -msgstr "时间列" +msgid "Collapse row" +msgstr "全部折叠" -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:230 #, fuzzy -msgid "Select current page" -msgstr "选择父级过滤" +msgid "Click to sort descending" +msgstr "降序" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 +#: superset-frontend/src/components/Table/index.tsx:231 #, fuzzy -msgid "Select database & schema" -msgstr "选择表" +msgid "Click to sort ascending" +msgstr "按照升序进行排序" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 -#, fuzzy -msgid "Select database or type to search databases" -msgstr "选择表或输入表名" +#: superset-frontend/src/components/Table/index.tsx:232 +msgid "Click to cancel sorting" +msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 +#: superset-frontend/src/components/TableSelector/index.tsx:187 #, fuzzy -msgid "Select database table" -msgstr "删除数据库" +msgid "List updated" +msgstr "上一季度" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 -msgid "" -"Select databases require additional fields to be completed in the " -"Advanced tab to successfully connect the database. Learn what " -"requirements your databases has " -msgstr "选择数据库需要在Advanced选项卡中完成额外的字段才能成功连接数据库了解数据库的需求" +#: superset-frontend/src/components/TableSelector/index.tsx:194 +msgid "There was an error loading the tables" +msgstr "您的请求有错误" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 -#, fuzzy -msgid "Select dataset source" -msgstr "使用旧数据源编辑器" +#: superset-frontend/src/components/TableSelector/index.tsx:283 +msgid "See table schema" +msgstr "选择表" -#: superset-frontend/src/components/ImportModal/index.tsx:445 +#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/TableSelector/index.tsx:301 #, fuzzy -msgid "Select file" -msgstr "选择过滤器" +msgid "Select table or type to search tables" +msgstr "选择表或输入表名" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/filters/components/Select/index.ts:28 -msgid "Select filter" -msgstr "选择过滤器" +#: superset-frontend/src/components/TableSelector/index.tsx:313 +msgid "Force refresh table list" +msgstr "强制刷新数据" -#: superset-frontend/src/filters/components/Select/index.ts:29 -msgid "Select filter plugin using AntD" -msgstr "选择过滤器" +#: superset-frontend/src/components/Tags/utils.tsx:72 +#, fuzzy +msgid "You do not have permission to read tags" +msgstr "您没有编辑此图表的权限" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 -msgid "Select first filter value by default" -msgstr "" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "时区选择" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 -msgid "Select operator" -msgstr "选择运营商" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "交叉筛选作用域" -#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 -#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 -msgid "Select or type a value" -msgstr "选择或键入一个值" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "此组件没有足够的空间。请尝试减小其宽度,或增加目标宽度。" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 -#, fuzzy -msgid "Select or type dataset name" -msgstr "选择表或输入表名" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 +msgid "Can not move top level tab into nested tabs" +msgstr "无法将顶级tab页移动到嵌套tab页中" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 -msgid "Select owners" -msgstr "运行选定的查询" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 +msgid "This chart has been moved to a different filter scope." +msgstr "此图表已移至其他过滤器范围内。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 -msgid "Select saved metrics" -msgstr "选择保存指标" +#: superset-frontend/src/dashboard/actions/dashboardState.js:99 +msgid "There was an issue fetching the favorite status of this dashboard." +msgstr "获取此看板的收藏夹状态时出现问题。" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 -#, fuzzy -msgid "Select schema or type to search schemas" -msgstr "选择表或输入表名" +#: superset-frontend/src/dashboard/actions/dashboardState.js:123 +msgid "There was an issue favoriting this dashboard." +msgstr "收藏看板时候出现问题。" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 -msgid "Select scheme" -msgstr "选择表" +#: superset-frontend/src/dashboard/actions/dashboardState.js:147 +msgid "This dashboard is now published" +msgstr "当前看板 ${nowPublished}" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 -msgid "Select start and end date" -msgstr "选择开始和结束时间" +#: superset-frontend/src/dashboard/actions/dashboardState.js:148 +msgid "This dashboard is now hidden" +msgstr "无法修改该看板" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 -msgid "Select subject" -msgstr "选择主题" +#: superset-frontend/src/dashboard/actions/dashboardState.js:156 +msgid "You do not have permissions to edit this dashboard." +msgstr "您没有编辑此看板的权限。" -#: superset-frontend/src/components/TableSelector/index.tsx:284 -#: superset-frontend/src/components/TableSelector/index.tsx:295 +#: superset-frontend/src/dashboard/actions/dashboardState.js:256 #, fuzzy -msgid "Select table or type to search tables" -msgstr "选择表或输入表名" +msgid "[ untitled dashboard ]" +msgstr "编辑仪表盘" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:309 +#: superset-frontend/src/dashboard/actions/dashboardState.js:348 +msgid "This dashboard was saved successfully." +msgstr "该看板已成功保存。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 +#: superset-frontend/src/dashboard/actions/dashboardState.js:355 #, fuzzy -msgid "Select the Annotation Layer you would like to use." -msgstr "选择注释层类型" +msgid "Sorry, an unknown error occurred" +msgstr "抱歉,发生错误" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 -msgid "" -"Select the charts to which you want to apply cross-filters in this " -"dashboard. Deselecting a chart will exclude it from being filtered when " -"applying cross-filters from any chart on the dashboard. You can select " -"\"All charts\" to apply cross-filters to all charts that use the same " -"dataset or contain the same column name in the dashboard." +#: superset-frontend/src/dashboard/actions/dashboardState.js:358 +#, python-format +msgid "Sorry, there was an error saving this dashboard: %s" +msgstr "抱歉,这个看板在获取图表时发生错误:%s" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:364 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:135 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:43 +msgid "You do not have permission to edit this dashboard" +msgstr "您没有编辑此看板的权限" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:443 +msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +#: superset-frontend/src/dashboard/actions/dashboardState.js:642 +#, python-format msgid "" -"Select the charts to which you want to apply cross-filters when " -"interacting with this chart. You can select \"All charts\" to apply " -"filters to all charts that use the same dataset or contain the same " -"column name in the dashboard." +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 -#, fuzzy -msgid "Select the geojson column" -msgstr "反选所有" - -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 -msgid "Select the number of bins for the histogram" -msgstr "选择直方图的容器数" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:153 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 +msgid "Could not fetch all saved charts" +msgstr "无法获取所有保存的图表" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 -msgid "Select the numeric columns to draw the histogram" -msgstr "选择直方图的容器数" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:158 +msgid "Sorry there was an error fetching saved charts: " +msgstr "抱歉,这个看板在获取图表时发生错误:" -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 -#, python-format +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" -"Select values in highlighted field(s) in the control panel. Then run the " -"query by clicking on the %s button." -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 -msgid "Send as CSV" -msgstr "发送为CSV" +"Any color palette selected here will override the colors applied to this " +"dashboard's individual charts" +msgstr "此处选择的任何调色板都将覆盖应用于此看板的各个图表的颜色" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 -msgid "Send as PNG" -msgstr "发送PNG" +#: superset-frontend/src/dashboard/components/Dashboard.jsx:85 +msgid "You have unsaved changes." +msgstr "您有一些未保存的修改。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 -msgid "Send as text" -msgstr "发送文本" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:199 +msgid "Drag and drop components and charts to the dashboard" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 -msgid "Send range filter events to other charts" -msgstr "将过滤条件的事件发送到其他图表" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:200 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:223 +msgid "" +"You can create a new chart or use existing ones from the panel on the " +"right" +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 -msgid "September" -msgstr "九月" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:206 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:229 +#: superset-frontend/src/pages/ChartCreation/index.tsx:324 +msgid "Create a new chart" +msgstr "创建新图表" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 -msgid "Sequential" -msgstr "顺序" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:222 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:189 +msgid "Drag and drop components to this tab" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 -msgid "Series" -msgstr "序列" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:243 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:190 +msgid "There are no components added to this tab" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 -msgid "Series Height" -msgstr "序列高度" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:245 +msgid "You can add the components in the edit mode." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:651 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:247 #, fuzzy -msgid "Series Limit Sort By" -msgstr "序列限制" +msgid "Edit the dashboard" +msgstr "编辑仪表盘" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 -#, fuzzy -msgid "Series Limit Sort Descending" -msgstr "降序" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +msgid "" +"There is no chart definition associated with this component, could it " +"have been deleted?" +msgstr "没有与此组件关联的图表定义,是否已将其删除?" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 -#, fuzzy -msgid "Series Order" -msgstr "图示类型" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 +msgid "Delete this container and save to remove this message." +msgstr "删除此容器并保存以删除此邮件。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 -msgid "Series Style" -msgstr "线条样式" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 +#, fuzzy +msgid "Refresh interval saved" +msgstr "刷新间隔" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 -msgid "Series chart type (line, bar etc)" -msgstr "系列图表类型(折线,柱状图等)" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 +msgid "Refresh interval" +msgstr "刷新间隔" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 -#: superset-frontend/src/explore/controls.jsx:350 -msgid "Series limit" -msgstr "序列限制" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 +msgid "Refresh frequency" +msgstr "刷新频率" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 -msgid "Series type" -msgstr "图示类型" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 +msgid "Are you sure you want to proceed?" +msgstr "您确定要继续执行吗?" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 -msgid "Server Page Length" -msgstr "页面长度" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +msgid "Save for this session" +msgstr "保存此会话" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 -msgid "Server pagination" -msgstr "服务器分页" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 +msgid "You must pick a name for the new dashboard" +msgstr "您必须为新的看板选择一个名称" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 -msgid "Service Account" -msgstr "服务帐户" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 +msgid "Save dashboard" +msgstr "保存看板" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 -msgid "Set auto-refresh interval" -msgstr "设置自动刷新" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format +msgid "Overwrite Dashboard [%s]" +msgstr "覆盖看板 [%s]" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 -msgid "Set filter mapping" -msgstr "设置过滤映射" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 +msgid "Save as:" +msgstr "另存为:" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 -#, fuzzy -msgid "Set up an email report" -msgstr "删除邮件报告" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 +msgid "[dashboard name]" +msgstr "[看板名称]" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of " -"the hierarchy." -msgstr "" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 +msgid "also copy (duplicate) charts" +msgstr "同时复制图表" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 -#: superset-frontend/src/features/home/RightMenu.tsx:439 -msgid "Settings" -msgstr "设置" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +#, fuzzy +msgid "viz type" +msgstr "可视化类型" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 -msgid "Settings for time series" -msgstr "时间序列设置" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +#, fuzzy +msgid "recent" +msgstr "最近" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 -#: superset-frontend/src/features/home/SavedQueries.tsx:211 -msgid "Share" -msgstr "分享" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:340 +#: superset-frontend/src/pages/ChartCreation/index.tsx:373 +msgid "Create new chart" +msgstr "创建新图表" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 -msgid "Share chart by email" -msgstr "通过电子邮件分享图表”" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:347 +msgid "Filter your charts" +msgstr "过滤您的图表" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:348 #, fuzzy -msgid "Share permalink by email" -msgstr "通过电子邮件分享图表”" +msgid "Filter charts" +msgstr "过滤您的图表" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 -msgid "Shared query" -msgstr "已分享的查询" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:359 +#, python-format +msgid "Sort by %s" +msgstr "排序 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 -#, fuzzy -msgid "Shared query fields" -msgstr "已保存查询" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:380 +msgid "Show only my charts" +msgstr "" -#: superset/views/database/forms.py:308 -msgid "Sheet Name" -msgstr "Sheet名称" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 +msgid "" +"You can choose to display all charts that you have access to or only the " +"ones you own.\n" +" Your filter selection will be saved and remain active until" +" you choose to change it." +msgstr "" + +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:137 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:164 +msgid "Added" +msgstr "已添加" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 -msgid "Shift + Click to sort by multiple columns" -msgstr "" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:193 +#, fuzzy +msgid "Unknown type" +msgstr "未知错误" -#: superset/annotation_layers/annotations/commands/exceptions.py:46 -msgid "Short description must be unique for this layer" -msgstr "此层的简述必须是唯一的" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:279 +msgid "Viz type" +msgstr "可视化类型" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 -msgid "" -"Should daily seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "一个整数值将指定季节性的傅立叶顺序。" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:281 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:89 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:881 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:918 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:333 +#: superset-frontend/src/pages/ChartList/index.tsx:383 +#: superset-frontend/src/pages/ChartList/index.tsx:612 +#: superset-frontend/src/pages/DatasetList/index.tsx:645 +msgid "Dataset" +msgstr "数据集" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 -msgid "" -"Should weekly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "一个整数值将指定季节性的傅立叶顺序。" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:508 +msgid "Superset chart" +msgstr "选择图表" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 -msgid "" -"Should yearly seasonality be applied. An integer value will specify " -"Fourier order of seasonality." -msgstr "一个整数值将指定“季节性的傅立叶顺序。" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 +msgid "Check out this chart in dashboard:" +msgstr "在仪表盘中查看此图表" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 -msgid "Show" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 +msgid "Layout elements" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 -msgid "Show Bubbles" -msgstr "显示气泡" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 +msgid "Load a CSS template" +msgstr "加载一个 CSS 模板" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 -msgid "Show CREATE VIEW statement" -msgstr "显示 CREATE VIEW 语句" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 +msgid "Live CSS editor" +msgstr "即时 CSS 编辑器" -#: superset/views/css_templates.py:39 -msgid "Show CSS Template" -msgstr "查看CSS模板" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:532 +#, fuzzy +msgid "Collapse tab content" +msgstr "单元格内容" -#: superset/views/chart/mixin.py:26 -msgid "Show Chart" -msgstr "显示图表" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:644 +#, fuzzy +msgid "There are no charts added to this dashboard" +msgstr "此看板中没有过滤条件。" -#: superset/connectors/sqla/views.py:72 -msgid "Show Column" -msgstr "显示列" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:647 +msgid "Go to the edit mode to configure the dashboard and add charts" +msgstr "" -#: superset/views/dashboard/mixin.py:25 -msgid "Show Dashboard" -msgstr "显示看板" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:80 +msgid "Changes saved." +msgstr "" -#: superset/views/database/mixins.py:34 -msgid "Show Database" -msgstr "显示数据库" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:98 +msgid "Disable embedding?" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 -msgid "Show Labels" -msgstr "显示标签" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:99 +msgid "This will remove your current embed configuration." +msgstr "" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show Less..." -msgstr "显示. ." +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:108 +msgid "Embedding deactivated." +msgstr "" -#: superset/views/log/__init__.py:22 -msgid "Show Log" -msgstr "查看日志" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:114 +#, fuzzy +msgid "Sorry, something went wrong. Embedding could not be deactivated." +msgstr "抱歉,出了点问题。请稍后再试。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 -msgid "Show Markers" -msgstr "显示标记" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:138 +#, fuzzy +msgid "Sorry, something went wrong. Please try again." +msgstr "抱歉,出了点问题。请稍后再试。" -#: superset/connectors/sqla/views.py:207 -msgid "Show Metric" -msgstr "显示指标" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:169 +msgid "" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 -msgid "Show Metric Names" -msgstr "显示指标名" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:178 +msgid "Configure this dashboard to embed it into an external web application." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 -msgid "Show Range Filter" -msgstr "显示范围过滤器" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:184 +msgid "For further instructions, consult the" +msgstr "" -#: superset/views/sql_lab/views.py:53 -msgid "Show Saved Query" -msgstr "显示保存的查询" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:188 +msgid "Superset Embedded SDK documentation." +msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Show Table" -msgstr "显示表" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:194 +msgid "Allowed Domains (comma separated)" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 -msgid "Show Timestamp" -msgstr "显示时间戳" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:196 +msgid "" +"A list of domain names that can embed this dashboard. Leaving this field " +"empty will allow embedding from any domain." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:217 #, fuzzy -msgid "Show Total" -msgstr "显示总计" +msgid "Deactivate" +msgstr "激活" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 -msgid "Show Trend Line" -msgstr "显示趋势线" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:225 +#, fuzzy +msgid "Save changes" +msgstr "放弃更改" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 -msgid "Show Upper Labels" -msgstr "显示标签" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:234 +#, fuzzy +msgid "Enable embedding" +msgstr "启用节点拖动" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 -msgid "Show Value" -msgstr "显示值" +#: superset-frontend/src/dashboard/components/EmbeddedModal/index.tsx:249 +#, fuzzy +msgid "Embed" +msgstr "十一月" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 -msgid "Show Values" -msgstr "显示值" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, fuzzy, python-format +msgid "Applied cross-filters (%d)" +msgstr "应用的交叉条件 (%d)" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 -msgid "Show Y-axis" -msgstr "" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, fuzzy, python-format +msgid "Applied filters (%d)" +msgstr "应用的条件 (%d)" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if " -"set or min/max values in the data otherwise." -msgstr "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "此看板当前正在强制刷新;下一次强制刷新将在 %s 内执行。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 -msgid "Show all columns" -msgstr "显示所有列" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 +msgid "Your dashboard is too large. Please reduce its size before saving it." +msgstr "您的看板太大了。保存前请缩小尺寸。" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 -msgid "Show all..." -msgstr "显示所有..." +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 +#, fuzzy +msgid "Add the name of the dashboard" +msgstr "保存并转到看板" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 -msgid "Show axis line ticks" -msgstr "显示轴线刻度" +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +#, fuzzy +msgid "Dashboard title" +msgstr "看板" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 -msgid "Show cell bars" -msgstr "显示单元格的栏" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 +#, fuzzy +msgid "Undo the action" +msgstr "运行选定的查询" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 +msgid "Redo the action" +msgstr "" + +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 #, fuzzy -msgid "Show chart description" -msgstr "切换图表说明" +msgid "Discard" +msgstr "看板" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 -msgid "Show columns total" -msgstr "显示总计" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 +msgid "Edit dashboard" +msgstr "编辑仪表盘" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 -msgid "Show data points as circle markers on the lines" -msgstr "将数据点显示为线条上的圆形标记" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:124 +msgid "An error occurred while fetching available CSS templates" +msgstr "获取可用的CSS模板时出错" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:157 #, fuzzy -msgid "Show empty columns" -msgstr "显示较少时间列" +msgid "Refreshing charts" +msgstr "获取图表时出错" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 -#, fuzzy -msgid "" -"Show hierarchical relationships of data, with the value represented by " -"area, showing proportion and contribution to the whole." -msgstr "显示数据的层次关系与表示的值。按面积划分显示其占整体的比例" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:210 +msgid "Superset dashboard" +msgstr "看板" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 -msgid "Show info tooltip" -msgstr "显示信息提示" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:212 +msgid "Check out this dashboard: " +msgstr "查看此看板:" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 -msgid "Show label" -msgstr "显示标签" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:234 +msgid "Refresh dashboard" +msgstr "刷新看板" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 -msgid "Show labels when the node has children." -msgstr "当节点有子节点时显示标签" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:243 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 +msgid "Exit fullscreen" +msgstr "退出全屏" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 -msgid "Show legend" -msgstr "显示图例" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:244 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:398 +msgid "Enter fullscreen" +msgstr "全屏" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 -msgid "Show less columns" -msgstr "显示较少时间列" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:252 +msgid "Edit properties" +msgstr "编辑属性" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 -msgid "Show less..." -msgstr "显示..." +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:258 +msgid "Edit CSS" +msgstr "编辑CSS" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 -msgid "Show only my charts" -msgstr "" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:294 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:517 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 +#, fuzzy +msgid "Download" +msgstr "下载为图片" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:298 +#, fuzzy +msgid "Export to PDF" +msgstr "导出到YAML格式" -#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:299 #, fuzzy -msgid "Show password." -msgstr "显示看板" +msgid "Download as Image" +msgstr "下载为图片" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 -msgid "Show percentage" -msgstr "显示百分比" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:309 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:502 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:369 +#: superset-frontend/src/features/home/SavedQueries.tsx:208 +msgid "Share" +msgstr "分享" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 -msgid "Show pointer" -msgstr "显示鼠标" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:313 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:371 +#, fuzzy +msgid "Copy permalink to clipboard" +msgstr "将查询链接复制到剪贴板" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 -msgid "Show progress" -msgstr "显示进度" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:314 +#, fuzzy +msgid "Share permalink by email" +msgstr "通过电子邮件分享图表”" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 -msgid "Show rows total" -msgstr "显示总计行数" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:328 +#, fuzzy +msgid "Embed dashboard" +msgstr "保存看板" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 -msgid "Show series values on the chart" -msgstr "显示栏上的值" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:335 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:399 +#, fuzzy +msgid "Manage email report" +msgstr "删除邮件报告" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 -msgid "Show split lines" -msgstr "显示分割线" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:363 +msgid "Set filter mapping" +msgstr "设置过滤映射" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 -msgid "Show the value on top of the bar" -msgstr "显示栏上的值" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:377 +msgid "Set auto-refresh interval" +msgstr "设置自动刷新" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 -msgid "Show time column" -msgstr "显示时间列" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 +#, fuzzy +msgid "Confirm overwrite" +msgstr "确认保存" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 -msgid "Show time grain dropdown" -msgstr "显示Druid时间粒度下拉列表" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +msgid "Scroll down to the bottom to enable overwriting changes. " +msgstr "" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 -msgid "" -"Show total aggregations of selected metrics. Note that row limit does not" -" apply to the result." -msgstr "显示所选指标的总聚合。注意行限制并不应用于结果" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +#, fuzzy +msgid "Yes, overwrite changes" +msgstr "范围的标签" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 -msgid "Show totals" -msgstr "显示总计" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 +#, fuzzy +msgid "Are you sure you intend to overwrite the following values?" +msgstr "您确实要删除选定的查询吗?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 -msgid "" -"Showcases a single metric front-and-center. Big number is best used to " -"call attention to a KPI or the one thing you want your audience to focus " -"on." -msgstr "显示单个公制正面和中间。大数字最好用来唤起人们对KPI或你希望观众关注的一件事的关注" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, fuzzy, python-format +msgid "Last Updated %s by %s" +msgstr "上次更新 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 -msgid "" -"Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other" -" dimension." -msgstr "显示一个数字和一个简单的折线图,以提醒注意一个重要指标及其随时间或其他维度的变化" +#: 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:855 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +msgid "Apply" +msgstr "应用" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 -msgid "" -"Showcases how a metric changes as the funnel progresses. This classic " -"chart is useful for visualizing drop-off between stages in a pipeline or " -"lifecycle." -msgstr "显示指标如何随着漏斗的进展而变化。此经典图表对于可视化管道或生命周期中各阶段之间的下降非常有用。" +#: 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:66 +msgid "Error" +msgstr "错误" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 -msgid "" -"Showcases the flow or link between categories using thickness of chords. " -"The value and corresponding thickness can be different for each side." -msgstr "使用弦的厚度显示类别之间的流或链接。每一侧的值和相应厚度可能不同。" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:296 +msgid "A valid color scheme is required" +msgstr "需要有效的配色方案" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 -msgid "" -"Showcases the progress of a single metric against a given target. The " -"higher the fill, the closer the metric is to the target." -msgstr "显示单个指标相对于给定目标的进度。填充越高,度量越接近目标" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:365 +#, fuzzy +msgid "JSON metadata is invalid!" +msgstr "无效 JSON" -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 -#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 -#, python-format -msgid "Showing %s of %s" -msgstr "显示 %s个 总计 %s个" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:444 +#, fuzzy +msgid "Dashboard properties updated" +msgstr "看板属性" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 -msgid "Shows a list of all series available at that point in time" -msgstr "详细提示显示了该时间点的所有序列的列表。" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 +msgid "The dashboard has been saved" +msgstr "该看板已成功保存。" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 -msgid "Shows or hides markers for the time series" -msgstr "" +#: 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 "访问" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 -msgid "Significance Level" -msgstr "显著性" +#: 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." +msgstr "所有者是可以更改看板的用户列表。可按名称或用户名搜索。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 -msgid "Simple" -msgstr "简单配置" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:497 +msgid "Colors" +msgstr "颜色" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 -msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "此数据集没有启用简单的特别度量" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:559 +#, fuzzy +msgid "" +"Roles is a list which defines access to the dashboard. Granting a role " +"access to a dashboard will bypass dataset level checks. If no roles are " +"defined, regular access permissions apply." +msgstr "角色是一个定义对仪表板访问权限的列表。授予角色对仪表板的访问权限将绕过数据集级别的检查。如果未定义角色,则仪表板对所有角色都可用。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 -msgid "Single" -msgstr "我的编辑" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:636 +msgid "Dashboard properties" +msgstr "看板属性" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 -msgid "Single Metric" -msgstr "按指标过滤" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 +msgid "This dashboard is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 -msgid "Single Value" -msgstr "空值" +#: 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:246 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:286 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:237 +msgid "Basic information" +msgstr "基本情况" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 -msgid "Single value" -msgstr "空值" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 +msgid "URL slug" +msgstr "使用 Slug" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 -msgid "Single value type" -msgstr "单值类型" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:697 +msgid "A readable URL for your dashboard" +msgstr "为看板生成一个可读的 URL" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 -msgid "Size of edge symbols" -msgstr "边缘符号的大小" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:706 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 +msgid "Certification" +msgstr "认证" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 -msgid "Size of marker. Also applies to forecast observations." -msgstr "标记的大小也适用于预测观察。”" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:715 +msgid "Person or group that has certified this dashboard." +msgstr "已对此仪表板进行认证的个人或组。" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 -msgid "Sizes of vehicles" -msgstr "工具尺寸" +#: 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 "要在认证工具提示中显示详细信息。" -#: superset/views/database/forms.py:187 -msgid "Skip Blank Lines" -msgstr "跳过空白行" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:751 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:444 +#, fuzzy +msgid "A list of tags that have been applied to this chart." +msgstr "对此图表进行认证的个人或团体。" -#: superset/views/database/forms.py:184 -msgid "Skip Initial Space" -msgstr "跳过初始空格" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:772 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:335 +msgid "JSON metadata" +msgstr "JSON 元数据" -#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 -msgid "Skip Rows" -msgstr "跳过行" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:791 +msgid "Please DO NOT overwrite the \"filter_scopes\" key." +msgstr "" -#: superset/views/database/forms.py:188 -#, fuzzy -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "跳过空白行而不是把它们解释为NaN值。" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:798 +#, python-format +msgid "Use \"%(menuName)s\" menu instead." +msgstr "" -#: superset/views/database/forms.py:184 -#, fuzzy -msgid "Skip spaces after delimiter" -msgstr "在分隔符之后跳过空格。" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +msgid "" +"This dashboard is not published, it will not show up in the list of " +"dashboards. Click here to publish this dashboard." +msgstr "此看板未发布,它将不会显示在看板列表中。单击此处以发布此看板。" -#: superset/views/dashboard/mixin.py:79 -msgid "Slug" -msgstr "Slug" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 +msgid "" +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." +msgstr "此看板未发布,这意味着它不会显示在仪表板列表中。您可以进行收藏并在收藏栏中查看或直接使用URL访问它。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 -#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 -msgid "Small" -msgstr "小" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 +msgid "This dashboard is published. Click to make it a draft." +msgstr "此看板已发布。单击以使其成为草稿。" + +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:321 +#: superset-frontend/src/pages/DashboardList/index.tsx:511 +msgid "Draft" +msgstr "草稿" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 -msgid "Small number format" -msgstr "数字格式化" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:57 +msgid "Annotation layers are still loading." +msgstr "注释层仍在加载。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 -msgid "Smooth Line" -msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:58 +msgid "One ore more annotation layers failed loading." +msgstr "一个或多个注释层加载失败。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 -#, fuzzy +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:254 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard " -"edges, Smooth-line sometimes looks smarter and more professional." -msgstr "时间序列平滑线是折线图的变体。没有角度和硬边,平滑线看起来更聪明、更专业。" - -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 -msgid "Solid" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" -#: superset/commands/exceptions.py:119 -msgid "Some roles do not exist" -msgstr "看板" - -#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:303 #, fuzzy -msgid "Something went wrong." -msgstr "抱歉,出了点问题。请稍后再试。" +msgid "Data refreshed" +msgstr "上次刷新的元数据" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:380 #, python-format -msgid "Sorry there was an error fetching database information: %s" -msgstr "抱歉,获取数据库信息时出错:%s" +msgid "Cached %s" +msgstr "缓存于%s" -#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 -msgid "Sorry there was an error fetching saved charts: " -msgstr "抱歉,这个看板在获取图表时发生错误:" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 +#, python-format +msgid "Fetched %s" +msgstr "刷新于 %s" -#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 -msgid "Sorry, An error occurred" -msgstr "抱歉,发生错误" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:392 +#, python-format +msgid "Query %s: %s" +msgstr "查询 %s: %s " -#: superset-frontend/src/components/Chart/chartAction.js:639 -#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 -#, fuzzy -msgid "Sorry, an error occurred" -msgstr "抱歉,发生错误" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:418 +msgid "Force refresh" +msgstr "强制刷新" -#: superset-frontend/src/dashboard/actions/dashboardState.js:359 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:431 #, fuzzy -msgid "Sorry, an unknown error occurred" -msgstr "抱歉,发生错误" +msgid "Hide chart description" +msgstr "切换图表说明" -#: superset-frontend/src/utils/getClientErrorObject.ts:97 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:432 #, fuzzy -msgid "Sorry, an unknown error occurred." -msgstr "抱歉,发生错误" +msgid "Show chart description" +msgstr "切换图表说明" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:449 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 #, fuzzy -msgid "Sorry, something went wrong. Embedding could not be deactivated." -msgstr "抱歉,出了点问题。请稍后再试。" +msgid "Cross-filtering scoping" +msgstr "交叉筛选作用域" -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 -#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 -#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 -msgid "Sorry, something went wrong. Try again later." -msgstr "抱歉,出了点问题。请稍后再试。" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:459 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:461 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:425 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:427 +msgid "View query" +msgstr "检查查询" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 -msgid "Sorry, there appears to be no data" -msgstr "抱歉,似乎没有数据" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:476 +#, fuzzy +msgid "View as table" +msgstr "查看样例" -#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:478 #, fuzzy, python-format -msgid "Sorry, there was an error saving this %s: %s" -msgstr "抱歉,这个看板在获取图表时发生错误:%s" - -#: superset-frontend/src/dashboard/actions/dashboardState.js:362 -#, python-format -msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "抱歉,这个看板在获取图表时发生错误:%s" - -#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:680 -msgid "Sorry, your browser does not support copying." -msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" - -#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 -msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" -msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" +msgid "Chart Data: %s" +msgstr "上次更新 %s" -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 -#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:212 -msgid "Sort" -msgstr "排序:" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:507 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:374 +msgid "Share chart by email" +msgstr "通过电子邮件分享图表”" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 -msgid "Sort Bars" -msgstr "排序条形栏" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:509 +msgid "Check out this chart: " +msgstr "看看这张图表:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 -msgid "Sort Descending" -msgstr "降序" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:522 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:347 +#, fuzzy +msgid "Export to .CSV" +msgstr "导出到YAML格式" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 -msgid "Sort Metric" -msgstr "排序指标" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:528 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:366 +#, fuzzy +msgid "Export to Excel" +msgstr "导出到YAML格式" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:539 #, fuzzy -msgid "Sort Series Ascending" -msgstr "升序排序" +msgid "Export to full .CSV" +msgstr "导出全量CSV" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:545 #, fuzzy -msgid "Sort Series By" -msgstr "排序 " +msgid "Export to full Excel" +msgstr "导出到YAML格式" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 -msgid "Sort X Axis" -msgstr "排序X轴" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:554 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:360 +msgid "Download as image" +msgstr "下载为图片" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 -msgid "Sort Y Axis" -msgstr "排序Y轴" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 +#, fuzzy +msgid "Something went wrong." +msgstr "抱歉,出了点问题。请稍后再试。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 -msgid "Sort ascending" -msgstr "升序排序" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:708 +msgid "Search..." +msgstr "搜索..." -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 -msgid "Sort bars by x labels." -msgstr "按 x 标签排序。" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:739 +msgid "No filter is selected." +msgstr "未选择过滤条件。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 -#: superset-frontend/src/explore/controls.jsx:364 -msgid "Sort by" -msgstr "排序 " +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:740 +msgid "Editing 1 filter:" +msgstr "编辑1个过滤条件:" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:742 #, python-format -msgid "Sort by %s" -msgstr "排序 %s" - -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 -msgid "Sort by metric" -msgstr "排序指标" - -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 -msgid "Sort columns alphabetically" -msgstr "对列按字母顺序进行排列" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 -msgid "Sort columns by" -msgstr "对列按字母顺序进行排列" - -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 -msgid "Sort descending" -msgstr "降序" +msgid "Batch editing %d filters:" +msgstr "批量编辑 %d 个过滤条件:" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 -msgid "Sort filter values" -msgstr "可被过滤" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:756 +msgid "Configure filter scopes" +msgstr "配置过滤范围" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 -msgid "Sort metric" -msgstr "排序指标" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 +msgid "There are no filters in this dashboard." +msgstr "此看板中没有过滤条件。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 -msgid "Sort rows by" -msgstr "排序 " +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 +msgid "Expand all" +msgstr "全部展开" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 -msgid "Sort series in ascending order" -msgstr "" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 +msgid "Collapse all" +msgstr "全部折叠" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 -msgid "Sort type" -msgstr "图表类型" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:321 +#, fuzzy +msgid "An error occurred while opening Explore" +msgstr "精简日志时出错 " -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 -msgid "Source" -msgstr "来源" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 +#, fuzzy +msgid "Empty column" +msgstr "我的列" -#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 -msgid "Source / Target" -msgstr "源/目标" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 +msgid "This markdown component has an error." +msgstr "此 markdown 组件有错误。" -#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 -msgid "Source SQL" -msgstr "源 SQL" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "此 markdown 组件有错误。请还原最近的更改。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 -msgid "Source category" -msgstr "数据库名称" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 +msgid "Empty row" +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:196 #, fuzzy -msgid "Sparkline" -msgstr "标记线" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 -msgid "Spatial" -msgstr "空间" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 -msgid "Specific Date/Time" -msgstr "具体日期/时间" - -#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 -msgid "Specify a schema (if database flavor supports this)." -msgstr "指定一个Schema(需要数据库支持)" +msgid "You can" +msgstr "国家地图" -#: superset/views/database/forms.py:361 -msgid "Specify duplicate columns as \"X.0, X.1\"." -msgstr "将重复列指定为“x.0,x.1”。" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:202 +#, fuzzy +msgid "create a new chart" +msgstr "创建新图表" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 -msgid "Specify name to CREATE TABLE AS schema in: public" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 +msgid "or use existing ones from the panel on the right" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 -msgid "Specify name to CREATE VIEW AS schema in: public" +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:208 +msgid "You can add the components in the" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 -msgid "" -"Specify the database version. This should be used with Presto in order to" -" enable query cost estimation." -msgstr "指定数据库版本。这应该与Presto一起使用,以便启用查询成本估算。" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 -msgid "Split number" -msgstr "数字" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:214 #, fuzzy -msgid "Square kilometers" -msgstr "父级过滤" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 -#, fuzzy -msgid "Square meters" -msgstr "参数" +msgid "edit mode" +msgstr "编辑模式" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 -#, fuzzy -msgid "Square miles" -msgstr "序列" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 +msgid "Delete dashboard tab?" +msgstr "是否删除仪表盘tab页?" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 +msgid "" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" +msgstr "" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 #, fuzzy -msgid "Stack" -msgstr "堆叠" +msgid "undo" +msgstr "撤消?" -#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 -msgid "Stack Trace:" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 +msgid "button (cmd + z) until you save your changes." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 -msgid "Stack series" -msgstr "已保存查询" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:330 +msgid "CANCEL" +msgstr "取消" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 -msgid "Stack series on top of each other" -msgstr "叠加系列" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 +msgid "Divider" +msgstr "分隔" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 -msgid "Stacked" -msgstr "堆叠" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 +msgid "Header" +msgstr "标题行" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 -msgid "Stacked Bars" -msgstr "堆叠条形图" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 +msgid "Text" +msgstr "文本" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 -#: superset-frontend/src/explore/fixtures.tsx:58 -msgid "Stacked Style" -msgstr "堆积样式" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 +msgid "Tabs" +msgstr "选项卡" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 -msgid "Stacked style" -msgstr "堆积样式" +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 +msgid "background" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 -msgid "Standard time series" -msgstr "时间序列" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 +msgid "Preview" +msgstr "预览" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 -#: superset-frontend/src/pages/AnnotationList/index.tsx:169 -msgid "Start" -msgstr "开始" +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsImage.tsx:43 +#: superset-frontend/src/dashboard/components/menu/DownloadMenuItems/DownloadAsPdf.tsx:43 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:145 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:202 +msgid "Sorry, something went wrong. Try again later." +msgstr "抱歉,出了点问题。请稍后再试。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 -#, fuzzy -msgid "Start (Longitude, Latitude): " -msgstr "无效的经度/纬度" +#: superset-frontend/src/dashboard/components/nativeFilters/utils.ts:253 +msgid "Unknown value" +msgstr "未知错误" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 #, fuzzy -msgid "Start Longitude & Latitude" -msgstr "无效的经度/纬度" +msgid "Add/Edit Filters" +msgstr "增加过滤条件" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 -msgid "Start Review" -msgstr "数据预览" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +#, fuzzy +msgid "No filters are currently added to this dashboard." +msgstr "此看板中没有过滤条件。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 -msgid "Start angle" -msgstr "开始时间" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:170 +msgid "No global filters are currently added" +msgstr "" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 -msgid "Start at (UTC)" -msgstr "由UTC开始" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:174 +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgstr "" -#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #, fuzzy -msgid "Start date" -msgstr "开始时间" - -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 -msgid "Start date included in time range" -msgstr "开始日期包含在时间范围内" +msgid "Apply filters" +msgstr "所有过滤" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 -msgid "Start y-axis at 0" -msgstr "y轴从0开始" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 +msgid "Clear all" +msgstr "清除所有" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 -msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " -"data." -msgstr "从零开始y轴。取消选中以从数据中的最小值开始y轴 " +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 +#, fuzzy +msgid "Locate the chart" +msgstr "创建新图表" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy -msgid "Started" -msgstr "状态" +msgid "Cross-filters" +msgstr "交叉筛选作用域" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 -msgid "State" -msgstr "状态" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" -#: superset/sql_lab.py:503 -#, python-format -msgid "Statement %(statement_num)s out of %(statement_count)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 -msgid "Statistical" -msgstr "统计" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "所有图表" -#: superset-frontend/src/pages/AlertReportList/index.tsx:486 -#: superset-frontend/src/pages/DashboardList/index.tsx:337 -#: superset-frontend/src/pages/DashboardList/index.tsx:567 -msgid "Status" -msgstr "状态" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "此看板中没有过滤条件。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 -msgid "Step - end" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 -msgid "Step - middle" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 -msgid "Step - start" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:80 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:125 +msgid "All charts" +msgstr "所有图表" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 -msgid "Step type" -msgstr "数据类型" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 +#, fuzzy +msgid "Enable cross-filtering" +msgstr "交叉筛选作用域" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 #, fuzzy -msgid "Stepped Line" -msgstr "时间序列阶梯图" +msgid "Orientation of filter bar" +msgstr "树的方向" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 #, fuzzy -msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart " -"but with the line forming a series of steps between data points. A step " -"chart can be useful when you want to show the changes that occur at " -"irregular intervals." -msgstr "“时间序列步进折线图(也称为步进图)是折线图的一种变体,但线条在数据点之间形成一系列步进。当您希望显示不规则间隔发生的变化时,步进图可能很有用。”" +msgid "Vertical (Left)" +msgstr "垂直" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 -msgid "Stop" -msgstr "停止" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 +#, fuzzy +msgid "Horizontal (Top)" +msgstr "水平对齐" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 -msgid "Stop query" -msgstr "停止查询" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 +#, fuzzy +msgid "More filters" +msgstr "日期过滤器" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 #, fuzzy -msgid "Stop running (Ctrl + e)" -msgstr "停止运行 (Ctrl + x)" +msgid "No applied filters" +msgstr "删除该行" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 -msgid "Stop running (Ctrl + x)" -msgstr "停止运行 (Ctrl + x)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, fuzzy, python-format +msgid "Applied filters: %s" +msgstr "应用的条件 (%d)" -#: superset/databases/commands/exceptions.py:128 -msgid "Stopped an unsafe database connection" -msgstr "已停止不安全的数据库连接" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:310 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1242 +msgid "Cannot load filter" +msgstr "无法加载筛选器" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format +msgid "Filters out of scope (%d)" +msgstr "筛选器超出范围(%d)" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 #, fuzzy -msgid "Stream" -msgstr "直方图" +msgid "Dependent on" +msgstr "降序" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 #, fuzzy -msgid "Streets" -msgstr "最近" +msgid "Scope" +msgstr "停止" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:832 +msgid "Filter type" +msgstr "过滤类型" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "标题是必填项" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 -msgid "Strength to pull the graph toward center" -msgstr "将图形拉向中心" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:122 +msgid "(Removed)" +msgstr "(已删除)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 -msgid "Stretched style" -msgstr "堆积样式" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:138 +msgid "Undo?" +msgstr "撤消?" -#: superset/views/database/forms.py:309 -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "用于sheet名称的字符串(默认为第一个sheet)。" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 +msgid "Add filters and dividers" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:306 #, fuzzy -msgid "Stroke Color" -msgstr "固定颜色" +msgid "[untitled]" +msgstr "无标题" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 -#, fuzzy -msgid "Stroke Width" -msgstr "线宽" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:485 +msgid "Cyclic dependency detected" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:629 #, fuzzy -msgid "Stroked" -msgstr "红色" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 -msgid "Structural" -msgstr "结构" +msgid "Add and edit filters" +msgstr "范围过滤" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 -msgid "Style" -msgstr "风格" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 +msgid "Column select" +msgstr "选择列" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 -msgid "Style the ends of the progress bar with a round cap" -msgstr "用圆帽设置进度条末端的样式" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 +msgid "Select a column" +msgstr "反选所有" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 -msgid "Subdomain" -msgstr "子域" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 +msgid "No compatible columns found" +msgstr "找不到兼容的列" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 -msgid "Subheader" -msgstr "子标题" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:93 +#, fuzzy +msgid "No compatible datasets found" +msgstr "找不到兼容的列" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 -msgid "Subheader Font Size" -msgstr "子标题的字体大小" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:94 +#, fuzzy +msgid "Select a dataset" +msgstr "反选所有" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 -msgid "Submit" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "需要名称" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 -#: superset/charts/post_processing.py:161 -#: superset/charts/post_processing.py:178 -msgid "Subtotal" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 +msgid "(deleted or invalid type)" msgstr "" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 -#: superset-frontend/src/pages/AlertReportList/index.tsx:62 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 -msgid "Success" -msgstr "成功" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 #, fuzzy -msgid "Successfully changed dataset!" -msgstr "修改数据集" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 -msgid "Suffix to apply after the percentage display" -msgstr "百分比显示后要应用的后缀" +msgid "Limit type" +msgstr "可视化类型" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 -msgid "Sum" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 +#, fuzzy +msgid "No available filters." +msgstr "所有过滤" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 -msgid "Sum as Fraction of Columns" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 +msgid "Add filter" +msgstr "增加过滤条件" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 -msgid "Sum as Fraction of Rows" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 +msgid "Values are dependent on other filters" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 -msgid "Sum as Fraction of Total" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 -msgid "Sum of values over specified period" -msgstr "指定期间内的值总和" - -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 #, fuzzy -msgid "Sum values" -msgstr "空值" - -#: superset/viz.py:1805 -msgid "Sunburst" -msgstr "环状层次图" +msgid "Values dependent on" +msgstr "指标降序" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 -msgid "Sunburst Chart" -msgstr "旭日/太阳图" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:287 +msgid "Scoping" +msgstr "范围" -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:294 #, fuzzy -msgid "Sunburst Chart v2" -msgstr "旭日/太阳图" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 -msgid "Sunday" -msgstr "星期日" +msgid "Filter Configuration" +msgstr "过滤配置" -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 -msgid "Superset Chart" -msgstr "选择图表" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:298 +#, fuzzy +msgid "Filter Settings" +msgstr "新的过滤器" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 -msgid "Superset Embedded SDK documentation." -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/Select/index.ts:28 +msgid "Select filter" +msgstr "选择过滤器" -#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 -msgid "Superset chart" -msgstr "选择图表" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +#: superset-frontend/src/filters/components/Range/index.ts:28 +msgid "Range filter" +msgstr "范围过滤" -#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 -msgid "Superset dashboard" -msgstr "看板" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:324 +msgid "Numerical range" +msgstr "数值范围" -#: superset/errors.py:111 -msgid "Superset encountered an error while running a command." -msgstr "警报在执行查询时发现错误。" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/filters/components/Time/index.ts:27 +msgid "Time filter" +msgstr "日期过滤器" -#: superset/errors.py:112 -msgid "Superset encountered an unexpected error." -msgstr "报告计划意外错误。" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:325 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1020 +#: superset-frontend/src/explore/constants.ts:131 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:419 +msgid "Time range" +msgstr "时间范围" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -msgid "Supported databases" -msgstr "已支持数据库" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:326 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:766 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 +msgid "Time column" +msgstr "时间列" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 -msgid "Survey Responses" -msgstr "调查结果" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:327 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 +msgid "Time grain" +msgstr "时间粒度(grain)" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 -#, fuzzy -msgid "Swap dataset" -msgstr "数据集" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group By" +msgstr "分组" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 -msgid "Swap rows and columns" -msgstr "交换组和列" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:328 +msgid "Group by" +msgstr "分组" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 -#, fuzzy -msgid "" -"Swiss army knife for visualizing data. Choose between step, line, " -"scatter, and bar charts. This viz type has many customization options as " -"well." -msgstr "用于可视化时间序列数据。在步进图、折线图、散点图和条形图之间进行选择,也有许多自定义选项" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:650 +msgid "Pre-filter is required" +msgstr "预过滤是必须的" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 -#, fuzzy -msgid "" -"Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization " -"options as well." -msgstr "用于可视化时间序列数据。在步进图、折线图、散点图和条形图之间进行选择,也有许多自定义选项" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:771 +msgid "Time column to apply dependent temporal filter to" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 -msgid "Symbol" -msgstr "符号" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:772 +msgid "Time column to apply time range to" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 -msgid "Symbol of two ends of edge line" -msgstr "边线两端的符号" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:818 +msgid "Filter name" +msgstr "过滤值" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 -msgid "Symbol size" -msgstr "符号的大小" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:820 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:826 +msgid "Name is required" +msgstr "需要名称" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 -msgid "Sync columns from source" -msgstr "从源同步列" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:828 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:379 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:389 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:390 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:136 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:264 +msgid "Filter Type" +msgstr "过滤类型" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 -msgid "Syntax" -msgstr "语法" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:850 +msgid "Datasets do not contain a temporal column" +msgstr "数据集不包含时间列" -#: superset/db_engine_specs/ocient.py:282 -#, python-format -msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:871 +msgid "" +"Dashboard time range filters apply to temporal columns defined in\n" +" the filter section of each chart. Add temporal columns to the " +"chart\n" +" filters to have this dashboard filter impact those charts." msgstr "" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 -msgid "TABLES" -msgstr "表" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 -#, fuzzy -msgid "TEMPORAL X-AXIS" -msgstr "时间条件" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:899 +msgid "Dataset is required" +msgstr "需要数据集" -#: superset-frontend/src/explore/constants.ts:91 -#, fuzzy -msgid "TEMPORAL_RANGE" -msgstr "时间条件" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:970 +msgid "Pre-filter available values" +msgstr "预滤器可用值" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 -msgid "THU" -msgstr "星期四" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:971 +msgid "" +"Add filter clauses to control the filter's source query,\n" +" though only in the context of the autocomplete i.e., " +"these conditions\n" +" do not impact how the filter is applied to the " +"dashboard. This is useful\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" +" of the underlying data or limit the available values " +"displayed in the filter." +msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 -msgid "TUE" -msgstr "星期二" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +msgid "Pre-filter" +msgstr "预过滤" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 -msgid "Tab name" -msgstr "选项卡名字" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1022 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:311 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 +msgid "No filter" +msgstr "无筛选" -#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 -#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 -msgid "Tab title" -msgstr "选项卡标题" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1053 +msgid "Sort filter values" +msgstr "可被过滤" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 -#: superset-frontend/src/components/TableSelector/index.tsx:279 -#: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 -#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 -msgid "Table" -msgstr "表" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1067 +msgid "Sort type" +msgstr "图表类型" -#: superset/views/core.py:1775 -#, python-format -msgid "Table %(table)s wasn't found in the database %(db)s" -msgstr "在数据库 %(db)s 中找不到表 %(table)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1074 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:63 +msgid "Sort ascending" +msgstr "升序排序" -#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 -msgid "Table Exists" -msgstr "表已存在处理" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1084 +msgid "Sort Metric" +msgstr "排序指标" -#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 -msgid "Table Name" -msgstr "表名" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1087 +msgid "If a metric is specified, sorting will be done based on the metric value" +msgstr "如果指定了度量,则将根据该度量值进行排序" -#: superset/viz.py:722 -msgid "Table View" -msgstr "表视图" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1097 +msgid "Sort metric" +msgstr "排序指标" -#: superset/datasets/commands/exceptions.py:147 -#, python-format -msgid "" -"Table [%(table_name)s] could not be found, please double check your " -"database connection, schema, and table name" -msgstr "找不到 [%(table_name)s] 表,请仔细检查您的数据库连接、Schema 和 表名" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1120 +msgid "Single Value" +msgstr "空值" -#: superset/views/base.py:303 -msgid "" -"Table [%{table}s] could not be found, please double check your database " -"connection, schema, and table name, error: {}" -msgstr "找不到 [%{table}s] 表,请仔细检查您的数据库连接、Schema 和 表名" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1137 +msgid "Single value type" +msgstr "单值类型" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 -msgid "Table cache timeout" -msgstr "图表缓存超时" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1149 +msgid "Exact" +msgstr "精确" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 -#, fuzzy -msgid "Table columns" -msgstr "标题栏" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1183 +msgid "Filter has default value" +msgstr "过滤器默认值" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 -#, fuzzy -msgid "Table loading" -msgstr "启用预测中" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1200 +msgid "Default Value" +msgstr "缺省值" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 -#: superset/views/database/forms.py:419 -msgid "Table name cannot contain a schema" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1229 +msgid "Default value is required" +msgstr "需要默认值" -#: superset/databases/decorators.py:47 -msgid "Table name undefined" -msgstr "表名未定义" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1276 +msgid "Refresh the default values" +msgstr "刷新默认值" -#: superset/db_engine_specs/ocient.py:287 -#, fuzzy, python-format -msgid "Table or View \"%(table)s\" does not exist." -msgstr "指标 '%(username)s' 不存在" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1282 +msgid "Fill all required fields to enable \"Default Value\"" +msgstr "填写所有必填字段以启用默认值" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 -msgid "" -"Table that visualizes paired t-tests, which are used to understand " -"statistical differences between groups." -msgstr "可视化检验的表格,用于了解各组之间的统计差异" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 +msgid "You have removed this filter." +msgstr "您已删除此过滤条件。" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:291 -msgid "Tables" -msgstr "数据表" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "还原过滤条件" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 -msgid "Tabs" -msgstr "选项卡" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 +msgid "Column is required" +msgstr "列是必填项" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 -#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 -#: superset-frontend/src/visualizations/TimeTable/index.ts:37 -msgid "Tabular" -msgstr "表格" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "填充 \"Default value\" 以启用此控件" -#: superset/tags/commands/exceptions.py:34 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 #, fuzzy -msgid "Tag could not be created." -msgstr "无法创建数据集。" +msgid "" +"Default value set automatically when \"Select first filter value by " +"default\" is checked" +msgstr "当\"默认为第一项\"被选中时默认值需要设置为自动" -#: superset/tags/commands/exceptions.py:38 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 #, fuzzy -msgid "Tag could not be deleted." -msgstr "无法删除数据集" +msgid "Default value must be set when \"Filter value is required\" is checked" +msgstr "当\"必填项\"被选中时默认值必须被设置" -#: superset/tags/exceptions.py:28 -msgid "Tag name is invalid (cannot contain ':')" -msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 +msgid "Default value must be set when \"Filter has default value\" is checked" +msgstr "选中筛选器具有默认值时,必须设置默认值" -#: superset/tags/commands/exceptions.py:30 -#, fuzzy -msgid "Tag parameters are invalid." -msgstr "数据集参数无效。" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "应用于所有面板" -#: superset/tags/commands/exceptions.py:42 -#, fuzzy -msgid "Tagged Object could not be deleted." -msgstr "无法删除数据集" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "应用于特定面板" -#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 -#: 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:682 -#: superset-frontend/src/pages/ChartList/index.tsx:482 -#: superset-frontend/src/pages/ChartList/index.tsx:714 -#: superset-frontend/src/pages/DashboardList/index.tsx:394 -#: superset-frontend/src/pages/DashboardList/index.tsx:595 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 -#: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:378 -msgid "Tags" -msgstr "标签" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 +msgid "Only selected panels will be affected by this filter" +msgstr "只有选定的面板将受此过滤条件的影响" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 -msgid "" -"Take your data points, and group them into \"bins\" to see where the " -"densest areas of information lie" -msgstr "获取数据点,并将其分组,以查看信息最密集的区域" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 +msgid "All panels with this column will be affected by this filter" +msgstr "包含此列的所有面板都将受到此过滤条件的影响" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 -msgid "Target" -msgstr "目标" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 +msgid "All panels" +msgstr "应用于所有面板" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 -#, fuzzy -msgid "Target Color" -msgstr "目标类别" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:60 +msgid "This chart might be incompatible with the filter (datasets don't match)" +msgstr "此图表可能与过滤器不兼容(数据集不匹配)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 -msgid "Target category" -msgstr "目标类别" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:57 +msgid "Keep editing" +msgstr "继续编辑" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 -msgid "Target value" -msgstr "目标值" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:65 +msgid "Yes, cancel" +msgstr "是的,取消" -#: superset/views/css_templates.py:46 -msgid "Template Name" -msgstr "模板名称" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 +msgid "There are unsaved changes." +msgstr "您有一些未保存的修改。" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:400 -msgid "Template parameters" -msgstr "模板参数" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 +msgid "Are you sure you want to cancel?" +msgstr "您确定要取消吗?" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 -msgid "" -"Templated link, it's possible to include {{ metric }} or other values " -"coming from the controls." -msgstr "模板链接,可以包含{{度量}}或来自控件的其他值。" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:204 +msgid "Error loading chart datasources. Filters may not work correctly." +msgstr "加载图表数据源时出错。过滤器可能无法正常工作。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 -msgid "" -"Terminate running queries when browser window closed or navigated to " -"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " -"databases." -msgstr "当浏览器窗口关闭或导航到其他页面时,终止正在运行的查询。适用于Presto、Hive、MySQL、Postgres和Snowflake数据库" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 +msgid "Transparent" +msgstr "透明" -#: superset/templates/superset/models/database/macros.html:22 -msgid "Test Connection" -msgstr "测试连接" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "白色" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 -msgid "Test connection" -msgstr "测试连接" +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 +msgid "All filters" +msgstr "所有过滤" -#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 -#: superset-frontend/src/visualizations/TimeTable/index.ts:38 -msgid "Text" -msgstr "文本" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, fuzzy, python-format +msgid "Click to edit %s." +msgstr "点击编辑" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 -msgid "Text align" -msgstr "文本对齐" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 +#, fuzzy +msgid "Click to edit chart." +msgstr "点击编辑" -#: superset-frontend/src/components/ReportModal/index.tsx:247 -msgid "Text embedded in email" -msgstr "邮件中嵌入的文本" +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, fuzzy, python-format +msgid "Use %s to open in a new tab." +msgstr "在新标签中查询" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 -#, python-format -msgid "The API response from %s does not match the IDatabaseTable interface." -msgstr "" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 +msgid "Medium" +msgstr "中" -#: superset/views/dashboard/mixin.py:52 -msgid "" -"The CSS for individual dashboards can be altered here, or in the " -"dashboard view where changes are immediately visible" -msgstr "可以在这里或者在看板视图修改单个看板的CSS样式" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 +#, fuzzy +msgid "New header" +msgstr "子标题" + +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 +msgid "Tab title" +msgstr "选项卡标题" -#: superset/errors.py:124 +#: superset-frontend/src/embedded/index.tsx:112 msgid "" -"The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. " -"Then, try running your query again." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"CTA(create table as " -"select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 -msgid "" -"The GeoJsonLayer takes in GeoJSON formatted data and renders it as " -"interactive polygons, lines and points (circles, icons and/or texts)." +#: superset-frontend/src/explore/constants.ts:58 +msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 -msgid "The URL is missing the dataset_id or slice_id parameters." -msgstr "" +#: superset-frontend/src/explore/constants.ts:59 +#, fuzzy +msgid "Not equal to (≠)" +msgstr "!= (不等于)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 -msgid "The X-axis is not on the filters list" +#: superset-frontend/src/explore/constants.ts:60 +msgid "Less than (<)" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 -msgid "" -"The X-axis is not on the filters list which will prevent it from being " -"used in\n" -" time range filters in dashboards. Would you like to add it to" -" the filters list?" -msgstr "" +#: superset-frontend/src/explore/constants.ts:62 +#, fuzzy +msgid "Less or equal (<=)" +msgstr "<= (小于等于)" -#: superset/views/core.py:373 -msgid "The access requests seem to have been deleted" -msgstr "访问请求已被删除" +#: superset-frontend/src/explore/constants.ts:65 +#, fuzzy +msgid "Greater than (>)" +msgstr "创建一个 " -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 -msgid "The annotation has been saved" -msgstr "注释已保存。" +#: superset-frontend/src/explore/constants.ts:67 +#, fuzzy +msgid "Greater or equal (>=)" +msgstr ">= (大于等于)" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 -msgid "The annotation has been updated" -msgstr "注释已更新。" +#: superset-frontend/src/explore/constants.ts:70 +#, fuzzy +msgid "In" +msgstr "在" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 -msgid "" -"The category of source nodes used to assign colors. If a node is " -"associated with more than one category, only the first will be used." -msgstr "用于分配颜色的源节点类别。如果一个节点与多个类别关联,则只使用第一个类别" +#: superset-frontend/src/explore/constants.ts:71 +#, fuzzy +msgid "Not in" +msgstr "注释" + +#: superset-frontend/src/explore/constants.ts:72 +msgid "Like" +msgstr "" -#: superset/common/query_context_processor.py:585 +#: superset-frontend/src/explore/constants.ts:74 #, fuzzy -msgid "The chart datasource does not exist" -msgstr "图表不存在" +msgid "Like (case insensitive)" +msgstr "过滤值(区分大小写)" -#: superset/common/query_context_processor.py:583 -msgid "The chart does not exist" -msgstr "图表不存在" +#: superset-frontend/src/explore/constants.ts:78 +#, fuzzy +msgid "Is not null" +msgstr "非空" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 -msgid "" -"The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to" -" the military industrial complex.\n" -"\n" -" Pie charts can be difficult to interpret precisely. If clarity of" -" relative proportion is important, consider using a bar or other chart " -"type instead." -msgstr "经典的,很好地展示了每个投资者获得了多少公司,“有多少人关注你的博客,或者预算的哪一部分流向了军事工业综合体饼状图很难精确解释。如果“相对比例”的清晰性很重要,可以考虑使用柱状图或其他图表来代替。" +#: superset-frontend/src/explore/constants.ts:81 +#, fuzzy +msgid "Is null" +msgstr "非空" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 -msgid "The color for points and clusters in RGB" -msgstr "点和簇的颜色(RGB)" +#: superset-frontend/src/explore/constants.ts:83 +#, fuzzy +msgid "use latest_partition template" +msgstr "最新分区:" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 -#: superset-frontend/src/explore/controls.jsx:464 -msgid "The color scheme for rendering chart" -msgstr "绘制图表的配色方案" +#: superset-frontend/src/explore/constants.ts:86 +msgid "Is true" +msgstr "" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 +#: superset-frontend/src/explore/constants.ts:87 #, fuzzy -msgid "" -"The color scheme is determined by the related dashboard.\n" -" Edit the color scheme in the dashboard properties." -msgstr "配色方案由相关的仪表盘决定。在仪表板属性中编辑配色方案" +msgid "Is false" +msgstr "禁用" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#: superset-frontend/src/explore/constants.ts:89 #, fuzzy -msgid "The column header label" -msgstr "将列拖放到此处" +msgid "TEMPORAL_RANGE" +msgstr "时间条件" -#: superset/errors.py:105 -msgid "The column was deleted or renamed in the database." -msgstr "该列已在数据库中删除或重命名。" +#: superset-frontend/src/explore/constants.ts:134 +msgid "Time granularity" +msgstr "时间粒度(granularity)" + +#: superset-frontend/src/explore/controls.jsx:90 +#, fuzzy +msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" +msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"The country code standard that Superset should expect to find in the " -"[country] column" -msgstr "Superset 希望能够在 [国家] 栏中找到的 国家 / 地区 的标准代码" +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " +"series." +msgstr "要分组的一列或多列。高基数分组应包括序列限制,以限制提取和呈现的序列数。" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:462 -msgid "The dashboard has been saved" -msgstr "该看板已成功保存。" +#: superset-frontend/src/explore/controls.jsx:162 +msgid "One or many metrics to display" +msgstr "一个或多个指标显示" -#: superset/views/core.py:197 -msgid "The data source seems to have been deleted" -msgstr "数据源已经被删除" +#: superset-frontend/src/explore/controls.jsx:205 +msgid "Fixed color" +msgstr "固定颜色" -#: superset/connectors/sqla/views.py:114 -msgid "" -"The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In " -"most case users should not need to alter this." -msgstr "由数据库推断的数据类型。在某些情况下,可能需要为表达式定义的列手工输入一个类型。在大多数情况下,用户不需要修改这个数据类型。" +#: superset-frontend/src/explore/controls.jsx:214 +msgid "Right axis metric" +msgstr "右轴指标" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 -#, python-format -msgid "" -"The database %s is linked to %s charts that appear on %s dashboards and " -"users have %s SQL Lab tabs using this database open. Are you sure you " -"want to continue? Deleting the database will break those objects." -msgstr "" -"数据库 %s 已经关联了 %s 图表和 %s 仪表盘,并且用户在该数据库上打开了 %s 个 SQL " -"编辑器标签。确定要继续吗?删除数据库将破坏这些对象。" +#: superset-frontend/src/explore/controls.jsx:216 +msgid "Choose a metric for right axis" +msgstr "为右轴选择一个指标" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 -#, fuzzy -msgid "The database columns that contains lines information" -msgstr "包含行信息的数据库列" +#: superset-frontend/src/explore/controls.jsx:221 +msgid "Linear color scheme" +msgstr "线性颜色方案" -#: superset/sqllab/commands/estimate.py:58 -#, fuzzy -msgid "The database could not be found" -msgstr "数据库没有找到" +#: superset-frontend/src/explore/controls.jsx:234 +msgid "Color metric" +msgstr "颜色指标" -#: superset/errors.py:132 -msgid "The database is currently running too many queries." -msgstr "数据库当前运行的查询太多" +#: superset-frontend/src/explore/controls.jsx:245 +msgid "One or many controls to pivot as columns" +msgstr "一个或多个控件作为主列" -#: superset/errors.py:99 -msgid "The database is under an unusual load." -msgstr "数据库负载异常。" +#: superset-frontend/src/explore/controls.jsx:271 +#, fuzzy +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +msgstr "可视化的时间粒度。请注意,您可以输入和使用简单的日期表达方式,如 `10 seconds`, `1 day` or `56 weeks`" -#: superset/sqllab/commands/execute.py:172 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" -"The database referenced in this query was not found. Please contact an " -"administrator for further assistance or try again." -msgstr "找不到此查询中引用的数据库。请与管理员联系以获得进一步帮助,或重试。" +"The time granularity for the visualization. This applies a date " +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." +msgstr "可视化的时间粒度。这将应用日期转换来更改时间列,并定义新的时间粒度。这里的选项是在 Superset 源代码中的每个数据库引擎基础上定义的。" -#: superset/errors.py:100 -msgid "The database returned an unexpected error." -msgstr "数据库返回意外错误。" +#: superset-frontend/src/explore/controls.jsx:327 +msgid "" +"The time range for the visualization. All relative times, e.g. \"Last " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." +msgstr "" +"可视化的时间范围。所有相关的时间,例如\"上个月\"、\"过去7天\"、\"现在\"等,都在服务器上使用服务器的本地时间(sans时区)进行计算。所有工具提示和占位符时间均以UTC(无时区)表示。然后,数据库使用引擎的本地时区来评估时间戳。注:如果指定开始时间和、或者结束时间,可以根据ISO" +" 8601格式显式设置时区。" -#: superset/errors.py:144 -msgid "The database was deleted." -msgstr "数据集已保存" +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "限制显示的行数。" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 -msgid "The database was not found." -msgstr "数据库没有找到" +#: superset-frontend/src/explore/controls.jsx:367 +msgid "" +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." +msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。" -#: superset-frontend/src/pages/DatasetList/index.tsx:724 -#, python-format +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are " -"you sure you want to continue? Deleting the dataset will break those " -"objects." -msgstr "数据集 %s 已经链接到 %s 图表和 %s 看板内。确定要继续吗?删除数据集将破坏这些对象。" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" +msgstr "定义实体的分组。每个序列在图表上显示为特定颜色,并有一个可切换的图例" -#: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:272 -msgid "The dataset associated with this chart no longer exists" -msgstr "这个图表所链接的数据集可能被删除了。" +#: superset-frontend/src/explore/controls.jsx:402 +msgid "Metric assigned to the [X] axis" +msgstr "分配给 [X] 轴的指标" + +#: superset-frontend/src/explore/controls.jsx:410 +msgid "Metric assigned to the [Y] axis" +msgstr "分配给 [Y] 轴的指标" + +#: superset-frontend/src/explore/controls.jsx:415 +msgid "Bubble size" +msgstr "气泡尺寸" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 +#: superset-frontend/src/explore/controls.jsx:434 msgid "" -"The dataset configuration exposed here\n" -" affects all the charts using this dataset.\n" -" Be mindful that changing settings\n" -" here may affect other charts\n" -" in undesirable ways." -msgstr "这里公开的数据集配置会影响使用此数据集的所有图表。请注意,更改此处的设置可能会以未预想的方式影响其他图表。" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" +msgstr "当设置“周期比”时,y轴格式强制为“1%”。" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 -#: superset-frontend/src/pages/ChartCreation/index.tsx:261 -msgid "The dataset has been saved" -msgstr "数据集已保存" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:63 +#: superset-frontend/src/explore/controls.jsx:460 +msgid "Color scheme" +msgstr "配色方案" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 -msgid "The dataset linked to this chart may have been deleted." -msgstr "这个图表所链接的数据集可能被删除了。" +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "以此字符开头时出错" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 -msgid "The datasource couldn't be loaded" -msgstr "这个查询无法被加载" +#: superset-frontend/src/explore/actions/saveModalActions.js:142 +#, fuzzy, python-format +msgid "Chart [%s] has been saved" +msgstr "图表 [{}] 已经保存" -#: superset/errors.py:98 -msgid "The datasource is too large to query." -msgstr "数据源太大,无法进行查询。" +#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#, fuzzy, python-format +msgid "Chart [%s] has been overwritten" +msgstr "图表 [{}] 已经覆盖" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 -msgid "" -"The description can be displayed as widget headers in the dashboard view." -" Supports markdown." -msgstr "作为为小部件标题可以在仪表板视图中显示的描述,支持markdown格式语法。" +#: superset-frontend/src/explore/actions/saveModalActions.js:153 +#, fuzzy, python-format +msgid "Dashboard [%s] just got created and chart [%s] was added to it" +msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 -msgid "The distance between cells, in pixels" -msgstr "单元格之间的距离,以像素为单位" +#: superset-frontend/src/explore/actions/saveModalActions.js:163 +#, fuzzy, python-format +msgid "Chart [%s] was added to dashboard [%s]" +msgstr "图表 [{}] 已经添加到看板 [{}]" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 #, fuzzy -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to " -"-1 to bypass the cache." -msgstr "缓存失效前的持续时间(以秒为单位)" +msgid "GROUP BY" +msgstr "分组" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 +msgid "Use this section if you want a query that aggregates" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 #, fuzzy -msgid "The encoding format of the lines" -msgstr "是否规范化直方图" +msgid "NOT GROUPED BY" +msgstr "需要进行分组的一列或多列" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 +msgid "Use this section if you want to query atomic rows" +msgstr "" + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:309 +msgid "The X-axis is not on the filters list" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:311 msgid "" -"The engine_params object gets unpacked into the sqlalchemy.create_engine " -"call." +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"1. engine_params 对象在调用 sqlalchemy.create_engine 时被引用, metadata_params 在调用" -" sqlalchemy.MetaData 时被引用。" -#: superset/common/query_object.py:313 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:497 msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s. " -msgstr " `series_columns`中的下列条目在 `columns` 中缺失: %(columns)s. " +"You cannot delete the last temporal filter as it's used for time range " +"filters in dashboards." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 -msgid "The function to use when aggregating points into groups" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:579 +msgid "This section contains validation errors" msgstr "" -#: superset/db_engine_specs/mysql.py:160 -#, python-format -msgid "The host \"%(hostname)s\" might be down and can't be reached." -msgstr "主机 \"%(hostname)s\" 可能已关闭,无法连接到" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:664 +msgid "Keep control settings?" +msgstr "" -#: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:139 -#: superset/db_engine_specs/presto.py:691 -#: superset/db_engine_specs/redshift.py:86 -#, python-format +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:665 msgid "" -"The host \"%(hostname)s\" might be down, and can't be reached on port " -"%(port)s." -msgstr "主机 \"%(hostname)s\" 可能已关闭,无法通过端口访问 " - -#: superset/errors.py:110 -msgid "The host might be down, and can't be reached on the provided port." -msgstr "主机可能宕机了,无法在所提供的端口上连接到它" +"You've changed datasets. Any controls with data (columns, metrics) that " +"match this new dataset have been retained." +msgstr "" -#: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:129 -#: superset/db_engine_specs/presto.py:686 -#: superset/db_engine_specs/redshift.py:76 -#, python-format -msgid "The hostname \"%(hostname)s\" cannot be resolved." -msgstr "无法解析主机名 \"%(hostname)s\" " +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:670 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#, fuzzy +msgid "Continue" +msgstr "连续式" -#: superset/errors.py:108 -msgid "The hostname provided can't be resolved." -msgstr "提供的主机名无法解析。" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:671 +#, fuzzy +msgid "Clear form" +msgstr "数字格式化" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 -#: superset-frontend/src/explore/controlPanels/sections.tsx:34 -msgid "The id of the active chart" -msgstr "活动图表的ID" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:676 +msgid "No form settings were maintained" +msgstr "" -#: superset/connectors/sqla/views.py:325 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:677 msgid "" -"The list of charts associated with this table. By altering this " -"datasource, you may change how these associated charts behave. Also note " -"that charts need to point to a datasource, so this form will fail at " -"saving if removing charts from a datasource. If you want to change the " -"datasource for a chart, overwrite the chart from the 'explore view'" -msgstr "与此表关联的图表列表。通过更改此数据源,您可以更改这些相关图表的行为。还要注意,图表需要指向数据源,如果从数据源中删除图表,则此窗体将无法保存。如果要为图表更改数据源,请从“浏览视图”更改该图表。" +"We were unable to carry over any controls when switching to this new " +"dataset." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "The maximum number of events to return, equivalent to the number of rows" -msgstr "返回的最大事件数,相当于行数" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:761 +msgid "Customize" +msgstr "定制化配置" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 -msgid "" -"The maximum number of subdivisions of each group; lower values are pruned" -" first" -msgstr "每组的最大细分数;较低的值首先被删除" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 +msgid "Generating link, please wait.." +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 -msgid "The maximum value of metrics. It is an optional configuration" -msgstr "度量的最大值。这是一个可选配置" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +#, fuzzy +msgid "Chart height" +msgstr "图表标题" -#: superset/databases/schemas.py:222 -#, python-format -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%(key)s is invalid." -msgstr "额外字段中的元数据参数配置不正确。键 %(key)s 无效。" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 +#, fuzzy +msgid "Chart width" +msgstr "图表标题" -#: superset/databases/commands/exceptions.py:80 -#: superset/views/database/mixins.py:248 -msgid "" -"The metadata_params in Extra field is not configured correctly. The key " -"%{key}s is invalid." -msgstr "额外字段中的元数据参数配置不正确。键 %{key}s 无效。" +#: superset-frontend/src/explore/components/SaveModal.tsx:136 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "获取看板时出错" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 -msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData " -"call." -msgstr "metadata_params对象被解压缩到sqlalchemy.metadata调用中。" +#: superset-frontend/src/explore/components/SaveModal.tsx:344 +msgid "Save (Overwrite)" +msgstr "保存(覆盖)" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 -#: superset-frontend/src/explore/controlPanels/sections.tsx:164 -msgid "" -"The minimum number of rolling periods required to show a value. For " -"instance if you do a cumulative sum on 7 days you may want your \"Min " -"Period\" to be 7, so that all data points shown are the total of 7 " -"periods. This will hide the \"ramp up\" taking place over the first 7 " -"periods" -msgstr "" -"显示值所需的滚动周期的最小值。例如,如果您想累积 7 天的总额,您可能希望您的“最小周期”为 7,以便显示的所有数据点都是 7 " -"个区间的总和。这将隐藏掉前 7 个阶段的“加速”效果" +#: superset-frontend/src/explore/components/SaveModal.tsx:352 +#, fuzzy +msgid "Save as..." +msgstr "另存为 ..." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 -msgid "The number color \"steps\"" -msgstr "色彩 \"Steps\" 数字" +#: superset-frontend/src/explore/components/SaveModal.tsx:356 +msgid "Chart name" +msgstr "图表名称" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 -msgid "" -"The number of hours, negative or positive, to shift the time column. This" -" can be used to move UTC time to local time." -msgstr "用于移动时间列的小时数(负数或正数)。这可用于将UTC时间移动到本地时间" +#: superset-frontend/src/explore/components/SaveModal.tsx:367 +#, fuzzy +msgid "Dataset Name" +msgstr "数据集名称" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d by the " -"configuration DISPLAY_MAX_ROW. Please add additional limits/filters or " -"download to csv to see more rows up to the %(limit)d limit." +#: superset-frontend/src/explore/components/SaveModal.tsx:369 +msgid "A reusable dataset will be saved with your chart." msgstr "" -"显示的结果数由配置DISPLAY_MAX_ROW限制为 %(rows)d 。请添加其他限制/筛选器或下载到csv以查看更多行数,限制为 " -"%(limit)d " -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 -#, python-format -msgid "" -"The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see " -"more rows up to the %(limit)d limit." -msgstr "显示的结果数限制为 %(rows)d。请添加其他筛选器,下载到csv,或与管理员联系以查看 %(limit)d 的更多行”" +#: superset-frontend/src/explore/components/SaveModal.tsx:383 +msgid "Add to dashboard" +msgstr "添加到看板" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 -#, fuzzy, python-format -msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "显示的行数通过限制下拉框限制为 %(rows)d 。" +#: superset-frontend/src/explore/components/SaveModal.tsx:389 +msgid "Select a dashboard" +msgstr "看板" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." -msgstr "显示的行数通过限制下拉框限制为 %(rows)d 。" +#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 +msgid "Select" +msgstr "批量选择" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 -#, python-format -msgid "The number of rows displayed is limited to %(rows)d by the query" -msgstr "查询将显示的行数限制为 %(rows)d " +#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#, fuzzy +msgid " a dashboard OR " +msgstr "保存看板" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 -#, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the query and " -"limit dropdown." -msgstr "查询和限制下拉列表将显示的行数限制为 %(rows)d" +#: superset-frontend/src/explore/components/SaveModal.tsx:397 +#, fuzzy +msgid "create" +msgstr "创建" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 -#: superset-frontend/src/explore/controlPanels/sections.tsx:43 -msgid "The number of seconds before expiring the cache" -msgstr "终止缓存前的时间(秒)" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#, fuzzy +msgid " a new one" +msgstr "改变为" -#: superset/errors.py:134 -msgid "The object does not exist in the given database." -msgstr "源数据库中存在的表的名称" +#: superset-frontend/src/explore/components/SaveModal.tsx:426 +#, fuzzy +msgid "A new chart and dashboard will be created." +msgstr "看板无法被创建" -#: superset/sqllab/query_render.py:94 -#, python-format -msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "查询中的以下参数未定义:%(parameters)s 。" +#: superset-frontend/src/explore/components/SaveModal.tsx:429 +#, fuzzy +msgid "A new chart will be created." +msgstr "您的查询无法保存。" -#: superset/db_engine_specs/postgres.py:119 -#, python-format -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "用户名 \"%(username)s\" 提供的密码不正确。" +#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#, fuzzy +msgid "A new dashboard will be created." +msgstr "看板无法被创建" + +#: superset-frontend/src/explore/components/SaveModal.tsx:453 +msgid "Save & go to dashboard" +msgstr "保存并转到看板" + +#: superset-frontend/src/explore/components/SaveModal.tsx:478 +msgid "Save chart" +msgstr "图表保存" -#: superset/errors.py:114 -msgid "The password provided when connecting to a database is not valid." -msgstr "连接数据库时提供的密码无效。" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +#, fuzzy +msgid "Formatted date" +msgstr "格式表" -#: superset-frontend/src/pages/ChartList/index.tsx:93 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " -"部分不在导出文件中,如果需要,应在导入后手动添加。" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:195 +#, fuzzy +msgid "Column Formatting" +msgstr "条件格式设置" -#: superset-frontend/src/pages/DashboardList/index.tsx:62 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"需要以下数据库的密码才能将它们与仪表板一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " -"部分不在导出文件中,如果需要,应在导入后手动添加。" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 +#, fuzzy +msgid "Collapse data panel" +msgstr "全部折叠" -#: superset-frontend/src/features/datasets/constants.ts:23 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in" -" export files, and should be added manually after the import if they are " -"needed." +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:172 +msgid "Expand data panel" msgstr "" -"需要以下数据库的密码才能将其与数据集一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " -"部分不在导出文件中,如果需要,应在导入后手动添加。" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" " -"and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if" -" they are needed." -msgstr "" -"需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " -"部分不在导出文件中,如果需要,应在导入后手动添加。" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:236 +#, fuzzy +msgid "Samples" +msgstr "重新采样" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:121 #, fuzzy -msgid "" -"The passwords for the databases below are needed in order to import them." -" Please note that the \"Secure Extra\" and \"Certificate\" sections of " -"the database configuration are not present in explore files and should be" -" added manually after the import if they are needed." -msgstr "" -"需要以下数据库的密码才能导入它们。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " -"部分不在导出文件中。如果需要,应在导入后手动添加。" +msgid "No samples were returned for this dataset" +msgstr "此数据集没有启用简单的特别度量" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 -msgid "The pattern of timestamp format. For strings use " -msgstr "时间戳格式的模式。供字符串使用 " +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:139 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:66 +#, fuzzy +msgid "No results" +msgstr "无结果" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\" expressions." -msgstr "旋转时间的周期性。" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:356 +msgid "Search Metrics & Columns" +msgstr "搜索指标和列" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 -msgid "The pixel radius" -msgstr "像素半径" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:369 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:393 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 +#, fuzzy +msgid "Create a dataset" +msgstr "创建一个 " -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is" -" associated to this Superset logical table, and this logical table points" -" the physical table referenced here." -msgstr "指向物理表(或视图)的指针。请记住,图表将与此逻辑表相关联,并且此逻辑表指向此处引用的物理表。" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +#, fuzzy +msgid " to edit or add columns and metrics." +msgstr "%s 列与计量指标" -#: superset/errors.py:109 -msgid "The port is closed." -msgstr "报告失败" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#, python-format +msgid "Showing %s of %s" +msgstr "显示 %s个 总计 %s个" -#: superset/errors.py:142 -msgid "The port number is invalid." -msgstr "数据库参数无效" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +msgid "Show less..." +msgstr "显示..." -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 -msgid "The primary metric is used to define the arc segment sizes" -msgstr "主计量指标用于定义弧段大小。" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:419 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show all..." +msgstr "显示所有..." -#: superset/views/core.py:2248 -msgid "The provided `rows` argument is not a valid integer." -msgstr "提供的 `rows` 参数不是有效整数。" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:452 +msgid "Show Less..." +msgstr "显示. ." -#: superset/errors.py:137 -msgid "The query associated with the results was deleted." -msgstr "删除与结果关联的查询。" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:127 +msgid "Unable to retrieve dashboard colors" +msgstr "" -#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2198 -msgid "" -"The query associated with these results could not be found. You need to " -"re-run the original query." -msgstr "找不到与这些结果相关联的查询。你需要重新运行查询" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:185 +#, fuzzy +msgid "Added to 1 dashboard" +msgstr "添加到看板" -#: superset/sqllab/query_render.py:115 -msgid "The query contains one or more malformed template parameters." -msgstr "该查询包含一个或多个格式不正确的模板参数。" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#, fuzzy +msgid "Not added to any dashboard" +msgstr "添加到看板" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 -msgid "The query couldn't be loaded" -msgstr "这个查询无法被加载" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:194 +msgid "You can preview the list of dashboards in the chart settings dropdown." +msgstr "" -#: superset/sqllab/commands/estimate.py:86 -#, fuzzy, python-format -msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It " -"might be too complex, or the database might be under heavy load." -msgstr "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或者数据库可能负载过重。" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:202 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:206 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 +#, fuzzy +msgid "Not available" +msgstr "没有可用的描述" -#: superset/errors.py:135 -msgid "The query has a syntax error." -msgstr "查询有语法错误。" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:230 +#, fuzzy +msgid "Add the name of the chart" +msgstr "活动图表的ID" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 -msgid "The query returned no data" -msgstr "查询无结果" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:231 +#, fuzzy +msgid "Chart title" +msgstr "图表标题" -#: superset/sql_lab.py:297 -#, python-format -msgid "" -"The query was killed after %(sqllab_timeout)s seconds. It might be too " -"complex, or the database might be under heavy load." -msgstr "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或者数据库可能负载过重。" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:265 +msgid "Add required control values to save chart" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 -msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " -"to turn off clustering, but beware that a large number of points (>1000) " -"will cause lag." -msgstr "算法用来定义一个簇的半径(以像素为单位)。选择0关闭聚,但要注意大量的点(>1000)会导致处理时间变长。" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 +msgid "Chart type requires a dataset" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" -"The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest" -" cluster" -msgstr "单个点的半径(不在簇中的点)。一个数值列或“AUTO”,它根据最大的聚类来缩放点。" - -#: superset-frontend/src/reports/actions/reports.js:110 -msgid "The report has been created" -msgstr "数据集已保存" +"This chart type is not supported when using an unsaved query as a chart " +"source. " +msgstr "" -#: superset/errors.py:136 -msgid "The results backend no longer has the data from the query." -msgstr "结果后端不再拥有来自查询的数据。" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +msgid " to visualize your data." +msgstr "" -#: superset/errors.py:138 -msgid "" -"The results stored in the backend were stored in a different format, and " -"no longer can be deserialized." -msgstr "后端存储的结果以不同的格式存储,而且不再可以反序列化" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 +msgid "Required control values have been removed" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 -msgid "The rich tooltip shows a list of all series for that point in time" -msgstr "详细提示显示了该时间点的所有序列的列表。" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +#, fuzzy +msgid "Your chart is not up to date" +msgstr "不是最新的" -#: superset/db_engine_specs/bigquery.py:203 -#, python-format +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to " -"run this query." -msgstr "表 \"%(schema)s\" 不存在。必须使用有效的表来运行此查询。" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" +msgstr "" -#: superset/db_engine_specs/presto.py:673 -#, python-format -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be " -"used to run this query." -msgstr "表 \"%(schema_name)s\" 不存在。必须使用有效的表来运行此查询。" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Controls labeled " +msgstr "控件已标记" -#: superset/errors.py:117 -msgid "The schema was deleted or renamed in the database." -msgstr "该列已在数据库中删除或重命名。" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +msgid "Control labeled " +msgstr "控件已标记 " -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 -msgid "The size of the square cell, in pixels" -msgstr "平方单元的大小,以像素为单位" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 +#, fuzzy +msgid "Chart Source" +msgstr "数据源" -#: superset/datasets/commands/exceptions.py:72 -#: superset/views/datasource/views.py:90 -msgid "" -"The submitted URL is not considered safe, only use URLs with the same " -"domain as Superset." -msgstr "" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 +msgid "Open Datasource tab" +msgstr "打开数据源tab" -#: superset/errors.py:120 -msgid "The submitted payload has the incorrect format." -msgstr "提交的有效载荷格式不正确" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 +msgid "Original" +msgstr "起点" -#: superset/errors.py:121 -msgid "The submitted payload has the incorrect schema." -msgstr "提交的有效负载的模式不正确。" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "旋转" -#: superset/db_engine_specs/bigquery.py:190 -#, python-format -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run" -" this query." -msgstr "表 \"%(table)s\" 不存在。必须使用有效的表来运行此查询。" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 +msgid "You do not have permission to edit this chart" +msgstr "您没有编辑此图表的权限" -#: superset/db_engine_specs/presto.py:665 -#, python-format -msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used " -"to run this query." -msgstr "表 \"%(table_name)s\" 不存在。必须使用有效的表来运行此查询。" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 +#, fuzzy +msgid "Chart properties updated" +msgstr "编辑图表属性" -#: superset/connectors/sqla/views.py:422 -msgid "" -"The table was created. As part of this two-phase configuration process, " -"you should now click the edit button by the new table to configure it." -msgstr "表被创建。作为这两个阶段配置过程的一部分,您现在应该单击新表的编辑按钮来配置它。" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 +#, fuzzy +msgid "Edit Chart Properties" +msgstr "编辑图表属性" -#: superset/errors.py:106 -msgid "The table was deleted or renamed in the database." -msgstr "Issue 1005 - 该表已在数据库中删除或重命名。" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 +msgid "This chart is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 -#: superset-frontend/src/explore/controls.jsx:281 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"The time column for the visualization. Note that you can define arbitrary" -" expression that return a DATETIME column in the table. Also note that " -"the filter below is applied against this column or expression" -msgstr "可视化的时间栏。注意,您可以定义返回表中的DATETIMLE列的任意表达式。还请注意下面的筛选器应用于该列或表达式。" +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." +msgstr "作为为小部件标题可以在仪表板视图中显示的描述,支持markdown格式语法。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 -msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" -msgstr "可视化的时间粒度。请注意,您可以输入和使用简单的日期表达方式,如 `10 seconds`, `1 day` or `56 weeks`" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 +msgid "Person or group that has certified this chart." +msgstr "对此图表进行认证的个人或团体。" -#: superset-frontend/src/explore/controls.jsx:271 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 +msgid "Configuration" +msgstr "配置" + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 #, fuzzy msgid "" -"The time granularity for the visualization. Note that you can type and " -"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "可视化的时间粒度。请注意,您可以输入和使用简单的日期表达方式,如 `10 seconds`, `1 day` or `56 weeks`" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." +msgstr "此图表的缓存超时前的持续时间(秒)。请注意,如果未定义则默认为数据集的超时时间。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 -#: superset-frontend/src/explore/controls.jsx:310 -msgid "" -"The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time " -"granularity. The options here are defined on a per database engine basis " -"in the Superset source code." -msgstr "可视化的时间粒度。这将应用日期转换来更改时间列,并定义新的时间粒度。这里的选项是在 Superset 源代码中的每个数据库引擎基础上定义的。" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." +msgstr "有权处理该图表的用户列表。可按名称或用户名搜索。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 -#: superset-frontend/src/explore/controls.jsx:327 -msgid "" -"The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" -" the server's local time (sans timezone). All tooltips and placeholder " -"times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can" -" explicitly set the timezone per the ISO 8601 format if specifying either" -" the start and/or end time." -msgstr "" -"可视化的时间范围。所有相关的时间,例如\"上个月\"、\"过去7天\"、\"现在\"等,都在服务器上使用服务器的本地时间(sans时区)进行计算。所有工具提示和占位符时间均以UTC(无时区)表示。然后,数据库使用引擎的本地时区来评估时间戳。注:如果指定开始时间和、或者结束时间,可以根据ISO" -" 8601格式显式设置时区。" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 +msgid "Limit reached" +msgstr "达到限制" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 -msgid "" -"The time unit for each block. Should be a smaller unit than " -"domain_granularity. Should be larger or equal to Time Grain" -msgstr "每个块的时间单位。应该是主域域粒度更小的单位。应该大于或等于时间粒度" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 +#, fuzzy +msgid "Create chart" +msgstr "面积图" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 -msgid "The time unit used for the grouping of blocks" -msgstr "用于块分组的时间单位" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +#, fuzzy +msgid "Update chart" +msgstr "图表保存" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 -#: superset-frontend/src/explore/controls.jsx:201 -msgid "The type of visualization to display" -msgstr "要显示的可视化类型" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 +msgid "Invalid lat/long configuration." +msgstr "错误的经纬度配置。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 -msgid "The unit of measure for the specified point radius" -msgstr "指定点半径的度量单位" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +msgid "Reverse lat/long " +msgstr "经纬度互换" -#: superset/views/core.py:198 -msgid "The user seems to have been deleted" -msgstr "用户已经被删除" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "经纬度字段" -#: superset/db_engine_specs/ocient.py:251 -msgid "The user/password combination is not valid (Incorrect password for user)." -msgstr "" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 +msgid "Delimited long & lat single column" +msgstr "经度&纬度单列限定" -#: superset/db_engine_specs/ocient.py:246 -#: superset/db_engine_specs/postgres.py:114 -#, python-format -msgid "The username \"%(username)s\" does not exist." -msgstr "指标 '%(username)s' 不存在" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 +msgid "" +"Multiple formats accepted, look the geopy.points Python library for more " +"details" +msgstr "接受多种格式,查看geopy.points库以获取更多细节" -#: superset/errors.py:113 -msgid "The username provided when connecting to a database is not valid." -msgstr "连接到数据库时提供的用户名无效。" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 +msgid "Geohash" +msgstr "Geo哈希" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 -msgid "The way the ticks are laid out on the X-axis" -msgstr "X轴记号的排列显示方式" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 +msgid "textarea" +msgstr "文本区域" + +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 +msgid "in modal" +msgstr "(在模型中)" + +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 +msgid "Sorry, An error occurred" +msgstr "抱歉,发生错误" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 #, fuzzy -msgid "The width of the lines" -msgstr "活动图表的ID" +msgid "Save as Dataset" +msgstr "选择数据源" -#: superset/charts/commands/exceptions.py:127 -#: superset/charts/commands/exceptions.py:151 -#: superset/dashboards/commands/exceptions.py:62 -#: superset/dashboards/commands/exceptions.py:74 -#: superset/databases/commands/exceptions.py:119 -msgid "There are associated alerts or reports" -msgstr "存在关联的警报或报告" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:39 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:124 +msgid "Open in SQL Lab" +msgstr "在 SQL 工具箱中打开" -#: superset/charts/commands/bulk_delete.py:61 -#: superset/charts/commands/delete.py:70 -#: superset/dashboards/commands/bulk_delete.py:62 -#: superset/dashboards/commands/delete.py:63 -#: superset/databases/commands/delete.py:62 +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 #, python-format -msgid "There are associated alerts or reports: %s," -msgstr "存在关联的警报或报告:%s," +msgid "Failed to verify select options: %s" +msgstr "验证选择选项失败:%s" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:115 #, fuzzy -msgid "There are no charts added to this dashboard" -msgstr "此看板中没有过滤条件。" - -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 -msgid "There are no components added to this tab" -msgstr "" +msgid "No annotation layers" +msgstr "注解层" -#: superset-frontend/src/components/EmptyState/index.tsx:229 -msgid "There are no databases available" -msgstr "没有可用的数据库" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:118 +#, fuzzy +msgid "Add an annotation layer" +msgstr "添加注释层" -#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 -msgid "There are no filters in this dashboard." -msgstr "此看板中没有过滤条件。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:445 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:217 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +msgid "Annotation layer" +msgstr "注释层" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 -msgid "There are unsaved changes." -msgstr "您有一些未保存的修改。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#, fuzzy +msgid "Select the Annotation Layer you would like to use." +msgstr "选择注释层类型" -#: superset/errors.py:101 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:454 +#, python-format msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling" -" or a typo." -msgstr "Issue 1003 - SQL查询中存在语法错误。可能是拼写错误或是打错关键字。" +"Use another existing chart as a source for annotations and overlays.\n" +" Your chart must be one of these visualization types: [%s]" +msgstr "" -#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 msgid "" -"There is no chart definition associated with this component, could it " -"have been deleted?" -msgstr "没有与此组件关联的图表定义,是否已将其删除?" +"Expects a formula with depending time parameter 'x'\n" +" in milliseconds since epoch. mathjs is used to evaluate the " +"formulas.\n" +" Example: '2x+5'" +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 -msgid "" -"There is not enough space for this component. Try decreasing its width, " -"or increasing the destination width." -msgstr "此组件没有足够的空间。请尝试减小其宽度,或增加目标宽度。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:466 +msgid "Annotation layer value" +msgstr "注释层值" -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 -#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:496 #, fuzzy -msgid "There was an error fetching dataset" -msgstr "抱歉,获取数据库信息时出错:%s" +msgid "Bad formula." +msgstr "日期格式化" -#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -#, fuzzy -msgid "There was an error fetching dataset's related objects" -msgstr "抱歉,获取数据库信息时出错:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:529 +msgid "Annotation Slice Configuration" +msgstr "注释切片配置" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 #, fuzzy -msgid "There was an error fetching tables" -msgstr "您的请求有错误" +msgid "" +"This section allows you to configure how to use the slice\n" +" to generate annotations." +msgstr "此部分允许您配置如何使用切片生成注释。" -#: superset-frontend/src/views/CRUD/hooks.ts:593 -#, python-format -msgid "There was an error fetching the favorite status: %s" -msgstr "获取此看板的收藏夹状态时出现问题:%s。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:536 +msgid "Annotation layer time column" +msgstr "注释层时间列" -#: superset-frontend/src/views/CRUD/utils.tsx:209 -msgid "There was an error fetching your recent activity:" -msgstr "获取您最近的活动时出错:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:541 +msgid "Interval start column" +msgstr "间隔开始列" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 -#, fuzzy -msgid "There was an error loading the chart data" -msgstr "抱歉,这个看板在获取图表时发生错误:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 +msgid "Event time column" +msgstr "事件时间列" -#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 -#, fuzzy -msgid "There was an error loading the dataset metadata" -msgstr "您的请求有错误" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:544 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 +msgid "This column must contain date/time information." +msgstr "包含行信息的数据库列" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:556 +msgid "Annotation layer interval end" +msgstr "注释层间隔结束" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:559 +msgid "Interval End column" +msgstr "间隔结束列" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:570 +msgid "Annotation layer title column" +msgstr "注释层标题列" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 -msgid "There was an error loading the schemas" -msgstr "抱歉,这个看板在获取图表时发生错误:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:573 +msgid "Title Column" +msgstr "标题栏" -#: superset-frontend/src/components/TableSelector/index.tsx:191 -msgid "There was an error loading the tables" -msgstr "您的请求有错误" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Pick a title for you annotation." +msgstr "为您的注释选择一个标题" -#: superset-frontend/src/views/CRUD/hooks.ts:616 -#, python-format -msgid "There was an error saving the favorite status: %s" -msgstr "获取此看板的收藏夹状态时出现问题: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:581 +msgid "Annotation layer description columns" +msgstr "注释层描述列。" -#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 -msgid "There was an error with your request" -msgstr "您的请求有错误" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:584 +msgid "Description Columns" +msgstr "列描述" -#: superset-frontend/src/features/home/SavedQueries.tsx:175 -#: superset-frontend/src/pages/AlertReportList/index.tsx:186 -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 -#: superset-frontend/src/pages/AnnotationList/index.tsx:121 -#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:178 -#: superset-frontend/src/pages/DatasetList/index.tsx:668 -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 -#: superset-frontend/src/views/CRUD/utils.tsx:315 -#, python-format -msgid "There was an issue deleting %s: %s" -msgstr "删除 %s 时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 +msgid "" +"Pick one or more columns that should be shown in the annotation. If you " +"don't select a column all of them will be shown." +msgstr "选择注释中应该显示的一个或多个列如果您不选择一列,所有的选项都会显示出来。" -#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 -#, fuzzy, python-format -msgid "There was an issue deleting rules: %s" -msgstr "删除 %s 时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:598 +#, fuzzy +msgid "Override time range" +msgstr "编辑时间范围" -#: superset-frontend/src/pages/AlertReportList/index.tsx:201 -#, python-format -msgid "There was an issue deleting the selected %s: %s" -msgstr "删除所选 %s 时出现问题: %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 +msgid "" +"This controls whether the \"time_range\" field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." +msgstr "" -#: superset-frontend/src/pages/AnnotationList/index.tsx:141 -#, python-format -msgid "There was an issue deleting the selected annotations: %s" -msgstr "删除所选注释时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:616 +#, fuzzy +msgid "Override time grain" +msgstr "显示Druid原始时间" -#: superset-frontend/src/pages/ChartList/index.tsx:263 -#, python-format -msgid "There was an issue deleting the selected charts: %s" -msgstr "删除所选图表时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +msgid "" +"This controls whether the time grain field from the current\n" +" view should be passed down to the chart containing the " +"annotation data." +msgstr "" -#: superset-frontend/src/pages/DashboardList/index.tsx:258 -msgid "There was an issue deleting the selected dashboards: " -msgstr "删除所选仪表板时出现问题:" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 +msgid "" +"Time delta in natural language\n" +" (example: 24 hours, 7 days, 56 weeks, 365 days)" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:686 -#, python-format -msgid "There was an issue deleting the selected datasets: %s" -msgstr "删除选定的数据集时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:679 +msgid "Display configuration" +msgstr "显示配置" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 -#, python-format -msgid "There was an issue deleting the selected layers: %s" -msgstr "删除所选图层时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 +msgid "Configure your how you overlay is displayed here." +msgstr "配置如何在这里显示您的覆盖。" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 -#, python-format -msgid "There was an issue deleting the selected queries: %s" -msgstr "删除所选查询时出现问题:%s" +# stroke 中风??? +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:683 +msgid "Annotation layer stroke" +msgstr "注释层混乱" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 -#, python-format -msgid "There was an issue deleting the selected templates: %s" -msgstr "删除所选模板时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:685 +msgid "Style" +msgstr "风格" -#: superset-frontend/src/views/CRUD/utils.tsx:275 -#, python-format -msgid "There was an issue deleting: %s" -msgstr "删除时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:688 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:703 +msgid "Solid" +msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 #, fuzzy -msgid "There was an issue duplicating the dataset." -msgstr "删除选定的数据集时出现问题:%s" +msgid "Dashed" +msgstr "看板" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 -#, fuzzy, python-format -msgid "There was an issue duplicating the selected datasets: %s" -msgstr "删除选定的数据集时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 +msgid "Long dashed" +msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:127 -msgid "There was an issue favoriting this dashboard." -msgstr "收藏看板时候出现问题。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 +#, fuzzy +msgid "Dotted" +msgstr "已编辑" -#: superset-frontend/src/reports/actions/reports.js:68 -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "获取此看板的收藏夹状态时出现问题。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:698 +msgid "Annotation layer opacity" +msgstr "注释层不透明度" -#: superset-frontend/src/dashboard/actions/dashboardState.js:103 -msgid "There was an issue fetching the favorite status of this dashboard." -msgstr "获取此看板的收藏夹状态时出现问题。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:712 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:262 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:317 +msgid "Color" +msgstr "颜色" -#: superset-frontend/src/pages/Home/index.tsx:281 -#, fuzzy, python-format -msgid "There was an issue fetching your chart: %s" -msgstr "删除时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:725 +msgid "Automatic Color" +msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:270 -#, fuzzy, python-format -msgid "There was an issue fetching your dashboards: %s" -msgstr "删除所选仪表板时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 +msgid "Shows or hides markers for the time series" +msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:248 -#, python-format -msgid "There was an issue fetching your recent activity: %s" -msgstr "获取您最近的活动时出错:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:750 +#, fuzzy +msgid "Hide Line" +msgstr "隐藏Layer" -#: superset-frontend/src/pages/Home/index.tsx:293 -#, fuzzy, python-format -msgid "There was an issue fetching your saved queries: %s" -msgstr "删除所选查询时出现问题:%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 +#, fuzzy +msgid "Hides the Line for the time series" +msgstr "时间序列设置" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 -#, python-format -msgid "There was an issue previewing the selected query %s" -msgstr "预览所选查询时出现问题 %s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:783 +msgid "Layer configuration" +msgstr "配置Layer" -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 -#, python-format -msgid "There was an issue previewing the selected query. %s" -msgstr "预览所选查询时出现问题。%s" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 +msgid "Configure the basics of your Annotation Layer." +msgstr "注释层基本配置" -#: superset/viz.py:1915 -msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty " -"link: {}" -msgstr "桑基图里面有一个循环,请提供一棵树。这是一个错误的链接:{}" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:792 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:830 +msgid "Mandatory" +msgstr "必填参数" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 -msgid "These are the tables this filter will be applied to." -msgstr "这些是将应用此过滤的表。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:796 +msgid "Hide layer" +msgstr "隐藏Layer" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 -msgid "These filters apply to the values available in the dropdowns" -msgstr "这些过滤器应用于下拉列表中的可用值" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:802 +msgid "Show label" +msgstr "显示标签" -#: superset/views/chart/mixin.py:63 -msgid "" -"These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here " -"for reference and for power users who may want to alter specific " -"parameters." -msgstr "这些参数是在浏览视图中单击保存或覆盖按钮时动态生成的。这个JSON对象在这里公开以供参考,并提供给可能希望更改特定参数的高级用户使用。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:805 +msgid "Whether to always show the annotation label" +msgstr "是否显示标签。" -#: 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 " -"overwrite button in the dashboard view. It is exposed here for reference " -"and for power users who may want to alter specific parameters." -msgstr "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:809 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 +msgid "Annotation layer type" +msgstr "注释层类型" -#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 -#: superset-frontend/src/pages/AlertReportList/index.tsx:568 -#, python-format -msgid "This action will permanently delete %s." -msgstr "此操作将永久删除 %s 。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:811 +msgid "Choose the annotation layer type" +msgstr "选择注释层类型" -#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 -msgid "This action will permanently delete the layer." -msgstr "此操作将永久删除图层。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:821 +msgid "Annotation source type" +msgstr "注释数据源类型" -#: superset-frontend/src/features/home/SavedQueries.tsx:231 -#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 -msgid "This action will permanently delete the saved query." -msgstr "此操作将永久删除保存的查询。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:823 +msgid "Choose the source of your annotations" +msgstr "选择您的注释来源" -#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 -msgid "This action will permanently delete the template." -msgstr "此操作将永久删除模板。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 +#, fuzzy +msgid "Annotation source" +msgstr "注释来源" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 -msgid "" -"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " -"mydatabase.com)." -msgstr "这可以是一个IP地址(例如127.0.0.1)或一个域名(例如127.0.0.1)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:846 +msgid "Remove" +msgstr "删除" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 -msgid "" -"This chart applies cross-filters to charts whose datasets contain columns" -" with the same name." -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationTypes.js:46 +#, fuzzy +msgid "Time series" +msgstr "时间序列" -#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 -msgid "This chart has been moved to a different filter scope." -msgstr "此图表已移至其他过滤器范围内。" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 +msgid "Edit annotation layer" +msgstr "添加注释层" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 -msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 +msgid "Add annotation layer" +msgstr "添加注释层" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "This chart might be incompatible with the filter (datasets don't match)" -msgstr "此图表可能与过滤器不兼容(数据集不匹配)" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 +msgid "Empty collection" +msgstr "空集合" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 -msgid "" -"This chart type is not supported when using an unsaved query as a chart " -"source. " -msgstr "" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 +msgid "Add an item" +msgstr "新增一行" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 +msgid "Remove item" +msgstr "删除该行" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 #, fuzzy @@ -15998,3980 +16190,3869 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "此配色方案正被自定义标签颜色覆盖。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 #, fuzzy -msgid "This column might be incompatible with current dataset" -msgstr "此图表可能与过滤器不兼容(数据集不匹配)" +msgid "" +"The color scheme is determined by the related dashboard.\n" +" Edit the color scheme in the dashboard properties." +msgstr "配色方案由相关的仪表盘决定。在仪表板属性中编辑配色方案" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 -msgid "This column must contain date/time information." -msgstr "包含行信息的数据库列" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:136 +#: superset-frontend/src/pages/DashboardList/index.tsx:775 +msgid "dashboard" +msgstr "看板" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 -msgid "" -"This controls whether the \"time_range\" field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 +msgid "Dashboard scheme" +msgstr "仪表盘模式" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 -msgid "" -"This controls whether the time grain field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 +msgid "Select color scheme" +msgstr "线性颜色方案" -#: superset-frontend/src/dashboard/components/Header/index.jsx:320 -#, python-format -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will " -"be in %s." -msgstr "此看板当前正在强制刷新;下一次强制刷新将在 %s 内执行。" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 +msgid "Select scheme" +msgstr "选择表" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:658 -msgid "This dashboard is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:159 +msgid "Show less columns" +msgstr "显示较少时间列" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 -msgid "" -"This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the" -" URL directly." -msgstr "此看板未发布,这意味着它不会显示在仪表板列表中。您可以进行收藏并在收藏栏中查看或直接使用URL访问它。" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/ColumnConfigControl.tsx:164 +msgid "Show all columns" +msgstr "显示所有列" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:75 +msgid "Fraction digits" +msgstr "分数位" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:76 +msgid "Number of decimal digits to round numbers to" +msgstr "要四舍五入的十进制位数" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:85 +msgid "Min Width" +msgstr "最小宽度" + +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:86 msgid "" -"This dashboard is not published, it will not show up in the list of " -"dashboards. Click here to publish this dashboard." -msgstr "此看板未发布,它将不会显示在看板列表中。单击此处以发布此看板。" +"Default minimal column width in pixels, actual width may still be larger " +"than this if other columns don't need much space" +msgstr "默认最小列宽(以像素为单位),如果其他列不需要太多空间,则实际宽度可能仍大于此值" -#: superset-frontend/src/dashboard/actions/dashboardState.js:152 -msgid "This dashboard is now hidden" -msgstr "无法修改该看板" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:100 +msgid "Text align" +msgstr "文本对齐" -#: superset-frontend/src/dashboard/actions/dashboardState.js:151 -msgid "This dashboard is now published" -msgstr "当前看板 ${nowPublished}" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:101 +msgid "Horizontal alignment" +msgstr "水平对齐" -#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 -msgid "This dashboard is published. Click to make it a draft." -msgstr "此看板已发布。单击以使其成为草稿。" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:114 +msgid "Show cell bars" +msgstr "显示单元格的栏" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 -msgid "" -"This dashboard is ready to embed. In your application, pass the following" -" id to the SDK:" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:123 +msgid "Whether to align positive and negative values in cell bar chart at 0" +msgstr "单元格条形图中的正负值是否按0对齐" -#: superset/views/core.py:1353 -msgid "" -"This dashboard was changed recently. Please reload dashboard to get " -"latest version." -msgstr "此看板最近已更新。请重新加载看板以获取最新版本。" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:133 +msgid "Whether to colorize numeric values by if they are positive or negative" +msgstr "根据数值是正数还是负数来为其上色" -#: superset-frontend/src/dashboard/actions/dashboardState.js:313 -#: superset-frontend/src/dashboard/actions/dashboardState.js:352 -msgid "This dashboard was saved successfully." -msgstr "该看板已成功保存。" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:142 +#, fuzzy +msgid "Truncate Cells" +msgstr "截断Y轴" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 -msgid "This database is managed externally, and can't be edited in Superset" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:143 +msgid "Truncate long cells to the \"min width\" set above" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:151 msgid "" -"This database table does not contain any data. Please select a different " -"table." +"Customize chart metrics or columns with currency symbols as prefixes or " +"suffixes. Choose a symbol from dropdown or type your own." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 -msgid "This dataset is managed externally, and can't be edited in Superset" -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:163 +msgid "Small number format" +msgstr "数字格式化" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 -msgid "This dataset is not used to power any charts." -msgstr "" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:164 +#, fuzzy +msgid "" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" +msgstr "D3数字格式,用于-1.0和1.0之间的数字,当您希望小数和大数有不同的符号数字时很有用" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 -#: superset-frontend/src/explore/controls.jsx:396 -msgid "This defines the element to be plotted on the chart" -msgstr "这定义了要在图表上绘制的元素" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:190 +#, fuzzy +msgid "Display" +msgstr "显示名称" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 -msgid "This defines the level of the hierarchy" -msgstr "该选项定义了层次级别" +#: superset-frontend/src/explore/components/controls/ColumnConfigControl/constants.tsx:202 +#, fuzzy +msgid "Number formatting" +msgstr "数字格式化" -#: superset/connectors/sqla/views.py:343 -msgid "" -"This fields acts a Superset view, meaning that Superset will run a query " -"against this string as a subquery." -msgstr "这个字段执行Superset视图时,意味着Superset将以子查询的形式对字符串运行查询。" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 +msgid "Edit formatter" +msgstr "日期格式化" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 -msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "此过滤器在仪表板中不存在。它不会被应用。" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 +msgid "Add new formatter" +msgstr "新增格式化" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 +msgid "Add new color formatter" +msgstr "添加新的颜色" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "alert" +msgstr "警报" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 #, fuzzy -msgid "This filter might be incompatible with current dataset" -msgstr "此图表可能与过滤器不兼容(数据集不匹配)" +msgid "error" +msgstr "错误" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 -#, python-format -msgid "This filter set is identical to: \"%s\"" -msgstr "此过滤器集等同于: \"%s\" " +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "成功" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "This functionality is disabled in your environment for security reasons." -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "警报" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 -msgid "" -"This is the condition that will be added to the WHERE clause. For " -"example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless" -" a user belongs to a RLS filter role, a base filter can be created with " -"the clause `1 = 0` (always false)." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" msgstr "" -"这是将会添加到WHERE子句的条件。例如,要仅返回特定客户端的行,可以使用子句 `client_id = 9` " -"定义常规过滤。若要在用户不属于RLS过滤角色的情况下不显示行,可以使用子句 `1 = 0`(始终为false)创建基本过滤。" -#: superset/views/dashboard/mixin.py:46 -msgid "" -"This json object describes the positioning of the widgets in the " -"dashboard. It is dynamically generated when adjusting the widgets size " -"and positions by using drag & drop in the dashboard view" -msgstr "这个JSON对象描述了部件在看板中的位置。它是动态生成的,可以通过拖放,在看板中调整整部件的大小和位置" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 +msgid "This value should be smaller than the right target value" +msgstr "这个值应该小于正确的目标值" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 -msgid "This markdown component has an error." -msgstr "此 markdown 组件有错误。" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 +msgid "This value should be greater than the left target value" +msgstr "这个值应该大于左边的目标值" -#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "This markdown component has an error. Please revert your recent changes." -msgstr "此 markdown 组件有错误。请还原最近的更改。" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +msgid "Required" +msgstr "必填" -#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 -msgid "This may be triggered by:" -msgstr "这可能由以下因素触发:" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "运算符" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 -#, fuzzy -msgid "This metric might be incompatible with current dataset" -msgstr "此图表可能与过滤器不兼容(数据集不匹配)" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 +msgid "Left value" +msgstr "左值" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 -#, fuzzy -msgid "" -"This section allows you to configure how to use the slice\n" -" to generate annotations." -msgstr "此部分允许您配置如何使用切片生成注释。" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 +msgid "Right value" +msgstr "右侧的值" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 -#: superset-frontend/src/explore/controlPanels/sections.tsx:119 -msgid "" -"This section contains options that allow for advanced analytical post " -"processing of query results" -msgstr "本节包含允许对查询结果进行高级分析处理后的选项。" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "目标值" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 -msgid "This section contains validation errors" -msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 +msgid "Select column" +msgstr "时间列" -#: superset-frontend/src/embedded/index.tsx:109 -msgid "" -"This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that" -" the guest token is being generated correctly." -msgstr "" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourOption.tsx:81 +#, fuzzy +msgid "Color: " +msgstr "颜色" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 -msgid "This table already has a dataset" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:89 +msgid "Lower threshold must be lower than upper threshold" msgstr "" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:92 +#, fuzzy +msgid "Upper threshold must be greater than lower threshold" +msgstr "`行限制` 必须大于或等于1" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:225 +#, fuzzy +msgid "Isoline" +msgstr "离线" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:232 +#, fuzzy +msgid "Threshold" +msgstr "标签阈值" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:233 msgid "" -"This table already has a dataset associated with it. You can only " -"associate one dataset with a table.\n" +"Defines the value that determines the boundary between different regions " +"or levels in the data " msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 -msgid "This value should be greater than the left target value" -msgstr "这个值应该大于左边的目标值" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:250 +#, fuzzy +msgid "The width of the Isoline in pixels" +msgstr "活动图表的ID" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 -msgid "This value should be smaller than the right target value" -msgstr "这个值应该小于正确的目标值" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:263 +#, fuzzy +msgid "The color of the isoline" +msgstr "是否规范化直方图" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:278 #, fuzzy -msgid "This visualization type does not support cross-filtering." -msgstr "选择可视化类型" +msgid "Isoband" +msgstr "和" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 -msgid "This visualization type is not supported." -msgstr "选择可视化类型" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:285 +#, fuzzy +msgid "Lower Threshold" +msgstr "标签阈值" -#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:286 +msgid "The lower limit of the threshold range of the Isoband" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:300 #, fuzzy -msgid "This was triggered by:" -msgid_plural "This may be triggered by:" -msgstr[0] "这是由以下因素引发的:" +msgid "Upper Threshold" +msgstr "标签阈值" -#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 -msgid "This will remove your current embed configuration." +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:301 +msgid "The upper limit of the threshold range of the Isoband" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 -msgid "Threshold alpha level for determining significance" -msgstr "确定重要性的阈值α水平" +#: superset-frontend/src/explore/components/controls/ContourControl/ContourPopoverControl.tsx:318 +#, fuzzy +msgid "The color of the isoband" +msgstr "是否规范化直方图" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 -msgid "Threshold value should be double precision number" +#: superset-frontend/src/explore/components/controls/ContourControl/index.tsx:118 +msgid "Click to add a contour" msgstr "" -#: superset-frontend/src/pages/Home/index.tsx:343 -msgid "Thumbnails" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:63 +msgid "Prefix" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 -msgid "Thursday" -msgstr "星期四" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:64 +msgid "Suffix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 -#: superset-frontend/src/explore/controlPanels/sections.tsx:65 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 -msgid "Time" -msgstr "时间" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:104 +msgid "Currency prefix or suffix" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 -msgid "Time Column" -msgstr "时间列" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:106 +msgid "Prefix or suffix" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 -msgid "Time Comparison" -msgstr "时间比对" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:116 +msgid "Currency symbol" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 -msgid "Time Format" -msgstr "时间格式" +#: superset-frontend/src/explore/components/controls/CurrencyControl/CurrencyControl.tsx:118 +msgid "Currency" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 -msgid "Time Grain" -msgstr "时间粒度(Grain)" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:297 +msgid "Edit dataset" +msgstr "编辑数据集" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 -msgid "Time Granularity" -msgstr "时间粒度(Granularity)" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/pages/DatasetList/index.tsx:468 +msgid "" +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." +msgstr "" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 -#, fuzzy -msgid "Time Lag" -msgstr "时间范围" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:334 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:374 +msgid "View in SQL Lab" +msgstr "在 SQL 工具箱中公开" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 -#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 -msgid "Time Range" -msgstr "时间范围" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:346 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:348 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:394 +msgid "Query preview" +msgstr "查询预览" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:378 #, fuzzy -msgid "Time Ratio" -msgstr "时间粒度(grain)" - -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 -msgid "Time Series" -msgstr "时间序列" - -#: superset/viz.py:1581 -msgid "Time Series - Bar Chart" -msgstr "时间序列 - 柱状图" - -#: superset/viz.py:1504 -msgid "Time Series - Dual Axis Line Chart" -msgstr "时间序列-双轴线图" +msgid "Save as dataset" +msgstr "选择数据源" -#: superset/viz.py:1209 -msgid "Time Series - Line Chart" -msgstr "时间序列-折线图" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:434 +#, fuzzy +msgid "Missing URL parameters" +msgstr "编辑模板参数" -#: superset/viz.py:1424 -msgid "Time Series - Multiple Line Charts" -msgstr "时间序列-多线图" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:439 +msgid "The URL is missing the dataset_id or slice_id parameters." +msgstr "" -#: superset/viz.py:3033 -msgid "Time Series - Nightingale Rose Chart" -msgstr "时间序列 - 南丁格尔玫瑰图" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:457 +msgid "The dataset linked to this chart may have been deleted." +msgstr "这个图表所链接的数据集可能被删除了。" -#: superset/viz.py:2961 -msgid "Time Series - Paired t-test" -msgstr "时间序列 - 配对t检验" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 +msgid "RANGE TYPE" +msgstr "范围类型" -#: superset/viz.py:1638 -msgid "Time Series - Percent Change" -msgstr "时间序列 - 百分比变化" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:308 +msgid "Actual time range" +msgstr "实际时间范围" -#: superset/viz.py:1590 -msgid "Time Series - Period Pivot" -msgstr "时间序列 - 周期透视表" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:340 +msgid "APPLY" +msgstr "应用" -#: superset/viz.py:1646 -msgid "Time Series - Stacked" -msgstr "时间序列 - 堆积图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:349 +msgid "Edit time range" +msgstr "编辑时间范围" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 -msgid "Time Series Options" -msgstr "时间序列的列" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +msgid "Configure Advanced Time Range " +msgstr "配置进阶时间范围" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 -msgid "Time Shift" -msgstr "时间偏移" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 +msgid "START (INCLUSIVE)" +msgstr "开始 (包含)" -#: superset/viz.py:878 -msgid "Time Table View" -msgstr "时间表视图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 +msgid "Start date included in time range" +msgstr "开始日期包含在时间范围内" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 -#: superset-frontend/src/explore/constants.ts:133 -#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 -msgid "Time column" -msgstr "时间列" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 +msgid "END (EXCLUSIVE)" +msgstr "结束" -#: superset/models/helpers.py:1659 -#, python-format -msgid "Time column \"%(col)s\" does not exist in dataset" -msgstr "时间列 \"%(col)s\" 在数据集中不存在" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 +msgid "End date excluded from time range" +msgstr "从时间范围中排除的结束日期" -#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 -msgid "Time column filter plugin" -msgstr "选择过滤器" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 +msgid "Configure Time Range: Previous..." +msgstr "配置时间范围:前一(Previous).." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 -msgid "Time column to apply dependent temporal filter to" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:43 +msgid "Configure Time Range: Last..." +msgstr "配置时间范围:上一(Last).." -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 -msgid "Time column to apply time range to" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 +msgid "Configure custom time range" +msgstr "配置自定义时间范围" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 -#: superset-frontend/src/explore/controlPanels/sections.tsx:174 -msgid "Time comparison" -msgstr "时间比较" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "相对量" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 -msgid "" -"Time delta in natural language\n" -" (example: 24 hours, 7 days, 56 weeks, 365 days)" -msgstr "" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 +msgid "Relative period" +msgstr "宽限期" -#: superset/charts/commands/exceptions.py:66 -#, python-format -msgid "" -"Time delta is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." -msgstr "时间是模糊的。" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 +msgid "Anchor to" +msgstr "锚定到" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/filters/components/Time/index.ts:27 -msgid "Time filter" -msgstr "日期过滤器" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 +msgid "NOW" +msgstr "现在" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 -msgid "Time format" -msgstr "时间格式" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "日期/时间" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 -#: superset-frontend/src/explore/constants.ts:134 -#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 -msgid "Time grain" -msgstr "时间粒度(grain)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 +msgid "Return to specific datetime." +msgstr "返回指定的日期时间。" -#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 -msgid "Time grain filter plugin" -msgstr "范围过滤器" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 +msgid "Syntax" +msgstr "语法" -#: superset/utils/pandas_postprocessing/prophet.py:114 -msgid "Time grain missing" -msgstr "时间粒度缺失" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 +msgid "Example" +msgstr "例子" -#: superset-frontend/src/explore/constants.ts:135 -msgid "Time granularity" -msgstr "时间粒度(granularity)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 +msgid "Moves the given set of dates by a specified interval." +msgstr "将给定的日期集以指定的间隔进行移动" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 -msgid "Time in seconds" -msgstr "时间(秒)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." +msgstr "将指定的日期截取为指定的日期单位精度。" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 -#, fuzzy -msgid "Time lag" -msgstr "时间范围" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 +msgid "Get the last date by the date unit." +msgstr "按日期单位获取最后的日期。" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 -#: superset-frontend/src/explore/constants.ts:132 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 -msgid "Time range" -msgstr "时间范围" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 +msgid "Get the specify date for the holiday" +msgstr "获取指定节假日的日期" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 -#, fuzzy -msgid "Time ratio" -msgstr "时间粒度(grain)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 +msgid "Previous" +msgstr "之前" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 -#: superset-frontend/src/explore/controlPanels/sections.tsx:66 -msgid "Time related form attributes" -msgstr "时间相关的表单属性" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 +msgid "Custom" +msgstr "自定义" -#: superset-frontend/src/modules/AnnotationTypes.js:46 -#, fuzzy -msgid "Time series" -msgstr "时间序列" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "上一(昨)天" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 -msgid "Time series columns" -msgstr "时间序列的列" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "上一周" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 -#: superset-frontend/src/explore/controlPanels/sections.tsx:182 -msgid "Time shift" -msgstr "时间偏移" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "上一月" -#: superset/charts/commands/exceptions.py:38 -#, python-format -msgid "" -"Time string is ambiguous. Please specify [%(human_readable)s ago] or " -"[%(human_readable)s later]." -msgstr "时间字符串是模糊的。" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 +msgid "last quarter" +msgstr "上一季度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 -msgid "Time-series Area Chart" -msgstr "时间序列条形图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "上一年" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 -msgid "" -"Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top " -"of each other. An area chart in Superset can be stream, stack, or expand." -msgstr "时间序列面积图与折线图相似,因为它们表示具有相同比例的变量,但面积图将度量叠加在一起。超级集中的面积图可以是流式、堆栈式或展开式" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 +msgid "previous calendar week" +msgstr "前一周" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 -msgid "Time-series Bar Chart" -msgstr "时间序列-条形图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 +msgid "previous calendar month" +msgstr "前一月" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 -#, fuzzy -msgid "Time-series Bar Chart (legacy)" -msgstr "时间序列-条形图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 +msgid "previous calendar year" +msgstr "前一年" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 -msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time" -" as a series of bars." -msgstr "时间序列条形图用于显示指标随时间的变化" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "%s 秒" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 -msgid "Time-series Chart" -msgstr "时间序列图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format +msgid "Minutes %s" +msgstr "%s分钟" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 -msgid "Time-series Line Chart" -msgstr "时间序列折线图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format +msgid "Hours %s" +msgstr "%s小时" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 -msgid "Time-series Percent Change" -msgstr "时间序列-百分比变化" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "%s天" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 -msgid "Time-series Period Pivot" -msgstr "时间序列-周期轴" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "周 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 -msgid "Time-series Scatter Plot" -msgstr "时间序列散点图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format +msgid "Months %s" +msgstr "%s月" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units," -" and the points are connected in order. It shows a statistical " -"relationship between two variables." -msgstr "时间序列散点图在水平轴上以线性单位表示时间,点按顺序连接。它显示了两个变量之间的统计关系" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format +msgid "Quarters %s" +msgstr " %s 季度" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 -msgid "Time-series Smooth Line" -msgstr "时间序列光滑曲线图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" +msgstr "年 %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 -#, fuzzy -msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more " -"professional." -msgstr "时间序列平滑线是折线图的变体。没有角度和硬边,平滑线看起来更聪明、更专业。" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 +msgid "Specific Date/Time" +msgstr "具体日期/时间" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 -msgid "Time-series Stepped Line" -msgstr "时间序列阶梯图" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 +msgid "Relative Date/Time" +msgstr "相对日期/时间" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 -msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of" -" line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that" -" occur at irregular intervals." -msgstr "“时间序列步进折线图(也称为步进图)是折线图的一种变体,但线条在数据点之间形成一系列步进。当您希望显示不规则间隔发生的变化时,步进图可能很有用。”" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 +msgid "Now" +msgstr "现在" -#: superset-frontend/src/visualizations/TimeTable/index.ts:27 -msgid "Time-series Table" -msgstr "时间序列-表格" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 +msgid "Midnight" +msgstr "凌晨(当天)" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 -msgid "" -"Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays" -" information as a series of data points connected by straight line " -"segments. It is a basic type of chart common in many fields." -msgstr "时间序列折线图用于可视化在规则时间间隔内进行的重复测量。折线图是一种图表,它将信息显示为一系列由直线段连接的数据点。它是许多领域中常见的一种基本类型的图表。" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:286 +msgid "Saved expressions" +msgstr "保存表达式" -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 -msgid "Timeout error" -msgstr "超时错误" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:302 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 +msgid "Saved" +msgstr "保存" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 -msgid "Timestamp format" -msgstr "时间戳格式" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:343 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format +msgid "%s column(s)" +msgstr "%s 列" -#: superset-frontend/src/components/ReportModal/index.tsx:325 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 -msgid "Timezone" -msgstr "时区" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:382 +#, fuzzy +msgid "No temporal columns found" +msgstr "找不到兼容的列" -#: superset/connectors/sqla/views.py:334 -msgid "Timezone offset (in hours) for this datasource" -msgstr "数据源的时差(单位:小时)" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#, fuzzy +msgid "No saved expressions found" +msgstr "保存表达式" -#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 -msgid "Timezone selector" -msgstr "时区选择" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 -msgid "Tiny" -msgstr "微小" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:337 +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" +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: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 -msgid "Title" -msgstr "标题" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:360 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:395 +msgid " to mark a column as a time column" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 -msgid "Title Column" -msgstr "标题栏" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#, fuzzy +msgid " to add calculated columns" +msgstr "计算列" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 -msgid "Title is required" -msgstr "标题是必填项" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:378 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 +msgid "Simple" +msgstr "简单配置" -#: superset/dashboards/filters.py:39 -msgid "Title or Slug" -msgstr "标题或者Slug" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +msgid "Mark a column as temporal in \"Edit datasource\" modal" +msgstr "" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 -msgid "To filter on a metric, use Custom SQL tab." -msgstr "若要在计量值上筛选,请使用自定义SQL选项卡。" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:422 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 +msgid "Custom SQL" +msgstr "自定义SQL" -#: superset/views/dashboard/mixin.py:57 -msgid "To get a readable URL for your dashboard" -msgstr "为看板生成一个可读的 URL" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 +msgid "My column" +msgstr "我的列" -#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 -msgid "Tools" -msgstr "工具" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 +#, fuzzy +msgid "This filter might be incompatible with current dataset" +msgstr "此图表可能与过滤器不兼容(数据集不匹配)" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 -msgid "Tooltip" -msgstr "详细提示" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:108 +#, fuzzy +msgid "This column might be incompatible with current dataset" +msgstr "此图表可能与过滤器不兼容(数据集不匹配)" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 -msgid "Tooltip sort by metric" -msgstr "排序指标" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:179 +#, fuzzy +msgid "Drop a column here or click" +msgstr "将列拖放到此处或单击" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 -msgid "Tooltip time format" -msgstr "时间格式" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 +msgid "Click to edit label" +msgstr "单击以编辑标签" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 -msgid "Top" -msgstr "顶部" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +msgid "Drop columns/metrics here or click" +msgstr "将列/指标拖放到此处或单击" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:255 #, fuzzy -msgid "Top left" -msgstr "警报" +msgid "This metric might be incompatible with current dataset" +msgstr "此图表可能与过滤器不兼容(数据集不匹配)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:329 #, fuzzy -msgid "Top right" -msgstr "高度" +msgid "Drop a column/metric here or click" +msgstr "将列/指标放在此处或单击" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 -msgid "Top to Bottom" -msgstr "点击回顶部" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +msgid "" +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " +msgstr "此过滤条件是从看板上下文继承的。保存图表时不会保存。" -#: superset/viz.py:1047 -#, fuzzy -msgid "Total" -msgstr "显示总计" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:318 +#, python-format +msgid "%s option(s)" +msgstr "%s 个选项" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:331 +msgid "Select subject" +msgstr "选择主题" -#: superset/charts/post_processing.py:73 -#, python-format -msgid "Total (%(aggfunc)s)" -msgstr "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 +msgid "No such column found. To filter on a metric, try the Custom SQL tab." +msgstr "没有发现这样的列。若要在度量值上筛选,请尝试自定义SQL选项卡。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:344 +msgid "To filter on a metric, use Custom SQL tab." +msgstr "若要在计量值上筛选,请使用自定义SQL选项卡。" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:353 #, python-format -msgid "Total (%(aggregatorName)s)" -msgstr "" +msgid "%s operator(s)" +msgstr "%s 运算符" -#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 -#, fuzzy -msgid "Total value" -msgstr "左值" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:359 +msgid "Select operator" +msgstr "选择运营商" -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 -#, fuzzy, python-format -msgid "Total: %s" -msgstr "显示总计" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:368 +msgid "Comparator option" +msgstr "比较器选项" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 -msgid "Totals" -msgstr "显示总计" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:375 +msgid "Type a value here" +msgstr "请输入值" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 -msgid "Track job" -msgstr "跟踪任务" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:526 +msgid "Filter value (case sensitive)" +msgstr "过滤值(区分大小写)" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 -msgid "Transformable" -msgstr "转换" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#, fuzzy +msgid "Failed to retrieve advanced type" +msgstr "检索结果失败" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 -msgid "Transparent" -msgstr "透明" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 +msgid "choose WHERE or HAVING..." +msgstr "选择WHERE或HAVING子句..." -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 -msgid "Transpose pivot" -msgstr "转置透视图" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 +msgid "Filters by columns" +msgstr "按列过滤" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 -msgid "Tree Chart" -msgstr "树状图" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 +msgid "Filters by metrics" +msgstr "按指标过滤" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 -msgid "Tree layout" -msgstr "布局" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +#, fuzzy +msgid "metric" +msgstr "指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 -msgid "Tree orientation" -msgstr "方向" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 +msgid "Fixed" +msgstr "固定值" -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:925 -msgid "Treemap" -msgstr "树状地图" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 +msgid "Based on a metric" +msgstr "基于指标" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 -#: superset-frontend/src/visualizations/TimeTable/index.ts:39 -msgid "Trend" -msgstr "趋势" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 +msgid "My metric" +msgstr "我的指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 -msgid "Triangle" -msgstr "三角形" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 +msgid "Add metric" +msgstr "添加指标" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 -msgid "Trigger Alert If..." -msgstr "如果 ... 则触发警报" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +msgid "Select aggregate options" +msgstr "选择总选项" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 -#, fuzzy -msgid "Truncate Axis" -msgstr "截断Y轴" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format +msgid "%s aggregates(s)" +msgstr "%s 聚合" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 -#, fuzzy -msgid "Truncate Cells" -msgstr "截断Y轴" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 +msgid "Select saved metrics" +msgstr "选择保存指标" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 -#, fuzzy -msgid "Truncate Metric" -msgstr "排序指标" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format +msgid "%s saved metric(s)" +msgstr "%s 列与计量指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 -msgid "Truncate Y Axis" -msgstr "截断Y轴" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 +msgid "Saved metric" +msgstr "保存的指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 -msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." -msgstr "截断Y轴。可以通过指定最小或最大界限来重写。" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 +#, fuzzy +msgid "No saved metrics found" +msgstr "%s 列与计量指标" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 -msgid "Truncate long cells to the \"min width\" set above" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "Truncates the specified date to the accuracy specified by the date unit." -msgstr "将指定的日期截取为指定的日期单位精度。" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" +msgstr "添加指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 -msgid "Try applying different filters or ensuring your datasource has data" -msgstr "尝试应用不同的筛选器或确保您的数据源包含数据。“" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 +msgid "Simple ad-hoc metrics are not enabled for this dataset" +msgstr "此数据集没有启用简单的特别度量" -#: superset-frontend/src/components/ListView/ListView.tsx:412 -msgid "Try different criteria to display results." -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 +msgid "column" +msgstr "列" -#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 -msgid "Try selecting a different schema" -msgstr "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 +msgid "aggregate" +msgstr "合计" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 -msgid "Tuesday" -msgstr "星期二" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 +msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" +msgstr "此数据集无法启用自定义SQL即席查询、" -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 -#, fuzzy -msgid "Tukey" -msgstr "查询" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format +msgid "Error while fetching data: %s" +msgstr "获取数据时出错:%s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:563 -#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 -msgid "Type" -msgstr "类型" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "时间序列的列" -#: superset-frontend/src/components/DeleteModal/index.tsx:92 -#: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 -#, python-format -msgid "Type \"%s\" to confirm" -msgstr "键入 \"%s\" 来确认" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 +#, fuzzy +msgid "Actual value" +msgstr "空值" -#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 -msgid "Type a value" -msgstr "请输入值" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 +#, fuzzy +msgid "Sparkline" +msgstr "标记线" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 -msgid "Type a value here" -msgstr "请输入值" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 +msgid "Period average" +msgstr "" -#: superset/reports/commands/exceptions.py:75 -msgid "Type is required" -msgstr "类型是必需的" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +#, fuzzy +msgid "The column header label" +msgstr "将列拖放到此处" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 -msgid "Type of Google Sheets allowed" -msgstr "接受Google Sheets的类型" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 +#, fuzzy +msgid "Column header tooltip" +msgstr "详细提示" #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:275 msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 -#, python-format -msgid "Type or Select [%s]" -msgstr "键入或选择 [%s]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 +msgid "Width" +msgstr "宽度" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 -msgid "UI Configuration" -msgstr "UI 配置" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 +msgid "Width of the sparkline" +msgstr "" -#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 -msgid "URL" -msgstr "URL 地址" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 +#, fuzzy +msgid "Height of the sparkline" +msgstr "标记线的标签" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 -msgid "URL Parameters" -msgstr "URL参数" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 +#, fuzzy +msgid "Time lag" +msgstr "时间范围" -#: superset-frontend/src/explore/controlPanels/sections.tsx:50 -msgid "URL parameters" -msgstr "URL 参数" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 +msgid "" +"Number of periods to compare against. You can use negative numbers to " +"compare from the beginning of the time range." +msgstr "" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:693 -msgid "URL slug" -msgstr "使用 Slug" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:258 +#, fuzzy +msgid "Time Lag" +msgstr "时间范围" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 -msgid "Unable to add a new tab to the backend. Please contact your administrator." -msgstr "无法将新选项卡添加到后端。请与管理员联系。" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:263 +#, fuzzy +msgid "Time ratio" +msgstr "时间粒度(grain)" -#: superset/db_engine_specs/presto.py:704 -#, python-format -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "无法连接到名为\\%(catalog_name)s\\的目录。" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:264 +#, fuzzy +msgid "Number of periods to ratio against" +msgstr "根据粒度、要比较的时间阶段" -#: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:147 -#: superset/db_engine_specs/starrocks.py:127 -#, python-format -msgid "Unable to connect to database \"%(database)s\"." -msgstr "不能连接到数据库\"%(database)s\"" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:269 +#, fuzzy +msgid "Time Ratio" +msgstr "时间粒度(grain)" -#: superset/db_engine_specs/bigquery.py:178 -msgid "" -"Unable to connect. Verify that the following roles are set on the service" -" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set " -"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:286 +msgid "Show Y-axis" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 -msgid "Unable to create chart without a query id." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:287 +msgid "" +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" -#: superset/key_value/exceptions.py:66 -msgid "Unable to decode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:298 +#, fuzzy +msgid "Y-axis bounds" +msgstr "Y 轴界限" -#: superset/key_value/exceptions.py:62 -msgid "Unable to encode value" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:299 +#, fuzzy +msgid "Manually set min/max values for the y-axis." +msgstr "使用Y轴的对数刻度" -#: superset/utils/date_parser.py:393 -#, python-format -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "找不到这样的假期:[{}]" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:308 +#, fuzzy +msgid "Color bounds" +msgstr "Y界限" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:309 msgid "" -"Unable to load columns for the selected table. Please select a different " -"table." +"Number bounds used for color encoding from red to blue.\n" +" Reverse the numbers for blue to red. To get pure red or " +"blue,\n" +" you can enter either only min or max." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 -msgid "" -"Unable to migrate query editor state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "无法将查询编辑器状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:320 +#, fuzzy +msgid "Optional d3 number format string" +msgstr "条件格式设置" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 -msgid "" -"Unable to migrate query state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." -msgstr "无法将查询状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:325 +#, fuzzy +msgid "Number format string" +msgstr "数字格式化" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 -msgid "" -"Unable to migrate table schema state to backend. Superset will retry " -"later. Please contact your administrator if this problem persists." -msgstr "无法将表结构状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:331 +#, fuzzy +msgid "Optional d3 date format string" +msgstr "条件格式设置" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 -msgid "Unable to retrieve dashboard colors" -msgstr "" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:336 +#, fuzzy +msgid "Date format string" +msgstr "自动匹配格式化" -#: superset/views/database/views.py:278 -#, python-format -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" -" database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"无法将CSV文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" " -"内。错误消息:%(error_msg)s" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:363 +#, fuzzy +msgid "Column Configuration" +msgstr "检查配置" -#: superset/views/database/views.py:556 -#, python-format -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table " -"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " -"%(error_msg)s" -msgstr "" -"无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" -" 内。错误消息:%(error_msg)s" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 +msgid "Select Viz Type" +msgstr "选择一个可视化类型" -#: superset/views/database/views.py:415 +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 #, python-format -msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" +msgid "Currently rendered: %s" msgstr "" -"无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" -" 内。错误消息:%(error_msg)s" - -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 -msgid "Undefined" -msgstr "未命名" -#: superset/utils/pandas_postprocessing/rolling.py:67 -msgid "Undefined window for rolling operation" -msgstr "未定义滚动操作窗口" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:670 +msgid "Recommended tags" +msgstr "推荐标签" -#: superset-frontend/src/dashboard/components/Header/index.jsx:551 -#, fuzzy -msgid "Undo the action" -msgstr "运行选定的查询" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:773 +msgid "Search all charts" +msgstr "搜索所有图表" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 -msgid "Undo?" -msgstr "撤消?" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:840 +msgid "No description available." +msgstr "没有可用的描述" -#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 -#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 -msgid "Unexpected error" -msgstr "意外错误。" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:847 +#: superset-frontend/src/pages/Home/index.tsx:208 +msgid "Examples" +msgstr "示例" -#: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 -msgid "Unexpected error occurred, please check your logs for details" -msgstr "发生意外错误,请检查日志以了解详细信息" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 +msgid "This visualization type is not supported." +msgstr "选择可视化类型" -#: superset-frontend/src/utils/getClientErrorObject.ts:75 -msgid "Unexpected error: " -msgstr "意外错误。" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 +#, fuzzy +msgid "View all charts" +msgstr "搜索所有图表" -#: superset/views/api.py:108 -#, fuzzy, python-format -msgid "Unexpected time range: %s" -msgstr "意外错误。" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 +msgid "Select a visualization type" +msgstr "选择一个可视化类型" -#: superset-frontend/src/features/home/ActivityTable.tsx:86 -msgid "Unknown" -msgstr "未知" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +msgid "No results found" +msgstr "未找到结果" -#: superset/db_engine_specs/mysql.py:155 -#, python-format -msgid "Unknown MySQL server host \"%(hostname)s\"." -msgstr "未知MySQL服务器主机 \"%(hostname)s\"." +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:140 +msgid "Superset Chart" +msgstr "选择图表" -#: superset/db_engine_specs/presto.py:1342 -msgid "Unknown Presto Error" -msgstr "未知 Presto 错误" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:257 +msgid "New chart" +msgstr "新增图表" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 -msgid "Unknown Status" -msgstr "未知状态" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:309 +msgid "Edit chart properties" +msgstr "编辑图表属性" -#: superset/models/helpers.py:1582 -#, python-format -msgid "Unknown column used in orderby: %(col)s" -msgstr "订单中使用的未知列: %(col)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:313 +#: superset-frontend/src/pages/ChartList/index.tsx:403 +#, fuzzy +msgid "Dashboards added to" +msgstr "看板" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 -msgid "Unknown error" -msgstr "未知错误" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:331 +msgid "Export to original .CSV" +msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 -msgid "Unknown input format" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:178 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:354 #, fuzzy -msgid "Unknown type" -msgstr "未知错误" +msgid "Export to .JSON" +msgstr "导出到YAML格式" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 -msgid "Unknown value" -msgstr "未知错误" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:380 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:382 +msgid "Embed code" +msgstr "" -#: superset/jinja_context.py:353 -#, python-format -msgid "Unsafe return type for function %(func)s: %(value_type)s" -msgstr "函数返回不安全的类型 %(func)s: %(value_type)s" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:438 +msgid "Run in SQL Lab" +msgstr "在 SQL 工具箱中执行" -#: superset/jinja_context.py:380 -#, python-format -msgid "Unsafe template value for key %(key)s: %(value_type)s" -msgstr "键的模板值不安全 %(key)s: %(value_type)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 +msgid "Code" +msgstr "代码" -#: superset/utils/core.py:1104 -#, python-format -msgid "Unsupported clause type: %(clause)s" -msgstr "不支持的条款类型: %(clause)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 +msgid "Markup type" +msgstr "Markup 类型" -#: superset/common/query_object.py:440 -#, python-format -msgid "Unsupported post processing operation: %(operation)s" -msgstr "不支持的处理操作:%(operation)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:37 +msgid "Pick your favorite markup language" +msgstr "选择您最爱的 Markup 语言" -#: superset/jinja_context.py:364 -#, python-format -msgid "Unsupported return value for method %(name)s" -msgstr "方法的返回值不受支持 %(name)s" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 +msgid "Put your code here" +msgstr "把您的代码放在这里" -#: superset/jinja_context.py:391 -#, python-format -msgid "Unsupported template value for key %(key)s" -msgstr "键的模板值不受支持 %(key)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:53 +msgid "URL parameters" +msgstr "URL 参数" -#: superset/utils/pandas_postprocessing/prophet.py:117 -#, python-format -msgid "Unsupported time grain: %(time_grain)s" -msgstr "不支持的时间粒度:%(time_grain)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:55 +msgid "Extra parameters for use in jinja templated queries" +msgstr "用于jinja模板化查询的额外参数" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 -#, fuzzy -msgid "Untitled Dataset" -msgstr "编辑数据集" +#: superset-frontend/src/explore/controlPanels/sections.tsx:75 +msgid "Annotations and layers" +msgstr "注释与注释层" -#: superset/views/sql_lab/views.py:148 -#, fuzzy -msgid "Untitled Query" -msgstr "未命名的查询" +#: superset-frontend/src/explore/controlPanels/sections.tsx:86 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:290 +msgid "Annotation layers" +msgstr "注解层" + +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:75 +msgid "My beautiful colors" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:98 +msgid "< (Smaller than)" +msgstr "< (小于)" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:102 +msgid "> (Larger than)" +msgstr "> (大于)" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:106 +msgid "<= (Smaller or equal)" +msgstr "<= (小于等于)" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:110 +msgid ">= (Larger or equal)" +msgstr ">= (大于等于)" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:114 +msgid "== (Is equal)" +msgstr "== (等于)" -#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 -msgid "Untitled query" -msgstr "未命名的查询" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:118 +msgid "!= (Is not equal)" +msgstr "!= (不等于)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 -msgid "Update" -msgstr "更新" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:122 +msgid "Not null" +msgstr "非空" -#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 -#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 -#, fuzzy -msgid "Update chart" -msgstr "图表保存" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:137 +msgid "60 days" +msgstr "60天" -#: superset-frontend/src/components/Chart/chartReducer.ts:84 -msgid "Updating chart was stopped" -msgstr "更新图表已停止" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:141 +msgid "90 days" +msgstr "90天" -#: superset/templates/superset/import_dashboards.html:63 -msgid "Upload" -msgstr "上传" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +msgid "Add notification method" +msgstr "添加注释层" -#: superset-frontend/src/pages/DatabaseList/index.tsx:213 -msgid "Upload CSV" -msgstr "上传CSV" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +msgid "Add delivery method" +msgstr "添加通知方法" -#: superset-frontend/src/features/home/RightMenu.tsx:189 -msgid "Upload CSV to database" -msgstr "上传CSV文件" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:229 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:271 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:220 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:238 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:340 +msgid "Add" +msgstr "新增" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 -msgid "Upload Credentials" -msgstr "上传验证文件" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +msgid "Edit Report" +msgstr "编辑报表" -#: superset/databases/filters.py:66 -msgid "Upload Enabled" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 +msgid "Edit Alert" +msgstr "编辑警报" -#: superset-frontend/src/pages/DatabaseList/index.tsx:227 -msgid "Upload Excel file" -msgstr "上传Excel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Add Report" +msgstr "添加报告" -#: superset-frontend/src/features/home/RightMenu.tsx:203 -msgid "Upload Excel file to database" -msgstr "上传Excel" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 +msgid "Add Alert" +msgstr "添加告警" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 -msgid "Upload JSON file" -msgstr "上传JSON文件" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 +msgid "Report name" +msgstr "报告名称" -#: superset-frontend/src/pages/DatabaseList/index.tsx:220 -msgid "Upload columnar file" -msgstr "上传列级文件" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 +msgid "Alert name" +msgstr "告警名称" -#: superset-frontend/src/features/home/RightMenu.tsx:196 -msgid "Upload columnar file to database" -msgstr "上传列级文件" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 +#: superset-frontend/src/pages/AlertReportList/index.tsx:348 +msgid "Active" +msgstr "激活" -#: superset-frontend/src/pages/DatabaseList/index.tsx:210 -msgid "Upload file to database" -msgstr "上传文件到数据库" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "Alert condition" +msgstr "告警条件" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 -#, fuzzy -msgid "Usage" -msgstr "巨大" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 +#: superset-frontend/src/features/home/SavedQueries.tsx:258 +msgid "SQL Query" +msgstr "SQL查询" -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:799 -#, python-format -msgid "Use \"%(menuName)s\" menu instead." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +msgid "The result of this query should be a numeric-esque value" msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 -#, fuzzy, python-format -msgid "Use %s to open in a new tab." -msgstr "在新标签中查询" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 +msgid "Trigger Alert If..." +msgstr "如果 ... 则触发警报" -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 -#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 -#: superset-frontend/src/explore/fixtures.tsx:43 -msgid "Use Area Proportions" -msgstr "使用面积比例" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 +msgid "Condition" +msgstr "条件" -#: superset/views/database/forms.py:472 -msgid "Use Columns" -msgstr "使用列" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +msgid "Report schedule" +msgstr "报告时间表" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 -msgid "Use a log scale" -msgstr "使用Y轴的对数刻度" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:411 +msgid "Alert condition schedule" +msgstr "告警条件计划" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 -msgid "Use a log scale for the X-axis" -msgstr "使用Y轴的对数刻度" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:412 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:355 +msgid "Timezone" +msgstr "时区" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 -msgid "Use a log scale for the Y-axis" -msgstr "使用Y轴的对数刻度" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:413 +msgid "Schedule settings" +msgstr "计划设置" -#: superset/db_engine_specs/base.py:1889 -#: superset/db_engine_specs/clickhouse.py:216 -#: superset/db_engine_specs/databricks.py:58 -msgid "Use an encrypted connection to the database" -msgstr "使用到数据库的加密连接" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:414 +msgid "Log retention" +msgstr "日志保留" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 -#, python-format -msgid "" -"Use another existing chart as a source for annotations and overlays.\n" -" Your chart must be one of these visualization types: [%s]" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:415 +msgid "Working timeout" +msgstr "执行超时" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 -msgid "Use date formatting even when metric value is not a timestamp" -msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:416 +msgid "Time in seconds" +msgstr "时间(秒)" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 -msgid "Use legacy datasource editor" -msgstr "使用旧数据源编辑器" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:417 +#, fuzzy +msgid "seconds" +msgstr "30秒钟" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 -msgid "Use metrics as a top level group for columns or for rows" -msgstr "将指标作为列或行的顶级组使用" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:418 +msgid "Grace period" +msgstr "宽限期" -#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 -msgid "Use only a single value." -msgstr "只使用一个值" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:419 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:246 +msgid "Message content" +msgstr "消息内容" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 -msgid "Use the Advanced Analytics options below" -msgstr "使用下面的高级分析选项" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:422 +msgid "Send as PNG" +msgstr "发送PNG" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 -msgid "" -"Use the JSON file you automatically downloaded when creating your service" -" account." -msgstr "使用您在创建服务帐户时自动下载的JSON文件" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:423 +msgid "Send as CSV" +msgstr "发送为CSV" -#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:424 +msgid "Send as text" +msgstr "发送文本" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:425 #, fuzzy -msgid "Use the edit button to change this field" -msgstr "使用编辑按钮更改此字段" +msgid "Ignore cache when generating report" +msgstr "生成屏幕截图时报表计划执行失败。" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 -msgid "Use this section if you want a query that aggregates" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:426 +msgid "Screenshot width" msgstr "" -#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 -msgid "Use this section if you want to query atomic rows" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:427 +msgid "Input custom width in pixels" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 -#: superset-frontend/src/explore/controls.jsx:206 -msgid "Use this to define a static color for all circles" -msgstr "使用此定义所有圆圈的静态颜色" - -#: superset/views/dynamic_plugins.py:48 -msgid "" -"Used internally to identify the plugin. Should be set to the package name" -" from the pluginʼs package.json" -msgstr "在内部用于标识插件。应该在插件的 package.json 内被设置为包名。" - -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location. Not the most " -"visually stunning visualization, but highly informative and versatile." -msgstr "用于通过将多个统计信息分组在一起来汇总一组数据" - -#: superset-frontend/src/features/home/RightMenu.tsx:474 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 -#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 -#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 -#: superset/views/sql_lab/views.py:82 -msgid "User" -msgstr "用户" - -#: superset/views/access_requests.py:45 -msgid "User Roles" -msgstr "用户角色" - -#: superset/errors.py:118 -msgid "User doesn't have the proper permissions." -msgstr "您没有授权 " +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:428 +#: superset-frontend/src/pages/AlertReportList/index.tsx:304 +msgid "Notification method" +msgstr "通知方式" -#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 -#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 -#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 -#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 -#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 -msgid "User must select a value before applying the filter" -msgstr "用户必须给过滤器选择一个值" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:592 +#: superset-frontend/src/pages/AlertReportList/index.tsx:112 +msgid "report" +msgstr "报告" -#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 -msgid "User must select a value for this filter" -msgstr "用户必须给过滤器选择一个值" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:665 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:681 +#, fuzzy, python-format +msgid "%s updated" +msgstr "上次更新 %s" -#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 -msgid "User query" -msgstr "用户查询" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 +#, fuzzy +msgid "CRON Schedule" +msgstr "报告时间表" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1868 -#: superset/db_engine_specs/clickhouse.py:201 -msgid "Username" -msgstr "用户名" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 +msgid "CRON expression" +msgstr "CRON表达式" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 -msgid "" -"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" -" of data" -msgstr "" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "已发送报告" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 -msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The " -"position of the dial represents the progress and the terminal value in " -"the gauge represents the target value." -msgstr "使用一个度量来展示实现目标的度量的进展" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 +msgid "Alert triggered, notification sent" +msgstr "告警已触发,通知已发送" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 -msgid "" -"Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand " -"the stages a value took. Useful for multi-stage, multi-group visualizing " -"funnels and pipelines." -msgstr "使用圆圈来可视化系统不同阶段的数据流。" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "报告发送" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 -msgid "Value" -msgstr "值" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 +msgid "Alert running" +msgstr "告警运行中" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 -msgid "Value Domain" -msgstr "值域" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "报告失败" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 -msgid "Value Format" -msgstr "数值格式" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 +msgid "Alert failed" +msgstr "告警失败" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 -msgid "Value bounds" -msgstr "值边界" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 +msgid "Nothing triggered" +msgstr "无触发" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 -msgid "Value format" -msgstr "数值格式" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 +msgid "Alert Triggered, In Grace Period" +msgstr "告警已触发,在宽限期内" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 -msgid "Value is required" -msgstr "需要名称" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 +msgid "Delivery method" +msgstr "发送方式" -#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 -#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 -#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 -msgid "Value must be greater than 0" -msgstr "`行偏移量` 必须大于或等于0" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 +msgid "Select Delivery Method" +msgstr "添加通知方法" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 -msgid "Values are dependent on other filters" -msgstr "" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +msgid "Recipients are separated by \",\" or \";\"" +msgstr "收件人之间用 \",\" 或者 \";\" 隔开" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:156 #, fuzzy -msgid "Values dependent on" -msgstr "指标降序" +msgid "Queries" +msgstr "序列" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 -msgid "" -"Values selected in other filters will affect the filter options to only " -"show relevant values" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:162 +msgid "No entities have this tag currently assigned" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 -msgid "Vehicle Types" -msgstr "类型" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:164 +msgid "Add tag to entities" +msgstr "" -#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 -msgid "Verbose Name" -msgstr "全称" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 +msgid "annotation_layer" +msgstr "注释层" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 -#: superset-frontend/src/features/home/RightMenu.tsx:501 -msgid "Version" -msgstr "版本" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +#, fuzzy +msgid "Annotation template updated" +msgstr "注释已更新。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 -msgid "Version number" -msgstr "版本" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +#, fuzzy +msgid "Annotation template created" +msgstr "注释无法创建。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 -msgid "Vertical" -msgstr "垂直" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:240 +msgid "Edit annotation layer properties" +msgstr "编辑注释图层属性" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 -#, fuzzy -msgid "Vertical (Left)" -msgstr "垂直" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:250 +msgid "Annotation layer name" +msgstr "注释层名称" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 -msgid "Video game consoles" -msgstr "控制台" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:265 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:330 +msgid "Description (this can be seen in the list)" +msgstr "说明(见列表)" -#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 -#: superset-frontend/src/pages/AlertReportList/index.tsx:385 -#, fuzzy -msgid "View" -msgstr "预览" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 +msgid "annotation" +msgstr "注释" -#: superset-frontend/src/features/home/ChartTable.tsx:200 -#: superset-frontend/src/features/home/DashboardTable.tsx:203 -#: superset-frontend/src/features/home/SavedQueries.tsx:270 -msgid "View All »" -msgstr "查看所有 »" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 +msgid "The annotation has been updated" +msgstr "注释已更新。" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 -#, fuzzy -msgid "View Dataset" -msgstr "编辑数据集" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 +msgid "The annotation has been saved" +msgstr "注释已保存。" -#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 -#, fuzzy -msgid "View all charts" -msgstr "搜索所有图表" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 +msgid "Edit annotation" +msgstr "编辑注释" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 -#, fuzzy -msgid "View as table" -msgstr "查看样例" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:281 +msgid "Add annotation" +msgstr "添加注释" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 -msgid "View in SQL Lab" -msgstr "在 SQL 工具箱中公开" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:302 +msgid "date" +msgstr "日期" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 -#, python-format -msgid "View keys & indexes (%s)" -msgstr "查看键和索引(%s)" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:323 +msgid "Additional information" +msgstr "附加信息" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 -#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 -msgid "View query" -msgstr "检查查询" +#: superset-frontend/src/features/charts/ChartCard.tsx:78 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:68 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:312 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:473 +#: superset-frontend/src/pages/ChartList/index.tsx:806 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:277 +#: superset-frontend/src/pages/DashboardList/index.tsx:391 +#: superset-frontend/src/pages/DashboardList/index.tsx:679 +#: superset-frontend/src/pages/DashboardList/index.tsx:734 +#: superset-frontend/src/pages/DatasetList/index.tsx:788 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:175 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:333 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:556 +#: superset-frontend/src/pages/Tags/index.tsx:197 +#: superset-frontend/src/pages/Tags/index.tsx:351 +msgid "Please confirm" +msgstr "请确认" -#: superset-frontend/src/features/home/ActivityTable.tsx:170 -msgid "Viewed" -msgstr "已查看" +#: superset-frontend/src/features/charts/ChartCard.tsx:81 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:71 +#: superset-frontend/src/pages/ChartList/index.tsx:476 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:717 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:178 +#: superset-frontend/src/pages/Tags/index.tsx:200 +msgid "Are you sure you want to delete" +msgstr "确定要删除吗" -#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#: superset-frontend/src/features/charts/ChartCard.tsx:156 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:133 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:104 #, python-format -msgid "Viewed %s" -msgstr "已查看 %s" +msgid "Modified %s" +msgstr "最后修改 %s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 -#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 -msgid "Viewport" -msgstr "视口" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 +msgid "css_template" +msgstr "css模板" -#: superset-frontend/src/pages/DatasetList/index.tsx:353 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 -#, fuzzy -msgid "Virtual" -msgstr "虚拟信息" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:231 +msgid "Edit CSS template properties" +msgstr "编辑CSS属性属性" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 -msgid "Virtual (SQL)" -msgstr "虚拟(SQL)" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:232 +msgid "Add CSS template" +msgstr "新增CSS模板" -#: superset-frontend/src/pages/DatasetList/index.tsx:292 -msgid "Virtual dataset" -msgstr "虚拟数据集" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:253 +msgid "css" +msgstr "css" -#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 -#: superset/models/helpers.py:1079 -msgid "Virtual dataset query cannot be empty" -msgstr "虚拟数据集查询必须是只读的" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "published" +msgstr "已发布" -#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 -msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "虚拟数据集查询不能由多个语句组成" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:122 +msgid "draft" +msgstr "草稿" -#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 -msgid "Virtual dataset query must be read-only" -msgstr "虚拟数据集查询必须是只读的" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 -msgid "Visual Tweaks" -msgstr "视觉调整" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 +msgid "Expose database in SQL Lab" +msgstr "在SQL工具箱中展示数据库" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 -#: superset/views/chart/mixin.py:87 -msgid "Visualization Type" -msgstr "可视化类型" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 +msgid "Allow this database to be queried in SQL Lab" +msgstr "允许在SQL工具箱中查询此数据库" -#: superset-frontend/src/pages/ChartList/index.tsx:378 -msgid "Visualization type" -msgstr "可视化类型" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 +msgid "Allow creation of new tables based on queries" +msgstr "允许基于查询创建新表" -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 -msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is" -" visualized using its own line of points and each metric is represented " -"as an edge in the chart." -msgstr "在多个组中可视化一组平行的度量。每个组都使用自己的点线进行可视化,每个度量在图表中表示为一条边。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 +msgid "Allow creation of new views based on queries" +msgstr "允许基于查询创建新视图" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 -msgid "" -"Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used " -"to emphasize the strength of the link between each pair of groups." -msgstr "可视化各组之间的相关指标。热图擅长显示两组之间的相关性或强度。颜色用于强调各组之间的联系强度。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 +msgid "CTAS & CVAS SCHEMA" +msgstr "CTAS和CVAS方案" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 -msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in " -"grid view." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "创建或者选择模式" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" -"Visualize how a metric changes over time using bars. Add a group by " -"column to visualize group level metrics and how they change over time." -msgstr "使用条形图可视化指标随时间的变化。按列添加分组以可视化分组级别的指标及其随时间变化的方式。" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." +msgstr "在SQL工具箱中点击CTAS or CVAS强制创建所有数据表或视图" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like " -"structure." -msgstr "使用熟悉的树状结构可视化多层次结构。" +"Allow manipulation of the database using non-SELECT statements such as " +"UPDATE, DELETE, CREATE, etc." +msgstr "允许使用非SELECT语句(如UPDATE、DELETE、CREATE等)操作数据库。" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 -#, fuzzy +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 +msgid "Enable query cost estimation" +msgstr "启用查询成本估算" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" -"Visualize two different series using the same x-axis. Note that both " -"series can be visualized with a different chart type (e.g. 1 using bars " -"and 1 using a line)." -msgstr "使用相同的x轴时间范围可视化两个不同的时间序列。请注意,每个时间序列可以以不同的方式可视化(例如1个使用条形图,1个使用线条)。" +"For Bigquery, Presto and Postgres, shows a button to compute cost before " +"running a query." +msgstr "对于Presto和Postgres,显示计算成本按钮(查询后)" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 +msgid "Allow this database to be explored" +msgstr "允许浏览此数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 -#, fuzzy -msgid "" -"Visualize two different time series using the same x-axis. Note that each" -" time series can be visualized differently (e.g. 1 using bars and 1 using" -" a line)." -msgstr "使用相同的x轴时间范围可视化两个不同的时间序列。请注意,每个时间序列可以以不同的方式可视化(例如1个使用条形图,1个使用线条)。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." +msgstr "启用后,用户可以在Explore中可视化SQL实验室结果。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 +msgid "Disable SQL Lab data preview queries" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" -"Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be " -"showcased using bubble color." -msgstr "在单个图表中跨三维数据(X轴、Y轴和气泡大小)可视化度量。同一组中的气泡可以“使用气泡颜色显示" +"Disable data preview when fetching table metadata in SQL Lab. Useful to " +"avoid browser performance issues when using databases with very wide " +"tables." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 -msgid "Visualizes connected points, which form a path, on a map." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:230 +msgid "Enable row expansion in schemas" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:233 msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox " -"rendered map. Polygons can be colored using a metric." +"For Trino, describe full schemas of nested ROW types, expanding them with" +" dotted paths" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 -msgid "" -"Visualizes how a metric has changed over a time using a color scale and a" -" calendar view. Gray values are used to indicate missing values and the " -"linear color scheme is used to encode the magnitude of each day's value." -msgstr "使用色标和日历视图可视化指标在一段时间内的变化情况。灰色值用于指示缺少的值,线性配色方案用于编码每天值的大小。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:245 +msgid "Performance" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 -#, fuzzy -msgid "" -"Visualizes how a single metric varies across a country's principal " -"subdivisions (states, provinces, etc) on a choropleth map. Each " -"subdivision's value is elevated when you hover over the corresponding " -"geographic boundary." -msgstr "在叶绿体地图上显示一个国家的主要分区(州、省等)之间单个指标的变化情况。当您悬停在相应的地理边界上时,每个分区的值都会升高" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +msgid "Adjust performance settings of this database." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 -msgid "" -"Visualizes many different time-series objects in a single chart. This " -"chart is being deprecated and we recommend using the Time-series Chart " -"instead." -msgstr "在一个图表中显示许多不同的时间序列对象。此图表已被弃用,建议改用时间序列图表" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:254 +msgid "Chart cache timeout" +msgstr "图表缓存超时" -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 -msgid "" -"Visualizes the flow of different group's values through different stages " -"of a system. New stages in the pipeline are visualized as nodes or " -"layers. The thickness of the bars or edges represent the metric being " -"visualized." -msgstr "可视化不同组的值在系统不同阶段的流动。管道中的新阶段被可视化为节点或层。条形或边缘的厚度表示正在可视化的度量。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:260 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:302 +msgid "Enter duration in seconds" +msgstr "输入间隔时间(秒)" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#, fuzzy msgid "" -"Visualizes the words in a column that appear the most often. Bigger font " -"corresponds to higher frequency." -msgstr "可视化列中出现频率最高的单词。字体越大,出现频率越高。" - -#: superset/viz.py:140 -msgid "Viz is missing a datasource" -msgstr "Viz 缺少一个数据源" +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." +msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为全局超时。" -#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:264 -msgid "Viz type" -msgstr "可视化类型" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:273 +msgid "Schema cache timeout" +msgstr "图表缓存超时" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 -msgid "WED" -msgstr "星期三" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:287 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为永不过期。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 -msgid "Want to add a new database?" -msgstr "添加一个新数据库?" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:294 +msgid "Table cache timeout" +msgstr "图表缓存超时" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 -msgid "Warning" -msgstr "警告!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +msgid "" +"Duration (in seconds) of the metadata caching timeout for tables of this " +"database. If left unset, the cache never expires. " +msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,缓存为永不过期。" -#: superset/connectors/sqla/views.py:257 -msgid "Warning Message" -msgstr "告警信息" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:321 +#: superset-frontend/src/pages/DatabaseList/index.tsx:341 +#: superset-frontend/src/pages/DatabaseList/index.tsx:509 +msgid "Asynchronous query execution" +msgstr "异步执行查询" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 -msgid "Warning!" -msgstr "警告!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 +msgid "Cancel query on window unload event" +msgstr "取消窗口上传事件的查询" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:343 msgid "" -"Warning! Changing the dataset may break the chart if the metadata does " -"not exist." -msgstr "警告!如果元数据不存在,更改数据集可能会破坏图表。" +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." +msgstr "当浏览器窗口关闭或导航到其他页面时,终止正在运行的查询。适用于Presto、Hive、MySQL、Postgres和Snowflake数据库" -#: superset/databases/commands/exceptions.py:157 -#: superset/databases/commands/exceptions.py:167 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:356 #, fuzzy -msgid "Was unable to check your query" -msgstr "为您的查询设置标签" +msgid "Add extra connection information." +msgstr "无效账户信息" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 -msgid "" -"We are unable to connect to your database. Click \"See more\" for " -"database-provided information that may help troubleshoot the issue." -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:362 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:367 +msgid "Secure extra" +msgstr "安全" -#: superset/db_engine_specs/bigquery.py:198 -#, python-format -msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "我们似乎无法解析行 %(location)s 所处的列 \"%(column)\" 。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:377 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." +msgstr "包含附加连接配置的JSON字符串。它用于为配置单元、Presto和BigQuery等系统提供连接信息,这些系统不符合SQLAlChemy通常使用的用户名:密码语法。" -#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 -#, python-format -msgid "We can't seem to resolve the column \"%(column_name)s\"" -msgstr "我们似乎无法解析列 \"%(column_name)\" 。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:392 +msgid "Enter CA_BUNDLE" +msgstr "进入CA_BUNDLE" -#: superset/db_engine_specs/postgres.py:152 -#: superset/db_engine_specs/presto.py:657 -#, python-format +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:397 msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line " -"%(location)s." -msgstr "我们似乎无法解析行 %(location)s 所处的列 \"%(column_name)s\" 。" - -#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 -#, python-format -msgid "We have the following keys: %s" -msgstr "" +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." +msgstr "用于验证HTTPS请求的可选 CA_BUNDLE 内容。仅在某些数据库引擎上可用。" -#: superset-frontend/src/reports/actions/reports.js:136 -msgid "We were unable to active or deactivate this report." -msgstr "“我们无法激活或禁用该报告。" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:412 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "模拟登录用户 (Presto, Trino, Drill & Hive)" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:417 msgid "" -"We were unable to carry over any controls when switching to this new " -"dataset." +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" +"如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。如果启用 Hive 和 " +"hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据 hive.server2.proxy.user " +"的属性伪装当前登录用户。" -#: superset/db_engine_specs/redshift.py:94 -#, python-format -msgid "" -"We were unable to connect to your database named \"%(database)s\". Please" -" verify your database name and try again." -msgstr "我们无法连接到名为 \"%(database)s\" 的数据库。请确认您的数据库名字并重试" - -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 -msgid "Web" -msgstr "网络" - -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 -msgid "Wednesday" -msgstr "星期三" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:437 +#, fuzzy +msgid "Allow file uploads to database" +msgstr "选择要上传到数据库的Excel文件。" -#: superset/db_engine_specs/base.py:108 -msgid "Week" -msgstr "周" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:445 +#, fuzzy +msgid "Schemas allowed for File upload" +msgstr "模式允许使用CSV上传" -#: superset/db_engine_specs/base.py:114 -msgid "Week ending Saturday" -msgstr "周一为一周结束" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:459 +#, fuzzy +msgid "A comma-separated list of schemas that files are allowed to upload to." +msgstr "允许以逗号分割的CSV文件上传" -#: superset/db_engine_specs/base.py:113 -msgid "Week starting Monday" -msgstr "周一为一周开始" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:497 +#, fuzzy +msgid "Additional settings." +msgstr "条件格式设置" -#: superset/db_engine_specs/base.py:112 -msgid "Week starting Sunday" -msgstr "周日为一周开始" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:507 +msgid "Metadata Parameters" +msgstr "元数据参数" -#: superset/db_engine_specs/base.py:115 -msgid "Week_ending Sunday" -msgstr "周日为一周结束" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:522 +msgid "" +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." +msgstr "metadata_params对象被解压缩到sqlalchemy.metadata调用中。" -#: superset-frontend/src/components/ReportModal/index.tsx:122 -#, fuzzy -msgid "Weekly Report" -msgstr "报告" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:529 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:533 +msgid "Engine Parameters" +msgstr "引擎参数" -#: superset-frontend/src/components/ReportModal/index.tsx:121 -#, python-format -msgid "Weekly Report for %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:548 +msgid "" +"The engine_params object gets unpacked into the sqlalchemy.create_engine " +"call." msgstr "" +"1. engine_params 对象在调用 sqlalchemy.create_engine 时被引用, metadata_params 在调用" +" sqlalchemy.MetaData 时被引用。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 -msgid "Weekly seasonality" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:556 +#: superset-frontend/src/features/home/RightMenu.tsx:497 +msgid "Version" +msgstr "版本" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 -#, python-format -msgid "Weeks %s" -msgstr "周 %s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:562 +msgid "Version number" +msgstr "版本" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:568 #, fuzzy -msgid "Weight" -msgstr "高度" - -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 -#, fuzzy, python-format -msgid "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s second." -msgid_plural "" -"We’re having trouble loading these results. Queries are set to timeout " -"after %s seconds." -msgstr[0] "加载结果时遇到问题。查询设置为 %s 秒后超时。" - -#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 -#, fuzzy, python-format msgid "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s second." -msgid_plural "" -"We’re having trouble loading this visualization. Queries are set to " -"timeout after %s seconds." -msgstr[0] "加载此可视化效果时遇到问题。查询设置为 %s 秒后超时。" +"Specify the database version. This is used with Presto for query cost " +"estimation, and Dremio for syntax changes, among others." +msgstr "指定数据库版本。这应该与Presto一起使用,以便启用查询成本估算。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 -msgid "What should be shown on the label?" -msgstr "标签上需要显示的内容" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format +msgid "STEP %(stepCurr)s OF %(stepLast)s" +msgstr "" -#: superset/views/database/forms.py:175 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 #, fuzzy -msgid "What should happen if the table already exists" -msgstr "过滤器已存在" +msgid "Enter Primary Credentials" +msgstr "上传验证文件" -#: superset-frontend/src/explore/controls.jsx:434 -msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis " -"Format is forced to `.1%`" -msgstr "当设置“周期比”时,y轴格式强制为“1%”。" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 +msgid "Need help? Learn how to connect your database" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 -msgid "When a secondary metric is provided, a linear color scale is used." -msgstr "当提供次计量指标时,会使用线性色阶。" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:884 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:906 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1213 +#, fuzzy +msgid "Database connected" +msgstr "选择将要连接的数据库" -#: superset/views/database/mixins.py:119 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" -"When allowing CREATE TABLE AS option in SQL Lab, this option forces the " -"table to be created in this schema" -msgstr "当在 SQL 编辑器中允许 CREATE TABLE AS 选项时,此选项可以此模式中强制创建表" +"Create a dataset to begin visualizing your data as a chart or go to\n" +" SQL Lab to query your data." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 -msgid "When checked, the map will zoom to your data after each query" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 -msgid "When enabled, users are able to visualize SQL Lab results in Explore." -msgstr "启用后,用户可以在Explore中可视化SQL实验室结果。" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 +msgid "Need help? Learn more about" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "When only a primary metric is provided, a categorical color scale is used." -msgstr "如果只提供了一个主计量指标,则使用分类色阶。" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format +msgid "connecting to %(dbModelName)s." +msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 -msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use " -"this statement as a subquery while grouping and filtering on the " -"generated parent queries." -msgstr "指定SQL时,数据源会充当视图。在对生成的父查询进行分组和筛选时,系统将使用此语句作为子查询。" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 +msgid "Select a database to connect" +msgstr "选择将要连接的数据库" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 -msgid "" -"When using \"Autocomplete filters\", this can be used to improve " -"performance of the query fetching the values. Use this option to apply a " -"predicate (WHERE clause) to the query selecting the distinct values from " -"the table. Typically the intent would be to limit the scan by applying a " -"relative time filter on a partitioned or indexed time-related field." +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 +msgid "SSH Host" msgstr "" -"当使用 \"自适配过滤条件\" " -"时,这可以用来提高获取查询数据的性能。使用此选项可将谓词(WHERE子句)应用于从表中进行选择不同值的查询。通常,这样做的目的是通过对分区或索引的相关时间字段配置相对应的过滤时间来限制扫描。" -#: superset/viz.py:891 -msgid "When using 'Group By' you are limited to use a single metric" -msgstr "当使用“Group by”时,只限于使用单个度量。" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:46 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 +msgid "e.g. 127.0.0.1" +msgstr "127.0.0.1" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 -msgid "When using other than adaptive formatting, labels may overlap" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 +msgid "SSH Port" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" msgstr "" -#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:134 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +msgid "e.g. Analytics" +msgstr "高级分析" + +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 #, fuzzy -msgid "When using this option, default value can’t be set" -msgstr "默认选择第一项(使用此选项时,不能“设置默认值”)" +msgid "Login with" +msgstr "线宽" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "Whether the progress bar overlaps when there are multiple groups of data" -msgstr "当有多组数据时进度条是否重叠" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 +msgid "Private Key & Password" +msgstr "" -#: superset/connectors/sqla/views.py:362 -msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "表是否由 sql 实验室中的 \"可视化\" 流生成" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 +#, fuzzy +msgid "SSH Password" +msgstr "密码" -#: superset/connectors/sqla/views.py:110 -msgid "" -"Whether this column is exposed in the `Filters` section of the explore " -"view." -msgstr "该列是否在浏览视图的`过滤器`部分显示。" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:155 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:176 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 +msgid "e.g. ********" +msgstr "********" -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 -msgid "" -"Whether to align background charts with both positive and negative values" -" at 0" -msgstr "是否 +/- 对齐背景图数值" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 +msgid "Private Key" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 -msgid "Whether to align positive and negative values in cell bar chart at 0" -msgstr "单元格条形图中的正负值是否按0对齐" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" +msgstr "" -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 -msgid "Whether to always show the annotation label" -msgstr "是否显示标签。" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "Broker的密码" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 -msgid "Whether to animate the progress and the value or just display them" -msgstr "是以动画形式显示进度和值,还是仅显示它们" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:279 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 +msgid "SSH Tunnel" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "Whether to apply a normal distribution based on rank on the color scale" -msgstr "是否应用基于色标等级的正态分布" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:281 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 +msgid "SSH Tunnel configuration parameters" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 -#, fuzzy -msgid "Whether to apply filter when items are clicked" -msgstr "是否显示笔划" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:52 +msgid "Display Name" +msgstr "显示名称" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "Whether to colorize numeric values by if they are positive or negative" -msgstr "根据数值是正数还是负数来为其上色" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:61 +msgid "Name your database" +msgstr "您的数据集" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 -msgid "Whether to display a bar chart background in table columns" -msgstr "为指标添加条状图背景" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:66 +msgid "Pick a name to help you identify this database." +msgstr "选择一个名称来帮助您识别这个数据库。" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 -msgid "Whether to display a legend for the chart" -msgstr "是否显示图表的图示(色块分布)" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:83 +msgid "dialect+driver://username:password@host:port/database" +msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 -msgid "Whether to display bubbles on top of countries" -msgstr "是否在国家之上展示气泡" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:89 +msgid "Refer to the" +msgstr "参考 " -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 -#, fuzzy -msgid "Whether to display the aggregate count" -msgstr "是否显示笔划" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:97 +msgid "for more information on how to structure your URI." +msgstr "来查询有关如何构造URI的更多信息。" -#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 -msgid "Whether to display the interactive data table" -msgstr "是否将指标名显示为标题" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:108 +msgid "Test connection" +msgstr "测试连接" -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 -msgid "Whether to display the labels." -msgstr "是否显示标签。" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:553 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:728 +#: superset-frontend/src/pages/DatabaseList/index.tsx:118 +msgid "database" +msgstr "数据库" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 -#, fuzzy -msgid "" -"Whether to display the labels. Note that the label only displays when the" -" 5% threshold." -msgstr "是否显示标签。" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:651 +msgid "Please enter a SQLAlchemy URI to test" +msgstr "请输入要测试的SQLAlchemy URI" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 -msgid "Whether to display the legend (toggles)" -msgstr "是否显示图示(切换)" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:680 +msgid "e.g. world_population" +msgstr "世界人口" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 -msgid "Whether to display the metric name as a title" -msgstr "是否将指标名显示为标题" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:855 +#, fuzzy +msgid "Database settings updated" +msgstr "数据库无法更新" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 -msgid "Whether to display the min and max values of the X-axis" -msgstr "是否显示X轴的最小值和最大值" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:921 +#, python-format +msgid "Sorry there was an error fetching database information: %s" +msgstr "抱歉,获取数据库信息时出错:%s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 -msgid "Whether to display the min and max values of the Y-axis" -msgstr "是否显示Y轴的最小值和最大值" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:981 +msgid "Or choose from a list of other databases we support:" +msgstr "或者从我们支持的其他数据库列表中选择:" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 -msgid "Whether to display the numerical values within the cells" -msgstr "是否在单元格内显示数值" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:983 +msgid "Supported databases" +msgstr "已支持数据库" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 -#, fuzzy -msgid "Whether to display the stroke" -msgstr "是否显示笔划" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:987 +msgid "Choose a database..." +msgstr "选择数据库" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 -msgid "Whether to display the time range interactive selector" -msgstr "是否显示时间范围交互选择器" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1011 +msgid "Want to add a new database?" +msgstr "添加一个新数据库?" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 -msgid "Whether to display the timestamp" -msgstr "是否显示笔划" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1016 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " +msgstr "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 -msgid "Whether to display the trend line" -msgstr "是否显示笔划" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +msgid "" +"Any databases that allow connections via SQL Alchemy URIs can be added. " +"Learn about how to connect a database driver " +msgstr "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。了解如何连接数据库驱动程序" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 -msgid "Whether to enable changing graph position and scaling." -msgstr "是否启用更改图形位置和缩放。" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1160 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1710 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1749 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Connect" +msgstr "连接" -#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 -msgid "Whether to enable node dragging in force layout mode." -msgstr "是否在强制布局模式下启用节点拖动。" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1140 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1188 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1911 +msgid "Finish" +msgstr "完成" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 -#, fuzzy -msgid "Whether to fill the objects" -msgstr "是否显示标签。" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1182 +msgid "This database is managed externally, and can't be edited in Superset" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1347 #, fuzzy -msgid "Whether to ignore locations that are null" -msgstr "是否忽略空位置" - -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 -msgid "Whether to include a client-side search box" -msgstr "是否包含客户端搜索框" +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." +msgstr "" +"需要以下数据库的密码才能导入它们。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " +"部分不在导出文件中。如果需要,应在导入后手动添加。" -#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 -msgid "Whether to include a time filter" -msgstr "是否包含时间过滤器" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1457 +msgid "" +"You are importing one or more databases that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "您正在导入一个或多个已存在的数据库。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 -msgid "Whether to include the percentage in the tooltip" -msgstr "是否在工具提示中包含百分比" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +msgid "Database Creation Error" +msgstr "数据库创建错误" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "Whether to include the time granularity as defined in the time section" -msgstr "是否包含时间段中定义的时间粒度" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1531 +msgid "" +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1583 #, fuzzy -msgid "Whether to make the grid 3D" -msgstr "是否规范化直方图" +msgid "CREATE DATASET" +msgstr "修改数据集" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 -msgid "Whether to make the histogram cumulative" -msgstr "是否规范化直方图" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1593 +msgid "QUERY DATA IN SQL LAB" +msgstr "" -#: superset/connectors/sqla/views.py:105 -msgid "" -"Whether to make this column available as a [Time Granularity] option, " -"column has to be DATETIME or DATETIME-like" -msgstr "是否将此列作为[时间粒度]选项, 列中的数据类型必须是DATETIME" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1714 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1915 +msgid "Connect a database" +msgstr "连接数据库" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 -msgid "Whether to normalize the histogram" -msgstr "是否规范化直方图" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1754 +msgid "Edit database" +msgstr "编辑数据库" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 -msgid "Whether to populate autocomplete filters options" -msgstr "是否填充自适配过滤条件选项" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1821 +msgid "Connect this database using the dynamic form instead" +msgstr "使用动态参数连接此数据库" -#: superset/connectors/sqla/views.py:357 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "" -"Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the " -"fly" -msgstr "是否在浏览视图的过滤器部分中填充过滤器的下拉列表,并提供从后端获取的不同值的列表" +"Click this link to switch to an alternate form that exposes only the " +"required fields needed to connect this database." +msgstr "单击此链接可切换到仅显示连接此数据库所需的必填字段的备用表单。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1840 +msgid "Additional fields may be required" +msgstr "" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1844 msgid "" -"Whether to show extra controls or not. Extra controls include things like" -" making mulitBar charts stacked or side by side." -msgstr "是否显示额外的控件。额外的控制包括使多栏图表堆叠或并排。" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " +msgstr "选择数据库需要在Advanced选项卡中完成额外的字段才能成功连接数据库了解数据库的需求" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 -msgid "Whether to show minor ticks on the axis" -msgstr "是否忽略空位置" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1966 +msgid "Import database from file" +msgstr "从文件中导入数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 -msgid "Whether to show the pointer" -msgstr "是否显示笔划" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2004 +msgid "Connect this database with a SQLAlchemy URI string instead" +msgstr "使用SQLAlchemy URI链接此数据库" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 -msgid "Whether to show the progress of gauge chart" -msgstr "是否显示量规图进度" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2009 +msgid "" +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." +msgstr "单击此链接可切换到备用表单,该表单允许您手动输入此数据库的SQLAlChemy URL。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 -msgid "Whether to show the split lines on the axis" -msgstr "是否显示Y轴的最小值和最大值" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:41 +msgid "" +"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " +"mydatabase.com)." +msgstr "这可以是一个IP地址(例如127.0.0.1)或一个域名(例如127.0.0.1)" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 -#, fuzzy -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "是否忽略空位置" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:48 +msgid "Host" +msgstr "主机" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 -msgid "Whether to sort descending or ascending" -msgstr "是降序还是升序排序" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "e.g. 5432" +msgstr "5432" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:71 #, fuzzy -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "是降序还是升序排序" +msgid "Port" +msgstr "报告" -#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 -#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 -#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 -#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 -#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 -msgid "Whether to sort results by the selected metric in descending order." -msgstr "是否按所选指标按降序对结果进行排序。" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:92 +msgid "e.g. sql/protocolv1/o/12345" +msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 -msgid "Whether to sort tooltip by the selected metric in descending order." -msgstr "是否按所选指标按降序对结果进行排序。" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:95 +msgid "Copy the name of the HTTP Path of your cluster." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:117 #, fuzzy -msgid "Whether to truncate metrics" -msgstr "是否规范化直方图" - -#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 -msgid "Which country to plot the map for?" -msgstr "为哪个国家绘制地图?" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 -msgid "Which relatives to highlight on hover" -msgstr "在悬停时突出显示哪些关系" - -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 -msgid "Whisker/outlier options" -msgstr "箱须/离群值选项" +msgid "Copy the name of the database you are trying to connect to." +msgstr "复制尝试连接的数据库名" -#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 -msgid "White" -msgstr "白色" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:177 +#, fuzzy +msgid "Access token" +msgstr "上一个" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 -msgid "Width" -msgstr "宽度" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:198 +#, fuzzy +msgid "Pick a nickname for how the database will display in Superset." +msgstr "为这个数据库选择一个昵称以在Superset中显示" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "置信区间必须介于0和1(不包含1)之间" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:219 +msgid "e.g. param1=value1¶m2=value2" +msgstr "例如:param1=value1¶m2=value2" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 -msgid "Width of the sparkline" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 +msgid "Additional Parameters" +msgstr "附加参数" -#: superset/utils/pandas_postprocessing/rolling.py:69 -msgid "Window must be > 0" -msgstr "窗口必须大于0" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:222 +msgid "Add additional custom parameters" +msgstr "添加其他自定义参数" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 -msgid "With a subheader" -msgstr "子标题" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:249 +msgid "SSL Mode \"require\" will be used." +msgstr "SSL模式 \"require\" 将被使用。" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 -msgid "Word Cloud" -msgstr "词汇云" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 +msgid "Type of Google Sheets allowed" +msgstr "接受Google Sheets的类型" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 -msgid "Word Rotation" -msgstr "单词旋转" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 +msgid "Publicly shared sheets only" +msgstr "仅公开共享表" -#: superset-frontend/src/pages/AlertReportList/index.tsx:63 -msgid "Working" -msgstr "正在执行" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 +msgid "Public and privately shared sheets" +msgstr "公共和私人共享的表" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 -msgid "Working timeout" -msgstr "执行超时" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 +msgid "How do you want to enter service account credentials?" +msgstr "您希望如何输入服务帐户凭据?" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2006 -msgid "World Map" -msgstr "世界地图" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 +msgid "Upload JSON file" +msgstr "上传JSON文件" -#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 -msgid "Write a description for your query" -msgstr "为您的查询写一段描述" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 +msgid "Copy and Paste JSON credentials" +msgstr "复制和粘贴JSON凭据" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 -msgid "Write a handlebars template to render the data" -msgstr "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 +msgid "Service Account" +msgstr "服务帐户" -#: superset/views/database/forms.py:229 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 #, fuzzy -msgid "Write dataframe index as a column" -msgstr "将dataframe index 作为列." +msgid "Paste content of service credentials JSON file here" +msgstr "复制服务帐户的json文件复制并粘贴到此处" -#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 -msgid "Write dataframe index as a column." -msgstr "将dataframe index 作为列." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 +msgid "Copy and paste the entire service account .json file here" +msgstr "复制服务帐户的json文件复制并粘贴到此处" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 -msgid "X AXIS TITLE BOTTOM MARGIN" -msgstr "X 轴标题下边距" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 +msgid "Upload Credentials" +msgstr "上传验证文件" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 -#: superset-frontend/src/explore/controls.jsx:401 -msgid "X Axis" -msgstr "X 轴" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 +msgid "" +"Use the JSON file you automatically downloaded when creating your service" +" account." +msgstr "使用您在创建服务帐户时自动下载的JSON文件" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 -msgid "X Axis Format" -msgstr "X 轴格式化" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "将Google Sheet作为表格连接到此数据库" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 -msgid "X Axis Label" -msgstr "X 轴标签" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 +msgid "Google Sheet Name and URL" +msgstr "Google Sheet名称和URL" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 -msgid "X Axis Title" -msgstr "X轴标题" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 +msgid "Enter a name for this sheet" +msgstr "输入此工作表的名称" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 -msgid "X Log Scale" -msgstr "X经度标度" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 +msgid "Paste the shareable Google Sheet URL here" +msgstr "将可共享的Google Sheet URL粘贴到此处" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 -msgid "X Tick Layout" -msgstr "X轴记号图层" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 +msgid "Add sheet" +msgstr "添加sheet页" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 +#, fuzzy +msgid "Copy the identifier of the account you are trying to connect to." +msgstr "复制尝试连接的数据库名" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 -msgid "X bounds" -msgstr "X界限" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +msgid "e.g. xy12345.us-east-2.aws" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 -#, fuzzy -msgid "X-Axis Sort Ascending" -msgstr "升序排序" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 +msgid "e.g. compute_wh" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 -msgid "X-Axis Sort By" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 +msgid "e.g. AccountAdmin" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 #, fuzzy -msgid "X-axis" -msgstr "坐标轴" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 -msgid "XScale Interval" -msgstr "X轴比例尺间隔" +msgid "Duplicate dataset" +msgstr "编辑数据集" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 -msgid "Y 2 bounds" -msgstr "Y界限" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:487 +#, fuzzy +msgid "Duplicate" +msgstr "复制tab页" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 -msgid "Y AXIS TITLE MARGIN" -msgstr "Y轴标题页边距" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 +#, fuzzy +msgid "New dataset name" +msgstr "数据集名称" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 -msgid "Y AXIS TITLE POSITION" -msgstr "Y轴标题位置" +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"需要以下数据库的密码才能将其与数据集一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " +"部分不在导出文件中,如果需要,应在导入后手动添加。" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 -#: superset-frontend/src/explore/controls.jsx:408 -msgid "Y Axis" -msgstr "Y 轴" +#: superset-frontend/src/features/datasets/constants.ts:30 +msgid "" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "您正在导入一个或多个已存在的数据集。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 -msgid "Y Axis 2 Bounds" -msgstr "Y 轴界限" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 +#, fuzzy +msgid "Refreshing columns" +msgstr "时间序列的列" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 -msgid "Y Axis Bounds" -msgstr "Y 轴界限" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 +#, fuzzy +msgid "Table columns" +msgstr "标题栏" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 -#: superset-frontend/src/explore/controls.jsx:422 -msgid "Y Axis Format" -msgstr "Y 轴格式化" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 +#, fuzzy +msgid "Loading" +msgstr "加载中..." -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 -msgid "Y Axis Label" -msgstr "Y 轴标签" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +msgid "" +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 -msgid "Y Axis Title" -msgstr "Y 轴标题" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 +#, fuzzy +msgid "View Dataset" +msgstr "编辑数据集" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 -msgid "Y Log Scale" -msgstr "Y经度标度" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:164 +msgid "This table already has a dataset" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 -msgid "Y bounds" -msgstr "Y界限" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:43 +msgid "" +"Datasets can be created from database tables or SQL queries. Select a " +"database table to the left or " +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 #, fuzzy -msgid "Y-Axis Sort Ascending" -msgstr "升序排序" +msgid "create dataset from SQL query" +msgstr "从文件中导入数据库" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 -msgid "Y-Axis Sort By" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:47 +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:63 #, fuzzy -msgid "Y-axis" -msgstr "坐标轴" +msgid "Select dataset source" +msgstr "使用旧数据源编辑器" -#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:64 #, fuzzy -msgid "Y-axis bounds" -msgstr "Y 轴界限" - -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 -msgid "YScale Interval" -msgstr "Y轴比例尺间隔" - -#: superset/db_engine_specs/base.py:111 -msgid "Year" -msgstr "年" +msgid "No table columns" +msgstr "没有时间列" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 -msgid "Year (freq=AS)" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:65 +msgid "" +"This database table does not contain any data. Please select a different " +"table." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 -msgid "Yearly seasonality" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 +#, fuzzy +msgid "An Error Occurred" +msgstr "发生了一个错误" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:69 +msgid "" +"Unable to load columns for the selected table. Please select a different " +"table." msgstr "" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 #, python-format -msgid "Years %s" -msgstr "年 %s" +msgid "The API response from %s does not match the IDatabaseTable interface." +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 -#: superset-frontend/src/pages/ChartList/index.tsx:598 -#: superset-frontend/src/pages/ChartList/index.tsx:707 -#: superset-frontend/src/pages/DashboardList/index.tsx:506 -#: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 -#: superset-frontend/src/pages/DatabaseList/index.tsx:498 -#: superset-frontend/src/pages/DatasetList/index.tsx:583 -msgid "Yes" -msgstr "是" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 +#, fuzzy +msgid "Usage" +msgstr "巨大" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 -msgid "Yes, cancel" -msgstr "是的,取消" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 +#, fuzzy +msgid "Chart owners" +msgstr "图表所有者:%s" -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 -#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 #, fuzzy -msgid "Yes, overwrite changes" -msgstr "范围的标签" +msgid "Chart last modified" +msgstr "最后修改" -#: superset-frontend/src/pages/ChartList/index.tsx:100 -msgid "" -"You are importing one or more charts that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +#, fuzzy +msgid "Chart last modified by" +msgstr "上次修改人 %s" -#: superset-frontend/src/pages/DashboardList/index.tsx:69 -msgid "" -"You are importing one or more dashboards that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "您正在导入一个或多个已存在的仪表板。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +#, fuzzy +msgid "Dashboard usage" +msgstr "看板" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 -msgid "" -"You are importing one or more databases that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "您正在导入一个或多个已存在的数据库。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 +msgid "Create chart with dataset" +msgstr "" -#: superset-frontend/src/features/datasets/constants.ts:30 -msgid "" -"You are importing one or more datasets that already exist. Overwriting " -"might cause you to lose some of your work. Are you sure you want to " -"overwrite?" -msgstr "您正在导入一个或多个已存在的数据集。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:181 +#: superset-frontend/src/pages/ChartList/index.tsx:866 +msgid "chart" +msgstr "图表" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 -msgid "" -"You are importing one or more saved queries that already exist. " -"Overwriting might cause you to lose some of your work. Are you sure you " -"want to overwrite?" -msgstr "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +msgid "No charts" +msgstr "没有图表" -#: superset/views/core.py:2213 -msgid "" -"You are not authorized to see this query. If you think this is an error, " -"please reach out to your administrator." -msgstr "您无权查看此查询。" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 +msgid "This dataset is not used to power any charts." +msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 #, fuzzy -msgid "You can" -msgstr "国家地图" +msgid "Select a database table." +msgstr "选择将要连接的数据库" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 -msgid "You can add the components in the" -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 +#, fuzzy +msgid "Create dataset and create chart" +msgstr "创建新图表" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 -msgid "You can add the components in the edit mode." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 +#, fuzzy +msgid "New dataset" +msgstr "修改数据集" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 -msgid "You can also just click on the chart to apply cross-filter." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 +#, fuzzy +msgid "Select a database table and create dataset" +msgstr "选择要写入查询的数据库" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 -msgid "" -"You can choose to display all charts that you have access to or only the " -"ones you own.\n" -" Your filter selection will be saved and remain active until" -" you choose to change it." -msgstr "" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/pages/AllEntities/index.tsx:122 +#, fuzzy +msgid "dataset name" +msgstr "数据集名称" -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 -#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 -msgid "" -"You can create a new chart or use existing ones from the panel on the " -"right" -msgstr "" +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:106 +#: superset-frontend/src/features/datasets/DatasetSelectLabel/index.tsx:116 +#, fuzzy +msgid "Not defined" +msgstr "未命名" -#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "You can preview the list of dashboards in the chart settings dropdown." -msgstr "" +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 +#, fuzzy +msgid "There was an error fetching dataset" +msgstr "抱歉,获取数据库信息时出错:%s" -#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 -msgid "You can't apply cross-filter on this data point." -msgstr "" +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 +#, fuzzy +msgid "There was an error fetching dataset's related objects" +msgstr "抱歉,获取数据库信息时出错:%s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 -msgid "" -"You cannot delete the last temporal filter as it's used for time range " -"filters in dashboards." -msgstr "" +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 +#, fuzzy +msgid "There was an error loading the dataset metadata" +msgstr "您的请求有错误" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:365 -msgid "You cannot use 45° tick layout along with the time range filter" -msgstr "不能将45°刻度线布局与时间范围过滤器一起使用" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 +msgid "[Untitled]" +msgstr "无标题" -#: superset/viz.py:748 -msgid "" -"You cannot use [Columns] in combination with [Group " -"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." -msgstr "不能将 [列] 与 [分组]/[指标]/[百分比度量] 结合使用。请选择其中一个。" +#: superset-frontend/src/features/home/ActivityTable.tsx:86 +msgid "Unknown" +msgstr "未知" -#: superset-frontend/src/utils/getClientErrorObject.ts:107 -#, fuzzy, python-format -msgid "You do not have permission to edit this %s" -msgstr "您没有编辑此图表的权限" +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format +msgid "Viewed %s" +msgstr "已查看 %s" -#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 -msgid "You do not have permission to edit this chart" -msgstr "您没有编辑此图表的权限" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 +msgid "Edited" +msgstr "已编辑" -#: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:368 -#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 -msgid "You do not have permission to edit this dashboard" -msgstr "您没有编辑此看板的权限" +#: superset-frontend/src/features/home/ActivityTable.tsx:159 +msgid "Created" +msgstr "已创建" -#: superset/templates/superset/request_access.html:25 -#, python-format -msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "您没有权限访问该数据源: %(name)s。" +#: superset-frontend/src/features/home/ActivityTable.tsx:170 +msgid "Viewed" +msgstr "已查看" -#: superset-frontend/src/dashboard/actions/dashboardState.js:160 -msgid "You do not have permissions to edit this dashboard." -msgstr "您没有编辑此看板的权限。" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:561 +#: superset-frontend/src/pages/DashboardList/index.tsx:478 +msgid "Favorite" +msgstr "收藏" -#: superset/charts/commands/exceptions.py:131 -#, fuzzy -msgid "You don't have access to this chart." -msgstr "您没有编辑此看板的权限。" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:248 +msgid "Mine" +msgstr "我的编辑" -#: superset/dashboards/commands/exceptions.py:86 -msgid "You don't have access to this dashboard." -msgstr "您没有编辑此看板的权限。" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:264 +msgid "View All »" +msgstr "查看所有 »" -#: superset/datasets/commands/exceptions.py:206 -#, fuzzy -msgid "You don't have access to this dataset." -msgstr "您没有编辑此看板的权限。" +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:236 +#, python-format +msgid "An error occurred while fetching dashboards: %s" +msgstr "获取仪表板时出错:%s" -#: superset/embedded_dashboard/commands/exceptions.py:34 -#, fuzzy -msgid "You don't have access to this embedded dashboard config." -msgstr "您没有编辑此看板的权限。" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "charts" +msgstr "图表" -#: superset-frontend/src/features/home/EmptyState.tsx:170 -msgid "You don't have any favorites yet!" -msgstr "您还没有任何的收藏!" +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "dashboards" +msgstr "看板" -#: superset/key_value/exceptions.py:54 -#: superset/temporary_cache/commands/exceptions.py:45 -msgid "You don't have permission to modify the value." -msgstr "您没有编辑此图表的权限" +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "recents" +msgstr "最近" -#: superset/security/manager.py:2262 -#, fuzzy, python-format -msgid "You don't have the rights to alter %(resource)s" -msgstr "您没有权利修改这个标题。" +#: superset-frontend/src/features/home/EmptyState.tsx:31 +msgid "saved queries" +msgstr "已保存查询" -#: superset/views/core.py:945 +#: superset-frontend/src/features/home/EmptyState.tsx:35 #, fuzzy -msgid "You don't have the rights to alter this chart" -msgstr "您没有权利修改这个标题。" +msgid "No charts yet" +msgstr "没有图表" -#: superset/views/core.py:1119 +#: superset-frontend/src/features/home/EmptyState.tsx:36 #, fuzzy -msgid "You don't have the rights to alter this dashboard" -msgstr "您没有权利修改这个标题。" - -#: superset-frontend/src/components/EditableTitle/index.tsx:213 -msgid "You don't have the rights to alter this title." -msgstr "您没有权利修改这个标题。" +msgid "No dashboards yet" +msgstr "没有看板" -#: superset/views/core.py:951 +#: superset-frontend/src/features/home/EmptyState.tsx:37 #, fuzzy -msgid "You don't have the rights to create a chart" -msgstr "您没有授权 " +msgid "No recents yet" +msgstr "最近" -#: superset/views/core.py:1135 +#: superset-frontend/src/features/home/EmptyState.tsx:38 #, fuzzy -msgid "You don't have the rights to create a dashboard" -msgstr "您没有授权 " +msgid "No saved queries yet" +msgstr "已保存查询" -#: superset/views/core.py:649 -#, fuzzy -msgid "You don't have the rights to download as csv" -msgstr "您没有授权 " +#: superset-frontend/src/features/home/EmptyState.tsx:44 +#, fuzzy, python-format +msgid "%(other)s charts will appear here" +msgstr "示例 %(tableName)s 将出现在此处" -#: superset/views/core.py:425 -msgid "You have no permission to approve this request" -msgstr "您没有此请求的访问权限" +#: superset-frontend/src/features/home/EmptyState.tsx:46 +#, fuzzy, python-format +msgid "%(other)s dashboards will appear here" +msgstr "示例 %(tableName)s 将出现在此处" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 -msgid "You have removed this filter." -msgstr "您已删除此过滤条件。" +#: superset-frontend/src/features/home/EmptyState.tsx:48 +#, fuzzy, python-format +msgid "%(other)s recents will appear here" +msgstr "示例 %(tableName)s 将出现在此处" -#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 -msgid "You have unsaved changes." -msgstr "您有一些未保存的修改。" +#: superset-frontend/src/features/home/EmptyState.tsx:50 +#, fuzzy, python-format +msgid "%(other)s saved queries will appear here" +msgstr "最近查看的图表、看板和保存的查询将显示在此处" -#: superset-frontend/src/dashboard/actions/dashboardState.js:650 -#, python-format -msgid "" -"You have used all %(historyLength)s undo slots and will not be able to " -"fully undo subsequent actions. You may save your current state to reset " -"the history." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:103 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" +msgstr "最近查看的图表、看板和保存的查询将显示在此处" -#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:464 -msgid "" -"You must be a dataset owner in order to edit. Please reach out to a " -"dataset owner to request modifications or edit access." -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:108 +msgid "Recently created charts, dashboards, and saved queries will appear here" +msgstr "最近创建的图表、看板和保存的查询将显示在此处" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 -msgid "You must pick a name for the new dashboard" -msgstr "您必须为新的看板选择一个名称" +#: superset-frontend/src/features/home/EmptyState.tsx:117 +msgid "Recently edited charts, dashboards, and saved queries will appear here" +msgstr "最近编辑的图表、看板和保存的查询将显示在此处" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 -msgid "You must run the query successfully first" -msgstr "必须先成功运行查询" +#: superset-frontend/src/features/home/EmptyState.tsx:148 +#: superset-frontend/src/features/home/RightMenu.tsx:213 +msgid "SQL query" +msgstr "SQL查询" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 -msgid "You need to configure HTML sanitization to use CSS" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:168 +msgid "You don't have any favorites yet!" +msgstr "您还没有任何的收藏!" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 -msgid "" -"You updated the values in the control panel, but the chart was not " -"updated automatically. Run the query by clicking on the \"Update chart\" " -"button or" -msgstr "" +#: superset-frontend/src/features/home/EmptyState.tsx:181 +#, python-format +msgid "See all %(tableName)s" +msgstr "查看全部 - %(tableName)s" -#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 -msgid "" -"You've changed datasets. Any controls with data (columns, metrics) that " -"match this new dataset have been retained." -msgstr "" +#: superset-frontend/src/features/home/RightMenu.tsx:174 +msgid "Connect database" +msgstr "连接数据库" -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 +#: superset-frontend/src/features/home/RightMenu.tsx:179 #, fuzzy -msgid "Your chart is not up to date" -msgstr "不是最新的" +msgid "Create dataset" +msgstr "修改数据集" -#: superset-frontend/src/components/Chart/Chart.jsx:283 -msgid "Your chart is ready to go!" +#: superset-frontend/src/features/home/RightMenu.tsx:185 +msgid "Connect Google Sheet" msgstr "" -#: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "Your dashboard is too large. Please reduce its size before saving it." -msgstr "您的看板太大了。保存前请缩小尺寸。" +#: superset-frontend/src/features/home/RightMenu.tsx:190 +msgid "Upload CSV to database" +msgstr "上传CSV文件" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 -msgid "Your query could not be saved" -msgstr "您的查询无法保存" +#: superset-frontend/src/features/home/RightMenu.tsx:197 +msgid "Upload columnar file to database" +msgstr "上传列级文件" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 -msgid "Your query could not be scheduled" -msgstr "无法调度您的查询" +#: superset-frontend/src/features/home/RightMenu.tsx:204 +msgid "Upload Excel file to database" +msgstr "上传Excel" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 -msgid "Your query could not be updated" -msgstr "无法更新您的查询" +#: superset-frontend/src/features/home/RightMenu.tsx:300 +#: superset-frontend/src/features/home/SubMenu.tsx:303 +msgid "Enable 'Allow file uploads to database' in any database's settings" +msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 -msgid "" -"Your query has been scheduled. To see details of your query, navigate to " -"Saved queries" -msgstr "您的查询已被调度。要查看查询的详细信息,请跳转到保存查询页面查看。" +#: superset-frontend/src/features/home/RightMenu.tsx:478 +msgid "Info" +msgstr "信息" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 -#, fuzzy -msgid "Your query was not properly saved" -msgstr "您的查询已保存" +#: superset-frontend/src/features/home/RightMenu.tsx:482 +msgid "Logout" +msgstr "退出" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 -msgid "Your query was saved" -msgstr "您的查询已保存" +#: superset-frontend/src/features/home/RightMenu.tsx:488 +msgid "About" +msgstr "关于" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 -msgid "Your query was updated" -msgstr "您的查询已保存" +#: superset-frontend/src/features/home/RightMenu.tsx:492 +msgid "Powered by Apache Superset" +msgstr "由Apache Superset提供支持" -#: superset-frontend/src/reports/actions/reports.js:154 -msgid "Your report could not be deleted" -msgstr "这个查询无法被加载。" +#: superset-frontend/src/features/home/RightMenu.tsx:502 +msgid "SHA" +msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 +#: superset-frontend/src/features/home/RightMenu.tsx:507 #, fuzzy -msgid "Zero imputation" -msgstr "描述" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 -msgid "Zoom" -msgstr "缩放" - -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 -msgid "Zoom level of the map" -msgstr "地图缩放等级" +msgid "Build" +msgstr "重构" -#: superset-frontend/src/dashboard/actions/dashboardState.js:260 -#, fuzzy -msgid "[ untitled dashboard ]" -msgstr "编辑仪表盘" +#: superset-frontend/src/features/home/RightMenu.tsx:527 +msgid "Documentation" +msgstr "文档" -#: superset/viz.py:2323 -msgid "[Longitude] and [Latitude] columns must be present in [Group By]" -msgstr "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" +#: superset-frontend/src/features/home/RightMenu.tsx:544 +msgid "Report a bug" +msgstr "报告bug" -#: superset/viz.py:2273 -msgid "[Longitude] and [Latitude] must be set" -msgstr "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" +#: superset-frontend/src/features/home/RightMenu.tsx:558 +msgid "Login" +msgstr "登录" -#: superset/explore/commands/get.py:121 superset/views/core.py:892 -msgid "[Missing Dataset]" -msgstr "丢失数据集" +#: superset-frontend/src/features/home/SavedQueries.tsx:132 +msgid "query" +msgstr "查询" -#: superset/utils/core.py:908 +#: superset-frontend/src/features/home/SavedQueries.tsx:173 +#: superset-frontend/src/features/reports/ReportModal/actions.js:158 +#: superset-frontend/src/pages/AlertReportList/index.tsx:185 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:186 +#: superset-frontend/src/pages/DatasetList/index.tsx:690 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:257 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 #, python-format -msgid "[Superset] Access to the datasource %(name)s was granted" -msgstr "[Superset] 允许访问数据源 %(name)s" - -#: superset-frontend/src/features/home/ActivityTable.tsx:85 -msgid "[Untitled]" -msgstr "无标题" +msgid "Deleted: %s" +msgstr "已删除:%s" -#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 -#, fuzzy -msgid "[asc]" -msgstr "基础" +#: superset-frontend/src/features/home/SavedQueries.tsx:176 +#: superset-frontend/src/pages/AlertReportList/index.tsx:188 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:200 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:99 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:260 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format +msgid "There was an issue deleting %s: %s" +msgstr "删除 %s 时出现问题:%s" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 -#, fuzzy -msgid "[copy]" -msgstr "复制" +#: superset-frontend/src/features/home/SavedQueries.tsx:228 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:532 +msgid "This action will permanently delete the saved query." +msgstr "此操作将永久删除保存的查询。" -#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 -msgid "[dashboard name]" -msgstr "[看板名称]" +#: superset-frontend/src/features/home/SavedQueries.tsx:240 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +msgid "Delete Query?" +msgstr "确定删除查询?" -#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 -msgid "[desc]" -msgstr "" +#: superset-frontend/src/features/home/SavedQueries.tsx:281 +#, python-format +msgid "Ran %s" +msgstr "持续时间:%s" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 -#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and " -"based on labels" -msgstr "次计量指标用来定义颜色与主度量的比率。如果两个度量匹配,则将颜色映射到级别组" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/features/tags/TagModal.tsx:342 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:119 +msgid "Saved queries" +msgstr "已保存查询" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 -#, fuzzy -msgid "[untitled]" -msgstr "无标题" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 +msgid "Next" +msgstr "之后" -#: superset/utils/pandas_postprocessing/compare.py:53 -msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "长度必须保持一致" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:252 +msgid "Tab name" +msgstr "选项卡名字" -#: superset/utils/pandas_postprocessing/compare.py:57 -msgid "`compare_type` must be `difference`, `percentage` or `ratio`" -msgstr "`compare_type` 必须是 `difference`, `percentage` 或 `ratio`" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 +msgid "User query" +msgstr "用户查询" -#: superset/charts/schemas.py:654 -msgid "`confidence_interval` must be between 0 and 1 (exclusive)" -msgstr "`置信区间` 必须介于0和1之间(开区间)" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 +msgid "Executed query" +msgstr "已执行查询" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 -msgid "" -"`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to " -"label points. Leave empty to get a count of points in each cluster." -msgstr "如果分组被使用 `count` 表示 COUNT(*)。数值列将与聚合器聚合。非数值列将用于维度列。留空以获得每个簇中的点计数。" +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:129 +msgid "Query name" +msgstr "查询名称" -#: superset/common/query_object.py:436 -msgid "`operation` property of post processing object undefined" -msgstr "后处理必须指定操作类型(`operation`)" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 +msgid "SQL Copied!" +msgstr "SQL复制成功!" -#: superset/utils/pandas_postprocessing/prophet.py:61 -msgid "`prophet` package not installed" -msgstr "未安装程序包 `fbprophet`" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:244 +#: superset-frontend/src/views/CRUD/hooks.ts:683 +msgid "Sorry, your browser does not support copying." +msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" -#: superset/utils/pandas_postprocessing/contribution.py:69 -msgid "`rename_columns` must have the same length as `columns`." -msgstr "长度必须保持一致" +#: superset-frontend/src/features/reports/ReportModal/actions.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "获取此看板的收藏夹状态时出现问题。" -#: superset/charts/schemas.py:1284 -msgid "`row_limit` must be greater than or equal to 0" -msgstr "`行限制` 必须大于或等于1" +#: superset-frontend/src/features/reports/ReportModal/actions.js:110 +msgid "The report has been created" +msgstr "数据集已保存" -#: superset/charts/schemas.py:1291 -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`行偏移量` 必须大于或等于0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:121 +#, fuzzy +msgid "Report updated" +msgstr "报告失败" -#: superset/charts/schemas.py:1108 -msgid "`width` must be greater or equal to 0" -msgstr "`宽度` 必须大于或等于0" +#: superset-frontend/src/features/reports/ReportModal/actions.js:136 +msgid "We were unable to active or deactivate this report." +msgstr "“我们无法激活或禁用该报告。" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 -msgid "aggregate" -msgstr "合计" +#: superset-frontend/src/features/reports/ReportModal/actions.js:154 +msgid "Your report could not be deleted" +msgstr "这个查询无法被加载。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "alert" -msgstr "警报" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:130 +#, python-format +msgid "Weekly Report for %s" +msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:131 #, fuzzy -msgid "alert dark" -msgstr "警报" +msgid "Weekly Report" +msgstr "报告" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -msgid "alerts" -msgstr "警报" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:250 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:271 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 +msgid "Edit email report" +msgstr "编辑邮件报告" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 -#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 -#: superset-frontend/src/explore/controls.jsx:254 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:221 #, fuzzy -msgid "all" -msgstr "小" - -#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 -msgid "also copy (duplicate) charts" -msgstr "同时复制图表" +msgid "Schedule a new email report" +msgstr "为图表配置电子邮件报告" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 -msgid "ancestor" -msgstr "上一个" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:257 +msgid "Text embedded in email" +msgstr "邮件中嵌入的文本" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 -msgid "and" -msgstr "和" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:261 +msgid "Image (PNG) embedded in email" +msgstr "使用邮箱发送图片(PNG)" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 -#: superset-frontend/src/pages/AnnotationList/index.tsx:78 -msgid "annotation" -msgstr "注释" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:264 +msgid "Formatted CSV attached in email" +msgstr "在邮件中附件CSV" -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 -msgid "annotation_layer" -msgstr "注释层" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:311 +#, fuzzy +msgid "Report Name" +msgstr "报告名称" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 -#: superset-frontend/src/explore/controlPanels/sections.tsx:251 -msgid "asfreq" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:324 +msgid "Include a description that will be sent with your report" msgstr "" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 -msgid "at" -msgstr "在" - -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 -#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/src/features/reports/ReportModal/index.tsx:338 #, fuzzy -msgid "auto" -msgstr "在" +msgid "A screenshot of the dashboard will be sent to your email at" +msgstr "计划的报告将作为PNG发送到您的电子邮件" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 -msgid "auto (Smooth)" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:372 +msgid "Failed to update report" msgstr "" -#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 -msgid "background" +#: superset-frontend/src/features/reports/ReportModal/index.tsx:373 +msgid "Failed to create report" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:228 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:232 #, fuzzy -msgid "basis" -msgstr "重点" +msgid "Set up an email report" +msgstr "删除邮件报告" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 -msgid "below (example:" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:261 +msgid "Email reports active" +msgstr "激活邮件报告" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 -msgid "between {down} and {up} {name}" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:253 +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:277 +msgid "Delete email report" +msgstr "删除邮件报告" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 -#: superset-frontend/src/explore/controlPanels/sections.tsx:252 -msgid "bfill" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:286 +msgid "Schedule email report" +msgstr "为图表配置电子邮件报告" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 -#: superset-frontend/src/explore/components/ControlHeader.tsx:122 -msgid "bolt" -msgstr "螺栓" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:332 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format +msgid "This action will permanently delete %s." +msgstr "此操作将永久删除 %s 。" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 -msgid "boolean type icon" -msgstr "" +#: superset-frontend/src/features/reports/ReportModal/HeaderReportDropdown/index.tsx:343 +msgid "Delete Report?" +msgstr "删除报表?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 -msgid "bottom" -msgstr "底部" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:154 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "行级安全" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 -msgid "button (cmd + z) until you save your changes." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:268 +msgid "Rule added" msgstr "" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 -msgid "by using" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Edit Rule" +msgstr "光模式" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:352 +#, fuzzy +msgid "Add Rule" +msgstr "日期格式化" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:370 +#, fuzzy +msgid "Rule Name" +msgstr "查询名称" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#, fuzzy +msgid "The name of the rule must be unique" +msgstr "名称必须是唯一的" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:381 +#, fuzzy +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "常规过滤将where子句添加到查询中,以确定用户是否属于过滤中引用的角色。基本过滤将应用于除过滤中定义的角色之外的所有查询,并且可以用于定义在没有应用RLS过滤组的情况下,哪些用户可以看到内容。" -#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 -msgid "cannot be empty" -msgstr "不能为空" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:403 +#, fuzzy +msgid "These are the datasets this filter will be applied to." +msgstr "这些是将应用此过滤的表。" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:422 #, fuzzy -msgid "cardinal" -msgstr "径向" +msgid "Excluded roles" +msgstr "包含系列" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:425 +msgid "" +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." +msgstr "对于常规过滤,这些是此过滤将应用于的角色。对于基本过滤,这些是过滤不适用的角色,例如Admin代表admin应该查看所有数据。" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:450 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:141 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:276 #, fuzzy -msgid "change" -msgstr "范围" +msgid "Group Key" +msgstr "分组" -#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 -#: superset-frontend/src/features/home/ChartTable.tsx:89 -#: superset-frontend/src/pages/ChartList/index.tsx:182 -#: superset-frontend/src/pages/ChartList/index.tsx:892 -msgid "chart" -msgstr "图表" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:452 +msgid "" +"Filters with the same group key will be ORed together within the group, " +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." +msgstr "" +"具有相同组key的过滤将在组中一起进行\"OR\"运算,而不同的过滤组将一起进行\"AND\"运算。未定义的组的key被视为唯一组,即不分组在一起。例如,如果表有三个过滤,其中两个用于财务部门和市场营销" +" (group key = 'department'),其中一个表示欧洲地区(group key = " +"'region'),filter子句将应用过滤 (department = 'Finance' OR department = " +"'Marketing') 和 (region = 'Europe')" -#: superset-frontend/src/features/home/EmptyState.tsx:27 -msgid "charts" -msgstr "图表" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:471 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:146 +msgid "Clause" +msgstr "从句" -#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 -msgid "choose WHERE or HAVING..." -msgstr "选择WHERE或HAVING子句..." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:473 +msgid "" +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." +msgstr "" +"这是将会添加到WHERE子句的条件。例如,要仅返回特定客户端的行,可以使用子句 `client_id = 9` " +"定义常规过滤。若要在用户不属于RLS过滤角色的情况下不显示行,可以使用子句 `1 = 0`(始终为false)创建基本过滤。" -#: superset-frontend/src/components/ListView/ListView.tsx:415 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:271 #, fuzzy -msgid "clear all filters" -msgstr "搜索所有过滤选项" +msgid "Regular" +msgstr "圆" -#: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 -msgid "click here" -msgstr "" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:272 +#, fuzzy +msgid "Base" +msgstr "数据库" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 -msgid "code ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:74 +#, python-format +msgid "" +"%s items could not be tagged because you don’t have edit permissions to " +"all selected objects." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 -msgid "code ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:81 +#, python-format +msgid "Tagged %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 -msgid "code International Olympic Committee (cioc)" -msgstr "" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:84 +#, fuzzy +msgid "Failed to tag items" +msgstr "反选所有" -#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 -msgid "column" -msgstr "列" +#: superset-frontend/src/features/tags/BulkTagModal.tsx:94 +msgid "Bulk tag" +msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:121 #, python-format -msgid "connecting to %(dbModelName)s." +msgid "You are adding tags to %s %ss" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 -msgid "count" -msgstr "列" - -#: superset-frontend/src/explore/components/SaveModal.tsx:400 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:123 #, fuzzy -msgid "create" -msgstr "创建" +msgid "tags" +msgstr "标签" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +#: superset-frontend/src/features/tags/BulkTagModal.tsx:132 #, fuzzy -msgid "create a new chart" -msgstr "创建新图表" +msgid "Select Tags" +msgstr "反选所有" -#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 +#: superset-frontend/src/features/tags/TagModal.tsx:237 #, fuzzy -msgid "create dataset from SQL query" -msgstr "从文件中导入数据库" +msgid "Tag updated" +msgstr "上一季度" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 -msgid "css" -msgstr "css" +#: superset-frontend/src/features/tags/TagModal.tsx:255 +#, fuzzy +msgid "Tag created" +msgstr "已创建" -#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 -msgid "css_template" -msgstr "css模板" +#: superset-frontend/src/features/tags/TagModal.tsx:290 +#, fuzzy +msgid "Tag name" +msgstr "选项卡名字" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 -#: superset-frontend/src/explore/controlPanels/sections.tsx:138 -msgid "cumsum" -msgstr "" +#: superset-frontend/src/features/tags/TagModal.tsx:294 +#, fuzzy +msgid "Name of your tag" +msgstr "您的数据集" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 -msgid "cumulative" -msgstr "激活" +#: superset-frontend/src/features/tags/TagModal.tsx:301 +#, fuzzy +msgid "Add description of your tag" +msgstr "为您的查询写一段描述" -#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 -#: superset-frontend/src/features/home/DashboardTable.tsx:77 -#: superset-frontend/src/pages/DashboardList/index.tsx:127 -#: superset-frontend/src/pages/DashboardList/index.tsx:792 -msgid "dashboard" +#: superset-frontend/src/features/tags/TagModal.tsx:307 +#, fuzzy +msgid "Select dashboards" msgstr "看板" -#: superset-frontend/src/features/home/EmptyState.tsx:28 -msgid "dashboards" -msgstr "看板" +#: superset-frontend/src/features/tags/TagModal.tsx:333 +#, fuzzy +msgid "Select saved queries" +msgstr "选择保存指标" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 -#: superset-frontend/src/pages/DatabaseList/index.tsx:102 -msgid "database" -msgstr "数据库" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 +msgid "Chosen non-numeric column" +msgstr "选定的非数字列" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 -#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:159 -#: superset-frontend/src/pages/DatasetList/index.tsx:844 -msgid "dataset" -msgstr "数据集" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:45 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:54 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "UI 配置" -#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:53 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:87 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 #, fuzzy -msgid "dataset name" -msgstr "数据集名称" +msgid "Filter value is required" +msgstr "需要默认值" -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 -msgid "date" -msgstr "日期" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:56 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 +msgid "User must select a value before applying the filter" +msgstr "用户必须给过滤器选择一个值" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 -msgid "day" -msgstr "天" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:65 +msgid "Single value" +msgstr "空值" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 -msgid "day of the month" -msgstr "一个月中的天数" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:68 +msgid "Use only a single value." +msgstr "只使用一个值" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 -msgid "day of the week" -msgstr "一周的天数" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "范围过滤器" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 -#, fuzzy -msgid "deck.gl 3D Hexagon" -msgstr "Deck.gl - 多角形" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:133 +msgid " (excluded)" +msgstr "(不包含)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 -msgid "deck.gl Arc" -msgstr "圆弧图" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:210 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format +msgid "%s option" +msgstr "%s 个选项" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 -#, fuzzy -msgid "deck.gl Geojson" -msgstr "Deck.gl - 多角形" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:65 +msgid "Check for sorting ascending" +msgstr "按照升序进行排序" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:74 #, fuzzy -msgid "deck.gl Grid" -msgstr "圆弧图" +msgid "Can select multiple values" +msgstr "允许选择多个值" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 -#, fuzzy -msgid "deck.gl Heatmap" -msgstr "圆弧图" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:101 +msgid "Select first filter value by default" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:107 #, fuzzy -msgid "deck.gl Multiple Layers" -msgstr "多图层" +msgid "When using this option, default value can’t be set" +msgstr "默认选择第一项(使用此选项时,不能“设置默认值”)" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 -#, fuzzy -msgid "deck.gl Path" -msgstr "Deck.gl - 路径" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:120 +msgid "Inverse selection" +msgstr "反选" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 -#, fuzzy -msgid "deck.gl Polygon" -msgstr "Deck.gl - 多角形" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:122 +msgid "Exclude selected values" +msgstr "排除选定的值" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 -#, fuzzy -msgid "deck.gl Scatterplot" -msgstr "Deck.gl - 散点图" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:133 +msgid "Dynamically search all filter values" +msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 -#, fuzzy -msgid "deck.gl Screen Grid" -msgstr "Deck.gl - 屏幕网格" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:135 +msgid "" +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." +msgstr "默认情况下,每个过滤器在初始页面加载时最多加载1000个选项。如果您有超过1000个过滤值,并且希望启用动态搜索,以便在键入时加载筛选值(可能会给数据库增加压力),请选中此框。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 -#, fuzzy -msgid "deck.gl charts" -msgstr "圆弧图" +#: superset-frontend/src/filters/components/Select/index.ts:29 +msgid "Select filter plugin using AntD" +msgstr "选择过滤器" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 -#, fuzzy -msgid "deckGL" -msgstr "圆弧图" +#: superset-frontend/src/filters/components/Time/index.ts:28 +msgid "Custom time filter plugin" +msgstr "自定义时间过滤器插件" + +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 +msgid "No time columns" +msgstr "没有时间列" + +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 +msgid "Time column filter plugin" +msgstr "选择过滤器" + +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 +msgid "Time grain filter plugin" +msgstr "范围过滤器" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 +msgid "Working" +msgstr "正在执行" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 -#, fuzzy -msgid "default" -msgstr "默认" +#: superset-frontend/src/pages/AlertReportList/index.tsx:67 +msgid "Not triggered" +msgstr "没有触发" -#: superset-frontend/src/components/DeleteModal/index.tsx:84 -msgid "delete" -msgstr "删除" +#: superset-frontend/src/pages/AlertReportList/index.tsx:68 +msgid "On Grace" +msgstr "在宽限期内" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 -msgid "descendant" -msgstr "降序" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +#: superset-frontend/src/pages/AlertReportList/index.tsx:140 +#: superset-frontend/src/pages/AlertReportList/index.tsx:149 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:79 +msgid "reports" +msgstr "报告" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 -#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 -#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 -msgid "description" -msgstr "描述" +#: superset-frontend/src/pages/AlertReportList/index.tsx:113 +msgid "alerts" +msgstr "警报" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 -#, fuzzy -msgid "deviation" -msgstr "描述" +#: superset-frontend/src/pages/AlertReportList/index.tsx:203 +#, python-format +msgid "There was an issue deleting the selected %s: %s" +msgstr "删除所选 %s 时出现问题: %s" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 -msgid "dialect+driver://username:password@host:port/database" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:269 +msgid "Last run" +msgstr "上次执行" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "draft" -msgstr "草稿" +#: superset-frontend/src/pages/AlertReportList/index.tsx:369 +msgid "Execution log" +msgstr "操作日志" -#: superset/views/log/__init__.py:32 -msgid "dttm" -msgstr "dttm" +#: superset-frontend/src/pages/AlertReportList/index.tsx:428 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:229 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:760 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:212 +#: superset-frontend/src/pages/DashboardList/index.tsx:642 +#: superset-frontend/src/pages/DatasetList/index.tsx:635 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:322 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:191 +#: superset-frontend/src/pages/Tags/index.tsx:313 +msgid "Bulk select" +msgstr "批量选择" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 -msgid "e.g. ********" -msgstr "********" +#: superset-frontend/src/pages/AlertReportList/index.tsx:436 +#, python-format +msgid "No %s yet" +msgstr "还没有 %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 -msgid "e.g. 127.0.0.1" -msgstr "127.0.0.1" +#: superset-frontend/src/pages/AlertReportList/index.tsx:456 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 +msgid "Owner" +msgstr "所有者" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 -msgid "e.g. 5432" -msgstr "5432" +#: superset-frontend/src/pages/AlertReportList/index.tsx:461 +#: superset-frontend/src/pages/AlertReportList/index.tsx:499 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:250 +#: superset-frontend/src/pages/ChartList/index.tsx:591 +#: superset-frontend/src/pages/ChartList/index.tsx:617 +#: superset-frontend/src/pages/ChartList/index.tsx:629 +#: superset-frontend/src/pages/ChartList/index.tsx:640 +#: superset-frontend/src/pages/ChartList/index.tsx:662 +#: superset-frontend/src/pages/ChartList/index.tsx:686 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:235 +#: superset-frontend/src/pages/DashboardList/index.tsx:522 +#: superset-frontend/src/pages/DashboardList/index.tsx:533 +#: superset-frontend/src/pages/DashboardList/index.tsx:569 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatabaseList/index.tsx:519 +#: superset-frontend/src/pages/DatabaseList/index.tsx:531 +#: superset-frontend/src/pages/DatasetList/index.tsx:608 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:370 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:288 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:458 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 +#: superset-frontend/src/pages/Tags/index.tsx:270 +msgid "All" +msgstr "所有" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 -msgid "e.g. AccountAdmin" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:466 +#, fuzzy, python-format +msgid "An error occurred while fetching owners values: %s" +msgstr "获取图表所有者时出错 %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 -#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 -msgid "e.g. Analytics" -msgstr "高级分析" +#: superset-frontend/src/pages/AlertReportList/index.tsx:473 +#: superset-frontend/src/pages/DashboardList/index.tsx:322 +#: superset-frontend/src/pages/DashboardList/index.tsx:503 +msgid "Status" +msgstr "状态" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 -msgid "e.g. compute_wh" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:504 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:255 +#: superset-frontend/src/pages/ChartList/index.tsx:691 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset-frontend/src/pages/DatabaseList/index.tsx:536 +#: superset-frontend/src/pages/DatasetList/index.tsx:613 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:464 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:514 +#: superset-frontend/src/pages/Tags/index.tsx:275 +#, python-format +msgid "An error occurred while fetching dataset datasource values: %s" +msgstr "获取数据集数据源信息时出错: %s" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 -msgid "e.g. param1=value1¶m2=value2" -msgstr "例如:param1=value1¶m2=value2" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 +msgid "Alerts & reports" +msgstr "告警和报告" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 -msgid "e.g. sql/protocolv1/o/12345" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 +msgid "Alerts" +msgstr "告警" -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 -#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 -msgid "e.g. world_population" -msgstr "世界人口" +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "报告" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 -msgid "e.g. xy12345.us-east-2.aws" -msgstr "" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format +msgid "Delete %s?" +msgstr "需要删除 %s 吗?" -#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 -msgid "e.g., a \"user id\" column" -msgstr "时间序列的列" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format +msgid "Are you sure you want to delete the selected %s?" +msgstr "确实要删除选定的 %s 吗?" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 +#: superset-frontend/src/pages/AllEntities/index.tsx:180 #, fuzzy -msgid "edit mode" -msgstr "编辑模式" +msgid "Error Fetching Tagged Objects" +msgstr "抱歉,获取数据库信息时出错:%s" -#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +#: superset-frontend/src/pages/AllEntities/index.tsx:234 #, fuzzy -msgid "entries" -msgstr "序列" +msgid "Edit Tag" +msgstr "编辑日志" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "error" -msgstr "错误" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format +msgid "There was an issue deleting the selected layers: %s" +msgstr "删除所选图层时出现问题:%s" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 -msgid "error dark" -msgstr "" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:178 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:156 +msgid "Edit template" +msgstr "编辑模板" -#: superset/models/helpers.py:1803 -#, fuzzy -msgid "error_message" -msgstr "错误信息" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:187 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:165 +msgid "Delete template" +msgstr "删除模板" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 -msgid "every" -msgstr "任意" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:245 +#, fuzzy +msgid "Changed by" +msgstr "修改人" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 -msgid "every day of the month" -msgstr "每月的每一天" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:269 +msgid "No annotation layers yet" +msgstr "没有注释层" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 -msgid "every day of the week" -msgstr "一周的每一天" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:300 +msgid "This action will permanently delete the layer." +msgstr "此操作将永久删除图层。" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 -msgid "every hour" -msgstr "每小时" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:308 +msgid "Delete Layer?" +msgstr "确定删除图层?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 -msgid "every minute" -msgstr "每分钟 UTC" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:313 +msgid "Are you sure you want to delete the selected layers?" +msgstr "确实要删除选定的图层吗?" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 -msgid "every month" -msgstr "每个月" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format +msgid "There was an issue deleting the selected annotations: %s" +msgstr "删除所选注释时出现问题:%s" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 -#: superset-frontend/src/explore/fixtures.tsx:63 -#, fuzzy -msgid "expand" -msgstr "和" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 +msgid "Delete annotation" +msgstr "删除注释" -#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 -#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 -#, fuzzy -msgid "explore" -msgstr "探索" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 +msgid "Annotation" +msgstr "注释" -#: superset-frontend/src/SqlLab/constants.ts:33 -#: superset-frontend/src/SqlLab/constants.ts:51 -#, fuzzy -msgid "failed" -msgstr "失败" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 +msgid "No annotation yet" +msgstr "没有注释" -#: superset-frontend/src/SqlLab/constants.ts:35 -msgid "fetching" -msgstr "抓取中" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, fuzzy, python-format +msgid "Annotation Layer %s" +msgstr "注解层" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 -#: superset-frontend/src/explore/controlPanels/sections.tsx:253 -msgid "ffill" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:185 +msgid "Back to all" msgstr "" -#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 -msgid "" -"filter_box will be deprecated in a future version of Superset. Please " -"replace filter_box by dashboard filter components." -msgstr "filter_box将在Superset的未来版本中弃用。" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, fuzzy, python-format +msgid "Are you sure you want to delete %s?" +msgstr "确定要删除吗" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 -#, fuzzy -msgid "flat" -msgstr "在" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 +msgid "Delete Annotation?" +msgstr "删除注释?" -#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 -msgid "for more information on how to structure your URI." -msgstr "来查询有关如何构造URI的更多信息。" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 +msgid "Are you sure you want to delete the selected annotations?" +msgstr "确实要删除选定的注释吗?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 -msgid "function type icon" +#: superset-frontend/src/pages/Chart/index.tsx:57 +msgid "Failed to load chart data" msgstr "" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 -msgid "geohash (square)" -msgstr "" +#: superset-frontend/src/pages/ChartCreation/index.tsx:290 +#, fuzzy +msgid "view instructions" +msgstr "时间(秒)" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +#: superset-frontend/src/pages/ChartCreation/index.tsx:294 #, fuzzy -msgid "heatmap" -msgstr "热力图" +msgid "Add a dataset" +msgstr "添加数据集" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 -msgid "heatmap: values are normalized across the entire heatmap" -msgstr "热力图:其中所有数值都经过了归一化" +#: superset-frontend/src/pages/ChartCreation/index.tsx:296 +#, fuzzy +msgid "or" +msgstr "小时" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:327 +#: superset-frontend/src/pages/ChartCreation/index.tsx:338 +msgid "Choose a dataset" +msgstr "选择数据源" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "Choose chart type" +msgstr "选择图表类型" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:365 +msgid "Please select both a Dataset and a Chart type to proceed" +msgstr "请同时选择数据集和图表类型以继续" -#: superset-frontend/src/components/EmptyState/index.tsx:231 -#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 -#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 -#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 -#, fuzzy -msgid "here" -msgstr "分享" +#: superset-frontend/src/pages/ChartList/index.tsx:95 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the charts. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " +"部分不在导出文件中,如果需要,应在导入后手动添加。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 -msgid "hour" -msgstr "小时" +#: superset-frontend/src/pages/ChartList/index.tsx:102 +msgid "" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" -#: superset-frontend/src/profile/components/UserInfo.tsx:76 +#: superset-frontend/src/pages/ChartList/index.tsx:231 #, fuzzy -msgid "id" -msgstr "id:" +msgid "Chart imported" +msgstr "图表标题" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 -msgid "" -"image-rendering CSS attribute of the canvas object that defines how the " -"browser scales up the image" -msgstr "图像渲染画布对象的 CSS 属性,它定义了浏览器如何放大图像" +#: superset-frontend/src/pages/ChartList/index.tsx:259 +#, python-format +msgid "There was an issue deleting the selected charts: %s" +msgstr "删除所选图表时出现问题:%s" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 -msgid "in" -msgstr "在" +#: superset-frontend/src/pages/ChartList/index.tsx:293 +msgid "An error occurred while fetching dashboards" +msgstr "获取看板时出错" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 -msgid "in modal" -msgstr "(在模型中)" +#: superset-frontend/src/pages/ChartList/index.tsx:567 +#: superset-frontend/src/pages/ChartList/index.tsx:674 +#: superset-frontend/src/pages/DashboardList/index.tsx:484 +#: superset-frontend/src/pages/DashboardList/index.tsx:508 +#: superset-frontend/src/pages/DashboardList/index.tsx:557 +#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:269 +msgid "Any" +msgstr "所有" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 -#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 -msgid "is expected to be a number" -msgstr "应该为数字" +#: superset-frontend/src/pages/ChartList/index.tsx:624 +#: superset-frontend/src/pages/DashboardList/index.tsx:517 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:324 +msgid "Tag" +msgstr "" -#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 -#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 -msgid "is expected to be an integer" -msgstr "应该为整数" +#: superset-frontend/src/pages/ChartList/index.tsx:646 +#, python-format +msgid "An error occurred while fetching chart owners values: %s" +msgstr "获取图表所有者时出错 %s" -#: superset-frontend/src/profile/components/UserInfo.tsx:64 -msgid "joined" -msgstr "已加入" +#: superset-frontend/src/pages/ChartList/index.tsx:668 +#: superset-frontend/src/pages/DashboardList/index.tsx:551 +#: superset-frontend/src/pages/DatasetList/index.tsx:590 +msgid "Certified" +msgstr "认证" -#: superset/views/base.py:596 -msgid "json isn't valid" -msgstr "无效 JSON" +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:591 +#: superset-frontend/src/pages/Tags/index.tsx:292 +msgid "Alphabetical" +msgstr "按字母顺序排列" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 -msgid "key a-z" -msgstr "a-z" +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:597 +#: superset-frontend/src/pages/Tags/index.tsx:298 +msgid "Recently modified" +msgstr "最近修改" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 -msgid "key z-a" -msgstr "z-a" +#: superset-frontend/src/pages/ChartList/index.tsx:720 +#: superset-frontend/src/pages/DashboardList/index.tsx:603 +#: superset-frontend/src/pages/Tags/index.tsx:304 +msgid "Least recently modified" +msgstr "最远修改" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 -msgid "label" -msgstr "标签" +#: superset-frontend/src/pages/ChartList/index.tsx:783 +msgid "Import charts" +msgstr "导入图表" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 -msgid "last day" -msgstr "上一(昨)天" +#: superset-frontend/src/pages/ChartList/index.tsx:807 +msgid "Are you sure you want to delete the selected charts?" +msgstr "确实要删除所选图表吗?" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 -msgid "last month" -msgstr "上一月" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:190 +msgid "CSS templates" +msgstr "CSS 模板" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 -msgid "last quarter" -msgstr "上一季度" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format +msgid "There was an issue deleting the selected templates: %s" +msgstr "删除所选模板时出现问题:%s" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 -msgid "last week" -msgstr "上一周" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:199 +msgid "CSS template" +msgstr "CSS 模板" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 -msgid "last year" -msgstr "上一年" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:265 +msgid "This action will permanently delete the template." +msgstr "此操作将永久删除模板。" -#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 -msgid "latest partition:" -msgstr "最新分区:" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +msgid "Delete Template?" +msgstr "删除模板?" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 -msgid "left" -msgstr "警报" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +msgid "Are you sure you want to delete the selected templates?" +msgstr "确实要删除选定的模板吗?" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 -msgid "less than {min} {name}" +#: superset-frontend/src/pages/DashboardList/index.tsx:73 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." msgstr "" +"需要以下数据库的密码才能将它们与仪表板一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " +"部分不在导出文件中,如果需要,应在导入后手动添加。" + +#: superset-frontend/src/pages/DashboardList/index.tsx:80 +msgid "" +"You are importing one or more dashboards that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" +msgstr "您正在导入一个或多个已存在的仪表板。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 +#: superset-frontend/src/pages/DashboardList/index.tsx:177 #, fuzzy -msgid "linear" -msgstr "清除" +msgid "Dashboard imported" +msgstr "看板属性" -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 -msgid "log" -msgstr "日志" +#: superset-frontend/src/pages/DashboardList/index.tsx:262 +msgid "There was an issue deleting the selected dashboards: " +msgstr "删除所选仪表板时出现问题:" -#: superset/charts/schemas.py:735 -msgid "" -"lower percentile must be greater than 0 and less than 100. Must be lower " -"than upper percentile." -msgstr "下百分位数必须大于0且小于100。而且必须低于上百分位" +#: superset-frontend/src/pages/DashboardList/index.tsx:539 +#, python-format +msgid "An error occurred while fetching dashboard owner values: %s" +msgstr "获取仪表板所有者时出错:%s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 -#, fuzzy -msgid "max" -msgstr "最大值" +#: superset-frontend/src/pages/DashboardList/index.tsx:680 +msgid "Are you sure you want to delete the selected dashboards?" +msgstr "确实要删除选定的仪表板吗?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 -#: superset-frontend/src/explore/controlPanels/sections.tsx:135 -#: superset-frontend/src/explore/controlPanels/sections.tsx:255 -#, fuzzy -msgid "mean" -msgstr "平均值" +#: superset-frontend/src/pages/DatabaseList/index.tsx:172 +#, python-format +msgid "An error occurred while fetching database related data: %s" +msgstr "获取数据库相关数据时出错:%s" -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 -#: superset-frontend/src/explore/controlPanels/sections.tsx:254 -msgid "median" -msgstr "中位数" +#: superset-frontend/src/pages/DatabaseList/index.tsx:231 +msgid "Upload file to database" +msgstr "上传文件到数据库" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 -#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 -#, fuzzy -msgid "metric" -msgstr "指标" +#: superset-frontend/src/pages/DatabaseList/index.tsx:234 +msgid "Upload CSV" +msgstr "上传CSV" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 -#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 -#, fuzzy -msgid "min" -msgstr "分钟" +#: superset-frontend/src/pages/DatabaseList/index.tsx:241 +msgid "Upload columnar file" +msgstr "上传列级文件" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 -msgid "minute" -msgstr "分" +#: superset-frontend/src/pages/DatabaseList/index.tsx:248 +msgid "Upload Excel file" +msgstr "上传Excel" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 -msgid "minute(s)" -msgstr "分钟" +#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:512 +msgid "AQE" +msgstr "AQE(异步执行查询)" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 -#, fuzzy -msgid "monotone" -msgstr "月" +#: superset-frontend/src/pages/DatabaseList/index.tsx:361 +msgid "Allow data manipulation language" +msgstr "允许数据操作语言" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 -#: superset-frontend/src/explore/controls.jsx:267 -msgid "month" -msgstr "月" +#: superset-frontend/src/pages/DatabaseList/index.tsx:364 +msgid "DML" +msgstr "DML(数据操作语言)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 -msgid "more than {max} {name}" -msgstr "" +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +msgid "CSV upload" +msgstr "CSV上传" -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 -#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 -msgid "must have a value" -msgstr "必填" +#: superset-frontend/src/pages/DatabaseList/index.tsx:428 +msgid "Delete database" +msgstr "删除数据库" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 -#, fuzzy -msgid "name" -msgstr "名称" +#: superset-frontend/src/pages/DatabaseList/index.tsx:565 +#, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" +"数据库 %s 已经关联了 %s 图表和 %s 仪表盘,并且用户在该数据库上打开了 %s 个 SQL " +"编辑器标签。确定要继续吗?删除数据库将破坏这些对象。" -#: superset/databases/commands/exceptions.py:147 -#, fuzzy -msgid "no SQL validator is configured" -msgstr "告警验证器配置错误。" +#: superset-frontend/src/pages/DatabaseList/index.tsx:587 +msgid "Delete Database?" +msgstr "确定删除数据库?" -#: superset/databases/commands/validate_sql.py:101 +#: superset-frontend/src/pages/DatasetList/index.tsx:201 #, fuzzy -msgid "no SQL validator is configured for {}" -msgstr "告警验证器配置错误。" +msgid "Dataset imported" +msgstr "数据库端口" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 -msgid "numeric type icon" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:237 +msgid "An error occurred while fetching dataset related data" +msgstr "获取数据集相关数据时出错" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 -msgid "nvd3" -msgstr "nvd3" +#: superset-frontend/src/pages/DatasetList/index.tsx:257 +#, python-format +msgid "An error occurred while fetching dataset related data: %s" +msgstr "获取数据集相关数据时出错:%s" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 -#, fuzzy -msgid "of parent" -msgstr "父类" +#: superset-frontend/src/pages/DatasetList/index.tsx:288 +msgid "Physical dataset" +msgstr "物化数据集" -#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 -#, fuzzy -msgid "of total" -msgstr "显示总计" +#: superset-frontend/src/pages/DatasetList/index.tsx:296 +msgid "Virtual dataset" +msgstr "虚拟数据集" -#: superset-frontend/src/SqlLab/constants.ts:32 -#: superset-frontend/src/SqlLab/constants.ts:53 +#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:533 #, fuzzy -msgid "offline" -msgstr "离线" +msgid "Virtual" +msgstr "虚拟信息" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 -msgid "on" -msgstr "位于" +#: superset-frontend/src/pages/DatasetList/index.tsx:548 +#, python-format +msgid "An error occurred while fetching datasets: %s" +msgstr "获取数据集时出错:%s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:353 -#, fuzzy -msgid "or" -msgstr "小时" +#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:394 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:485 +#, python-format +msgid "An error occurred while fetching schema values: %s" +msgstr "获取结构信息时出错:%s" -#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 -msgid "or use existing ones from the panel on the right" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:580 +#, python-format +msgid "An error occurred while fetching dataset owner values: %s" +msgstr "获取数据集所有者值时出错:%s" -#: superset/charts/schemas.py:1313 -msgid "orderby column must be populated" -msgstr "无法更新您的查询" +#: superset-frontend/src/pages/DatasetList/index.tsx:658 +msgid "Import datasets" +msgstr "导入数据集" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 -#, fuzzy -msgid "overall" -msgstr "清除所有" +#: superset-frontend/src/pages/DatasetList/index.tsx:712 +#, python-format +msgid "There was an issue deleting the selected datasets: %s" +msgstr "删除选定的数据集时出现问题:%s" -#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 -msgid "p-value precision" -msgstr "假定值精度" +#: superset-frontend/src/pages/DatasetList/index.tsx:720 +#, fuzzy +msgid "There was an issue duplicating the dataset." +msgstr "删除选定的数据集时出现问题:%s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 -msgid "p1" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:736 +#, fuzzy, python-format +msgid "There was an issue duplicating the selected datasets: %s" +msgstr "删除选定的数据集时出现问题:%s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 -msgid "p5" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:750 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." +msgstr "数据集 %s 已经链接到 %s 图表和 %s 看板内。确定要继续吗?删除数据集将破坏这些对象。" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 -msgid "p95" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:771 +msgid "Delete Dataset?" +msgstr "确定删除数据集?" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 -msgid "p99" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:789 +msgid "Are you sure you want to delete the selected datasets?" +msgstr "确实要删除选定的数据集吗?" -#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 -#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 -msgid "page_size.all" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:842 +msgid "0 Selected" +msgstr "0个被选中" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 -msgid "page_size.entries" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:845 +#, python-format +msgid "%s Selected (Virtual)" +msgstr "%s 个被选中(虚拟)" -#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 -msgid "page_size.show" -msgstr "" +#: superset-frontend/src/pages/DatasetList/index.tsx:852 +#, python-format +msgid "%s Selected (Physical)" +msgstr "%s 个被选中(物理)" -#: superset-frontend/src/SqlLab/constants.ts:34 -#: superset-frontend/src/SqlLab/constants.ts:54 -#, fuzzy -msgid "pending" -msgstr "渲染" +#: superset-frontend/src/pages/DatasetList/index.tsx:859 +#, python-format +msgid "%s Selected (%s Physical, %s Virtual)" +msgstr "%s 个被选中 (%s 个物理, %s 个虚拟)" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 -msgid "percentile (exclusive)" -msgstr "百分位数(独占)" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:70 +msgid "log" +msgstr "日志" -#: superset/utils/pandas_postprocessing/boxplot.py:88 -msgid "" -"percentiles must be a list or tuple with two numeric values, of which the" -" first is lower than the second value" -msgstr "百分位数必须是具有两个数值的列表或元组,其中第一个数值要小于第二个数值" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:112 +msgid "Execution ID" +msgstr "任务ID" -#: superset/views/core.py:1958 -#, fuzzy -msgid "permalink state not found" -msgstr "未找到报表计划状态" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:124 +msgid "Scheduled at (UTC)" +msgstr "计划时间" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 -msgid "pixelated (Sharp)" -msgstr "" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:132 +msgid "Start at (UTC)" +msgstr "由UTC开始" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 -msgid "previous calendar month" -msgstr "前一月" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:151 +msgid "Error message" +msgstr "错误信息" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 -msgid "previous calendar week" -msgstr "前一周" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:166 +#, fuzzy +msgid "Alert" +msgstr "警报" -#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 -msgid "previous calendar year" -msgstr "前一年" +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "获取您最近的活动时出错:%s" -#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 -msgid "published" -msgstr "已发布" +#: superset-frontend/src/pages/Home/index.tsx:270 +#, fuzzy, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "删除所选仪表板时出现问题:%s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 -#: superset-frontend/src/explore/controls.jsx:268 -#, fuzzy -msgid "quarter" -msgstr "季度" +#: superset-frontend/src/pages/Home/index.tsx:281 +#, fuzzy, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "删除时出现问题:%s" -#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 -msgid "queries" -msgstr "序列" +#: superset-frontend/src/pages/Home/index.tsx:293 +#, fuzzy, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "删除所选查询时出现问题:%s" -#: superset-frontend/src/features/home/SavedQueries.tsx:131 -msgid "query" -msgstr "查询" +#: superset-frontend/src/pages/Home/index.tsx:343 +msgid "Thumbnails" +msgstr "" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 -#, fuzzy -msgid "random" -msgstr "和" +#: superset-frontend/src/pages/Home/index.tsx:368 +msgid "Recents" +msgstr "最近" -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 -msgid "reboot" -msgstr "重启" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:125 +#, python-format +msgid "There was an issue previewing the selected query. %s" +msgstr "预览所选查询时出现问题。%s" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 -#, fuzzy -msgid "recent" -msgstr "最近" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:284 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:330 +msgid "TABLES" +msgstr "表" -#: superset-frontend/src/features/home/EmptyState.tsx:29 -msgid "recents" -msgstr "最近" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:351 +msgid "Open query in SQL Lab" +msgstr "在 SQL 工具箱中打开查询" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 -#: superset-frontend/src/pages/AlertReportList/index.tsx:110 -msgid "report" -msgstr "报告" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:376 +#, python-format +msgid "An error occurred while fetching database values: %s" +msgstr "获取数据库信息时出错:%s" -#: superset-frontend/src/pages/AlertReportList/index.tsx:111 -#: superset-frontend/src/pages/AlertReportList/index.tsx:138 -#: superset-frontend/src/pages/AlertReportList/index.tsx:147 -#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 -msgid "reports" -msgstr "报告" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:412 +#, python-format +msgid "An error occurred while fetching user values: %s" +msgstr "获取用户信息出错:%s" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 -msgid "restore zoom" -msgstr "" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:426 +msgid "Search by query text" +msgstr "按查询文本搜索" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 -msgid "right" -msgstr "高度" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:96 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "已删除:%s" -#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:110 #, fuzzy -msgid "rowlevelsecurity" -msgstr "行级安全" +msgid "Deleted" +msgstr "删除" -#: superset-frontend/src/SqlLab/constants.ts:36 -#: superset-frontend/src/SqlLab/constants.ts:52 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:113 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "删除 %s 时出现问题:%s" + +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:244 #, fuzzy -msgid "running" -msgstr "正在执行" +msgid "No Rules yet" +msgstr "最近" -#: superset-frontend/src/features/home/EmptyState.tsx:30 -msgid "saved queries" -msgstr "已保存查询" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:334 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "确实要删除选定的图层吗?" -#: superset-frontend/src/pages/AllEntities/index.tsx:79 -msgid "search by tags" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:65 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" +"需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " +"部分不在导出文件中,如果需要,应在导入后手动添加。" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 -#, fuzzy -msgid "seconds" -msgstr "30秒钟" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:72 +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:156 #, fuzzy -msgid "series" -msgstr "序列" +msgid "Query imported" +msgstr "查询模式" -#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 -msgid "" -"series: Treat each series independently; overall: All series use the same" -" scale; change: Show changes compared to the first data point in each " -"series" -msgstr "series:独立处理每个序列;overall:所有序列使用相同的比例;change:显示与每个序列中第一个数据点相比的更改" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:174 +#, python-format +msgid "There was an issue previewing the selected query %s" +msgstr "预览所选查询时出现问题 %s" -#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 -#, fuzzy -msgid "square" -msgstr "上一季度" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:211 +msgid "Import queries" +msgstr "导入查询" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 -#: superset-frontend/src/explore/fixtures.tsx:61 -#, fuzzy -msgid "stack" -msgstr "堆叠" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:241 +#: superset-frontend/src/views/CRUD/hooks.ts:680 +msgid "Link Copied!" +msgstr "链接成功!" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 -#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 -#, fuzzy -msgid "staggered" -msgstr "没有触发" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#, python-format +msgid "There was an issue deleting the selected queries: %s" +msgstr "删除所选查询时出现问题:%s" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 -#: superset-frontend/src/explore/controlPanels/sections.tsx:137 -msgid "std" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:401 +msgid "Edit query" +msgstr "编辑查询" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 -#, fuzzy -msgid "step-after" -msgstr "css模板" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:408 +msgid "Copy query URL" +msgstr "复制查询URL" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 -msgid "step-before" -msgstr "" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:415 +msgid "Export query" +msgstr "导出查询" -#: superset-frontend/src/SqlLab/constants.ts:37 -#, fuzzy -msgid "stopped" -msgstr "停止" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:422 +msgid "Delete query" +msgstr "删除查询" -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 -#: superset-frontend/src/explore/fixtures.tsx:62 -#, fuzzy -msgid "stream" -msgstr "直方图" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:557 +msgid "Are you sure you want to delete the selected queries?" +msgstr "您确实要删除选定的查询吗?" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 -msgid "string type icon" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:605 +msgid "queries" +msgstr "序列" + +#: superset-frontend/src/pages/Tags/index.tsx:86 +msgid "tag" msgstr "" -#: superset-frontend/src/SqlLab/constants.ts:38 -#: superset-frontend/src/SqlLab/constants.ts:50 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +#: superset-frontend/src/pages/Tags/index.tsx:130 #, fuzzy -msgid "success" -msgstr "成功" +msgid "No Tags created" +msgstr "已创建" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#: superset-frontend/src/pages/Tags/index.tsx:352 #, fuzzy -msgid "success dark" -msgstr "成功" +msgid "Are you sure you want to delete the selected tags?" +msgstr "确实要删除选定的 %s 吗?" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 -#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 -#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 -#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 -#: superset-frontend/src/explore/controlPanels/sections.tsx:136 -#: superset-frontend/src/explore/controlPanels/sections.tsx:256 -msgid "sum" -msgstr "" +#: superset-frontend/src/utils/downloadAsImage.ts:55 +msgid "Image download failed, please refresh and try again." +msgstr "图片发送失败,请刷新或重试" -#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 +#: superset-frontend/src/utils/downloadAsPdf.ts:55 #, fuzzy -msgid "syntax." -msgstr "语法" +msgid "PDF download failed, please refresh and try again." +msgstr "图片发送失败,请刷新或重试" -#: superset-frontend/src/pages/Tags/index.tsx:76 -msgid "tag" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format +msgid "" +"Select values in highlighted field(s) in the control panel. Then run the " +"query by clicking on the %s button." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 -msgid "temporal type icon" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 +msgid "Invalid input" msgstr "" -#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 -msgid "textarea" -msgstr "文本区域" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +msgid "Unexpected error: " +msgstr "意外错误。" -#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 -#, fuzzy -msgid "to" -msgstr "停止" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 +msgid "(no description, click to see stack trace)" +msgstr "无描述,单击可查看堆栈跟踪" -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 -#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 +#: superset-frontend/src/utils/getClientErrorObject.ts:97 #, fuzzy -msgid "top" -msgstr "停止" +msgid "Sorry, an unknown error occurred." +msgstr "抱歉,发生错误" -#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 -#, fuzzy -msgid "undo" -msgstr "撤消?" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, fuzzy, python-format +msgid "Sorry, there was an error saving this %s: %s" +msgstr "抱歉,这个看板在获取图表时发生错误:%s" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 -#, fuzzy -msgid "unknown type icon" -msgstr "未知错误" +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, fuzzy, python-format +msgid "You do not have permission to edit this %s" +msgstr "您没有编辑此图表的权限" -#: superset/charts/schemas.py:750 -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher" -" than lower percentile." -msgstr "上百分位数必须大于0且小于100。而且必须高于下百分位。" +#: superset-frontend/src/utils/getClientErrorObject.ts:132 +#, fuzzy +msgid "Network error" +msgstr "网络异常。" -#: superset-frontend/src/explore/constants.ts:85 +#: superset-frontend/src/utils/getClientErrorObject.ts:144 #, fuzzy -msgid "use latest_partition template" -msgstr "最新分区:" +msgid "Request timed out" +msgstr "请求不是JSON" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 -msgid "value ascending" -msgstr "指标升序" +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Issue 1000 - 数据集太大,无法进行查询。" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 -msgid "value descending" -msgstr "指标降序" +#: superset-frontend/src/utils/getClientErrorObject.ts:157 +msgid "Issue 1001 - The database is under an unusual load." +msgstr "Issue 1001 - 数据库负载异常。" -#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#, fuzzy -msgid "var" -msgstr "条形图" +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format +msgid "An error occurred while fetching %s info: %s" +msgstr "获取%s仪表板时出错:%s" -#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 -#, fuzzy -msgid "variance" -msgstr "三角形" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format +msgid "An error occurred while fetching %ss: %s" +msgstr "抓取出错:%ss: %s" -#: superset-frontend/src/pages/ChartCreation/index.tsx:347 -#, fuzzy -msgid "view instructions" -msgstr "时间(秒)" +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format +msgid "An error occurred while creating %ss: %s" +msgstr "创建时出错:%ss: %s" -#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 -msgid "virtual" -msgstr "虚拟信息" +#: superset-frontend/src/views/CRUD/hooks.ts:439 +msgid "Please re-export your file and try importing again" +msgstr "" -#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 -#, fuzzy -msgid "viz type" -msgstr "可视化类型" +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format +msgid "An error occurred while importing %s: %s" +msgstr "导入时出错 %s: %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 -msgid "was created" -msgstr "已创建" +#: superset-frontend/src/views/CRUD/hooks.ts:598 +#, python-format +msgid "There was an error fetching the favorite status: %s" +msgstr "获取此看板的收藏夹状态时出现问题:%s。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 -#: superset-frontend/src/explore/controls.jsx:264 -msgid "week" -msgstr "周" +#: superset-frontend/src/views/CRUD/hooks.ts:621 +#, python-format +msgid "There was an error saving the favorite status: %s" +msgstr "获取此看板的收藏夹状态时出现问题: %s" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 -#: superset-frontend/src/explore/controls.jsx:266 -#, fuzzy -msgid "week ending Saturday" -msgstr "周一为一周结束" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +msgid "Connection looks good!" +msgstr "连接测试成功!" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 -#: superset-frontend/src/explore/controls.jsx:265 -#, fuzzy -msgid "week starting Sunday" -msgstr "周日为一周开始" +#: superset-frontend/src/views/CRUD/hooks.ts:707 +#, python-format +msgid "ERROR: %s" +msgstr "错误: %s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 -msgid "x" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:209 +msgid "There was an error fetching your recent activity:" +msgstr "获取您最近的活动时出错:" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 -msgid "x: values are normalized within each column" -msgstr "" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format +msgid "There was an issue deleting: %s" +msgstr "删除时出现问题:%s" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 -msgid "y" -msgstr "" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 +msgid "URL" +msgstr "URL 地址" -#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 -msgid "y: values are normalized within each row" -msgstr "" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 +msgid "" +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." +msgstr "模板链接,可以包含{{度量}}或来自控件的其他值。" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 -#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 -#: superset-frontend/src/explore/controls.jsx:269 -msgid "year" -msgstr "年" +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 +msgid "Time-series Table" +msgstr "时间序列-表格" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 -msgid "zoom area" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 +msgid "" +"Compare multiple time series charts (as sparklines) and related metrics " +"quickly." +msgstr "快速比较多个时间序列图表和相关指标。" + +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format +msgid "We have the following keys: %s" msgstr "" diff --git a/superset/views/api.py b/superset/views/api.py index eeedd7c641303..bec57e035a9db 100644 --- a/superset/views/api.py +++ b/superset/views/api.py @@ -105,7 +105,9 @@ def time_range(self, **kwargs: Any) -> FlaskResponse: } return self.json_response({"result": result}) except (ValueError, TimeRangeParseFailError, TimeRangeAmbiguousError) as error: - error_msg = {"message": _(f"Unexpected time range: {error}")} + error_msg = { + "message": _("Unexpected time range: %(error)s") % {"error": error} + } return self.json_response(error_msg, 400) def get_query_context_factory(self) -> QueryContextFactory: diff --git a/superset/viz.py b/superset/viz.py index ade52ee7be78d..d96ee01bf50b1 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -1899,7 +1899,8 @@ def parse_coordinates(latlong: Any) -> tuple[float, float] | None: return (point.latitude, point.longitude) except Exception as ex: raise SpatialException( - _(f"Invalid spatial point encountered: {latlong}") + _("Invalid spatial point encountered: %(latlong)s") + % {"latlong": latlong} ) from ex @staticmethod